From 1436fc5f65bf14a4c87af9820f64380334a41bfd Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 14:13:51 -0700 Subject: [PATCH 01/44] prepare for 2.1.2 release --- Changelog | 2 +- pygrib.pyx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 87624a53..cfa9c09f 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,4 @@ -version 2.1.2 (not yet released) +version 2.1.2 (git tag v2.1.2rel) ================================ * use pytest-mpl for image comparison tests. * change license to MIT. diff --git a/pygrib.pyx b/pygrib.pyx index 87e7e46c..ba323af4 100644 --- a/pygrib.pyx +++ b/pygrib.pyx @@ -1,4 +1,4 @@ -__version__ = '2.1.1' +__version__ = '2.1.2' import numpy as np import warnings From 2e5e57076bc4c622531d649a6b14c72ac930965c Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 14:14:43 -0700 Subject: [PATCH 02/44] include eccodes dir --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index dd02ad1f..ca1611bd 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,6 +9,7 @@ include test.py include README.md include utils/*grib* recursive-include docs * +recursive-include eccodes * include sampledata/*.grb include sampledata/*.grb2 include sampledata/*.grib* From 0427398c7c4196129405936c653d03bc31aa8dba Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:32:00 -0700 Subject: [PATCH 03/44] build inside a package, include eccodes definition files --- .github/workflows/build.yml | 2 +- MANIFEST.in | 1 - setup.py | 23 +++++++++++++++++------ 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf3eb27e..a36c269d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: PROJ_LIB: /usr/share/proj strategy: matrix: - python-version: ["3.7", "3.8"] + python-version: ["3.7", "3.8", "3.9"] steps: - uses: actions/checkout@v2 diff --git a/MANIFEST.in b/MANIFEST.in index ca1611bd..dd02ad1f 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,7 +9,6 @@ include test.py include README.md include utils/*grib* recursive-include docs * -recursive-include eccodes * include sampledata/*.grb include sampledata/*.grb2 include sampledata/*.grib* diff --git a/setup.py b/setup.py index 3ea1c052..2651ef79 100644 --- a/setup.py +++ b/setup.py @@ -30,9 +30,18 @@ def extract_version(CYTHON_FNAME): return version +def package_files(directory): + paths = [] + for (path, directories, filenames) in os.walk(directory): + for filename in filenames: + paths.append(os.path.join('..', path, filename)) + return paths + +package_data={} +package_data[""] = package_files("eccodes") + cmdclass = {"build_ext": NumpyBuildExtCommand} -redtoregext = setuptools.Extension("redtoreg", ["redtoreg.pyx"]) searchdirs = [] if os.environ.get("GRIBAPI_DIR"): searchdirs.append(os.environ["GRIBAPI_DIR"]) @@ -67,14 +76,14 @@ def extract_version(CYTHON_FNAME): incdirs = [] libdirs = [] pygribext = setuptools.Extension( - "pygrib", - ["pygrib.pyx"], + "pygrib._pygrib", + ["pygrib/_pygrib.pyx"], include_dirs=incdirs, library_dirs=libdirs, runtime_library_dirs=libdirs, libraries=["eccodes"], ) -ext_modules = [redtoregext, pygribext] +ext_modules = [pygribext] # Import README.md as PyPi long_description this_directory = os.path.abspath(os.path.dirname(__file__)) @@ -92,7 +101,7 @@ def extract_version(CYTHON_FNAME): setuptools.setup( name="pygrib", - version=extract_version("pygrib.pyx"), + version=extract_version("pygrib/_pygrib.pyx"), description="Python module for reading/writing GRIB files", author="Jeff Whitaker", author_email="jeffrey.s.whitaker@noaa.gov", @@ -121,8 +130,10 @@ def extract_version(CYTHON_FNAME): "utils/cnvgrib1to2", "utils/cnvgrib2to1", ], - ext_modules=[redtoregext, pygribext], + ext_modules=[pygribext], data_files=data_files, + packages=['pygrib'], + package_data=package_data, setup_requires=["setuptools", "cython"], install_requires=[ "pyproj", From f49c18b2a83ffab678c04ac219f756e7a16f4b6e Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:32:36 -0700 Subject: [PATCH 04/44] obsolete --- pygrib.pyx | 1871 -------------------------------------------------- redtoreg.pyx | 55 -- 2 files changed, 1926 deletions(-) delete mode 100644 pygrib.pyx delete mode 100644 redtoreg.pyx diff --git a/pygrib.pyx b/pygrib.pyx deleted file mode 100644 index ba323af4..00000000 --- a/pygrib.pyx +++ /dev/null @@ -1,1871 +0,0 @@ -__version__ = '2.1.2' - -import numpy as np -import warnings -from datetime import datetime -from pkg_resources import parse_version -from numpy import ma -import pyproj -import_array() - -cdef extern from "stdlib.h": - ctypedef long size_t - void *malloc(size_t size) - void free(void *ptr) - -cdef extern from "stdio.h": - ctypedef struct FILE - FILE *fopen(char *path, char *mode) - int fclose(FILE *) - size_t fwrite(void *ptr, size_t size, size_t nitems, FILE *stream) - void rewind (FILE *) - -cdef extern from "Python.h": - object PyBytes_FromStringAndSize(char *s, size_t size) -default_encoding = 'ascii' - -cdef extern from "numpy/arrayobject.h": - ctypedef int npy_intp - ctypedef extern class numpy.ndarray [object PyArrayObject]: - cdef char *data - cdef int nd - cdef npy_intp *dimensions - cdef npy_intp *strides - cdef object base - cdef int flags - npy_intp PyArray_SIZE(ndarray arr) - npy_intp PyArray_ISCONTIGUOUS(ndarray arr) - npy_intp PyArray_ISALIGNED(ndarray arr) - void import_array() - -cdef extern from "grib_api.h": - ctypedef struct grib_handle - ctypedef struct grib_index - ctypedef struct grib_keys_iterator - ctypedef struct grib_context - cdef enum: - GRIB_TYPE_UNDEFINED - GRIB_TYPE_LONG - GRIB_TYPE_DOUBLE - GRIB_TYPE_STRING - GRIB_TYPE_BYTES - GRIB_TYPE_SECTION - GRIB_TYPE_LABEL - GRIB_TYPE_MISSING - GRIB_KEYS_ITERATOR_ALL_KEYS - GRIB_KEYS_ITERATOR_SKIP_READ_ONLY - GRIB_KEYS_ITERATOR_SKIP_OPTIONAL - GRIB_KEYS_ITERATOR_SKIP_EDITION_SPECIFIC - GRIB_KEYS_ITERATOR_SKIP_CODED - GRIB_KEYS_ITERATOR_SKIP_COMPUTED - GRIB_KEYS_ITERATOR_SKIP_FUNCTION - GRIB_KEYS_ITERATOR_SKIP_DUPLICATES - GRIB_MISSING_LONG - GRIB_MISSING_DOUBLE - int grib_get_size(grib_handle *h, char *name, size_t *size) - int grib_get_native_type(grib_handle *h, char *name, int *type) - int grib_get_long(grib_handle *h, char *name, long *ival) - int grib_set_long(grib_handle *h, char *name, long val) - int grib_get_long_array(grib_handle *h, char *name, long *ival, size_t *size) - int grib_set_long_array(grib_handle *h, char *name, long *ival, size_t size) - int grib_get_double(grib_handle *h, char *name, double *dval) - int grib_set_double(grib_handle *h, char *name, double dval) - int grib_get_double_array(grib_handle *h, char *name, double *dval, size_t *size) - int grib_set_double_array(grib_handle *h, char *name, double *dval, size_t size) - int grib_get_string(grib_handle *h, char *name, char *mesg, size_t *size) - int grib_set_string(grib_handle *h, char *name, char *mesg, size_t *size) - grib_keys_iterator* grib_keys_iterator_new(grib_handle* h,unsigned long filter_flags, char* name_space) - int grib_keys_iterator_next(grib_keys_iterator *kiter) - char* grib_keys_iterator_get_name(grib_keys_iterator *kiter) - int grib_handle_delete(grib_handle* h) - grib_handle* grib_handle_new_from_file(grib_context* c, FILE* f, int* error) - char* grib_get_error_message(int code) - int grib_keys_iterator_delete( grib_keys_iterator* kiter) - void grib_multi_support_on(grib_context* c) - void grib_multi_support_off(grib_context* c) - int grib_get_message(grib_handle* h , void** message,size_t *message_length) - int grib_get_message_copy(grib_handle* h , void* message,size_t *message_length) - long grib_get_api_version() - grib_handle* grib_handle_clone(grib_handle* h) - grib_index* grib_index_new_from_file(grib_context* c,\ - char* filename,char* keys,int *err) - int grib_index_get_size(grib_index* index,char* key,size_t* size) - int grib_index_get_long(grib_index* index,char* key,\ - long* values,size_t *size) - int grib_index_get_double(grib_index* index,char* key,\ - double* values,size_t *size) - int grib_index_get_string(grib_index* index,char* key,\ - char** values,size_t *size) - int grib_index_select_long(grib_index* index,char* key,long value) - int grib_index_select_double(grib_index* index,char* key,double value) - int grib_index_select_string(grib_index* index,char* key,char* value) - grib_handle* grib_handle_new_from_index(grib_index* index,int *err) - void grib_index_delete(grib_index* index) - int grib_is_missing(grib_handle* h, char* key, int* err) - grib_handle* grib_handle_new_from_message(grib_context * c, void * data,\ - size_t data_len) - grib_handle* grib_handle_new_from_message_copy(grib_context * c, void * data,\ - size_t data_len) - int grib_julian_to_datetime(double jd, long *year, long *month, long *day, long *hour, long *minute, long *second) - int grib_datetime_to_julian(long year, long month, long day, long hour, long minute, long second, double *jd) - int grib_get_gaussian_latitudes(long truncation,double* latitudes) - int grib_index_write(grib_index *index, char *filename) - grib_index* grib_index_read(grib_context* c, char* filename,int *err) - int grib_count_in_file(grib_context* c, FILE* f,int* n) - - -missingvalue_int = GRIB_MISSING_LONG -#this doesn't work, since defined constants are assumed to be integers -#missingvalue_float = GRIB_MISSING_DOUBLE -missingvalue_float = -1.e100 # value given in grib_api.h version 1.90 -def _get_grib_api_version(): - div = lambda v,d: (v//d,v%d) - v = grib_get_api_version() - v,revision = div(v,100) - v,minor = div(v,100) - major = v - return "%d.%d.%d" % (major,minor,revision) -grib_api_version = _get_grib_api_version() -if grib_api_version < "2.19.1": - msg="Warning: ecCodes 2.19.1 or higher is recommended. You are running" - warnings.warn('%s %s.' % (msg,grib_api_version)) -tolerate_badgrib = False - -def tolerate_badgrib_on(): - """ - don't raise an exception when a missing or malformed key is encountered. - """ - global tolerate_badgrib - tolerate_badgrib = True - -def tolerate_badgrib_off(): - """ - raise an exception when a missing or malformed key is encountered - (default behavior). - """ - global tolerate_badgrib - tolerate_badgrib = False - -def gaulats(object nlats): - """ - gaulats(nlats) - - Returns nlats gaussian latitudes, in degrees, oriented from - north to south. nlats must be even.""" - cdef ndarray lats - if nlats%2: - raise ValueError('nlats must be even') - lats = np.empty(nlats, np.float64) - grib_get_gaussian_latitudes(nlats//2, lats.data) - return lats - -# dict for forecast time units (Code Table 4.4). -_ftimedict = {} -_ftimedict[0]='mins' -_ftimedict[1]='hrs' -_ftimedict[2]='days' -_ftimedict[3]='months' -_ftimedict[4]='yrs' -_ftimedict[5]='decades' -_ftimedict[6]='30 yr periods' -_ftimedict[7]='centuries' -_ftimedict[10]='3 hr periods' -_ftimedict[11]='6 hr periods' -_ftimedict[12]='12 hr periods' -_ftimedict[13]='secs' - -# turn on support for multi-field grib messages. -grib_multi_support_on(NULL) - -def multi_support_on(): - """turn on support for multi-field grib messages (default)""" - grib_multi_support_on(NULL) - -def multi_support_off(): - """turn off support for multi-field grib messages""" - grib_multi_support_off(NULL) - -cdef class open(object): - """ - open(filename) - - returns GRIB file iterator object given GRIB filename. When iterated, returns - instances of the :py:class:`gribmessage` class. Behaves much like a python file - object, with :py:meth:`seek`, :py:meth:`tell`, :py:meth:`read` - :py:meth:`readline` and :py:meth:`close` methods - except that offsets are measured in grib messages instead of bytes. - Additional methods include :py:meth:`rewind` (like ``seek(0)``), - :py:meth:`message` - (like ``seek(N-1)``; followed by ``readline()``), and :py:meth:`select` (filters - messages based on specified conditions). The ``__call__`` method forwards - to :py:meth:`select`, and instances can be sliced with ``__getitem__`` (returning - lists of :py:class:`gribmessage` instances). The position of the iterator is not - altered by slicing with ``__getitem__``. - - :ivar messages: The total number of grib messages in the file. - - :ivar messagenumber: The grib message number that the iterator currently - points to (the value returned by :py:meth:`tell`). - - :ivar name: The GRIB file which the instance represents.""" - cdef FILE *_fd - cdef grib_handle *_gh - cdef public object name, messagenumber, messages, closed,\ - has_multi_field_msgs - def __cinit__(self, filename): - # initialize C level objects. - cdef grib_handle *gh - cdef FILE *_fd - bytestr = _strencode(filename) - self._fd = fopen(bytestr, "rb") - if self._fd == NULL: - raise IOError("could not open %s", filename) - self._gh = NULL - def __init__(self, filename): - cdef int err, ncount - cdef grib_handle *gh - # initalize Python level objects - self.name = filename - self.closed = False - self.messagenumber = 0 - # count number of messages in file. - nmsgs = 0 - while 1: - gh = grib_handle_new_from_file(NULL, self._fd, &err) - err = grib_handle_delete(gh) - if gh == NULL: break - nmsgs = nmsgs + 1 - rewind(self._fd) - self.messages = nmsgs - err = grib_count_in_file(NULL, self._fd, &ncount) - # if number of messages returned by grib_count_in_file - # differs from brute-force method of counting, then - # there must be multi-field messages in the file. - if ncount != self.messages: - self.has_multi_field_msgs=True - else: - self.has_multi_field_msgs=False - def __iter__(self): - return self - def __next__(self): - cdef grib_handle* gh - cdef int err - if self.messagenumber == self.messages: - raise StopIteration - if self._gh is not NULL: - err = grib_handle_delete(self._gh) - if err: - raise RuntimeError(grib_get_error_message(err)) - gh = grib_handle_new_from_file(NULL, self._fd, &err) - if err: - raise RuntimeError(grib_get_error_message(err)) - if gh == NULL: - raise StopIteration - else: - self._gh = gh - self.messagenumber = self.messagenumber + 1 - return _create_gribmessage(self._gh, self.messagenumber) - def __getitem__(self, key): - if type(key) == slice: - # for a slice, return a list of grib messages. - beg, end, inc = key.indices(self.messages) - msg = self.tell() - grbs = [self.message(n) for n in xrange(beg,end,inc)] - self.seek(msg) # put iterator back in original position - return grbs - elif type(key) == int or type(key) == long: - # for an integer, return a single grib message. - msg = self.tell() - grb = self.message(key) - self.seek(msg) # put iterator back in original position - return grb - else: - raise KeyError('key must be an integer message number or a slice') - def __call__(self, **kwargs): - """same as :py:meth:`select`""" - return self.select(**kwargs) - def __enter__(self): - return self - def __exit__(self,atype,value,traceback): - self.close() - def tell(self): - """returns position of iterator (grib message number, 0 means iterator - is positioned at beginning of file).""" - return self.messagenumber - def seek(self, msg, from_what=0): - """ - seek(N,from_what=0) - - advance iterator N grib messages from beginning of file - (if ``from_what=0``), from current position (if ``from_what=1``) - or from the end of file (if ``from_what=2``).""" - if from_what not in [0,1,2]: - raise ValueError('from_what keyword arg to seek must be 0,1 or 2') - if msg == 0: - if from_what == 0: - self.rewind() - elif from_what == 1: - return - elif from_what == 2: - self.message(self.messages) - else: - if from_what == 0: - self.message(msg) - elif from_what == 1: - self.message(self.messagenumber+msg) - elif from_what == 2: - self.message(self.messages+msg) - def readline(self): - """ - readline() - - read one entire grib message from the file. - Returns a :py:class:`gribmessage` instance, or ``None`` if an ``EOF`` is encountered.""" - try: - if hasattr(self,'next'): - grb = self.next() - else: - grb = next(self) - except StopIteration: - grb = None - return grb - def read(self,msgs=None): - """ - read(N=None) - - read N messages from current position, returning grib messages instances in a - list. If N=None, all the messages to the end of the file are read. - ``pygrib.open(f).read()`` is equivalent to ``list(pygrib.open(f))``, - both return a list containing :py:class:`gribmessage` instances for all the - grib messages in the file ``f``. - """ - if msgs is None: - grbs = self._advance(self.messages-self.messagenumber,return_msgs=True) - else: - grbs = self._advance(msgs,return_msgs=True) - return grbs - def close(self): - """ - close() - - close GRIB file, deallocate C structures associated with class instance""" - cdef int err - fclose(self._fd) - if self._gh != NULL: - err = grib_handle_delete(self._gh) - if err: - raise RuntimeError(grib_get_error_message(err)) - self.closed = True - self._fd = NULL - - def __dealloc__(self): - # close file handle if there are no more references - # to the object. - cdef int err - if self._fd: - fclose(self._fd) - - def rewind(self): - """rewind iterator (same as ``seek(0)``)""" - # before rewinding, move iterator to end of file - # to make sure it is not left in a funky state - # (such as in the middle of a multi-part message, issue 54) - while 1: - gh = grib_handle_new_from_file(NULL, self._fd, &err) - err = grib_handle_delete(gh) - if gh == NULL: break - rewind(self._fd) - self.messagenumber = 0 - def message(self, N): - """ - message(N) - - retrieve N'th message in iterator. - same as ``seek(N-1)`` followed by ``readline()``.""" - if N < 1: - raise IOError('grb message numbers start at 1') - # if iterator positioned past message N, reposition at beginning. - if self.messagenumber >= N: - self.rewind() - # move iterator forward to message N. - self._advance(N-self.messagenumber) - return _create_gribmessage(self._gh, self.messagenumber) - def select(self, **kwargs): - """ -select(**kwargs) - -return a list of :py:class:`gribmessage` instances from iterator filtered by ``kwargs``. -If keyword is a container object, each grib message -in the iterator is searched for membership in the container. -If keyword is a callable (has a ``_call__`` method), each grib -message in the iterator is tested using the callable (which should -return a boolean). -If keyword is not a container object or a callable, each -grib message in the iterator is tested for equality. - -Example usage: - ->>> import pygrib ->>> grbs = pygrib.open('sampledata/gfs.grb') ->>> selected_grbs=grbs.select(shortName='gh',typeOfLevel='isobaricInhPa',level=10) ->>> for grb in selected_grbs: grb -26:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> # the __call__ method does the same thing ->>> selected_grbs=grbs(shortName='gh',typeOfLevel='isobaricInhPa',level=10) ->>> for grb in selected_grbs: grb -26:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> # to select multiple specific key values, use containers (e.g. sequences) ->>> selected_grbs=grbs(shortName=['u','v'],typeOfLevel='isobaricInhPa',level=[10,50]) ->>> for grb in selected_grbs: grb -193:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 50 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -194:v-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 50 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -199:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -200:v-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> # to select key values based on a conditional expression, use a function ->>> selected_grbs=grbs(shortName='gh',level=lambda l: l < 500 and l >= 300) ->>> for grb in selected_grbs: grb -14:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 45000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -15:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 40000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -16:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 35000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -17:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 30000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst -""" - msgnum = self.tell() - self.rewind() # always search from beginning - grbs = [grb for grb in self if _find(grb, **kwargs)] - self.seek(msgnum) # leave iterator in original position. - if not grbs: - raise ValueError('no matches found') - return grbs - def _advance(self,nmsgs,return_msgs=False): - """advance iterator n messages from current position. - if ``return_msgs==True``, grib message instances are returned - in a list""" - cdef int err - if nmsgs < 0: - raise ValueError('nmsgs must be >= 0 in _advance') - if return_msgs: grbs=[] - for n in range(self.messagenumber,self.messagenumber+nmsgs): - err = grib_handle_delete(self._gh) - if err: - raise RuntimeError(grib_get_error_message(err)) - self._gh = grib_handle_new_from_file(NULL, self._fd, &err) - if err: - raise RuntimeError(grib_get_error_message(err)) - if self._gh == NULL: - raise IOError('not that many messages in file') - self.messagenumber = self.messagenumber + 1 - if return_msgs: grbs.append(_create_gribmessage(self._gh, self.messagenumber)) - if return_msgs: return grbs - -# keep track of python gribmessage attributes so they can be -# distinguished from grib keys. -_private_atts =\ -['_gh','fcstimeunits','expand_reduced','projparams','messagenumber','_all_keys','_ro_keys'] - -def julian_to_datetime(object jd): - """ - julian_to_datetime(julday) - - convert Julian day number to python datetime instance. - - Used to create ``validDate`` and ``analDate`` attributes from - ``julianDay`` and ``forecastTime`` keys.""" - cdef double julday - cdef long year, month, day, hour, minute, second - cdef int err - julday = jd - err = grib_julian_to_datetime(julday, &year, &month, &day, &hour, &minute, &second) - if err: - raise RuntimeError(grib_get_error_message(err)) - return datetime(year, month, day, hour, minute, second) - -def datetime_to_julian(object d): - """ - datetime_to_julian(date) - - convert python datetime instance to Julian day number.""" - cdef double julday - cdef int err - cdef long year, month, day, hour, minute, second - year = d.year; month = d.month; day = d.day; hour = d.hour - minute = d.minute; second = d.second - err = grib_datetime_to_julian(year,month,day,hour,minute,second,&julday) - if err: - raise RuntimeError(grib_get_error_message(err)) - return julday - -cdef _create_gribmessage(grib_handle *gh, object messagenumber): - """factory function for creating gribmessage instances""" - cdef gribmessage grb = gribmessage.__new__(gribmessage) - grb.messagenumber = messagenumber - grb.expand_reduced = True - grb._gh = grib_handle_clone(gh) - grb._all_keys = grb.keys() - grb._ro_keys = grb._read_only_keys() - grb._set_projparams() # set projection parameter dict. - return setdates(grb) - -def fromstring(gribstring): - """ - fromstring(string) - - Create a :py:class:`gribmessage` instance from a python bytes object - representing a binary grib message (the reverse of :py:meth:`gribmessage.tostring`). - """ - cdef char* gribstr - cdef grib_handle * gh - cdef gribmessage grb - gribstr = gribstring - gh = grib_handle_new_from_message_copy(NULL, gribstr, len(gribstring)) - grb = gribmessage.__new__(gribmessage) - grb.messagenumber = 1 - grb.expand_reduced = True - grb._gh = gh - grb._all_keys = grb.keys() - grb._ro_keys = grb._read_only_keys() - grb._set_projparams() # set projection parameter dict. - return setdates(grb) - -def setdates(gribmessage grb): - """ - setdates(grb) - - set ``fcstimeunits``, ``analDate`` and ``validDate`` attributes using - the ``julianDay``, ``forecastTime`` and ``indicatorOfUnitOfTimeRange`` keys. - Called automatically when :py:class:`gribmessage` instance created, - but can be called manually to update keys if one of - them is modified after instance creation. - """ - grb.fcstimeunits = "" - if grb.has_key('indicatorOfUnitOfTimeRange') and\ - grb.indicatorOfUnitOfTimeRange in _ftimedict: - grb.fcstimeunits = _ftimedict[grb.indicatorOfUnitOfTimeRange] - if grb.has_key('forecastTime'): - if grb.has_key('forecastTime'): - ftime = grb.forecastTime - elif grb.has_key('stepRange'): - # if forecastTime doesn't exist, use end of stepRange. - ftime = grb['stepRange'] # computed key, uses stepUnits - # if it's a range, use the end of the range to define validDate - try: - ftime = float(ftime.split('-')[1]) - except: - ftime = None - else: - ftime = 0 - if ftime is None: ftime = 0. # make sure ftime is not None - if grb.has_key('julianDay'): - # don't do anything if datetime fails (because of a miscoded julianDay) - try: - grb.analDate =\ - julian_to_datetime(grb.julianDay) - except ValueError: - return grb - if grb.fcstimeunits == 'hrs': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/24.) - except ValueError: - return grb - elif grb.fcstimeunits == 'mins': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/1440.) - except ValueError: - return grb - elif grb.fcstimeunits == 'days': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime) - except ValueError: - return grb - elif grb.fcstimeunits == 'secs': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/86400.) - except ValueError: - return grb - elif grb.fcstimeunits == '3 hr periods': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/8.) - except ValueError: - return grb - elif grb.fcstimeunits == '6 hr periods': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/4.) - except ValueError: - return grb - elif grb.fcstimeunits == '12 hr periods': - try: - grb.validDate =\ - julian_to_datetime(grb.julianDay+ftime/2.) - except ValueError: - return grb - return grb - -def reload(gribmessage grb): - """ - reload(grb) - - Recreate gribmessage object, updating all the keys to be consistent - with each other. For example, if the ``forecastTime`` key is changed, - recreating the :py:class:`gribmessage` object with this function will cause - the ``analDate`` and ``verifDate`` keys to be updated accordingly. - - Equivalent to ``fromstring(grb.tostring())``""" - return fromstring(grb.tostring()) - -cdef class gribmessage(object): - """ - Grib message object. - - Each grib message has attributes corresponding to GRIB - `keys `__. - Parameter names are described by the ``name``, ``shortName`` and ``paramID`` keys. - pygrib also defines some special attributes which are defined below - - :ivar messagenumber: The grib message number in the file. - - :ivar projparams: A dictionary containing proj4 key/value pairs describing - the grid. Set to ``None`` for unsupported grid types. - - :ivar expand_reduced: If True (default), reduced lat/lon and gaussian grids - will be expanded to regular grids when data is accessed via ``values`` key. If - False, data is kept on unstructured reduced grid, and is returned in a 1-d - array. - - :ivar fcstimeunits: A string representing the forecast time units - (an empty string if not defined). - - :ivar analDate: A python datetime instance describing the analysis date - and time for the forecast. Only set if forecastTime and julianDay keys - exist. - - :ivar validDate: A python datetime instance describing the valid date - and time for the forecast. Only set if forecastTime and julianDay keys - exist, and fcstimeunits is defined. If forecast time - is a range, then ``validDate`` corresponds to the end of the range. - """ - cdef grib_handle *_gh - cdef public messagenumber, projparams, validDate, analDate,\ - expand_reduced, _ro_keys, _all_keys, fcstimeunits - def __init__(self): - # calling "__new__()" will not call "__init__()" ! - raise TypeError("This class cannot be instantiated from Python") - def __dealloc__(self): - # finalization (inverse of __cinit__): needed to allow garbage collector to free memory. - cdef int err - err = grib_handle_delete(self._gh) - def __getattr__(self, item): - # allow gribmessage keys to accessed like attributes. - # this is tried after looking for item in self.__dict__.keys(). - try: - return self.__getitem__(item) - except KeyError: - raise AttributeError(item) - def __setattr__(self, name, value): - # allow gribmessage keys to be set like attributes. - if name not in _private_atts: - # these are grib message keys - self[name] = value - else: - # these are python attributes. - self.__dict__[name]=value - def __repr__(self): - """prints a short inventory of the grib message""" - inventory = [] - if self.valid_key('name'): - if self['name'] != 'unknown': - inventory.append(repr(self.messagenumber)+':'+self['name']) - elif self.valid_key('parameterName'): - inventory.append(repr(self.messagenumber)+':'+self['parameterName']) - if self.valid_key('units'): - if self['units'] != 'unknown': - inventory.append(':'+self['units']) - elif self.valid_key('parameterUnits'): - inventory.append(':'+self['parameterUnits']) - if self.valid_key('stepType'): - inventory.append(' ('+self['stepType']+')') - if self.valid_key('typeOfGrid') or self.valid_key('gridType'): - if self.valid_key('typeOfGrid'): - inventory.append(':'+self['typeOfGrid']) - else: - inventory.append(':'+self['gridType']) - if self.valid_key('typeOfLevel'): - inventory.append(':'+self['typeOfLevel']) - if self.valid_key('topLevel') and self.valid_key('bottomLevel'): - toplev = None; botlev = None - levunits = 'unknown' - if self.valid_key('unitsOfFirstFixedSurface'): - levunits = self['unitsOfFirstFixedSurface'] - if self.valid_key('typeOfFirstFixedSurface') and self['typeOfFirstFixedSurface'] != 255: - toplev = self['topLevel'] - if self.valid_key('scaledValueOfFirstFixedSurface') and\ - self.valid_key('scaleFactorOfFirstFixedSurface'): - if self['scaleFactorOfFirstFixedSurface']: - toplev = self['scaledValueOfFirstFixedSurface']/\ - np.power(10.0,self['scaleFactorOfFirstFixedSurface']) - else: - toplev = self['scaledValueOfFirstFixedSurface'] - if self.valid_key('typeOfSecondFixedSurface') and self['typeOfSecondFixedSurface'] != 255: - botlev = self['bottomLevel'] - if self.valid_key('scaledValueOfSecondFixedSurface') and\ - self.valid_key('scaleFactorOfSecondFixedSurface'): - if self['scaleFactorOfSecondFixedSurface']: - botlev = self['scaledValueOfSecondFixedSurface']/\ - np.power(10.0,self['scaleFactorOfSecondFixedSurface']) - else: - botlev = self['scaledValueOfSecondFixedSurface'] - levstring = None - if botlev is None or toplev == botlev: - levstring = ':level %s' % toplev - else: - levstring = ':levels %s-%s' % (toplev,botlev) - if levunits != 'unknown': - levstring = levstring+' %s' % levunits - if levstring is not None: - inventory.append(levstring) - elif self.valid_key('level'): - inventory.append(':level %s' % self['level']) - if self.valid_key('stepRange'): - ftime = self['stepRange'] # computed key, uses stepUnits - if self.valid_key('stepType') and self['stepType'] != 'instant': - inventory.append(':fcst time %s %s (%s)'%\ - (ftime,self.fcstimeunits,self.stepType)) - else: - inventory.append(':fcst time %s %s'% (ftime,self.fcstimeunits)) - elif self.valid_key('forecastTime'): - ftime = repr(self['forecastTime']) - inventory.append(':fcst time %s %s'% (ftime,self.fcstimeunits)) - if self.valid_key('dataDate') and self.valid_key('dataTime'): - inventory.append( - ':from '+repr(self['dataDate'])+'%04i' % self['dataTime']) - #if self.valid_key('validityDate') and self.valid_key('validityTime'): - # inventory.append( - # ':valid '+repr(self['validityDate'])+repr(self['validityTime'])) - if self.valid_key('perturbationNumber') and\ - self.valid_key('typeOfEnsembleForecast'): - ens_type = self['typeOfEnsembleForecast'] - pert_num = self['perturbationNumber'] - if ens_type == 0: - inventory.append(":lo res cntl fcst") - elif ens_type == 1: - inventory.append(":hi res cntl fcst") - elif ens_type == 2: - inventory.append(":neg ens pert %d" % pert_num) - elif ens_type == 3: - inventory.append(":pos ens pert %d" % pert_num) - if self.valid_key('derivedForecast'): - if self['derivedForecast'] == 0: - inventory.append(":ens mean") - elif self['derivedForecast'] == 1: - inventory.append(":weighted ens mean") - elif self['derivedForecast'] == 2: - inventory.append(":ens std dev") - elif self['derivedForecast'] == 3: - inventory.append(":normalized ens std dev") - elif self['derivedForecast'] == 4: - inventory.append(":ens spread") - elif self['derivedForecast'] == 5: - inventory.append(":ens large anomaly index") - elif self['derivedForecast'] == 6: - inventory.append(":ens mean of cluster") - if self.valid_key('probabilityTypeName'): - inventory.append(":"+self['probabilityTypeName']) - lowerlim = None - if self.valid_key('scaledValueOfLowerLimit') and\ - self.valid_key('scaleFactorOfLowerLimit'): - if self['scaledValueOfLowerLimit'] and\ - self['scaleFactorOfLowerLimit']: - lowerlim = self['scaledValueOfLowerLimit']/\ - np.power(10.0,self['scaleFactorOfLowerLimit']) - upperlim = None - if self.valid_key('scaledValueOfUpperLimit') and\ - self.valid_key('scaleFactorOfUpperLimit'): - if self['scaledValueOfUpperLimit'] and\ - self['scaleFactorOfUpperLimit']: - upperlim = self['scaledValueOfUpperLimit']/\ - np.power(10.0,self['scaleFactorOfUpperLimit']) - if upperlim is not None and lowerlim is not None: - inventory.append(" (%s-%s)" % (upperlim,lowerlim)) - elif upperlim is not None: - inventory.append(" (> %s)" % upperlim) - elif lowerlim is not None: - inventory.append(" (< %s)" % lowerlim) - return ''.join(inventory) - - def _get_key(self, key, default=None): - """get key if it exists, otherwise return default value (default None)""" - if self.has_key(key): - return self[key] - else: - return default - - def expand_grid(self,expand_reduced): - """ - expand_grid(True or False) - - toggle expansion of 1D reduced grid data to a regular (2D) grid (on - by default).""" - self.expand_reduced = expand_reduced - - def is_missing(self,key): - """ - is_missing(key) - - returns True if key is invalid or value associated with key is equal - to grib missing value flag (False otherwise)""" - cdef int err,miss - cdef char *name - bytestr = _strencode(key) - name = bytestr - miss = grib_is_missing(self._gh, name, &err) - if miss or err: - return True - else: - return False - def keys(self): - """ - keys() - - return keys associated with a grib message in a list - """ - cdef grib_keys_iterator* gi - cdef int err, typ - cdef char *name - # use cached keys if they exist. - if self._all_keys is not None: return self._all_keys - # if not, get keys from grib file. - gi = grib_keys_iterator_new(self._gh,\ - GRIB_KEYS_ITERATOR_ALL_KEYS, NULL) - keys = [] - while grib_keys_iterator_next(gi): - name = grib_keys_iterator_get_name(gi) - key = name.decode('ascii') - # ignore these keys. - if key in ["zero","one","eight","eleven","false","thousand","file", - "localDir","7777","oneThousand"]: - continue - err = grib_get_native_type(self._gh, name, &typ) - if err: # skip unreadable keys - continue - # keys with these types are ignored. - if typ not in\ - [GRIB_TYPE_UNDEFINED,GRIB_TYPE_SECTION,GRIB_TYPE_BYTES,GRIB_TYPE_LABEL,GRIB_TYPE_MISSING]: - keys.append(key) - err = grib_keys_iterator_delete(gi) - if err: - raise RuntimeError(grib_get_error_message(err)) - # add extra python keys. - if hasattr(self,'analDate'): keys.append('analDate') - if hasattr(self,'validDate'): keys.append('validDate') - return keys - def _read_only_keys(self): - """ - _read_only_keys() - - return read-only keys associated with a grib message in a list - """ - cdef grib_keys_iterator* gi - cdef int err, typ - cdef char *name - if self._all_keys is None: - self._all_keys = self.keys() - gi = grib_keys_iterator_new(self._gh,\ - GRIB_KEYS_ITERATOR_SKIP_READ_ONLY, NULL) - keys_noro = [] - while grib_keys_iterator_next(gi): - name = grib_keys_iterator_get_name(gi) - key = name.decode('ascii') - keys_noro.append(key) - err = grib_keys_iterator_delete(gi) - if err: - raise RuntimeError(grib_get_error_message(err)) - keys_ro = [] - for key in self._all_keys: - if key not in keys_noro: - keys_ro.append(key) - return keys_ro - def data(self,lat1=None,lat2=None,lon1=None,lon2=None): - """ - data(lat1=None,lat2=None,lon1=None,lon2=None) - - extract data, lats and lons for a subset region defined - by the keywords lat1,lat2,lon1,lon2. - - The default values of lat1,lat2,lon1,lon2 are None, which - means the entire grid is returned. - - If the grid type is unprojected lat/lon and a geographic - subset is requested (by using the lat1,lat2,lon1,lon2 keywords), - then 2-d arrays are returned, otherwise 1-d arrays are returned. - """ - data = self.values - lats, lons = self.latlons() - if lon1==lon2==lat1==lat2==None: - datsubset = data; lonsubset = lons; latsubset = lats - else: - if lat1 is None: lat1 = lats.min() - if lat2 is None: lat2 = lats.max() - if lon1 is None: lon1 = lons.min() - if lon2 is None: lon2 = lons.max() - masklat = (lats >= lat1) & (lats <= lat2) - masklon = (lons >= lon1) & (lons <= lon2) - mask = masklat & masklon - datsubset = data[mask] - latsubset = lats[mask] - lonsubset = lons[mask] - # reshape lat/lon grids so returned arrays are 2-d instead of 1-d - reduced_expand = self['gridType'] in ['reduced_ll','reduced_gg'] and self.expand_reduced - if self['gridType'] in ['regular_gg','regular_ll'] or reduced_expand: - nlats = masklat[:,0].sum() - nlons = masklon[0,:].sum() - if ma.isMA(datsubset): - datsubset = ma.reshape(datsubset,(nlats,nlons)) - else: - datsubset = np.reshape(datsubset,(nlats,nlons)) - latsubset = np.reshape(latsubset,(nlats,nlons)) - lonsubset = np.reshape(lonsubset,(nlats,nlons)) - return datsubset,latsubset, lonsubset - def __setitem__(self, key, value): - """ - change values associated with existing grib keys. - """ - cdef int err, typ - cdef size_t size - cdef char *name - cdef long longval - cdef double doubleval - cdef ndarray datarr - cdef char *strdata - if key in self._ro_keys: - raise KeyError('key "%s" is read only' % key) - if key not in self._all_keys: - raise KeyError('can only modify existing grib keys (key "%s" not found)' - % key ) - bytestr = _strencode(key) - name = bytestr - err = grib_get_native_type(self._gh, name, &typ) - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == GRIB_TYPE_LONG: - # is value an array or a scalar? - datarr = np.asarray(value, np.int) - is_array = False - if datarr.shape: - is_array = True - if not is_array: # scalar - longval = value - err = grib_set_long(self._gh, name, longval) - if err: - raise RuntimeError(grib_get_error_message(err)) - else: - if key == 'values': - datarr = self._unshape_mask(datarr) - if not PyArray_ISCONTIGUOUS(datarr): - datarr = datarr.copy() - size = datarr.size - err = grib_set_long_array(self._gh, name, datarr.data, size) - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == GRIB_TYPE_DOUBLE: - # is value an array or a scalar? - datarr = np.asarray(value, np.float) - is_array = False - if datarr.shape: - is_array = True - if not is_array: # scalar - doubleval = value - err = grib_set_double(self._gh, name, doubleval) - if err: - raise RuntimeError(grib_get_error_message(err)) - else: - if key == 'values': - datarr = self._unshape_mask(datarr) - if not PyArray_ISCONTIGUOUS(datarr): - datarr = datarr.copy() - size = datarr.size - err = grib_set_double_array(self._gh, name, datarr.data, size) - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == GRIB_TYPE_STRING: - size=len(value) - bytestr = _strencode(value) - strdata = bytestr - err = grib_set_string(self._gh, name, strdata, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - else: - raise ValueError("unrecognized grib type % d" % typ) - def __getitem__(self, key): - """ - access values associated with grib keys. - - The key ``values`` will return the data associated with the grib message. - The data is returned as a numpy array, or if missing values or a bitmap - are present, a numpy masked array. Reduced lat/lon or gaussian grid - data is automatically expanded to a regular grid using linear - interpolation (nearest neighbor if an adjacent grid point is a missing - value).""" - cdef int err, typ - cdef size_t size - cdef char *name - cdef long longval - cdef double doubleval - cdef ndarray datarr - cdef char strdata[1024] - bytestr = _strencode(key) - name = bytestr - err = grib_get_size(self._gh, name, &size) - if err: - if tolerate_badgrib: - return None - else: - raise RuntimeError(grib_get_error_message(err)) - err = grib_get_native_type(self._gh, name, &typ) - # force 'paramId' to be size 1 (it returns a size of 7, - # which is a relic from earlier versions of grib_api in which - # paramId was a string and not an integer) - if key=='paramId' and typ == GRIB_TYPE_LONG: size=1 - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == GRIB_TYPE_LONG: - if size == 1: # scalar - err = grib_get_long(self._gh, name, &longval) - if err: - raise RuntimeError(grib_get_error_message(err)) - return longval - else: # array - if self.has_key('jPointsAreConsecutive') and\ - self['jPointsAreConsecutive']: - storageorder='F' - else: - storageorder='C' - datarr = np.zeros(size, np.int, order=storageorder) - err = grib_get_long_array(self._gh, name, datarr.data, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - if key == 'values': - return self._reshape_mask(datarr) - else: - return datarr - elif typ == GRIB_TYPE_DOUBLE: - if size == 1: # scalar - err = grib_get_double(self._gh, name, &doubleval) - if err: - raise RuntimeError(grib_get_error_message(err)) - return doubleval - else: # array - if self.has_key('jPointsAreConsecutive') and\ - self['jPointsAreConsecutive']: - storageorder='F' - else: - storageorder='C' - datarr = np.zeros(size, np.double, order=storageorder) - err = grib_get_double_array(self._gh, name, datarr.data, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - if key == 'values': - return self._reshape_mask(datarr) - else: - return datarr - elif typ == GRIB_TYPE_STRING: - size=1024 # grib_get_size returns 1 ? - err = grib_get_string(self._gh, name, strdata, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - msg = strdata.decode(default_encoding) - return msg.rstrip() - else: - raise ValueError("unrecognized grib type % d" % typ) - def has_key(self,key): - """ - has_key(key) - - tests whether a grib message object has a specified key. - """ - if key in self._all_keys: - return True - try: - self[key] - except: - return False - else: - return True - def valid_key(self,key): - """ - valid_key(key) - - tests whether a grib message object has a specified key, - it is not missing and it has a value that can be read. - """ - ret = key in self._all_keys - # if key exists, but value is missing, return False. - if ret and self.is_missing(key): ret = False - if ret: - try: - self[key] - except: - ret = False - return ret - def tostring(self): - """ - tostring() - - return coded grib message in a binary string. - """ - cdef int err - cdef size_t size - cdef void *message - cdef char *name - cdef FILE *out - bytestr = b'values' - name = bytestr - err = grib_get_size(self._gh, name, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - err = grib_get_message(self._gh, &message, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - msg = PyBytes_FromStringAndSize(message, size) - return msg - def _unshape_mask(self, datarr): - """private method for reshaping and removing mask from "values" array""" - if datarr.ndim > 2: - raise ValueError('array must be 1d or 2d') - # if array is masked, put in masked values and convert to plain numpy array. - if ma.isMA(datarr): - datarr = datarr.filled() - # raise error is expanded reduced grid array is supplied. - if self['gridType'].startswith('reduced'): - if datarr.ndim != 1: - raise ValueError("reduced grid data array must be 1d") - if datarr.ndim == 2: - # check scan modes for rect grids. - # columns scan in the -y direction (so flip) - #if not self['jScansPositively']: - # datsave = datarr.copy() - # datarr[::-1,:] = datsave[:,:] - # rows scan in the -x direction (so flip) - #if self['iScansNegatively']: - # datsave = datarr.copy() - # datarr[:,::-1] = datsave[:,:] - # adjacent rows scan in opposite direction. - # (flip every other row) - if self['alternativeRowScanning']: - datsave = datarr.copy() - datarr[1::2,::-1] = datsave[1::2,:] - return datarr - def _reshape_mask(self, datarr): - """private method for reshaping and adding mask to "values" array""" - cdef double missval - from redtoreg import _redtoreg - if datarr.ndim > 2: - raise ValueError('array must be 1d or 2d') - # reduced grid. - if self['gridType'].startswith('reduced'): - try: - ny = self['Ny'] - except: - ny = self['Nj'] - if self.has_key('missingValue'): - missval = self['missingValue'] - else: - missval = 1.e30 - if self.expand_reduced: - nx = 2*ny - datarr = _redtoreg(2*ny, self['pl'], datarr, missval) - else: - nx = None - elif self.has_key('Nx') and self.has_key('Ny'): - nx = self['Nx'] - ny = self['Ny'] - # key renamed from Ni to Nx in grib_api 1.8.0.1 - elif self.has_key('Ni') and self.has_key('Nj'): - nx = self['Ni'] - ny = self['Nj'] - else: # probably spectral data. - return datarr - if ny != GRIB_MISSING_LONG and nx != GRIB_MISSING_LONG and\ - self.expand_reduced: - datarr.shape = (ny,nx) - # check scan modes for rect grids. - if datarr.ndim == 2: - # columns scan in the -y direction (so flip) - #if not self['jScansPositively']: - # datsave = datarr.copy() - # datarr[:,:] = datsave[::-1,:] - # rows scan in the -x direction (so flip) - #if self['iScansNegatively']: - # datsave = datarr.copy() - # datarr[:,:] = datsave[:,::-1] - # adjacent rows scan in opposite direction. - # (flip every other row) - if self['alternativeRowScanning']: - datsave = datarr.copy() - datarr[1::2,:] = datsave[1::2,::-1] - # if there is a missingValue, and some values missing, - # create a masked array. - #if self.has_key('missingValue') and self['numberOfMissing']: - # don't trust numberOfMissing - if self.has_key('missingValue') and\ - np.count_nonzero(datarr==self['missingValue']): - datarr = ma.masked_values(datarr, self['missingValue']) - return datarr - - def _set_projparams(self): - """ - sets the ``projparams`` instance variable to a dictionary containing - proj4 key/value pairs describing the grid. - """ - projparams = {} - - # check for radius key, if it exists just use it - # and don't bother with shapeOfTheEarth - if self.has_key('radius'): - projparams['a'] = self['radius'] - projparams['b'] = self['radius'] - else: - if self['shapeOfTheEarth'] == 6: - projparams['a']=6371229.0 - projparams['b']=6371229.0 - elif self['shapeOfTheEarth'] in [3,7]: - if self.has_key('scaleFactorOfMajorAxisOfOblateSpheroidEarth'): - scalea = self['scaleFactorOfMajorAxisOfOblateSpheroidEarth'] - scaleb = self['scaleFactorOfMinorAxisOfOblateSpheroidEarth'] - if scalea and scalea is not missingvalue_int: - scalea = np.power(10.0,-scalea) - if self['shapeOfTheEarth'] == 3: # radius in km - scalea = 1000.*scalea - else: - scalea = 1 - if scaleb and scaleb is not missingvalue_int: - scaleb = np.power(10.0,-scaleb) - if self['shapeOfTheEarth'] == 3: # radius in km - scaleb = 1000.*scaleb - else: - scaleb = 1. - else: - scalea = 1. - scaleb = 1. - if parse_version(grib_api_version) < parse_version('1.9.0'): - projparams['a']=self['scaledValueOfMajorAxisOfOblateSpheroidEarth']*scalea - projparams['b']=self['scaledValueOfMinorAxisOfOblateSpheroidEarth']*scaleb - else: - projparams['a']=self['scaledValueOfEarthMajorAxis']*scalea - projparams['b']=self['scaledValueOfEarthMinorAxis']*scaleb - elif self['shapeOfTheEarth'] == 4: - projparams['a']=6378137.0 - projparams['b']=6356752.314 - elif self['shapeOfTheEarth'] == 2: - projparams['a']=6378160.0 - projparams['b']=6356775.0 - elif self['shapeOfTheEarth'] == 1: - if self.has_key('scaleFactorOfRadiusOfSphericalEarth'): - scalea = self['scaleFactorOfRadiusOfSphericalEarth'] - if scalea and scalea is not missingvalue_int: - scalea = np.power(10.0,-scalea) - else: - scalea = 1 - scaleb = scalea - else: - scalea = 1. - scaleb = 1. - projparams['a']=self['scaledValueOfRadiusOfSphericalEarth']*scalea - projparams['b']=self['scaledValueOfRadiusOfSphericalEarth']*scaleb - elif self['shapeOfTheEarth'] == 0: - projparams['a']=6367470.0 - projparams['b']=6367470.0 - elif self['shapeOfTheEarth'] == 5: # WGS84 - projparams['a']=6378137.0 - projparams['b']=6356752.3142 - elif self['shapeOfTheEarth'] == 8: - projparams['a']=6371200.0 - projparams['b']=6371200.0 - else: - if not tolerate_badgrib: raise ValueError('unknown shape of the earth flag') - - if self['gridType'] in ['reduced_gg','reduced_ll','regular_gg','regular_ll']: # regular lat/lon grid - projparams['proj']='longlat' - elif self['gridType'] == 'polar_stereographic': - projparams['proj']='stere' - projparams['lat_ts']=self['latitudeWhereDxAndDyAreSpecifiedInDegrees'] - if self.has_key('projectionCentreFlag'): - projcenterflag = self['projectionCentreFlag'] - elif self.has_key('projectionCenterFlag'): - projcenterflag = self['projectionCenterFlag'] - else: - if not tolerate_badgrib: raise KeyError('cannot find projection center flag') - if projcenterflag == 0: - projparams['lat_0']=90. - else: - projparams['lat_0']=-90. - projparams['lon_0']=self['orientationOfTheGridInDegrees'] - elif self['gridType'] == 'lambert': - projparams['proj']='lcc' - projparams['lon_0']=self['LoVInDegrees'] - projparams['lat_0']=self['LaDInDegrees'] - projparams['lat_1']=self['Latin1InDegrees'] - projparams['lat_2']=self['Latin2InDegrees'] - elif self['gridType'] =='albers': - projparams['proj']='aea' - scale = float(self['grib2divider']) - projparams['lon_0']=self['LoV']/scale - if self['truncateDegrees']: - projparams['lon_0'] = int(projparams['lon_0']) - projparams['lat_0']=self['LaD']/scale - if self['truncateDegrees']: - projparams['lat_0'] = int(projparams['lat_0']) - projparams['lat_1']=self['Latin1']/scale - if self['truncateDegrees']: - projparams['lat_1'] = int(projparams['lat_1']) - projparams['lat_2']=self['Latin2']/scale - if self['truncateDegrees']: - projparams['lat_2'] = int(projparams['lat_2']) - elif self['gridType'] == 'space_view': - projparams['lon_0']=self['longitudeOfSubSatellitePointInDegrees'] - projparams['lat_0']=self['latitudeOfSubSatellitePointInDegrees'] - if projparams['lat_0'] == 0.: # if lat_0 is equator, it's a - projparams['proj'] = 'geos' - # general case of 'near-side perspective projection' (untested) - else: - projparams['proj'] = 'nsper' - scale = float(self['grib2divider']) - projparams['h'] = projparams['a'] * self['Nr']/scale - # h is measured from surface of earth at equator. - projparams['h'] = projparams['h']-projparams['a'] - elif self['gridType'] == "equatorial_azimuthal_equidistant": - projparams['lat_0'] = self['standardParallel']/1.e6 - projparams['lon_0'] = self['centralLongitude']/1.e6 - projparams['proj'] = 'aeqd' - elif self['gridType'] == "lambert_azimuthal_equal_area": - projparams['lat_0'] = self['standardParallel']/1.e6 - projparams['lon_0'] = self['centralLongitude']/1.e6 - projparams['proj'] = 'laea' - elif self['gridType'] == 'mercator': - scale = self._get_key('grib2divider',False) - if scale: - scale = float(scale) - else: - scale = 1000. - lon1 = self['longitudeOfFirstGridPoint']/scale - lon2 = self['longitudeOfLastGridPoint']/scale - if self._get_key('truncateDegrees',False): - lon1 = int(lon1) - lon2 = int(lon2) - if self._get_key('LaD',False): - projparams['lat_ts'] = self['LaD']/scale - else: - projparams['lat_ts'] = self['Latin']/scale - if lon2 < lon1: lon2 += 360. # domain crosses Greenwich - projparams['lon_0']=0.5*(lon1+lon2) - projparams['proj']='merc' - elif self['gridType'] in ['rotated_ll','rotated_gg']: - rot_angle = self['angleOfRotationInDegrees'] - pole_lat = self['latitudeOfSouthernPoleInDegrees'] - pole_lon = self['longitudeOfSouthernPoleInDegrees'] - projparams['o_proj']='longlat' - projparams['proj']='ob_tran' - projparams['o_lat_p']=-pole_lat - projparams['o_lon_p']=rot_angle - projparams['lon_0']=pole_lon - else: # unsupported grid type. - projparams = None - self.projparams = projparams - - def latlons(self): - """ - latlons() - - compute lats and lons (in degrees) of grid. - Currently handles regular lat/lon, global gaussian, mercator, stereographic, - lambert conformal, albers equal-area, space-view, azimuthal - equidistant, reduced gaussian, reduced lat/lon, - lambert azimuthal equal-area, rotated lat/lon and rotated gaussian grids. - - :return: ``lats,lons`` numpy arrays - containing latitudes and longitudes of grid (in degrees). - """ - - if self.projparams is None: - raise ValueError('unsupported grid %s' % self['gridType']) - - if self['gridType'] in ['regular_gg','regular_ll']: # regular lat/lon grid - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lat2 = self['latitudeOfLastGridPointInDegrees'] - lats = self['distinctLatitudes'] - if lat2 < lat1 and lats[-1] > lats[0]: lats = lats[::-1] - lons = self['distinctLongitudes'] - lons,lats = np.meshgrid(lons,lats) - elif self['gridType'] == 'reduced_gg': # reduced global gaussian grid - if self.expand_reduced: - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lat2 = self['latitudeOfLastGridPointInDegrees'] - lats = self['distinctLatitudes'] - if lat2 < lat1 and lats[-1] > lats[0]: lats = lats[::-1] - ny = self['Nj'] - nx = 2*ny - lon1 = self['longitudeOfFirstGridPointInDegrees'] - lon2 = self['longitudeOfLastGridPointInDegrees'] - lons = np.linspace(lon1,lon2,nx) - lons,lats = np.meshgrid(lons,lats) - else: - lats = self['latitudes'] - lons = self['longitudes'] - elif self['gridType'] == 'reduced_ll': # reduced lat/lon grid - if self.expand_reduced: - ny = self['Nj'] - nx = 2*ny - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lat2 = self['latitudeOfLastGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - lon2 = self['longitudeOfLastGridPointInDegrees'] - lons = np.linspace(lon1,lon2,nx) - lats = np.linspace(lat1,lat2,ny) - lons,lats = np.meshgrid(lons,lats) - else: - lats = self['latitudes'] - lons = self['longitudes'] - elif self['gridType'] == 'polar_stereographic': - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - # key renamed from xDirectionGridLengthInMetres to - # DxInMetres grib_api 1.8.0.1. - try: - dx = self['DxInMetres'] - except: - dx = self['xDirectionGridLengthInMetres'] - try: - dy = self['DyInMetres'] - except: - dy = self['yDirectionGridLengthInMetres'] - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - # Set increment direction here for the grid. - # NOTE: some GRIB files are arranged with first gridpoint - # in top left, or top right corner for example... - if self['iScansPositively'] == 0 and dx > 0: dx = -dx - if self['jScansPositively'] == 0 and dy > 0: dy = -dy - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] == 'lambert': - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - dx = self['DxInMetres'] - dy = self['DyInMetres'] - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - # Set increment direction here for the grid. - # NOTE: some GRIB files are arranged with first gridpoint - # in top left, or top right corner for example... - if self['iScansPositively'] == 0 and dx > 0: dx = -dx - if self['jScansPositively'] == 0 and dy > 0: dy = -dy - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] =='albers': - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - dx = self['Dx']/1000. - dy = self['Dy']/1000. - scale = float(self['grib2divider']) - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] == 'space_view': - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - # general case of 'near-side perspective projection' (untested) - if self.projparams['proj'] == 'nsper' and \ - self.projparams['a'] != self.projparams['b']: - raise ValueError('unsupported grid - earth not a perfect sphere') - scale = float(self['grib2divider']) - # latitude of horizon on central meridian - lon_0=self.projparams['lon_0']; lat_0=self.projparams['lat_0'] - lonmax =\ - lon_0+90.-(180./np.pi)*np.arcsin(scale/self['Nr']) - # longitude of horizon on equator - latmax =\ - lat_0+90.-(180./np.pi)*np.arcsin(scale/self['Nr']) - # truncate to nearest thousandth of a degree (to make sure - # they aren't slightly over the horizon) - latmax = int(1000*latmax)/1000. - lonmax = int(1000*lonmax)/1000. - pj = pyproj.Proj(self.projparams) - x1,y1 = pj(lon_0,latmax); x2,y2 = pj(lonmax,lat_0) - width = 2*x2; height = 2*y1 - dx = width/self['dx'] - dy = height/self['dy'] - xmax = dx*(nx-1); ymax = dy*(ny-1) - x = np.linspace(-0.5*xmax,0.5*xmax,nx) - y = np.linspace(-0.5*ymax,0.5*ymax,ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x,y,inverse=True) - # set lons,lats to 1.e30 where undefined - abslons = np.fabs(lons); abslats = np.fabs(lats) - lons = np.where(abslons < 1.e20, lons, 1.e30) - lats = np.where(abslats < 1.e20, lats, 1.e30) - elif self['gridType'] == "equatorial_azimuthal_equidistant": - dx = self['Dx']/1.e3 - dy = self['Dy']/1.e3 - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] == "lambert_azimuthal_equal_area": - dx = self['Dx']/1.e3 - dy = self['Dy']/1.e3 - lat1 = self['latitudeOfFirstGridPointInDegrees'] - lon1 = self['longitudeOfFirstGridPointInDegrees'] - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] == 'mercator': - scale = self._get_key('grib2divider',False) - if scale: - scale = float(scale) - else: - scale = 1000. - lon1 = self['longitudeOfFirstGridPoint']/scale - lon2 = self['longitudeOfLastGridPoint']/scale - if self._get_key('truncateDegrees',False): - lon1 = int(lon1) - lon2 = int(lon2) - lat1 = self['latitudeOfFirstGridPoint']/scale - lat2 = self['latitudeOfLastGridPoint']/scale - if self._get_key('truncateDegrees',False): - lat1 = int(lat1) - lat2 = int(lat2) - pj = pyproj.Proj(self.projparams) - llcrnrx, llcrnry = pj(lon1,lat1) - urcrnrx, urcrnry = pj(lon2,lat2) - try: - nx = self['Nx'] - ny = self['Ny'] - except: - nx = self['Ni'] - ny = self['Nj'] - dx = (urcrnrx-llcrnrx)/(nx-1) - dy = (urcrnry-llcrnry)/(ny-1) - x = llcrnrx+dx*np.arange(nx) - y = llcrnry+dy*np.arange(ny) - x, y = np.meshgrid(x, y) - lons, lats = pj(x, y, inverse=True) - elif self['gridType'] in ['rotated_ll','rotated_gg']: - pj = pyproj.Proj(self.projparams) - lons = self['longitudes'].reshape(self.Nj,self.Ni) - lats = self['latitudes'].reshape(self.Nj,self.Ni) - else: - raise ValueError('unsupported grid %s' % self['gridType']) - return lats, lons - -cdef class index(object): - """ -index(filename, *args) - -returns grib index object given GRIB filename indexed by keys given in -*args. The :py:class:`select` or ``__call__`` method can then be used to selected grib messages -based on specified values of indexed keys. -Unlike :py:meth:`open.select`, containers or callables cannot be used to -select multiple key values. -However, using :py:meth:`index.select` is much faster than :py:meth:`open.select`. - -**Warning**: Searching for data within multi-field grib messages does not -work using an index and is not supported by ECCODES library. NCEP -often puts u and v winds together in a single multi-field grib message. You -will get incorrect results if you try to use an index to find data in these -messages. Use the slower, but more robust :py:meth:`open.select` in this case. - -If no key are given (i.e. *args is empty), it is assumed the filename represents a previously -saved index (created using the ``grib_index_build`` tool or :py:meth:`index.write`) instead of a GRIB file. - -Example usage: - ->>> import pygrib ->>> grbindx=pygrib.index('sampledata/gfs.grb','shortName','typeOfLevel','level') ->>> grbindx.keys -['shortName', 'level'] ->>> selected_grbs=grbindx.select(shortName='gh',typeOfLevel='isobaricInhPa',level=500) ->>> for grb in selected_grbs: ->>> grb -1:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 500 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> # __call__ method does same thing as select ->>> selected_grbs=grbindx(shortName='u',typeOfLevel='isobaricInhPa',level=250) ->>> for grb in selected_grbs: ->>> grb -1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> grbindx.write('gfs.grb.idx') # save index to a file ->>> grbindx.close() ->>> grbindx = pygrib.index('gfs.grb.idx') # re-open index (no keys specified) ->>> grbindx.keys # not set when opening a saved index file. -None ->>> for grb in selected_grbs: ->>> grb -1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst - -:ivar keys: list of strings containing keys used in the index. Set to ``None`` - when opening a previously saved grib index file. - -:ivar types: if keys are typed, this list contains the type declarations - (``l``, ``s`` or ``d``). Type declarations are specified by appending to the key - name (i.e. ``level:l`` will search for values of ``level`` that are longs). Set - to ``None`` when opening a previously saved grib index file. -""" - cdef grib_index *_gi - cdef public object keys, types, name - def __cinit__(self, filename, *args): - # initialize C level objects. - cdef grib_index *gi - cdef int err - cdef char *filenamec - cdef char *keys - bytestr = _strencode(filename) - filenamec = bytestr - if args == (): - #raise ValueError('no keys specified for index') - # assume filename is a saved index. - self._gi = grib_index_read(NULL, filenamec, &err) - if err: - raise RuntimeError(grib_get_error_message(err)) - else: - bytestr = _strencode(','.join(args)) - keys = bytestr - self._gi = grib_index_new_from_file (NULL, filenamec, keys, &err) - if err: - raise RuntimeError(grib_get_error_message(err)) - grbs = open(filename) - if grbs.has_multi_field_msgs: - msg=""" -file %s has multi-field messages, keys inside multi-field -messages will not be indexed correctly""" % filename - warnings.warn(msg) - grbs.close() - def __init__(self, filename, *args): - # initalize Python level objects - self.name = filename - self.keys = None - self.types = None - if args != (): - # is type is specified, strip it off. - keys = [arg.split(':')[0] for arg in args] - # if type is declared, save it (None if not declared) - types = [] - for arg in args: - try: - type = arg.split(':')[1] - except IndexError: - type = None - types.append(type) - self.keys = keys - self.types = types - def __call__(self, **kwargs): - """same as :py:meth:`select`""" - return self.select(**kwargs) - def select(self, **kwargs): - """ -select(**kwargs) - -return a list of :py:class:`gribmessage` instances from grib index object -corresponding to specific values of indexed keys (given by kwargs). -Unlike :py:meth:`open.select`, containers or callables cannot be used to -select multiple key values. -However, using :py:meth:`index.select` is much faster than :py:meth:`open.select`. - -Example usage: - ->>> import pygrib ->>> grbindx=pygrib.index('sampledata/gfs.grb','shortName','typeOfLevel','level') ->>> selected_grbs=grbindx.select(shortName='gh',typeOfLevel='isobaricInhPa',level=500) ->>> for grb in selected_grbs: ->>> grb -1:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 500 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> # __call__ method does same thing as select ->>> selected_grbs=grbindx(shortName='u',typeOfLevel='isobaricInhPa',level=250) ->>> for grb in selected_grbs: ->>> grb -1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst ->>> grbindx.close() -""" - cdef grib_handle *gh - cdef int err - cdef size_t size - cdef long longval - cdef double doubval - cdef char *strval - cdef char *key - # set index selection. - # used declared type if available, other infer from type of value. - sizetot = 0 - for k,v in kwargs.items(): - if self.keys is not None and k not in self.keys: - raise KeyError('key not part of grib index') - if self.types is not None: - typ = self.types[self.keys.index(k)] - else: - typ = None - bytestr = _strencode(k) - key = bytestr - err = grib_index_get_size(self._gi, key, &size) - if err: - raise RuntimeError(grib_get_error_message(err)) - sizetot = sizetot + size - # if there are no matches for this key, just skip it - if not size: - continue - if typ == 'l' or (type(v) == int or type(v) == long): - longval = long(v) - err = grib_index_select_long(self._gi, key, longval) - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == 'd' or type(v) == float: - doubval = float(v) - err = grib_index_select_double(self._gi, key, doubval) - if err: - raise RuntimeError(grib_get_error_message(err)) - elif typ == 's' or _is_stringlike(v): - bytestr = _strencode(v) - strval = bytestr - err = grib_index_select_string(self._gi, key, strval) - if err: - raise RuntimeError(grib_get_error_message(err)) - else: - raise TypeError('value must be float, int or string') - # if no matches found, raise an error. - if sizetot == 0: - raise ValueError('no matches found') - # create a list of grib messages corresponding to selection. - messagenumber = 0; grbs = [] - while 1: - gh = grib_handle_new_from_index(self._gi, &err) - if err or gh == NULL: - break - else: - messagenumber = messagenumber + 1 - grbs.append(_create_gribmessage(gh, messagenumber)) - err = grib_handle_delete(gh) - if err: - raise RuntimeError(grib_get_error_message(err)) - if not grbs: - raise ValueError('no matches found') - # return the list of grib messages. - return grbs - def write(self,filename): - """ - write(filename) - - save grib index to file""" - cdef char * filenamec - bytestr = _strencode(filename) - filenamec = bytestr - err = grib_index_write(self._gi, filenamec); - if err: - raise RuntimeError(grib_get_error_message(err)) - def close(self): - """ - close() - - deallocate C structures associated with class instance""" - grib_index_delete(self._gi) - self._gi = NULL - - def __dealloc__(self): - # deallocate storage when there are no more references - # to the object. - if self._gi != NULL: - grib_index_delete(self._gi) - -def _is_stringlike(a): - if type(a) == str or type(a) == bytes or type(a) == unicode: - return True - else: - return False - -def _is_container(a): - # is object container-like? (can test for - # membership with "is in", but not a string) - try: 1 in a - except: return False - if _is_stringlike(a): return False - return True - -def _find(grb, **kwargs): - # search for key/value matches in grib message. - # If value is a container-like object, search for matches to any element. - # If value is a function, call that function with key value to determine - # whether it is a match. - for k,v in kwargs.items(): - if not grb.has_key(k): return False - # is v a "container-like" non-string object? - iscontainer = _is_container(v) - # is v callable? - iscallable = hasattr(v, '__call__') - # if v is callable and container-like, treat it as a container. - # v not a container or a function. - if not iscontainer and not iscallable and getattr(grb,k)==v: - continue - elif iscontainer and getattr(grb,k) in v: # v a container. - continue - elif iscallable and v(getattr(grb,k)): # v a function - continue - else: - return False - return True - -cdef _strencode(pystr,encoding=None): - # encode a string into bytes. If already bytes, do nothing. - # uses default_encoding module variable for default encoding. - if encoding is None: - encoding = default_encoding - try: - return pystr.encode(encoding) - except AttributeError: - return pystr # already bytes? diff --git a/redtoreg.pyx b/redtoreg.pyx deleted file mode 100644 index d4e7435f..00000000 --- a/redtoreg.pyx +++ /dev/null @@ -1,55 +0,0 @@ -import numpy as np -cimport numpy as npc -def _redtoreg(object nlonsin, npc.ndarray lonsperlat, npc.ndarray redgrid, \ - object missval): - """ - convert data on global reduced gaussian to global - full gaussian grid using linear interpolation. - """ - cdef long i, j, n, im, ip, indx, ilons, nlats, npts - cdef double zxi, zdx, flons, missvl - cdef npc.ndarray reggrid - cdef double *redgrdptr - cdef double *reggrdptr - cdef long *lonsptr - nlons = nlonsin - nlats = len(lonsperlat) - npts = len(redgrid) - if lonsperlat.sum() != npts: - msg='size of reduced grid does not match number of data values' - raise ValueError(msg) - reggrid = missval*np.ones((nlats,nlons),np.double) - # get data buffers and cast to desired type. - lonsptr = lonsperlat.data - redgrdptr = redgrid.data - reggrdptr = reggrid.data - missvl = missval - # iterate over full grid, do linear interpolation. - n = 0 - indx = 0 - for j from 0 <= j < nlats: - ilons = lonsptr[j] - flons = ilons - for i from 0 <= i < nlons: - # zxi is the grid index (relative to the reduced grid) - # of the i'th point on the full grid. - zxi = i * flons / nlons # goes from 0 to ilons - im = zxi - zdx = zxi - im - if ilons != 0: - im = (im + ilons)%ilons - ip = (im + 1 + ilons)%ilons - # if one of the nearest values is missing, use nearest - # neighbor interpolation. - if redgrdptr[indx+im] == missvl or\ - redgrdptr[indx+ip] == missvl: - if zdx < 0.5: - reggrdptr[n] = redgrdptr[indx+im] - else: - reggrdptr[n] = redgrdptr[indx+ip] - else: # linear interpolation. - reggrdptr[n] = redgrdptr[indx+im]*(1.-zdx) +\ - redgrdptr[indx+ip]*zdx - n = n + 1 - indx = indx + ilons - return reggrid From 03c43e07e58ce6f89f63698e8d8cd96874581b07 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:33:39 -0700 Subject: [PATCH 05/44] obsolete --- .travis.yml | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index dc88bd77..00000000 --- a/.travis.yml +++ /dev/null @@ -1,44 +0,0 @@ -language: python -dist: focal -sudo: false - -arch: - - ppc64le - -addons: - apt: - packages: - - libproj-dev - - proj-bin - - libeccodes-dev - -env: - global: - - DEPENDS="cython numpy pyproj<3.0.0" - - PROJ_DIR=/usr - - PROJ_LIB=/usr/share/proj - -matrix: - fast_finish: true - include: - - name: "python-2.7" - env: PY=2.7 - - name: "python-3.7" - env: PY=3.7 - - name: "python-3.8" - env: PY=3.8 - - name: "python-3.9" - env: PY=3.9 - -notifications: - email: false - -before_install: - - pip install --upgrade pip - - pip install $DEPENDS - -install: - - python setup.py install - -script: - - python test.py From ad2272edf3bccf048c3b333f5d12e2fefa89e286 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:33:45 -0700 Subject: [PATCH 06/44] remove .travis.yml --- MANIFEST.in | 3 --- 1 file changed, 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index dd02ad1f..47d82e71 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,7 @@ include MANIFEST.in include LICENSE include pyproject.toml -include pygrib.pyx -include redtoreg.pyx include setup.py -include .travis.yml include test.py include README.md include utils/*grib* From 489380391a35967ed4a96e3f4d06f03b9885d4db Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:34:30 -0700 Subject: [PATCH 07/44] update --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 47d82e71..74661d2d 100755 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,6 +4,8 @@ include pyproject.toml include setup.py include test.py include README.md +include pygrib/__init__.py +include pygrib/_pygrib.pyx include utils/*grib* recursive-include docs * include sampledata/*.grb From 6aed25b0386a6865da1a34910d162c620aeb0e6b Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:48:49 -0700 Subject: [PATCH 08/44] move test.py to test dir --- pygrib/_pygrib.pyx | 1927 +++++++++++++++++++++++++++++++++++++++ setup.py | 30 +- test.py => test/test.py | 16 +- 3 files changed, 1951 insertions(+), 22 deletions(-) create mode 100644 pygrib/_pygrib.pyx rename test.py => test/test.py (96%) diff --git a/pygrib/_pygrib.pyx b/pygrib/_pygrib.pyx new file mode 100644 index 00000000..bf92e944 --- /dev/null +++ b/pygrib/_pygrib.pyx @@ -0,0 +1,1927 @@ +"""pygrib module""" + +__version__ = '2.1.2' + +import numpy as np +cimport numpy as npc +import warnings +from datetime import datetime +from pkg_resources import parse_version +from numpy import ma +import pyproj +import_array() + +cdef _redtoreg(object nlonsin, npc.ndarray lonsperlat, npc.ndarray redgrid, \ + object missval): + """ + convert data on global reduced gaussian to global + full gaussian grid using linear interpolation. + """ + cdef long i, j, n, im, ip, indx, ilons, nlats, npts + cdef double zxi, zdx, flons, missvl + cdef npc.ndarray reggrid + cdef double *redgrdptr + cdef double *reggrdptr + cdef long *lonsptr + nlons = nlonsin + nlats = len(lonsperlat) + npts = len(redgrid) + if lonsperlat.sum() != npts: + msg='size of reduced grid does not match number of data values' + raise ValueError(msg) + reggrid = missval*np.ones((nlats,nlons),np.double) + # get data buffers and cast to desired type. + lonsptr = lonsperlat.data + redgrdptr = redgrid.data + reggrdptr = reggrid.data + missvl = missval + # iterate over full grid, do linear interpolation. + n = 0 + indx = 0 + for j from 0 <= j < nlats: + ilons = lonsptr[j] + flons = ilons + for i from 0 <= i < nlons: + # zxi is the grid index (relative to the reduced grid) + # of the i'th point on the full grid. + zxi = i * flons / nlons # goes from 0 to ilons + im = zxi + zdx = zxi - im + if ilons != 0: + im = (im + ilons)%ilons + ip = (im + 1 + ilons)%ilons + # if one of the nearest values is missing, use nearest + # neighbor interpolation. + if redgrdptr[indx+im] == missvl or\ + redgrdptr[indx+ip] == missvl: + if zdx < 0.5: + reggrdptr[n] = redgrdptr[indx+im] + else: + reggrdptr[n] = redgrdptr[indx+ip] + else: # linear interpolation. + reggrdptr[n] = redgrdptr[indx+im]*(1.-zdx) +\ + redgrdptr[indx+ip]*zdx + n = n + 1 + indx = indx + ilons + return reggrid + +cdef extern from "stdlib.h": + ctypedef long size_t + void *malloc(size_t size) + void free(void *ptr) + +cdef extern from "stdio.h": + ctypedef struct FILE + FILE *fopen(char *path, char *mode) + int fclose(FILE *) + size_t fwrite(void *ptr, size_t size, size_t nitems, FILE *stream) + void rewind (FILE *) + +cdef extern from "Python.h": + object PyBytes_FromStringAndSize(char *s, size_t size) +default_encoding = 'ascii' + +cdef extern from "numpy/arrayobject.h": + ctypedef int npy_intp + ctypedef extern class numpy.ndarray [object PyArrayObject]: + cdef char *data + cdef int nd + cdef npy_intp *dimensions + cdef npy_intp *strides + cdef object base + cdef int flags + npy_intp PyArray_SIZE(ndarray arr) + npy_intp PyArray_ISCONTIGUOUS(ndarray arr) + npy_intp PyArray_ISALIGNED(ndarray arr) + void import_array() + +cdef extern from "grib_api.h": + ctypedef struct grib_handle + ctypedef struct grib_index + ctypedef struct grib_keys_iterator + ctypedef struct grib_context + cdef enum: + GRIB_TYPE_UNDEFINED + GRIB_TYPE_LONG + GRIB_TYPE_DOUBLE + GRIB_TYPE_STRING + GRIB_TYPE_BYTES + GRIB_TYPE_SECTION + GRIB_TYPE_LABEL + GRIB_TYPE_MISSING + GRIB_KEYS_ITERATOR_ALL_KEYS + GRIB_KEYS_ITERATOR_SKIP_READ_ONLY + GRIB_KEYS_ITERATOR_SKIP_OPTIONAL + GRIB_KEYS_ITERATOR_SKIP_EDITION_SPECIFIC + GRIB_KEYS_ITERATOR_SKIP_CODED + GRIB_KEYS_ITERATOR_SKIP_COMPUTED + GRIB_KEYS_ITERATOR_SKIP_FUNCTION + GRIB_KEYS_ITERATOR_SKIP_DUPLICATES + GRIB_MISSING_LONG + GRIB_MISSING_DOUBLE + int grib_get_size(grib_handle *h, char *name, size_t *size) + int grib_get_native_type(grib_handle *h, char *name, int *type) + int grib_get_long(grib_handle *h, char *name, long *ival) + int grib_set_long(grib_handle *h, char *name, long val) + int grib_get_long_array(grib_handle *h, char *name, long *ival, size_t *size) + int grib_set_long_array(grib_handle *h, char *name, long *ival, size_t size) + int grib_get_double(grib_handle *h, char *name, double *dval) + int grib_set_double(grib_handle *h, char *name, double dval) + int grib_get_double_array(grib_handle *h, char *name, double *dval, size_t *size) + int grib_set_double_array(grib_handle *h, char *name, double *dval, size_t size) + int grib_get_string(grib_handle *h, char *name, char *mesg, size_t *size) + int grib_set_string(grib_handle *h, char *name, char *mesg, size_t *size) + grib_keys_iterator* grib_keys_iterator_new(grib_handle* h,unsigned long filter_flags, char* name_space) + int grib_keys_iterator_next(grib_keys_iterator *kiter) + char* grib_keys_iterator_get_name(grib_keys_iterator *kiter) + int grib_handle_delete(grib_handle* h) + grib_handle* grib_handle_new_from_file(grib_context* c, FILE* f, int* error) + char* grib_get_error_message(int code) + int grib_keys_iterator_delete( grib_keys_iterator* kiter) + void grib_multi_support_on(grib_context* c) + void grib_multi_support_off(grib_context* c) + int grib_get_message(grib_handle* h , void** message,size_t *message_length) + int grib_get_message_copy(grib_handle* h , void* message,size_t *message_length) + long grib_get_api_version() + grib_handle* grib_handle_clone(grib_handle* h) + grib_index* grib_index_new_from_file(grib_context* c,\ + char* filename,char* keys,int *err) + int grib_index_get_size(grib_index* index,char* key,size_t* size) + int grib_index_get_long(grib_index* index,char* key,\ + long* values,size_t *size) + int grib_index_get_double(grib_index* index,char* key,\ + double* values,size_t *size) + int grib_index_get_string(grib_index* index,char* key,\ + char** values,size_t *size) + int grib_index_select_long(grib_index* index,char* key,long value) + int grib_index_select_double(grib_index* index,char* key,double value) + int grib_index_select_string(grib_index* index,char* key,char* value) + grib_handle* grib_handle_new_from_index(grib_index* index,int *err) + void grib_index_delete(grib_index* index) + int grib_is_missing(grib_handle* h, char* key, int* err) + grib_handle* grib_handle_new_from_message(grib_context * c, void * data,\ + size_t data_len) + grib_handle* grib_handle_new_from_message_copy(grib_context * c, void * data,\ + size_t data_len) + int grib_julian_to_datetime(double jd, long *year, long *month, long *day, long *hour, long *minute, long *second) + int grib_datetime_to_julian(long year, long month, long day, long hour, long minute, long second, double *jd) + int grib_get_gaussian_latitudes(long truncation,double* latitudes) + int grib_index_write(grib_index *index, char *filename) + grib_index* grib_index_read(grib_context* c, char* filename,int *err) + int grib_count_in_file(grib_context* c, FILE* f,int* n) + + +missingvalue_int = GRIB_MISSING_LONG +#this doesn't work, since defined constants are assumed to be integers +#missingvalue_float = GRIB_MISSING_DOUBLE +missingvalue_float = -1.e100 # value given in grib_api.h version 1.90 +def _get_grib_api_version(): + div = lambda v,d: (v//d,v%d) + v = grib_get_api_version() + v,revision = div(v,100) + v,minor = div(v,100) + major = v + return "%d.%d.%d" % (major,minor,revision) +grib_api_version = _get_grib_api_version() +if grib_api_version < "2.19.1": + msg="Warning: ecCodes 2.19.1 or higher is recommended. You are running" + warnings.warn('%s %s.' % (msg,grib_api_version)) +tolerate_badgrib = False + +def tolerate_badgrib_on(): + """ + don't raise an exception when a missing or malformed key is encountered. + """ + global tolerate_badgrib + tolerate_badgrib = True + +def tolerate_badgrib_off(): + """ + raise an exception when a missing or malformed key is encountered + (default behavior). + """ + global tolerate_badgrib + tolerate_badgrib = False + +def gaulats(object nlats): + """ + gaulats(nlats) + + Returns nlats gaussian latitudes, in degrees, oriented from + north to south. nlats must be even.""" + cdef ndarray lats + if nlats%2: + raise ValueError('nlats must be even') + lats = np.empty(nlats, np.float64) + grib_get_gaussian_latitudes(nlats//2, lats.data) + return lats + +# dict for forecast time units (Code Table 4.4). +_ftimedict = {} +_ftimedict[0]='mins' +_ftimedict[1]='hrs' +_ftimedict[2]='days' +_ftimedict[3]='months' +_ftimedict[4]='yrs' +_ftimedict[5]='decades' +_ftimedict[6]='30 yr periods' +_ftimedict[7]='centuries' +_ftimedict[10]='3 hr periods' +_ftimedict[11]='6 hr periods' +_ftimedict[12]='12 hr periods' +_ftimedict[13]='secs' + +# turn on support for multi-field grib messages. +grib_multi_support_on(NULL) + +def multi_support_on(): + """turn on support for multi-field grib messages (default)""" + grib_multi_support_on(NULL) + +def multi_support_off(): + """turn off support for multi-field grib messages""" + grib_multi_support_off(NULL) + +cdef class open(object): + """ + open(filename) + + returns GRIB file iterator object given GRIB filename. When iterated, returns + instances of the :py:class:`gribmessage` class. Behaves much like a python file + object, with :py:meth:`seek`, :py:meth:`tell`, :py:meth:`read` + :py:meth:`readline` and :py:meth:`close` methods + except that offsets are measured in grib messages instead of bytes. + Additional methods include :py:meth:`rewind` (like ``seek(0)``), + :py:meth:`message` + (like ``seek(N-1)``; followed by ``readline()``), and :py:meth:`select` (filters + messages based on specified conditions). The ``__call__`` method forwards + to :py:meth:`select`, and instances can be sliced with ``__getitem__`` (returning + lists of :py:class:`gribmessage` instances). The position of the iterator is not + altered by slicing with ``__getitem__``. + + :ivar messages: The total number of grib messages in the file. + + :ivar messagenumber: The grib message number that the iterator currently + points to (the value returned by :py:meth:`tell`). + + :ivar name: The GRIB file which the instance represents.""" + cdef FILE *_fd + cdef grib_handle *_gh + cdef public object name, messagenumber, messages, closed,\ + has_multi_field_msgs + def __cinit__(self, filename): + # initialize C level objects. + cdef grib_handle *gh + cdef FILE *_fd + bytestr = _strencode(filename) + self._fd = fopen(bytestr, "rb") + if self._fd == NULL: + raise IOError("could not open %s", filename) + self._gh = NULL + def __init__(self, filename): + cdef int err, ncount + cdef grib_handle *gh + # initalize Python level objects + self.name = filename + self.closed = False + self.messagenumber = 0 + # count number of messages in file. + nmsgs = 0 + while 1: + gh = grib_handle_new_from_file(NULL, self._fd, &err) + err = grib_handle_delete(gh) + if gh == NULL: break + nmsgs = nmsgs + 1 + rewind(self._fd) + self.messages = nmsgs + err = grib_count_in_file(NULL, self._fd, &ncount) + # if number of messages returned by grib_count_in_file + # differs from brute-force method of counting, then + # there must be multi-field messages in the file. + if ncount != self.messages: + self.has_multi_field_msgs=True + else: + self.has_multi_field_msgs=False + def __iter__(self): + return self + def __next__(self): + cdef grib_handle* gh + cdef int err + if self.messagenumber == self.messages: + raise StopIteration + if self._gh is not NULL: + err = grib_handle_delete(self._gh) + if err: + raise RuntimeError(grib_get_error_message(err)) + gh = grib_handle_new_from_file(NULL, self._fd, &err) + if err: + raise RuntimeError(grib_get_error_message(err)) + if gh == NULL: + raise StopIteration + else: + self._gh = gh + self.messagenumber = self.messagenumber + 1 + return _create_gribmessage(self._gh, self.messagenumber) + def __getitem__(self, key): + if type(key) == slice: + # for a slice, return a list of grib messages. + beg, end, inc = key.indices(self.messages) + msg = self.tell() + grbs = [self.message(n) for n in xrange(beg,end,inc)] + self.seek(msg) # put iterator back in original position + return grbs + elif type(key) == int or type(key) == long: + # for an integer, return a single grib message. + msg = self.tell() + grb = self.message(key) + self.seek(msg) # put iterator back in original position + return grb + else: + raise KeyError('key must be an integer message number or a slice') + def __call__(self, **kwargs): + """same as :py:meth:`select`""" + return self.select(**kwargs) + def __enter__(self): + return self + def __exit__(self,atype,value,traceback): + self.close() + def tell(self): + """returns position of iterator (grib message number, 0 means iterator + is positioned at beginning of file).""" + return self.messagenumber + def seek(self, msg, from_what=0): + """ + seek(N,from_what=0) + + advance iterator N grib messages from beginning of file + (if ``from_what=0``), from current position (if ``from_what=1``) + or from the end of file (if ``from_what=2``).""" + if from_what not in [0,1,2]: + raise ValueError('from_what keyword arg to seek must be 0,1 or 2') + if msg == 0: + if from_what == 0: + self.rewind() + elif from_what == 1: + return + elif from_what == 2: + self.message(self.messages) + else: + if from_what == 0: + self.message(msg) + elif from_what == 1: + self.message(self.messagenumber+msg) + elif from_what == 2: + self.message(self.messages+msg) + def readline(self): + """ + readline() + + read one entire grib message from the file. + Returns a :py:class:`gribmessage` instance, or ``None`` if an ``EOF`` is encountered.""" + try: + if hasattr(self,'next'): + grb = self.next() + else: + grb = next(self) + except StopIteration: + grb = None + return grb + def read(self,msgs=None): + """ + read(N=None) + + read N messages from current position, returning grib messages instances in a + list. If N=None, all the messages to the end of the file are read. + ``pygrib.open(f).read()`` is equivalent to ``list(pygrib.open(f))``, + both return a list containing :py:class:`gribmessage` instances for all the + grib messages in the file ``f``. + """ + if msgs is None: + grbs = self._advance(self.messages-self.messagenumber,return_msgs=True) + else: + grbs = self._advance(msgs,return_msgs=True) + return grbs + def close(self): + """ + close() + + close GRIB file, deallocate C structures associated with class instance""" + cdef int err + fclose(self._fd) + if self._gh != NULL: + err = grib_handle_delete(self._gh) + if err: + raise RuntimeError(grib_get_error_message(err)) + self.closed = True + self._fd = NULL + + def __dealloc__(self): + # close file handle if there are no more references + # to the object. + cdef int err + if self._fd: + fclose(self._fd) + + def rewind(self): + """rewind iterator (same as ``seek(0)``)""" + # before rewinding, move iterator to end of file + # to make sure it is not left in a funky state + # (such as in the middle of a multi-part message, issue 54) + while 1: + gh = grib_handle_new_from_file(NULL, self._fd, &err) + err = grib_handle_delete(gh) + if gh == NULL: break + rewind(self._fd) + self.messagenumber = 0 + def message(self, N): + """ + message(N) + + retrieve N'th message in iterator. + same as ``seek(N-1)`` followed by ``readline()``.""" + if N < 1: + raise IOError('grb message numbers start at 1') + # if iterator positioned past message N, reposition at beginning. + if self.messagenumber >= N: + self.rewind() + # move iterator forward to message N. + self._advance(N-self.messagenumber) + return _create_gribmessage(self._gh, self.messagenumber) + def select(self, **kwargs): + """ +select(**kwargs) + +return a list of :py:class:`gribmessage` instances from iterator filtered by ``kwargs``. +If keyword is a container object, each grib message +in the iterator is searched for membership in the container. +If keyword is a callable (has a ``_call__`` method), each grib +message in the iterator is tested using the callable (which should +return a boolean). +If keyword is not a container object or a callable, each +grib message in the iterator is tested for equality. + +Example usage: + +>>> import pygrib +>>> grbs = pygrib.open('sampledata/gfs.grb') +>>> selected_grbs=grbs.select(shortName='gh',typeOfLevel='isobaricInhPa',level=10) +>>> for grb in selected_grbs: grb +26:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> # the __call__ method does the same thing +>>> selected_grbs=grbs(shortName='gh',typeOfLevel='isobaricInhPa',level=10) +>>> for grb in selected_grbs: grb +26:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> # to select multiple specific key values, use containers (e.g. sequences) +>>> selected_grbs=grbs(shortName=['u','v'],typeOfLevel='isobaricInhPa',level=[10,50]) +>>> for grb in selected_grbs: grb +193:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 50 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +194:v-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 50 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +199:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +200:v-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 10 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> # to select key values based on a conditional expression, use a function +>>> selected_grbs=grbs(shortName='gh',level=lambda l: l < 500 and l >= 300) +>>> for grb in selected_grbs: grb +14:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 45000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +15:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 40000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +16:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 35000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +17:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 30000 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +""" + msgnum = self.tell() + self.rewind() # always search from beginning + grbs = [grb for grb in self if _find(grb, **kwargs)] + self.seek(msgnum) # leave iterator in original position. + if not grbs: + raise ValueError('no matches found') + return grbs + def _advance(self,nmsgs,return_msgs=False): + """advance iterator n messages from current position. + if ``return_msgs==True``, grib message instances are returned + in a list""" + cdef int err + if nmsgs < 0: + raise ValueError('nmsgs must be >= 0 in _advance') + if return_msgs: grbs=[] + for n in range(self.messagenumber,self.messagenumber+nmsgs): + err = grib_handle_delete(self._gh) + if err: + raise RuntimeError(grib_get_error_message(err)) + self._gh = grib_handle_new_from_file(NULL, self._fd, &err) + if err: + raise RuntimeError(grib_get_error_message(err)) + if self._gh == NULL: + raise IOError('not that many messages in file') + self.messagenumber = self.messagenumber + 1 + if return_msgs: grbs.append(_create_gribmessage(self._gh, self.messagenumber)) + if return_msgs: return grbs + +# keep track of python gribmessage attributes so they can be +# distinguished from grib keys. +_private_atts =\ +['_gh','fcstimeunits','expand_reduced','projparams','messagenumber','_all_keys','_ro_keys'] + +def julian_to_datetime(object jd): + """ + julian_to_datetime(julday) + + convert Julian day number to python datetime instance. + + Used to create ``validDate`` and ``analDate`` attributes from + ``julianDay`` and ``forecastTime`` keys.""" + cdef double julday + cdef long year, month, day, hour, minute, second + cdef int err + julday = jd + err = grib_julian_to_datetime(julday, &year, &month, &day, &hour, &minute, &second) + if err: + raise RuntimeError(grib_get_error_message(err)) + return datetime(year, month, day, hour, minute, second) + +def datetime_to_julian(object d): + """ + datetime_to_julian(date) + + convert python datetime instance to Julian day number.""" + cdef double julday + cdef int err + cdef long year, month, day, hour, minute, second + year = d.year; month = d.month; day = d.day; hour = d.hour + minute = d.minute; second = d.second + err = grib_datetime_to_julian(year,month,day,hour,minute,second,&julday) + if err: + raise RuntimeError(grib_get_error_message(err)) + return julday + +cdef _create_gribmessage(grib_handle *gh, object messagenumber): + """factory function for creating gribmessage instances""" + cdef gribmessage grb = gribmessage.__new__(gribmessage) + grb.messagenumber = messagenumber + grb.expand_reduced = True + grb._gh = grib_handle_clone(gh) + grb._all_keys = grb.keys() + grb._ro_keys = grb._read_only_keys() + grb._set_projparams() # set projection parameter dict. + return setdates(grb) + +def fromstring(gribstring): + """ + fromstring(string) + + Create a :py:class:`gribmessage` instance from a python bytes object + representing a binary grib message (the reverse of :py:meth:`gribmessage.tostring`). + """ + cdef char* gribstr + cdef grib_handle * gh + cdef gribmessage grb + gribstr = gribstring + gh = grib_handle_new_from_message_copy(NULL, gribstr, len(gribstring)) + grb = gribmessage.__new__(gribmessage) + grb.messagenumber = 1 + grb.expand_reduced = True + grb._gh = gh + grb._all_keys = grb.keys() + grb._ro_keys = grb._read_only_keys() + grb._set_projparams() # set projection parameter dict. + return setdates(grb) + +def setdates(gribmessage grb): + """ + setdates(grb) + + set ``fcstimeunits``, ``analDate`` and ``validDate`` attributes using + the ``julianDay``, ``forecastTime`` and ``indicatorOfUnitOfTimeRange`` keys. + Called automatically when :py:class:`gribmessage` instance created, + but can be called manually to update keys if one of + them is modified after instance creation. + """ + grb.fcstimeunits = "" + if grb.has_key('indicatorOfUnitOfTimeRange') and\ + grb.indicatorOfUnitOfTimeRange in _ftimedict: + grb.fcstimeunits = _ftimedict[grb.indicatorOfUnitOfTimeRange] + if grb.has_key('forecastTime'): + if grb.has_key('forecastTime'): + ftime = grb.forecastTime + elif grb.has_key('stepRange'): + # if forecastTime doesn't exist, use end of stepRange. + ftime = grb['stepRange'] # computed key, uses stepUnits + # if it's a range, use the end of the range to define validDate + try: + ftime = float(ftime.split('-')[1]) + except: + ftime = None + else: + ftime = 0 + if ftime is None: ftime = 0. # make sure ftime is not None + if grb.has_key('julianDay'): + # don't do anything if datetime fails (because of a miscoded julianDay) + try: + grb.analDate =\ + julian_to_datetime(grb.julianDay) + except ValueError: + return grb + if grb.fcstimeunits == 'hrs': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/24.) + except ValueError: + return grb + elif grb.fcstimeunits == 'mins': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/1440.) + except ValueError: + return grb + elif grb.fcstimeunits == 'days': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime) + except ValueError: + return grb + elif grb.fcstimeunits == 'secs': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/86400.) + except ValueError: + return grb + elif grb.fcstimeunits == '3 hr periods': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/8.) + except ValueError: + return grb + elif grb.fcstimeunits == '6 hr periods': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/4.) + except ValueError: + return grb + elif grb.fcstimeunits == '12 hr periods': + try: + grb.validDate =\ + julian_to_datetime(grb.julianDay+ftime/2.) + except ValueError: + return grb + return grb + +def reload(gribmessage grb): + """ + reload(grb) + + Recreate gribmessage object, updating all the keys to be consistent + with each other. For example, if the ``forecastTime`` key is changed, + recreating the :py:class:`gribmessage` object with this function will cause + the ``analDate`` and ``verifDate`` keys to be updated accordingly. + + Equivalent to ``fromstring(grb.tostring())``""" + return fromstring(grb.tostring()) + +cdef class gribmessage(object): + """ + Grib message object. + + Each grib message has attributes corresponding to GRIB + `keys `__. + Parameter names are described by the ``name``, ``shortName`` and ``paramID`` keys. + pygrib also defines some special attributes which are defined below + + :ivar messagenumber: The grib message number in the file. + + :ivar projparams: A dictionary containing proj4 key/value pairs describing + the grid. Set to ``None`` for unsupported grid types. + + :ivar expand_reduced: If True (default), reduced lat/lon and gaussian grids + will be expanded to regular grids when data is accessed via ``values`` key. If + False, data is kept on unstructured reduced grid, and is returned in a 1-d + array. + + :ivar fcstimeunits: A string representing the forecast time units + (an empty string if not defined). + + :ivar analDate: A python datetime instance describing the analysis date + and time for the forecast. Only set if forecastTime and julianDay keys + exist. + + :ivar validDate: A python datetime instance describing the valid date + and time for the forecast. Only set if forecastTime and julianDay keys + exist, and fcstimeunits is defined. If forecast time + is a range, then ``validDate`` corresponds to the end of the range. + """ + cdef grib_handle *_gh + cdef public messagenumber, projparams, validDate, analDate,\ + expand_reduced, _ro_keys, _all_keys, fcstimeunits + def __init__(self): + # calling "__new__()" will not call "__init__()" ! + raise TypeError("This class cannot be instantiated from Python") + def __dealloc__(self): + # finalization (inverse of __cinit__): needed to allow garbage collector to free memory. + cdef int err + err = grib_handle_delete(self._gh) + def __getattr__(self, item): + # allow gribmessage keys to accessed like attributes. + # this is tried after looking for item in self.__dict__.keys(). + try: + return self.__getitem__(item) + except KeyError: + raise AttributeError(item) + def __setattr__(self, name, value): + # allow gribmessage keys to be set like attributes. + if name not in _private_atts: + # these are grib message keys + self[name] = value + else: + # these are python attributes. + self.__dict__[name]=value + def __repr__(self): + """prints a short inventory of the grib message""" + inventory = [] + if self.valid_key('name'): + if self['name'] != 'unknown': + inventory.append(repr(self.messagenumber)+':'+self['name']) + elif self.valid_key('parameterName'): + inventory.append(repr(self.messagenumber)+':'+self['parameterName']) + if self.valid_key('units'): + if self['units'] != 'unknown': + inventory.append(':'+self['units']) + elif self.valid_key('parameterUnits'): + inventory.append(':'+self['parameterUnits']) + if self.valid_key('stepType'): + inventory.append(' ('+self['stepType']+')') + if self.valid_key('typeOfGrid') or self.valid_key('gridType'): + if self.valid_key('typeOfGrid'): + inventory.append(':'+self['typeOfGrid']) + else: + inventory.append(':'+self['gridType']) + if self.valid_key('typeOfLevel'): + inventory.append(':'+self['typeOfLevel']) + if self.valid_key('topLevel') and self.valid_key('bottomLevel'): + toplev = None; botlev = None + levunits = 'unknown' + if self.valid_key('unitsOfFirstFixedSurface'): + levunits = self['unitsOfFirstFixedSurface'] + if self.valid_key('typeOfFirstFixedSurface') and self['typeOfFirstFixedSurface'] != 255: + toplev = self['topLevel'] + if self.valid_key('scaledValueOfFirstFixedSurface') and\ + self.valid_key('scaleFactorOfFirstFixedSurface'): + if self['scaleFactorOfFirstFixedSurface']: + toplev = self['scaledValueOfFirstFixedSurface']/\ + np.power(10.0,self['scaleFactorOfFirstFixedSurface']) + else: + toplev = self['scaledValueOfFirstFixedSurface'] + if self.valid_key('typeOfSecondFixedSurface') and self['typeOfSecondFixedSurface'] != 255: + botlev = self['bottomLevel'] + if self.valid_key('scaledValueOfSecondFixedSurface') and\ + self.valid_key('scaleFactorOfSecondFixedSurface'): + if self['scaleFactorOfSecondFixedSurface']: + botlev = self['scaledValueOfSecondFixedSurface']/\ + np.power(10.0,self['scaleFactorOfSecondFixedSurface']) + else: + botlev = self['scaledValueOfSecondFixedSurface'] + levstring = None + if botlev is None or toplev == botlev: + levstring = ':level %s' % toplev + else: + levstring = ':levels %s-%s' % (toplev,botlev) + if levunits != 'unknown': + levstring = levstring+' %s' % levunits + if levstring is not None: + inventory.append(levstring) + elif self.valid_key('level'): + inventory.append(':level %s' % self['level']) + if self.valid_key('stepRange'): + ftime = self['stepRange'] # computed key, uses stepUnits + if self.valid_key('stepType') and self['stepType'] != 'instant': + inventory.append(':fcst time %s %s (%s)'%\ + (ftime,self.fcstimeunits,self.stepType)) + else: + inventory.append(':fcst time %s %s'% (ftime,self.fcstimeunits)) + elif self.valid_key('forecastTime'): + ftime = repr(self['forecastTime']) + inventory.append(':fcst time %s %s'% (ftime,self.fcstimeunits)) + if self.valid_key('dataDate') and self.valid_key('dataTime'): + inventory.append( + ':from '+repr(self['dataDate'])+'%04i' % self['dataTime']) + #if self.valid_key('validityDate') and self.valid_key('validityTime'): + # inventory.append( + # ':valid '+repr(self['validityDate'])+repr(self['validityTime'])) + if self.valid_key('perturbationNumber') and\ + self.valid_key('typeOfEnsembleForecast'): + ens_type = self['typeOfEnsembleForecast'] + pert_num = self['perturbationNumber'] + if ens_type == 0: + inventory.append(":lo res cntl fcst") + elif ens_type == 1: + inventory.append(":hi res cntl fcst") + elif ens_type == 2: + inventory.append(":neg ens pert %d" % pert_num) + elif ens_type == 3: + inventory.append(":pos ens pert %d" % pert_num) + if self.valid_key('derivedForecast'): + if self['derivedForecast'] == 0: + inventory.append(":ens mean") + elif self['derivedForecast'] == 1: + inventory.append(":weighted ens mean") + elif self['derivedForecast'] == 2: + inventory.append(":ens std dev") + elif self['derivedForecast'] == 3: + inventory.append(":normalized ens std dev") + elif self['derivedForecast'] == 4: + inventory.append(":ens spread") + elif self['derivedForecast'] == 5: + inventory.append(":ens large anomaly index") + elif self['derivedForecast'] == 6: + inventory.append(":ens mean of cluster") + if self.valid_key('probabilityTypeName'): + inventory.append(":"+self['probabilityTypeName']) + lowerlim = None + if self.valid_key('scaledValueOfLowerLimit') and\ + self.valid_key('scaleFactorOfLowerLimit'): + if self['scaledValueOfLowerLimit'] and\ + self['scaleFactorOfLowerLimit']: + lowerlim = self['scaledValueOfLowerLimit']/\ + np.power(10.0,self['scaleFactorOfLowerLimit']) + upperlim = None + if self.valid_key('scaledValueOfUpperLimit') and\ + self.valid_key('scaleFactorOfUpperLimit'): + if self['scaledValueOfUpperLimit'] and\ + self['scaleFactorOfUpperLimit']: + upperlim = self['scaledValueOfUpperLimit']/\ + np.power(10.0,self['scaleFactorOfUpperLimit']) + if upperlim is not None and lowerlim is not None: + inventory.append(" (%s-%s)" % (upperlim,lowerlim)) + elif upperlim is not None: + inventory.append(" (> %s)" % upperlim) + elif lowerlim is not None: + inventory.append(" (< %s)" % lowerlim) + return ''.join(inventory) + + def _get_key(self, key, default=None): + """get key if it exists, otherwise return default value (default None)""" + if self.has_key(key): + return self[key] + else: + return default + + def expand_grid(self,expand_reduced): + """ + expand_grid(True or False) + + toggle expansion of 1D reduced grid data to a regular (2D) grid (on + by default).""" + self.expand_reduced = expand_reduced + + def is_missing(self,key): + """ + is_missing(key) + + returns True if key is invalid or value associated with key is equal + to grib missing value flag (False otherwise)""" + cdef int err,miss + cdef char *name + bytestr = _strencode(key) + name = bytestr + miss = grib_is_missing(self._gh, name, &err) + if miss or err: + return True + else: + return False + def keys(self): + """ + keys() + + return keys associated with a grib message in a list + """ + cdef grib_keys_iterator* gi + cdef int err, typ + cdef char *name + # use cached keys if they exist. + if self._all_keys is not None: return self._all_keys + # if not, get keys from grib file. + gi = grib_keys_iterator_new(self._gh,\ + GRIB_KEYS_ITERATOR_ALL_KEYS, NULL) + keys = [] + while grib_keys_iterator_next(gi): + name = grib_keys_iterator_get_name(gi) + key = name.decode('ascii') + # ignore these keys. + if key in ["zero","one","eight","eleven","false","thousand","file", + "localDir","7777","oneThousand"]: + continue + err = grib_get_native_type(self._gh, name, &typ) + if err: # skip unreadable keys + continue + # keys with these types are ignored. + if typ not in\ + [GRIB_TYPE_UNDEFINED,GRIB_TYPE_SECTION,GRIB_TYPE_BYTES,GRIB_TYPE_LABEL,GRIB_TYPE_MISSING]: + keys.append(key) + err = grib_keys_iterator_delete(gi) + if err: + raise RuntimeError(grib_get_error_message(err)) + # add extra python keys. + if hasattr(self,'analDate'): keys.append('analDate') + if hasattr(self,'validDate'): keys.append('validDate') + return keys + def _read_only_keys(self): + """ + _read_only_keys() + + return read-only keys associated with a grib message in a list + """ + cdef grib_keys_iterator* gi + cdef int err, typ + cdef char *name + if self._all_keys is None: + self._all_keys = self.keys() + gi = grib_keys_iterator_new(self._gh,\ + GRIB_KEYS_ITERATOR_SKIP_READ_ONLY, NULL) + keys_noro = [] + while grib_keys_iterator_next(gi): + name = grib_keys_iterator_get_name(gi) + key = name.decode('ascii') + keys_noro.append(key) + err = grib_keys_iterator_delete(gi) + if err: + raise RuntimeError(grib_get_error_message(err)) + keys_ro = [] + for key in self._all_keys: + if key not in keys_noro: + keys_ro.append(key) + return keys_ro + def data(self,lat1=None,lat2=None,lon1=None,lon2=None): + """ + data(lat1=None,lat2=None,lon1=None,lon2=None) + + extract data, lats and lons for a subset region defined + by the keywords lat1,lat2,lon1,lon2. + + The default values of lat1,lat2,lon1,lon2 are None, which + means the entire grid is returned. + + If the grid type is unprojected lat/lon and a geographic + subset is requested (by using the lat1,lat2,lon1,lon2 keywords), + then 2-d arrays are returned, otherwise 1-d arrays are returned. + """ + data = self.values + lats, lons = self.latlons() + if lon1==lon2==lat1==lat2==None: + datsubset = data; lonsubset = lons; latsubset = lats + else: + if lat1 is None: lat1 = lats.min() + if lat2 is None: lat2 = lats.max() + if lon1 is None: lon1 = lons.min() + if lon2 is None: lon2 = lons.max() + masklat = (lats >= lat1) & (lats <= lat2) + masklon = (lons >= lon1) & (lons <= lon2) + mask = masklat & masklon + datsubset = data[mask] + latsubset = lats[mask] + lonsubset = lons[mask] + # reshape lat/lon grids so returned arrays are 2-d instead of 1-d + reduced_expand = self['gridType'] in ['reduced_ll','reduced_gg'] and self.expand_reduced + if self['gridType'] in ['regular_gg','regular_ll'] or reduced_expand: + nlats = masklat[:,0].sum() + nlons = masklon[0,:].sum() + if ma.isMA(datsubset): + datsubset = ma.reshape(datsubset,(nlats,nlons)) + else: + datsubset = np.reshape(datsubset,(nlats,nlons)) + latsubset = np.reshape(latsubset,(nlats,nlons)) + lonsubset = np.reshape(lonsubset,(nlats,nlons)) + return datsubset,latsubset, lonsubset + def __setitem__(self, key, value): + """ + change values associated with existing grib keys. + """ + cdef int err, typ + cdef size_t size + cdef char *name + cdef long longval + cdef double doubleval + cdef ndarray datarr + cdef char *strdata + if key in self._ro_keys: + raise KeyError('key "%s" is read only' % key) + if key not in self._all_keys: + raise KeyError('can only modify existing grib keys (key "%s" not found)' + % key ) + bytestr = _strencode(key) + name = bytestr + err = grib_get_native_type(self._gh, name, &typ) + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == GRIB_TYPE_LONG: + # is value an array or a scalar? + datarr = np.asarray(value, np.int) + is_array = False + if datarr.shape: + is_array = True + if not is_array: # scalar + longval = value + err = grib_set_long(self._gh, name, longval) + if err: + raise RuntimeError(grib_get_error_message(err)) + else: + if key == 'values': + datarr = self._unshape_mask(datarr) + if not PyArray_ISCONTIGUOUS(datarr): + datarr = datarr.copy() + size = datarr.size + err = grib_set_long_array(self._gh, name, datarr.data, size) + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == GRIB_TYPE_DOUBLE: + # is value an array or a scalar? + datarr = np.asarray(value, np.float) + is_array = False + if datarr.shape: + is_array = True + if not is_array: # scalar + doubleval = value + err = grib_set_double(self._gh, name, doubleval) + if err: + raise RuntimeError(grib_get_error_message(err)) + else: + if key == 'values': + datarr = self._unshape_mask(datarr) + if not PyArray_ISCONTIGUOUS(datarr): + datarr = datarr.copy() + size = datarr.size + err = grib_set_double_array(self._gh, name, datarr.data, size) + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == GRIB_TYPE_STRING: + size=len(value) + bytestr = _strencode(value) + strdata = bytestr + err = grib_set_string(self._gh, name, strdata, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + else: + raise ValueError("unrecognized grib type % d" % typ) + def __getitem__(self, key): + """ + access values associated with grib keys. + + The key ``values`` will return the data associated with the grib message. + The data is returned as a numpy array, or if missing values or a bitmap + are present, a numpy masked array. Reduced lat/lon or gaussian grid + data is automatically expanded to a regular grid using linear + interpolation (nearest neighbor if an adjacent grid point is a missing + value).""" + cdef int err, typ + cdef size_t size + cdef char *name + cdef long longval + cdef double doubleval + cdef ndarray datarr + cdef char strdata[1024] + bytestr = _strencode(key) + name = bytestr + err = grib_get_size(self._gh, name, &size) + if err: + if tolerate_badgrib: + return None + else: + raise RuntimeError(grib_get_error_message(err)) + err = grib_get_native_type(self._gh, name, &typ) + # force 'paramId' to be size 1 (it returns a size of 7, + # which is a relic from earlier versions of grib_api in which + # paramId was a string and not an integer) + if key=='paramId' and typ == GRIB_TYPE_LONG: size=1 + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == GRIB_TYPE_LONG: + if size == 1: # scalar + err = grib_get_long(self._gh, name, &longval) + if err: + raise RuntimeError(grib_get_error_message(err)) + return longval + else: # array + if self.has_key('jPointsAreConsecutive') and\ + self['jPointsAreConsecutive']: + storageorder='F' + else: + storageorder='C' + datarr = np.zeros(size, np.int, order=storageorder) + err = grib_get_long_array(self._gh, name, datarr.data, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + if key == 'values': + return self._reshape_mask(datarr) + else: + return datarr + elif typ == GRIB_TYPE_DOUBLE: + if size == 1: # scalar + err = grib_get_double(self._gh, name, &doubleval) + if err: + raise RuntimeError(grib_get_error_message(err)) + return doubleval + else: # array + if self.has_key('jPointsAreConsecutive') and\ + self['jPointsAreConsecutive']: + storageorder='F' + else: + storageorder='C' + datarr = np.zeros(size, np.double, order=storageorder) + err = grib_get_double_array(self._gh, name, datarr.data, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + if key == 'values': + return self._reshape_mask(datarr) + else: + return datarr + elif typ == GRIB_TYPE_STRING: + size=1024 # grib_get_size returns 1 ? + err = grib_get_string(self._gh, name, strdata, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + msg = strdata.decode(default_encoding) + return msg.rstrip() + else: + raise ValueError("unrecognized grib type % d" % typ) + def has_key(self,key): + """ + has_key(key) + + tests whether a grib message object has a specified key. + """ + if key in self._all_keys: + return True + try: + self[key] + except: + return False + else: + return True + def valid_key(self,key): + """ + valid_key(key) + + tests whether a grib message object has a specified key, + it is not missing and it has a value that can be read. + """ + ret = key in self._all_keys + # if key exists, but value is missing, return False. + if ret and self.is_missing(key): ret = False + if ret: + try: + self[key] + except: + ret = False + return ret + def tostring(self): + """ + tostring() + + return coded grib message in a binary string. + """ + cdef int err + cdef size_t size + cdef void *message + cdef char *name + cdef FILE *out + bytestr = b'values' + name = bytestr + err = grib_get_size(self._gh, name, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + err = grib_get_message(self._gh, &message, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + msg = PyBytes_FromStringAndSize(message, size) + return msg + def _unshape_mask(self, datarr): + """private method for reshaping and removing mask from "values" array""" + if datarr.ndim > 2: + raise ValueError('array must be 1d or 2d') + # if array is masked, put in masked values and convert to plain numpy array. + if ma.isMA(datarr): + datarr = datarr.filled() + # raise error is expanded reduced grid array is supplied. + if self['gridType'].startswith('reduced'): + if datarr.ndim != 1: + raise ValueError("reduced grid data array must be 1d") + if datarr.ndim == 2: + # check scan modes for rect grids. + # columns scan in the -y direction (so flip) + #if not self['jScansPositively']: + # datsave = datarr.copy() + # datarr[::-1,:] = datsave[:,:] + # rows scan in the -x direction (so flip) + #if self['iScansNegatively']: + # datsave = datarr.copy() + # datarr[:,::-1] = datsave[:,:] + # adjacent rows scan in opposite direction. + # (flip every other row) + if self['alternativeRowScanning']: + datsave = datarr.copy() + datarr[1::2,::-1] = datsave[1::2,:] + return datarr + def _reshape_mask(self, datarr): + """private method for reshaping and adding mask to "values" array""" + cdef double missval + if datarr.ndim > 2: + raise ValueError('array must be 1d or 2d') + # reduced grid. + if self['gridType'].startswith('reduced'): + try: + ny = self['Ny'] + except: + ny = self['Nj'] + if self.has_key('missingValue'): + missval = self['missingValue'] + else: + missval = 1.e30 + if self.expand_reduced: + nx = 2*ny + datarr = _redtoreg(2*ny, self['pl'], datarr, missval) + else: + nx = None + elif self.has_key('Nx') and self.has_key('Ny'): + nx = self['Nx'] + ny = self['Ny'] + # key renamed from Ni to Nx in grib_api 1.8.0.1 + elif self.has_key('Ni') and self.has_key('Nj'): + nx = self['Ni'] + ny = self['Nj'] + else: # probably spectral data. + return datarr + if ny != GRIB_MISSING_LONG and nx != GRIB_MISSING_LONG and\ + self.expand_reduced: + datarr.shape = (ny,nx) + # check scan modes for rect grids. + if datarr.ndim == 2: + # columns scan in the -y direction (so flip) + #if not self['jScansPositively']: + # datsave = datarr.copy() + # datarr[:,:] = datsave[::-1,:] + # rows scan in the -x direction (so flip) + #if self['iScansNegatively']: + # datsave = datarr.copy() + # datarr[:,:] = datsave[:,::-1] + # adjacent rows scan in opposite direction. + # (flip every other row) + if self['alternativeRowScanning']: + datsave = datarr.copy() + datarr[1::2,:] = datsave[1::2,::-1] + # if there is a missingValue, and some values missing, + # create a masked array. + #if self.has_key('missingValue') and self['numberOfMissing']: + # don't trust numberOfMissing + if self.has_key('missingValue') and\ + np.count_nonzero(datarr==self['missingValue']): + datarr = ma.masked_values(datarr, self['missingValue']) + return datarr + + def _set_projparams(self): + """ + sets the ``projparams`` instance variable to a dictionary containing + proj4 key/value pairs describing the grid. + """ + projparams = {} + + # check for radius key, if it exists just use it + # and don't bother with shapeOfTheEarth + if self.has_key('radius'): + projparams['a'] = self['radius'] + projparams['b'] = self['radius'] + else: + if self['shapeOfTheEarth'] == 6: + projparams['a']=6371229.0 + projparams['b']=6371229.0 + elif self['shapeOfTheEarth'] in [3,7]: + if self.has_key('scaleFactorOfMajorAxisOfOblateSpheroidEarth'): + scalea = self['scaleFactorOfMajorAxisOfOblateSpheroidEarth'] + scaleb = self['scaleFactorOfMinorAxisOfOblateSpheroidEarth'] + if scalea and scalea is not missingvalue_int: + scalea = np.power(10.0,-scalea) + if self['shapeOfTheEarth'] == 3: # radius in km + scalea = 1000.*scalea + else: + scalea = 1 + if scaleb and scaleb is not missingvalue_int: + scaleb = np.power(10.0,-scaleb) + if self['shapeOfTheEarth'] == 3: # radius in km + scaleb = 1000.*scaleb + else: + scaleb = 1. + else: + scalea = 1. + scaleb = 1. + if parse_version(grib_api_version) < parse_version('1.9.0'): + projparams['a']=self['scaledValueOfMajorAxisOfOblateSpheroidEarth']*scalea + projparams['b']=self['scaledValueOfMinorAxisOfOblateSpheroidEarth']*scaleb + else: + projparams['a']=self['scaledValueOfEarthMajorAxis']*scalea + projparams['b']=self['scaledValueOfEarthMinorAxis']*scaleb + elif self['shapeOfTheEarth'] == 4: + projparams['a']=6378137.0 + projparams['b']=6356752.314 + elif self['shapeOfTheEarth'] == 2: + projparams['a']=6378160.0 + projparams['b']=6356775.0 + elif self['shapeOfTheEarth'] == 1: + if self.has_key('scaleFactorOfRadiusOfSphericalEarth'): + scalea = self['scaleFactorOfRadiusOfSphericalEarth'] + if scalea and scalea is not missingvalue_int: + scalea = np.power(10.0,-scalea) + else: + scalea = 1 + scaleb = scalea + else: + scalea = 1. + scaleb = 1. + projparams['a']=self['scaledValueOfRadiusOfSphericalEarth']*scalea + projparams['b']=self['scaledValueOfRadiusOfSphericalEarth']*scaleb + elif self['shapeOfTheEarth'] == 0: + projparams['a']=6367470.0 + projparams['b']=6367470.0 + elif self['shapeOfTheEarth'] == 5: # WGS84 + projparams['a']=6378137.0 + projparams['b']=6356752.3142 + elif self['shapeOfTheEarth'] == 8: + projparams['a']=6371200.0 + projparams['b']=6371200.0 + else: + if not tolerate_badgrib: raise ValueError('unknown shape of the earth flag') + + if self['gridType'] in ['reduced_gg','reduced_ll','regular_gg','regular_ll']: # regular lat/lon grid + projparams['proj']='longlat' + elif self['gridType'] == 'polar_stereographic': + projparams['proj']='stere' + projparams['lat_ts']=self['latitudeWhereDxAndDyAreSpecifiedInDegrees'] + if self.has_key('projectionCentreFlag'): + projcenterflag = self['projectionCentreFlag'] + elif self.has_key('projectionCenterFlag'): + projcenterflag = self['projectionCenterFlag'] + else: + if not tolerate_badgrib: raise KeyError('cannot find projection center flag') + if projcenterflag == 0: + projparams['lat_0']=90. + else: + projparams['lat_0']=-90. + projparams['lon_0']=self['orientationOfTheGridInDegrees'] + elif self['gridType'] == 'lambert': + projparams['proj']='lcc' + projparams['lon_0']=self['LoVInDegrees'] + projparams['lat_0']=self['LaDInDegrees'] + projparams['lat_1']=self['Latin1InDegrees'] + projparams['lat_2']=self['Latin2InDegrees'] + elif self['gridType'] =='albers': + projparams['proj']='aea' + scale = float(self['grib2divider']) + projparams['lon_0']=self['LoV']/scale + if self['truncateDegrees']: + projparams['lon_0'] = int(projparams['lon_0']) + projparams['lat_0']=self['LaD']/scale + if self['truncateDegrees']: + projparams['lat_0'] = int(projparams['lat_0']) + projparams['lat_1']=self['Latin1']/scale + if self['truncateDegrees']: + projparams['lat_1'] = int(projparams['lat_1']) + projparams['lat_2']=self['Latin2']/scale + if self['truncateDegrees']: + projparams['lat_2'] = int(projparams['lat_2']) + elif self['gridType'] == 'space_view': + projparams['lon_0']=self['longitudeOfSubSatellitePointInDegrees'] + projparams['lat_0']=self['latitudeOfSubSatellitePointInDegrees'] + if projparams['lat_0'] == 0.: # if lat_0 is equator, it's a + projparams['proj'] = 'geos' + # general case of 'near-side perspective projection' (untested) + else: + projparams['proj'] = 'nsper' + scale = float(self['grib2divider']) + projparams['h'] = projparams['a'] * self['Nr']/scale + # h is measured from surface of earth at equator. + projparams['h'] = projparams['h']-projparams['a'] + elif self['gridType'] == "equatorial_azimuthal_equidistant": + projparams['lat_0'] = self['standardParallel']/1.e6 + projparams['lon_0'] = self['centralLongitude']/1.e6 + projparams['proj'] = 'aeqd' + elif self['gridType'] == "lambert_azimuthal_equal_area": + projparams['lat_0'] = self['standardParallel']/1.e6 + projparams['lon_0'] = self['centralLongitude']/1.e6 + projparams['proj'] = 'laea' + elif self['gridType'] == 'mercator': + scale = self._get_key('grib2divider',False) + if scale: + scale = float(scale) + else: + scale = 1000. + lon1 = self['longitudeOfFirstGridPoint']/scale + lon2 = self['longitudeOfLastGridPoint']/scale + if self._get_key('truncateDegrees',False): + lon1 = int(lon1) + lon2 = int(lon2) + if self._get_key('LaD',False): + projparams['lat_ts'] = self['LaD']/scale + else: + projparams['lat_ts'] = self['Latin']/scale + if lon2 < lon1: lon2 += 360. # domain crosses Greenwich + projparams['lon_0']=0.5*(lon1+lon2) + projparams['proj']='merc' + elif self['gridType'] in ['rotated_ll','rotated_gg']: + rot_angle = self['angleOfRotationInDegrees'] + pole_lat = self['latitudeOfSouthernPoleInDegrees'] + pole_lon = self['longitudeOfSouthernPoleInDegrees'] + projparams['o_proj']='longlat' + projparams['proj']='ob_tran' + projparams['o_lat_p']=-pole_lat + projparams['o_lon_p']=rot_angle + projparams['lon_0']=pole_lon + else: # unsupported grid type. + projparams = None + self.projparams = projparams + + def latlons(self): + """ + latlons() + + compute lats and lons (in degrees) of grid. + Currently handles regular lat/lon, global gaussian, mercator, stereographic, + lambert conformal, albers equal-area, space-view, azimuthal + equidistant, reduced gaussian, reduced lat/lon, + lambert azimuthal equal-area, rotated lat/lon and rotated gaussian grids. + + :return: ``lats,lons`` numpy arrays + containing latitudes and longitudes of grid (in degrees). + """ + + if self.projparams is None: + raise ValueError('unsupported grid %s' % self['gridType']) + + if self['gridType'] in ['regular_gg','regular_ll']: # regular lat/lon grid + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lat2 = self['latitudeOfLastGridPointInDegrees'] + lats = self['distinctLatitudes'] + if lat2 < lat1 and lats[-1] > lats[0]: lats = lats[::-1] + lons = self['distinctLongitudes'] + lons,lats = np.meshgrid(lons,lats) + elif self['gridType'] == 'reduced_gg': # reduced global gaussian grid + if self.expand_reduced: + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lat2 = self['latitudeOfLastGridPointInDegrees'] + lats = self['distinctLatitudes'] + if lat2 < lat1 and lats[-1] > lats[0]: lats = lats[::-1] + ny = self['Nj'] + nx = 2*ny + lon1 = self['longitudeOfFirstGridPointInDegrees'] + lon2 = self['longitudeOfLastGridPointInDegrees'] + lons = np.linspace(lon1,lon2,nx) + lons,lats = np.meshgrid(lons,lats) + else: + lats = self['latitudes'] + lons = self['longitudes'] + elif self['gridType'] == 'reduced_ll': # reduced lat/lon grid + if self.expand_reduced: + ny = self['Nj'] + nx = 2*ny + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lat2 = self['latitudeOfLastGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + lon2 = self['longitudeOfLastGridPointInDegrees'] + lons = np.linspace(lon1,lon2,nx) + lats = np.linspace(lat1,lat2,ny) + lons,lats = np.meshgrid(lons,lats) + else: + lats = self['latitudes'] + lons = self['longitudes'] + elif self['gridType'] == 'polar_stereographic': + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + # key renamed from xDirectionGridLengthInMetres to + # DxInMetres grib_api 1.8.0.1. + try: + dx = self['DxInMetres'] + except: + dx = self['xDirectionGridLengthInMetres'] + try: + dy = self['DyInMetres'] + except: + dy = self['yDirectionGridLengthInMetres'] + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + # Set increment direction here for the grid. + # NOTE: some GRIB files are arranged with first gridpoint + # in top left, or top right corner for example... + if self['iScansPositively'] == 0 and dx > 0: dx = -dx + if self['jScansPositively'] == 0 and dy > 0: dy = -dy + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] == 'lambert': + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + dx = self['DxInMetres'] + dy = self['DyInMetres'] + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + # Set increment direction here for the grid. + # NOTE: some GRIB files are arranged with first gridpoint + # in top left, or top right corner for example... + if self['iScansPositively'] == 0 and dx > 0: dx = -dx + if self['jScansPositively'] == 0 and dy > 0: dy = -dy + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] =='albers': + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + dx = self['Dx']/1000. + dy = self['Dy']/1000. + scale = float(self['grib2divider']) + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] == 'space_view': + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + # general case of 'near-side perspective projection' (untested) + if self.projparams['proj'] == 'nsper' and \ + self.projparams['a'] != self.projparams['b']: + raise ValueError('unsupported grid - earth not a perfect sphere') + scale = float(self['grib2divider']) + # latitude of horizon on central meridian + lon_0=self.projparams['lon_0']; lat_0=self.projparams['lat_0'] + lonmax =\ + lon_0+90.-(180./np.pi)*np.arcsin(scale/self['Nr']) + # longitude of horizon on equator + latmax =\ + lat_0+90.-(180./np.pi)*np.arcsin(scale/self['Nr']) + # truncate to nearest thousandth of a degree (to make sure + # they aren't slightly over the horizon) + latmax = int(1000*latmax)/1000. + lonmax = int(1000*lonmax)/1000. + pj = pyproj.Proj(self.projparams) + x1,y1 = pj(lon_0,latmax); x2,y2 = pj(lonmax,lat_0) + width = 2*x2; height = 2*y1 + dx = width/self['dx'] + dy = height/self['dy'] + xmax = dx*(nx-1); ymax = dy*(ny-1) + x = np.linspace(-0.5*xmax,0.5*xmax,nx) + y = np.linspace(-0.5*ymax,0.5*ymax,ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x,y,inverse=True) + # set lons,lats to 1.e30 where undefined + abslons = np.fabs(lons); abslats = np.fabs(lats) + lons = np.where(abslons < 1.e20, lons, 1.e30) + lats = np.where(abslats < 1.e20, lats, 1.e30) + elif self['gridType'] == "equatorial_azimuthal_equidistant": + dx = self['Dx']/1.e3 + dy = self['Dy']/1.e3 + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] == "lambert_azimuthal_equal_area": + dx = self['Dx']/1.e3 + dy = self['Dy']/1.e3 + lat1 = self['latitudeOfFirstGridPointInDegrees'] + lon1 = self['longitudeOfFirstGridPointInDegrees'] + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] == 'mercator': + scale = self._get_key('grib2divider',False) + if scale: + scale = float(scale) + else: + scale = 1000. + lon1 = self['longitudeOfFirstGridPoint']/scale + lon2 = self['longitudeOfLastGridPoint']/scale + if self._get_key('truncateDegrees',False): + lon1 = int(lon1) + lon2 = int(lon2) + lat1 = self['latitudeOfFirstGridPoint']/scale + lat2 = self['latitudeOfLastGridPoint']/scale + if self._get_key('truncateDegrees',False): + lat1 = int(lat1) + lat2 = int(lat2) + pj = pyproj.Proj(self.projparams) + llcrnrx, llcrnry = pj(lon1,lat1) + urcrnrx, urcrnry = pj(lon2,lat2) + try: + nx = self['Nx'] + ny = self['Ny'] + except: + nx = self['Ni'] + ny = self['Nj'] + dx = (urcrnrx-llcrnrx)/(nx-1) + dy = (urcrnry-llcrnry)/(ny-1) + x = llcrnrx+dx*np.arange(nx) + y = llcrnry+dy*np.arange(ny) + x, y = np.meshgrid(x, y) + lons, lats = pj(x, y, inverse=True) + elif self['gridType'] in ['rotated_ll','rotated_gg']: + pj = pyproj.Proj(self.projparams) + lons = self['longitudes'].reshape(self.Nj,self.Ni) + lats = self['latitudes'].reshape(self.Nj,self.Ni) + else: + raise ValueError('unsupported grid %s' % self['gridType']) + return lats, lons + +cdef class index(object): + """ +index(filename, *args) + +returns grib index object given GRIB filename indexed by keys given in +*args. The :py:class:`select` or ``__call__`` method can then be used to selected grib messages +based on specified values of indexed keys. +Unlike :py:meth:`open.select`, containers or callables cannot be used to +select multiple key values. +However, using :py:meth:`index.select` is much faster than :py:meth:`open.select`. + +**Warning**: Searching for data within multi-field grib messages does not +work using an index and is not supported by ECCODES library. NCEP +often puts u and v winds together in a single multi-field grib message. You +will get incorrect results if you try to use an index to find data in these +messages. Use the slower, but more robust :py:meth:`open.select` in this case. + +If no key are given (i.e. *args is empty), it is assumed the filename represents a previously +saved index (created using the ``grib_index_build`` tool or :py:meth:`index.write`) instead of a GRIB file. + +Example usage: + +>>> import pygrib +>>> grbindx=pygrib.index('sampledata/gfs.grb','shortName','typeOfLevel','level') +>>> grbindx.keys +['shortName', 'level'] +>>> selected_grbs=grbindx.select(shortName='gh',typeOfLevel='isobaricInhPa',level=500) +>>> for grb in selected_grbs: +>>> grb +1:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 500 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> # __call__ method does same thing as select +>>> selected_grbs=grbindx(shortName='u',typeOfLevel='isobaricInhPa',level=250) +>>> for grb in selected_grbs: +>>> grb +1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> grbindx.write('gfs.grb.idx') # save index to a file +>>> grbindx.close() +>>> grbindx = pygrib.index('gfs.grb.idx') # re-open index (no keys specified) +>>> grbindx.keys # not set when opening a saved index file. +None +>>> for grb in selected_grbs: +>>> grb +1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst + +:ivar keys: list of strings containing keys used in the index. Set to ``None`` + when opening a previously saved grib index file. + +:ivar types: if keys are typed, this list contains the type declarations + (``l``, ``s`` or ``d``). Type declarations are specified by appending to the key + name (i.e. ``level:l`` will search for values of ``level`` that are longs). Set + to ``None`` when opening a previously saved grib index file. +""" + cdef grib_index *_gi + cdef public object keys, types, name + def __cinit__(self, filename, *args): + # initialize C level objects. + cdef grib_index *gi + cdef int err + cdef char *filenamec + cdef char *keys + bytestr = _strencode(filename) + filenamec = bytestr + if args == (): + #raise ValueError('no keys specified for index') + # assume filename is a saved index. + self._gi = grib_index_read(NULL, filenamec, &err) + if err: + raise RuntimeError(grib_get_error_message(err)) + else: + bytestr = _strencode(','.join(args)) + keys = bytestr + self._gi = grib_index_new_from_file (NULL, filenamec, keys, &err) + if err: + raise RuntimeError(grib_get_error_message(err)) + grbs = open(filename) + if grbs.has_multi_field_msgs: + msg=""" +file %s has multi-field messages, keys inside multi-field +messages will not be indexed correctly""" % filename + warnings.warn(msg) + grbs.close() + def __init__(self, filename, *args): + # initalize Python level objects + self.name = filename + self.keys = None + self.types = None + if args != (): + # is type is specified, strip it off. + keys = [arg.split(':')[0] for arg in args] + # if type is declared, save it (None if not declared) + types = [] + for arg in args: + try: + type = arg.split(':')[1] + except IndexError: + type = None + types.append(type) + self.keys = keys + self.types = types + def __call__(self, **kwargs): + """same as :py:meth:`select`""" + return self.select(**kwargs) + def select(self, **kwargs): + """ +select(**kwargs) + +return a list of :py:class:`gribmessage` instances from grib index object +corresponding to specific values of indexed keys (given by kwargs). +Unlike :py:meth:`open.select`, containers or callables cannot be used to +select multiple key values. +However, using :py:meth:`index.select` is much faster than :py:meth:`open.select`. + +Example usage: + +>>> import pygrib +>>> grbindx=pygrib.index('sampledata/gfs.grb','shortName','typeOfLevel','level') +>>> selected_grbs=grbindx.select(shortName='gh',typeOfLevel='isobaricInhPa',level=500) +>>> for grb in selected_grbs: +>>> grb +1:Geopotential height:gpm (instant):regular_ll:isobaricInhPa:level 500 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> # __call__ method does same thing as select +>>> selected_grbs=grbindx(shortName='u',typeOfLevel='isobaricInhPa',level=250) +>>> for grb in selected_grbs: +>>> grb +1:u-component of wind:m s**-1 (instant):regular_ll:isobaricInhPa:level 250 Pa:fcst time 72 hrs:from 200412091200:lo res cntl fcst +>>> grbindx.close() +""" + cdef grib_handle *gh + cdef int err + cdef size_t size + cdef long longval + cdef double doubval + cdef char *strval + cdef char *key + # set index selection. + # used declared type if available, other infer from type of value. + sizetot = 0 + for k,v in kwargs.items(): + if self.keys is not None and k not in self.keys: + raise KeyError('key not part of grib index') + if self.types is not None: + typ = self.types[self.keys.index(k)] + else: + typ = None + bytestr = _strencode(k) + key = bytestr + err = grib_index_get_size(self._gi, key, &size) + if err: + raise RuntimeError(grib_get_error_message(err)) + sizetot = sizetot + size + # if there are no matches for this key, just skip it + if not size: + continue + if typ == 'l' or (type(v) == int or type(v) == long): + longval = long(v) + err = grib_index_select_long(self._gi, key, longval) + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == 'd' or type(v) == float: + doubval = float(v) + err = grib_index_select_double(self._gi, key, doubval) + if err: + raise RuntimeError(grib_get_error_message(err)) + elif typ == 's' or _is_stringlike(v): + bytestr = _strencode(v) + strval = bytestr + err = grib_index_select_string(self._gi, key, strval) + if err: + raise RuntimeError(grib_get_error_message(err)) + else: + raise TypeError('value must be float, int or string') + # if no matches found, raise an error. + if sizetot == 0: + raise ValueError('no matches found') + # create a list of grib messages corresponding to selection. + messagenumber = 0; grbs = [] + while 1: + gh = grib_handle_new_from_index(self._gi, &err) + if err or gh == NULL: + break + else: + messagenumber = messagenumber + 1 + grbs.append(_create_gribmessage(gh, messagenumber)) + err = grib_handle_delete(gh) + if err: + raise RuntimeError(grib_get_error_message(err)) + if not grbs: + raise ValueError('no matches found') + # return the list of grib messages. + return grbs + def write(self,filename): + """ + write(filename) + + save grib index to file""" + cdef char * filenamec + bytestr = _strencode(filename) + filenamec = bytestr + err = grib_index_write(self._gi, filenamec); + if err: + raise RuntimeError(grib_get_error_message(err)) + def close(self): + """ + close() + + deallocate C structures associated with class instance""" + grib_index_delete(self._gi) + self._gi = NULL + + def __dealloc__(self): + # deallocate storage when there are no more references + # to the object. + if self._gi != NULL: + grib_index_delete(self._gi) + +def _is_stringlike(a): + if type(a) == str or type(a) == bytes or type(a) == unicode: + return True + else: + return False + +def _is_container(a): + # is object container-like? (can test for + # membership with "is in", but not a string) + try: 1 in a + except: return False + if _is_stringlike(a): return False + return True + +def _find(grb, **kwargs): + # search for key/value matches in grib message. + # If value is a container-like object, search for matches to any element. + # If value is a function, call that function with key value to determine + # whether it is a match. + for k,v in kwargs.items(): + if not grb.has_key(k): return False + # is v a "container-like" non-string object? + iscontainer = _is_container(v) + # is v callable? + iscallable = hasattr(v, '__call__') + # if v is callable and container-like, treat it as a container. + # v not a container or a function. + if not iscontainer and not iscallable and getattr(grb,k)==v: + continue + elif iscontainer and getattr(grb,k) in v: # v a container. + continue + elif iscallable and v(getattr(grb,k)): # v a function + continue + else: + return False + return True + +cdef _strencode(pystr,encoding=None): + # encode a string into bytes. If already bytes, do nothing. + # uses default_encoding module variable for default encoding. + if encoding is None: + encoding = default_encoding + try: + return pystr.encode(encoding) + except AttributeError: + return pystr # already bytes? diff --git a/setup.py b/setup.py index 2651ef79..14412ef6 100644 --- a/setup.py +++ b/setup.py @@ -34,10 +34,11 @@ def package_files(directory): paths = [] for (path, directories, filenames) in os.walk(directory): for filename in filenames: - paths.append(os.path.join('..', path, filename)) + paths.append(os.path.join("..", path, filename)) return paths -package_data={} + +package_data = {} package_data[""] = package_files("eccodes") cmdclass = {"build_ext": NumpyBuildExtCommand} @@ -75,15 +76,16 @@ def package_files(directory): print("eccodes not found, build may fail...") incdirs = [] libdirs = [] -pygribext = setuptools.Extension( - "pygrib._pygrib", - ["pygrib/_pygrib.pyx"], - include_dirs=incdirs, - library_dirs=libdirs, - runtime_library_dirs=libdirs, - libraries=["eccodes"], -) -ext_modules = [pygribext] +ext_modules = [ + setuptools.Extension( + "pygrib._pygrib", + ["pygrib/_pygrib.pyx"], + include_dirs=incdirs, + library_dirs=libdirs, + runtime_library_dirs=libdirs, + libraries=["eccodes"], + ) +] # Import README.md as PyPi long_description this_directory = os.path.abspath(os.path.dirname(__file__)) @@ -107,7 +109,7 @@ def package_files(directory): author_email="jeffrey.s.whitaker@noaa.gov", url="https://github.com/jswhit/pygrib", download_url="http://python.org/pypi/pygrib", - license='License :: OSI Approved :: MIT License', + license="License :: OSI Approved :: MIT License", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python :: 2.7", @@ -130,9 +132,9 @@ def package_files(directory): "utils/cnvgrib1to2", "utils/cnvgrib2to1", ], - ext_modules=[pygribext], + ext_modules=ext_modules, data_files=data_files, - packages=['pygrib'], + packages=["pygrib"], package_data=package_data, setup_requires=["setuptools", "cython"], install_requires=[ diff --git a/test.py b/test/test.py similarity index 96% rename from test.py rename to test/test.py index 31fd2378..e9e5ea8c 100644 --- a/test.py +++ b/test/test.py @@ -4,11 +4,11 @@ def test(): open a grib file, create an iterator. >>> import pygrib - >>> list(pygrib.open('sampledata/flux.grb')) + >>> list(pygrib.open('../sampledata/flux.grb')) [1:Precipitation rate:kg m**-2 s**-1 (avg):regular_gg:surface:level 0:fcst time 108-120 hrs (avg):from 200402291200, 2:Surface pressure:Pa (instant):regular_gg:surface:level 0:fcst time 120 hrs:from 200402291200, 3:Maximum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200, 4:Minimum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200] - >>> pygrib.open('sampledata/flux.grb').read() + >>> pygrib.open('../sampledata/flux.grb').read() [1:Precipitation rate:kg m**-2 s**-1 (avg):regular_gg:surface:level 0:fcst time 108-120 hrs (avg):from 200402291200, 2:Surface pressure:Pa (instant):regular_gg:surface:level 0:fcst time 120 hrs:from 200402291200, 3:Maximum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200, 4:Minimum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200] - >>> grbs = pygrib.open('sampledata/flux.grb') + >>> grbs = pygrib.open('../sampledata/flux.grb') acts like a file object >>> grbs.tell() @@ -90,7 +90,7 @@ def test(): 4:Minimum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200 or create grib index instance for faster searching - >>> grbindx = pygrib.index('sampledata/flux.grb','name','typeOfLevel','level') + >>> grbindx = pygrib.index('../sampledata/flux.grb','name','typeOfLevel','level') >>> selgrbs = grbindx(name='Minimum temperature',level=2,typeOfLevel='heightAboveGround') >>> for grb in selgrbs: grb 1:Minimum temperature:K (instant):regular_gg:heightAboveGround:level 2 m:fcst time 108-120 hrs:from 200402291200 @@ -175,7 +175,7 @@ def test(): >>> grbs.close() test open.select with scalars, sequences and functions. - >>> grbs = pygrib.open('sampledata/gfs.grb') + >>> grbs = pygrib.open('../sampledata/gfs.grb') >>> sel_grbs = grbs.select(shortName='t',level=500) >>> for grb in sel_grbs: grb 101:Temperature:K (instant):regular_ll:isobaricInhPa:level 50000 Pa:fcst time 72 hrs:from 201110080000 @@ -214,14 +214,14 @@ def test(): >>> grb2.validDate datetime.datetime(2011, 10, 11, 0, 0) >>> grbs.close() - >>> grbs = pygrib.open('sampledata/gfs.t12z.pgrbf120.2p5deg.grib2') + >>> grbs = pygrib.open('../sampledata/gfs.t12z.pgrbf120.2p5deg.grib2') >>> # see if multi-part grib messages are counted properly >>> grbs.messages 343 >>> grbs.close() test ndfd file with 'grid_complex_spatial_differencing' encoding - >>> grbs = pygrib.open('sampledata/dspr.temp.bin') + >>> grbs = pygrib.open('../sampledata/dspr.temp.bin') >>> for grb in grbs: grb 1:Maximum temperature:K (max):mercator:surface:level 0:fcst time 2-14 hrs (max):from 201109292200 2:Maximum temperature:K (max):mercator:surface:level 0:fcst time 26-38 hrs (max):from 201109292200 @@ -233,7 +233,7 @@ def test(): >>> grbs.close() >>> str('min/max %5.2f %5.2f' % (data.min(), data.max())) 'min/max 295.40 308.10' - >>> grbs = pygrib.open('sampledata/no-radius-shapeOfEarth-7.grb2') + >>> grbs = pygrib.open('../sampledata/no-radius-shapeOfEarth-7.grb2') >>> for grb in grbs: print(grb) 1:Total precipitation:kg m-2 (accum):lambert:surface:level 0:fcst time 15-30 mins (accum):from 201804100000 >>> str(grb.packingType) From 208ee5619f163ef941de1b224dd7919f29486436 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:49:57 -0700 Subject: [PATCH 09/44] update --- .github/workflows/build.yml | 1 - README.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a36c269d..747473a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,6 @@ jobs: - name: Test run: | - python test.py cd test export MPLBACKEND=agg pytest test*py --mpl --mpl-baseline-path=baseline_images diff --git a/README.md b/README.md index 594a7b51..d9610520 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ and `lib/libeccodes.so`. If `ECCODES_DIR` is not specified, a few common locatio such as `$CONDA_PREFIX,/usr,/usr/local,/opt/local` will be searched. Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`). -Run `python test.py` from the source directory to test your pygrib installation. +Run `cd test; python test.py` from the source directory to test your pygrib installation. For full installation instructions and API documentation, see https://jswhit.github.io/pygrib. From a8267261c57a81a6632f030d5ee6fb68447bd37e Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 15:58:40 -0700 Subject: [PATCH 10/44] set 'ECCODES_DEFINITION_PATH' --- pygrib/__init__.py | 5 +++++ pygrib/_datadir.py | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 pygrib/__init__.py create mode 100644 pygrib/_datadir.py diff --git a/pygrib/__init__.py b/pygrib/__init__.py new file mode 100644 index 00000000..1b285a39 --- /dev/null +++ b/pygrib/__init__.py @@ -0,0 +1,5 @@ +# init for pygrib package +from ._datdir import eccodes_datadir +from ._pygrib import * +# Need explicit imports for names beginning with underscores +from ._pygrib import __doc__, __version__ diff --git a/pygrib/_datadir.py b/pygrib/_datadir.py new file mode 100644 index 00000000..f1e397a5 --- /dev/null +++ b/pygrib/_datadir.py @@ -0,0 +1,8 @@ +import os + +if 'ECCODES_DEFINITION_PATH' in os.environ: + eccodes_datadir = os.environ['ECCODES_DEFINITION_PATH'] +else: + eccodes_datadir = os.sep.join([os.path.dirname(__file__), + 'eccodes/definitions']) + os.environ['ECCODES_DEFINITION_PATH'] = eccodes_datadir From 34e9c76c38be1673f4a08c5be60a6736d2e7eb2e Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 16:04:16 -0700 Subject: [PATCH 11/44] fix typo --- pygrib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygrib/__init__.py b/pygrib/__init__.py index 1b285a39..b93e1571 100644 --- a/pygrib/__init__.py +++ b/pygrib/__init__.py @@ -1,5 +1,5 @@ # init for pygrib package -from ._datdir import eccodes_datadir +from ._datadir import eccodes_datadir from ._pygrib import * # Need explicit imports for names beginning with underscores from ._pygrib import __doc__, __version__ From ec146120a6a1bca99d1f0d4d00c94562c4f0dda6 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 17:07:20 -0700 Subject: [PATCH 12/44] update eccodes_datadir --- pygrib/_datadir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygrib/_datadir.py b/pygrib/_datadir.py index f1e397a5..6d95db8d 100644 --- a/pygrib/_datadir.py +++ b/pygrib/_datadir.py @@ -3,6 +3,6 @@ if 'ECCODES_DEFINITION_PATH' in os.environ: eccodes_datadir = os.environ['ECCODES_DEFINITION_PATH'] else: - eccodes_datadir = os.sep.join([os.path.dirname(__file__), + eccodes_datadir = os.sep.join([os.path.join(os.path.dirname(__file__),'..'), 'eccodes/definitions']) os.environ['ECCODES_DEFINITION_PATH'] = eccodes_datadir From 7f849abbe3a50b50e8948225e0751bb162963e3b Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 18:49:30 -0700 Subject: [PATCH 13/44] add set_datadir pygrib.open method --- Changelog | 2 ++ pygrib/_pygrib.pyx | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/Changelog b/Changelog index cfa9c09f..83e760f9 100644 --- a/Changelog +++ b/Changelog @@ -4,6 +4,8 @@ version 2.1.2 (git tag v2.1.2rel) * change license to MIT. * changes gribmessage.projparams['proj'] from 'cyl' to 'longlat' for non-projection projections (e.g. 'regular_ll'). Issue #167. +* include eccodes definitions inside package, add set_datadir pygrib.open + method to reset path. version 2.1.1 (git tag v2.1.1rel) ================================= diff --git a/pygrib/_pygrib.pyx b/pygrib/_pygrib.pyx index bf92e944..8dba6462 100644 --- a/pygrib/_pygrib.pyx +++ b/pygrib/_pygrib.pyx @@ -164,6 +164,7 @@ cdef extern from "grib_api.h": grib_handle* grib_handle_new_from_message_copy(grib_context * c, void * data,\ size_t data_len) int grib_julian_to_datetime(double jd, long *year, long *month, long *day, long *hour, long *minute, long *second) + void grib_context_set_definitions_path(grib_context* c, char* path) int grib_datetime_to_julian(long year, long month, long day, long hour, long minute, long second, double *jd) int grib_get_gaussian_latitudes(long truncation,double* latitudes) int grib_index_write(grib_index *index, char *filename) @@ -302,6 +303,12 @@ cdef class open(object): self.has_multi_field_msgs=True else: self.has_multi_field_msgs=False + def set_datadir(self, path_to_definition_files): + """set ECCODES_DEFINITION_PATH""" + cdef char *definition_path + bytestr = _strencode(path_to_definition_files) + definition_path = bytestr + grib_context_set_definitions_path(NULL, definition_path) def __iter__(self): return self def __next__(self): From 83cbf9a9b72aeceee7da51c8dfa4eeb1476208ae Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 18:55:56 -0700 Subject: [PATCH 14/44] update --- Changelog | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 83e760f9..badf10fd 100644 --- a/Changelog +++ b/Changelog @@ -4,8 +4,10 @@ version 2.1.2 (git tag v2.1.2rel) * change license to MIT. * changes gribmessage.projparams['proj'] from 'cyl' to 'longlat' for non-projection projections (e.g. 'regular_ll'). Issue #167. -* include eccodes definitions inside package, add set_datadir pygrib.open - method to reset path. +* reorganize to include eccodes definitions inside package, + add set_datadir pygrib.open method to reset ECCODES_DEFINITION_PATH. + (set on import to either ECCODES_DEFINITION_PATH if it is set in the + environment, or if not to pygrib.__file__/../ecodes/definitions). version 2.1.1 (git tag v2.1.1rel) ================================= From c196abc4dc4d2933dc9dcf79e4ab8e3f59c16555 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 19:06:18 -0700 Subject: [PATCH 15/44] update docstring --- pygrib/_pygrib.pyx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pygrib/_pygrib.pyx b/pygrib/_pygrib.pyx index 8dba6462..e677f042 100644 --- a/pygrib/_pygrib.pyx +++ b/pygrib/_pygrib.pyx @@ -304,7 +304,10 @@ cdef class open(object): else: self.has_multi_field_msgs=False def set_datadir(self, path_to_definition_files): - """set ECCODES_DEFINITION_PATH""" + """ + set_datadir(ECCODES_DEFINITION_PATH) + + set path to eccodes definition files (grib tables).""" cdef char *definition_path bytestr = _strencode(path_to_definition_files) definition_path = bytestr From 20e5f96586e7de6066728189eb130e8a03c59dee Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 20:06:29 -0700 Subject: [PATCH 16/44] fix definitions path --- pygrib/__init__.py | 1 - pygrib/_datadir.py | 8 -------- pygrib/_pygrib.pyx | 32 +++++++++++++++++++++++--------- 3 files changed, 23 insertions(+), 18 deletions(-) delete mode 100644 pygrib/_datadir.py diff --git a/pygrib/__init__.py b/pygrib/__init__.py index b93e1571..86784d1f 100644 --- a/pygrib/__init__.py +++ b/pygrib/__init__.py @@ -1,5 +1,4 @@ # init for pygrib package -from ._datadir import eccodes_datadir from ._pygrib import * # Need explicit imports for names beginning with underscores from ._pygrib import __doc__, __version__ diff --git a/pygrib/_datadir.py b/pygrib/_datadir.py deleted file mode 100644 index 6d95db8d..00000000 --- a/pygrib/_datadir.py +++ /dev/null @@ -1,8 +0,0 @@ -import os - -if 'ECCODES_DEFINITION_PATH' in os.environ: - eccodes_datadir = os.environ['ECCODES_DEFINITION_PATH'] -else: - eccodes_datadir = os.sep.join([os.path.join(os.path.dirname(__file__),'..'), - 'eccodes/definitions']) - os.environ['ECCODES_DEFINITION_PATH'] = eccodes_datadir diff --git a/pygrib/_pygrib.pyx b/pygrib/_pygrib.pyx index e677f042..a8953a9c 100644 --- a/pygrib/_pygrib.pyx +++ b/pygrib/_pygrib.pyx @@ -5,6 +5,7 @@ __version__ = '2.1.2' import numpy as np cimport numpy as npc import warnings +import os from datetime import datetime from pkg_resources import parse_version from numpy import ma @@ -243,6 +244,28 @@ def multi_support_off(): """turn off support for multi-field grib messages""" grib_multi_support_off(NULL) +def set_definitions_path(eccodes_definition_path): + """ + set_definition_path(ECCODES_DEFINITION_PATH) + + set path to eccodes definition files (grib tables).""" + cdef char *definition_path + global _eccodes_datadir + bytestr = _strencode(eccodes_definition_path) + definition_path = bytestr + grib_context_set_definitions_path(NULL, definition_path) + _eccodes_datadir = eccodes_definition_path + +if 'ECCODES_DEFINITION_PATH' in os.environ: + _datadir = os.environ['ECCODES_DEFINITION_PATH'] +else: + _datadir = os.sep.join([os.path.join(os.path.dirname(__file__),'..'), + 'eccodes/definitions']) +set_definitions_path(_datadir) +def get_definitions_path(): + global _eccodes_datadir + return _eccodes_datadir + cdef class open(object): """ open(filename) @@ -303,15 +326,6 @@ cdef class open(object): self.has_multi_field_msgs=True else: self.has_multi_field_msgs=False - def set_datadir(self, path_to_definition_files): - """ - set_datadir(ECCODES_DEFINITION_PATH) - - set path to eccodes definition files (grib tables).""" - cdef char *definition_path - bytestr = _strencode(path_to_definition_files) - definition_path = bytestr - grib_context_set_definitions_path(NULL, definition_path) def __iter__(self): return self def __next__(self): From d40cfb001ff524a3d82f468ac1b5644390e82073 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 20:08:07 -0700 Subject: [PATCH 17/44] update --- Changelog | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index badf10fd..c6d748b4 100644 --- a/Changelog +++ b/Changelog @@ -4,10 +4,11 @@ version 2.1.2 (git tag v2.1.2rel) * change license to MIT. * changes gribmessage.projparams['proj'] from 'cyl' to 'longlat' for non-projection projections (e.g. 'regular_ll'). Issue #167. -* reorganize to include eccodes definitions inside package, - add set_datadir pygrib.open method to reset ECCODES_DEFINITION_PATH. - (set on import to either ECCODES_DEFINITION_PATH if it is set in the - environment, or if not to pygrib.__file__/../ecodes/definitions). +* reorganize to include eccodes definitions inside package. + Add set_definitions_path/get_defintions_path module functions + get/reset ECCODES_DEFINITION_PATH + (default is either ECCODES_DEFINITION_PATH if it is set in the + environment, or if not pygrib.__file__/../ecodes/definitions). version 2.1.1 (git tag v2.1.1rel) ================================= From 007991a97d5ac8ab5845d1122a56b086be1f9c5c Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 20:24:42 -0700 Subject: [PATCH 18/44] add eccodes definitions files --- eccodes/definitions/boot.def | 122 + eccodes/definitions/common/c-1.table | 96 + eccodes/definitions/common/c-11.table | 146 + .../definitions/common/statistics_grid.def | 33 + .../common/statistics_spectral.def | 24 + eccodes/definitions/empty_template.def | 2 + eccodes/definitions/grib1/0.ecmf.table | 1 + eccodes/definitions/grib1/0.eidb.table | 4 + eccodes/definitions/grib1/0.eswi.table | 10 + eccodes/definitions/grib1/0.rjtd.table | 5 + eccodes/definitions/grib1/1.table | 5 + eccodes/definitions/grib1/10.table | 4 + eccodes/definitions/grib1/11-2.table | 34 + eccodes/definitions/grib1/11.table | 9 + eccodes/definitions/grib1/12.table | 13 + eccodes/definitions/grib1/13.table | 4 + eccodes/definitions/grib1/2.0.1.table | 129 + eccodes/definitions/grib1/2.0.2.table | 128 + eccodes/definitions/grib1/2.0.3.table | 129 + eccodes/definitions/grib1/2.128.table | 255 + eccodes/definitions/grib1/2.233.1.table | 154 + eccodes/definitions/grib1/2.233.253.table | 214 + eccodes/definitions/grib1/2.253.128.table | 253 + eccodes/definitions/grib1/2.34.200.table | 185 + eccodes/definitions/grib1/2.46.254.table | 256 + eccodes/definitions/grib1/2.82.1.table | 180 + eccodes/definitions/grib1/2.82.128.table | 139 + eccodes/definitions/grib1/2.82.129.table | 120 + eccodes/definitions/grib1/2.82.130.table | 99 + eccodes/definitions/grib1/2.82.131.table | 29 + eccodes/definitions/grib1/2.82.133.table | 102 + eccodes/definitions/grib1/2.82.134.table | 85 + eccodes/definitions/grib1/2.82.135.table | 104 + eccodes/definitions/grib1/2.82.136.table | 74 + eccodes/definitions/grib1/2.82.253.table | 197 + eccodes/definitions/grib1/2.98.128.table | 255 + eccodes/definitions/grib1/2.98.129.table | 237 + eccodes/definitions/grib1/2.98.130.table | 27 + eccodes/definitions/grib1/2.98.131.table | 77 + eccodes/definitions/grib1/2.98.132.table | 13 + eccodes/definitions/grib1/2.98.133.table | 93 + eccodes/definitions/grib1/2.98.140.table | 88 + eccodes/definitions/grib1/2.98.150.table | 33 + eccodes/definitions/grib1/2.98.151.table | 80 + eccodes/definitions/grib1/2.98.160.table | 109 + eccodes/definitions/grib1/2.98.162.table | 114 + eccodes/definitions/grib1/2.98.170.table | 36 + eccodes/definitions/grib1/2.98.171.table | 187 + eccodes/definitions/grib1/2.98.172.table | 39 + eccodes/definitions/grib1/2.98.173.table | 39 + eccodes/definitions/grib1/2.98.174.table | 56 + eccodes/definitions/grib1/2.98.175.table | 31 + eccodes/definitions/grib1/2.98.180.table | 33 + eccodes/definitions/grib1/2.98.190.table | 37 + eccodes/definitions/grib1/2.98.200.table | 236 + eccodes/definitions/grib1/2.98.201.table | 78 + eccodes/definitions/grib1/2.98.210.table | 227 + eccodes/definitions/grib1/2.98.211.table | 172 + eccodes/definitions/grib1/2.98.213.table | 56 + eccodes/definitions/grib1/2.98.215.table | 212 + eccodes/definitions/grib1/2.98.220.table | 2 + eccodes/definitions/grib1/2.98.228.table | 108 + eccodes/definitions/grib1/2.98.230.table | 51 + eccodes/definitions/grib1/2.98.235.table | 49 + eccodes/definitions/grib1/2.table | 5 + eccodes/definitions/grib1/3.233.table | 61 + eccodes/definitions/grib1/3.82.table | 50 + eccodes/definitions/grib1/3.98.table | 53 + eccodes/definitions/grib1/3.table | 51 + eccodes/definitions/grib1/4.table | 15 + eccodes/definitions/grib1/5.table | 21 + eccodes/definitions/grib1/6.table | 24 + eccodes/definitions/grib1/7.table | 7 + eccodes/definitions/grib1/8.table | 7 + eccodes/definitions/grib1/9.table | 2 + eccodes/definitions/grib1/boot.def | 83 + eccodes/definitions/grib1/cfName.def | 349 + eccodes/definitions/grib1/cfVarName.def | 2059 ++ eccodes/definitions/grib1/cluster_domain.def | 7 + eccodes/definitions/grib1/data.grid_ieee.def | 42 + eccodes/definitions/grib1/data.grid_jpeg.def | 1 + .../grib1/data.grid_second_order.def | 178 + .../grib1/data.grid_second_order_SPD1.def | 1 + .../grib1/data.grid_second_order_SPD2.def | 1 + .../grib1/data.grid_second_order_SPD3.def | 1 + .../data.grid_second_order_constant_width.def | 149 + .../data.grid_second_order_general_grib1.def | 148 + .../grib1/data.grid_second_order_no_SPD.def | 1 + .../data.grid_second_order_row_by_row.def | 95 + .../definitions/grib1/data.grid_simple.def | 69 + .../grib1/data.grid_simple_matrix.def | 181 + .../grib1/data.spectral_complex.def | 138 + .../definitions/grib1/data.spectral_ieee.def | 134 + .../grib1/data.spectral_simple.def | 40 + .../grib1/gds_not_present_bitmap.def | 23 + .../definitions/grib1/grid.192.78.3.10.table | 7 + .../definitions/grib1/grid.192.78.3.9.table | 3 + eccodes/definitions/grib1/grid_21.def | 19 + eccodes/definitions/grib1/grid_22.def | 19 + eccodes/definitions/grib1/grid_23.def | 19 + eccodes/definitions/grib1/grid_24.def | 19 + eccodes/definitions/grib1/grid_25.def | 19 + eccodes/definitions/grib1/grid_26.def | 18 + eccodes/definitions/grib1/grid_61.def | 19 + eccodes/definitions/grib1/grid_62.def | 18 + eccodes/definitions/grib1/grid_63.def | 19 + eccodes/definitions/grib1/grid_64.def | 18 + .../definitions/grib1/grid_definition_0.def | 11 + .../definitions/grib1/grid_definition_1.def | 74 + .../definitions/grib1/grid_definition_10.def | 12 + .../definitions/grib1/grid_definition_13.def | 7 + .../definitions/grib1/grid_definition_14.def | 10 + .../grib1/grid_definition_192.78.def | 43 + .../grib1/grid_definition_192.98.def | 23 + .../grib1/grid_definition_193.98.def | 94 + .../definitions/grib1/grid_definition_20.def | 12 + .../definitions/grib1/grid_definition_24.def | 10 + .../definitions/grib1/grid_definition_3.def | 7 + .../definitions/grib1/grid_definition_30.def | 15 + .../definitions/grib1/grid_definition_34.def | 13 + .../definitions/grib1/grid_definition_4.def | 7 + .../definitions/grib1/grid_definition_5.def | 89 + .../definitions/grib1/grid_definition_50.def | 7 + .../definitions/grib1/grid_definition_60.def | 10 + .../definitions/grib1/grid_definition_70.def | 11 + .../definitions/grib1/grid_definition_8.def | 7 + .../definitions/grib1/grid_definition_80.def | 14 + .../definitions/grib1/grid_definition_90.def | 66 + .../grib1/grid_definition_gaussian.def | 96 + .../grib1/grid_definition_lambert.def | 113 + .../grib1/grid_definition_latlon.def | 66 + .../grid_definition_spherical_harmonics.def | 35 + .../grib1/grid_first_last_resandcomp.def | 35 + eccodes/definitions/grib1/grid_rotation.def | 12 + eccodes/definitions/grib1/grid_stretching.def | 12 + eccodes/definitions/grib1/local.1.def | 5 + eccodes/definitions/grib1/local.13.table | 6 + eccodes/definitions/grib1/local.214.1.def | 51 + eccodes/definitions/grib1/local.214.244.def | 281 + eccodes/definitions/grib1/local.214.245.def | 54 + eccodes/definitions/grib1/local.214.def | 3 + eccodes/definitions/grib1/local.253.def | 5 + eccodes/definitions/grib1/local.254.def | 3 + eccodes/definitions/grib1/local.34.1.def | 48 + eccodes/definitions/grib1/local.34.def | 5 + eccodes/definitions/grib1/local.46.def | 6 + eccodes/definitions/grib1/local.54.def | 31 + eccodes/definitions/grib1/local.7.1.def | 88 + eccodes/definitions/grib1/local.7.def | 3 + eccodes/definitions/grib1/local.78.def | 2 + eccodes/definitions/grib1/local.80.def | 4 + eccodes/definitions/grib1/local.82.0.def | 39 + eccodes/definitions/grib1/local.82.82.def | 18 + eccodes/definitions/grib1/local.82.83.def | 56 + eccodes/definitions/grib1/local.82.def | 26 + eccodes/definitions/grib1/local.85.def | 24 + eccodes/definitions/grib1/local.96.def | 3 + eccodes/definitions/grib1/local.98.1.def | 52 + eccodes/definitions/grib1/local.98.10.def | 50 + eccodes/definitions/grib1/local.98.11.def | 35 + eccodes/definitions/grib1/local.98.12.def | 65 + eccodes/definitions/grib1/local.98.13.def | 163 + eccodes/definitions/grib1/local.98.14.def | 29 + eccodes/definitions/grib1/local.98.15.def | 39 + eccodes/definitions/grib1/local.98.16.def | 60 + eccodes/definitions/grib1/local.98.17.def | 32 + eccodes/definitions/grib1/local.98.18.def | 43 + eccodes/definitions/grib1/local.98.19.def | 40 + eccodes/definitions/grib1/local.98.190.def | 26 + eccodes/definitions/grib1/local.98.191.def | 35 + eccodes/definitions/grib1/local.98.192.def | 39 + eccodes/definitions/grib1/local.98.2.def | 45 + eccodes/definitions/grib1/local.98.20.def | 19 + eccodes/definitions/grib1/local.98.21.def | 54 + eccodes/definitions/grib1/local.98.218.def | 42 + eccodes/definitions/grib1/local.98.23.def | 56 + eccodes/definitions/grib1/local.98.24.def | 16 + eccodes/definitions/grib1/local.98.244.def | 1 + eccodes/definitions/grib1/local.98.245.def | 1 + eccodes/definitions/grib1/local.98.25.def | 24 + eccodes/definitions/grib1/local.98.26.def | 32 + eccodes/definitions/grib1/local.98.27.def | 31 + eccodes/definitions/grib1/local.98.28.def | 21 + eccodes/definitions/grib1/local.98.29.def | 44 + eccodes/definitions/grib1/local.98.3.def | 18 + eccodes/definitions/grib1/local.98.30.def | 57 + eccodes/definitions/grib1/local.98.31.def | 31 + eccodes/definitions/grib1/local.98.32.def | 46 + eccodes/definitions/grib1/local.98.33.def | 25 + eccodes/definitions/grib1/local.98.35.def | 32 + eccodes/definitions/grib1/local.98.36.def | 54 + eccodes/definitions/grib1/local.98.37.def | 34 + eccodes/definitions/grib1/local.98.38.def | 24 + eccodes/definitions/grib1/local.98.39.def | 28 + eccodes/definitions/grib1/local.98.4.def | 154 + eccodes/definitions/grib1/local.98.40.def | 23 + eccodes/definitions/grib1/local.98.49.def | 31 + eccodes/definitions/grib1/local.98.5.def | 61 + eccodes/definitions/grib1/local.98.50.def | 30 + eccodes/definitions/grib1/local.98.6.def | 22 + eccodes/definitions/grib1/local.98.7.def | 31 + eccodes/definitions/grib1/local.98.8.def | 10 + eccodes/definitions/grib1/local.98.9.def | 62 + eccodes/definitions/grib1/local.98.def | 4 + eccodes/definitions/grib1/local/ecmf/3.table | 53 + eccodes/definitions/grib1/local/ecmf/5.table | 25 + .../definitions/grib1/local/edzw/2.0.3.table | 130 + eccodes/definitions/grib1/local/edzw/5.table | 24 + .../edzw/generatingProcessIdentifier.table | 86 + .../definitions/grib1/local/rjtd/252.table | 16 + eccodes/definitions/grib1/local/rjtd/3.table | 58 + eccodes/definitions/grib1/local/rjtd/5.table | 27 + .../grib1/localConcepts/ammc/name.def | 5 + .../grib1/localConcepts/ammc/paramId.def | 5 + .../grib1/localConcepts/ammc/shortName.def | 5 + .../grib1/localConcepts/ammc/units.def | 5 + .../grib1/localConcepts/cnmc/name.def | 2435 ++ .../grib1/localConcepts/cnmc/paramId.def | 2435 ++ .../grib1/localConcepts/cnmc/shortName.def | 2435 ++ .../grib1/localConcepts/cnmc/units.def | 2435 ++ .../grib1/localConcepts/ecmf/cfName.def | 1041 + .../grib1/localConcepts/ecmf/cfVarName.def | 17676 +++++++++++++ .../grib1/localConcepts/ecmf/name.def | 17676 +++++++++++++ .../grib1/localConcepts/ecmf/paramId.def | 17676 +++++++++++++ .../grib1/localConcepts/ecmf/shortName.def | 17676 +++++++++++++ .../grib1/localConcepts/ecmf/stepType.def | 35 + .../ecmf/stepTypeForConversion.def | 28 + .../grib1/localConcepts/ecmf/typeOfLevel.def | 38 + .../grib1/localConcepts/ecmf/units.def | 17676 +++++++++++++ .../grib1/localConcepts/edzw/name.def | 8992 +++++++ .../grib1/localConcepts/edzw/paramId.def | 8992 +++++++ .../grib1/localConcepts/edzw/shortName.def | 8992 +++++++ .../grib1/localConcepts/edzw/stepType.def | 146 + .../grib1/localConcepts/edzw/typeOfLevel.def | 41 + .../grib1/localConcepts/edzw/units.def | 8992 +++++++ .../grib1/localConcepts/efkl/cfVarName.def | 1121 + .../grib1/localConcepts/efkl/name.def | 1121 + .../grib1/localConcepts/efkl/paramId.def | 801 + .../grib1/localConcepts/efkl/shortName.def | 1121 + .../grib1/localConcepts/efkl/units.def | 1121 + .../grib1/localConcepts/eidb/name.def | 1840 ++ .../grib1/localConcepts/eidb/paramId.def | 1840 ++ .../grib1/localConcepts/eidb/shortName.def | 1840 ++ .../grib1/localConcepts/eidb/typeOfLevel.def | 49 + .../grib1/localConcepts/eidb/units.def | 1840 ++ .../grib1/localConcepts/ekmi/name.def | 21 + .../grib1/localConcepts/ekmi/paramId.def | 21 + .../grib1/localConcepts/ekmi/shortName.def | 21 + .../grib1/localConcepts/ekmi/units.def | 21 + .../grib1/localConcepts/enmi/name.def | 16 + .../grib1/localConcepts/enmi/paramId.def | 16 + .../grib1/localConcepts/enmi/shortName.def | 16 + .../grib1/localConcepts/enmi/units.def | 16 + .../localConcepts/eswi/aerosolConcept.def | 20 + .../localConcepts/eswi/aerosolbinnumber.table | 24 + .../localConcepts/eswi/landTypeConcept.def | 39 + .../grib1/localConcepts/eswi/landtype.table | 43 + .../grib1/localConcepts/eswi/name.def | 5580 ++++ .../grib1/localConcepts/eswi/paramId.def | 5580 ++++ .../grib1/localConcepts/eswi/shortName.def | 5580 ++++ .../grib1/localConcepts/eswi/sort.table | 100 + .../grib1/localConcepts/eswi/sortConcept.def | 96 + .../localConcepts/eswi/timeRepresConcept.def | 48 + .../grib1/localConcepts/eswi/timerepres.table | 52 + .../grib1/localConcepts/eswi/typeOfLevel.def | 49 + .../grib1/localConcepts/eswi/units.def | 5580 ++++ .../grib1/localConcepts/kwbc/name.def | 2 + .../grib1/localConcepts/kwbc/paramId.def | 2 + .../grib1/localConcepts/kwbc/shortName.def | 2 + .../grib1/localConcepts/kwbc/units.def | 2 + .../grib1/localConcepts/lfpw/faFieldName.def | 572 + .../grib1/localConcepts/lfpw/faLevelName.def | 36 + .../grib1/localConcepts/lfpw/faModelName.def | 9 + .../grib1/localConcepts/lfpw/name.def | 18 + .../grib1/localConcepts/lfpw/paramId.def | 18 + .../grib1/localConcepts/lfpw/shortName.def | 18 + .../grib1/localConcepts/lfpw/units.def | 18 + .../grib1/localConcepts/lowm/name.def | 66 + .../grib1/localConcepts/lowm/paramId.def | 66 + .../grib1/localConcepts/lowm/shortName.def | 66 + .../grib1/localConcepts/lowm/units.def | 66 + .../grib1/localConcepts/rjtd/cfVarName.def | 962 + .../grib1/localConcepts/rjtd/name.def | 962 + .../grib1/localConcepts/rjtd/paramId.def | 962 + .../grib1/localConcepts/rjtd/shortName.def | 962 + .../grib1/localConcepts/rjtd/stepType.def | 24 + .../grib1/localConcepts/rjtd/typeOfLevel.def | 43 + .../grib1/localConcepts/rjtd/units.def | 962 + .../grib1/localConcepts/sbsj/name.def | 1136 + .../grib1/localConcepts/sbsj/paramId.def | 1136 + .../grib1/localConcepts/sbsj/shortName.def | 1136 + .../grib1/localConcepts/sbsj/units.def | 1136 + .../grib1/localDefinitionNumber.34.table | 2 + .../grib1/localDefinitionNumber.82.table | 10 + .../grib1/localDefinitionNumber.96.table | 1 + .../grib1/localDefinitionNumber.98.table | 44 + .../definitions/grib1/local_no_mars.98.1.def | 66 + .../definitions/grib1/local_no_mars.98.24.def | 25 + eccodes/definitions/grib1/ls.def | 16 + eccodes/definitions/grib1/ls_labeling.82.def | 19 + .../definitions/grib1/mars_labeling.23.def | 1 + eccodes/definitions/grib1/mars_labeling.4.def | 193 + .../definitions/grib1/mars_labeling.82.def | 50 + eccodes/definitions/grib1/mars_labeling.def | 14 + eccodes/definitions/grib1/name.def | 2059 ++ eccodes/definitions/grib1/ocean.1.table | 17 + eccodes/definitions/grib1/param.pl | 60 + eccodes/definitions/grib1/paramId.def | 2059 ++ eccodes/definitions/grib1/precision.table | 6 + eccodes/definitions/grib1/predefined_grid.def | 129 + eccodes/definitions/grib1/regimes.table | 5 + .../definitions/grib1/resolution_flags.def | 32 + eccodes/definitions/grib1/scanning_mode.def | 37 + eccodes/definitions/grib1/section.0.def | 3 + eccodes/definitions/grib1/section.1.def | 327 + eccodes/definitions/grib1/section.2.def | 100 + eccodes/definitions/grib1/section.3.def | 25 + eccodes/definitions/grib1/section.4.def | 245 + eccodes/definitions/grib1/section.5.def | 8 + .../grib1/sensitive_area_domain.def | 27 + eccodes/definitions/grib1/shortName.def | 2059 ++ eccodes/definitions/grib1/stepType.def | 27 + .../grib1/stepTypeForConversion.def | 3 + eccodes/definitions/grib1/tube_domain.def | 7 + eccodes/definitions/grib1/typeOfLevel.def | 36 + eccodes/definitions/grib1/units.def | 2059 ++ eccodes/definitions/grib2/boot.def | 45 + eccodes/definitions/grib2/boot_multifield.def | 31 + eccodes/definitions/grib2/cfName.def | 278 + eccodes/definitions/grib2/cfVarName.def | 4140 +++ .../definitions/grib2/crraLocalVersion.table | 1 + .../definitions/grib2/crra_suiteName.table | 7 + eccodes/definitions/grib2/d | 98 + eccodes/definitions/grib2/dimension.0.table | 1 + .../grib2/dimensionTableNumber.table | 1 + eccodes/definitions/grib2/dimensionType.table | 2 + .../grib2/grib2LocalSectionNumber.82.table | 4 + .../grib2/grib2LocalSectionNumber.85.table | 3 + .../grib2/grib2LocalSectionNumber.98.table | 25 + .../definitions/grib2/lcwfv_suiteName.table | 22 + eccodes/definitions/grib2/local.82.0.def | 28 + eccodes/definitions/grib2/local.82.82.def | 16 + eccodes/definitions/grib2/local.82.83.def | 22 + eccodes/definitions/grib2/local.82.def | 22 + eccodes/definitions/grib2/local.85.0.def | 1 + eccodes/definitions/grib2/local.85.1.def | 29 + eccodes/definitions/grib2/local.85.2.def | 5 + eccodes/definitions/grib2/local.85.def | 3 + eccodes/definitions/grib2/local.98.0.def | 3 + eccodes/definitions/grib2/local.98.1.def | 3 + eccodes/definitions/grib2/local.98.11.def | 19 + eccodes/definitions/grib2/local.98.12.def | 14 + eccodes/definitions/grib2/local.98.14.def | 4 + eccodes/definitions/grib2/local.98.15.def | 9 + eccodes/definitions/grib2/local.98.16.def | 7 + eccodes/definitions/grib2/local.98.18.def | 17 + eccodes/definitions/grib2/local.98.192.def | 11 + eccodes/definitions/grib2/local.98.20.def | 12 + eccodes/definitions/grib2/local.98.21.def | 32 + eccodes/definitions/grib2/local.98.24.def | 4 + eccodes/definitions/grib2/local.98.25.def | 11 + eccodes/definitions/grib2/local.98.26.def | 9 + eccodes/definitions/grib2/local.98.28.def | 7 + eccodes/definitions/grib2/local.98.30.def | 20 + eccodes/definitions/grib2/local.98.300.def | 12 + eccodes/definitions/grib2/local.98.36.def | 7 + eccodes/definitions/grib2/local.98.38.def | 18 + eccodes/definitions/grib2/local.98.39.def | 16 + eccodes/definitions/grib2/local.98.41.def | 92 + eccodes/definitions/grib2/local.98.42.def | 6 + eccodes/definitions/grib2/local.98.5.def | 3 + eccodes/definitions/grib2/local.98.500.def | 53 + eccodes/definitions/grib2/local.98.7.def | 16 + eccodes/definitions/grib2/local.98.9.def | 38 + eccodes/definitions/grib2/local.98.def | 33 + eccodes/definitions/grib2/local.crra.1.def | 4 + eccodes/definitions/grib2/local.tigge.1.def | 5 + .../definitions/grib2/local/1098/2.1.table | 1 + .../grib2/local/1098/centres.table | 12 + .../definitions/grib2/local/1098/models.table | 13 + .../grib2/local/1098/template.2.0.def | 19 + eccodes/definitions/grib2/local/2.0.table | 96 + .../grib2/localConcepts/cnmc/modelName.def | 7 + .../grib2/localConcepts/cnmc/name.def | 3073 +++ .../grib2/localConcepts/cnmc/paramId.def | 3073 +++ .../grib2/localConcepts/cnmc/shortName.def | 3073 +++ .../grib2/localConcepts/cnmc/units.def | 3073 +++ .../grib2/localConcepts/ecmf/cfName.def | 633 + .../localConcepts/ecmf/cfName.legacy.def | 54 + .../grib2/localConcepts/ecmf/cfVarName.def | 22056 ++++++++++++++++ .../localConcepts/ecmf/cfVarName.legacy.def | 144 + .../grib2/localConcepts/ecmf/name.def | 22056 ++++++++++++++++ .../grib2/localConcepts/ecmf/name.legacy.def | 144 + .../grib2/localConcepts/ecmf/paramId.def | 22056 ++++++++++++++++ .../localConcepts/ecmf/paramId.legacy.def | 144 + .../grib2/localConcepts/ecmf/shortName.def | 22056 ++++++++++++++++ .../localConcepts/ecmf/shortName.legacy.def | 144 + .../grib2/localConcepts/ecmf/units.def | 22056 ++++++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 144 + .../localConcepts/ecmf/unstructuredGrid.def | 14 + .../ecmf/unstructuredGridSubtype.def | 6 + .../ecmf/unstructuredGridType.def | 8 + .../localConcepts/edzw/default_step_units.def | 4 + .../grib2/localConcepts/edzw/modelName.def | 107 + .../grib2/localConcepts/edzw/name.def | 13809 ++++++++++ .../grib2/localConcepts/edzw/paramId.def | 14348 ++++++++++ .../grib2/localConcepts/edzw/shortName.def | 13809 ++++++++++ .../grib2/localConcepts/edzw/units.def | 13809 ++++++++++ .../grib2/localConcepts/efkl/name.def | 157 + .../grib2/localConcepts/efkl/paramId.def | 157 + .../grib2/localConcepts/efkl/shortName.def | 157 + .../grib2/localConcepts/efkl/units.def | 157 + .../grib2/localConcepts/egrr/cfVarName.def | 84 + .../grib2/localConcepts/egrr/name.def | 84 + .../grib2/localConcepts/egrr/paramId.def | 84 + .../grib2/localConcepts/egrr/shortName.def | 84 + .../grib2/localConcepts/egrr/units.def | 84 + .../grib2/localConcepts/ekmi/name.def | 17 + .../grib2/localConcepts/ekmi/paramId.def | 17 + .../grib2/localConcepts/ekmi/shortName.def | 17 + .../grib2/localConcepts/ekmi/units.def | 17 + .../grib2/localConcepts/eswi/name.def | 3000 +++ .../grib2/localConcepts/eswi/paramId.def | 3000 +++ .../grib2/localConcepts/eswi/shortName.def | 3000 +++ .../grib2/localConcepts/eswi/units.def | 3000 +++ .../grib2/localConcepts/kwbc/name.def | 1651 ++ .../grib2/localConcepts/kwbc/paramId.def | 1651 ++ .../grib2/localConcepts/kwbc/shortName.def | 1651 ++ .../grib2/localConcepts/kwbc/units.def | 1651 ++ .../grib2/localConcepts/lfpw/faFieldName.def | 1258 + .../grib2/localConcepts/lfpw/faLevelName.def | 63 + .../grib2/localConcepts/lfpw/faModelName.def | 9 + .../grib2/localConcepts/lfpw/name.def | 21 + .../grib2/localConcepts/lfpw/paramId.def | 21 + .../grib2/localConcepts/lfpw/shortName.def | 21 + .../grib2/localConcepts/lfpw/units.def | 21 + .../grib2/localConcepts/lfpw1/name.def | 7 + .../grib2/localConcepts/lfpw1/paramId.def | 7 + .../grib2/localConcepts/lfpw1/shortName.def | 7 + .../grib2/localConcepts/lfpw1/units.def | 7 + .../grib2/localConcepts/lssw/modelName.def | 17 + eccodes/definitions/grib2/ls.def | 2 + eccodes/definitions/grib2/ls_labeling.82.def | 23 + .../definitions/grib2/mars_labeling.82.def | 48 + eccodes/definitions/grib2/mars_labeling.def | 45 + eccodes/definitions/grib2/meta.def | 5 + eccodes/definitions/grib2/modelName.def | 43 + eccodes/definitions/grib2/name.def | 4140 +++ eccodes/definitions/grib2/paramId.def | 4140 +++ eccodes/definitions/grib2/parameters.def | 35 + eccodes/definitions/grib2/products_0.def | 11 + eccodes/definitions/grib2/products_1.def | 11 + eccodes/definitions/grib2/products_10.def | 5 + eccodes/definitions/grib2/products_11.def | 5 + eccodes/definitions/grib2/products_2.def | 11 + eccodes/definitions/grib2/products_3.def | 11 + eccodes/definitions/grib2/products_4.def | 5 + eccodes/definitions/grib2/products_5.def | 5 + eccodes/definitions/grib2/products_6.def | 5 + eccodes/definitions/grib2/products_7.def | 5 + eccodes/definitions/grib2/products_8.def | 5 + eccodes/definitions/grib2/products_9.def | 5 + eccodes/definitions/grib2/products_crra.def | 108 + eccodes/definitions/grib2/products_s2s.def | 125 + eccodes/definitions/grib2/products_tigge.def | 95 + eccodes/definitions/grib2/products_uerra.def | 103 + eccodes/definitions/grib2/rules.def | 12 + eccodes/definitions/grib2/section.0.def | 14 + eccodes/definitions/grib2/section.1.def | 147 + eccodes/definitions/grib2/section.2.def | 45 + eccodes/definitions/grib2/section.3.def | 126 + eccodes/definitions/grib2/section.4.def | 78 + eccodes/definitions/grib2/section.5.def | 65 + eccodes/definitions/grib2/section.6.def | 63 + eccodes/definitions/grib2/section.7.def | 41 + eccodes/definitions/grib2/section.8.def | 7 + eccodes/definitions/grib2/sections.def | 66 + eccodes/definitions/grib2/shortName.def | 4140 +++ eccodes/definitions/grib2/tables/0.0.table | 11 + eccodes/definitions/grib2/tables/0/0.0.table | 6 + eccodes/definitions/grib2/tables/0/1.0.table | 5 + eccodes/definitions/grib2/tables/0/1.1.table | 2 + eccodes/definitions/grib2/tables/0/1.2.table | 5 + eccodes/definitions/grib2/tables/0/1.3.table | 7 + eccodes/definitions/grib2/tables/0/1.4.table | 10 + eccodes/definitions/grib2/tables/0/3.0.table | 3 + eccodes/definitions/grib2/tables/0/3.1.table | 26 + eccodes/definitions/grib2/tables/0/3.10.table | 6 + eccodes/definitions/grib2/tables/0/3.11.table | 4 + eccodes/definitions/grib2/tables/0/3.15.table | 16 + eccodes/definitions/grib2/tables/0/3.2.table | 8 + eccodes/definitions/grib2/tables/0/3.20.table | 3 + eccodes/definitions/grib2/tables/0/3.21.table | 4 + eccodes/definitions/grib2/tables/0/3.3.table | 6 + eccodes/definitions/grib2/tables/0/3.4.table | 8 + eccodes/definitions/grib2/tables/0/3.5.table | 4 + eccodes/definitions/grib2/tables/0/3.6.table | 1 + eccodes/definitions/grib2/tables/0/3.7.table | 3 + eccodes/definitions/grib2/tables/0/3.8.table | 5 + eccodes/definitions/grib2/tables/0/3.9.table | 2 + eccodes/definitions/grib2/tables/0/4.0.table | 37 + .../definitions/grib2/tables/0/4.1.0.table | 26 + .../definitions/grib2/tables/0/4.1.1.table | 5 + .../definitions/grib2/tables/0/4.1.10.table | 8 + .../definitions/grib2/tables/0/4.1.2.table | 7 + .../definitions/grib2/tables/0/4.1.3.table | 5 + eccodes/definitions/grib2/tables/0/4.1.table | 4 + eccodes/definitions/grib2/tables/0/4.10.table | 12 + eccodes/definitions/grib2/tables/0/4.11.table | 6 + eccodes/definitions/grib2/tables/0/4.12.table | 68 + eccodes/definitions/grib2/tables/0/4.13.table | 66 + eccodes/definitions/grib2/tables/0/4.14.table | 67 + eccodes/definitions/grib2/tables/0/4.15.table | 67 + .../definitions/grib2/tables/0/4.151.table | 69 + .../definitions/grib2/tables/0/4.2.0.0.table | 20 + .../definitions/grib2/tables/0/4.2.0.1.table | 63 + .../definitions/grib2/tables/0/4.2.0.13.table | 3 + .../definitions/grib2/tables/0/4.2.0.14.table | 4 + .../definitions/grib2/tables/0/4.2.0.15.table | 11 + .../definitions/grib2/tables/0/4.2.0.18.table | 11 + .../definitions/grib2/tables/0/4.2.0.19.table | 21 + .../grib2/tables/0/4.2.0.190.table | 3 + .../grib2/tables/0/4.2.0.191.table | 3 + .../definitions/grib2/tables/0/4.2.0.2.table | 32 + .../definitions/grib2/tables/0/4.2.0.20.table | 22 + .../definitions/grib2/tables/0/4.2.0.3.table | 22 + .../definitions/grib2/tables/0/4.2.0.4.table | 11 + .../definitions/grib2/tables/0/4.2.0.5.table | 8 + .../definitions/grib2/tables/0/4.2.0.6.table | 27 + .../definitions/grib2/tables/0/4.2.0.7.table | 15 + .../definitions/grib2/tables/0/4.2.1.0.table | 8 + .../definitions/grib2/tables/0/4.2.1.1.table | 5 + .../definitions/grib2/tables/0/4.2.10.0.table | 17 + .../definitions/grib2/tables/0/4.2.10.1.table | 5 + .../definitions/grib2/tables/0/4.2.10.2.table | 9 + .../definitions/grib2/tables/0/4.2.10.3.table | 3 + .../definitions/grib2/tables/0/4.2.10.4.table | 6 + .../definitions/grib2/tables/0/4.2.2.0.table | 26 + .../definitions/grib2/tables/0/4.2.2.3.table | 13 + .../definitions/grib2/tables/0/4.2.3.0.table | 11 + .../definitions/grib2/tables/0/4.2.3.1.table | 8 + .../definitions/grib2/tables/0/4.201.table | 70 + .../definitions/grib2/tables/0/4.202.table | 65 + .../definitions/grib2/tables/0/4.203.table | 23 + .../definitions/grib2/tables/0/4.204.table | 70 + .../definitions/grib2/tables/0/4.205.table | 67 + .../definitions/grib2/tables/0/4.206.table | 67 + .../definitions/grib2/tables/0/4.207.table | 69 + .../definitions/grib2/tables/0/4.208.table | 70 + .../definitions/grib2/tables/0/4.209.table | 69 + .../definitions/grib2/tables/0/4.210.table | 67 + .../definitions/grib2/tables/0/4.211.table | 68 + .../definitions/grib2/tables/0/4.212.table | 78 + .../definitions/grib2/tables/0/4.213.table | 76 + .../definitions/grib2/tables/0/4.215.table | 9 + .../definitions/grib2/tables/0/4.216.table | 2 + .../definitions/grib2/tables/0/4.217.table | 69 + .../definitions/grib2/tables/0/4.220.table | 67 + .../definitions/grib2/tables/0/4.221.table | 67 + .../definitions/grib2/tables/0/4.230.table | 114 + eccodes/definitions/grib2/tables/0/4.3.table | 10 + eccodes/definitions/grib2/tables/0/4.4.table | 13 + eccodes/definitions/grib2/tables/0/4.5.table | 26 + eccodes/definitions/grib2/tables/0/4.6.table | 6 + eccodes/definitions/grib2/tables/0/4.7.table | 72 + eccodes/definitions/grib2/tables/0/4.8.table | 67 + eccodes/definitions/grib2/tables/0/4.9.table | 70 + eccodes/definitions/grib2/tables/0/4.91.table | 77 + eccodes/definitions/grib2/tables/0/5.0.table | 14 + eccodes/definitions/grib2/tables/0/5.1.table | 3 + eccodes/definitions/grib2/tables/0/5.2.table | 4 + eccodes/definitions/grib2/tables/0/5.3.table | 4 + eccodes/definitions/grib2/tables/0/5.4.table | 3 + eccodes/definitions/grib2/tables/0/5.40.table | 3 + .../definitions/grib2/tables/0/5.40000.table | 3 + eccodes/definitions/grib2/tables/0/5.5.table | 5 + eccodes/definitions/grib2/tables/0/5.6.table | 67 + eccodes/definitions/grib2/tables/0/5.7.table | 5 + eccodes/definitions/grib2/tables/0/5.8.table | 2 + eccodes/definitions/grib2/tables/0/5.9.table | 3 + eccodes/definitions/grib2/tables/0/6.0.table | 5 + eccodes/definitions/grib2/tables/1.0.table | 30 + eccodes/definitions/grib2/tables/1/0.0.table | 6 + eccodes/definitions/grib2/tables/1/1.0.table | 5 + eccodes/definitions/grib2/tables/1/1.1.table | 2 + eccodes/definitions/grib2/tables/1/1.2.table | 5 + eccodes/definitions/grib2/tables/1/1.3.table | 7 + eccodes/definitions/grib2/tables/1/1.4.table | 10 + eccodes/definitions/grib2/tables/1/3.0.table | 3 + eccodes/definitions/grib2/tables/1/3.1.table | 26 + eccodes/definitions/grib2/tables/1/3.10.table | 6 + eccodes/definitions/grib2/tables/1/3.11.table | 4 + eccodes/definitions/grib2/tables/1/3.15.table | 16 + eccodes/definitions/grib2/tables/1/3.2.table | 8 + eccodes/definitions/grib2/tables/1/3.20.table | 3 + eccodes/definitions/grib2/tables/1/3.21.table | 4 + eccodes/definitions/grib2/tables/1/3.3.table | 6 + eccodes/definitions/grib2/tables/1/3.4.table | 8 + eccodes/definitions/grib2/tables/1/3.5.table | 4 + eccodes/definitions/grib2/tables/1/3.6.table | 1 + eccodes/definitions/grib2/tables/1/3.7.table | 3 + eccodes/definitions/grib2/tables/1/3.8.table | 5 + eccodes/definitions/grib2/tables/1/3.9.table | 2 + eccodes/definitions/grib2/tables/1/4.0.table | 37 + .../definitions/grib2/tables/1/4.1.0.table | 26 + .../definitions/grib2/tables/1/4.1.1.table | 5 + .../definitions/grib2/tables/1/4.1.10.table | 8 + .../definitions/grib2/tables/1/4.1.2.table | 7 + .../definitions/grib2/tables/1/4.1.3.table | 5 + eccodes/definitions/grib2/tables/1/4.1.table | 4 + eccodes/definitions/grib2/tables/1/4.10.table | 12 + eccodes/definitions/grib2/tables/1/4.11.table | 7 + eccodes/definitions/grib2/tables/1/4.12.table | 68 + eccodes/definitions/grib2/tables/1/4.13.table | 67 + eccodes/definitions/grib2/tables/1/4.14.table | 67 + eccodes/definitions/grib2/tables/1/4.15.table | 67 + .../definitions/grib2/tables/1/4.151.table | 69 + .../definitions/grib2/tables/1/4.2.0.0.table | 20 + .../definitions/grib2/tables/1/4.2.0.1.table | 59 + .../definitions/grib2/tables/1/4.2.0.13.table | 3 + .../definitions/grib2/tables/1/4.2.0.14.table | 4 + .../definitions/grib2/tables/1/4.2.0.15.table | 11 + .../definitions/grib2/tables/1/4.2.0.18.table | 11 + .../definitions/grib2/tables/1/4.2.0.19.table | 21 + .../grib2/tables/1/4.2.0.190.table | 3 + .../grib2/tables/1/4.2.0.191.table | 3 + .../definitions/grib2/tables/1/4.2.0.2.table | 32 + .../definitions/grib2/tables/1/4.2.0.20.table | 11 + .../definitions/grib2/tables/1/4.2.0.3.table | 22 + .../definitions/grib2/tables/1/4.2.0.4.table | 11 + .../definitions/grib2/tables/1/4.2.0.5.table | 8 + .../definitions/grib2/tables/1/4.2.0.6.table | 27 + .../definitions/grib2/tables/1/4.2.0.7.table | 15 + .../definitions/grib2/tables/1/4.2.1.0.table | 8 + .../definitions/grib2/tables/1/4.2.1.1.table | 5 + .../definitions/grib2/tables/1/4.2.10.0.table | 17 + .../definitions/grib2/tables/1/4.2.10.1.table | 5 + .../definitions/grib2/tables/1/4.2.10.2.table | 9 + .../definitions/grib2/tables/1/4.2.10.3.table | 3 + .../definitions/grib2/tables/1/4.2.10.4.table | 6 + .../definitions/grib2/tables/1/4.2.2.0.table | 26 + .../definitions/grib2/tables/1/4.2.2.3.table | 13 + .../definitions/grib2/tables/1/4.2.3.0.table | 11 + .../definitions/grib2/tables/1/4.2.3.1.table | 8 + .../definitions/grib2/tables/1/4.201.table | 70 + .../definitions/grib2/tables/1/4.202.table | 65 + .../definitions/grib2/tables/1/4.203.table | 23 + .../definitions/grib2/tables/1/4.204.table | 70 + .../definitions/grib2/tables/1/4.205.table | 67 + .../definitions/grib2/tables/1/4.206.table | 67 + .../definitions/grib2/tables/1/4.207.table | 69 + .../definitions/grib2/tables/1/4.208.table | 70 + .../definitions/grib2/tables/1/4.209.table | 69 + .../definitions/grib2/tables/1/4.210.table | 67 + .../definitions/grib2/tables/1/4.211.table | 68 + .../definitions/grib2/tables/1/4.212.table | 78 + .../definitions/grib2/tables/1/4.213.table | 76 + .../definitions/grib2/tables/1/4.215.table | 9 + .../definitions/grib2/tables/1/4.216.table | 2 + .../definitions/grib2/tables/1/4.217.table | 69 + .../definitions/grib2/tables/1/4.220.table | 67 + .../definitions/grib2/tables/1/4.221.table | 67 + .../definitions/grib2/tables/1/4.230.table | 43 + eccodes/definitions/grib2/tables/1/4.3.table | 10 + eccodes/definitions/grib2/tables/1/4.4.table | 13 + eccodes/definitions/grib2/tables/1/4.5.table | 26 + eccodes/definitions/grib2/tables/1/4.6.table | 6 + eccodes/definitions/grib2/tables/1/4.7.table | 72 + eccodes/definitions/grib2/tables/1/4.8.table | 67 + eccodes/definitions/grib2/tables/1/4.9.table | 70 + eccodes/definitions/grib2/tables/1/4.91.table | 77 + eccodes/definitions/grib2/tables/1/5.0.table | 14 + eccodes/definitions/grib2/tables/1/5.1.table | 3 + eccodes/definitions/grib2/tables/1/5.2.table | 4 + eccodes/definitions/grib2/tables/1/5.3.table | 4 + eccodes/definitions/grib2/tables/1/5.4.table | 3 + eccodes/definitions/grib2/tables/1/5.40.table | 3 + .../definitions/grib2/tables/1/5.40000.table | 3 + eccodes/definitions/grib2/tables/1/5.5.table | 5 + eccodes/definitions/grib2/tables/1/5.6.table | 67 + eccodes/definitions/grib2/tables/1/5.7.table | 5 + eccodes/definitions/grib2/tables/1/5.8.table | 2 + eccodes/definitions/grib2/tables/1/5.9.table | 3 + eccodes/definitions/grib2/tables/1/6.0.table | 5 + eccodes/definitions/grib2/tables/10/0.0.table | 10 + eccodes/definitions/grib2/tables/10/1.0.table | 15 + eccodes/definitions/grib2/tables/10/1.1.table | 4 + eccodes/definitions/grib2/tables/10/1.2.table | 8 + eccodes/definitions/grib2/tables/10/1.3.table | 10 + eccodes/definitions/grib2/tables/10/1.4.table | 13 + eccodes/definitions/grib2/tables/10/3.0.table | 6 + eccodes/definitions/grib2/tables/10/3.1.table | 47 + .../definitions/grib2/tables/10/3.10.table | 8 + .../definitions/grib2/tables/10/3.11.table | 7 + .../definitions/grib2/tables/10/3.15.table | 23 + eccodes/definitions/grib2/tables/10/3.2.table | 14 + .../definitions/grib2/tables/10/3.20.table | 6 + .../definitions/grib2/tables/10/3.21.table | 8 + eccodes/definitions/grib2/tables/10/3.3.table | 9 + eccodes/definitions/grib2/tables/10/3.4.table | 10 + eccodes/definitions/grib2/tables/10/3.5.table | 5 + eccodes/definitions/grib2/tables/10/3.6.table | 2 + eccodes/definitions/grib2/tables/10/3.7.table | 5 + eccodes/definitions/grib2/tables/10/3.8.table | 7 + eccodes/definitions/grib2/tables/10/3.9.table | 4 + eccodes/definitions/grib2/tables/10/4.0.table | 53 + .../definitions/grib2/tables/10/4.1.0.table | 27 + .../definitions/grib2/tables/10/4.1.1.table | 7 + .../definitions/grib2/tables/10/4.1.10.table | 10 + .../definitions/grib2/tables/10/4.1.192.table | 4 + .../definitions/grib2/tables/10/4.1.2.table | 9 + .../definitions/grib2/tables/10/4.1.3.table | 8 + eccodes/definitions/grib2/tables/10/4.1.table | 5 + .../definitions/grib2/tables/10/4.10.table | 16 + .../definitions/grib2/tables/10/4.11.table | 10 + .../definitions/grib2/tables/10/4.12.table | 7 + .../definitions/grib2/tables/10/4.13.table | 6 + .../definitions/grib2/tables/10/4.14.table | 6 + .../definitions/grib2/tables/10/4.15.table | 11 + .../definitions/grib2/tables/10/4.151.table | 70 + .../definitions/grib2/tables/10/4.192.table | 4 + .../definitions/grib2/tables/10/4.2.0.0.table | 25 + .../definitions/grib2/tables/10/4.2.0.1.table | 95 + .../grib2/tables/10/4.2.0.13.table | 5 + .../grib2/tables/10/4.2.0.14.table | 7 + .../grib2/tables/10/4.2.0.15.table | 19 + .../grib2/tables/10/4.2.0.16.table | 10 + .../grib2/tables/10/4.2.0.18.table | 18 + .../grib2/tables/10/4.2.0.19.table | 32 + .../grib2/tables/10/4.2.0.190.table | 5 + .../grib2/tables/10/4.2.0.191.table | 7 + .../definitions/grib2/tables/10/4.2.0.2.table | 40 + .../grib2/tables/10/4.2.0.20.table | 42 + .../definitions/grib2/tables/10/4.2.0.3.table | 31 + .../definitions/grib2/tables/10/4.2.0.4.table | 20 + .../definitions/grib2/tables/10/4.2.0.5.table | 11 + .../definitions/grib2/tables/10/4.2.0.6.table | 40 + .../definitions/grib2/tables/10/4.2.0.7.table | 20 + .../definitions/grib2/tables/10/4.2.1.0.table | 11 + .../definitions/grib2/tables/10/4.2.1.1.table | 7 + .../definitions/grib2/tables/10/4.2.1.2.table | 14 + .../grib2/tables/10/4.2.10.0.table | 50 + .../grib2/tables/10/4.2.10.1.table | 8 + .../grib2/tables/10/4.2.10.191.table | 6 + .../grib2/tables/10/4.2.10.2.table | 14 + .../grib2/tables/10/4.2.10.3.table | 6 + .../grib2/tables/10/4.2.10.4.table | 18 + .../definitions/grib2/tables/10/4.2.2.0.table | 37 + .../definitions/grib2/tables/10/4.2.2.3.table | 27 + .../definitions/grib2/tables/10/4.2.2.4.table | 8 + .../definitions/grib2/tables/10/4.2.3.0.table | 14 + .../definitions/grib2/tables/10/4.2.3.1.table | 28 + .../definitions/grib2/tables/10/4.201.table | 10 + .../definitions/grib2/tables/10/4.202.table | 4 + .../definitions/grib2/tables/10/4.203.table | 26 + .../definitions/grib2/tables/10/4.204.table | 9 + .../definitions/grib2/tables/10/4.205.table | 6 + .../definitions/grib2/tables/10/4.206.table | 6 + .../definitions/grib2/tables/10/4.207.table | 10 + .../definitions/grib2/tables/10/4.208.table | 9 + .../definitions/grib2/tables/10/4.209.table | 9 + .../definitions/grib2/tables/10/4.210.table | 6 + .../definitions/grib2/tables/10/4.211.table | 7 + .../definitions/grib2/tables/10/4.212.table | 18 + .../definitions/grib2/tables/10/4.213.table | 16 + .../definitions/grib2/tables/10/4.215.table | 9 + .../definitions/grib2/tables/10/4.216.table | 5 + .../definitions/grib2/tables/10/4.217.table | 8 + .../definitions/grib2/tables/10/4.218.table | 38 + .../definitions/grib2/tables/10/4.219.table | 8 + .../definitions/grib2/tables/10/4.220.table | 6 + .../definitions/grib2/tables/10/4.221.table | 6 + .../definitions/grib2/tables/10/4.222.table | 6 + .../definitions/grib2/tables/10/4.223.table | 5 + .../definitions/grib2/tables/10/4.224.table | 18 + .../definitions/grib2/tables/10/4.225.table | 2 + .../definitions/grib2/tables/10/4.227.table | 9 + .../definitions/grib2/tables/10/4.230.table | 407 + .../definitions/grib2/tables/10/4.233.table | 3 + .../definitions/grib2/tables/10/4.234.table | 21 + .../definitions/grib2/tables/10/4.235.table | 8 + eccodes/definitions/grib2/tables/10/4.3.table | 16 + eccodes/definitions/grib2/tables/10/4.4.table | 17 + eccodes/definitions/grib2/tables/10/4.5.table | 49 + eccodes/definitions/grib2/tables/10/4.6.table | 9 + eccodes/definitions/grib2/tables/10/4.7.table | 14 + eccodes/definitions/grib2/tables/10/4.8.table | 6 + eccodes/definitions/grib2/tables/10/4.9.table | 9 + .../definitions/grib2/tables/10/4.91.table | 16 + eccodes/definitions/grib2/tables/10/5.0.table | 24 + eccodes/definitions/grib2/tables/10/5.1.table | 6 + eccodes/definitions/grib2/tables/10/5.2.table | 8 + eccodes/definitions/grib2/tables/10/5.3.table | 7 + eccodes/definitions/grib2/tables/10/5.4.table | 6 + .../definitions/grib2/tables/10/5.40.table | 5 + .../definitions/grib2/tables/10/5.40000.table | 5 + eccodes/definitions/grib2/tables/10/5.5.table | 7 + .../definitions/grib2/tables/10/5.50002.table | 19 + eccodes/definitions/grib2/tables/10/5.6.table | 7 + eccodes/definitions/grib2/tables/10/5.7.table | 7 + eccodes/definitions/grib2/tables/10/5.8.table | 3 + eccodes/definitions/grib2/tables/10/5.9.table | 4 + eccodes/definitions/grib2/tables/10/6.0.table | 6 + .../grib2/tables/10/stepType.table | 2 + eccodes/definitions/grib2/tables/11/0.0.table | 10 + eccodes/definitions/grib2/tables/11/1.0.table | 15 + eccodes/definitions/grib2/tables/11/1.1.table | 4 + eccodes/definitions/grib2/tables/11/1.2.table | 8 + eccodes/definitions/grib2/tables/11/1.3.table | 12 + eccodes/definitions/grib2/tables/11/1.4.table | 13 + eccodes/definitions/grib2/tables/11/3.0.table | 6 + eccodes/definitions/grib2/tables/11/3.1.table | 47 + .../definitions/grib2/tables/11/3.10.table | 8 + .../definitions/grib2/tables/11/3.11.table | 7 + .../definitions/grib2/tables/11/3.15.table | 23 + eccodes/definitions/grib2/tables/11/3.2.table | 14 + .../definitions/grib2/tables/11/3.20.table | 6 + .../definitions/grib2/tables/11/3.21.table | 8 + eccodes/definitions/grib2/tables/11/3.3.table | 9 + eccodes/definitions/grib2/tables/11/3.4.table | 10 + eccodes/definitions/grib2/tables/11/3.5.table | 5 + eccodes/definitions/grib2/tables/11/3.6.table | 2 + eccodes/definitions/grib2/tables/11/3.7.table | 5 + eccodes/definitions/grib2/tables/11/3.8.table | 7 + eccodes/definitions/grib2/tables/11/3.9.table | 4 + eccodes/definitions/grib2/tables/11/4.0.table | 59 + .../definitions/grib2/tables/11/4.1.0.table | 27 + .../definitions/grib2/tables/11/4.1.1.table | 7 + .../definitions/grib2/tables/11/4.1.10.table | 10 + .../definitions/grib2/tables/11/4.1.192.table | 4 + .../definitions/grib2/tables/11/4.1.2.table | 9 + .../definitions/grib2/tables/11/4.1.3.table | 8 + .../definitions/grib2/tables/11/4.10.table | 16 + .../definitions/grib2/tables/11/4.11.table | 10 + .../definitions/grib2/tables/11/4.12.table | 7 + .../definitions/grib2/tables/11/4.13.table | 6 + .../definitions/grib2/tables/11/4.14.table | 6 + .../definitions/grib2/tables/11/4.15.table | 11 + .../definitions/grib2/tables/11/4.192.table | 4 + .../definitions/grib2/tables/11/4.2.0.0.table | 25 + .../definitions/grib2/tables/11/4.2.0.1.table | 95 + .../grib2/tables/11/4.2.0.13.table | 5 + .../grib2/tables/11/4.2.0.14.table | 7 + .../grib2/tables/11/4.2.0.15.table | 19 + .../grib2/tables/11/4.2.0.16.table | 10 + .../grib2/tables/11/4.2.0.18.table | 18 + .../grib2/tables/11/4.2.0.19.table | 32 + .../grib2/tables/11/4.2.0.190.table | 5 + .../grib2/tables/11/4.2.0.191.table | 7 + .../definitions/grib2/tables/11/4.2.0.2.table | 40 + .../grib2/tables/11/4.2.0.20.table | 42 + .../definitions/grib2/tables/11/4.2.0.3.table | 31 + .../definitions/grib2/tables/11/4.2.0.4.table | 20 + .../definitions/grib2/tables/11/4.2.0.5.table | 11 + .../definitions/grib2/tables/11/4.2.0.6.table | 40 + .../definitions/grib2/tables/11/4.2.0.7.table | 20 + .../definitions/grib2/tables/11/4.2.1.0.table | 11 + .../definitions/grib2/tables/11/4.2.1.1.table | 7 + .../definitions/grib2/tables/11/4.2.1.2.table | 14 + .../grib2/tables/11/4.2.10.0.table | 50 + .../grib2/tables/11/4.2.10.1.table | 8 + .../grib2/tables/11/4.2.10.191.table | 6 + .../grib2/tables/11/4.2.10.2.table | 14 + .../grib2/tables/11/4.2.10.3.table | 6 + .../grib2/tables/11/4.2.10.4.table | 18 + .../definitions/grib2/tables/11/4.2.2.0.table | 37 + .../definitions/grib2/tables/11/4.2.2.3.table | 27 + .../definitions/grib2/tables/11/4.2.2.4.table | 8 + .../definitions/grib2/tables/11/4.2.3.0.table | 14 + .../definitions/grib2/tables/11/4.2.3.1.table | 28 + .../definitions/grib2/tables/11/4.201.table | 10 + .../definitions/grib2/tables/11/4.202.table | 4 + .../definitions/grib2/tables/11/4.203.table | 26 + .../definitions/grib2/tables/11/4.204.table | 9 + .../definitions/grib2/tables/11/4.205.table | 6 + .../definitions/grib2/tables/11/4.206.table | 6 + .../definitions/grib2/tables/11/4.207.table | 10 + .../definitions/grib2/tables/11/4.208.table | 9 + .../definitions/grib2/tables/11/4.209.table | 9 + .../definitions/grib2/tables/11/4.210.table | 6 + .../definitions/grib2/tables/11/4.211.table | 7 + .../definitions/grib2/tables/11/4.212.table | 18 + .../definitions/grib2/tables/11/4.213.table | 16 + .../definitions/grib2/tables/11/4.215.table | 9 + .../definitions/grib2/tables/11/4.216.table | 5 + .../definitions/grib2/tables/11/4.217.table | 8 + .../definitions/grib2/tables/11/4.218.table | 38 + .../definitions/grib2/tables/11/4.219.table | 8 + .../definitions/grib2/tables/11/4.220.table | 6 + .../definitions/grib2/tables/11/4.221.table | 6 + .../definitions/grib2/tables/11/4.222.table | 6 + .../definitions/grib2/tables/11/4.223.table | 5 + .../definitions/grib2/tables/11/4.224.table | 18 + .../definitions/grib2/tables/11/4.225.table | 2 + .../definitions/grib2/tables/11/4.227.table | 9 + .../definitions/grib2/tables/11/4.230.table | 407 + .../definitions/grib2/tables/11/4.233.table | 3 + .../definitions/grib2/tables/11/4.234.table | 21 + .../definitions/grib2/tables/11/4.236.table | 9 + eccodes/definitions/grib2/tables/11/4.3.table | 16 + eccodes/definitions/grib2/tables/11/4.4.table | 17 + eccodes/definitions/grib2/tables/11/4.5.table | 49 + eccodes/definitions/grib2/tables/11/4.6.table | 9 + eccodes/definitions/grib2/tables/11/4.7.table | 14 + eccodes/definitions/grib2/tables/11/4.8.table | 6 + eccodes/definitions/grib2/tables/11/4.9.table | 9 + .../definitions/grib2/tables/11/4.91.table | 16 + eccodes/definitions/grib2/tables/11/5.0.table | 24 + eccodes/definitions/grib2/tables/11/5.1.table | 6 + eccodes/definitions/grib2/tables/11/5.2.table | 8 + eccodes/definitions/grib2/tables/11/5.3.table | 7 + eccodes/definitions/grib2/tables/11/5.4.table | 6 + .../definitions/grib2/tables/11/5.40.table | 5 + .../definitions/grib2/tables/11/5.40000.table | 5 + eccodes/definitions/grib2/tables/11/5.5.table | 7 + .../definitions/grib2/tables/11/5.50002.table | 19 + eccodes/definitions/grib2/tables/11/5.6.table | 7 + eccodes/definitions/grib2/tables/11/5.7.table | 7 + eccodes/definitions/grib2/tables/11/5.8.table | 3 + eccodes/definitions/grib2/tables/11/5.9.table | 4 + eccodes/definitions/grib2/tables/11/6.0.table | 6 + .../grib2/tables/11/stepType.table | 2 + eccodes/definitions/grib2/tables/12/0.0.table | 10 + eccodes/definitions/grib2/tables/12/1.0.table | 17 + eccodes/definitions/grib2/tables/12/1.1.table | 4 + eccodes/definitions/grib2/tables/12/1.2.table | 8 + eccodes/definitions/grib2/tables/12/1.3.table | 12 + eccodes/definitions/grib2/tables/12/1.4.table | 13 + eccodes/definitions/grib2/tables/12/1.5.table | 7 + eccodes/definitions/grib2/tables/12/1.6.table | 8 + eccodes/definitions/grib2/tables/12/3.0.table | 6 + eccodes/definitions/grib2/tables/12/3.1.table | 47 + .../definitions/grib2/tables/12/3.10.table | 8 + .../definitions/grib2/tables/12/3.11.table | 7 + .../definitions/grib2/tables/12/3.15.table | 23 + eccodes/definitions/grib2/tables/12/3.2.table | 14 + .../definitions/grib2/tables/12/3.20.table | 6 + .../definitions/grib2/tables/12/3.21.table | 8 + eccodes/definitions/grib2/tables/12/3.3.table | 9 + eccodes/definitions/grib2/tables/12/3.4.table | 10 + eccodes/definitions/grib2/tables/12/3.5.table | 5 + eccodes/definitions/grib2/tables/12/3.6.table | 2 + eccodes/definitions/grib2/tables/12/3.7.table | 5 + eccodes/definitions/grib2/tables/12/3.8.table | 7 + eccodes/definitions/grib2/tables/12/3.9.table | 4 + eccodes/definitions/grib2/tables/12/4.0.table | 61 + .../definitions/grib2/tables/12/4.1.0.table | 27 + .../definitions/grib2/tables/12/4.1.1.table | 7 + .../definitions/grib2/tables/12/4.1.10.table | 10 + .../definitions/grib2/tables/12/4.1.192.table | 4 + .../definitions/grib2/tables/12/4.1.2.table | 9 + .../definitions/grib2/tables/12/4.1.3.table | 6 + .../definitions/grib2/tables/12/4.10.table | 16 + .../definitions/grib2/tables/12/4.11.table | 10 + .../definitions/grib2/tables/12/4.12.table | 7 + .../definitions/grib2/tables/12/4.13.table | 6 + .../definitions/grib2/tables/12/4.14.table | 6 + .../definitions/grib2/tables/12/4.15.table | 11 + .../definitions/grib2/tables/12/4.192.table | 4 + .../definitions/grib2/tables/12/4.2.0.0.table | 25 + .../definitions/grib2/tables/12/4.2.0.1.table | 95 + .../grib2/tables/12/4.2.0.13.table | 5 + .../grib2/tables/12/4.2.0.14.table | 7 + .../grib2/tables/12/4.2.0.15.table | 19 + .../grib2/tables/12/4.2.0.16.table | 10 + .../grib2/tables/12/4.2.0.18.table | 18 + .../grib2/tables/12/4.2.0.19.table | 32 + .../grib2/tables/12/4.2.0.190.table | 5 + .../grib2/tables/12/4.2.0.191.table | 7 + .../definitions/grib2/tables/12/4.2.0.2.table | 40 + .../grib2/tables/12/4.2.0.20.table | 42 + .../definitions/grib2/tables/12/4.2.0.3.table | 31 + .../definitions/grib2/tables/12/4.2.0.4.table | 20 + .../definitions/grib2/tables/12/4.2.0.5.table | 11 + .../definitions/grib2/tables/12/4.2.0.6.table | 40 + .../definitions/grib2/tables/12/4.2.0.7.table | 20 + .../definitions/grib2/tables/12/4.2.1.0.table | 11 + .../definitions/grib2/tables/12/4.2.1.1.table | 7 + .../definitions/grib2/tables/12/4.2.1.2.table | 14 + .../grib2/tables/12/4.2.10.0.table | 50 + .../grib2/tables/12/4.2.10.1.table | 8 + .../grib2/tables/12/4.2.10.191.table | 6 + .../grib2/tables/12/4.2.10.2.table | 14 + .../grib2/tables/12/4.2.10.3.table | 6 + .../grib2/tables/12/4.2.10.4.table | 18 + .../definitions/grib2/tables/12/4.2.2.0.table | 37 + .../definitions/grib2/tables/12/4.2.2.3.table | 27 + .../definitions/grib2/tables/12/4.2.2.4.table | 8 + .../definitions/grib2/tables/12/4.2.3.0.table | 14 + .../definitions/grib2/tables/12/4.2.3.1.table | 28 + .../definitions/grib2/tables/12/4.201.table | 15 + .../definitions/grib2/tables/12/4.202.table | 4 + .../definitions/grib2/tables/12/4.203.table | 26 + .../definitions/grib2/tables/12/4.204.table | 9 + .../definitions/grib2/tables/12/4.205.table | 6 + .../definitions/grib2/tables/12/4.206.table | 6 + .../definitions/grib2/tables/12/4.207.table | 10 + .../definitions/grib2/tables/12/4.208.table | 9 + .../definitions/grib2/tables/12/4.209.table | 9 + .../definitions/grib2/tables/12/4.210.table | 6 + .../definitions/grib2/tables/12/4.211.table | 7 + .../definitions/grib2/tables/12/4.212.table | 18 + .../definitions/grib2/tables/12/4.213.table | 16 + .../definitions/grib2/tables/12/4.215.table | 9 + .../definitions/grib2/tables/12/4.216.table | 5 + .../definitions/grib2/tables/12/4.217.table | 8 + .../definitions/grib2/tables/12/4.218.table | 38 + .../definitions/grib2/tables/12/4.219.table | 8 + .../definitions/grib2/tables/12/4.220.table | 6 + .../definitions/grib2/tables/12/4.221.table | 6 + .../definitions/grib2/tables/12/4.222.table | 6 + .../definitions/grib2/tables/12/4.223.table | 5 + .../definitions/grib2/tables/12/4.224.table | 18 + .../definitions/grib2/tables/12/4.225.table | 2 + .../definitions/grib2/tables/12/4.227.table | 9 + .../definitions/grib2/tables/12/4.230.table | 413 + .../definitions/grib2/tables/12/4.233.table | 3 + .../definitions/grib2/tables/12/4.234.table | 21 + .../definitions/grib2/tables/12/4.236.table | 8 + eccodes/definitions/grib2/tables/12/4.3.table | 16 + eccodes/definitions/grib2/tables/12/4.4.table | 17 + eccodes/definitions/grib2/tables/12/4.5.table | 49 + eccodes/definitions/grib2/tables/12/4.6.table | 9 + eccodes/definitions/grib2/tables/12/4.7.table | 14 + eccodes/definitions/grib2/tables/12/4.8.table | 6 + eccodes/definitions/grib2/tables/12/4.9.table | 9 + .../definitions/grib2/tables/12/4.91.table | 16 + eccodes/definitions/grib2/tables/12/5.0.table | 24 + eccodes/definitions/grib2/tables/12/5.1.table | 6 + eccodes/definitions/grib2/tables/12/5.2.table | 8 + eccodes/definitions/grib2/tables/12/5.3.table | 7 + eccodes/definitions/grib2/tables/12/5.4.table | 6 + .../definitions/grib2/tables/12/5.40.table | 5 + .../definitions/grib2/tables/12/5.40000.table | 5 + eccodes/definitions/grib2/tables/12/5.5.table | 7 + .../definitions/grib2/tables/12/5.50002.table | 19 + eccodes/definitions/grib2/tables/12/5.6.table | 7 + eccodes/definitions/grib2/tables/12/5.7.table | 7 + eccodes/definitions/grib2/tables/12/5.8.table | 3 + eccodes/definitions/grib2/tables/12/5.9.table | 4 + eccodes/definitions/grib2/tables/12/6.0.table | 6 + .../grib2/tables/12/stepType.table | 2 + eccodes/definitions/grib2/tables/13/0.0.table | 10 + eccodes/definitions/grib2/tables/13/1.0.table | 18 + eccodes/definitions/grib2/tables/13/1.1.table | 4 + eccodes/definitions/grib2/tables/13/1.2.table | 8 + eccodes/definitions/grib2/tables/13/1.3.table | 12 + eccodes/definitions/grib2/tables/13/1.4.table | 13 + eccodes/definitions/grib2/tables/13/1.5.table | 7 + eccodes/definitions/grib2/tables/13/1.6.table | 8 + eccodes/definitions/grib2/tables/13/3.0.table | 6 + eccodes/definitions/grib2/tables/13/3.1.table | 47 + .../definitions/grib2/tables/13/3.10.table | 8 + .../definitions/grib2/tables/13/3.11.table | 7 + .../definitions/grib2/tables/13/3.15.table | 23 + eccodes/definitions/grib2/tables/13/3.2.table | 14 + .../definitions/grib2/tables/13/3.20.table | 6 + .../definitions/grib2/tables/13/3.21.table | 8 + eccodes/definitions/grib2/tables/13/3.3.table | 9 + eccodes/definitions/grib2/tables/13/3.4.table | 10 + eccodes/definitions/grib2/tables/13/3.5.table | 5 + eccodes/definitions/grib2/tables/13/3.6.table | 2 + eccodes/definitions/grib2/tables/13/3.7.table | 5 + eccodes/definitions/grib2/tables/13/3.8.table | 7 + eccodes/definitions/grib2/tables/13/3.9.table | 4 + eccodes/definitions/grib2/tables/13/4.0.table | 62 + .../definitions/grib2/tables/13/4.1.0.table | 27 + .../definitions/grib2/tables/13/4.1.1.table | 7 + .../definitions/grib2/tables/13/4.1.10.table | 10 + .../definitions/grib2/tables/13/4.1.192.table | 4 + .../definitions/grib2/tables/13/4.1.2.table | 9 + .../definitions/grib2/tables/13/4.1.3.table | 6 + .../definitions/grib2/tables/13/4.10.table | 16 + .../definitions/grib2/tables/13/4.11.table | 10 + .../definitions/grib2/tables/13/4.12.table | 7 + .../definitions/grib2/tables/13/4.13.table | 6 + .../definitions/grib2/tables/13/4.14.table | 6 + .../definitions/grib2/tables/13/4.15.table | 11 + .../definitions/grib2/tables/13/4.192.table | 4 + .../definitions/grib2/tables/13/4.2.0.0.table | 26 + .../definitions/grib2/tables/13/4.2.0.1.table | 95 + .../grib2/tables/13/4.2.0.13.table | 5 + .../grib2/tables/13/4.2.0.14.table | 7 + .../grib2/tables/13/4.2.0.15.table | 19 + .../grib2/tables/13/4.2.0.16.table | 10 + .../grib2/tables/13/4.2.0.17.table | 2 + .../grib2/tables/13/4.2.0.18.table | 18 + .../grib2/tables/13/4.2.0.19.table | 32 + .../grib2/tables/13/4.2.0.190.table | 5 + .../grib2/tables/13/4.2.0.191.table | 8 + .../definitions/grib2/tables/13/4.2.0.2.table | 43 + .../grib2/tables/13/4.2.0.20.table | 42 + .../definitions/grib2/tables/13/4.2.0.3.table | 31 + .../definitions/grib2/tables/13/4.2.0.4.table | 20 + .../definitions/grib2/tables/13/4.2.0.5.table | 11 + .../definitions/grib2/tables/13/4.2.0.6.table | 40 + .../definitions/grib2/tables/13/4.2.0.7.table | 20 + .../definitions/grib2/tables/13/4.2.1.0.table | 12 + .../definitions/grib2/tables/13/4.2.1.1.table | 7 + .../definitions/grib2/tables/13/4.2.1.2.table | 14 + .../grib2/tables/13/4.2.10.0.table | 50 + .../grib2/tables/13/4.2.10.1.table | 8 + .../grib2/tables/13/4.2.10.191.table | 8 + .../grib2/tables/13/4.2.10.2.table | 17 + .../grib2/tables/13/4.2.10.3.table | 6 + .../grib2/tables/13/4.2.10.4.table | 18 + .../definitions/grib2/tables/13/4.2.2.0.table | 39 + .../definitions/grib2/tables/13/4.2.2.3.table | 27 + .../definitions/grib2/tables/13/4.2.2.4.table | 9 + .../definitions/grib2/tables/13/4.2.3.0.table | 14 + .../definitions/grib2/tables/13/4.2.3.1.table | 28 + .../definitions/grib2/tables/13/4.201.table | 15 + .../definitions/grib2/tables/13/4.202.table | 4 + .../definitions/grib2/tables/13/4.203.table | 26 + .../definitions/grib2/tables/13/4.204.table | 9 + .../definitions/grib2/tables/13/4.205.table | 6 + .../definitions/grib2/tables/13/4.206.table | 6 + .../definitions/grib2/tables/13/4.207.table | 10 + .../definitions/grib2/tables/13/4.208.table | 9 + .../definitions/grib2/tables/13/4.209.table | 9 + .../definitions/grib2/tables/13/4.210.table | 6 + .../definitions/grib2/tables/13/4.211.table | 7 + .../definitions/grib2/tables/13/4.212.table | 18 + .../definitions/grib2/tables/13/4.213.table | 16 + .../definitions/grib2/tables/13/4.215.table | 9 + .../definitions/grib2/tables/13/4.216.table | 5 + .../definitions/grib2/tables/13/4.217.table | 8 + .../definitions/grib2/tables/13/4.218.table | 38 + .../definitions/grib2/tables/13/4.219.table | 8 + .../definitions/grib2/tables/13/4.220.table | 6 + .../definitions/grib2/tables/13/4.221.table | 6 + .../definitions/grib2/tables/13/4.222.table | 6 + .../definitions/grib2/tables/13/4.223.table | 5 + .../definitions/grib2/tables/13/4.224.table | 18 + .../definitions/grib2/tables/13/4.225.table | 2 + .../definitions/grib2/tables/13/4.227.table | 9 + .../definitions/grib2/tables/13/4.230.table | 413 + .../definitions/grib2/tables/13/4.233.table | 3 + .../definitions/grib2/tables/13/4.234.table | 21 + .../definitions/grib2/tables/13/4.236.table | 8 + eccodes/definitions/grib2/tables/13/4.3.table | 18 + eccodes/definitions/grib2/tables/13/4.4.table | 17 + eccodes/definitions/grib2/tables/13/4.5.table | 50 + eccodes/definitions/grib2/tables/13/4.6.table | 9 + eccodes/definitions/grib2/tables/13/4.7.table | 14 + eccodes/definitions/grib2/tables/13/4.8.table | 6 + eccodes/definitions/grib2/tables/13/4.9.table | 9 + .../definitions/grib2/tables/13/4.91.table | 16 + eccodes/definitions/grib2/tables/13/5.0.table | 24 + eccodes/definitions/grib2/tables/13/5.1.table | 6 + eccodes/definitions/grib2/tables/13/5.2.table | 8 + eccodes/definitions/grib2/tables/13/5.3.table | 7 + eccodes/definitions/grib2/tables/13/5.4.table | 6 + .../definitions/grib2/tables/13/5.40.table | 5 + .../definitions/grib2/tables/13/5.40000.table | 5 + eccodes/definitions/grib2/tables/13/5.5.table | 7 + .../definitions/grib2/tables/13/5.50002.table | 19 + eccodes/definitions/grib2/tables/13/5.6.table | 7 + eccodes/definitions/grib2/tables/13/5.7.table | 7 + eccodes/definitions/grib2/tables/13/5.8.table | 3 + eccodes/definitions/grib2/tables/13/5.9.table | 4 + eccodes/definitions/grib2/tables/13/6.0.table | 6 + .../grib2/tables/13/stepType.table | 2 + eccodes/definitions/grib2/tables/14/0.0.table | 10 + eccodes/definitions/grib2/tables/14/1.0.table | 19 + eccodes/definitions/grib2/tables/14/1.1.table | 4 + eccodes/definitions/grib2/tables/14/1.2.table | 8 + eccodes/definitions/grib2/tables/14/1.3.table | 14 + eccodes/definitions/grib2/tables/14/1.4.table | 13 + eccodes/definitions/grib2/tables/14/1.5.table | 7 + eccodes/definitions/grib2/tables/14/1.6.table | 8 + eccodes/definitions/grib2/tables/14/3.0.table | 6 + eccodes/definitions/grib2/tables/14/3.1.table | 47 + .../definitions/grib2/tables/14/3.10.table | 8 + .../definitions/grib2/tables/14/3.11.table | 7 + .../definitions/grib2/tables/14/3.15.table | 23 + eccodes/definitions/grib2/tables/14/3.2.table | 14 + .../definitions/grib2/tables/14/3.20.table | 6 + .../definitions/grib2/tables/14/3.21.table | 8 + eccodes/definitions/grib2/tables/14/3.3.table | 9 + eccodes/definitions/grib2/tables/14/3.4.table | 17 + eccodes/definitions/grib2/tables/14/3.5.table | 5 + eccodes/definitions/grib2/tables/14/3.6.table | 2 + eccodes/definitions/grib2/tables/14/3.7.table | 5 + eccodes/definitions/grib2/tables/14/3.8.table | 7 + eccodes/definitions/grib2/tables/14/3.9.table | 4 + eccodes/definitions/grib2/tables/14/4.0.table | 62 + .../definitions/grib2/tables/14/4.1.0.table | 27 + .../definitions/grib2/tables/14/4.1.1.table | 7 + .../definitions/grib2/tables/14/4.1.10.table | 10 + .../definitions/grib2/tables/14/4.1.192.table | 4 + .../definitions/grib2/tables/14/4.1.2.table | 9 + .../definitions/grib2/tables/14/4.1.3.table | 6 + .../definitions/grib2/tables/14/4.10.table | 16 + .../definitions/grib2/tables/14/4.11.table | 10 + .../definitions/grib2/tables/14/4.12.table | 7 + .../definitions/grib2/tables/14/4.13.table | 6 + .../definitions/grib2/tables/14/4.14.table | 6 + .../definitions/grib2/tables/14/4.15.table | 11 + .../definitions/grib2/tables/14/4.192.table | 4 + .../definitions/grib2/tables/14/4.2.0.0.table | 26 + .../definitions/grib2/tables/14/4.2.0.1.table | 97 + .../grib2/tables/14/4.2.0.13.table | 5 + .../grib2/tables/14/4.2.0.14.table | 7 + .../grib2/tables/14/4.2.0.15.table | 19 + .../grib2/tables/14/4.2.0.16.table | 10 + .../grib2/tables/14/4.2.0.17.table | 2 + .../grib2/tables/14/4.2.0.18.table | 18 + .../grib2/tables/14/4.2.0.19.table | 32 + .../grib2/tables/14/4.2.0.190.table | 5 + .../grib2/tables/14/4.2.0.191.table | 8 + .../definitions/grib2/tables/14/4.2.0.2.table | 43 + .../grib2/tables/14/4.2.0.20.table | 42 + .../definitions/grib2/tables/14/4.2.0.3.table | 31 + .../definitions/grib2/tables/14/4.2.0.4.table | 20 + .../definitions/grib2/tables/14/4.2.0.5.table | 11 + .../definitions/grib2/tables/14/4.2.0.6.table | 42 + .../definitions/grib2/tables/14/4.2.0.7.table | 20 + .../definitions/grib2/tables/14/4.2.1.0.table | 12 + .../definitions/grib2/tables/14/4.2.1.1.table | 7 + .../definitions/grib2/tables/14/4.2.1.2.table | 14 + .../grib2/tables/14/4.2.10.0.table | 50 + .../grib2/tables/14/4.2.10.1.table | 8 + .../grib2/tables/14/4.2.10.191.table | 8 + .../grib2/tables/14/4.2.10.2.table | 17 + .../grib2/tables/14/4.2.10.3.table | 6 + .../grib2/tables/14/4.2.10.4.table | 18 + .../definitions/grib2/tables/14/4.2.2.0.table | 42 + .../definitions/grib2/tables/14/4.2.2.3.table | 27 + .../definitions/grib2/tables/14/4.2.2.4.table | 9 + .../definitions/grib2/tables/14/4.2.3.0.table | 14 + .../definitions/grib2/tables/14/4.2.3.1.table | 28 + .../definitions/grib2/tables/14/4.201.table | 15 + .../definitions/grib2/tables/14/4.202.table | 4 + .../definitions/grib2/tables/14/4.203.table | 26 + .../definitions/grib2/tables/14/4.204.table | 9 + .../definitions/grib2/tables/14/4.205.table | 6 + .../definitions/grib2/tables/14/4.206.table | 6 + .../definitions/grib2/tables/14/4.207.table | 10 + .../definitions/grib2/tables/14/4.208.table | 9 + .../definitions/grib2/tables/14/4.209.table | 9 + .../definitions/grib2/tables/14/4.210.table | 6 + .../definitions/grib2/tables/14/4.211.table | 7 + .../definitions/grib2/tables/14/4.212.table | 18 + .../definitions/grib2/tables/14/4.213.table | 16 + .../definitions/grib2/tables/14/4.215.table | 9 + .../definitions/grib2/tables/14/4.216.table | 5 + .../definitions/grib2/tables/14/4.217.table | 8 + .../definitions/grib2/tables/14/4.218.table | 38 + .../definitions/grib2/tables/14/4.219.table | 8 + .../definitions/grib2/tables/14/4.220.table | 6 + .../definitions/grib2/tables/14/4.221.table | 6 + .../definitions/grib2/tables/14/4.222.table | 6 + .../definitions/grib2/tables/14/4.223.table | 5 + .../definitions/grib2/tables/14/4.224.table | 18 + .../definitions/grib2/tables/14/4.225.table | 2 + .../definitions/grib2/tables/14/4.227.table | 9 + .../definitions/grib2/tables/14/4.230.table | 412 + .../definitions/grib2/tables/14/4.233.table | 3 + .../definitions/grib2/tables/14/4.234.table | 21 + .../definitions/grib2/tables/14/4.236.table | 8 + .../definitions/grib2/tables/14/4.241.table | 9 + .../definitions/grib2/tables/14/4.242.table | 7 + .../definitions/grib2/tables/14/4.243.table | 43 + eccodes/definitions/grib2/tables/14/4.3.table | 20 + eccodes/definitions/grib2/tables/14/4.4.table | 17 + eccodes/definitions/grib2/tables/14/4.5.table | 50 + eccodes/definitions/grib2/tables/14/4.6.table | 9 + eccodes/definitions/grib2/tables/14/4.7.table | 14 + eccodes/definitions/grib2/tables/14/4.8.table | 6 + eccodes/definitions/grib2/tables/14/4.9.table | 9 + .../definitions/grib2/tables/14/4.91.table | 16 + eccodes/definitions/grib2/tables/14/5.0.table | 24 + eccodes/definitions/grib2/tables/14/5.1.table | 6 + eccodes/definitions/grib2/tables/14/5.2.table | 8 + eccodes/definitions/grib2/tables/14/5.3.table | 7 + eccodes/definitions/grib2/tables/14/5.4.table | 6 + .../definitions/grib2/tables/14/5.40.table | 5 + .../definitions/grib2/tables/14/5.40000.table | 5 + eccodes/definitions/grib2/tables/14/5.5.table | 7 + .../definitions/grib2/tables/14/5.50002.table | 19 + eccodes/definitions/grib2/tables/14/5.6.table | 7 + eccodes/definitions/grib2/tables/14/5.7.table | 7 + eccodes/definitions/grib2/tables/14/5.8.table | 3 + eccodes/definitions/grib2/tables/14/5.9.table | 4 + eccodes/definitions/grib2/tables/14/6.0.table | 6 + .../grib2/tables/14/stepType.table | 2 + eccodes/definitions/grib2/tables/15/0.0.table | 10 + eccodes/definitions/grib2/tables/15/1.0.table | 20 + eccodes/definitions/grib2/tables/15/1.1.table | 4 + eccodes/definitions/grib2/tables/15/1.2.table | 8 + eccodes/definitions/grib2/tables/15/1.3.table | 14 + eccodes/definitions/grib2/tables/15/1.4.table | 13 + eccodes/definitions/grib2/tables/15/1.5.table | 7 + eccodes/definitions/grib2/tables/15/1.6.table | 8 + eccodes/definitions/grib2/tables/15/3.0.table | 6 + eccodes/definitions/grib2/tables/15/3.1.table | 47 + .../definitions/grib2/tables/15/3.10.table | 8 + .../definitions/grib2/tables/15/3.11.table | 7 + .../definitions/grib2/tables/15/3.15.table | 23 + eccodes/definitions/grib2/tables/15/3.2.table | 14 + .../definitions/grib2/tables/15/3.20.table | 6 + .../definitions/grib2/tables/15/3.21.table | 8 + eccodes/definitions/grib2/tables/15/3.3.table | 9 + eccodes/definitions/grib2/tables/15/3.4.table | 17 + eccodes/definitions/grib2/tables/15/3.5.table | 5 + eccodes/definitions/grib2/tables/15/3.6.table | 2 + eccodes/definitions/grib2/tables/15/3.7.table | 5 + eccodes/definitions/grib2/tables/15/3.8.table | 7 + eccodes/definitions/grib2/tables/15/3.9.table | 4 + eccodes/definitions/grib2/tables/15/4.0.table | 64 + .../definitions/grib2/tables/15/4.1.0.table | 27 + .../definitions/grib2/tables/15/4.1.1.table | 7 + .../definitions/grib2/tables/15/4.1.10.table | 10 + .../definitions/grib2/tables/15/4.1.192.table | 4 + .../definitions/grib2/tables/15/4.1.2.table | 9 + .../definitions/grib2/tables/15/4.1.3.table | 6 + .../definitions/grib2/tables/15/4.10.table | 16 + .../definitions/grib2/tables/15/4.11.table | 10 + .../definitions/grib2/tables/15/4.12.table | 7 + .../definitions/grib2/tables/15/4.13.table | 6 + .../definitions/grib2/tables/15/4.14.table | 6 + .../definitions/grib2/tables/15/4.15.table | 11 + .../definitions/grib2/tables/15/4.192.table | 4 + .../definitions/grib2/tables/15/4.2.0.0.table | 26 + .../definitions/grib2/tables/15/4.2.0.1.table | 110 + .../grib2/tables/15/4.2.0.13.table | 5 + .../grib2/tables/15/4.2.0.14.table | 7 + .../grib2/tables/15/4.2.0.15.table | 21 + .../grib2/tables/15/4.2.0.16.table | 10 + .../grib2/tables/15/4.2.0.17.table | 2 + .../grib2/tables/15/4.2.0.18.table | 18 + .../grib2/tables/15/4.2.0.19.table | 32 + .../grib2/tables/15/4.2.0.190.table | 5 + .../grib2/tables/15/4.2.0.191.table | 8 + .../definitions/grib2/tables/15/4.2.0.2.table | 43 + .../grib2/tables/15/4.2.0.20.table | 42 + .../definitions/grib2/tables/15/4.2.0.3.table | 31 + .../definitions/grib2/tables/15/4.2.0.4.table | 20 + .../definitions/grib2/tables/15/4.2.0.5.table | 12 + .../definitions/grib2/tables/15/4.2.0.6.table | 44 + .../definitions/grib2/tables/15/4.2.0.7.table | 20 + .../definitions/grib2/tables/15/4.2.1.0.table | 12 + .../definitions/grib2/tables/15/4.2.1.1.table | 7 + .../definitions/grib2/tables/15/4.2.1.2.table | 14 + .../grib2/tables/15/4.2.10.0.table | 50 + .../grib2/tables/15/4.2.10.1.table | 8 + .../grib2/tables/15/4.2.10.191.table | 8 + .../grib2/tables/15/4.2.10.2.table | 17 + .../grib2/tables/15/4.2.10.3.table | 6 + .../grib2/tables/15/4.2.10.4.table | 18 + .../definitions/grib2/tables/15/4.2.2.0.table | 43 + .../definitions/grib2/tables/15/4.2.2.3.table | 28 + .../definitions/grib2/tables/15/4.2.2.4.table | 9 + .../definitions/grib2/tables/15/4.2.2.5.table | 2 + .../definitions/grib2/tables/15/4.2.3.0.table | 14 + .../definitions/grib2/tables/15/4.2.3.1.table | 28 + .../definitions/grib2/tables/15/4.201.table | 15 + .../definitions/grib2/tables/15/4.202.table | 4 + .../definitions/grib2/tables/15/4.203.table | 26 + .../definitions/grib2/tables/15/4.204.table | 9 + .../definitions/grib2/tables/15/4.205.table | 6 + .../definitions/grib2/tables/15/4.206.table | 6 + .../definitions/grib2/tables/15/4.207.table | 10 + .../definitions/grib2/tables/15/4.208.table | 9 + .../definitions/grib2/tables/15/4.209.table | 9 + .../definitions/grib2/tables/15/4.210.table | 6 + .../definitions/grib2/tables/15/4.211.table | 7 + .../definitions/grib2/tables/15/4.212.table | 18 + .../definitions/grib2/tables/15/4.213.table | 16 + .../definitions/grib2/tables/15/4.215.table | 9 + .../definitions/grib2/tables/15/4.216.table | 5 + .../definitions/grib2/tables/15/4.217.table | 8 + .../definitions/grib2/tables/15/4.218.table | 38 + .../definitions/grib2/tables/15/4.219.table | 8 + .../definitions/grib2/tables/15/4.220.table | 6 + .../definitions/grib2/tables/15/4.221.table | 6 + .../definitions/grib2/tables/15/4.222.table | 6 + .../definitions/grib2/tables/15/4.223.table | 5 + .../definitions/grib2/tables/15/4.224.table | 18 + .../definitions/grib2/tables/15/4.225.table | 2 + .../definitions/grib2/tables/15/4.227.table | 9 + .../definitions/grib2/tables/15/4.230.table | 414 + .../definitions/grib2/tables/15/4.233.table | 3 + .../definitions/grib2/tables/15/4.234.table | 21 + .../definitions/grib2/tables/15/4.236.table | 8 + .../definitions/grib2/tables/15/4.240.table | 12 + .../definitions/grib2/tables/15/4.241.table | 9 + .../definitions/grib2/tables/15/4.242.table | 7 + .../definitions/grib2/tables/15/4.243.table | 43 + eccodes/definitions/grib2/tables/15/4.3.table | 20 + eccodes/definitions/grib2/tables/15/4.4.table | 17 + eccodes/definitions/grib2/tables/15/4.5.table | 63 + eccodes/definitions/grib2/tables/15/4.6.table | 9 + eccodes/definitions/grib2/tables/15/4.7.table | 14 + eccodes/definitions/grib2/tables/15/4.8.table | 6 + eccodes/definitions/grib2/tables/15/4.9.table | 9 + .../definitions/grib2/tables/15/4.91.table | 16 + eccodes/definitions/grib2/tables/15/5.0.table | 24 + eccodes/definitions/grib2/tables/15/5.1.table | 6 + eccodes/definitions/grib2/tables/15/5.2.table | 8 + eccodes/definitions/grib2/tables/15/5.3.table | 7 + eccodes/definitions/grib2/tables/15/5.4.table | 6 + .../definitions/grib2/tables/15/5.40.table | 5 + .../definitions/grib2/tables/15/5.40000.table | 5 + eccodes/definitions/grib2/tables/15/5.5.table | 7 + .../definitions/grib2/tables/15/5.50002.table | 19 + eccodes/definitions/grib2/tables/15/5.6.table | 7 + eccodes/definitions/grib2/tables/15/5.7.table | 7 + eccodes/definitions/grib2/tables/15/6.0.table | 6 + .../grib2/tables/15/stepType.table | 2 + eccodes/definitions/grib2/tables/16/0.0.table | 10 + eccodes/definitions/grib2/tables/16/1.0.table | 21 + eccodes/definitions/grib2/tables/16/1.1.table | 4 + eccodes/definitions/grib2/tables/16/1.2.table | 8 + eccodes/definitions/grib2/tables/16/1.3.table | 14 + eccodes/definitions/grib2/tables/16/1.4.table | 13 + eccodes/definitions/grib2/tables/16/1.5.table | 7 + eccodes/definitions/grib2/tables/16/1.6.table | 8 + eccodes/definitions/grib2/tables/16/3.0.table | 6 + eccodes/definitions/grib2/tables/16/3.1.table | 47 + .../definitions/grib2/tables/16/3.10.table | 8 + .../definitions/grib2/tables/16/3.11.table | 7 + .../definitions/grib2/tables/16/3.15.table | 23 + eccodes/definitions/grib2/tables/16/3.2.table | 14 + .../definitions/grib2/tables/16/3.20.table | 6 + .../definitions/grib2/tables/16/3.21.table | 8 + eccodes/definitions/grib2/tables/16/3.3.table | 9 + eccodes/definitions/grib2/tables/16/3.4.table | 17 + eccodes/definitions/grib2/tables/16/3.5.table | 5 + eccodes/definitions/grib2/tables/16/3.6.table | 2 + eccodes/definitions/grib2/tables/16/3.7.table | 5 + eccodes/definitions/grib2/tables/16/3.8.table | 7 + eccodes/definitions/grib2/tables/16/3.9.table | 4 + eccodes/definitions/grib2/tables/16/4.0.table | 65 + .../definitions/grib2/tables/16/4.1.0.table | 27 + .../definitions/grib2/tables/16/4.1.1.table | 7 + .../definitions/grib2/tables/16/4.1.10.table | 10 + .../definitions/grib2/tables/16/4.1.192.table | 4 + .../definitions/grib2/tables/16/4.1.2.table | 9 + .../definitions/grib2/tables/16/4.1.3.table | 11 + .../definitions/grib2/tables/16/4.10.table | 16 + .../definitions/grib2/tables/16/4.11.table | 10 + .../definitions/grib2/tables/16/4.12.table | 7 + .../definitions/grib2/tables/16/4.13.table | 6 + .../definitions/grib2/tables/16/4.14.table | 6 + .../definitions/grib2/tables/16/4.15.table | 11 + .../definitions/grib2/tables/16/4.192.table | 4 + .../definitions/grib2/tables/16/4.2.0.0.table | 32 + .../definitions/grib2/tables/16/4.2.0.1.table | 111 + .../grib2/tables/16/4.2.0.13.table | 5 + .../grib2/tables/16/4.2.0.14.table | 7 + .../grib2/tables/16/4.2.0.15.table | 21 + .../grib2/tables/16/4.2.0.16.table | 10 + .../grib2/tables/16/4.2.0.17.table | 2 + .../grib2/tables/16/4.2.0.18.table | 18 + .../grib2/tables/16/4.2.0.19.table | 33 + .../grib2/tables/16/4.2.0.190.table | 5 + .../grib2/tables/16/4.2.0.191.table | 8 + .../definitions/grib2/tables/16/4.2.0.2.table | 49 + .../grib2/tables/16/4.2.0.20.table | 42 + .../definitions/grib2/tables/16/4.2.0.3.table | 35 + .../definitions/grib2/tables/16/4.2.0.4.table | 22 + .../definitions/grib2/tables/16/4.2.0.5.table | 12 + .../definitions/grib2/tables/16/4.2.0.6.table | 49 + .../definitions/grib2/tables/16/4.2.0.7.table | 23 + .../definitions/grib2/tables/16/4.2.1.0.table | 20 + .../definitions/grib2/tables/16/4.2.1.1.table | 7 + .../definitions/grib2/tables/16/4.2.1.2.table | 15 + .../grib2/tables/16/4.2.10.0.table | 50 + .../grib2/tables/16/4.2.10.1.table | 8 + .../grib2/tables/16/4.2.10.191.table | 8 + .../grib2/tables/16/4.2.10.2.table | 17 + .../grib2/tables/16/4.2.10.3.table | 6 + .../grib2/tables/16/4.2.10.4.table | 18 + .../definitions/grib2/tables/16/4.2.2.0.table | 43 + .../definitions/grib2/tables/16/4.2.2.3.table | 30 + .../definitions/grib2/tables/16/4.2.2.4.table | 16 + .../definitions/grib2/tables/16/4.2.2.5.table | 2 + .../definitions/grib2/tables/16/4.2.3.0.table | 14 + .../definitions/grib2/tables/16/4.2.3.1.table | 32 + .../definitions/grib2/tables/16/4.2.3.2.table | 13 + .../definitions/grib2/tables/16/4.2.3.3.table | 4 + .../definitions/grib2/tables/16/4.2.3.4.table | 10 + .../definitions/grib2/tables/16/4.2.3.5.table | 7 + .../definitions/grib2/tables/16/4.2.3.6.table | 7 + .../definitions/grib2/tables/16/4.201.table | 15 + .../definitions/grib2/tables/16/4.202.table | 4 + .../definitions/grib2/tables/16/4.203.table | 26 + .../definitions/grib2/tables/16/4.204.table | 9 + .../definitions/grib2/tables/16/4.205.table | 6 + .../definitions/grib2/tables/16/4.206.table | 6 + .../definitions/grib2/tables/16/4.207.table | 10 + .../definitions/grib2/tables/16/4.208.table | 9 + .../definitions/grib2/tables/16/4.209.table | 9 + .../definitions/grib2/tables/16/4.210.table | 6 + .../definitions/grib2/tables/16/4.211.table | 7 + .../definitions/grib2/tables/16/4.212.table | 18 + .../definitions/grib2/tables/16/4.213.table | 16 + .../definitions/grib2/tables/16/4.215.table | 9 + .../definitions/grib2/tables/16/4.216.table | 5 + .../definitions/grib2/tables/16/4.217.table | 8 + .../definitions/grib2/tables/16/4.218.table | 44 + .../definitions/grib2/tables/16/4.219.table | 8 + .../definitions/grib2/tables/16/4.220.table | 6 + .../definitions/grib2/tables/16/4.221.table | 6 + .../definitions/grib2/tables/16/4.222.table | 6 + .../definitions/grib2/tables/16/4.223.table | 5 + .../definitions/grib2/tables/16/4.224.table | 18 + .../definitions/grib2/tables/16/4.225.table | 2 + .../definitions/grib2/tables/16/4.227.table | 9 + .../definitions/grib2/tables/16/4.230.table | 414 + .../definitions/grib2/tables/16/4.233.table | 3 + .../definitions/grib2/tables/16/4.234.table | 21 + .../definitions/grib2/tables/16/4.236.table | 8 + .../definitions/grib2/tables/16/4.240.table | 12 + .../definitions/grib2/tables/16/4.241.table | 9 + .../definitions/grib2/tables/16/4.242.table | 7 + .../definitions/grib2/tables/16/4.243.table | 43 + eccodes/definitions/grib2/tables/16/4.3.table | 22 + eccodes/definitions/grib2/tables/16/4.4.table | 17 + eccodes/definitions/grib2/tables/16/4.5.table | 62 + eccodes/definitions/grib2/tables/16/4.6.table | 9 + eccodes/definitions/grib2/tables/16/4.7.table | 14 + eccodes/definitions/grib2/tables/16/4.8.table | 6 + eccodes/definitions/grib2/tables/16/4.9.table | 9 + .../definitions/grib2/tables/16/4.91.table | 16 + eccodes/definitions/grib2/tables/16/5.0.table | 24 + eccodes/definitions/grib2/tables/16/5.1.table | 6 + eccodes/definitions/grib2/tables/16/5.2.table | 8 + eccodes/definitions/grib2/tables/16/5.3.table | 7 + eccodes/definitions/grib2/tables/16/5.4.table | 6 + .../definitions/grib2/tables/16/5.40.table | 5 + .../definitions/grib2/tables/16/5.40000.table | 5 + eccodes/definitions/grib2/tables/16/5.5.table | 7 + .../definitions/grib2/tables/16/5.50002.table | 19 + eccodes/definitions/grib2/tables/16/5.6.table | 7 + eccodes/definitions/grib2/tables/16/5.7.table | 7 + eccodes/definitions/grib2/tables/16/6.0.table | 6 + .../grib2/tables/16/stepType.table | 2 + eccodes/definitions/grib2/tables/17/0.0.table | 10 + eccodes/definitions/grib2/tables/17/1.0.table | 22 + eccodes/definitions/grib2/tables/17/1.1.table | 4 + eccodes/definitions/grib2/tables/17/1.2.table | 8 + eccodes/definitions/grib2/tables/17/1.3.table | 14 + eccodes/definitions/grib2/tables/17/1.4.table | 13 + eccodes/definitions/grib2/tables/17/1.5.table | 7 + eccodes/definitions/grib2/tables/17/1.6.table | 8 + eccodes/definitions/grib2/tables/17/3.0.table | 6 + eccodes/definitions/grib2/tables/17/3.1.table | 47 + .../definitions/grib2/tables/17/3.10.table | 8 + .../definitions/grib2/tables/17/3.11.table | 7 + .../definitions/grib2/tables/17/3.15.table | 23 + eccodes/definitions/grib2/tables/17/3.2.table | 14 + .../definitions/grib2/tables/17/3.20.table | 6 + .../definitions/grib2/tables/17/3.21.table | 8 + eccodes/definitions/grib2/tables/17/3.3.table | 9 + eccodes/definitions/grib2/tables/17/3.4.table | 17 + eccodes/definitions/grib2/tables/17/3.5.table | 5 + eccodes/definitions/grib2/tables/17/3.6.table | 2 + eccodes/definitions/grib2/tables/17/3.7.table | 5 + eccodes/definitions/grib2/tables/17/3.8.table | 7 + eccodes/definitions/grib2/tables/17/3.9.table | 4 + eccodes/definitions/grib2/tables/17/4.0.table | 65 + .../definitions/grib2/tables/17/4.1.0.table | 27 + .../definitions/grib2/tables/17/4.1.1.table | 7 + .../definitions/grib2/tables/17/4.1.10.table | 10 + .../definitions/grib2/tables/17/4.1.192.table | 4 + .../definitions/grib2/tables/17/4.1.2.table | 9 + .../definitions/grib2/tables/17/4.1.3.table | 11 + .../definitions/grib2/tables/17/4.10.table | 16 + .../definitions/grib2/tables/17/4.11.table | 10 + .../definitions/grib2/tables/17/4.12.table | 7 + .../definitions/grib2/tables/17/4.13.table | 6 + .../definitions/grib2/tables/17/4.14.table | 6 + .../definitions/grib2/tables/17/4.15.table | 11 + .../definitions/grib2/tables/17/4.192.table | 4 + .../definitions/grib2/tables/17/4.2.0.0.table | 32 + .../definitions/grib2/tables/17/4.2.0.1.table | 120 + .../grib2/tables/17/4.2.0.13.table | 5 + .../grib2/tables/17/4.2.0.14.table | 7 + .../grib2/tables/17/4.2.0.15.table | 21 + .../grib2/tables/17/4.2.0.16.table | 10 + .../grib2/tables/17/4.2.0.17.table | 3 + .../grib2/tables/17/4.2.0.18.table | 21 + .../grib2/tables/17/4.2.0.19.table | 36 + .../grib2/tables/17/4.2.0.190.table | 5 + .../grib2/tables/17/4.2.0.191.table | 8 + .../definitions/grib2/tables/17/4.2.0.2.table | 49 + .../grib2/tables/17/4.2.0.20.table | 46 + .../definitions/grib2/tables/17/4.2.0.3.table | 35 + .../definitions/grib2/tables/17/4.2.0.4.table | 24 + .../definitions/grib2/tables/17/4.2.0.5.table | 13 + .../definitions/grib2/tables/17/4.2.0.6.table | 49 + .../definitions/grib2/tables/17/4.2.0.7.table | 23 + .../definitions/grib2/tables/17/4.2.1.0.table | 21 + .../definitions/grib2/tables/17/4.2.1.1.table | 7 + .../definitions/grib2/tables/17/4.2.1.2.table | 15 + .../grib2/tables/17/4.2.10.0.table | 50 + .../grib2/tables/17/4.2.10.1.table | 8 + .../grib2/tables/17/4.2.10.191.table | 8 + .../grib2/tables/17/4.2.10.2.table | 17 + .../grib2/tables/17/4.2.10.3.table | 6 + .../grib2/tables/17/4.2.10.4.table | 18 + .../definitions/grib2/tables/17/4.2.2.0.table | 43 + .../definitions/grib2/tables/17/4.2.2.3.table | 32 + .../definitions/grib2/tables/17/4.2.2.4.table | 16 + .../definitions/grib2/tables/17/4.2.2.5.table | 2 + .../definitions/grib2/tables/17/4.2.3.0.table | 14 + .../definitions/grib2/tables/17/4.2.3.1.table | 32 + .../definitions/grib2/tables/17/4.2.3.2.table | 13 + .../definitions/grib2/tables/17/4.2.3.3.table | 4 + .../definitions/grib2/tables/17/4.2.3.4.table | 10 + .../definitions/grib2/tables/17/4.2.3.5.table | 7 + .../definitions/grib2/tables/17/4.2.3.6.table | 7 + .../definitions/grib2/tables/17/4.201.table | 15 + .../definitions/grib2/tables/17/4.202.table | 4 + .../definitions/grib2/tables/17/4.203.table | 26 + .../definitions/grib2/tables/17/4.204.table | 9 + .../definitions/grib2/tables/17/4.205.table | 6 + .../definitions/grib2/tables/17/4.206.table | 6 + .../definitions/grib2/tables/17/4.207.table | 10 + .../definitions/grib2/tables/17/4.208.table | 9 + .../definitions/grib2/tables/17/4.209.table | 9 + .../definitions/grib2/tables/17/4.210.table | 6 + .../definitions/grib2/tables/17/4.211.table | 7 + .../definitions/grib2/tables/17/4.212.table | 18 + .../definitions/grib2/tables/17/4.213.table | 16 + .../definitions/grib2/tables/17/4.215.table | 9 + .../definitions/grib2/tables/17/4.216.table | 5 + .../definitions/grib2/tables/17/4.217.table | 8 + .../definitions/grib2/tables/17/4.218.table | 44 + .../definitions/grib2/tables/17/4.219.table | 8 + .../definitions/grib2/tables/17/4.220.table | 6 + .../definitions/grib2/tables/17/4.221.table | 6 + .../definitions/grib2/tables/17/4.222.table | 6 + .../definitions/grib2/tables/17/4.223.table | 5 + .../definitions/grib2/tables/17/4.224.table | 18 + .../definitions/grib2/tables/17/4.225.table | 2 + .../definitions/grib2/tables/17/4.227.table | 9 + .../definitions/grib2/tables/17/4.230.table | 414 + .../definitions/grib2/tables/17/4.233.table | 3 + .../definitions/grib2/tables/17/4.234.table | 21 + .../definitions/grib2/tables/17/4.236.table | 8 + .../definitions/grib2/tables/17/4.240.table | 12 + .../definitions/grib2/tables/17/4.241.table | 9 + .../definitions/grib2/tables/17/4.242.table | 7 + .../definitions/grib2/tables/17/4.243.table | 43 + eccodes/definitions/grib2/tables/17/4.3.table | 22 + eccodes/definitions/grib2/tables/17/4.4.table | 17 + eccodes/definitions/grib2/tables/17/4.5.table | 67 + eccodes/definitions/grib2/tables/17/4.6.table | 9 + eccodes/definitions/grib2/tables/17/4.7.table | 14 + eccodes/definitions/grib2/tables/17/4.8.table | 6 + eccodes/definitions/grib2/tables/17/4.9.table | 9 + .../definitions/grib2/tables/17/4.91.table | 16 + eccodes/definitions/grib2/tables/17/5.0.table | 24 + eccodes/definitions/grib2/tables/17/5.1.table | 6 + eccodes/definitions/grib2/tables/17/5.2.table | 8 + eccodes/definitions/grib2/tables/17/5.3.table | 7 + eccodes/definitions/grib2/tables/17/5.4.table | 6 + .../definitions/grib2/tables/17/5.40.table | 5 + .../definitions/grib2/tables/17/5.40000.table | 5 + eccodes/definitions/grib2/tables/17/5.5.table | 7 + .../definitions/grib2/tables/17/5.50002.table | 19 + eccodes/definitions/grib2/tables/17/5.6.table | 7 + eccodes/definitions/grib2/tables/17/5.7.table | 7 + eccodes/definitions/grib2/tables/17/6.0.table | 6 + .../grib2/tables/17/stepType.table | 2 + eccodes/definitions/grib2/tables/18/0.0.table | 10 + eccodes/definitions/grib2/tables/18/1.0.table | 23 + eccodes/definitions/grib2/tables/18/1.1.table | 4 + eccodes/definitions/grib2/tables/18/1.2.table | 8 + eccodes/definitions/grib2/tables/18/1.3.table | 14 + eccodes/definitions/grib2/tables/18/1.4.table | 13 + eccodes/definitions/grib2/tables/18/1.5.table | 7 + eccodes/definitions/grib2/tables/18/1.6.table | 8 + eccodes/definitions/grib2/tables/18/3.0.table | 6 + eccodes/definitions/grib2/tables/18/3.1.table | 47 + .../definitions/grib2/tables/18/3.10.table | 8 + .../definitions/grib2/tables/18/3.11.table | 7 + .../definitions/grib2/tables/18/3.15.table | 23 + eccodes/definitions/grib2/tables/18/3.2.table | 14 + .../definitions/grib2/tables/18/3.20.table | 6 + .../definitions/grib2/tables/18/3.21.table | 8 + eccodes/definitions/grib2/tables/18/3.3.table | 9 + eccodes/definitions/grib2/tables/18/3.4.table | 17 + eccodes/definitions/grib2/tables/18/3.5.table | 5 + eccodes/definitions/grib2/tables/18/3.6.table | 2 + eccodes/definitions/grib2/tables/18/3.7.table | 5 + eccodes/definitions/grib2/tables/18/3.8.table | 7 + eccodes/definitions/grib2/tables/18/3.9.table | 4 + eccodes/definitions/grib2/tables/18/4.0.table | 72 + .../definitions/grib2/tables/18/4.1.0.table | 27 + .../definitions/grib2/tables/18/4.1.1.table | 7 + .../definitions/grib2/tables/18/4.1.10.table | 10 + .../definitions/grib2/tables/18/4.1.192.table | 4 + .../definitions/grib2/tables/18/4.1.2.table | 9 + .../definitions/grib2/tables/18/4.1.3.table | 11 + .../definitions/grib2/tables/18/4.10.table | 16 + .../definitions/grib2/tables/18/4.11.table | 10 + .../definitions/grib2/tables/18/4.12.table | 7 + .../definitions/grib2/tables/18/4.13.table | 6 + .../definitions/grib2/tables/18/4.14.table | 6 + .../definitions/grib2/tables/18/4.15.table | 11 + .../definitions/grib2/tables/18/4.192.table | 4 + .../definitions/grib2/tables/18/4.2.0.0.table | 34 + .../definitions/grib2/tables/18/4.2.0.1.table | 123 + .../grib2/tables/18/4.2.0.13.table | 5 + .../grib2/tables/18/4.2.0.14.table | 7 + .../grib2/tables/18/4.2.0.15.table | 21 + .../grib2/tables/18/4.2.0.16.table | 10 + .../grib2/tables/18/4.2.0.17.table | 3 + .../grib2/tables/18/4.2.0.18.table | 23 + .../grib2/tables/18/4.2.0.19.table | 36 + .../grib2/tables/18/4.2.0.190.table | 5 + .../grib2/tables/18/4.2.0.191.table | 8 + .../definitions/grib2/tables/18/4.2.0.2.table | 51 + .../grib2/tables/18/4.2.0.20.table | 47 + .../definitions/grib2/tables/18/4.2.0.3.table | 36 + .../definitions/grib2/tables/18/4.2.0.4.table | 24 + .../definitions/grib2/tables/18/4.2.0.5.table | 13 + .../definitions/grib2/tables/18/4.2.0.6.table | 49 + .../definitions/grib2/tables/18/4.2.0.7.table | 23 + .../definitions/grib2/tables/18/4.2.1.0.table | 21 + .../definitions/grib2/tables/18/4.2.1.1.table | 7 + .../definitions/grib2/tables/18/4.2.1.2.table | 15 + .../grib2/tables/18/4.2.10.0.table | 50 + .../grib2/tables/18/4.2.10.1.table | 8 + .../grib2/tables/18/4.2.10.191.table | 8 + .../grib2/tables/18/4.2.10.2.table | 17 + .../grib2/tables/18/4.2.10.3.table | 7 + .../grib2/tables/18/4.2.10.4.table | 18 + .../definitions/grib2/tables/18/4.2.2.0.table | 43 + .../definitions/grib2/tables/18/4.2.2.3.table | 32 + .../definitions/grib2/tables/18/4.2.2.4.table | 16 + .../definitions/grib2/tables/18/4.2.2.5.table | 2 + .../definitions/grib2/tables/18/4.2.3.0.table | 14 + .../definitions/grib2/tables/18/4.2.3.1.table | 32 + .../definitions/grib2/tables/18/4.2.3.2.table | 13 + .../definitions/grib2/tables/18/4.2.3.3.table | 4 + .../definitions/grib2/tables/18/4.2.3.4.table | 10 + .../definitions/grib2/tables/18/4.2.3.5.table | 7 + .../definitions/grib2/tables/18/4.2.3.6.table | 7 + .../definitions/grib2/tables/18/4.201.table | 15 + .../definitions/grib2/tables/18/4.202.table | 4 + .../definitions/grib2/tables/18/4.203.table | 26 + .../definitions/grib2/tables/18/4.204.table | 9 + .../definitions/grib2/tables/18/4.205.table | 6 + .../definitions/grib2/tables/18/4.206.table | 6 + .../definitions/grib2/tables/18/4.207.table | 10 + .../definitions/grib2/tables/18/4.208.table | 9 + .../definitions/grib2/tables/18/4.209.table | 9 + .../definitions/grib2/tables/18/4.210.table | 6 + .../definitions/grib2/tables/18/4.211.table | 7 + .../definitions/grib2/tables/18/4.212.table | 18 + .../definitions/grib2/tables/18/4.213.table | 16 + .../definitions/grib2/tables/18/4.215.table | 9 + .../definitions/grib2/tables/18/4.216.table | 5 + .../definitions/grib2/tables/18/4.217.table | 8 + .../definitions/grib2/tables/18/4.218.table | 44 + .../definitions/grib2/tables/18/4.219.table | 8 + .../definitions/grib2/tables/18/4.220.table | 6 + .../definitions/grib2/tables/18/4.221.table | 6 + .../definitions/grib2/tables/18/4.222.table | 6 + .../definitions/grib2/tables/18/4.223.table | 5 + .../definitions/grib2/tables/18/4.224.table | 18 + .../definitions/grib2/tables/18/4.225.table | 2 + .../definitions/grib2/tables/18/4.227.table | 9 + .../definitions/grib2/tables/18/4.230.table | 437 + .../definitions/grib2/tables/18/4.233.table | 3 + .../definitions/grib2/tables/18/4.234.table | 21 + .../definitions/grib2/tables/18/4.236.table | 8 + .../definitions/grib2/tables/18/4.240.table | 12 + .../definitions/grib2/tables/18/4.241.table | 9 + .../definitions/grib2/tables/18/4.242.table | 7 + .../definitions/grib2/tables/18/4.243.table | 43 + eccodes/definitions/grib2/tables/18/4.3.table | 23 + eccodes/definitions/grib2/tables/18/4.4.table | 17 + eccodes/definitions/grib2/tables/18/4.5.table | 72 + eccodes/definitions/grib2/tables/18/4.6.table | 9 + eccodes/definitions/grib2/tables/18/4.7.table | 14 + eccodes/definitions/grib2/tables/18/4.8.table | 6 + eccodes/definitions/grib2/tables/18/4.9.table | 9 + .../definitions/grib2/tables/18/4.91.table | 16 + eccodes/definitions/grib2/tables/18/5.0.table | 25 + eccodes/definitions/grib2/tables/18/5.1.table | 6 + eccodes/definitions/grib2/tables/18/5.2.table | 8 + eccodes/definitions/grib2/tables/18/5.3.table | 7 + eccodes/definitions/grib2/tables/18/5.4.table | 6 + .../definitions/grib2/tables/18/5.40.table | 5 + .../definitions/grib2/tables/18/5.40000.table | 5 + eccodes/definitions/grib2/tables/18/5.5.table | 7 + .../definitions/grib2/tables/18/5.50002.table | 19 + eccodes/definitions/grib2/tables/18/5.6.table | 7 + eccodes/definitions/grib2/tables/18/5.7.table | 7 + eccodes/definitions/grib2/tables/18/6.0.table | 6 + .../grib2/tables/18/stepType.table | 2 + eccodes/definitions/grib2/tables/19/0.0.table | 10 + eccodes/definitions/grib2/tables/19/1.0.table | 24 + eccodes/definitions/grib2/tables/19/1.1.table | 4 + eccodes/definitions/grib2/tables/19/1.2.table | 8 + eccodes/definitions/grib2/tables/19/1.3.table | 14 + eccodes/definitions/grib2/tables/19/1.4.table | 13 + eccodes/definitions/grib2/tables/19/1.5.table | 7 + eccodes/definitions/grib2/tables/19/1.6.table | 8 + eccodes/definitions/grib2/tables/19/3.0.table | 6 + eccodes/definitions/grib2/tables/19/3.1.table | 47 + .../definitions/grib2/tables/19/3.10.table | 8 + .../definitions/grib2/tables/19/3.11.table | 7 + .../definitions/grib2/tables/19/3.15.table | 23 + eccodes/definitions/grib2/tables/19/3.2.table | 14 + .../definitions/grib2/tables/19/3.20.table | 6 + .../definitions/grib2/tables/19/3.21.table | 8 + eccodes/definitions/grib2/tables/19/3.3.table | 9 + eccodes/definitions/grib2/tables/19/3.4.table | 17 + eccodes/definitions/grib2/tables/19/3.5.table | 5 + eccodes/definitions/grib2/tables/19/3.6.table | 2 + eccodes/definitions/grib2/tables/19/3.7.table | 5 + eccodes/definitions/grib2/tables/19/3.8.table | 7 + eccodes/definitions/grib2/tables/19/3.9.table | 4 + eccodes/definitions/grib2/tables/19/4.0.table | 75 + .../definitions/grib2/tables/19/4.1.0.table | 27 + .../definitions/grib2/tables/19/4.1.1.table | 7 + .../definitions/grib2/tables/19/4.1.10.table | 10 + .../definitions/grib2/tables/19/4.1.192.table | 4 + .../definitions/grib2/tables/19/4.1.2.table | 9 + .../definitions/grib2/tables/19/4.1.3.table | 11 + .../definitions/grib2/tables/19/4.10.table | 16 + .../definitions/grib2/tables/19/4.11.table | 10 + .../definitions/grib2/tables/19/4.12.table | 7 + .../definitions/grib2/tables/19/4.13.table | 6 + .../definitions/grib2/tables/19/4.14.table | 6 + .../definitions/grib2/tables/19/4.15.table | 11 + .../definitions/grib2/tables/19/4.192.table | 4 + .../definitions/grib2/tables/19/4.2.0.0.table | 34 + .../definitions/grib2/tables/19/4.2.0.1.table | 123 + .../grib2/tables/19/4.2.0.13.table | 5 + .../grib2/tables/19/4.2.0.14.table | 7 + .../grib2/tables/19/4.2.0.15.table | 21 + .../grib2/tables/19/4.2.0.16.table | 10 + .../grib2/tables/19/4.2.0.17.table | 3 + .../grib2/tables/19/4.2.0.18.table | 23 + .../grib2/tables/19/4.2.0.19.table | 36 + .../grib2/tables/19/4.2.0.190.table | 5 + .../grib2/tables/19/4.2.0.191.table | 8 + .../definitions/grib2/tables/19/4.2.0.2.table | 51 + .../grib2/tables/19/4.2.0.20.table | 47 + .../definitions/grib2/tables/19/4.2.0.3.table | 36 + .../definitions/grib2/tables/19/4.2.0.4.table | 24 + .../definitions/grib2/tables/19/4.2.0.5.table | 13 + .../definitions/grib2/tables/19/4.2.0.6.table | 49 + .../definitions/grib2/tables/19/4.2.0.7.table | 24 + .../definitions/grib2/tables/19/4.2.1.0.table | 21 + .../definitions/grib2/tables/19/4.2.1.1.table | 7 + .../definitions/grib2/tables/19/4.2.1.2.table | 15 + .../grib2/tables/19/4.2.10.0.table | 50 + .../grib2/tables/19/4.2.10.1.table | 8 + .../grib2/tables/19/4.2.10.191.table | 8 + .../grib2/tables/19/4.2.10.2.table | 17 + .../grib2/tables/19/4.2.10.3.table | 7 + .../grib2/tables/19/4.2.10.4.table | 18 + .../definitions/grib2/tables/19/4.2.2.0.table | 43 + .../definitions/grib2/tables/19/4.2.2.3.table | 32 + .../definitions/grib2/tables/19/4.2.2.4.table | 16 + .../definitions/grib2/tables/19/4.2.2.5.table | 2 + .../definitions/grib2/tables/19/4.2.3.0.table | 14 + .../definitions/grib2/tables/19/4.2.3.1.table | 32 + .../definitions/grib2/tables/19/4.2.3.2.table | 13 + .../definitions/grib2/tables/19/4.2.3.3.table | 4 + .../definitions/grib2/tables/19/4.2.3.4.table | 10 + .../definitions/grib2/tables/19/4.2.3.5.table | 7 + .../definitions/grib2/tables/19/4.2.3.6.table | 7 + .../definitions/grib2/tables/19/4.201.table | 15 + .../definitions/grib2/tables/19/4.202.table | 4 + .../definitions/grib2/tables/19/4.203.table | 26 + .../definitions/grib2/tables/19/4.204.table | 9 + .../definitions/grib2/tables/19/4.205.table | 6 + .../definitions/grib2/tables/19/4.206.table | 6 + .../definitions/grib2/tables/19/4.207.table | 10 + .../definitions/grib2/tables/19/4.208.table | 9 + .../definitions/grib2/tables/19/4.209.table | 9 + .../definitions/grib2/tables/19/4.210.table | 6 + .../definitions/grib2/tables/19/4.211.table | 7 + .../definitions/grib2/tables/19/4.212.table | 18 + .../definitions/grib2/tables/19/4.213.table | 16 + .../definitions/grib2/tables/19/4.215.table | 9 + .../definitions/grib2/tables/19/4.216.table | 5 + .../definitions/grib2/tables/19/4.217.table | 8 + .../definitions/grib2/tables/19/4.218.table | 44 + .../definitions/grib2/tables/19/4.219.table | 8 + .../definitions/grib2/tables/19/4.220.table | 6 + .../definitions/grib2/tables/19/4.221.table | 6 + .../definitions/grib2/tables/19/4.222.table | 6 + .../definitions/grib2/tables/19/4.223.table | 5 + .../definitions/grib2/tables/19/4.224.table | 18 + .../definitions/grib2/tables/19/4.225.table | 2 + .../definitions/grib2/tables/19/4.227.table | 9 + .../definitions/grib2/tables/19/4.230.table | 437 + .../definitions/grib2/tables/19/4.233.table | 3 + .../definitions/grib2/tables/19/4.234.table | 21 + .../definitions/grib2/tables/19/4.236.table | 8 + .../definitions/grib2/tables/19/4.240.table | 13 + .../definitions/grib2/tables/19/4.241.table | 9 + .../definitions/grib2/tables/19/4.242.table | 7 + .../definitions/grib2/tables/19/4.243.table | 43 + eccodes/definitions/grib2/tables/19/4.3.table | 23 + eccodes/definitions/grib2/tables/19/4.4.table | 17 + eccodes/definitions/grib2/tables/19/4.5.table | 72 + eccodes/definitions/grib2/tables/19/4.6.table | 9 + eccodes/definitions/grib2/tables/19/4.7.table | 14 + eccodes/definitions/grib2/tables/19/4.8.table | 6 + eccodes/definitions/grib2/tables/19/4.9.table | 9 + .../definitions/grib2/tables/19/4.91.table | 16 + eccodes/definitions/grib2/tables/19/5.0.table | 25 + eccodes/definitions/grib2/tables/19/5.1.table | 6 + eccodes/definitions/grib2/tables/19/5.2.table | 8 + eccodes/definitions/grib2/tables/19/5.3.table | 7 + eccodes/definitions/grib2/tables/19/5.4.table | 6 + .../definitions/grib2/tables/19/5.40.table | 5 + .../definitions/grib2/tables/19/5.40000.table | 5 + eccodes/definitions/grib2/tables/19/5.5.table | 7 + .../definitions/grib2/tables/19/5.50002.table | 19 + eccodes/definitions/grib2/tables/19/5.6.table | 7 + eccodes/definitions/grib2/tables/19/5.7.table | 7 + eccodes/definitions/grib2/tables/19/6.0.table | 6 + .../grib2/tables/19/stepType.table | 2 + eccodes/definitions/grib2/tables/2/0.0.table | 10 + eccodes/definitions/grib2/tables/2/1.0.table | 7 + eccodes/definitions/grib2/tables/2/1.1.table | 5 + eccodes/definitions/grib2/tables/2/1.2.table | 8 + eccodes/definitions/grib2/tables/2/1.3.table | 10 + eccodes/definitions/grib2/tables/2/1.4.table | 13 + eccodes/definitions/grib2/tables/2/3.0.table | 6 + eccodes/definitions/grib2/tables/2/3.1.table | 43 + eccodes/definitions/grib2/tables/2/3.10.table | 7 + eccodes/definitions/grib2/tables/2/3.11.table | 5 + eccodes/definitions/grib2/tables/2/3.15.table | 17 + eccodes/definitions/grib2/tables/2/3.2.table | 11 + eccodes/definitions/grib2/tables/2/3.20.table | 6 + eccodes/definitions/grib2/tables/2/3.21.table | 8 + eccodes/definitions/grib2/tables/2/3.3.table | 7 + eccodes/definitions/grib2/tables/2/3.4.table | 9 + eccodes/definitions/grib2/tables/2/3.5.table | 5 + eccodes/definitions/grib2/tables/2/3.6.table | 2 + eccodes/definitions/grib2/tables/2/3.7.table | 4 + eccodes/definitions/grib2/tables/2/3.8.table | 8 + eccodes/definitions/grib2/tables/2/3.9.table | 3 + eccodes/definitions/grib2/tables/2/4.0.table | 38 + .../definitions/grib2/tables/2/4.1.0.table | 30 + .../definitions/grib2/tables/2/4.1.1.table | 9 + .../definitions/grib2/tables/2/4.1.10.table | 12 + .../definitions/grib2/tables/2/4.1.2.table | 11 + .../definitions/grib2/tables/2/4.1.3.table | 9 + eccodes/definitions/grib2/tables/2/4.1.table | 5 + eccodes/definitions/grib2/tables/2/4.10.table | 14 + eccodes/definitions/grib2/tables/2/4.11.table | 9 + eccodes/definitions/grib2/tables/2/4.12.table | 69 + eccodes/definitions/grib2/tables/2/4.13.table | 68 + eccodes/definitions/grib2/tables/2/4.14.table | 68 + eccodes/definitions/grib2/tables/2/4.15.table | 68 + .../definitions/grib2/tables/2/4.151.table | 70 + .../definitions/grib2/tables/2/4.2.0.0.table | 23 + .../definitions/grib2/tables/2/4.2.0.1.table | 62 + .../definitions/grib2/tables/2/4.2.0.13.table | 6 + .../definitions/grib2/tables/2/4.2.0.14.table | 7 + .../definitions/grib2/tables/2/4.2.0.15.table | 14 + .../definitions/grib2/tables/2/4.2.0.18.table | 14 + .../definitions/grib2/tables/2/4.2.0.19.table | 24 + .../grib2/tables/2/4.2.0.190.table | 6 + .../grib2/tables/2/4.2.0.191.table | 6 + .../definitions/grib2/tables/2/4.2.0.2.table | 35 + .../definitions/grib2/tables/2/4.2.0.20.table | 13 + .../definitions/grib2/tables/2/4.2.0.3.table | 25 + .../definitions/grib2/tables/2/4.2.0.4.table | 14 + .../definitions/grib2/tables/2/4.2.0.5.table | 11 + .../definitions/grib2/tables/2/4.2.0.6.table | 30 + .../definitions/grib2/tables/2/4.2.0.7.table | 18 + .../definitions/grib2/tables/2/4.2.1.0.table | 9 + .../definitions/grib2/tables/2/4.2.1.1.table | 8 + .../definitions/grib2/tables/2/4.2.10.0.table | 20 + .../definitions/grib2/tables/2/4.2.10.1.table | 8 + .../definitions/grib2/tables/2/4.2.10.2.table | 12 + .../definitions/grib2/tables/2/4.2.10.3.table | 6 + .../definitions/grib2/tables/2/4.2.10.4.table | 9 + .../definitions/grib2/tables/2/4.2.2.0.table | 29 + .../definitions/grib2/tables/2/4.2.2.3.table | 16 + .../definitions/grib2/tables/2/4.2.3.0.table | 14 + .../definitions/grib2/tables/2/4.2.3.1.table | 11 + .../definitions/grib2/tables/2/4.201.table | 71 + .../definitions/grib2/tables/2/4.202.table | 66 + .../definitions/grib2/tables/2/4.203.table | 25 + .../definitions/grib2/tables/2/4.204.table | 71 + .../definitions/grib2/tables/2/4.205.table | 68 + .../definitions/grib2/tables/2/4.206.table | 68 + .../definitions/grib2/tables/2/4.207.table | 70 + .../definitions/grib2/tables/2/4.208.table | 71 + .../definitions/grib2/tables/2/4.209.table | 70 + .../definitions/grib2/tables/2/4.210.table | 68 + .../definitions/grib2/tables/2/4.211.table | 69 + .../definitions/grib2/tables/2/4.212.table | 79 + .../definitions/grib2/tables/2/4.213.table | 77 + .../definitions/grib2/tables/2/4.215.table | 10 + .../definitions/grib2/tables/2/4.216.table | 3 + .../definitions/grib2/tables/2/4.217.table | 70 + .../definitions/grib2/tables/2/4.220.table | 68 + .../definitions/grib2/tables/2/4.221.table | 68 + .../definitions/grib2/tables/2/4.230.table | 47 + eccodes/definitions/grib2/tables/2/4.3.table | 13 + eccodes/definitions/grib2/tables/2/4.4.table | 16 + eccodes/definitions/grib2/tables/2/4.5.table | 33 + eccodes/definitions/grib2/tables/2/4.6.table | 8 + eccodes/definitions/grib2/tables/2/4.7.table | 73 + eccodes/definitions/grib2/tables/2/4.8.table | 68 + eccodes/definitions/grib2/tables/2/4.9.table | 71 + eccodes/definitions/grib2/tables/2/4.91.table | 78 + eccodes/definitions/grib2/tables/2/5.0.table | 16 + eccodes/definitions/grib2/tables/2/5.1.table | 5 + eccodes/definitions/grib2/tables/2/5.2.table | 6 + eccodes/definitions/grib2/tables/2/5.3.table | 6 + eccodes/definitions/grib2/tables/2/5.4.table | 5 + eccodes/definitions/grib2/tables/2/5.40.table | 5 + .../definitions/grib2/tables/2/5.40000.table | 5 + eccodes/definitions/grib2/tables/2/5.5.table | 7 + eccodes/definitions/grib2/tables/2/5.6.table | 68 + eccodes/definitions/grib2/tables/2/5.7.table | 6 + eccodes/definitions/grib2/tables/2/5.8.table | 3 + eccodes/definitions/grib2/tables/2/5.9.table | 4 + eccodes/definitions/grib2/tables/2/6.0.table | 7 + eccodes/definitions/grib2/tables/20/0.0.table | 10 + eccodes/definitions/grib2/tables/20/1.0.table | 25 + eccodes/definitions/grib2/tables/20/1.1.table | 4 + eccodes/definitions/grib2/tables/20/1.2.table | 8 + eccodes/definitions/grib2/tables/20/1.3.table | 14 + eccodes/definitions/grib2/tables/20/1.4.table | 13 + eccodes/definitions/grib2/tables/20/1.5.table | 7 + eccodes/definitions/grib2/tables/20/1.6.table | 8 + eccodes/definitions/grib2/tables/20/3.0.table | 6 + eccodes/definitions/grib2/tables/20/3.1.table | 47 + .../definitions/grib2/tables/20/3.10.table | 8 + .../definitions/grib2/tables/20/3.11.table | 7 + .../definitions/grib2/tables/20/3.15.table | 23 + eccodes/definitions/grib2/tables/20/3.2.table | 14 + .../definitions/grib2/tables/20/3.20.table | 6 + .../definitions/grib2/tables/20/3.21.table | 8 + eccodes/definitions/grib2/tables/20/3.3.table | 9 + eccodes/definitions/grib2/tables/20/3.4.table | 17 + eccodes/definitions/grib2/tables/20/3.5.table | 5 + eccodes/definitions/grib2/tables/20/3.6.table | 2 + eccodes/definitions/grib2/tables/20/3.7.table | 5 + eccodes/definitions/grib2/tables/20/3.8.table | 7 + eccodes/definitions/grib2/tables/20/3.9.table | 4 + eccodes/definitions/grib2/tables/20/4.0.table | 75 + .../definitions/grib2/tables/20/4.1.0.table | 27 + .../definitions/grib2/tables/20/4.1.1.table | 7 + .../definitions/grib2/tables/20/4.1.10.table | 10 + .../definitions/grib2/tables/20/4.1.192.table | 4 + .../definitions/grib2/tables/20/4.1.2.table | 9 + .../definitions/grib2/tables/20/4.1.3.table | 11 + .../definitions/grib2/tables/20/4.10.table | 16 + .../definitions/grib2/tables/20/4.11.table | 10 + .../definitions/grib2/tables/20/4.12.table | 7 + .../definitions/grib2/tables/20/4.13.table | 6 + .../definitions/grib2/tables/20/4.14.table | 6 + .../definitions/grib2/tables/20/4.15.table | 11 + .../definitions/grib2/tables/20/4.192.table | 4 + .../definitions/grib2/tables/20/4.2.0.0.table | 34 + .../definitions/grib2/tables/20/4.2.0.1.table | 126 + .../grib2/tables/20/4.2.0.13.table | 5 + .../grib2/tables/20/4.2.0.14.table | 7 + .../grib2/tables/20/4.2.0.15.table | 21 + .../grib2/tables/20/4.2.0.16.table | 10 + .../grib2/tables/20/4.2.0.17.table | 3 + .../grib2/tables/20/4.2.0.18.table | 23 + .../grib2/tables/20/4.2.0.19.table | 40 + .../grib2/tables/20/4.2.0.190.table | 5 + .../grib2/tables/20/4.2.0.191.table | 8 + .../definitions/grib2/tables/20/4.2.0.2.table | 51 + .../grib2/tables/20/4.2.0.20.table | 47 + .../definitions/grib2/tables/20/4.2.0.3.table | 36 + .../definitions/grib2/tables/20/4.2.0.4.table | 24 + .../definitions/grib2/tables/20/4.2.0.5.table | 13 + .../definitions/grib2/tables/20/4.2.0.6.table | 49 + .../definitions/grib2/tables/20/4.2.0.7.table | 24 + .../definitions/grib2/tables/20/4.2.1.0.table | 21 + .../definitions/grib2/tables/20/4.2.1.1.table | 7 + .../definitions/grib2/tables/20/4.2.1.2.table | 15 + .../grib2/tables/20/4.2.10.0.table | 50 + .../grib2/tables/20/4.2.10.1.table | 9 + .../grib2/tables/20/4.2.10.191.table | 8 + .../grib2/tables/20/4.2.10.2.table | 17 + .../grib2/tables/20/4.2.10.3.table | 7 + .../grib2/tables/20/4.2.10.4.table | 18 + .../definitions/grib2/tables/20/4.2.2.0.table | 43 + .../definitions/grib2/tables/20/4.2.2.3.table | 32 + .../definitions/grib2/tables/20/4.2.2.4.table | 16 + .../definitions/grib2/tables/20/4.2.2.5.table | 2 + .../definitions/grib2/tables/20/4.2.3.0.table | 14 + .../definitions/grib2/tables/20/4.2.3.1.table | 32 + .../definitions/grib2/tables/20/4.2.3.2.table | 13 + .../definitions/grib2/tables/20/4.2.3.3.table | 4 + .../definitions/grib2/tables/20/4.2.3.4.table | 10 + .../definitions/grib2/tables/20/4.2.3.5.table | 7 + .../definitions/grib2/tables/20/4.2.3.6.table | 7 + .../definitions/grib2/tables/20/4.201.table | 15 + .../definitions/grib2/tables/20/4.202.table | 4 + .../definitions/grib2/tables/20/4.203.table | 26 + .../definitions/grib2/tables/20/4.204.table | 9 + .../definitions/grib2/tables/20/4.205.table | 6 + .../definitions/grib2/tables/20/4.206.table | 6 + .../definitions/grib2/tables/20/4.207.table | 10 + .../definitions/grib2/tables/20/4.208.table | 9 + .../definitions/grib2/tables/20/4.209.table | 9 + .../definitions/grib2/tables/20/4.210.table | 6 + .../definitions/grib2/tables/20/4.211.table | 7 + .../definitions/grib2/tables/20/4.212.table | 18 + .../definitions/grib2/tables/20/4.213.table | 16 + .../definitions/grib2/tables/20/4.215.table | 9 + .../definitions/grib2/tables/20/4.216.table | 5 + .../definitions/grib2/tables/20/4.217.table | 8 + .../definitions/grib2/tables/20/4.218.table | 44 + .../definitions/grib2/tables/20/4.219.table | 8 + .../definitions/grib2/tables/20/4.220.table | 6 + .../definitions/grib2/tables/20/4.221.table | 6 + .../definitions/grib2/tables/20/4.222.table | 6 + .../definitions/grib2/tables/20/4.223.table | 5 + .../definitions/grib2/tables/20/4.224.table | 18 + .../definitions/grib2/tables/20/4.225.table | 2 + .../definitions/grib2/tables/20/4.227.table | 9 + .../definitions/grib2/tables/20/4.230.table | 449 + .../definitions/grib2/tables/20/4.233.table | 2 + .../definitions/grib2/tables/20/4.234.table | 21 + .../definitions/grib2/tables/20/4.236.table | 8 + .../definitions/grib2/tables/20/4.240.table | 13 + .../definitions/grib2/tables/20/4.241.table | 9 + .../definitions/grib2/tables/20/4.242.table | 7 + .../definitions/grib2/tables/20/4.243.table | 43 + eccodes/definitions/grib2/tables/20/4.3.table | 23 + eccodes/definitions/grib2/tables/20/4.4.table | 17 + eccodes/definitions/grib2/tables/20/4.5.table | 72 + eccodes/definitions/grib2/tables/20/4.6.table | 9 + eccodes/definitions/grib2/tables/20/4.7.table | 14 + eccodes/definitions/grib2/tables/20/4.8.table | 6 + eccodes/definitions/grib2/tables/20/4.9.table | 9 + .../definitions/grib2/tables/20/4.91.table | 16 + eccodes/definitions/grib2/tables/20/5.0.table | 25 + eccodes/definitions/grib2/tables/20/5.1.table | 6 + eccodes/definitions/grib2/tables/20/5.2.table | 8 + eccodes/definitions/grib2/tables/20/5.3.table | 7 + eccodes/definitions/grib2/tables/20/5.4.table | 6 + .../definitions/grib2/tables/20/5.40.table | 5 + .../definitions/grib2/tables/20/5.40000.table | 5 + eccodes/definitions/grib2/tables/20/5.5.table | 7 + .../definitions/grib2/tables/20/5.50002.table | 19 + eccodes/definitions/grib2/tables/20/5.6.table | 7 + eccodes/definitions/grib2/tables/20/5.7.table | 7 + eccodes/definitions/grib2/tables/20/6.0.table | 6 + .../grib2/tables/20/stepType.table | 2 + eccodes/definitions/grib2/tables/21/0.0.table | 10 + eccodes/definitions/grib2/tables/21/1.0.table | 26 + eccodes/definitions/grib2/tables/21/1.1.table | 4 + eccodes/definitions/grib2/tables/21/1.2.table | 8 + eccodes/definitions/grib2/tables/21/1.3.table | 14 + eccodes/definitions/grib2/tables/21/1.4.table | 13 + eccodes/definitions/grib2/tables/21/1.5.table | 7 + eccodes/definitions/grib2/tables/21/1.6.table | 8 + eccodes/definitions/grib2/tables/21/3.0.table | 6 + eccodes/definitions/grib2/tables/21/3.1.table | 47 + .../definitions/grib2/tables/21/3.10.table | 8 + .../definitions/grib2/tables/21/3.11.table | 7 + .../definitions/grib2/tables/21/3.15.table | 23 + eccodes/definitions/grib2/tables/21/3.2.table | 14 + .../definitions/grib2/tables/21/3.20.table | 6 + .../definitions/grib2/tables/21/3.21.table | 8 + eccodes/definitions/grib2/tables/21/3.3.table | 9 + eccodes/definitions/grib2/tables/21/3.4.table | 17 + eccodes/definitions/grib2/tables/21/3.5.table | 5 + eccodes/definitions/grib2/tables/21/3.6.table | 2 + eccodes/definitions/grib2/tables/21/3.7.table | 5 + eccodes/definitions/grib2/tables/21/3.8.table | 7 + eccodes/definitions/grib2/tables/21/3.9.table | 4 + eccodes/definitions/grib2/tables/21/4.0.table | 88 + .../definitions/grib2/tables/21/4.1.0.table | 27 + .../definitions/grib2/tables/21/4.1.1.table | 7 + .../definitions/grib2/tables/21/4.1.10.table | 10 + .../definitions/grib2/tables/21/4.1.192.table | 4 + .../definitions/grib2/tables/21/4.1.2.table | 9 + .../definitions/grib2/tables/21/4.1.3.table | 11 + .../definitions/grib2/tables/21/4.10.table | 16 + .../definitions/grib2/tables/21/4.11.table | 10 + .../definitions/grib2/tables/21/4.12.table | 7 + .../definitions/grib2/tables/21/4.13.table | 6 + .../definitions/grib2/tables/21/4.14.table | 6 + .../definitions/grib2/tables/21/4.15.table | 11 + .../definitions/grib2/tables/21/4.16.table | 9 + .../definitions/grib2/tables/21/4.192.table | 4 + .../definitions/grib2/tables/21/4.2.0.0.table | 34 + .../definitions/grib2/tables/21/4.2.0.1.table | 126 + .../grib2/tables/21/4.2.0.13.table | 5 + .../grib2/tables/21/4.2.0.14.table | 7 + .../grib2/tables/21/4.2.0.15.table | 21 + .../grib2/tables/21/4.2.0.16.table | 10 + .../grib2/tables/21/4.2.0.17.table | 3 + .../grib2/tables/21/4.2.0.18.table | 23 + .../grib2/tables/21/4.2.0.19.table | 40 + .../grib2/tables/21/4.2.0.190.table | 5 + .../grib2/tables/21/4.2.0.191.table | 8 + .../definitions/grib2/tables/21/4.2.0.2.table | 51 + .../grib2/tables/21/4.2.0.20.table | 47 + .../definitions/grib2/tables/21/4.2.0.3.table | 36 + .../definitions/grib2/tables/21/4.2.0.4.table | 24 + .../definitions/grib2/tables/21/4.2.0.5.table | 13 + .../definitions/grib2/tables/21/4.2.0.6.table | 49 + .../definitions/grib2/tables/21/4.2.0.7.table | 24 + .../definitions/grib2/tables/21/4.2.1.0.table | 21 + .../definitions/grib2/tables/21/4.2.1.1.table | 7 + .../definitions/grib2/tables/21/4.2.1.2.table | 15 + .../grib2/tables/21/4.2.10.0.table | 50 + .../grib2/tables/21/4.2.10.1.table | 9 + .../grib2/tables/21/4.2.10.191.table | 8 + .../grib2/tables/21/4.2.10.2.table | 17 + .../grib2/tables/21/4.2.10.3.table | 7 + .../grib2/tables/21/4.2.10.4.table | 18 + .../definitions/grib2/tables/21/4.2.2.0.table | 43 + .../definitions/grib2/tables/21/4.2.2.3.table | 32 + .../definitions/grib2/tables/21/4.2.2.4.table | 16 + .../definitions/grib2/tables/21/4.2.2.5.table | 2 + .../definitions/grib2/tables/21/4.2.3.0.table | 14 + .../definitions/grib2/tables/21/4.2.3.1.table | 32 + .../definitions/grib2/tables/21/4.2.3.2.table | 13 + .../definitions/grib2/tables/21/4.2.3.3.table | 4 + .../definitions/grib2/tables/21/4.2.3.4.table | 10 + .../definitions/grib2/tables/21/4.2.3.5.table | 7 + .../definitions/grib2/tables/21/4.2.3.6.table | 7 + .../definitions/grib2/tables/21/4.201.table | 15 + .../definitions/grib2/tables/21/4.202.table | 4 + .../definitions/grib2/tables/21/4.203.table | 26 + .../definitions/grib2/tables/21/4.204.table | 9 + .../definitions/grib2/tables/21/4.205.table | 6 + .../definitions/grib2/tables/21/4.206.table | 6 + .../definitions/grib2/tables/21/4.207.table | 10 + .../definitions/grib2/tables/21/4.208.table | 9 + .../definitions/grib2/tables/21/4.209.table | 9 + .../definitions/grib2/tables/21/4.210.table | 6 + .../definitions/grib2/tables/21/4.211.table | 7 + .../definitions/grib2/tables/21/4.212.table | 18 + .../definitions/grib2/tables/21/4.213.table | 16 + .../definitions/grib2/tables/21/4.215.table | 9 + .../definitions/grib2/tables/21/4.216.table | 5 + .../definitions/grib2/tables/21/4.217.table | 8 + .../definitions/grib2/tables/21/4.218.table | 44 + .../definitions/grib2/tables/21/4.219.table | 8 + .../definitions/grib2/tables/21/4.220.table | 6 + .../definitions/grib2/tables/21/4.221.table | 6 + .../definitions/grib2/tables/21/4.222.table | 6 + .../definitions/grib2/tables/21/4.223.table | 5 + .../definitions/grib2/tables/21/4.224.table | 18 + .../definitions/grib2/tables/21/4.225.table | 2 + .../definitions/grib2/tables/21/4.227.table | 9 + .../definitions/grib2/tables/21/4.230.table | 449 + .../definitions/grib2/tables/21/4.233.table | 449 + .../definitions/grib2/tables/21/4.234.table | 21 + .../definitions/grib2/tables/21/4.236.table | 8 + .../definitions/grib2/tables/21/4.238.table | 16 + .../definitions/grib2/tables/21/4.240.table | 13 + .../definitions/grib2/tables/21/4.241.table | 9 + .../definitions/grib2/tables/21/4.242.table | 7 + .../definitions/grib2/tables/21/4.243.table | 43 + .../definitions/grib2/tables/21/4.244.table | 7 + eccodes/definitions/grib2/tables/21/4.3.table | 23 + eccodes/definitions/grib2/tables/21/4.4.table | 17 + eccodes/definitions/grib2/tables/21/4.5.table | 72 + eccodes/definitions/grib2/tables/21/4.6.table | 9 + eccodes/definitions/grib2/tables/21/4.7.table | 14 + eccodes/definitions/grib2/tables/21/4.8.table | 6 + eccodes/definitions/grib2/tables/21/4.9.table | 9 + .../definitions/grib2/tables/21/4.91.table | 16 + eccodes/definitions/grib2/tables/21/5.0.table | 25 + eccodes/definitions/grib2/tables/21/5.1.table | 6 + eccodes/definitions/grib2/tables/21/5.2.table | 8 + eccodes/definitions/grib2/tables/21/5.3.table | 7 + eccodes/definitions/grib2/tables/21/5.4.table | 6 + .../definitions/grib2/tables/21/5.40.table | 5 + .../definitions/grib2/tables/21/5.40000.table | 5 + eccodes/definitions/grib2/tables/21/5.5.table | 7 + .../definitions/grib2/tables/21/5.50002.table | 19 + eccodes/definitions/grib2/tables/21/5.6.table | 7 + eccodes/definitions/grib2/tables/21/5.7.table | 7 + eccodes/definitions/grib2/tables/21/6.0.table | 6 + .../grib2/tables/21/stepType.table | 2 + eccodes/definitions/grib2/tables/22/1.4.table | 13 + .../definitions/grib2/tables/22/3.15.table | 23 + .../definitions/grib2/tables/22/4.10.table | 16 + .../definitions/grib2/tables/22/4.230.table | 449 + eccodes/definitions/grib2/tables/22/4.4.table | 17 + eccodes/definitions/grib2/tables/22/4.5.table | 72 + .../definitions/grib2/tables/22/4.91.table | 16 + eccodes/definitions/grib2/tables/23/0.0.table | 10 + eccodes/definitions/grib2/tables/23/1.0.table | 27 + eccodes/definitions/grib2/tables/23/1.1.table | 4 + eccodes/definitions/grib2/tables/23/1.2.table | 8 + eccodes/definitions/grib2/tables/23/1.3.table | 16 + eccodes/definitions/grib2/tables/23/1.4.table | 13 + eccodes/definitions/grib2/tables/23/1.5.table | 7 + eccodes/definitions/grib2/tables/23/1.6.table | 8 + eccodes/definitions/grib2/tables/23/3.0.table | 6 + eccodes/definitions/grib2/tables/23/3.1.table | 54 + .../definitions/grib2/tables/23/3.10.table | 8 + .../definitions/grib2/tables/23/3.11.table | 7 + .../definitions/grib2/tables/23/3.15.table | 23 + eccodes/definitions/grib2/tables/23/3.2.table | 14 + .../definitions/grib2/tables/23/3.20.table | 6 + .../definitions/grib2/tables/23/3.21.table | 8 + .../definitions/grib2/tables/23/3.25.table | 10 + eccodes/definitions/grib2/tables/23/3.3.table | 9 + eccodes/definitions/grib2/tables/23/3.4.table | 17 + eccodes/definitions/grib2/tables/23/3.5.table | 5 + eccodes/definitions/grib2/tables/23/3.6.table | 3 + eccodes/definitions/grib2/tables/23/3.7.table | 5 + eccodes/definitions/grib2/tables/23/3.8.table | 7 + eccodes/definitions/grib2/tables/23/3.9.table | 4 + eccodes/definitions/grib2/tables/23/4.0.table | 75 + .../definitions/grib2/tables/23/4.1.0.table | 27 + .../definitions/grib2/tables/23/4.1.1.table | 7 + .../definitions/grib2/tables/23/4.1.10.table | 10 + .../definitions/grib2/tables/23/4.1.192.table | 4 + .../definitions/grib2/tables/23/4.1.2.table | 9 + .../definitions/grib2/tables/23/4.1.3.table | 11 + .../definitions/grib2/tables/23/4.10.table | 16 + .../definitions/grib2/tables/23/4.11.table | 10 + .../definitions/grib2/tables/23/4.12.table | 7 + .../definitions/grib2/tables/23/4.13.table | 6 + .../definitions/grib2/tables/23/4.14.table | 6 + .../definitions/grib2/tables/23/4.15.table | 11 + .../definitions/grib2/tables/23/4.16.table | 9 + .../definitions/grib2/tables/23/4.192.table | 4 + .../definitions/grib2/tables/23/4.2.0.0.table | 34 + .../definitions/grib2/tables/23/4.2.0.1.table | 126 + .../grib2/tables/23/4.2.0.13.table | 5 + .../grib2/tables/23/4.2.0.14.table | 7 + .../grib2/tables/23/4.2.0.15.table | 21 + .../grib2/tables/23/4.2.0.16.table | 10 + .../grib2/tables/23/4.2.0.17.table | 6 + .../grib2/tables/23/4.2.0.18.table | 23 + .../grib2/tables/23/4.2.0.19.table | 40 + .../grib2/tables/23/4.2.0.190.table | 5 + .../grib2/tables/23/4.2.0.191.table | 8 + .../definitions/grib2/tables/23/4.2.0.2.table | 51 + .../grib2/tables/23/4.2.0.20.table | 62 + .../definitions/grib2/tables/23/4.2.0.3.table | 36 + .../definitions/grib2/tables/23/4.2.0.4.table | 24 + .../definitions/grib2/tables/23/4.2.0.5.table | 13 + .../definitions/grib2/tables/23/4.2.0.6.table | 49 + .../definitions/grib2/tables/23/4.2.0.7.table | 24 + .../definitions/grib2/tables/23/4.2.1.0.table | 21 + .../definitions/grib2/tables/23/4.2.1.1.table | 7 + .../definitions/grib2/tables/23/4.2.1.2.table | 15 + .../grib2/tables/23/4.2.10.0.table | 70 + .../grib2/tables/23/4.2.10.1.table | 9 + .../grib2/tables/23/4.2.10.191.table | 8 + .../grib2/tables/23/4.2.10.2.table | 17 + .../grib2/tables/23/4.2.10.3.table | 7 + .../grib2/tables/23/4.2.10.4.table | 24 + .../definitions/grib2/tables/23/4.2.2.0.table | 43 + .../definitions/grib2/tables/23/4.2.2.3.table | 32 + .../definitions/grib2/tables/23/4.2.2.4.table | 16 + .../definitions/grib2/tables/23/4.2.2.5.table | 2 + .../definitions/grib2/tables/23/4.2.3.0.table | 14 + .../definitions/grib2/tables/23/4.2.3.1.table | 35 + .../definitions/grib2/tables/23/4.2.3.2.table | 24 + .../definitions/grib2/tables/23/4.2.3.3.table | 4 + .../definitions/grib2/tables/23/4.2.3.4.table | 10 + .../definitions/grib2/tables/23/4.2.3.5.table | 7 + .../definitions/grib2/tables/23/4.2.3.6.table | 7 + .../definitions/grib2/tables/23/4.201.table | 17 + .../definitions/grib2/tables/23/4.202.table | 4 + .../definitions/grib2/tables/23/4.203.table | 26 + .../definitions/grib2/tables/23/4.204.table | 9 + .../definitions/grib2/tables/23/4.205.table | 6 + .../definitions/grib2/tables/23/4.206.table | 6 + .../definitions/grib2/tables/23/4.207.table | 10 + .../definitions/grib2/tables/23/4.208.table | 9 + .../definitions/grib2/tables/23/4.209.table | 9 + .../definitions/grib2/tables/23/4.210.table | 6 + .../definitions/grib2/tables/23/4.211.table | 7 + .../definitions/grib2/tables/23/4.212.table | 18 + .../definitions/grib2/tables/23/4.213.table | 16 + .../definitions/grib2/tables/23/4.215.table | 9 + .../definitions/grib2/tables/23/4.216.table | 5 + .../definitions/grib2/tables/23/4.217.table | 8 + .../definitions/grib2/tables/23/4.218.table | 46 + .../definitions/grib2/tables/23/4.219.table | 8 + .../definitions/grib2/tables/23/4.220.table | 6 + .../definitions/grib2/tables/23/4.221.table | 6 + .../definitions/grib2/tables/23/4.222.table | 6 + .../definitions/grib2/tables/23/4.223.table | 5 + .../definitions/grib2/tables/23/4.224.table | 18 + .../definitions/grib2/tables/23/4.225.table | 2 + .../definitions/grib2/tables/23/4.227.table | 9 + .../definitions/grib2/tables/23/4.230.table | 511 + .../definitions/grib2/tables/23/4.233.table | 511 + .../definitions/grib2/tables/23/4.234.table | 21 + .../definitions/grib2/tables/23/4.236.table | 8 + .../definitions/grib2/tables/23/4.240.table | 13 + .../definitions/grib2/tables/23/4.241.table | 9 + .../definitions/grib2/tables/23/4.242.table | 7 + .../definitions/grib2/tables/23/4.243.table | 43 + .../definitions/grib2/tables/23/4.244.table | 7 + eccodes/definitions/grib2/tables/23/4.3.table | 23 + eccodes/definitions/grib2/tables/23/4.4.table | 17 + eccodes/definitions/grib2/tables/23/4.5.table | 73 + eccodes/definitions/grib2/tables/23/4.6.table | 9 + eccodes/definitions/grib2/tables/23/4.7.table | 14 + eccodes/definitions/grib2/tables/23/4.8.table | 6 + eccodes/definitions/grib2/tables/23/4.9.table | 13 + .../definitions/grib2/tables/23/4.91.table | 16 + eccodes/definitions/grib2/tables/23/5.0.table | 27 + eccodes/definitions/grib2/tables/23/5.1.table | 6 + eccodes/definitions/grib2/tables/23/5.2.table | 8 + .../definitions/grib2/tables/23/5.25.table | 9 + .../definitions/grib2/tables/23/5.26.table | 5 + eccodes/definitions/grib2/tables/23/5.3.table | 7 + eccodes/definitions/grib2/tables/23/5.4.table | 6 + .../definitions/grib2/tables/23/5.40.table | 5 + .../definitions/grib2/tables/23/5.40000.table | 5 + eccodes/definitions/grib2/tables/23/5.5.table | 7 + .../definitions/grib2/tables/23/5.50002.table | 19 + eccodes/definitions/grib2/tables/23/5.6.table | 7 + eccodes/definitions/grib2/tables/23/5.7.table | 7 + eccodes/definitions/grib2/tables/23/6.0.table | 6 + .../grib2/tables/23/stepType.table | 2 + eccodes/definitions/grib2/tables/24/0.0.table | 11 + eccodes/definitions/grib2/tables/24/1.0.table | 28 + eccodes/definitions/grib2/tables/24/1.1.table | 4 + eccodes/definitions/grib2/tables/24/1.2.table | 8 + eccodes/definitions/grib2/tables/24/1.3.table | 16 + eccodes/definitions/grib2/tables/24/1.4.table | 13 + eccodes/definitions/grib2/tables/24/1.5.table | 7 + eccodes/definitions/grib2/tables/24/1.6.table | 8 + eccodes/definitions/grib2/tables/24/3.0.table | 6 + eccodes/definitions/grib2/tables/24/3.1.table | 54 + .../definitions/grib2/tables/24/3.10.table | 8 + .../definitions/grib2/tables/24/3.11.table | 7 + .../definitions/grib2/tables/24/3.15.table | 23 + eccodes/definitions/grib2/tables/24/3.2.table | 14 + .../definitions/grib2/tables/24/3.20.table | 6 + .../definitions/grib2/tables/24/3.21.table | 8 + .../definitions/grib2/tables/24/3.25.table | 10 + eccodes/definitions/grib2/tables/24/3.3.table | 9 + eccodes/definitions/grib2/tables/24/3.4.table | 17 + eccodes/definitions/grib2/tables/24/3.5.table | 5 + eccodes/definitions/grib2/tables/24/3.6.table | 3 + eccodes/definitions/grib2/tables/24/3.7.table | 5 + eccodes/definitions/grib2/tables/24/3.8.table | 7 + eccodes/definitions/grib2/tables/24/3.9.table | 4 + eccodes/definitions/grib2/tables/24/4.0.table | 86 + .../definitions/grib2/tables/24/4.1.0.table | 27 + .../definitions/grib2/tables/24/4.1.1.table | 7 + .../definitions/grib2/tables/24/4.1.10.table | 10 + .../definitions/grib2/tables/24/4.1.192.table | 4 + .../definitions/grib2/tables/24/4.1.2.table | 10 + .../definitions/grib2/tables/24/4.1.3.table | 11 + .../definitions/grib2/tables/24/4.10.table | 16 + .../definitions/grib2/tables/24/4.11.table | 10 + .../definitions/grib2/tables/24/4.12.table | 7 + .../definitions/grib2/tables/24/4.13.table | 6 + .../definitions/grib2/tables/24/4.14.table | 6 + .../definitions/grib2/tables/24/4.15.table | 11 + .../definitions/grib2/tables/24/4.16.table | 9 + .../definitions/grib2/tables/24/4.192.table | 4 + .../definitions/grib2/tables/24/4.2.0.0.table | 34 + .../definitions/grib2/tables/24/4.2.0.1.table | 141 + .../grib2/tables/24/4.2.0.13.table | 5 + .../grib2/tables/24/4.2.0.14.table | 7 + .../grib2/tables/24/4.2.0.15.table | 21 + .../grib2/tables/24/4.2.0.16.table | 10 + .../grib2/tables/24/4.2.0.17.table | 6 + .../grib2/tables/24/4.2.0.18.table | 23 + .../grib2/tables/24/4.2.0.19.table | 41 + .../grib2/tables/24/4.2.0.190.table | 5 + .../grib2/tables/24/4.2.0.191.table | 8 + .../definitions/grib2/tables/24/4.2.0.2.table | 51 + .../grib2/tables/24/4.2.0.20.table | 64 + .../definitions/grib2/tables/24/4.2.0.3.table | 36 + .../definitions/grib2/tables/24/4.2.0.4.table | 24 + .../definitions/grib2/tables/24/4.2.0.5.table | 13 + .../definitions/grib2/tables/24/4.2.0.6.table | 49 + .../definitions/grib2/tables/24/4.2.0.7.table | 24 + .../definitions/grib2/tables/24/4.2.1.0.table | 21 + .../definitions/grib2/tables/24/4.2.1.1.table | 7 + .../definitions/grib2/tables/24/4.2.1.2.table | 15 + .../grib2/tables/24/4.2.10.0.table | 69 + .../grib2/tables/24/4.2.10.1.table | 9 + .../grib2/tables/24/4.2.10.191.table | 8 + .../grib2/tables/24/4.2.10.2.table | 17 + .../grib2/tables/24/4.2.10.3.table | 8 + .../grib2/tables/24/4.2.10.4.table | 24 + .../definitions/grib2/tables/24/4.2.2.0.table | 44 + .../definitions/grib2/tables/24/4.2.2.3.table | 32 + .../definitions/grib2/tables/24/4.2.2.4.table | 16 + .../definitions/grib2/tables/24/4.2.2.5.table | 2 + .../definitions/grib2/tables/24/4.2.3.0.table | 14 + .../definitions/grib2/tables/24/4.2.3.1.table | 35 + .../definitions/grib2/tables/24/4.2.3.2.table | 24 + .../definitions/grib2/tables/24/4.2.3.3.table | 4 + .../definitions/grib2/tables/24/4.2.3.4.table | 10 + .../definitions/grib2/tables/24/4.2.3.5.table | 7 + .../definitions/grib2/tables/24/4.2.3.6.table | 7 + .../definitions/grib2/tables/24/4.201.table | 17 + .../definitions/grib2/tables/24/4.202.table | 4 + .../definitions/grib2/tables/24/4.203.table | 26 + .../definitions/grib2/tables/24/4.204.table | 9 + .../definitions/grib2/tables/24/4.205.table | 6 + .../definitions/grib2/tables/24/4.206.table | 6 + .../definitions/grib2/tables/24/4.207.table | 10 + .../definitions/grib2/tables/24/4.208.table | 9 + .../definitions/grib2/tables/24/4.209.table | 9 + .../definitions/grib2/tables/24/4.210.table | 6 + .../definitions/grib2/tables/24/4.211.table | 7 + .../definitions/grib2/tables/24/4.212.table | 18 + .../definitions/grib2/tables/24/4.213.table | 16 + .../definitions/grib2/tables/24/4.215.table | 9 + .../definitions/grib2/tables/24/4.216.table | 5 + .../definitions/grib2/tables/24/4.217.table | 8 + .../definitions/grib2/tables/24/4.218.table | 46 + .../definitions/grib2/tables/24/4.219.table | 8 + .../definitions/grib2/tables/24/4.220.table | 6 + .../definitions/grib2/tables/24/4.221.table | 6 + .../definitions/grib2/tables/24/4.222.table | 6 + .../definitions/grib2/tables/24/4.223.table | 5 + .../definitions/grib2/tables/24/4.224.table | 18 + .../definitions/grib2/tables/24/4.225.table | 2 + .../definitions/grib2/tables/24/4.227.table | 9 + .../definitions/grib2/tables/24/4.230.table | 512 + .../definitions/grib2/tables/24/4.233.table | 512 + .../definitions/grib2/tables/24/4.234.table | 21 + .../definitions/grib2/tables/24/4.236.table | 8 + .../definitions/grib2/tables/24/4.238.table | 16 + .../definitions/grib2/tables/24/4.240.table | 13 + .../definitions/grib2/tables/24/4.241.table | 9 + .../definitions/grib2/tables/24/4.242.table | 7 + .../definitions/grib2/tables/24/4.243.table | 43 + .../definitions/grib2/tables/24/4.244.table | 7 + eccodes/definitions/grib2/tables/24/4.3.table | 23 + eccodes/definitions/grib2/tables/24/4.4.table | 17 + eccodes/definitions/grib2/tables/24/4.5.table | 76 + eccodes/definitions/grib2/tables/24/4.6.table | 9 + eccodes/definitions/grib2/tables/24/4.7.table | 14 + eccodes/definitions/grib2/tables/24/4.8.table | 6 + eccodes/definitions/grib2/tables/24/4.9.table | 13 + .../definitions/grib2/tables/24/4.91.table | 16 + eccodes/definitions/grib2/tables/24/5.0.table | 27 + eccodes/definitions/grib2/tables/24/5.1.table | 6 + eccodes/definitions/grib2/tables/24/5.2.table | 8 + .../definitions/grib2/tables/24/5.25.table | 9 + .../definitions/grib2/tables/24/5.26.table | 5 + eccodes/definitions/grib2/tables/24/5.3.table | 7 + eccodes/definitions/grib2/tables/24/5.4.table | 6 + .../definitions/grib2/tables/24/5.40.table | 5 + .../definitions/grib2/tables/24/5.40000.table | 5 + eccodes/definitions/grib2/tables/24/5.5.table | 7 + .../definitions/grib2/tables/24/5.50002.table | 19 + eccodes/definitions/grib2/tables/24/5.6.table | 7 + eccodes/definitions/grib2/tables/24/5.7.table | 7 + eccodes/definitions/grib2/tables/24/6.0.table | 6 + .../grib2/tables/24/stepType.table | 2 + eccodes/definitions/grib2/tables/25/0.0.table | 13 + eccodes/definitions/grib2/tables/25/1.0.table | 29 + eccodes/definitions/grib2/tables/25/1.1.table | 4 + eccodes/definitions/grib2/tables/25/1.2.table | 8 + eccodes/definitions/grib2/tables/25/1.3.table | 16 + eccodes/definitions/grib2/tables/25/1.4.table | 13 + eccodes/definitions/grib2/tables/25/1.5.table | 7 + eccodes/definitions/grib2/tables/25/1.6.table | 8 + eccodes/definitions/grib2/tables/25/3.0.table | 6 + eccodes/definitions/grib2/tables/25/3.1.table | 54 + .../definitions/grib2/tables/25/3.10.table | 8 + .../definitions/grib2/tables/25/3.11.table | 7 + .../definitions/grib2/tables/25/3.15.table | 23 + eccodes/definitions/grib2/tables/25/3.2.table | 16 + .../definitions/grib2/tables/25/3.20.table | 6 + .../definitions/grib2/tables/25/3.21.table | 8 + .../definitions/grib2/tables/25/3.25.table | 10 + eccodes/definitions/grib2/tables/25/3.3.table | 9 + eccodes/definitions/grib2/tables/25/3.4.table | 17 + eccodes/definitions/grib2/tables/25/3.5.table | 5 + eccodes/definitions/grib2/tables/25/3.6.table | 3 + eccodes/definitions/grib2/tables/25/3.7.table | 5 + eccodes/definitions/grib2/tables/25/3.8.table | 7 + eccodes/definitions/grib2/tables/25/3.9.table | 4 + eccodes/definitions/grib2/tables/25/4.0.table | 86 + .../definitions/grib2/tables/25/4.1.0.table | 27 + .../definitions/grib2/tables/25/4.1.1.table | 7 + .../definitions/grib2/tables/25/4.1.10.table | 10 + .../definitions/grib2/tables/25/4.1.192.table | 4 + .../definitions/grib2/tables/25/4.1.2.table | 10 + .../definitions/grib2/tables/25/4.1.20.table | 7 + .../definitions/grib2/tables/25/4.1.3.table | 11 + .../definitions/grib2/tables/25/4.1.4.table | 15 + .../definitions/grib2/tables/25/4.10.table | 16 + .../definitions/grib2/tables/25/4.11.table | 10 + .../definitions/grib2/tables/25/4.12.table | 7 + .../definitions/grib2/tables/25/4.13.table | 6 + .../definitions/grib2/tables/25/4.14.table | 6 + .../definitions/grib2/tables/25/4.15.table | 11 + .../definitions/grib2/tables/25/4.16.table | 9 + .../definitions/grib2/tables/25/4.192.table | 4 + .../definitions/grib2/tables/25/4.2.0.0.table | 34 + .../definitions/grib2/tables/25/4.2.0.1.table | 141 + .../grib2/tables/25/4.2.0.13.table | 5 + .../grib2/tables/25/4.2.0.14.table | 7 + .../grib2/tables/25/4.2.0.15.table | 21 + .../grib2/tables/25/4.2.0.16.table | 10 + .../grib2/tables/25/4.2.0.17.table | 6 + .../grib2/tables/25/4.2.0.18.table | 23 + .../grib2/tables/25/4.2.0.19.table | 42 + .../grib2/tables/25/4.2.0.190.table | 5 + .../grib2/tables/25/4.2.0.191.table | 8 + .../definitions/grib2/tables/25/4.2.0.2.table | 51 + .../grib2/tables/25/4.2.0.20.table | 64 + .../definitions/grib2/tables/25/4.2.0.3.table | 36 + .../definitions/grib2/tables/25/4.2.0.4.table | 24 + .../definitions/grib2/tables/25/4.2.0.5.table | 13 + .../definitions/grib2/tables/25/4.2.0.6.table | 49 + .../definitions/grib2/tables/25/4.2.0.7.table | 24 + .../definitions/grib2/tables/25/4.2.1.0.table | 21 + .../definitions/grib2/tables/25/4.2.1.1.table | 7 + .../definitions/grib2/tables/25/4.2.1.2.table | 15 + .../grib2/tables/25/4.2.10.0.table | 69 + .../grib2/tables/25/4.2.10.1.table | 9 + .../grib2/tables/25/4.2.10.191.table | 8 + .../grib2/tables/25/4.2.10.2.table | 17 + .../grib2/tables/25/4.2.10.3.table | 8 + .../grib2/tables/25/4.2.10.4.table | 24 + .../definitions/grib2/tables/25/4.2.2.0.table | 44 + .../definitions/grib2/tables/25/4.2.2.3.table | 33 + .../definitions/grib2/tables/25/4.2.2.4.table | 16 + .../definitions/grib2/tables/25/4.2.2.5.table | 6 + .../grib2/tables/25/4.2.20.0.table | 6 + .../grib2/tables/25/4.2.20.1.table | 14 + .../grib2/tables/25/4.2.20.2.table | 5 + .../definitions/grib2/tables/25/4.2.3.0.table | 14 + .../definitions/grib2/tables/25/4.2.3.1.table | 35 + .../definitions/grib2/tables/25/4.2.3.2.table | 24 + .../definitions/grib2/tables/25/4.2.3.3.table | 4 + .../definitions/grib2/tables/25/4.2.3.4.table | 10 + .../definitions/grib2/tables/25/4.2.3.5.table | 7 + .../definitions/grib2/tables/25/4.2.3.6.table | 7 + .../definitions/grib2/tables/25/4.2.4.0.table | 10 + .../definitions/grib2/tables/25/4.2.4.1.table | 8 + .../grib2/tables/25/4.2.4.10.table | 12 + .../definitions/grib2/tables/25/4.2.4.2.table | 18 + .../definitions/grib2/tables/25/4.2.4.3.table | 12 + .../definitions/grib2/tables/25/4.2.4.4.table | 11 + .../definitions/grib2/tables/25/4.2.4.5.table | 8 + .../definitions/grib2/tables/25/4.2.4.6.table | 11 + .../definitions/grib2/tables/25/4.2.4.7.table | 8 + .../definitions/grib2/tables/25/4.2.4.8.table | 12 + .../definitions/grib2/tables/25/4.2.4.9.table | 7 + .../definitions/grib2/tables/25/4.201.table | 17 + .../definitions/grib2/tables/25/4.202.table | 4 + .../definitions/grib2/tables/25/4.203.table | 26 + .../definitions/grib2/tables/25/4.204.table | 9 + .../definitions/grib2/tables/25/4.205.table | 6 + .../definitions/grib2/tables/25/4.206.table | 6 + .../definitions/grib2/tables/25/4.207.table | 10 + .../definitions/grib2/tables/25/4.208.table | 9 + .../definitions/grib2/tables/25/4.209.table | 9 + .../definitions/grib2/tables/25/4.210.table | 6 + .../definitions/grib2/tables/25/4.211.table | 7 + .../definitions/grib2/tables/25/4.212.table | 18 + .../definitions/grib2/tables/25/4.213.table | 16 + .../definitions/grib2/tables/25/4.215.table | 9 + .../definitions/grib2/tables/25/4.216.table | 5 + .../definitions/grib2/tables/25/4.217.table | 8 + .../definitions/grib2/tables/25/4.218.table | 46 + .../definitions/grib2/tables/25/4.219.table | 8 + .../definitions/grib2/tables/25/4.220.table | 6 + .../definitions/grib2/tables/25/4.221.table | 6 + .../definitions/grib2/tables/25/4.222.table | 6 + .../definitions/grib2/tables/25/4.223.table | 5 + .../definitions/grib2/tables/25/4.224.table | 18 + .../definitions/grib2/tables/25/4.225.table | 2 + .../definitions/grib2/tables/25/4.227.table | 9 + .../definitions/grib2/tables/25/4.228.table | 8 + .../definitions/grib2/tables/25/4.230.table | 512 + .../definitions/grib2/tables/25/4.233.table | 512 + .../definitions/grib2/tables/25/4.234.table | 21 + .../definitions/grib2/tables/25/4.236.table | 8 + .../definitions/grib2/tables/25/4.238.table | 16 + .../definitions/grib2/tables/25/4.240.table | 13 + .../definitions/grib2/tables/25/4.241.table | 9 + .../definitions/grib2/tables/25/4.242.table | 7 + .../definitions/grib2/tables/25/4.243.table | 43 + .../definitions/grib2/tables/25/4.244.table | 7 + eccodes/definitions/grib2/tables/25/4.3.table | 23 + eccodes/definitions/grib2/tables/25/4.4.table | 17 + eccodes/definitions/grib2/tables/25/4.5.table | 84 + eccodes/definitions/grib2/tables/25/4.6.table | 9 + eccodes/definitions/grib2/tables/25/4.7.table | 14 + eccodes/definitions/grib2/tables/25/4.8.table | 6 + eccodes/definitions/grib2/tables/25/4.9.table | 13 + .../definitions/grib2/tables/25/4.91.table | 16 + eccodes/definitions/grib2/tables/25/5.0.table | 27 + eccodes/definitions/grib2/tables/25/5.1.table | 6 + eccodes/definitions/grib2/tables/25/5.2.table | 8 + .../definitions/grib2/tables/25/5.25.table | 9 + .../definitions/grib2/tables/25/5.26.table | 5 + eccodes/definitions/grib2/tables/25/5.3.table | 7 + eccodes/definitions/grib2/tables/25/5.4.table | 6 + .../definitions/grib2/tables/25/5.40.table | 5 + .../definitions/grib2/tables/25/5.40000.table | 5 + eccodes/definitions/grib2/tables/25/5.5.table | 7 + .../definitions/grib2/tables/25/5.50002.table | 19 + eccodes/definitions/grib2/tables/25/5.6.table | 7 + eccodes/definitions/grib2/tables/25/5.7.table | 7 + eccodes/definitions/grib2/tables/25/6.0.table | 6 + .../grib2/tables/25/stepType.table | 2 + eccodes/definitions/grib2/tables/26/0.0.table | 13 + eccodes/definitions/grib2/tables/26/1.0.table | 30 + eccodes/definitions/grib2/tables/26/1.1.table | 4 + eccodes/definitions/grib2/tables/26/1.2.table | 8 + eccodes/definitions/grib2/tables/26/1.3.table | 16 + eccodes/definitions/grib2/tables/26/1.4.table | 13 + eccodes/definitions/grib2/tables/26/1.5.table | 7 + eccodes/definitions/grib2/tables/26/1.6.table | 8 + eccodes/definitions/grib2/tables/26/3.0.table | 6 + eccodes/definitions/grib2/tables/26/3.1.table | 54 + .../definitions/grib2/tables/26/3.10.table | 8 + .../definitions/grib2/tables/26/3.11.table | 7 + .../definitions/grib2/tables/26/3.15.table | 23 + eccodes/definitions/grib2/tables/26/3.2.table | 16 + .../definitions/grib2/tables/26/3.20.table | 6 + .../definitions/grib2/tables/26/3.21.table | 8 + .../definitions/grib2/tables/26/3.25.table | 10 + eccodes/definitions/grib2/tables/26/3.3.table | 9 + eccodes/definitions/grib2/tables/26/3.4.table | 17 + eccodes/definitions/grib2/tables/26/3.5.table | 5 + eccodes/definitions/grib2/tables/26/3.6.table | 3 + eccodes/definitions/grib2/tables/26/3.7.table | 5 + eccodes/definitions/grib2/tables/26/3.8.table | 7 + eccodes/definitions/grib2/tables/26/3.9.table | 4 + eccodes/definitions/grib2/tables/26/4.0.table | 84 + .../definitions/grib2/tables/26/4.1.0.table | 27 + .../definitions/grib2/tables/26/4.1.1.table | 7 + .../definitions/grib2/tables/26/4.1.10.table | 10 + .../definitions/grib2/tables/26/4.1.192.table | 4 + .../definitions/grib2/tables/26/4.1.2.table | 10 + .../definitions/grib2/tables/26/4.1.20.table | 7 + .../definitions/grib2/tables/26/4.1.3.table | 11 + .../definitions/grib2/tables/26/4.1.4.table | 15 + .../definitions/grib2/tables/26/4.10.table | 16 + .../definitions/grib2/tables/26/4.11.table | 10 + .../definitions/grib2/tables/26/4.12.table | 7 + .../definitions/grib2/tables/26/4.13.table | 6 + .../definitions/grib2/tables/26/4.14.table | 6 + .../definitions/grib2/tables/26/4.15.table | 11 + .../definitions/grib2/tables/26/4.16.table | 10 + .../definitions/grib2/tables/26/4.192.table | 4 + .../definitions/grib2/tables/26/4.2.0.0.table | 36 + .../definitions/grib2/tables/26/4.2.0.1.table | 150 + .../grib2/tables/26/4.2.0.13.table | 5 + .../grib2/tables/26/4.2.0.14.table | 7 + .../grib2/tables/26/4.2.0.15.table | 21 + .../grib2/tables/26/4.2.0.16.table | 10 + .../grib2/tables/26/4.2.0.17.table | 6 + .../grib2/tables/26/4.2.0.18.table | 23 + .../grib2/tables/26/4.2.0.19.table | 45 + .../grib2/tables/26/4.2.0.190.table | 5 + .../grib2/tables/26/4.2.0.191.table | 8 + .../definitions/grib2/tables/26/4.2.0.2.table | 51 + .../grib2/tables/26/4.2.0.20.table | 64 + .../definitions/grib2/tables/26/4.2.0.3.table | 36 + .../definitions/grib2/tables/26/4.2.0.4.table | 25 + .../definitions/grib2/tables/26/4.2.0.5.table | 13 + .../definitions/grib2/tables/26/4.2.0.6.table | 50 + .../definitions/grib2/tables/26/4.2.0.7.table | 25 + .../definitions/grib2/tables/26/4.2.1.0.table | 21 + .../definitions/grib2/tables/26/4.2.1.1.table | 7 + .../definitions/grib2/tables/26/4.2.1.2.table | 15 + .../grib2/tables/26/4.2.10.0.table | 69 + .../grib2/tables/26/4.2.10.1.table | 9 + .../grib2/tables/26/4.2.10.191.table | 8 + .../grib2/tables/26/4.2.10.2.table | 17 + .../grib2/tables/26/4.2.10.3.table | 8 + .../grib2/tables/26/4.2.10.4.table | 24 + .../definitions/grib2/tables/26/4.2.2.0.table | 44 + .../definitions/grib2/tables/26/4.2.2.3.table | 33 + .../definitions/grib2/tables/26/4.2.2.4.table | 24 + .../definitions/grib2/tables/26/4.2.2.5.table | 6 + .../grib2/tables/26/4.2.20.0.table | 6 + .../grib2/tables/26/4.2.20.1.table | 14 + .../grib2/tables/26/4.2.20.2.table | 5 + .../definitions/grib2/tables/26/4.2.3.0.table | 14 + .../definitions/grib2/tables/26/4.2.3.1.table | 35 + .../definitions/grib2/tables/26/4.2.3.2.table | 24 + .../definitions/grib2/tables/26/4.2.3.3.table | 4 + .../definitions/grib2/tables/26/4.2.3.4.table | 10 + .../definitions/grib2/tables/26/4.2.3.5.table | 7 + .../definitions/grib2/tables/26/4.2.3.6.table | 7 + .../definitions/grib2/tables/26/4.2.4.0.table | 10 + .../definitions/grib2/tables/26/4.2.4.1.table | 8 + .../grib2/tables/26/4.2.4.10.table | 12 + .../definitions/grib2/tables/26/4.2.4.2.table | 18 + .../definitions/grib2/tables/26/4.2.4.3.table | 12 + .../definitions/grib2/tables/26/4.2.4.4.table | 11 + .../definitions/grib2/tables/26/4.2.4.5.table | 8 + .../definitions/grib2/tables/26/4.2.4.6.table | 11 + .../definitions/grib2/tables/26/4.2.4.7.table | 8 + .../definitions/grib2/tables/26/4.2.4.8.table | 12 + .../definitions/grib2/tables/26/4.2.4.9.table | 7 + .../definitions/grib2/tables/26/4.201.table | 17 + .../definitions/grib2/tables/26/4.202.table | 4 + .../definitions/grib2/tables/26/4.203.table | 26 + .../definitions/grib2/tables/26/4.204.table | 9 + .../definitions/grib2/tables/26/4.205.table | 6 + .../definitions/grib2/tables/26/4.206.table | 6 + .../definitions/grib2/tables/26/4.207.table | 10 + .../definitions/grib2/tables/26/4.208.table | 9 + .../definitions/grib2/tables/26/4.209.table | 9 + .../definitions/grib2/tables/26/4.210.table | 6 + .../definitions/grib2/tables/26/4.211.table | 7 + .../definitions/grib2/tables/26/4.212.table | 18 + .../definitions/grib2/tables/26/4.213.table | 16 + .../definitions/grib2/tables/26/4.214.table | 11 + .../definitions/grib2/tables/26/4.215.table | 9 + .../definitions/grib2/tables/26/4.216.table | 5 + .../definitions/grib2/tables/26/4.217.table | 8 + .../definitions/grib2/tables/26/4.218.table | 46 + .../definitions/grib2/tables/26/4.219.table | 8 + .../definitions/grib2/tables/26/4.220.table | 6 + .../definitions/grib2/tables/26/4.221.table | 6 + .../definitions/grib2/tables/26/4.222.table | 6 + .../definitions/grib2/tables/26/4.223.table | 5 + .../definitions/grib2/tables/26/4.224.table | 18 + .../definitions/grib2/tables/26/4.225.table | 2 + .../definitions/grib2/tables/26/4.227.table | 9 + .../definitions/grib2/tables/26/4.228.table | 8 + .../definitions/grib2/tables/26/4.230.table | 527 + .../definitions/grib2/tables/26/4.233.table | 527 + .../definitions/grib2/tables/26/4.234.table | 21 + .../definitions/grib2/tables/26/4.236.table | 8 + .../definitions/grib2/tables/26/4.238.table | 32 + .../definitions/grib2/tables/26/4.240.table | 13 + .../definitions/grib2/tables/26/4.241.table | 9 + .../definitions/grib2/tables/26/4.242.table | 7 + .../definitions/grib2/tables/26/4.243.table | 43 + .../definitions/grib2/tables/26/4.244.table | 7 + .../definitions/grib2/tables/26/4.246.table | 7 + .../definitions/grib2/tables/26/4.247.table | 7 + eccodes/definitions/grib2/tables/26/4.3.table | 23 + eccodes/definitions/grib2/tables/26/4.4.table | 17 + eccodes/definitions/grib2/tables/26/4.5.table | 86 + eccodes/definitions/grib2/tables/26/4.6.table | 9 + eccodes/definitions/grib2/tables/26/4.7.table | 14 + eccodes/definitions/grib2/tables/26/4.8.table | 6 + eccodes/definitions/grib2/tables/26/4.9.table | 13 + .../definitions/grib2/tables/26/4.91.table | 16 + eccodes/definitions/grib2/tables/26/5.0.table | 22 + eccodes/definitions/grib2/tables/26/5.1.table | 6 + eccodes/definitions/grib2/tables/26/5.2.table | 8 + .../definitions/grib2/tables/26/5.25.table | 9 + .../definitions/grib2/tables/26/5.26.table | 5 + eccodes/definitions/grib2/tables/26/5.3.table | 7 + eccodes/definitions/grib2/tables/26/5.4.table | 6 + .../definitions/grib2/tables/26/5.40.table | 5 + eccodes/definitions/grib2/tables/26/5.5.table | 7 + eccodes/definitions/grib2/tables/26/5.6.table | 7 + eccodes/definitions/grib2/tables/26/5.7.table | 7 + eccodes/definitions/grib2/tables/26/6.0.table | 6 + .../grib2/tables/26/stepType.table | 2 + eccodes/definitions/grib2/tables/3/0.0.table | 10 + eccodes/definitions/grib2/tables/3/1.0.table | 7 + eccodes/definitions/grib2/tables/3/1.1.table | 5 + eccodes/definitions/grib2/tables/3/1.2.table | 8 + eccodes/definitions/grib2/tables/3/1.3.table | 10 + eccodes/definitions/grib2/tables/3/1.4.table | 13 + eccodes/definitions/grib2/tables/3/3.0.table | 6 + eccodes/definitions/grib2/tables/3/3.1.table | 43 + eccodes/definitions/grib2/tables/3/3.10.table | 7 + eccodes/definitions/grib2/tables/3/3.11.table | 5 + eccodes/definitions/grib2/tables/3/3.15.table | 17 + eccodes/definitions/grib2/tables/3/3.2.table | 11 + eccodes/definitions/grib2/tables/3/3.20.table | 6 + eccodes/definitions/grib2/tables/3/3.21.table | 8 + eccodes/definitions/grib2/tables/3/3.3.table | 7 + eccodes/definitions/grib2/tables/3/3.4.table | 9 + eccodes/definitions/grib2/tables/3/3.5.table | 5 + eccodes/definitions/grib2/tables/3/3.6.table | 2 + eccodes/definitions/grib2/tables/3/3.7.table | 5 + eccodes/definitions/grib2/tables/3/3.8.table | 8 + eccodes/definitions/grib2/tables/3/3.9.table | 3 + eccodes/definitions/grib2/tables/3/4.0.table | 38 + .../definitions/grib2/tables/3/4.1.0.table | 30 + .../definitions/grib2/tables/3/4.1.1.table | 9 + .../definitions/grib2/tables/3/4.1.10.table | 12 + .../definitions/grib2/tables/3/4.1.2.table | 11 + .../definitions/grib2/tables/3/4.1.3.table | 9 + eccodes/definitions/grib2/tables/3/4.1.table | 5 + eccodes/definitions/grib2/tables/3/4.10.table | 14 + eccodes/definitions/grib2/tables/3/4.11.table | 9 + eccodes/definitions/grib2/tables/3/4.12.table | 69 + eccodes/definitions/grib2/tables/3/4.13.table | 68 + eccodes/definitions/grib2/tables/3/4.14.table | 68 + eccodes/definitions/grib2/tables/3/4.15.table | 68 + .../definitions/grib2/tables/3/4.151.table | 70 + .../definitions/grib2/tables/3/4.2.0.0.table | 23 + .../definitions/grib2/tables/3/4.2.0.1.table | 62 + .../definitions/grib2/tables/3/4.2.0.13.table | 6 + .../definitions/grib2/tables/3/4.2.0.14.table | 7 + .../definitions/grib2/tables/3/4.2.0.15.table | 14 + .../definitions/grib2/tables/3/4.2.0.18.table | 14 + .../definitions/grib2/tables/3/4.2.0.19.table | 24 + .../grib2/tables/3/4.2.0.190.table | 6 + .../grib2/tables/3/4.2.0.191.table | 6 + .../definitions/grib2/tables/3/4.2.0.2.table | 35 + .../definitions/grib2/tables/3/4.2.0.20.table | 13 + .../definitions/grib2/tables/3/4.2.0.3.table | 25 + .../definitions/grib2/tables/3/4.2.0.4.table | 14 + .../definitions/grib2/tables/3/4.2.0.5.table | 11 + .../definitions/grib2/tables/3/4.2.0.6.table | 30 + .../definitions/grib2/tables/3/4.2.0.7.table | 18 + .../definitions/grib2/tables/3/4.2.1.0.table | 9 + .../definitions/grib2/tables/3/4.2.1.1.table | 8 + .../definitions/grib2/tables/3/4.2.10.0.table | 20 + .../definitions/grib2/tables/3/4.2.10.1.table | 8 + .../definitions/grib2/tables/3/4.2.10.2.table | 12 + .../definitions/grib2/tables/3/4.2.10.3.table | 6 + .../definitions/grib2/tables/3/4.2.10.4.table | 9 + .../definitions/grib2/tables/3/4.2.2.0.table | 29 + .../definitions/grib2/tables/3/4.2.2.3.table | 16 + .../definitions/grib2/tables/3/4.2.3.0.table | 14 + .../definitions/grib2/tables/3/4.2.3.1.table | 11 + .../definitions/grib2/tables/3/4.201.table | 71 + .../definitions/grib2/tables/3/4.202.table | 66 + .../definitions/grib2/tables/3/4.203.table | 26 + .../definitions/grib2/tables/3/4.204.table | 71 + .../definitions/grib2/tables/3/4.205.table | 68 + .../definitions/grib2/tables/3/4.206.table | 68 + .../definitions/grib2/tables/3/4.207.table | 70 + .../definitions/grib2/tables/3/4.208.table | 71 + .../definitions/grib2/tables/3/4.209.table | 70 + .../definitions/grib2/tables/3/4.210.table | 68 + .../definitions/grib2/tables/3/4.211.table | 69 + .../definitions/grib2/tables/3/4.212.table | 79 + .../definitions/grib2/tables/3/4.213.table | 77 + .../definitions/grib2/tables/3/4.215.table | 10 + .../definitions/grib2/tables/3/4.216.table | 3 + .../definitions/grib2/tables/3/4.217.table | 70 + .../definitions/grib2/tables/3/4.220.table | 68 + .../definitions/grib2/tables/3/4.221.table | 68 + .../definitions/grib2/tables/3/4.230.table | 47 + eccodes/definitions/grib2/tables/3/4.3.table | 13 + eccodes/definitions/grib2/tables/3/4.4.table | 16 + eccodes/definitions/grib2/tables/3/4.5.table | 33 + eccodes/definitions/grib2/tables/3/4.6.table | 8 + eccodes/definitions/grib2/tables/3/4.7.table | 73 + eccodes/definitions/grib2/tables/3/4.8.table | 68 + eccodes/definitions/grib2/tables/3/4.9.table | 71 + eccodes/definitions/grib2/tables/3/4.91.table | 78 + eccodes/definitions/grib2/tables/3/5.0.table | 16 + eccodes/definitions/grib2/tables/3/5.1.table | 5 + eccodes/definitions/grib2/tables/3/5.2.table | 6 + eccodes/definitions/grib2/tables/3/5.3.table | 6 + eccodes/definitions/grib2/tables/3/5.4.table | 5 + eccodes/definitions/grib2/tables/3/5.40.table | 5 + .../definitions/grib2/tables/3/5.40000.table | 5 + eccodes/definitions/grib2/tables/3/5.5.table | 7 + .../definitions/grib2/tables/3/5.50002.table | 19 + eccodes/definitions/grib2/tables/3/5.6.table | 68 + eccodes/definitions/grib2/tables/3/5.7.table | 6 + eccodes/definitions/grib2/tables/3/5.8.table | 3 + eccodes/definitions/grib2/tables/3/5.9.table | 4 + eccodes/definitions/grib2/tables/3/6.0.table | 7 + .../definitions/grib2/tables/3/stepType.table | 2 + eccodes/definitions/grib2/tables/4/0.0.table | 10 + eccodes/definitions/grib2/tables/4/1.0.table | 7 + eccodes/definitions/grib2/tables/4/1.1.table | 5 + eccodes/definitions/grib2/tables/4/1.2.table | 8 + eccodes/definitions/grib2/tables/4/1.3.table | 10 + eccodes/definitions/grib2/tables/4/1.4.table | 13 + eccodes/definitions/grib2/tables/4/3.0.table | 6 + eccodes/definitions/grib2/tables/4/3.1.table | 43 + eccodes/definitions/grib2/tables/4/3.10.table | 7 + eccodes/definitions/grib2/tables/4/3.11.table | 5 + eccodes/definitions/grib2/tables/4/3.15.table | 22 + eccodes/definitions/grib2/tables/4/3.2.table | 11 + eccodes/definitions/grib2/tables/4/3.20.table | 6 + eccodes/definitions/grib2/tables/4/3.21.table | 8 + eccodes/definitions/grib2/tables/4/3.3.table | 7 + eccodes/definitions/grib2/tables/4/3.4.table | 9 + eccodes/definitions/grib2/tables/4/3.5.table | 5 + eccodes/definitions/grib2/tables/4/3.6.table | 2 + eccodes/definitions/grib2/tables/4/3.7.table | 5 + eccodes/definitions/grib2/tables/4/3.8.table | 8 + eccodes/definitions/grib2/tables/4/3.9.table | 3 + eccodes/definitions/grib2/tables/4/4.0.table | 39 + .../definitions/grib2/tables/4/4.1.0.table | 30 + .../definitions/grib2/tables/4/4.1.1.table | 9 + .../definitions/grib2/tables/4/4.1.10.table | 12 + .../definitions/grib2/tables/4/4.1.192.table | 4 + .../definitions/grib2/tables/4/4.1.2.table | 11 + .../definitions/grib2/tables/4/4.1.3.table | 9 + eccodes/definitions/grib2/tables/4/4.1.table | 5 + eccodes/definitions/grib2/tables/4/4.10.table | 14 + eccodes/definitions/grib2/tables/4/4.11.table | 9 + eccodes/definitions/grib2/tables/4/4.12.table | 69 + eccodes/definitions/grib2/tables/4/4.13.table | 68 + eccodes/definitions/grib2/tables/4/4.14.table | 68 + eccodes/definitions/grib2/tables/4/4.15.table | 68 + .../definitions/grib2/tables/4/4.151.table | 70 + .../definitions/grib2/tables/4/4.2.0.0.table | 23 + .../definitions/grib2/tables/4/4.2.0.1.table | 62 + .../definitions/grib2/tables/4/4.2.0.13.table | 6 + .../definitions/grib2/tables/4/4.2.0.14.table | 7 + .../definitions/grib2/tables/4/4.2.0.15.table | 14 + .../definitions/grib2/tables/4/4.2.0.18.table | 14 + .../definitions/grib2/tables/4/4.2.0.19.table | 24 + .../grib2/tables/4/4.2.0.190.table | 6 + .../grib2/tables/4/4.2.0.191.table | 6 + .../definitions/grib2/tables/4/4.2.0.2.table | 35 + .../definitions/grib2/tables/4/4.2.0.20.table | 13 + .../definitions/grib2/tables/4/4.2.0.3.table | 25 + .../definitions/grib2/tables/4/4.2.0.4.table | 14 + .../definitions/grib2/tables/4/4.2.0.5.table | 11 + .../definitions/grib2/tables/4/4.2.0.6.table | 30 + .../definitions/grib2/tables/4/4.2.0.7.table | 18 + .../definitions/grib2/tables/4/4.2.1.0.table | 11 + .../definitions/grib2/tables/4/4.2.1.1.table | 8 + .../definitions/grib2/tables/4/4.2.10.0.table | 20 + .../definitions/grib2/tables/4/4.2.10.1.table | 8 + .../definitions/grib2/tables/4/4.2.10.2.table | 12 + .../definitions/grib2/tables/4/4.2.10.3.table | 6 + .../definitions/grib2/tables/4/4.2.10.4.table | 9 + .../grib2/tables/4/4.2.192.0.table | 2 + .../grib2/tables/4/4.2.192.1.table | 2 + .../grib2/tables/4/4.2.192.10.table | 2 + .../grib2/tables/4/4.2.192.100.table | 2 + .../grib2/tables/4/4.2.192.101.table | 2 + .../grib2/tables/4/4.2.192.102.table | 2 + .../grib2/tables/4/4.2.192.103.table | 2 + .../grib2/tables/4/4.2.192.104.table | 2 + .../grib2/tables/4/4.2.192.105.table | 2 + .../grib2/tables/4/4.2.192.106.table | 2 + .../grib2/tables/4/4.2.192.107.table | 2 + .../grib2/tables/4/4.2.192.108.table | 2 + .../grib2/tables/4/4.2.192.109.table | 2 + .../grib2/tables/4/4.2.192.11.table | 2 + .../grib2/tables/4/4.2.192.110.table | 2 + .../grib2/tables/4/4.2.192.111.table | 2 + .../grib2/tables/4/4.2.192.112.table | 2 + .../grib2/tables/4/4.2.192.113.table | 2 + .../grib2/tables/4/4.2.192.114.table | 2 + .../grib2/tables/4/4.2.192.115.table | 2 + .../grib2/tables/4/4.2.192.116.table | 2 + .../grib2/tables/4/4.2.192.117.table | 2 + .../grib2/tables/4/4.2.192.118.table | 2 + .../grib2/tables/4/4.2.192.119.table | 2 + .../grib2/tables/4/4.2.192.12.table | 2 + .../grib2/tables/4/4.2.192.120.table | 2 + .../grib2/tables/4/4.2.192.121.table | 2 + .../grib2/tables/4/4.2.192.122.table | 2 + .../grib2/tables/4/4.2.192.123.table | 2 + .../grib2/tables/4/4.2.192.124.table | 2 + .../grib2/tables/4/4.2.192.125.table | 2 + .../grib2/tables/4/4.2.192.126.table | 2 + .../grib2/tables/4/4.2.192.127.table | 2 + .../grib2/tables/4/4.2.192.128.table | 2 + .../grib2/tables/4/4.2.192.129.table | 2 + .../grib2/tables/4/4.2.192.13.table | 2 + .../grib2/tables/4/4.2.192.130.table | 2 + .../grib2/tables/4/4.2.192.131.table | 2 + .../grib2/tables/4/4.2.192.132.table | 2 + .../grib2/tables/4/4.2.192.133.table | 2 + .../grib2/tables/4/4.2.192.134.table | 2 + .../grib2/tables/4/4.2.192.135.table | 2 + .../grib2/tables/4/4.2.192.136.table | 2 + .../grib2/tables/4/4.2.192.137.table | 2 + .../grib2/tables/4/4.2.192.138.table | 2 + .../grib2/tables/4/4.2.192.139.table | 2 + .../grib2/tables/4/4.2.192.14.table | 2 + .../grib2/tables/4/4.2.192.140.table | 2 + .../grib2/tables/4/4.2.192.141.table | 2 + .../grib2/tables/4/4.2.192.142.table | 2 + .../grib2/tables/4/4.2.192.143.table | 2 + .../grib2/tables/4/4.2.192.144.table | 2 + .../grib2/tables/4/4.2.192.145.table | 2 + .../grib2/tables/4/4.2.192.146.table | 2 + .../grib2/tables/4/4.2.192.147.table | 2 + .../grib2/tables/4/4.2.192.148.table | 2 + .../grib2/tables/4/4.2.192.149.table | 2 + .../grib2/tables/4/4.2.192.15.table | 2 + .../grib2/tables/4/4.2.192.150.table | 2 + .../grib2/tables/4/4.2.192.151.table | 2 + .../grib2/tables/4/4.2.192.152.table | 2 + .../grib2/tables/4/4.2.192.153.table | 2 + .../grib2/tables/4/4.2.192.154.table | 2 + .../grib2/tables/4/4.2.192.155.table | 2 + .../grib2/tables/4/4.2.192.156.table | 2 + .../grib2/tables/4/4.2.192.157.table | 2 + .../grib2/tables/4/4.2.192.158.table | 2 + .../grib2/tables/4/4.2.192.159.table | 2 + .../grib2/tables/4/4.2.192.16.table | 2 + .../grib2/tables/4/4.2.192.160.table | 2 + .../grib2/tables/4/4.2.192.161.table | 2 + .../grib2/tables/4/4.2.192.162.table | 2 + .../grib2/tables/4/4.2.192.163.table | 2 + .../grib2/tables/4/4.2.192.164.table | 2 + .../grib2/tables/4/4.2.192.165.table | 2 + .../grib2/tables/4/4.2.192.166.table | 2 + .../grib2/tables/4/4.2.192.167.table | 2 + .../grib2/tables/4/4.2.192.168.table | 2 + .../grib2/tables/4/4.2.192.169.table | 2 + .../grib2/tables/4/4.2.192.17.table | 2 + .../grib2/tables/4/4.2.192.170.table | 2 + .../grib2/tables/4/4.2.192.171.table | 2 + .../grib2/tables/4/4.2.192.172.table | 2 + .../grib2/tables/4/4.2.192.173.table | 2 + .../grib2/tables/4/4.2.192.174.table | 2 + .../grib2/tables/4/4.2.192.175.table | 2 + .../grib2/tables/4/4.2.192.176.table | 2 + .../grib2/tables/4/4.2.192.177.table | 2 + .../grib2/tables/4/4.2.192.178.table | 2 + .../grib2/tables/4/4.2.192.179.table | 2 + .../grib2/tables/4/4.2.192.18.table | 2 + .../grib2/tables/4/4.2.192.180.table | 2 + .../grib2/tables/4/4.2.192.181.table | 2 + .../grib2/tables/4/4.2.192.182.table | 2 + .../grib2/tables/4/4.2.192.183.table | 2 + .../grib2/tables/4/4.2.192.184.table | 2 + .../grib2/tables/4/4.2.192.185.table | 2 + .../grib2/tables/4/4.2.192.186.table | 2 + .../grib2/tables/4/4.2.192.187.table | 2 + .../grib2/tables/4/4.2.192.188.table | 2 + .../grib2/tables/4/4.2.192.189.table | 2 + .../grib2/tables/4/4.2.192.19.table | 2 + .../grib2/tables/4/4.2.192.190.table | 2 + .../grib2/tables/4/4.2.192.191.table | 2 + .../grib2/tables/4/4.2.192.192.table | 2 + .../grib2/tables/4/4.2.192.193.table | 2 + .../grib2/tables/4/4.2.192.194.table | 2 + .../grib2/tables/4/4.2.192.195.table | 2 + .../grib2/tables/4/4.2.192.196.table | 2 + .../grib2/tables/4/4.2.192.197.table | 2 + .../grib2/tables/4/4.2.192.198.table | 2 + .../grib2/tables/4/4.2.192.199.table | 2 + .../grib2/tables/4/4.2.192.2.table | 2 + .../grib2/tables/4/4.2.192.20.table | 2 + .../grib2/tables/4/4.2.192.200.table | 2 + .../grib2/tables/4/4.2.192.201.table | 2 + .../grib2/tables/4/4.2.192.202.table | 2 + .../grib2/tables/4/4.2.192.203.table | 2 + .../grib2/tables/4/4.2.192.204.table | 2 + .../grib2/tables/4/4.2.192.205.table | 2 + .../grib2/tables/4/4.2.192.206.table | 2 + .../grib2/tables/4/4.2.192.207.table | 2 + .../grib2/tables/4/4.2.192.208.table | 2 + .../grib2/tables/4/4.2.192.209.table | 2 + .../grib2/tables/4/4.2.192.21.table | 2 + .../grib2/tables/4/4.2.192.210.table | 2 + .../grib2/tables/4/4.2.192.211.table | 2 + .../grib2/tables/4/4.2.192.212.table | 2 + .../grib2/tables/4/4.2.192.213.table | 2 + .../grib2/tables/4/4.2.192.214.table | 2 + .../grib2/tables/4/4.2.192.215.table | 2 + .../grib2/tables/4/4.2.192.216.table | 2 + .../grib2/tables/4/4.2.192.217.table | 2 + .../grib2/tables/4/4.2.192.218.table | 2 + .../grib2/tables/4/4.2.192.219.table | 2 + .../grib2/tables/4/4.2.192.22.table | 2 + .../grib2/tables/4/4.2.192.220.table | 2 + .../grib2/tables/4/4.2.192.221.table | 2 + .../grib2/tables/4/4.2.192.222.table | 2 + .../grib2/tables/4/4.2.192.223.table | 2 + .../grib2/tables/4/4.2.192.224.table | 2 + .../grib2/tables/4/4.2.192.225.table | 2 + .../grib2/tables/4/4.2.192.226.table | 2 + .../grib2/tables/4/4.2.192.227.table | 2 + .../grib2/tables/4/4.2.192.228.table | 2 + .../grib2/tables/4/4.2.192.229.table | 2 + .../grib2/tables/4/4.2.192.23.table | 2 + .../grib2/tables/4/4.2.192.230.table | 2 + .../grib2/tables/4/4.2.192.231.table | 2 + .../grib2/tables/4/4.2.192.232.table | 2 + .../grib2/tables/4/4.2.192.233.table | 2 + .../grib2/tables/4/4.2.192.234.table | 2 + .../grib2/tables/4/4.2.192.235.table | 2 + .../grib2/tables/4/4.2.192.236.table | 2 + .../grib2/tables/4/4.2.192.237.table | 2 + .../grib2/tables/4/4.2.192.238.table | 2 + .../grib2/tables/4/4.2.192.239.table | 2 + .../grib2/tables/4/4.2.192.24.table | 2 + .../grib2/tables/4/4.2.192.240.table | 2 + .../grib2/tables/4/4.2.192.241.table | 2 + .../grib2/tables/4/4.2.192.242.table | 2 + .../grib2/tables/4/4.2.192.243.table | 2 + .../grib2/tables/4/4.2.192.244.table | 2 + .../grib2/tables/4/4.2.192.245.table | 2 + .../grib2/tables/4/4.2.192.246.table | 2 + .../grib2/tables/4/4.2.192.247.table | 2 + .../grib2/tables/4/4.2.192.248.table | 2 + .../grib2/tables/4/4.2.192.249.table | 2 + .../grib2/tables/4/4.2.192.25.table | 2 + .../grib2/tables/4/4.2.192.250.table | 2 + .../grib2/tables/4/4.2.192.251.table | 2 + .../grib2/tables/4/4.2.192.252.table | 2 + .../grib2/tables/4/4.2.192.253.table | 2 + .../grib2/tables/4/4.2.192.254.table | 2 + .../grib2/tables/4/4.2.192.255.table | 2 + .../grib2/tables/4/4.2.192.26.table | 2 + .../grib2/tables/4/4.2.192.27.table | 2 + .../grib2/tables/4/4.2.192.28.table | 2 + .../grib2/tables/4/4.2.192.29.table | 2 + .../grib2/tables/4/4.2.192.3.table | 2 + .../grib2/tables/4/4.2.192.30.table | 2 + .../grib2/tables/4/4.2.192.31.table | 2 + .../grib2/tables/4/4.2.192.32.table | 2 + .../grib2/tables/4/4.2.192.33.table | 2 + .../grib2/tables/4/4.2.192.34.table | 2 + .../grib2/tables/4/4.2.192.35.table | 2 + .../grib2/tables/4/4.2.192.36.table | 2 + .../grib2/tables/4/4.2.192.37.table | 2 + .../grib2/tables/4/4.2.192.38.table | 2 + .../grib2/tables/4/4.2.192.39.table | 2 + .../grib2/tables/4/4.2.192.4.table | 2 + .../grib2/tables/4/4.2.192.40.table | 2 + .../grib2/tables/4/4.2.192.41.table | 2 + .../grib2/tables/4/4.2.192.42.table | 2 + .../grib2/tables/4/4.2.192.43.table | 2 + .../grib2/tables/4/4.2.192.44.table | 2 + .../grib2/tables/4/4.2.192.45.table | 2 + .../grib2/tables/4/4.2.192.46.table | 2 + .../grib2/tables/4/4.2.192.47.table | 2 + .../grib2/tables/4/4.2.192.48.table | 2 + .../grib2/tables/4/4.2.192.49.table | 2 + .../grib2/tables/4/4.2.192.5.table | 2 + .../grib2/tables/4/4.2.192.50.table | 2 + .../grib2/tables/4/4.2.192.51.table | 2 + .../grib2/tables/4/4.2.192.52.table | 2 + .../grib2/tables/4/4.2.192.53.table | 2 + .../grib2/tables/4/4.2.192.54.table | 2 + .../grib2/tables/4/4.2.192.55.table | 2 + .../grib2/tables/4/4.2.192.56.table | 2 + .../grib2/tables/4/4.2.192.57.table | 2 + .../grib2/tables/4/4.2.192.58.table | 2 + .../grib2/tables/4/4.2.192.59.table | 2 + .../grib2/tables/4/4.2.192.6.table | 2 + .../grib2/tables/4/4.2.192.60.table | 2 + .../grib2/tables/4/4.2.192.61.table | 2 + .../grib2/tables/4/4.2.192.62.table | 2 + .../grib2/tables/4/4.2.192.63.table | 2 + .../grib2/tables/4/4.2.192.64.table | 2 + .../grib2/tables/4/4.2.192.65.table | 2 + .../grib2/tables/4/4.2.192.66.table | 2 + .../grib2/tables/4/4.2.192.67.table | 2 + .../grib2/tables/4/4.2.192.68.table | 2 + .../grib2/tables/4/4.2.192.69.table | 2 + .../grib2/tables/4/4.2.192.7.table | 2 + .../grib2/tables/4/4.2.192.70.table | 2 + .../grib2/tables/4/4.2.192.71.table | 2 + .../grib2/tables/4/4.2.192.72.table | 2 + .../grib2/tables/4/4.2.192.73.table | 2 + .../grib2/tables/4/4.2.192.74.table | 2 + .../grib2/tables/4/4.2.192.75.table | 2 + .../grib2/tables/4/4.2.192.76.table | 2 + .../grib2/tables/4/4.2.192.77.table | 2 + .../grib2/tables/4/4.2.192.78.table | 2 + .../grib2/tables/4/4.2.192.79.table | 2 + .../grib2/tables/4/4.2.192.8.table | 2 + .../grib2/tables/4/4.2.192.80.table | 2 + .../grib2/tables/4/4.2.192.81.table | 2 + .../grib2/tables/4/4.2.192.82.table | 2 + .../grib2/tables/4/4.2.192.83.table | 2 + .../grib2/tables/4/4.2.192.84.table | 2 + .../grib2/tables/4/4.2.192.85.table | 2 + .../grib2/tables/4/4.2.192.86.table | 2 + .../grib2/tables/4/4.2.192.87.table | 2 + .../grib2/tables/4/4.2.192.88.table | 2 + .../grib2/tables/4/4.2.192.89.table | 2 + .../grib2/tables/4/4.2.192.9.table | 2 + .../grib2/tables/4/4.2.192.90.table | 2 + .../grib2/tables/4/4.2.192.91.table | 2 + .../grib2/tables/4/4.2.192.92.table | 2 + .../grib2/tables/4/4.2.192.93.table | 2 + .../grib2/tables/4/4.2.192.94.table | 2 + .../grib2/tables/4/4.2.192.95.table | 2 + .../grib2/tables/4/4.2.192.96.table | 2 + .../grib2/tables/4/4.2.192.97.table | 2 + .../grib2/tables/4/4.2.192.98.table | 2 + .../grib2/tables/4/4.2.192.99.table | 2 + .../definitions/grib2/tables/4/4.2.2.0.table | 29 + .../definitions/grib2/tables/4/4.2.2.3.table | 16 + .../definitions/grib2/tables/4/4.2.3.0.table | 14 + .../definitions/grib2/tables/4/4.2.3.1.table | 11 + .../definitions/grib2/tables/4/4.201.table | 71 + .../definitions/grib2/tables/4/4.202.table | 66 + .../definitions/grib2/tables/4/4.203.table | 88 + .../definitions/grib2/tables/4/4.204.table | 71 + .../definitions/grib2/tables/4/4.205.table | 68 + .../definitions/grib2/tables/4/4.206.table | 68 + .../definitions/grib2/tables/4/4.207.table | 70 + .../definitions/grib2/tables/4/4.208.table | 71 + .../definitions/grib2/tables/4/4.209.table | 70 + .../definitions/grib2/tables/4/4.210.table | 68 + .../definitions/grib2/tables/4/4.211.table | 69 + .../definitions/grib2/tables/4/4.212.table | 79 + .../definitions/grib2/tables/4/4.213.table | 77 + .../definitions/grib2/tables/4/4.215.table | 10 + .../definitions/grib2/tables/4/4.216.table | 3 + .../definitions/grib2/tables/4/4.217.table | 70 + .../definitions/grib2/tables/4/4.220.table | 68 + .../definitions/grib2/tables/4/4.221.table | 68 + .../definitions/grib2/tables/4/4.230.table | 47 + eccodes/definitions/grib2/tables/4/4.3.table | 13 + eccodes/definitions/grib2/tables/4/4.4.table | 16 + eccodes/definitions/grib2/tables/4/4.5.table | 33 + eccodes/definitions/grib2/tables/4/4.6.table | 8 + eccodes/definitions/grib2/tables/4/4.7.table | 73 + eccodes/definitions/grib2/tables/4/4.8.table | 68 + eccodes/definitions/grib2/tables/4/4.9.table | 71 + eccodes/definitions/grib2/tables/4/4.91.table | 78 + eccodes/definitions/grib2/tables/4/5.0.table | 16 + eccodes/definitions/grib2/tables/4/5.1.table | 5 + eccodes/definitions/grib2/tables/4/5.2.table | 6 + eccodes/definitions/grib2/tables/4/5.3.table | 6 + eccodes/definitions/grib2/tables/4/5.4.table | 5 + eccodes/definitions/grib2/tables/4/5.40.table | 5 + .../definitions/grib2/tables/4/5.40000.table | 5 + eccodes/definitions/grib2/tables/4/5.5.table | 7 + .../definitions/grib2/tables/4/5.50002.table | 19 + eccodes/definitions/grib2/tables/4/5.6.table | 68 + eccodes/definitions/grib2/tables/4/5.7.table | 6 + eccodes/definitions/grib2/tables/4/5.8.table | 3 + eccodes/definitions/grib2/tables/4/5.9.table | 4 + eccodes/definitions/grib2/tables/4/6.0.table | 7 + .../definitions/grib2/tables/4/stepType.table | 2 + eccodes/definitions/grib2/tables/5/0.0.table | 10 + eccodes/definitions/grib2/tables/5/1.0.table | 10 + eccodes/definitions/grib2/tables/5/1.1.table | 5 + eccodes/definitions/grib2/tables/5/1.2.table | 8 + eccodes/definitions/grib2/tables/5/1.3.table | 10 + eccodes/definitions/grib2/tables/5/1.4.table | 13 + eccodes/definitions/grib2/tables/5/3.0.table | 6 + eccodes/definitions/grib2/tables/5/3.1.table | 43 + eccodes/definitions/grib2/tables/5/3.10.table | 7 + eccodes/definitions/grib2/tables/5/3.11.table | 5 + eccodes/definitions/grib2/tables/5/3.15.table | 22 + eccodes/definitions/grib2/tables/5/3.2.table | 11 + eccodes/definitions/grib2/tables/5/3.20.table | 6 + eccodes/definitions/grib2/tables/5/3.21.table | 8 + eccodes/definitions/grib2/tables/5/3.3.table | 7 + eccodes/definitions/grib2/tables/5/3.4.table | 9 + eccodes/definitions/grib2/tables/5/3.5.table | 5 + eccodes/definitions/grib2/tables/5/3.6.table | 2 + eccodes/definitions/grib2/tables/5/3.7.table | 5 + eccodes/definitions/grib2/tables/5/3.8.table | 8 + eccodes/definitions/grib2/tables/5/3.9.table | 3 + eccodes/definitions/grib2/tables/5/4.0.table | 41 + .../definitions/grib2/tables/5/4.1.0.table | 30 + .../definitions/grib2/tables/5/4.1.1.table | 9 + .../definitions/grib2/tables/5/4.1.10.table | 12 + .../definitions/grib2/tables/5/4.1.192.table | 4 + .../definitions/grib2/tables/5/4.1.2.table | 11 + .../definitions/grib2/tables/5/4.1.3.table | 9 + eccodes/definitions/grib2/tables/5/4.1.table | 5 + eccodes/definitions/grib2/tables/5/4.10.table | 14 + eccodes/definitions/grib2/tables/5/4.11.table | 9 + eccodes/definitions/grib2/tables/5/4.12.table | 69 + eccodes/definitions/grib2/tables/5/4.13.table | 68 + eccodes/definitions/grib2/tables/5/4.14.table | 68 + eccodes/definitions/grib2/tables/5/4.15.table | 10 + .../definitions/grib2/tables/5/4.151.table | 70 + .../definitions/grib2/tables/5/4.192.table | 4 + .../definitions/grib2/tables/5/4.2.0.0.table | 20 + .../definitions/grib2/tables/5/4.2.0.1.table | 71 + .../definitions/grib2/tables/5/4.2.0.13.table | 3 + .../definitions/grib2/tables/5/4.2.0.14.table | 5 + .../definitions/grib2/tables/5/4.2.0.15.table | 11 + .../definitions/grib2/tables/5/4.2.0.18.table | 11 + .../definitions/grib2/tables/5/4.2.0.19.table | 26 + .../grib2/tables/5/4.2.0.190.table | 3 + .../grib2/tables/5/4.2.0.191.table | 3 + .../definitions/grib2/tables/5/4.2.0.2.table | 33 + .../definitions/grib2/tables/5/4.2.0.20.table | 26 + .../definitions/grib2/tables/5/4.2.0.3.table | 27 + .../definitions/grib2/tables/5/4.2.0.4.table | 17 + .../definitions/grib2/tables/5/4.2.0.5.table | 9 + .../definitions/grib2/tables/5/4.2.0.6.table | 28 + .../definitions/grib2/tables/5/4.2.0.7.table | 15 + .../definitions/grib2/tables/5/4.2.1.0.table | 9 + .../definitions/grib2/tables/5/4.2.1.1.table | 5 + .../definitions/grib2/tables/5/4.2.10.0.table | 16 + .../definitions/grib2/tables/5/4.2.10.1.table | 6 + .../grib2/tables/5/4.2.10.191.table | 1 + .../definitions/grib2/tables/5/4.2.10.2.table | 11 + .../definitions/grib2/tables/5/4.2.10.3.table | 4 + .../definitions/grib2/tables/5/4.2.10.4.table | 6 + .../grib2/tables/5/4.2.192.0.table | 2 + .../grib2/tables/5/4.2.192.1.table | 2 + .../grib2/tables/5/4.2.192.10.table | 2 + .../grib2/tables/5/4.2.192.100.table | 2 + .../grib2/tables/5/4.2.192.101.table | 2 + .../grib2/tables/5/4.2.192.102.table | 2 + .../grib2/tables/5/4.2.192.103.table | 2 + .../grib2/tables/5/4.2.192.104.table | 2 + .../grib2/tables/5/4.2.192.105.table | 2 + .../grib2/tables/5/4.2.192.106.table | 2 + .../grib2/tables/5/4.2.192.107.table | 2 + .../grib2/tables/5/4.2.192.108.table | 2 + .../grib2/tables/5/4.2.192.109.table | 2 + .../grib2/tables/5/4.2.192.11.table | 2 + .../grib2/tables/5/4.2.192.110.table | 2 + .../grib2/tables/5/4.2.192.111.table | 2 + .../grib2/tables/5/4.2.192.112.table | 2 + .../grib2/tables/5/4.2.192.113.table | 2 + .../grib2/tables/5/4.2.192.114.table | 2 + .../grib2/tables/5/4.2.192.115.table | 2 + .../grib2/tables/5/4.2.192.116.table | 2 + .../grib2/tables/5/4.2.192.117.table | 2 + .../grib2/tables/5/4.2.192.118.table | 2 + .../grib2/tables/5/4.2.192.119.table | 2 + .../grib2/tables/5/4.2.192.12.table | 2 + .../grib2/tables/5/4.2.192.120.table | 2 + .../grib2/tables/5/4.2.192.121.table | 2 + .../grib2/tables/5/4.2.192.122.table | 2 + .../grib2/tables/5/4.2.192.123.table | 2 + .../grib2/tables/5/4.2.192.124.table | 2 + .../grib2/tables/5/4.2.192.125.table | 2 + .../grib2/tables/5/4.2.192.126.table | 2 + .../grib2/tables/5/4.2.192.127.table | 2 + .../grib2/tables/5/4.2.192.128.table | 2 + .../grib2/tables/5/4.2.192.129.table | 2 + .../grib2/tables/5/4.2.192.13.table | 2 + .../grib2/tables/5/4.2.192.130.table | 2 + .../grib2/tables/5/4.2.192.131.table | 2 + .../grib2/tables/5/4.2.192.132.table | 2 + .../grib2/tables/5/4.2.192.133.table | 2 + .../grib2/tables/5/4.2.192.134.table | 2 + .../grib2/tables/5/4.2.192.135.table | 2 + .../grib2/tables/5/4.2.192.136.table | 2 + .../grib2/tables/5/4.2.192.137.table | 2 + .../grib2/tables/5/4.2.192.138.table | 2 + .../grib2/tables/5/4.2.192.139.table | 2 + .../grib2/tables/5/4.2.192.14.table | 2 + .../grib2/tables/5/4.2.192.140.table | 2 + .../grib2/tables/5/4.2.192.141.table | 2 + .../grib2/tables/5/4.2.192.142.table | 2 + .../grib2/tables/5/4.2.192.143.table | 2 + .../grib2/tables/5/4.2.192.144.table | 2 + .../grib2/tables/5/4.2.192.145.table | 2 + .../grib2/tables/5/4.2.192.146.table | 2 + .../grib2/tables/5/4.2.192.147.table | 2 + .../grib2/tables/5/4.2.192.148.table | 2 + .../grib2/tables/5/4.2.192.149.table | 2 + .../grib2/tables/5/4.2.192.15.table | 2 + .../grib2/tables/5/4.2.192.150.table | 2 + .../grib2/tables/5/4.2.192.151.table | 2 + .../grib2/tables/5/4.2.192.152.table | 2 + .../grib2/tables/5/4.2.192.153.table | 2 + .../grib2/tables/5/4.2.192.154.table | 2 + .../grib2/tables/5/4.2.192.155.table | 2 + .../grib2/tables/5/4.2.192.156.table | 2 + .../grib2/tables/5/4.2.192.157.table | 2 + .../grib2/tables/5/4.2.192.158.table | 2 + .../grib2/tables/5/4.2.192.159.table | 2 + .../grib2/tables/5/4.2.192.16.table | 2 + .../grib2/tables/5/4.2.192.160.table | 2 + .../grib2/tables/5/4.2.192.161.table | 2 + .../grib2/tables/5/4.2.192.162.table | 2 + .../grib2/tables/5/4.2.192.163.table | 2 + .../grib2/tables/5/4.2.192.164.table | 2 + .../grib2/tables/5/4.2.192.165.table | 2 + .../grib2/tables/5/4.2.192.166.table | 2 + .../grib2/tables/5/4.2.192.167.table | 2 + .../grib2/tables/5/4.2.192.168.table | 2 + .../grib2/tables/5/4.2.192.169.table | 2 + .../grib2/tables/5/4.2.192.17.table | 2 + .../grib2/tables/5/4.2.192.170.table | 2 + .../grib2/tables/5/4.2.192.171.table | 2 + .../grib2/tables/5/4.2.192.172.table | 2 + .../grib2/tables/5/4.2.192.173.table | 2 + .../grib2/tables/5/4.2.192.174.table | 2 + .../grib2/tables/5/4.2.192.175.table | 2 + .../grib2/tables/5/4.2.192.176.table | 2 + .../grib2/tables/5/4.2.192.177.table | 2 + .../grib2/tables/5/4.2.192.178.table | 2 + .../grib2/tables/5/4.2.192.179.table | 2 + .../grib2/tables/5/4.2.192.18.table | 2 + .../grib2/tables/5/4.2.192.180.table | 2 + .../grib2/tables/5/4.2.192.181.table | 2 + .../grib2/tables/5/4.2.192.182.table | 2 + .../grib2/tables/5/4.2.192.183.table | 2 + .../grib2/tables/5/4.2.192.184.table | 2 + .../grib2/tables/5/4.2.192.185.table | 2 + .../grib2/tables/5/4.2.192.186.table | 2 + .../grib2/tables/5/4.2.192.187.table | 2 + .../grib2/tables/5/4.2.192.188.table | 2 + .../grib2/tables/5/4.2.192.189.table | 2 + .../grib2/tables/5/4.2.192.19.table | 2 + .../grib2/tables/5/4.2.192.190.table | 2 + .../grib2/tables/5/4.2.192.191.table | 2 + .../grib2/tables/5/4.2.192.192.table | 2 + .../grib2/tables/5/4.2.192.193.table | 2 + .../grib2/tables/5/4.2.192.194.table | 2 + .../grib2/tables/5/4.2.192.195.table | 2 + .../grib2/tables/5/4.2.192.196.table | 2 + .../grib2/tables/5/4.2.192.197.table | 2 + .../grib2/tables/5/4.2.192.198.table | 2 + .../grib2/tables/5/4.2.192.199.table | 2 + .../grib2/tables/5/4.2.192.2.table | 2 + .../grib2/tables/5/4.2.192.20.table | 2 + .../grib2/tables/5/4.2.192.200.table | 2 + .../grib2/tables/5/4.2.192.201.table | 2 + .../grib2/tables/5/4.2.192.202.table | 2 + .../grib2/tables/5/4.2.192.203.table | 2 + .../grib2/tables/5/4.2.192.204.table | 2 + .../grib2/tables/5/4.2.192.205.table | 2 + .../grib2/tables/5/4.2.192.206.table | 2 + .../grib2/tables/5/4.2.192.207.table | 2 + .../grib2/tables/5/4.2.192.208.table | 2 + .../grib2/tables/5/4.2.192.209.table | 2 + .../grib2/tables/5/4.2.192.21.table | 2 + .../grib2/tables/5/4.2.192.210.table | 2 + .../grib2/tables/5/4.2.192.211.table | 2 + .../grib2/tables/5/4.2.192.212.table | 2 + .../grib2/tables/5/4.2.192.213.table | 2 + .../grib2/tables/5/4.2.192.214.table | 2 + .../grib2/tables/5/4.2.192.215.table | 2 + .../grib2/tables/5/4.2.192.216.table | 2 + .../grib2/tables/5/4.2.192.217.table | 2 + .../grib2/tables/5/4.2.192.218.table | 2 + .../grib2/tables/5/4.2.192.219.table | 2 + .../grib2/tables/5/4.2.192.22.table | 2 + .../grib2/tables/5/4.2.192.220.table | 2 + .../grib2/tables/5/4.2.192.221.table | 2 + .../grib2/tables/5/4.2.192.222.table | 2 + .../grib2/tables/5/4.2.192.223.table | 2 + .../grib2/tables/5/4.2.192.224.table | 2 + .../grib2/tables/5/4.2.192.225.table | 2 + .../grib2/tables/5/4.2.192.226.table | 2 + .../grib2/tables/5/4.2.192.227.table | 2 + .../grib2/tables/5/4.2.192.228.table | 2 + .../grib2/tables/5/4.2.192.229.table | 2 + .../grib2/tables/5/4.2.192.23.table | 2 + .../grib2/tables/5/4.2.192.230.table | 2 + .../grib2/tables/5/4.2.192.231.table | 2 + .../grib2/tables/5/4.2.192.232.table | 2 + .../grib2/tables/5/4.2.192.233.table | 2 + .../grib2/tables/5/4.2.192.234.table | 2 + .../grib2/tables/5/4.2.192.235.table | 2 + .../grib2/tables/5/4.2.192.236.table | 2 + .../grib2/tables/5/4.2.192.237.table | 2 + .../grib2/tables/5/4.2.192.238.table | 2 + .../grib2/tables/5/4.2.192.239.table | 2 + .../grib2/tables/5/4.2.192.24.table | 2 + .../grib2/tables/5/4.2.192.240.table | 2 + .../grib2/tables/5/4.2.192.241.table | 2 + .../grib2/tables/5/4.2.192.242.table | 2 + .../grib2/tables/5/4.2.192.243.table | 2 + .../grib2/tables/5/4.2.192.244.table | 2 + .../grib2/tables/5/4.2.192.245.table | 2 + .../grib2/tables/5/4.2.192.246.table | 2 + .../grib2/tables/5/4.2.192.247.table | 2 + .../grib2/tables/5/4.2.192.248.table | 2 + .../grib2/tables/5/4.2.192.249.table | 2 + .../grib2/tables/5/4.2.192.25.table | 2 + .../grib2/tables/5/4.2.192.250.table | 2 + .../grib2/tables/5/4.2.192.251.table | 2 + .../grib2/tables/5/4.2.192.252.table | 2 + .../grib2/tables/5/4.2.192.253.table | 2 + .../grib2/tables/5/4.2.192.254.table | 2 + .../grib2/tables/5/4.2.192.255.table | 2 + .../grib2/tables/5/4.2.192.26.table | 2 + .../grib2/tables/5/4.2.192.27.table | 2 + .../grib2/tables/5/4.2.192.28.table | 2 + .../grib2/tables/5/4.2.192.29.table | 2 + .../grib2/tables/5/4.2.192.3.table | 2 + .../grib2/tables/5/4.2.192.30.table | 2 + .../grib2/tables/5/4.2.192.31.table | 2 + .../grib2/tables/5/4.2.192.32.table | 2 + .../grib2/tables/5/4.2.192.33.table | 2 + .../grib2/tables/5/4.2.192.34.table | 2 + .../grib2/tables/5/4.2.192.35.table | 2 + .../grib2/tables/5/4.2.192.36.table | 2 + .../grib2/tables/5/4.2.192.37.table | 2 + .../grib2/tables/5/4.2.192.38.table | 2 + .../grib2/tables/5/4.2.192.39.table | 2 + .../grib2/tables/5/4.2.192.4.table | 2 + .../grib2/tables/5/4.2.192.40.table | 2 + .../grib2/tables/5/4.2.192.41.table | 2 + .../grib2/tables/5/4.2.192.42.table | 2 + .../grib2/tables/5/4.2.192.43.table | 2 + .../grib2/tables/5/4.2.192.44.table | 2 + .../grib2/tables/5/4.2.192.45.table | 2 + .../grib2/tables/5/4.2.192.46.table | 2 + .../grib2/tables/5/4.2.192.47.table | 2 + .../grib2/tables/5/4.2.192.48.table | 2 + .../grib2/tables/5/4.2.192.49.table | 2 + .../grib2/tables/5/4.2.192.5.table | 2 + .../grib2/tables/5/4.2.192.50.table | 2 + .../grib2/tables/5/4.2.192.51.table | 2 + .../grib2/tables/5/4.2.192.52.table | 2 + .../grib2/tables/5/4.2.192.53.table | 2 + .../grib2/tables/5/4.2.192.54.table | 2 + .../grib2/tables/5/4.2.192.55.table | 2 + .../grib2/tables/5/4.2.192.56.table | 2 + .../grib2/tables/5/4.2.192.57.table | 2 + .../grib2/tables/5/4.2.192.58.table | 2 + .../grib2/tables/5/4.2.192.59.table | 2 + .../grib2/tables/5/4.2.192.6.table | 2 + .../grib2/tables/5/4.2.192.60.table | 2 + .../grib2/tables/5/4.2.192.61.table | 2 + .../grib2/tables/5/4.2.192.62.table | 2 + .../grib2/tables/5/4.2.192.63.table | 2 + .../grib2/tables/5/4.2.192.64.table | 2 + .../grib2/tables/5/4.2.192.65.table | 2 + .../grib2/tables/5/4.2.192.66.table | 2 + .../grib2/tables/5/4.2.192.67.table | 2 + .../grib2/tables/5/4.2.192.68.table | 2 + .../grib2/tables/5/4.2.192.69.table | 2 + .../grib2/tables/5/4.2.192.7.table | 2 + .../grib2/tables/5/4.2.192.70.table | 2 + .../grib2/tables/5/4.2.192.71.table | 2 + .../grib2/tables/5/4.2.192.72.table | 2 + .../grib2/tables/5/4.2.192.73.table | 2 + .../grib2/tables/5/4.2.192.74.table | 2 + .../grib2/tables/5/4.2.192.75.table | 2 + .../grib2/tables/5/4.2.192.76.table | 2 + .../grib2/tables/5/4.2.192.77.table | 2 + .../grib2/tables/5/4.2.192.78.table | 2 + .../grib2/tables/5/4.2.192.79.table | 2 + .../grib2/tables/5/4.2.192.8.table | 2 + .../grib2/tables/5/4.2.192.80.table | 2 + .../grib2/tables/5/4.2.192.81.table | 2 + .../grib2/tables/5/4.2.192.82.table | 2 + .../grib2/tables/5/4.2.192.83.table | 2 + .../grib2/tables/5/4.2.192.84.table | 2 + .../grib2/tables/5/4.2.192.85.table | 2 + .../grib2/tables/5/4.2.192.86.table | 2 + .../grib2/tables/5/4.2.192.87.table | 2 + .../grib2/tables/5/4.2.192.88.table | 2 + .../grib2/tables/5/4.2.192.89.table | 2 + .../grib2/tables/5/4.2.192.9.table | 2 + .../grib2/tables/5/4.2.192.90.table | 2 + .../grib2/tables/5/4.2.192.91.table | 2 + .../grib2/tables/5/4.2.192.92.table | 2 + .../grib2/tables/5/4.2.192.93.table | 2 + .../grib2/tables/5/4.2.192.94.table | 2 + .../grib2/tables/5/4.2.192.95.table | 2 + .../grib2/tables/5/4.2.192.96.table | 2 + .../grib2/tables/5/4.2.192.97.table | 2 + .../grib2/tables/5/4.2.192.98.table | 2 + .../grib2/tables/5/4.2.192.99.table | 2 + .../definitions/grib2/tables/5/4.2.2.0.table | 30 + .../definitions/grib2/tables/5/4.2.2.3.table | 20 + .../definitions/grib2/tables/5/4.2.3.0.table | 12 + .../definitions/grib2/tables/5/4.2.3.1.table | 16 + .../definitions/grib2/tables/5/4.201.table | 71 + .../definitions/grib2/tables/5/4.202.table | 66 + .../definitions/grib2/tables/5/4.203.table | 25 + .../definitions/grib2/tables/5/4.204.table | 71 + .../definitions/grib2/tables/5/4.205.table | 68 + .../definitions/grib2/tables/5/4.206.table | 68 + .../definitions/grib2/tables/5/4.207.table | 70 + .../definitions/grib2/tables/5/4.208.table | 71 + .../definitions/grib2/tables/5/4.209.table | 70 + .../definitions/grib2/tables/5/4.210.table | 68 + .../definitions/grib2/tables/5/4.211.table | 69 + .../definitions/grib2/tables/5/4.212.table | 79 + .../definitions/grib2/tables/5/4.213.table | 77 + .../definitions/grib2/tables/5/4.215.table | 10 + .../definitions/grib2/tables/5/4.216.table | 3 + .../definitions/grib2/tables/5/4.217.table | 70 + .../definitions/grib2/tables/5/4.218.table | 35 + .../definitions/grib2/tables/5/4.219.table | 6 + .../definitions/grib2/tables/5/4.220.table | 68 + .../definitions/grib2/tables/5/4.221.table | 68 + .../definitions/grib2/tables/5/4.222.table | 4 + .../definitions/grib2/tables/5/4.223.table | 5 + .../definitions/grib2/tables/5/4.230.table | 117 + eccodes/definitions/grib2/tables/5/4.3.table | 13 + eccodes/definitions/grib2/tables/5/4.4.table | 16 + eccodes/definitions/grib2/tables/5/4.5.table | 38 + eccodes/definitions/grib2/tables/5/4.6.table | 8 + eccodes/definitions/grib2/tables/5/4.7.table | 73 + eccodes/definitions/grib2/tables/5/4.8.table | 68 + eccodes/definitions/grib2/tables/5/4.9.table | 71 + eccodes/definitions/grib2/tables/5/4.91.table | 78 + eccodes/definitions/grib2/tables/5/5.0.table | 19 + eccodes/definitions/grib2/tables/5/5.1.table | 5 + eccodes/definitions/grib2/tables/5/5.2.table | 6 + eccodes/definitions/grib2/tables/5/5.3.table | 6 + eccodes/definitions/grib2/tables/5/5.4.table | 5 + eccodes/definitions/grib2/tables/5/5.40.table | 5 + .../definitions/grib2/tables/5/5.40000.table | 5 + eccodes/definitions/grib2/tables/5/5.5.table | 7 + .../definitions/grib2/tables/5/5.50002.table | 19 + eccodes/definitions/grib2/tables/5/5.6.table | 68 + eccodes/definitions/grib2/tables/5/5.7.table | 6 + eccodes/definitions/grib2/tables/5/5.8.table | 3 + eccodes/definitions/grib2/tables/5/5.9.table | 4 + eccodes/definitions/grib2/tables/5/6.0.table | 7 + .../definitions/grib2/tables/5/stepType.table | 2 + eccodes/definitions/grib2/tables/6/0.0.table | 10 + eccodes/definitions/grib2/tables/6/1.0.table | 12 + eccodes/definitions/grib2/tables/6/1.1.table | 5 + eccodes/definitions/grib2/tables/6/1.2.table | 8 + eccodes/definitions/grib2/tables/6/1.3.table | 10 + eccodes/definitions/grib2/tables/6/1.4.table | 13 + eccodes/definitions/grib2/tables/6/3.0.table | 6 + eccodes/definitions/grib2/tables/6/3.1.table | 43 + eccodes/definitions/grib2/tables/6/3.10.table | 7 + eccodes/definitions/grib2/tables/6/3.11.table | 5 + eccodes/definitions/grib2/tables/6/3.15.table | 21 + eccodes/definitions/grib2/tables/6/3.2.table | 11 + eccodes/definitions/grib2/tables/6/3.20.table | 6 + eccodes/definitions/grib2/tables/6/3.21.table | 8 + eccodes/definitions/grib2/tables/6/3.3.table | 7 + eccodes/definitions/grib2/tables/6/3.4.table | 9 + eccodes/definitions/grib2/tables/6/3.5.table | 5 + eccodes/definitions/grib2/tables/6/3.6.table | 2 + eccodes/definitions/grib2/tables/6/3.7.table | 4 + eccodes/definitions/grib2/tables/6/3.8.table | 8 + eccodes/definitions/grib2/tables/6/3.9.table | 3 + eccodes/definitions/grib2/tables/6/4.0.table | 43 + .../definitions/grib2/tables/6/4.1.0.table | 30 + .../definitions/grib2/tables/6/4.1.1.table | 9 + .../definitions/grib2/tables/6/4.1.10.table | 12 + .../definitions/grib2/tables/6/4.1.192.table | 4 + .../definitions/grib2/tables/6/4.1.2.table | 11 + .../definitions/grib2/tables/6/4.1.3.table | 9 + eccodes/definitions/grib2/tables/6/4.1.table | 5 + eccodes/definitions/grib2/tables/6/4.10.table | 14 + eccodes/definitions/grib2/tables/6/4.11.table | 9 + eccodes/definitions/grib2/tables/6/4.12.table | 69 + eccodes/definitions/grib2/tables/6/4.13.table | 68 + eccodes/definitions/grib2/tables/6/4.14.table | 68 + eccodes/definitions/grib2/tables/6/4.15.table | 10 + .../definitions/grib2/tables/6/4.151.table | 70 + .../definitions/grib2/tables/6/4.192.table | 4 + .../definitions/grib2/tables/6/4.2.0.0.table | 23 + .../definitions/grib2/tables/6/4.2.0.1.table | 89 + .../definitions/grib2/tables/6/4.2.0.13.table | 3 + .../definitions/grib2/tables/6/4.2.0.14.table | 5 + .../definitions/grib2/tables/6/4.2.0.15.table | 17 + .../definitions/grib2/tables/6/4.2.0.16.table | 8 + .../definitions/grib2/tables/6/4.2.0.18.table | 11 + .../definitions/grib2/tables/6/4.2.0.19.table | 28 + .../grib2/tables/6/4.2.0.190.table | 3 + .../grib2/tables/6/4.2.0.191.table | 5 + .../definitions/grib2/tables/6/4.2.0.2.table | 35 + .../definitions/grib2/tables/6/4.2.0.20.table | 22 + .../definitions/grib2/tables/6/4.2.0.3.table | 28 + .../definitions/grib2/tables/6/4.2.0.4.table | 17 + .../definitions/grib2/tables/6/4.2.0.5.table | 9 + .../definitions/grib2/tables/6/4.2.0.6.table | 36 + .../definitions/grib2/tables/6/4.2.0.7.table | 16 + .../definitions/grib2/tables/6/4.2.1.0.table | 9 + .../definitions/grib2/tables/6/4.2.1.1.table | 5 + .../definitions/grib2/tables/6/4.2.10.0.table | 18 + .../definitions/grib2/tables/6/4.2.10.1.table | 6 + .../grib2/tables/6/4.2.10.191.table | 6 + .../definitions/grib2/tables/6/4.2.10.2.table | 11 + .../definitions/grib2/tables/6/4.2.10.3.table | 4 + .../definitions/grib2/tables/6/4.2.10.4.table | 6 + .../grib2/tables/6/4.2.192.0.table | 2 + .../grib2/tables/6/4.2.192.1.table | 2 + .../grib2/tables/6/4.2.192.10.table | 2 + .../grib2/tables/6/4.2.192.100.table | 2 + .../grib2/tables/6/4.2.192.101.table | 2 + .../grib2/tables/6/4.2.192.102.table | 2 + .../grib2/tables/6/4.2.192.103.table | 2 + .../grib2/tables/6/4.2.192.104.table | 2 + .../grib2/tables/6/4.2.192.105.table | 2 + .../grib2/tables/6/4.2.192.106.table | 2 + .../grib2/tables/6/4.2.192.107.table | 2 + .../grib2/tables/6/4.2.192.108.table | 2 + .../grib2/tables/6/4.2.192.109.table | 2 + .../grib2/tables/6/4.2.192.11.table | 2 + .../grib2/tables/6/4.2.192.110.table | 2 + .../grib2/tables/6/4.2.192.111.table | 2 + .../grib2/tables/6/4.2.192.112.table | 2 + .../grib2/tables/6/4.2.192.113.table | 2 + .../grib2/tables/6/4.2.192.114.table | 2 + .../grib2/tables/6/4.2.192.115.table | 2 + .../grib2/tables/6/4.2.192.116.table | 2 + .../grib2/tables/6/4.2.192.117.table | 2 + .../grib2/tables/6/4.2.192.118.table | 2 + .../grib2/tables/6/4.2.192.119.table | 2 + .../grib2/tables/6/4.2.192.12.table | 2 + .../grib2/tables/6/4.2.192.120.table | 2 + .../grib2/tables/6/4.2.192.121.table | 2 + .../grib2/tables/6/4.2.192.122.table | 2 + .../grib2/tables/6/4.2.192.123.table | 2 + .../grib2/tables/6/4.2.192.124.table | 2 + .../grib2/tables/6/4.2.192.125.table | 2 + .../grib2/tables/6/4.2.192.126.table | 2 + .../grib2/tables/6/4.2.192.127.table | 2 + .../grib2/tables/6/4.2.192.128.table | 2 + .../grib2/tables/6/4.2.192.129.table | 2 + .../grib2/tables/6/4.2.192.13.table | 2 + .../grib2/tables/6/4.2.192.130.table | 2 + .../grib2/tables/6/4.2.192.131.table | 2 + .../grib2/tables/6/4.2.192.132.table | 2 + .../grib2/tables/6/4.2.192.133.table | 2 + .../grib2/tables/6/4.2.192.134.table | 2 + .../grib2/tables/6/4.2.192.135.table | 2 + .../grib2/tables/6/4.2.192.136.table | 2 + .../grib2/tables/6/4.2.192.137.table | 2 + .../grib2/tables/6/4.2.192.138.table | 2 + .../grib2/tables/6/4.2.192.139.table | 2 + .../grib2/tables/6/4.2.192.14.table | 2 + .../grib2/tables/6/4.2.192.140.table | 2 + .../grib2/tables/6/4.2.192.141.table | 2 + .../grib2/tables/6/4.2.192.142.table | 2 + .../grib2/tables/6/4.2.192.143.table | 2 + .../grib2/tables/6/4.2.192.144.table | 2 + .../grib2/tables/6/4.2.192.145.table | 2 + .../grib2/tables/6/4.2.192.146.table | 2 + .../grib2/tables/6/4.2.192.147.table | 2 + .../grib2/tables/6/4.2.192.148.table | 2 + .../grib2/tables/6/4.2.192.149.table | 2 + .../grib2/tables/6/4.2.192.15.table | 2 + .../grib2/tables/6/4.2.192.150.table | 2 + .../grib2/tables/6/4.2.192.151.table | 2 + .../grib2/tables/6/4.2.192.152.table | 2 + .../grib2/tables/6/4.2.192.153.table | 2 + .../grib2/tables/6/4.2.192.154.table | 2 + .../grib2/tables/6/4.2.192.155.table | 2 + .../grib2/tables/6/4.2.192.156.table | 2 + .../grib2/tables/6/4.2.192.157.table | 2 + .../grib2/tables/6/4.2.192.158.table | 2 + .../grib2/tables/6/4.2.192.159.table | 2 + .../grib2/tables/6/4.2.192.16.table | 2 + .../grib2/tables/6/4.2.192.160.table | 2 + .../grib2/tables/6/4.2.192.161.table | 2 + .../grib2/tables/6/4.2.192.162.table | 2 + .../grib2/tables/6/4.2.192.163.table | 2 + .../grib2/tables/6/4.2.192.164.table | 2 + .../grib2/tables/6/4.2.192.165.table | 2 + .../grib2/tables/6/4.2.192.166.table | 2 + .../grib2/tables/6/4.2.192.167.table | 2 + .../grib2/tables/6/4.2.192.168.table | 2 + .../grib2/tables/6/4.2.192.169.table | 2 + .../grib2/tables/6/4.2.192.17.table | 2 + .../grib2/tables/6/4.2.192.170.table | 2 + .../grib2/tables/6/4.2.192.171.table | 2 + .../grib2/tables/6/4.2.192.172.table | 2 + .../grib2/tables/6/4.2.192.173.table | 2 + .../grib2/tables/6/4.2.192.174.table | 2 + .../grib2/tables/6/4.2.192.175.table | 2 + .../grib2/tables/6/4.2.192.176.table | 2 + .../grib2/tables/6/4.2.192.177.table | 2 + .../grib2/tables/6/4.2.192.178.table | 2 + .../grib2/tables/6/4.2.192.179.table | 2 + .../grib2/tables/6/4.2.192.18.table | 2 + .../grib2/tables/6/4.2.192.180.table | 2 + .../grib2/tables/6/4.2.192.181.table | 2 + .../grib2/tables/6/4.2.192.182.table | 2 + .../grib2/tables/6/4.2.192.183.table | 2 + .../grib2/tables/6/4.2.192.184.table | 2 + .../grib2/tables/6/4.2.192.185.table | 2 + .../grib2/tables/6/4.2.192.186.table | 2 + .../grib2/tables/6/4.2.192.187.table | 2 + .../grib2/tables/6/4.2.192.188.table | 2 + .../grib2/tables/6/4.2.192.189.table | 2 + .../grib2/tables/6/4.2.192.19.table | 2 + .../grib2/tables/6/4.2.192.190.table | 2 + .../grib2/tables/6/4.2.192.191.table | 2 + .../grib2/tables/6/4.2.192.192.table | 2 + .../grib2/tables/6/4.2.192.193.table | 2 + .../grib2/tables/6/4.2.192.194.table | 2 + .../grib2/tables/6/4.2.192.195.table | 2 + .../grib2/tables/6/4.2.192.196.table | 2 + .../grib2/tables/6/4.2.192.197.table | 2 + .../grib2/tables/6/4.2.192.198.table | 2 + .../grib2/tables/6/4.2.192.199.table | 2 + .../grib2/tables/6/4.2.192.2.table | 2 + .../grib2/tables/6/4.2.192.20.table | 2 + .../grib2/tables/6/4.2.192.200.table | 2 + .../grib2/tables/6/4.2.192.201.table | 2 + .../grib2/tables/6/4.2.192.202.table | 2 + .../grib2/tables/6/4.2.192.203.table | 2 + .../grib2/tables/6/4.2.192.204.table | 2 + .../grib2/tables/6/4.2.192.205.table | 2 + .../grib2/tables/6/4.2.192.206.table | 2 + .../grib2/tables/6/4.2.192.207.table | 2 + .../grib2/tables/6/4.2.192.208.table | 2 + .../grib2/tables/6/4.2.192.209.table | 2 + .../grib2/tables/6/4.2.192.21.table | 2 + .../grib2/tables/6/4.2.192.210.table | 2 + .../grib2/tables/6/4.2.192.211.table | 2 + .../grib2/tables/6/4.2.192.212.table | 2 + .../grib2/tables/6/4.2.192.213.table | 2 + .../grib2/tables/6/4.2.192.214.table | 2 + .../grib2/tables/6/4.2.192.215.table | 2 + .../grib2/tables/6/4.2.192.216.table | 2 + .../grib2/tables/6/4.2.192.217.table | 2 + .../grib2/tables/6/4.2.192.218.table | 2 + .../grib2/tables/6/4.2.192.219.table | 2 + .../grib2/tables/6/4.2.192.22.table | 2 + .../grib2/tables/6/4.2.192.220.table | 2 + .../grib2/tables/6/4.2.192.221.table | 2 + .../grib2/tables/6/4.2.192.222.table | 2 + .../grib2/tables/6/4.2.192.223.table | 2 + .../grib2/tables/6/4.2.192.224.table | 2 + .../grib2/tables/6/4.2.192.225.table | 2 + .../grib2/tables/6/4.2.192.226.table | 2 + .../grib2/tables/6/4.2.192.227.table | 2 + .../grib2/tables/6/4.2.192.228.table | 2 + .../grib2/tables/6/4.2.192.229.table | 2 + .../grib2/tables/6/4.2.192.23.table | 2 + .../grib2/tables/6/4.2.192.230.table | 2 + .../grib2/tables/6/4.2.192.231.table | 2 + .../grib2/tables/6/4.2.192.232.table | 2 + .../grib2/tables/6/4.2.192.233.table | 2 + .../grib2/tables/6/4.2.192.234.table | 2 + .../grib2/tables/6/4.2.192.235.table | 2 + .../grib2/tables/6/4.2.192.236.table | 2 + .../grib2/tables/6/4.2.192.237.table | 2 + .../grib2/tables/6/4.2.192.238.table | 2 + .../grib2/tables/6/4.2.192.239.table | 2 + .../grib2/tables/6/4.2.192.24.table | 2 + .../grib2/tables/6/4.2.192.240.table | 2 + .../grib2/tables/6/4.2.192.241.table | 2 + .../grib2/tables/6/4.2.192.242.table | 2 + .../grib2/tables/6/4.2.192.243.table | 2 + .../grib2/tables/6/4.2.192.244.table | 2 + .../grib2/tables/6/4.2.192.245.table | 2 + .../grib2/tables/6/4.2.192.246.table | 2 + .../grib2/tables/6/4.2.192.247.table | 2 + .../grib2/tables/6/4.2.192.248.table | 2 + .../grib2/tables/6/4.2.192.249.table | 2 + .../grib2/tables/6/4.2.192.25.table | 2 + .../grib2/tables/6/4.2.192.250.table | 2 + .../grib2/tables/6/4.2.192.251.table | 2 + .../grib2/tables/6/4.2.192.252.table | 2 + .../grib2/tables/6/4.2.192.253.table | 2 + .../grib2/tables/6/4.2.192.254.table | 2 + .../grib2/tables/6/4.2.192.255.table | 2 + .../grib2/tables/6/4.2.192.26.table | 2 + .../grib2/tables/6/4.2.192.27.table | 2 + .../grib2/tables/6/4.2.192.28.table | 2 + .../grib2/tables/6/4.2.192.29.table | 2 + .../grib2/tables/6/4.2.192.3.table | 2 + .../grib2/tables/6/4.2.192.30.table | 2 + .../grib2/tables/6/4.2.192.31.table | 2 + .../grib2/tables/6/4.2.192.32.table | 2 + .../grib2/tables/6/4.2.192.33.table | 2 + .../grib2/tables/6/4.2.192.34.table | 2 + .../grib2/tables/6/4.2.192.35.table | 2 + .../grib2/tables/6/4.2.192.36.table | 2 + .../grib2/tables/6/4.2.192.37.table | 2 + .../grib2/tables/6/4.2.192.38.table | 2 + .../grib2/tables/6/4.2.192.39.table | 2 + .../grib2/tables/6/4.2.192.4.table | 2 + .../grib2/tables/6/4.2.192.40.table | 2 + .../grib2/tables/6/4.2.192.41.table | 2 + .../grib2/tables/6/4.2.192.42.table | 2 + .../grib2/tables/6/4.2.192.43.table | 2 + .../grib2/tables/6/4.2.192.44.table | 2 + .../grib2/tables/6/4.2.192.45.table | 2 + .../grib2/tables/6/4.2.192.46.table | 2 + .../grib2/tables/6/4.2.192.47.table | 2 + .../grib2/tables/6/4.2.192.48.table | 2 + .../grib2/tables/6/4.2.192.49.table | 2 + .../grib2/tables/6/4.2.192.5.table | 2 + .../grib2/tables/6/4.2.192.50.table | 2 + .../grib2/tables/6/4.2.192.51.table | 2 + .../grib2/tables/6/4.2.192.52.table | 2 + .../grib2/tables/6/4.2.192.53.table | 2 + .../grib2/tables/6/4.2.192.54.table | 2 + .../grib2/tables/6/4.2.192.55.table | 2 + .../grib2/tables/6/4.2.192.56.table | 2 + .../grib2/tables/6/4.2.192.57.table | 2 + .../grib2/tables/6/4.2.192.58.table | 2 + .../grib2/tables/6/4.2.192.59.table | 2 + .../grib2/tables/6/4.2.192.6.table | 2 + .../grib2/tables/6/4.2.192.60.table | 2 + .../grib2/tables/6/4.2.192.61.table | 2 + .../grib2/tables/6/4.2.192.62.table | 2 + .../grib2/tables/6/4.2.192.63.table | 2 + .../grib2/tables/6/4.2.192.64.table | 2 + .../grib2/tables/6/4.2.192.65.table | 2 + .../grib2/tables/6/4.2.192.66.table | 2 + .../grib2/tables/6/4.2.192.67.table | 2 + .../grib2/tables/6/4.2.192.68.table | 2 + .../grib2/tables/6/4.2.192.69.table | 2 + .../grib2/tables/6/4.2.192.7.table | 2 + .../grib2/tables/6/4.2.192.70.table | 2 + .../grib2/tables/6/4.2.192.71.table | 2 + .../grib2/tables/6/4.2.192.72.table | 2 + .../grib2/tables/6/4.2.192.73.table | 2 + .../grib2/tables/6/4.2.192.74.table | 2 + .../grib2/tables/6/4.2.192.75.table | 2 + .../grib2/tables/6/4.2.192.76.table | 2 + .../grib2/tables/6/4.2.192.77.table | 2 + .../grib2/tables/6/4.2.192.78.table | 2 + .../grib2/tables/6/4.2.192.79.table | 2 + .../grib2/tables/6/4.2.192.8.table | 2 + .../grib2/tables/6/4.2.192.80.table | 2 + .../grib2/tables/6/4.2.192.81.table | 2 + .../grib2/tables/6/4.2.192.82.table | 2 + .../grib2/tables/6/4.2.192.83.table | 2 + .../grib2/tables/6/4.2.192.84.table | 2 + .../grib2/tables/6/4.2.192.85.table | 2 + .../grib2/tables/6/4.2.192.86.table | 2 + .../grib2/tables/6/4.2.192.87.table | 2 + .../grib2/tables/6/4.2.192.88.table | 2 + .../grib2/tables/6/4.2.192.89.table | 2 + .../grib2/tables/6/4.2.192.9.table | 2 + .../grib2/tables/6/4.2.192.90.table | 2 + .../grib2/tables/6/4.2.192.91.table | 2 + .../grib2/tables/6/4.2.192.92.table | 2 + .../grib2/tables/6/4.2.192.93.table | 2 + .../grib2/tables/6/4.2.192.94.table | 2 + .../grib2/tables/6/4.2.192.95.table | 2 + .../grib2/tables/6/4.2.192.96.table | 2 + .../grib2/tables/6/4.2.192.97.table | 2 + .../grib2/tables/6/4.2.192.98.table | 2 + .../grib2/tables/6/4.2.192.99.table | 2 + .../definitions/grib2/tables/6/4.2.2.0.table | 35 + .../definitions/grib2/tables/6/4.2.2.3.table | 25 + .../definitions/grib2/tables/6/4.2.2.4.table | 4 + .../definitions/grib2/tables/6/4.2.3.0.table | 12 + .../definitions/grib2/tables/6/4.2.3.1.table | 21 + .../definitions/grib2/tables/6/4.201.table | 71 + .../definitions/grib2/tables/6/4.202.table | 66 + .../definitions/grib2/tables/6/4.203.table | 25 + .../definitions/grib2/tables/6/4.204.table | 71 + .../definitions/grib2/tables/6/4.205.table | 68 + .../definitions/grib2/tables/6/4.206.table | 68 + .../definitions/grib2/tables/6/4.207.table | 70 + .../definitions/grib2/tables/6/4.208.table | 71 + .../definitions/grib2/tables/6/4.209.table | 70 + .../definitions/grib2/tables/6/4.210.table | 68 + .../definitions/grib2/tables/6/4.211.table | 69 + .../definitions/grib2/tables/6/4.212.table | 79 + .../definitions/grib2/tables/6/4.213.table | 77 + .../definitions/grib2/tables/6/4.215.table | 10 + .../definitions/grib2/tables/6/4.216.table | 3 + .../definitions/grib2/tables/6/4.217.table | 70 + .../definitions/grib2/tables/6/4.218.table | 35 + .../definitions/grib2/tables/6/4.219.table | 6 + .../definitions/grib2/tables/6/4.220.table | 68 + .../definitions/grib2/tables/6/4.221.table | 68 + .../definitions/grib2/tables/6/4.222.table | 4 + .../definitions/grib2/tables/6/4.223.table | 5 + .../definitions/grib2/tables/6/4.230.table | 117 + eccodes/definitions/grib2/tables/6/4.3.table | 16 + eccodes/definitions/grib2/tables/6/4.4.table | 16 + eccodes/definitions/grib2/tables/6/4.5.table | 38 + eccodes/definitions/grib2/tables/6/4.6.table | 10 + eccodes/definitions/grib2/tables/6/4.7.table | 73 + eccodes/definitions/grib2/tables/6/4.8.table | 68 + eccodes/definitions/grib2/tables/6/4.9.table | 71 + eccodes/definitions/grib2/tables/6/4.91.table | 78 + eccodes/definitions/grib2/tables/6/5.0.table | 19 + eccodes/definitions/grib2/tables/6/5.1.table | 5 + eccodes/definitions/grib2/tables/6/5.2.table | 6 + eccodes/definitions/grib2/tables/6/5.3.table | 6 + eccodes/definitions/grib2/tables/6/5.4.table | 5 + eccodes/definitions/grib2/tables/6/5.40.table | 5 + .../definitions/grib2/tables/6/5.40000.table | 5 + eccodes/definitions/grib2/tables/6/5.5.table | 7 + .../definitions/grib2/tables/6/5.50002.table | 19 + eccodes/definitions/grib2/tables/6/5.6.table | 68 + eccodes/definitions/grib2/tables/6/5.7.table | 6 + eccodes/definitions/grib2/tables/6/5.8.table | 3 + eccodes/definitions/grib2/tables/6/5.9.table | 4 + eccodes/definitions/grib2/tables/6/6.0.table | 7 + .../definitions/grib2/tables/6/stepType.table | 2 + eccodes/definitions/grib2/tables/7/0.0.table | 10 + eccodes/definitions/grib2/tables/7/1.0.table | 12 + eccodes/definitions/grib2/tables/7/1.1.table | 5 + eccodes/definitions/grib2/tables/7/1.2.table | 8 + eccodes/definitions/grib2/tables/7/1.3.table | 10 + eccodes/definitions/grib2/tables/7/1.4.table | 13 + eccodes/definitions/grib2/tables/7/3.0.table | 6 + eccodes/definitions/grib2/tables/7/3.1.table | 43 + eccodes/definitions/grib2/tables/7/3.10.table | 8 + eccodes/definitions/grib2/tables/7/3.11.table | 7 + eccodes/definitions/grib2/tables/7/3.15.table | 17 + eccodes/definitions/grib2/tables/7/3.2.table | 13 + eccodes/definitions/grib2/tables/7/3.20.table | 6 + eccodes/definitions/grib2/tables/7/3.21.table | 8 + eccodes/definitions/grib2/tables/7/3.3.table | 9 + eccodes/definitions/grib2/tables/7/3.4.table | 10 + eccodes/definitions/grib2/tables/7/3.5.table | 5 + eccodes/definitions/grib2/tables/7/3.6.table | 2 + eccodes/definitions/grib2/tables/7/3.7.table | 4 + eccodes/definitions/grib2/tables/7/3.8.table | 8 + eccodes/definitions/grib2/tables/7/3.9.table | 4 + eccodes/definitions/grib2/tables/7/4.0.table | 53 + .../definitions/grib2/tables/7/4.1.0.table | 28 + .../definitions/grib2/tables/7/4.1.1.table | 9 + .../definitions/grib2/tables/7/4.1.10.table | 11 + .../definitions/grib2/tables/7/4.1.192.table | 4 + .../definitions/grib2/tables/7/4.1.2.table | 9 + .../definitions/grib2/tables/7/4.1.3.table | 9 + eccodes/definitions/grib2/tables/7/4.1.table | 5 + eccodes/definitions/grib2/tables/7/4.10.table | 14 + eccodes/definitions/grib2/tables/7/4.11.table | 10 + eccodes/definitions/grib2/tables/7/4.12.table | 69 + eccodes/definitions/grib2/tables/7/4.13.table | 68 + eccodes/definitions/grib2/tables/7/4.14.table | 68 + eccodes/definitions/grib2/tables/7/4.15.table | 10 + .../definitions/grib2/tables/7/4.151.table | 70 + .../definitions/grib2/tables/7/4.192.table | 4 + .../definitions/grib2/tables/7/4.2.0.0.table | 25 + .../definitions/grib2/tables/7/4.2.0.1.table | 91 + .../definitions/grib2/tables/7/4.2.0.13.table | 5 + .../definitions/grib2/tables/7/4.2.0.14.table | 7 + .../definitions/grib2/tables/7/4.2.0.15.table | 19 + .../definitions/grib2/tables/7/4.2.0.16.table | 10 + .../definitions/grib2/tables/7/4.2.0.18.table | 18 + .../definitions/grib2/tables/7/4.2.0.19.table | 31 + .../grib2/tables/7/4.2.0.190.table | 5 + .../grib2/tables/7/4.2.0.191.table | 7 + .../definitions/grib2/tables/7/4.2.0.2.table | 37 + .../definitions/grib2/tables/7/4.2.0.20.table | 26 + .../definitions/grib2/tables/7/4.2.0.3.table | 30 + .../definitions/grib2/tables/7/4.2.0.4.table | 20 + .../definitions/grib2/tables/7/4.2.0.5.table | 11 + .../definitions/grib2/tables/7/4.2.0.6.table | 39 + .../definitions/grib2/tables/7/4.2.0.7.table | 20 + .../definitions/grib2/tables/7/4.2.1.0.table | 11 + .../definitions/grib2/tables/7/4.2.1.1.table | 7 + .../definitions/grib2/tables/7/4.2.10.0.table | 20 + .../definitions/grib2/tables/7/4.2.10.1.table | 8 + .../grib2/tables/7/4.2.10.191.table | 6 + .../definitions/grib2/tables/7/4.2.10.2.table | 14 + .../definitions/grib2/tables/7/4.2.10.3.table | 6 + .../definitions/grib2/tables/7/4.2.10.4.table | 11 + .../grib2/tables/7/4.2.192.0.table | 2 + .../grib2/tables/7/4.2.192.1.table | 2 + .../grib2/tables/7/4.2.192.10.table | 2 + .../grib2/tables/7/4.2.192.100.table | 2 + .../grib2/tables/7/4.2.192.101.table | 2 + .../grib2/tables/7/4.2.192.102.table | 2 + .../grib2/tables/7/4.2.192.103.table | 2 + .../grib2/tables/7/4.2.192.104.table | 2 + .../grib2/tables/7/4.2.192.105.table | 2 + .../grib2/tables/7/4.2.192.106.table | 2 + .../grib2/tables/7/4.2.192.107.table | 2 + .../grib2/tables/7/4.2.192.108.table | 2 + .../grib2/tables/7/4.2.192.109.table | 2 + .../grib2/tables/7/4.2.192.11.table | 2 + .../grib2/tables/7/4.2.192.110.table | 2 + .../grib2/tables/7/4.2.192.111.table | 2 + .../grib2/tables/7/4.2.192.112.table | 2 + .../grib2/tables/7/4.2.192.113.table | 2 + .../grib2/tables/7/4.2.192.114.table | 2 + .../grib2/tables/7/4.2.192.115.table | 2 + .../grib2/tables/7/4.2.192.116.table | 2 + .../grib2/tables/7/4.2.192.117.table | 2 + .../grib2/tables/7/4.2.192.118.table | 2 + .../grib2/tables/7/4.2.192.119.table | 2 + .../grib2/tables/7/4.2.192.12.table | 2 + .../grib2/tables/7/4.2.192.120.table | 2 + .../grib2/tables/7/4.2.192.121.table | 2 + .../grib2/tables/7/4.2.192.122.table | 2 + .../grib2/tables/7/4.2.192.123.table | 2 + .../grib2/tables/7/4.2.192.124.table | 2 + .../grib2/tables/7/4.2.192.125.table | 2 + .../grib2/tables/7/4.2.192.126.table | 2 + .../grib2/tables/7/4.2.192.127.table | 2 + .../grib2/tables/7/4.2.192.128.table | 2 + .../grib2/tables/7/4.2.192.129.table | 2 + .../grib2/tables/7/4.2.192.13.table | 2 + .../grib2/tables/7/4.2.192.130.table | 2 + .../grib2/tables/7/4.2.192.131.table | 2 + .../grib2/tables/7/4.2.192.132.table | 2 + .../grib2/tables/7/4.2.192.133.table | 2 + .../grib2/tables/7/4.2.192.134.table | 2 + .../grib2/tables/7/4.2.192.135.table | 2 + .../grib2/tables/7/4.2.192.136.table | 2 + .../grib2/tables/7/4.2.192.137.table | 2 + .../grib2/tables/7/4.2.192.138.table | 2 + .../grib2/tables/7/4.2.192.139.table | 2 + .../grib2/tables/7/4.2.192.14.table | 2 + .../grib2/tables/7/4.2.192.140.table | 2 + .../grib2/tables/7/4.2.192.141.table | 2 + .../grib2/tables/7/4.2.192.142.table | 2 + .../grib2/tables/7/4.2.192.143.table | 2 + .../grib2/tables/7/4.2.192.144.table | 2 + .../grib2/tables/7/4.2.192.145.table | 2 + .../grib2/tables/7/4.2.192.146.table | 2 + .../grib2/tables/7/4.2.192.147.table | 2 + .../grib2/tables/7/4.2.192.148.table | 2 + .../grib2/tables/7/4.2.192.149.table | 2 + .../grib2/tables/7/4.2.192.15.table | 2 + .../grib2/tables/7/4.2.192.150.table | 2 + .../grib2/tables/7/4.2.192.151.table | 2 + .../grib2/tables/7/4.2.192.152.table | 2 + .../grib2/tables/7/4.2.192.153.table | 2 + .../grib2/tables/7/4.2.192.154.table | 2 + .../grib2/tables/7/4.2.192.155.table | 2 + .../grib2/tables/7/4.2.192.156.table | 2 + .../grib2/tables/7/4.2.192.157.table | 2 + .../grib2/tables/7/4.2.192.158.table | 2 + .../grib2/tables/7/4.2.192.159.table | 2 + .../grib2/tables/7/4.2.192.16.table | 2 + .../grib2/tables/7/4.2.192.160.table | 2 + .../grib2/tables/7/4.2.192.161.table | 2 + .../grib2/tables/7/4.2.192.162.table | 2 + .../grib2/tables/7/4.2.192.163.table | 2 + .../grib2/tables/7/4.2.192.164.table | 2 + .../grib2/tables/7/4.2.192.165.table | 2 + .../grib2/tables/7/4.2.192.166.table | 2 + .../grib2/tables/7/4.2.192.167.table | 2 + .../grib2/tables/7/4.2.192.168.table | 2 + .../grib2/tables/7/4.2.192.169.table | 2 + .../grib2/tables/7/4.2.192.17.table | 2 + .../grib2/tables/7/4.2.192.170.table | 2 + .../grib2/tables/7/4.2.192.171.table | 2 + .../grib2/tables/7/4.2.192.172.table | 2 + .../grib2/tables/7/4.2.192.173.table | 2 + .../grib2/tables/7/4.2.192.174.table | 2 + .../grib2/tables/7/4.2.192.175.table | 2 + .../grib2/tables/7/4.2.192.176.table | 2 + .../grib2/tables/7/4.2.192.177.table | 2 + .../grib2/tables/7/4.2.192.178.table | 2 + .../grib2/tables/7/4.2.192.179.table | 2 + .../grib2/tables/7/4.2.192.18.table | 2 + .../grib2/tables/7/4.2.192.180.table | 2 + .../grib2/tables/7/4.2.192.181.table | 2 + .../grib2/tables/7/4.2.192.182.table | 2 + .../grib2/tables/7/4.2.192.183.table | 2 + .../grib2/tables/7/4.2.192.184.table | 2 + .../grib2/tables/7/4.2.192.185.table | 2 + .../grib2/tables/7/4.2.192.186.table | 2 + .../grib2/tables/7/4.2.192.187.table | 2 + .../grib2/tables/7/4.2.192.188.table | 2 + .../grib2/tables/7/4.2.192.189.table | 2 + .../grib2/tables/7/4.2.192.19.table | 2 + .../grib2/tables/7/4.2.192.190.table | 2 + .../grib2/tables/7/4.2.192.191.table | 2 + .../grib2/tables/7/4.2.192.192.table | 2 + .../grib2/tables/7/4.2.192.193.table | 2 + .../grib2/tables/7/4.2.192.194.table | 2 + .../grib2/tables/7/4.2.192.195.table | 2 + .../grib2/tables/7/4.2.192.196.table | 2 + .../grib2/tables/7/4.2.192.197.table | 2 + .../grib2/tables/7/4.2.192.198.table | 2 + .../grib2/tables/7/4.2.192.199.table | 2 + .../grib2/tables/7/4.2.192.2.table | 2 + .../grib2/tables/7/4.2.192.20.table | 2 + .../grib2/tables/7/4.2.192.200.table | 2 + .../grib2/tables/7/4.2.192.201.table | 2 + .../grib2/tables/7/4.2.192.202.table | 2 + .../grib2/tables/7/4.2.192.203.table | 2 + .../grib2/tables/7/4.2.192.204.table | 2 + .../grib2/tables/7/4.2.192.205.table | 2 + .../grib2/tables/7/4.2.192.206.table | 2 + .../grib2/tables/7/4.2.192.207.table | 2 + .../grib2/tables/7/4.2.192.208.table | 2 + .../grib2/tables/7/4.2.192.209.table | 2 + .../grib2/tables/7/4.2.192.21.table | 2 + .../grib2/tables/7/4.2.192.210.table | 2 + .../grib2/tables/7/4.2.192.211.table | 2 + .../grib2/tables/7/4.2.192.212.table | 2 + .../grib2/tables/7/4.2.192.213.table | 2 + .../grib2/tables/7/4.2.192.214.table | 2 + .../grib2/tables/7/4.2.192.215.table | 2 + .../grib2/tables/7/4.2.192.216.table | 2 + .../grib2/tables/7/4.2.192.217.table | 2 + .../grib2/tables/7/4.2.192.218.table | 2 + .../grib2/tables/7/4.2.192.219.table | 2 + .../grib2/tables/7/4.2.192.22.table | 2 + .../grib2/tables/7/4.2.192.220.table | 2 + .../grib2/tables/7/4.2.192.221.table | 2 + .../grib2/tables/7/4.2.192.222.table | 2 + .../grib2/tables/7/4.2.192.223.table | 2 + .../grib2/tables/7/4.2.192.224.table | 2 + .../grib2/tables/7/4.2.192.225.table | 2 + .../grib2/tables/7/4.2.192.226.table | 2 + .../grib2/tables/7/4.2.192.227.table | 2 + .../grib2/tables/7/4.2.192.228.table | 2 + .../grib2/tables/7/4.2.192.229.table | 2 + .../grib2/tables/7/4.2.192.23.table | 2 + .../grib2/tables/7/4.2.192.230.table | 2 + .../grib2/tables/7/4.2.192.231.table | 2 + .../grib2/tables/7/4.2.192.232.table | 2 + .../grib2/tables/7/4.2.192.233.table | 2 + .../grib2/tables/7/4.2.192.234.table | 2 + .../grib2/tables/7/4.2.192.235.table | 2 + .../grib2/tables/7/4.2.192.236.table | 2 + .../grib2/tables/7/4.2.192.237.table | 2 + .../grib2/tables/7/4.2.192.238.table | 2 + .../grib2/tables/7/4.2.192.239.table | 2 + .../grib2/tables/7/4.2.192.24.table | 2 + .../grib2/tables/7/4.2.192.240.table | 2 + .../grib2/tables/7/4.2.192.241.table | 2 + .../grib2/tables/7/4.2.192.242.table | 2 + .../grib2/tables/7/4.2.192.243.table | 2 + .../grib2/tables/7/4.2.192.244.table | 2 + .../grib2/tables/7/4.2.192.245.table | 2 + .../grib2/tables/7/4.2.192.246.table | 2 + .../grib2/tables/7/4.2.192.247.table | 2 + .../grib2/tables/7/4.2.192.248.table | 2 + .../grib2/tables/7/4.2.192.249.table | 2 + .../grib2/tables/7/4.2.192.25.table | 2 + .../grib2/tables/7/4.2.192.250.table | 2 + .../grib2/tables/7/4.2.192.251.table | 2 + .../grib2/tables/7/4.2.192.252.table | 2 + .../grib2/tables/7/4.2.192.253.table | 2 + .../grib2/tables/7/4.2.192.254.table | 2 + .../grib2/tables/7/4.2.192.255.table | 2 + .../grib2/tables/7/4.2.192.26.table | 2 + .../grib2/tables/7/4.2.192.27.table | 2 + .../grib2/tables/7/4.2.192.28.table | 2 + .../grib2/tables/7/4.2.192.29.table | 2 + .../grib2/tables/7/4.2.192.3.table | 2 + .../grib2/tables/7/4.2.192.30.table | 2 + .../grib2/tables/7/4.2.192.31.table | 2 + .../grib2/tables/7/4.2.192.32.table | 2 + .../grib2/tables/7/4.2.192.33.table | 2 + .../grib2/tables/7/4.2.192.34.table | 2 + .../grib2/tables/7/4.2.192.35.table | 2 + .../grib2/tables/7/4.2.192.36.table | 2 + .../grib2/tables/7/4.2.192.37.table | 2 + .../grib2/tables/7/4.2.192.38.table | 2 + .../grib2/tables/7/4.2.192.39.table | 2 + .../grib2/tables/7/4.2.192.4.table | 2 + .../grib2/tables/7/4.2.192.40.table | 2 + .../grib2/tables/7/4.2.192.41.table | 2 + .../grib2/tables/7/4.2.192.42.table | 2 + .../grib2/tables/7/4.2.192.43.table | 2 + .../grib2/tables/7/4.2.192.44.table | 2 + .../grib2/tables/7/4.2.192.45.table | 2 + .../grib2/tables/7/4.2.192.46.table | 2 + .../grib2/tables/7/4.2.192.47.table | 2 + .../grib2/tables/7/4.2.192.48.table | 2 + .../grib2/tables/7/4.2.192.49.table | 2 + .../grib2/tables/7/4.2.192.5.table | 2 + .../grib2/tables/7/4.2.192.50.table | 2 + .../grib2/tables/7/4.2.192.51.table | 2 + .../grib2/tables/7/4.2.192.52.table | 2 + .../grib2/tables/7/4.2.192.53.table | 2 + .../grib2/tables/7/4.2.192.54.table | 2 + .../grib2/tables/7/4.2.192.55.table | 2 + .../grib2/tables/7/4.2.192.56.table | 2 + .../grib2/tables/7/4.2.192.57.table | 2 + .../grib2/tables/7/4.2.192.58.table | 2 + .../grib2/tables/7/4.2.192.59.table | 2 + .../grib2/tables/7/4.2.192.6.table | 2 + .../grib2/tables/7/4.2.192.60.table | 2 + .../grib2/tables/7/4.2.192.61.table | 2 + .../grib2/tables/7/4.2.192.62.table | 2 + .../grib2/tables/7/4.2.192.63.table | 2 + .../grib2/tables/7/4.2.192.64.table | 2 + .../grib2/tables/7/4.2.192.65.table | 2 + .../grib2/tables/7/4.2.192.66.table | 2 + .../grib2/tables/7/4.2.192.67.table | 2 + .../grib2/tables/7/4.2.192.68.table | 2 + .../grib2/tables/7/4.2.192.69.table | 2 + .../grib2/tables/7/4.2.192.7.table | 2 + .../grib2/tables/7/4.2.192.70.table | 2 + .../grib2/tables/7/4.2.192.71.table | 2 + .../grib2/tables/7/4.2.192.72.table | 2 + .../grib2/tables/7/4.2.192.73.table | 2 + .../grib2/tables/7/4.2.192.74.table | 2 + .../grib2/tables/7/4.2.192.75.table | 2 + .../grib2/tables/7/4.2.192.76.table | 2 + .../grib2/tables/7/4.2.192.77.table | 2 + .../grib2/tables/7/4.2.192.78.table | 2 + .../grib2/tables/7/4.2.192.79.table | 2 + .../grib2/tables/7/4.2.192.8.table | 2 + .../grib2/tables/7/4.2.192.80.table | 2 + .../grib2/tables/7/4.2.192.81.table | 2 + .../grib2/tables/7/4.2.192.82.table | 2 + .../grib2/tables/7/4.2.192.83.table | 2 + .../grib2/tables/7/4.2.192.84.table | 2 + .../grib2/tables/7/4.2.192.85.table | 2 + .../grib2/tables/7/4.2.192.86.table | 2 + .../grib2/tables/7/4.2.192.87.table | 2 + .../grib2/tables/7/4.2.192.88.table | 2 + .../grib2/tables/7/4.2.192.89.table | 2 + .../grib2/tables/7/4.2.192.9.table | 2 + .../grib2/tables/7/4.2.192.90.table | 2 + .../grib2/tables/7/4.2.192.91.table | 2 + .../grib2/tables/7/4.2.192.92.table | 2 + .../grib2/tables/7/4.2.192.93.table | 2 + .../grib2/tables/7/4.2.192.94.table | 2 + .../grib2/tables/7/4.2.192.95.table | 2 + .../grib2/tables/7/4.2.192.96.table | 2 + .../grib2/tables/7/4.2.192.97.table | 2 + .../grib2/tables/7/4.2.192.98.table | 2 + .../grib2/tables/7/4.2.192.99.table | 2 + .../definitions/grib2/tables/7/4.2.2.0.table | 37 + .../definitions/grib2/tables/7/4.2.2.3.table | 27 + .../definitions/grib2/tables/7/4.2.2.4.table | 3 + .../definitions/grib2/tables/7/4.2.3.0.table | 14 + .../definitions/grib2/tables/7/4.2.3.1.table | 28 + .../definitions/grib2/tables/7/4.201.table | 72 + .../definitions/grib2/tables/7/4.202.table | 66 + .../definitions/grib2/tables/7/4.203.table | 25 + .../definitions/grib2/tables/7/4.204.table | 71 + .../definitions/grib2/tables/7/4.205.table | 68 + .../definitions/grib2/tables/7/4.206.table | 68 + .../definitions/grib2/tables/7/4.207.table | 70 + .../definitions/grib2/tables/7/4.208.table | 71 + .../definitions/grib2/tables/7/4.209.table | 70 + .../definitions/grib2/tables/7/4.210.table | 68 + .../definitions/grib2/tables/7/4.211.table | 69 + .../definitions/grib2/tables/7/4.212.table | 79 + .../definitions/grib2/tables/7/4.213.table | 77 + .../definitions/grib2/tables/7/4.215.table | 10 + .../definitions/grib2/tables/7/4.216.table | 3 + .../definitions/grib2/tables/7/4.217.table | 70 + .../definitions/grib2/tables/7/4.218.table | 35 + .../definitions/grib2/tables/7/4.219.table | 6 + .../definitions/grib2/tables/7/4.220.table | 68 + .../definitions/grib2/tables/7/4.221.table | 68 + .../definitions/grib2/tables/7/4.222.table | 4 + .../definitions/grib2/tables/7/4.223.table | 5 + .../definitions/grib2/tables/7/4.224.table | 18 + .../definitions/grib2/tables/7/4.230.table | 117 + eccodes/definitions/grib2/tables/7/4.3.table | 16 + eccodes/definitions/grib2/tables/7/4.4.table | 16 + eccodes/definitions/grib2/tables/7/4.5.table | 38 + eccodes/definitions/grib2/tables/7/4.6.table | 10 + eccodes/definitions/grib2/tables/7/4.7.table | 77 + eccodes/definitions/grib2/tables/7/4.8.table | 68 + eccodes/definitions/grib2/tables/7/4.9.table | 71 + eccodes/definitions/grib2/tables/7/4.91.table | 79 + eccodes/definitions/grib2/tables/7/5.0.table | 19 + eccodes/definitions/grib2/tables/7/5.1.table | 5 + eccodes/definitions/grib2/tables/7/5.2.table | 6 + eccodes/definitions/grib2/tables/7/5.3.table | 6 + eccodes/definitions/grib2/tables/7/5.4.table | 5 + eccodes/definitions/grib2/tables/7/5.40.table | 5 + .../definitions/grib2/tables/7/5.40000.table | 5 + eccodes/definitions/grib2/tables/7/5.5.table | 7 + .../definitions/grib2/tables/7/5.50002.table | 19 + eccodes/definitions/grib2/tables/7/5.6.table | 68 + eccodes/definitions/grib2/tables/7/5.7.table | 6 + eccodes/definitions/grib2/tables/7/5.8.table | 3 + eccodes/definitions/grib2/tables/7/5.9.table | 4 + eccodes/definitions/grib2/tables/7/6.0.table | 7 + .../definitions/grib2/tables/7/stepType.table | 2 + eccodes/definitions/grib2/tables/8/0.0.table | 10 + eccodes/definitions/grib2/tables/8/1.0.table | 13 + eccodes/definitions/grib2/tables/8/1.1.table | 4 + eccodes/definitions/grib2/tables/8/1.2.table | 8 + eccodes/definitions/grib2/tables/8/1.3.table | 10 + eccodes/definitions/grib2/tables/8/1.4.table | 13 + eccodes/definitions/grib2/tables/8/3.0.table | 6 + eccodes/definitions/grib2/tables/8/3.1.table | 43 + eccodes/definitions/grib2/tables/8/3.10.table | 8 + eccodes/definitions/grib2/tables/8/3.11.table | 7 + eccodes/definitions/grib2/tables/8/3.15.table | 22 + eccodes/definitions/grib2/tables/8/3.2.table | 13 + eccodes/definitions/grib2/tables/8/3.20.table | 6 + eccodes/definitions/grib2/tables/8/3.21.table | 8 + eccodes/definitions/grib2/tables/8/3.3.table | 9 + eccodes/definitions/grib2/tables/8/3.4.table | 10 + eccodes/definitions/grib2/tables/8/3.5.table | 5 + eccodes/definitions/grib2/tables/8/3.6.table | 2 + eccodes/definitions/grib2/tables/8/3.7.table | 5 + eccodes/definitions/grib2/tables/8/3.8.table | 7 + eccodes/definitions/grib2/tables/8/3.9.table | 4 + eccodes/definitions/grib2/tables/8/4.0.table | 53 + .../definitions/grib2/tables/8/4.1.0.table | 27 + .../definitions/grib2/tables/8/4.1.1.table | 7 + .../definitions/grib2/tables/8/4.1.10.table | 10 + .../definitions/grib2/tables/8/4.1.192.table | 4 + .../definitions/grib2/tables/8/4.1.2.table | 9 + .../definitions/grib2/tables/8/4.1.3.table | 8 + eccodes/definitions/grib2/tables/8/4.1.table | 5 + eccodes/definitions/grib2/tables/8/4.10.table | 15 + eccodes/definitions/grib2/tables/8/4.11.table | 10 + eccodes/definitions/grib2/tables/8/4.12.table | 7 + eccodes/definitions/grib2/tables/8/4.13.table | 6 + eccodes/definitions/grib2/tables/8/4.14.table | 6 + eccodes/definitions/grib2/tables/8/4.15.table | 11 + .../definitions/grib2/tables/8/4.151.table | 70 + .../definitions/grib2/tables/8/4.192.table | 4 + .../definitions/grib2/tables/8/4.2.0.0.table | 25 + .../definitions/grib2/tables/8/4.2.0.1.table | 95 + .../definitions/grib2/tables/8/4.2.0.13.table | 5 + .../definitions/grib2/tables/8/4.2.0.14.table | 7 + .../definitions/grib2/tables/8/4.2.0.15.table | 19 + .../definitions/grib2/tables/8/4.2.0.16.table | 10 + .../definitions/grib2/tables/8/4.2.0.18.table | 18 + .../definitions/grib2/tables/8/4.2.0.19.table | 31 + .../grib2/tables/8/4.2.0.190.table | 5 + .../grib2/tables/8/4.2.0.191.table | 7 + .../definitions/grib2/tables/8/4.2.0.2.table | 38 + .../definitions/grib2/tables/8/4.2.0.20.table | 42 + .../definitions/grib2/tables/8/4.2.0.3.table | 30 + .../definitions/grib2/tables/8/4.2.0.4.table | 20 + .../definitions/grib2/tables/8/4.2.0.5.table | 11 + .../definitions/grib2/tables/8/4.2.0.6.table | 38 + .../definitions/grib2/tables/8/4.2.0.7.table | 20 + .../definitions/grib2/tables/8/4.2.1.0.table | 11 + .../definitions/grib2/tables/8/4.2.1.1.table | 7 + .../definitions/grib2/tables/8/4.2.1.2.table | 14 + .../definitions/grib2/tables/8/4.2.10.0.table | 53 + .../definitions/grib2/tables/8/4.2.10.1.table | 8 + .../grib2/tables/8/4.2.10.191.table | 6 + .../definitions/grib2/tables/8/4.2.10.2.table | 14 + .../definitions/grib2/tables/8/4.2.10.3.table | 6 + .../definitions/grib2/tables/8/4.2.10.4.table | 18 + .../grib2/tables/8/4.2.192.0.table | 2 + .../grib2/tables/8/4.2.192.1.table | 2 + .../grib2/tables/8/4.2.192.10.table | 2 + .../grib2/tables/8/4.2.192.100.table | 2 + .../grib2/tables/8/4.2.192.101.table | 2 + .../grib2/tables/8/4.2.192.102.table | 2 + .../grib2/tables/8/4.2.192.103.table | 2 + .../grib2/tables/8/4.2.192.104.table | 2 + .../grib2/tables/8/4.2.192.105.table | 2 + .../grib2/tables/8/4.2.192.106.table | 2 + .../grib2/tables/8/4.2.192.107.table | 2 + .../grib2/tables/8/4.2.192.108.table | 2 + .../grib2/tables/8/4.2.192.109.table | 2 + .../grib2/tables/8/4.2.192.11.table | 2 + .../grib2/tables/8/4.2.192.110.table | 2 + .../grib2/tables/8/4.2.192.111.table | 2 + .../grib2/tables/8/4.2.192.112.table | 2 + .../grib2/tables/8/4.2.192.113.table | 2 + .../grib2/tables/8/4.2.192.114.table | 2 + .../grib2/tables/8/4.2.192.115.table | 2 + .../grib2/tables/8/4.2.192.116.table | 2 + .../grib2/tables/8/4.2.192.117.table | 2 + .../grib2/tables/8/4.2.192.118.table | 2 + .../grib2/tables/8/4.2.192.119.table | 2 + .../grib2/tables/8/4.2.192.12.table | 2 + .../grib2/tables/8/4.2.192.120.table | 2 + .../grib2/tables/8/4.2.192.121.table | 2 + .../grib2/tables/8/4.2.192.122.table | 2 + .../grib2/tables/8/4.2.192.123.table | 2 + .../grib2/tables/8/4.2.192.124.table | 2 + .../grib2/tables/8/4.2.192.125.table | 2 + .../grib2/tables/8/4.2.192.126.table | 2 + .../grib2/tables/8/4.2.192.127.table | 2 + .../grib2/tables/8/4.2.192.128.table | 2 + .../grib2/tables/8/4.2.192.129.table | 2 + .../grib2/tables/8/4.2.192.13.table | 2 + .../grib2/tables/8/4.2.192.130.table | 2 + .../grib2/tables/8/4.2.192.131.table | 2 + .../grib2/tables/8/4.2.192.132.table | 2 + .../grib2/tables/8/4.2.192.133.table | 2 + .../grib2/tables/8/4.2.192.134.table | 2 + .../grib2/tables/8/4.2.192.135.table | 2 + .../grib2/tables/8/4.2.192.136.table | 2 + .../grib2/tables/8/4.2.192.137.table | 2 + .../grib2/tables/8/4.2.192.138.table | 2 + .../grib2/tables/8/4.2.192.139.table | 2 + .../grib2/tables/8/4.2.192.14.table | 2 + .../grib2/tables/8/4.2.192.140.table | 2 + .../grib2/tables/8/4.2.192.141.table | 2 + .../grib2/tables/8/4.2.192.142.table | 2 + .../grib2/tables/8/4.2.192.143.table | 2 + .../grib2/tables/8/4.2.192.144.table | 2 + .../grib2/tables/8/4.2.192.145.table | 2 + .../grib2/tables/8/4.2.192.146.table | 2 + .../grib2/tables/8/4.2.192.147.table | 2 + .../grib2/tables/8/4.2.192.148.table | 2 + .../grib2/tables/8/4.2.192.149.table | 2 + .../grib2/tables/8/4.2.192.15.table | 2 + .../grib2/tables/8/4.2.192.150.table | 2 + .../grib2/tables/8/4.2.192.151.table | 2 + .../grib2/tables/8/4.2.192.152.table | 2 + .../grib2/tables/8/4.2.192.153.table | 2 + .../grib2/tables/8/4.2.192.154.table | 2 + .../grib2/tables/8/4.2.192.155.table | 2 + .../grib2/tables/8/4.2.192.156.table | 2 + .../grib2/tables/8/4.2.192.157.table | 2 + .../grib2/tables/8/4.2.192.158.table | 2 + .../grib2/tables/8/4.2.192.159.table | 2 + .../grib2/tables/8/4.2.192.16.table | 2 + .../grib2/tables/8/4.2.192.160.table | 2 + .../grib2/tables/8/4.2.192.161.table | 2 + .../grib2/tables/8/4.2.192.162.table | 2 + .../grib2/tables/8/4.2.192.163.table | 2 + .../grib2/tables/8/4.2.192.164.table | 2 + .../grib2/tables/8/4.2.192.165.table | 2 + .../grib2/tables/8/4.2.192.166.table | 2 + .../grib2/tables/8/4.2.192.167.table | 2 + .../grib2/tables/8/4.2.192.168.table | 2 + .../grib2/tables/8/4.2.192.169.table | 2 + .../grib2/tables/8/4.2.192.17.table | 2 + .../grib2/tables/8/4.2.192.170.table | 2 + .../grib2/tables/8/4.2.192.171.table | 2 + .../grib2/tables/8/4.2.192.172.table | 2 + .../grib2/tables/8/4.2.192.173.table | 2 + .../grib2/tables/8/4.2.192.174.table | 2 + .../grib2/tables/8/4.2.192.175.table | 2 + .../grib2/tables/8/4.2.192.176.table | 2 + .../grib2/tables/8/4.2.192.177.table | 2 + .../grib2/tables/8/4.2.192.178.table | 2 + .../grib2/tables/8/4.2.192.179.table | 2 + .../grib2/tables/8/4.2.192.18.table | 2 + .../grib2/tables/8/4.2.192.180.table | 2 + .../grib2/tables/8/4.2.192.181.table | 2 + .../grib2/tables/8/4.2.192.182.table | 2 + .../grib2/tables/8/4.2.192.183.table | 2 + .../grib2/tables/8/4.2.192.184.table | 2 + .../grib2/tables/8/4.2.192.185.table | 2 + .../grib2/tables/8/4.2.192.186.table | 2 + .../grib2/tables/8/4.2.192.187.table | 2 + .../grib2/tables/8/4.2.192.188.table | 2 + .../grib2/tables/8/4.2.192.189.table | 2 + .../grib2/tables/8/4.2.192.19.table | 2 + .../grib2/tables/8/4.2.192.190.table | 2 + .../grib2/tables/8/4.2.192.191.table | 2 + .../grib2/tables/8/4.2.192.192.table | 2 + .../grib2/tables/8/4.2.192.193.table | 2 + .../grib2/tables/8/4.2.192.194.table | 2 + .../grib2/tables/8/4.2.192.195.table | 2 + .../grib2/tables/8/4.2.192.196.table | 2 + .../grib2/tables/8/4.2.192.197.table | 2 + .../grib2/tables/8/4.2.192.198.table | 2 + .../grib2/tables/8/4.2.192.199.table | 2 + .../grib2/tables/8/4.2.192.2.table | 2 + .../grib2/tables/8/4.2.192.20.table | 2 + .../grib2/tables/8/4.2.192.200.table | 2 + .../grib2/tables/8/4.2.192.201.table | 2 + .../grib2/tables/8/4.2.192.202.table | 2 + .../grib2/tables/8/4.2.192.203.table | 2 + .../grib2/tables/8/4.2.192.204.table | 2 + .../grib2/tables/8/4.2.192.205.table | 2 + .../grib2/tables/8/4.2.192.206.table | 2 + .../grib2/tables/8/4.2.192.207.table | 2 + .../grib2/tables/8/4.2.192.208.table | 2 + .../grib2/tables/8/4.2.192.209.table | 2 + .../grib2/tables/8/4.2.192.21.table | 2 + .../grib2/tables/8/4.2.192.210.table | 2 + .../grib2/tables/8/4.2.192.211.table | 2 + .../grib2/tables/8/4.2.192.212.table | 2 + .../grib2/tables/8/4.2.192.213.table | 2 + .../grib2/tables/8/4.2.192.214.table | 2 + .../grib2/tables/8/4.2.192.215.table | 2 + .../grib2/tables/8/4.2.192.216.table | 2 + .../grib2/tables/8/4.2.192.217.table | 2 + .../grib2/tables/8/4.2.192.218.table | 2 + .../grib2/tables/8/4.2.192.219.table | 2 + .../grib2/tables/8/4.2.192.22.table | 2 + .../grib2/tables/8/4.2.192.220.table | 2 + .../grib2/tables/8/4.2.192.221.table | 2 + .../grib2/tables/8/4.2.192.222.table | 2 + .../grib2/tables/8/4.2.192.223.table | 2 + .../grib2/tables/8/4.2.192.224.table | 2 + .../grib2/tables/8/4.2.192.225.table | 2 + .../grib2/tables/8/4.2.192.226.table | 2 + .../grib2/tables/8/4.2.192.227.table | 2 + .../grib2/tables/8/4.2.192.228.table | 2 + .../grib2/tables/8/4.2.192.229.table | 2 + .../grib2/tables/8/4.2.192.23.table | 2 + .../grib2/tables/8/4.2.192.230.table | 2 + .../grib2/tables/8/4.2.192.231.table | 2 + .../grib2/tables/8/4.2.192.232.table | 2 + .../grib2/tables/8/4.2.192.233.table | 2 + .../grib2/tables/8/4.2.192.234.table | 2 + .../grib2/tables/8/4.2.192.235.table | 2 + .../grib2/tables/8/4.2.192.236.table | 2 + .../grib2/tables/8/4.2.192.237.table | 2 + .../grib2/tables/8/4.2.192.238.table | 2 + .../grib2/tables/8/4.2.192.239.table | 2 + .../grib2/tables/8/4.2.192.24.table | 2 + .../grib2/tables/8/4.2.192.240.table | 2 + .../grib2/tables/8/4.2.192.241.table | 2 + .../grib2/tables/8/4.2.192.242.table | 2 + .../grib2/tables/8/4.2.192.243.table | 2 + .../grib2/tables/8/4.2.192.244.table | 2 + .../grib2/tables/8/4.2.192.245.table | 2 + .../grib2/tables/8/4.2.192.246.table | 2 + .../grib2/tables/8/4.2.192.247.table | 2 + .../grib2/tables/8/4.2.192.248.table | 2 + .../grib2/tables/8/4.2.192.249.table | 2 + .../grib2/tables/8/4.2.192.25.table | 2 + .../grib2/tables/8/4.2.192.250.table | 2 + .../grib2/tables/8/4.2.192.251.table | 2 + .../grib2/tables/8/4.2.192.252.table | 2 + .../grib2/tables/8/4.2.192.253.table | 2 + .../grib2/tables/8/4.2.192.254.table | 2 + .../grib2/tables/8/4.2.192.255.table | 2 + .../grib2/tables/8/4.2.192.26.table | 2 + .../grib2/tables/8/4.2.192.27.table | 2 + .../grib2/tables/8/4.2.192.28.table | 2 + .../grib2/tables/8/4.2.192.29.table | 2 + .../grib2/tables/8/4.2.192.3.table | 2 + .../grib2/tables/8/4.2.192.30.table | 2 + .../grib2/tables/8/4.2.192.31.table | 2 + .../grib2/tables/8/4.2.192.32.table | 2 + .../grib2/tables/8/4.2.192.33.table | 2 + .../grib2/tables/8/4.2.192.34.table | 2 + .../grib2/tables/8/4.2.192.35.table | 2 + .../grib2/tables/8/4.2.192.36.table | 2 + .../grib2/tables/8/4.2.192.37.table | 2 + .../grib2/tables/8/4.2.192.38.table | 2 + .../grib2/tables/8/4.2.192.39.table | 2 + .../grib2/tables/8/4.2.192.4.table | 2 + .../grib2/tables/8/4.2.192.40.table | 2 + .../grib2/tables/8/4.2.192.41.table | 2 + .../grib2/tables/8/4.2.192.42.table | 2 + .../grib2/tables/8/4.2.192.43.table | 2 + .../grib2/tables/8/4.2.192.44.table | 2 + .../grib2/tables/8/4.2.192.45.table | 2 + .../grib2/tables/8/4.2.192.46.table | 2 + .../grib2/tables/8/4.2.192.47.table | 2 + .../grib2/tables/8/4.2.192.48.table | 2 + .../grib2/tables/8/4.2.192.49.table | 2 + .../grib2/tables/8/4.2.192.5.table | 2 + .../grib2/tables/8/4.2.192.50.table | 2 + .../grib2/tables/8/4.2.192.51.table | 2 + .../grib2/tables/8/4.2.192.52.table | 2 + .../grib2/tables/8/4.2.192.53.table | 2 + .../grib2/tables/8/4.2.192.54.table | 2 + .../grib2/tables/8/4.2.192.55.table | 2 + .../grib2/tables/8/4.2.192.56.table | 2 + .../grib2/tables/8/4.2.192.57.table | 2 + .../grib2/tables/8/4.2.192.58.table | 2 + .../grib2/tables/8/4.2.192.59.table | 2 + .../grib2/tables/8/4.2.192.6.table | 2 + .../grib2/tables/8/4.2.192.60.table | 2 + .../grib2/tables/8/4.2.192.61.table | 2 + .../grib2/tables/8/4.2.192.62.table | 2 + .../grib2/tables/8/4.2.192.63.table | 2 + .../grib2/tables/8/4.2.192.64.table | 2 + .../grib2/tables/8/4.2.192.65.table | 2 + .../grib2/tables/8/4.2.192.66.table | 2 + .../grib2/tables/8/4.2.192.67.table | 2 + .../grib2/tables/8/4.2.192.68.table | 2 + .../grib2/tables/8/4.2.192.69.table | 2 + .../grib2/tables/8/4.2.192.7.table | 2 + .../grib2/tables/8/4.2.192.70.table | 2 + .../grib2/tables/8/4.2.192.71.table | 2 + .../grib2/tables/8/4.2.192.72.table | 2 + .../grib2/tables/8/4.2.192.73.table | 2 + .../grib2/tables/8/4.2.192.74.table | 2 + .../grib2/tables/8/4.2.192.75.table | 2 + .../grib2/tables/8/4.2.192.76.table | 2 + .../grib2/tables/8/4.2.192.77.table | 2 + .../grib2/tables/8/4.2.192.78.table | 2 + .../grib2/tables/8/4.2.192.79.table | 2 + .../grib2/tables/8/4.2.192.8.table | 2 + .../grib2/tables/8/4.2.192.80.table | 2 + .../grib2/tables/8/4.2.192.81.table | 2 + .../grib2/tables/8/4.2.192.82.table | 2 + .../grib2/tables/8/4.2.192.83.table | 2 + .../grib2/tables/8/4.2.192.84.table | 2 + .../grib2/tables/8/4.2.192.85.table | 2 + .../grib2/tables/8/4.2.192.86.table | 2 + .../grib2/tables/8/4.2.192.87.table | 2 + .../grib2/tables/8/4.2.192.88.table | 2 + .../grib2/tables/8/4.2.192.89.table | 2 + .../grib2/tables/8/4.2.192.9.table | 2 + .../grib2/tables/8/4.2.192.90.table | 2 + .../grib2/tables/8/4.2.192.91.table | 2 + .../grib2/tables/8/4.2.192.92.table | 2 + .../grib2/tables/8/4.2.192.93.table | 2 + .../grib2/tables/8/4.2.192.94.table | 2 + .../grib2/tables/8/4.2.192.95.table | 2 + .../grib2/tables/8/4.2.192.96.table | 2 + .../grib2/tables/8/4.2.192.97.table | 2 + .../grib2/tables/8/4.2.192.98.table | 2 + .../grib2/tables/8/4.2.192.99.table | 2 + .../definitions/grib2/tables/8/4.2.2.0.table | 37 + .../definitions/grib2/tables/8/4.2.2.3.table | 27 + .../definitions/grib2/tables/8/4.2.2.4.table | 4 + .../definitions/grib2/tables/8/4.2.3.0.table | 14 + .../definitions/grib2/tables/8/4.2.3.1.table | 28 + .../definitions/grib2/tables/8/4.201.table | 10 + .../definitions/grib2/tables/8/4.202.table | 4 + .../definitions/grib2/tables/8/4.203.table | 25 + .../definitions/grib2/tables/8/4.204.table | 9 + .../definitions/grib2/tables/8/4.205.table | 6 + .../definitions/grib2/tables/8/4.206.table | 6 + .../definitions/grib2/tables/8/4.207.table | 10 + .../definitions/grib2/tables/8/4.208.table | 9 + .../definitions/grib2/tables/8/4.209.table | 9 + .../definitions/grib2/tables/8/4.210.table | 6 + .../definitions/grib2/tables/8/4.211.table | 7 + .../definitions/grib2/tables/8/4.212.table | 18 + .../definitions/grib2/tables/8/4.213.table | 21 + .../definitions/grib2/tables/8/4.215.table | 9 + .../definitions/grib2/tables/8/4.216.table | 5 + .../definitions/grib2/tables/8/4.217.table | 8 + .../definitions/grib2/tables/8/4.218.table | 38 + .../definitions/grib2/tables/8/4.219.table | 8 + .../definitions/grib2/tables/8/4.220.table | 6 + .../definitions/grib2/tables/8/4.221.table | 6 + .../definitions/grib2/tables/8/4.222.table | 6 + .../definitions/grib2/tables/8/4.223.table | 5 + .../definitions/grib2/tables/8/4.224.table | 18 + .../definitions/grib2/tables/8/4.230.table | 415 + .../definitions/grib2/tables/8/4.233.table | 3 + eccodes/definitions/grib2/tables/8/4.3.table | 16 + eccodes/definitions/grib2/tables/8/4.4.table | 17 + eccodes/definitions/grib2/tables/8/4.5.table | 48 + eccodes/definitions/grib2/tables/8/4.6.table | 9 + eccodes/definitions/grib2/tables/8/4.7.table | 14 + eccodes/definitions/grib2/tables/8/4.8.table | 6 + eccodes/definitions/grib2/tables/8/4.9.table | 9 + eccodes/definitions/grib2/tables/8/4.91.table | 16 + eccodes/definitions/grib2/tables/8/5.0.table | 24 + eccodes/definitions/grib2/tables/8/5.1.table | 6 + eccodes/definitions/grib2/tables/8/5.2.table | 8 + eccodes/definitions/grib2/tables/8/5.3.table | 7 + eccodes/definitions/grib2/tables/8/5.4.table | 6 + eccodes/definitions/grib2/tables/8/5.40.table | 5 + .../definitions/grib2/tables/8/5.40000.table | 5 + eccodes/definitions/grib2/tables/8/5.5.table | 7 + .../definitions/grib2/tables/8/5.50002.table | 19 + eccodes/definitions/grib2/tables/8/5.6.table | 7 + eccodes/definitions/grib2/tables/8/5.7.table | 7 + eccodes/definitions/grib2/tables/8/5.8.table | 3 + eccodes/definitions/grib2/tables/8/5.9.table | 4 + eccodes/definitions/grib2/tables/8/6.0.table | 6 + .../definitions/grib2/tables/8/stepType.table | 2 + eccodes/definitions/grib2/tables/9/0.0.table | 10 + eccodes/definitions/grib2/tables/9/1.0.table | 14 + eccodes/definitions/grib2/tables/9/1.1.table | 4 + eccodes/definitions/grib2/tables/9/1.2.table | 8 + eccodes/definitions/grib2/tables/9/1.3.table | 10 + eccodes/definitions/grib2/tables/9/1.4.table | 13 + eccodes/definitions/grib2/tables/9/3.0.table | 6 + eccodes/definitions/grib2/tables/9/3.1.table | 43 + eccodes/definitions/grib2/tables/9/3.10.table | 8 + eccodes/definitions/grib2/tables/9/3.11.table | 7 + eccodes/definitions/grib2/tables/9/3.15.table | 23 + eccodes/definitions/grib2/tables/9/3.2.table | 13 + eccodes/definitions/grib2/tables/9/3.20.table | 6 + eccodes/definitions/grib2/tables/9/3.21.table | 8 + eccodes/definitions/grib2/tables/9/3.3.table | 9 + eccodes/definitions/grib2/tables/9/3.4.table | 10 + eccodes/definitions/grib2/tables/9/3.5.table | 5 + eccodes/definitions/grib2/tables/9/3.6.table | 2 + eccodes/definitions/grib2/tables/9/3.7.table | 5 + eccodes/definitions/grib2/tables/9/3.8.table | 7 + eccodes/definitions/grib2/tables/9/3.9.table | 4 + eccodes/definitions/grib2/tables/9/4.0.table | 53 + .../definitions/grib2/tables/9/4.1.0.table | 27 + .../definitions/grib2/tables/9/4.1.1.table | 7 + .../definitions/grib2/tables/9/4.1.10.table | 10 + .../definitions/grib2/tables/9/4.1.192.table | 4 + .../definitions/grib2/tables/9/4.1.2.table | 9 + .../definitions/grib2/tables/9/4.1.3.table | 8 + eccodes/definitions/grib2/tables/9/4.1.table | 5 + eccodes/definitions/grib2/tables/9/4.10.table | 15 + eccodes/definitions/grib2/tables/9/4.11.table | 10 + eccodes/definitions/grib2/tables/9/4.12.table | 7 + eccodes/definitions/grib2/tables/9/4.13.table | 6 + eccodes/definitions/grib2/tables/9/4.14.table | 6 + eccodes/definitions/grib2/tables/9/4.15.table | 11 + .../definitions/grib2/tables/9/4.151.table | 70 + .../definitions/grib2/tables/9/4.192.table | 4 + .../definitions/grib2/tables/9/4.2.0.0.table | 25 + .../definitions/grib2/tables/9/4.2.0.1.table | 95 + .../definitions/grib2/tables/9/4.2.0.13.table | 5 + .../definitions/grib2/tables/9/4.2.0.14.table | 7 + .../definitions/grib2/tables/9/4.2.0.15.table | 19 + .../definitions/grib2/tables/9/4.2.0.16.table | 10 + .../definitions/grib2/tables/9/4.2.0.18.table | 18 + .../definitions/grib2/tables/9/4.2.0.19.table | 32 + .../grib2/tables/9/4.2.0.190.table | 5 + .../grib2/tables/9/4.2.0.191.table | 7 + .../definitions/grib2/tables/9/4.2.0.2.table | 40 + .../definitions/grib2/tables/9/4.2.0.20.table | 42 + .../definitions/grib2/tables/9/4.2.0.3.table | 31 + .../definitions/grib2/tables/9/4.2.0.4.table | 20 + .../definitions/grib2/tables/9/4.2.0.5.table | 11 + .../definitions/grib2/tables/9/4.2.0.6.table | 40 + .../definitions/grib2/tables/9/4.2.0.7.table | 20 + .../definitions/grib2/tables/9/4.2.1.0.table | 11 + .../definitions/grib2/tables/9/4.2.1.1.table | 7 + .../definitions/grib2/tables/9/4.2.1.2.table | 14 + .../definitions/grib2/tables/9/4.2.10.0.table | 50 + .../definitions/grib2/tables/9/4.2.10.1.table | 8 + .../grib2/tables/9/4.2.10.191.table | 6 + .../definitions/grib2/tables/9/4.2.10.2.table | 14 + .../definitions/grib2/tables/9/4.2.10.3.table | 6 + .../definitions/grib2/tables/9/4.2.10.4.table | 18 + .../grib2/tables/9/4.2.192.0.table | 2 + .../grib2/tables/9/4.2.192.1.table | 2 + .../grib2/tables/9/4.2.192.10.table | 2 + .../grib2/tables/9/4.2.192.100.table | 2 + .../grib2/tables/9/4.2.192.101.table | 2 + .../grib2/tables/9/4.2.192.102.table | 2 + .../grib2/tables/9/4.2.192.103.table | 2 + .../grib2/tables/9/4.2.192.104.table | 2 + .../grib2/tables/9/4.2.192.105.table | 2 + .../grib2/tables/9/4.2.192.106.table | 2 + .../grib2/tables/9/4.2.192.107.table | 2 + .../grib2/tables/9/4.2.192.108.table | 2 + .../grib2/tables/9/4.2.192.109.table | 2 + .../grib2/tables/9/4.2.192.11.table | 2 + .../grib2/tables/9/4.2.192.110.table | 2 + .../grib2/tables/9/4.2.192.111.table | 2 + .../grib2/tables/9/4.2.192.112.table | 2 + .../grib2/tables/9/4.2.192.113.table | 2 + .../grib2/tables/9/4.2.192.114.table | 2 + .../grib2/tables/9/4.2.192.115.table | 2 + .../grib2/tables/9/4.2.192.116.table | 2 + .../grib2/tables/9/4.2.192.117.table | 2 + .../grib2/tables/9/4.2.192.118.table | 2 + .../grib2/tables/9/4.2.192.119.table | 2 + .../grib2/tables/9/4.2.192.12.table | 2 + .../grib2/tables/9/4.2.192.120.table | 2 + .../grib2/tables/9/4.2.192.121.table | 2 + .../grib2/tables/9/4.2.192.122.table | 2 + .../grib2/tables/9/4.2.192.123.table | 2 + .../grib2/tables/9/4.2.192.124.table | 2 + .../grib2/tables/9/4.2.192.125.table | 2 + .../grib2/tables/9/4.2.192.126.table | 2 + .../grib2/tables/9/4.2.192.127.table | 2 + .../grib2/tables/9/4.2.192.128.table | 2 + .../grib2/tables/9/4.2.192.129.table | 2 + .../grib2/tables/9/4.2.192.13.table | 2 + .../grib2/tables/9/4.2.192.130.table | 2 + .../grib2/tables/9/4.2.192.131.table | 2 + .../grib2/tables/9/4.2.192.132.table | 2 + .../grib2/tables/9/4.2.192.133.table | 2 + .../grib2/tables/9/4.2.192.134.table | 2 + .../grib2/tables/9/4.2.192.135.table | 2 + .../grib2/tables/9/4.2.192.136.table | 2 + .../grib2/tables/9/4.2.192.137.table | 2 + .../grib2/tables/9/4.2.192.138.table | 2 + .../grib2/tables/9/4.2.192.139.table | 2 + .../grib2/tables/9/4.2.192.14.table | 2 + .../grib2/tables/9/4.2.192.140.table | 2 + .../grib2/tables/9/4.2.192.141.table | 2 + .../grib2/tables/9/4.2.192.142.table | 2 + .../grib2/tables/9/4.2.192.143.table | 2 + .../grib2/tables/9/4.2.192.144.table | 2 + .../grib2/tables/9/4.2.192.145.table | 2 + .../grib2/tables/9/4.2.192.146.table | 2 + .../grib2/tables/9/4.2.192.147.table | 2 + .../grib2/tables/9/4.2.192.148.table | 2 + .../grib2/tables/9/4.2.192.149.table | 2 + .../grib2/tables/9/4.2.192.15.table | 2 + .../grib2/tables/9/4.2.192.150.table | 2 + .../grib2/tables/9/4.2.192.151.table | 2 + .../grib2/tables/9/4.2.192.152.table | 2 + .../grib2/tables/9/4.2.192.153.table | 2 + .../grib2/tables/9/4.2.192.154.table | 2 + .../grib2/tables/9/4.2.192.155.table | 2 + .../grib2/tables/9/4.2.192.156.table | 2 + .../grib2/tables/9/4.2.192.157.table | 2 + .../grib2/tables/9/4.2.192.158.table | 2 + .../grib2/tables/9/4.2.192.159.table | 2 + .../grib2/tables/9/4.2.192.16.table | 2 + .../grib2/tables/9/4.2.192.160.table | 2 + .../grib2/tables/9/4.2.192.161.table | 2 + .../grib2/tables/9/4.2.192.162.table | 2 + .../grib2/tables/9/4.2.192.163.table | 2 + .../grib2/tables/9/4.2.192.164.table | 2 + .../grib2/tables/9/4.2.192.165.table | 2 + .../grib2/tables/9/4.2.192.166.table | 2 + .../grib2/tables/9/4.2.192.167.table | 2 + .../grib2/tables/9/4.2.192.168.table | 2 + .../grib2/tables/9/4.2.192.169.table | 2 + .../grib2/tables/9/4.2.192.17.table | 2 + .../grib2/tables/9/4.2.192.170.table | 2 + .../grib2/tables/9/4.2.192.171.table | 2 + .../grib2/tables/9/4.2.192.172.table | 2 + .../grib2/tables/9/4.2.192.173.table | 2 + .../grib2/tables/9/4.2.192.174.table | 2 + .../grib2/tables/9/4.2.192.175.table | 2 + .../grib2/tables/9/4.2.192.176.table | 2 + .../grib2/tables/9/4.2.192.177.table | 2 + .../grib2/tables/9/4.2.192.178.table | 2 + .../grib2/tables/9/4.2.192.179.table | 2 + .../grib2/tables/9/4.2.192.18.table | 2 + .../grib2/tables/9/4.2.192.180.table | 2 + .../grib2/tables/9/4.2.192.181.table | 2 + .../grib2/tables/9/4.2.192.182.table | 2 + .../grib2/tables/9/4.2.192.183.table | 2 + .../grib2/tables/9/4.2.192.184.table | 2 + .../grib2/tables/9/4.2.192.185.table | 2 + .../grib2/tables/9/4.2.192.186.table | 2 + .../grib2/tables/9/4.2.192.187.table | 2 + .../grib2/tables/9/4.2.192.188.table | 2 + .../grib2/tables/9/4.2.192.189.table | 2 + .../grib2/tables/9/4.2.192.19.table | 2 + .../grib2/tables/9/4.2.192.190.table | 2 + .../grib2/tables/9/4.2.192.191.table | 2 + .../grib2/tables/9/4.2.192.192.table | 2 + .../grib2/tables/9/4.2.192.193.table | 2 + .../grib2/tables/9/4.2.192.194.table | 2 + .../grib2/tables/9/4.2.192.195.table | 2 + .../grib2/tables/9/4.2.192.196.table | 2 + .../grib2/tables/9/4.2.192.197.table | 2 + .../grib2/tables/9/4.2.192.198.table | 2 + .../grib2/tables/9/4.2.192.199.table | 2 + .../grib2/tables/9/4.2.192.2.table | 2 + .../grib2/tables/9/4.2.192.20.table | 2 + .../grib2/tables/9/4.2.192.200.table | 2 + .../grib2/tables/9/4.2.192.201.table | 2 + .../grib2/tables/9/4.2.192.202.table | 2 + .../grib2/tables/9/4.2.192.203.table | 2 + .../grib2/tables/9/4.2.192.204.table | 2 + .../grib2/tables/9/4.2.192.205.table | 2 + .../grib2/tables/9/4.2.192.206.table | 2 + .../grib2/tables/9/4.2.192.207.table | 2 + .../grib2/tables/9/4.2.192.208.table | 2 + .../grib2/tables/9/4.2.192.209.table | 2 + .../grib2/tables/9/4.2.192.21.table | 2 + .../grib2/tables/9/4.2.192.210.table | 2 + .../grib2/tables/9/4.2.192.211.table | 2 + .../grib2/tables/9/4.2.192.212.table | 2 + .../grib2/tables/9/4.2.192.213.table | 2 + .../grib2/tables/9/4.2.192.214.table | 2 + .../grib2/tables/9/4.2.192.215.table | 2 + .../grib2/tables/9/4.2.192.216.table | 2 + .../grib2/tables/9/4.2.192.217.table | 2 + .../grib2/tables/9/4.2.192.218.table | 2 + .../grib2/tables/9/4.2.192.219.table | 2 + .../grib2/tables/9/4.2.192.22.table | 2 + .../grib2/tables/9/4.2.192.220.table | 2 + .../grib2/tables/9/4.2.192.221.table | 2 + .../grib2/tables/9/4.2.192.222.table | 2 + .../grib2/tables/9/4.2.192.223.table | 2 + .../grib2/tables/9/4.2.192.224.table | 2 + .../grib2/tables/9/4.2.192.225.table | 2 + .../grib2/tables/9/4.2.192.226.table | 2 + .../grib2/tables/9/4.2.192.227.table | 2 + .../grib2/tables/9/4.2.192.228.table | 2 + .../grib2/tables/9/4.2.192.229.table | 2 + .../grib2/tables/9/4.2.192.23.table | 2 + .../grib2/tables/9/4.2.192.230.table | 2 + .../grib2/tables/9/4.2.192.231.table | 2 + .../grib2/tables/9/4.2.192.232.table | 2 + .../grib2/tables/9/4.2.192.233.table | 2 + .../grib2/tables/9/4.2.192.234.table | 2 + .../grib2/tables/9/4.2.192.235.table | 2 + .../grib2/tables/9/4.2.192.236.table | 2 + .../grib2/tables/9/4.2.192.237.table | 2 + .../grib2/tables/9/4.2.192.238.table | 2 + .../grib2/tables/9/4.2.192.239.table | 2 + .../grib2/tables/9/4.2.192.24.table | 2 + .../grib2/tables/9/4.2.192.240.table | 2 + .../grib2/tables/9/4.2.192.241.table | 2 + .../grib2/tables/9/4.2.192.242.table | 2 + .../grib2/tables/9/4.2.192.243.table | 2 + .../grib2/tables/9/4.2.192.244.table | 2 + .../grib2/tables/9/4.2.192.245.table | 2 + .../grib2/tables/9/4.2.192.246.table | 2 + .../grib2/tables/9/4.2.192.247.table | 2 + .../grib2/tables/9/4.2.192.248.table | 2 + .../grib2/tables/9/4.2.192.249.table | 2 + .../grib2/tables/9/4.2.192.25.table | 2 + .../grib2/tables/9/4.2.192.250.table | 2 + .../grib2/tables/9/4.2.192.251.table | 2 + .../grib2/tables/9/4.2.192.252.table | 2 + .../grib2/tables/9/4.2.192.253.table | 2 + .../grib2/tables/9/4.2.192.254.table | 2 + .../grib2/tables/9/4.2.192.255.table | 2 + .../grib2/tables/9/4.2.192.26.table | 2 + .../grib2/tables/9/4.2.192.27.table | 2 + .../grib2/tables/9/4.2.192.28.table | 2 + .../grib2/tables/9/4.2.192.29.table | 2 + .../grib2/tables/9/4.2.192.3.table | 2 + .../grib2/tables/9/4.2.192.30.table | 2 + .../grib2/tables/9/4.2.192.31.table | 2 + .../grib2/tables/9/4.2.192.32.table | 2 + .../grib2/tables/9/4.2.192.33.table | 2 + .../grib2/tables/9/4.2.192.34.table | 2 + .../grib2/tables/9/4.2.192.35.table | 2 + .../grib2/tables/9/4.2.192.36.table | 2 + .../grib2/tables/9/4.2.192.37.table | 2 + .../grib2/tables/9/4.2.192.38.table | 2 + .../grib2/tables/9/4.2.192.39.table | 2 + .../grib2/tables/9/4.2.192.4.table | 2 + .../grib2/tables/9/4.2.192.40.table | 2 + .../grib2/tables/9/4.2.192.41.table | 2 + .../grib2/tables/9/4.2.192.42.table | 2 + .../grib2/tables/9/4.2.192.43.table | 2 + .../grib2/tables/9/4.2.192.44.table | 2 + .../grib2/tables/9/4.2.192.45.table | 2 + .../grib2/tables/9/4.2.192.46.table | 2 + .../grib2/tables/9/4.2.192.47.table | 2 + .../grib2/tables/9/4.2.192.48.table | 2 + .../grib2/tables/9/4.2.192.49.table | 2 + .../grib2/tables/9/4.2.192.5.table | 2 + .../grib2/tables/9/4.2.192.50.table | 2 + .../grib2/tables/9/4.2.192.51.table | 2 + .../grib2/tables/9/4.2.192.52.table | 2 + .../grib2/tables/9/4.2.192.53.table | 2 + .../grib2/tables/9/4.2.192.54.table | 2 + .../grib2/tables/9/4.2.192.55.table | 2 + .../grib2/tables/9/4.2.192.56.table | 2 + .../grib2/tables/9/4.2.192.57.table | 2 + .../grib2/tables/9/4.2.192.58.table | 2 + .../grib2/tables/9/4.2.192.59.table | 2 + .../grib2/tables/9/4.2.192.6.table | 2 + .../grib2/tables/9/4.2.192.60.table | 2 + .../grib2/tables/9/4.2.192.61.table | 2 + .../grib2/tables/9/4.2.192.62.table | 2 + .../grib2/tables/9/4.2.192.63.table | 2 + .../grib2/tables/9/4.2.192.64.table | 2 + .../grib2/tables/9/4.2.192.65.table | 2 + .../grib2/tables/9/4.2.192.66.table | 2 + .../grib2/tables/9/4.2.192.67.table | 2 + .../grib2/tables/9/4.2.192.68.table | 2 + .../grib2/tables/9/4.2.192.69.table | 2 + .../grib2/tables/9/4.2.192.7.table | 2 + .../grib2/tables/9/4.2.192.70.table | 2 + .../grib2/tables/9/4.2.192.71.table | 2 + .../grib2/tables/9/4.2.192.72.table | 2 + .../grib2/tables/9/4.2.192.73.table | 2 + .../grib2/tables/9/4.2.192.74.table | 2 + .../grib2/tables/9/4.2.192.75.table | 2 + .../grib2/tables/9/4.2.192.76.table | 2 + .../grib2/tables/9/4.2.192.77.table | 2 + .../grib2/tables/9/4.2.192.78.table | 2 + .../grib2/tables/9/4.2.192.79.table | 2 + .../grib2/tables/9/4.2.192.8.table | 2 + .../grib2/tables/9/4.2.192.80.table | 2 + .../grib2/tables/9/4.2.192.81.table | 2 + .../grib2/tables/9/4.2.192.82.table | 2 + .../grib2/tables/9/4.2.192.83.table | 2 + .../grib2/tables/9/4.2.192.84.table | 2 + .../grib2/tables/9/4.2.192.85.table | 2 + .../grib2/tables/9/4.2.192.86.table | 2 + .../grib2/tables/9/4.2.192.87.table | 2 + .../grib2/tables/9/4.2.192.88.table | 2 + .../grib2/tables/9/4.2.192.89.table | 2 + .../grib2/tables/9/4.2.192.9.table | 2 + .../grib2/tables/9/4.2.192.90.table | 2 + .../grib2/tables/9/4.2.192.91.table | 2 + .../grib2/tables/9/4.2.192.92.table | 2 + .../grib2/tables/9/4.2.192.93.table | 2 + .../grib2/tables/9/4.2.192.94.table | 2 + .../grib2/tables/9/4.2.192.95.table | 2 + .../grib2/tables/9/4.2.192.96.table | 2 + .../grib2/tables/9/4.2.192.97.table | 2 + .../grib2/tables/9/4.2.192.98.table | 2 + .../grib2/tables/9/4.2.192.99.table | 2 + .../definitions/grib2/tables/9/4.2.2.0.table | 37 + .../definitions/grib2/tables/9/4.2.2.3.table | 27 + .../definitions/grib2/tables/9/4.2.2.4.table | 7 + .../definitions/grib2/tables/9/4.2.3.0.table | 14 + .../definitions/grib2/tables/9/4.2.3.1.table | 28 + .../definitions/grib2/tables/9/4.201.table | 10 + .../definitions/grib2/tables/9/4.202.table | 4 + .../definitions/grib2/tables/9/4.203.table | 25 + .../definitions/grib2/tables/9/4.204.table | 9 + .../definitions/grib2/tables/9/4.205.table | 6 + .../definitions/grib2/tables/9/4.206.table | 6 + .../definitions/grib2/tables/9/4.207.table | 10 + .../definitions/grib2/tables/9/4.208.table | 9 + .../definitions/grib2/tables/9/4.209.table | 9 + .../definitions/grib2/tables/9/4.210.table | 6 + .../definitions/grib2/tables/9/4.211.table | 7 + .../definitions/grib2/tables/9/4.212.table | 18 + .../definitions/grib2/tables/9/4.213.table | 21 + .../definitions/grib2/tables/9/4.215.table | 9 + .../definitions/grib2/tables/9/4.216.table | 5 + .../definitions/grib2/tables/9/4.217.table | 8 + .../definitions/grib2/tables/9/4.218.table | 38 + .../definitions/grib2/tables/9/4.219.table | 8 + .../definitions/grib2/tables/9/4.220.table | 6 + .../definitions/grib2/tables/9/4.221.table | 6 + .../definitions/grib2/tables/9/4.222.table | 6 + .../definitions/grib2/tables/9/4.223.table | 5 + .../definitions/grib2/tables/9/4.224.table | 18 + .../definitions/grib2/tables/9/4.227.table | 10 + .../definitions/grib2/tables/9/4.230.table | 415 + .../definitions/grib2/tables/9/4.233.table | 3 + .../definitions/grib2/tables/9/4.234.table | 21 + .../definitions/grib2/tables/9/4.235.table | 8 + eccodes/definitions/grib2/tables/9/4.3.table | 16 + eccodes/definitions/grib2/tables/9/4.4.table | 17 + eccodes/definitions/grib2/tables/9/4.5.table | 48 + eccodes/definitions/grib2/tables/9/4.6.table | 9 + eccodes/definitions/grib2/tables/9/4.7.table | 14 + eccodes/definitions/grib2/tables/9/4.8.table | 6 + eccodes/definitions/grib2/tables/9/4.9.table | 9 + eccodes/definitions/grib2/tables/9/4.91.table | 16 + eccodes/definitions/grib2/tables/9/5.0.table | 24 + eccodes/definitions/grib2/tables/9/5.1.table | 6 + eccodes/definitions/grib2/tables/9/5.2.table | 8 + eccodes/definitions/grib2/tables/9/5.3.table | 7 + eccodes/definitions/grib2/tables/9/5.4.table | 6 + eccodes/definitions/grib2/tables/9/5.40.table | 5 + .../definitions/grib2/tables/9/5.40000.table | 5 + eccodes/definitions/grib2/tables/9/5.5.table | 7 + .../definitions/grib2/tables/9/5.50002.table | 19 + eccodes/definitions/grib2/tables/9/5.6.table | 7 + eccodes/definitions/grib2/tables/9/5.7.table | 7 + eccodes/definitions/grib2/tables/9/5.8.table | 3 + eccodes/definitions/grib2/tables/9/5.9.table | 4 + eccodes/definitions/grib2/tables/9/6.0.table | 6 + .../definitions/grib2/tables/9/stepType.table | 2 + .../grib2/tables/local/ecmf/1.1.table | 6 + .../grib2/tables/local/ecmf/1/4.2.0.20.table | 3 + .../grib2/tables/local/ecmf/1/4.2.2.0.table | 10 + .../grib2/tables/local/ecmf/1/4.230.table | 4 + .../grib2/tables/local/ecmf/1/4.233.table | 3 + .../grib2/tables/local/ecmf/4/1.2.table | 4 + .../grib2/tables/local/ecmf/obstat.1.0.table | 2 + .../grib2/tables/local/ecmf/obstat.10.0.table | 42 + .../grib2/tables/local/ecmf/obstat.11.0.table | 4 + .../grib2/tables/local/ecmf/obstat.2.0.table | 13 + .../grib2/tables/local/ecmf/obstat.3.0.table | 52 + .../grib2/tables/local/ecmf/obstat.4.0.table | 82 + .../grib2/tables/local/ecmf/obstat.5.0.table | 53 + .../grib2/tables/local/ecmf/obstat.6.0.table | 6 + .../grib2/tables/local/ecmf/obstat.7.0.table | 6 + .../grib2/tables/local/ecmf/obstat.8.0.table | 6 + .../grib2/tables/local/ecmf/obstat.9.0.table | 52 + .../tables/local/ecmf/obstat.reporttype.table | 185 + .../tables/local/ecmf/obstat.varno.table | 31 + .../grib2/tables/local/edzw/1.1.table | 5 + .../grib2/tables/local/edzw/1/1.4.table | 2 + .../grib2/tables/local/edzw/1/4.0.table | 10 + .../grib2/tables/local/edzw/1/4.1.0.table | 12 + .../grib2/tables/local/edzw/1/4.11.table | 4 + .../grib2/tables/local/edzw/1/4.2.0.0.table | 5 + .../grib2/tables/local/edzw/1/4.2.0.1.table | 46 + .../grib2/tables/local/edzw/1/4.2.0.13.table | 6 + .../grib2/tables/local/edzw/1/4.2.0.14.table | 3 + .../grib2/tables/local/edzw/1/4.2.0.15.table | 8 + .../grib2/tables/local/edzw/1/4.2.0.16.table | 7 + .../grib2/tables/local/edzw/1/4.2.0.17.table | 2 + .../grib2/tables/local/edzw/1/4.2.0.18.table | 2 + .../grib2/tables/local/edzw/1/4.2.0.19.table | 39 + .../grib2/tables/local/edzw/1/4.2.0.191.table | 11 + .../grib2/tables/local/edzw/1/4.2.0.192.table | 5 + .../grib2/tables/local/edzw/1/4.2.0.193.table | 31 + .../grib2/tables/local/edzw/1/4.2.0.194.table | 4 + .../grib2/tables/local/edzw/1/4.2.0.195.table | 29 + .../grib2/tables/local/edzw/1/4.2.0.196.table | 15 + .../grib2/tables/local/edzw/1/4.2.0.197.table | 9 + .../grib2/tables/local/edzw/1/4.2.0.198.table | 4 + .../grib2/tables/local/edzw/1/4.2.0.199.table | 5 + .../grib2/tables/local/edzw/1/4.2.0.2.table | 21 + .../grib2/tables/local/edzw/1/4.2.0.20.table | 19 + .../grib2/tables/local/edzw/1/4.2.0.254.table | 255 + .../grib2/tables/local/edzw/1/4.2.0.3.table | 7 + .../grib2/tables/local/edzw/1/4.2.0.4.table | 9 + .../grib2/tables/local/edzw/1/4.2.0.5.table | 2 + .../grib2/tables/local/edzw/1/4.2.0.6.table | 15 + .../grib2/tables/local/edzw/1/4.2.0.7.table | 5 + .../grib2/tables/local/edzw/1/4.2.1.0.table | 2 + .../grib2/tables/local/edzw/1/4.2.10.0.table | 11 + .../grib2/tables/local/edzw/1/4.2.10.3.table | 2 + .../grib2/tables/local/edzw/1/4.2.2.0.table | 9 + .../grib2/tables/local/edzw/1/4.2.2.3.table | 10 + .../tables/local/edzw/1/4.2.215.19.table | 2 + .../grib2/tables/local/edzw/1/4.2.215.2.table | 14 + .../grib2/tables/local/edzw/1/4.2.215.5.table | 4 + .../grib2/tables/local/edzw/1/4.2.215.7.table | 4 + .../grib2/tables/local/edzw/1/4.2.3.0.table | 2 + .../grib2/tables/local/edzw/1/4.2.3.1.table | 2 + .../grib2/tables/local/edzw/1/4.3.table | 17 + .../grib2/tables/local/edzw/1/4.5.table | 14 + .../grib2/tables/local/edzw/1/4.6.table | 3 + .../grib2/tables/local/edzw/1/4.7.table | 64 + .../grib2/tables/local/edzw/1/4.9.table | 64 + .../local/edzw/1/backgroundProcess.table | 42 + .../edzw/1/generatingProcessIdentifier.table | 113 + .../grib2/tables/local/kwbc/1/4.5.table | 89 + eccodes/definitions/grib2/template.1.0.def | 5 + eccodes/definitions/grib2/template.1.1.def | 5 + eccodes/definitions/grib2/template.1.2.def | 6 + .../definitions/grib2/template.1.calendar.def | 4 + .../definitions/grib2/template.1.offset.def | 5 + eccodes/definitions/grib2/template.3.0.def | 6 + eccodes/definitions/grib2/template.3.1.def | 7 + eccodes/definitions/grib2/template.3.10.def | 85 + eccodes/definitions/grib2/template.3.100.def | 43 + eccodes/definitions/grib2/template.3.1000.def | 55 + eccodes/definitions/grib2/template.3.101.def | 14 + eccodes/definitions/grib2/template.3.110.def | 35 + eccodes/definitions/grib2/template.3.1100.def | 75 + eccodes/definitions/grib2/template.3.12.def | 71 + eccodes/definitions/grib2/template.3.120.def | 44 + eccodes/definitions/grib2/template.3.1200.def | 57 + eccodes/definitions/grib2/template.3.13.def | 5 + eccodes/definitions/grib2/template.3.130.def | 10 + eccodes/definitions/grib2/template.3.140.def | 70 + eccodes/definitions/grib2/template.3.2.def | 7 + eccodes/definitions/grib2/template.3.20.def | 83 + eccodes/definitions/grib2/template.3.23.def | 5 + eccodes/definitions/grib2/template.3.3.def | 9 + eccodes/definitions/grib2/template.3.30.def | 96 + eccodes/definitions/grib2/template.3.31.def | 62 + .../definitions/grib2/template.3.32769.def | 5 + eccodes/definitions/grib2/template.3.33.def | 5 + eccodes/definitions/grib2/template.3.4.def | 6 + eccodes/definitions/grib2/template.3.40.def | 6 + eccodes/definitions/grib2/template.3.41.def | 7 + eccodes/definitions/grib2/template.3.42.def | 7 + eccodes/definitions/grib2/template.3.43.def | 8 + eccodes/definitions/grib2/template.3.5.def | 7 + eccodes/definitions/grib2/template.3.50.def | 5 + eccodes/definitions/grib2/template.3.51.def | 6 + eccodes/definitions/grib2/template.3.52.def | 6 + eccodes/definitions/grib2/template.3.53.def | 7 + eccodes/definitions/grib2/template.3.61.def | 43 + eccodes/definitions/grib2/template.3.62.def | 45 + eccodes/definitions/grib2/template.3.63.def | 57 + eccodes/definitions/grib2/template.3.90.def | 90 + eccodes/definitions/grib2/template.3.bf.def | 31 + .../definitions/grib2/template.3.gaussian.def | 91 + eccodes/definitions/grib2/template.3.grid.def | 58 + eccodes/definitions/grib2/template.3.lam.def | 12 + .../definitions/grib2/template.3.latlon.def | 77 + .../grib2/template.3.latlon_vares.def | 47 + .../grib2/template.3.resolution_flags.def | 38 + .../definitions/grib2/template.3.rotation.def | 21 + .../grib2/template.3.scanning_mode.def | 38 + .../grib2/template.3.shape_of_the_earth.def | 106 + .../grib2/template.3.spherical_harmonics.def | 28 + .../grib2/template.3.stretching.def | 19 + eccodes/definitions/grib2/template.4.0.def | 7 + eccodes/definitions/grib2/template.4.1.def | 8 + eccodes/definitions/grib2/template.4.10.def | 8 + eccodes/definitions/grib2/template.4.1000.def | 6 + eccodes/definitions/grib2/template.4.1001.def | 6 + eccodes/definitions/grib2/template.4.1002.def | 24 + eccodes/definitions/grib2/template.4.11.def | 8 + eccodes/definitions/grib2/template.4.1100.def | 6 + eccodes/definitions/grib2/template.4.1101.def | 7 + eccodes/definitions/grib2/template.4.12.def | 8 + eccodes/definitions/grib2/template.4.13.def | 14 + eccodes/definitions/grib2/template.4.14.def | 13 + eccodes/definitions/grib2/template.4.15.def | 11 + eccodes/definitions/grib2/template.4.2.def | 8 + eccodes/definitions/grib2/template.4.20.def | 64 + eccodes/definitions/grib2/template.4.2000.def | 4 + eccodes/definitions/grib2/template.4.254.def | 14 + eccodes/definitions/grib2/template.4.3.def | 13 + eccodes/definitions/grib2/template.4.30.def | 27 + eccodes/definitions/grib2/template.4.31.def | 27 + eccodes/definitions/grib2/template.4.311.def | 28 + eccodes/definitions/grib2/template.4.32.def | 25 + eccodes/definitions/grib2/template.4.33.def | 10 + eccodes/definitions/grib2/template.4.34.def | 11 + eccodes/definitions/grib2/template.4.35.def | 30 + eccodes/definitions/grib2/template.4.4.def | 13 + eccodes/definitions/grib2/template.4.40.def | 7 + .../definitions/grib2/template.4.40033.def | 6 + .../definitions/grib2/template.4.40034.def | 6 + eccodes/definitions/grib2/template.4.41.def | 8 + eccodes/definitions/grib2/template.4.42.def | 7 + eccodes/definitions/grib2/template.4.43.def | 8 + eccodes/definitions/grib2/template.4.44.def | 11 + eccodes/definitions/grib2/template.4.45.def | 8 + eccodes/definitions/grib2/template.4.46.def | 7 + eccodes/definitions/grib2/template.4.47.def | 9 + eccodes/definitions/grib2/template.4.48.def | 7 + eccodes/definitions/grib2/template.4.49.def | 8 + eccodes/definitions/grib2/template.4.5.def | 8 + eccodes/definitions/grib2/template.4.51.def | 8 + eccodes/definitions/grib2/template.4.53.def | 10 + eccodes/definitions/grib2/template.4.54.def | 10 + eccodes/definitions/grib2/template.4.55.def | 7 + eccodes/definitions/grib2/template.4.56.def | 18 + eccodes/definitions/grib2/template.4.57.def | 7 + eccodes/definitions/grib2/template.4.58.def | 8 + eccodes/definitions/grib2/template.4.59.def | 10 + eccodes/definitions/grib2/template.4.6.def | 8 + eccodes/definitions/grib2/template.4.60.def | 9 + eccodes/definitions/grib2/template.4.61.def | 9 + eccodes/definitions/grib2/template.4.67.def | 7 + eccodes/definitions/grib2/template.4.68.def | 8 + eccodes/definitions/grib2/template.4.7.def | 2 + eccodes/definitions/grib2/template.4.70.def | 7 + eccodes/definitions/grib2/template.4.71.def | 8 + eccodes/definitions/grib2/template.4.72.def | 7 + eccodes/definitions/grib2/template.4.73.def | 8 + eccodes/definitions/grib2/template.4.76.def | 6 + eccodes/definitions/grib2/template.4.77.def | 7 + eccodes/definitions/grib2/template.4.78.def | 6 + eccodes/definitions/grib2/template.4.79.def | 7 + eccodes/definitions/grib2/template.4.8.def | 7 + eccodes/definitions/grib2/template.4.80.def | 14 + eccodes/definitions/grib2/template.4.81.def | 15 + eccodes/definitions/grib2/template.4.82.def | 14 + eccodes/definitions/grib2/template.4.83.def | 9 + eccodes/definitions/grib2/template.4.84.def | 7 + eccodes/definitions/grib2/template.4.85.def | 7 + eccodes/definitions/grib2/template.4.9.def | 8 + eccodes/definitions/grib2/template.4.91.def | 8 + .../grib2/template.4.categorical.def | 21 + .../grib2/template.4.circular_cluster.def | 47 + .../definitions/grib2/template.4.derived.def | 8 + eccodes/definitions/grib2/template.4.eps.def | 25 + .../grib2/template.4.horizontal.def | 89 + .../grib2/template.4.parameter.def | 38 + .../grib2/template.4.parameter_aerosol.def | 47 + .../grib2/template.4.parameter_aerosol_44.def | 66 + .../template.4.parameter_aerosol_optical.def | 57 + ...ate.4.parameter_aerosol_optical_source.def | 60 + .../template.4.parameter_aerosol_source.def | 50 + .../grib2/template.4.parameter_chemical.def | 40 + ...late.4.parameter_chemical_distribution.def | 59 + .../template.4.parameter_chemical_source.def | 43 + .../grib2/template.4.parameter_partition.def | 44 + .../grib2/template.4.parameter_postproc.def | 46 + .../grib2/template.4.parameter_tile.def | 51 + .../grib2/template.4.percentile.def | 5 + .../grib2/template.4.point_in_time.def | 31 + .../grib2/template.4.probability.def | 30 + .../grib2/template.4.rectangular_cluster.def | 50 + .../grib2/template.4.reforecast.def | 14 + .../grib2/template.4.statistical.def | 123 + eccodes/definitions/grib2/template.5.0.def | 7 + eccodes/definitions/grib2/template.5.1.def | 77 + eccodes/definitions/grib2/template.5.2.def | 44 + eccodes/definitions/grib2/template.5.3.def | 51 + eccodes/definitions/grib2/template.5.4.def | 12 + eccodes/definitions/grib2/template.5.40.def | 15 + .../definitions/grib2/template.5.40000.def | 3 + .../definitions/grib2/template.5.40010.def | 3 + eccodes/definitions/grib2/template.5.41.def | 6 + eccodes/definitions/grib2/template.5.42.def | 25 + eccodes/definitions/grib2/template.5.50.def | 7 + .../definitions/grib2/template.5.50000.def | 35 + .../definitions/grib2/template.5.50001.def | 27 + .../definitions/grib2/template.5.50002.def | 29 + eccodes/definitions/grib2/template.5.51.def | 36 + eccodes/definitions/grib2/template.5.53.def | 26 + eccodes/definitions/grib2/template.5.6.def | 8 + eccodes/definitions/grib2/template.5.61.def | 8 + .../grib2/template.5.original_values.def | 4 + .../definitions/grib2/template.5.packing.def | 23 + .../grib2/template.5.second_order.def | 21 + eccodes/definitions/grib2/template.7.0.def | 34 + eccodes/definitions/grib2/template.7.1.def | 35 + eccodes/definitions/grib2/template.7.2.def | 49 + eccodes/definitions/grib2/template.7.3.def | 47 + eccodes/definitions/grib2/template.7.4.def | 25 + eccodes/definitions/grib2/template.7.40.def | 51 + .../definitions/grib2/template.7.40000.def | 3 + .../definitions/grib2/template.7.40010.def | 3 + eccodes/definitions/grib2/template.7.41.def | 32 + eccodes/definitions/grib2/template.7.42.def | 35 + eccodes/definitions/grib2/template.7.50.def | 40 + .../definitions/grib2/template.7.50000.def | 109 + .../definitions/grib2/template.7.50001.def | 100 + .../definitions/grib2/template.7.50002.def | 148 + eccodes/definitions/grib2/template.7.51.def | 114 + eccodes/definitions/grib2/template.7.53.def | 47 + eccodes/definitions/grib2/template.7.6.def | 32 + eccodes/definitions/grib2/template.7.61.def | 32 + .../grib2/template.7.second_order.def | 56 + .../grib2/template.second_order.def | 1 + .../definitions/grib2/tiggeLocalVersion.table | 1 + eccodes/definitions/grib2/tigge_name.def | 45 + eccodes/definitions/grib2/tigge_parameter.def | 395 + .../definitions/grib2/tigge_short_name.def | 44 + .../definitions/grib2/tigge_suiteName.table | 12 + .../definitions/grib2/typeOfLevelConcept.def | 49 + .../grib2/typeOfUnstructuredGridConcept.def | 5 + eccodes/definitions/grib2/units.def | 4140 +++ .../grib2/unstructuredGridConcept.def | 5 + .../grib2/unstructuredGridSubtype.def | 1 + .../grib2/unstructuredGridType.def | 1 + .../grib2/unstructuredGridUUID.def | 1 + eccodes/definitions/grib3/boot.def | 31 + eccodes/definitions/grib3/centre.table | 150 + eccodes/definitions/grib3/cfName.def | 162 + eccodes/definitions/grib3/cfVarName.def | 3009 +++ eccodes/definitions/grib3/dimension.0.table | 1 + .../grib3/dimensionTableNumber.table | 1 + eccodes/definitions/grib3/dimensionType.table | 2 + .../grib3/grib2LocalSectionNumber.82.table | 4 + .../grib3/grib2LocalSectionNumber.85.table | 3 + .../grib3/grib2LocalSectionNumber.98.table | 21 + eccodes/definitions/grib3/local.82.0.def | 28 + eccodes/definitions/grib3/local.82.82.def | 16 + eccodes/definitions/grib3/local.82.83.def | 22 + eccodes/definitions/grib3/local.82.def | 22 + eccodes/definitions/grib3/local.85.0.def | 1 + eccodes/definitions/grib3/local.85.1.def | 29 + eccodes/definitions/grib3/local.85.2.def | 5 + eccodes/definitions/grib3/local.85.def | 3 + eccodes/definitions/grib3/local.98.0.def | 3 + eccodes/definitions/grib3/local.98.1.def | 3 + eccodes/definitions/grib3/local.98.11.def | 28 + eccodes/definitions/grib3/local.98.14.def | 13 + eccodes/definitions/grib3/local.98.15.def | 18 + eccodes/definitions/grib3/local.98.16.def | 16 + eccodes/definitions/grib3/local.98.18.def | 26 + eccodes/definitions/grib3/local.98.192.def | 20 + eccodes/definitions/grib3/local.98.20.def | 20 + eccodes/definitions/grib3/local.98.21.def | 42 + eccodes/definitions/grib3/local.98.24.def | 11 + eccodes/definitions/grib3/local.98.25.def | 19 + eccodes/definitions/grib3/local.98.26.def | 18 + eccodes/definitions/grib3/local.98.28.def | 16 + eccodes/definitions/grib3/local.98.30.def | 28 + eccodes/definitions/grib3/local.98.300.def | 22 + eccodes/definitions/grib3/local.98.36.def | 17 + eccodes/definitions/grib3/local.98.38.def | 28 + eccodes/definitions/grib3/local.98.39.def | 26 + eccodes/definitions/grib3/local.98.500.def | 53 + eccodes/definitions/grib3/local.98.7.def | 24 + eccodes/definitions/grib3/local.98.9.def | 47 + eccodes/definitions/grib3/local.98.def | 33 + eccodes/definitions/grib3/local.tigge.1.def | 5 + .../definitions/grib3/local/1098/2.1.table | 1 + .../grib3/local/1098/centres.table | 12 + .../definitions/grib3/local/1098/models.table | 13 + .../grib3/local/1098/template.2.0.def | 19 + .../grib3/local/1098/template.2.0.def~ | 19 + eccodes/definitions/grib3/local/2.0.table | 96 + .../definitions/grib3/local/edzw/2.0.3.table | 130 + eccodes/definitions/grib3/local/edzw/3.table | 51 + eccodes/definitions/grib3/local/edzw/5.table | 24 + .../edzw/generatingProcessIdentifier.table | 86 + .../grib3/localConcepts/ecmf/cfName.def | 147 + .../grib3/localConcepts/ecmf/cfVarName.def | 17509 ++++++++++++ .../grib3/localConcepts/ecmf/name.def | 17509 ++++++++++++ .../grib3/localConcepts/ecmf/paramId.def | 17509 ++++++++++++ .../grib3/localConcepts/ecmf/shortName.def | 17509 ++++++++++++ .../grib3/localConcepts/ecmf/units.def | 17509 ++++++++++++ eccodes/definitions/grib3/ls.def | 2 + eccodes/definitions/grib3/ls_labeling.82.def | 23 + .../definitions/grib3/mars_labeling.82.def | 48 + eccodes/definitions/grib3/mars_labeling.def | 52 + eccodes/definitions/grib3/meta.def | 12 + eccodes/definitions/grib3/modelName.def | 43 + eccodes/definitions/grib3/name.def | 3009 +++ eccodes/definitions/grib3/paramId.def | 3009 +++ eccodes/definitions/grib3/parameters.def | 38 + eccodes/definitions/grib3/products_0.def | 18 + eccodes/definitions/grib3/products_1.def | 20 + eccodes/definitions/grib3/products_2.def | 19 + eccodes/definitions/grib3/products_3.def | 19 + eccodes/definitions/grib3/products_4.def | 12 + eccodes/definitions/grib3/products_5.def | 12 + eccodes/definitions/grib3/products_6.def | 12 + eccodes/definitions/grib3/products_7.def | 12 + eccodes/definitions/grib3/products_8.def | 12 + eccodes/definitions/grib3/products_9.def | 12 + eccodes/definitions/grib3/products_s2s.def | 106 + eccodes/definitions/grib3/products_tigge.def | 102 + eccodes/definitions/grib3/products_uerra.def | 92 + eccodes/definitions/grib3/rules.def | 19 + eccodes/definitions/grib3/section.00.def | 26 + eccodes/definitions/grib3/section.01.def | 103 + eccodes/definitions/grib3/section.02.def | 65 + eccodes/definitions/grib3/section.03.def | 45 + eccodes/definitions/grib3/section.04.def | 33 + eccodes/definitions/grib3/section.05.def | 22 + eccodes/definitions/grib3/section.06.def | 22 + eccodes/definitions/grib3/section.07.def | 22 + eccodes/definitions/grib3/section.08.def | 27 + eccodes/definitions/grib3/section.09.def | 24 + eccodes/definitions/grib3/section.10.def | 35 + eccodes/definitions/grib3/section.11.def | 13 + eccodes/definitions/grib3/sections.def | 77 + eccodes/definitions/grib3/shortName.def | 3009 +++ eccodes/definitions/grib3/tables/0.0.table | 5 + eccodes/definitions/grib3/tables/0/0.0.table | 10 + eccodes/definitions/grib3/tables/0/1.0.table | 7 + eccodes/definitions/grib3/tables/0/1.1.table | 5 + eccodes/definitions/grib3/tables/0/1.2.table | 8 + eccodes/definitions/grib3/tables/0/1.3.table | 10 + eccodes/definitions/grib3/tables/0/1.4.table | 13 + eccodes/definitions/grib3/tables/0/3.0.table | 6 + eccodes/definitions/grib3/tables/0/3.1.table | 43 + eccodes/definitions/grib3/tables/0/3.10.table | 7 + eccodes/definitions/grib3/tables/0/3.11.table | 5 + eccodes/definitions/grib3/tables/0/3.15.table | 25 + eccodes/definitions/grib3/tables/0/3.2.table | 11 + eccodes/definitions/grib3/tables/0/3.20.table | 6 + eccodes/definitions/grib3/tables/0/3.21.table | 8 + eccodes/definitions/grib3/tables/0/3.3.table | 7 + eccodes/definitions/grib3/tables/0/3.4.table | 9 + eccodes/definitions/grib3/tables/0/3.5.table | 5 + eccodes/definitions/grib3/tables/0/3.6.table | 2 + eccodes/definitions/grib3/tables/0/3.7.table | 11 + eccodes/definitions/grib3/tables/0/3.8.table | 8 + eccodes/definitions/grib3/tables/0/3.9.table | 3 + eccodes/definitions/grib3/tables/0/4.0.table | 38 + .../definitions/grib3/tables/0/4.1.0.table | 30 + .../definitions/grib3/tables/0/4.1.1.table | 9 + .../definitions/grib3/tables/0/4.1.10.table | 12 + .../definitions/grib3/tables/0/4.1.2.table | 11 + .../definitions/grib3/tables/0/4.1.3.table | 9 + eccodes/definitions/grib3/tables/0/4.1.table | 5 + eccodes/definitions/grib3/tables/0/4.10.table | 14 + eccodes/definitions/grib3/tables/0/4.11.table | 9 + eccodes/definitions/grib3/tables/0/4.12.table | 69 + eccodes/definitions/grib3/tables/0/4.13.table | 68 + eccodes/definitions/grib3/tables/0/4.14.table | 68 + eccodes/definitions/grib3/tables/0/4.15.table | 68 + .../definitions/grib3/tables/0/4.151.table | 70 + .../definitions/grib3/tables/0/4.2.0.0.table | 23 + .../definitions/grib3/tables/0/4.2.0.1.table | 66 + .../definitions/grib3/tables/0/4.2.0.13.table | 6 + .../definitions/grib3/tables/0/4.2.0.14.table | 7 + .../definitions/grib3/tables/0/4.2.0.15.table | 14 + .../definitions/grib3/tables/0/4.2.0.18.table | 14 + .../definitions/grib3/tables/0/4.2.0.19.table | 24 + .../grib3/tables/0/4.2.0.190.table | 6 + .../grib3/tables/0/4.2.0.191.table | 6 + .../definitions/grib3/tables/0/4.2.0.2.table | 35 + .../definitions/grib3/tables/0/4.2.0.20.table | 26 + .../definitions/grib3/tables/0/4.2.0.3.table | 25 + .../definitions/grib3/tables/0/4.2.0.4.table | 14 + .../definitions/grib3/tables/0/4.2.0.5.table | 11 + .../definitions/grib3/tables/0/4.2.0.6.table | 30 + .../definitions/grib3/tables/0/4.2.0.7.table | 18 + .../definitions/grib3/tables/0/4.2.1.0.table | 16 + .../definitions/grib3/tables/0/4.2.1.1.table | 8 + .../definitions/grib3/tables/0/4.2.10.0.table | 20 + .../definitions/grib3/tables/0/4.2.10.1.table | 8 + .../definitions/grib3/tables/0/4.2.10.2.table | 12 + .../definitions/grib3/tables/0/4.2.10.3.table | 6 + .../definitions/grib3/tables/0/4.2.10.4.table | 9 + .../definitions/grib3/tables/0/4.2.2.0.table | 29 + .../definitions/grib3/tables/0/4.2.2.3.table | 16 + .../definitions/grib3/tables/0/4.2.3.0.table | 14 + .../definitions/grib3/tables/0/4.2.3.1.table | 11 + eccodes/definitions/grib3/tables/0/4.2.table | 5 + .../definitions/grib3/tables/0/4.201.table | 71 + .../definitions/grib3/tables/0/4.202.table | 66 + .../definitions/grib3/tables/0/4.203.table | 88 + .../definitions/grib3/tables/0/4.204.table | 71 + .../definitions/grib3/tables/0/4.205.table | 68 + .../definitions/grib3/tables/0/4.206.table | 68 + .../definitions/grib3/tables/0/4.207.table | 70 + .../definitions/grib3/tables/0/4.208.table | 71 + .../definitions/grib3/tables/0/4.209.table | 70 + .../definitions/grib3/tables/0/4.210.table | 68 + .../definitions/grib3/tables/0/4.211.table | 69 + .../definitions/grib3/tables/0/4.212.table | 79 + .../definitions/grib3/tables/0/4.213.table | 77 + .../definitions/grib3/tables/0/4.215.table | 10 + .../definitions/grib3/tables/0/4.216.table | 95 + .../definitions/grib3/tables/0/4.217.table | 70 + .../definitions/grib3/tables/0/4.220.table | 68 + .../definitions/grib3/tables/0/4.221.table | 68 + .../definitions/grib3/tables/0/4.230.table | 117 + eccodes/definitions/grib3/tables/0/4.3.table | 13 + eccodes/definitions/grib3/tables/0/4.4.table | 16 + eccodes/definitions/grib3/tables/0/4.5.table | 33 + eccodes/definitions/grib3/tables/0/4.6.table | 8 + eccodes/definitions/grib3/tables/0/4.7.table | 73 + eccodes/definitions/grib3/tables/0/4.8.table | 68 + eccodes/definitions/grib3/tables/0/4.9.table | 71 + eccodes/definitions/grib3/tables/0/4.91.table | 78 + eccodes/definitions/grib3/tables/0/5.0.table | 16 + eccodes/definitions/grib3/tables/0/5.1.table | 5 + eccodes/definitions/grib3/tables/0/5.2.table | 6 + eccodes/definitions/grib3/tables/0/5.3.table | 6 + eccodes/definitions/grib3/tables/0/5.4.table | 5 + eccodes/definitions/grib3/tables/0/5.40.table | 5 + .../definitions/grib3/tables/0/5.40000.table | 5 + eccodes/definitions/grib3/tables/0/5.5.table | 7 + eccodes/definitions/grib3/tables/0/5.6.table | 68 + eccodes/definitions/grib3/tables/0/5.7.table | 6 + eccodes/definitions/grib3/tables/0/5.8.table | 3 + eccodes/definitions/grib3/tables/0/5.9.table | 4 + eccodes/definitions/grib3/tables/0/6.0.table | 7 + eccodes/definitions/grib3/tables/1.0.table | 4 + eccodes/definitions/grib3/tables/1/0.0.table | 10 + eccodes/definitions/grib3/tables/1/1.0.table | 4 + eccodes/definitions/grib3/tables/1/1.1.table | 7 + eccodes/definitions/grib3/tables/1/1.2.table | 7 + eccodes/definitions/grib3/tables/1/1.3.table | 10 + eccodes/definitions/grib3/tables/1/1.4.table | 13 + eccodes/definitions/grib3/tables/1/3.0.table | 8 + eccodes/definitions/grib3/tables/1/3.1.table | 8 + eccodes/definitions/grib3/tables/1/3.10.table | 7 + eccodes/definitions/grib3/tables/1/3.11.table | 5 + eccodes/definitions/grib3/tables/1/3.15.table | 25 + eccodes/definitions/grib3/tables/1/3.2.table | 5 + eccodes/definitions/grib3/tables/1/3.20.table | 6 + eccodes/definitions/grib3/tables/1/3.21.table | 8 + eccodes/definitions/grib3/tables/1/3.3.table | 17 + eccodes/definitions/grib3/tables/1/3.4.table | 9 + eccodes/definitions/grib3/tables/1/3.5.table | 5 + eccodes/definitions/grib3/tables/1/3.6.table | 2 + eccodes/definitions/grib3/tables/1/3.7.table | 11 + eccodes/definitions/grib3/tables/1/3.8.table | 8 + eccodes/definitions/grib3/tables/1/3.9.table | 3 + eccodes/definitions/grib3/tables/1/4.0.table | 8 + eccodes/definitions/grib3/tables/1/4.1.table | 9 + eccodes/definitions/grib3/tables/1/4.10.table | 14 + eccodes/definitions/grib3/tables/1/4.11.table | 9 + eccodes/definitions/grib3/tables/1/4.12.table | 69 + eccodes/definitions/grib3/tables/1/4.13.table | 68 + eccodes/definitions/grib3/tables/1/4.14.table | 68 + eccodes/definitions/grib3/tables/1/4.15.table | 68 + .../definitions/grib3/tables/1/4.151.table | 70 + .../definitions/grib3/tables/1/4.2.0.15.table | 14 + .../definitions/grib3/tables/1/4.2.0.18.table | 14 + .../definitions/grib3/tables/1/4.2.0.19.table | 24 + .../grib3/tables/1/4.2.0.190.table | 6 + .../grib3/tables/1/4.2.0.191.table | 6 + .../definitions/grib3/tables/1/4.2.0.2.table | 35 + .../definitions/grib3/tables/1/4.2.0.20.table | 13 + .../definitions/grib3/tables/1/4.2.0.3.table | 25 + .../definitions/grib3/tables/1/4.2.0.4.table | 14 + .../definitions/grib3/tables/1/4.2.0.5.table | 11 + .../definitions/grib3/tables/1/4.2.0.6.table | 30 + .../definitions/grib3/tables/1/4.2.0.7.table | 18 + .../definitions/grib3/tables/1/4.2.10.0.table | 20 + .../definitions/grib3/tables/1/4.2.10.1.table | 8 + .../definitions/grib3/tables/1/4.2.10.2.table | 12 + .../definitions/grib3/tables/1/4.2.10.3.table | 6 + .../definitions/grib3/tables/1/4.2.10.4.table | 9 + .../definitions/grib3/tables/1/4.2.2.0.table | 29 + .../definitions/grib3/tables/1/4.2.2.3.table | 16 + .../definitions/grib3/tables/1/4.2.3.0.table | 14 + .../definitions/grib3/tables/1/4.2.3.1.table | 11 + eccodes/definitions/grib3/tables/1/4.2.table | 17 + .../definitions/grib3/tables/1/4.201.table | 71 + .../definitions/grib3/tables/1/4.202.table | 66 + .../definitions/grib3/tables/1/4.203.table | 88 + .../definitions/grib3/tables/1/4.204.table | 71 + .../definitions/grib3/tables/1/4.205.table | 68 + .../definitions/grib3/tables/1/4.206.table | 68 + .../definitions/grib3/tables/1/4.207.table | 70 + .../definitions/grib3/tables/1/4.208.table | 71 + .../definitions/grib3/tables/1/4.209.table | 70 + .../definitions/grib3/tables/1/4.210.table | 68 + .../definitions/grib3/tables/1/4.211.table | 69 + .../definitions/grib3/tables/1/4.212.table | 79 + .../definitions/grib3/tables/1/4.213.table | 77 + .../definitions/grib3/tables/1/4.215.table | 10 + .../definitions/grib3/tables/1/4.216.table | 95 + .../definitions/grib3/tables/1/4.217.table | 70 + .../definitions/grib3/tables/1/4.220.table | 68 + .../definitions/grib3/tables/1/4.221.table | 68 + .../definitions/grib3/tables/1/4.230.table | 47 + eccodes/definitions/grib3/tables/1/4.3.table | 13 + eccodes/definitions/grib3/tables/1/4.4.table | 16 + eccodes/definitions/grib3/tables/1/4.5.table | 33 + eccodes/definitions/grib3/tables/1/4.6.table | 8 + eccodes/definitions/grib3/tables/1/4.7.table | 73 + eccodes/definitions/grib3/tables/1/4.8.table | 68 + eccodes/definitions/grib3/tables/1/4.9.table | 71 + eccodes/definitions/grib3/tables/1/4.91.table | 78 + eccodes/definitions/grib3/tables/1/5.0.table | 6 + eccodes/definitions/grib3/tables/1/5.1.table | 72 + eccodes/definitions/grib3/tables/1/5.2.table | 6 + eccodes/definitions/grib3/tables/1/5.3.table | 6 + eccodes/definitions/grib3/tables/1/5.4.table | 5 + eccodes/definitions/grib3/tables/1/5.40.table | 5 + .../definitions/grib3/tables/1/5.40000.table | 5 + eccodes/definitions/grib3/tables/1/5.5.table | 7 + eccodes/definitions/grib3/tables/1/5.6.table | 68 + eccodes/definitions/grib3/tables/1/5.7.table | 6 + eccodes/definitions/grib3/tables/1/5.8.table | 3 + eccodes/definitions/grib3/tables/1/5.9.table | 4 + eccodes/definitions/grib3/tables/1/6.0.table | 7 + eccodes/definitions/grib3/tables/1/6.1.table | 23 + eccodes/definitions/grib3/tables/1/6.2.table | 9 + eccodes/definitions/grib3/tables/1/6.3.table | 11 + eccodes/definitions/grib3/tables/1/7.0.table | 9 + eccodes/definitions/grib3/tables/1/7.1.table | 10 + .../definitions/grib3/tables/1/7.2.0.table | 28 + .../definitions/grib3/tables/1/7.2.1.table | 8 + .../definitions/grib3/tables/1/7.2.10.table | 11 + .../definitions/grib3/tables/1/7.2.2.table | 10 + .../definitions/grib3/tables/1/7.2.3.table | 11 + .../definitions/grib3/tables/1/7.3.0.0.table | 20 + .../definitions/grib3/tables/1/7.3.0.1.table | 10 + .../definitions/grib3/tables/1/7.3.0.13.table | 6 + .../definitions/grib3/tables/1/7.3.0.14.table | 8 + .../definitions/grib3/tables/1/7.3.0.15.table | 22 + .../definitions/grib3/tables/1/7.3.0.16.table | 11 + .../definitions/grib3/tables/1/7.3.0.17.table | 4 + .../definitions/grib3/tables/1/7.3.0.18.table | 24 + .../definitions/grib3/tables/1/7.3.0.19.table | 37 + .../definitions/grib3/tables/1/7.3.0.2.table | 12 + .../definitions/grib3/tables/1/7.3.0.20.table | 48 + .../definitions/grib3/tables/1/7.3.0.3.table | 16 + .../definitions/grib3/tables/1/7.3.0.4.table | 10 + .../definitions/grib3/tables/1/7.3.0.5.table | 13 + .../definitions/grib3/tables/1/7.3.0.6.table | 28 + .../definitions/grib3/tables/1/7.3.0.7.table | 25 + .../definitions/grib3/tables/1/7.3.1.0.table | 22 + .../definitions/grib3/tables/1/7.3.1.1.table | 8 + .../definitions/grib3/tables/1/7.3.1.2.table | 16 + .../grib3/tables/local/ecmf/4/1.2.table | 4 + .../grib3/tables/local/ecmf/obstat.1.0.table | 2 + .../grib3/tables/local/ecmf/obstat.10.0.table | 42 + .../grib3/tables/local/ecmf/obstat.11.0.table | 4 + .../grib3/tables/local/ecmf/obstat.2.0.table | 13 + .../grib3/tables/local/ecmf/obstat.3.0.table | 52 + .../grib3/tables/local/ecmf/obstat.4.0.table | 82 + .../grib3/tables/local/ecmf/obstat.5.0.table | 53 + .../grib3/tables/local/ecmf/obstat.6.0.table | 6 + .../grib3/tables/local/ecmf/obstat.7.0.table | 6 + .../grib3/tables/local/ecmf/obstat.8.0.table | 6 + .../grib3/tables/local/ecmf/obstat.9.0.table | 52 + .../tables/local/ecmf/obstat.reporttype.table | 185 + .../tables/local/ecmf/obstat.varno.table | 31 + eccodes/definitions/grib3/template.10.0.def | 41 + eccodes/definitions/grib3/template.3.0.def | 13 + eccodes/definitions/grib3/template.3.110.def | 44 + eccodes/definitions/grib3/template.3.140.def | 71 + eccodes/definitions/grib3/template.3.20.def | 89 + .../grib3/template.3.resolution_flags.def | 46 + eccodes/definitions/grib3/template.4.0.def | 16 + eccodes/definitions/grib3/template.4.1.def | 19 + eccodes/definitions/grib3/template.4.2.def | 19 + eccodes/definitions/grib3/template.4.3.def | 22 + .../grib3/template.4.horizontal.def | 133 + .../grib3/template.4.resolution_flags.def | 46 + .../grib3/template.4.scanning_mode.def | 45 + eccodes/definitions/grib3/template.5.0.def | 13 + eccodes/definitions/grib3/template.5.1.def | 13 + eccodes/definitions/grib3/template.6.0.def | 13 + eccodes/definitions/grib3/template.6.1.def | 19 + eccodes/definitions/grib3/template.6.2.def | 19 + eccodes/definitions/grib3/template.7.0.def | 13 + eccodes/definitions/grib3/template.7.1.def | 16 + eccodes/definitions/grib3/template.7.2.def | 16 + eccodes/definitions/grib3/template.7.3.def | 19 + eccodes/definitions/grib3/template.7.4.def | 22 + eccodes/definitions/grib3/template.8.0.def | 13 + eccodes/definitions/grib3/template.8.1.def | 13 + .../grib3/template.8.missing_value.def | 15 + .../grib3/template.8.original_values.def | 2 + .../definitions/grib3/template.8.packing.def | 17 + eccodes/definitions/grib3/template.9.0.def | 13 + .../grib3/template.component.3.0.def | 17 + .../grib3/template.component.4.0.def | 25 + .../grib3/template.component.4.1.def | 133 + .../grib3/template.component.4.2.def | 21 + .../grib3/template.component.4.3.def | 20 + .../grib3/template.component.5.0.def | 91 + .../grib3/template.component.5.1.def | 117 + .../grib3/template.component.6.0.def | 7 + .../grib3/template.component.6.1.def | 5 + .../grib3/template.component.6.2.def | 9 + .../grib3/template.component.6.3.def | 3 + .../grib3/template.component.7.0.def | 13 + .../grib3/template.component.7.1.def | 13 + .../grib3/template.component.7.2.def | 5 + .../grib3/template.component.7.3.def | 9 + .../grib3/template.component.7.4.def | 10 + .../grib3/template.component.8.0.def | 6 + .../grib3/template.component.8.1.def | 10 + .../grib3/template.component.9.0.def | 42 + .../4.8.regular_latitudes.def | 1 + .../definitions/grib3/tiggeLocalVersion.table | 1 + eccodes/definitions/grib3/tigge_name.def | 45 + eccodes/definitions/grib3/tigge_parameter.def | 396 + .../definitions/grib3/tigge_short_name.def | 44 + .../definitions/grib3/tigge_suiteName.table | 12 + eccodes/definitions/grib3/units.def | 3009 +++ eccodes/definitions/mars_param.table | 6809 +++++ eccodes/definitions/param_id.table | 4056 +++ eccodes/definitions/param_limits.def | 166 + eccodes/definitions/parameters_version.def | 1 + eccodes/definitions/stepUnits.table | 16 + 5852 files changed, 633020 insertions(+) create mode 100644 eccodes/definitions/boot.def create mode 100644 eccodes/definitions/common/c-1.table create mode 100644 eccodes/definitions/common/c-11.table create mode 100644 eccodes/definitions/common/statistics_grid.def create mode 100644 eccodes/definitions/common/statistics_spectral.def create mode 100644 eccodes/definitions/empty_template.def create mode 100644 eccodes/definitions/grib1/0.ecmf.table create mode 100644 eccodes/definitions/grib1/0.eidb.table create mode 100644 eccodes/definitions/grib1/0.eswi.table create mode 100644 eccodes/definitions/grib1/0.rjtd.table create mode 100644 eccodes/definitions/grib1/1.table create mode 100644 eccodes/definitions/grib1/10.table create mode 100644 eccodes/definitions/grib1/11-2.table create mode 100644 eccodes/definitions/grib1/11.table create mode 100644 eccodes/definitions/grib1/12.table create mode 100644 eccodes/definitions/grib1/13.table create mode 100644 eccodes/definitions/grib1/2.0.1.table create mode 100644 eccodes/definitions/grib1/2.0.2.table create mode 100644 eccodes/definitions/grib1/2.0.3.table create mode 100644 eccodes/definitions/grib1/2.128.table create mode 100644 eccodes/definitions/grib1/2.233.1.table create mode 100644 eccodes/definitions/grib1/2.233.253.table create mode 100644 eccodes/definitions/grib1/2.253.128.table create mode 100644 eccodes/definitions/grib1/2.34.200.table create mode 100644 eccodes/definitions/grib1/2.46.254.table create mode 100644 eccodes/definitions/grib1/2.82.1.table create mode 100644 eccodes/definitions/grib1/2.82.128.table create mode 100644 eccodes/definitions/grib1/2.82.129.table create mode 100644 eccodes/definitions/grib1/2.82.130.table create mode 100644 eccodes/definitions/grib1/2.82.131.table create mode 100644 eccodes/definitions/grib1/2.82.133.table create mode 100644 eccodes/definitions/grib1/2.82.134.table create mode 100644 eccodes/definitions/grib1/2.82.135.table create mode 100644 eccodes/definitions/grib1/2.82.136.table create mode 100644 eccodes/definitions/grib1/2.82.253.table create mode 100644 eccodes/definitions/grib1/2.98.128.table create mode 100644 eccodes/definitions/grib1/2.98.129.table create mode 100644 eccodes/definitions/grib1/2.98.130.table create mode 100644 eccodes/definitions/grib1/2.98.131.table create mode 100644 eccodes/definitions/grib1/2.98.132.table create mode 100644 eccodes/definitions/grib1/2.98.133.table create mode 100644 eccodes/definitions/grib1/2.98.140.table create mode 100644 eccodes/definitions/grib1/2.98.150.table create mode 100644 eccodes/definitions/grib1/2.98.151.table create mode 100644 eccodes/definitions/grib1/2.98.160.table create mode 100644 eccodes/definitions/grib1/2.98.162.table create mode 100644 eccodes/definitions/grib1/2.98.170.table create mode 100644 eccodes/definitions/grib1/2.98.171.table create mode 100644 eccodes/definitions/grib1/2.98.172.table create mode 100644 eccodes/definitions/grib1/2.98.173.table create mode 100644 eccodes/definitions/grib1/2.98.174.table create mode 100644 eccodes/definitions/grib1/2.98.175.table create mode 100644 eccodes/definitions/grib1/2.98.180.table create mode 100644 eccodes/definitions/grib1/2.98.190.table create mode 100644 eccodes/definitions/grib1/2.98.200.table create mode 100644 eccodes/definitions/grib1/2.98.201.table create mode 100644 eccodes/definitions/grib1/2.98.210.table create mode 100644 eccodes/definitions/grib1/2.98.211.table create mode 100644 eccodes/definitions/grib1/2.98.213.table create mode 100644 eccodes/definitions/grib1/2.98.215.table create mode 100644 eccodes/definitions/grib1/2.98.220.table create mode 100644 eccodes/definitions/grib1/2.98.228.table create mode 100644 eccodes/definitions/grib1/2.98.230.table create mode 100644 eccodes/definitions/grib1/2.98.235.table create mode 100644 eccodes/definitions/grib1/2.table create mode 100644 eccodes/definitions/grib1/3.233.table create mode 100644 eccodes/definitions/grib1/3.82.table create mode 100644 eccodes/definitions/grib1/3.98.table create mode 100644 eccodes/definitions/grib1/3.table create mode 100644 eccodes/definitions/grib1/4.table create mode 100644 eccodes/definitions/grib1/5.table create mode 100644 eccodes/definitions/grib1/6.table create mode 100644 eccodes/definitions/grib1/7.table create mode 100644 eccodes/definitions/grib1/8.table create mode 100644 eccodes/definitions/grib1/9.table create mode 100644 eccodes/definitions/grib1/boot.def create mode 100644 eccodes/definitions/grib1/cfName.def create mode 100644 eccodes/definitions/grib1/cfVarName.def create mode 100644 eccodes/definitions/grib1/cluster_domain.def create mode 100644 eccodes/definitions/grib1/data.grid_ieee.def create mode 120000 eccodes/definitions/grib1/data.grid_jpeg.def create mode 100644 eccodes/definitions/grib1/data.grid_second_order.def create mode 120000 eccodes/definitions/grib1/data.grid_second_order_SPD1.def create mode 120000 eccodes/definitions/grib1/data.grid_second_order_SPD2.def create mode 120000 eccodes/definitions/grib1/data.grid_second_order_SPD3.def create mode 100644 eccodes/definitions/grib1/data.grid_second_order_constant_width.def create mode 100644 eccodes/definitions/grib1/data.grid_second_order_general_grib1.def create mode 120000 eccodes/definitions/grib1/data.grid_second_order_no_SPD.def create mode 100644 eccodes/definitions/grib1/data.grid_second_order_row_by_row.def create mode 100644 eccodes/definitions/grib1/data.grid_simple.def create mode 100644 eccodes/definitions/grib1/data.grid_simple_matrix.def create mode 100644 eccodes/definitions/grib1/data.spectral_complex.def create mode 100644 eccodes/definitions/grib1/data.spectral_ieee.def create mode 100644 eccodes/definitions/grib1/data.spectral_simple.def create mode 100644 eccodes/definitions/grib1/gds_not_present_bitmap.def create mode 100755 eccodes/definitions/grib1/grid.192.78.3.10.table create mode 100755 eccodes/definitions/grib1/grid.192.78.3.9.table create mode 100644 eccodes/definitions/grib1/grid_21.def create mode 100644 eccodes/definitions/grib1/grid_22.def create mode 100644 eccodes/definitions/grib1/grid_23.def create mode 100644 eccodes/definitions/grib1/grid_24.def create mode 100644 eccodes/definitions/grib1/grid_25.def create mode 100644 eccodes/definitions/grib1/grid_26.def create mode 100644 eccodes/definitions/grib1/grid_61.def create mode 100644 eccodes/definitions/grib1/grid_62.def create mode 100644 eccodes/definitions/grib1/grid_63.def create mode 100644 eccodes/definitions/grib1/grid_64.def create mode 100644 eccodes/definitions/grib1/grid_definition_0.def create mode 100644 eccodes/definitions/grib1/grid_definition_1.def create mode 100644 eccodes/definitions/grib1/grid_definition_10.def create mode 100644 eccodes/definitions/grib1/grid_definition_13.def create mode 100644 eccodes/definitions/grib1/grid_definition_14.def create mode 100755 eccodes/definitions/grib1/grid_definition_192.78.def create mode 100644 eccodes/definitions/grib1/grid_definition_192.98.def create mode 100644 eccodes/definitions/grib1/grid_definition_193.98.def create mode 100644 eccodes/definitions/grib1/grid_definition_20.def create mode 100644 eccodes/definitions/grib1/grid_definition_24.def create mode 100644 eccodes/definitions/grib1/grid_definition_3.def create mode 100644 eccodes/definitions/grib1/grid_definition_30.def create mode 100644 eccodes/definitions/grib1/grid_definition_34.def create mode 100644 eccodes/definitions/grib1/grid_definition_4.def create mode 100644 eccodes/definitions/grib1/grid_definition_5.def create mode 100644 eccodes/definitions/grib1/grid_definition_50.def create mode 100644 eccodes/definitions/grib1/grid_definition_60.def create mode 100644 eccodes/definitions/grib1/grid_definition_70.def create mode 100644 eccodes/definitions/grib1/grid_definition_8.def create mode 100644 eccodes/definitions/grib1/grid_definition_80.def create mode 100644 eccodes/definitions/grib1/grid_definition_90.def create mode 100644 eccodes/definitions/grib1/grid_definition_gaussian.def create mode 100644 eccodes/definitions/grib1/grid_definition_lambert.def create mode 100644 eccodes/definitions/grib1/grid_definition_latlon.def create mode 100644 eccodes/definitions/grib1/grid_definition_spherical_harmonics.def create mode 100644 eccodes/definitions/grib1/grid_first_last_resandcomp.def create mode 100644 eccodes/definitions/grib1/grid_rotation.def create mode 100644 eccodes/definitions/grib1/grid_stretching.def create mode 100644 eccodes/definitions/grib1/local.1.def create mode 100644 eccodes/definitions/grib1/local.13.table create mode 100644 eccodes/definitions/grib1/local.214.1.def create mode 100644 eccodes/definitions/grib1/local.214.244.def create mode 100644 eccodes/definitions/grib1/local.214.245.def create mode 100644 eccodes/definitions/grib1/local.214.def create mode 100644 eccodes/definitions/grib1/local.253.def create mode 100644 eccodes/definitions/grib1/local.254.def create mode 100644 eccodes/definitions/grib1/local.34.1.def create mode 100644 eccodes/definitions/grib1/local.34.def create mode 100644 eccodes/definitions/grib1/local.46.def create mode 100644 eccodes/definitions/grib1/local.54.def create mode 100644 eccodes/definitions/grib1/local.7.1.def create mode 100644 eccodes/definitions/grib1/local.7.def create mode 100644 eccodes/definitions/grib1/local.78.def create mode 100644 eccodes/definitions/grib1/local.80.def create mode 100644 eccodes/definitions/grib1/local.82.0.def create mode 100644 eccodes/definitions/grib1/local.82.82.def create mode 100644 eccodes/definitions/grib1/local.82.83.def create mode 100644 eccodes/definitions/grib1/local.82.def create mode 100644 eccodes/definitions/grib1/local.85.def create mode 100644 eccodes/definitions/grib1/local.96.def create mode 100644 eccodes/definitions/grib1/local.98.1.def create mode 100644 eccodes/definitions/grib1/local.98.10.def create mode 100644 eccodes/definitions/grib1/local.98.11.def create mode 100644 eccodes/definitions/grib1/local.98.12.def create mode 100644 eccodes/definitions/grib1/local.98.13.def create mode 100644 eccodes/definitions/grib1/local.98.14.def create mode 100644 eccodes/definitions/grib1/local.98.15.def create mode 100644 eccodes/definitions/grib1/local.98.16.def create mode 100644 eccodes/definitions/grib1/local.98.17.def create mode 100644 eccodes/definitions/grib1/local.98.18.def create mode 100644 eccodes/definitions/grib1/local.98.19.def create mode 100644 eccodes/definitions/grib1/local.98.190.def create mode 100644 eccodes/definitions/grib1/local.98.191.def create mode 100644 eccodes/definitions/grib1/local.98.192.def create mode 100644 eccodes/definitions/grib1/local.98.2.def create mode 100644 eccodes/definitions/grib1/local.98.20.def create mode 100644 eccodes/definitions/grib1/local.98.21.def create mode 100644 eccodes/definitions/grib1/local.98.218.def create mode 100644 eccodes/definitions/grib1/local.98.23.def create mode 100644 eccodes/definitions/grib1/local.98.24.def create mode 120000 eccodes/definitions/grib1/local.98.244.def create mode 120000 eccodes/definitions/grib1/local.98.245.def create mode 100644 eccodes/definitions/grib1/local.98.25.def create mode 100644 eccodes/definitions/grib1/local.98.26.def create mode 100644 eccodes/definitions/grib1/local.98.27.def create mode 100644 eccodes/definitions/grib1/local.98.28.def create mode 100644 eccodes/definitions/grib1/local.98.29.def create mode 100644 eccodes/definitions/grib1/local.98.3.def create mode 100644 eccodes/definitions/grib1/local.98.30.def create mode 100644 eccodes/definitions/grib1/local.98.31.def create mode 100644 eccodes/definitions/grib1/local.98.32.def create mode 100644 eccodes/definitions/grib1/local.98.33.def create mode 100644 eccodes/definitions/grib1/local.98.35.def create mode 100644 eccodes/definitions/grib1/local.98.36.def create mode 100644 eccodes/definitions/grib1/local.98.37.def create mode 100644 eccodes/definitions/grib1/local.98.38.def create mode 100644 eccodes/definitions/grib1/local.98.39.def create mode 100644 eccodes/definitions/grib1/local.98.4.def create mode 100644 eccodes/definitions/grib1/local.98.40.def create mode 100644 eccodes/definitions/grib1/local.98.49.def create mode 100644 eccodes/definitions/grib1/local.98.5.def create mode 100644 eccodes/definitions/grib1/local.98.50.def create mode 100644 eccodes/definitions/grib1/local.98.6.def create mode 100644 eccodes/definitions/grib1/local.98.7.def create mode 100644 eccodes/definitions/grib1/local.98.8.def create mode 100644 eccodes/definitions/grib1/local.98.9.def create mode 100644 eccodes/definitions/grib1/local.98.def create mode 100644 eccodes/definitions/grib1/local/ecmf/3.table create mode 100644 eccodes/definitions/grib1/local/ecmf/5.table create mode 100755 eccodes/definitions/grib1/local/edzw/2.0.3.table create mode 100755 eccodes/definitions/grib1/local/edzw/5.table create mode 100755 eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table create mode 100644 eccodes/definitions/grib1/local/rjtd/252.table create mode 100644 eccodes/definitions/grib1/local/rjtd/3.table create mode 100644 eccodes/definitions/grib1/local/rjtd/5.table create mode 100644 eccodes/definitions/grib1/localConcepts/ammc/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/ammc/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/ammc/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/ammc/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/cnmc/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/cnmc/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/cnmc/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/cnmc/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/cfName.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/stepType.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def create mode 100644 eccodes/definitions/grib1/localConcepts/ecmf/units.def create mode 100755 eccodes/definitions/grib1/localConcepts/edzw/name.def create mode 100755 eccodes/definitions/grib1/localConcepts/edzw/paramId.def create mode 100755 eccodes/definitions/grib1/localConcepts/edzw/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/edzw/stepType.def create mode 100644 eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def create mode 100755 eccodes/definitions/grib1/localConcepts/edzw/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def create mode 100644 eccodes/definitions/grib1/localConcepts/efkl/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/efkl/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/efkl/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/efkl/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/eidb/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/eidb/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/eidb/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def create mode 100644 eccodes/definitions/grib1/localConcepts/eidb/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/ekmi/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/ekmi/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/ekmi/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/ekmi/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/enmi/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/enmi/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/enmi/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/enmi/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/landtype.table create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/sort.table create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/timerepres.table create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def create mode 100644 eccodes/definitions/grib1/localConcepts/eswi/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/kwbc/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/kwbc/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/kwbc/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/kwbc/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/lfpw/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/lowm/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/lowm/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/lowm/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/lowm/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/stepType.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def create mode 100644 eccodes/definitions/grib1/localConcepts/rjtd/units.def create mode 100644 eccodes/definitions/grib1/localConcepts/sbsj/name.def create mode 100644 eccodes/definitions/grib1/localConcepts/sbsj/paramId.def create mode 100644 eccodes/definitions/grib1/localConcepts/sbsj/shortName.def create mode 100644 eccodes/definitions/grib1/localConcepts/sbsj/units.def create mode 100644 eccodes/definitions/grib1/localDefinitionNumber.34.table create mode 100644 eccodes/definitions/grib1/localDefinitionNumber.82.table create mode 100644 eccodes/definitions/grib1/localDefinitionNumber.96.table create mode 100644 eccodes/definitions/grib1/localDefinitionNumber.98.table create mode 100644 eccodes/definitions/grib1/local_no_mars.98.1.def create mode 100644 eccodes/definitions/grib1/local_no_mars.98.24.def create mode 100644 eccodes/definitions/grib1/ls.def create mode 100644 eccodes/definitions/grib1/ls_labeling.82.def create mode 100644 eccodes/definitions/grib1/mars_labeling.23.def create mode 100644 eccodes/definitions/grib1/mars_labeling.4.def create mode 100644 eccodes/definitions/grib1/mars_labeling.82.def create mode 100644 eccodes/definitions/grib1/mars_labeling.def create mode 100644 eccodes/definitions/grib1/name.def create mode 100644 eccodes/definitions/grib1/ocean.1.table create mode 100755 eccodes/definitions/grib1/param.pl create mode 100644 eccodes/definitions/grib1/paramId.def create mode 100644 eccodes/definitions/grib1/precision.table create mode 100644 eccodes/definitions/grib1/predefined_grid.def create mode 100644 eccodes/definitions/grib1/regimes.table create mode 100644 eccodes/definitions/grib1/resolution_flags.def create mode 100644 eccodes/definitions/grib1/scanning_mode.def create mode 100644 eccodes/definitions/grib1/section.0.def create mode 100644 eccodes/definitions/grib1/section.1.def create mode 100644 eccodes/definitions/grib1/section.2.def create mode 100644 eccodes/definitions/grib1/section.3.def create mode 100644 eccodes/definitions/grib1/section.4.def create mode 100644 eccodes/definitions/grib1/section.5.def create mode 100644 eccodes/definitions/grib1/sensitive_area_domain.def create mode 100644 eccodes/definitions/grib1/shortName.def create mode 100644 eccodes/definitions/grib1/stepType.def create mode 100644 eccodes/definitions/grib1/stepTypeForConversion.def create mode 100644 eccodes/definitions/grib1/tube_domain.def create mode 100644 eccodes/definitions/grib1/typeOfLevel.def create mode 100644 eccodes/definitions/grib1/units.def create mode 100644 eccodes/definitions/grib2/boot.def create mode 100644 eccodes/definitions/grib2/boot_multifield.def create mode 100644 eccodes/definitions/grib2/cfName.def create mode 100644 eccodes/definitions/grib2/cfVarName.def create mode 100644 eccodes/definitions/grib2/crraLocalVersion.table create mode 100644 eccodes/definitions/grib2/crra_suiteName.table create mode 100644 eccodes/definitions/grib2/d create mode 100644 eccodes/definitions/grib2/dimension.0.table create mode 100644 eccodes/definitions/grib2/dimensionTableNumber.table create mode 100644 eccodes/definitions/grib2/dimensionType.table create mode 100644 eccodes/definitions/grib2/grib2LocalSectionNumber.82.table create mode 100644 eccodes/definitions/grib2/grib2LocalSectionNumber.85.table create mode 100644 eccodes/definitions/grib2/grib2LocalSectionNumber.98.table create mode 100644 eccodes/definitions/grib2/lcwfv_suiteName.table create mode 100644 eccodes/definitions/grib2/local.82.0.def create mode 100644 eccodes/definitions/grib2/local.82.82.def create mode 100644 eccodes/definitions/grib2/local.82.83.def create mode 100644 eccodes/definitions/grib2/local.82.def create mode 100644 eccodes/definitions/grib2/local.85.0.def create mode 100644 eccodes/definitions/grib2/local.85.1.def create mode 100644 eccodes/definitions/grib2/local.85.2.def create mode 100644 eccodes/definitions/grib2/local.85.def create mode 100644 eccodes/definitions/grib2/local.98.0.def create mode 100644 eccodes/definitions/grib2/local.98.1.def create mode 100644 eccodes/definitions/grib2/local.98.11.def create mode 100644 eccodes/definitions/grib2/local.98.12.def create mode 100644 eccodes/definitions/grib2/local.98.14.def create mode 100644 eccodes/definitions/grib2/local.98.15.def create mode 100644 eccodes/definitions/grib2/local.98.16.def create mode 100644 eccodes/definitions/grib2/local.98.18.def create mode 100644 eccodes/definitions/grib2/local.98.192.def create mode 100644 eccodes/definitions/grib2/local.98.20.def create mode 100644 eccodes/definitions/grib2/local.98.21.def create mode 100644 eccodes/definitions/grib2/local.98.24.def create mode 100644 eccodes/definitions/grib2/local.98.25.def create mode 100644 eccodes/definitions/grib2/local.98.26.def create mode 100644 eccodes/definitions/grib2/local.98.28.def create mode 100644 eccodes/definitions/grib2/local.98.30.def create mode 100644 eccodes/definitions/grib2/local.98.300.def create mode 100644 eccodes/definitions/grib2/local.98.36.def create mode 100644 eccodes/definitions/grib2/local.98.38.def create mode 100644 eccodes/definitions/grib2/local.98.39.def create mode 100644 eccodes/definitions/grib2/local.98.41.def create mode 100644 eccodes/definitions/grib2/local.98.42.def create mode 100644 eccodes/definitions/grib2/local.98.5.def create mode 100755 eccodes/definitions/grib2/local.98.500.def create mode 100644 eccodes/definitions/grib2/local.98.7.def create mode 100644 eccodes/definitions/grib2/local.98.9.def create mode 100644 eccodes/definitions/grib2/local.98.def create mode 100644 eccodes/definitions/grib2/local.crra.1.def create mode 100644 eccodes/definitions/grib2/local.tigge.1.def create mode 100644 eccodes/definitions/grib2/local/1098/2.1.table create mode 100644 eccodes/definitions/grib2/local/1098/centres.table create mode 100644 eccodes/definitions/grib2/local/1098/models.table create mode 100644 eccodes/definitions/grib2/local/1098/template.2.0.def create mode 100644 eccodes/definitions/grib2/local/2.0.table create mode 100644 eccodes/definitions/grib2/localConcepts/cnmc/modelName.def create mode 100644 eccodes/definitions/grib2/localConcepts/cnmc/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/cnmc/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/cnmc/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/cnmc/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/cfName.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def create mode 100644 eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def create mode 100644 eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def create mode 100644 eccodes/definitions/grib2/localConcepts/edzw/modelName.def create mode 100755 eccodes/definitions/grib2/localConcepts/edzw/name.def create mode 100755 eccodes/definitions/grib2/localConcepts/edzw/paramId.def create mode 100755 eccodes/definitions/grib2/localConcepts/edzw/shortName.def create mode 100755 eccodes/definitions/grib2/localConcepts/edzw/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/efkl/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/efkl/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/efkl/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/efkl/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def create mode 100644 eccodes/definitions/grib2/localConcepts/egrr/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/egrr/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/egrr/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/egrr/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/ekmi/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/ekmi/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/ekmi/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/ekmi/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/eswi/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/eswi/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/eswi/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/eswi/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/kwbc/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/kwbc/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/kwbc/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/kwbc/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/faFieldName.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/faLevelName.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/faModelName.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw1/name.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw1/paramId.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw1/shortName.def create mode 100644 eccodes/definitions/grib2/localConcepts/lfpw1/units.def create mode 100644 eccodes/definitions/grib2/localConcepts/lssw/modelName.def create mode 100644 eccodes/definitions/grib2/ls.def create mode 100644 eccodes/definitions/grib2/ls_labeling.82.def create mode 100644 eccodes/definitions/grib2/mars_labeling.82.def create mode 100644 eccodes/definitions/grib2/mars_labeling.def create mode 100644 eccodes/definitions/grib2/meta.def create mode 100644 eccodes/definitions/grib2/modelName.def create mode 100644 eccodes/definitions/grib2/name.def create mode 100644 eccodes/definitions/grib2/paramId.def create mode 100644 eccodes/definitions/grib2/parameters.def create mode 100644 eccodes/definitions/grib2/products_0.def create mode 100644 eccodes/definitions/grib2/products_1.def create mode 100644 eccodes/definitions/grib2/products_10.def create mode 100644 eccodes/definitions/grib2/products_11.def create mode 100644 eccodes/definitions/grib2/products_2.def create mode 100644 eccodes/definitions/grib2/products_3.def create mode 100644 eccodes/definitions/grib2/products_4.def create mode 100644 eccodes/definitions/grib2/products_5.def create mode 100644 eccodes/definitions/grib2/products_6.def create mode 100644 eccodes/definitions/grib2/products_7.def create mode 100644 eccodes/definitions/grib2/products_8.def create mode 100644 eccodes/definitions/grib2/products_9.def create mode 100644 eccodes/definitions/grib2/products_crra.def create mode 100644 eccodes/definitions/grib2/products_s2s.def create mode 100644 eccodes/definitions/grib2/products_tigge.def create mode 100644 eccodes/definitions/grib2/products_uerra.def create mode 100644 eccodes/definitions/grib2/rules.def create mode 100644 eccodes/definitions/grib2/section.0.def create mode 100644 eccodes/definitions/grib2/section.1.def create mode 100644 eccodes/definitions/grib2/section.2.def create mode 100644 eccodes/definitions/grib2/section.3.def create mode 100644 eccodes/definitions/grib2/section.4.def create mode 100644 eccodes/definitions/grib2/section.5.def create mode 100644 eccodes/definitions/grib2/section.6.def create mode 100644 eccodes/definitions/grib2/section.7.def create mode 100644 eccodes/definitions/grib2/section.8.def create mode 100644 eccodes/definitions/grib2/sections.def create mode 100644 eccodes/definitions/grib2/shortName.def create mode 100644 eccodes/definitions/grib2/tables/0.0.table create mode 100644 eccodes/definitions/grib2/tables/0/0.0.table create mode 100644 eccodes/definitions/grib2/tables/0/1.0.table create mode 100644 eccodes/definitions/grib2/tables/0/1.1.table create mode 100644 eccodes/definitions/grib2/tables/0/1.2.table create mode 100644 eccodes/definitions/grib2/tables/0/1.3.table create mode 100644 eccodes/definitions/grib2/tables/0/1.4.table create mode 100644 eccodes/definitions/grib2/tables/0/3.0.table create mode 100644 eccodes/definitions/grib2/tables/0/3.1.table create mode 100644 eccodes/definitions/grib2/tables/0/3.10.table create mode 100644 eccodes/definitions/grib2/tables/0/3.11.table create mode 100644 eccodes/definitions/grib2/tables/0/3.15.table create mode 100644 eccodes/definitions/grib2/tables/0/3.2.table create mode 100644 eccodes/definitions/grib2/tables/0/3.20.table create mode 100644 eccodes/definitions/grib2/tables/0/3.21.table create mode 100644 eccodes/definitions/grib2/tables/0/3.3.table create mode 100644 eccodes/definitions/grib2/tables/0/3.4.table create mode 100644 eccodes/definitions/grib2/tables/0/3.5.table create mode 100644 eccodes/definitions/grib2/tables/0/3.6.table create mode 100644 eccodes/definitions/grib2/tables/0/3.7.table create mode 100644 eccodes/definitions/grib2/tables/0/3.8.table create mode 100644 eccodes/definitions/grib2/tables/0/3.9.table create mode 100644 eccodes/definitions/grib2/tables/0/4.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/0/4.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.10.table create mode 100644 eccodes/definitions/grib2/tables/0/4.11.table create mode 100644 eccodes/definitions/grib2/tables/0/4.12.table create mode 100644 eccodes/definitions/grib2/tables/0/4.13.table create mode 100644 eccodes/definitions/grib2/tables/0/4.14.table create mode 100644 eccodes/definitions/grib2/tables/0/4.15.table create mode 100644 eccodes/definitions/grib2/tables/0/4.151.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/0/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/0/4.201.table create mode 100644 eccodes/definitions/grib2/tables/0/4.202.table create mode 100644 eccodes/definitions/grib2/tables/0/4.203.table create mode 100644 eccodes/definitions/grib2/tables/0/4.204.table create mode 100644 eccodes/definitions/grib2/tables/0/4.205.table create mode 100644 eccodes/definitions/grib2/tables/0/4.206.table create mode 100644 eccodes/definitions/grib2/tables/0/4.207.table create mode 100644 eccodes/definitions/grib2/tables/0/4.208.table create mode 100644 eccodes/definitions/grib2/tables/0/4.209.table create mode 100644 eccodes/definitions/grib2/tables/0/4.210.table create mode 100644 eccodes/definitions/grib2/tables/0/4.211.table create mode 100644 eccodes/definitions/grib2/tables/0/4.212.table create mode 100644 eccodes/definitions/grib2/tables/0/4.213.table create mode 100644 eccodes/definitions/grib2/tables/0/4.215.table create mode 100644 eccodes/definitions/grib2/tables/0/4.216.table create mode 100644 eccodes/definitions/grib2/tables/0/4.217.table create mode 100644 eccodes/definitions/grib2/tables/0/4.220.table create mode 100644 eccodes/definitions/grib2/tables/0/4.221.table create mode 100644 eccodes/definitions/grib2/tables/0/4.230.table create mode 100644 eccodes/definitions/grib2/tables/0/4.3.table create mode 100644 eccodes/definitions/grib2/tables/0/4.4.table create mode 100644 eccodes/definitions/grib2/tables/0/4.5.table create mode 100644 eccodes/definitions/grib2/tables/0/4.6.table create mode 100644 eccodes/definitions/grib2/tables/0/4.7.table create mode 100644 eccodes/definitions/grib2/tables/0/4.8.table create mode 100644 eccodes/definitions/grib2/tables/0/4.9.table create mode 100644 eccodes/definitions/grib2/tables/0/4.91.table create mode 100644 eccodes/definitions/grib2/tables/0/5.0.table create mode 100644 eccodes/definitions/grib2/tables/0/5.1.table create mode 100644 eccodes/definitions/grib2/tables/0/5.2.table create mode 100644 eccodes/definitions/grib2/tables/0/5.3.table create mode 100644 eccodes/definitions/grib2/tables/0/5.4.table create mode 100644 eccodes/definitions/grib2/tables/0/5.40.table create mode 100644 eccodes/definitions/grib2/tables/0/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/0/5.5.table create mode 100644 eccodes/definitions/grib2/tables/0/5.6.table create mode 100644 eccodes/definitions/grib2/tables/0/5.7.table create mode 100644 eccodes/definitions/grib2/tables/0/5.8.table create mode 100644 eccodes/definitions/grib2/tables/0/5.9.table create mode 100644 eccodes/definitions/grib2/tables/0/6.0.table create mode 100644 eccodes/definitions/grib2/tables/1.0.table create mode 100644 eccodes/definitions/grib2/tables/1/0.0.table create mode 100644 eccodes/definitions/grib2/tables/1/1.0.table create mode 100644 eccodes/definitions/grib2/tables/1/1.1.table create mode 100644 eccodes/definitions/grib2/tables/1/1.2.table create mode 100644 eccodes/definitions/grib2/tables/1/1.3.table create mode 100644 eccodes/definitions/grib2/tables/1/1.4.table create mode 100644 eccodes/definitions/grib2/tables/1/3.0.table create mode 100644 eccodes/definitions/grib2/tables/1/3.1.table create mode 100644 eccodes/definitions/grib2/tables/1/3.10.table create mode 100644 eccodes/definitions/grib2/tables/1/3.11.table create mode 100644 eccodes/definitions/grib2/tables/1/3.15.table create mode 100644 eccodes/definitions/grib2/tables/1/3.2.table create mode 100644 eccodes/definitions/grib2/tables/1/3.20.table create mode 100644 eccodes/definitions/grib2/tables/1/3.21.table create mode 100644 eccodes/definitions/grib2/tables/1/3.3.table create mode 100644 eccodes/definitions/grib2/tables/1/3.4.table create mode 100644 eccodes/definitions/grib2/tables/1/3.5.table create mode 100644 eccodes/definitions/grib2/tables/1/3.6.table create mode 100644 eccodes/definitions/grib2/tables/1/3.7.table create mode 100644 eccodes/definitions/grib2/tables/1/3.8.table create mode 100644 eccodes/definitions/grib2/tables/1/3.9.table create mode 100644 eccodes/definitions/grib2/tables/1/4.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/1/4.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.10.table create mode 100644 eccodes/definitions/grib2/tables/1/4.11.table create mode 100644 eccodes/definitions/grib2/tables/1/4.12.table create mode 100644 eccodes/definitions/grib2/tables/1/4.13.table create mode 100644 eccodes/definitions/grib2/tables/1/4.14.table create mode 100644 eccodes/definitions/grib2/tables/1/4.15.table create mode 100644 eccodes/definitions/grib2/tables/1/4.151.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/1/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/1/4.201.table create mode 100644 eccodes/definitions/grib2/tables/1/4.202.table create mode 100644 eccodes/definitions/grib2/tables/1/4.203.table create mode 100644 eccodes/definitions/grib2/tables/1/4.204.table create mode 100644 eccodes/definitions/grib2/tables/1/4.205.table create mode 100644 eccodes/definitions/grib2/tables/1/4.206.table create mode 100644 eccodes/definitions/grib2/tables/1/4.207.table create mode 100644 eccodes/definitions/grib2/tables/1/4.208.table create mode 100644 eccodes/definitions/grib2/tables/1/4.209.table create mode 100644 eccodes/definitions/grib2/tables/1/4.210.table create mode 100644 eccodes/definitions/grib2/tables/1/4.211.table create mode 100644 eccodes/definitions/grib2/tables/1/4.212.table create mode 100644 eccodes/definitions/grib2/tables/1/4.213.table create mode 100644 eccodes/definitions/grib2/tables/1/4.215.table create mode 100644 eccodes/definitions/grib2/tables/1/4.216.table create mode 100644 eccodes/definitions/grib2/tables/1/4.217.table create mode 100644 eccodes/definitions/grib2/tables/1/4.220.table create mode 100644 eccodes/definitions/grib2/tables/1/4.221.table create mode 100644 eccodes/definitions/grib2/tables/1/4.230.table create mode 100644 eccodes/definitions/grib2/tables/1/4.3.table create mode 100644 eccodes/definitions/grib2/tables/1/4.4.table create mode 100644 eccodes/definitions/grib2/tables/1/4.5.table create mode 100644 eccodes/definitions/grib2/tables/1/4.6.table create mode 100644 eccodes/definitions/grib2/tables/1/4.7.table create mode 100644 eccodes/definitions/grib2/tables/1/4.8.table create mode 100644 eccodes/definitions/grib2/tables/1/4.9.table create mode 100644 eccodes/definitions/grib2/tables/1/4.91.table create mode 100644 eccodes/definitions/grib2/tables/1/5.0.table create mode 100644 eccodes/definitions/grib2/tables/1/5.1.table create mode 100644 eccodes/definitions/grib2/tables/1/5.2.table create mode 100644 eccodes/definitions/grib2/tables/1/5.3.table create mode 100644 eccodes/definitions/grib2/tables/1/5.4.table create mode 100644 eccodes/definitions/grib2/tables/1/5.40.table create mode 100644 eccodes/definitions/grib2/tables/1/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/1/5.5.table create mode 100644 eccodes/definitions/grib2/tables/1/5.6.table create mode 100644 eccodes/definitions/grib2/tables/1/5.7.table create mode 100644 eccodes/definitions/grib2/tables/1/5.8.table create mode 100644 eccodes/definitions/grib2/tables/1/5.9.table create mode 100644 eccodes/definitions/grib2/tables/1/6.0.table create mode 100644 eccodes/definitions/grib2/tables/10/0.0.table create mode 100644 eccodes/definitions/grib2/tables/10/1.0.table create mode 100644 eccodes/definitions/grib2/tables/10/1.1.table create mode 100644 eccodes/definitions/grib2/tables/10/1.2.table create mode 100644 eccodes/definitions/grib2/tables/10/1.3.table create mode 100644 eccodes/definitions/grib2/tables/10/1.4.table create mode 100644 eccodes/definitions/grib2/tables/10/3.0.table create mode 100644 eccodes/definitions/grib2/tables/10/3.1.table create mode 100644 eccodes/definitions/grib2/tables/10/3.10.table create mode 100644 eccodes/definitions/grib2/tables/10/3.11.table create mode 100644 eccodes/definitions/grib2/tables/10/3.15.table create mode 100644 eccodes/definitions/grib2/tables/10/3.2.table create mode 100644 eccodes/definitions/grib2/tables/10/3.20.table create mode 100644 eccodes/definitions/grib2/tables/10/3.21.table create mode 100644 eccodes/definitions/grib2/tables/10/3.3.table create mode 100644 eccodes/definitions/grib2/tables/10/3.4.table create mode 100644 eccodes/definitions/grib2/tables/10/3.5.table create mode 100644 eccodes/definitions/grib2/tables/10/3.6.table create mode 100644 eccodes/definitions/grib2/tables/10/3.7.table create mode 100644 eccodes/definitions/grib2/tables/10/3.8.table create mode 100644 eccodes/definitions/grib2/tables/10/3.9.table create mode 100644 eccodes/definitions/grib2/tables/10/4.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/10/4.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.10.table create mode 100644 eccodes/definitions/grib2/tables/10/4.11.table create mode 100644 eccodes/definitions/grib2/tables/10/4.12.table create mode 100644 eccodes/definitions/grib2/tables/10/4.13.table create mode 100644 eccodes/definitions/grib2/tables/10/4.14.table create mode 100644 eccodes/definitions/grib2/tables/10/4.15.table create mode 100644 eccodes/definitions/grib2/tables/10/4.151.table create mode 100644 eccodes/definitions/grib2/tables/10/4.192.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/10/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/10/4.201.table create mode 100644 eccodes/definitions/grib2/tables/10/4.202.table create mode 100644 eccodes/definitions/grib2/tables/10/4.203.table create mode 100644 eccodes/definitions/grib2/tables/10/4.204.table create mode 100644 eccodes/definitions/grib2/tables/10/4.205.table create mode 100644 eccodes/definitions/grib2/tables/10/4.206.table create mode 100644 eccodes/definitions/grib2/tables/10/4.207.table create mode 100644 eccodes/definitions/grib2/tables/10/4.208.table create mode 100644 eccodes/definitions/grib2/tables/10/4.209.table create mode 100644 eccodes/definitions/grib2/tables/10/4.210.table create mode 100644 eccodes/definitions/grib2/tables/10/4.211.table create mode 100644 eccodes/definitions/grib2/tables/10/4.212.table create mode 100644 eccodes/definitions/grib2/tables/10/4.213.table create mode 100644 eccodes/definitions/grib2/tables/10/4.215.table create mode 100644 eccodes/definitions/grib2/tables/10/4.216.table create mode 100644 eccodes/definitions/grib2/tables/10/4.217.table create mode 100644 eccodes/definitions/grib2/tables/10/4.218.table create mode 100644 eccodes/definitions/grib2/tables/10/4.219.table create mode 100644 eccodes/definitions/grib2/tables/10/4.220.table create mode 100644 eccodes/definitions/grib2/tables/10/4.221.table create mode 100644 eccodes/definitions/grib2/tables/10/4.222.table create mode 100644 eccodes/definitions/grib2/tables/10/4.223.table create mode 100644 eccodes/definitions/grib2/tables/10/4.224.table create mode 100644 eccodes/definitions/grib2/tables/10/4.225.table create mode 100644 eccodes/definitions/grib2/tables/10/4.227.table create mode 100644 eccodes/definitions/grib2/tables/10/4.230.table create mode 100644 eccodes/definitions/grib2/tables/10/4.233.table create mode 100644 eccodes/definitions/grib2/tables/10/4.234.table create mode 100644 eccodes/definitions/grib2/tables/10/4.235.table create mode 100644 eccodes/definitions/grib2/tables/10/4.3.table create mode 100644 eccodes/definitions/grib2/tables/10/4.4.table create mode 100644 eccodes/definitions/grib2/tables/10/4.5.table create mode 100644 eccodes/definitions/grib2/tables/10/4.6.table create mode 100644 eccodes/definitions/grib2/tables/10/4.7.table create mode 100644 eccodes/definitions/grib2/tables/10/4.8.table create mode 100644 eccodes/definitions/grib2/tables/10/4.9.table create mode 100644 eccodes/definitions/grib2/tables/10/4.91.table create mode 100644 eccodes/definitions/grib2/tables/10/5.0.table create mode 100644 eccodes/definitions/grib2/tables/10/5.1.table create mode 100644 eccodes/definitions/grib2/tables/10/5.2.table create mode 100644 eccodes/definitions/grib2/tables/10/5.3.table create mode 100644 eccodes/definitions/grib2/tables/10/5.4.table create mode 100644 eccodes/definitions/grib2/tables/10/5.40.table create mode 100644 eccodes/definitions/grib2/tables/10/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/10/5.5.table create mode 100644 eccodes/definitions/grib2/tables/10/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/10/5.6.table create mode 100644 eccodes/definitions/grib2/tables/10/5.7.table create mode 100644 eccodes/definitions/grib2/tables/10/5.8.table create mode 100644 eccodes/definitions/grib2/tables/10/5.9.table create mode 100644 eccodes/definitions/grib2/tables/10/6.0.table create mode 100644 eccodes/definitions/grib2/tables/10/stepType.table create mode 100644 eccodes/definitions/grib2/tables/11/0.0.table create mode 100644 eccodes/definitions/grib2/tables/11/1.0.table create mode 100644 eccodes/definitions/grib2/tables/11/1.1.table create mode 100644 eccodes/definitions/grib2/tables/11/1.2.table create mode 100644 eccodes/definitions/grib2/tables/11/1.3.table create mode 100644 eccodes/definitions/grib2/tables/11/1.4.table create mode 100644 eccodes/definitions/grib2/tables/11/3.0.table create mode 100644 eccodes/definitions/grib2/tables/11/3.1.table create mode 100644 eccodes/definitions/grib2/tables/11/3.10.table create mode 100644 eccodes/definitions/grib2/tables/11/3.11.table create mode 100644 eccodes/definitions/grib2/tables/11/3.15.table create mode 100644 eccodes/definitions/grib2/tables/11/3.2.table create mode 100644 eccodes/definitions/grib2/tables/11/3.20.table create mode 100644 eccodes/definitions/grib2/tables/11/3.21.table create mode 100644 eccodes/definitions/grib2/tables/11/3.3.table create mode 100644 eccodes/definitions/grib2/tables/11/3.4.table create mode 100644 eccodes/definitions/grib2/tables/11/3.5.table create mode 100644 eccodes/definitions/grib2/tables/11/3.6.table create mode 100644 eccodes/definitions/grib2/tables/11/3.7.table create mode 100644 eccodes/definitions/grib2/tables/11/3.8.table create mode 100644 eccodes/definitions/grib2/tables/11/3.9.table create mode 100644 eccodes/definitions/grib2/tables/11/4.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/11/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/11/4.10.table create mode 100644 eccodes/definitions/grib2/tables/11/4.11.table create mode 100644 eccodes/definitions/grib2/tables/11/4.12.table create mode 100644 eccodes/definitions/grib2/tables/11/4.13.table create mode 100644 eccodes/definitions/grib2/tables/11/4.14.table create mode 100644 eccodes/definitions/grib2/tables/11/4.15.table create mode 100644 eccodes/definitions/grib2/tables/11/4.192.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/11/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/11/4.201.table create mode 100644 eccodes/definitions/grib2/tables/11/4.202.table create mode 100644 eccodes/definitions/grib2/tables/11/4.203.table create mode 100644 eccodes/definitions/grib2/tables/11/4.204.table create mode 100644 eccodes/definitions/grib2/tables/11/4.205.table create mode 100644 eccodes/definitions/grib2/tables/11/4.206.table create mode 100644 eccodes/definitions/grib2/tables/11/4.207.table create mode 100644 eccodes/definitions/grib2/tables/11/4.208.table create mode 100644 eccodes/definitions/grib2/tables/11/4.209.table create mode 100644 eccodes/definitions/grib2/tables/11/4.210.table create mode 100644 eccodes/definitions/grib2/tables/11/4.211.table create mode 100644 eccodes/definitions/grib2/tables/11/4.212.table create mode 100644 eccodes/definitions/grib2/tables/11/4.213.table create mode 100644 eccodes/definitions/grib2/tables/11/4.215.table create mode 100644 eccodes/definitions/grib2/tables/11/4.216.table create mode 100644 eccodes/definitions/grib2/tables/11/4.217.table create mode 100644 eccodes/definitions/grib2/tables/11/4.218.table create mode 100644 eccodes/definitions/grib2/tables/11/4.219.table create mode 100644 eccodes/definitions/grib2/tables/11/4.220.table create mode 100644 eccodes/definitions/grib2/tables/11/4.221.table create mode 100644 eccodes/definitions/grib2/tables/11/4.222.table create mode 100644 eccodes/definitions/grib2/tables/11/4.223.table create mode 100644 eccodes/definitions/grib2/tables/11/4.224.table create mode 100644 eccodes/definitions/grib2/tables/11/4.225.table create mode 100644 eccodes/definitions/grib2/tables/11/4.227.table create mode 100644 eccodes/definitions/grib2/tables/11/4.230.table create mode 100644 eccodes/definitions/grib2/tables/11/4.233.table create mode 100644 eccodes/definitions/grib2/tables/11/4.234.table create mode 100644 eccodes/definitions/grib2/tables/11/4.236.table create mode 100644 eccodes/definitions/grib2/tables/11/4.3.table create mode 100644 eccodes/definitions/grib2/tables/11/4.4.table create mode 100644 eccodes/definitions/grib2/tables/11/4.5.table create mode 100644 eccodes/definitions/grib2/tables/11/4.6.table create mode 100644 eccodes/definitions/grib2/tables/11/4.7.table create mode 100644 eccodes/definitions/grib2/tables/11/4.8.table create mode 100644 eccodes/definitions/grib2/tables/11/4.9.table create mode 100644 eccodes/definitions/grib2/tables/11/4.91.table create mode 100644 eccodes/definitions/grib2/tables/11/5.0.table create mode 100644 eccodes/definitions/grib2/tables/11/5.1.table create mode 100644 eccodes/definitions/grib2/tables/11/5.2.table create mode 100644 eccodes/definitions/grib2/tables/11/5.3.table create mode 100644 eccodes/definitions/grib2/tables/11/5.4.table create mode 100644 eccodes/definitions/grib2/tables/11/5.40.table create mode 100644 eccodes/definitions/grib2/tables/11/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/11/5.5.table create mode 100644 eccodes/definitions/grib2/tables/11/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/11/5.6.table create mode 100644 eccodes/definitions/grib2/tables/11/5.7.table create mode 100644 eccodes/definitions/grib2/tables/11/5.8.table create mode 100644 eccodes/definitions/grib2/tables/11/5.9.table create mode 100644 eccodes/definitions/grib2/tables/11/6.0.table create mode 100644 eccodes/definitions/grib2/tables/11/stepType.table create mode 100644 eccodes/definitions/grib2/tables/12/0.0.table create mode 100644 eccodes/definitions/grib2/tables/12/1.0.table create mode 100644 eccodes/definitions/grib2/tables/12/1.1.table create mode 100644 eccodes/definitions/grib2/tables/12/1.2.table create mode 100644 eccodes/definitions/grib2/tables/12/1.3.table create mode 100644 eccodes/definitions/grib2/tables/12/1.4.table create mode 100644 eccodes/definitions/grib2/tables/12/1.5.table create mode 100644 eccodes/definitions/grib2/tables/12/1.6.table create mode 100644 eccodes/definitions/grib2/tables/12/3.0.table create mode 100644 eccodes/definitions/grib2/tables/12/3.1.table create mode 100644 eccodes/definitions/grib2/tables/12/3.10.table create mode 100644 eccodes/definitions/grib2/tables/12/3.11.table create mode 100644 eccodes/definitions/grib2/tables/12/3.15.table create mode 100644 eccodes/definitions/grib2/tables/12/3.2.table create mode 100644 eccodes/definitions/grib2/tables/12/3.20.table create mode 100644 eccodes/definitions/grib2/tables/12/3.21.table create mode 100644 eccodes/definitions/grib2/tables/12/3.3.table create mode 100644 eccodes/definitions/grib2/tables/12/3.4.table create mode 100644 eccodes/definitions/grib2/tables/12/3.5.table create mode 100644 eccodes/definitions/grib2/tables/12/3.6.table create mode 100644 eccodes/definitions/grib2/tables/12/3.7.table create mode 100644 eccodes/definitions/grib2/tables/12/3.8.table create mode 100644 eccodes/definitions/grib2/tables/12/3.9.table create mode 100644 eccodes/definitions/grib2/tables/12/4.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/12/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/12/4.10.table create mode 100644 eccodes/definitions/grib2/tables/12/4.11.table create mode 100644 eccodes/definitions/grib2/tables/12/4.12.table create mode 100644 eccodes/definitions/grib2/tables/12/4.13.table create mode 100644 eccodes/definitions/grib2/tables/12/4.14.table create mode 100644 eccodes/definitions/grib2/tables/12/4.15.table create mode 100644 eccodes/definitions/grib2/tables/12/4.192.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/12/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/12/4.201.table create mode 100644 eccodes/definitions/grib2/tables/12/4.202.table create mode 100644 eccodes/definitions/grib2/tables/12/4.203.table create mode 100644 eccodes/definitions/grib2/tables/12/4.204.table create mode 100644 eccodes/definitions/grib2/tables/12/4.205.table create mode 100644 eccodes/definitions/grib2/tables/12/4.206.table create mode 100644 eccodes/definitions/grib2/tables/12/4.207.table create mode 100644 eccodes/definitions/grib2/tables/12/4.208.table create mode 100644 eccodes/definitions/grib2/tables/12/4.209.table create mode 100644 eccodes/definitions/grib2/tables/12/4.210.table create mode 100644 eccodes/definitions/grib2/tables/12/4.211.table create mode 100644 eccodes/definitions/grib2/tables/12/4.212.table create mode 100644 eccodes/definitions/grib2/tables/12/4.213.table create mode 100644 eccodes/definitions/grib2/tables/12/4.215.table create mode 100644 eccodes/definitions/grib2/tables/12/4.216.table create mode 100644 eccodes/definitions/grib2/tables/12/4.217.table create mode 100644 eccodes/definitions/grib2/tables/12/4.218.table create mode 100644 eccodes/definitions/grib2/tables/12/4.219.table create mode 100644 eccodes/definitions/grib2/tables/12/4.220.table create mode 100644 eccodes/definitions/grib2/tables/12/4.221.table create mode 100644 eccodes/definitions/grib2/tables/12/4.222.table create mode 100644 eccodes/definitions/grib2/tables/12/4.223.table create mode 100644 eccodes/definitions/grib2/tables/12/4.224.table create mode 100644 eccodes/definitions/grib2/tables/12/4.225.table create mode 100644 eccodes/definitions/grib2/tables/12/4.227.table create mode 100644 eccodes/definitions/grib2/tables/12/4.230.table create mode 100644 eccodes/definitions/grib2/tables/12/4.233.table create mode 100644 eccodes/definitions/grib2/tables/12/4.234.table create mode 100644 eccodes/definitions/grib2/tables/12/4.236.table create mode 100644 eccodes/definitions/grib2/tables/12/4.3.table create mode 100644 eccodes/definitions/grib2/tables/12/4.4.table create mode 100644 eccodes/definitions/grib2/tables/12/4.5.table create mode 100644 eccodes/definitions/grib2/tables/12/4.6.table create mode 100644 eccodes/definitions/grib2/tables/12/4.7.table create mode 100644 eccodes/definitions/grib2/tables/12/4.8.table create mode 100644 eccodes/definitions/grib2/tables/12/4.9.table create mode 100644 eccodes/definitions/grib2/tables/12/4.91.table create mode 100644 eccodes/definitions/grib2/tables/12/5.0.table create mode 100644 eccodes/definitions/grib2/tables/12/5.1.table create mode 100644 eccodes/definitions/grib2/tables/12/5.2.table create mode 100644 eccodes/definitions/grib2/tables/12/5.3.table create mode 100644 eccodes/definitions/grib2/tables/12/5.4.table create mode 100644 eccodes/definitions/grib2/tables/12/5.40.table create mode 100644 eccodes/definitions/grib2/tables/12/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/12/5.5.table create mode 100644 eccodes/definitions/grib2/tables/12/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/12/5.6.table create mode 100644 eccodes/definitions/grib2/tables/12/5.7.table create mode 100644 eccodes/definitions/grib2/tables/12/5.8.table create mode 100644 eccodes/definitions/grib2/tables/12/5.9.table create mode 100644 eccodes/definitions/grib2/tables/12/6.0.table create mode 100644 eccodes/definitions/grib2/tables/12/stepType.table create mode 100644 eccodes/definitions/grib2/tables/13/0.0.table create mode 100644 eccodes/definitions/grib2/tables/13/1.0.table create mode 100644 eccodes/definitions/grib2/tables/13/1.1.table create mode 100644 eccodes/definitions/grib2/tables/13/1.2.table create mode 100644 eccodes/definitions/grib2/tables/13/1.3.table create mode 100644 eccodes/definitions/grib2/tables/13/1.4.table create mode 100644 eccodes/definitions/grib2/tables/13/1.5.table create mode 100644 eccodes/definitions/grib2/tables/13/1.6.table create mode 100644 eccodes/definitions/grib2/tables/13/3.0.table create mode 100644 eccodes/definitions/grib2/tables/13/3.1.table create mode 100644 eccodes/definitions/grib2/tables/13/3.10.table create mode 100644 eccodes/definitions/grib2/tables/13/3.11.table create mode 100644 eccodes/definitions/grib2/tables/13/3.15.table create mode 100644 eccodes/definitions/grib2/tables/13/3.2.table create mode 100644 eccodes/definitions/grib2/tables/13/3.20.table create mode 100644 eccodes/definitions/grib2/tables/13/3.21.table create mode 100644 eccodes/definitions/grib2/tables/13/3.3.table create mode 100644 eccodes/definitions/grib2/tables/13/3.4.table create mode 100644 eccodes/definitions/grib2/tables/13/3.5.table create mode 100644 eccodes/definitions/grib2/tables/13/3.6.table create mode 100644 eccodes/definitions/grib2/tables/13/3.7.table create mode 100644 eccodes/definitions/grib2/tables/13/3.8.table create mode 100644 eccodes/definitions/grib2/tables/13/3.9.table create mode 100644 eccodes/definitions/grib2/tables/13/4.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/13/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/13/4.10.table create mode 100644 eccodes/definitions/grib2/tables/13/4.11.table create mode 100644 eccodes/definitions/grib2/tables/13/4.12.table create mode 100644 eccodes/definitions/grib2/tables/13/4.13.table create mode 100644 eccodes/definitions/grib2/tables/13/4.14.table create mode 100644 eccodes/definitions/grib2/tables/13/4.15.table create mode 100644 eccodes/definitions/grib2/tables/13/4.192.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/13/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/13/4.201.table create mode 100644 eccodes/definitions/grib2/tables/13/4.202.table create mode 100644 eccodes/definitions/grib2/tables/13/4.203.table create mode 100644 eccodes/definitions/grib2/tables/13/4.204.table create mode 100644 eccodes/definitions/grib2/tables/13/4.205.table create mode 100644 eccodes/definitions/grib2/tables/13/4.206.table create mode 100644 eccodes/definitions/grib2/tables/13/4.207.table create mode 100644 eccodes/definitions/grib2/tables/13/4.208.table create mode 100644 eccodes/definitions/grib2/tables/13/4.209.table create mode 100644 eccodes/definitions/grib2/tables/13/4.210.table create mode 100644 eccodes/definitions/grib2/tables/13/4.211.table create mode 100644 eccodes/definitions/grib2/tables/13/4.212.table create mode 100644 eccodes/definitions/grib2/tables/13/4.213.table create mode 100644 eccodes/definitions/grib2/tables/13/4.215.table create mode 100644 eccodes/definitions/grib2/tables/13/4.216.table create mode 100644 eccodes/definitions/grib2/tables/13/4.217.table create mode 100644 eccodes/definitions/grib2/tables/13/4.218.table create mode 100644 eccodes/definitions/grib2/tables/13/4.219.table create mode 100644 eccodes/definitions/grib2/tables/13/4.220.table create mode 100644 eccodes/definitions/grib2/tables/13/4.221.table create mode 100644 eccodes/definitions/grib2/tables/13/4.222.table create mode 100644 eccodes/definitions/grib2/tables/13/4.223.table create mode 100644 eccodes/definitions/grib2/tables/13/4.224.table create mode 100644 eccodes/definitions/grib2/tables/13/4.225.table create mode 100644 eccodes/definitions/grib2/tables/13/4.227.table create mode 100644 eccodes/definitions/grib2/tables/13/4.230.table create mode 100644 eccodes/definitions/grib2/tables/13/4.233.table create mode 100644 eccodes/definitions/grib2/tables/13/4.234.table create mode 100644 eccodes/definitions/grib2/tables/13/4.236.table create mode 100644 eccodes/definitions/grib2/tables/13/4.3.table create mode 100644 eccodes/definitions/grib2/tables/13/4.4.table create mode 100644 eccodes/definitions/grib2/tables/13/4.5.table create mode 100644 eccodes/definitions/grib2/tables/13/4.6.table create mode 100644 eccodes/definitions/grib2/tables/13/4.7.table create mode 100644 eccodes/definitions/grib2/tables/13/4.8.table create mode 100644 eccodes/definitions/grib2/tables/13/4.9.table create mode 100644 eccodes/definitions/grib2/tables/13/4.91.table create mode 100644 eccodes/definitions/grib2/tables/13/5.0.table create mode 100644 eccodes/definitions/grib2/tables/13/5.1.table create mode 100644 eccodes/definitions/grib2/tables/13/5.2.table create mode 100644 eccodes/definitions/grib2/tables/13/5.3.table create mode 100644 eccodes/definitions/grib2/tables/13/5.4.table create mode 100644 eccodes/definitions/grib2/tables/13/5.40.table create mode 100644 eccodes/definitions/grib2/tables/13/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/13/5.5.table create mode 100644 eccodes/definitions/grib2/tables/13/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/13/5.6.table create mode 100644 eccodes/definitions/grib2/tables/13/5.7.table create mode 100644 eccodes/definitions/grib2/tables/13/5.8.table create mode 100644 eccodes/definitions/grib2/tables/13/5.9.table create mode 100644 eccodes/definitions/grib2/tables/13/6.0.table create mode 100644 eccodes/definitions/grib2/tables/13/stepType.table create mode 100644 eccodes/definitions/grib2/tables/14/0.0.table create mode 100644 eccodes/definitions/grib2/tables/14/1.0.table create mode 100644 eccodes/definitions/grib2/tables/14/1.1.table create mode 100644 eccodes/definitions/grib2/tables/14/1.2.table create mode 100644 eccodes/definitions/grib2/tables/14/1.3.table create mode 100644 eccodes/definitions/grib2/tables/14/1.4.table create mode 100644 eccodes/definitions/grib2/tables/14/1.5.table create mode 100644 eccodes/definitions/grib2/tables/14/1.6.table create mode 100644 eccodes/definitions/grib2/tables/14/3.0.table create mode 100644 eccodes/definitions/grib2/tables/14/3.1.table create mode 100644 eccodes/definitions/grib2/tables/14/3.10.table create mode 100644 eccodes/definitions/grib2/tables/14/3.11.table create mode 100644 eccodes/definitions/grib2/tables/14/3.15.table create mode 100644 eccodes/definitions/grib2/tables/14/3.2.table create mode 100644 eccodes/definitions/grib2/tables/14/3.20.table create mode 100644 eccodes/definitions/grib2/tables/14/3.21.table create mode 100644 eccodes/definitions/grib2/tables/14/3.3.table create mode 100644 eccodes/definitions/grib2/tables/14/3.4.table create mode 100644 eccodes/definitions/grib2/tables/14/3.5.table create mode 100644 eccodes/definitions/grib2/tables/14/3.6.table create mode 100644 eccodes/definitions/grib2/tables/14/3.7.table create mode 100644 eccodes/definitions/grib2/tables/14/3.8.table create mode 100644 eccodes/definitions/grib2/tables/14/3.9.table create mode 100644 eccodes/definitions/grib2/tables/14/4.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/14/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/14/4.10.table create mode 100644 eccodes/definitions/grib2/tables/14/4.11.table create mode 100644 eccodes/definitions/grib2/tables/14/4.12.table create mode 100644 eccodes/definitions/grib2/tables/14/4.13.table create mode 100644 eccodes/definitions/grib2/tables/14/4.14.table create mode 100644 eccodes/definitions/grib2/tables/14/4.15.table create mode 100644 eccodes/definitions/grib2/tables/14/4.192.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/14/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/14/4.201.table create mode 100644 eccodes/definitions/grib2/tables/14/4.202.table create mode 100644 eccodes/definitions/grib2/tables/14/4.203.table create mode 100644 eccodes/definitions/grib2/tables/14/4.204.table create mode 100644 eccodes/definitions/grib2/tables/14/4.205.table create mode 100644 eccodes/definitions/grib2/tables/14/4.206.table create mode 100644 eccodes/definitions/grib2/tables/14/4.207.table create mode 100644 eccodes/definitions/grib2/tables/14/4.208.table create mode 100644 eccodes/definitions/grib2/tables/14/4.209.table create mode 100644 eccodes/definitions/grib2/tables/14/4.210.table create mode 100644 eccodes/definitions/grib2/tables/14/4.211.table create mode 100644 eccodes/definitions/grib2/tables/14/4.212.table create mode 100644 eccodes/definitions/grib2/tables/14/4.213.table create mode 100644 eccodes/definitions/grib2/tables/14/4.215.table create mode 100644 eccodes/definitions/grib2/tables/14/4.216.table create mode 100644 eccodes/definitions/grib2/tables/14/4.217.table create mode 100644 eccodes/definitions/grib2/tables/14/4.218.table create mode 100644 eccodes/definitions/grib2/tables/14/4.219.table create mode 100644 eccodes/definitions/grib2/tables/14/4.220.table create mode 100644 eccodes/definitions/grib2/tables/14/4.221.table create mode 100644 eccodes/definitions/grib2/tables/14/4.222.table create mode 100644 eccodes/definitions/grib2/tables/14/4.223.table create mode 100644 eccodes/definitions/grib2/tables/14/4.224.table create mode 100644 eccodes/definitions/grib2/tables/14/4.225.table create mode 100644 eccodes/definitions/grib2/tables/14/4.227.table create mode 100644 eccodes/definitions/grib2/tables/14/4.230.table create mode 100644 eccodes/definitions/grib2/tables/14/4.233.table create mode 100644 eccodes/definitions/grib2/tables/14/4.234.table create mode 100644 eccodes/definitions/grib2/tables/14/4.236.table create mode 100644 eccodes/definitions/grib2/tables/14/4.241.table create mode 100644 eccodes/definitions/grib2/tables/14/4.242.table create mode 100644 eccodes/definitions/grib2/tables/14/4.243.table create mode 100644 eccodes/definitions/grib2/tables/14/4.3.table create mode 100644 eccodes/definitions/grib2/tables/14/4.4.table create mode 100644 eccodes/definitions/grib2/tables/14/4.5.table create mode 100644 eccodes/definitions/grib2/tables/14/4.6.table create mode 100644 eccodes/definitions/grib2/tables/14/4.7.table create mode 100644 eccodes/definitions/grib2/tables/14/4.8.table create mode 100644 eccodes/definitions/grib2/tables/14/4.9.table create mode 100644 eccodes/definitions/grib2/tables/14/4.91.table create mode 100644 eccodes/definitions/grib2/tables/14/5.0.table create mode 100644 eccodes/definitions/grib2/tables/14/5.1.table create mode 100644 eccodes/definitions/grib2/tables/14/5.2.table create mode 100644 eccodes/definitions/grib2/tables/14/5.3.table create mode 100644 eccodes/definitions/grib2/tables/14/5.4.table create mode 100644 eccodes/definitions/grib2/tables/14/5.40.table create mode 100644 eccodes/definitions/grib2/tables/14/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/14/5.5.table create mode 100644 eccodes/definitions/grib2/tables/14/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/14/5.6.table create mode 100644 eccodes/definitions/grib2/tables/14/5.7.table create mode 100644 eccodes/definitions/grib2/tables/14/5.8.table create mode 100644 eccodes/definitions/grib2/tables/14/5.9.table create mode 100644 eccodes/definitions/grib2/tables/14/6.0.table create mode 100644 eccodes/definitions/grib2/tables/14/stepType.table create mode 100644 eccodes/definitions/grib2/tables/15/0.0.table create mode 100644 eccodes/definitions/grib2/tables/15/1.0.table create mode 100644 eccodes/definitions/grib2/tables/15/1.1.table create mode 100644 eccodes/definitions/grib2/tables/15/1.2.table create mode 100644 eccodes/definitions/grib2/tables/15/1.3.table create mode 100644 eccodes/definitions/grib2/tables/15/1.4.table create mode 100644 eccodes/definitions/grib2/tables/15/1.5.table create mode 100644 eccodes/definitions/grib2/tables/15/1.6.table create mode 100644 eccodes/definitions/grib2/tables/15/3.0.table create mode 100644 eccodes/definitions/grib2/tables/15/3.1.table create mode 100644 eccodes/definitions/grib2/tables/15/3.10.table create mode 100644 eccodes/definitions/grib2/tables/15/3.11.table create mode 100644 eccodes/definitions/grib2/tables/15/3.15.table create mode 100644 eccodes/definitions/grib2/tables/15/3.2.table create mode 100644 eccodes/definitions/grib2/tables/15/3.20.table create mode 100644 eccodes/definitions/grib2/tables/15/3.21.table create mode 100644 eccodes/definitions/grib2/tables/15/3.3.table create mode 100644 eccodes/definitions/grib2/tables/15/3.4.table create mode 100644 eccodes/definitions/grib2/tables/15/3.5.table create mode 100644 eccodes/definitions/grib2/tables/15/3.6.table create mode 100644 eccodes/definitions/grib2/tables/15/3.7.table create mode 100644 eccodes/definitions/grib2/tables/15/3.8.table create mode 100644 eccodes/definitions/grib2/tables/15/3.9.table create mode 100644 eccodes/definitions/grib2/tables/15/4.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/15/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/15/4.10.table create mode 100644 eccodes/definitions/grib2/tables/15/4.11.table create mode 100644 eccodes/definitions/grib2/tables/15/4.12.table create mode 100644 eccodes/definitions/grib2/tables/15/4.13.table create mode 100644 eccodes/definitions/grib2/tables/15/4.14.table create mode 100644 eccodes/definitions/grib2/tables/15/4.15.table create mode 100644 eccodes/definitions/grib2/tables/15/4.192.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/15/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/15/4.201.table create mode 100644 eccodes/definitions/grib2/tables/15/4.202.table create mode 100644 eccodes/definitions/grib2/tables/15/4.203.table create mode 100644 eccodes/definitions/grib2/tables/15/4.204.table create mode 100644 eccodes/definitions/grib2/tables/15/4.205.table create mode 100644 eccodes/definitions/grib2/tables/15/4.206.table create mode 100644 eccodes/definitions/grib2/tables/15/4.207.table create mode 100644 eccodes/definitions/grib2/tables/15/4.208.table create mode 100644 eccodes/definitions/grib2/tables/15/4.209.table create mode 100644 eccodes/definitions/grib2/tables/15/4.210.table create mode 100644 eccodes/definitions/grib2/tables/15/4.211.table create mode 100644 eccodes/definitions/grib2/tables/15/4.212.table create mode 100644 eccodes/definitions/grib2/tables/15/4.213.table create mode 100644 eccodes/definitions/grib2/tables/15/4.215.table create mode 100644 eccodes/definitions/grib2/tables/15/4.216.table create mode 100644 eccodes/definitions/grib2/tables/15/4.217.table create mode 100644 eccodes/definitions/grib2/tables/15/4.218.table create mode 100644 eccodes/definitions/grib2/tables/15/4.219.table create mode 100644 eccodes/definitions/grib2/tables/15/4.220.table create mode 100644 eccodes/definitions/grib2/tables/15/4.221.table create mode 100644 eccodes/definitions/grib2/tables/15/4.222.table create mode 100644 eccodes/definitions/grib2/tables/15/4.223.table create mode 100644 eccodes/definitions/grib2/tables/15/4.224.table create mode 100644 eccodes/definitions/grib2/tables/15/4.225.table create mode 100644 eccodes/definitions/grib2/tables/15/4.227.table create mode 100644 eccodes/definitions/grib2/tables/15/4.230.table create mode 100644 eccodes/definitions/grib2/tables/15/4.233.table create mode 100644 eccodes/definitions/grib2/tables/15/4.234.table create mode 100644 eccodes/definitions/grib2/tables/15/4.236.table create mode 100644 eccodes/definitions/grib2/tables/15/4.240.table create mode 100644 eccodes/definitions/grib2/tables/15/4.241.table create mode 100644 eccodes/definitions/grib2/tables/15/4.242.table create mode 100644 eccodes/definitions/grib2/tables/15/4.243.table create mode 100644 eccodes/definitions/grib2/tables/15/4.3.table create mode 100644 eccodes/definitions/grib2/tables/15/4.4.table create mode 100644 eccodes/definitions/grib2/tables/15/4.5.table create mode 100644 eccodes/definitions/grib2/tables/15/4.6.table create mode 100644 eccodes/definitions/grib2/tables/15/4.7.table create mode 100644 eccodes/definitions/grib2/tables/15/4.8.table create mode 100644 eccodes/definitions/grib2/tables/15/4.9.table create mode 100644 eccodes/definitions/grib2/tables/15/4.91.table create mode 100644 eccodes/definitions/grib2/tables/15/5.0.table create mode 100644 eccodes/definitions/grib2/tables/15/5.1.table create mode 100644 eccodes/definitions/grib2/tables/15/5.2.table create mode 100644 eccodes/definitions/grib2/tables/15/5.3.table create mode 100644 eccodes/definitions/grib2/tables/15/5.4.table create mode 100644 eccodes/definitions/grib2/tables/15/5.40.table create mode 100644 eccodes/definitions/grib2/tables/15/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/15/5.5.table create mode 100644 eccodes/definitions/grib2/tables/15/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/15/5.6.table create mode 100644 eccodes/definitions/grib2/tables/15/5.7.table create mode 100644 eccodes/definitions/grib2/tables/15/6.0.table create mode 100644 eccodes/definitions/grib2/tables/15/stepType.table create mode 100644 eccodes/definitions/grib2/tables/16/0.0.table create mode 100644 eccodes/definitions/grib2/tables/16/1.0.table create mode 100644 eccodes/definitions/grib2/tables/16/1.1.table create mode 100644 eccodes/definitions/grib2/tables/16/1.2.table create mode 100644 eccodes/definitions/grib2/tables/16/1.3.table create mode 100644 eccodes/definitions/grib2/tables/16/1.4.table create mode 100644 eccodes/definitions/grib2/tables/16/1.5.table create mode 100644 eccodes/definitions/grib2/tables/16/1.6.table create mode 100644 eccodes/definitions/grib2/tables/16/3.0.table create mode 100644 eccodes/definitions/grib2/tables/16/3.1.table create mode 100644 eccodes/definitions/grib2/tables/16/3.10.table create mode 100644 eccodes/definitions/grib2/tables/16/3.11.table create mode 100644 eccodes/definitions/grib2/tables/16/3.15.table create mode 100644 eccodes/definitions/grib2/tables/16/3.2.table create mode 100644 eccodes/definitions/grib2/tables/16/3.20.table create mode 100644 eccodes/definitions/grib2/tables/16/3.21.table create mode 100644 eccodes/definitions/grib2/tables/16/3.3.table create mode 100644 eccodes/definitions/grib2/tables/16/3.4.table create mode 100644 eccodes/definitions/grib2/tables/16/3.5.table create mode 100644 eccodes/definitions/grib2/tables/16/3.6.table create mode 100644 eccodes/definitions/grib2/tables/16/3.7.table create mode 100644 eccodes/definitions/grib2/tables/16/3.8.table create mode 100644 eccodes/definitions/grib2/tables/16/3.9.table create mode 100644 eccodes/definitions/grib2/tables/16/4.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/16/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.10.table create mode 100644 eccodes/definitions/grib2/tables/16/4.11.table create mode 100644 eccodes/definitions/grib2/tables/16/4.12.table create mode 100644 eccodes/definitions/grib2/tables/16/4.13.table create mode 100644 eccodes/definitions/grib2/tables/16/4.14.table create mode 100644 eccodes/definitions/grib2/tables/16/4.15.table create mode 100644 eccodes/definitions/grib2/tables/16/4.192.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/16/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/16/4.201.table create mode 100644 eccodes/definitions/grib2/tables/16/4.202.table create mode 100644 eccodes/definitions/grib2/tables/16/4.203.table create mode 100644 eccodes/definitions/grib2/tables/16/4.204.table create mode 100644 eccodes/definitions/grib2/tables/16/4.205.table create mode 100644 eccodes/definitions/grib2/tables/16/4.206.table create mode 100644 eccodes/definitions/grib2/tables/16/4.207.table create mode 100644 eccodes/definitions/grib2/tables/16/4.208.table create mode 100644 eccodes/definitions/grib2/tables/16/4.209.table create mode 100644 eccodes/definitions/grib2/tables/16/4.210.table create mode 100644 eccodes/definitions/grib2/tables/16/4.211.table create mode 100644 eccodes/definitions/grib2/tables/16/4.212.table create mode 100644 eccodes/definitions/grib2/tables/16/4.213.table create mode 100644 eccodes/definitions/grib2/tables/16/4.215.table create mode 100644 eccodes/definitions/grib2/tables/16/4.216.table create mode 100644 eccodes/definitions/grib2/tables/16/4.217.table create mode 100644 eccodes/definitions/grib2/tables/16/4.218.table create mode 100644 eccodes/definitions/grib2/tables/16/4.219.table create mode 100644 eccodes/definitions/grib2/tables/16/4.220.table create mode 100644 eccodes/definitions/grib2/tables/16/4.221.table create mode 100644 eccodes/definitions/grib2/tables/16/4.222.table create mode 100644 eccodes/definitions/grib2/tables/16/4.223.table create mode 100644 eccodes/definitions/grib2/tables/16/4.224.table create mode 100644 eccodes/definitions/grib2/tables/16/4.225.table create mode 100644 eccodes/definitions/grib2/tables/16/4.227.table create mode 100644 eccodes/definitions/grib2/tables/16/4.230.table create mode 100644 eccodes/definitions/grib2/tables/16/4.233.table create mode 100644 eccodes/definitions/grib2/tables/16/4.234.table create mode 100644 eccodes/definitions/grib2/tables/16/4.236.table create mode 100644 eccodes/definitions/grib2/tables/16/4.240.table create mode 100644 eccodes/definitions/grib2/tables/16/4.241.table create mode 100644 eccodes/definitions/grib2/tables/16/4.242.table create mode 100644 eccodes/definitions/grib2/tables/16/4.243.table create mode 100644 eccodes/definitions/grib2/tables/16/4.3.table create mode 100644 eccodes/definitions/grib2/tables/16/4.4.table create mode 100644 eccodes/definitions/grib2/tables/16/4.5.table create mode 100644 eccodes/definitions/grib2/tables/16/4.6.table create mode 100644 eccodes/definitions/grib2/tables/16/4.7.table create mode 100644 eccodes/definitions/grib2/tables/16/4.8.table create mode 100644 eccodes/definitions/grib2/tables/16/4.9.table create mode 100644 eccodes/definitions/grib2/tables/16/4.91.table create mode 100644 eccodes/definitions/grib2/tables/16/5.0.table create mode 100644 eccodes/definitions/grib2/tables/16/5.1.table create mode 100644 eccodes/definitions/grib2/tables/16/5.2.table create mode 100644 eccodes/definitions/grib2/tables/16/5.3.table create mode 100644 eccodes/definitions/grib2/tables/16/5.4.table create mode 100644 eccodes/definitions/grib2/tables/16/5.40.table create mode 100644 eccodes/definitions/grib2/tables/16/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/16/5.5.table create mode 100644 eccodes/definitions/grib2/tables/16/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/16/5.6.table create mode 100644 eccodes/definitions/grib2/tables/16/5.7.table create mode 100644 eccodes/definitions/grib2/tables/16/6.0.table create mode 100644 eccodes/definitions/grib2/tables/16/stepType.table create mode 100644 eccodes/definitions/grib2/tables/17/0.0.table create mode 100644 eccodes/definitions/grib2/tables/17/1.0.table create mode 100644 eccodes/definitions/grib2/tables/17/1.1.table create mode 100644 eccodes/definitions/grib2/tables/17/1.2.table create mode 100644 eccodes/definitions/grib2/tables/17/1.3.table create mode 100644 eccodes/definitions/grib2/tables/17/1.4.table create mode 100644 eccodes/definitions/grib2/tables/17/1.5.table create mode 100644 eccodes/definitions/grib2/tables/17/1.6.table create mode 100644 eccodes/definitions/grib2/tables/17/3.0.table create mode 100644 eccodes/definitions/grib2/tables/17/3.1.table create mode 100644 eccodes/definitions/grib2/tables/17/3.10.table create mode 100644 eccodes/definitions/grib2/tables/17/3.11.table create mode 100644 eccodes/definitions/grib2/tables/17/3.15.table create mode 100644 eccodes/definitions/grib2/tables/17/3.2.table create mode 100644 eccodes/definitions/grib2/tables/17/3.20.table create mode 100644 eccodes/definitions/grib2/tables/17/3.21.table create mode 100644 eccodes/definitions/grib2/tables/17/3.3.table create mode 100644 eccodes/definitions/grib2/tables/17/3.4.table create mode 100644 eccodes/definitions/grib2/tables/17/3.5.table create mode 100644 eccodes/definitions/grib2/tables/17/3.6.table create mode 100644 eccodes/definitions/grib2/tables/17/3.7.table create mode 100644 eccodes/definitions/grib2/tables/17/3.8.table create mode 100644 eccodes/definitions/grib2/tables/17/3.9.table create mode 100644 eccodes/definitions/grib2/tables/17/4.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/17/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.10.table create mode 100644 eccodes/definitions/grib2/tables/17/4.11.table create mode 100644 eccodes/definitions/grib2/tables/17/4.12.table create mode 100644 eccodes/definitions/grib2/tables/17/4.13.table create mode 100644 eccodes/definitions/grib2/tables/17/4.14.table create mode 100644 eccodes/definitions/grib2/tables/17/4.15.table create mode 100644 eccodes/definitions/grib2/tables/17/4.192.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/17/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/17/4.201.table create mode 100644 eccodes/definitions/grib2/tables/17/4.202.table create mode 100644 eccodes/definitions/grib2/tables/17/4.203.table create mode 100644 eccodes/definitions/grib2/tables/17/4.204.table create mode 100644 eccodes/definitions/grib2/tables/17/4.205.table create mode 100644 eccodes/definitions/grib2/tables/17/4.206.table create mode 100644 eccodes/definitions/grib2/tables/17/4.207.table create mode 100644 eccodes/definitions/grib2/tables/17/4.208.table create mode 100644 eccodes/definitions/grib2/tables/17/4.209.table create mode 100644 eccodes/definitions/grib2/tables/17/4.210.table create mode 100644 eccodes/definitions/grib2/tables/17/4.211.table create mode 100644 eccodes/definitions/grib2/tables/17/4.212.table create mode 100644 eccodes/definitions/grib2/tables/17/4.213.table create mode 100644 eccodes/definitions/grib2/tables/17/4.215.table create mode 100644 eccodes/definitions/grib2/tables/17/4.216.table create mode 100644 eccodes/definitions/grib2/tables/17/4.217.table create mode 100644 eccodes/definitions/grib2/tables/17/4.218.table create mode 100644 eccodes/definitions/grib2/tables/17/4.219.table create mode 100644 eccodes/definitions/grib2/tables/17/4.220.table create mode 100644 eccodes/definitions/grib2/tables/17/4.221.table create mode 100644 eccodes/definitions/grib2/tables/17/4.222.table create mode 100644 eccodes/definitions/grib2/tables/17/4.223.table create mode 100644 eccodes/definitions/grib2/tables/17/4.224.table create mode 100644 eccodes/definitions/grib2/tables/17/4.225.table create mode 100644 eccodes/definitions/grib2/tables/17/4.227.table create mode 100644 eccodes/definitions/grib2/tables/17/4.230.table create mode 100644 eccodes/definitions/grib2/tables/17/4.233.table create mode 100644 eccodes/definitions/grib2/tables/17/4.234.table create mode 100644 eccodes/definitions/grib2/tables/17/4.236.table create mode 100644 eccodes/definitions/grib2/tables/17/4.240.table create mode 100644 eccodes/definitions/grib2/tables/17/4.241.table create mode 100644 eccodes/definitions/grib2/tables/17/4.242.table create mode 100644 eccodes/definitions/grib2/tables/17/4.243.table create mode 100644 eccodes/definitions/grib2/tables/17/4.3.table create mode 100644 eccodes/definitions/grib2/tables/17/4.4.table create mode 100644 eccodes/definitions/grib2/tables/17/4.5.table create mode 100644 eccodes/definitions/grib2/tables/17/4.6.table create mode 100644 eccodes/definitions/grib2/tables/17/4.7.table create mode 100644 eccodes/definitions/grib2/tables/17/4.8.table create mode 100644 eccodes/definitions/grib2/tables/17/4.9.table create mode 100644 eccodes/definitions/grib2/tables/17/4.91.table create mode 100644 eccodes/definitions/grib2/tables/17/5.0.table create mode 100644 eccodes/definitions/grib2/tables/17/5.1.table create mode 100644 eccodes/definitions/grib2/tables/17/5.2.table create mode 100644 eccodes/definitions/grib2/tables/17/5.3.table create mode 100644 eccodes/definitions/grib2/tables/17/5.4.table create mode 100644 eccodes/definitions/grib2/tables/17/5.40.table create mode 100644 eccodes/definitions/grib2/tables/17/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/17/5.5.table create mode 100644 eccodes/definitions/grib2/tables/17/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/17/5.6.table create mode 100644 eccodes/definitions/grib2/tables/17/5.7.table create mode 100644 eccodes/definitions/grib2/tables/17/6.0.table create mode 100644 eccodes/definitions/grib2/tables/17/stepType.table create mode 100644 eccodes/definitions/grib2/tables/18/0.0.table create mode 100644 eccodes/definitions/grib2/tables/18/1.0.table create mode 100644 eccodes/definitions/grib2/tables/18/1.1.table create mode 100644 eccodes/definitions/grib2/tables/18/1.2.table create mode 100644 eccodes/definitions/grib2/tables/18/1.3.table create mode 100644 eccodes/definitions/grib2/tables/18/1.4.table create mode 100644 eccodes/definitions/grib2/tables/18/1.5.table create mode 100644 eccodes/definitions/grib2/tables/18/1.6.table create mode 100644 eccodes/definitions/grib2/tables/18/3.0.table create mode 100644 eccodes/definitions/grib2/tables/18/3.1.table create mode 100644 eccodes/definitions/grib2/tables/18/3.10.table create mode 100644 eccodes/definitions/grib2/tables/18/3.11.table create mode 100644 eccodes/definitions/grib2/tables/18/3.15.table create mode 100644 eccodes/definitions/grib2/tables/18/3.2.table create mode 100644 eccodes/definitions/grib2/tables/18/3.20.table create mode 100644 eccodes/definitions/grib2/tables/18/3.21.table create mode 100644 eccodes/definitions/grib2/tables/18/3.3.table create mode 100644 eccodes/definitions/grib2/tables/18/3.4.table create mode 100644 eccodes/definitions/grib2/tables/18/3.5.table create mode 100644 eccodes/definitions/grib2/tables/18/3.6.table create mode 100644 eccodes/definitions/grib2/tables/18/3.7.table create mode 100644 eccodes/definitions/grib2/tables/18/3.8.table create mode 100644 eccodes/definitions/grib2/tables/18/3.9.table create mode 100644 eccodes/definitions/grib2/tables/18/4.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/18/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.10.table create mode 100644 eccodes/definitions/grib2/tables/18/4.11.table create mode 100644 eccodes/definitions/grib2/tables/18/4.12.table create mode 100644 eccodes/definitions/grib2/tables/18/4.13.table create mode 100644 eccodes/definitions/grib2/tables/18/4.14.table create mode 100644 eccodes/definitions/grib2/tables/18/4.15.table create mode 100644 eccodes/definitions/grib2/tables/18/4.192.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/18/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/18/4.201.table create mode 100644 eccodes/definitions/grib2/tables/18/4.202.table create mode 100644 eccodes/definitions/grib2/tables/18/4.203.table create mode 100644 eccodes/definitions/grib2/tables/18/4.204.table create mode 100644 eccodes/definitions/grib2/tables/18/4.205.table create mode 100644 eccodes/definitions/grib2/tables/18/4.206.table create mode 100644 eccodes/definitions/grib2/tables/18/4.207.table create mode 100644 eccodes/definitions/grib2/tables/18/4.208.table create mode 100644 eccodes/definitions/grib2/tables/18/4.209.table create mode 100644 eccodes/definitions/grib2/tables/18/4.210.table create mode 100644 eccodes/definitions/grib2/tables/18/4.211.table create mode 100644 eccodes/definitions/grib2/tables/18/4.212.table create mode 100644 eccodes/definitions/grib2/tables/18/4.213.table create mode 100644 eccodes/definitions/grib2/tables/18/4.215.table create mode 100644 eccodes/definitions/grib2/tables/18/4.216.table create mode 100644 eccodes/definitions/grib2/tables/18/4.217.table create mode 100644 eccodes/definitions/grib2/tables/18/4.218.table create mode 100644 eccodes/definitions/grib2/tables/18/4.219.table create mode 100644 eccodes/definitions/grib2/tables/18/4.220.table create mode 100644 eccodes/definitions/grib2/tables/18/4.221.table create mode 100644 eccodes/definitions/grib2/tables/18/4.222.table create mode 100644 eccodes/definitions/grib2/tables/18/4.223.table create mode 100644 eccodes/definitions/grib2/tables/18/4.224.table create mode 100644 eccodes/definitions/grib2/tables/18/4.225.table create mode 100644 eccodes/definitions/grib2/tables/18/4.227.table create mode 100644 eccodes/definitions/grib2/tables/18/4.230.table create mode 100644 eccodes/definitions/grib2/tables/18/4.233.table create mode 100644 eccodes/definitions/grib2/tables/18/4.234.table create mode 100644 eccodes/definitions/grib2/tables/18/4.236.table create mode 100644 eccodes/definitions/grib2/tables/18/4.240.table create mode 100644 eccodes/definitions/grib2/tables/18/4.241.table create mode 100644 eccodes/definitions/grib2/tables/18/4.242.table create mode 100644 eccodes/definitions/grib2/tables/18/4.243.table create mode 100644 eccodes/definitions/grib2/tables/18/4.3.table create mode 100644 eccodes/definitions/grib2/tables/18/4.4.table create mode 100644 eccodes/definitions/grib2/tables/18/4.5.table create mode 100644 eccodes/definitions/grib2/tables/18/4.6.table create mode 100644 eccodes/definitions/grib2/tables/18/4.7.table create mode 100644 eccodes/definitions/grib2/tables/18/4.8.table create mode 100644 eccodes/definitions/grib2/tables/18/4.9.table create mode 100644 eccodes/definitions/grib2/tables/18/4.91.table create mode 100644 eccodes/definitions/grib2/tables/18/5.0.table create mode 100644 eccodes/definitions/grib2/tables/18/5.1.table create mode 100644 eccodes/definitions/grib2/tables/18/5.2.table create mode 100644 eccodes/definitions/grib2/tables/18/5.3.table create mode 100644 eccodes/definitions/grib2/tables/18/5.4.table create mode 100644 eccodes/definitions/grib2/tables/18/5.40.table create mode 100644 eccodes/definitions/grib2/tables/18/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/18/5.5.table create mode 100644 eccodes/definitions/grib2/tables/18/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/18/5.6.table create mode 100644 eccodes/definitions/grib2/tables/18/5.7.table create mode 100644 eccodes/definitions/grib2/tables/18/6.0.table create mode 100644 eccodes/definitions/grib2/tables/18/stepType.table create mode 100644 eccodes/definitions/grib2/tables/19/0.0.table create mode 100644 eccodes/definitions/grib2/tables/19/1.0.table create mode 100644 eccodes/definitions/grib2/tables/19/1.1.table create mode 100644 eccodes/definitions/grib2/tables/19/1.2.table create mode 100644 eccodes/definitions/grib2/tables/19/1.3.table create mode 100644 eccodes/definitions/grib2/tables/19/1.4.table create mode 100644 eccodes/definitions/grib2/tables/19/1.5.table create mode 100644 eccodes/definitions/grib2/tables/19/1.6.table create mode 100644 eccodes/definitions/grib2/tables/19/3.0.table create mode 100644 eccodes/definitions/grib2/tables/19/3.1.table create mode 100644 eccodes/definitions/grib2/tables/19/3.10.table create mode 100644 eccodes/definitions/grib2/tables/19/3.11.table create mode 100644 eccodes/definitions/grib2/tables/19/3.15.table create mode 100644 eccodes/definitions/grib2/tables/19/3.2.table create mode 100644 eccodes/definitions/grib2/tables/19/3.20.table create mode 100644 eccodes/definitions/grib2/tables/19/3.21.table create mode 100644 eccodes/definitions/grib2/tables/19/3.3.table create mode 100644 eccodes/definitions/grib2/tables/19/3.4.table create mode 100644 eccodes/definitions/grib2/tables/19/3.5.table create mode 100644 eccodes/definitions/grib2/tables/19/3.6.table create mode 100644 eccodes/definitions/grib2/tables/19/3.7.table create mode 100644 eccodes/definitions/grib2/tables/19/3.8.table create mode 100644 eccodes/definitions/grib2/tables/19/3.9.table create mode 100644 eccodes/definitions/grib2/tables/19/4.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/19/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.10.table create mode 100644 eccodes/definitions/grib2/tables/19/4.11.table create mode 100644 eccodes/definitions/grib2/tables/19/4.12.table create mode 100644 eccodes/definitions/grib2/tables/19/4.13.table create mode 100644 eccodes/definitions/grib2/tables/19/4.14.table create mode 100644 eccodes/definitions/grib2/tables/19/4.15.table create mode 100644 eccodes/definitions/grib2/tables/19/4.192.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/19/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/19/4.201.table create mode 100644 eccodes/definitions/grib2/tables/19/4.202.table create mode 100644 eccodes/definitions/grib2/tables/19/4.203.table create mode 100644 eccodes/definitions/grib2/tables/19/4.204.table create mode 100644 eccodes/definitions/grib2/tables/19/4.205.table create mode 100644 eccodes/definitions/grib2/tables/19/4.206.table create mode 100644 eccodes/definitions/grib2/tables/19/4.207.table create mode 100644 eccodes/definitions/grib2/tables/19/4.208.table create mode 100644 eccodes/definitions/grib2/tables/19/4.209.table create mode 100644 eccodes/definitions/grib2/tables/19/4.210.table create mode 100644 eccodes/definitions/grib2/tables/19/4.211.table create mode 100644 eccodes/definitions/grib2/tables/19/4.212.table create mode 100644 eccodes/definitions/grib2/tables/19/4.213.table create mode 100644 eccodes/definitions/grib2/tables/19/4.215.table create mode 100644 eccodes/definitions/grib2/tables/19/4.216.table create mode 100644 eccodes/definitions/grib2/tables/19/4.217.table create mode 100644 eccodes/definitions/grib2/tables/19/4.218.table create mode 100644 eccodes/definitions/grib2/tables/19/4.219.table create mode 100644 eccodes/definitions/grib2/tables/19/4.220.table create mode 100644 eccodes/definitions/grib2/tables/19/4.221.table create mode 100644 eccodes/definitions/grib2/tables/19/4.222.table create mode 100644 eccodes/definitions/grib2/tables/19/4.223.table create mode 100644 eccodes/definitions/grib2/tables/19/4.224.table create mode 100644 eccodes/definitions/grib2/tables/19/4.225.table create mode 100644 eccodes/definitions/grib2/tables/19/4.227.table create mode 100644 eccodes/definitions/grib2/tables/19/4.230.table create mode 100644 eccodes/definitions/grib2/tables/19/4.233.table create mode 100644 eccodes/definitions/grib2/tables/19/4.234.table create mode 100644 eccodes/definitions/grib2/tables/19/4.236.table create mode 100644 eccodes/definitions/grib2/tables/19/4.240.table create mode 100644 eccodes/definitions/grib2/tables/19/4.241.table create mode 100644 eccodes/definitions/grib2/tables/19/4.242.table create mode 100644 eccodes/definitions/grib2/tables/19/4.243.table create mode 100644 eccodes/definitions/grib2/tables/19/4.3.table create mode 100644 eccodes/definitions/grib2/tables/19/4.4.table create mode 100644 eccodes/definitions/grib2/tables/19/4.5.table create mode 100644 eccodes/definitions/grib2/tables/19/4.6.table create mode 100644 eccodes/definitions/grib2/tables/19/4.7.table create mode 100644 eccodes/definitions/grib2/tables/19/4.8.table create mode 100644 eccodes/definitions/grib2/tables/19/4.9.table create mode 100644 eccodes/definitions/grib2/tables/19/4.91.table create mode 100644 eccodes/definitions/grib2/tables/19/5.0.table create mode 100644 eccodes/definitions/grib2/tables/19/5.1.table create mode 100644 eccodes/definitions/grib2/tables/19/5.2.table create mode 100644 eccodes/definitions/grib2/tables/19/5.3.table create mode 100644 eccodes/definitions/grib2/tables/19/5.4.table create mode 100644 eccodes/definitions/grib2/tables/19/5.40.table create mode 100644 eccodes/definitions/grib2/tables/19/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/19/5.5.table create mode 100644 eccodes/definitions/grib2/tables/19/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/19/5.6.table create mode 100644 eccodes/definitions/grib2/tables/19/5.7.table create mode 100644 eccodes/definitions/grib2/tables/19/6.0.table create mode 100644 eccodes/definitions/grib2/tables/19/stepType.table create mode 100644 eccodes/definitions/grib2/tables/2/0.0.table create mode 100644 eccodes/definitions/grib2/tables/2/1.0.table create mode 100644 eccodes/definitions/grib2/tables/2/1.1.table create mode 100644 eccodes/definitions/grib2/tables/2/1.2.table create mode 100644 eccodes/definitions/grib2/tables/2/1.3.table create mode 100644 eccodes/definitions/grib2/tables/2/1.4.table create mode 100644 eccodes/definitions/grib2/tables/2/3.0.table create mode 100644 eccodes/definitions/grib2/tables/2/3.1.table create mode 100644 eccodes/definitions/grib2/tables/2/3.10.table create mode 100644 eccodes/definitions/grib2/tables/2/3.11.table create mode 100644 eccodes/definitions/grib2/tables/2/3.15.table create mode 100644 eccodes/definitions/grib2/tables/2/3.2.table create mode 100644 eccodes/definitions/grib2/tables/2/3.20.table create mode 100644 eccodes/definitions/grib2/tables/2/3.21.table create mode 100644 eccodes/definitions/grib2/tables/2/3.3.table create mode 100644 eccodes/definitions/grib2/tables/2/3.4.table create mode 100644 eccodes/definitions/grib2/tables/2/3.5.table create mode 100644 eccodes/definitions/grib2/tables/2/3.6.table create mode 100644 eccodes/definitions/grib2/tables/2/3.7.table create mode 100644 eccodes/definitions/grib2/tables/2/3.8.table create mode 100644 eccodes/definitions/grib2/tables/2/3.9.table create mode 100644 eccodes/definitions/grib2/tables/2/4.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/2/4.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.10.table create mode 100644 eccodes/definitions/grib2/tables/2/4.11.table create mode 100644 eccodes/definitions/grib2/tables/2/4.12.table create mode 100644 eccodes/definitions/grib2/tables/2/4.13.table create mode 100644 eccodes/definitions/grib2/tables/2/4.14.table create mode 100644 eccodes/definitions/grib2/tables/2/4.15.table create mode 100644 eccodes/definitions/grib2/tables/2/4.151.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/2/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/2/4.201.table create mode 100644 eccodes/definitions/grib2/tables/2/4.202.table create mode 100644 eccodes/definitions/grib2/tables/2/4.203.table create mode 100644 eccodes/definitions/grib2/tables/2/4.204.table create mode 100644 eccodes/definitions/grib2/tables/2/4.205.table create mode 100644 eccodes/definitions/grib2/tables/2/4.206.table create mode 100644 eccodes/definitions/grib2/tables/2/4.207.table create mode 100644 eccodes/definitions/grib2/tables/2/4.208.table create mode 100644 eccodes/definitions/grib2/tables/2/4.209.table create mode 100644 eccodes/definitions/grib2/tables/2/4.210.table create mode 100644 eccodes/definitions/grib2/tables/2/4.211.table create mode 100644 eccodes/definitions/grib2/tables/2/4.212.table create mode 100644 eccodes/definitions/grib2/tables/2/4.213.table create mode 100644 eccodes/definitions/grib2/tables/2/4.215.table create mode 100644 eccodes/definitions/grib2/tables/2/4.216.table create mode 100644 eccodes/definitions/grib2/tables/2/4.217.table create mode 100644 eccodes/definitions/grib2/tables/2/4.220.table create mode 100644 eccodes/definitions/grib2/tables/2/4.221.table create mode 100644 eccodes/definitions/grib2/tables/2/4.230.table create mode 100644 eccodes/definitions/grib2/tables/2/4.3.table create mode 100644 eccodes/definitions/grib2/tables/2/4.4.table create mode 100644 eccodes/definitions/grib2/tables/2/4.5.table create mode 100644 eccodes/definitions/grib2/tables/2/4.6.table create mode 100644 eccodes/definitions/grib2/tables/2/4.7.table create mode 100644 eccodes/definitions/grib2/tables/2/4.8.table create mode 100644 eccodes/definitions/grib2/tables/2/4.9.table create mode 100644 eccodes/definitions/grib2/tables/2/4.91.table create mode 100644 eccodes/definitions/grib2/tables/2/5.0.table create mode 100644 eccodes/definitions/grib2/tables/2/5.1.table create mode 100644 eccodes/definitions/grib2/tables/2/5.2.table create mode 100644 eccodes/definitions/grib2/tables/2/5.3.table create mode 100644 eccodes/definitions/grib2/tables/2/5.4.table create mode 100644 eccodes/definitions/grib2/tables/2/5.40.table create mode 100644 eccodes/definitions/grib2/tables/2/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/2/5.5.table create mode 100644 eccodes/definitions/grib2/tables/2/5.6.table create mode 100644 eccodes/definitions/grib2/tables/2/5.7.table create mode 100644 eccodes/definitions/grib2/tables/2/5.8.table create mode 100644 eccodes/definitions/grib2/tables/2/5.9.table create mode 100644 eccodes/definitions/grib2/tables/2/6.0.table create mode 100644 eccodes/definitions/grib2/tables/20/0.0.table create mode 100644 eccodes/definitions/grib2/tables/20/1.0.table create mode 100644 eccodes/definitions/grib2/tables/20/1.1.table create mode 100644 eccodes/definitions/grib2/tables/20/1.2.table create mode 100644 eccodes/definitions/grib2/tables/20/1.3.table create mode 100644 eccodes/definitions/grib2/tables/20/1.4.table create mode 100644 eccodes/definitions/grib2/tables/20/1.5.table create mode 100644 eccodes/definitions/grib2/tables/20/1.6.table create mode 100644 eccodes/definitions/grib2/tables/20/3.0.table create mode 100644 eccodes/definitions/grib2/tables/20/3.1.table create mode 100644 eccodes/definitions/grib2/tables/20/3.10.table create mode 100644 eccodes/definitions/grib2/tables/20/3.11.table create mode 100644 eccodes/definitions/grib2/tables/20/3.15.table create mode 100644 eccodes/definitions/grib2/tables/20/3.2.table create mode 100644 eccodes/definitions/grib2/tables/20/3.20.table create mode 100644 eccodes/definitions/grib2/tables/20/3.21.table create mode 100644 eccodes/definitions/grib2/tables/20/3.3.table create mode 100644 eccodes/definitions/grib2/tables/20/3.4.table create mode 100644 eccodes/definitions/grib2/tables/20/3.5.table create mode 100644 eccodes/definitions/grib2/tables/20/3.6.table create mode 100644 eccodes/definitions/grib2/tables/20/3.7.table create mode 100644 eccodes/definitions/grib2/tables/20/3.8.table create mode 100644 eccodes/definitions/grib2/tables/20/3.9.table create mode 100644 eccodes/definitions/grib2/tables/20/4.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/20/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.10.table create mode 100644 eccodes/definitions/grib2/tables/20/4.11.table create mode 100644 eccodes/definitions/grib2/tables/20/4.12.table create mode 100644 eccodes/definitions/grib2/tables/20/4.13.table create mode 100644 eccodes/definitions/grib2/tables/20/4.14.table create mode 100644 eccodes/definitions/grib2/tables/20/4.15.table create mode 100644 eccodes/definitions/grib2/tables/20/4.192.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/20/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/20/4.201.table create mode 100644 eccodes/definitions/grib2/tables/20/4.202.table create mode 100644 eccodes/definitions/grib2/tables/20/4.203.table create mode 100644 eccodes/definitions/grib2/tables/20/4.204.table create mode 100644 eccodes/definitions/grib2/tables/20/4.205.table create mode 100644 eccodes/definitions/grib2/tables/20/4.206.table create mode 100644 eccodes/definitions/grib2/tables/20/4.207.table create mode 100644 eccodes/definitions/grib2/tables/20/4.208.table create mode 100644 eccodes/definitions/grib2/tables/20/4.209.table create mode 100644 eccodes/definitions/grib2/tables/20/4.210.table create mode 100644 eccodes/definitions/grib2/tables/20/4.211.table create mode 100644 eccodes/definitions/grib2/tables/20/4.212.table create mode 100644 eccodes/definitions/grib2/tables/20/4.213.table create mode 100644 eccodes/definitions/grib2/tables/20/4.215.table create mode 100644 eccodes/definitions/grib2/tables/20/4.216.table create mode 100644 eccodes/definitions/grib2/tables/20/4.217.table create mode 100644 eccodes/definitions/grib2/tables/20/4.218.table create mode 100644 eccodes/definitions/grib2/tables/20/4.219.table create mode 100644 eccodes/definitions/grib2/tables/20/4.220.table create mode 100644 eccodes/definitions/grib2/tables/20/4.221.table create mode 100644 eccodes/definitions/grib2/tables/20/4.222.table create mode 100644 eccodes/definitions/grib2/tables/20/4.223.table create mode 100644 eccodes/definitions/grib2/tables/20/4.224.table create mode 100644 eccodes/definitions/grib2/tables/20/4.225.table create mode 100644 eccodes/definitions/grib2/tables/20/4.227.table create mode 100644 eccodes/definitions/grib2/tables/20/4.230.table create mode 100644 eccodes/definitions/grib2/tables/20/4.233.table create mode 100644 eccodes/definitions/grib2/tables/20/4.234.table create mode 100644 eccodes/definitions/grib2/tables/20/4.236.table create mode 100644 eccodes/definitions/grib2/tables/20/4.240.table create mode 100644 eccodes/definitions/grib2/tables/20/4.241.table create mode 100644 eccodes/definitions/grib2/tables/20/4.242.table create mode 100644 eccodes/definitions/grib2/tables/20/4.243.table create mode 100644 eccodes/definitions/grib2/tables/20/4.3.table create mode 100644 eccodes/definitions/grib2/tables/20/4.4.table create mode 100644 eccodes/definitions/grib2/tables/20/4.5.table create mode 100644 eccodes/definitions/grib2/tables/20/4.6.table create mode 100644 eccodes/definitions/grib2/tables/20/4.7.table create mode 100644 eccodes/definitions/grib2/tables/20/4.8.table create mode 100644 eccodes/definitions/grib2/tables/20/4.9.table create mode 100644 eccodes/definitions/grib2/tables/20/4.91.table create mode 100644 eccodes/definitions/grib2/tables/20/5.0.table create mode 100644 eccodes/definitions/grib2/tables/20/5.1.table create mode 100644 eccodes/definitions/grib2/tables/20/5.2.table create mode 100644 eccodes/definitions/grib2/tables/20/5.3.table create mode 100644 eccodes/definitions/grib2/tables/20/5.4.table create mode 100644 eccodes/definitions/grib2/tables/20/5.40.table create mode 100644 eccodes/definitions/grib2/tables/20/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/20/5.5.table create mode 100644 eccodes/definitions/grib2/tables/20/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/20/5.6.table create mode 100644 eccodes/definitions/grib2/tables/20/5.7.table create mode 100644 eccodes/definitions/grib2/tables/20/6.0.table create mode 100644 eccodes/definitions/grib2/tables/20/stepType.table create mode 100644 eccodes/definitions/grib2/tables/21/0.0.table create mode 100644 eccodes/definitions/grib2/tables/21/1.0.table create mode 100644 eccodes/definitions/grib2/tables/21/1.1.table create mode 100644 eccodes/definitions/grib2/tables/21/1.2.table create mode 100644 eccodes/definitions/grib2/tables/21/1.3.table create mode 100644 eccodes/definitions/grib2/tables/21/1.4.table create mode 100644 eccodes/definitions/grib2/tables/21/1.5.table create mode 100644 eccodes/definitions/grib2/tables/21/1.6.table create mode 100644 eccodes/definitions/grib2/tables/21/3.0.table create mode 100644 eccodes/definitions/grib2/tables/21/3.1.table create mode 100644 eccodes/definitions/grib2/tables/21/3.10.table create mode 100644 eccodes/definitions/grib2/tables/21/3.11.table create mode 100644 eccodes/definitions/grib2/tables/21/3.15.table create mode 100644 eccodes/definitions/grib2/tables/21/3.2.table create mode 100644 eccodes/definitions/grib2/tables/21/3.20.table create mode 100644 eccodes/definitions/grib2/tables/21/3.21.table create mode 100644 eccodes/definitions/grib2/tables/21/3.3.table create mode 100644 eccodes/definitions/grib2/tables/21/3.4.table create mode 100644 eccodes/definitions/grib2/tables/21/3.5.table create mode 100644 eccodes/definitions/grib2/tables/21/3.6.table create mode 100644 eccodes/definitions/grib2/tables/21/3.7.table create mode 100644 eccodes/definitions/grib2/tables/21/3.8.table create mode 100644 eccodes/definitions/grib2/tables/21/3.9.table create mode 100644 eccodes/definitions/grib2/tables/21/4.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/21/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.10.table create mode 100644 eccodes/definitions/grib2/tables/21/4.11.table create mode 100644 eccodes/definitions/grib2/tables/21/4.12.table create mode 100644 eccodes/definitions/grib2/tables/21/4.13.table create mode 100644 eccodes/definitions/grib2/tables/21/4.14.table create mode 100644 eccodes/definitions/grib2/tables/21/4.15.table create mode 100644 eccodes/definitions/grib2/tables/21/4.16.table create mode 100644 eccodes/definitions/grib2/tables/21/4.192.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/21/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/21/4.201.table create mode 100644 eccodes/definitions/grib2/tables/21/4.202.table create mode 100644 eccodes/definitions/grib2/tables/21/4.203.table create mode 100644 eccodes/definitions/grib2/tables/21/4.204.table create mode 100644 eccodes/definitions/grib2/tables/21/4.205.table create mode 100644 eccodes/definitions/grib2/tables/21/4.206.table create mode 100644 eccodes/definitions/grib2/tables/21/4.207.table create mode 100644 eccodes/definitions/grib2/tables/21/4.208.table create mode 100644 eccodes/definitions/grib2/tables/21/4.209.table create mode 100644 eccodes/definitions/grib2/tables/21/4.210.table create mode 100644 eccodes/definitions/grib2/tables/21/4.211.table create mode 100644 eccodes/definitions/grib2/tables/21/4.212.table create mode 100644 eccodes/definitions/grib2/tables/21/4.213.table create mode 100644 eccodes/definitions/grib2/tables/21/4.215.table create mode 100644 eccodes/definitions/grib2/tables/21/4.216.table create mode 100644 eccodes/definitions/grib2/tables/21/4.217.table create mode 100644 eccodes/definitions/grib2/tables/21/4.218.table create mode 100644 eccodes/definitions/grib2/tables/21/4.219.table create mode 100644 eccodes/definitions/grib2/tables/21/4.220.table create mode 100644 eccodes/definitions/grib2/tables/21/4.221.table create mode 100644 eccodes/definitions/grib2/tables/21/4.222.table create mode 100644 eccodes/definitions/grib2/tables/21/4.223.table create mode 100644 eccodes/definitions/grib2/tables/21/4.224.table create mode 100644 eccodes/definitions/grib2/tables/21/4.225.table create mode 100644 eccodes/definitions/grib2/tables/21/4.227.table create mode 100644 eccodes/definitions/grib2/tables/21/4.230.table create mode 100644 eccodes/definitions/grib2/tables/21/4.233.table create mode 100644 eccodes/definitions/grib2/tables/21/4.234.table create mode 100644 eccodes/definitions/grib2/tables/21/4.236.table create mode 100644 eccodes/definitions/grib2/tables/21/4.238.table create mode 100644 eccodes/definitions/grib2/tables/21/4.240.table create mode 100644 eccodes/definitions/grib2/tables/21/4.241.table create mode 100644 eccodes/definitions/grib2/tables/21/4.242.table create mode 100644 eccodes/definitions/grib2/tables/21/4.243.table create mode 100644 eccodes/definitions/grib2/tables/21/4.244.table create mode 100644 eccodes/definitions/grib2/tables/21/4.3.table create mode 100644 eccodes/definitions/grib2/tables/21/4.4.table create mode 100644 eccodes/definitions/grib2/tables/21/4.5.table create mode 100644 eccodes/definitions/grib2/tables/21/4.6.table create mode 100644 eccodes/definitions/grib2/tables/21/4.7.table create mode 100644 eccodes/definitions/grib2/tables/21/4.8.table create mode 100644 eccodes/definitions/grib2/tables/21/4.9.table create mode 100644 eccodes/definitions/grib2/tables/21/4.91.table create mode 100644 eccodes/definitions/grib2/tables/21/5.0.table create mode 100644 eccodes/definitions/grib2/tables/21/5.1.table create mode 100644 eccodes/definitions/grib2/tables/21/5.2.table create mode 100644 eccodes/definitions/grib2/tables/21/5.3.table create mode 100644 eccodes/definitions/grib2/tables/21/5.4.table create mode 100644 eccodes/definitions/grib2/tables/21/5.40.table create mode 100644 eccodes/definitions/grib2/tables/21/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/21/5.5.table create mode 100644 eccodes/definitions/grib2/tables/21/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/21/5.6.table create mode 100644 eccodes/definitions/grib2/tables/21/5.7.table create mode 100644 eccodes/definitions/grib2/tables/21/6.0.table create mode 100644 eccodes/definitions/grib2/tables/21/stepType.table create mode 100644 eccodes/definitions/grib2/tables/22/1.4.table create mode 100644 eccodes/definitions/grib2/tables/22/3.15.table create mode 100644 eccodes/definitions/grib2/tables/22/4.10.table create mode 100644 eccodes/definitions/grib2/tables/22/4.230.table create mode 100644 eccodes/definitions/grib2/tables/22/4.4.table create mode 100644 eccodes/definitions/grib2/tables/22/4.5.table create mode 100644 eccodes/definitions/grib2/tables/22/4.91.table create mode 100644 eccodes/definitions/grib2/tables/23/0.0.table create mode 100644 eccodes/definitions/grib2/tables/23/1.0.table create mode 100644 eccodes/definitions/grib2/tables/23/1.1.table create mode 100644 eccodes/definitions/grib2/tables/23/1.2.table create mode 100644 eccodes/definitions/grib2/tables/23/1.3.table create mode 100644 eccodes/definitions/grib2/tables/23/1.4.table create mode 100644 eccodes/definitions/grib2/tables/23/1.5.table create mode 100644 eccodes/definitions/grib2/tables/23/1.6.table create mode 100644 eccodes/definitions/grib2/tables/23/3.0.table create mode 100644 eccodes/definitions/grib2/tables/23/3.1.table create mode 100644 eccodes/definitions/grib2/tables/23/3.10.table create mode 100644 eccodes/definitions/grib2/tables/23/3.11.table create mode 100644 eccodes/definitions/grib2/tables/23/3.15.table create mode 100644 eccodes/definitions/grib2/tables/23/3.2.table create mode 100644 eccodes/definitions/grib2/tables/23/3.20.table create mode 100644 eccodes/definitions/grib2/tables/23/3.21.table create mode 100644 eccodes/definitions/grib2/tables/23/3.25.table create mode 100644 eccodes/definitions/grib2/tables/23/3.3.table create mode 100644 eccodes/definitions/grib2/tables/23/3.4.table create mode 100644 eccodes/definitions/grib2/tables/23/3.5.table create mode 100644 eccodes/definitions/grib2/tables/23/3.6.table create mode 100644 eccodes/definitions/grib2/tables/23/3.7.table create mode 100644 eccodes/definitions/grib2/tables/23/3.8.table create mode 100644 eccodes/definitions/grib2/tables/23/3.9.table create mode 100644 eccodes/definitions/grib2/tables/23/4.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/23/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.10.table create mode 100644 eccodes/definitions/grib2/tables/23/4.11.table create mode 100644 eccodes/definitions/grib2/tables/23/4.12.table create mode 100644 eccodes/definitions/grib2/tables/23/4.13.table create mode 100644 eccodes/definitions/grib2/tables/23/4.14.table create mode 100644 eccodes/definitions/grib2/tables/23/4.15.table create mode 100644 eccodes/definitions/grib2/tables/23/4.16.table create mode 100644 eccodes/definitions/grib2/tables/23/4.192.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/23/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/23/4.201.table create mode 100644 eccodes/definitions/grib2/tables/23/4.202.table create mode 100644 eccodes/definitions/grib2/tables/23/4.203.table create mode 100644 eccodes/definitions/grib2/tables/23/4.204.table create mode 100644 eccodes/definitions/grib2/tables/23/4.205.table create mode 100644 eccodes/definitions/grib2/tables/23/4.206.table create mode 100644 eccodes/definitions/grib2/tables/23/4.207.table create mode 100644 eccodes/definitions/grib2/tables/23/4.208.table create mode 100644 eccodes/definitions/grib2/tables/23/4.209.table create mode 100644 eccodes/definitions/grib2/tables/23/4.210.table create mode 100644 eccodes/definitions/grib2/tables/23/4.211.table create mode 100644 eccodes/definitions/grib2/tables/23/4.212.table create mode 100644 eccodes/definitions/grib2/tables/23/4.213.table create mode 100644 eccodes/definitions/grib2/tables/23/4.215.table create mode 100644 eccodes/definitions/grib2/tables/23/4.216.table create mode 100644 eccodes/definitions/grib2/tables/23/4.217.table create mode 100644 eccodes/definitions/grib2/tables/23/4.218.table create mode 100644 eccodes/definitions/grib2/tables/23/4.219.table create mode 100644 eccodes/definitions/grib2/tables/23/4.220.table create mode 100644 eccodes/definitions/grib2/tables/23/4.221.table create mode 100644 eccodes/definitions/grib2/tables/23/4.222.table create mode 100644 eccodes/definitions/grib2/tables/23/4.223.table create mode 100644 eccodes/definitions/grib2/tables/23/4.224.table create mode 100644 eccodes/definitions/grib2/tables/23/4.225.table create mode 100644 eccodes/definitions/grib2/tables/23/4.227.table create mode 100644 eccodes/definitions/grib2/tables/23/4.230.table create mode 100644 eccodes/definitions/grib2/tables/23/4.233.table create mode 100644 eccodes/definitions/grib2/tables/23/4.234.table create mode 100644 eccodes/definitions/grib2/tables/23/4.236.table create mode 100644 eccodes/definitions/grib2/tables/23/4.240.table create mode 100644 eccodes/definitions/grib2/tables/23/4.241.table create mode 100644 eccodes/definitions/grib2/tables/23/4.242.table create mode 100644 eccodes/definitions/grib2/tables/23/4.243.table create mode 100644 eccodes/definitions/grib2/tables/23/4.244.table create mode 100644 eccodes/definitions/grib2/tables/23/4.3.table create mode 100644 eccodes/definitions/grib2/tables/23/4.4.table create mode 100644 eccodes/definitions/grib2/tables/23/4.5.table create mode 100644 eccodes/definitions/grib2/tables/23/4.6.table create mode 100644 eccodes/definitions/grib2/tables/23/4.7.table create mode 100644 eccodes/definitions/grib2/tables/23/4.8.table create mode 100644 eccodes/definitions/grib2/tables/23/4.9.table create mode 100644 eccodes/definitions/grib2/tables/23/4.91.table create mode 100644 eccodes/definitions/grib2/tables/23/5.0.table create mode 100644 eccodes/definitions/grib2/tables/23/5.1.table create mode 100644 eccodes/definitions/grib2/tables/23/5.2.table create mode 100644 eccodes/definitions/grib2/tables/23/5.25.table create mode 100644 eccodes/definitions/grib2/tables/23/5.26.table create mode 100644 eccodes/definitions/grib2/tables/23/5.3.table create mode 100644 eccodes/definitions/grib2/tables/23/5.4.table create mode 100644 eccodes/definitions/grib2/tables/23/5.40.table create mode 100644 eccodes/definitions/grib2/tables/23/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/23/5.5.table create mode 100644 eccodes/definitions/grib2/tables/23/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/23/5.6.table create mode 100644 eccodes/definitions/grib2/tables/23/5.7.table create mode 100644 eccodes/definitions/grib2/tables/23/6.0.table create mode 100644 eccodes/definitions/grib2/tables/23/stepType.table create mode 100644 eccodes/definitions/grib2/tables/24/0.0.table create mode 100644 eccodes/definitions/grib2/tables/24/1.0.table create mode 100644 eccodes/definitions/grib2/tables/24/1.1.table create mode 100644 eccodes/definitions/grib2/tables/24/1.2.table create mode 100644 eccodes/definitions/grib2/tables/24/1.3.table create mode 100644 eccodes/definitions/grib2/tables/24/1.4.table create mode 100644 eccodes/definitions/grib2/tables/24/1.5.table create mode 100644 eccodes/definitions/grib2/tables/24/1.6.table create mode 100644 eccodes/definitions/grib2/tables/24/3.0.table create mode 100644 eccodes/definitions/grib2/tables/24/3.1.table create mode 100644 eccodes/definitions/grib2/tables/24/3.10.table create mode 100644 eccodes/definitions/grib2/tables/24/3.11.table create mode 100644 eccodes/definitions/grib2/tables/24/3.15.table create mode 100644 eccodes/definitions/grib2/tables/24/3.2.table create mode 100644 eccodes/definitions/grib2/tables/24/3.20.table create mode 100644 eccodes/definitions/grib2/tables/24/3.21.table create mode 100644 eccodes/definitions/grib2/tables/24/3.25.table create mode 100644 eccodes/definitions/grib2/tables/24/3.3.table create mode 100644 eccodes/definitions/grib2/tables/24/3.4.table create mode 100644 eccodes/definitions/grib2/tables/24/3.5.table create mode 100644 eccodes/definitions/grib2/tables/24/3.6.table create mode 100644 eccodes/definitions/grib2/tables/24/3.7.table create mode 100644 eccodes/definitions/grib2/tables/24/3.8.table create mode 100644 eccodes/definitions/grib2/tables/24/3.9.table create mode 100644 eccodes/definitions/grib2/tables/24/4.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/24/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.10.table create mode 100644 eccodes/definitions/grib2/tables/24/4.11.table create mode 100644 eccodes/definitions/grib2/tables/24/4.12.table create mode 100644 eccodes/definitions/grib2/tables/24/4.13.table create mode 100644 eccodes/definitions/grib2/tables/24/4.14.table create mode 100644 eccodes/definitions/grib2/tables/24/4.15.table create mode 100644 eccodes/definitions/grib2/tables/24/4.16.table create mode 100644 eccodes/definitions/grib2/tables/24/4.192.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/24/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/24/4.201.table create mode 100644 eccodes/definitions/grib2/tables/24/4.202.table create mode 100644 eccodes/definitions/grib2/tables/24/4.203.table create mode 100644 eccodes/definitions/grib2/tables/24/4.204.table create mode 100644 eccodes/definitions/grib2/tables/24/4.205.table create mode 100644 eccodes/definitions/grib2/tables/24/4.206.table create mode 100644 eccodes/definitions/grib2/tables/24/4.207.table create mode 100644 eccodes/definitions/grib2/tables/24/4.208.table create mode 100644 eccodes/definitions/grib2/tables/24/4.209.table create mode 100644 eccodes/definitions/grib2/tables/24/4.210.table create mode 100644 eccodes/definitions/grib2/tables/24/4.211.table create mode 100644 eccodes/definitions/grib2/tables/24/4.212.table create mode 100644 eccodes/definitions/grib2/tables/24/4.213.table create mode 100644 eccodes/definitions/grib2/tables/24/4.215.table create mode 100644 eccodes/definitions/grib2/tables/24/4.216.table create mode 100644 eccodes/definitions/grib2/tables/24/4.217.table create mode 100644 eccodes/definitions/grib2/tables/24/4.218.table create mode 100644 eccodes/definitions/grib2/tables/24/4.219.table create mode 100644 eccodes/definitions/grib2/tables/24/4.220.table create mode 100644 eccodes/definitions/grib2/tables/24/4.221.table create mode 100644 eccodes/definitions/grib2/tables/24/4.222.table create mode 100644 eccodes/definitions/grib2/tables/24/4.223.table create mode 100644 eccodes/definitions/grib2/tables/24/4.224.table create mode 100644 eccodes/definitions/grib2/tables/24/4.225.table create mode 100644 eccodes/definitions/grib2/tables/24/4.227.table create mode 100644 eccodes/definitions/grib2/tables/24/4.230.table create mode 100644 eccodes/definitions/grib2/tables/24/4.233.table create mode 100644 eccodes/definitions/grib2/tables/24/4.234.table create mode 100644 eccodes/definitions/grib2/tables/24/4.236.table create mode 100644 eccodes/definitions/grib2/tables/24/4.238.table create mode 100644 eccodes/definitions/grib2/tables/24/4.240.table create mode 100644 eccodes/definitions/grib2/tables/24/4.241.table create mode 100644 eccodes/definitions/grib2/tables/24/4.242.table create mode 100644 eccodes/definitions/grib2/tables/24/4.243.table create mode 100644 eccodes/definitions/grib2/tables/24/4.244.table create mode 100644 eccodes/definitions/grib2/tables/24/4.3.table create mode 100644 eccodes/definitions/grib2/tables/24/4.4.table create mode 100644 eccodes/definitions/grib2/tables/24/4.5.table create mode 100644 eccodes/definitions/grib2/tables/24/4.6.table create mode 100644 eccodes/definitions/grib2/tables/24/4.7.table create mode 100644 eccodes/definitions/grib2/tables/24/4.8.table create mode 100644 eccodes/definitions/grib2/tables/24/4.9.table create mode 100644 eccodes/definitions/grib2/tables/24/4.91.table create mode 100644 eccodes/definitions/grib2/tables/24/5.0.table create mode 100644 eccodes/definitions/grib2/tables/24/5.1.table create mode 100644 eccodes/definitions/grib2/tables/24/5.2.table create mode 100644 eccodes/definitions/grib2/tables/24/5.25.table create mode 100644 eccodes/definitions/grib2/tables/24/5.26.table create mode 100644 eccodes/definitions/grib2/tables/24/5.3.table create mode 100644 eccodes/definitions/grib2/tables/24/5.4.table create mode 100644 eccodes/definitions/grib2/tables/24/5.40.table create mode 100644 eccodes/definitions/grib2/tables/24/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/24/5.5.table create mode 100644 eccodes/definitions/grib2/tables/24/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/24/5.6.table create mode 100644 eccodes/definitions/grib2/tables/24/5.7.table create mode 100644 eccodes/definitions/grib2/tables/24/6.0.table create mode 100644 eccodes/definitions/grib2/tables/24/stepType.table create mode 100644 eccodes/definitions/grib2/tables/25/0.0.table create mode 100644 eccodes/definitions/grib2/tables/25/1.0.table create mode 100644 eccodes/definitions/grib2/tables/25/1.1.table create mode 100644 eccodes/definitions/grib2/tables/25/1.2.table create mode 100644 eccodes/definitions/grib2/tables/25/1.3.table create mode 100644 eccodes/definitions/grib2/tables/25/1.4.table create mode 100644 eccodes/definitions/grib2/tables/25/1.5.table create mode 100644 eccodes/definitions/grib2/tables/25/1.6.table create mode 100644 eccodes/definitions/grib2/tables/25/3.0.table create mode 100644 eccodes/definitions/grib2/tables/25/3.1.table create mode 100644 eccodes/definitions/grib2/tables/25/3.10.table create mode 100644 eccodes/definitions/grib2/tables/25/3.11.table create mode 100644 eccodes/definitions/grib2/tables/25/3.15.table create mode 100644 eccodes/definitions/grib2/tables/25/3.2.table create mode 100644 eccodes/definitions/grib2/tables/25/3.20.table create mode 100644 eccodes/definitions/grib2/tables/25/3.21.table create mode 100644 eccodes/definitions/grib2/tables/25/3.25.table create mode 100644 eccodes/definitions/grib2/tables/25/3.3.table create mode 100644 eccodes/definitions/grib2/tables/25/3.4.table create mode 100644 eccodes/definitions/grib2/tables/25/3.5.table create mode 100644 eccodes/definitions/grib2/tables/25/3.6.table create mode 100644 eccodes/definitions/grib2/tables/25/3.7.table create mode 100644 eccodes/definitions/grib2/tables/25/3.8.table create mode 100644 eccodes/definitions/grib2/tables/25/3.9.table create mode 100644 eccodes/definitions/grib2/tables/25/4.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.20.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.1.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.10.table create mode 100644 eccodes/definitions/grib2/tables/25/4.11.table create mode 100644 eccodes/definitions/grib2/tables/25/4.12.table create mode 100644 eccodes/definitions/grib2/tables/25/4.13.table create mode 100644 eccodes/definitions/grib2/tables/25/4.14.table create mode 100644 eccodes/definitions/grib2/tables/25/4.15.table create mode 100644 eccodes/definitions/grib2/tables/25/4.16.table create mode 100644 eccodes/definitions/grib2/tables/25/4.192.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.20.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.20.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.20.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.0.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.1.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.10.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.2.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.5.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.6.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.7.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.8.table create mode 100644 eccodes/definitions/grib2/tables/25/4.2.4.9.table create mode 100644 eccodes/definitions/grib2/tables/25/4.201.table create mode 100644 eccodes/definitions/grib2/tables/25/4.202.table create mode 100644 eccodes/definitions/grib2/tables/25/4.203.table create mode 100644 eccodes/definitions/grib2/tables/25/4.204.table create mode 100644 eccodes/definitions/grib2/tables/25/4.205.table create mode 100644 eccodes/definitions/grib2/tables/25/4.206.table create mode 100644 eccodes/definitions/grib2/tables/25/4.207.table create mode 100644 eccodes/definitions/grib2/tables/25/4.208.table create mode 100644 eccodes/definitions/grib2/tables/25/4.209.table create mode 100644 eccodes/definitions/grib2/tables/25/4.210.table create mode 100644 eccodes/definitions/grib2/tables/25/4.211.table create mode 100644 eccodes/definitions/grib2/tables/25/4.212.table create mode 100644 eccodes/definitions/grib2/tables/25/4.213.table create mode 100644 eccodes/definitions/grib2/tables/25/4.215.table create mode 100644 eccodes/definitions/grib2/tables/25/4.216.table create mode 100644 eccodes/definitions/grib2/tables/25/4.217.table create mode 100644 eccodes/definitions/grib2/tables/25/4.218.table create mode 100644 eccodes/definitions/grib2/tables/25/4.219.table create mode 100644 eccodes/definitions/grib2/tables/25/4.220.table create mode 100644 eccodes/definitions/grib2/tables/25/4.221.table create mode 100644 eccodes/definitions/grib2/tables/25/4.222.table create mode 100644 eccodes/definitions/grib2/tables/25/4.223.table create mode 100644 eccodes/definitions/grib2/tables/25/4.224.table create mode 100644 eccodes/definitions/grib2/tables/25/4.225.table create mode 100644 eccodes/definitions/grib2/tables/25/4.227.table create mode 100644 eccodes/definitions/grib2/tables/25/4.228.table create mode 100644 eccodes/definitions/grib2/tables/25/4.230.table create mode 100644 eccodes/definitions/grib2/tables/25/4.233.table create mode 100644 eccodes/definitions/grib2/tables/25/4.234.table create mode 100644 eccodes/definitions/grib2/tables/25/4.236.table create mode 100644 eccodes/definitions/grib2/tables/25/4.238.table create mode 100644 eccodes/definitions/grib2/tables/25/4.240.table create mode 100644 eccodes/definitions/grib2/tables/25/4.241.table create mode 100644 eccodes/definitions/grib2/tables/25/4.242.table create mode 100644 eccodes/definitions/grib2/tables/25/4.243.table create mode 100644 eccodes/definitions/grib2/tables/25/4.244.table create mode 100644 eccodes/definitions/grib2/tables/25/4.3.table create mode 100644 eccodes/definitions/grib2/tables/25/4.4.table create mode 100644 eccodes/definitions/grib2/tables/25/4.5.table create mode 100644 eccodes/definitions/grib2/tables/25/4.6.table create mode 100644 eccodes/definitions/grib2/tables/25/4.7.table create mode 100644 eccodes/definitions/grib2/tables/25/4.8.table create mode 100644 eccodes/definitions/grib2/tables/25/4.9.table create mode 100644 eccodes/definitions/grib2/tables/25/4.91.table create mode 100644 eccodes/definitions/grib2/tables/25/5.0.table create mode 100644 eccodes/definitions/grib2/tables/25/5.1.table create mode 100644 eccodes/definitions/grib2/tables/25/5.2.table create mode 100644 eccodes/definitions/grib2/tables/25/5.25.table create mode 100644 eccodes/definitions/grib2/tables/25/5.26.table create mode 100644 eccodes/definitions/grib2/tables/25/5.3.table create mode 100644 eccodes/definitions/grib2/tables/25/5.4.table create mode 100644 eccodes/definitions/grib2/tables/25/5.40.table create mode 100644 eccodes/definitions/grib2/tables/25/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/25/5.5.table create mode 100644 eccodes/definitions/grib2/tables/25/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/25/5.6.table create mode 100644 eccodes/definitions/grib2/tables/25/5.7.table create mode 100644 eccodes/definitions/grib2/tables/25/6.0.table create mode 100644 eccodes/definitions/grib2/tables/25/stepType.table create mode 100644 eccodes/definitions/grib2/tables/26/0.0.table create mode 100644 eccodes/definitions/grib2/tables/26/1.0.table create mode 100644 eccodes/definitions/grib2/tables/26/1.1.table create mode 100644 eccodes/definitions/grib2/tables/26/1.2.table create mode 100644 eccodes/definitions/grib2/tables/26/1.3.table create mode 100644 eccodes/definitions/grib2/tables/26/1.4.table create mode 100644 eccodes/definitions/grib2/tables/26/1.5.table create mode 100644 eccodes/definitions/grib2/tables/26/1.6.table create mode 100644 eccodes/definitions/grib2/tables/26/3.0.table create mode 100644 eccodes/definitions/grib2/tables/26/3.1.table create mode 100644 eccodes/definitions/grib2/tables/26/3.10.table create mode 100644 eccodes/definitions/grib2/tables/26/3.11.table create mode 100644 eccodes/definitions/grib2/tables/26/3.15.table create mode 100644 eccodes/definitions/grib2/tables/26/3.2.table create mode 100644 eccodes/definitions/grib2/tables/26/3.20.table create mode 100644 eccodes/definitions/grib2/tables/26/3.21.table create mode 100644 eccodes/definitions/grib2/tables/26/3.25.table create mode 100644 eccodes/definitions/grib2/tables/26/3.3.table create mode 100644 eccodes/definitions/grib2/tables/26/3.4.table create mode 100644 eccodes/definitions/grib2/tables/26/3.5.table create mode 100644 eccodes/definitions/grib2/tables/26/3.6.table create mode 100644 eccodes/definitions/grib2/tables/26/3.7.table create mode 100644 eccodes/definitions/grib2/tables/26/3.8.table create mode 100644 eccodes/definitions/grib2/tables/26/3.9.table create mode 100644 eccodes/definitions/grib2/tables/26/4.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.20.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.1.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.10.table create mode 100644 eccodes/definitions/grib2/tables/26/4.11.table create mode 100644 eccodes/definitions/grib2/tables/26/4.12.table create mode 100644 eccodes/definitions/grib2/tables/26/4.13.table create mode 100644 eccodes/definitions/grib2/tables/26/4.14.table create mode 100644 eccodes/definitions/grib2/tables/26/4.15.table create mode 100644 eccodes/definitions/grib2/tables/26/4.16.table create mode 100644 eccodes/definitions/grib2/tables/26/4.192.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.2.5.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.20.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.20.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.20.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.5.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.3.6.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.0.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.1.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.10.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.2.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.5.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.6.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.7.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.8.table create mode 100644 eccodes/definitions/grib2/tables/26/4.2.4.9.table create mode 100644 eccodes/definitions/grib2/tables/26/4.201.table create mode 100644 eccodes/definitions/grib2/tables/26/4.202.table create mode 100644 eccodes/definitions/grib2/tables/26/4.203.table create mode 100644 eccodes/definitions/grib2/tables/26/4.204.table create mode 100644 eccodes/definitions/grib2/tables/26/4.205.table create mode 100644 eccodes/definitions/grib2/tables/26/4.206.table create mode 100644 eccodes/definitions/grib2/tables/26/4.207.table create mode 100644 eccodes/definitions/grib2/tables/26/4.208.table create mode 100644 eccodes/definitions/grib2/tables/26/4.209.table create mode 100644 eccodes/definitions/grib2/tables/26/4.210.table create mode 100644 eccodes/definitions/grib2/tables/26/4.211.table create mode 100644 eccodes/definitions/grib2/tables/26/4.212.table create mode 100644 eccodes/definitions/grib2/tables/26/4.213.table create mode 100644 eccodes/definitions/grib2/tables/26/4.214.table create mode 100644 eccodes/definitions/grib2/tables/26/4.215.table create mode 100644 eccodes/definitions/grib2/tables/26/4.216.table create mode 100644 eccodes/definitions/grib2/tables/26/4.217.table create mode 100644 eccodes/definitions/grib2/tables/26/4.218.table create mode 100644 eccodes/definitions/grib2/tables/26/4.219.table create mode 100644 eccodes/definitions/grib2/tables/26/4.220.table create mode 100644 eccodes/definitions/grib2/tables/26/4.221.table create mode 100644 eccodes/definitions/grib2/tables/26/4.222.table create mode 100644 eccodes/definitions/grib2/tables/26/4.223.table create mode 100644 eccodes/definitions/grib2/tables/26/4.224.table create mode 100644 eccodes/definitions/grib2/tables/26/4.225.table create mode 100644 eccodes/definitions/grib2/tables/26/4.227.table create mode 100644 eccodes/definitions/grib2/tables/26/4.228.table create mode 100644 eccodes/definitions/grib2/tables/26/4.230.table create mode 100644 eccodes/definitions/grib2/tables/26/4.233.table create mode 100644 eccodes/definitions/grib2/tables/26/4.234.table create mode 100644 eccodes/definitions/grib2/tables/26/4.236.table create mode 100644 eccodes/definitions/grib2/tables/26/4.238.table create mode 100644 eccodes/definitions/grib2/tables/26/4.240.table create mode 100644 eccodes/definitions/grib2/tables/26/4.241.table create mode 100644 eccodes/definitions/grib2/tables/26/4.242.table create mode 100644 eccodes/definitions/grib2/tables/26/4.243.table create mode 100644 eccodes/definitions/grib2/tables/26/4.244.table create mode 100644 eccodes/definitions/grib2/tables/26/4.246.table create mode 100644 eccodes/definitions/grib2/tables/26/4.247.table create mode 100644 eccodes/definitions/grib2/tables/26/4.3.table create mode 100644 eccodes/definitions/grib2/tables/26/4.4.table create mode 100644 eccodes/definitions/grib2/tables/26/4.5.table create mode 100644 eccodes/definitions/grib2/tables/26/4.6.table create mode 100644 eccodes/definitions/grib2/tables/26/4.7.table create mode 100644 eccodes/definitions/grib2/tables/26/4.8.table create mode 100644 eccodes/definitions/grib2/tables/26/4.9.table create mode 100644 eccodes/definitions/grib2/tables/26/4.91.table create mode 100644 eccodes/definitions/grib2/tables/26/5.0.table create mode 100644 eccodes/definitions/grib2/tables/26/5.1.table create mode 100644 eccodes/definitions/grib2/tables/26/5.2.table create mode 100644 eccodes/definitions/grib2/tables/26/5.25.table create mode 100644 eccodes/definitions/grib2/tables/26/5.26.table create mode 100644 eccodes/definitions/grib2/tables/26/5.3.table create mode 100644 eccodes/definitions/grib2/tables/26/5.4.table create mode 100644 eccodes/definitions/grib2/tables/26/5.40.table create mode 100644 eccodes/definitions/grib2/tables/26/5.5.table create mode 100644 eccodes/definitions/grib2/tables/26/5.6.table create mode 100644 eccodes/definitions/grib2/tables/26/5.7.table create mode 100644 eccodes/definitions/grib2/tables/26/6.0.table create mode 100644 eccodes/definitions/grib2/tables/26/stepType.table create mode 100644 eccodes/definitions/grib2/tables/3/0.0.table create mode 100644 eccodes/definitions/grib2/tables/3/1.0.table create mode 100644 eccodes/definitions/grib2/tables/3/1.1.table create mode 100644 eccodes/definitions/grib2/tables/3/1.2.table create mode 100644 eccodes/definitions/grib2/tables/3/1.3.table create mode 100644 eccodes/definitions/grib2/tables/3/1.4.table create mode 100644 eccodes/definitions/grib2/tables/3/3.0.table create mode 100644 eccodes/definitions/grib2/tables/3/3.1.table create mode 100644 eccodes/definitions/grib2/tables/3/3.10.table create mode 100644 eccodes/definitions/grib2/tables/3/3.11.table create mode 100644 eccodes/definitions/grib2/tables/3/3.15.table create mode 100644 eccodes/definitions/grib2/tables/3/3.2.table create mode 100644 eccodes/definitions/grib2/tables/3/3.20.table create mode 100644 eccodes/definitions/grib2/tables/3/3.21.table create mode 100644 eccodes/definitions/grib2/tables/3/3.3.table create mode 100644 eccodes/definitions/grib2/tables/3/3.4.table create mode 100644 eccodes/definitions/grib2/tables/3/3.5.table create mode 100644 eccodes/definitions/grib2/tables/3/3.6.table create mode 100644 eccodes/definitions/grib2/tables/3/3.7.table create mode 100644 eccodes/definitions/grib2/tables/3/3.8.table create mode 100644 eccodes/definitions/grib2/tables/3/3.9.table create mode 100644 eccodes/definitions/grib2/tables/3/4.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/3/4.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.10.table create mode 100644 eccodes/definitions/grib2/tables/3/4.11.table create mode 100644 eccodes/definitions/grib2/tables/3/4.12.table create mode 100644 eccodes/definitions/grib2/tables/3/4.13.table create mode 100644 eccodes/definitions/grib2/tables/3/4.14.table create mode 100644 eccodes/definitions/grib2/tables/3/4.15.table create mode 100644 eccodes/definitions/grib2/tables/3/4.151.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/3/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/3/4.201.table create mode 100644 eccodes/definitions/grib2/tables/3/4.202.table create mode 100644 eccodes/definitions/grib2/tables/3/4.203.table create mode 100644 eccodes/definitions/grib2/tables/3/4.204.table create mode 100644 eccodes/definitions/grib2/tables/3/4.205.table create mode 100644 eccodes/definitions/grib2/tables/3/4.206.table create mode 100644 eccodes/definitions/grib2/tables/3/4.207.table create mode 100644 eccodes/definitions/grib2/tables/3/4.208.table create mode 100644 eccodes/definitions/grib2/tables/3/4.209.table create mode 100644 eccodes/definitions/grib2/tables/3/4.210.table create mode 100644 eccodes/definitions/grib2/tables/3/4.211.table create mode 100644 eccodes/definitions/grib2/tables/3/4.212.table create mode 100644 eccodes/definitions/grib2/tables/3/4.213.table create mode 100644 eccodes/definitions/grib2/tables/3/4.215.table create mode 100644 eccodes/definitions/grib2/tables/3/4.216.table create mode 100644 eccodes/definitions/grib2/tables/3/4.217.table create mode 100644 eccodes/definitions/grib2/tables/3/4.220.table create mode 100644 eccodes/definitions/grib2/tables/3/4.221.table create mode 100644 eccodes/definitions/grib2/tables/3/4.230.table create mode 100644 eccodes/definitions/grib2/tables/3/4.3.table create mode 100644 eccodes/definitions/grib2/tables/3/4.4.table create mode 100644 eccodes/definitions/grib2/tables/3/4.5.table create mode 100644 eccodes/definitions/grib2/tables/3/4.6.table create mode 100644 eccodes/definitions/grib2/tables/3/4.7.table create mode 100644 eccodes/definitions/grib2/tables/3/4.8.table create mode 100644 eccodes/definitions/grib2/tables/3/4.9.table create mode 100644 eccodes/definitions/grib2/tables/3/4.91.table create mode 100644 eccodes/definitions/grib2/tables/3/5.0.table create mode 100644 eccodes/definitions/grib2/tables/3/5.1.table create mode 100644 eccodes/definitions/grib2/tables/3/5.2.table create mode 100644 eccodes/definitions/grib2/tables/3/5.3.table create mode 100644 eccodes/definitions/grib2/tables/3/5.4.table create mode 100644 eccodes/definitions/grib2/tables/3/5.40.table create mode 100644 eccodes/definitions/grib2/tables/3/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/3/5.5.table create mode 100644 eccodes/definitions/grib2/tables/3/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/3/5.6.table create mode 100644 eccodes/definitions/grib2/tables/3/5.7.table create mode 100644 eccodes/definitions/grib2/tables/3/5.8.table create mode 100644 eccodes/definitions/grib2/tables/3/5.9.table create mode 100644 eccodes/definitions/grib2/tables/3/6.0.table create mode 100644 eccodes/definitions/grib2/tables/3/stepType.table create mode 100644 eccodes/definitions/grib2/tables/4/0.0.table create mode 100644 eccodes/definitions/grib2/tables/4/1.0.table create mode 100644 eccodes/definitions/grib2/tables/4/1.1.table create mode 100644 eccodes/definitions/grib2/tables/4/1.2.table create mode 100644 eccodes/definitions/grib2/tables/4/1.3.table create mode 100644 eccodes/definitions/grib2/tables/4/1.4.table create mode 100644 eccodes/definitions/grib2/tables/4/3.0.table create mode 100644 eccodes/definitions/grib2/tables/4/3.1.table create mode 100644 eccodes/definitions/grib2/tables/4/3.10.table create mode 100644 eccodes/definitions/grib2/tables/4/3.11.table create mode 100644 eccodes/definitions/grib2/tables/4/3.15.table create mode 100644 eccodes/definitions/grib2/tables/4/3.2.table create mode 100644 eccodes/definitions/grib2/tables/4/3.20.table create mode 100644 eccodes/definitions/grib2/tables/4/3.21.table create mode 100644 eccodes/definitions/grib2/tables/4/3.3.table create mode 100644 eccodes/definitions/grib2/tables/4/3.4.table create mode 100644 eccodes/definitions/grib2/tables/4/3.5.table create mode 100644 eccodes/definitions/grib2/tables/4/3.6.table create mode 100644 eccodes/definitions/grib2/tables/4/3.7.table create mode 100644 eccodes/definitions/grib2/tables/4/3.8.table create mode 100644 eccodes/definitions/grib2/tables/4/3.9.table create mode 100644 eccodes/definitions/grib2/tables/4/4.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.10.table create mode 100644 eccodes/definitions/grib2/tables/4/4.11.table create mode 100644 eccodes/definitions/grib2/tables/4/4.12.table create mode 100644 eccodes/definitions/grib2/tables/4/4.13.table create mode 100644 eccodes/definitions/grib2/tables/4/4.14.table create mode 100644 eccodes/definitions/grib2/tables/4/4.15.table create mode 100644 eccodes/definitions/grib2/tables/4/4.151.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/4/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/4/4.201.table create mode 100644 eccodes/definitions/grib2/tables/4/4.202.table create mode 100644 eccodes/definitions/grib2/tables/4/4.203.table create mode 100644 eccodes/definitions/grib2/tables/4/4.204.table create mode 100644 eccodes/definitions/grib2/tables/4/4.205.table create mode 100644 eccodes/definitions/grib2/tables/4/4.206.table create mode 100644 eccodes/definitions/grib2/tables/4/4.207.table create mode 100644 eccodes/definitions/grib2/tables/4/4.208.table create mode 100644 eccodes/definitions/grib2/tables/4/4.209.table create mode 100644 eccodes/definitions/grib2/tables/4/4.210.table create mode 100644 eccodes/definitions/grib2/tables/4/4.211.table create mode 100644 eccodes/definitions/grib2/tables/4/4.212.table create mode 100644 eccodes/definitions/grib2/tables/4/4.213.table create mode 100644 eccodes/definitions/grib2/tables/4/4.215.table create mode 100644 eccodes/definitions/grib2/tables/4/4.216.table create mode 100644 eccodes/definitions/grib2/tables/4/4.217.table create mode 100644 eccodes/definitions/grib2/tables/4/4.220.table create mode 100644 eccodes/definitions/grib2/tables/4/4.221.table create mode 100644 eccodes/definitions/grib2/tables/4/4.230.table create mode 100644 eccodes/definitions/grib2/tables/4/4.3.table create mode 100644 eccodes/definitions/grib2/tables/4/4.4.table create mode 100644 eccodes/definitions/grib2/tables/4/4.5.table create mode 100644 eccodes/definitions/grib2/tables/4/4.6.table create mode 100644 eccodes/definitions/grib2/tables/4/4.7.table create mode 100644 eccodes/definitions/grib2/tables/4/4.8.table create mode 100644 eccodes/definitions/grib2/tables/4/4.9.table create mode 100644 eccodes/definitions/grib2/tables/4/4.91.table create mode 100644 eccodes/definitions/grib2/tables/4/5.0.table create mode 100644 eccodes/definitions/grib2/tables/4/5.1.table create mode 100644 eccodes/definitions/grib2/tables/4/5.2.table create mode 100644 eccodes/definitions/grib2/tables/4/5.3.table create mode 100644 eccodes/definitions/grib2/tables/4/5.4.table create mode 100644 eccodes/definitions/grib2/tables/4/5.40.table create mode 100644 eccodes/definitions/grib2/tables/4/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/4/5.5.table create mode 100644 eccodes/definitions/grib2/tables/4/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/4/5.6.table create mode 100644 eccodes/definitions/grib2/tables/4/5.7.table create mode 100644 eccodes/definitions/grib2/tables/4/5.8.table create mode 100644 eccodes/definitions/grib2/tables/4/5.9.table create mode 100644 eccodes/definitions/grib2/tables/4/6.0.table create mode 100644 eccodes/definitions/grib2/tables/4/stepType.table create mode 100644 eccodes/definitions/grib2/tables/5/0.0.table create mode 100644 eccodes/definitions/grib2/tables/5/1.0.table create mode 100644 eccodes/definitions/grib2/tables/5/1.1.table create mode 100644 eccodes/definitions/grib2/tables/5/1.2.table create mode 100644 eccodes/definitions/grib2/tables/5/1.3.table create mode 100644 eccodes/definitions/grib2/tables/5/1.4.table create mode 100644 eccodes/definitions/grib2/tables/5/3.0.table create mode 100644 eccodes/definitions/grib2/tables/5/3.1.table create mode 100644 eccodes/definitions/grib2/tables/5/3.10.table create mode 100644 eccodes/definitions/grib2/tables/5/3.11.table create mode 100644 eccodes/definitions/grib2/tables/5/3.15.table create mode 100644 eccodes/definitions/grib2/tables/5/3.2.table create mode 100644 eccodes/definitions/grib2/tables/5/3.20.table create mode 100644 eccodes/definitions/grib2/tables/5/3.21.table create mode 100644 eccodes/definitions/grib2/tables/5/3.3.table create mode 100644 eccodes/definitions/grib2/tables/5/3.4.table create mode 100644 eccodes/definitions/grib2/tables/5/3.5.table create mode 100644 eccodes/definitions/grib2/tables/5/3.6.table create mode 100644 eccodes/definitions/grib2/tables/5/3.7.table create mode 100644 eccodes/definitions/grib2/tables/5/3.8.table create mode 100644 eccodes/definitions/grib2/tables/5/3.9.table create mode 100644 eccodes/definitions/grib2/tables/5/4.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.10.table create mode 100644 eccodes/definitions/grib2/tables/5/4.11.table create mode 100644 eccodes/definitions/grib2/tables/5/4.12.table create mode 100644 eccodes/definitions/grib2/tables/5/4.13.table create mode 100644 eccodes/definitions/grib2/tables/5/4.14.table create mode 100644 eccodes/definitions/grib2/tables/5/4.15.table create mode 100644 eccodes/definitions/grib2/tables/5/4.151.table create mode 100644 eccodes/definitions/grib2/tables/5/4.192.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/5/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/5/4.201.table create mode 100644 eccodes/definitions/grib2/tables/5/4.202.table create mode 100644 eccodes/definitions/grib2/tables/5/4.203.table create mode 100644 eccodes/definitions/grib2/tables/5/4.204.table create mode 100644 eccodes/definitions/grib2/tables/5/4.205.table create mode 100644 eccodes/definitions/grib2/tables/5/4.206.table create mode 100644 eccodes/definitions/grib2/tables/5/4.207.table create mode 100644 eccodes/definitions/grib2/tables/5/4.208.table create mode 100644 eccodes/definitions/grib2/tables/5/4.209.table create mode 100644 eccodes/definitions/grib2/tables/5/4.210.table create mode 100644 eccodes/definitions/grib2/tables/5/4.211.table create mode 100644 eccodes/definitions/grib2/tables/5/4.212.table create mode 100644 eccodes/definitions/grib2/tables/5/4.213.table create mode 100644 eccodes/definitions/grib2/tables/5/4.215.table create mode 100644 eccodes/definitions/grib2/tables/5/4.216.table create mode 100644 eccodes/definitions/grib2/tables/5/4.217.table create mode 100644 eccodes/definitions/grib2/tables/5/4.218.table create mode 100644 eccodes/definitions/grib2/tables/5/4.219.table create mode 100644 eccodes/definitions/grib2/tables/5/4.220.table create mode 100644 eccodes/definitions/grib2/tables/5/4.221.table create mode 100644 eccodes/definitions/grib2/tables/5/4.222.table create mode 100644 eccodes/definitions/grib2/tables/5/4.223.table create mode 100644 eccodes/definitions/grib2/tables/5/4.230.table create mode 100644 eccodes/definitions/grib2/tables/5/4.3.table create mode 100644 eccodes/definitions/grib2/tables/5/4.4.table create mode 100644 eccodes/definitions/grib2/tables/5/4.5.table create mode 100644 eccodes/definitions/grib2/tables/5/4.6.table create mode 100644 eccodes/definitions/grib2/tables/5/4.7.table create mode 100644 eccodes/definitions/grib2/tables/5/4.8.table create mode 100644 eccodes/definitions/grib2/tables/5/4.9.table create mode 100644 eccodes/definitions/grib2/tables/5/4.91.table create mode 100644 eccodes/definitions/grib2/tables/5/5.0.table create mode 100644 eccodes/definitions/grib2/tables/5/5.1.table create mode 100644 eccodes/definitions/grib2/tables/5/5.2.table create mode 100644 eccodes/definitions/grib2/tables/5/5.3.table create mode 100644 eccodes/definitions/grib2/tables/5/5.4.table create mode 100644 eccodes/definitions/grib2/tables/5/5.40.table create mode 100644 eccodes/definitions/grib2/tables/5/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/5/5.5.table create mode 100644 eccodes/definitions/grib2/tables/5/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/5/5.6.table create mode 100644 eccodes/definitions/grib2/tables/5/5.7.table create mode 100644 eccodes/definitions/grib2/tables/5/5.8.table create mode 100644 eccodes/definitions/grib2/tables/5/5.9.table create mode 100644 eccodes/definitions/grib2/tables/5/6.0.table create mode 100644 eccodes/definitions/grib2/tables/5/stepType.table create mode 100644 eccodes/definitions/grib2/tables/6/0.0.table create mode 100644 eccodes/definitions/grib2/tables/6/1.0.table create mode 100644 eccodes/definitions/grib2/tables/6/1.1.table create mode 100644 eccodes/definitions/grib2/tables/6/1.2.table create mode 100644 eccodes/definitions/grib2/tables/6/1.3.table create mode 100644 eccodes/definitions/grib2/tables/6/1.4.table create mode 100644 eccodes/definitions/grib2/tables/6/3.0.table create mode 100644 eccodes/definitions/grib2/tables/6/3.1.table create mode 100644 eccodes/definitions/grib2/tables/6/3.10.table create mode 100644 eccodes/definitions/grib2/tables/6/3.11.table create mode 100644 eccodes/definitions/grib2/tables/6/3.15.table create mode 100644 eccodes/definitions/grib2/tables/6/3.2.table create mode 100644 eccodes/definitions/grib2/tables/6/3.20.table create mode 100644 eccodes/definitions/grib2/tables/6/3.21.table create mode 100644 eccodes/definitions/grib2/tables/6/3.3.table create mode 100644 eccodes/definitions/grib2/tables/6/3.4.table create mode 100644 eccodes/definitions/grib2/tables/6/3.5.table create mode 100644 eccodes/definitions/grib2/tables/6/3.6.table create mode 100644 eccodes/definitions/grib2/tables/6/3.7.table create mode 100644 eccodes/definitions/grib2/tables/6/3.8.table create mode 100644 eccodes/definitions/grib2/tables/6/3.9.table create mode 100644 eccodes/definitions/grib2/tables/6/4.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.10.table create mode 100644 eccodes/definitions/grib2/tables/6/4.11.table create mode 100644 eccodes/definitions/grib2/tables/6/4.12.table create mode 100644 eccodes/definitions/grib2/tables/6/4.13.table create mode 100644 eccodes/definitions/grib2/tables/6/4.14.table create mode 100644 eccodes/definitions/grib2/tables/6/4.15.table create mode 100644 eccodes/definitions/grib2/tables/6/4.151.table create mode 100644 eccodes/definitions/grib2/tables/6/4.192.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/6/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/6/4.201.table create mode 100644 eccodes/definitions/grib2/tables/6/4.202.table create mode 100644 eccodes/definitions/grib2/tables/6/4.203.table create mode 100644 eccodes/definitions/grib2/tables/6/4.204.table create mode 100644 eccodes/definitions/grib2/tables/6/4.205.table create mode 100644 eccodes/definitions/grib2/tables/6/4.206.table create mode 100644 eccodes/definitions/grib2/tables/6/4.207.table create mode 100644 eccodes/definitions/grib2/tables/6/4.208.table create mode 100644 eccodes/definitions/grib2/tables/6/4.209.table create mode 100644 eccodes/definitions/grib2/tables/6/4.210.table create mode 100644 eccodes/definitions/grib2/tables/6/4.211.table create mode 100644 eccodes/definitions/grib2/tables/6/4.212.table create mode 100644 eccodes/definitions/grib2/tables/6/4.213.table create mode 100644 eccodes/definitions/grib2/tables/6/4.215.table create mode 100644 eccodes/definitions/grib2/tables/6/4.216.table create mode 100644 eccodes/definitions/grib2/tables/6/4.217.table create mode 100644 eccodes/definitions/grib2/tables/6/4.218.table create mode 100644 eccodes/definitions/grib2/tables/6/4.219.table create mode 100644 eccodes/definitions/grib2/tables/6/4.220.table create mode 100644 eccodes/definitions/grib2/tables/6/4.221.table create mode 100644 eccodes/definitions/grib2/tables/6/4.222.table create mode 100644 eccodes/definitions/grib2/tables/6/4.223.table create mode 100644 eccodes/definitions/grib2/tables/6/4.230.table create mode 100644 eccodes/definitions/grib2/tables/6/4.3.table create mode 100644 eccodes/definitions/grib2/tables/6/4.4.table create mode 100644 eccodes/definitions/grib2/tables/6/4.5.table create mode 100644 eccodes/definitions/grib2/tables/6/4.6.table create mode 100644 eccodes/definitions/grib2/tables/6/4.7.table create mode 100644 eccodes/definitions/grib2/tables/6/4.8.table create mode 100644 eccodes/definitions/grib2/tables/6/4.9.table create mode 100644 eccodes/definitions/grib2/tables/6/4.91.table create mode 100644 eccodes/definitions/grib2/tables/6/5.0.table create mode 100644 eccodes/definitions/grib2/tables/6/5.1.table create mode 100644 eccodes/definitions/grib2/tables/6/5.2.table create mode 100644 eccodes/definitions/grib2/tables/6/5.3.table create mode 100644 eccodes/definitions/grib2/tables/6/5.4.table create mode 100644 eccodes/definitions/grib2/tables/6/5.40.table create mode 100644 eccodes/definitions/grib2/tables/6/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/6/5.5.table create mode 100644 eccodes/definitions/grib2/tables/6/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/6/5.6.table create mode 100644 eccodes/definitions/grib2/tables/6/5.7.table create mode 100644 eccodes/definitions/grib2/tables/6/5.8.table create mode 100644 eccodes/definitions/grib2/tables/6/5.9.table create mode 100644 eccodes/definitions/grib2/tables/6/6.0.table create mode 100644 eccodes/definitions/grib2/tables/6/stepType.table create mode 100644 eccodes/definitions/grib2/tables/7/0.0.table create mode 100644 eccodes/definitions/grib2/tables/7/1.0.table create mode 100644 eccodes/definitions/grib2/tables/7/1.1.table create mode 100644 eccodes/definitions/grib2/tables/7/1.2.table create mode 100644 eccodes/definitions/grib2/tables/7/1.3.table create mode 100644 eccodes/definitions/grib2/tables/7/1.4.table create mode 100644 eccodes/definitions/grib2/tables/7/3.0.table create mode 100644 eccodes/definitions/grib2/tables/7/3.1.table create mode 100644 eccodes/definitions/grib2/tables/7/3.10.table create mode 100644 eccodes/definitions/grib2/tables/7/3.11.table create mode 100644 eccodes/definitions/grib2/tables/7/3.15.table create mode 100644 eccodes/definitions/grib2/tables/7/3.2.table create mode 100644 eccodes/definitions/grib2/tables/7/3.20.table create mode 100644 eccodes/definitions/grib2/tables/7/3.21.table create mode 100644 eccodes/definitions/grib2/tables/7/3.3.table create mode 100644 eccodes/definitions/grib2/tables/7/3.4.table create mode 100644 eccodes/definitions/grib2/tables/7/3.5.table create mode 100644 eccodes/definitions/grib2/tables/7/3.6.table create mode 100644 eccodes/definitions/grib2/tables/7/3.7.table create mode 100644 eccodes/definitions/grib2/tables/7/3.8.table create mode 100644 eccodes/definitions/grib2/tables/7/3.9.table create mode 100644 eccodes/definitions/grib2/tables/7/4.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.10.table create mode 100644 eccodes/definitions/grib2/tables/7/4.11.table create mode 100644 eccodes/definitions/grib2/tables/7/4.12.table create mode 100644 eccodes/definitions/grib2/tables/7/4.13.table create mode 100644 eccodes/definitions/grib2/tables/7/4.14.table create mode 100644 eccodes/definitions/grib2/tables/7/4.15.table create mode 100644 eccodes/definitions/grib2/tables/7/4.151.table create mode 100644 eccodes/definitions/grib2/tables/7/4.192.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/7/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/7/4.201.table create mode 100644 eccodes/definitions/grib2/tables/7/4.202.table create mode 100644 eccodes/definitions/grib2/tables/7/4.203.table create mode 100644 eccodes/definitions/grib2/tables/7/4.204.table create mode 100644 eccodes/definitions/grib2/tables/7/4.205.table create mode 100644 eccodes/definitions/grib2/tables/7/4.206.table create mode 100644 eccodes/definitions/grib2/tables/7/4.207.table create mode 100644 eccodes/definitions/grib2/tables/7/4.208.table create mode 100644 eccodes/definitions/grib2/tables/7/4.209.table create mode 100644 eccodes/definitions/grib2/tables/7/4.210.table create mode 100644 eccodes/definitions/grib2/tables/7/4.211.table create mode 100644 eccodes/definitions/grib2/tables/7/4.212.table create mode 100644 eccodes/definitions/grib2/tables/7/4.213.table create mode 100644 eccodes/definitions/grib2/tables/7/4.215.table create mode 100644 eccodes/definitions/grib2/tables/7/4.216.table create mode 100644 eccodes/definitions/grib2/tables/7/4.217.table create mode 100644 eccodes/definitions/grib2/tables/7/4.218.table create mode 100644 eccodes/definitions/grib2/tables/7/4.219.table create mode 100644 eccodes/definitions/grib2/tables/7/4.220.table create mode 100644 eccodes/definitions/grib2/tables/7/4.221.table create mode 100644 eccodes/definitions/grib2/tables/7/4.222.table create mode 100644 eccodes/definitions/grib2/tables/7/4.223.table create mode 100644 eccodes/definitions/grib2/tables/7/4.224.table create mode 100644 eccodes/definitions/grib2/tables/7/4.230.table create mode 100644 eccodes/definitions/grib2/tables/7/4.3.table create mode 100644 eccodes/definitions/grib2/tables/7/4.4.table create mode 100644 eccodes/definitions/grib2/tables/7/4.5.table create mode 100644 eccodes/definitions/grib2/tables/7/4.6.table create mode 100644 eccodes/definitions/grib2/tables/7/4.7.table create mode 100644 eccodes/definitions/grib2/tables/7/4.8.table create mode 100644 eccodes/definitions/grib2/tables/7/4.9.table create mode 100644 eccodes/definitions/grib2/tables/7/4.91.table create mode 100644 eccodes/definitions/grib2/tables/7/5.0.table create mode 100644 eccodes/definitions/grib2/tables/7/5.1.table create mode 100644 eccodes/definitions/grib2/tables/7/5.2.table create mode 100644 eccodes/definitions/grib2/tables/7/5.3.table create mode 100644 eccodes/definitions/grib2/tables/7/5.4.table create mode 100644 eccodes/definitions/grib2/tables/7/5.40.table create mode 100644 eccodes/definitions/grib2/tables/7/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/7/5.5.table create mode 100644 eccodes/definitions/grib2/tables/7/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/7/5.6.table create mode 100644 eccodes/definitions/grib2/tables/7/5.7.table create mode 100644 eccodes/definitions/grib2/tables/7/5.8.table create mode 100644 eccodes/definitions/grib2/tables/7/5.9.table create mode 100644 eccodes/definitions/grib2/tables/7/6.0.table create mode 100644 eccodes/definitions/grib2/tables/7/stepType.table create mode 100644 eccodes/definitions/grib2/tables/8/0.0.table create mode 100644 eccodes/definitions/grib2/tables/8/1.0.table create mode 100644 eccodes/definitions/grib2/tables/8/1.1.table create mode 100644 eccodes/definitions/grib2/tables/8/1.2.table create mode 100644 eccodes/definitions/grib2/tables/8/1.3.table create mode 100644 eccodes/definitions/grib2/tables/8/1.4.table create mode 100644 eccodes/definitions/grib2/tables/8/3.0.table create mode 100644 eccodes/definitions/grib2/tables/8/3.1.table create mode 100644 eccodes/definitions/grib2/tables/8/3.10.table create mode 100644 eccodes/definitions/grib2/tables/8/3.11.table create mode 100644 eccodes/definitions/grib2/tables/8/3.15.table create mode 100644 eccodes/definitions/grib2/tables/8/3.2.table create mode 100644 eccodes/definitions/grib2/tables/8/3.20.table create mode 100644 eccodes/definitions/grib2/tables/8/3.21.table create mode 100644 eccodes/definitions/grib2/tables/8/3.3.table create mode 100644 eccodes/definitions/grib2/tables/8/3.4.table create mode 100644 eccodes/definitions/grib2/tables/8/3.5.table create mode 100644 eccodes/definitions/grib2/tables/8/3.6.table create mode 100644 eccodes/definitions/grib2/tables/8/3.7.table create mode 100644 eccodes/definitions/grib2/tables/8/3.8.table create mode 100644 eccodes/definitions/grib2/tables/8/3.9.table create mode 100644 eccodes/definitions/grib2/tables/8/4.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.10.table create mode 100644 eccodes/definitions/grib2/tables/8/4.11.table create mode 100644 eccodes/definitions/grib2/tables/8/4.12.table create mode 100644 eccodes/definitions/grib2/tables/8/4.13.table create mode 100644 eccodes/definitions/grib2/tables/8/4.14.table create mode 100644 eccodes/definitions/grib2/tables/8/4.15.table create mode 100644 eccodes/definitions/grib2/tables/8/4.151.table create mode 100644 eccodes/definitions/grib2/tables/8/4.192.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/8/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/8/4.201.table create mode 100644 eccodes/definitions/grib2/tables/8/4.202.table create mode 100644 eccodes/definitions/grib2/tables/8/4.203.table create mode 100644 eccodes/definitions/grib2/tables/8/4.204.table create mode 100644 eccodes/definitions/grib2/tables/8/4.205.table create mode 100644 eccodes/definitions/grib2/tables/8/4.206.table create mode 100644 eccodes/definitions/grib2/tables/8/4.207.table create mode 100644 eccodes/definitions/grib2/tables/8/4.208.table create mode 100644 eccodes/definitions/grib2/tables/8/4.209.table create mode 100644 eccodes/definitions/grib2/tables/8/4.210.table create mode 100644 eccodes/definitions/grib2/tables/8/4.211.table create mode 100644 eccodes/definitions/grib2/tables/8/4.212.table create mode 100644 eccodes/definitions/grib2/tables/8/4.213.table create mode 100644 eccodes/definitions/grib2/tables/8/4.215.table create mode 100644 eccodes/definitions/grib2/tables/8/4.216.table create mode 100644 eccodes/definitions/grib2/tables/8/4.217.table create mode 100644 eccodes/definitions/grib2/tables/8/4.218.table create mode 100644 eccodes/definitions/grib2/tables/8/4.219.table create mode 100644 eccodes/definitions/grib2/tables/8/4.220.table create mode 100644 eccodes/definitions/grib2/tables/8/4.221.table create mode 100644 eccodes/definitions/grib2/tables/8/4.222.table create mode 100644 eccodes/definitions/grib2/tables/8/4.223.table create mode 100644 eccodes/definitions/grib2/tables/8/4.224.table create mode 100644 eccodes/definitions/grib2/tables/8/4.230.table create mode 100644 eccodes/definitions/grib2/tables/8/4.233.table create mode 100644 eccodes/definitions/grib2/tables/8/4.3.table create mode 100644 eccodes/definitions/grib2/tables/8/4.4.table create mode 100644 eccodes/definitions/grib2/tables/8/4.5.table create mode 100644 eccodes/definitions/grib2/tables/8/4.6.table create mode 100644 eccodes/definitions/grib2/tables/8/4.7.table create mode 100644 eccodes/definitions/grib2/tables/8/4.8.table create mode 100644 eccodes/definitions/grib2/tables/8/4.9.table create mode 100644 eccodes/definitions/grib2/tables/8/4.91.table create mode 100644 eccodes/definitions/grib2/tables/8/5.0.table create mode 100644 eccodes/definitions/grib2/tables/8/5.1.table create mode 100644 eccodes/definitions/grib2/tables/8/5.2.table create mode 100644 eccodes/definitions/grib2/tables/8/5.3.table create mode 100644 eccodes/definitions/grib2/tables/8/5.4.table create mode 100644 eccodes/definitions/grib2/tables/8/5.40.table create mode 100644 eccodes/definitions/grib2/tables/8/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/8/5.5.table create mode 100644 eccodes/definitions/grib2/tables/8/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/8/5.6.table create mode 100644 eccodes/definitions/grib2/tables/8/5.7.table create mode 100644 eccodes/definitions/grib2/tables/8/5.8.table create mode 100644 eccodes/definitions/grib2/tables/8/5.9.table create mode 100644 eccodes/definitions/grib2/tables/8/6.0.table create mode 100644 eccodes/definitions/grib2/tables/8/stepType.table create mode 100644 eccodes/definitions/grib2/tables/9/0.0.table create mode 100644 eccodes/definitions/grib2/tables/9/1.0.table create mode 100644 eccodes/definitions/grib2/tables/9/1.1.table create mode 100644 eccodes/definitions/grib2/tables/9/1.2.table create mode 100644 eccodes/definitions/grib2/tables/9/1.3.table create mode 100644 eccodes/definitions/grib2/tables/9/1.4.table create mode 100644 eccodes/definitions/grib2/tables/9/3.0.table create mode 100644 eccodes/definitions/grib2/tables/9/3.1.table create mode 100644 eccodes/definitions/grib2/tables/9/3.10.table create mode 100644 eccodes/definitions/grib2/tables/9/3.11.table create mode 100644 eccodes/definitions/grib2/tables/9/3.15.table create mode 100644 eccodes/definitions/grib2/tables/9/3.2.table create mode 100644 eccodes/definitions/grib2/tables/9/3.20.table create mode 100644 eccodes/definitions/grib2/tables/9/3.21.table create mode 100644 eccodes/definitions/grib2/tables/9/3.3.table create mode 100644 eccodes/definitions/grib2/tables/9/3.4.table create mode 100644 eccodes/definitions/grib2/tables/9/3.5.table create mode 100644 eccodes/definitions/grib2/tables/9/3.6.table create mode 100644 eccodes/definitions/grib2/tables/9/3.7.table create mode 100644 eccodes/definitions/grib2/tables/9/3.8.table create mode 100644 eccodes/definitions/grib2/tables/9/3.9.table create mode 100644 eccodes/definitions/grib2/tables/9/4.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.10.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.192.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.2.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.10.table create mode 100644 eccodes/definitions/grib2/tables/9/4.11.table create mode 100644 eccodes/definitions/grib2/tables/9/4.12.table create mode 100644 eccodes/definitions/grib2/tables/9/4.13.table create mode 100644 eccodes/definitions/grib2/tables/9/4.14.table create mode 100644 eccodes/definitions/grib2/tables/9/4.15.table create mode 100644 eccodes/definitions/grib2/tables/9/4.151.table create mode 100644 eccodes/definitions/grib2/tables/9/4.192.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.190.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.1.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.1.2.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.191.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.2.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.10.4.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.10.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.100.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.101.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.102.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.103.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.104.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.105.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.106.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.107.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.108.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.109.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.11.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.110.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.111.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.112.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.113.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.114.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.115.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.116.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.117.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.118.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.119.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.12.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.120.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.121.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.122.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.123.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.124.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.125.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.126.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.127.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.128.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.129.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.13.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.130.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.131.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.132.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.133.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.134.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.135.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.136.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.137.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.138.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.139.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.14.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.140.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.141.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.142.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.143.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.144.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.145.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.146.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.147.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.148.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.149.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.15.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.150.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.151.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.152.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.153.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.154.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.155.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.156.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.157.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.158.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.159.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.16.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.160.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.161.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.162.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.163.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.164.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.165.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.166.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.167.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.168.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.169.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.17.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.170.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.171.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.172.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.173.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.174.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.175.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.176.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.177.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.178.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.179.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.18.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.180.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.181.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.182.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.183.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.184.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.185.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.186.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.187.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.188.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.189.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.19.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.190.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.191.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.192.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.193.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.194.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.195.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.196.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.197.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.198.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.199.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.2.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.20.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.200.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.201.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.202.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.203.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.204.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.205.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.206.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.207.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.208.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.209.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.21.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.210.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.211.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.212.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.213.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.214.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.215.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.216.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.217.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.218.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.219.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.22.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.220.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.221.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.222.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.223.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.224.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.225.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.226.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.227.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.228.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.229.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.23.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.230.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.231.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.232.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.233.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.234.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.235.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.236.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.237.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.238.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.239.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.24.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.240.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.241.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.242.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.243.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.244.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.245.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.246.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.247.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.248.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.249.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.25.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.250.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.251.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.252.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.253.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.254.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.255.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.26.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.27.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.28.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.29.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.30.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.31.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.32.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.33.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.34.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.35.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.36.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.37.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.38.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.39.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.4.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.40.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.41.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.42.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.43.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.44.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.45.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.46.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.47.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.48.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.49.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.5.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.50.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.51.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.52.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.53.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.54.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.55.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.56.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.57.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.58.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.59.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.6.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.60.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.61.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.62.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.63.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.64.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.65.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.66.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.67.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.68.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.69.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.7.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.70.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.71.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.72.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.73.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.74.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.75.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.76.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.77.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.78.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.79.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.8.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.80.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.81.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.82.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.83.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.84.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.85.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.86.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.87.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.88.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.89.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.9.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.90.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.91.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.92.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.93.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.94.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.95.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.96.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.97.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.98.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.192.99.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.2.4.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/9/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/9/4.201.table create mode 100644 eccodes/definitions/grib2/tables/9/4.202.table create mode 100644 eccodes/definitions/grib2/tables/9/4.203.table create mode 100644 eccodes/definitions/grib2/tables/9/4.204.table create mode 100644 eccodes/definitions/grib2/tables/9/4.205.table create mode 100644 eccodes/definitions/grib2/tables/9/4.206.table create mode 100644 eccodes/definitions/grib2/tables/9/4.207.table create mode 100644 eccodes/definitions/grib2/tables/9/4.208.table create mode 100644 eccodes/definitions/grib2/tables/9/4.209.table create mode 100644 eccodes/definitions/grib2/tables/9/4.210.table create mode 100644 eccodes/definitions/grib2/tables/9/4.211.table create mode 100644 eccodes/definitions/grib2/tables/9/4.212.table create mode 100644 eccodes/definitions/grib2/tables/9/4.213.table create mode 100644 eccodes/definitions/grib2/tables/9/4.215.table create mode 100644 eccodes/definitions/grib2/tables/9/4.216.table create mode 100644 eccodes/definitions/grib2/tables/9/4.217.table create mode 100644 eccodes/definitions/grib2/tables/9/4.218.table create mode 100644 eccodes/definitions/grib2/tables/9/4.219.table create mode 100644 eccodes/definitions/grib2/tables/9/4.220.table create mode 100644 eccodes/definitions/grib2/tables/9/4.221.table create mode 100644 eccodes/definitions/grib2/tables/9/4.222.table create mode 100644 eccodes/definitions/grib2/tables/9/4.223.table create mode 100644 eccodes/definitions/grib2/tables/9/4.224.table create mode 100644 eccodes/definitions/grib2/tables/9/4.227.table create mode 100644 eccodes/definitions/grib2/tables/9/4.230.table create mode 100644 eccodes/definitions/grib2/tables/9/4.233.table create mode 100644 eccodes/definitions/grib2/tables/9/4.234.table create mode 100644 eccodes/definitions/grib2/tables/9/4.235.table create mode 100644 eccodes/definitions/grib2/tables/9/4.3.table create mode 100644 eccodes/definitions/grib2/tables/9/4.4.table create mode 100644 eccodes/definitions/grib2/tables/9/4.5.table create mode 100644 eccodes/definitions/grib2/tables/9/4.6.table create mode 100644 eccodes/definitions/grib2/tables/9/4.7.table create mode 100644 eccodes/definitions/grib2/tables/9/4.8.table create mode 100644 eccodes/definitions/grib2/tables/9/4.9.table create mode 100644 eccodes/definitions/grib2/tables/9/4.91.table create mode 100644 eccodes/definitions/grib2/tables/9/5.0.table create mode 100644 eccodes/definitions/grib2/tables/9/5.1.table create mode 100644 eccodes/definitions/grib2/tables/9/5.2.table create mode 100644 eccodes/definitions/grib2/tables/9/5.3.table create mode 100644 eccodes/definitions/grib2/tables/9/5.4.table create mode 100644 eccodes/definitions/grib2/tables/9/5.40.table create mode 100644 eccodes/definitions/grib2/tables/9/5.40000.table create mode 100644 eccodes/definitions/grib2/tables/9/5.5.table create mode 100644 eccodes/definitions/grib2/tables/9/5.50002.table create mode 100644 eccodes/definitions/grib2/tables/9/5.6.table create mode 100644 eccodes/definitions/grib2/tables/9/5.7.table create mode 100644 eccodes/definitions/grib2/tables/9/5.8.table create mode 100644 eccodes/definitions/grib2/tables/9/5.9.table create mode 100644 eccodes/definitions/grib2/tables/9/6.0.table create mode 100644 eccodes/definitions/grib2/tables/9/stepType.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/1.1.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table create mode 100644 eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1.1.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/1.4.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.11.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.191.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.192.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.193.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.194.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.195.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.3.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.5.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.6.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.7.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/4.9.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table create mode 100644 eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table create mode 100644 eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table create mode 100644 eccodes/definitions/grib2/template.1.0.def create mode 100644 eccodes/definitions/grib2/template.1.1.def create mode 100644 eccodes/definitions/grib2/template.1.2.def create mode 100644 eccodes/definitions/grib2/template.1.calendar.def create mode 100644 eccodes/definitions/grib2/template.1.offset.def create mode 100644 eccodes/definitions/grib2/template.3.0.def create mode 100644 eccodes/definitions/grib2/template.3.1.def create mode 100644 eccodes/definitions/grib2/template.3.10.def create mode 100644 eccodes/definitions/grib2/template.3.100.def create mode 100644 eccodes/definitions/grib2/template.3.1000.def create mode 100644 eccodes/definitions/grib2/template.3.101.def create mode 100644 eccodes/definitions/grib2/template.3.110.def create mode 100644 eccodes/definitions/grib2/template.3.1100.def create mode 100644 eccodes/definitions/grib2/template.3.12.def create mode 100644 eccodes/definitions/grib2/template.3.120.def create mode 100644 eccodes/definitions/grib2/template.3.1200.def create mode 100644 eccodes/definitions/grib2/template.3.13.def create mode 100644 eccodes/definitions/grib2/template.3.130.def create mode 100644 eccodes/definitions/grib2/template.3.140.def create mode 100644 eccodes/definitions/grib2/template.3.2.def create mode 100644 eccodes/definitions/grib2/template.3.20.def create mode 100644 eccodes/definitions/grib2/template.3.23.def create mode 100644 eccodes/definitions/grib2/template.3.3.def create mode 100644 eccodes/definitions/grib2/template.3.30.def create mode 100644 eccodes/definitions/grib2/template.3.31.def create mode 100644 eccodes/definitions/grib2/template.3.32769.def create mode 100644 eccodes/definitions/grib2/template.3.33.def create mode 100644 eccodes/definitions/grib2/template.3.4.def create mode 100644 eccodes/definitions/grib2/template.3.40.def create mode 100644 eccodes/definitions/grib2/template.3.41.def create mode 100644 eccodes/definitions/grib2/template.3.42.def create mode 100644 eccodes/definitions/grib2/template.3.43.def create mode 100644 eccodes/definitions/grib2/template.3.5.def create mode 100644 eccodes/definitions/grib2/template.3.50.def create mode 100644 eccodes/definitions/grib2/template.3.51.def create mode 100644 eccodes/definitions/grib2/template.3.52.def create mode 100644 eccodes/definitions/grib2/template.3.53.def create mode 100644 eccodes/definitions/grib2/template.3.61.def create mode 100644 eccodes/definitions/grib2/template.3.62.def create mode 100644 eccodes/definitions/grib2/template.3.63.def create mode 100644 eccodes/definitions/grib2/template.3.90.def create mode 100644 eccodes/definitions/grib2/template.3.bf.def create mode 100755 eccodes/definitions/grib2/template.3.gaussian.def create mode 100644 eccodes/definitions/grib2/template.3.grid.def create mode 100644 eccodes/definitions/grib2/template.3.lam.def create mode 100755 eccodes/definitions/grib2/template.3.latlon.def create mode 100755 eccodes/definitions/grib2/template.3.latlon_vares.def create mode 100644 eccodes/definitions/grib2/template.3.resolution_flags.def create mode 100755 eccodes/definitions/grib2/template.3.rotation.def create mode 100644 eccodes/definitions/grib2/template.3.scanning_mode.def create mode 100755 eccodes/definitions/grib2/template.3.shape_of_the_earth.def create mode 100755 eccodes/definitions/grib2/template.3.spherical_harmonics.def create mode 100755 eccodes/definitions/grib2/template.3.stretching.def create mode 100644 eccodes/definitions/grib2/template.4.0.def create mode 100644 eccodes/definitions/grib2/template.4.1.def create mode 100644 eccodes/definitions/grib2/template.4.10.def create mode 100644 eccodes/definitions/grib2/template.4.1000.def create mode 100644 eccodes/definitions/grib2/template.4.1001.def create mode 100644 eccodes/definitions/grib2/template.4.1002.def create mode 100644 eccodes/definitions/grib2/template.4.11.def create mode 100644 eccodes/definitions/grib2/template.4.1100.def create mode 100644 eccodes/definitions/grib2/template.4.1101.def create mode 100644 eccodes/definitions/grib2/template.4.12.def create mode 100644 eccodes/definitions/grib2/template.4.13.def create mode 100644 eccodes/definitions/grib2/template.4.14.def create mode 100644 eccodes/definitions/grib2/template.4.15.def create mode 100644 eccodes/definitions/grib2/template.4.2.def create mode 100644 eccodes/definitions/grib2/template.4.20.def create mode 100644 eccodes/definitions/grib2/template.4.2000.def create mode 100644 eccodes/definitions/grib2/template.4.254.def create mode 100644 eccodes/definitions/grib2/template.4.3.def create mode 100644 eccodes/definitions/grib2/template.4.30.def create mode 100644 eccodes/definitions/grib2/template.4.31.def create mode 100644 eccodes/definitions/grib2/template.4.311.def create mode 100644 eccodes/definitions/grib2/template.4.32.def create mode 100644 eccodes/definitions/grib2/template.4.33.def create mode 100644 eccodes/definitions/grib2/template.4.34.def create mode 100644 eccodes/definitions/grib2/template.4.35.def create mode 100644 eccodes/definitions/grib2/template.4.4.def create mode 100644 eccodes/definitions/grib2/template.4.40.def create mode 100644 eccodes/definitions/grib2/template.4.40033.def create mode 100644 eccodes/definitions/grib2/template.4.40034.def create mode 100644 eccodes/definitions/grib2/template.4.41.def create mode 100644 eccodes/definitions/grib2/template.4.42.def create mode 100644 eccodes/definitions/grib2/template.4.43.def create mode 100644 eccodes/definitions/grib2/template.4.44.def create mode 100644 eccodes/definitions/grib2/template.4.45.def create mode 100644 eccodes/definitions/grib2/template.4.46.def create mode 100644 eccodes/definitions/grib2/template.4.47.def create mode 100644 eccodes/definitions/grib2/template.4.48.def create mode 100644 eccodes/definitions/grib2/template.4.49.def create mode 100644 eccodes/definitions/grib2/template.4.5.def create mode 100644 eccodes/definitions/grib2/template.4.51.def create mode 100644 eccodes/definitions/grib2/template.4.53.def create mode 100644 eccodes/definitions/grib2/template.4.54.def create mode 100644 eccodes/definitions/grib2/template.4.55.def create mode 100644 eccodes/definitions/grib2/template.4.56.def create mode 100644 eccodes/definitions/grib2/template.4.57.def create mode 100644 eccodes/definitions/grib2/template.4.58.def create mode 100644 eccodes/definitions/grib2/template.4.59.def create mode 100644 eccodes/definitions/grib2/template.4.6.def create mode 100644 eccodes/definitions/grib2/template.4.60.def create mode 100644 eccodes/definitions/grib2/template.4.61.def create mode 100644 eccodes/definitions/grib2/template.4.67.def create mode 100644 eccodes/definitions/grib2/template.4.68.def create mode 100644 eccodes/definitions/grib2/template.4.7.def create mode 100644 eccodes/definitions/grib2/template.4.70.def create mode 100644 eccodes/definitions/grib2/template.4.71.def create mode 100644 eccodes/definitions/grib2/template.4.72.def create mode 100644 eccodes/definitions/grib2/template.4.73.def create mode 100644 eccodes/definitions/grib2/template.4.76.def create mode 100644 eccodes/definitions/grib2/template.4.77.def create mode 100644 eccodes/definitions/grib2/template.4.78.def create mode 100644 eccodes/definitions/grib2/template.4.79.def create mode 100644 eccodes/definitions/grib2/template.4.8.def create mode 100644 eccodes/definitions/grib2/template.4.80.def create mode 100644 eccodes/definitions/grib2/template.4.81.def create mode 100644 eccodes/definitions/grib2/template.4.82.def create mode 100644 eccodes/definitions/grib2/template.4.83.def create mode 100644 eccodes/definitions/grib2/template.4.84.def create mode 100644 eccodes/definitions/grib2/template.4.85.def create mode 100644 eccodes/definitions/grib2/template.4.9.def create mode 100644 eccodes/definitions/grib2/template.4.91.def create mode 100755 eccodes/definitions/grib2/template.4.categorical.def create mode 100755 eccodes/definitions/grib2/template.4.circular_cluster.def create mode 100755 eccodes/definitions/grib2/template.4.derived.def create mode 100644 eccodes/definitions/grib2/template.4.eps.def create mode 100755 eccodes/definitions/grib2/template.4.horizontal.def create mode 100644 eccodes/definitions/grib2/template.4.parameter.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_aerosol.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_aerosol_44.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_aerosol_source.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_chemical.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_chemical_source.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_partition.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_postproc.def create mode 100644 eccodes/definitions/grib2/template.4.parameter_tile.def create mode 100755 eccodes/definitions/grib2/template.4.percentile.def create mode 100644 eccodes/definitions/grib2/template.4.point_in_time.def create mode 100755 eccodes/definitions/grib2/template.4.probability.def create mode 100755 eccodes/definitions/grib2/template.4.rectangular_cluster.def create mode 100644 eccodes/definitions/grib2/template.4.reforecast.def create mode 100644 eccodes/definitions/grib2/template.4.statistical.def create mode 100644 eccodes/definitions/grib2/template.5.0.def create mode 100644 eccodes/definitions/grib2/template.5.1.def create mode 100644 eccodes/definitions/grib2/template.5.2.def create mode 100644 eccodes/definitions/grib2/template.5.3.def create mode 100644 eccodes/definitions/grib2/template.5.4.def create mode 100644 eccodes/definitions/grib2/template.5.40.def create mode 100644 eccodes/definitions/grib2/template.5.40000.def create mode 100644 eccodes/definitions/grib2/template.5.40010.def create mode 100644 eccodes/definitions/grib2/template.5.41.def create mode 100644 eccodes/definitions/grib2/template.5.42.def create mode 100644 eccodes/definitions/grib2/template.5.50.def create mode 100644 eccodes/definitions/grib2/template.5.50000.def create mode 100755 eccodes/definitions/grib2/template.5.50001.def create mode 100755 eccodes/definitions/grib2/template.5.50002.def create mode 100644 eccodes/definitions/grib2/template.5.51.def create mode 100644 eccodes/definitions/grib2/template.5.53.def create mode 100644 eccodes/definitions/grib2/template.5.6.def create mode 100644 eccodes/definitions/grib2/template.5.61.def create mode 100644 eccodes/definitions/grib2/template.5.original_values.def create mode 100755 eccodes/definitions/grib2/template.5.packing.def create mode 100644 eccodes/definitions/grib2/template.5.second_order.def create mode 100644 eccodes/definitions/grib2/template.7.0.def create mode 100644 eccodes/definitions/grib2/template.7.1.def create mode 100644 eccodes/definitions/grib2/template.7.2.def create mode 100644 eccodes/definitions/grib2/template.7.3.def create mode 100644 eccodes/definitions/grib2/template.7.4.def create mode 100644 eccodes/definitions/grib2/template.7.40.def create mode 100644 eccodes/definitions/grib2/template.7.40000.def create mode 100644 eccodes/definitions/grib2/template.7.40010.def create mode 100644 eccodes/definitions/grib2/template.7.41.def create mode 100644 eccodes/definitions/grib2/template.7.42.def create mode 100644 eccodes/definitions/grib2/template.7.50.def create mode 100644 eccodes/definitions/grib2/template.7.50000.def create mode 100644 eccodes/definitions/grib2/template.7.50001.def create mode 100644 eccodes/definitions/grib2/template.7.50002.def create mode 100644 eccodes/definitions/grib2/template.7.51.def create mode 100644 eccodes/definitions/grib2/template.7.53.def create mode 100644 eccodes/definitions/grib2/template.7.6.def create mode 100644 eccodes/definitions/grib2/template.7.61.def create mode 100644 eccodes/definitions/grib2/template.7.second_order.def create mode 100644 eccodes/definitions/grib2/template.second_order.def create mode 100644 eccodes/definitions/grib2/tiggeLocalVersion.table create mode 100644 eccodes/definitions/grib2/tigge_name.def create mode 100644 eccodes/definitions/grib2/tigge_parameter.def create mode 100644 eccodes/definitions/grib2/tigge_short_name.def create mode 100644 eccodes/definitions/grib2/tigge_suiteName.table create mode 100644 eccodes/definitions/grib2/typeOfLevelConcept.def create mode 100644 eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def create mode 100644 eccodes/definitions/grib2/units.def create mode 100644 eccodes/definitions/grib2/unstructuredGridConcept.def create mode 100644 eccodes/definitions/grib2/unstructuredGridSubtype.def create mode 100644 eccodes/definitions/grib2/unstructuredGridType.def create mode 100644 eccodes/definitions/grib2/unstructuredGridUUID.def create mode 100644 eccodes/definitions/grib3/boot.def create mode 100644 eccodes/definitions/grib3/centre.table create mode 100644 eccodes/definitions/grib3/cfName.def create mode 100644 eccodes/definitions/grib3/cfVarName.def create mode 100644 eccodes/definitions/grib3/dimension.0.table create mode 100644 eccodes/definitions/grib3/dimensionTableNumber.table create mode 100644 eccodes/definitions/grib3/dimensionType.table create mode 100644 eccodes/definitions/grib3/grib2LocalSectionNumber.82.table create mode 100644 eccodes/definitions/grib3/grib2LocalSectionNumber.85.table create mode 100644 eccodes/definitions/grib3/grib2LocalSectionNumber.98.table create mode 100644 eccodes/definitions/grib3/local.82.0.def create mode 100644 eccodes/definitions/grib3/local.82.82.def create mode 100644 eccodes/definitions/grib3/local.82.83.def create mode 100644 eccodes/definitions/grib3/local.82.def create mode 100644 eccodes/definitions/grib3/local.85.0.def create mode 100644 eccodes/definitions/grib3/local.85.1.def create mode 100644 eccodes/definitions/grib3/local.85.2.def create mode 100644 eccodes/definitions/grib3/local.85.def create mode 100644 eccodes/definitions/grib3/local.98.0.def create mode 100644 eccodes/definitions/grib3/local.98.1.def create mode 100644 eccodes/definitions/grib3/local.98.11.def create mode 100644 eccodes/definitions/grib3/local.98.14.def create mode 100644 eccodes/definitions/grib3/local.98.15.def create mode 100644 eccodes/definitions/grib3/local.98.16.def create mode 100644 eccodes/definitions/grib3/local.98.18.def create mode 100644 eccodes/definitions/grib3/local.98.192.def create mode 100644 eccodes/definitions/grib3/local.98.20.def create mode 100644 eccodes/definitions/grib3/local.98.21.def create mode 100644 eccodes/definitions/grib3/local.98.24.def create mode 100644 eccodes/definitions/grib3/local.98.25.def create mode 100644 eccodes/definitions/grib3/local.98.26.def create mode 100644 eccodes/definitions/grib3/local.98.28.def create mode 100644 eccodes/definitions/grib3/local.98.30.def create mode 100644 eccodes/definitions/grib3/local.98.300.def create mode 100644 eccodes/definitions/grib3/local.98.36.def create mode 100644 eccodes/definitions/grib3/local.98.38.def create mode 100644 eccodes/definitions/grib3/local.98.39.def create mode 100755 eccodes/definitions/grib3/local.98.500.def create mode 100644 eccodes/definitions/grib3/local.98.7.def create mode 100644 eccodes/definitions/grib3/local.98.9.def create mode 100644 eccodes/definitions/grib3/local.98.def create mode 100644 eccodes/definitions/grib3/local.tigge.1.def create mode 100644 eccodes/definitions/grib3/local/1098/2.1.table create mode 100644 eccodes/definitions/grib3/local/1098/centres.table create mode 100644 eccodes/definitions/grib3/local/1098/models.table create mode 100644 eccodes/definitions/grib3/local/1098/template.2.0.def create mode 100644 eccodes/definitions/grib3/local/1098/template.2.0.def~ create mode 100644 eccodes/definitions/grib3/local/2.0.table create mode 100755 eccodes/definitions/grib3/local/edzw/2.0.3.table create mode 100755 eccodes/definitions/grib3/local/edzw/3.table create mode 100755 eccodes/definitions/grib3/local/edzw/5.table create mode 100755 eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/cfName.def create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/name.def create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/paramId.def create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/shortName.def create mode 100644 eccodes/definitions/grib3/localConcepts/ecmf/units.def create mode 100644 eccodes/definitions/grib3/ls.def create mode 100644 eccodes/definitions/grib3/ls_labeling.82.def create mode 100644 eccodes/definitions/grib3/mars_labeling.82.def create mode 100644 eccodes/definitions/grib3/mars_labeling.def create mode 100644 eccodes/definitions/grib3/meta.def create mode 100644 eccodes/definitions/grib3/modelName.def create mode 100644 eccodes/definitions/grib3/name.def create mode 100644 eccodes/definitions/grib3/paramId.def create mode 100644 eccodes/definitions/grib3/parameters.def create mode 100644 eccodes/definitions/grib3/products_0.def create mode 100644 eccodes/definitions/grib3/products_1.def create mode 100644 eccodes/definitions/grib3/products_2.def create mode 100644 eccodes/definitions/grib3/products_3.def create mode 100644 eccodes/definitions/grib3/products_4.def create mode 100644 eccodes/definitions/grib3/products_5.def create mode 100644 eccodes/definitions/grib3/products_6.def create mode 100644 eccodes/definitions/grib3/products_7.def create mode 100644 eccodes/definitions/grib3/products_8.def create mode 100644 eccodes/definitions/grib3/products_9.def create mode 100644 eccodes/definitions/grib3/products_s2s.def create mode 100644 eccodes/definitions/grib3/products_tigge.def create mode 100644 eccodes/definitions/grib3/products_uerra.def create mode 100644 eccodes/definitions/grib3/rules.def create mode 100644 eccodes/definitions/grib3/section.00.def create mode 100644 eccodes/definitions/grib3/section.01.def create mode 100644 eccodes/definitions/grib3/section.02.def create mode 100644 eccodes/definitions/grib3/section.03.def create mode 100644 eccodes/definitions/grib3/section.04.def create mode 100644 eccodes/definitions/grib3/section.05.def create mode 100644 eccodes/definitions/grib3/section.06.def create mode 100644 eccodes/definitions/grib3/section.07.def create mode 100644 eccodes/definitions/grib3/section.08.def create mode 100644 eccodes/definitions/grib3/section.09.def create mode 100644 eccodes/definitions/grib3/section.10.def create mode 100644 eccodes/definitions/grib3/section.11.def create mode 100644 eccodes/definitions/grib3/sections.def create mode 100644 eccodes/definitions/grib3/shortName.def create mode 100644 eccodes/definitions/grib3/tables/0.0.table create mode 100644 eccodes/definitions/grib3/tables/0/0.0.table create mode 100644 eccodes/definitions/grib3/tables/0/1.0.table create mode 100644 eccodes/definitions/grib3/tables/0/1.1.table create mode 100644 eccodes/definitions/grib3/tables/0/1.2.table create mode 100644 eccodes/definitions/grib3/tables/0/1.3.table create mode 100644 eccodes/definitions/grib3/tables/0/1.4.table create mode 100644 eccodes/definitions/grib3/tables/0/3.0.table create mode 100644 eccodes/definitions/grib3/tables/0/3.1.table create mode 100644 eccodes/definitions/grib3/tables/0/3.10.table create mode 100644 eccodes/definitions/grib3/tables/0/3.11.table create mode 100644 eccodes/definitions/grib3/tables/0/3.15.table create mode 100644 eccodes/definitions/grib3/tables/0/3.2.table create mode 100644 eccodes/definitions/grib3/tables/0/3.20.table create mode 100644 eccodes/definitions/grib3/tables/0/3.21.table create mode 100644 eccodes/definitions/grib3/tables/0/3.3.table create mode 100644 eccodes/definitions/grib3/tables/0/3.4.table create mode 100644 eccodes/definitions/grib3/tables/0/3.5.table create mode 100644 eccodes/definitions/grib3/tables/0/3.6.table create mode 100644 eccodes/definitions/grib3/tables/0/3.7.table create mode 100644 eccodes/definitions/grib3/tables/0/3.8.table create mode 100644 eccodes/definitions/grib3/tables/0/3.9.table create mode 100644 eccodes/definitions/grib3/tables/0/4.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.10.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.2.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.3.table create mode 100644 eccodes/definitions/grib3/tables/0/4.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.10.table create mode 100644 eccodes/definitions/grib3/tables/0/4.11.table create mode 100644 eccodes/definitions/grib3/tables/0/4.12.table create mode 100644 eccodes/definitions/grib3/tables/0/4.13.table create mode 100644 eccodes/definitions/grib3/tables/0/4.14.table create mode 100644 eccodes/definitions/grib3/tables/0/4.15.table create mode 100644 eccodes/definitions/grib3/tables/0/4.151.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.13.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.14.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.15.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.18.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.19.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.190.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.191.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.2.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.20.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.3.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.4.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.5.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.6.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.0.7.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.1.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.1.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.10.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.10.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.10.2.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.10.3.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.10.4.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.2.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.2.3.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.3.0.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.3.1.table create mode 100644 eccodes/definitions/grib3/tables/0/4.2.table create mode 100644 eccodes/definitions/grib3/tables/0/4.201.table create mode 100644 eccodes/definitions/grib3/tables/0/4.202.table create mode 100644 eccodes/definitions/grib3/tables/0/4.203.table create mode 100644 eccodes/definitions/grib3/tables/0/4.204.table create mode 100644 eccodes/definitions/grib3/tables/0/4.205.table create mode 100644 eccodes/definitions/grib3/tables/0/4.206.table create mode 100644 eccodes/definitions/grib3/tables/0/4.207.table create mode 100644 eccodes/definitions/grib3/tables/0/4.208.table create mode 100644 eccodes/definitions/grib3/tables/0/4.209.table create mode 100644 eccodes/definitions/grib3/tables/0/4.210.table create mode 100644 eccodes/definitions/grib3/tables/0/4.211.table create mode 100644 eccodes/definitions/grib3/tables/0/4.212.table create mode 100644 eccodes/definitions/grib3/tables/0/4.213.table create mode 100644 eccodes/definitions/grib3/tables/0/4.215.table create mode 100644 eccodes/definitions/grib3/tables/0/4.216.table create mode 100644 eccodes/definitions/grib3/tables/0/4.217.table create mode 100644 eccodes/definitions/grib3/tables/0/4.220.table create mode 100644 eccodes/definitions/grib3/tables/0/4.221.table create mode 100644 eccodes/definitions/grib3/tables/0/4.230.table create mode 100644 eccodes/definitions/grib3/tables/0/4.3.table create mode 100644 eccodes/definitions/grib3/tables/0/4.4.table create mode 100644 eccodes/definitions/grib3/tables/0/4.5.table create mode 100644 eccodes/definitions/grib3/tables/0/4.6.table create mode 100644 eccodes/definitions/grib3/tables/0/4.7.table create mode 100644 eccodes/definitions/grib3/tables/0/4.8.table create mode 100644 eccodes/definitions/grib3/tables/0/4.9.table create mode 100644 eccodes/definitions/grib3/tables/0/4.91.table create mode 100644 eccodes/definitions/grib3/tables/0/5.0.table create mode 100644 eccodes/definitions/grib3/tables/0/5.1.table create mode 100644 eccodes/definitions/grib3/tables/0/5.2.table create mode 100644 eccodes/definitions/grib3/tables/0/5.3.table create mode 100644 eccodes/definitions/grib3/tables/0/5.4.table create mode 100644 eccodes/definitions/grib3/tables/0/5.40.table create mode 100644 eccodes/definitions/grib3/tables/0/5.40000.table create mode 100644 eccodes/definitions/grib3/tables/0/5.5.table create mode 100644 eccodes/definitions/grib3/tables/0/5.6.table create mode 100644 eccodes/definitions/grib3/tables/0/5.7.table create mode 100644 eccodes/definitions/grib3/tables/0/5.8.table create mode 100644 eccodes/definitions/grib3/tables/0/5.9.table create mode 100644 eccodes/definitions/grib3/tables/0/6.0.table create mode 100644 eccodes/definitions/grib3/tables/1.0.table create mode 100644 eccodes/definitions/grib3/tables/1/0.0.table create mode 100644 eccodes/definitions/grib3/tables/1/1.0.table create mode 100644 eccodes/definitions/grib3/tables/1/1.1.table create mode 100644 eccodes/definitions/grib3/tables/1/1.2.table create mode 100644 eccodes/definitions/grib3/tables/1/1.3.table create mode 100644 eccodes/definitions/grib3/tables/1/1.4.table create mode 100644 eccodes/definitions/grib3/tables/1/3.0.table create mode 100644 eccodes/definitions/grib3/tables/1/3.1.table create mode 100644 eccodes/definitions/grib3/tables/1/3.10.table create mode 100644 eccodes/definitions/grib3/tables/1/3.11.table create mode 100644 eccodes/definitions/grib3/tables/1/3.15.table create mode 100644 eccodes/definitions/grib3/tables/1/3.2.table create mode 100644 eccodes/definitions/grib3/tables/1/3.20.table create mode 100644 eccodes/definitions/grib3/tables/1/3.21.table create mode 100644 eccodes/definitions/grib3/tables/1/3.3.table create mode 100644 eccodes/definitions/grib3/tables/1/3.4.table create mode 100644 eccodes/definitions/grib3/tables/1/3.5.table create mode 100644 eccodes/definitions/grib3/tables/1/3.6.table create mode 100644 eccodes/definitions/grib3/tables/1/3.7.table create mode 100644 eccodes/definitions/grib3/tables/1/3.8.table create mode 100644 eccodes/definitions/grib3/tables/1/3.9.table create mode 100644 eccodes/definitions/grib3/tables/1/4.0.table create mode 100644 eccodes/definitions/grib3/tables/1/4.1.table create mode 100644 eccodes/definitions/grib3/tables/1/4.10.table create mode 100644 eccodes/definitions/grib3/tables/1/4.11.table create mode 100644 eccodes/definitions/grib3/tables/1/4.12.table create mode 100644 eccodes/definitions/grib3/tables/1/4.13.table create mode 100644 eccodes/definitions/grib3/tables/1/4.14.table create mode 100644 eccodes/definitions/grib3/tables/1/4.15.table create mode 100644 eccodes/definitions/grib3/tables/1/4.151.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.15.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.18.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.19.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.190.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.191.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.2.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.20.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.3.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.4.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.5.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.6.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.0.7.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.10.0.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.10.1.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.10.2.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.10.3.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.10.4.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.2.0.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.2.3.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.3.0.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.3.1.table create mode 100644 eccodes/definitions/grib3/tables/1/4.2.table create mode 100644 eccodes/definitions/grib3/tables/1/4.201.table create mode 100644 eccodes/definitions/grib3/tables/1/4.202.table create mode 100644 eccodes/definitions/grib3/tables/1/4.203.table create mode 100644 eccodes/definitions/grib3/tables/1/4.204.table create mode 100644 eccodes/definitions/grib3/tables/1/4.205.table create mode 100644 eccodes/definitions/grib3/tables/1/4.206.table create mode 100644 eccodes/definitions/grib3/tables/1/4.207.table create mode 100644 eccodes/definitions/grib3/tables/1/4.208.table create mode 100644 eccodes/definitions/grib3/tables/1/4.209.table create mode 100644 eccodes/definitions/grib3/tables/1/4.210.table create mode 100644 eccodes/definitions/grib3/tables/1/4.211.table create mode 100644 eccodes/definitions/grib3/tables/1/4.212.table create mode 100644 eccodes/definitions/grib3/tables/1/4.213.table create mode 100644 eccodes/definitions/grib3/tables/1/4.215.table create mode 100644 eccodes/definitions/grib3/tables/1/4.216.table create mode 100644 eccodes/definitions/grib3/tables/1/4.217.table create mode 100644 eccodes/definitions/grib3/tables/1/4.220.table create mode 100644 eccodes/definitions/grib3/tables/1/4.221.table create mode 100644 eccodes/definitions/grib3/tables/1/4.230.table create mode 100644 eccodes/definitions/grib3/tables/1/4.3.table create mode 100644 eccodes/definitions/grib3/tables/1/4.4.table create mode 100644 eccodes/definitions/grib3/tables/1/4.5.table create mode 100644 eccodes/definitions/grib3/tables/1/4.6.table create mode 100644 eccodes/definitions/grib3/tables/1/4.7.table create mode 100644 eccodes/definitions/grib3/tables/1/4.8.table create mode 100644 eccodes/definitions/grib3/tables/1/4.9.table create mode 100644 eccodes/definitions/grib3/tables/1/4.91.table create mode 100644 eccodes/definitions/grib3/tables/1/5.0.table create mode 100644 eccodes/definitions/grib3/tables/1/5.1.table create mode 100644 eccodes/definitions/grib3/tables/1/5.2.table create mode 100644 eccodes/definitions/grib3/tables/1/5.3.table create mode 100644 eccodes/definitions/grib3/tables/1/5.4.table create mode 100644 eccodes/definitions/grib3/tables/1/5.40.table create mode 100644 eccodes/definitions/grib3/tables/1/5.40000.table create mode 100644 eccodes/definitions/grib3/tables/1/5.5.table create mode 100644 eccodes/definitions/grib3/tables/1/5.6.table create mode 100644 eccodes/definitions/grib3/tables/1/5.7.table create mode 100644 eccodes/definitions/grib3/tables/1/5.8.table create mode 100644 eccodes/definitions/grib3/tables/1/5.9.table create mode 100644 eccodes/definitions/grib3/tables/1/6.0.table create mode 100644 eccodes/definitions/grib3/tables/1/6.1.table create mode 100644 eccodes/definitions/grib3/tables/1/6.2.table create mode 100644 eccodes/definitions/grib3/tables/1/6.3.table create mode 100644 eccodes/definitions/grib3/tables/1/7.0.table create mode 100644 eccodes/definitions/grib3/tables/1/7.1.table create mode 100644 eccodes/definitions/grib3/tables/1/7.2.0.table create mode 100644 eccodes/definitions/grib3/tables/1/7.2.1.table create mode 100644 eccodes/definitions/grib3/tables/1/7.2.10.table create mode 100644 eccodes/definitions/grib3/tables/1/7.2.2.table create mode 100644 eccodes/definitions/grib3/tables/1/7.2.3.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.0.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.1.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.13.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.14.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.15.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.16.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.17.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.18.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.19.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.2.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.20.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.3.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.4.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.5.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.6.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.0.7.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.1.0.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.1.1.table create mode 100644 eccodes/definitions/grib3/tables/1/7.3.1.2.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table create mode 100644 eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table create mode 100644 eccodes/definitions/grib3/template.10.0.def create mode 100644 eccodes/definitions/grib3/template.3.0.def create mode 100644 eccodes/definitions/grib3/template.3.110.def create mode 100644 eccodes/definitions/grib3/template.3.140.def create mode 100644 eccodes/definitions/grib3/template.3.20.def create mode 100644 eccodes/definitions/grib3/template.3.resolution_flags.def create mode 100644 eccodes/definitions/grib3/template.4.0.def create mode 100644 eccodes/definitions/grib3/template.4.1.def create mode 100644 eccodes/definitions/grib3/template.4.2.def create mode 100644 eccodes/definitions/grib3/template.4.3.def create mode 100755 eccodes/definitions/grib3/template.4.horizontal.def create mode 100644 eccodes/definitions/grib3/template.4.resolution_flags.def create mode 100644 eccodes/definitions/grib3/template.4.scanning_mode.def create mode 100644 eccodes/definitions/grib3/template.5.0.def create mode 100644 eccodes/definitions/grib3/template.5.1.def create mode 100644 eccodes/definitions/grib3/template.6.0.def create mode 100644 eccodes/definitions/grib3/template.6.1.def create mode 100644 eccodes/definitions/grib3/template.6.2.def create mode 100644 eccodes/definitions/grib3/template.7.0.def create mode 100644 eccodes/definitions/grib3/template.7.1.def create mode 100644 eccodes/definitions/grib3/template.7.2.def create mode 100644 eccodes/definitions/grib3/template.7.3.def create mode 100644 eccodes/definitions/grib3/template.7.4.def create mode 100644 eccodes/definitions/grib3/template.8.0.def create mode 100644 eccodes/definitions/grib3/template.8.1.def create mode 100755 eccodes/definitions/grib3/template.8.missing_value.def create mode 100644 eccodes/definitions/grib3/template.8.original_values.def create mode 100755 eccodes/definitions/grib3/template.8.packing.def create mode 100644 eccodes/definitions/grib3/template.9.0.def create mode 100644 eccodes/definitions/grib3/template.component.3.0.def create mode 100644 eccodes/definitions/grib3/template.component.4.0.def create mode 100644 eccodes/definitions/grib3/template.component.4.1.def create mode 100644 eccodes/definitions/grib3/template.component.4.2.def create mode 100644 eccodes/definitions/grib3/template.component.4.3.def create mode 100644 eccodes/definitions/grib3/template.component.5.0.def create mode 100644 eccodes/definitions/grib3/template.component.5.1.def create mode 100644 eccodes/definitions/grib3/template.component.6.0.def create mode 100644 eccodes/definitions/grib3/template.component.6.1.def create mode 100644 eccodes/definitions/grib3/template.component.6.2.def create mode 100644 eccodes/definitions/grib3/template.component.6.3.def create mode 100644 eccodes/definitions/grib3/template.component.7.0.def create mode 100644 eccodes/definitions/grib3/template.component.7.1.def create mode 100644 eccodes/definitions/grib3/template.component.7.2.def create mode 100644 eccodes/definitions/grib3/template.component.7.3.def create mode 100644 eccodes/definitions/grib3/template.component.7.4.def create mode 100644 eccodes/definitions/grib3/template.component.8.0.def create mode 100644 eccodes/definitions/grib3/template.component.8.1.def create mode 100644 eccodes/definitions/grib3/template.component.9.0.def create mode 100644 eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def create mode 100644 eccodes/definitions/grib3/tiggeLocalVersion.table create mode 100644 eccodes/definitions/grib3/tigge_name.def create mode 100644 eccodes/definitions/grib3/tigge_parameter.def create mode 100644 eccodes/definitions/grib3/tigge_short_name.def create mode 100644 eccodes/definitions/grib3/tigge_suiteName.table create mode 100644 eccodes/definitions/grib3/units.def create mode 100644 eccodes/definitions/mars_param.table create mode 100644 eccodes/definitions/param_id.table create mode 100644 eccodes/definitions/param_limits.def create mode 100644 eccodes/definitions/parameters_version.def create mode 100644 eccodes/definitions/stepUnits.table diff --git a/eccodes/definitions/boot.def b/eccodes/definitions/boot.def new file mode 100644 index 00000000..22edf96e --- /dev/null +++ b/eccodes/definitions/boot.def @@ -0,0 +1,122 @@ +# (C) Copyright 2005- 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. +# +include "parameters_version.def"; +constant definitionFilesVersion="2.0.0.0" : hidden; +constant internalVersion=30 : hidden; +meta checkInternalVersion check_internal_version(internalVersion) : hidden; + +# ECC-806: Local concepts precedence order +transient preferLocalConcepts = 0 : hidden; + +constant defaultTypeOfLevel="unknown" : hidden; + +gribDataQualityChecks = getenv("ECCODES_GRIB_DATA_QUALITY_CHECKS","0") : hidden; +if (gribDataQualityChecks) { + template LIMITS "param_limits.def"; +} + +# GRIBEX special boustrophedonic mode. See GRIB-472 +# If the environment variable is not defined, the key will be 0 +GRIBEX_boustrophedonic = getenv("ECCODES_GRIBEX_BOUSTROPHEDONIC","0") :hidden; + +constant zero=0 : hidden; +constant one=1 : hidden; +constant hundred=100 : hidden; +transient truncateLaplacian=0 : hidden; +constant marsDir="mars" : no_copy,hidden; +constant present=1 : hidden; +# alias epsStatistics=zero : hidden; + +constant defaultParameter = 0 : hidden; +constant defaultName="unknown" :hidden; +constant defaultShortName="unknown" : hidden; +transient truncateDegrees=0 : hidden; +transient dummy = 1 :hidden; +constant unknown="unknown" : hidden; +constant oneConstant=1 : hidden; +constant thousand=1000 :hidden; +constant oneMillionConstant=1000000 : hidden; +constant grib1divider = 1000 : hidden; +meta offset offset_file() : hidden; +meta count count_file() : hidden; +meta countTotal count_total() : hidden; +transient file="unknown" : hidden; +transient changingPrecision=0 : hidden; +transient unitsFactor=1 : hidden; +transient unitsBias=0 : hidden; +constant globalDomain = "g"; +transient timeRangeIndicatorFromStepRange=-1 : hidden; + +# ECC-868 +transient produceLargeConstantFields = 0 : hidden; + +meta libraryVersion library_version() : hidden; + +lookup[4] kindOfProduct (0,identifier) : hidden; +# grib templates +# `ABCD` is a number, each letter being a byte + +if(kindOfProduct == `GRIB`){ + lookup[1] GRIBEditionNumber (7,editionNumber) : edition_specific ; + template GRIB "grib[GRIBEditionNumber:l]/boot.def" ; +} + +if(kindOfProduct == `BUDG` ){ + template BUDG "budg/boot.def" ; +} + +if(kindOfProduct == `DIAG`){ + template DIAG "diag/boot.def" ; +} + +if(kindOfProduct == `TIDE`){ + template TIDE "tide/boot.def" ; +} + +if(kindOfProduct == `BUFR`){ + template BUFR "bufr/boot.def" ; + #constant BUFRstr="BUFR"; #ECC-742 + #alias identifier=BUFRstr; +} + +if(kindOfProduct == `CDFX`){ + template CDF "cdf/boot.def" ; + constant CDFstr="netCDF"; + alias ls.identifier=CDFstr; +} + +if(kindOfProduct == 17632522 ){ + template GTS "gts/boot.def" ; + constant GTSstr="GTS"; + alias ls.identifier=GTSstr; +} + +if(kindOfProduct == `META` ){ + template METAR "metar/boot.def" ; + constant METARstr="METAR"; + alias identifier=METARstr; +} + +if(kindOfProduct == `TAF ` ){ + template TAF "taf/boot.def" ; + constant TAFstr="TAF"; + alias ls.identifier=TAFstr; +} + +if(kindOfProduct == 2303214662){ + template HDF5 "hdf5/boot.def" ; + constant HDF5str="HDF5"; + alias ls.identifier=HDF5str; +} + +if(kindOfProduct == `WRAP`){ + template WRAP "wrap/boot.def" ; + constant WRAPstr="WRAP"; + alias ls.identifier=WRAPstr; +} diff --git a/eccodes/definitions/common/c-1.table b/eccodes/definitions/common/c-1.table new file mode 100644 index 00000000..5abb3f8e --- /dev/null +++ b/eccodes/definitions/common/c-1.table @@ -0,0 +1,96 @@ +# COMMON CODE TABLE C-1: Identification of originating/generating centre (GRIB1, BUFR3) +0 0 Absent +1 ammc Melbourne (WMC) +2 2 Melbourne (WMC) +4 rums Moscow (WMC) +5 5 Moscow (WMC) +7 kwbc US National Weather Service - NCEP (WMC) +8 8 US National Weather Service - NWSTG (WMC) +9 9 US National Weather Service - Other (WMC) +10 10 Cairo (RSMC/RAFC) +12 12 Dakar (RSMC/RAFC) +14 14 Nairobi (RSMC/RAFC) +16 16 Atananarivo (RSMC) +18 18 Tunis-Casablanca (RSMC) +20 20 Las Palmas (RAFC) +21 21 Algiers (RSMC) +22 22 Lagos (RSMC) +24 fapr Pretoria (RSMC) +26 26 Khabarovsk (RSMC) +28 vabb New Delhi (IMD) +29 dems New Delhi (NCMRWF) +30 30 Novosibirsk (RSMC) +32 32 Tashkent (RSMC) +33 33 Jeddah (RSMC) +34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) +36 36 Bankok +37 37 Ulan Bator +38 babj Beijing (RSMC) +40 rksl Seoul +41 sabm Buenos Aires (RSMC/RAFC) +43 43 Brasilia (RSMC/RAFC) +45 45 Santiago +46 sbsj Brasilian Space Agency - INPE +51 51 Miami (RSMC/RAFC) +52 52 National Hurricane Center, Miami +53 53 Canadian Meteorological Service - Montreal (RSMC) +54 cwao Canadian Meteorological Service - Montreal (RSMC) +55 55 San Francisco +57 57 U.S. Air Force - Global Weather Center +58 fnmo US Navy - Fleet Numerical Oceanography Center +59 59 NOAA Forecast Systems Lab, Boulder CO +60 60 National Center for Atmospheric Research (NCAR), Boulder, CO +64 64 Honolulu +65 65 Darwin (RSMC) +67 67 Melbourne (RSMC) +69 nzkl Wellington (RSMC/RAFC) +74 egrr U.K. Met Office - Exeter +76 76 Moscow (RSMC/RAFC) +78 edzw Offenbach (RSMC) +80 cnmc Rome (RSMC) +82 eswi Norrkoping +84 lfpw French Weather Service - Toulouse +85 lfpw French Weather Service - Toulouse +86 efkl Helsinki +87 87 Belgrade +88 enmi Oslo +89 89 Prague +90 90 Episkopi +91 91 Ankara +92 92 Frankfurt/Main (RAFC) +93 93 London (WAFC) +94 ekmi Copenhagen +95 95 Rota +96 96 Athens +97 97 European Space Agency (ESA) +98 ecmf European Centre for Medium-Range Weather Forecasts +99 99 DeBilt, Netherlands +110 110 Hong-Kong +160 160 US NOAA/NESDIS +173 nasa US National Aeronautics and Space Administration (NASA) +195 wiix Indonesia (NMC) +204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) +# 205-209 Reserved +210 210 Frascati (ESA/ESRIN) +211 211 Lannion +212 212 Lisboa +213 213 Reykjavik +214 lemm INM Madrid +215 lssw Zurich +216 216 Service ARGOS Toulouse +218 habp Budapest +224 lowm Austria +227 ebum Belgium (NMC) +233 eidb Dublin +235 ingv INGV +239 crfc CERFAX +244 vuwien VUWien +245 knmi KNMI +246 ifmk IfM-Kiel +247 hadc Hadley Centre +250 cosmo COnsortium for Small scale MOdelling (COSMO) +251 251 Meteorological Cooperation on Operational NWP (MetCoOp) +252 mpim Max Planck Institute for Meteorology (MPI-M) +254 eums EUMETSAT Operation Centre +# 255 Missing value +255 consensus Consensus diff --git a/eccodes/definitions/common/c-11.table b/eccodes/definitions/common/c-11.table new file mode 100644 index 00000000..0ad9780d --- /dev/null +++ b/eccodes/definitions/common/c-11.table @@ -0,0 +1,146 @@ +# COMMON CODE TABLE C-11: Originating/generating centres (GRIB2, BUFR4) +0 0 WMO Secretariat +1 ammc Melbourne (WMC) +2 2 Melbourne (WMC) +4 rums Moscow (WMC) +5 5 Moscow (WMC) +7 kwbc US National Weather Service - NCEP (WMC) +8 8 US National Weather Service - NWSTG (WMC) +9 9 US National Weather Service - Other (WMC) +10 10 Cairo (RSMC/RAFC) +12 12 Dakar (RSMC/RAFC) +14 14 Nairobi (RSMC/RAFC) +16 16 Atananarivo (RSMC) +18 18 Tunis-Casablanca (RSMC) +20 20 Las Palmas (RAFC) +21 21 Algiers (RSMC) +22 22 Lagos (RSMC) +24 fapr Pretoria (RSMC) +26 26 Khabarovsk (RSMC) +28 vabb New Delhi (IMD) +29 dems New Delhi (NCMRWF) +30 30 Novosibirsk (RSMC) +32 32 Tashkent (RSMC) +33 33 Jeddah (RSMC) +34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) +36 36 Bankok +37 37 Ulan Bator +38 babj Beijing (RSMC) +40 rksl Seoul +41 sabm Buenos Aires (RSMC/RAFC) +43 43 Brasilia (RSMC/RAFC) +45 45 Santiago +46 sbsj Brasilian Space Agency - INPE +51 51 Miami (RSMC/RAFC) +52 52 National Hurricane Center, Miami +53 53 Canadian Meteorological Service - Montreal (RSMC) +54 cwao Canadian Meteorological Service - Montreal (RSMC) +55 55 San Francisco +57 57 U.S. Air Force - Global Weather Center +58 fnmo US Navy - Fleet Numerical Oceanography Center +59 59 NOAA Forecast Systems Lab, Boulder CO +60 60 National Center for Atmospheric Research (NCAR), Boulder, CO +64 64 Honolulu +65 65 Darwin (RSMC) +67 67 Melbourne (RSMC) +69 nzkl Wellington (RSMC/RAFC) +74 egrr U.K. Met Office - Exeter +76 76 Moscow (RSMC/RAFC) +78 edzw Offenbach (RSMC) +80 cnmc Rome (RSMC) +82 eswi Norrkoping +84 lfpw French Weather Service - Toulouse +85 lfpw French Weather Service - Toulouse +86 efkl Helsinki +87 87 Belgrade +88 enmi Oslo +89 89 Prague +90 90 Episkopi +91 91 Ankara +92 92 Frankfurt/Main (RAFC) +93 93 London (WAFC) +94 ekmi Copenhagen +95 95 Rota +96 96 Athens +97 97 European Space Agency (ESA) +98 ecmf European Centre for Medium-Range Weather Forecasts +99 99 DeBilt, Netherlands +110 110 Hong-Kong +160 160 US NOAA/NESDIS +173 nasa US National Aeronautics and Space Administration (NASA) +195 wiix Indonesia (NMC) +204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) +210 210 Frascati (ESA/ESRIN) +211 211 Lannion +212 212 Lisboa +213 213 Reykjavik +214 lemm INM Madrid +215 lssw Zurich +216 216 Service ARGOS Toulouse +217 217 Bratislava +218 habp Budapest +219 219 Ljubljana +220 220 Warsaw +221 221 Zagreb +222 222 Albania (NMC) +223 223 Armenia (NMC) +224 lowm Austria +227 ebum Belgium (NMC) +228 228 Bosnia and Herzegovina (NMC) +229 229 Bulgaria (NMC) +230 230 Cyprus (NMC) +231 231 Estonia (NMC) +232 232 Georgia (NMC) +233 eidb Dublin +234 234 Israel (NMC) +235 ingv INGV +239 crfc CERFAX +240 240 Malta (NMC) +241 241 Monaco +242 242 Romania (NMC) +244 vuwien VUWien +245 knmi KNMI +246 ifmk IfM-Kiel +247 hadc Hadley Centre +250 cosmo COnsortium for Small scale MOdelling (COSMO) +251 251 Meteorological Cooperation on Operational NWP (MetCoOp) +252 mpim Max Planck Institute for Meteorology (MPI-M) +254 eums EUMETSAT Operation Centre +255 consensus Consensus +256 256 Angola (NMC) +257 257 Benin (NMC) +258 258 Botswana (NMC) +259 259 Burkina Faso (NMC) +260 260 Burundi (NMC) +261 261 Cameroon (NMC) +262 262 Cabo Verde (NMC) +263 263 Central African Republic (NMC) +264 264 Chad (NMC) +265 265 Comoros (NMC) +266 266 Democratic Republic of the Congo (NMC) +267 267 Djibouti (NMC) +268 268 Eritrea (NMC) +269 269 Ethiopia (NMC) +270 270 Gabon (NMC) +271 271 Gambia (NMC) +272 272 Ghana (NMC) +273 273 Guinea (NMC) +274 274 Guinea-Bissau (NMC) +275 275 Lesotho (NMC) +276 276 Liberia (NMC) +277 277 Malawi (NMC) +278 278 Mali (NMC) +279 279 Mauritania (NMC) +280 280 Namibia (NMC) +281 281 Nigeria (NMC) +282 282 Rwanda (NMC) +283 283 Sao Tome and Principe (NMC) +284 284 Sierra Leone (NMC) +285 285 Somalia (NMC) +286 286 Sudan (NMC) +287 287 Swaziland (NMC) +288 288 Togo (NMC) +289 289 Zambia (NMC) +291 iapc Institute of Atmospheric Physics (Chinese Academy of Sciences) + +65535 65535 Missing value diff --git a/eccodes/definitions/common/statistics_grid.def b/eccodes/definitions/common/statistics_grid.def new file mode 100644 index 00000000..b99ed628 --- /dev/null +++ b/eccodes/definitions/common/statistics_grid.def @@ -0,0 +1,33 @@ +# (C) Copyright 2005- 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. +# + +meta dirty_statistics dirty(computeStatistics) ; +when (changed(values)) { set dirty_statistics=1;} + +meta computeStatistics statistics(missingValue,values); + +meta maximum vector(computeStatistics,0) : dump; +meta minimum vector(computeStatistics,1) : dump; +meta average vector(computeStatistics,2) : dump; +#meta numberOfMissing vector(computeStatistics,3) : dump; +meta numberOfMissing count_missing(bitmap,unusedBitsInBitmap,numberOfDataPoints) : dump; +meta standardDeviation vector(computeStatistics,4) : dump; +meta skewness vector(computeStatistics,5) : dump; +meta kurtosis vector(computeStatistics,6) : dump; +meta isConstant vector(computeStatistics,7) : dump; + +alias numberOfMissingValues=numberOfMissing; + +alias statistics.avg = average; +alias statistics.max = maximum; +alias statistics.min = minimum; +alias statistics.sd = standardDeviation; +alias statistics.skew = skewness; +alias statistics.kurt = kurtosis; +alias statistics.const = isConstant; diff --git a/eccodes/definitions/common/statistics_spectral.def b/eccodes/definitions/common/statistics_spectral.def new file mode 100644 index 00000000..47dc27bb --- /dev/null +++ b/eccodes/definitions/common/statistics_spectral.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- 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. +# + +meta dirty_statistics dirty(computeStatistics) ; +when (changed(values)) { set dirty_statistics=1;} + +meta computeStatistics statistics_spectral(values,J,K,M,JS) : hidden; + +meta average vector(computeStatistics,0) : dump; +meta energyNorm vector(computeStatistics,1) : dump; +meta standardDeviation vector(computeStatistics,2) : dump; +meta isConstant vector(computeStatistics,3) : dump; + +alias statistics.avg = average; +alias statistics.enorm = energyNorm; +alias statistics.sd = standardDeviation; +alias statistics.const = isConstant; + diff --git a/eccodes/definitions/empty_template.def b/eccodes/definitions/empty_template.def new file mode 100644 index 00000000..f5da9a36 --- /dev/null +++ b/eccodes/definitions/empty_template.def @@ -0,0 +1,2 @@ +label "_x"; + diff --git a/eccodes/definitions/grib1/0.ecmf.table b/eccodes/definitions/grib1/0.ecmf.table new file mode 100644 index 00000000..ed377f0a --- /dev/null +++ b/eccodes/definitions/grib1/0.ecmf.table @@ -0,0 +1 @@ +# Code table 0: Identification of centres diff --git a/eccodes/definitions/grib1/0.eidb.table b/eccodes/definitions/grib1/0.eidb.table new file mode 100644 index 00000000..2ddd75cf --- /dev/null +++ b/eccodes/definitions/grib1/0.eidb.table @@ -0,0 +1,4 @@ +# identification of subcenters for eidb centre (Met Eireann) +0 dub Dublin +1 snn Shannon +255 miss Missing diff --git a/eccodes/definitions/grib1/0.eswi.table b/eccodes/definitions/grib1/0.eswi.table new file mode 100644 index 00000000..e0177d63 --- /dev/null +++ b/eccodes/definitions/grib1/0.eswi.table @@ -0,0 +1,10 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# identification of subcenters for eswi centre (SMHI) +0 none not set +96 96 HIRLAM data (non-standard, deprecated) +98 98 previously used to tag SMHI data that is ECMWF compliant (deprecated) diff --git a/eccodes/definitions/grib1/0.rjtd.table b/eccodes/definitions/grib1/0.rjtd.table new file mode 100644 index 00000000..ba292579 --- /dev/null +++ b/eccodes/definitions/grib1/0.rjtd.table @@ -0,0 +1,5 @@ +# identification of subcenters for Japan +0 none No sub-centre +207 207 Syowa +240 240 Kiyose +241 241 Reanalysis Project diff --git a/eccodes/definitions/grib1/1.table b/eccodes/definitions/grib1/1.table new file mode 100644 index 00000000..7dc22b12 --- /dev/null +++ b/eccodes/definitions/grib1/1.table @@ -0,0 +1,5 @@ +# CODE TABLE 1, Flag indication relative to section 2 and 3 +1 0 Section 2 omited +1 1 Section 2 included +2 0 Section 3 omited +2 1 Section 3 included diff --git a/eccodes/definitions/grib1/10.table b/eccodes/definitions/grib1/10.table new file mode 100644 index 00000000..cd51461a --- /dev/null +++ b/eccodes/definitions/grib1/10.table @@ -0,0 +1,4 @@ +# CODE TABLE 10, Coefficient Storage Mode +1 1 The complex coefficients Xnm are stored for m>0 as pairs of real numbers +2 2 Spherical harmonics-complex packing +3 3 Spherical harmonics ieee packing diff --git a/eccodes/definitions/grib1/11-2.table b/eccodes/definitions/grib1/11-2.table new file mode 100644 index 00000000..ef1c3c1b --- /dev/null +++ b/eccodes/definitions/grib1/11-2.table @@ -0,0 +1,34 @@ +# CODE TABLE 11-2, Flag + +# Undocumented use of octet 14 extededFlags +# Taken from d2ordr.F +# R------- only bit 1 is reserved. +# -0------ single datum at each grid point. +# -1------ matrix of values at each grid point. +# --0----- no secondary bit map. +# --1----- secondary bit map present. +# ---0---- second order values have constant width. +# ---1---- second order values have different widths. +# ----0--- no general extended second order packing. +# ----1--- general extended second order packing used. +# -----0-- standard field ordering in section 4. +# -----1-- boustrophedonic ordering in section 4. + + +1 0 Reserved +1 1 Reserved +2 0 Single datum at each grid point +2 1 Matrix of values at each grid point +3 0 No secondary bitmap Present +3 1 Secondary bitmap Present +4 0 Second-order values constant width +4 1 Second-order values different widths +5 0 no general extended second order packing +5 1 general extended second order packing used +6 0 standard field ordering in section 4 +6 1 boustrophedonic ordering in section 4 +# ------00 no spatial differencing used. +# ------01 1st-order spatial differencing used. +# ------10 2nd-order " " " . +# ------11 3rd-order " " " . + diff --git a/eccodes/definitions/grib1/11.table b/eccodes/definitions/grib1/11.table new file mode 100644 index 00000000..ec5376c1 --- /dev/null +++ b/eccodes/definitions/grib1/11.table @@ -0,0 +1,9 @@ +# CODE TABLE 11, Flag +1 0 Grid-point data +1 1 Spherical harmonic coefficients +2 0 Simple packing +2 1 Complex or second-order packing +3 0 Floating point values are represented +3 1 Integer values are represented +4 0 No additional flags at octet 14 +4 1 Octet 14 contains additional flag bits diff --git a/eccodes/definitions/grib1/12.table b/eccodes/definitions/grib1/12.table new file mode 100644 index 00000000..a72a64c3 --- /dev/null +++ b/eccodes/definitions/grib1/12.table @@ -0,0 +1,13 @@ +# CODE TABLE 12, matrix coordinates values functions +0 0 Explicit co-ordinate values sent +1 1 Linear co-cordinates +2 2 Log co-ordinates +3 3 Reserved +4 4 Reserved +5 5 Reserved +6 6 Reserved +7 7 Reserved +8 8 Reserved +9 9 Reserved +10 10 Reserved +11 11 Geometric Co-ordinates diff --git a/eccodes/definitions/grib1/13.table b/eccodes/definitions/grib1/13.table new file mode 100644 index 00000000..e4724a01 --- /dev/null +++ b/eccodes/definitions/grib1/13.table @@ -0,0 +1,4 @@ +# CODE TABLE 13, matrix coordinates parameter +1 1 Direction +2 2 Frequency +3 3 Radial number diff --git a/eccodes/definitions/grib1/2.0.1.table b/eccodes/definitions/grib1/2.0.1.table new file mode 100644 index 00000000..70df87f8 --- /dev/null +++ b/eccodes/definitions/grib1/2.0.1.table @@ -0,0 +1,129 @@ +1 p P Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 3 None Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 5 None ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 9 None Standard deviation of height m +10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) +11 t T Temperature K +12 12 None Virtual temperature K +13 13 None Potential temperature K +14 14 None Pseudo-adiabatic potential temperature K +15 15 None Maximum temperature K +16 16 None Minimum temperature K +17 17 None Dew-point temperature K +18 18 None Dew-point depression (or deficit) K +19 19 None Lapse rate K s**-1 +20 20 None Visibility m +21 21 None Radar spectra (1) - +22 22 None Radar spectra (2) - +23 23 None Radar spectra (3) - +24 24 None Parcel lifted index (to 500 hPa) K +25 25 None Temperature anomaly K +26 26 None Pressure anomaly Pa +27 27 None Geopotential height anomaly gpm +28 28 None Wave spectra (1) - +29 29 None Wave spectra (2) - +30 30 None Wave spectra (3) - +31 31 None Wind direction Degree true +32 32 None Wind speed m s**-1 +33 u U U-component of wind m s**-1 +34 v V V-component of wind m s**-1 +35 35 None Stream Function m**2 s**-1 +36 36 None Velocity Potential m**2 s**-1 +37 37 None Montgomery stream Function m**2 s**-1 +38 38 None Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 40 None Vertical velocity m s**-1 +41 41 None Absolute vorticity s**-1 +42 42 None Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 45 None Vertical u-component shear s**-1 +46 46 None Vertical v-component shear s**-1 +47 47 None Direction of current Degree true +48 48 None Speed of current m s**-1 +49 49 None U-component of current m s**-1 +50 50 None V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 53 None Humidity mixing ratio kg m**-2 +54 54 None Precipitable water kg m**-2 +55 55 None Vapour pressure Pa +56 56 None Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 59 None Precipitation rate kg m**-2 s**-1 +60 60 None Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 62 LSP Large scale precipitation kg m**-2 +63 63 None Convective precipitation (water) kg m**-2 +64 64 None Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalentof accumulated snow depth kg m**-2 +66 sd SD Snow depth m (of water equivalent) +67 67 None Mixed layer depth m +68 68 None Transient thermocline depth m +69 69 None Main thermocline depth m +70 70 None Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 clwc CLWC Cloud liquid water content kg kg**-1 +77 77 None Best lifted index (to 500 hPa) K +78 csf CSF Convective snow-fall kg m**-2 +79 lsf LSF Large scale snow-fall kg m**-2 +80 80 None Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 82 None Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Surface temperature of soil K +86 ssw SSW Soil moisture content kg m**-2 +87 veg VEG Percentage of vegetation % +88 88 None Salinity kg kg**-1 +89 89 None Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 91 None Ice cover (1=land, 0=sea) (0 - 1) +92 92 None Ice thickness m +93 93 None Direction of ice drift Degree true +94 94 None Speed of ice drift m s*-1 +95 95 None U-component of ice drift m s**-1 +96 96 None V-component of ice drift m s**-1 +97 97 None Ice growth rate m s**-1 +98 98 None Ice divergence s**-1 +99 99 None Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 104 None Direction of swell waves Degree true +105 105 None Significant height of swell waves m +106 106 None Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 109 None Secondary wave direction Degree true +110 110 None Secondary wave period s +111 111 None Net short-wave radiation flux (surface) W m**-2 +112 112 None Net long-wave radiation flux (surface) W m**-2 +113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 +114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 +115 115 None Long-wave radiation flux W m**-2 +116 116 None Short-wave radiation flux W m**-2 +117 117 None Global radiation flux W m**-2 +118 118 None Brightness temperature K +119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 +120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF (surface) Latent heat flux W m**-2 +122 sshf SSHF (surface) Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 124 None Momentum flux, u-component N m**-2 +125 125 None Momentum flux, v-component N m**-2 +126 126 None Wind mixing energy J +127 127 None Image data - +160 160 Unknown +255 - - Indicates a missing value - diff --git a/eccodes/definitions/grib1/2.0.2.table b/eccodes/definitions/grib1/2.0.2.table new file mode 100644 index 00000000..4091acf5 --- /dev/null +++ b/eccodes/definitions/grib1/2.0.2.table @@ -0,0 +1,128 @@ +1 p P Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 3 None Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 5 None ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 9 None Standard deviation of height m +10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) +11 t T Temperature K +12 12 None Virtual temperature K +13 13 None Potential temperature K +14 14 None Pseudo-adiabatic potential temperature K +15 15 None Maximum temperature K +16 16 None Minimum temperature K +17 17 None Dew-point temperature K +18 18 None Dew-point depression (or deficit) K +19 19 None Lapse rate K s**-1 +20 20 None Visibility m +21 21 None Radar spectra (1) - +22 22 None Radar spectra (2) - +23 23 None Radar spectra (3) - +24 24 None Parcel lifted index (to 500 hPa) K +25 25 None Temperature anomaly K +26 26 None Pressure anomaly Pa +27 27 None Geopotential height anomaly gpm +28 28 None Wave spectra (1) - +29 29 None Wave spectra (2) - +30 30 None Wave spectra (3) - +31 31 None Wind direction Degree true +32 32 None Wind speed m s**-1 +33 u U U-component of wind m s**-1 +34 v V V-component of wind m s**-1 +35 35 None Stream Function m**2 s**-1 +36 36 None Velocity Potential m**2 s**-1 +37 37 None Montgomery stream Function m**2 s**-1 +38 38 None Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 40 None Vertical velocity m s**-1 +41 41 None Absolute vorticity s**-1 +42 42 None Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 45 None Vertical u-component shear s**-1 +46 46 None Vertical v-component shear s**-1 +47 47 None Direction of current Degree true +48 48 None Speed of current m s**-1 +49 49 None U-component of current m s**-1 +50 50 None V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 53 None Humidity mixing ratio kg m**-2 +54 54 None Precipitable water kg m**-2 +55 55 None Vapour pressure Pa +56 56 None Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 59 None Precipitation rate kg m**-2 s**-1 +60 60 None Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 62 LSP Large scale precipitation kg m**-2 +63 63 None Convective precipitation (water) kg m**-2 +64 64 None Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalentof accumulated snow depth kg m**-2 +66 sd SD Snow depth m (of water equivalent) +67 67 None Mixed layer depth m +68 68 None Transient thermocline depth m +69 69 None Main thermocline depth m +70 70 None Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 clwc CLWC Cloud liquid water content kg kg**-1 +77 77 None Best lifted index (to 500 hPa) K +78 csf CSF Convective snow-fall kg m**-2 +79 lsf LSF Large scale snow-fall kg m**-2 +80 80 None Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 82 None Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Surface temperature of soil K +86 ssw SSW Soil moisture content kg m**-2 +87 veg VEG Percentage of vegetation % +88 88 None Salinity kg kg**-1 +89 89 None Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 91 None Ice cover (1=land, 0=sea) (0 - 1) +92 92 None Ice thickness m +93 93 None Direction of ice drift Degree true +94 94 None Speed of ice drift m s*-1 +95 95 None U-component of ice drift m s**-1 +96 96 None V-component of ice drift m s**-1 +97 97 None Ice growth rate m s**-1 +98 98 None Ice divergence s**-1 +99 99 None Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 104 None Direction of swell waves Degree true +105 105 None Significant height of swell waves m +106 106 None Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 109 None Secondary wave direction Degree true +110 110 None Secondary wave period s +111 111 None Net short-wave radiation flux (surface) W m**-2 +112 112 None Net long-wave radiation flux (surface) W m**-2 +113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 +114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 +115 115 None Long-wave radiation flux W m**-2 +116 116 None Short-wave radiation flux W m**-2 +117 117 None Global radiation flux W m**-2 +118 118 None Brightness temperature K +119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 +120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF (surface) Latent heat flux W m**-2 +122 sshf SSHF (surface) Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 124 None Momentum flux, u-component N m**-2 +125 125 None Momentum flux, v-component N m**-2 +126 126 None Wind mixing energy J +127 127 None Image data - +255 - - Indicates a missing value - diff --git a/eccodes/definitions/grib1/2.0.3.table b/eccodes/definitions/grib1/2.0.3.table new file mode 100644 index 00000000..70df87f8 --- /dev/null +++ b/eccodes/definitions/grib1/2.0.3.table @@ -0,0 +1,129 @@ +1 p P Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 3 None Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 5 None ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 9 None Standard deviation of height m +10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) +11 t T Temperature K +12 12 None Virtual temperature K +13 13 None Potential temperature K +14 14 None Pseudo-adiabatic potential temperature K +15 15 None Maximum temperature K +16 16 None Minimum temperature K +17 17 None Dew-point temperature K +18 18 None Dew-point depression (or deficit) K +19 19 None Lapse rate K s**-1 +20 20 None Visibility m +21 21 None Radar spectra (1) - +22 22 None Radar spectra (2) - +23 23 None Radar spectra (3) - +24 24 None Parcel lifted index (to 500 hPa) K +25 25 None Temperature anomaly K +26 26 None Pressure anomaly Pa +27 27 None Geopotential height anomaly gpm +28 28 None Wave spectra (1) - +29 29 None Wave spectra (2) - +30 30 None Wave spectra (3) - +31 31 None Wind direction Degree true +32 32 None Wind speed m s**-1 +33 u U U-component of wind m s**-1 +34 v V V-component of wind m s**-1 +35 35 None Stream Function m**2 s**-1 +36 36 None Velocity Potential m**2 s**-1 +37 37 None Montgomery stream Function m**2 s**-1 +38 38 None Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 40 None Vertical velocity m s**-1 +41 41 None Absolute vorticity s**-1 +42 42 None Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 45 None Vertical u-component shear s**-1 +46 46 None Vertical v-component shear s**-1 +47 47 None Direction of current Degree true +48 48 None Speed of current m s**-1 +49 49 None U-component of current m s**-1 +50 50 None V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 53 None Humidity mixing ratio kg m**-2 +54 54 None Precipitable water kg m**-2 +55 55 None Vapour pressure Pa +56 56 None Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 59 None Precipitation rate kg m**-2 s**-1 +60 60 None Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 62 LSP Large scale precipitation kg m**-2 +63 63 None Convective precipitation (water) kg m**-2 +64 64 None Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalentof accumulated snow depth kg m**-2 +66 sd SD Snow depth m (of water equivalent) +67 67 None Mixed layer depth m +68 68 None Transient thermocline depth m +69 69 None Main thermocline depth m +70 70 None Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 clwc CLWC Cloud liquid water content kg kg**-1 +77 77 None Best lifted index (to 500 hPa) K +78 csf CSF Convective snow-fall kg m**-2 +79 lsf LSF Large scale snow-fall kg m**-2 +80 80 None Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 82 None Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Surface temperature of soil K +86 ssw SSW Soil moisture content kg m**-2 +87 veg VEG Percentage of vegetation % +88 88 None Salinity kg kg**-1 +89 89 None Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 91 None Ice cover (1=land, 0=sea) (0 - 1) +92 92 None Ice thickness m +93 93 None Direction of ice drift Degree true +94 94 None Speed of ice drift m s*-1 +95 95 None U-component of ice drift m s**-1 +96 96 None V-component of ice drift m s**-1 +97 97 None Ice growth rate m s**-1 +98 98 None Ice divergence s**-1 +99 99 None Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 104 None Direction of swell waves Degree true +105 105 None Significant height of swell waves m +106 106 None Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 109 None Secondary wave direction Degree true +110 110 None Secondary wave period s +111 111 None Net short-wave radiation flux (surface) W m**-2 +112 112 None Net long-wave radiation flux (surface) W m**-2 +113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 +114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 +115 115 None Long-wave radiation flux W m**-2 +116 116 None Short-wave radiation flux W m**-2 +117 117 None Global radiation flux W m**-2 +118 118 None Brightness temperature K +119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 +120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF (surface) Latent heat flux W m**-2 +122 sshf SSHF (surface) Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 124 None Momentum flux, u-component N m**-2 +125 125 None Momentum flux, v-component N m**-2 +126 126 None Wind mixing energy J +127 127 None Image data - +160 160 Unknown +255 - - Indicates a missing value - diff --git a/eccodes/definitions/grib1/2.128.table b/eccodes/definitions/grib1/2.128.table new file mode 100644 index 00000000..7d0b076b --- /dev/null +++ b/eccodes/definitions/grib1/2.128.table @@ -0,0 +1,255 @@ +# CODE TABLE 2, 128 Flag indication relative to section 2 and 3 +001 001 STRF Stream function m**2 s**-1 - +002 002 VPOT Velocity potential m**2 s**-1 - +003 003 PT Potential temperature K - +004 004 EQPT Equivalent potential temperature K - +005 005 SEPT Saturated equivalent potential temperature K - +006 006 None Reserved for Metview - - +007 007 None Reserved for Metview - - +008 008 None Reserved for Metview - - +009 009 None Reserved for Metview - - +010 010 None Reserved for Metview - - +011 011 UDVW U component of divergent wind m s**-1 - +012 012 VDVW V component of divergent wind m s**-1 - +013 013 URTW U component of rotational wind m s**-1 - +014 014 VRTW V component of rotational wind m s**-1 - +015 015 None Reserved for Metview - - +016 016 None Reserved for Metview - - +017 017 None Reserved for Metview - - +018 018 None Reserved for Metview - - +019 019 None Reserved for Metview - - +020 020 None Reserved for Metview - - +021 021 UCTP Unbalanced component of temperature K - +022 022 UCLN Unbalanced component of logarithm of surface pressure - - +023 023 UCDV Unbalanced component of divergence s**-1 - +024 024 None Reserved for future unbalanced components - - +025 025 None Reserved for future unbalanced components - - +026 026 CL Lake cover (0-1) - +027 027 CVL Low vegetation cover (0-1) - +028 028 CVH High vegetation cover (0-1) - +029 029 TVL Type of low vegetation - Table index +030 030 TVH Type of high vegetation - Table index +031 031 CI Sea-ice cover (0-1) - +032 032 ASN Snow albedo (0-1) - +033 033 RSN Snow density kg m**-3 - +034 034 SSTK Sea surface temperature K K +035 035 ISTL1 Ice surface temperature layer 1 K - +036 036 ISTL2 Ice surface temperature layer 2 K - +037 037 ISTL3 Ice surface temperature layer 3 K - +038 038 ISTL4 Ice surface temperature layer 4 K - +039 039 SWVL1 Volumetric soil water layer 1 m**3 m**-3 - +040 040 SWVL2 Volumetric soil water layer 2 m**3 m**-3 - +041 041 SWVL3 Volumetric soil water layer 3 m**3 m**-3 - +042 042 SWVL4 Volumetric soil water layer 4 m**3 m**-3 - +043 043 SLT Soil type - - +044 044 ES Snow evaporation m of water Accumulated field +045 045 SMLT Snowmelt m of water Accumulated field +046 046 SDUR Solar duration s - +047 047 DSRP Direct solar radiation w m**-2 Incident on a plane perpendicular to the Sun's direction +048 048 MAGSS Magnitude of surface stress N m**-2 s Accumulated field +049 049 10FG 10 metre wind gust m s**-1 Maximum since previous post-processing +050 050 LSPF Large-scale precipitation fraction s Accumulated field +051 051 MX2T24 Maximum 2 metre temperature K During previous 24 hours +052 052 - Minimum 2 metre temperature K During previous 24 hours +053 053 MONT Montgomery potential m**2 s**-2 - +054 054 PRES Pressure Pa - +055 055 - Mean 2 metre temperature in past 24 hours K 6-hourly intervals +056 056 MN2D24 Mean 2 metre dewpoint temperature in past 24 hours K 6-hourly intervals +57 57 UVB Downward UV radiation at the surface w m**-2 s Ultra-violet band B. Accumulated field. +58 58 PAR Photosynthetically active radiation at the surface w m**-2 s Accumulated field. +59 59 CAPE Convective available potential energy J kg**-1 - +060 060 PV Potential vorticity K m**2 kg**-1 s**-1 - +061 061 TPO Total precipitation from observations Millimetres*100 + number of stations Rainfall amount found by averaging over a number of observing stations +062 062 OBCT Observation count - Count of observations used in calculating value at a gridpoint +063 063 - Start time for skin temperature difference s Seconds from reference time +064 064 - Finish time for skin temperature difference s Seconds from reference time +065 065 - Skin temperature difference K - +066 066 - Leaf area index, low vegetation m**2 / m**2 - +067 067 - Leaf area index, high vegetation m**2 / m**2 - +068 068 - Minimum stomatal resistance, low vegetation s m**2 +069 069 - Minimum stomatal resistance, high vegetation s m**2 +070 070 - Biome cover, low vegetation [0,1] +071 071 - Biome cover, high vegetation [0,1] +72 72 - Unused +73 73 - Unused +74 74 - Unused +75 75 - Unused +76 76 - Unused +77 77 - Unused +78 78 TCLW Total column liquid water kg m**-2 +79 79 TCIW Total column ice water kg m**-2 +80 80 80 Experimental product Undefined Contents may vary +81 81 81 Experimental product Undefined Contents may vary +82 82 82 Experimental product Undefined Contents may vary +83 83 83 Experimental product Undefined Contents may vary +84 84 84 Experimental product Undefined Contents may vary +85 85 85 Experimental product Undefined Contents may vary +86 86 86 Experimental product Undefined Contents may vary +87 87 87 Experimental product Undefined Contents may vary +88 88 88 Experimental product Undefined Contents may vary +89 89 89 Experimental product Undefined Contents may vary +90 90 90 Experimental product Undefined Contents may vary +91 91 91 Experimental product Undefined Contents may vary +92 92 92 Experimental product Undefined Contents may vary +93 93 93 Experimental product Undefined Contents may vary +94 94 94 Experimental product Undefined Contents may vary +95 95 95 Experimental product Undefined Contents may vary +96 96 96 Experimental product Undefined Contents may vary +97 97 97 Experimental product Undefined Contents may vary +98 98 98 Experimental product Undefined Contents may vary +99 99 99 Experimental product Undefined Contents may vary +100 100 100 Experimental product Undefined Contents may vary +101 101 101 Experimental product Undefined Contents may vary +102 102 102 Experimental product Undefined Contents may vary +103 103 103 Experimental product Undefined Contents may vary +104 104 104 Experimental product Undefined Contents may vary +105 105 105 Experimental product Undefined Contents may vary +106 106 106 Experimental product Undefined Contents may vary +107 107 107 Experimental product Undefined Contents may vary +108 108 108 Experimental product Undefined Contents may vary +109 109 109 Experimental product Undefined Contents may vary +110 110 110 Experimental product Undefined Contents may vary +111 111 111 Experimental product Undefined Contents may vary +112 112 112 Experimental product Undefined Contents may vary +113 113 113 Experimental product Undefined Contents may vary +114 114 114 Experimental product Undefined Contents may vary +115 115 115 Experimental product Undefined Contents may vary +116 116 116 Experimental product Undefined Contents may vary +117 117 117 Experimental product Undefined Contents may vary +118 118 118 Experimental product Undefined Contents may vary +119 119 119 Experimental product Undefined Contents may vary +121 121 MX2T6 Maximum temperature at 2 metres K During previous 6 hours +122 122 MN2T6 Minimum temperature at 2 metres K During previous 6 hours +123 123 10FG6 10 metre wind gust m s**-1 During previous 6 hours +124 124 - Unused - - +125 125 - Vertically integrated total energy J m**-2 Integrated over a number of model levels +126 126 - Generic parameter for sensitive area prediction Various Originating centre dependent +127 127 AT Atmospheric tide - Not GRIB data +128 128 BV Budget values - Not GRIB data +129 129 Z Geopotential m**2 s**-2 At the surface: orography +130 130 T Temperature K - +131 131 U U velocity m s**-1 - +132 132 V V velocity m s**-1 - +133 133 Q Specific humidity kg kg**-1 - +134 134 SP Surface pressure Pa - +135 135 W Vertical velocity Pa s**-1 - +136 136 TCW Total column water kg m**-2 Liquid + ice + vapour +137 137 TCWV Total column water vapour kg m**-2 - +138 138 VO Vorticity (relative) s**-1 - +139 139 STL1 Soil temperature level 1 K Soil temperature (ST) before 19930804 +140 140 SWL1 Soil wetness level 1 m of water Surface soil wetness (SSW) before 19930804 +141 141 SD Snow depth m of water equivalent - +142 142 LSP Large scale precipitation m Accumulated field +143 143 CP Convective precipitation m Accumulated field +144 144 SF Snowfall (convective + stratiform) m of water equivalent Accumulated field +145 145 BLD Boundary layer dissipation W m**-2 s Accumulated field +146 146 SSHF Surface sensible heat flux W m**-2 s Accumulated field +147 147 SLHF Surface latent heat flux W m**-2 s Accumulated field +148 148 CHNK Charnock - Surface stress (SS) before 19980519 +149 149 SNR Surface net radiation W m**-2 s Accumulated field +150 150 TNR Top net radiation - - +151 151 MSL Mean sea level pressure Pa - +152 152 LNSP Logarithm of surface pressure - - +153 153 SWHR Short-wave heating rate K Accumulated field +154 154 LWHR Long-wave heating rate K Accumulated field +155 155 D Divergence s**-1 - +156 156 GH Height m Geopotential height +157 157 R Relative humidity % - +158 158 TSP Tendency of surface pressure Pa s**-1 - +159 159 BLH Boundary layer height m - +160 160 SDOR Standard deviation of orography - - +161 161 ISOR Anisotropy of sub-gridscale orography - - +162 162 ANOR Angle of sub-gridscale orography rad - +163 163 SLOR Slope of sub-gridscale orography - - +164 164 TCC Total cloud cover (0 - 1) - +165 165 10U 10 metre U wind component m s**-1 - +166 166 10V 10 metre V wind component m s**-1 - +167 167 2T 2 metre temperature K - +168 168 2D 2 metre dewpoint temperature K - +169 169 SSRD Surface solar radiation downwards W m**-2 s Accumulated field +170 170 STL2 Soil temperature level 2 K Deep soil temperature (DST) before 19930804 +171 171 SWL2 Soil wetness level 2 m of water Deep soil wetness (DSW) before 19930804. Scaled: depth surf water layer 7cm deep +172 172 LSM Land-sea mask (0, 1) - +173 173 SR Surface roughness m - +174 174 AL Albedo (0 - 1) - +175 175 STRD Surface thermal radiation downwards W m**-2 s Accumulated field +176 176 SSR Surface solar radiation W m**-2 s Accumulated field +177 177 STR Surface thermal radiation W m**-2 s Accumulated field +178 178 TSR Top solar radiation W m**-2 s Accumulated field +179 179 TTR Top thermal radiation W m**-2 s Accumulated field +180 180 EWSS East-West surface stress N m**-2 s Accumulated field +181 181 NSSS North-South surface stress N m**-2 s Accumulated field +182 182 E Evaporation m of water Accumulated field +183 183 STL3 Soil temperature level 3 K Climatological deep soil temperature (CDST) before 19930804 +184 184 SWL3 Soil wetness level 3 m of water Climatological deep soil wetness (CDSW) before 19930804.Scaled depth surf water 7cm deep +185 185 CCC Convective cloud cover (0 - 1) - +186 186 LCC Low cloud cover (0 - 1) - +187 187 MCC Medium cloud cover (0 - 1) - +188 188 HCC High cloud cover (0 - 1) - +189 189 SUND Sunshine duration s Accumulated field +190 190 EWOV East-West component of sub-grid orographic variance m**2 - +191 191 NSOV North-South component of sub-grid orographic variance m**2 - +192 192 NWOV North-West/South-East component of sub-grid orographic variance m**2 - +193 193 NEOV North-East/South-West component of sub-grid orographic variance m**2 - +194 194 BTMP Brightness temperature K - +195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s Accumulated field +196 196 MGWS Meridional component of gravity wave stress N m**-2 s Accumulated field +197 197 GWD Gravity wave dissipation W m**-2 s Accumulated field +198 198 SRC Skin reservoir content m of water - +199 199 VEG Vegetation fraction (0 - 1) - +200 200 VSO Variance of sub-gridscale orography m**2 - +201 201 MX2T Maximum temperature at 2 metres since previous post-processing K - +202 202 MN2T Minimum temperature at 2 metres since previous post-processing K - +203 203 O3 Ozone mass mixing ratio kg kg**-1 - +204 204 PAW Precipiation analysis weights - - +205 205 RO Runoff m Accumulated field +206 206 TCO3 Total column ozone kg m**-2 Before 20010612 was in Dobsons. 1 Dobson = 2.1415E-5 kg m**-2 +207 207 10SI 10 metre wind speed m s**-1 - +208 208 TSRC Top net solar radiation, clear sky W m**-2 s Accumulated field +209 209 TTRC Top net thermal radiation, clear sky W m**-2 s Accumulated field +210 210 SSRC Surface net solar radiation, clear sky W m**-2 s Accumulated field +211 211 STRC Surface net thermal radiation, clear sky W m**-2 s Accumulated field +212 212 SI Solar insolation W m**-2 s Accumulated field +213 213 - Unused - - +214 214 DHR Diabatic heating by radiation K - +215 215 DHVD Diabatic heating by vertical diffusion K - +216 216 DHCC Diabatic heating by cumulus convection K - +217 217 DHLC Diabatic heating large-scale condensation K - +218 218 VDZW Vertical diffusion of zonal wind m s**-1 - +219 219 VDMW Vertical diffusion of meridional wind m s**-1 - +220 220 EWGD East-West gravity wave drag tendency m s**-1 - +221 221 NSGD North-South gravity wave drag tendency m s**-1 - +222 222 CTZW Convective tendency of zonal wind m s**-1 - +223 223 CTMW Convective tendency of meridional wind m s**-1 - +224 224 VDH Vertical diffusion of humidity kg kg**-1 - +225 225 HTCC Humidity tendency by cumulus convection kg kg**-1 - +226 226 HTLC Humidity tendency large-scale condensation kg kg**-1 - +227 227 CRNH Change from removing negative humidity kg kg**-1 - +228 228 TP Total precipitation m Accumulated +229 229 IEWS Instantaneous X surface stress N m**-2 - +230 230 INSS Instantaneous Y surface stress N m**-2 - +231 231 ISHF Instantaneous surface heat flux W m**-2 - +232 232 IE Instantaneous moisture flux kg m**-2 s Evaporation +233 233 ASQ Apparent surface humidity kg kg**-1 - +234 234 LSRH Logarithm of surface roughness length for heat - - +235 235 SKT Skin temperature K - +236 236 STL4 Soil temperature level 4 K - +237 237 SWL4 Soil wetness level 4 m Scaled to depth of surface water layer 7cm deep +238 238 TSN Temperature of snow layer K - +239 239 CSF Convective snowfall m of water equivalent Accumulated field +240 240 LSF Large-scale snowfall m of water equivalent Accumulated field +241 241 ACF Accumulated cloud fraction tendency (-1 to 1) - +242 242 ALW Accumulated liquid water tendency (-1 to 1) - +243 243 FAL Forecast albedo (0 - 1) - +244 244 FSR Forecast surface roughness m - +245 245 FLSR Forecast log of surface roughness for heat - - +246 246 CLWC Cloud liquid water content kg kg**-1 - +247 247 CIWC Cloud ice water content kg kg**-1 - +248 248 CC Fraction of cloud cover (0 - 1) - +249 249 AIW Accumulated ice water tendency (-1 to 1) - +250 250 ICE Ice age 1,0 0 first-year, 1 multi-year +251 251 ATTE Adiabatic tendency of temperature K - +252 252 ATHE Adiabatic tendency of humidity kg kg**-1 - +253 253 ATZE Adiabatic tendency of zonal wind m s**-1 - +254 254 ATMW Adiabatic tendency of meridional wind m s**-1 - +255 255 - Indicates a missing value - - diff --git a/eccodes/definitions/grib1/2.233.1.table b/eccodes/definitions/grib1/2.233.1.table new file mode 100644 index 00000000..a21c1c59 --- /dev/null +++ b/eccodes/definitions/grib1/2.233.1.table @@ -0,0 +1,154 @@ +0 Reserved RESERVED Reserved Reserved +1 pres PRES Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 ptend PTEND Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 icaht ICAHT ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 hstdv HSTDV Standard deviation of height m +10 tco3 TCO3 Total column ozone Dobson +11 t T Temperature K +12 vptmp VPTMP Virtual potential temperature K +13 pt PT Potential temperature K +14 papt PAPT Pseudo-adiabatic potential temperature K +15 tmax TMAX Maximum temperature K +16 tmin TMIN Minimum temperature K +17 td TD Dew point temperature K +18 depr DEPR Dew point depression (or deficit) K +19 lapr LAPR Lapse rate K m**-1 +20 vis VIS Visibility m +21 rdsp1 RDSP1 Radar spectra (1) - +22 rdsp2 RDSP2 Radar spectra (2) - +23 rdsp3 RDSP3 Radar spectra (3) - +24 pli PLI Parcel lifted index (to 500 hPa) K +25 ta TA Temperature anomaly K +26 presa PRESA Pressure anomaly Pa +27 gpa GPA Geopotential height anomaly gpm +28 wvsp1 WVSP1 Wave spectra (1) - +29 wvsp2 WVSP2 Wave spectra (2) - +30 wvsp3 WVSP3 Wave spectra (3) - +31 wdir WDIR Wind direction Degree true +32 ws WS Wind speed m s**-1 +33 u U u-component of wind m s**-1 +34 v V v-component of wind m s**-1 +35 strf STRF Stream function m2 s**-1 +36 vp VP Velocity potential m2 s**-1 +37 mntsf MNTSF Montgomery stream function m**2 s**-1 +38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 +39 w W Pressure Vertical velocity Pa s**-1 +40 tw TW Vertical velocity m s**-1 +41 absv ABSV Absolute vorticity s**-1 +42 absd ABSD Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 vucsh VUCSH Vertical u-component shear s**-1 +46 vvcsh VVCSH Vertical v-component shear s**-1 +47 dirc DIRC Direction of current Degree true +48 spc SPC Speed of current m s**-1 +49 ucurr UCURR U-component of current m s**-1 +50 vcurr VCURR V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 mixr MIXR Humidity mixing ratio kg kg**-1 +54 pwat PWAT Precipitable water kg m**-2 +55 vp VP Vapour pressure Pa +56 satd SATD Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 prate PRATE Precipitation rate kg m**-2 s**-1 +60 tstm TSTM Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 lsp LSP Large scale precipitation kg m**-2 +63 acpcp ACPCP Convective precipitation (water) kg m**-2 +64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalent of accumulated snow depth kg m**-2 +66 sd SD Snow depth m +67 mld MLD Mixed layer depth m +68 tthdp TTHDP Transient thermocline depth m +69 mthd MTHD Main thermocline depth m +70 mtha MTHA Main thermocline anomaly m +71 tcc TCC Total cloud cover (0 - 1) +72 ccc CCC Convective cloud cover (0 - 1) +73 lcc LCC Low cloud cover (0 - 1) +74 mcc MCC Medium cloud cover (0 - 1) +75 hcc HCC High cloud cover (0 - 1) +76 cwat CWAT Cloud water kg m**-2 +77 bli BLI Best lifted index (to 500 hPa) K +78 csf CSF Convective snowfall kg m**-2 +79 lsf LSF Large scale snowfall kg m**-2 +80 wtmp WTMP Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 dslm DSLM Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo % +85 st ST Soil temperature K +86 sm SM Soil moisture content kg m**-2 +87 veg VEG Vegetation % +88 s S Salinity kg kg**-1 +89 den DEN Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) +92 icetk ICETK Ice thickness m +93 diced DICED Direction of ice drift Degree true +94 siced SICED Speed of ice drift m s**-1 +95 uice UICE U-component of ice drift m s**-1 +96 vice VICE V-component of ice drift m s**-1 +97 iceg ICEG Ice growth rate m s**-1 +98 iced ICED Ice divergence s**-1 +99 snom SNOM Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean Direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 swdir SWDIR Direction of swell waves Degree true +105 swell SWELL Significant height of swell waves m +106 swper SWPER Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 dirsw DIRSW Secondary wave direction Degree true +110 swp SWP Secondary wave mean period s +111 nswrs NSWRS Net short-wave radiation flux (surface) W m**-2 +112 nlwrs NLWRS Net long-wave radiation flux (surface) W m**-2 +113 nswrt NSWRT Net short-wave radiation flux (atmosph.top) W m**-2 +114 nlwrt NLWRT Net long-wave radiation flux (atmosph.top) W m**-2 +115 lwavr LWAVR Long-wave radiation flux W m**-2 +116 swavr SWAVR Short-wave radiation flux W m**-2 +117 grad GRAD Global radiation flux W m**-2 +118 btmp BTMP Brightness temperature K +119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 +120 swrad SWRAD Radiance (with respect to wave length) W m-**3 sr**-1 +121 slhf SLHF Latent heat flux W m**-2 +122 sshf SSHF Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 uflx UFLX Momentum flux, u-component N m**-2 +125 vflx VFLX Momentum flux, v-component N m**-2 +126 wmixe WMIXE Wind mixing energy J +127 imgd IMGD Image data +128 mofl MOFL Momentum flux Pa +135 maxv MAXV Max wind speed (at 10m) m s**-1 +140 tland TLAND Temperature over land K +141 qland QLAND Specific humidity over land kg kg**-1 +142 rhland RHLAND Relative humidity over land Fraction +143 dptland DPTLAND Dew point over land K +160 slfr SLFR Slope fraction - +161 shfr SHFR Shadow fraction - +162 rsha RSHA Shadow parameter A - +163 rshb RSHB Shadow parameter B - +165 susl SUSL Surface slope - +166 skwf SKWF Sky wiew factor - +167 frasp FRASP Fraction of aspect - +190 asn ASN Snow albedo - +191 dsn DSN Snow density - +192 watcn WATCN Water on canopy level kg m**-2 +193 ssi SSI Surface soil ice m**3 m**-3 +195 sltyp SLTYP Soil type code - +196 fol FOL Fraction of lake - +197 fof FOF Fraction of forest - +198 fool FOOL Fraction of open land - +199 vgtyp VGTYP Vegetation type (Olsson land use) - +200 tke TKE Turbulent Kinetic Energy J kg**-1 +208 mssso MSSSO Maximum slope of smallest scale orography rad +209 sdsso SDSSO Standard deviation of smallest scale orography gpm +228 gust GUST Max wind gust m s**-1 diff --git a/eccodes/definitions/grib1/2.233.253.table b/eccodes/definitions/grib1/2.233.253.table new file mode 100644 index 00000000..2e2aad57 --- /dev/null +++ b/eccodes/definitions/grib1/2.233.253.table @@ -0,0 +1,214 @@ +1 pres PRES Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 ptend PTEND Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 icaht ICAHT ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 hstdv HSTDV Standard deviation of height m +10 tco3 TCO3 Total column ozone Dobson +11 t T Temperature K +12 vptmp VPTMP Virtual potential temperature K +13 pt PT Potential temperature K +14 papt PAPT Pseudo-adiabatic potential temperature K +15 tmax TMAX Maximum temperature K +16 tmin TMIN Minimum temperature K +17 td TD Dew point temperature K +18 depr DEPR Dew point depression (or deficit) K +19 lapr LAPR Lapse rate K m**-1 +20 vis VIS Visibility m +21 rdsp1 RDSP1 Radar spectra (1) - +22 rdsp2 RDSP2 Radar spectra (2) - +23 rdsp3 RDSP3 Radar spectra (3) - +24 pli PLI Parcel lifted index (to 500 hPa) K +25 ta TA Temperature anomaly K +26 presa PRESA Pressure anomaly Pa +27 gpa GPA Geopotential height anomaly gpm +28 wvsp1 WVSP1 Wave spectra (1) - +29 wvsp2 WVSP2 Wave spectra (2) - +30 wvsp3 WVSP3 Wave spectra (3) - +31 wdir WDIR Wind direction Degree true +32 ws WS Wind speed m s**-1 +33 u U u-component of wind m s**-1 +34 v V v-component of wind m s**-1 +35 strf STRF Stream function m2 s**-1 +36 vp VP Velocity potential m2 s**-1 +37 mntsf MNTSF Montgomery stream function m**2 s**-1 +38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 +39 w W Pressure Vertical velocity Pa s**-1 +40 tw TW Vertical velocity m s**-1 +41 absv ABSV Absolute vorticity s**-1 +42 absd ABSD Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 vucsh VUCSH Vertical u-component shear s**-1 +46 vvcsh VVCSH Vertical v-component shear s**-1 +47 dirc DIRC Direction of current Degree true +48 spc SPC Speed of current m s**-1 +49 ucurr UCURR U-component of current m s**-1 +50 vcurr VCURR V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 mixr MIXR Humidity mixing ratio kg kg**-1 +54 pwat PWAT Precipitable water kg m**-2 +55 vp VP Vapour pressure Pa +56 satd SATD Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 prate PRATE Precipitation rate kg m**-2 s**-1 +60 tstm TSTM Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 lsp LSP Large scale precipitation kg m**-2 +63 acpcp ACPCP Convective precipitation (water) kg m**-2 +64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalent of accumulated snow depth kg m**-2 +66 sd SD Snow depth m +67 mld MLD Mixed layer depth m +68 tthdp TTHDP Transient thermocline depth m +69 mthd MTHD Main thermocline depth m +70 mtha MTHA Main thermocline anomaly m +71 tcc TCC Total cloud cover (0 - 1) +72 ccc CCC Convective cloud cover (0 - 1) +73 lcc LCC Low cloud cover (0 - 1) +74 mcc MCC Medium cloud cover (0 - 1) +75 hcc HCC High cloud cover (0 - 1) +76 cwat CWAT Cloud water kg m**-2 +77 bli BLI Best lifted index (to 500 hPa) K +78 csf CSF Convective snowfall kg m**-2 +79 lsf LSF Large scale snowfall kg m**-2 +80 wtmp WTMP Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 dslm DSLM Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Soil temperature K +86 sm SM Soil moisture content kg m**-2 +87 veg VEG Vegetation % +88 s S Salinity kg kg**-1 +89 den DEN Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) +92 icetk ICETK Ice thickness m +93 diced DICED Direction of ice drift Degree true +94 siced SICED Speed of ice drift m s**-1 +95 uice UICE U-component of ice drift m s**-1 +96 vice VICE V-component of ice drift m s**-1 +97 iceg ICEG Ice growth rate m s**-1 +98 iced ICED Ice divergence s**-1 +99 snom SNOM Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 swdir SWDIR Direction of swell waves Degree true +105 swell SWELL Significant height of swell waves m +106 swper SWPER Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 dirsw DIRSW Secondary wave direction Degree true +110 swp SWP Secondary wave mean period s +111 nswrs NSWRS Net short-wave radiation flux (surface) W m**-2 +112 nlwrs NLWRS Net long-wave radiation flux (surface) W m**-2 +113 nswrt NSWRT Net short-wave radiation flux (atmosph.top) W m**-2 +114 nlwrt NLWRT Net long-wave radiation flux (atmosph.top) W m**-2 +115 lwavr LWAVR Long-wave radiation flux W m**-2 +116 swavr SWAVR Short-wave radiation flux W m**-2 +117 grad GRAD Global radiation flux W m**-2 +118 btmp BTMP Brightness temperature K +119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 +120 swrad SWRAD Radiance (with respect to wave length) W m-**3 sr**-1 +121 slhf SLHF Latent heat flux W m**-2 +122 sshf SSHF Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 uflx UFLX Momentum flux, u-component N m**-2 +125 vflx VFLX Momentum flux, v-component N m**-2 +126 wmixe WMIXE Wind mixing energy J +127 imgd IMGD Image data - +128 armsp ARMSP Analysed RMS of PHI (CANARI) m**2 s**-2 +129 frmsp FRMSP Forecast RMS of PHI (CANARI) m**2 s**-2 +130 cssw CSSW SW net clear sky rad W m**-2 +131 cslw CSLW LW net clear sky rad W m**-2 +132 lhe LHE Latent heat flux through evaporation W m**-2 +133 msca MSCA Mask of significant cloud amount s**-1 +135 icei ICEI Icing index - +136 psct PSCT Pseudo satellite image: cloud top temperature (infrared) - +137 pstb PSTB Pseudo satellite image: water vapour Tb - +138 pstbc PSTBC Pseudo satellite image: water vapour Tb + correction for clouds - +139 pscw PSCW Pseudo satellite image: cloud water reflectivity (visible) - +140 dni DNI Direct normal irradiance W m**-2 +144 prtp PRTP Precipitation Type - +158 mrad MRAD Surface downward moon radiation - +160 cape CAPE CAPE out of the model J kg-1 +161 xhail XHAIL AROME hail diagnostic kg m**-2 +162 ugst UGST Gust, u-component m s*-1 +163 vgst VGST Gust, v-component m s*-1 +166 mcn MCN MOCON out of the model kg kg**-1 s**-1 +167 totqv TOTQV Total water vapour kg kg**-1 +170 bt_oz_cs BT_OZ_CS Brightness temperature OZ clear K +171 bt_oz_cl BT_OZ_CL Brightness temperature OZ cloud K +172 bt_ir_cs BT_IR_CS Brightness temperature IR clear K +173 bt_ir_cl BT_IR_CL Brightness temperature IR cloud K +174 bt_wv_cs BT_WV_CS Brightness temperature WV clear K +175 bt_wv_cl BT_WV_CL Brightness temperature WV cloud K +181 rain RAIN Rain kg m**-2 +182 srain SRAIN Stratiform rain kg m**-2 +183 cr CR Convective rain kg m**-2 +184 snow SNOW Snow kg m**-2 +185 tpsolid TPSOLID Total solid precipitation kg m**-2 +186 cb CB Cloud base m +187 ct CT Cloud top m +188 ful FUL Fraction of urban land % +190 asn ASN Snow albedo (0-1) +191 rsn RSN Snow density kg m**-3 +192 w_i W_I Water on canopy (Interception content) kg m**-2 +193 w_so_ice W_SO_ICE Soil ice kg m**-2 +195 gwdu GWDU Gravity wave stress U-comp kg m**-1 s**-1 +196 gwdv GWDV Gravity wave stress V-comp kg m**-1 s**-1 +200 tke TKE TKE m**2 s**-2 +201 grpl GRPL Graupel kg m**-2 +204 hail HAIL Hail kg m**-2 +210 refl REFL Simulated reflectivity dBz +211 lgt LGT Lightning - +212 pdep PDEP Pressure departure Pa +213 vdiv VDIV Vertical Divergence s**-1 +214 upom UPOM Updraft omega ms*-1 +215 dnom DNOM Downdraft omega ms*-1 +216 upmf UPMF Updraft mesh fraction - +217 dnmf DNMF Downdraft mesh fraction - +219 alns ALNS Surface albedo for non snow covered areas - +220 stdo STDO Standard deviation of orography * g m**2s**-2 +221 atop ATOP Anisotropy coeff of topography rad +222 dtop DTOP Direction of main axis of topography - +223 srbs SRBS Roughness length of bare surface * g m2 2**-2 +224 srveg SRVEG Roughness length for vegetation * g m2 2**-2 +225 clfr CLFR Fraction of clay within soil - +226 slfr SLFR Fraction of sand within soil - +227 vegmax VEGMAX Maximum - of vegetation - +228 fg FG Gust m s**-1 +229 alb ALB Albedo of bare ground - +230 alv ALV Albedo of vegetation - +231 smnr SMNR Stomatal minimum resistance s m**-1 +232 lai LAI Leaf area index m**2 m**-2 +234 dvi DVI Dominant vegetation index - +235 se SE Surface emissivity - +236 sdmax SDMAX Maximum soil depth m +237 sld SLD Soil depth m +238 swv SWV Soil wetness kg m**-2 +239 zt ZT Thermal roughness length * g m +240 rev REV Resistance to evapotransiration s m**-1 +241 rmn RMN Minimum relative moisture at 2 meters - +242 rmx RMX Maximum relative moisture at 2 meters - +243 dutp DUTP Duration of total precipitation s +244 lhsub LHSUB Latent Heat Sublimation J kg**-1 +245 wevap WEVAP Water evaporation kg m**-2 +246 snsub SNSUB Snow Sublimation kg m**-2 +247 shis SHIS Snow history ??? +248 ao AO A Ozone kg kg**-1 +249 bo BO B Ozone kg kg**-1 +250 co CO C Ozone kg kg**-1 +251 aers AERS Surface aerosol sea kg kg**-1 +252 aerl AERL Surface aerosol land kg kg**-1 +253 aerc AERC Surface aerosol soot (carbon) kg kg**-1 +254 aerd AERD Surface aerosol desert kg kg**-1 +255 - - Missing diff --git a/eccodes/definitions/grib1/2.253.128.table b/eccodes/definitions/grib1/2.253.128.table new file mode 100644 index 00000000..74662638 --- /dev/null +++ b/eccodes/definitions/grib1/2.253.128.table @@ -0,0 +1,253 @@ +# This file was automatically generated by ./param.pl +1 1 STRF Stream function m**2 s**-1 +2 2 VPOT Velocity potential m**2 s**-1 +3 3 PT Potential temperature K +4 4 EQPT Equivalent potential temperature K +5 5 SEPT Saturated equivalent potential temperature K +6 6 SSFR Soil sand fraction (0 - 1) +7 7 SCFR Soil clay fraction (0 - 1) +8 8 SRO Surface runoff m +9 9 SSRO Sub-surface runoff m +10 10 WIND Wind speed m s**-1 +11 11 UDVW U component of divergent wind m s**-1 +12 12 VDVW V component of divergent wind m s**-1 +13 13 URTW U component of rotational wind m s**-1 +14 14 VRTW V component of rotational wind m s**-1 +15 15 ALUVP UV visible albedo for direct radiation (0 - 1) +16 16 ALUVD UV visible albedo for diffuse radiation (0 - 1) +17 17 ALNIP Near IR albedo for direct radiation (0 - 1) +18 18 ALNID Near IR albedo for diffuse radiation (0 - 1) +19 19 UVCS Clear sky surface UV W m**-2 s +20 20 PARCS Clear sky surface photosynthetically active radiation W m**-2 s +21 21 UCTP Unbalanced component of temperature K +22 22 UCLN Unbalanced component of logarithm of surface pressure +23 23 UCDV Unbalanced component of divergence s**-1 +24 24 - Reserved for future unbalanced components +25 25 - Reserved for future unbalanced components +26 26 CL Lake cover (0 - 1) +27 27 CVL Low vegetation cover (0 - 1) +28 28 CVH High vegetation cover (0 - 1) +29 29 TVL Type of low vegetation +30 30 TVH Type of high vegetation +31 31 CI Sea-ice cover (0 - 1) +32 32 ASN Snow albedo (0 - 1) +33 33 RSN Snow density kg m**-3 +34 34 SSTK Sea surface temperature K +35 35 ISTL1 Ice surface temperature layer 1 K +36 36 ISTL2 Ice surface temperature layer 2 K +37 37 ISTL3 Ice surface temperature layer 3 K +38 38 ISTL4 Ice surface temperature layer 4 K +39 39 SWVL1 Volumetric soil water layer 1 m**3 m**-3 +40 40 SWVL2 Volumetric soil water layer 2 m**3 m**-3 +41 41 SWVL3 Volumetric soil water layer 3 m**3 m**-3 +42 42 SWVL4 Volumetric soil water layer 4 m**3 m**-3 +43 43 SLT Soil type +44 44 ES Snow evaporation m of water +45 45 SMLT Snowmelt m of water +46 46 SDUR Solar duration s +47 47 DSRP Direct solar radiation w m**-2 +48 48 MAGSS Magnitude of surface stress N m**-2 s +49 49 10FG 10 metre wind gust m s**-1 +50 50 LSPF Large-scale precipitation fraction s +51 51 MX2T24 Maximum temperature at 2 metres since last 24 hours K +52 52 MN2T24 Minimum temperature at 2 metres since last 24 hours K +53 53 MONT Montgomery potential m**2 s**-2 +54 54 PRES Pressure Pa +55 55 MEAN2T24 Mean temperature at 2 metres since last 24 hours K +56 56 MN2D24 Mean 2 metre dewpoint temperature in past 24 hours K +57 57 UVB Downward UV radiation at the surface w m**-2 s +58 58 PAR Photosynthetically active radiation at the surface w m**-2 s +59 59 CAPE Convective available potential energy J kg**-1 +60 60 PV Potential vorticity K m**2 kg**-1 s**-1 +61 61 TPO Total precipitation from observations Millimetres*100 + number of stations +62 62 OBCT Observation count +63 63 - Start time for skin temperature difference s +64 64 - Finish time for skin temperature difference s +65 65 - Skin temperature difference K +66 66 - Leaf area index, low vegetation m**2 / m**2 +67 67 - Leaf area index, high vegetation m**2 / m**2 +68 68 - Minimum stomatal resistance, low vegetation s m**-1 +69 69 - Minimum stomatal resistance, high vegetation s m**-1 +70 70 - Biome cover, low vegetation (0 - 1) +71 71 - Biome cover, high vegetation (0 - 1) +72 72 ISSRD Instantaneous surface solar radiation downwards w m**-2 +73 73 ISTRD Instantaneous surface thermal radiation downwards w m**-2 +74 74 SDFOR Standard deviation of filtered subgrid orography m +78 78 - Total column liquid water kg m**-2 +79 79 - Total column ice water kg m**-2 +80 80 - Experimental product +81 81 - Experimental product +82 82 - Experimental product +83 83 - Experimental product +84 84 - Experimental product +85 85 - Experimental product +86 86 - Experimental product +87 87 - Experimental product +88 88 - Experimental product +89 89 - Experimental product +90 90 - Experimental product +91 91 - Experimental product +92 92 - Experimental product +93 93 - Experimental product +94 94 - Experimental product +95 95 - Experimental product +96 96 - Experimental product +97 97 - Experimental product +98 98 - Experimental product +99 99 - Experimental product +100 100 - Experimental product +101 101 - Experimental product +102 102 - Experimental product +103 103 - Experimental product +104 104 - Experimental product +105 105 - Experimental product +106 106 - Experimental product +107 107 - Experimental product +108 108 - Experimental product +109 109 - Experimental product +110 110 - Experimental product +111 111 - Experimental product +112 112 - Experimental product +113 113 - Experimental product +114 114 - Experimental product +115 115 - Experimental product +116 116 - Experimental product +117 117 - Experimental product +118 118 - Experimental product +119 119 - Experimental product +120 120 - Experimental product +121 121 MX2T6 Maximum temperature at 2 metres since last 6 hours K +122 122 MN2T6 Minimum temperature at 2 metres since last 6 hours K +123 123 10FG6 10 metre wind gust in the past 6 hours m s**-1 +124 124 EMIS Surface emissivity dimensionless +125 125 - Vertically integrated total energy J m**-2 +126 126 - Generic parameter for sensitive area prediction Various +127 127 AT Atmospheric tide +128 128 BV Budget values +129 129 Z Geopotential m**2 s**-2 +130 130 T Temperature K +131 131 U U velocity m s**-1 +132 132 V V velocity m s**-1 +133 133 Q Specific humidity kg kg**-1 +134 134 SP Surface pressure Pa +135 135 W Vertical velocity Pa s**-1 +136 136 TCW Total column water kg m**-2 +137 137 TCWV Total column water vapour kg m**-2 +138 138 VO Vorticity (relative) s**-1 +139 139 STL1 Soil temperature level 1 K +140 140 SWL1 Soil wetness level 1 m of water +141 141 SD Snow depth m of water equivalent +142 142 LSP Stratiform precipitation (Large-scale precipitation) m +143 143 CP Convective precipitation m +144 144 SF Snowfall (convective + stratiform) m of water equivalent +145 145 BLD Boundary layer dissipation W m**-2 s +146 146 SSHF Surface sensible heat flux W m**-2 s +147 147 SLHF Surface latent heat flux W m**-2 s +148 148 CHNK Charnock +149 149 SNR Surface net radiation W m**-2 s +150 150 TNR Top net radiation +151 151 MSL Mean sea level pressure Pa +152 152 LNSP Logarithm of surface pressure +153 153 SWHR Short-wave heating rate K +154 154 LWHR Long-wave heating rate K +155 155 D Divergence s**-1 +156 156 GH Gepotential Height gpm +157 157 R Relative humidity % +158 158 TSP Tendency of surface pressure Pa s**-1 +159 159 BLH Boundary layer height m +160 160 SDOR Standard deviation of orography +161 161 ISOR Anisotropy of sub-gridscale orography +162 162 ANOR Angle of sub-gridscale orography rad +163 163 SLOR Slope of sub-gridscale orography +164 164 TCC Total cloud cover (0 - 1) +165 165 10U 10 metre U wind component m s**-1 +166 166 10V 10 metre V wind component m s**-1 +167 167 2T 2 metre temperature K +168 168 2D 2 metre dewpoint temperature K +169 169 SSRD Surface solar radiation downwards W m**-2 s +170 170 STL2 Soil temperature level 2 K +171 171 SWL2 Soil wetness level 2 m of water +172 172 LSM Land-sea mask (0 - 1) +173 173 SR Surface roughness m +174 174 AL Albedo (0 - 1) +175 175 STRD Surface thermal radiation downwards W m**-2 s +176 176 SSR Surface solar radiation W m**-2 s +177 177 STR Surface thermal radiation W m**-2 s +178 178 TSR Top solar radiation W m**-2 s +179 179 TTR Top thermal radiation W m**-2 s +180 180 EWSS East-West surface stress N m**-2 s +181 181 NSSS North-South surface stress N m**-2 s +182 182 E Evaporation m of water +183 183 STL3 Soil temperature level 3 K +184 184 SWL3 Soil wetness level 3 m of water +185 185 CCC Convective cloud cover (0 - 1) +186 186 LCC Low cloud cover (0 - 1) +187 187 MCC Medium cloud cover (0 - 1) +188 188 HCC High cloud cover (0 - 1) +189 189 SUND Sunshine duration s +190 190 EWOV East-West component of sub-gridscale orographic variance m**2 +191 191 NSOV North-South component of sub-gridscale orographic variance m**2 +192 192 NWOV North-West/South-East component of sub-gridscale orographic variance m**2 +193 193 NEOV North-East/South-West component of sub-gridscale orographic variance m**2 +194 194 BTMP Brightness temperature K +195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s +196 196 MGWS Meridional component of gravity wave stress N m**-2 s +197 197 GWD Gravity wave dissipation W m**-2 s +198 198 SRC Skin reservoir content m of water +199 199 VEG Vegetation fraction (0 - 1) +200 200 VSO Variance of sub-gridscale orography m**2 +201 201 MX2T Maximum temperature at 2 metres since previous post-processing K +202 202 MN2T Minimum temperature at 2 metres since previous post-processing K +203 203 O3 Ozone mass mixing ratio kg kg**-1 +204 204 PAW Precipitation analysis weights +205 205 RO Runoff m +206 206 TCO3 Total column ozone kg m**-2 +207 207 10SI 10 metre wind speed m s**-1 +208 208 TSRC Top net solar radiation, clear sky W m**-2 s +209 209 TTRC Top net thermal radiation, clear sky W m**-2 s +210 210 SSRC Surface net solar radiation, clear sky W m**-2 s +211 211 STRC Surface net thermal radiation, clear sky W m**-2 s +212 212 TISR TOA incident solar radiation W m**-2 s +213 213 VIMD Vertically integrated moisture divergence kg m**-2 +214 214 DHR Diabatic heating by radiation K +215 215 DHVD Diabatic heating by vertical diffusion K +216 216 DHCC Diabatic heating by cumulus convection K +217 217 DHLC Diabatic heating large-scale condensation K +218 218 VDZW Vertical diffusion of zonal wind m s**-1 +219 219 VDMW Vertical diffusion of meridional wind m s**-1 +220 220 EWGD East-West gravity wave drag tendency m s**-1 +221 221 NSGD North-South gravity wave drag tendency m s**-1 +222 222 CTZW Convective tendency of zonal wind m s**-1 +223 223 CTMW Convective tendency of meridional wind m s**-1 +224 224 VDH Vertical diffusion of humidity kg kg**-1 +225 225 HTCC Humidity tendency by cumulus convection kg kg**-1 +226 226 HTLC Humidity tendency by large-scale condensation kg kg**-1 +227 227 CRNH Change from removal of negative humidity kg kg**-1 +228 228 TP Total precipitation m +229 229 IEWS Instantaneous X surface stress N m**-2 +230 230 INSS Instantaneous Y surface stress N m**-2 +231 231 ISHF Instantaneous surface heat flux W m**-2 +232 232 IE Instantaneous moisture flux kg m**-2 s +233 233 ASQ Apparent surface humidity kg kg**-1 +234 234 LSRH Logarithm of surface roughness length for heat +235 235 SKT Skin temperature K +236 236 STL4 Soil temperature level 4 K +237 237 SWL4 Soil wetness level 4 m +238 238 TSN Temperature of snow layer K +239 239 CSF Convective snowfall m of water equivalent +240 240 LSF Large-scale snowfall m of water equivalent +241 241 ACF Accumulated cloud fraction tendency (-1 to 1) +242 242 ALW Accumulated liquid water tendency (-1 to 1) +243 243 FAL Forecast albedo (0 - 1) +244 244 FSR Forecast surface roughness m +245 245 FLSR Forecast logarithm of surface roughness for heat +246 246 CLWC Cloud liquid water content kg kg**-1 +247 247 CIWC Cloud ice water content kg kg**-1 +248 248 CC Cloud cover (0 - 1) +249 249 AIW Accumulated ice water tendency (-1 to 1) +250 250 ICE Ice age (0 - 1) +251 251 ATTE Adiabatic tendency of temperature K +252 252 ATHE Adiabatic tendency of humidity kg kg**-1 +253 253 ATZE Adiabatic tendency of zonal wind m s**-1 +254 254 ATMW Adiabatic tendency of meridional wind m s**-1 +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.34.200.table b/eccodes/definitions/grib1/2.34.200.table new file mode 100644 index 00000000..ca22ae86 --- /dev/null +++ b/eccodes/definitions/grib1/2.34.200.table @@ -0,0 +1,185 @@ +# This file was automatically generated by ./param.pl +1 1 PRES Pressure (Pa) +2 2 MSL Mean sea level pressure (Pa) +3 3 PTEND Pressure tendency (Pa s**-1) +4 4 PV Potential vorticity (K m**2 kg**-1 s**-1) +5 5 ICAHT ICAO Standard Atmosphere reference height (m) +6 6 Z Geopotential (m**2 s**-2) +7 7 GH Geopotential Height (gpm) +8 8 H Geometrical height (m) +9 9 HSTDV Standard deviation of height (m) +10 10 TOZNE Total ozone (Dobson) +11 11 T Temperature (K) +12 12 VTMP Virtual temperature (K) +13 13 PT Potential temperature (K) +14 14 PAPT Pseudo-adiabatic potential temperature (K) +15 15 TMAX Maximum temperature (K) +16 16 TMIN Minimum temperature (K) +17 17 DPT Dew point temperature (K) +18 18 DEPR Dew point depression or deficit (K) +19 19 LAPR Lapse rate (K m**-1) +20 20 VIS Visibility (m) +21 21 RDSP1 Radar spectra 1 (~) +22 22 RDSP2 Radar spectra 2 (~) +23 23 RDSP3 Radar spectra 3 (~) +24 24 PLI Parcel lifted index to 500 hPa (K) +25 25 TA Temperature anomaly (K) +26 26 PRESA Pressure anomaly (Pa) +27 27 GPA Geopotential height anomaly (gpm) +28 28 WVSP1 Wave spectra 1 (~) +29 29 WVSP2 Wave spectra 2 (~) +30 30 WVSP3 Wave spectra 3 (~) +31 31 WDIR Wind direction (Degree true) +32 32 WS Wind speed (m s**-1) +33 33 U U component of wind (m s**-1) +34 34 V V component of wind (m s**-1) +35 35 STRF Stream function (m**2 s**-1) +36 36 VP Velocity potential (m**2 s**-1) +37 37 MNTSF Montgomery stream Function (m**2 s**-2) +38 38 SGCVV Sigma coordinate vertical velocity (s**-1) +39 39 W Vertical velocity (Pa s**-1) +40 40 OMG2 Vertical velocity (m s**-1) +41 41 ABSV Absolute vorticity (s**-1) +42 42 ABSD Absolute divergence (s**-1) +43 43 VO Vorticity relative (s**-1) +44 44 D Divergence (s**-1) +45 45 VUCSH Vertical u-component shear (s**-1) +46 46 VVCSH Vertical v-component shear (s**-1) +47 47 DIRC Direction of current (Degree true) +48 48 SPC Speed of current (m s**-1) +49 49 UCURR U-component of current (m s**-1) +50 50 VCURR V-component of current (m s**-1) +51 51 Q Specific humidity (kg kg**-1) +52 52 R Relative humidity (%) +53 53 MIXR Humidity mixing ratio (kg kg**-1) +54 54 PWAT Precipitable water (kg m**-2) +55 55 VP Vapour pressure (Pa) +56 56 SATD Saturation deficit (Pa) +57 57 EVPSFC Evaporation (mm per day) +58 58 CICE Cloud Ice (kg m**-2) +59 59 PRATE Precipitation rate (kg m**-2 s**-1) +60 60 TSTM Thunderstorm probability (%) +61 61 TPRATSFC Total precipitation (mm per day) +62 62 LPRATSFC Large scale precipitation (mm per day) +63 63 CPRATSFC Convective precipitation (mm per day) +64 64 SRWEQSFC Snowfall rate water equivalent (mm per day) +65 65 SF Snow Fall water equivalent (kg m**-2) +66 66 SD Snow depth (m) +67 67 MLD Mixed layer depth (m) +68 68 TTHDP Transient thermocline depth (m) +69 69 MTHD Main thermocline depth (m) +70 70 MTHA Main thermocline anomaly (m) +71 71 TCC Total Cloud Cover (%) +72 72 CCC Convective cloud cover (%) +73 73 LCC Low cloud cover (%) +74 74 MCC Medium cloud cover (%) +75 75 HCC High cloud cover (%) +76 76 CWAT Cloud water (kg m**-2) +77 77 BLI Best lifted index to 500 hPa (K) +78 78 SNOC Convective snow (kg m**-2) +79 79 LSSF Large scale snow (kg m**-2) +80 80 WTMP Water temperature (K) +81 81 LSM Land-sea mask ((0 - 1)) +82 82 DSLM Deviation of sea-level from mean (m) +83 83 SR Surface roughness (m) +84 84 AL Albedo (%) +85 85 ST Soil Temperature (K) +86 86 SSW Soil moisture content (kg m**-2) +87 87 VEGREA Percentage of vegetation (%) +88 88 S Salinity (kg kg**-1) +89 89 DEN Density (kg m**-3) +90 90 ROFSFC Water run-off (mm per day) +91 91 ICEC Ice cover ((0 - 1)) +92 92 ICETK Ice thickness (m) +93 93 DICED Direction of ice drift (Degree true) +94 94 SICED Speed of ice drift (m s**-1) +95 95 UICE U-component of ice drift (m s**-1) +96 96 VICE V-component of ice drift (m s**-1) +97 97 ICEG Ice growth rate (m s**-1) +98 98 ICED Ice divergence (s**-1) +99 99 SNOM Snow melt (kg m**-2) +100 100 SWH Significant height of combined wind waves and swell (m) +101 101 MDWW Mean direction of wind waves (Degree true) +102 102 SHWW Significant height of wind waves (m) +103 103 MPWW Mean period of wind waves (s) +104 104 SWDIR Direction of swell waves (Degree true) +105 105 SWELL Significant height of swell waves (m) +106 106 SWPER Mean period of swell waves (s) +107 107 MDPS Primary wave direction (Degree true) +108 108 MPPS Primary wave mean period (s) +109 109 DIRSW Secondary wave direction (Degree true) +110 110 SWP Secondary wave mean period (s) +111 111 NSWRS Net short-wave radiation flux surface (W m**-2) +112 112 NLWRS Net long-wave radiation flux surface (W m**-2) +113 113 NLWRT Net short-wave radiation flux top of atmosphere (W m**-2) +114 114 NLWRT Net long-wave radiation flux top of atmosphere (W m**-2) +115 115 LWAVR Long wave radiation flux (W m**-2) +116 116 SWAVR Short wave radiation flux (W m**-2) +117 117 GRAD Global radiation flux (W m**-2) +118 118 BTMP Brightness temperature (K) +119 119 LWRAD Radiance with respect to wave number (W m**-1 sr**-1) +120 120 SWRAD Radiance with respect to wave length (W m**-3 sr**-1) +121 121 LHF Latent heat flux (W m**-2) +122 122 SHF Sensible heat flux (W m**-2) +123 123 BLD Boundary layer dissipation (W m**-2) +124 124 UFLX Momentum flux, u-component (N m**-2) +125 125 VFLX Momentum flux, v-component (N m**-2) +126 126 WMIXE Wind mixing energy (J) +127 127 IMGD Image data (~) +132 132 BVF2THT Square of Brunt-Vaisala frequency (s**-2) +144 144 CTMP Temperature at canopy (K) +145 145 TGSC Ground/surface cover temperature (K) +146 146 CWORK Cloud work function (J kg**-1) +147 147 FGLUSFC Zonal momentum flux by long gravity wave (N m**-2) +148 148 FGLVSFC Meridional momentum flux by long gravity wave (N m**-2) +151 151 ADUAHBL Adiabatic zonal acceleration (m s**-1 per day) +152 152 VWVCLM Meridional water vapour flux (kg m**-1 s**-1) +154 154 FGSVSFC Meridional momentum flux by short gravity wave (N m**-2) +155 155 GFLUX Ground heat flux (W m**-2) +157 157 ~ Vertical integral of eastward water vapour flux (kg m**-1 s**-1) +159 159 FGSUSFC Zonal momentum flux by short gravity wave (N m**-2) +160 160 CSUSF Clear Sky Upward Solar Flux (W m**-2) +161 161 CSDSF Clear Sky Downward Solar Flux (W m**-2) +162 162 CSULF Clear Sky Upward Long Wave Flux (W m**-2) +163 163 CSDLF Clear Sky Downward Long Wave Flux (W m**-2) +165 165 ADVAPRS Adiabatic meridional acceleration (m s**-1 per day) +170 170 FRCVSFC Frequency of deep convection (%) +171 171 FRCVSSFC Frequency of shallow convection (%) +172 172 FRSCSFC Frequency of stratocumulus parameterisation (%) +173 173 GWDUAHBL Gravity wave zonal acceleration (m s**-1 per day) +174 174 GWDVAHBL Gravity wave meridional acceleration (m s**-1 per day) +190 190 UTHECLM Zonal thermal energy flux (W m**-1) +191 191 VTHECLM Meridional thermal energy flux (W m**-1) +202 202 LTRSSFC Evapotranspiration (W m**-2) +203 203 PITP Interception loss (W m**-2) +204 204 DSWRF Downward short-wave radiation flux (W m**-2) +205 205 DLWRF Downward long-wave radiation flux (W m**-2) +211 211 USWRF Upward short-wave radiation flux (W m**-2) +212 212 ULWRF Upward long-wave radiation flux (W m**-2) +219 219 MAXGUST Maximum wind speed (m s**-1) +221 221 QC specific cloud water content (kg kg**-1) +222 222 ADHRHBL Adiabatic heating rate (K per day) +223 223 MSCSFC Moisture storage on canopy (m) +224 224 MSGSFC Moisture storage on ground or cover (m) +225 225 USSL Soil wetness of surface ((0 - 1)) +226 226 SMCUGL Mass concentration of condensed water in soil (kg m**-3) +227 227 CWCLM Cloud liquid water (kg m**-2) +228 228 CLW Cloud liquid water (kg kg**-1) +229 229 CIWC Specific cloud ice water content (kg kg**-1) +230 230 MFLXBHBL Upward mass flux at cloud base (kg m**-2 s**-1) +231 231 MFLUXHBL Upward mass flux (kg m**-2 s**-1) +236 236 ADMRHBL Adiabatic moistening rate (kg kg**-1 per day) +237 237 OZONEHBL Ozone mixing ratio (mg kg**-1) +239 239 CNVUAHBL Convective zonal acceleration (m s**-1 per day) +240 240 CNVVAHBL Convective meridional acceleration (m s**-1 per day) +241 241 LRGHRHBL Large scale condensation heating rate (K per day) +242 242 CNVHRHBL Convective heating rate (K per day) +243 243 CNVMRHBL Convective moistening rate (kg kg**-1 per day) +246 246 VDFHRHBL Vertical diffusion heating rate (K per day) +247 247 VDFUAHBL Vertical diffusion zonal acceleration (m s**-1 per day) +248 248 VDFVAHBL Vertical diffusion meridional acceleration (m s**-1 per day) +249 249 VDFMRHBL Vertical diffusion moistening rate (kg kg**-1 per day) +250 250 SWHRHBL Solar radiative heating rate (K per day) +251 251 LWHRHBL Long wave radiative heating rate (K per day) +252 252 Type of vegetation (Code Table JMA-252) +253 253 LRGMRHBL Large scale moistening rate (kg kg**-1 per day) diff --git a/eccodes/definitions/grib1/2.46.254.table b/eccodes/definitions/grib1/2.46.254.table new file mode 100644 index 00000000..d4e38fce --- /dev/null +++ b/eccodes/definitions/grib1/2.46.254.table @@ -0,0 +1,256 @@ +# This file was automatically generated by ./param.pl +1 1 PRES Pressure [hPa] +2 2 psnm Pressure reduced to MSL [hPa] +3 3 tsps Pressure tendency [Pa/s] +4 4 var4 undefined +5 5 var5 undefined +6 6 geop Geopotential [dam] +7 7 zgeo Geopotential height [gpm] +8 8 gzge Geometric height [m] +9 9 var9 undefined +10 10 var10 undefined +11 11 temp ABSOLUTE TEMPERATURE [K] +12 12 vtmp VIRTUAL TEMPERATURE [K] +13 13 ptmp POTENTIAL TEMPERATURE [K] +14 14 psat PSEUDO-ADIABATIC POTENTIAL TEMPERATURE [K] +15 15 mxtp MAXIMUM TEMPERATURE [K] +16 16 mntp MINIMUM TEMPERATURE [K] +17 17 tpor DEW POINT TEMPERATURE [K] +18 18 dptd DEW POINT DEPRESSION [K] +19 19 lpsr LAPSE RATE [K/m] +20 20 var20 undefined +21 21 rds1 RADAR SPECTRA(1) [non-dim] +22 22 rds2 RADAR SPECTRA(2) [non-dim] +23 23 rds3 RADAR SPECTRA(3) [non-dim] +24 24 var24 undefined +25 25 tpan TEMPERATURE ANOMALY [K] +26 26 psan PRESSURE ANOMALY [Pa hPa] +27 27 zgan GEOPOT HEIGHT ANOMALY [m] +28 28 wvs1 WAVE SPECTRA(1) [non-dim] +29 29 wvs2 WAVE SPECTRA(2) [non-dim] +30 30 wvs3 WAVE SPECTRA(3) [non-dim] +31 31 wind WIND DIRECTION [deg] +32 32 wins WIND SPEED [m/s] +33 33 uvel ZONAL WIND (U) [m/s] +34 34 vvel MERIDIONAL WIND (V) [m/s] +35 35 fcor STREAM FUNCTION [m2/s] +36 36 potv VELOCITY POTENTIAL [m2/s] +37 37 var37 undefined +38 38 sgvv SIGMA COORD VERT VEL [sec/sec] +39 39 omeg OMEGA [Pa/s] +40 40 omg2 VERTICAL VELOCITY [m/s] +41 41 abvo ABSOLUTE VORTICITY [10**5/sec] +42 42 abdv ABSOLUTE DIVERGENCE [10**5/sec] +43 43 vort VORTICITY [1/s] +44 44 divg DIVERGENCE [1/s] +45 45 vucs VERTICAL U-COMP SHEAR [1/sec] +46 46 vvcs VERT V-COMP SHEAR [1/sec] +47 47 dirc DIRECTION OF CURRENT [deg] +48 48 spdc SPEED OF CURRENT [m/s] +49 49 ucpc U-COMPONENT OF CURRENT [m/s] +50 50 vcpc V-COMPONENT OF CURRENT [m/s] +51 51 umes SPECIFIC HUMIDITY [kg/kg] +52 52 umrl RELATIVE HUMIDITY [no Dim] +53 53 hmxr HUMIDITY MIXING RATIO [kg/kg] +54 54 agpl INST. PRECIPITABLE WATER [Kg/m2] +55 55 vapp VAPOUR PRESSURE [Pa hpa] +56 56 sadf SATURATION DEFICIT [Pa hPa] +57 57 evap EVAPORATION [Kg/m2/day] +58 58 var58 undefined +59 59 prcr PRECIPITATION RATE [kg/m2/day] +60 60 thpb THUNDER PROBABILITY [%] +61 61 prec TOTAL PRECIPITATION [Kg/m2/day] +62 62 prge LARGE SCALE PRECIPITATION [Kg/m2/day] +63 63 prcv CONVECTIVE PRECIPITATION [Kg/m2/day] +64 64 neve SNOWFALL [Kg/m2/day] +65 65 wenv WAT EQUIV ACC SNOW DEPTH [kg/m2] +66 66 nvde SNOW DEPTH [cm] +67 67 mxld MIXED LAYER DEPTH [m cm] +68 68 tthd TRANS THERMOCLINE DEPTH [m cm] +69 69 mthd MAIN THERMOCLINE DEPTH [m cm] +70 70 mtha MAIN THERMOCLINE ANOM [m cm] +71 71 cbnv CLOUD COVER [0-1] +72 72 cvnv CONVECTIVE CLOUD COVER [0-1] +73 73 lwnv LOW CLOUD COVER [0-1] +74 74 mdnv MEDIUM CLOUD COVER [0-1] +75 75 hinv HIGH CLOUD COVER [0-1] +76 76 wtnv CLOUD WATER [kg/m2] +77 77 bli BEST LIFTED INDEX (TO 500 HPA) [K] +78 78 var78 undefined +79 79 var79 undefined +80 80 var80 undefined +81 81 lsmk LAND SEA MASK [0,1] +82 82 dslm DEV SEA_LEV FROM MEAN [m] +83 83 zorl ROUGHNESS LENGTH [m] +84 84 albe ALBEDO [%] +85 85 dstp DEEP SOIL TEMPERATURE [K] +86 86 soic SOIL MOISTURE CONTENT [Kg/m2] +87 87 vege VEGETATION [%] +88 88 var88 undefined +89 89 dens DENSITY [kg/m3] +90 90 var90 Undefined +91 91 icec ICE CONCENTRATION [fraction] +92 92 icet ICE THICKNESS [m] +93 93 iced DIRECTION OF ICE DRIFT [deg] +94 94 ices SPEED OF ICE DRIFT [m/s] +95 95 iceu U-COMP OF ICE DRIFT [m/s] +96 96 icev V-COMP OF ICE DRIFT [m/s] +97 97 iceg ICE GROWTH [m] +98 98 icdv ICE DIVERGENCE [sec/sec] +99 99 var99 undefined +100 100 shcw SIG HGT COM WAVE/SWELL [m] +101 101 wwdi DIRECTION OF WIND WAVE [deg] +102 102 wwsh SIG HGHT OF WIND WAVES [m] +103 103 wwmp MEAN PERIOD WIND WAVES [sec] +104 104 swdi DIRECTION OF SWELL WAVE [deg] +105 105 swsh SIG HEIGHT SWELL WAVES [m] +106 106 swmp MEAN PERIOD SWELL WAVES [sec] +107 107 prwd PRIMARY WAVE DIRECTION [deg] +108 108 prmp PRIM WAVE MEAN PERIOD [s] +109 109 swdi SECOND WAVE DIRECTION [deg] +110 110 swmp SECOND WAVE MEAN PERIOD [s] +111 111 ocas SHORT WAVE ABSORBED AT GROUND [W/m2] +112 112 slds NET LONG WAVE AT BOTTOM [W/m2] +113 113 nswr NET SHORT-WAV RAD(TOP) [W/m2] +114 114 role OUTGOING LONG WAVE AT TOP [W/m2] +115 115 lwrd LONG-WAV RAD [W/m2] +116 116 swea SHORT WAVE ABSORBED BY EARTH/ATMOSPHERE [W/m2] +117 117 glbr GLOBAL RADIATION [W/m2 ] +118 118 var118 undefined +119 119 var119 undefined +120 120 var120 undefined +121 121 clsf LATENT HEAT FLUX FROM SURFACE [W/m2] +122 122 cssf SENSIBLE HEAT FLUX FROM SURFACE [W/m2] +123 123 blds BOUND LAYER DISSIPATION [W/m2] +124 124 var124 undefined +125 125 var125 undefined +126 126 var126 undefined +127 127 imag IMAGE [image^data] +128 128 tp2m 2 METRE TEMPERATURE [K] +129 129 dp2m 2 METRE DEWPOINT TEMPERATURE [K] +130 130 u10m 10 METRE U-WIND COMPONENT [m/s] +131 131 v10m 10 METRE V-WIND COMPONENT [m/s] +132 132 topo TOPOGRAPHY [m] +133 133 gsfp GEOMETRIC MEAN SURFACE PRESSURE [hPa] +134 134 lnsp LN SURFACE PRESSURE [hPa] +135 135 pslc SURFACE PRESSURE [hPa] +136 136 pslm M S L PRESSURE (MESINGER METHOD) [hPa] +137 137 mask MASK [-/+] +138 138 mxwu MAXIMUM U-WIND [m/s] +139 139 mxwv MAXIMUM V-WIND [m/s] +140 140 cape CONVECTIVE AVAIL. POT.ENERGY [m2/s2] +141 141 cine CONVECTIVE INHIB. ENERGY [m2/s2] +142 142 lhcv CONVECTIVE LATENT HEATING [K/s] +143 143 mscv CONVECTIVE MOISTURE SOURCE [1/s] +144 144 scvm SHALLOW CONV. MOISTURE SOURCE [1/s] +145 145 scvh SHALLOW CONVECTIVE HEATING [K/s] +146 146 mxwp MAXIMUM WIND PRESS. LVL [hPa] +147 147 ustr STORM MOTION U-COMPONENT [m/s] +148 148 vstr STORM MOTION V-COMPONENT [m/s] +149 149 cbnt MEAN CLOUD COVER [0-1] +150 150 pcbs PRESSURE AT CLOUD BASE [hPa] +151 151 pctp PRESSURE AT CLOUD TOP [hPa] +152 152 fzht FREEZING LEVEL HEIGHT [m] +153 153 fzrh FREEZING LEVEL RELATIVE HUMIDITY [%] +154 154 fdlt FLIGHT LEVELS TEMPERATURE [K] +155 155 fdlu FLIGHT LEVELS U-WIND [m/s] +156 156 fdlv FLIGHT LEVELS V-WIND [m/s] +157 157 tppp TROPOPAUSE PRESSURE [hPa] +158 158 tppt TROPOPAUSE TEMPERATURE [K] +159 159 tppu TROPOPAUSE U-WIND COMPONENT [m/s] +160 160 tppv TROPOPAUSE v-WIND COMPONENT [m/s] +161 161 var161 undefined +162 162 gvdu GRAVITY WAVE DRAG DU/DT [m/s2] +163 163 gvdv GRAVITY WAVE DRAG DV/DT [m/s2] +164 164 gvus GRAVITY WAVE DRAG SFC ZONAL STRESS [Pa] +165 165 gvvs GRAVITY WAVE DRAG SFC MERIDIONAL STRESS [Pa] +166 166 var166 undefined +167 167 dvsh DIVERGENCE OF SPECIFIC HUMIDITY [1/s] +168 168 hmfc HORIZ. MOISTURE FLUX CONV. [1/s] +169 169 vmfl VERT. INTEGRATED MOISTURE FLUX CONV. [kg/(m2*s)] +170 170 vadv VERTICAL MOISTURE ADVECTION [kg/(kg*s)] +171 171 nhcm NEG. HUM. CORR. MOISTURE SOURCE [kg/(kg*s)] +172 172 lglh LARGE SCALE LATENT HEATING [K/s] +173 173 lgms LARGE SCALE MOISTURE SOURCE [1/s] +174 174 smav SOIL MOISTURE AVAILABILITY [0-1] +175 175 tgrz SOIL TEMPERATURE OF ROOT ZONE [K] +176 176 bslh BARE SOIL LATENT HEAT [Ws/m2] +177 177 evpp POTENTIAL SFC EVAPORATION [m] +178 178 rnof RUNOFF [kg/m2/s)] +179 179 pitp INTERCEPTION LOSS [W/m2] +180 180 vpca VAPOR PRESSURE OF CANOPY AIR SPACE [mb] +181 181 qsfc SURFACE SPEC HUMIDITY [kg/kg] +182 182 ussl SOIL WETNESS OF SURFACE [0-1] +183 183 uzrs SOIL WETNESS OF ROOT ZONE [0-1] +184 184 uzds SOIL WETNESS OF DRAINAGE ZONE [0-1] +185 185 amdl STORAGE ON CANOPY [m] +186 186 amsl STORAGE ON GROUND [m] +187 187 tsfc SURFACE TEMPERATURE [K] +188 188 tems SURFACE ABSOLUTE TEMPERATURE [K] +189 189 tcas TEMPERATURE OF CANOPY AIR SPACE [K] +190 190 ctmp TEMPERATURE AT CANOPY [K] +191 191 tgsc GROUND/SURFACE COVER TEMPERATURE [K] +192 192 uves SURFACE ZONAL WIND (U) [m/s] +193 193 usst SURFACE ZONAL WIND STRESS [Pa] +194 194 vves SURFACE MERIDIONAL WIND (V) [m/s] +195 195 vsst SURFACE MERIDIONAL WIND STRESS [Pa] +196 196 suvf SURFACE MOMENTUM FLUX [W/m2] +197 197 iswf INCIDENT SHORT WAVE FLUX [W/m2] +198 198 ghfl TIME AVE GROUND HT FLX [W/m2] +199 199 var199 undefined +200 200 lwbc NET LONG WAVE AT BOTTOM (CLEAR) [W/m2] +201 201 lwtc OUTGOING LONG WAVE AT TOP (CLEAR) [W/m2] +202 202 swec SHORT WV ABSRBD BY EARTH/ATMOS (CLEAR) [W/m2] +203 203 ocac SHORT WAVE ABSORBED AT GROUND (CLEAR) [W/m2] +204 204 var204 undefined +205 205 lwrh LONG WAVE RADIATIVE HEATING [K/s] +206 206 swrh SHORT WAVE RADIATIVE HEATING [K/s] +207 207 olis DOWNWARD LONG WAVE AT BOTTOM [W/m2] +208 208 olic DOWNWARD LONG WAVE AT BOTTOM (CLEAR) [W/m2] +209 209 ocis DOWNWARD SHORT WAVE AT GROUND [W/m2] +210 210 ocic DOWNWARD SHORT WAVE AT GROUND (CLEAR) [W/m2] +211 211 oles UPWARD LONG WAVE AT BOTTOM [W/m2] +212 212 oces UPWARD SHORT WAVE AT GROUND [W/m2] +213 213 swgc UPWARD SHORT WAVE AT GROUND (CLEAR) [W/m2] +214 214 roce UPWARD SHORT WAVE AT TOP [W/m2] +215 215 swtc UPWARD SHORT WAVE AT TOP (CLEAR) [W/m2] +216 216 var216 undefined +217 217 var217 undefined +218 218 hhdf HORIZONTAL HEATING DIFFUSION [K/s] +219 219 hmdf HORIZONTAL MOISTURE DIFFUSION [1/s] +220 220 hddf HORIZONTAL DIVERGENCE DIFFUSION [1/s2] +221 221 hvdf HORIZONTAL VORTICITY DIFFUSION [1/s2] +222 222 vdms VERTICAL DIFF. MOISTURE SOURCE [1/s] +223 223 vdfu VERTICAL DIFFUSION DU/DT [m/s2] +224 224 vdfv VERTICAL DIFFUSION DV/DT [m/s2] +225 225 vdfh VERTICAL DIFFUSION HEATING [K/s] +226 226 umrs SURFACE RELATIVE HUMIDITY [no Dim] +227 227 vdcc VERTICAL DIST TOTAL CLOUD COVER [no Dim] +228 228 var228 undefined +229 229 var229 undefined +230 230 usmt TIME MEAN SURFACE ZONAL WIND (U) [m/s] +231 231 vsmt TIME MEAN SURFACE MERIDIONAL WIND (V) [m/s] +232 232 tsmt TIME MEAN SURFACE ABSOLUTE TEMPERATURE [K] +233 233 rsmt TIME MEAN SURFACE RELATIVE HUMIDITY [no Dim] +234 234 atmt TIME MEAN ABSOLUTE TEMPERATURE [K] +235 235 stmt TIME MEAN DEEP SOIL TEMPERATURE [K] +236 236 ommt TIME MEAN DERIVED OMEGA [Pa/s] +237 237 dvmt TIME MEAN DIVERGENCE [1/s] +238 238 zhmt TIME MEAN GEOPOTENTIAL HEIGHT [m] +239 239 lnmt TIME MEAN LOG SURFACE PRESSURE [ln(cbar)] +240 240 mkmt TIME MEAN MASK [-/+] +241 241 vvmt TIME MEAN MERIDIONAL WIND (V) [m/s] +242 242 omtm TIME MEAN OMEGA [cbar/s] +243 243 ptmt TIME MEAN POTENTIAL TEMPERATURE [K] +244 244 pcmt TIME MEAN PRECIP. WATER [kg/m2] +245 245 rhmt TIME MEAN RELATIVE HUMIDITY [%] +246 246 mpmt TIME MEAN SEA LEVEL PRESSURE [hPa] +247 247 simt TIME MEAN SIGMADOT [1/s] +248 248 uemt TIME MEAN SPECIFIC HUMIDITY [kg/kg] +249 249 fcmt TIME MEAN STREAM FUNCTION| m2/s] +250 250 psmt TIME MEAN SURFACE PRESSURE [hPa] +251 251 tmmt TIME MEAN SURFACE TEMPERATURE [K] +252 252 pvmt TIME MEAN VELOCITY POTENTIAL [m2/s] +253 253 tvmt TIME MEAN VIRTUAL TEMPERATURE [K] +254 254 vtmt TIME MEAN VORTICITY [1/s] +255 255 uvmt TIME MEAN ZONAL WIND (U) [m/s] diff --git a/eccodes/definitions/grib1/2.82.1.table b/eccodes/definitions/grib1/2.82.1.table new file mode 100644 index 00000000..62e36ee4 --- /dev/null +++ b/eccodes/definitions/grib1/2.82.1.table @@ -0,0 +1,180 @@ +1 pres PRES Pressure Pa +2 msl MSL Pressure reduced to MSL Pa +3 ptend PTEND Pressure tendency Pa/s +4 pv PV Potential vorticity K*m2 / kg / s +5 icaht ICAHT ICAO Standard Atmosphere reference height m +6 z Z Geopotential m2/s2 +7 gh GH Geopotential height Gpm +8 h H Geometric height m +9 hstdv HSTDV Standard deviation of height m +10 tco3 TCO3 Total ozone Dobson +11 t T Temperature K +12 vtmp VTMP Virtual temperature K +13 pt PT Potential temperature K +14 papt PAPT Pseudo-adiabatic potential temperature K +15 tmax TMAX Maximum temperature K +16 tmin TMIN Minimum temperature K +17 dpt DPT Dew point temperature K +18 depr DEPR Dew point depression (or deficit) K +19 lapr LAPR Lapse rate K/m +20 vis VIS Visibility m +21 rdsp1 RDSP1 Radar Spectra (1) - +22 rdsp2 RDSP2 Radar Spectra (2) - +23 rdsp3 RDSP3 Radar Spectra (3) - +24 pli PLI Parcel lifted index (to 500 hPa) K +25 ta TA Temperature anomaly K +26 pa PA Pressure anomaly Pa +27 gpa GPA Geopotential height anomaly Gpm +28 wvsp1 WVSP1 Wave Spectra (1) - +29 wvsp2 WVSP2 Wave Spectra (2) - +30 wvsp3 WVSP3 Wave Spectra (3) - +31 wdir WDIR Wind direction Deg. true +32 wins WINS Wind speed m/s +33 u U u-component of wind m/s +34 v V v-component of wind m/s +35 strf STRF Stream function m2/s +36 vp VP Velocity potential m2/s +37 mntsf MNTSF Montgomery stream function m2/s2 +38 sigma SIGMA Sigma coord. vertical velocity 1/s +39 omega OMEGA Pressure Vertical velocity Pa/s +40 w W Geometric Vertical velocity m/s +41 absv ABSV Absolute vorticity 1/s +42 absd ABSD Absolute divergence 1/s +43 vo VO Relative vorticity 1/s +44 d D Relative divergence 1/s +45 vusch VUSCH Vertical u-component shear 1/s +46 vvsch VVSCH Vertical v-component shear 1/s +47 dirc DIRC Direction of current Deg. true +48 spc SPC Speed of current m/s +49 ucurr UCURR u-component of current m/s +50 vcurr VCURR v-component of current m/s +51 q Q Specific humidity kg/kg +52 r R Relative humidity % +53 mixr MIXR Humidity mixing ratio kg/kg +54 pwat PWAT Precipitable water kg/m2 +55 vp VP Vapour pressure Pa +56 satd SATD Saturation deficit Pa +57 e E Evaporation m of water equivalent +58 cice CICE Cloud Ice kg/m2 +59 prate PRATE Precipitation rate kg/m2/s +60 tstm TSTM Thunderstorm probability % +61 tp TP Total precipitation kg/m2 +62 lsp LSP Large scale precipitation kg/m2 +63 acpcp ACPCP Convective precipitation kg/m2 +64 srweq SRWEQ Snowfall rate water equivalent kg/m2/s +65 sdwe SDWE Water equiv. of accum. snow depth kg/m2 +66 sd SD Snow depth m +67 mld MLD Mixed layer depth m +68 tthdp TTHDP Transient thermocline depth m +69 mthd MTHD Main thermocline depth m +70 mtha MTHA Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 cwat CWAT Cloud water kg/m2 +77 bli BLI Best lifted index (to 500 hPa) K +78 snoc SNOC Convective snow kg/m2 +79 snol SNOL Large scale snow kg/m2 +80 wtmp WTMP Water Temperature K +81 lsm LSM Land-sea mask (1=land 0=sea) (see note) Fraction +82 dslm DSLM Deviation of sea level from mean m +83 sr SR Surface roughness m +84 al AL Albedo % +85 st ST Soil temperature K +86 ssw SSW Soil moisture content kg/m2 +87 veg VEG Vegetation % +88 s S Salinity kg/kg +89 den DEN Density kg/m3 +90 watr WATR Water run off kg/m2 +91 icec ICEC Ice cover (ice=1 no ice=0)(see note) Fraction +92 icetk ICETK Ice thickness m +93 diced DICED Direction of ice drift deg. true +94 siced SICED Speed of ice drift m/s +95 uice UICE u-component of ice drift m/s +96 vice VICE v-component of ice drift m/s +97 iceg ICEG Ice growth rate m/s +98 iced ICED Ice divergence /s +99 snom SNOM Snow melt kg/m2 +100 swh SWH Significant height of combined wind waves and swell m +101 wvdir WVDIR Direction of wind waves deg. true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 swdir SWDIR Direction of swell waves deg. true +105 swell SWELL Significant height of swell waves m +106 swper SWPER Mean period of swell waves s +107 prwd PRWD Primary wave direction deg. true +108 perpw PERPW Primary wave mean period s +109 dirsw DIRSW Secondary wave direction deg. true +110 persw PERSW Secondary wave mean period s +111 nswrs NSWRS Net short-wave radiation flux (surface) W/m2 +112 nlwrs NLWRS Net long wave radiation flux (surface) W/m2 +113 nswrt NSWRT Net short-wave radiation flux (top of atmos.) W/m2 +114 nlwrt NLWRT Net long wave radiation flux (top of atmos.) W/m2 +115 lwavr LWAVR Long wave radiation flux W/m2 +116 swavr SWAVR Short wave radiation flux W/m2 +117 grad GRAD Global radiation flux W/m2 +118 btmp BTMP Brightness temperature K +119 lwrad LWRAD Radiance (with respect to wave number) W/m/sr +120 swrad SWRAD Radiance (with respect to wave length) W/m3/sr +121 lhtfl LHTFL Latent heat net flux W/m2 +122 shtfl SHTFL Sensible heat net flux W/m2 +123 bld BLD Boundary layer dissipation W/m2 +124 uflx UFLX Momentum flux, u component N/m2 +125 vflx VFLX Momentum flux, v component N/m2 +126 wmixe WMIXE Wind mixing energy J +127 imgd IMGD Image data - +128 mofl MOFL Momentum flux Pa +129 qten QTEN Humidity tendencies ? +130 radtop RADTOP Radiation at top of atmosphere ? +131 ctt CTT Cloud top temperature, infrared K +132 wvbt WVBT Water vapor brightness temperature K +133 wvbt_corr WVBT_CORR Water vapor brightness temperature, correction K +134 cwref CWREF Cloud water reflectivity Fraction +135 maxgust MAXGUST Maximum wind m/s +136 mingust MINGUST Minimum wind m/s +137 icc ICC Integrated cloud condensate kg/m2 +138 sd SD Snow depth m +139 sdol SDOL Open land snow depth m +140 tland TLAND Temperature over land K +141 qland QLAND Specific humidity over land kg/kg +142 rhland RHLAND Relative humidity over land Fraction +143 dptland DPTLAND Dew point over land K +160 slfr SLFR Slope fraction Fraction +161 shfr SHFR Shadow fraction Fraction +162 rsha RSHA Shadow parameter RSHA - +163 rshb RSHB Shadow parameter RSHB - +164 movegro MOVEGRO Momentum vegetation roughness m +165 susl SUSL Surface slope - +166 skwf SKWF Sky wiew factor Fraction +167 frasp FRASP Fraction of aspect - +168 hero HERO Heat roughness m +169 al_scorr AL_SCORR Albedo with solar angle correction Fraction +189 swi SWI Soil wetness index - +190 asn ASN Snow albedo Fraction +191 dsn DSN Snow density - +192 watcn WATCN Water on canopy level kg/m2 +193 ssi SSI Surface soil ice m3/m3 +194 frst FRST Fraction of surface type Fraction +195 st ST Soil type code +196 fol FOL Fraction of lake Fraction +197 fof FOF Fraction of forest Fraction +198 fool FOOL Fraction of open land Fraction +199 vgtyp VGTYP Vegetation type (Olsson land use) - +200 tke TKE Turbulent Kinetic Energy J/kg +204 sdor SDOR Standard deviation of mesoscale orography gpm +205 amo AMO Anisotrophic mesoscale orography - +206 anmo ANMO X-angle of mesoscale orography rad +208 mssso MSSSO Maximum slope of smallest scale orography rad +209 sdsso SDSSO Standard deviation of smallest scale orography gpm +210 iceex ICEEX Ice existence - +222 lcl LCL Lifting condensation level m +223 lnbuo LNBUO Level of neutral buoyancy m +224 ci CI Convective inhibation J/kg +225 cape CAPE CAPE J/kg +226 ptype PTYPE Precipitation type code +227 fricv FRICV Friction velocity m/s +228 gust GUST Wind gust m/s +250 anpr3 ANPR3 Analysed 3-hour precipitation (-3h/0h) kg/m2 +251 anpr12 ANPR12 Analysed 12-hour precipitation (-12h/0h) kg/m2 diff --git a/eccodes/definitions/grib1/2.82.128.table b/eccodes/definitions/grib1/2.82.128.table new file mode 100644 index 00000000..1f648711 --- /dev/null +++ b/eccodes/definitions/grib1/2.82.128.table @@ -0,0 +1,139 @@ +1 so2 SO2 SO2/SO2 - +2 so4_2- SO4_2- SO4(2-)/SO4(2-) (sulphate) - +3 dms DMS DMS/DMS - +4 msa MSA MSA/MSA - +5 h2s H2S H2S/H2S - +6 nh4so4 NH4SO4 NH4SO4/(NH4)1.5H0.5SO4 - +7 nh4hso4 NH4HSO4 NH4HSO4/NH4HSO4 - +8 nh42so4 NH42SO4 NH42SO4/(NH4)2SO4 - +9 sft SFT SULFATE/SULFATE - +10 so2_aq SO2_AQ SO2_AQ/SO2 in aqueous phase - +11 so4_aq SO4_AQ SO4_AQ/sulfate in aqueous phase - +23 lrt_so2_s LRT_SO2_S LRT_SO2_S/long-range SO2_S - +24 lrt_so4_s LRT_SO4_S LRT_SO4_S/LRT-contriubtion to SO4_S - +25 lrt_sox_s LRT_SOX_S LRT_SOX_S/LRT-contriubtion to SO4_S - +26 xsox_s XSOX_S XSOX_S/excess SOX (corrected for sea salt as sulfur) - +27 so2_s SO2_S SO2_S/SO2 (as sulphur) - +28 so4_s SO4_S SO4_S/SO4 (as sulphur) - +29 sox_s SOX_S SOX_S/All oxidised sulphur compounds (as sulphur) - +30 no NO NO - +31 no2 NO2 NO2/NO2 - +32 hno3 HNO3 HNO3/HNO3 - +33 no3- NO3- NO3(-1)/NO3(-1) (nitrate) - +34 nh4no3 NH4NO3 NH4NO3/NH4NO3 - +35 nitrate NITRATE NITRATE/NITRATE - +36 pno3 PNO3 PNO3/(COARSE) NITRATE - +37 lrt_noy_n LRT_NOY_N LRT_NOY_N/long-range NOY_N - +38 no3_n NO3_N NO3_N/NO3 as N - +39 hno3_n HNO3_N HNO3_N/HNO3 as N - +40 lrt_no3_n LRT_NO3_N LRT_NO3_N/long-range NO3_N - +41 lrt_hno3_n LRT_HNO3_N LRT_HNO3_N/long-range HNO3_N - +42 lrt_no2_n LRT_NO2_N LRT_NO2_N/long-range NO2_N - +43 lrt_noz_n LRT_NOZ_N LRT_NOZ_N/long-range NOZ_N - +44 nox NOX NOX/NOX as NO2 - +45 no_n NO_N NO_N/NO as N - +46 no2_n NO2_N NO2_N/NO2 as N - +47 nox_n NOX_N NOX_N/NO2+NO (NOx) as nitrogen - +48 noy_n NOY_N NOY_N/All oxidised N-compounds (as nitrogen) - +49 noz_n NOZ_N NOZ_N/NOy-NOx (as nitrogen) - +50 nh3 NH3 NH3/NH3 - +51 nh4_plus NH4_PLUS NH4(+1)/NH4 - +52 ammonium AMMONIUM AMMONIUM/AMMONIUM - +54 nh3_n NH3_N NH3_N/NH3 (as nitrogen) - +55 nh4_n NH4_N NH4_N/NH4 (as nitrogen) - +56 lrt_nh3_n LRT_NH3_N LRT_NH3_N/long-range NH3_N - +57 lrt_nh4_n LRT_NH4_N LRT_NH4_N/long-range NH4_N - +58 lrt_nhx_n LRT_NHX_N LRT_NHX_N/long-range NHX_N - +59 nhx_n NHX_N NHX_N/All reduced nitrogen (as nitrogen) - +60 o3 O3 O3 - +61 h2o2 H2O2 H2O2/H2O2 - +62 oh OH OH/OH - +63 o3_aq O3_AQ O3_AQ/O3 in aqueous phase - +64 h2o2_aq H2O2_AQ H2O2_AQ/H2O2 in aqueous phase - +65 ox OX OX/Ox=O3+NO2 - +70 c C C - +71 co CO CO/CO - +72 co2 CO2 CO2/CO2 - +73 ch4 CH4 CH4/CH4 - +74 oc OC OC/Organic carbon (particles) - +75 ec EC EC/Elementary carbon (particles) - +80 cf6 CF6 CF6 - +81 pmch PMCH PMCH/PMCH - +82 pmcp PMCP PMCP/PMCP - +83 tracer TRACER TRACER/Tracer - +84 inert INERT Inert/Inert - +85 h3 H3 H3 - +86 ar41 AR41 Ar41/Ar41 - +87 kr85 KR85 Kr85/Kr85 - +88 kr88 KR88 Kr88/Kr88 - +91 xe131 XE131 Xe131/Xe131 - +92 xe133 XE133 Xe133/Xe133 - +93 rn222 RN222 Rn222/Rn222 - +95 i131 I131 I131/I131 - +96 i132 I132 I132/I132 - +97 i133 I133 I133/I133 - +98 i135 I135 I135/I135 - +100 sr90 SR90 Sr90 - +101 co60 CO60 Co60/Co60 - +102 ru103 RU103 Ru103/Ru103 - +103 ru106 RU106 Ru106/Ru106 - +104 cs134 CS134 Cs134/Cs134 - +105 cs137 CS137 Cs137/Cs137 - +106 ra223 RA223 Ra223/Ra123 - +108 ra228 RA228 Ra228/Ra228 - +110 zr95 ZR95 Zr95 - +111 nb95 NB95 Nb95/Nb95 - +112 ce144 CE144 Ce144/Ce144 - +113 np238 NP238 Np238/Np238 - +114 np239 NP239 Np239/Np239 - +115 pu241 PU241 Pu241/Pu241 - +116 pb210 PB210 Pb210/Pb210 - +119 all ALL ALL - +120 nacl NACL NACL - +121 na_plus NA_PLUS SODIUM/Na+ - +122 mg_2plus MG_2PLUS MAGNESIUM/Mg++ - +123 k_plus K_PLUS POTASSIUM/K+ - +124 ca_2plus CA_2PLUS CALCIUM/Ca++ - +125 xmg XMG XMG/excess Mg++ (corrected for sea salt) - +126 xk XK XK/excess K+ (corrected for sea salt) - +128 xca XCA XCA/excess Ca++ (corrected for sea salt) - +140 cl2 CL2 Cl2/Cloride - +160 pmfine PMFINE PMFINE - +161 pmcoarse PMCOARSE PMCOARSE/Coarse particles - +162 dust DUST DUST/Dust (particles) - +163 pnumber PNUMBER PNUMBER/Number concentration - +164 pradius PRADIUS PRADIUS/Particle radius - +165 psurface PSURFACE PSURFACE/Particle surface conc - +166 pmass PMASS PMASS/Particle mass conc - +167 pm10 PM10 PM10/PM10 particles - +168 psox PSOX PSOX/Particulate sulfate - +169 pnox PNOX PNOX/Particulate nitrate - +170 pnhx PNHX PNHX/Particulate ammonium - +171 ppmfine PPMFINE PPMFINE/Primary emitted fine particles - +172 ppm10 PPM10 PPM10/Primary emitted particles - +173 soa SOA SOA/Secondary Organic Aerosol - +174 pm2.5 PM2.5 PM2.5/PM2.5 particles - +175 pm PM PM/Total particulate matter - +180 birch_pollen BIRCH_POLLEN BIRCH_POLLEN/Birch pollen - +200 kz KZ KZ m2/s +201 l L L/Monin-Obukhovs length [m] m +202 u_star U_STAR U*/Friction velocity [m/s] m/s +203 w_star W_STAR W*/Convective velocity scale [m/s] m/s +204 z-d Z-D Z-D/Z0 minus displacement length [m] m +210 surftype SURFTYPE SURFTYPE/Surface type (see \link{OCTET45}) - +211 lai LAI LAI/Leaf area index - +212 soiltype SOILTYPE SOILTYPE/Soil type - +213 ssalb SSALB SSALB/Single scattering albodo [1] 1 +214 asympar ASYMPAR ASYMPAR/Asymmetry parameter - +215 vis VIS VIS/Visibility [m] m +216 ext EXT EXT/Extinction [1/m] 1/m +217 bsca BSCA BSCA/Backscattering coeff [1/m/sr] 1/m/sr +218 aod AOD AOD/Aerosol opt depth [1] 1 +219 daod DAOD DAOD/AOD per layer [1] 1 +220 conv_tied CONV_TIED CONV_TIED - +221 conv_bot CONV_BOT CONV_BOT/Convective cloud bottom (unit?) - +222 conv_top CONV_TOP CONV_TOP/Convective cloud top (unit?) - +223 dxdy DXDY DXDY/Gridsize [m2] m2 +240 emis EMIS EMIS/Sectoral emissions - +241 long LONG LONG/Longitude - +242 lat LAT LAT/Latitude - diff --git a/eccodes/definitions/grib1/2.82.129.table b/eccodes/definitions/grib1/2.82.129.table new file mode 100644 index 00000000..6e3df7aa --- /dev/null +++ b/eccodes/definitions/grib1/2.82.129.table @@ -0,0 +1,120 @@ +1 msl MSL Pressure reduced to MSL Pa +11 t T Temperature K +12 tiw TIW Wet bulb temperature K +13 mean2t24 MEAN2T24 24 hour mean of 2 meter temperature K +15 tmax TMAX Maximum temperature K +16 tmin TMIN Minimum temperature K +20 vis VIS Visibility m +32 fg FG Wind gusts m/s +33 u U u-component of wind m/s +34 v V v-component of wind m/s +52 r R Relative humidity % +71 tcc TCC Total cloud cover fraction +73 lcc LCC Low cloud cover fraction +74 mcc MCC Medium cloud cove fraction +75 hcc HCC High cloud cover fraction +77 frsigc FRSIGC Fraction of significant clouds fraction +78 cbsigc CBSIGC Cloud base of significant clouds m +79 ctsigc CTSIGC Cloud top of significant clouds m +128 vptmp VPTMP Virtual potential temperature K +129 heatx HEATX Heat index K +130 wcf WCF Wind chill factor K +131 snohf SNOHF Snow phase change heat flux W/m2 +132 skt SKT Skin temperature K +133 snoag SNOAG Snow age day +134 absh ABSH Absolute humidity kg/m3 +135 ptype PTYPE Precipitation type code +136 iliqw ILIQW Integrated liquid water kg/m2 +137 tcond TCOND Condensate kg/kg +138 clwmr CLWMR Cloud mixing ratio kg/kg +139 icmr ICMR Ice water mixing ratio kg/kg +140 rwmr RWMR Rain mixing ratio kg/kg +141 snmr SNMR Snow mixing ratio kg/kg +142 mconv MCONV Horizontal moisture convergence kg/kg/s +143 pwcat PWCAT Precipitable water category code +144 hail HAIL Hail m +145 prtype PRTYPE Type of precipitation code +146 prsort PRSORT Sort of precipitation code +150 grle GRLE Graupel kg/kg +151 crain CRAIN Categorical rain code +152 cfrzr CFRZR Categorical freezing rain code +153 cicep CICEP Categorical ice pellets code +154 csnow CSNOW Categorical snow code +155 cprat CPRAT Convective precipitation rate kg/m2/s +156 mconv MCONV Horizontal moisture divergence kg/kg/s +157 cpofp CPOFP Percent frozen precipitation % +158 pev PEV Potential evaporation kg/m2 +159 pevpr PEVPR Potential evaporation rate W/m2 +160 snowc SNOWC Snow cover % +161 prec6h PREC6H 6 hour precipitation mm +162 prec12h PREC12H 12 hour precipitation mm +163 prec18h PREC18H 18 hour precipitation mm +164 prec24h PREC24H 24 hour precipitation mm +165 prec1h PREC1H 1 hour precipitation mm +166 prec2h PREC2H 2 hour precipitation mm +167 prec3h PREC3H 3 hour precipitation mm +168 prec9h PREC9H 9 hour precipitation mm +169 prec15h PREC15H 15 hour precipitation mm +171 frsn6h FRSN6H 6 hour fresh snow cover cm +172 frsn12h FRSN12H 12 hour fresh snow cover cm +173 frsn18h FRSN18H 18 hour fresh snow cover cm +174 frsn24h FRSN24H 24 hour fresh snow cover cm +175 frsn1h FRSN1H 1 hour fresh snow cover cm +176 frsn2h FRSN2H 2 hour fresh snow cover cm +177 frsn3h FRSN3H 3 hour fresh snow cover cm +178 frsn9h FRSN9H 9 hour fresh snow cover cm +179 frsn15h FRSN15H 15 hour fresh snow cover cm +181 prec6h_cor PREC6H_COR 6 hour precipitation, corrected mm +182 prec12h_cor PREC12H_COR 12 hour precipitation, corrected mm +183 prec18h_cor PREC18H_COR 18 hour precipitation, corrected mm +184 prec24h_cor PREC24H_COR 24 hour precipitation, corrected mm +185 prec1h_cor PREC1H_COR 1 hour precipitation, corrected mm +186 prec2h_cor PREC2H_COR 2 hour precipitation, corrected mm +187 prec3h_cor PREC3H_COR 3 hour precipitation, corrected mm +188 prec9h_cor PREC9H_COR 9 hour precipitation, corrected mm +189 prec15h_cor PREC15H_COR 15 hour precipitation, corrected mm +191 frsn6h_cor FRSN6H_COR 6 hour fresh snow cover, corrected cm +192 frsn12h_cor FRSN12H_COR 12 hour fresh snow cover, corrected cm +193 frsn18h_cor FRSN18H_COR 18 hour fresh snow cover, corrected cm +194 frsn24h_cor FRSN24H_COR 24 hour fresh snow cover, corrected cm +195 frsn1h_cor FRSN1H_COR 1 hour fresh snow cover, corrected cm +196 frsn2h_cor FRSN2H_COR 2 hour fresh snow cover, corrected cm +197 frsn3h_cor FRSN3H_COR 3 hour fresh snow cover, corrected cm +198 frsn9h_cor FRSN9H_COR 9 hour fresh snow cover, corrected cm +199 frsn15h_cor FRSN15H_COR 15 hour fresh snow cover, corrected cm +201 prec6h_sta PREC6H_STA 6 hour precipitation, standardized mm +202 prec12h_sta PREC12H_STA 12 hour precipitation, standardized mm +203 prec18h_sta PREC18H_STA 18 hour precipitation, standardized mm +204 prec24h_sta PREC24H_STA 24 hour precipitation, standardized mm +205 prec1h_sta PREC1H_STA 1 hour precipitation, standardized mm +206 prec2h_sta PREC2H_STA 2 hour precipitation, standardized mm +207 prec3h_sta PREC3H_STA 3 hour precipitation, standardized mm +208 prec9h_sta PREC9H_STA 9 hour precipitation, standardized mm +209 prec15h_sta PREC15H_STA 15 hour precipitation, standardized mm +211 frsn6h_sta FRSN6H_STA 6 hour fresh snow cover, standardized cm +212 frsn12h_sta FRSN12H_STA 12 hour fresh snow cover, standardized cm +213 frsn18h_sta FRSN18H_STA 18 hour fresh snow cover, standardized cm +214 frsn24h_sta FRSN24H_STA 24 hour fresh snow cover, standardized cm +215 frsn1h_sta FRSN1H_STA 1 hour fresh snow cover, standardized cm +216 frsn2h_sta FRSN2H_STA 2 hour fresh snow cover, standardized cm +217 frsn3h_sta FRSN3H_STA 3 hour fresh snow cover, standardized cm +218 frsn9h_sta FRSN9H_STA 9 hour fresh snow cover, standardized cm +219 frsn15h_sta FRSN15H_STA 15 hour fresh snow cover, standardized cm +221 prec6h_corsta PREC6H_CORSTA 6 hour precipitation, corrected and standardized mm +222 prec12h_corsta PREC12H_CORSTA 12 hour precipitation, corrected and standardized mm +223 prec18h_corsta PREC18H_CORSTA 18 hour precipitation, corrected and standardized mm +224 prec24h_corsta PREC24H_CORSTA 24 hour precipitation, corrected and standardized mm +225 prec1h_corsta PREC1H_CORSTA 1 hour precipitation, corrected and standardized mm +226 prec2h_corsta PREC2H_CORSTA 2 hour precipitation, corrected and standardized mm +227 prec3h_corsta PREC3H_CORSTA 3 hour precipitation, corrected and standardized mm +228 prec9h_corsta PREC9H_CORSTA 9 hour precipitation, corrected and standardized mm +229 prec15h_corsta PREC15H_CORSTA 15 hour precipitation, corrected and standardized mm +231 frsn6h_corsta FRSN6H_CORSTA 6 hour fresh snow cover, corrected and standardized cm +232 frsn12h_corsta FRSN12H_CORSTA 12 hour fresh snow cover, corrected and standardized cm +233 frsn18h_corsta FRSN18H_CORSTA 18 hour fresh snow cover, corrected and standardized cm +234 frsn24h_corsta FRSN24H_CORSTA 24 hour fresh snow cover, corrected and standardized cm +235 frsn1h_corsta FRSN1H_CORSTA 1 hour fresh snow cover, corrected and standardized cm +236 frsn2h_corsta FRSN2H_CORSTA 2 hour fresh snow cover, corrected and standardized cm +237 frsn3h_corsta FRSN3H_CORSTA 3 hour fresh snow cover, corrected and standardized cm +238 frsn9h_corsta FRSN9H_CORSTA 9 hour fresh snow cover, corrected and standardized cm +239 frsn15h_corsta FRSN15H_CORSTA 15 hour fresh snow cover, corrected and standardized cm diff --git a/eccodes/definitions/grib1/2.82.130.table b/eccodes/definitions/grib1/2.82.130.table new file mode 100644 index 00000000..98915303 --- /dev/null +++ b/eccodes/definitions/grib1/2.82.130.table @@ -0,0 +1,99 @@ +1 mslp MSLP Pressure reduced to MSL Pa +11 t T Temperature K +20 vis VIS Visibility m +33 u U u-component of wind m/s +34 v V v-component of wind m/s +52 r R Relative humidity % +58 fzrapr FZRAPR Probability of frozen rain % +60 tstm TSTM Probability thunderstorm % +71 tcc TCC Total cloud cover fraction +72 ccc CCC Convective cloud cover fraction +73 lcc LCC Low cloud cover fraction +74 mcc MCC Medium cloud cove fraction +75 hcc HCC High cloud cover fraction +77 cm CM cloud mask fraction +110 epstm EPSTM EPS T mean K +111 epststd EPSTSTD EPS T standard deviation K +130 mxws10min MXWS10MIN Maximum wind (mean 10 min) M/S +131 gust GUST Wind gust M/S +135 cbase_sig CBASE_SIG Cloud base (significant) m +136 ctop_sig CTOP_SIG Cloud top (significant) m +140 pit PIT Precipitation intensity total kg/m2/s +141 pis PIS Precipitation intensity snow kg/m2/s +145 ptype PTYPE Precipitation type, conv 0, large scale 1, no prec -9 category +146 pcat PCAT Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle category +150 dswrf DSWRF Downward short-wave radiation flux W/m2 +151 uswrf USWRF Upward short-wave radiation flux W/m2 +152 nswrf NSWRF Net short wave radiation flux W/m2 +153 photar PHOTAR Photosynthetically active radiation W/m2 +154 nswrfcs NSWRFCS Net short-wave radiation flux, clear sky W/m2 +155 dwuvr DWUVR Downward UV radiation W/m2 +156 uviucs UVIUCS UV index (under clear sky) Numeric +157 uvi UVI UV index Numeric +158 dlwrf DLWRF Downward long-wave radiation flux W/m2 +159 ulwrf ULWRF Upward long-wave radiation flux W/m2 +160 nlwrf NLWRF Net long wave radiation flux W/m2 +161 nlwrfcs NLWRFCS Net long-wave radiation flux, clear sky W/m2 +162 cdca CDCA Cloud amount % +163 cdct CDCT Cloud type Code +164 tmaxt TMAXT Thunderstorm maximum tops m +165 thunc THUNC Thunderstorm coverage Code +166 cdcb CDCB Cloud base m +167 cdct CDCT Cloud top m +168 ceil CEIL Ceiling m +169 cdlyr CDLYR Non-convective cloud cover % +170 cwork CWORK Cloud work function J/kg +171 cuefi CUEFI Convective cloud efficiency Proportion +172 tcond TCOND Total condensate kg/kg +173 tcolw TCOLW Total column-integrated cloud water kg/m2 +174 tcoli TCOLI Total column-integrated cloud ice kg/m2 +175 tcolc TCOLC Total column-integrated condensate kg/m2 +176 fice FICE Ice fraction of total condensate Proportion +177 cc CC Cloud cover % +178 cdcimr CDCIMR Cloud ice mixing ratio kg/kg +179 suns SUNS Sunshine Numeric +180 cbext CBEXT Horizontal extent of cumulunimbus (CB) % +181 fracc FRACC Fraction of cloud cover Numeric +182 sund SUND Sunshine duration s +183 kx KX K index K +184 kox KOX KO index K +185 totalx TOTALX Total totals index K +186 sx SX Sweat index Numeric +187 hlcy HLCY Storm relative helicity J/kg +188 ehlx EHLX Energy helicity index Numeric +189 lftx LFTX Surface lifted index K +190 4lftx 4LFTX Best (4-layer) lifted index K +191 ri RI Richardson number Numeric +192 aerot AEROT Aerosol type Code +193 o3mx O3MX Ozone mixing ratio kg/kg +194 tcioz TCIOZ Total column integrated ozone Dobson +200 bswid BSWID Base spectrum width m/s +201 bref BREF Base reflectivity dB +202 brvel BRVEL Base radial velocity m/s +203 veril VERIL Vertically integrated liquid kg/m +204 lmaxbr LMAXBR Layer-maximum base reflectivity dB +205 prrad PRRAD Precipitation (radar) kg/m +206 eqrrra EQRRRA Equivalent radar reflectivity factor for rain mm6/m3 +207 eqrrsn EQRRSN Equivalent radar reflectivity factor for snow mm6/m3 +208 eqrfpc EQRFPC Equivalent radar reflectivity factor for paramterized convection mm6/m3 +209 ectop_rad ECTOP_RAD Echo top (radar) m +210 refl_rad REFL_RAD Reflectivity (radar) dB +211 corefl_rad COREFL_RAD Composite reflectivity (radar) dB +215 icit ICIT Icing top m +216 icib ICIB Icing base m +217 ici ICI Icing Code +218 turbt TURBT Turbulence top m +219 turbb TURBB Turbulence base m +220 turb TURB Turbulence Code +221 pblr PBLR Planetary boundary-layer regime Code +222 conti CONTI Contrail intensity Code +223 contet CONTET Contrail engine type Code +224 contt CONTT Contrail top m +225 contb CONTB Contrail base m +226 snfalb SNFALB Snow free albedo % +227 ici_prop ICI_PROP Icing % +228 icturb ICTURB In-cloud turbulence % +229 cat CAT Clear air turbulence (CAT) % +230 scld_prob SCLD_PROB Supercooled large droplet probability % +235 text TEXT Arbitrary text string CCITTIA5 +236 secpref SECPREF Seconds prior to initial reference time (defined in section1) (meteorology) s diff --git a/eccodes/definitions/grib1/2.82.131.table b/eccodes/definitions/grib1/2.82.131.table new file mode 100644 index 00000000..395359d8 --- /dev/null +++ b/eccodes/definitions/grib1/2.82.131.table @@ -0,0 +1,29 @@ +11 sst_lake SST_LAKE Sea surface temperature (LAKE) K +49 ecurr ECURR Current east m/s +50 ncurr NCURR Current north m/s +66 sd_pr SD_PR Snowdepth in Probe m +91 iceconc_lake ICECONC_LAKE Ice concentration (LAKE) fraction +92 iceth_pr ICETH_PR Ice thickness Probe-lake m +150 t_abc T_ABC Temperature ABC-lake K +151 t_c T_C Temperature C-lake K +152 t_d T_D Temperature D-lake K +153 t_e T_E Temperature E-lake K +160 ar_abc AR_ABC Area ABC-lake km2 +161 dp_abc DP_ABC Depth ABC-lake m +162 c C C-lakes amount +163 d D D-lakes amount +164 e E E-lakes amount +170 iceth_abc ICETH_ABC Ice thickness ABC-lake m +171 iceth_c ICETH_C Ice thickness C-lake m +172 iceth_d ICETH_D Ice thickness D-lake m +173 iceth_e ICETH_E Ice thickness E-lake m +180 sst_t SST_T Sea surface temperature (T) K +183 iceconc_i ICECONC_I Ice concentration (I) fraction +196 fl FL Fraction lake fraction +241 bit_pr BIT_PR Black ice thickness in Probe m +244 244 None Vallad istjocklek i Probe m +245 intice_pr INTICE_PR Internal ice concentration in Probe fraction +246 icefr_pr ICEFR_PR Isfrontlaege i Probe m +250 heat_pr HEAT_PR Heat in Probe Joule +251 tke TKE Turbulent Kintetic Energy J/kg +252 tkediss TKEDISS Dissipation rate Turbulent Kinetic Energy W/kg diff --git a/eccodes/definitions/grib1/2.82.133.table b/eccodes/definitions/grib1/2.82.133.table new file mode 100644 index 00000000..54122863 --- /dev/null +++ b/eccodes/definitions/grib1/2.82.133.table @@ -0,0 +1,102 @@ +1 msl MSL Pressure reduced to MSL Pa +11 t T Temperature Deg C +13 pt PT Potential temperature K +28 ws1 WS1 Wave spectra (1) - +29 ws2 WS2 Wave spectra (2) - +30 ws3 WS3 Wave spectra (3) - +31 dir DIR Wind direction Deg true +32 spd SPD Wind speed m/s +33 u U U-component of Wind m/s +34 v V V-component of Wind m/s +35 strf STRF Stream function m2/s +36 vp VP Velocity potential m2/s +37 mntsf MNTSF Montgomery stream function m2/s2 +38 sigmw SIGMW Sigma coordinate vertical velocity 1/s +39 wcur_pr WCUR_PR Z-component of velocity (pressure) Pa/s +40 wcur_ge WCUR_GE Z-component of velocity (geometric) m/s +41 absvor ABSVOR Absolute vorticity 1/s +42 absdiv ABSDIV Absolute divergence 1/s +43 relvor RELVOR Relative vorticity 1/s +44 reldiv RELDIV Relative divergence 1/s +45 vershu VERSHU Vertical u-component shear 1/s +46 vershv VERSHV Vertical v-component shear 1/s +47 dirhorcurr DIRHORCURR Direction of horizontal current Deg true +48 spdhorcurr SPDHORCURR Speed of horizontal current m/s +49 ucue UCUE U-comp of Current cm/s +50 vcur VCUR V-comp of Current cm/s +51 q Q Specific humidity g/kg +66 hsnow HSNOW Snow Depth m +67 mld MLD Mixed layer depth m +68 tthdp TTHDP Transient thermocline depth m +69 mthd MTHD Main thermocline depth m +70 mtha MTHA Main thermocline anomaly m +71 tcc TCC Total Cloud Cover Fraction +80 wtmp WTMP Water temperature K +82 zlev ZLEV Deviation of sea level from mean cm +88 s S Salinity psu +89 den DEN Density kg/m3 +91 icec ICEC Ice Cover Fraction +92 icetk ICETK Total ice thickness m +93 diced DICED Direction of ice drift Deg true +94 siced SICED Speed of ice drift m/s +95 uice UICE U-component of ice drift cm/s +96 vice VICE V-component of ice drift cm/s +97 iceg ICEG Ice growth rate m/s +98 iced ICED Ice divergence 1/s +100 swh SWH Significant wave height m +101 wvdir WVDIR Direction of Wind Waves Deg. true +102 shww SHWW Sign Height Wind Waves m +103 mpww MPWW Mean Period Wind Waves s +104 swdir SWDIR Direction of Swell Waves Deg. true +105 shps SHPS Sign Height Swell Waves m +106 swper SWPER Mean Period Swell Waves s +107 dirpw DIRPW Primary wave direction Deg true +108 perpw PERPW Primary wave mean period s +109 dirsw DIRSW Secondary wave direction Deg true +110 persw PERSW Secondary wave mean period s +111 mpw MPW Mean period of waves s +112 wadir WADIR Mean direction of Waves Deg. true +113 pp1d PP1D Peak period of 1D spectra s +130 usurf USURF Skin velocity, x-comp. cm/s +131 vsurf VSURF Skin velocity, y-comp. cm/s +151 no3 NO3 Nitrate - +152 nh4 NH4 Ammonium - +153 po4 PO4 Phosphate - +154 o2 O2 Oxygen - +155 phpl PHPL Phytoplankton - +156 zpl ZPL Zooplankton - +157 dtr DTR Detritus - +158 benn BENN Bentos nitrogen - +159 benp BENP Bentos phosphorus - +160 sio4 SIO4 Silicate - +161 sio2_bi SIO2_BI Biogenic silica - +162 li_wacol LI_WACOL Light in water column - +163 inorg_mat INORG_MAT Inorganic suspended matter - +164 diat DIAT Diatomes (algae) - +165 flag FLAG Flagellates (algae) - +166 no3_agg NO3_AGG Nitrate (aggregated) - +170 ffldg FFLDG Flash flood guidance kg/m2 +171 ffldro FFLDRO Flash flood runoff kg/m2 +172 rssc RSSC Remotely-sensed snow cover Code +173 esct ESCT Elevation of snow-covered terrain Code +174 swepon SWEPON Snow water equivalent per cent of normal % +175 bgrun BGRUN Baseflow-groundwater runoff kg/m2 +176 ssrun SSRUN Storm surface runoff kg/m2 +180 cppop CPPOP Conditional per cent precipitation amount fractile for an overall period kg/m2 +181 pposp PPOSP Per cent precipitation in a sub-period of an overall period % +182 pop POP Probability if 0.01 inch of precipitation % +190 tsec TSEC Seconds prior to initial reference time (defined in section1) (oceonography) s +191 mosf MOSF Meridional overturning stream function m3/s +200 tke TKE Turbulent Kinetic Energy J/kg +201 dtke DTKE Dissipation rate of TKE W/kg +202 km KM Eddy viscosity m2/s +203 kh KH Eddy diffusivity m2/s +220 hlev HLEV Level ice thickness m +221 hrdg HRDG Ridged ice thickness m +222 rh RH Ice ridge height m +223 rd RD Ice ridge density 1/km +231 ucurmean UCURMEAN U-mean (prev. timestep) cm/s +232 vcurmean VCURMEAN V-mean (prev. timestep) cm/s +233 wcurmean WCURMEAN W-mean (prev. timestep) m/s +239 tsnow TSNOW Snow temperature Deg C +243 depth DEPTH Total depth in meters m diff --git a/eccodes/definitions/grib1/2.82.134.table b/eccodes/definitions/grib1/2.82.134.table new file mode 100644 index 00000000..3c60db4f --- /dev/null +++ b/eccodes/definitions/grib1/2.82.134.table @@ -0,0 +1,85 @@ +1 c2h6 C2H6 C2H6/Ethane - +2 nc4h10 NC4H10 NC4H10/N-butane - +3 c2h4 C2H4 C2H4/Ethene - +4 c3h6 C3H6 C3H6/Propene - +5 oxylene OXYLENE OXYLENE/O-xylene - +6 hcho HCHO HCHO/Formalydehyde - +7 ch3cho CH3CHO CH3CHO/Acetaldehyde - +8 ch3coc2h5 CH3COC2H5 CH3COC2H5/Ethyl methyl keton - +9 mglyox MGLYOX MGLYOX/Methyl-glyoxal (CH3COCHO) - +10 glyox GLYOX GLYOX/Glyoxal (HCOCHO) - +11 c5h8 C5H8 C5H8/Isoprene - +12 c2h5oh C2H5OH C2H5OH/Ethanol - +13 ch3oh CH3OH CH3OH/Metanol - +14 hcooh HCOOH HCOOH/Formic acid - +15 ch3cooh CH3COOH CH3COOH/Acetic acid - +19 nmvoc_c NMVOC_C NMVOC_C/Total NMVOC as C - +21 pan PAN PAN/Peroxy acetyl nitrate - +22 no3 NO3 NO3/Nitrate radical - +23 n2o5 N2O5 N2O5/Dinitrogen pentoxide - +24 onit ONIT ONIT/Organic nitrate - +25 isonro2 ISONRO2 ISONRO2/Isoprene-NO3 adduct - +26 ho2no2 HO2NO2 HO2NO2/HO2NO2 - +27 mpan MPAN MPAN - +28 isono3h ISONO3H ISONO3H - +29 hono HONO HONO - +31 ho2 HO2 HO2/Hydroperhydroxyl radical - +32 h2 H2 H2/Molecular hydrogen - +33 o O O/Oxygen atomic ground state (3P) - +34 o1d O1D O1D/Oxygen atomic first singlet state - +41 ch3o2 CH3O2 CH3O2/Methyl peroxy radical - +42 ch3o2h CH3O2H CH3O2H/Methyl hydroperoxide - +43 c2h5o2 C2H5O2 C2H5O2/Ethyl peroxy radical - +44 ch3coo2 CH3COO2 CH3COO2/Peroxy acetyl radical - +45 secc4h9o2 SECC4H9O2 SECC4H9O2/Buthyl peroxy radical - +46 ch3cocho2ch3 CH3COCHO2CH3 CH3COCHO2CH3/peroxy radical from MEK - +47 acetol ACETOL ACETOL/acetol (hydroxy acetone) - +48 ch2o2ch2oh CH2O2CH2OH CH2O2CH2OH - +49 ch3cho2ch2oh CH3CHO2CH2OH CH3CHO2CH2OH/Peroxy radical from C3H6 plus OH - +50 mal MAL MAL/CH3COCHCHCHO - +51 malo2 MALO2 MALO2/Peroxy radical from MAL plus oh - +52 isro2 ISRO2 ISRO2/Peroxy radical from isoprene plus oh - +53 isoprod ISOPROD ISOPROD/Peroxy radical from ISOPROD - +54 c2h5ooh C2H5OOH C2H5OOH/Ethyl hydroperoxide - +55 ch3coo2h CH3COO2H CH3COO2H - +56 oxyo2h OXYO2H OXYO2H/Hydroperoxide from OXYO2 - +57 secc4h9o2h SECC4H9O2H SECC4H9O2H/Buthyl hydroperoxide - +58 ch2oohch2oh CH2OOHCH2OH CH2OOHCH2OH - +59 ch3choohch2oh CH3CHOOHCH2OH CH3CHOOHCH2OH//hydroperoxide from PRRO2 plus HO2 - +60 ch3cocho2hch3 CH3COCHO2HCH3 CH3COCHO2HCH3/hydroperoxide from MEKO2 plus HO2 - +61 malo2h MALO2H MALO2H/Hydroperoxide from MALO2 plus ho2 - +62 ipro2 IPRO2 IPRO2 - +63 xo2 XO2 XO2 - +64 oxyo2 OXYO2 OXYO2/Peroxy radical from o-xylene plus oh - +65 isro2h ISRO2H ISRO2H - +66 mvk MVK MVK - +67 mvko2 MVKO2 MVKO2 - +68 mvko2h MVKO2H MVKO2H - +70 benzene BENZENE BENZENE - +74 isni ISNI ISNI - +75 isnir ISNIR ISNIR - +76 isnirh ISNIRH ISNIRH - +77 macr MACR MACR - +78 aoh1 AOH1 AOH1 - +79 aoh1h AOH1H AOH1H - +80 macro2 MACRO2 MACRO2 - +81 maco3h MACO3H MACO3H - +82 macooh MACOOH MACOOH - +83 ch2cch3 CH2CCH3 CH2CCH3 - +84 ch2co2hch3 CH2CO2HCH3 CH2CO2HCH3 - +90 bigene BIGENE BIGENE - +91 bigalk BIGALK BIGALK - +92 toluene TOLUENE TOLUENE - +100 ch2chcn CH2CHCN CH2CHCN - +101 ch32nnh2 CH32NNH2 (CH3)2NNH2/Dimetylhydrazin - +102 ch2oc2h3cl CH2OC2H3CL CH2OC2H3Cl/Epiklorhydrin - +103 ch2oc2 CH2OC2 CH2OC2/Etylenoxid - +105 hf HF HF/Vaetefluorid - +106 hcl HCL Hcl/Vaeteklorid - +107 cs2 CS2 CS2/Koldisulfid - +108 ch3nh2 CH3NH2 CH3NH2/Metylamin - +110 sf6 SF6 SF6/Sulphurhexafloride - +111 hcn HCN HCN/Vaetecyanid - +112 cocl2 COCL2 COCl2/Fosgen - +113 h2cchcl H2CCHCL H2CCHCl/Vinylklorid - +128 va VA Volcanic ash Code diff --git a/eccodes/definitions/grib1/2.82.135.table b/eccodes/definitions/grib1/2.82.135.table new file mode 100644 index 00000000..c5192b4b --- /dev/null +++ b/eccodes/definitions/grib1/2.82.135.table @@ -0,0 +1,104 @@ +1 grg1 GRG1 GRG1/MOZART specie kg/kg +2 grg2 GRG2 GRG2/MOZART specie kg/kg +3 grg3 GRG3 GRG3/MOZART specie kg/kg +4 grg4 GRG4 GRG4/MOZART specie kg/kg +5 grg5 GRG5 GRG5/MOZART specie kg/kg +100 vis-340 VIS-340 VIS-340/Visibility at 340 nm m +101 vis-355 VIS-355 VIS-355/Visibility at 355 nm m +102 vis-380 VIS-380 VIS-380/Visibility at 380 nm m +103 vis-440 VIS-440 VIS-440/Visibility at 440 nm m +104 vis-500 VIS-500 VIS-500/Visibility at 500 nm m +105 vis-532 VIS-532 VIS-532/Visibility at 532 nm m +106 vis-675 VIS-675 VIS-675/Visibility at 675 nm m +107 vis-870 VIS-870 VIS-870/Visibility at 870 nm m +108 vis-1020 VIS-1020 VIS-1020/Visibility at 1020 nm m +109 vis-1064 VIS-1064 VIS-1064/Visibility at 1064 nm m +110 vis-3500 VIS-3500 VIS-3500/Visibility at 3500 nm m +111 vis-10000 VIS-10000 VIS-10000/Visibility at 10000 nm m +120 bsca-340 BSCA-340 BSCA-340/Backscatter at 340 nm 1/m/sr +121 bsca-355 BSCA-355 BSCA-355/Backscatter at 355 nm 1/m/sr +122 bsca-380 BSCA-380 BSCA-380/Backscatter at 380 nm 1/m/sr +123 bsca-440 BSCA-440 BSCA-440/Backscatter at 440 nm 1/m/sr +124 bsca-500 BSCA-500 BSCA-500/Backscatter at 500 nm 1/m/sr +125 bsca-532 BSCA-532 BSCA-532/Backscatter at 532 nm 1/m/sr +126 bsca-675 BSCA-675 BSCA-675/Backscatter at 675 nm 1/m/sr +127 bsca-870 BSCA-870 BSCA-870/Backscatter at 870 nm 1/m/sr +128 bsca-1020 BSCA-1020 BSCA-1020/Backscatter at 1020 nm 1/m/sr +129 bsca-1064 BSCA-1064 BSCA-1064/Backscatter at 1064 nm 1/m/sr +130 bsca-3500 BSCA-3500 BSCA-3500/Backscatter at 3500 nm 1/m/sr +131 bsca-10000 BSCA-10000 BSCA-10000/Backscatter at 10000 nm 1/m/sr +140 ext-340 EXT-340 EXT-340/Extinction at 340 nm 1/m +141 ext-355 EXT-355 EXT-355/Extinction at 355 nm 1/m +142 ext-380 EXT-380 EXT-380/Extinction at 380 nm 1/m +143 ext-440 EXT-440 EXT-440/Extinction at 440 nm 1/m +144 ext-500 EXT-500 EXT-500/Extinction at 500 nm 1/m +145 ext-532 EXT-532 EXT-532/Extinction at 532 nm 1/m +146 ext-675 EXT-675 EXT-675/Extinction at 675 nm 1/m +147 ext-870 EXT-870 EXT-870/Extinction at 870 nm 1/m +148 ext-1020 EXT-1020 EXT-1020/Extinction at 1020 nm 1/m +149 ext-1064 EXT-1064 EXT-1064/Extinction at 1064 nm 1/m +150 ext-3500 EXT-3500 EXT-3500/Extinction at 3500 nm 1/m +151 ext-10000 EXT-10000 EXT-10000/Extinction at 10000 nm 1/m +160 aod-340 AOD-340 AOD-340/Aerosol optical depth at 340 nm 1 +161 aod-355 AOD-355 AOD-355/Aerosol optical depth at 355 nm 1 +162 aod-380 AOD-380 AOD-380/Aerosol optical depth at 380 nm 1 +163 aod-440 AOD-440 AOD-440/Aerosol optical depth at 440 nm 1 +164 aod-500 AOD-500 AOD-500/Aerosol optical depth at 500 nm 1 +165 aod-532 AOD-532 AOD-532/Aerosol optical depth at 532 nm 1 +166 aod-675 AOD-675 AOD-675/Aerosol optical depth at 675 nm 1 +167 aod-870 AOD-870 AOD-870/Aerosol optical depth at 870 nm 1 +168 aod-1020 AOD-1020 AOD-1020/Aerosol optical depth at 1020 nm 1 +169 aod-1064 AOD-1064 AOD-1064/Aerosol optical depth at 1064 nm 1 +170 aod-3500 AOD-3500 AOD-3500/Aerosol optical depth at 3500 nm 1 +171 aod-10000 AOD-10000 AOD-10000/Aerosol optical depth at 10000 nm 1 +180 aod-635 AOD-635 Aerosol optical thickness at 0.635 micro-m 1 +181 aod-810 AOD-810 Aerosol optical thickness at 0.810 micro-m 1 +182 aod-1640 AOD-1640 Aerosol optical thickness at 1.640 micro-m 1 +183 ang ANG Angstrom coefficient 1 +208 frain FRAIN Rain fraction of total cloud water Proportion +209 facrain FACRAIN Rain factor Numeric +210 tqr TQR Total column integrated rain kg/m2 +211 tqs TQS Total column integrated snow kg/m2 +212 twatp TWATP Total water precipitation kg/m2 +213 tsnowp TSNOWP Total snow precipitation kg/m2 +214 tcw TCW Total column water (Vertically integrated total water) kg/m2 +215 lsprate LSPRATE Large scale precipitation rate kg/m2/s +216 csrwe CSRWE Convective snowfall rate water equivalent kg/m2/s +217 prs_gsp PRS_GSP Large scale snowfall rate water equivalent kg/m2/s +218 tsrate TSRATE Total snowfall rate m/s +219 csrate CSRATE Convective snowfall rate m/s +220 lssrate LSSRATE Large scale snowfall rate m/s +221 sdwe SDWE Snow depth water equivalent kg/m2 +222 se SE Snow evaporation kg/m2 +223 tciwv TCIWV Total column integrated water vapour kg/m2 +224 rprate RPRATE Rain precipitation rate kg/m2/s +225 sprate SPRATE Snow precipitation rate kg/m2/s +226 fprate FPRATE Freezing rain precipitation rate kg/m2/s +227 iprate IPRATE Ice pellets precipitation rate kg/m2/s +228 clwc CLWC Specific cloud liquid water content kg/kg +229 ciwc CIWC Specific cloud ice water content kg/kg +230 crwc CRWC Specific rain water content kg/kg +231 cswc CSWC Specific snow water content kg/kg +232 ugust UGUST u-component of wind (gust) m/s +233 vgust VGUST v-component of wind (gust) m/s +234 vwsh VWSH Vertical speed shear 1/s +235 mflx MFLX Horizontal momentum flux N/m2 +236 ustm USTM u-component storm motion m/s +237 vstm VSTM v-component storm motion m/s +238 cd CD Drag coefficient Numeric +239 eta ETA Eta coordinate vertical velocity 1/s +240 alts ALTS Altimeter setting Pa +241 thick THICK Thickness m +242 presalt PRESALT Pressure altitude m +243 denalt DENALT Density altitude m +244 5wavh 5WAVH 5-wave geopotential height gpm +245 u-gwd U-GWD Zonal flux of gravity wave stress N/m2 +246 v-gwd V-GWD Meridional flux of gravity wave stress N/m2 +247 hbpl HBPL Planetary boundary layer height m +248 5wava 5WAVA 5-wave geopotential height anomaly gpm +249 stdsgor STDSGOR Standard deviation of sub-gridscale orography m +250 angsgor ANGSGOR Angle of sub-gridscale orography rad +251 slsgor SLSGOR Slope of sub-gridscale orography Numeric +252 gwd GWD Gravity wave dissipation W/m2 +253 isor ISOR Anisotropy of sub-gridscale orography Numeric +254 nlpres NLPRES Natural logarithm of pressure in Pa Numeric diff --git a/eccodes/definitions/grib1/2.82.136.table b/eccodes/definitions/grib1/2.82.136.table new file mode 100644 index 00000000..e7dc5a3c --- /dev/null +++ b/eccodes/definitions/grib1/2.82.136.table @@ -0,0 +1,74 @@ +1 pres PRES Pressure Pa +11 t T Temperature K +51 q Q Specific humidity kg/kg +54 pwat PWAT Precipitable water kg/m2 +66 sd SD Snow depth m +71 tcc TCC Total cloud cover fraction +73 lcc LCC Low cloud cover fraction +77 prob_scb PROB_SCB Probability for significant cloud base fraction +78 scb SCB Significant cloud base m +79 sct SCT Significant cloud top m +84 al AL Albedo (lev 0=global radiation lev 1=UV radiation) fraction +91 icec ICEC Ice concentration fraction +116 uv_irr UV_IRR CIE-weighted UV irradiance mW/m2 +117 gl_irr GL_IRR Global irradiance W/m2 +118 bn_irr BN_IRR Beam normal irradiance W/m2 +119 sun_d SUN_D Sunshine duration min +120 par PAR PAR W/m2 +128 evapt EVAPT Evapotranspiration 1/kg2/s +129 mterh MTERH Model terrain height m +130 landu LANDU Land use Code +131 soilw SOILW Volumetric soil moisture content Proportion +132 mstav MSTAV Moisture availability % +133 sfexc SFEXC Exchange coefficient kg/m2/s +134 w_i W_I Plant canopy surface water kg/m2 +135 bmixl BMIXL Blackadar mixing length scale m +136 ccond CCOND Canopy conductance m/s +137 prs_min PRS_MIN Minimal stomatal resistance s/m +138 rcs RCS Solar parameter in canopy conductance Proportion +139 rct RCT Temperature parameter in canopy conductance Proportion +140 rcq RCQ Humidity parameter in canopy conductance Proportion +141 rcsol RCSOL Soil moisture parameter in canopy conductance Proportion +142 sm SM Soil moisture kg/m3 +143 w_cl W_CL Column-integrated soil water kg/m2 +144 hflux HFLUX Heat flux W/m2 +145 vsw VSW Volumetric soil moisture m3/m3 +146 wilt WILT Wilting point kg/m3 +147 vwiltm VWILTM Volumetric wilting point m3/m3 +148 rlyrs RLYRS Number of soil layers in root zone Numeric +149 liqvsm LIQVSM Liquid volumetric soil moisture (non-frozen) m3/m3 +150 voltso VOLTSO Volumetric transpiration stress-onset (soil moisture) m3/m3 +151 transo TRANSO Transpiration stress-onset (soil moisture) kg/m3 +152 voldec VOLDEC Volumetric direct evaporation cease (soil moisture) m3/m3 +153 direc DIREC Direct evaporation cease (soil moisture) kg/m3 +154 soilp SOILP Soil porosity m3/m3 +155 vsosm VSOSM Volumetric saturation of soil moisture kg/m3 +156 satosm SATOSM Saturation of soil moisture kg/m3 +165 prec_1h PREC_1H Accumulated precipitation, 1 hours mm +175 snacc_1h SNACC_1H Accumulated fresh snow, 1 hours cm +180 rad_sc RAD_SC Scaled radiance Numeric +181 al_sc AL_SC Scaled albedo Numeric +182 btmp_sc BTMP_SC Scaled brightness temperature Numeric +183 pwat_sc PWAT_SC Scaled precipitable water Numeric +184 li_sc LI_SC Scaled lifted index Numeric +185 pctp_sc PCTP_SC Scaled cloud top pressure Numeric +186 skt_sc SKT_SC Scaled skin temperature Numeric +187 cmsk CMSK Cloud mask Code +188 pst PST Pixel scene type Code +189 fde FDE Fire detection indicator Code +190 estp ESTP Estimated precipitation kg/m2 +191 irrate IRRATE Instananeous rain rate kg/m2/s +192 ctoph CTOPH Cloud top height m +193 ctophqi CTOPHQI Cloud top height quality indicator Code +194 estu ESTU Estimated u component of wind m/s +195 estv ESTV Estimated v component of wind m/s +196 npixu NPIXU Number of pixel used Numeric +197 solza SOLZA Solar zenith angle Degree +198 raza RAZA Relative azimuth angle Degree +199 rfl06 RFL06 Reflectance in 0.6 micron channel % +200 rfl08 RFL08 Reflectance in 0.8 micron channel % +201 rfl16 RFL16 Reflectance in 1.6 micron channel % +202 rfl39 RFL39 Reflectance in 3.9 micron channel % +206 toto3 TOTO3 Total ozone Atm cm +210 atmdiv ATMDIV Atmospheric divergence 1/s +211 wssp WSSP Wind speed (space) m/s diff --git a/eccodes/definitions/grib1/2.82.253.table b/eccodes/definitions/grib1/2.82.253.table new file mode 100644 index 00000000..885e300f --- /dev/null +++ b/eccodes/definitions/grib1/2.82.253.table @@ -0,0 +1,197 @@ +1 pres PRES Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 ptend PTEND Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 icaht ICAHT ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential Height gpm +8 h H Geometrical height m +9 hstdv HSTDV Standard deviation of height m +10 tco TCO Total column ozone kg m**-2 +11 t T Temperature K +12 vptmp VPTMP Virtual potential temperature K +13 pt PT Potential temperature K +14 papt PAPT Pseudo-adiabatic potential temperature K +15 tmax TMAX Maximum temperature K +16 tmin TMIN Minimum temperature K +17 td TD Dew point temperature K +18 depr DEPR Dew point depression (or deficit) K +19 lapr LAPR Lapse rate K s**-1 +20 vis VIS Visibility m +23 rdsp RDSP Radar spectra (3) ~ +24 pli PLI Parcel lifted index (to 500 hPa) K +25 ta TA Temperature anomaly K +26 presa PRESA Pressure anomaly Pa +27 gpa GPA Geopotential height anomaly gpm +30 wvsp WVSP Wave spectra (3) ~ +31 wdir WDIR Wind direction Degree true +32 ws WS Wind speed m s**-1 +33 u U U component of wind m s**-1 +34 v V V component of wind m s**-1 +35 strf STRF Stream function m**2 s**-1 +37 mntsf MNTSF Montgomery stream Function m**2 s**-1 +38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 tw TW Vertical velocity m s**-1 +41 absv ABSV Absolute vorticity s**-1 +42 absd ABSD Absolute divergence s**-1 +43 vo VO Vorticity (relative) s**-1 +44 d D Divergence s**-1 +45 vucsh VUCSH Vertical u-component shear s**-1 +46 vvcsh VVCSH Vertical v-component shear s**-1 +47 dirc DIRC Direction of current Degree true +48 spc SPC Speed of current m s**-1 +49 ucurr UCURR U-component of current m s**-1 +50 vcurr VCURR V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 mixr MIXR Humidity mixing ratio kg m**-2 +54 pwat PWAT Precipitable water kg m**-2 +55 vp VP Vapour pressure Pa +56 satd SATD Saturation deficit Pa +57 e E Evaporation m of water equivalent +58 ciwc CIWC Cloud ice water content kg m**-2 +59 prate PRATE Precipitation rate kg m**-2 s**-1 +60 tstm TSTM Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 lsp LSP large scale precipitation (water) kg m**-2 +63 acpcp ACPCP Convective precipitation (water) kg m**-2 +64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Snow Fall water equivalent kg m**-2 +66 sdp SDP Snow depth water equivalent kg m**-2 +67 mld MLD Mixed layer depth m +68 tthdp TTHDP Transient thermocline depth m +69 mthd MTHD Main thermocline depth m +70 mtha MTHA Main thermocline anomaly m +71 tcc TCC Total Cloud Cover % +72 ccc CCC Convective cloud cover (0 - 1) +73 lcc LCC Low cloud cover (0 - 1) +74 mcc MCC Medium cloud cover (0 - 1) +75 hcc HCC High cloud cover (0 - 1) +76 cwat CWAT Cloud water kg m**-2 +77 bli BLI Best lifted index (to 500 hPa) K +78 csf CSF Convective snowfall m of water equivalent +79 lsf LSF Large-scale snowfall m of water equivalent +80 wtmp WTMP Water temperature K +81 lsm LSM Land-sea mask (0 - 1) +82 dslm DSLM Deviation of sea-level from mean m +83 srg SRG Surface roughness * g m +84 al AL Albedo (0 - 1) +85 slt SLT Soil Temperature K +86 sm SM Soil Moisture kg m**-3 +87 veg VEG Vegetation fraction (0 - 1) +88 s S Salinity kg kg**-1 +89 den DEN Density kg m**-3 +90 ro RO Runoff m +91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) +92 icetk ICETK Ice thickness m +93 diced DICED Direction of ice drift Degree true +94 siced SICED Speed of ice drift m s**-1 +95 uice UICE U-component of ice drift m s**-1 +96 vice VICE V-component of ice drift m s**-1 +97 iceg ICEG Ice growth rate m s**-1 +98 iced ICED Ice divergence s**-1 +99 snom SNOM Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 swdir SWDIR Direction of swell waves Degree true +105 swell SWELL Significant height of swell waves m +106 swper SWPER Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 dirsw DIRSW Secondary wave direction Degree true +110 swp SWP Secondary wave period s +111 nswrs NSWRS Net short-wave radiation flux (surface) J m**-2 +112 nlwrs NLWRS Net long-wave radiation flux (surface) J m**-2 +113 nswrt NSWRT Net short-wave radiation flux(atmosph.top) J m**-2 +114 nlwrt NLWRT Net long-wave radiation flux(atmosph.top) J m**-2 +115 lwavr LWAVR Long wave radiation flux J m**-2 +116 swavr SWAVR Short wave radiation flux J m**-2 +117 grad GRAD Global radiation flux J m**-2 +118 btmp BTMP Brightness temperature K +119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 +120 swrad SWRAD Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF Surface latent heat flux J m**-2 +122 sshf SSHF Surface sensible heat flux J m**-2 +123 bld BLD Boundary layer dissipation J m**-2 +124 uflx UFLX Momentum flux, u-component N m**-2 +125 vflx VFLX Momentum flux, v-component N m**-2 +126 wmixe WMIXE Wind mixing energy J +127 imgd IMGD Image data ~ +128 armsp ARMSP Analysed RMS of PHI (CANARI) m**2 s**-2 +129 frmsp FRMSP Forecast RMS of PHI (CANARI) m**2 s**-2 +130 cssw CSSW SW net clear sky rad W m**-2 +131 cslw CSLW LW net clear sky rad W m**-2 +132 lhe LHE Latent heat flux through evaporation W m**-2 +133 msca MSCA Mask of significant cloud amount s**-1 +135 icei ICEI Icing index - +136 psct PSCT Pseudo satellite image: cloud top temperature (infrared) - +137 pstb PSTB Pseudo satellite image: water vapour Tb - +138 pstbc PSTBC Pseudo satellite image: water vapour Tb + correction for clouds - +139 pscw PSCW Pseudo satellite image: cloud water reflectivity (visible) - +144 prtp PRTP Precipitation Type - +158 mrad MRAD Surface downward moon radiation - +160 cape CAPE CAPE out of the model J kg-1 +161 xhail XHAIL AROME hail diagnostic kg m**-2 +162 ugst UGST Gust, u-component m s*-1 +163 vgst VGST Gust, v-component m s*-1 +166 mcn MCN MOCON out of the model kg kg**-1 s**-1 +167 totqv TOTQV Total water vapour kg kg**-1 +181 rain RAIN Rain kg m**-2 +182 srain SRAIN Stratiform rain kg m**-2 +183 cr CR Convective rain kg m**-2 +184 snow SNOW Snow kg m**-2 +185 tpsolid TPSOLID Total solid precipitation kg m**-2 +186 cb CB Cloud base m +187 ct CT Cloud top m +188 ful FUL Fraction of urban land % +190 asn ASN Snow albedo (0-1) +191 rsn RSN Snow density kg m**-3 +192 w_i W_I Water on canopy (Interception content) kg m**-2 +193 w_so_ice W_SO_ICE Water on canopy (Interception content) kg m**-2 +195 gwdu GWDU Gravity wave stress U-comp kg m**-1 s**-1 +196 gwdv GWDV Gravity wave stress V-comp kg m**-1 s**-1 +200 tke TKE TKE m**2 s**-2 +201 grpl GRPL Graupel kg m**-2 +204 hail HAIL Hail kg m**-2 +209 lgt LGT Lightning - +210 refl REFL Simulated reflectivity dBz ? +212 pdep PDEP Pressure departure Pa +213 vdiv VDIV Vertical Divergence s**-1 +214 upom UPOM Updraft omega ms*-1 +215 dnom DNOM Downdraft omega ms*-1 +216 upmf UPMF Updraft mesh fraction - +217 dnmf DNMF Downdraft mesh fraction - +220 stdo STDO Standard deviation of orography * g m**2s**-2 +221 atop ATOP Anisotropy coeff of topography rad +222 dtop DTOP Direction of main axis of topography - +225 clfr CLFR Fraction of clay within soil - +226 slfr SLFR Fraction of sand within soil - +228 fg FG Gust m s*-1 +229 alb ALB Albedo of bare ground - +230 alv ALV Albedo of vegetation - +231 smnr SMNR Stomatal minimum resistance s m**-1 +232 lai LAI Leaf area index m**2 m**-2 +234 dvi DVI Dominant vegetation index - +235 se SE Surface emissivity - +237 sld SLD Soil depth m +238 swv SWV Soil wetness kg m**-2 +239 zt ZT Thermal roughness length * g m +240 rev REV Resistance to evapotransiration s m**-1 +241 rmn RMN Minimum relative moisture at 2 meters - +242 rmx RMX Maximum relative moisture at 2 meters - +243 dutp DUTP Duration of total precipitation s +244 lhsub LHSUB Latent Heat Sublimation J kg**-1 +245 wevap WEVAP Water evaporation kg m**-2 +246 snsub SNSUB Snow Sublimation kg m**-2 +247 shis SHIS Snow history ??? +248 ao AO A Ozone kg kg**-1 +249 bo BO B Ozone kg kg**-1 +250 co CO C Ozone kg kg**-1 +251 aers AERS Surface aerosol sea kg kg**-1 +252 aerl AERL Surface aerosol land kg kg**-1 +253 aerc AERC Surface aerosol soot (carbon) kg kg**-1 +254 aerd AERD Surface aerosol desert kg kg**-1 +255 - - Missing diff --git a/eccodes/definitions/grib1/2.98.128.table b/eccodes/definitions/grib1/2.98.128.table new file mode 100644 index 00000000..a226d0d1 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.128.table @@ -0,0 +1,255 @@ +# This file was automatically generated by ./param.pl +1 strf Stream function (m**2 s**-1) +2 vp Velocity potential (m**2 s**-1) +3 pt Potential temperature (K) +4 eqpt Equivalent potential temperature (K) +5 sept Saturated equivalent potential temperature (K) +6 ssfr Soil sand fraction ((0 - 1)) +7 scfr Soil clay fraction ((0 - 1)) +8 sro Surface runoff (m) +9 ssro Sub-surface runoff (m) +10 ws Wind speed (m s**-1) +11 udvw U component of divergent wind (m s**-1) +12 vdvw V component of divergent wind (m s**-1) +13 urtw U component of rotational wind (m s**-1) +14 vrtw V component of rotational wind (m s**-1) +15 aluvp UV visible albedo for direct radiation ((0 - 1)) +16 aluvd UV visible albedo for diffuse radiation ((0 - 1)) +17 alnip Near IR albedo for direct radiation ((0 - 1)) +18 alnid Near IR albedo for diffuse radiation ((0 - 1)) +19 uvcs Clear sky surface UV (W m**-2 s) +20 parcs Clear sky surface photosynthetically active radiation (W m**-2 s) +21 uctp Unbalanced component of temperature (K) +22 ucln Unbalanced component of logarithm of surface pressure () +23 ucdv Unbalanced component of divergence (s**-1) +24 - Reserved for future unbalanced components () +25 - Reserved for future unbalanced components () +26 cl Lake cover ((0 - 1)) +27 cvl Low vegetation cover ((0 - 1)) +28 cvh High vegetation cover ((0 - 1)) +29 tvl Type of low vegetation () +30 tvh Type of high vegetation () +31 ci Sea-ice cover ((0 - 1)) +32 asn Snow albedo ((0 - 1)) +33 rsn Snow density (kg m**-3) +34 sst Sea surface temperature (K) +35 istl1 Ice surface temperature layer 1 (K) +36 istl2 Ice surface temperature layer 2 (K) +37 istl3 Ice surface temperature layer 3 (K) +38 istl4 Ice surface temperature layer 4 (K) +39 swvl1 Volumetric soil water layer 1 (m**3 m**-3) +40 swvl2 Volumetric soil water layer 2 (m**3 m**-3) +41 swvl3 Volumetric soil water layer 3 (m**3 m**-3) +42 swvl4 Volumetric soil water layer 4 (m**3 m**-3) +43 slt Soil type () +44 es Snow evaporation (m of water) +45 smlt Snowmelt (m of water) +46 sdur Solar duration (s) +47 dsrp Direct solar radiation (w m**-2) +48 magss Magnitude of surface stress (N m**-2 s) +49 10fg 10 metre wind gust (m s**-1) +50 lspf Large-scale precipitation fraction (s) +51 mx2t24 Maximum temperature at 2 metres since last 24 hours (K) +52 mn2t24 Minimum temperature at 2 metres since last 24 hours (K) +53 mont Montgomery potential (m**2 s**-2) +54 pres Pressure (Pa) +55 mean2t24 Mean temperature at 2 metres since last 24 hours (K) +56 mn2d24 Mean 2 metre dewpoint temperature in past 24 hours (K) +57 uvb Downward UV radiation at the surface (w m**-2 s) +58 par Photosynthetically active radiation at the surface (w m**-2 s) +59 cape Convective available potential energy (J kg**-1) +60 pv Potential vorticity (K m**2 kg**-1 s**-1) +62 obct Observation count () +63 stsktd Start time for skin temperature difference (s) +64 ftsktd Finish time for skin temperature difference (s) +65 sktd Skin temperature difference (K) +66 lai_lv Leaf area index, low vegetation (m**2 / m**2) +67 lai_hv Leaf area index, high vegetation (m**2 / m**2) +68 msr_lv Minimum stomatal resistance, low vegetation (s m**-1) +69 msr_hv Minimum stomatal resistance, high vegetation (s m**-1) +70 bc_lv Biome cover, low vegetation ((0 - 1)) +71 bc_hv Biome cover, high vegetation ((0 - 1)) +72 issrd Instantaneous surface solar radiation downwards (w m**-2) +73 istrd Instantaneous surface thermal radiation downwards (w m**-2) +74 sdfor Standard deviation of filtered subgrid orography (m) +75 crwc Cloud rain water content (kg kg**-1) +76 cswc Cloud snow water content (kg kg**-1) +77 etadot Eta-coordinate vertical velocity (s**-1) +78 tclw Total column liquid water (kg m**-2) +79 tciw Total column ice water (kg m**-2) +80 - Experimental product () +81 - Experimental product () +82 - Experimental product () +83 - Experimental product () +84 - Experimental product () +85 - Experimental product () +86 - Experimental product () +87 - Experimental product () +88 - Experimental product () +89 - Experimental product () +90 - Experimental product () +91 - Experimental product () +92 - Experimental product () +93 - Experimental product () +94 - Experimental product () +95 - Experimental product () +96 - Experimental product () +97 - Experimental product () +98 - Experimental product () +99 - Experimental product () +100 - Experimental product () +101 - Experimental product () +102 - Experimental product () +103 - Experimental product () +104 - Experimental product () +105 - Experimental product () +106 - Experimental product () +107 - Experimental product () +108 - Experimental product () +109 - Experimental product () +110 - Experimental product () +111 - Experimental product () +112 - Experimental product () +113 - Experimental product () +114 - Experimental product () +115 - Experimental product () +116 - Experimental product () +117 - Experimental product () +118 - Experimental product () +119 - Experimental product () +120 - Experimental product () +121 mx2t6 Maximum temperature at 2 metres since last 6 hours (K) +122 mn2t6 Minimum temperature at 2 metres since last 6 hours (K) +123 10fg6 10 metre wind gust in the past 6 hours (m s**-1) +124 emis Surface emissivity (dimensionless) +125 vite Vertically integrated total energy (J m**-2) +126 - Generic parameter for sensitive area prediction (Various) +127 at Atmospheric tide () +128 bv Budget values () +129 z Geopotential (m**2 s**-2) +130 t Temperature (K) +131 u U velocity (m s**-1) +132 v V velocity (m s**-1) +133 q Specific humidity (kg kg**-1) +134 sp Surface pressure (Pa) +135 w Vertical velocity (Pa s**-1) +136 tcw Total column water (kg m**-2) +137 tcwv Total column water vapour (kg m**-2) +138 vo Vorticity (relative) (s**-1) +139 stl1 Soil temperature level 1 (K) +140 swl1 Soil wetness level 1 (m of water) +141 sd Snow depth (m of water equivalent) +142 lsp Stratiform precipitation (Large-scale precipitation) (m) +143 cp Convective precipitation (m) +144 sf Snowfall (m of water equivalent) +145 bld Boundary layer dissipation (W m**-2 s) +146 sshf Surface sensible heat flux (W m**-2 s) +147 slhf Surface latent heat flux (W m**-2 s) +148 chnk Charnock () +149 snr Surface net radiation (W m**-2 s) +150 tnr Top net radiation () +151 msl Mean sea level pressure (Pa) +152 lnsp Logarithm of surface pressure () +153 swhr Short-wave heating rate (K) +154 lwhr Long-wave heating rate (K) +155 d Divergence (s**-1) +156 gh Gepotential Height (gpm) +157 r Relative humidity (%) +158 tsp Tendency of surface pressure (Pa s**-1) +159 blh Boundary layer height (m) +160 sdor Standard deviation of orography () +161 isor Anisotropy of sub-gridscale orography () +162 anor Angle of sub-gridscale orography (rad) +163 slor Slope of sub-gridscale orography () +164 tcc Total cloud cover ((0 - 1)) +165 10u 10 metre U wind component (m s**-1) +166 10v 10 metre V wind component (m s**-1) +167 2t 2 metre temperature (K) +168 2d 2 metre dewpoint temperature (K) +169 ssrd Surface solar radiation downwards (W m**-2 s) +170 stl2 Soil temperature level 2 (K) +171 swl2 Soil wetness level 2 (m of water) +172 lsm Land-sea mask ((0 - 1)) +173 sr Surface roughness (m) +174 al Albedo ((0 - 1)) +175 strd Surface thermal radiation downwards (W m**-2 s) +176 ssr Surface solar radiation (W m**-2 s) +177 str Surface thermal radiation (W m**-2 s) +178 tsr Top solar radiation (W m**-2 s) +179 ttr Top thermal radiation (W m**-2 s) +180 ewss East-West surface stress (N m**-2 s) +181 nsss North-South surface stress (N m**-2 s) +182 e Evaporation (m of water) +183 stl3 Soil temperature level 3 (K) +184 swl3 Soil wetness level 3 (m of water) +185 ccc Convective cloud cover ((0 - 1)) +186 lcc Low cloud cover ((0 - 1)) +187 mcc Medium cloud cover ((0 - 1)) +188 hcc High cloud cover ((0 - 1)) +189 sund Sunshine duration (s) +190 ewov East-West component of sub-gridscale orographic variance (m**2) +191 nsov North-South component of sub-gridscale orographic variance (m**2) +192 nwov North-West/South-East component of sub-gridscale orographic variance (m**2) +193 neov North-East/South-West component of sub-gridscale orographic variance (m**2) +194 btmp Brightness temperature (K) +195 lgws Latitudinal component of gravity wave stress (N m**-2 s) +196 mgws Meridional component of gravity wave stress (N m**-2 s) +197 gwd Gravity wave dissipation (W m**-2 s) +198 src Skin reservoir content (m of water) +199 veg Vegetation fraction ((0 - 1)) +200 vso Variance of sub-gridscale orography (m**2) +201 mx2t Maximum temperature at 2 metres since previous post-processing (K) +202 mn2t Minimum temperature at 2 metres since previous post-processing (K) +203 o3 Ozone mass mixing ratio (kg kg**-1) +204 paw Precipitation analysis weights () +205 ro Runoff (m) +206 tco3 Total column ozone (kg m**-2) +207 10si 10 metre wind speed (m s**-1) +208 tsrc Top net solar radiation, clear sky (W m**-2 s) +209 ttrc Top net thermal radiation, clear sky (W m**-2 s) +210 ssrc Surface net solar radiation, clear sky (W m**-2 s) +211 strc Surface net thermal radiation, clear sky (W m**-2 s) +212 tisr TOA incident solar radiation (W m**-2 s) +213 vimd Vertically integrated moisture divergence (kg m**-2) +214 dhr Diabatic heating by radiation (K) +215 dhvd Diabatic heating by vertical diffusion (K) +216 dhcc Diabatic heating by cumulus convection (K) +217 dhlc Diabatic heating large-scale condensation (K) +218 vdzw Vertical diffusion of zonal wind (m s**-1) +219 vdmw Vertical diffusion of meridional wind (m s**-1) +220 ewgd East-West gravity wave drag tendency (m s**-1) +221 nsgd North-South gravity wave drag tendency (m s**-1) +222 ctzw Convective tendency of zonal wind (m s**-1) +223 ctmw Convective tendency of meridional wind (m s**-1) +224 vdh Vertical diffusion of humidity (kg kg**-1) +225 htcc Humidity tendency by cumulus convection (kg kg**-1) +226 htlc Humidity tendency by large-scale condensation (kg kg**-1) +227 crnh Change from removal of negative humidity (kg kg**-1) +228 tp Total precipitation (m) +229 iews Instantaneous X surface stress (N m**-2) +230 inss Instantaneous Y surface stress (N m**-2) +231 ishf Instantaneous surface heat flux (W m**-2) +232 ie Instantaneous moisture flux (kg m**-2 s**-1) +233 asq Apparent surface humidity (kg kg**-1) +234 lsrh Logarithm of surface roughness length for heat () +235 skt Skin temperature (K) +236 stl4 Soil temperature level 4 (K) +237 swl4 Soil wetness level 4 (m) +238 tsn Temperature of snow layer (K) +239 csf Convective snowfall (m of water equivalent) +240 lsf Large-scale snowfall (m of water equivalent) +241 acf Accumulated cloud fraction tendency ((-1 to 1)) +242 alw Accumulated liquid water tendency ((-1 to 1)) +243 fal Forecast albedo ((0 - 1)) +244 fsr Forecast surface roughness (m) +245 flsr Forecast logarithm of surface roughness for heat () +246 clwc Cloud liquid water content (kg kg**-1) +247 ciwc Cloud ice water content (kg kg**-1) +248 cc Fraction of cloud cover ((0 - 1)) +249 aiw Accumulated ice water tendency ((-1 to 1)) +250 ice Ice age ((0 - 1)) +251 atte Adiabatic tendency of temperature (K) +252 athe Adiabatic tendency of humidity (kg kg**-1) +253 atze Adiabatic tendency of zonal wind (m s**-1) +254 atmw Adiabatic tendency of meridional wind (m s**-1) +255 - Indicates a missing value () diff --git a/eccodes/definitions/grib1/2.98.129.table b/eccodes/definitions/grib1/2.98.129.table new file mode 100644 index 00000000..e74bcd29 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.129.table @@ -0,0 +1,237 @@ +# This file was automatically generated by ./param.pl +1 strfgrd STRF Stream function gradient (m**2 s**-1) +2 vpotgrd VPOT Velocity potential gradient (m**2 s**-1) +3 ptgrd PT Potential temperature gradient (K) +4 eqptgrd EQPT Equivalent potential temperature gradient (K) +5 septgrd SEPT Saturated equivalent potential temperature gradient (K) +11 udvwgrd UDVW U component of divergent wind gradient (m s**-1) +12 vdvwgrd VDVW V component of divergent wind gradient (m s**-1) +13 urtwgrd URTW U component of rotational wind gradient (m s**-1) +14 vrtwgrd VRTW V component of rotational wind gradient (m s**-1) +21 uctpgrd UCTP Unbalanced component of temperature gradient (K) +22 uclngrd UCLN Unbalanced component of logarithm of surface pressure gradient +23 ucdvgrd UCDV Unbalanced component of divergence gradient (s**-1) +24 24 - Reserved for future unbalanced components +25 25 - Reserved for future unbalanced components +26 clgrd CL Lake cover gradient (0 - 1) +27 cvlgrd CVL Low vegetation cover gradient (0 - 1) +28 cvhgrd CVH High vegetation cover gradient (0 - 1) +29 tvlgrd TVL Type of low vegetation gradient +30 tvhgrd TVH Type of high vegetation gradient +31 sicgrd CI Sea-ice cover gradient (0 - 1) +32 asngrd ASN Snow albedo gradient (0 - 1) +33 rsngrd RSN Snow density gradient (kg m**-3) +34 sstkgrd SSTK Sea surface temperature gradient K +35 istl1grd ISTL1 Ice surface temperature layer 1 gradient K +36 istl2grd ISTL2 Ice surface temperature layer 2 gradient K +37 istl3grd ISTL3 Ice surface temperature layer 3 gradient K +38 istl4grd ISTL4 Ice surface temperature layer 4 gradient K +39 swvl1grd SWVL1 Volumetric soil water layer 1 gradient (m**3 m**-3) +40 swvl2grd SWVL2 Volumetric soil water layer 2 gradient (m**3 m**-3) +41 swvl3grd SWVL3 Volumetric soil water layer 3 gradient (m**3 m**-3) +42 swvl4grd SWVL4 Volumetric soil water layer 4 gradient (m**3 m**-3) +43 sltgrd SLT Soil type gradient +44 esgrd ES Snow evaporation gradient (kg m**-2) +45 smltgrd SMLT Snowmelt gradient (kg m**-2) +46 sdurgrd SDUR Solar duration gradient s +47 dsrpgrd DSRP Direct solar radiation gradient (J m**-2) +48 magssgrd MAGSS Magnitude of surface stress gradient (N m**-2 s) +49 10fggrd 10FG 10 metre wind gust gradient (m s**-1) +50 lspfgrd LSPF Large-scale precipitation fraction gradient (s) +51 mx2t24grd MX2T24 Maximum 2 metre temperature gradient (K) +52 mn2t24grd MN2T24 Minimum 2 metre temperature gradient (K) +53 montgrd MONT Montgomery potential gradient (m**2 s**-2) +54 presgrd PRES Pressure gradient (Pa) +55 mean2t24grd MEAN2T24 Mean 2 metre temperature in the last 24 hours gradient (K) +56 mn2d24grd MN2D24 Mean 2 metre dewpoint temperature in the last 24 hours gradient K +57 uvbgrd UVB Downward UV radiation at the surface gradient (J m**-2) +58 pargrd PAR Photosynthetically active radiation at the surface gradient (J m**-2) +59 capegrd CAPE Convective available potential energy gradient (J kg**-1) +60 pvgrd PV Potential vorticity gradient (K m**2 kg**-1 s**-1) +61 tpogrd TPO Total precipitation from observations gradient Millimetres*100 + number of stations +62 obctgrd OBCT Observation count gradient +63 63 - Start time for skin temperature difference (s) +64 64 - Finish time for skin temperature difference (s) +65 65 - Skin temperature difference (K) +66 66 - Leaf area index, low vegetation (m**2 / m**2) +67 67 - Leaf area index, high vegetation (m**2 / m**2) +68 68 - Minimum stomatal resistance, low vegetation (s m**-1) +69 69 - Minimum stomatal resistance, high vegetation (s m**-1) +70 70 - Biome cover, low vegetation (0 - 1) +71 71 - Biome cover, high vegetation (0 - 1) +78 78 - Total column liquid water (kg m**-2) +79 79 - Total column ice water (kg m**-2) +80 80 - Experimental product +81 81 - Experimental product +82 82 - Experimental product +83 83 - Experimental product +84 84 - Experimental product +85 85 - Experimental product +86 86 - Experimental product +87 87 - Experimental product +88 88 - Experimental product +89 89 - Experimental product +90 90 - Experimental product +91 91 - Experimental product +92 92 - Experimental product +93 93 - Experimental product +94 94 - Experimental product +95 95 - Experimental product +96 96 - Experimental product +97 97 - Experimental product +98 98 - Experimental product +99 99 - Experimental product +100 100 - Experimental product +101 101 - Experimental product +102 102 - Experimental product +103 103 - Experimental product +104 104 - Experimental product +105 105 - Experimental product +106 106 - Experimental product +107 107 - Experimental product +108 108 - Experimental product +109 109 - Experimental product +110 110 - Experimental product +111 111 - Experimental product +112 112 - Experimental product +113 113 - Experimental product +114 114 - Experimental product +115 115 - Experimental product +116 116 - Experimental product +117 117 - Experimental product +118 118 - Experimental product +119 119 - Experimental product +120 120 - Experimental product +121 mx2t6grd MX2T6 Maximum temperature at 2 metres gradient (K) +122 mn2t6grd MN2T6 Minimum temperature at 2 metres gradient (K) +123 10fg6grd 10FG6 10 metre wind gust in the last 6 hours gradient (m s**-1) +125 125 - Vertically integrated total energy (J m**-2) +126 126 - Generic parameter for sensitive area prediction Various +127 atgrd AT Atmospheric tide gradient +128 bvgrd BV Budget values gradient +129 zgrd Z Geopotential gradient (m**2 s**-2) +130 tgrd T Temperature gradient (K) +131 ugrd U U component of wind gradient (m s**-1) +132 vgrd V V component of wind gradient (m s**-1) +133 qgrd Q Specific humidity gradient (kg kg**-1) +134 spgrd SP Surface pressure gradient (Pa) +135 wgrd W vertical velocity (pressure) gradient (Pa s**-1) +136 tcwgrd TCW Total column water gradient (kg m**-2) +137 tcwvgrd TCWV Total column water vapour gradient (kg m**-2) +138 vogrd VO Vorticity (relative) gradient (s**-1) +139 stl1grd STL1 Soil temperature level 1 gradient (K) +140 swl1grd SWL1 Soil wetness level 1 gradient (kg m**-2) +141 sdgrd SD Snow depth gradient (m of water equivalent) +142 lspgrd LSP Stratiform precipitation (Large-scale precipitation) gradient (m) +143 cpgrd CP Convective precipitation gradient (m) +144 sfgrd SF Snowfall (convective + stratiform) gradient m of water equivalent +145 bldgrd BLD Boundary layer dissipation gradient (J m**-2) +146 sshfgrd SSHF Surface sensible heat flux gradient (J m**-2) +147 slhfgrd SLHF Surface latent heat flux gradient (J m**-2) +148 chnkgrd CHNK Charnock gradient +149 snrgrd SNR Surface net radiation gradient (J m**-2) +150 tnrgrd TNR Top net radiation gradient +151 mslgrd MSL Mean sea level pressure gradient (Pa) +152 lnspgrd LNSP Logarithm of surface pressure gradient +153 swhrgrd SWHR Short-wave heating rate gradient (K) +154 lwhrgrd LWHR Long-wave heating rate gradient (K) +155 dgrd D Divergence gradient (s**-1) +156 ghgrd GH Height gradient (m) +157 rgrd R Relative humidity gradient (%) +158 tspgrd TSP Tendency of surface pressure gradient (Pa s**-1) +159 blhgrd BLH Boundary layer height gradient (m) +160 sdorgrd SDOR Standard deviation of orography gradient +161 isorgrd ISOR Anisotropy of sub-gridscale orography gradient +162 anorgrd ANOR Angle of sub-gridscale orography gradient +163 slorgrd SLOR Slope of sub-gridscale orography gradient +164 tccgrd TCC Total cloud cover gradient (0 - 1) +165 10ugrd 10U 10 metre U wind component gradient (m s**-1) +166 10vgrd 10V 10 metre V wind component gradient (m s**-1) +167 2tgrd 2T 2 metre temperature gradient (K) +168 2dgrd 2D 2 metre dewpoint temperature gradient (K) +169 ssrdgrd SSRD Surface solar radiation downwards gradient (J m**-2) +170 stl2grd STL2 Soil temperature level 2 gradient (K) +171 swl2grd SWL2 Soil wetness level 2 gradient (kg m**-2) +172 lsmgrd LSM Land-sea mask gradient (0 - 1) +173 srgrd SR Surface roughness gradient (m) +174 algrd AL Albedo gradient (0 - 1) +175 strdgrd STRD Surface thermal radiation downwards gradient (J m**-2) +176 ssrgrd SSR Surface solar radiation gradient (J m**-2) +177 strgrd STR Surface thermal radiation gradient (J m**-2) +178 tsrgrd TSR Top solar radiation gradient (J m**-2) +179 ttrgrd TTR Top thermal radiation gradient (J m**-2) +180 ewssgrd EWSS East-West surface stress gradient (N m**-2 s) +181 nsssgrd NSSS North-South surface stress gradient (N m**-2 s) +182 egrd E Evaporation gradient (kg m**-2) +183 stl3grd STL3 Soil temperature level 3 gradient (K) +184 swl3grd SWL3 Soil wetness level 3 gradient (kg m**-2) +185 cccgrd CCC Convective cloud cover gradient (0 - 1) +186 lccgrd LCC Low cloud cover gradient (0 - 1) +187 mccgrd MCC Medium cloud cover gradient (0 - 1) +188 hccgrd HCC High cloud cover gradient (0 - 1) +189 sundgrd SUND Sunshine duration gradient (s) +190 ewovgrd EWOV East-West component of sub-gridscale orographic variance gradient (m**2) +191 nsovgrd NSOV North-South component of sub-gridscale orographic variance gradient (m**2) +192 nwovgrd NWOV North-West/South-East component of sub-gridscale orographic variance gradient (m**2) +193 neovgrd NEOV North-East/South-West component of sub-gridscale orographic variance gradient (m**2) +194 btmpgrd BTMP Brightness temperature gradient (K) +195 lgwsgrd LGWS Longitudinal component of gravity wave stress gradient (N m**-2 s) +196 mgwsgrd MGWS Meridional component of gravity wave stress gradient (N m**-2 s) +197 gwdgrd GWD Gravity wave dissipation gradient (J m**-2) +198 srcgrd SRC Skin reservoir content gradient (kg m**-2) +199 veggrd VEG Vegetation fraction gradient (0 - 1) +200 vsogrd VSO Variance of sub-gridscale orography gradient (m**2) +201 mx2tgrd MX2T Maximum temperature at 2 metres since previous post-processing gradient (K) +202 mn2tgrd MN2T Minimum temperature at 2 metres since previous post-processing gradient (K) +203 o3grd O3 Ozone mass mixing ratio gradient (kg kg**-1) +204 pawgrd PAW Precipitation analysis weights gradient +205 rogrd RO Runoff gradient (m) +206 tco3grd TCO3 Total column ozone gradient (kg m**-2) +207 10sigrd 10SI 10 metre wind speed gradient (m s**-1) +208 tsrcgrd TSRC Top net solar radiation, clear sky gradient (J m**-2) +209 ttrcgrd TTRC Top net thermal radiation, clear sky gradient (J m**-2) +210 ssrcgrd SSRC Surface net solar radiation, clear sky gradient (J m**-2) +211 strcgrd STRC Surface net thermal radiation, clear sky gradient (J m**-2) +212 tisrgrd TISR TOA incident solar radiation gradient (J m**-2) +214 dhrgrd DHR Diabatic heating by radiation gradient (K) +215 dhvdgrd DHVD Diabatic heating by vertical diffusion gradient (K) +216 dhccgrd DHCC Diabatic heating by cumulus convection gradient (K) +217 dhlcgrd DHLC Diabatic heating large-scale condensation gradient (K) +218 vdzwgrd VDZW Vertical diffusion of zonal wind gradient (m s**-1) +219 vdmwgrd VDMW Vertical diffusion of meridional wind gradient (m s**-1) +220 ewgdgrd EWGD East-West gravity wave drag tendency gradient (m s**-1) +221 nsgdgrd NSGD North-South gravity wave drag tendency gradient (m s**-1) +222 ctzwgrd CTZW Convective tendency of zonal wind gradient (m s**-1) +223 ctmwgrd CTMW Convective tendency of meridional wind gradient (m s**-1) +224 vdhgrd VDH Vertical diffusion of humidity gradient (kg kg**-1) +225 htccgrd HTCC Humidity tendency by cumulus convection gradient (kg kg**-1) +226 htlcgrd HTLC Humidity tendency by large-scale condensation gradient (kg kg**-1) +227 crnhgrd CRNH Change from removal of negative humidity gradient (kg kg**-1) +228 tpgrd TP Total precipitation gradient (m) +229 iewsgrd IEWS Instantaneous X surface stress gradient (N m**-2) +230 inssgrd INSS Instantaneous Y surface stress gradient (N m**-2) +231 ishfgrd ISHF Instantaneous surface heat flux gradient (W m**-2) +232 iegrd IE Instantaneous moisture flux gradient (kg m**-2 s) +233 asqgrd ASQ Apparent surface humidity gradient (kg kg**-1) +234 lsrhgrd LSRH Logarithm of surface roughness length for heat gradient +235 sktgrd SKT Skin temperature gradient (K) +236 stl4grd STL4 Soil temperature level 4 gradient (K) +237 swl4grd SWL4 Soil wetness level 4 gradient (m) +238 tsngrd TSN Temperature of snow layer gradient (K) +239 csfgrd CSF Convective snowfall gradient (m of water equivalent) +240 lsfgrd LSF Large scale snowfall gradient (m of water equivalent) +241 acfgrd ACF Accumulated cloud fraction tendency gradient (-1 to 1) +242 alwgrd ALW Accumulated liquid water tendency gradient gradient (-1 to 1) +243 falgrd FAL Forecast albedo gradient (0 - 1) +244 fsrgrd FSR Forecast surface roughness gradient (m) +245 flsrgrd FLSR Forecast logarithm of surface roughness for heat gradient +246 clwcgrd CLWC Specific cloud liquid water content gradient (kg kg**-1) +247 ciwcgrd CIWC Specific cloud ice water content gradient (kg kg**-1) +248 ccgrd CC Cloud cover gradient (0 - 1) +249 aiwgrd AIW Accumulated ice water tendency gradient (-1 to 1) +250 icegrd ICE Ice age gradient (0 - 1) +251 attegrd ATTE Adiabatic tendency of temperature gradient (K) +252 athegrd ATHE Adiabatic tendency of humidity gradient (kg kg**-1) +253 atzegrd ATZE Adiabatic tendency of zonal wind gradient (m s**-1) +254 atmwgrd ATMW Adiabatic tendency of meridional wind gradient (m s**-1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.130.table b/eccodes/definitions/grib1/2.98.130.table new file mode 100644 index 00000000..c3778edf --- /dev/null +++ b/eccodes/definitions/grib1/2.98.130.table @@ -0,0 +1,27 @@ +# This file was automatically generated by ./param.pl +208 tsru TSRU Top solar radiation upward W m**-2 +209 ttru TTRU Top thermal radiation upward W m**-2 +210 tsuc TSUC Top solar radiation upward, clear sky W m**-2 +211 ttuc TTUC Top thermal radiation upward, clear sky W m**-2 +212 clw CLW Cloud liquid water kg kg**-1 +213 cf CF Cloud fraction (0 - 1) +214 dhr DHR Diabatic heating by radiation K s**-1 +215 dhvd DHVD Diabatic heating by vertical diffusion K s**-1 +216 dhcc DHCC Diabatic heating by cumulus convection K s**-1 +217 dhlc DHLC Diabatic heating by large-scale condensation K s**-1 +218 vdzw VDZW Vertical diffusion of zonal wind m**2 s**-3 +219 vdmw VDMW Vertical diffusion of meridional wind m**2 s**-3 +220 ewgd EWGD East-West gravity wave drag m**2 s**-3 +221 nsgd NSGD North-South gravity wave drag m**2 s**-3 +222 ctzw CTZW Convective tendency of zonal wind m**2 s**-3 +223 ctmw CTMW Convective tendency of meridional wind m**2 s**-3 +224 vdh VDH Vertical diffusion of humidity kg kg**-1 s**-1 +225 htcc HTCC Humidity tendency by cumulus convection kg kg**-1 s**-1 +226 htlc HTLC Humidity tendency by large-scale condensation kg kg**-1 s**-1 +227 crnh CRNH Change from removal of negative humidity kg kg**-1 s**-1 +228 att ATT Adiabatic tendency of temperature K s**-1 +229 ath ATH Adiabatic tendency of humidity kg kg**-1 s**-1 +230 atzw ATZW Adiabatic tendency of zonal wind m**2 s**-3 +231 atmwax ATMWAX Adiabatic tendency of meridional wind m**2 s**-3 +232 mvv MVV Mean vertical velocity Pa s**-1 +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.131.table b/eccodes/definitions/grib1/2.98.131.table new file mode 100644 index 00000000..ac2e14f4 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.131.table @@ -0,0 +1,77 @@ +# This file was automatically generated by ./param.pl +1 2tag2 2m temperature anomaly of at least +2K % +2 2tag1 2m temperature anomaly of at least +1K % +3 2tag0 2m temperature anomaly of at least 0K % +4 2talm1 2m temperature anomaly of at most -1K % +5 2talm2 2m temperature anomaly of at most -2K % +6 tpag20 Total precipitation anomaly of at least 20 mm % +7 tpag10 Total precipitation anomaly of at least 10 mm % +8 tpag0 Total precipitation anomaly of at least 0 mm % +9 stag0 Surface temperature anomaly of at least 0K % +10 mslag0 Mean sea level pressure anomaly of at least 0 Pa % +15 h0dip Height of 0 degree isotherm probability percentage +16 hslp Height of snowfall limit probability percentage +17 saip Showalter index probability percentage +18 whip Whiting index probability percentage +20 talm2 Temperature anomaly less than -2 K % +21 tag2 Temperature anomaly of at least +2 K % +22 talm8 Temperature anomaly less than -8 K % +23 talm4 Temperature anomaly less than -4 K % +24 tag4 Temperature anomaly greater than +4 K % +25 tag8 Temperature anomaly greater than +8 K % +49 10gp 10 metre wind gust probability percentage +59 capep Convective available potential energy probability percentage +60 tpg1 Total precipitation of at least 1 mm % +61 tpg5 Total precipitation of at least 5 mm % +62 tpg10 Total precipitation of at least 10 mm % +63 tpg20 Total precipitation of at least 20 mm % +64 tpl01 Total precipitation less than 0.1 mm % +65 tprl1 Total precipitation rate less than 1 mm/day % +66 tprg3 Total precipitation rate of at least 3 mm/day % +67 tprg5 Total precipitation rate of at least 5 mm/day % +68 10spg10 10 metre wind speed of at least 10 m/s % +69 10spg15 10 metre wind speed of at least 15 m/s % +70 10fgg15 10 metre wind gust of at least 15 m/s % +71 10fgg20 10 metre wind gust of at least 20 m/s % +72 10fgg25 10 metre wind gust of at least 25 m/s % +73 2tl273 2 metre temperature less than 273.15 K % +74 swhg2 Significant wave height of at least 2 m % +75 swhg4 Significant wave height of at least 4 m % +76 swhg6 Significant wave height of at least 6 m % +77 swhg8 Significant wave height of at least 8 m % +79 mwpg10 Mean wave period of at least 10 s % +80 mwpg12 Mean wave period of at least 12 s % +81 mwpg15 Mean wave period of at least 15 s % +82 tpg40 Total precipitation of at least 40 mm % +83 tpg60 Total precipitation of at least 60 mm % +84 tpg80 Total precipitation of at least 80 mm % +85 tpg100 Total precipitation of at least 100 mm % +86 tpg150 Total precipitation of at least 150 mm % +87 tpg200 Total precipitation of at least 200 mm % +88 tpg300 Total precipitation of at least 300 mm % +89 pts Probability of a tropical storm % +90 ph Probability of a hurricane % +91 ptd Probability of a tropical depression % +92 cpts Climatological probability of a tropical storm % +93 cph Climatological probability of a hurricane % +94 cptd Climatological probability of a tropical depression % +95 pats Probability anomaly of a tropical storm % +96 pah Probability anomaly of a hurricane % +97 patd Probability anomaly of a tropical depression % +98 tpg25 Total precipitation of at least 25 mm % +99 tpg50 Total precipitation of at least 50 mm % +100 10fgg10 10 metre wind gust of at least 10 m/s % +129 zp Geopotential probability zp % +130 tap Temperature anomaly probability percentage +139 2tp 2 metre temperature probability % +144 sfp Snowfall (convective + stratiform) probability percentage +151 tpp Total precipitation probability +164 tccp Total cloud cover probability percentage +165 10sp 10 metre speed probability percentage +167 2tp 2 metre temperature probability percentage +201 mx2tp Maximum 2 metre temperature probability percentage +202 mn2tp Minimum 2 metre temperature probability percentage +228 tpp Total precipitation probability percentage +229 swhp Significant wave height probability percentage +232 mwpp Mean wave period probability percentage +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.132.table b/eccodes/definitions/grib1/2.98.132.table new file mode 100644 index 00000000..7864b8ab --- /dev/null +++ b/eccodes/definitions/grib1/2.98.132.table @@ -0,0 +1,13 @@ +# This file was automatically generated by ./param.pl +44 44 CAPESI Convective available potential energy shear index (-1 to 1) +45 45 WVFI Water vapour flux index (dimensionless) +49 49 10GP 10 metre wind gust index (-1 to 1) +59 capei CAPEI Convective available potential energy index (-1 to 1) +144 144 sfi Snowfall index (-1 to 1) +165 165 10SP 10 metre speed index (-1 to 1) +167 167 2TP 2 metre temperature index (-1 to 1) +201 201 Maximum temperature at 2 metres index (-1 to 1) +202 202 Minimum temperature at 2 metres index (-1 to 1) +216 216 Maximum of significant wave height index (-1 to 1) +228 228 TTP Total precipitation index (-1 to 1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.133.table b/eccodes/definitions/grib1/2.98.133.table new file mode 100644 index 00000000..af1ebcfa --- /dev/null +++ b/eccodes/definitions/grib1/2.98.133.table @@ -0,0 +1,93 @@ +# This file was automatically generated by ./param.pl +1 2tplm10 2m temperature probability less than -10 C % +2 2tplm5 2m temperature probability less than -5 C % +3 2tpl0 2m temperature probability less than 0 C % +4 2tpl5 2m temperature probability less than 5 C % +5 2tpl10 2m temperature probability less than 10 C % +6 2tpg25 2m temperature probability greater than 25 C % +7 2tpg30 2m temperature probability greater than 30 C % +8 2tpg35 2m temperature probability greater than 35 C % +9 2tpg40 2m temperature probability greater than 40 C % +10 2tpg45 2m temperature probability greater than 45 C % +11 mn2tplm10 Minimum 2 metre temperature probability less than -10 C % +12 mn2tplm5 Minimum 2 metre temperature probability less than -5 C % +13 mn2tpl0 Minimum 2 metre temperature probability less than 0 C % +14 mn2tpl5 Minimum 2 metre temperature probability less than 5 C % +15 mn2tpl10 Minimum 2 metre temperature probability less than 10 C % +16 mx2tpg25 Maximum 2 metre temperature probability greater than 25 C % +17 mx2tpg30 Maximum 2 metre temperature probability greater than 30 C % +18 mx2tpg35 Maximum 2 metre temperature probability greater than 35 C % +19 mx2tpg40 Maximum 2 metre temperature probability greater than 40 C % +20 mx2tpg45 Maximum 2 metre temperature probability greater than 45 C % +21 10spg10 10 metre wind speed probability of at least 10 m/s % +22 10spg15 10 metre wind speed probability of at least 15 m/s % +23 10spg20 10 metre wind speed probability of at least 20 m/s % +24 10spg35 10 metre wind speed probability of at least 35 m/s % +25 10spg50 10 metre wind speed probability of at least 50 m/s % +26 10gpg20 10 metre wind gust probability of at least 20 m/s % +27 10gpg35 10 metre wind gust probability of at least 35 m/s % +28 10gpg50 10 metre wind gust probability of at least 50 m/s % +29 10gpg75 10 metre wind gust probability of at least 75 m/s % +30 10gpg100 10 metre wind gust probability of at least 100 m/s % +31 tppg1 Total precipitation probability of at least 1 mm % +32 tppg5 Total precipitation probability of at least 5 mm % +33 tppg10 Total precipitation probability of at least 10 mm % +34 tppg20 Total precipitation probability of at least 20 mm % +35 tppg40 Total precipitation probability of at least 40 mm % +36 tppg60 Total precipitation probability of at least 60 mm % +37 tppg80 Total precipitation probability of at least 80 mm % +38 tppg100 Total precipitation probability of at least 100 mm % +39 tppg150 Total precipitation probability of at least 150 mm % +40 tppg200 Total precipitation probability of at least 200 mm % +41 tppg300 Total precipitation probability of at least 300 mm % +42 sfpg1 Snowfall probability of at least 1 mm % +43 sfpg5 Snowfall probability of at least 5 mm % +44 sfpg10 Snowfall probability of at least 10 mm % +45 sfpg20 Snowfall probability of at least 20 mm % +46 sfpg40 Snowfall probability of at least 40 mm % +47 sfpg60 Snowfall probability of at least 60 mm % +48 sfpg80 Snowfall probability of at least 80 mm % +49 sfpg100 Snowfall probability of at least 100 mm % +50 sfpg150 Snowfall probability of at least 150 mm % +51 sfpg200 Snowfall probability of at least 200 mm % +52 sfpg300 Snowfall probability of at least 300 mm % +53 tccpg10 Total Cloud Cover probability greater than 10% % +54 tccpg20 Total Cloud Cover probability greater than 20% % +55 tccpg30 Total Cloud Cover probability greater than 30% % +56 tccpg40 Total Cloud Cover probability greater than 40% % +57 tccpg50 Total Cloud Cover probability greater than 50% % +58 tccpg60 Total Cloud Cover probability greater than 60% % +59 tccpg70 Total Cloud Cover probability greater than 70% % +60 tccpg80 Total Cloud Cover probability greater than 80% % +61 tccpg90 Total Cloud Cover probability greater than 90% % +62 tccpg99 Total Cloud Cover probability greater than 99% % +63 hccpg10 High Cloud Cover probability greater than 10% % +64 hccpg20 High Cloud Cover probability greater than 20% % +65 hccpg30 High Cloud Cover probability greater than 30% % +66 hccpg40 High Cloud Cover probability greater than 40% % +67 hccpg50 High Cloud Cover probability greater than 50% % +68 hccpg60 High Cloud Cover probability greater than 60% % +69 hccpg70 High Cloud Cover probability greater than 70% % +70 hccpg80 High Cloud Cover probability greater than 80% % +71 hccpg90 High Cloud Cover probability greater than 90% % +72 hccpg99 High Cloud Cover probability greater than 99% % +73 mccpg10 Medium Cloud Cover probability greater than 10% % +74 mccpg20 Medium Cloud Cover probability greater than 20% % +75 mccpg30 Medium Cloud Cover probability greater than 30% % +76 mccpg40 Medium Cloud Cover probability greater than 40% % +77 mccpg50 Medium Cloud Cover probability greater than 50% % +78 mccpg60 Medium Cloud Cover probability greater than 60% % +79 mccpg70 Medium Cloud Cover probability greater than 70% % +80 mccpg80 Medium Cloud Cover probability greater than 80% % +81 mccpg90 Medium Cloud Cover probability greater than 90% % +82 mccpg99 Medium Cloud Cover probability greater than 99% % +83 lccpg10 Low Cloud Cover probability greater than 10% % +84 lccpg20 Low Cloud Cover probability greater than 20% % +85 lccpg30 Low Cloud Cover probability greater than 30% % +86 lccpg40 Low Cloud Cover probability greater than 40% % +87 lccpg50 Low Cloud Cover probability greater than 50% % +88 lccpg60 Low Cloud Cover probability greater than 60% % +89 lccpg70 Low Cloud Cover probability greater than 70% % +90 lccpg80 Low Cloud Cover probability greater than 80% % +91 lccpg90 Low Cloud Cover probability greater than 90% % +92 lccpg99 Low Cloud Cover probability greater than 99% % diff --git a/eccodes/definitions/grib1/2.98.140.table b/eccodes/definitions/grib1/2.98.140.table new file mode 100644 index 00000000..6147bcc8 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.140.table @@ -0,0 +1,88 @@ +# This file was automatically generated by ./param.pl +80 80 WX1 Wave experimental parameter 1 (~) +81 81 WX2 Wave experimental parameter 2 (~) +82 82 WX3 Wave experimental parameter 3 (~) +83 83 WX4 Wave experimental parameter 4 (~) +84 84 WX5 Wave experimental parameter 5 (~) +98 98 WETA Wave induced mean sea level correction (m) +99 99 WRAF Ratio of wave angular and frequency width (dimensionless) +100 100 WNSLC Number of events in freak waves statistics (dimensionless) +101 101 UTAUA U-component of atmospheric surface momentum flux (N m**-2) +102 102 VTAUA V-component of atmospheric surface momentum flux (N m**-2) +103 103 UTAUO U-component of surface momentum flux into ocean (N m**-2) +104 104 VTAUO V-component of surface momentum flux into ocean (N m**-2) +105 105 WPHIO Wave turbulent energy flux into ocean (W m**-2) +106 106 WDW1 Wave directional width of first swell partition (dimensionless) +107 107 WFW1 Wave frequency width of first swell partition (dimensionless) +108 108 WDW2 Wave directional width of second swell partition (dimensionless) +109 109 WFW2 Wave frequency width of second swell partition (dimensionless) +110 110 WDW3 Wave directional width of third swell partition (dimensionless) +111 111 WFW3 Wave frequency width of third swell partition (dimensionless) +112 112 WEFXM Wave energy flux magnitude (W m**-1) +113 113 WEFXD Wave energy flux mean direction (Degree true) +114 114 H1012 Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds (m) +115 115 H1214 Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds (m) +116 116 H1417 Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds (m) +117 117 H1721 Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds (m) +118 118 H2125 Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds (m) +119 119 H2530 Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds (m) +120 120 SH10 Significant wave height of all waves with period larger than 10s (m) +121 121 SWH1 Significant wave height of first swell partition (m) +122 122 MWD1 Mean wave direction of first swell partition (degrees) +123 123 MWP1 Mean wave period of first swell partition (s) +124 124 SWH2 Significant wave height of second swell partition (m) +125 125 MWD2 Mean wave direction of second swell partition (degrees) +126 126 MWP2 Mean wave period of second swell partition (s) +127 127 SWH3 Significant wave height of third swell partition (m) +128 128 MWD3 Mean wave direction of third swell partition (degrees) +129 129 MWP3 Mean wave period of third swell partition (s) +200 200 MAXSWH Maximum of significant wave height (m) +207 207 WSS Wave Spectral Skewness (dimensionless) +208 208 WSTAR Free convective velocity over the oceans (m s**-1) +209 209 RHOAO Air density over the oceans (kg m**-3) +210 210 MSWSI Mean square wave strain in sea ice (~) +211 211 PHIAW Normalized energy flux into waves (dimensionless) +212 212 PHIOC Normalized energy flux into ocean (dimensionless) +213 213 TLA Turbulent Langmuir number (~) +214 214 TAUOC Normalized stress into ocean (dimensionless) +215 215 UST U-component stokes drift (m s**-1) +216 216 VST V-component stokes drift (m s**-1) +217 217 TMAX Period corresponding to maximum individual wave height (s) +218 218 HMAX Maximum individual wave height (m) +219 219 WMB Model bathymetry (m) +220 220 MP1 Mean wave period based on first moment (s) +221 221 MP2 Mean zero-crossing wave period (s) +222 222 WDW Wave spectral directional width (dimensionless) +223 223 P1WW Mean wave period based on first moment for wind waves (s) +224 224 P2WW Mean wave period based on second moment for wind waves (s) +225 225 DWWW Wave spectral directional width for wind waves (dimensionless) +226 226 P1PS Mean wave period based on first moment for swell (s) +227 227 P2PS Mean wave period based on second moment for swell (s) +228 228 DWPS Wave spectral directional width for swell (dimensionless) +229 229 SWH Significant height of combined wind waves and swell (m) +230 230 MWD Mean wave direction (Degree true) +231 231 PP1D Peak wave period (s) +232 232 MWP Mean wave period (s) +233 233 CDWW Coefficient of drag with waves (dimensionless) +234 234 SHWW Significant height of wind waves (m) +235 235 MDWW Mean direction of wind waves (degrees) +236 236 MPWW Mean period of wind waves (s) +237 237 SHTS Significant height of total swell (m) +238 238 MDTS Mean direction of total swell (degrees) +239 239 MPTS Mean period of total swell (s) +240 240 SDHS Standard deviation wave height (m) +241 241 MU10 Mean of 10 metre wind speed (m s**-1) +242 242 MDWI Mean wind direction (degrees) +243 243 SDU Standard deviation of 10 metre wind speed (m s**-1) +244 244 MSQS Mean square slope of waves (dimensionless) +245 245 WIND 10 metre wind speed (m s**-1) +246 246 AWH Altimeter wave height (m) +247 247 ACWH Altimeter corrected wave height (m) +248 248 ARRC Altimeter range relative correction (~) +249 249 DWI 10 metre wind direction (degrees) +250 250 2DSP 2D wave spectra (multiple) (m**2 s radian**-1) +251 251 2DFD 2D wave spectra (single) (m**2 s radian**-1) +252 252 WSK Wave spectral kurtosis (dimensionless) +253 253 BFI Benjamin-Feir index (dimensionless) +254 254 WSP Wave spectral peakedness (dimensionless) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.150.table b/eccodes/definitions/grib1/2.98.150.table new file mode 100644 index 00000000..c11508ea --- /dev/null +++ b/eccodes/definitions/grib1/2.98.150.table @@ -0,0 +1,33 @@ +# This file was automatically generated by ./param.pl +129 ocpt Ocean potential temperature (deg C) +130 ocs Ocean salinity psu +131 ocpd Ocean potential density kg m**-3 -1000 +133 ocu Ocean U wind component (m s**-1) +134 ocv Ocean V wind component (m s**-1) +135 ocw Ocean W wind component (m s**-1) +137 rn Richardson number +139 uv U*V product (m s**-2) +140 ut U*T product (m s**-1 deg C) +141 vt V*T product (m s**-1 deg C) +142 uu U*U product (m s**-2) +143 vv V*V product (m s**-2) +144 144 UV - U~V~ (m s**-2) +145 145 UT - U~T~ m s**-1 deg C +146 146 VT - V~T~ (m s**-1 deg C) +147 147 UU - U~U~ (m s**-2) +148 148 VV - V~V~ (m s**-2) +152 sl Sea level (m) +153 153 Barotropic stream function +154 mld Mixed layer depth (m) +155 155 Depth (m) +168 168 U stress (Pa) +169 169 V stress (Pa) +170 170 Turbulent kinetic energy input +171 nsf Net surface heat flux +172 172 Surface solar radiation +173 173 P-E +180 180 Diagnosed sea surface temperature error (deg C) +181 181 Heat flux correction (W m**-2) +182 182 Observed sea surface temperature (deg C) +183 183 Observed heat flux (W m**-2) +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.151.table b/eccodes/definitions/grib1/2.98.151.table new file mode 100644 index 00000000..238fc46c --- /dev/null +++ b/eccodes/definitions/grib1/2.98.151.table @@ -0,0 +1,80 @@ +# This file was automatically generated by ./param.pl +129 ocpt Ocean potential temperature deg C +130 s Salinity psu +131 ocu Ocean current zonal component (m s**-1) +132 ocv Ocean current meridional component (m s**-1) +133 ocw Ocean current vertical component (m s**-1) +134 mst Modulus of strain rate tensor s**-1 +135 vvs Vertical viscosity m**2 s**-1 +136 vdf Vertical diffusivity m**2 s**-1 +137 dep Bottom level Depth (m) +138 sth Sigma-theta kg m**-3 +139 rn Richardson number +140 uv UV product m**2 s**-2 +141 ut UT product m s**-1 degC +142 vt VT product m s**-1 deg C +143 uu UU product m**2 s**-2 +144 vv VV product m**2 s**-2 +145 sl Sea level m +146 sl_1 Sea level previous timestep m +147 bsf Barotropic stream function m**3 s**-1 +148 mld Mixed layer depth m +149 btp Bottom Pressure (equivalent height) (m) +151 crl Curl of Wind Stress N m**-3 +152 152 Divergence of wind stress (Nm**-3) +153 tax U stress Pa +154 tay V stress Pa +155 tki Turbulent kinetic energy input W m**-2 +156 nsf Net surface heat flux W m**-2 +157 asr Absorbed solar radiation W m**-2 +158 pme Precipitation - evaporation m s**-1 +159 sst Specified sea surface temperature deg C +160 shf Specified surface heat flux W m**-2 +161 dte Diagnosed sea surface temperature error deg C +162 hfc Heat flux correction W m**-2 +163 20d 20 degrees isotherm depth m +164 tav300 Average potential temperature in the upper 300m degrees C +165 uba1 Vertically integrated zonal velocity (previous time step) m**2 s**-1 +166 vba1 Vertically Integrated meridional velocity (previous time step) m**2 s**-1 +167 ztr Vertically integrated zonal volume transport m**2 s**-1 +168 mtr Vertically integrated meridional volume transport m**2 s**-1 +169 zht Vertically integrated zonal heat transport J m**-1 s**-1 +170 mht Vertically integrated meridional heat transport J m**-1 s**-1 +171 umax U velocity maximum m s**-1 +172 dumax Depth of the velocity maximum m +173 smax Salinity maximum psu +174 dsmax Depth of salinity maximum m +175 sav300 Average salinity in the upper 300m psu +176 ldp Layer Thickness at scalar points (m) +177 ldu Layer Thickness at vector points (m) +178 pti Potential temperature increment deg C +179 ptae Potential temperature analysis error deg C +180 bpt Background potential temperature deg C +181 apt Analysed potential temperature deg C +182 ptbe Potential temperature background error deg C +183 as Analysed salinity psu +184 sali Salinity increment psu +185 ebt Estimated Bias in Temperature deg C +186 ebs Estimated Bias in Salinity psu +187 uvi Zonal Velocity increment (from balance operator) m/s per time step +188 vvi Meridional Velocity increment (from balance operator) +190 subi Salinity increment (from salinity data) psu per time step +191 sale Salinity analysis error psu +192 bsal Background Salinity psu +193 193 - Reserved +194 salbe Salinity background error psu +199 ebta Estimated temperature bias from assimilation deg C +200 ebsa Estimated salinity bias from assimilation psu +201 lti Temperature increment from relaxation term deg C per time step +202 lsi Salinity increment from relaxation term psu per time step +203 bzpga Bias in the zonal pressure gradient (applied) (Pa**m-1) +204 bmpga Bias in the meridional pressure gradient (applied) (Pa**m-1) +205 ebtl Estimated temperature bias from relaxation deg C +206 ebsl Estimated salinity bias from relaxation psu +207 fgbt First guess bias in temperature deg C +208 fgbs First guess bias in salinity psu +209 bpa Applied bias in pressure Pa +210 fgbp FG bias in pressure Pa +211 pta Bias in temperature(applied) (deg C) +212 psa Bias in salinity (applied) (psu) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.160.table b/eccodes/definitions/grib1/2.98.160.table new file mode 100644 index 00000000..b87f8872 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.160.table @@ -0,0 +1,109 @@ +# This file was automatically generated by ./param.pl +127 127 AT Atmospheric tide +128 128 BV Budget values +129 129 Z Geopotential m**2 s**-2 +130 130 T Temperature K +131 131 U U velocity m s**-1 +132 132 V V velocity m s**-1 +133 133 Q Specific humidity kg kg**-1 +134 134 SP Surface pressure Pa +135 135 W Vertical velocity (pressure) Pa s**-1 +136 136 TCW Total column water kg m**-2 +137 137 PWC Precipitable water content kg m**-2 +138 138 VO Vorticity (relative) s**-1 +139 139 STL1 Soil temperature level 1 K +140 140 SWL1 Soil wetness level 1 m +141 141 SD Snow depth m of water +142 142 LSP Large-scale precipitation kg m**-2 s**-1 +143 143 CP Convective precipitation kg m**-2 s**-1 +144 144 SF Snowfall kg m**-2 s**-1 +145 145 BLD Boundary layer dissipation W m**-2 +146 146 SSHF Surface sensible heat flux W m**-2 +147 147 SLHF Surface latent heat flux W m**-2 +151 151 MSL Mean sea level pressure Pa +152 152 LNSP Logarithm of surface pressure +155 155 D Divergence s**-1 +156 156 GH Height m +157 157 R Relative humidity (0 - 1) +158 158 TSP Tendency of surface pressure Pa s**-1 +164 164 TCC Total cloud cover (0 - 1) +165 165 10U 10 metre U wind component m s**-1 +166 166 10V 10 metre V wind component m s**-1 +167 167 2T 2 metre temperature K +168 168 2D 2 metre dewpoint temperature K +170 170 STL2 Soil temperature level 2 K +171 171 SWL2 Soil wetness level 2 m +172 172 LSM Land-sea mask (0 - 1) +173 173 SR Surface roughness m +174 174 AL Albedo (0 - 1) +176 176 SSR Surface solar radiation W m**-2 +177 177 STR Surface thermal radiation W m**-2 +178 178 TSR Top solar radiation W m**-2 +179 179 TTR Top thermal radiation W m**-2 +180 180 EWSS East-West surface stress N m**-2 s**-1 +181 181 NSSS North-South surface stress N m**-2 s**-1 +182 182 E Evaporation kg m**-2 s**-1 +183 183 STL3 Soil temperature level 3 K +184 184 SWL3 Soil wetness level 3 m +185 185 CCC Convective cloud cover (0 - 1) +186 186 LCC Low cloud cover (0 - 1) +187 187 MCC Medium cloud cover (0 - 1) +188 188 HCC High cloud cover (0 - 1) +190 190 EWOV East-West component of sub-gridscale orographic variance m**2 +191 191 NSOV North-South component of sub-gridscale orographic variance m**2 +192 192 NWOV North-West/South-East component of sub-gridscale orographic variance m**2 +193 193 NEOV North-East/South-West component of sub-gridscale orographic variance m**2 +195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s +196 196 MGWS Meridional component of gravity wave stress N m**-2 s +197 197 GWD Gravity wave dissipation W m**-2 s +198 198 SRC Skin reservoir content m of water +199 199 VEG Percentage of vegetation % +200 200 VSO Variance of sub-gridscale orography m**2 +201 201 MX2T Maximum temperature at 2 metres during averaging time K +202 202 MN2T Minimum temperature at 2 metres during averaging time K +204 204 PAW Precipitation analysis weights +205 205 RO Runoff kg m**-2 s**-1 +206 206 ZZ Standard deviation of geopotential m**2 s**-2 +207 207 TZ Covariance of temperature and geopotential K m**2 s**-2 +208 208 TT Standard deviation of temperature K +209 209 QZ Covariance of specific humidity and geopotential m**2 s**-2 +210 210 QT Covariance of specific humidity and temperature K +211 211 QQ Standard deviation of specific humidity (0 - 1) +212 212 UZ Covariance of U component and geopotential m**3 s**-3 +213 213 UT Covariance of U component and temperature K m s**-1 +214 214 UQ Covariance of U component and specific humidity m s**-1 +215 215 UU Standard deviation of U velocity m s**-1 +216 216 VZ Covariance of V component and geopotential m**3 s**-3 +217 217 VT Covariance of V component and temperature K m s**-1 +218 218 VQ Covariance of V component and specific humidity m s**-1 +219 219 VU Covariance of V component and U component m**2 s**-2 +220 220 VV Standard deviation of V component m s**-1 +221 221 WZ Covariance of W component and geopotential Pa m**2 s**-3 +222 222 WT Covariance of W component and temperature K Pa s**-1 +223 223 WQ Covariance of W component and specific humidity Pa s**-1 +224 224 WU Covariance of W component and U component Pa m s**-2 +225 225 WV Covariance of W component and V component Pa m s**-2 +226 226 WW Standard deviation of vertical velocity Pa s**-1 +228 228 TP Total precipitation m +229 229 IEWS Instantaneous X surface stress N m**-2 +230 230 INSS Instantaneous Y surface stress N m**-2 +231 231 ISHF Instantaneous surface heat flux W m**-2 +232 232 IE Instantaneous moisture flux kg m**-2 s**-1 +233 233 ASQ Apparent surface humidity kg kg**-1 +234 234 LSRH Logarithm of surface roughness length for heat +235 235 SKT Skin temperature K +236 236 STL4 Soil temperature level 4 K +237 237 SWL4 Soil wetness level 4 m +238 238 TSN Temperature of snow layer K +239 239 CSF Convective snowfall kg m**-2 s**-1 +240 240 LSF Large scale snowfall kg m**-2 s**-1 +241 241 CLWCER Cloud liquid water content kg kg**-1 +242 242 CC Cloud cover (0 - 1) +243 243 FAL Forecast albedo +244 244 FSR Forecast surface roughness m +245 245 FLSR Forecast logarithm of surface roughness for heat +246 246 10WS 10 metre wind speed m s**-1 +247 247 MOFL Momentum flux N m**-2 +249 249 - Gravity wave dissipation flux W m**-2 +254 254 HSD Heaviside beta function (0 - 1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.162.table b/eccodes/definitions/grib1/2.98.162.table new file mode 100644 index 00000000..f70d3435 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.162.table @@ -0,0 +1,114 @@ +# This file was automatically generated by ./param.pl +45 45 WVF Water vapour flux (kg m**-1 s**-1) +51 51 - Surface geopotential (m**2 s**-2) +52 52 SP Surface pressure (Pa) +53 53 - Vertical integral of mass of atmosphere (kg m**-2) +54 54 - Vertical integral of temperature (K kg m**-2) +55 55 - Vertical integral of water vapour (kg m**-2) +56 56 - Vertical integral of cloud liquid water (kg m**-2) +57 57 - Vertical integral of cloud frozen water (kg m**-2) +58 58 - Vertical integral of ozone (kg m**-2) +59 59 - Vertical integral of kinetic energy (J m**-2) +60 60 - Vertical integral of thermal energy (J m**-2) +61 61 - Vertical integral of potential+internal energy (J m**-2) +62 62 - Vertical integral of potential+internal+latent energy (J m**-2) +63 63 - Vertical integral of total energy (J m**-2) +64 64 - Vertical integral of energy conversion (J m**-2) +65 65 - Vertical integral of eastward mass flux (kg m**-1 s**-1) +66 66 - Vertical integral of northward mass flux (kg m**-1 s**-1) +67 67 - Vertical integral of eastward kinetic energy flux (J m**-2) +68 68 - Vertical integral of northward kinetic energy flux (J m**-2) +69 69 - Vertical integral of eastward heat flux (J m**-2) +70 70 - Vertical integral of northward heat flux (J m**-2) +71 71 - Vertical integral of eastward water vapour flux (kg m**-1 s**-1) +72 72 - Vertical integral of northward water vapour flux (kg m**-1 s**-1) +73 73 - Vertical integral of eastward geopotential flux (J m**-2) +74 74 - Vertical integral of northward geopotential flux (J m**-2) +75 75 - Vertical integral of eastward total energy flux (J m**-2) +76 76 - Vertical integral of northward total energy flux (J m**-2) +77 77 - Vertical integral of eastward ozone flux (kg m**-1 s**-1) +78 78 - Vertical integral of northward ozone flux (kg m**-1 s**-1) +79 79 - Vertical integral of divergence of cloud liquid water flux (kg m**-2 s**-1) +80 80 - Vertical integral of divergence of cloud frozen water flux (kg m**-2 s**-1) +81 81 - Vertical integral of divergence of mass flux (kg m**-2 s**-1) +82 82 - Vertical integral of divergence of kinetic energy flux (J m**-2) +83 83 - Vertical integral of divergence of thermal energy flux (J m**-2) +84 84 - Vertical integral of divergence of moisture flux (kg m**-2 s**-1) +85 85 - Vertical integral of divergence of geopotential flux (J m**-2) +86 86 - Vertical integral of divergence of total energy flux (J m**-2) +87 87 - Vertical integral of divergence of ozone flux (kg m**-2 s**-1) +88 88 - Vertical integral of eastward cloud liquid water flux (kg m**-1 s**-1) +89 89 - Vertical integral of northward cloud liquid water flux (kg m**-1 s**-1) +90 90 - Vertical integral of eastward cloud frozen water flux (kg m**-1 s**-1) +91 91 - Vertical integral of northward cloud frozen water flux (kg m**-1 s**-1) +92 92 - Vertical integral of mass tendency (kg m**-2 s**-1) +100 100 - Tendency of short wave radiation (K) +101 101 - Tendency of long wave radiation (K) +102 102 - Tendency of clear sky short wave radiation (K) +103 103 - Tendency of clear sky long wave radiation (K) +104 104 - Updraught mass flux (kg m**-2) +105 105 - Downdraught mass flux (kg m**-2) +106 106 - Updraught detrainment rate (kg m**-3) +107 107 - Downdraught detrainment rate (kg m**-3) +108 108 - Total precipitation flux (kg m**-2) +109 109 - Turbulent diffusion coefficient for heat (m**2) +110 110 - Tendency of temperature due to physics (K) +111 111 - Tendency of specific humidity due to physics (kg kg**-1) +112 112 - Tendency of u component due to physics (m s**-1) +113 113 - Tendency of v component due to physics (m s**-1) +114 114 UTENDD U-tendency from dynamics (m s**-1) +115 115 VTENDD V-tendency from dynamics (m s**-1) +116 116 TTENDD T-tendency from dynamics (K) +117 117 QTENDD q-tendency from dynamics (kg kg**-1) +118 118 TTENDR T-tendency from radiation (K) +119 119 UTENDTS U-tendency from turbulent diffusion + subgrid orography (m s**-1) +120 120 VTENDTS V-tendency from turbulent diffusion + subgrid orography (m s**-1) +121 121 TTENDTS T-tendency from turbulent diffusion + subgrid orography (K) +122 122 QTENDT q-tendency from turbulent diffusion (kg kg**-1) +123 123 UTENDS U-tendency from subgrid orography (m s**-1) +124 124 VTENDS V-tendency from subgrid orography (m s**-1) +125 125 TTENDS T-tendency from subgrid orography (K) +126 126 UTENDCDS U-tendency from convection (deep+shallow) (m s**-1) +127 127 VTENDCDS V-tendency from convection (deep+shallow) (m s**-1) +128 128 TTENDCDS T-tendency from convection (deep+shallow) (K) +129 129 QTENDCDS q-tendency from convection (deep+shallow) (kg kg**-1) +130 130 LPC Liquid Precipitation flux from convection (kg m**-2) +131 131 IPC Ice Precipitation flux from convection (kg m**-2) +132 132 TTENDCS T-tendency from cloud scheme (K) +133 133 QTENDCS q-tendency from cloud scheme (kg kg**-1) +134 134 QLTENDCS ql-tendency from cloud scheme (kg kg**-1) +135 135 QITENDCS qi-tendency from cloud scheme (kg kg**-1) +136 136 LPCS Liquid Precip flux from cloud scheme (stratiform) (kg m**-2) +137 137 IPCS Ice Precip flux from cloud scheme (stratiform) (kg m**-2) +138 138 UTENDCS U-tendency from shallow convection (m s**-1) +139 139 VTENDCS V-tendency from shallow convection (m s**-1) +140 140 TTENDSC T-tendency from shallow convection (K) +141 141 QTENDSC q-tendency from shallow convection (kg kg**-1) +206 206 - Variance of geopotential (m**4 s**-4) +207 207 - Covariance of geopotential/temperature (m**2 K s**-2) +208 208 - Variance of temperature (K**2) +209 209 - Covariance of geopotential/specific humidity (m**2 s**-2) +210 210 - Covariance of temperature/specific humidity (K) +211 211 - Variance of specific humidity +212 212 - Covariance of u component/geopotential (m**3 s**-3) +213 213 - Covariance of u component/temperature (m s**-1 K) +214 214 - Covariance of u component/specific humidity (m s**-1) +215 215 - Variance of u component (m**2 s**-2) +216 216 - Covariance of v component/geopotential (m**3 s**-3) +217 217 - Covariance of v component/temperature (m s**-1 K) +218 218 - Covariance of v component/specific humidity (m s**-1) +219 219 - Covariance of v component/u component (m**2 s**-2) +220 220 - Variance of v component (m**2 s**-2) +221 221 - Covariance of omega/geopotential (m**2 Pa s**-3) +222 222 - Covariance of omega/temperature (Pa s**-1 K) +223 223 - Covariance of omega/specific humidity (Pa s**-1) +224 224 - Covariance of omega/u component (m Pa s**-2) +225 225 - Covariance of omega/v component (m Pa s**-2) +226 226 - Variance of omega (Pa**2 s**-2) +227 227 - Variance of surface pressure (Pa**2) +229 229 - Variance of relative humidity (dimensionless) +230 230 - Covariance of u component/ozone (m s**-1) +231 231 - Covariance of v component/ozone (m s**-1) +232 232 - Covariance of omega/ozone (Pa s**-1) +233 233 - Variance of ozone (dimensionless) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.170.table b/eccodes/definitions/grib1/2.98.170.table new file mode 100644 index 00000000..cd3dc702 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.170.table @@ -0,0 +1,36 @@ +# This file was automatically generated by ./param.pl +1 1 SPI03 Standardised precipitation index valid in the last 3 months (dimensionless) +2 2 SPI06 Standardised precipitation index valid in the last 6 months (dimensionless) +3 3 SPI12 Standardised precipitation index valid in the last 12 months (dimensionless) +129 129 Z Geopotential (m**2 s**-2) +130 130 T Temperature (K) +131 131 U U component of wind (m s**-1) +132 132 V V component of wind (m s**-1) +133 133 Q Specific humidity (kg kg**-1) +135 135 W Vertical velocity (Pa s**-1) +138 138 VO Vorticity (relative) (s**-1) +139 139 STL1 Soil temperature level 1 (K) +140 140 SWL1 Soil wetness level 1 (m of water equivalent) +141 141 SD Snow depth (m of water equivalent) +142 142 LSP Large-scale precipitation (m) +143 143 CP Convective precipitation (m) +146 146 SSHF Surface sensible heat flux (J m**-2) +147 147 SLHF Surface latent heat flux (J m**-2) +149 149 TSW Total soil moisture (m) +151 151 MSL Mean sea level pressure (Pa) +155 155 D Divergence (s**-1) +157 157 R Relative humidity (%) +164 164 TCC Total cloud cover ((0 - 1)) +171 171 SWL2 Soil wetness level 2 (m) +176 176 SSR Surface net solar radiation (J m**-2) +177 177 STR Surface net thermal radiation (J m**-2) +179 179 TTR Top net thermal radiation (J m**-2) +180 180 EWSS Eastward turbulent surface stress (N m**-2 s) +181 181 NSSS Northward turbulent surface stress (N m**-2 s) +182 182 E Evaporation (m of water equivalent) +184 184 SWL3 Soil wetness level 3 (m of water equivalent) +185 185 CCC Convective cloud cover ((0 - 1)) +201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) +202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) +228 228 TP Total precipitation (m) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.171.table b/eccodes/definitions/grib1/2.98.171.table new file mode 100644 index 00000000..39cf33bf --- /dev/null +++ b/eccodes/definitions/grib1/2.98.171.table @@ -0,0 +1,187 @@ +# This file was automatically generated by ./param.pl +1 1 - Stream function anomaly (m**2 s**-1) +2 2 - Velocity potential anomaly (m**2 s**-1) +3 3 - Potential temperature anomaly (K) +4 4 - Equivalent potential temperature anomaly (K) +5 5 - Saturated equivalent potential temperature anomaly (K) +11 11 - U component of divergent wind anomaly (m s**-1) +12 12 - V component of divergent wind anomaly (m s**-1) +13 13 - U component of rotational wind anomaly (m s**-1) +14 14 - V component of rotational wind anomaly (m s**-1) +21 21 - Unbalanced component of temperature anomaly (K) +22 22 - Unbalanced component of logarithm of surface pressure anomaly +23 23 - Unbalanced component of divergence anomaly (s**-1) +24 24 - Lake mix-layer temperature anomaly (K) +25 25 - Lake ice depth anomaly (m) +26 26 - Lake cover anomaly (0 - 1) +27 27 - Low vegetation cover anomaly (0 - 1) +28 28 - High vegetation cover anomaly (0 - 1) +29 29 - Type of low vegetation anomaly +30 30 - Type of high vegetation anomaly +31 31 - Sea-ice cover anomaly (0 - 1) +32 32 - Snow albedo anomaly (0 - 1) +33 33 - Snow density anomaly (kg m**-3) +34 34 - Sea surface temperature anomaly (K) +35 35 - Ice surface temperature anomaly layer 1 (K) +36 36 - Ice surface temperature anomaly layer 2 (K) +37 37 - Ice surface temperature anomaly layer 3 (K) +38 38 - Ice surface temperature anomaly layer 4 (K) +39 39 - Volumetric soil water anomaly layer 1 (m**3 m**-3) +40 40 - Volumetric soil water anomaly layer 2 (m**3 m**-3) +41 41 - Volumetric soil water anomaly layer 3 (m**3 m**-3) +42 42 - Volumetric soil water anomaly layer 4 (m**3 m**-3) +43 43 - Soil type anomaly +44 44 - Snow evaporation anomaly m of water +45 45 - Snowmelt anomaly m of water +46 46 - Solar duration anomaly s +47 47 - Direct solar radiation anomaly (w m**-2) +48 48 - Magnitude of surface stress anomaly (N m**-2 s) +49 49 - 10 metre wind gust anomaly (m s**-1) +50 50 - Large-scale precipitation fraction anomaly (s) +51 51 - Maximum 2 metre temperature in the last 24 hours anomaly (K) +52 52 - Minimum 2 metre temperature in the last 24 hours anomaly (K) +53 53 - Montgomery potential anomaly (m**2 s**-2) +54 54 - Pressure anomaly (Pa) +55 55 - Mean 2 metre temperature in the last 24 hours anomaly (K) +56 56 - Mean 2 metre dewpoint temperature in the last 24 hours anomaly (K) +57 57 - Downward UV radiation at the surface anomaly (w m**-2) +58 58 - Photosynthetically active radiation at the surface anomaly (w m**-2) +59 59 - Convective available potential energy anomaly (J kg**-1) +60 60 - Potential vorticity anomaly (K m**2 kg**-1 s**-1) +61 61 - Total precipitation from observations anomaly (Millimetres*100 + number of stations) +62 62 - Observation count anomaly +63 63 - Start time for skin temperature difference anomaly (s) +64 64 - Finish time for skin temperature difference anomaly (s) +65 65 - Skin temperature difference anomaly (K) +78 78 - Total column liquid water anomaly (kg m**-2) +79 79 - Total column ice water anomaly (kg m**-2) +125 125 - Vertically integrated total energy anomaly (J m**-2) +126 126 - Generic parameter for sensitive area prediction Various +127 127 - Atmospheric tide anomaly +128 128 - Budget values anomaly +129 129 - Geopotential anomaly (m**2 s**-2) +130 130 - Temperature anomaly (K) +131 131 - U component of wind anomaly (m s**-1) +132 132 - V component of wind anomaly (m s**-1) +133 133 - Specific humidity anomaly (kg kg**-1) +134 134 - Surface pressure anomaly (Pa) +135 135 - Vertical velocity (pressure) anomaly (Pa s**-1) +136 136 - Total column water anomaly (kg m**-2) +137 137 - Total column water vapour anomaly (kg m**-2) +138 138 - Relative vorticity anomaly (s**-1) +139 139 - Soil temperature anomaly level 1 (K) +140 140 - Soil wetness anomaly level 1 (m of water) +141 141 - Snow depth anomaly m of water equivalent +142 142 - Stratiform precipitation (Large-scale precipitation) anomaly (m) +143 143 - Convective precipitation anomaly (m) +144 144 - Snowfall (convective + stratiform) anomaly m of water equivalent +145 145 - Boundary layer dissipation anomaly (W m**-2 s) +146 146 - Surface sensible heat flux anomaly (W m**-2 s) +147 147 - Surface latent heat flux anomaly (W m**-2 s) +148 148 - Charnock anomaly +149 149 - Surface net radiation anomaly (W m**-2 s) +150 150 - Top net radiation anomaly +151 151 - Mean sea level pressure anomaly (Pa) +152 152 - Logarithm of surface pressure anomaly +153 153 - Short-wave heating rate anomaly (K) +154 154 - Long-wave heating rate anomaly (K) +155 155 - Relative divergence anomaly (s**-1) +156 156 - Height anomaly (m) +157 157 - Relative humidity anomaly (%) +158 158 - Tendency of surface pressure anomaly (Pa s**-1) +159 159 - Boundary layer height anomaly (m) +160 160 - Standard deviation of orography anomaly +161 161 - Anisotropy of sub-gridscale orography anomaly +162 162 - Angle of sub-gridscale orography anomaly +163 163 - Slope of sub-gridscale orography anomaly +164 164 - Total cloud cover anomaly (0 - 1) +165 165 - 10 metre U wind component anomaly (m s**-1) +166 166 - 10 metre V wind component anomaly (m s**-1) +167 167 - 2 metre temperature anomaly (K) +168 168 - 2 metre dewpoint temperature anomaly (K) +169 169 - Surface solar radiation downwards anomaly (W m**-2 s) +170 170 - Soil temperature anomaly level 2 (K) +171 171 - Soil wetness anomaly level 2 m of water +172 172 - Land-sea mask (0 - 1) +173 173 - Surface roughness anomaly (m) +174 174 - Albedo anomaly (0 - 1) +175 175 - Surface thermal radiation downwards anomaly (W m**-2 s) +176 176 - Surface solar radiation anomaly (W m**-2 s) +177 177 - Surface thermal radiation anomaly (W m**-2 s) +178 178 - Top solar radiation anomaly (W m**-2 s) +179 179 - Top thermal radiation anomaly (W m**-2 s) +180 180 - East-West surface stress anomaly (N m**-2 s) +181 181 - North-South surface stress anomaly (N m**-2 s) +182 182 - Evaporation anomaly (m of water anomaly) +183 183 - Soil temperature anomaly level 3 (K) +184 184 - Soil wetness anomaly level 3 m of water +185 185 - Convective cloud cover anomaly (0 - 1) +186 186 - Low cloud cover anomaly (0 - 1) +187 187 - Medium cloud cover anomaly (0 - 1) +188 188 - High cloud cover anomaly (0 - 1) +189 189 - Sunshine duration anomaly (s) +190 190 - East-West component of sub-gridscale orographic variance anomaly (m**2) +191 191 - North-South component of sub-gridscale orographic variance anomaly (m**2) +192 192 - North-West/South-East component of sub-gridscale orographic variance anomaly (m**2) +193 193 - North-East/South-West component of sub-gridscale orographic variance anomaly (m**2) +194 194 - Brightness temperature anomaly (K) +195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2 s) +196 196 - Meridional component of gravity wave stress anomaly (N m**-2 s) +197 197 - Gravity wave dissipation anomaly (W m**-2 s) +198 198 - Skin reservoir content anomaly (m of water) +199 199 - Vegetation fraction anomaly (0 - 1) +200 200 - Variance of sub-gridscale orography anomaly (m**2) +201 201 - Maximum temperature at 2 metres anomaly (K) +202 202 - Minimum temperature at 2 metres anomaly (K) +203 203 - Ozone mass mixing ratio (kg kg**-1) +204 204 - Precipitation analysis weights +205 205 - Runoff (m) +206 206 - Total column ozone (kg m**-2) +207 207 10SIA 10 metre wind speed (m s**-1) +208 208 - Top net solar radiation, clear sky (W m**-2 s) +209 209 - Top net thermal radiation, clear sky (W m**-2 s) +210 210 - Surface net solar radiation, clear sky (W m**-2 s) +211 211 - Surface net thermal radiation, clear sky (W m**-2 s) +212 212 - Solar insolation (W m**-2) +214 214 - Diabatic heating by radiation (K) +215 215 - Diabatic heating by vertical diffusion (K) +216 216 - Diabatic heating by cumulus convection (K) +217 217 - Diabatic heating by large-scale condensation (K) +218 218 - Vertical diffusion of zonal wind (m s**-1) +219 219 - Vertical diffusion of meridional wind (m s**-1) +220 220 - East-West gravity wave drag tendency (m s**-1) +221 221 - North-South gravity wave drag tendency (m s**-1) +222 222 - Convective tendency of zonal wind (m s**-1) +223 223 - Convective tendency of meridional wind (m s**-1) +224 224 - Vertical diffusion of humidity anomaly (kg kg**-1) +225 225 - Humidity tendency by cumulus convection anomaly (kg kg**-1) +226 226 - Humidity tendency by large-scale condensation anomaly (kg kg**-1) +227 227 - Change from removal of negative humidity anomaly (kg kg**-1) +228 228 - Total precipitation anomaly (m) +229 229 - Instantaneous X surface stress anomaly (N m**-2) +230 230 - Instantaneous Y surface stress anomaly (N m**-2) +231 231 - Instantaneous surface heat flux anomaly (W m**-2) +232 232 - Instantaneous moisture flux anomaly (kg m**-2 s) +233 233 - Apparent surface humidity anomaly (kg kg**-1) +234 234 - Logarithm of surface roughness length for heat anomaly +235 235 - Skin temperature anomaly (K) +236 236 - Soil temperature level 4 anomaly (K) +237 237 - Soil wetness level 4 anomaly (m) +238 238 - Temperature of snow layer anomaly (K) +239 239 - Convective snowfall anomaly (m of water equivalent) +240 240 - Large scale snowfall anomaly (m of water equivalent) +241 241 - Accumulated cloud fraction tendency anomaly (-1 to 1) +242 242 - Accumulated liquid water tendency anomaly (-1 to 1) +243 243 - Forecast albedo anomaly (0 - 1) +244 244 - Forecast surface roughness anomaly (m) +245 245 - Forecast logarithm of surface roughness for heat anomaly +246 246 - Cloud liquid water content anomaly (kg kg**-1) +247 247 - Cloud ice water content anomaly (kg kg**-1) +248 248 - Cloud cover anomaly (0 - 1) +249 249 - Accumulated ice water tendency anomaly (-1 to 1) +250 250 - Ice age anomaly (0 - 1) +251 251 - Adiabatic tendency of temperature anomaly (K) +252 252 - Adiabatic tendency of humidity anomaly (kg kg**-1) +253 253 - Adiabatic tendency of zonal wind anomaly (m s**-1) +254 254 - Adiabatic tendency of meridional wind anomaly (m s**-1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.172.table b/eccodes/definitions/grib1/2.98.172.table new file mode 100644 index 00000000..5d8f8653 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.172.table @@ -0,0 +1,39 @@ +# This file was automatically generated by ./param.pl +8 8 MSROR Mean surface runoff rate (m of water equivalent s**-1) +9 9 MSSROR Mean sub-surface runoff rate (m of water equivalent s**-1) +44 44 ESRATE Snow evaporation (m of water s**-1) +45 45 - Snowmelt (m of water s**-1) +48 48 - Magnitude of turbulent surface stress (N m**-2) +50 50 MLSPFR Mean large-scale precipitation fraction (~) +142 142 MLSPRT Mean large-scale precipitation rate (m s**-1) +143 143 CPRATE Mean convective precipitation rate (m s**-1) +144 144 - Snowfall (convective + stratiform) (m of water equivalent s**-1) +145 145 BLDRATE Boundary layer dissipation (W m**-2) +146 146 MSSHFL Mean surface sensible heat flux (W m**-2) +147 147 MSLHFL Mean surface latent heat flux (W m**-2) +149 149 MSNRF Mean surface net radiation flux (W m**-2) +153 153 MSWHR Mean short-wave heating rate (K s**-1) +154 154 MLWHR Mean long-wave heating rate (K s**-1) +169 169 MSDSRF Mean surface downward solar radiation flux (W m**-2) +175 175 MSDTRF Mean surface downward thermal radiation flux (W m**-2) +176 176 MSNSRF Mean surface net solar radiation flux (W m**-2) +177 177 MSNTRF Mean surface net thermal radiation flux (W m**-2) +178 178 MTNSRF Mean top net solar radiation flux (W m**-2) +179 179 MTNTRF Mean top net thermal radiation flux (W m**-2) +180 180 EWSSRA East-West surface stress rate of accumulation (N m**-2) +181 181 NSSSRA North-South surface stress rate of accumulation (N m**-2) +182 182 ERATE Evaporation (m of water s**-1) +189 189 - Sunshine duration (~) +195 195 - Longitudinal component of gravity wave stress (N m**-2) +196 196 - Meridional component of gravity wave stress (N m**-2) +197 197 GWDRATE Gravity wave dissipation (W m**-2) +205 205 MRORT Mean runoff rate (m s**-1) +208 208 - Top net solar radiation, clear sky (W m**-2) +209 209 - Top net thermal radiation, clear sky (W m**-2) +210 210 - Surface net solar radiation, clear sky (W m**-2) +211 211 - Surface net thermal radiation, clear sky (W m**-2) +212 212 SOIRA Solar insolation rate of accumulation (W m**-2) +228 228 TPRATE Mean total precipitation rate (m s**-1) +239 239 - Convective snowfall (m of water equivalent s**-1) +240 240 - Large scale snowfall (m of water equivalent s**-1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.173.table b/eccodes/definitions/grib1/2.98.173.table new file mode 100644 index 00000000..e16e9a70 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.173.table @@ -0,0 +1,39 @@ +# This file was automatically generated by ./param.pl +8 8 MSRORA Mean surface runoff rate anomaly (m of water equivalent s**-1) +9 9 MSSRORA Mean sub-surface runoff rate anomaly (m of water equivalent s**-1) +44 44 - Snow evaporation anomaly (m of water s**-1) +45 45 - Snowmelt anomaly (m of water s**-1) +48 48 - Magnitude of turbulent surface stress anomaly (N m**-2) +50 50 - Large-scale precipitation fraction anomaly (~) +142 142 LSPARA Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation (m s**-1) +143 143 MCPRA Mean convective precipitation rate anomaly (m s**-1) +144 144 SFARA Snowfall (convective + stratiform) anomalous rate of accumulation (m of water equivalent s**-1) +145 145 - Boundary layer dissipation anomaly (J m**-2) +146 146 SSHFARA Surface sensible heat flux anomalous rate of accumulation (J m**-2) +147 147 SLHFARA Surface latent heat flux anomalous rate of accumulation (J m**-2) +149 149 - Surface net radiation anomaly (J m**-2) +153 153 - Short-wave heating rate anomaly (K s**-1) +154 154 - Long-wave heating rate anomaly (K s**-1) +169 169 SSRDARA Surface solar radiation downwards anomalous rate of accumulation (J m**-2) +175 175 STRDARA Surface thermal radiation downwards anomalous rate of accumulation (J m**-2) +176 176 SSRARA Surface solar radiation anomalous rate of accumulation (J m**-2) +177 177 STRARA Surface thermal radiation anomalous rate of accumulation (J m**-2) +178 178 TSRARA Top solar radiation anomalous rate of accumulation (J m**-2) +179 179 TTRARA Top thermal radiation anomalous rate of accumulation (J m**-2) +180 180 EWSSARA East-West surface stress anomalous rate of accumulation (N m**-2) +181 181 NSSSARA North-South surface stress anomalous rate of accumulation (N m**-2) +182 182 EVARA Evaporation anomalous rate of accumulation (m of water s**-1) +189 189 SUNDARA Sunshine duration anomalous rate of accumulation (dimensionless) +195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2) +196 196 - Meridional component of gravity wave stress anomaly (N m**-2) +197 197 - Gravity wave dissipation anomaly (J m**-2) +205 205 ROARA Runoff anomalous rate of accumulation (m s**-1) +208 208 - Top net solar radiation, clear sky anomaly (J m**-2) +209 209 - Top net thermal radiation, clear sky anomaly (J m**-2) +210 210 - Surface net solar radiation, clear sky anomaly (J m**-2) +211 211 - Surface net thermal radiation, clear sky anomaly (J m**-2) +212 212 SOIARA Solar insolation anomalous rate of accumulation (W m**-2 s**-1) +228 228 TPARA Total precipitation anomalous rate of accumulation (m s**-1) +239 239 - Convective snowfall anomaly (m of water equivalent s**-1) +240 240 - Large scale snowfall anomaly (m of water equivalent s**-1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.174.table b/eccodes/definitions/grib1/2.98.174.table new file mode 100644 index 00000000..4cbeeb3d --- /dev/null +++ b/eccodes/definitions/grib1/2.98.174.table @@ -0,0 +1,56 @@ +# This file was automatically generated by ./param.pl +6 6 - Total soil moisture (m) +8 8 SRO Surface runoff (kg m**-2) +9 9 SSRO Sub-surface runoff (kg m**-2) +10 10 SSWCSDOWN Clear-sky (II) down surface sw flux (W m**-2) +13 13 SSWCSUP Clear-sky (II) up surface sw flux (W m**-2) +25 25 VIS15 Visibility at 1.5m (m) +31 31 - Fraction of sea-ice in sea (0 - 1) +34 34 - Open-sea surface temperature (K) +39 39 - Volumetric soil water layer 1 (m**3 m**-3) +40 40 - Volumetric soil water layer 2 (m**3 m**-3) +41 41 - Volumetric soil water layer 3 (m**3 m**-3) +42 42 - Volumetric soil water layer 4 (m**3 m**-3) +49 49 - 10 metre wind gust in the last 24 hours (m s**-1) +50 50 MN15T Minimum temperature at 1.5m since previous post-processing (K) +51 51 MX15T Maximum temperature at 1.5m since previous post-processing (K) +52 52 RHUM Relative humidity at 1.5m (kg kg**-1) +55 55 - 1.5m temperature - mean in the last 24 hours (K) +83 83 - Net primary productivity (kg C m**-2 s**-1) +85 85 - 10m U wind over land (m s**-1) +86 86 - 10m V wind over land (m s**-1) +87 87 - 1.5m temperature over land (K) +88 88 - 1.5m dewpoint temperature over land (K) +89 89 - Top incoming solar radiation (J m**-2) +90 90 - Top outgoing solar radiation (J m**-2) +94 94 - Mean sea surface temperature (K) +95 95 - 1.5m specific humidity (kg kg**-1) +96 96 - 2 metre specific humidity (kg kg**-1) +97 97 SIST Sea-ice Snow Thickness (m) +98 98 SIT Sea-ice thickness (m) +99 99 - Liquid water potential temperature (K) +110 110 - Ocean ice concentration (0 - 1) +111 111 - Ocean mean ice depth (m) +116 116 SWRSURF Short wave radiation flux at surface (J m**-2) +117 117 SWRTOP Short wave radiation flux at top of atmosphere (J m**-2) +137 137 TCWVAP Total column water vapour (kg m**-2) +139 139 - Soil temperature layer 1 (K) +142 142 LSRRATE Large scale rainfall rate (kg m**-2 s**-1) +143 143 CRFRATE Convective rainfall rate (kg m**-2 s**-1) +164 164 - Average potential temperature in upper 293.4m (degrees C) +167 167 - 1.5m temperature (K) +168 168 - 1.5m dewpoint temperature (K) +170 170 - Soil temperature layer 2 (K) +172 172 LSM Land-sea mask (0 - 1) +175 175 - Average salinity in upper 293.4m (psu) +183 183 - Soil temperature layer 3 (K) +186 186 VLCA Very low cloud amount (0 - 1) +201 201 - 1.5m temperature - maximum in the last 24 hours (K) +202 202 - 1.5m temperature - minimum in the last 24 hours (K) +236 236 - Soil temperature layer 4 (K) +239 239 CSFRATE Convective snowfall rate (kg m**-2 s**-1) +240 240 LSFRATE Large scale snowfall rate (kg m**-2 s**-1) +248 248 TCCRO Total cloud amount - random overlap (0 - 1) +249 249 TCCLWR Total cloud amount in lw radiation (0 - 1) +255 255 - Indicates a missing value + diff --git a/eccodes/definitions/grib1/2.98.175.table b/eccodes/definitions/grib1/2.98.175.table new file mode 100644 index 00000000..a64289ad --- /dev/null +++ b/eccodes/definitions/grib1/2.98.175.table @@ -0,0 +1,31 @@ +# This file was automatically generated by ./param.pl +6 6 - Total soil moisture (m) +31 31 - Fraction of sea-ice in sea (0 - 1) +34 34 - Open-sea surface temperature (K) +39 39 - Volumetric soil water layer 1 (m**3 m**-3) +40 40 - Volumetric soil water layer 2 (m**3 m**-3) +41 41 - Volumetric soil water layer 3 (m**3 m**-3) +42 42 - Volumetric soil water layer 4 (m**3 m**-3) +49 49 - 10m wind gust in the last 24 hours (m s**-1) +55 55 - 1.5m temperature - mean in the last 24 hours (K) +83 83 - Net primary productivity (kg C m**-2 s**-1) +85 85 - 10m U wind over land (m s**-1) +86 86 - 10m V wind over land (m s**-1) +87 87 - 1.5m temperature over land (K) +88 88 - 1.5m dewpoint temperature over land (K) +89 89 - Top incoming solar radiation (J m**-2) +90 90 - Top outgoing solar radiation (J m**-2) +110 110 - Ocean ice concentration (0 - 1) +111 111 - Ocean mean ice depth (m) +139 139 - Soil temperature layer 1 (K) +164 164 - Average potential temperature in upper 293.4m (degrees C) +167 167 - 1.5m temperature (K) +168 168 - 1.5m dewpoint temperature (K) +170 170 - Soil temperature layer 2 (K) +172 172 lsm Land-sea mask (0 - 1) +175 175 - Average salinity in upper 293.4m (psu) +183 183 - Soil temperature layer 3 (K) +201 201 - 1.5m temperature - maximum in the last 24 hours (K) +202 202 - 1.5m temperature - minimum in the last 24 hours (K) +236 236 - Soil temperature layer 4 (K) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.180.table b/eccodes/definitions/grib1/2.98.180.table new file mode 100644 index 00000000..8b5756e1 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.180.table @@ -0,0 +1,33 @@ +# This file was automatically generated by ./param.pl +129 129 Z Geopotential (m**2 s**-2) +130 130 T Temperature (K) +131 131 U U component of wind (m s**-1) +132 132 V V component of wind (m s**-1) +133 133 Q Specific humidity (kg kg**-1) +134 134 SP Surface pressure (Pa) +137 137 TCWV Total column water vapour (kg m**-2) +138 138 VO Vorticity (relative) (s**-1) +141 141 SD Snow depth (m of water equivalent) +142 142 LSP Large-scale precipitation (m) +143 143 CP Convective precipitation (m) +144 144 SF Snowfall (m of water equivalent) +146 146 SSHF Surface sensible heat flux (J m**-2) +147 147 SLHF Surface latent heat flux (J m**-2) +149 149 TSW Total soil wetness (m) +151 151 MSL Mean sea level pressure (Pa) +155 155 D Divergence (s**-1) +164 164 TCC Total cloud cover (0 - 1) +165 165 10U 10 metre U wind component (m s**-1) +166 166 10V 10 metre V wind component (m s**-1) +167 167 2T 2 metre temperature (K) +168 168 2D 2 metre dewpoint temperature (K) +172 172 LSM Land-sea mask (0 - 1) +176 176 SSR Surface net solar radiation (J m**-2) +177 177 STR Surface net thermal radiation (J m**-2) +178 178 TSR Top net solar radiation (J m**-2) +179 179 TTR Top net thermal radiation (J m**-2) +180 180 EWSS Eastward turbulent surface stress (N m**-2 s) +181 181 NSSS Northward turbulent surface stress (N m**-2 s) +182 182 E Evaporation (m of water equivalent) +205 205 RO Runoff (m) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.190.table b/eccodes/definitions/grib1/2.98.190.table new file mode 100644 index 00000000..df318038 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.190.table @@ -0,0 +1,37 @@ +# This file was automatically generated by ./param.pl +129 129 Z Geopotential (m**2 s**-2) +130 130 T Temperature (K) +131 131 U U component of wind (m s**-1) +132 132 V V component of wind (m s**-1) +133 133 Q Specific humidity (kg kg**-1) +134 134 SP Surface pressure (Pa) +138 138 VO Vorticity (relative) (s**-1) +139 139 STL1 Soil temperature level 1 (K) +141 141 SDSIEN Snow depth (kg m**-2) +146 146 SSHF Surface sensible heat flux (J m**-2) +147 147 SLHF Surface latent heat flux (J m**-2) +151 151 MSL Mean sea level pressure (Pa) +155 155 D Divergence (s**-1) +157 157 R Relative humidity (%) +164 164 TCC Total cloud cover (0 - 1) +165 165 10U 10 metre U wind component (m s**-1) +166 166 10V 10 metre V wind component (m s**-1) +167 167 2T 2 metre temperature (K) +168 168 2D 2 metre dewpoint temperature (K) +169 169 SSRD Surface solar radiation downwards (J m**-2) +170 170 CAP Field capacity (0 - 1) +171 171 WILTSIEN Wilting point (0 - 1) +172 172 LSM Land-sea mask (0 - 1) +173 173 SR Roughness length (0 - 1) +174 174 AL Albedo (0 - 1) +175 175 STRD Surface thermal radiation downwards (J m**-2) +176 176 SSR Surface net solar radiation (J m**-2) +177 177 STR Surface net thermal radiation (J m**-2) +178 178 TSR Top net solar radiation (J m**-2) +179 179 TTR Top net thermal radiation (J m**-2) +182 182 E Evaporation (m of water equivalent) +201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) +202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) +228 228 TP Total precipitation (m) +229 229 TSM Total soil moisture (m**3 m**-3) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.200.table b/eccodes/definitions/grib1/2.98.200.table new file mode 100644 index 00000000..cd561682 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.200.table @@ -0,0 +1,236 @@ +# This file was automatically generated by ./param.pl +1 1 STRFDIFF Stream function difference (m**2 s**-1) +2 2 VPOTDIFF Velocity potential difference (m**2 s**-1) +3 3 PTDIFF Potential temperature difference (K) +4 4 EQPTDIFF Equivalent potential temperature difference (K) +5 5 SEPTDIFF Saturated equivalent potential temperature difference (K) +11 11 UDVWDIFF U component of divergent wind difference (m s**-1) +12 12 VDVWDIFF V component of divergent wind difference (m s**-1) +13 13 URTWDIFF U component of rotational wind difference (m s**-1) +14 14 VRTWDIFF V component of rotational wind difference (m s**-1) +21 21 UCTPDIFF Unbalanced component of temperature difference (K) +22 22 UCLNDIFF Unbalanced component of logarithm of surface pressure difference (~) +23 23 UCDVDIFF Unbalanced component of divergence difference (s**-1) +24 24 - Reserved for future unbalanced components (~) +25 25 - Reserved for future unbalanced components (~) +26 26 CLDIFF Lake cover difference (0 - 1) +27 27 CVLDIFF Low vegetation cover difference (0 - 1) +28 28 CVHDIFF High vegetation cover difference (0 - 1) +29 29 TVLDIFF Type of low vegetation difference (~) +30 30 TVHDIFF Type of high vegetation difference (~) +31 31 SICDIFF Sea-ice cover difference (0 - 1) +32 32 ASNDIFF Snow albedo difference (0 - 1) +33 33 RSNDIFF Snow density difference (kg m**-3) +34 34 SSTDIFF Sea surface temperature difference (K) +35 35 ISTL1DIFF Ice surface temperature layer 1 difference (K) +36 36 ISTL2DIFF Ice surface temperature layer 2 difference (K) +37 37 ISTL3DIFF Ice surface temperature layer 3 difference (K) +38 38 ISTL4DIFF Ice surface temperature layer 4 difference (K) +39 39 SWVL1DIFF Volumetric soil water layer 1 difference (m**3 m**-3) +40 40 SWVL2DIFF Volumetric soil water layer 2 difference (m**3 m**-3) +41 41 SWVL3DIFF Volumetric soil water layer 3 difference (m**3 m**-3) +42 42 SWVL4DIFF Volumetric soil water layer 4 difference (m**3 m**-3) +43 43 SLTDIFF Soil type difference (~) +44 44 ESDIFF Snow evaporation difference (kg m**-2) +45 45 SMLTDIFF Snowmelt difference (kg m**-2) +46 46 SDURDIFF Solar duration difference (s) +47 47 DSRPDIFF Direct solar radiation difference (J m**-2) +48 48 MAGSSDIFF Magnitude of surface stress difference (N m**-2 s) +49 49 10FGDIFF 10 metre wind gust difference (m s**-1) +50 50 LSPFDIFF Large-scale precipitation fraction difference (s) +51 51 MX2T24DIFF Maximum 2 metre temperature difference (K) +52 52 MN2T24DIFF Minimum 2 metre temperature difference (K) +53 53 MONTDIFF Montgomery potential difference (m**2 s**-2) +54 54 PRESDIFF Pressure difference (Pa) +55 55 MEAN2T24DIFF Mean 2 metre temperature in the last 24 hours difference (K) +56 56 MN2D24DIFF Mean 2 metre dewpoint temperature in the last 24 hours difference (K) +57 57 UVBDIFF Downward UV radiation at the surface difference (J m**-2) +58 58 PARDIFF Photosynthetically active radiation at the surface difference (J m**-2) +59 59 CAPEDIFF Convective available potential energy difference (J kg**-1) +60 60 PVDIFF Potential vorticity difference (K m**2 kg**-1 s**-1) +61 61 TPODIFF Total precipitation from observations difference (Millimetres*100 + number of stations) +62 62 OBCTDIFF Observation count difference (~) +63 63 - Start time for skin temperature difference (s) +64 64 - Finish time for skin temperature difference (s) +65 65 - Skin temperature difference (K) +66 66 - Leaf area index, low vegetation (m**2 m**-2) +67 67 - Leaf area index, high vegetation (m**2 m**-2) +68 68 - Minimum stomatal resistance, low vegetation (s m**-1) +69 69 - Minimum stomatal resistance, high vegetation (s m**-1) +70 70 - Biome cover, low vegetation (0 - 1) +71 71 - Biome cover, high vegetation (0 - 1) +78 78 - Total column liquid water (kg m**-2) +79 79 - Total column ice water (kg m**-2) +80 80 - Experimental product (~) +81 81 - Experimental product (~) +82 82 - Experimental product (~) +83 83 - Experimental product (~) +84 84 - Experimental product (~) +85 85 - Experimental product (~) +86 86 - Experimental product (~) +87 87 - Experimental product (~) +88 88 - Experimental product (~) +89 89 - Experimental product (~) +90 90 - Experimental product (~) +91 91 - Experimental product (~) +92 92 - Experimental product (~) +93 93 - Experimental product (~) +94 94 - Experimental product (~) +95 95 - Experimental product (~) +96 96 - Experimental product (~) +97 97 - Experimental product (~) +98 98 - Experimental product (~) +99 99 - Experimental product (~) +100 100 - Experimental product (~) +101 101 - Experimental product (~) +102 102 - Experimental product (~) +103 103 - Experimental product (~) +104 104 - Experimental product (~) +105 105 - Experimental product (~) +106 106 - Experimental product (~) +107 107 - Experimental product (~) +108 108 - Experimental product (~) +109 109 - Experimental product (~) +110 110 - Experimental product (~) +111 111 - Experimental product (~) +112 112 - Experimental product (~) +113 113 - Experimental product (~) +114 114 - Experimental product (~) +115 115 - Experimental product (~) +116 116 - Experimental product (~) +117 117 - Experimental product (~) +118 118 - Experimental product (~) +119 119 - Experimental product (~) +120 120 - Experimental product (~) +121 121 MX2T6DIFF Maximum temperature at 2 metres difference (K) +122 122 MN2T6DIFF Minimum temperature at 2 metres difference (K) +123 123 10FG6DIFF 10 metre wind gust in the last 6 hours difference (m s**-1) +125 125 - Vertically integrated total energy (J m**-2) +126 126 - Generic parameter for sensitive area prediction (Various) +127 127 ATDIFF Atmospheric tide difference (~) +128 128 BVDIFF Budget values difference (~) +129 129 ZDIFF Geopotential difference (m**2 s**-2) +130 130 TDIFF Temperature difference (K) +131 131 UDIFF U component of wind difference (m s**-1) +132 132 VDIFF V component of wind difference (m s**-1) +133 133 QDIFF Specific humidity difference (kg kg**-1) +134 134 SPDIFF Surface pressure difference (Pa) +135 135 WDIFF Vertical velocity (pressure) difference (Pa s**-1) +136 136 TCWDIFF Total column water difference (kg m**-2) +137 137 TCWVDIFF Total column water vapour difference (kg m**-2) +138 138 VODIFF Vorticity (relative) difference (s**-1) +139 139 STL1DIFF Soil temperature level 1 difference (K) +140 140 SWL1DIFF Soil wetness level 1 difference (kg m**-2) +141 141 SDDIFF Snow depth difference (m of water equivalent) +142 142 LSPDIFF Stratiform precipitation (Large-scale precipitation) difference (m) +143 143 CPDIFF Convective precipitation difference (m) +144 144 SFDIFF Snowfall (convective + stratiform) difference (m of water equivalent) +145 145 BLDDIFF Boundary layer dissipation difference (J m**-2) +146 146 SSHFDIFF Surface sensible heat flux difference (J m**-2) +147 147 SLHFDIFF Surface latent heat flux difference (J m**-2) +148 148 CHNKDIFF Charnock difference (~) +149 149 SNRDIFF Surface net radiation difference (J m**-2) +150 150 TNRDIFF Top net radiation difference (~) +151 151 MSLDIFF Mean sea level pressure difference (Pa) +152 152 LNSPDIFF Logarithm of surface pressure difference (kg m**-2) +153 153 SWHRDIFF Short-wave heating rate difference (K) +154 154 LWHRDIFF Long-wave heating rate difference (K) +155 155 DDIFF Divergence difference (s**-1) +156 156 GHDIFF Height difference (m) +157 157 RDIFF Relative humidity difference (%) +158 158 TSPDIFF Tendency of surface pressure difference (Pa s**-1) +159 159 BLHDIFF Boundary layer height difference (m) +160 160 SDORDIFF Standard deviation of orography difference (~) +161 161 ISORDIFF Anisotropy of sub-gridscale orography difference (~) +162 162 ANORDIFF Angle of sub-gridscale orography difference (radians) +163 163 SLORDIFF Slope of sub-gridscale orography difference (~) +164 164 TCCDIFF Total cloud cover difference (0 - 1) +165 165 10UDIFF 10 metre U wind component difference (m s**-1) +166 166 10VDIFF 10 metre V wind component difference (m s**-1) +167 167 2TDIFF 2 metre temperature difference (K) +168 168 2DDIFF 2 metre dewpoint temperature difference (K) +169 169 SSRDDIFF Surface solar radiation downwards difference (J m**-2) +170 170 STL2DIFF Soil temperature level 2 difference (K) +171 171 SWL2DIFF Soil wetness level 2 difference (kg m**-2) +172 172 LSMDIFF Land-sea mask difference (0 - 1) +173 173 SRDIFF Surface roughness difference (m) +174 174 ALDIFF Albedo difference (0 - 1) +175 175 STRDDIFF Surface thermal radiation downwards difference (J m**-2) +176 176 SSRDIFF Surface net solar radiation difference (J m**-2) +177 177 STRDIFF Surface net thermal radiation difference (J m**-2) +178 178 TSRDIFF Top net solar radiation difference (J m**-2) +179 179 TTRDIFF Top net thermal radiation difference (J m**-2) +180 180 EWSSDIFF East-West surface stress difference (N m**-2 s) +181 181 NSSSDIFF North-South surface stress difference (N m**-2 s) +182 182 EDIFF Evaporation difference (kg m**-2) +183 183 STL3DIFF Soil temperature level 3 difference (K) +184 184 SWL3DIFF Soil wetness level 3 difference (kg m**-2) +185 185 CCCDIFF Convective cloud cover difference (0 - 1) +186 186 LCCDIFF Low cloud cover difference (0 - 1) +187 187 MCCDIFF Medium cloud cover difference (0 - 1) +188 188 HCCDIFF High cloud cover difference (0 - 1) +189 189 SUNDDIFF Sunshine duration difference (s) +190 190 EWOVDIFF East-West component of sub-gridscale orographic variance difference (m**2) +191 191 NSOVDIFF North-South component of sub-gridscale orographic variance difference (m**2) +192 192 NWOVDIFF North-West/South-East component of sub-gridscale orographic variance difference (m**2) +193 193 NEOVDIFF North-East/South-West component of sub-gridscale orographic variance difference (m**2) +194 194 BTMPDIFF Brightness temperature difference (K) +195 195 LGWSDIFF Longitudinal component of gravity wave stress difference (N m**-2 s) +196 196 MGWSDIFF Meridional component of gravity wave stress difference (N m**-2 s) +197 197 GWDDIFF Gravity wave dissipation difference (J m**-2) +198 198 SRCDIFF Skin reservoir content difference (kg m**-2) +199 199 VEGDIFF Vegetation fraction difference (0 - 1) +200 200 VSODIFF Variance of sub-gridscale orography difference (m**2) +201 201 MX2TDIFF Maximum temperature at 2 metres since previous post-processing difference (K) +202 202 MN2TDIFF Minimum temperature at 2 metres since previous post-processing difference (K) +203 203 O3DIFF Ozone mass mixing ratio difference (kg kg**-1) +204 204 PAWDIFF Precipitation analysis weights difference (~) +205 205 RODIFF Runoff difference (m) +206 206 TCO3DIFF Total column ozone difference (kg m**-2) +207 207 10SIDIFF 10 metre wind speed difference (m s**-1) +208 208 TSRCDIFF Top net solar radiation, clear sky difference (J m**-2) +209 209 TTRCDIFF Top net thermal radiation, clear sky difference (J m**-2) +210 210 SSRCDIFF Surface net solar radiation, clear sky difference (J m**-2) +211 211 STRCDIFF Surface net thermal radiation, clear sky difference (J m**-2) +212 212 TISRDIFF TOA incident solar radiation difference (J m**-2) +214 214 DHRDIFF Diabatic heating by radiation difference (K) +215 215 DHVDDIFF Diabatic heating by vertical diffusion difference (K) +216 216 DHCCDIFF Diabatic heating by cumulus convection difference (K) +217 217 DHLCDIFF Diabatic heating large-scale condensation difference (K) +218 218 VDZWDIFF Vertical diffusion of zonal wind difference (m s**-1) +219 219 VDMWDIFF Vertical diffusion of meridional wind difference (m s**-1) +220 220 EWGDDIFF East-West gravity wave drag tendency difference (m s**-1) +221 221 NSGDDIFF North-South gravity wave drag tendency difference (m s**-1) +222 222 CTZWDIFF Convective tendency of zonal wind difference (m s**-1) +223 223 CTMWDIFF Convective tendency of meridional wind difference (m s**-1) +224 224 VDHDIFF Vertical diffusion of humidity difference (kg kg**-1) +225 225 HTCCDIFF Humidity tendency by cumulus convection difference (kg kg**-1) +226 226 HTLCDIFF Humidity tendency by large-scale condensation difference (kg kg**-1) +227 227 CRNHDIFF Change from removal of negative humidity difference (kg kg**-1) +228 228 TPDIFF Total precipitation difference (m) +229 229 IEWSDIFF Instantaneous X surface stress difference (N m**-2) +230 230 INSSDIFF Instantaneous Y surface stress difference (N m**-2) +231 231 ISHFDIFF Instantaneous surface heat flux difference (J m**-2) +232 232 IEDIFF Instantaneous moisture flux difference (kg m**-2 s) +233 233 ASQDIFF Apparent surface humidity difference (kg kg**-1) +234 234 LSRHDIFF Logarithm of surface roughness length for heat difference (~) +235 235 SKTDIFF Skin temperature difference (K) +236 236 STL4DIFF Soil temperature level 4 difference (K) +237 237 SWL4DIFF Soil wetness level 4 difference (m) +238 238 TSNDIFF Temperature of snow layer difference (K) +239 239 CSFDIFF Convective snowfall difference (m of water equivalent) +240 240 LSFDIFF Large scale snowfall difference (m of water equivalent) +241 241 ACFDIFF Accumulated cloud fraction tendency difference ((-1 to 1)) +242 242 ALWDIFF Accumulated liquid water tendency difference ((-1 to 1)) +243 243 FALDIFF Forecast albedo difference (0 - 1) +244 244 FSRDIFF Forecast surface roughness difference (m) +245 245 FLSRDIFF Forecast logarithm of surface roughness for heat difference (~) +246 246 CLWCDIFF Specific cloud liquid water content difference (kg kg**-1) +247 247 CIWCDIFF Specific cloud ice water content difference (kg kg**-1) +248 248 CCDIFF Cloud cover difference (0 - 1) +249 249 AIWDIFF Accumulated ice water tendency difference ((-1 to 1)) +250 250 ICEDIFF Ice age difference (0 - 1) +251 251 ATTEDIFF Adiabatic tendency of temperature difference (K) +252 252 ATHEDIFF Adiabatic tendency of humidity difference (kg kg**-1) +253 253 ATZEDIFF Adiabatic tendency of zonal wind difference (m s**-1) +254 254 ATMWDIFF Adiabatic tendency of meridional wind difference (m s**-1) diff --git a/eccodes/definitions/grib1/2.98.201.table b/eccodes/definitions/grib1/2.98.201.table new file mode 100644 index 00000000..f937639a --- /dev/null +++ b/eccodes/definitions/grib1/2.98.201.table @@ -0,0 +1,78 @@ +# This file was automatically generated by ./param.pl +1 1 - downward shortwave radiant flux density (J m**-2) +2 2 - upward shortwave radiant flux density (J m**-2) +3 3 - downward longwave radiant flux density (J m**-2) +4 4 - upward longwave radiant flux density (J m**-2) +5 5 APAB_S downwd photosynthetic active radiant flux density (J m**-2) +6 6 - net shortwave flux (J m**-2) +7 7 - net longwave flux (J m**-2) +8 8 - total net radiative flux density (J m**-2) +9 9 - downw shortw radiant flux density, cloudfree part (J m**-2) +10 10 - upw shortw radiant flux density, cloudy part (J m**-2) +11 11 - downw longw radiant flux density, cloudfree part (J m**-2) +12 12 - upw longw radiant flux density, cloudy part (J m**-2) +13 13 SOHR_RAD shortwave radiative heating rate (K s**-1) +14 14 THHR_RAD longwave radiative heating rate (K s**-1) +15 15 - total radiative heating rate (J m**-2) +16 16 - soil heat flux, surface (J m**-2) +17 17 - soil heat flux, bottom of layer (J m**-2) +29 29 CLC fractional cloud cover (0 - 1) +30 30 - cloud cover, grid scale (0 - 1) +31 31 QC specific cloud water content (kg kg**-1) +32 32 - cloud water content, grid scale, vert integrated (kg m**-2) +33 33 QI specific cloud ice content, grid scale (kg kg**-1) +34 34 - cloud ice content, grid scale, vert integrated (kg m**-2) +35 35 - specific rainwater content, grid scale (kg kg**-1) +36 36 - specific snow content, grid scale (kg kg**-1) +37 37 - specific rainwater content, gs, vert. integrated (kg m**-2) +38 38 - specific snow content, gs, vert. integrated (kg m**-2) +41 41 TWATER total column water (kg m**-2) +42 42 - vert. integral of divergence of tot. water content (kg m**-2) +50 50 CH_CM_CL cloud covers CH_CM_CL (000...888) (0 - 1) +51 51 - cloud cover CH (0..8) (0 - 1) +52 52 - cloud cover CM (0..8) (0 - 1) +53 53 - cloud cover CL (0..8) (0 - 1) +54 54 - total cloud cover (0..8) (0 - 1) +55 55 - fog (0..8) (0 - 1) +56 56 - fog (0 - 1) +60 60 - cloud cover, convective cirrus (0 - 1) +61 61 - specific cloud water content, convective clouds (kg kg**-1) +62 62 - cloud water content, conv clouds, vert integrated (kg m**-2) +63 63 - specific cloud ice content, convective clouds (kg kg**-1) +64 64 - cloud ice content, conv clouds, vert integrated (kg m**-2) +65 65 - convective mass flux (kg s**-1 m**-2) +66 66 - Updraft velocity, convection (m s**-1) +67 67 - entrainment parameter, convection (m**-1) +68 68 HBAS_CON cloud base, convective clouds (above msl) (m) +69 69 HTOP_CON cloud top, convective clouds (above msl) (m) +70 70 - convective layers (00...77) (BKE) (0 - 1) +71 71 - KO-index (dimensionless) +72 72 BAS_CON convection base index (dimensionless) +73 73 TOP_CON convection top index (dimensionless) +74 74 DT_CON convective temperature tendency (K s**-1) +75 75 DQV_CON convective tendency of specific humidity (s**-1) +76 76 - convective tendency of total heat (J kg**-1 s**-1) +77 77 - convective tendency of total water (s**-1) +78 78 DU_CON convective momentum tendency (X-component) (m s**-2) +79 79 DV_CON convective momentum tendency (Y-component) (m s**-2) +80 80 - convective vorticity tendency (s**-2) +81 81 - convective divergence tendency (s**-2) +82 82 HTOP_DC top of dry convection (above msl) (m) +83 83 - dry convection top index (dimensionless) +84 84 HZEROCL height of 0 degree Celsius isotherm above msl (m) +85 85 SNOWLMT height of snow-fall limit (m) +99 99 QRS_GSP spec. content of precip. particles (kg kg**-1) +100 100 PRR_GSP surface precipitation rate, rain, grid scale (kg s**-1 m**-2) +101 101 PRS_GSP surface precipitation rate, snow, grid scale (kg s**-1 m**-2) +102 102 RAIN_GSP surface precipitation amount, rain, grid scale (kg m**-2) +111 111 PRR_CON surface precipitation rate, rain, convective (kg s**-1 m**-2) +112 112 PRS_CON surface precipitation rate, snow, convective (kg s**-1 m**-2) +113 113 RAIN_CON surface precipitation amount, rain, convective (kg m**-2) +139 139 PP deviation of pressure from reference value (Pa) +150 150 - coefficient of horizontal diffusion (m**2 s**-1) +187 187 VMAX_10M Maximum wind velocity (m s**-1) +200 200 W_I water content of interception store (kg m**-2) +203 203 T_SNOW snow temperature (K) +215 215 T_ICE ice surface temperature (K) +241 241 CAPE_CON convective available potential energy (J kg**-1) +255 255 - Indicates a missing value diff --git a/eccodes/definitions/grib1/2.98.210.table b/eccodes/definitions/grib1/2.98.210.table new file mode 100644 index 00000000..e1ed044b --- /dev/null +++ b/eccodes/definitions/grib1/2.98.210.table @@ -0,0 +1,227 @@ +# This file was automatically generated by ./param.pl +1 1 AERMR01 Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) +2 2 AERMR02 Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) +3 3 AERMR03 Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) +4 4 AERMR04 Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) +5 5 AERMR05 Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) +6 6 AERMR06 Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) +7 7 AERMR07 Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +8 8 AERMR08 Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +9 9 AERMR09 Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +10 10 AERMR10 Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +11 11 AERMR11 Sulphate Aerosol Mixing Ratio (kg kg**-1) +12 12 AERMR12 SO2 precursor mixing ratio (kg kg**-1) +13 13 AERMR13 Volcanic ash aerosol mixing ratio (kg kg**-1) +14 14 AERMR14 Volcanic sulphate aerosol mixing ratio (kg kg**-1) +15 15 AERMR15 Volcanic SO2 precursor mixing ratio (kg kg**-1) +16 16 AERGN01 Aerosol type 1 source/gain accumulated (kg m**-2) +17 17 AERGN02 Aerosol type 2 source/gain accumulated (kg m**-2) +18 18 AERGN03 Aerosol type 3 source/gain accumulated (kg m**-2) +19 19 AERGN04 Aerosol type 4 source/gain accumulated (kg m**-2) +20 20 AERGN05 Aerosol type 5 source/gain accumulated (kg m**-2) +21 21 AERGN06 Aerosol type 6 source/gain accumulated (kg m**-2) +22 22 AERGN07 Aerosol type 7 source/gain accumulated (kg m**-2) +23 23 AERGN08 Aerosol type 8 source/gain accumulated (kg m**-2) +24 24 AERGN09 Aerosol type 9 source/gain accumulated (kg m**-2) +25 25 AERGN10 Aerosol type 10 source/gain accumulated (kg m**-2) +26 26 AERGN11 Aerosol type 11 source/gain accumulated (kg m**-2) +27 27 AERGN12 Aerosol type 12 source/gain accumulated (kg m**-2) +28 28 AERPR03 SO4 aerosol precursor mass mixing ratio (kg kg**-1) +29 29 AERWV01 Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) +30 30 AERWV02 Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) +31 31 AERLS01 Aerosol type 1 sink/loss accumulated (kg m**-2) +32 32 AERLS02 Aerosol type 2 sink/loss accumulated (kg m**-2) +33 33 AERLS03 Aerosol type 3 sink/loss accumulated (kg m**-2) +34 34 AERLS04 Aerosol type 4 sink/loss accumulated (kg m**-2) +35 35 AERLS05 Aerosol type 5 sink/loss accumulated (kg m**-2) +36 36 AERLS06 Aerosol type 6 sink/loss accumulated (kg m**-2) +37 37 AERLS07 Aerosol type 7 sink/loss accumulated (kg m**-2) +38 38 AERLS08 Aerosol type 8 sink/loss accumulated (kg m**-2) +39 39 AERLS09 Aerosol type 9 sink/loss accumulated (kg m**-2) +40 40 AERLS10 Aerosol type 10 sink/loss accumulated (kg m**-2) +41 41 AERLS11 Aerosol type 11 sink/loss accumulated (kg m**-2) +42 42 AERLS12 Aerosol type 12 sink/loss accumulated (kg m**-2) +43 43 EMDMS DMS surface emission (kg m**-2 s**-1) +44 44 AERWV03 Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) +45 45 AERWV04 Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) +46 46 AERPR Aerosol precursor mixing ratio (kg kg**-1) +47 47 AERSM Aerosol small mode mixing ratio (kg kg**-1) +48 48 AERLG Aerosol large mode mixing ratio (kg kg**-1) +49 49 AODPR Aerosol precursor optical depth (dimensionless) +50 50 AODSM Aerosol small mode optical depth (dimensionless) +51 51 AODLG Aerosol large mode optical depth (dimensionless) +52 52 AERDEP Dust emission potential (kg s**2 m**-5) +53 53 AERLTS Lifting threshold speed (m s**-1) +54 54 AERSCC Soil clay content (%) +55 55 - Experimental product (~) +56 56 - Experimental product (~) +57 57 OCNUC Mixing ration of organic carbon aerosol, nucleation mode (kg kg**-1) +58 58 MONOT Monoterpene precursor mixing ratio (kg kg**-1) +59 59 SOAPR Secondary organic precursor mixing ratio (kg kg**-1) +60 60 INJH Injection height (from IS4FIRES) (m) +61 61 CO2 Carbon Dioxide (kg kg**-1) +62 62 CH4 Methane (kg kg**-1) +63 63 N2O Nitrous oxide (kg kg**-1) +64 64 TCCO2 CO2 column-mean molar fraction (ppm) +65 65 TCCH4 CH4 column-mean molar fraction (ppb) +66 66 TCN2O Total column Nitrous oxide (kg m**-2) +67 67 CO2OF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) +68 68 CO2NBF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) +69 69 CO2APF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) +70 70 CH4F Methane Surface Fluxes (kg m**-2 s**-1) +71 71 KCH4 Methane loss rate due to radical hydroxyl (OH) (s**-1) +72 72 PM1 Particulate matter d < 1 um (kg m**-3) +73 73 PM2P5 Particulate matter d < 2.5 um (kg m**-3) +74 74 PM10 Particulate matter d < 10 um (kg m**-3) +79 79 VAFIRE Wildfire viewing angle of observation (deg) +80 80 CO2FIRE Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) +81 81 COFIRE Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) +82 82 CH4FIRE Wildfire flux of Methane (kg m**-2 s**-1) +83 83 NMHCFIRE Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) +84 84 H2FIRE Wildfire flux of Hydrogen (kg m**-2 s**-1) +85 85 NOXFIRE Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) +86 86 N2OFIRE Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) +87 87 PM2P5FIRE Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) +88 88 TPMFIRE Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) +89 89 TCFIRE Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) +90 90 OCFIRE Wildfire flux of Organic Carbon (kg m**-2 s**-1) +91 91 BCFIRE Wildfire flux of Black Carbon (kg m**-2 s**-1) +92 92 CFIRE Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) +93 93 C4FFIRE Wildfire fraction of C4 plants (dimensionless) +94 94 VEGFIRE Wildfire vegetation map index (dimensionless) +95 95 CCFIRE Wildfire Combustion Completeness (dimensionless) +96 96 FLFIRE Wildfire Fuel Load: Carbon per unit area (kg m**-2) +97 97 OFFIRE Wildfire fraction of area observed (dimensionless) +98 98 NOFRP Number of positive FRP pixels per grid cell (~) +99 99 FRPFIRE Wildfire radiative power (W m**-2) +100 100 CRFIRE Wildfire combustion rate (kg m**-2 s**-1) +101 101 MAXFRPFIRE Wildfire radiative power maximum (W) +102 102 SO2FIRE Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) +103 103 CH3OHFIRE Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) +104 104 C2H5OHFIRE Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) +105 105 C3H8FIRE Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) +106 106 C2H4FIRE Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) +107 107 C3H6FIRE Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) +108 108 C5H8FIRE Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) +109 109 TERPENESFIRE Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) +110 110 TOLUENEFIRE Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) +111 111 HIALKENESFIRE Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) +112 112 HIALKANESFIRE Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) +113 113 CH2OFIRE Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) +114 114 C2H4OFIRE Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) +115 115 C3H6OFIRE Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) +116 116 NH3FIRE Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) +117 117 C2H6SFIRE Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) +118 118 C2H6FIRE Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) +119 119 MAMI Mean altitude of maximum injection (m) +120 120 APT Altitude of plume top (m) +121 121 NO2 Nitrogen dioxide (kg kg**-1) +122 122 SO2 Sulphur dioxide (kg kg**-1) +123 123 CO Carbon monoxide (kg kg**-1) +124 124 HCHO Formaldehyde (kg kg**-1) +125 125 TCNO2 Total column Nitrogen dioxide (kg m**-2) +126 126 TCSO2 Total column Sulphur dioxide (kg m**-2) +127 127 TCCO Total column Carbon monoxide (kg m**-2) +128 128 TCHCHO Total column Formaldehyde (kg m**-2) +129 129 NOX Nitrogen Oxides (kg kg**-1) +130 130 TCNOX Total Column Nitrogen Oxides (kg m**-2) +131 131 GRG1 Reactive tracer 1 mass mixing ratio (kg kg**-1) +132 132 TCGRG1 Total column GRG tracer 1 (kg m**-2) +133 133 GRG2 Reactive tracer 2 mass mixing ratio (kg kg**-1) +134 134 TCGRG2 Total column GRG tracer 2 (kg m**-2) +135 135 GRG3 Reactive tracer 3 mass mixing ratio (kg kg**-1) +136 136 TCGRG3 Total column GRG tracer 3 (kg m**-2) +137 137 GRG4 Reactive tracer 4 mass mixing ratio (kg kg**-1) +138 138 TCGRG4 Total column GRG tracer 4 (kg m**-2) +139 139 GRG5 Reactive tracer 5 mass mixing ratio (kg kg**-1) +140 140 TCGRG5 Total column GRG tracer 5 (kg m**-2) +141 141 GRG6 Reactive tracer 6 mass mixing ratio (kg kg**-1) +142 142 TCGRG6 Total column GRG tracer 6 (kg m**-2) +143 143 GRG7 Reactive tracer 7 mass mixing ratio (kg kg**-1) +144 144 TCGRG7 Total column GRG tracer 7 (kg m**-2) +145 145 GRG8 Reactive tracer 8 mass mixing ratio (kg kg**-1) +146 146 TCGRG8 Total column GRG tracer 8 (kg m**-2) +147 147 GRG9 Reactive tracer 9 mass mixing ratio (kg kg**-1) +148 148 TCGRG9 Total column GRG tracer 9 (kg m**-2) +149 149 GRG10 Reactive tracer 10 mass mixing ratio (kg kg**-1) +150 150 TCGRG10 Total column GRG tracer 10 (kg m**-2) +151 151 SFNOX Surface flux Nitrogen oxides (kg m**-2 s**-1) +152 152 SFNO2 Surface flux Nitrogen dioxide (kg m**-2 s**-1) +153 153 SFSO2 Surface flux Sulphur dioxide (kg m**-2 s**-1) +154 154 SFCO2 Surface flux Carbon monoxide (kg m**-2 s**-1) +155 155 SFHCHO Surface flux Formaldehyde (kg m**-2 s**-1) +156 156 SFGO3 Surface flux GEMS Ozone (kg m**-2 s**-1) +157 157 SFGR1 Surface flux reactive tracer 1 (kg m**-2 s**-1) +158 158 SFGR2 Surface flux reactive tracer 2 (kg m**-2 s**-1) +159 159 SFGR3 Surface flux reactive tracer 3 (kg m**-2 s**-1) +160 160 SFGR4 Surface flux reactive tracer 4 (kg m**-2 s**-1) +161 161 SFGR5 Surface flux reactive tracer 5 (kg m**-2 s**-1) +162 162 SFGR6 Surface flux reactive tracer 6 (kg m**-2 s**-1) +163 163 SFGR7 Surface flux reactive tracer 7 (kg m**-2 s**-1) +164 164 SFGR8 Surface flux reactive tracer 8 (kg m**-2 s**-1) +165 165 SFGR9 Surface flux reactive tracer 9 (kg m**-2 s**-1) +166 166 SFGR10 Surface flux reactive tracer 10 (kg m**-2 s**-1) +181 181 RA Radon (kg kg**-1) +182 182 SF6 Sulphur Hexafluoride (kg kg**-1) +183 183 TCRA Total column Radon (kg m**-2) +184 184 TCSF6 Total column Sulphur Hexafluoride (kg m**-2) +185 185 SF6APF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) +186 186 ALUVPI UV visible albedo for direct radiation, isotropic component (0 - 1) +187 187 ALUVPV UV visible albedo for direct radiation, volumetric component (0 - 1) +188 188 ALUVPG UV visible albedo for direct radiation, geometric component (0 - 1) +189 189 ALNIPI Near IR albedo for direct radiation, isotropic component (0 - 1) +190 190 ALNIPV Near IR albedo for direct radiation, volumetric component (0 - 1) +191 191 ALNIPG Near IR albedo for direct radiation, geometric component (0 - 1) +192 192 ALUVDI UV visible albedo for diffuse radiation, isotropic component (0 - 1) +193 193 ALUVDV UV visible albedo for diffuse radiation, volumetric component (0 - 1) +194 194 ALUVDG UV visible albedo for diffuse radiation, geometric component (0 - 1) +195 195 ALNIDI Near IR albedo for diffuse radiation, isotropic component (0 - 1) +196 196 ALNIDV Near IR albedo for diffuse radiation, volumetric component (0 - 1) +197 197 ALNIDG Near IR albedo for diffuse radiation, geometric component (0 - 1) +203 203 GO3 GEMS Ozone (kg kg**-1) +206 206 GTCO3 GEMS Total column ozone (kg m**-2) +207 207 AOD550 Total Aerosol Optical Depth at 550nm (~) +208 208 SSAOD550 Sea Salt Aerosol Optical Depth at 550nm (~) +209 209 DUAOD550 Dust Aerosol Optical Depth at 550nm (~) +210 210 OMAOD550 Organic Matter Aerosol Optical Depth at 550nm (~) +211 211 BCAOD550 Black Carbon Aerosol Optical Depth at 550nm (~) +212 212 SUAOD550 Sulphate Aerosol Optical Depth at 550nm (~) +213 213 AOD469 Total Aerosol Optical Depth at 469nm (~) +214 214 AOD670 Total Aerosol Optical Depth at 670nm (~) +215 215 AOD865 Total Aerosol Optical Depth at 865nm (~) +216 216 AOD1240 Total Aerosol Optical Depth at 1240nm (~) +217 217 AOD340 Total aerosol optical depth at 340 nm (~) +218 218 AOD355 Total aerosol optical depth at 355 nm (~) +219 219 AOD380 Total aerosol optical depth at 380 nm (~) +220 220 AOD400 Total aerosol optical depth at 400 nm (~) +221 221 AOD440 Total aerosol optical depth at 440 nm (~) +222 222 AOD500 Total aerosol optical depth at 500 nm (~) +223 223 AOD532 Total aerosol optical depth at 532 nm (~) +224 224 AOD645 Total aerosol optical depth at 645 nm (~) +225 225 AOD800 Total aerosol optical depth at 800 nm (~) +226 226 AOD858 Total aerosol optical depth at 858 nm (~) +227 227 AOD1020 Total aerosol optical depth at 1020 nm (~) +228 228 AOD1064 Total aerosol optical depth at 1064 nm (~) +229 229 AOD1640 Total aerosol optical depth at 1640 nm (~) +230 230 AOD2130 Total aerosol optical depth at 2130 nm (~) +231 231 C7H8FIRE Wildfire Flux of Toluene (C7H8) (kg m**-2 s**-1) +232 232 C6H6FIRE Wildfire Flux of Benzene (C6H6) (kg m**-2 s**-1) +233 233 C8H10FIRE Wildfire Flux of Xylene (C8H10) (kg m**-2 s**-1) +234 234 C4H8FIRE Wildfire Flux of Butenes (C4H8) (kg m**-2 s**-1) +235 235 C5H10FIRE Wildfire Flux of Pentenes (C5H10) (kg m**-2 s**-1) +236 236 C6H12FIRE Wildfire Flux of Hexene (C6H12) (kg m**-2 s**-1) +237 237 C8H16FIRE Wildfire Flux of Octene (C8H16) (kg m**-2 s**-1) +238 238 C4H10FIRE Wildfire Flux of Butanes (C4H10) (kg m**-2 s**-1) +239 239 C5H12FIRE Wildfire Flux of Pentanes (C5H12) (kg m**-2 s**-1) +240 240 C6H14FIRE Wildfire Flux of Hexanes (C6H14) (kg m**-2 s**-1) +241 241 C7H16FIRE Wildfire Flux of Heptane (C7H16) (kg m**-2 s**-1) +242 242 APB Altitude of plume bottom (m) +243 243 VSUAOD550 Volcanic sulphate aerosol optical depth at 550 nm (~) +244 244 VASHAOD550 Volcanic ash optical depth at 550 nm (~) +245 245 TAEDEC550 Profile of total aerosol dry extinction coefficient (m**-1) +246 246 TAEDAB550 Profile of total aerosol dry absorption coefficient (m**-1) +247 247 AERMR16 Nitrate fine mode aerosol mass mixing ratio (kg kg**-1) +248 248 AERMR17 Nitrate coarse mode aerosol mass mixing ratio (kg kg**-1) +249 249 AERMR18 Ammonium aerosol mass mixing ratio (kg kg**-1) +250 250 NIAOD550 Nitrate aerosol optical depth at 550 nm (dimensionless) +251 251 AMAOD550 Ammonium aerosol optical depth at 550 nm (dimensionless) diff --git a/eccodes/definitions/grib1/2.98.211.table b/eccodes/definitions/grib1/2.98.211.table new file mode 100644 index 00000000..cc6dacc8 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.211.table @@ -0,0 +1,172 @@ +# This file was automatically generated by ./param.pl +1 1 AERMR01DIFF Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) +2 2 AERMR02DIFF Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) +3 3 AERMR03DIFF Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) +4 4 AERMR04DIFF Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) +5 5 AERMR05DIFF Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) +6 6 AERMR06DIFF Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) +7 7 AERMR07DIFF Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +8 8 AERMR08DIFF Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +9 9 AERMR09DIFF Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +10 10 AERMR10DIFF Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +11 11 AERMR11DIFF Sulphate Aerosol Mixing Ratio (kg kg**-1) +12 12 AERMR12DIFF Aerosol type 12 mixing ratio (kg kg**-1) +13 13 AERMR13DIFF Aerosol type 13 mass mixing ratio (kg kg**-1) +14 14 AERMR14DIFF Aerosol type 14 mass mixing ratio (kg kg**-1) +15 15 AERMR15DIFF Aerosol type 15 mass mixing ratio (kg kg**-1) +16 16 AERGN01DIFF Aerosol type 1 source/gain accumulated (kg m**-2) +17 17 AERGN02DIFF Aerosol type 2 source/gain accumulated (kg m**-2) +18 18 AERGN03DIFF Aerosol type 3 source/gain accumulated (kg m**-2) +19 19 AERGN04DIFF Aerosol type 4 source/gain accumulated (kg m**-2) +20 20 AERGN05DIFF Aerosol type 5 source/gain accumulated (kg m**-2) +21 21 AERGN06DIFF Aerosol type 6 source/gain accumulated (kg m**-2) +22 22 AERGN07DIFF Aerosol type 7 source/gain accumulated (kg m**-2) +23 23 AERGN08DIFF Aerosol type 8 source/gain accumulated (kg m**-2) +24 24 AERGN09DIFF Aerosol type 9 source/gain accumulated (kg m**-2) +25 25 AERGN10DIFF Aerosol type 10 source/gain accumulated (kg m**-2) +26 26 AERGN11DIFF Aerosol type 11 source/gain accumulated (kg m**-2) +27 27 AERGN12DIFF Aerosol type 12 source/gain accumulated (kg m**-2) +28 28 AERPR03DIFF SO4 aerosol precursor mass mixing ratio (kg kg**-1) +29 29 AERWV01DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) +30 30 AERWV02DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) +31 31 AERLS01DIFF Aerosol type 1 sink/loss accumulated (kg m**-2) +32 32 AERLS02DIFF Aerosol type 2 sink/loss accumulated (kg m**-2) +33 33 AERLS03DIFF Aerosol type 3 sink/loss accumulated (kg m**-2) +34 34 AERLS04DIFF Aerosol type 4 sink/loss accumulated (kg m**-2) +35 35 AERLS05DIFF Aerosol type 5 sink/loss accumulated (kg m**-2) +36 36 AERLS06DIFF Aerosol type 6 sink/loss accumulated (kg m**-2) +37 37 AERLS07DIFF Aerosol type 7 sink/loss accumulated (kg m**-2) +38 38 AERLS08DIFF Aerosol type 8 sink/loss accumulated (kg m**-2) +39 39 AERLS09DIFF Aerosol type 9 sink/loss accumulated (kg m**-2) +40 40 AERLS10DIFF Aerosol type 10 sink/loss accumulated (kg m**-2) +41 41 AERLS11DIFF Aerosol type 11 sink/loss accumulated (kg m**-2) +42 42 AERLS12DIFF Aerosol type 12 sink/loss accumulated (kg m**-2) +43 43 EMDMSDIFF DMS surface emission (kg m**-2 s**-1) +44 44 AERWV03DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) +45 45 AERWV04DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) +46 46 AERPRDIFF Aerosol precursor mixing ratio (kg kg**-1) +47 47 AERSMDIFF Aerosol small mode mixing ratio (kg kg**-1) +48 48 AERLGDIFF Aerosol large mode mixing ratio (kg kg**-1) +49 49 AODPRDIFF Aerosol precursor optical depth (dimensionless) +50 50 AODSMDIFF Aerosol small mode optical depth (dimensionless) +51 51 AODLGDIFF Aerosol large mode optical depth (dimensionless) +52 52 AERDEPDIFF Dust emission potential (kg s**2 m**-5) +53 53 AERLTSDIFF Lifting threshold speed (m s**-1) +54 54 AERSCCDIFF Soil clay content (%) +55 55 - Experimental product (~) +56 56 - Experimental product (~) +61 61 CO2DIFF Carbon Dioxide (kg kg**-1) +62 62 CH4DIFF Methane (kg kg**-1) +63 63 N2ODIFF Nitrous oxide (kg kg**-1) +64 64 TCCO2DIFF Total column Carbon Dioxide (kg m**-2) +65 65 TCCH4DIFF Total column Methane (kg m**-2) +66 66 TCN2ODIFF Total column Nitrous oxide (kg m**-2) +67 67 CO2OFDIFF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) +68 68 CO2NBFDIFF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) +69 69 CO2APFDIFF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) +70 70 CH4FDIFF Methane Surface Fluxes (kg m**-2 s**-1) +71 71 KCH4DIFF Methane loss rate due to radical hydroxyl (OH) (s**-1) +80 80 CO2FIREDIFF Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) +81 81 COFIREDIFF Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) +82 82 CH4FIREDIFF Wildfire flux of Methane (kg m**-2 s**-1) +83 83 NMHCFIREDIFF Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) +84 84 H2FIREDIFF Wildfire flux of Hydrogen (kg m**-2 s**-1) +85 85 NOXFIREDIFF Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) +86 86 N2OFIREDIFF Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) +87 87 PM2P5FIREDIFF Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) +88 88 TPMFIREDIFF Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) +89 89 TCFIREDIFF Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) +90 90 OCFIREDIFF Wildfire flux of Organic Carbon (kg m**-2 s**-1) +91 91 BCFIREDIFF Wildfire flux of Black Carbon (kg m**-2 s**-1) +92 92 CFIREDIFF Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) +93 93 C4FFIREDIFF Wildfire fraction of C4 plants (dimensionless) +94 94 VEGFIREDIFF Wildfire vegetation map index (dimensionless) +95 95 CCFIREDIFF Wildfire Combustion Completeness (dimensionless) +96 96 FLFIREDIFF Wildfire Fuel Load: Carbon per unit area (kg m**-2) +97 97 OFFIREDIFF Wildfire fraction of area observed (dimensionless) +98 98 OAFIREDIFF Wildfire observed area (m**2) +99 99 FRPFIREDIFF Wildfire radiative power (W m**-2) +100 100 CRFIREDIFF Wildfire combustion rate (kg m**-2 s**-1) +101 101 MAXFRPFIREDIFF Wildfire radiative power maximum (W) +102 102 SO2FIREDIFF Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) +103 103 CH3OHFIREDIFF Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) +104 104 C2H5OHFIREDIFF Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) +105 105 C3H8FIREDIFF Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) +106 106 C2H4FIREDIFF Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) +107 107 C3H6FIREDIFF Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) +108 108 C5H8FIREDIFF Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) +109 109 TERPENESFIREDIFF Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) +110 110 TOLUENEFIREDIFF Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) +111 111 HIALKENESFIREDIFF Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) +112 112 HIALKANESFIREDIFF Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) +113 113 CH2OFIREDIFF Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) +114 114 C2H4OFIREDIFF Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) +115 115 C3H6OFIREDIFF Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) +116 116 NH3FIREDIFF Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) +117 117 C2H6SFIREDIFF Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) +118 118 C2H6FIREDIFF Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) +119 119 ALEDIFF Altitude of emitter (m) +120 120 APTDIFF Altitude of plume top (m) +121 121 NO2DIFF Nitrogen dioxide (kg kg**-1) +122 122 SO2DIFF Sulphur dioxide (kg kg**-1) +123 123 CODIFF Carbon monoxide (kg kg**-1) +124 124 HCHODIFF Formaldehyde (kg kg**-1) +125 125 TCNO2DIFF Total column Nitrogen dioxide (kg m**-2) +126 126 TCSO2DIFF Total column Sulphur dioxide (kg m**-2) +127 127 TCCODIFF Total column Carbon monoxide (kg m**-2) +128 128 TCHCHODIFF Total column Formaldehyde (kg m**-2) +129 129 NOXDIFF Nitrogen Oxides (kg kg**-1) +130 130 TCNOXDIFF Total Column Nitrogen Oxides (kg m**-2) +131 131 GRG1DIFF Reactive tracer 1 mass mixing ratio (kg kg**-1) +132 132 TCGRG1DIFF Total column GRG tracer 1 (kg m**-2) +133 133 GRG2DIFF Reactive tracer 2 mass mixing ratio (kg kg**-1) +134 134 TCGRG2DIFF Total column GRG tracer 2 (kg m**-2) +135 135 GRG3DIFF Reactive tracer 3 mass mixing ratio (kg kg**-1) +136 136 TCGRG3DIFF Total column GRG tracer 3 (kg m**-2) +137 137 GRG4DIFF Reactive tracer 4 mass mixing ratio (kg kg**-1) +138 138 TCGRG4DIFF Total column GRG tracer 4 (kg m**-2) +139 139 GRG5DIFF Reactive tracer 5 mass mixing ratio (kg kg**-1) +140 140 TCGRG5DIFF Total column GRG tracer 5 (kg m**-2) +141 141 GRG6DIFF Reactive tracer 6 mass mixing ratio (kg kg**-1) +142 142 TCGRG6DIFF Total column GRG tracer 6 (kg m**-2) +143 143 GRG7DIFF Reactive tracer 7 mass mixing ratio (kg kg**-1) +144 144 TCGRG7DIFF Total column GRG tracer 7 (kg m**-2) +145 145 GRG8DIFF Reactive tracer 8 mass mixing ratio (kg kg**-1) +146 146 TCGRG8DIFF Total column GRG tracer 8 (kg m**-2) +147 147 GRG9DIFF Reactive tracer 9 mass mixing ratio (kg kg**-1) +148 148 TCGRG9DIFF Total column GRG tracer 9 (kg m**-2) +149 149 GRG10DIFF Reactive tracer 10 mass mixing ratio (kg kg**-1) +150 150 TCGRG10DIFF Total column GRG tracer 10 (kg m**-2) +151 151 SFNOXDIFF Surface flux Nitrogen oxides (kg m**-2 s**-1) +152 152 SFNO2DIFF Surface flux Nitrogen dioxide (kg m**-2 s**-1) +153 153 SFSO2DIFF Surface flux Sulphur dioxide (kg m**-2 s**-1) +154 154 SFCO2DIFF Surface flux Carbon monoxide (kg m**-2 s**-1) +155 155 SFHCHODIFF Surface flux Formaldehyde (kg m**-2 s**-1) +156 156 SFGO3DIFF Surface flux GEMS Ozone (kg m**-2 s**-1) +157 157 SFGR1DIFF Surface flux reactive tracer 1 (kg m**-2 s**-1) +158 158 SFGR2DIFF Surface flux reactive tracer 2 (kg m**-2 s**-1) +159 159 SFGR3DIFF Surface flux reactive tracer 3 (kg m**-2 s**-1) +160 160 SFGR4DIFF Surface flux reactive tracer 4 (kg m**-2 s**-1) +161 161 SFGR5DIFF Surface flux reactive tracer 5 (kg m**-2 s**-1) +162 162 SFGR6DIFF Surface flux reactive tracer 6 (kg m**-2 s**-1) +163 163 SFGR7DIFF Surface flux reactive tracer 7 (kg m**-2 s**-1) +164 164 SFGR8DIFF Surface flux reactive tracer 8 (kg m**-2 s**-1) +165 165 SFGR9DIFF Surface flux reactive tracer 9 (kg m**-2 s**-1) +166 166 SFGR10DIFF Surface flux reactive tracer 10 (kg m**-2 s**-1) +181 181 RADIFF Radon (kg kg**-1) +182 182 SF6DIFF Sulphur Hexafluoride (kg kg**-1) +183 183 TCRADIFF Total column Radon (kg m**-2) +184 184 TCSF6DIFF Total column Sulphur Hexafluoride (kg m**-2) +185 185 SF6APFDIFF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) +203 203 GO3DIFF GEMS Ozone (kg kg**-1) +206 206 GTCO3DIFF GEMS Total column ozone (kg m**-2) +207 207 AOD550DIFF Total Aerosol Optical Depth at 550nm (~) +208 208 SSAOD550DIFF Sea Salt Aerosol Optical Depth at 550nm (~) +209 209 DUAOD550DIFF Dust Aerosol Optical Depth at 550nm (~) +210 210 OMAOD550DIFF Organic Matter Aerosol Optical Depth at 550nm (~) +211 211 BCAOD550DIFF Black Carbon Aerosol Optical Depth at 550nm (~) +212 212 SUAOD550DIFF Sulphate Aerosol Optical Depth at 550nm (~) +213 213 AOD469DIFF Total Aerosol Optical Depth at 469nm (~) +214 214 AOD670DIFF Total Aerosol Optical Depth at 670nm (~) +215 215 AOD865DIFF Total Aerosol Optical Depth at 865nm (~) +216 216 AOD1240DIFF Total Aerosol Optical Depth at 1240nm (~) diff --git a/eccodes/definitions/grib1/2.98.213.table b/eccodes/definitions/grib1/2.98.213.table new file mode 100644 index 00000000..430b240b --- /dev/null +++ b/eccodes/definitions/grib1/2.98.213.table @@ -0,0 +1,56 @@ +# This file was automatically generated by ./param.pl +1 1 SPPT1 Random pattern 1 for sppt (dimensionless) +2 2 SPPT2 Random pattern 2 for sppt (dimensionless) +3 3 SPPT3 Random pattern 3 for sppt (dimensionless) +4 4 SPPT4 Random pattern 4 for sppt (dimensionless) +5 5 SPPT5 Random pattern 5 for sppt (dimensionless) +101 101 SPP1 Random pattern 1 for SPP scheme (dimensionless) +102 102 SPP2 Random pattern 2 for SPP scheme (dimensionless) +103 103 SPP3 Random pattern 3 for SPP scheme (dimensionless) +104 104 SPP4 Random pattern 4 for SPP scheme (dimensionless) +105 105 SPP5 Random pattern 5 for SPP scheme (dimensionless) +106 106 SPP6 Random pattern 6 for SPP scheme (dimensionless) +107 107 SPP7 Random pattern 7 for SPP scheme (dimensionless) +108 108 SPP8 Random pattern 8 for SPP scheme (dimensionless) +109 109 SPP9 Random pattern 9 for SPP scheme (dimensionless) +110 110 SPP10 Random pattern 10 for SPP scheme (dimensionless) +111 111 SPP11 Random pattern 11 for SPP scheme (dimensionless) +112 112 SPP12 Random pattern 12 for SPP scheme (dimensionless) +113 113 SPP13 Random pattern 13 for SPP scheme (dimensionless) +114 114 SPP14 Random pattern 14 for SPP scheme (dimensionless) +115 115 SPP15 Random pattern 15 for SPP scheme (dimensionless) +116 116 SPP16 Random pattern 16 for SPP scheme (dimensionless) +117 117 SPP17 Random pattern 17 for SPP scheme (dimensionless) +118 118 SPP18 Random pattern 18 for SPP scheme (dimensionless) +119 119 SPP19 Random pattern 19 for SPP scheme (dimensionless) +120 120 SPP20 Random pattern 20 for SPP scheme (dimensionless) +121 121 SPP21 Random pattern 21 for SPP scheme (dimensionless) +122 122 SPP22 Random pattern 22 for SPP scheme (dimensionless) +123 123 SPP23 Random pattern 23 for SPP scheme (dimensionless) +124 124 SPP24 Random pattern 24 for SPP scheme (dimensionless) +125 125 SPP25 Random pattern 25 for SPP scheme (dimensionless) +126 126 SPP26 Random pattern 26 for SPP scheme (dimensionless) +127 127 SPP27 Random pattern 27 for SPP scheme (dimensionless) +128 128 SPP28 Random pattern 28 for SPP scheme (dimensionless) +129 129 SPP29 Random pattern 29 for SPP scheme (dimensionless) +130 130 SPP30 Random pattern 30 for SPP scheme (dimensionless) +131 131 SPP31 Random pattern 31 for SPP scheme (dimensionless) +132 132 SPP32 Random pattern 32 for SPP scheme (dimensionless) +133 133 SPP33 Random pattern 33 for SPP scheme (dimensionless) +134 134 SPP34 Random pattern 34 for SPP scheme (dimensionless) +135 135 SPP35 Random pattern 35 for SPP scheme (dimensionless) +136 136 SPP36 Random pattern 36 for SPP scheme (dimensionless) +137 137 SPP37 Random pattern 37 for SPP scheme (dimensionless) +138 138 SPP38 Random pattern 38 for SPP scheme (dimensionless) +139 139 SPP39 Random pattern 39 for SPP scheme (dimensionless) +140 140 SPP40 Random pattern 40 for SPP scheme (dimensionless) +141 141 SPP41 Random pattern 41 for SPP scheme (dimensionless) +142 142 SPP42 Random pattern 42 for SPP scheme (dimensionless) +143 143 SPP43 Random pattern 43 for SPP scheme (dimensionless) +144 144 SPP44 Random pattern 44 for SPP scheme (dimensionless) +145 145 SPP45 Random pattern 45 for SPP scheme (dimensionless) +146 146 SPP46 Random pattern 46 for SPP scheme (dimensionless) +147 147 SPP47 Random pattern 47 for SPP scheme (dimensionless) +148 148 SPP48 Random pattern 48 for SPP scheme (dimensionless) +149 149 SPP49 Random pattern 49 for SPP scheme (dimensionless) +150 150 SPP50 Random pattern 50 for SPP scheme (dimensionless) diff --git a/eccodes/definitions/grib1/2.98.215.table b/eccodes/definitions/grib1/2.98.215.table new file mode 100644 index 00000000..96de8967 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.215.table @@ -0,0 +1,212 @@ +# This file was automatically generated by ./param.pl +1 1 AERSRCSSS Source/gain of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +2 2 AERSRCSSM Source/gain of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +3 3 AERSRCSSL Source/gain of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +4 4 AERDDPSSS Dry deposition of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +5 5 AERDDPSSM Dry deposition of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +6 6 AERDDPSSL Dry deposition of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +7 7 AERSDMSSS Sedimentation of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +8 8 AERSDMSSM Sedimentation of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +9 9 AERSDMSSL Sedimentation of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +10 10 AERWDLSSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation (kg m**-2 s**-1) +11 11 AERWDLSSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation (kg m**-2 s**-1) +12 12 AERWDLSSSL Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation (kg m**-2 s**-1) +13 13 AERWDCCSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation (kg m**-2 s**-1) +14 14 AERWDCCSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation (kg m**-2 s**-1) +15 15 AERWDCCSSL Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation (kg m**-2 s**-1) +16 16 AERNGTSSS Negative fixer of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +17 17 AERNGTSSM Negative fixer of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +18 18 AERNGTSSL Negative fixer of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +19 19 AERMSSSSS Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) (kg m**-2) +20 20 AERMSSSSM Vertically integrated mass of sea salt aerosol (0.5 - 5 um) (kg m**-2) +21 21 AERMSSSSL Vertically integrated mass of sea salt aerosol (5 - 20 um) (kg m**-2) +22 22 AERODSSS Sea salt aerosol (0.03 - 0.5 um) optical depth (~) +23 23 AERODSSM Sea salt aerosol (0.5 - 5 um) optical depth (~) +24 24 AERODSSL Sea salt aerosol (5 - 20 um) optical depth (~) +25 25 AERSRCDUS Source/gain of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +26 26 AERSRCDUM Source/gain of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +27 27 AERSRCDUL Source/gain of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +28 28 AERDDPDUS Dry deposition of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +29 29 AERDDPDUM Dry deposition of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +30 30 AERDDPDUL Dry deposition of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +31 31 AERSDMDUS Sedimentation of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +32 32 AERSDMDUM Sedimentation of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +33 33 AERSDMDUL Sedimentation of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +34 34 AERWDLSDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation (kg m**-2 s**-1) +35 35 AERWDLSDUM Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation (kg m**-2 s**-1) +36 36 AERWDLSDUL Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation (kg m**-2 s**-1) +37 37 AERWDCCDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation (kg m**-2 s**-1) +38 38 AERWDCCDUM Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation (kg m**-2 s**-1) +39 39 AERWDCCDUL Wet deposition of dust aerosol (9 - 20 um) by convective precipitation (kg m**-2 s**-1) +40 40 AERNGTDUS Negative fixer of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +41 41 AERNGTDUM Negative fixer of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +42 42 AERNGTDUL Negative fixer of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +43 43 AERMSSDUS Vertically integrated mass of dust aerosol (0.03 - 0.55 um) (kg m**-2) +44 44 AERMSSDUM Vertically integrated mass of dust aerosol (0.55 - 9 um) (kg m**-2) +45 45 AERMSSDUL Vertically integrated mass of dust aerosol (9 - 20 um) (kg m**-2) +46 46 AERODDUS Dust aerosol (0.03 - 0.55 um) optical depth (~) +47 47 AERODDUM Dust aerosol (0.55 - 9 um) optical depth (~) +48 48 AERODDUL Dust aerosol (9 - 20 um) optical depth (~) +49 49 AERSRCOMHPHOB Source/gain of hydrophobic organic matter aerosol (kg m**-2 s**-1) +50 50 AERSRCOMHPHIL Source/gain of hydrophilic organic matter aerosol (kg m**-2 s**-1) +51 51 AERDDPOMHPHOB Dry deposition of hydrophobic organic matter aerosol (kg m**-2 s**-1) +52 52 AERDDPOMHPHIL Dry deposition of hydrophilic organic matter aerosol (kg m**-2 s**-1) +53 53 AERSDMOMHPHOB Sedimentation of hydrophobic organic matter aerosol (kg m**-2 s**-1) +54 54 AERSDMOMHPHIL Sedimentation of hydrophilic organic matter aerosol (kg m**-2 s**-1) +55 55 AERWDLSOMHPHOB Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) +56 56 AERWDLSOMHPHIL Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) +57 57 AERWDCCOMHPHOB Wet deposition of hydrophobic organic matter aerosol by convective precipitation (kg m**-2 s**-1) +58 58 AERWDCCOMHPHIL Wet deposition of hydrophilic organic matter aerosol by convective precipitation (kg m**-2 s**-1) +59 59 AERNGTOMHPHOB Negative fixer of hydrophobic organic matter aerosol (kg m**-2 s**-1) +60 60 AERNGTOMHPHIL Negative fixer of hydrophilic organic matter aerosol (kg m**-2 s**-1) +61 61 AERMSSOMHPHOB Vertically integrated mass of hydrophobic organic matter aerosol (kg m**-2) +62 62 AERMSSOMHPHIL Vertically integrated mass of hydrophilic organic matter aerosol (kg m**-2) +63 63 AERODOMHPHOB Hydrophobic organic matter aerosol optical depth (~) +64 64 AERODOMHPHIL Hydrophilic organic matter aerosol optical depth (~) +65 65 AERSRCBCHPHOB Source/gain of hydrophobic black carbon aerosol (kg m**-2 s**-1) +66 66 AERSRCBCHPHIL Source/gain of hydrophilic black carbon aerosol (kg m**-2 s**-1) +67 67 AERDDPBCHPHOB Dry deposition of hydrophobic black carbon aerosol (kg m**-2 s**-1) +68 68 AERDDPBCHPHIL Dry deposition of hydrophilic black carbon aerosol (kg m**-2 s**-1) +69 69 AERSDMBCHPHOB Sedimentation of hydrophobic black carbon aerosol (kg m**-2 s**-1) +70 70 AERSDMBCHPHIL Sedimentation of hydrophilic black carbon aerosol (kg m**-2 s**-1) +71 71 AERWDLSBCHPHOB Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) +72 72 AERWDLSBCHPHIL Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) +73 73 AERWDCCBCHPHOB Wet deposition of hydrophobic black carbon aerosol by convective precipitation (kg m**-2 s**-1) +74 74 AERWDCCBCHPHIL Wet deposition of hydrophilic black carbon aerosol by convective precipitation (kg m**-2 s**-1) +75 75 AERNGTBCHPHOB Negative fixer of hydrophobic black carbon aerosol (kg m**-2 s**-1) +76 76 AERNGTBCHPHIL Negative fixer of hydrophilic black carbon aerosol (kg m**-2 s**-1) +77 77 AERMSSBCHPHOB Vertically integrated mass of hydrophobic black carbon aerosol (kg m**-2) +78 78 AERMSSBCHPHIL Vertically integrated mass of hydrophilic black carbon aerosol (kg m**-2) +79 79 AERODBCHPHOB Hydrophobic black carbon aerosol optical depth (~) +80 80 AERODBCHPHIL Hydrophilic black carbon aerosol optical depth (~) +81 81 AERSRCSU Source/gain of sulphate aerosol (kg m**-2 s**-1) +82 82 AERDDPSU Dry deposition of sulphate aerosol (kg m**-2 s**-1) +83 83 AERSDMSU Sedimentation of sulphate aerosol (kg m**-2 s**-1) +84 84 AERWDLSSU Wet deposition of sulphate aerosol by large-scale precipitation (kg m**-2 s**-1) +85 85 AERWDCCSU Wet deposition of sulphate aerosol by convective precipitation (kg m**-2 s**-1) +86 86 AERNGTSU Negative fixer of sulphate aerosol (kg m**-2 s**-1) +87 87 AERMSSSU Vertically integrated mass of sulphate aerosol (kg m**-2) +88 88 AERODSU Sulphate aerosol optical depth (~) +89 89 ACCAOD550 Accumulated total aerosol optical depth at 550 nm (s) +90 90 ALUVPSN Effective (snow effect included) UV visible albedo for direct radiation (0 - 1) +91 91 AERDEP10SI 10 metre wind speed dust emission potential (kg s**2 m**-5) +92 92 AERDEP10FG 10 metre wind gustiness dust emission potential (kg s**2 m**-5) +93 93 AOT532 Total aerosol optical thickness at 532 nm (dimensionless) +94 94 NAOT532 Natural (sea-salt and dust) aerosol optical thickness at 532 nm (dimensionless) +95 95 AAOT532 Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm (dimensionless) +96 96 AODABS340 Total absorption aerosol optical depth at 340 nm (~) +97 97 AODABS355 Total absorption aerosol optical depth at 355 nm (~) +98 98 AODABS380 Total absorption aerosol optical depth at 380 nm (~) +99 99 AODABS400 Total absorption aerosol optical depth at 400 nm (~) +100 100 AODABS440 Total absorption aerosol optical depth at 440 nm (~) +101 101 AODABS469 Total absorption aerosol optical depth at 469 nm (~) +102 102 AODABS500 Total absorption aerosol optical depth at 500 nm (~) +103 103 AODABS532 Total absorption aerosol optical depth at 532 nm (~) +104 104 AODABS550 Total absorption aerosol optical depth at 550 nm (~) +105 105 AODABS645 Total absorption aerosol optical depth at 645 nm (~) +106 106 AODABS670 Total absorption aerosol optical depth at 670 nm (~) +107 107 AODABS800 Total absorption aerosol optical depth at 800 nm (~) +108 108 AODABS858 Total absorption aerosol optical depth at 858 nm (~) +109 109 AODABS865 Total absorption aerosol optical depth at 865 nm (~) +110 110 AODABS1020 Total absorption aerosol optical depth at 1020 nm (~) +111 111 AODABS1064 Total absorption aerosol optical depth at 1064 nm (~) +112 112 AODABS1240 Total absorption aerosol optical depth at 1240 nm (~) +113 113 AODABS1640 Total absorption aerosol optical depth at 1640 nm (~) +114 114 AODFM340 Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm (~) +115 115 AODFM355 Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm (~) +116 116 AODFM380 Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm (~) +117 117 AODFM400 Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm (~) +118 118 AODFM440 Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm (~) +119 119 AODFM469 Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm (~) +120 120 AODFM500 Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm (~) +121 121 AODFM532 Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm (~) +122 122 AODFM550 Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm (~) +123 123 AODFM645 Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm (~) +124 124 AODFM670 Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm (~) +125 125 AODFM800 Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm (~) +126 126 AODFM858 Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm (~) +127 127 AODFM865 Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm (~) +128 128 AODFM1020 Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm (~) +129 129 AODFM1064 Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm (~) +130 130 AODFM1240 Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm (~) +131 131 AODFM1640 Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm (~) +132 132 SSA340 Single scattering albedo at 340 nm (0 - 1) +133 133 SSA355 Single scattering albedo at 355 nm (0 - 1) +134 134 SSA380 Single scattering albedo at 380 nm (0 - 1) +135 135 SSA400 Single scattering albedo at 400 nm (0 - 1) +136 136 SSA440 Single scattering albedo at 440 nm (0 - 1) +137 137 SSA469 Single scattering albedo at 469 nm (0 - 1) +138 138 SSA500 Single scattering albedo at 500 nm (0 - 1) +139 139 SSA532 Single scattering albedo at 532 nm (0 - 1) +140 140 SSA550 Single scattering albedo at 550 nm (0 - 1) +141 141 SSA645 Single scattering albedo at 645 nm (0 - 1) +142 142 SSA670 Single scattering albedo at 670 nm (0 - 1) +143 143 SSA800 Single scattering albedo at 800 nm (0 - 1) +144 144 SSA858 Single scattering albedo at 858 nm (0 - 1) +145 145 SSA865 Single scattering albedo at 865 nm (0 - 1) +146 146 SSA1020 Single scattering albedo at 1020 nm (0 - 1) +147 147 SSA1064 Single scattering albedo at 1064 nm (0 - 1) +148 148 SSA1240 Single scattering albedo at 1240 nm (0 - 1) +149 149 SSA1640 Single scattering albedo at 1640 nm (0 - 1) +150 150 ASYMMETRY340 Asymmetry factor at 340 nm (~) +151 151 ASYMMETRY355 Asymmetry factor at 355 nm (~) +152 152 ASYMMETRY380 Asymmetry factor at 380 nm (~) +153 153 ASYMMETRY400 Asymmetry factor at 400 nm (~) +154 154 ASYMMETRY440 Asymmetry factor at 440 nm (~) +155 155 ASYMMETRY469 Asymmetry factor at 469 nm (~) +156 156 ASYMMETRY500 Asymmetry factor at 500 nm (~) +157 157 ASYMMETRY532 Asymmetry factor at 532 nm (~) +158 158 ASYMMETRY550 Asymmetry factor at 550 nm (~) +159 159 ASYMMETRY645 Asymmetry factor at 645 nm (~) +160 160 ASYMMETRY670 Asymmetry factor at 670 nm (~) +161 161 ASYMMETRY800 Asymmetry factor at 800 nm (~) +162 162 ASYMMETRY858 Asymmetry factor at 858 nm (~) +163 163 ASYMMETRY865 Asymmetry factor at 865 nm (~) +164 164 ASYMMETRY1020 Asymmetry factor at 1020 nm (~) +165 165 ASYMMETRY1064 Asymmetry factor at 1064 nm (~) +166 166 ASYMMETRY1240 Asymmetry factor at 1240 nm (~) +167 167 ASYMMETRY1640 Asymmetry factor at 1640 nm (~) +168 168 AERSRCSO2 Source/gain of sulphur dioxide (kg m**-2 s**-1) +169 169 AERDDPSO2 Dry deposition of sulphur dioxide (kg m**-2 s**-1) +170 170 AERSDMSO2 Sedimentation of sulphur dioxide (kg m**-2 s**-1) +171 171 AERWDLSSO2 Wet deposition of sulphur dioxide by large-scale precipitation (kg m**-2 s**-1) +172 172 AERWDCCSO2 Wet deposition of sulphur dioxide by convective precipitation (kg m**-2 s**-1) +173 173 AERNGTSO2 Negative fixer of sulphur dioxide (kg m**-2 s**-1) +174 174 AERMSSSO2 Vertically integrated mass of sulphur dioxide (kg m**-2) +175 175 AERODSO2 Sulphur dioxide optical depth (~) +176 176 AODABS2130 Total absorption aerosol optical depth at 2130 nm (~) +177 177 AODFM2130 Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm (~) +178 178 SSA2130 Single scattering albedo at 2130 nm (0 - 1) +179 179 ASYMMETRY2130 Asymmetry factor at 2130 nm (~) +180 180 AEREXT355 Aerosol extinction coefficient at 355 nm (m**-1) +181 181 AEREXT532 Aerosol extinction coefficient at 532 nm (m**-1) +182 182 AEREXT1064 Aerosol extinction coefficient at 1064 nm (m**-1) +183 183 AERBACKSCATTOA355 Aerosol backscatter coefficient at 355 nm (from top of atmosphere) (m**-1 sr**-1) +184 184 AERBACKSCATTOA532 Aerosol backscatter coefficient at 532 nm (from top of atmosphere) (m**-1 sr**-1) +185 185 AERBACKSCATTOA1064 Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) (m**-1 sr**-1) +186 186 AERBACKSCATGND355 Aerosol backscatter coefficient at 355 nm (from ground) (m**-1 sr**-1) +187 187 AERBACKSCATGND532 Aerosol backscatter coefficient at 532 nm (from ground) (m**-1 sr**-1) +188 188 AERBACKSCATGND1064 Aerosol backscatter coefficient at 1064 nm (from ground) (m**-1 sr**-1) +189 189 AERSRCNIF Source/gain of fine-mode nitrate aerosol (kg m**-2 s**-1) +190 190 AERSRCNIC Source/gain of coarse-mode nitrate aerosol (kg m**-2 s**-1) +191 191 AERDDPNIF Dry deposition of fine-mode nitrate aerosol (kg m**-2 s**-1) +192 192 AERDDPNIC Dry deposition of coarse-mode nitrate aerosol (kg m**-2 s**-1) +193 193 AERSDMNIF Sedimentation of fine-mode nitrate aerosol (kg m**-2 s**-1) +194 194 AERSDMNIC Sedimentation of coarse-mode nitrate aerosol (kg m**-2 s**-1) +195 195 AERWDLNIF Wet deposition of fine-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) +196 196 AERWDLNIC Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) +197 197 AERWDCNIF Wet deposition of fine-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) +198 198 AERWDCNIC Wet deposition of coarse-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) +199 199 AERNGTNIF Negative fixer of fine-mode nitrate aerosol (kg m**-2 s**-1) +200 200 AERNGTNIC Negative fixer of coarse-mode nitrate aerosol (kg m**-2 s**-1) +201 201 AERMSSNIF Vertically integrated mass of fine-mode nitrate aerosol (kg m**-2) +202 202 AERMSSNIC Vertically integrated mass of coarse-mode nitrate aerosol (kg m**-2) +203 203 AERODNIF Fine-mode nitrate aerosol optical depth at 550 nm (dimensionless) +204 204 AERODNIC Coarse-mode nitrate aerosol optical depth at 550 nm (dimensionless) +205 205 AERSRCAM Source/gain of ammonium aerosol (kg m**-2 s**-1) +206 206 AERDDPAM Dry deposition of ammonium aerosol (kg m**-2 s**-1) +207 207 AERSDMAM Sedimentation of ammonium aerosol (kg m**-2 s**-1) +208 208 AERWDLAM Wet deposition of ammonium aerosol by large-scale precipitation (kg m**-2 s**-1) +209 209 AERWDCAM Wet deposition of ammonium aerosol by convective precipitation (kg m**-2 s**-1) +210 210 AERNGTAM Negative fixer of ammonium aerosol (kg m**-2 s**-1) +211 211 AERMSSAM Vertically integrated mass of ammonium aerosol (kg m**-2) diff --git a/eccodes/definitions/grib1/2.98.220.table b/eccodes/definitions/grib1/2.98.220.table new file mode 100644 index 00000000..cd6cafaf --- /dev/null +++ b/eccodes/definitions/grib1/2.98.220.table @@ -0,0 +1,2 @@ +# This file was automatically generated by ./param.pl +228 228 TPOC Total precipitation observation count (dimensionless) diff --git a/eccodes/definitions/grib1/2.98.228.table b/eccodes/definitions/grib1/2.98.228.table new file mode 100644 index 00000000..c93451d4 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.228.table @@ -0,0 +1,108 @@ +# This file was automatically generated by ./param.pl +1 cin CIN Convective inhibition (J kg**-1) +2 orog OROG Orography (m) +3 zust ZUST Friction velocity (m s**-1) +4 mean2t MEAN2T Mean temperature at 2 metres (K) +5 mean10ws MEAN10WS Mean of 10 metre wind speed (m s**-1) +6 meantcc MEANTCC Mean total cloud cover (0 - 1) +7 dl DL Lake depth (m) +8 lmlt LMLT Lake mix-layer temperature (K) +9 lmld LMLD Lake mix-layer depth (m) +10 lblt LBLT Lake bottom temperature (K) +11 ltlt LTLT Lake total layer temperature (K) +12 lshf LSHF Lake shape factor (dimensionless) +13 lict LICT Lake ice temperature (K) +14 licd LICD Lake ice depth (m) +15 dndzn DNDZN Minimum vertical gradient of refractivity inside trapping layer (m**-1) +16 dndza DNDZA Mean vertical gradient of refractivity inside trapping layer (m**-1) +17 dctb DCTB Duct base height (m) +18 tplb TPLB Trapping layer base height (m) +19 tplt TPLT Trapping layer top height (m) +20 degm10l -10 degrees C isothermal level (m) +21 fdir FDIR Total sky direct solar radiation at surface (J m**-2) +22 cdir CDIR Clear-sky direct solar radiation at surface (J m**-2) +23 cbh CBH Cloud base height (m) +24 deg0l DEG0L Zero degree level (m) +25 hvis HVIS Horizontal visibility (m) +26 mx2t3 MX2T3 Maximum temperature at 2 metres in the last 3 hours (K) +27 mn2t3 MN2T3 Minimum temperature at 2 metres in the last 3 hours (K) +28 10fg3 10FG3 10 metre wind gust in the last 3 hours (m s**-1) +29 i10fg I10FG Instantaneous 10 metre wind gust (m s**-1) +39 sm SM Soil Moisture (kg m**-3) +40 swi1 SWI1 Soil wetness index in layer 1 (dimensionless) +41 swi2 SWI2 Soil wetness index in layer 2 (dimensionless) +42 swi3 SWI3 Soil wetness index in layer 3 (dimensionless) +43 swi4 SWI4 Soil wetness index in layer 4 (dimensionless) +44 capes CAPES Convective available potential energy shear (m**2 s**-2) +46 hcct HCCT Height of convective cloud top (m) +47 hwbt0 HWBT0 Height of zero-degree wet-bulb temperature (m) +48 hwbt1 HWBT1 Height of one-degree wet-bulb temperature (m) +50 litoti LITOTI Instantaneous total lightning flash density (km**-2 day**-1) +51 litota1 LITOTA1 Averaged total lightning flash density in the last hour (km**-2 day**-1) +52 licgi LICGI Instantaneous cloud-to-ground lightning flash density (km**-2 day**-1) +53 licga1 LICGA1 Averaged cloud-to-ground lightning flash density in the last hour (km**-2 day**-1) +70 smnnob SMNNOB SMOS observed soil moisture retrieved using neural network (m**3 m**-3) +71 smnner SMNNER SMOS observed soil moisture uncertainty retrieved using neural network (m**3 m**-3) +72 smnnrfi SMNNRFI SMOS radio frequency interference probability (%) +73 smnnnb SMNNNB SMOS number of observations per grid point (dimensionless) +74 smnntim SMNNTIM SMOS observation time for the satellite soil moisture data (hour) +78 gppbfas GPPBFAS GPP coefficient from Biogenic Flux Adjustment System (dimensionless) +79 recbfas RECBFAS Rec coefficient from Biogenic Flux Adjustment System (dimensionless) +80 aco2nee ACO2NEE Accumulated Carbon Dioxide Net Ecosystem Exchange (kg m**-2) +81 aco2gpp ACO2GPP Accumulated Carbon Dioxide Gross Primary Production (kg m**-2) +82 aco2rec ACO2REC Accumulated Carbon Dioxide Ecosystem Respiration (kg m**-2) +83 fco2nee FCO2NEE Flux of Carbon Dioxide Net Ecosystem Exchange (kg m**-2 s**-1) +84 fco2gpp FCO2GPP Flux of Carbon Dioxide Gross Primary Production (kg m**-2 s**-1) +85 fco2rec FCO2REC Flux of Carbon Dioxide Ecosystem Respiration (kg m**-2 s**-1) +88 tcslw TCSLW Total column supercooled liquid water (kg m**-2) +89 tcrw TCRW Total column rain water (kg m**-2) +90 tcsw TCSW Total column snow water (kg m**-2) +91 ccf CCF Canopy cover fraction (0 - 1) +92 stf STF Soil texture fraction (0 - 1) +93 swv SWV Volumetric soil moisture (m**3 m**-3) +94 ist IST Ice temperature (K) +109 ceil CEIL Ceiling (m) +121 kx KX K index (K) +123 totalx TOTALX Total totals index (K) +129 ssrdc SSRDC Surface solar radiation downward clear-sky (J m**-2) +130 strdc STRDC Surface thermal radiation downward clear-sky (J m**-2) +131 u10n U10N Neutral wind at 10 m u-component (m s**-1) +132 v10n V10N Neutral wind at 10 m v-component (m s**-1) +134 vtnowd VTNOWD V-tendency from non-orographic wave drag (m s**-2) +136 utnowd UTNOWD U-tendency from non-orographic wave drag (m s**-2) +139 st ST Soil Temperature (K) +141 sd SD Snow depth water equivalent (kg m**-2) +144 sf SF Snow Fall water equivalent (kg m**-2) +164 tcc TCC Total Cloud Cover (%) +170 cap CAP Field capacity (kg m**-3) +171 wilt WILT Wilting point (kg m**-3) +216 fzra FZRA Accumulated freezing rain (m) +217 ilspf ILSPF Instantaneous large-scale surface precipitation fraction (0 - 1) +218 crr CRR Convective rain rate (kg m**-2 s**-1) +219 lsrr LSRR Large scale rain rate (kg m**-2 s**-1) +220 csfr CSFR Convective snowfall rate water equivalent (kg m**-2 s**-1) +221 lssfr LSSFR Large scale snowfall rate water equivalent (kg m**-2 s**-1) +222 mxtpr3 MXTPR3 Maximum total precipitation rate in the last 3 hours (kg m**-2 s**-1) +223 mntpr3 MNTPR3 Minimum total precipitation rate in the last 3 hours (kg m**-2 s**-1) +224 mxtpr6 MXTPR6 Maximum total precipitation rate in the last 6 hours (kg m**-2 s**-1) +225 mntpr6 MNTPR6 Minimum total precipitation rate in the last 6 hours (kg m**-2 s**-1) +226 mxtpr MXTPR Maximum total precipitation rate since previous post-processing (kg m**-2 s**-1) +227 mntpr MNTPR Minimum total precipitation rate since previous post-processing (kg m**-2 s**-1) +228 tp TP Total Precipitation (kg m**-2) +229 smos_tb_cdfa SMOS_TB_CDFA SMOS first Brightness Temperature Bias Correction parameter (K) +230 smos_tb_cdfb SMOS_TB_CDFB SMOS second Brightness Temperature Bias Correction parameter (dimensionless) +239 200U 200 metre U wind component (m s**-1) +240 200V 200 metre V wind component (m s**-1) +241 200SI 200 metre wind speed (m s**-1) +242 fdif FDIF Surface solar radiation diffuse total sky (J m**-2) +243 cdif CDIF Surface solar radiation diffuse clear-sky (J m**-2) +244 aldr ALDR Surface albedo of direct radiation (0 - 1) +245 aldf ALDF Surface albedo of diffuse radiation (0 - 1) +246 100u 100U 100 metre U wind component (m s**-1) +247 100v 100V 100 metre V wind component (m s**-1) +249 100si 100SI 100 metre wind speed (m s**-1) +250 irrfr IRRFR Irrigation fraction (Proportion) +251 pev PEV Potential evaporation (m) +252 irr IRR Irrigation (m) +253 ascat_sm_cdfa ASCAT_SM_CDFA ASCAT first soil moisture CDF matching parameter (m**3 m**-3) +254 ascat_sm_cdfb ASCAT_SM_CDFB ASCAT second soil moisture CDF matching parameter (dimensionless) diff --git a/eccodes/definitions/grib1/2.98.230.table b/eccodes/definitions/grib1/2.98.230.table new file mode 100644 index 00000000..8ec456e9 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.230.table @@ -0,0 +1,51 @@ +# This file was automatically generated by ./param.pl +8 8 SROVAR Surface runoff (variable resolution) (m) +9 9 SSROVAR Sub-surface runoff (variable resolution) (m) +20 20 PARCSVAR Clear sky surface photosynthetically active radiation (variable resolution) (J m**-2) +21 21 FDIRVAR Total sky direct solar radiation at surface (variable resolution) (J m**-2) +22 22 CDIRVAR Clear-sky direct solar radiation at surface (variable resolution) (J m**-2) +44 44 ESVAR Snow evaporation (variable resolution) (kg m**-2) +45 45 SMLTVAR Snowmelt (variable resolution) (kg m**-2) +46 46 SDURVAR Solar duration (variable resolution) (s) +47 47 DSRPVAR Direct solar radiation (variable resolution) (J m**-2) +50 50 LSPFVAR Large-scale precipitation fraction (variable resolution) (s) +57 57 UVBVAR Downward UV radiation at the surface (variable resolution) (J m**-2) +58 58 PARVAR Photosynthetically active radiation at the surface (variable resolution) (J m**-2) +80 80 ACO2NEEVAR Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) (kg m**-2) +81 81 ACO2GPPVAR Accumulated Carbon Dioxide Gross Primary Production (variable resolution) (kg m**-2) +82 82 ACO2RECVAR Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) (kg m**-2) +129 129 SSRDCVAR Surface solar radiation downward clear-sky (variable resolution) (J m**-2) +130 130 STRDCVAR Surface thermal radiation downward clear-sky (variable resolution) (J m**-2) +142 142 LSPVAR Stratiform precipitation (Large-scale precipitation) (variable resolution) (m) +143 143 CPVAR Convective precipitation (variable resolution) (m) +144 144 SFVAR Snowfall (convective + stratiform) (variable resolution) (m of water equivalent) +145 145 BLDVAR Boundary layer dissipation (variable resolution) (J m**-2) +146 146 SSHFVAR Surface sensible heat flux (variable resolution) (J m**-2) +147 147 SLHFVAR Surface latent heat flux (variable resolution) (J m**-2) +169 169 SSRDVAR Surface solar radiation downwards (variable resolution) (J m**-2) +174 174 ALVAR Albedo (variable resolution) (0 - 1) +175 175 STRDVAR Surface thermal radiation downwards (variable resolution) (J m**-2) +176 176 SSRVAR Surface net solar radiation (variable resolution) (J m**-2) +177 177 STRVAR Surface net thermal radiation (variable resolution) (J m**-2) +178 178 TSRVAR Top net solar radiation (variable resolution) (J m**-2) +179 179 TTRVAR Top net thermal radiation (variable resolution) (J m**-2) +180 180 EWSSVAR East-West surface stress (variable resolution) (N m**-2 s) +181 181 NSSSVAR North-South surface stress (variable resolution) (N m**-2 s) +182 182 EVAR Evaporation (variable resolution) (kg m**-2) +189 189 SUNDVAR Sunshine duration (variable resolution) (s) +195 195 LGWSVAR Longitudinal component of gravity wave stress (variable resolution) (N m**-2 s) +196 196 MGWSVAR Meridional component of gravity wave stress (variable resolution) (N m**-2 s) +197 197 GWDVAR Gravity wave dissipation (variable resolution) (J m**-2) +198 198 SRCVAR Skin reservoir content (variable resolution) (kg m**-2) +205 205 ROVAR Runoff (variable resolution) (m) +208 208 TSRCVAR Top net solar radiation, clear sky (variable resolution) (J m**-2) +209 209 TTRCVAR Top net thermal radiation, clear sky (variable resolution) (J m**-2) +210 210 SSRCVAR Surface net solar radiation, clear sky (variable resolution) (J m**-2) +211 211 STRCVAR Surface net thermal radiation, clear sky (variable resolution) (J m**-2) +212 212 TISRVAR TOA incident solar radiation (variable resolution) (J m**-2) +213 213 VIMDVAR Vertically integrated moisture divergence (variable resolution) (kg m**-2) +216 216 FZRAVAR Accumulated freezing rain (variable resolution) (m) +228 228 TPVAR Total precipitation (variable resolution) (m) +239 239 CSFVAR Convective snowfall (variable resolution) (m of water equivalent) +240 240 LSFVAR Large-scale snowfall (variable resolution) (m of water equivalent) +251 251 PEVVAR Potential evaporation (variable resolution) (m) diff --git a/eccodes/definitions/grib1/2.98.235.table b/eccodes/definitions/grib1/2.98.235.table new file mode 100644 index 00000000..e5d79015 --- /dev/null +++ b/eccodes/definitions/grib1/2.98.235.table @@ -0,0 +1,49 @@ +# This file was automatically generated by ./param.pl +20 20 - Mean surface runoff rate (kg m**-2 s**-1) +21 21 - Mean sub-surface runoff rate (kg m**-2 s**-1) +22 22 - Mean surface photosynthetically active radiation flux, clear sky (W m**-2) +23 23 - Mean snow evaporation rate (kg m**-2 s**-1) +24 24 - Mean snowmelt rate (kg m**-2 s**-1) +25 25 - Mean magnitude of surface stress (N m**-2) +26 26 - Mean large-scale precipitation fraction (Proportion) +27 27 - Mean surface downward UV radiation flux (W m**-2) +28 28 - Mean surface photosynthetically active radiation flux (W m**-2) +29 29 - Mean large-scale precipitation rate (kg m**-2 s**-1) +30 30 - Mean convective precipitation rate (kg m**-2 s**-1) +31 31 - Mean snowfall rate (kg m**-2 s**-1) +32 32 - Mean boundary layer dissipation (W m**-2) +33 33 - Mean surface sensible heat flux (W m**-2) +34 34 - Mean surface latent heat flux (W m**-2) +35 35 - Mean surface downward short-wave radiation flux (W m**-2) +36 36 - Mean surface downward long-wave radiation flux (W m**-2) +37 37 - Mean surface net short-wave radiation flux (W m**-2) +38 38 - Mean surface net long-wave radiation flux (W m**-2) +39 39 - Mean top net short-wave radiation flux (W m**-2) +40 40 - Mean top net long-wave radiation flux (W m**-2) +41 41 - Mean eastward turbulent surface stress (N m**-2) +42 42 - Mean northward turbulent surface stress (N m**-2) +43 43 - Mean evaporation rate (kg m**-2 s**-1) +44 44 - Sunshine duration fraction (Proportion) +45 45 - Mean eastward gravity wave surface stress (N m**-2) +46 46 - Mean northward gravity wave surface stress (N m**-2) +47 47 - Mean gravity wave dissipation (W m**-2) +48 48 - Mean runoff rate (kg m**-2 s**-1) +49 49 - Mean top net short-wave radiation flux, clear sky (W m**-2) +50 50 - Mean top net long-wave radiation flux, clear sky (W m**-2) +51 51 - Mean surface net short-wave radiation flux, clear sky (W m**-2) +52 52 - Mean surface net long-wave radiation flux, clear sky (W m**-2) +53 53 - Mean top downward short-wave radiation flux (W m**-2) +54 54 - Mean vertically integrated moisture divergence (kg m**-2 s**-1) +55 55 - Mean total precipitation rate (kg m**-2 s**-1) +56 56 - Mean convective snowfall rate (kg m**-2 s**-1) +57 57 - Mean large-scale snowfall rate (kg m**-2 s**-1) +58 58 - Mean surface direct short-wave radiation flux (W m**-2) +59 59 - Mean surface direct short-wave radiation flux, clear sky (W m**-2) +60 60 - Mean surface diffuse short-wave radiation flux (W m**-2) +61 61 - Mean surface diffuse short-wave radiation flux, clear sky (W m**-2) +62 62 - Mean carbon dioxide net ecosystem exchange flux (kg m**-2 s**-1) +63 63 - Mean carbon dioxide gross primary production flux (kg m**-2 s**-1) +64 64 - Mean carbon dioxide ecosystem respiration flux (kg m**-2 s**-1) +65 65 - Mean rain rate (kg m**-2 s**-1) +66 66 - Mean convective rain rate (kg m**-2 s**-1) +67 67 - Mean large-scale rain rate (kg m**-2 s**-1) diff --git a/eccodes/definitions/grib1/2.table b/eccodes/definitions/grib1/2.table new file mode 100644 index 00000000..7dc22b12 --- /dev/null +++ b/eccodes/definitions/grib1/2.table @@ -0,0 +1,5 @@ +# CODE TABLE 1, Flag indication relative to section 2 and 3 +1 0 Section 2 omited +1 1 Section 2 included +2 0 Section 3 omited +2 1 Section 3 included diff --git a/eccodes/definitions/grib1/3.233.table b/eccodes/definitions/grib1/3.233.table new file mode 100644 index 00000000..8bb824dd --- /dev/null +++ b/eccodes/definitions/grib1/3.233.table @@ -0,0 +1,61 @@ +# CODE TABLE 3 Fixed levels or layers for which the data are included +0 0 Reserved +1 sfc Surface (of the Earth, which includes sea surface) +2 sfc Cloud base level +3 sfc Cloud top level +4 sfc 0 deg (C) isotherm level +5 lcl Adiabatic condensation level (parcel lifted from surface) +6 umx Maximum wind speed level +7 trp Tropopause level +8 toa Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 tl Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 sfc Mean sea level 0 0 +103 asl Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two height levels above msl height of top (hm) above mean sea level height of bottom (hm) above mean sea level +105 agl Fixed height above ground height in meters (2 octets) +106 106 Layer between two height levels above ground height of top (hm) above ground height of bottom (hm) above ground +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 ml Layer between two hybrid levels level number of top level number of bottom +111 sfc Depth below land surface centimeters (2 octets) +112 sfc Layer between two depths below land surface depth of upper surface (cm) depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +191 dn Northern facing surface (HIRLAM Extension) +192 dne North-eastern facing surface (HIRLAM Extension) +193 de Eastern facing surface (HIRLAM Extension) +194 dse South-eastern facing surface (HIRLAM Extension) +195 ds Southern facing surface (HIRLAM Extension) +196 dsw South-western facing surface (HIRLAM Extension) +197 dw Western facing surface (HIRLAM Extension) +198 dw North-western facing surface (HIRLAM Extension) +200 atm Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +# 202-209 Reserved +210 pl Isobaric surface (Pa) (ECMWF extension) +# 211-254 Reserved for local use +211 wv Ocean wave level (ECMWF extension) +212 oml Ocean mixed layer (ECMWF extension) +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/3.82.table b/eccodes/definitions/grib1/3.82.table new file mode 100644 index 00000000..7d5b2636 --- /dev/null +++ b/eccodes/definitions/grib1/3.82.table @@ -0,0 +1,50 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# CODE TABLE 3 Fixed levels or layers for wich the data are included +0 0 Reserved +1 surf Surface (of the Earth, which includes sea surface) +2 bcld Cloud base level +3 tcld Cloud top level +4 isot 0 deg (C) isotherm level +5 5 Adiabatic condensation level (parcel lifted from surface) +6 6 Maximum wind speed level +7 7 Tropopause level +8 tatm Nominal top of atmosphere +9 9 Sea bottom +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 msl Mean sea level 0 0 +103 hmsl Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two height levels above msl height of top (hm) above mean sea level height of bottom (hm) above mean sea level +105 hl Fixed height above ground height in meters (2 octets) +106 lhl Layer between two height levels above ground height of top (hm) above ground height of bottom (hm) above ground +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 110 Layer between two hybrid levels level number of top level number of bottom +111 111 Depth below land surface centimeters (2 octets) +112 ldl Layer between two depths below land surface depth of upper surface (cm) depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +125 125 Height level above ground (high precision) centimeters (2 octets) +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +160 dp Depth below sea level meters (2 octets) +191 nd Northern Direction (SMHI Extension) +192 ned Northern-Eastern Direction (SMHI Extension) +193 ed Eastern Direction (SMHI Extension) +194 sed Southern-Eastern Direction (SMHI Extension) +195 sd Southern Direction (SMHI Extension) +196 swd Southern-Western Direction (SMHI Extension) +197 wd Western Direction (SMHI Extension) +198 nwd Northern-Western Direction (SMHI Extension) +200 atm Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) diff --git a/eccodes/definitions/grib1/3.98.table b/eccodes/definitions/grib1/3.98.table new file mode 100644 index 00000000..767213f1 --- /dev/null +++ b/eccodes/definitions/grib1/3.98.table @@ -0,0 +1,53 @@ +# CODE TABLE 3 Fixed levels or layers for which the data are included +0 0 Reserved +1 sfc Surface (of the Earth, which includes sea surface) +2 sfc Cloud base level +3 sfc Cloud top level +4 sfc 0 deg (C) isotherm level +5 5 Adiabatic condensation level (parcel lifted from surface) +6 6 Maximum wind speed level +7 7 Tropopause level +8 sfc Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 sfc Mean sea level 0 0 +103 103 Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) +105 sfc Fixed height above ground height in meters (2 octets) +106 106 Layer between two height levels above ground - height of top, height of bottom (hm) +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 ml Layer between two hybrid levels level number of top level number of bottom +111 sfc Depth below land surface centimeters (2 octets) +112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +200 sfc Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +# 202-209 Reserved +210 pl Isobaric surface (Pa) (ECMWF extension) +# 211-254 Reserved for local use +211 wv Ocean wave level (ECMWF extension) +212 oml Ocean mixed layer (ECMWF extension) +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/3.table b/eccodes/definitions/grib1/3.table new file mode 100644 index 00000000..17bf1dff --- /dev/null +++ b/eccodes/definitions/grib1/3.table @@ -0,0 +1,51 @@ +# CODE TABLE 3 Fixed levels or layers for which the data are included +0 0 Reserved +1 sfc Surface (of the Earth, which includes sea surface) +2 sfc Cloud base level +3 sfc Cloud top level +4 sfc 0 deg (C) isotherm level +5 5 Adiabatic condensation level (parcel lifted from surface) +6 6 Maximum wind speed level +7 7 Tropopause level +8 sfc Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 sfc Mean sea level 0 0 +103 103 Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) +105 sfc Fixed height above ground height in meters (2 octets) +106 106 Layer between two height levels above ground - height of top, height of bottom (hm) +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 ml Layer between two hybrid levels level number of top level number of bottom +111 sfc Depth below land surface centimeters (2 octets) +112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +200 sfc Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +# 202-209 Reserved +210 pl Isobaric surface (Pa) (ECMWF extension) +# 211-254 Reserved for local use +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/4.table b/eccodes/definitions/grib1/4.table new file mode 100644 index 00000000..1ddcb8cd --- /dev/null +++ b/eccodes/definitions/grib1/4.table @@ -0,0 +1,15 @@ +# CODE TABLE 4 Unit of Time +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade +6 30Y Normal (30 years) +7 C Century +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 15m 15 minutes +14 30m 30 minutes +254 s Second diff --git a/eccodes/definitions/grib1/5.table b/eccodes/definitions/grib1/5.table new file mode 100644 index 00000000..b1276f06 --- /dev/null +++ b/eccodes/definitions/grib1/5.table @@ -0,0 +1,21 @@ +# CODE TABLE 5 Time Range Indicator +0 0 Forecast product valid at reference time + P1 (P1>0) +1 1 Initialized analysis product for reference time (P1=0). +2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 +3 3 Average (reference time + P1 to reference time + P2) +4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 +5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 +6 6 Average (reference time - P1 to reference time - P2) +7 7 Average (reference time - P1 to reference time + P2) +10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 +51 51 Climatological Mean Value: +113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. +116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. +117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. +118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. +119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. +124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. +125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions/grib1/6.table b/eccodes/definitions/grib1/6.table new file mode 100644 index 00000000..f7e0644b --- /dev/null +++ b/eccodes/definitions/grib1/6.table @@ -0,0 +1,24 @@ +# CODE TABLE 6 Data Representation Type +0 ll Latitude/Longitude Grid +1 mm Mercator Projection Grid +2 gp Gnomonic Projection Grid +3 lc Lambert Conformal +4 gg Gaussian Latitude/Longitude Grid +5 ps Polar Stereographic Projection Grid +6 6 Universal Transverse Mercator +7 7 Simple polyconic projection +8 8 Albers equal-area, secant or tangent, conic or bi-polar +9 9 Miller's cylingrical projection +10 10 Rotated Latitude/Longitude grid +13 ol Oblique Lambert conformal +14 14 Rotated Gaussian latitude/longitude grid +20 20 Stretched latitude/longitude grid +24 24 Stretched Gaussian latitude/longitude +30 30 Stretched and rotated latitude/longitude +34 34 Stretched and rotated Gaussian latitude/longitude +50 sh Spherical Harmonic Coefficients +60 60 Rotated Spherical Harmonic coefficients +70 70 Stretched Spherical Harmonic coefficients +80 80 Stretched and rotated Spherical Harmonic +90 sv Space view perspective or orthographic grid +193 193 Quasi-regular latitude/longitude diff --git a/eccodes/definitions/grib1/7.table b/eccodes/definitions/grib1/7.table new file mode 100644 index 00000000..5fefe61f --- /dev/null +++ b/eccodes/definitions/grib1/7.table @@ -0,0 +1,7 @@ +# CODE TABLE 7, Resolution and Component Flags +1 0 Direction increments not given +1 1 Direction increments given +2 0 Earth assumed spherical with radius = 6367.47 km +2 1 Earth assumed oblate spheroid with size as determined by IAU in 1965: 6378.160 km, 6356.775 km, f = 1/297.0 +5 0 u and v components resolved relative to easterly and northerly directions +5 1 u and v components resolved relative to the defined grid diff --git a/eccodes/definitions/grib1/8.table b/eccodes/definitions/grib1/8.table new file mode 100644 index 00000000..b4ea17ff --- /dev/null +++ b/eccodes/definitions/grib1/8.table @@ -0,0 +1,7 @@ +# CODE TABLE 8, Scanning Mode Flag +1 0 Points scan in +i direction +1 1 Points scan in -i direction +2 0 Points scan in -j direction +2 1 Points scan in +j direction +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive diff --git a/eccodes/definitions/grib1/9.table b/eccodes/definitions/grib1/9.table new file mode 100644 index 00000000..521a1324 --- /dev/null +++ b/eccodes/definitions/grib1/9.table @@ -0,0 +1,2 @@ +# CODE TABLE 9, Spectral Representation Type +1 1 Associated Legendre Polynomials of the First Kind with normalization such that the integral equals 1 diff --git a/eccodes/definitions/grib1/boot.def b/eccodes/definitions/grib1/boot.def new file mode 100644 index 00000000..7c76d27d --- /dev/null +++ b/eccodes/definitions/grib1/boot.def @@ -0,0 +1,83 @@ +# (C) Copyright 2005- 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. +# + +constant ieeeFloats = 0 : hidden, edition_specific; +transient eps=0; +constant two=1 : hidden; +constant three=1 : hidden; +constant eight=8 : hidden; +constant eleven=11 : hidden; +constant epsPoint=1 : hidden; +constant epsContinous=11 : hidden; +constant epsStatisticsPoint=2 : hidden; +constant epsStatisticsContinous=12 : hidden; + +meta headersOnly headers_only(); + +#template section_0 "grib1/section.0.def" ; + +meta gts_header gts_header() : no_copy,hidden,read_only; +meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; +meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; +meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; + +ascii[4] identifier = "GRIB" : read_only,hidden; + +constant offsetSection0=0; +constant section0Length=8 ; +meta section0Pointer section_pointer(offsetSection0,section0Length,0); + +# Due to a trick done by GRIBEX to support large GRIBs, we need a special treatment +# of the message length and of the section4 length, so instead of +# section_length[3] totalLength ; +# we get: +g1_message_length[3] totalLength(section4Length) ; +position startOfHeaders; +unsigned[1] editionNumber = 1 : edition_specific,dump; + +template section_1 "grib1/section.1.def" ; + +alias ls.edition = editionNumber; + +# Note flagbit numbers 7 to 0, while wmo is 1 to 8 +flagbit gridDescriptionSectionPresent(section1Flags,7) = 1; +meta GDSPresent gds_is_present(gridDescriptionSectionPresent,gridDefinition,bitmapPresent,values): dump ; +#alias GDSPresent = gridDescriptionSectionPresent; + +flagbit bitmapPresent(section1Flags,6) :dump; +alias bitmapSectionPresent=bitmapPresent; +alias geography.bitmapPresent=bitmapPresent; +alias missingValuesPresent=bitmapPresent : read_only; +transient angleSubdivisions=1000; # milli degrees + +if(gridDescriptionSectionPresent){ + template section_2 "grib1/section.2.def" ; +} else { + template predefined_grid "grib1/predefined_grid.def"; +} + +# Used to mark end of headers. Can be accessed with grib_get_offset() +position endOfHeadersMarker; + +meta lengthOfHeaders evaluate( endOfHeadersMarker-startOfHeaders); +meta md5Headers md5(startOfHeaders,lengthOfHeaders); + +if (!headersOnly) { + transient missingValue = 9999 : dump; + + if(bitmapPresent) { + template section_3 "grib1/section.3.def"; + } else { + constant tableReference = 0; + } + + template section_4 "grib1/section.4.def"; + + template section_5 "grib1/section.5.def"; +} diff --git a/eccodes/definitions/grib1/cfName.def b/eccodes/definitions/grib1/cfName.def new file mode 100644 index 00000000..6e2fafd8 --- /dev/null +++ b/eccodes/definitions/grib1/cfName.def @@ -0,0 +1,349 @@ +# Automatically generated by ./create_def.pl, do not edit +#Geopotential +'geopotential' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'air_temperature' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'northward_wind' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'geopotential_height' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Albedo +'surface_albedo' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Geopotential +'geopotential' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'air_temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'northward_wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'geopotential_height' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Albedo +'surface_albedo' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Geopotential +'geopotential' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'air_temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'northward_wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'geopotential_height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Albedo +'surface_albedo' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; +} diff --git a/eccodes/definitions/grib1/cfVarName.def b/eccodes/definitions/grib1/cfVarName.def new file mode 100644 index 00000000..7aeff37b --- /dev/null +++ b/eccodes/definitions/grib1/cfVarName.def @@ -0,0 +1,2059 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'strf' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'u10' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'v10' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'t2m' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'p3062' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sde' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'p260102' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Virtual temperature +'p300012' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'p300012' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'p300012' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } +#Pressure tendency +'p3003' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'p3005' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'p3008' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'p3009' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'p3014' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'p3015' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'p3016' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'p3017' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'p3018' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'p3019' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } +#Visibility +'p3020' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'p3021' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'p3022' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'p3023' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'p3024' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'p3025' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'p3026' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'p3027' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'p3028' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'p3029' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'p3030' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'p3031' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'p3037' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'p3038' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'p3041' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'p3042' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'p3045' = { + table2Version = 3 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'p3046' = { + table2Version = 3 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'p3047' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'p3048' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'p3049' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'p3050' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'p3053' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'p3054' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'p3055' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'p3056' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'p3059' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'p3060' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'p3063' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'p3064' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'p3067' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'p3068' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'p3069' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'p3070' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'p3077' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'p3080' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'p3082' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'p3086' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Salinity +'p3088' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } +#Density +'p3089' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'p3091' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'p3092' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'p3093' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'p3094' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'p3095' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'p3096' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'p3097' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'p3098' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'p3099' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'p3100' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'p3101' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'p3102' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'p3103' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'p3104' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'p3105' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'p3106' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'p3107' = { + table2Version = 3 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'p3108' = { + table2Version = 3 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'p3109' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'p3110' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'p3111' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'p3112' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'p3113' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'p3114' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'p3115' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'p3116' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'p3117' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'p3119' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'p3120' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'p3124' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'p3125' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'p3126' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } +#Image data +'p3127' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'strf' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'u10' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'v10' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'t2m' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'p3062' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sd' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'p260102' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'p3003' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'p3005' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'p3008' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'p3009' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'p3014' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'p3015' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'p3016' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'p3017' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'p3018' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'p3019' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } +#Visibility +'p3020' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'p3021' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'p3022' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'p3023' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'p3024' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'p3025' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'p3026' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'p3027' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'p3028' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'p3029' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'p3030' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'p3031' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'p3037' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'p3038' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'p3041' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'p3042' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'p3045' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'p3046' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'p3047' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'p3048' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'p3049' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'p3050' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'p3053' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'p3054' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'p3055' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'p3056' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'p3059' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'p3060' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'p3063' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'p3064' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'p3067' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'p3068' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'p3069' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'p3070' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'p3077' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'p3080' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'p3082' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'p3086' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Salinity +'p3088' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } +#Density +'p3089' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'p3091' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'p3092' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'p3093' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'p3094' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'p3095' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'p3096' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'p3097' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'p3098' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'p3099' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'p3100' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'p3101' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'p3102' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'p3103' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'p3104' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'p3105' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'p3106' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'p3107' = { + table2Version = 2 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'p3108' = { + table2Version = 2 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'p3109' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'p3110' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'p3111' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'p3112' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'p3113' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'p3114' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'p3115' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'p3116' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'p3117' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'p3119' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'p3120' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'p3124' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'p3125' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'p3126' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } +#Image data +'p3127' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'strf' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'u10' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'v10' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'t2m' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'p3062' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sd' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'p260102' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'p3003' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'p3005' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'p3008' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'p3009' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'p3014' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'p3015' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'p3016' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'p3017' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'p3018' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'p3019' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'p3020' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'p3021' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'p3022' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'p3023' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'p3024' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'p3025' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'p3026' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'p3027' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'p3028' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'p3029' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'p3030' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'p3031' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'p3037' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'p3038' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'p3041' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'p3042' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'p3045' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'p3046' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'p3047' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'p3048' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'p3049' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'p3050' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'p3053' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'p3054' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'p3055' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'p3056' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'p3059' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'p3060' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'p3063' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'p3064' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'p3067' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'p3068' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'p3069' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'p3070' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'p3077' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'p3080' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'p3082' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'p3086' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Salinity +'p3088' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'p3089' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'p3091' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'p3092' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'p3093' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'p3094' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'p3095' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'p3096' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'p3097' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'p3098' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'p3099' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'p3100' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'p3101' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'p3102' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'p3103' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'p3104' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'p3105' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'p3106' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'p3107' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'p3108' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'p3109' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'p3110' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'p3111' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'p3112' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'p3113' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'p3114' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'p3115' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'p3116' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'p3117' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'p3119' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'p3120' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'p3124' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'p3125' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'p3126' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'p3127' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; +} diff --git a/eccodes/definitions/grib1/cluster_domain.def b/eccodes/definitions/grib1/cluster_domain.def new file mode 100644 index 00000000..1cff2a5c --- /dev/null +++ b/eccodes/definitions/grib1/cluster_domain.def @@ -0,0 +1,7 @@ +'a' = { northernLatitudeOfDomain=70000; westernLongitudeOfDomain=332500; southernLatitudeOfDomain=40000; easternLongitudeOfDomain=10000; } +'b' = { northernLatitudeOfDomain=72500; westernLongitudeOfDomain=0; southernLatitudeOfDomain=50000; easternLongitudeOfDomain=45000; } +'c' = { northernLatitudeOfDomain=57500; westernLongitudeOfDomain=345000; southernLatitudeOfDomain=32500; easternLongitudeOfDomain=17500; } +'d' = { northernLatitudeOfDomain=57500; westernLongitudeOfDomain=2500; southernLatitudeOfDomain=32500; easternLongitudeOfDomain=42500; } +'e' = { northernLatitudeOfDomain=75000; westernLongitudeOfDomain=340000; southernLatitudeOfDomain=30000; easternLongitudeOfDomain=45000; } +'f' = { northernLatitudeOfDomain=60000; westernLongitudeOfDomain=310000; southernLatitudeOfDomain=40000; easternLongitudeOfDomain=0; } + diff --git a/eccodes/definitions/grib1/data.grid_ieee.def b/eccodes/definitions/grib1/data.grid_ieee.def new file mode 100644 index 00000000..be40b7ea --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_ieee.def @@ -0,0 +1,42 @@ +# (C) Copyright 2005- ECMWF. + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +# For grib1 -> grib2 +#constant dataRepresentationTemplateNumber = ?; + +# TODO +codetable[1] precision "grib1/precision.table" = 2 : dump,edition_specific; +position offsetBeforeData; +if( bitmapPresent || !GDSPresent ) { + # For grib1 -> grib2 + constant bitMapIndicator = 0; + meta codedValues data_raw_packing( + section4Length, + offsetBeforeData, + offsetSection4, + numberOfCodedValues, + precision + ); + meta values data_apply_bitmap(codedValues, + bitmap,missingValue,binaryScaleFactor) : dump; + alias data.packedValues = codedValues; +} else { + # For grib1 -> grib2 + constant bitMapIndicator = 255; + + meta values data_raw_packing( + section4Length, + offsetBeforeData, + offsetSection4, + numberOfCodedValues, + precision + ); + alias data.packedValues = values; +} + +meta numberOfCodedValues number_of_values_data_raw_packing(values,precision); + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_jpeg.def b/eccodes/definitions/grib1/data.grid_jpeg.def new file mode 120000 index 00000000..6acfdfc9 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_jpeg.def @@ -0,0 +1 @@ +data.grid_simple.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/data.grid_second_order.def b/eccodes/definitions/grib1/data.grid_second_order.def new file mode 100644 index 00000000..d517d26b --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order.def @@ -0,0 +1,178 @@ +# (C) Copyright 2005- ECMWF. + +unsigned [2] N2 : dump; +unsigned [2] codedNumberOfGroups : no_copy ; +unsigned [2] numberOfSecondOrderPackedValues : dump; + +# used to extend +unsigned [1] extraValues=0 : hidden, edition_specific; + +meta numberOfGroups evaluate(codedNumberOfGroups + 65536 * extraValues); + +unsigned [1] widthOfWidths : dump; +unsigned [1] widthOfLengths : dump; +unsigned [2] NL : dump; + +if (orderOfSPD) { + unsigned[1] widthOfSPD ; + meta SPD spd(widthOfSPD,orderOfSPD) : read_only; +} + + +meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; +meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; +meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; +meta countOfGroupLengths sum(groupLengths); + +transient numberOfCodedValues=countOfGroupLengths+orderOfSPD; +#transient numberOfCodedValues=countOfGroupLengths; +meta bitsPerValue second_order_bits_per_value(codedValues,binaryScaleFactor,decimalScaleFactor); + + +position offsetBeforeData; +if(bitmapPresent) { + meta codedValues data_g1second_order_general_extended_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + codedNumberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ): read_only; + alias data.packedValues = codedValues; + + if (boustrophedonicOrdering) + { + if (GRIBEX_boustrophedonic) + { + meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; + } + else + { + meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; + } + meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } + else + { + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + } +} else { + if (boustrophedonicOrdering) { + + meta codedValues data_g1second_order_general_extended_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + codedNumberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ) : read_only; + meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } else { + meta values data_g1second_order_general_extended_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + codedNumberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ) : dump; + alias codedValues=values; + } + alias data.packedValues = values; +} + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD1.def b/eccodes/definitions/grib1/data.grid_second_order_SPD1.def new file mode 120000 index 00000000..0dd04689 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_SPD1.def @@ -0,0 +1 @@ +data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD2.def b/eccodes/definitions/grib1/data.grid_second_order_SPD2.def new file mode 120000 index 00000000..0dd04689 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_SPD2.def @@ -0,0 +1 @@ +data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD3.def b/eccodes/definitions/grib1/data.grid_second_order_SPD3.def new file mode 120000 index 00000000..0dd04689 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_SPD3.def @@ -0,0 +1 @@ +data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/data.grid_second_order_constant_width.def b/eccodes/definitions/grib1/data.grid_second_order_constant_width.def new file mode 100644 index 00000000..9feeade6 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_constant_width.def @@ -0,0 +1,149 @@ +# (C) Copyright 2005- ECMWF. + +unsigned [2] N2 : dump; +unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; +unsigned [2] numberOfSecondOrderPackedValues : dump; + +# used to extend +unsigned [1] extraValues=0 : hidden, edition_specific; + +meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); + +unsigned[1] groupWidth :dump; +meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); + +position offsetBeforeData; + +if(bitmapPresent) { + meta codedValues data_g1second_order_constant_width_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidth + + ): read_only; + alias data.packedValues = codedValues; + + if (boustrophedonicOrdering) + { + if (GRIBEX_boustrophedonic) + { + meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; + } + else + { + meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; + } + meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } + else + { + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + } + +} else { + + if (boustrophedonicOrdering) { + meta codedValues data_g1second_order_constant_width_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidth + + ) : read_only; + meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } else { + meta values data_g1second_order_constant_width_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidth + + ) : dump; + } + alias data.packedValues = values; +} + +transient numberOfCodedValues = numberOfSecondOrderPackedValues; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_second_order_general_grib1.def b/eccodes/definitions/grib1/data.grid_second_order_general_grib1.def new file mode 100644 index 00000000..7548225a --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_general_grib1.def @@ -0,0 +1,148 @@ +# (C) Copyright 2005- ECMWF. + +unsigned [2] N2 : dump; +unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; +unsigned [2] numberOfSecondOrderPackedValues : dump; + +# used to extend +unsigned [1] extraValues=0 : hidden, edition_specific; + +meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); + +unsigned[1] groupWidths[numberOfGroups] :dump; +meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); + +position offsetBeforeData; + +if(bitmapPresent) { + meta codedValues data_g1second_order_general_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidths + + ): read_only; + alias data.packedValues = codedValues; + + if (boustrophedonicOrdering) + { + if (GRIBEX_boustrophedonic) + { + meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; + } + else + { + meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; + } + meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } + else + { + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + } + +} else { + if (boustrophedonicOrdering) { + meta values data_g1second_order_general_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidths + + ) : dump; + meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } else { + meta values data_g1second_order_general_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + bitmap, + groupWidths + + ) : dump; + } + alias data.packedValues = values; +} + +transient numberOfCodedValues = numberOfSecondOrderPackedValues; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_second_order_no_SPD.def b/eccodes/definitions/grib1/data.grid_second_order_no_SPD.def new file mode 120000 index 00000000..0dd04689 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_no_SPD.def @@ -0,0 +1 @@ +data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/data.grid_second_order_row_by_row.def b/eccodes/definitions/grib1/data.grid_second_order_row_by_row.def new file mode 100644 index 00000000..8368f443 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_second_order_row_by_row.def @@ -0,0 +1,95 @@ +# (C) Copyright 2005- ECMWF. + +unsigned [2] N2 : dump; +unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; +unsigned [2] numberOfSecondOrderPackedValues : dump; + +# used to extend +unsigned [1] extraValues=0 : hidden, edition_specific; + +meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); + +unsigned[1] groupWidths[numberOfGroups] :dump; +meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); + +position offsetBeforeData; + +if(bitmapPresent) { + meta codedValues data_g1second_order_row_by_row_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + groupWidths, + bitmap + + ): read_only; + alias data.packedValues = codedValues; + + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; +} else { + + meta values data_g1second_order_row_by_row_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + N1, + N2, + numberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + Ni, + Nj, + pl, + jPointsAreConsecutive, + groupWidths + + ) : dump; + alias data.packedValues = values; +} + +transient numberOfCodedValues = numberOfSecondOrderPackedValues; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_simple.def b/eccodes/definitions/grib1/data.grid_simple.def new file mode 100644 index 00000000..638d3cb2 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_simple.def @@ -0,0 +1,69 @@ +# (C) Copyright 2005- ECMWF. + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; +constant constantFieldHalfByte=8; + +# For grib1 -> grib2 +#constant dataRepresentationTemplateNumber = 0; + +position offsetBeforeData; + +if( bitmapPresent || !GDSPresent ) { + # For grib1 -> grib2 + constant bitMapIndicator = 0; + + meta codedValues data_g1simple_packing( + #simple_packing args + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1simple_packing args + halfByte, + packingType, + grid_ieee,precision + ) : read_only; + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + alias data.packedValues = codedValues; +} else { + + # For grib1 -> grib2 + constant bitMapIndicator = 255; + + meta values data_g1simple_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte, + packingType, + grid_ieee,precision + ) : dump; + alias data.packedValues = values; +} + + + +meta numberOfCodedValues number_of_coded_values(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.grid_simple_matrix.def b/eccodes/definitions/grib1/data.grid_simple_matrix.def new file mode 100644 index 00000000..9ef57800 --- /dev/null +++ b/eccodes/definitions/grib1/data.grid_simple_matrix.def @@ -0,0 +1,181 @@ +# (C) Copyright 2005- ECMWF. + +#used in packing +constant constantFieldHalfByte=0; + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +unsigned[2] octetAtWichPackedDataBegins; +flags[1] extendedFlag "grib1/11-2.table"; + +flagbit matrixOfValues(extendedFlag,3) : dump; +flagbit secondaryBitmapPresent(extendedFlag,2) : dump; +flagbit secondOrderOfDifferentWidth(extendedFlag,1) : dump; + +alias secondOrderValuesDifferentWidths = secondOrderOfDifferentWidth; +alias secondaryBitMap=secondaryBitmapPresent; + +unsigned[2] NR : dump; +alias firstDimension = NR; + +unsigned[2] NC : dump; +alias secondDimension = NC; + +flags[1] coordinateFlag1 "grib1/12.table" : dump; +alias firstDimensionCoordinateValueDefinition = coordinateFlag1; + +unsigned[1] NC1 : dump; +alias numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction = NC1; + + +flags[1] coordinateFlag2 "grib1/12.table" : dump; +alias secondDimensionCoordinateValueDefinition = coordinateFlag2; + +unsigned[1] NC2 : dump; +alias numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction = NC2; + +flags[1] physicalFlag1 "grib1/13.table" : dump; +alias firstDimensionPhysicalSignificance = physicalFlag1; # TODO: Check if grib1 and 2 table are the same + + +flags[1] physicalFlag2 "grib1/13.table" : dump; +alias secondDimensionPhysicalSignificance = physicalFlag2; # TODO: Check if grib1 and 2 table are the same + +ibmfloat coefsFirst[NC1] : dump; + +ibmfloat coefsSecond[NC2] : dump; + +alias data.coefsFirst = coefsFirst; +alias data.coefsSecond=coefsSecond; + +position offsetBeforeData; + +if(matrixOfValues == 0) +{ + constant matrixBitmapsPresent = 0; + position offsetBeforeData; + + if(bitmapPresent) { + + # For grib1 -> grib2 + constant bitMapIndicator = 0; + + meta codedValues data_g1simple_packing ( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte, + packingType, + grid_ieee + ) : read_only; + alias data.packedValues = codedValues; + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + # See GRIB-262: The octetAtWichPackedDataBegins cannot be set to a value bigger than 65535! + # This is historic stuff which no longer applies + # when(changed(values)) {set octetAtWichPackedDataBegins=numberOfCodedValues;} + } else { + # For grib1 -> grib2 + constant bitMapIndicator = 255; + + meta values data_g1simple_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte + ) : dump; + + alias data.packedValues = values; + } +} else { + #if(secondaryBitmapPresent == 0) { meta error not_implemented(); } + + constant matrixBitmapsPresent = 1; + constant bitMapIndicator = 0; + +# From GRIBEX: +# +# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +# ! ! +# ! This is the WMO definition, but it is entirely ! +# ! inadequate when secondary bit maps are present ! +# ! eg 3x3 global grid with a matrix of values ! +# ! 12x26 at each point. This gives a bit map with ! +# ! a length of 285480 octets which cannot be given! +# ! in 16 bits. ! +# ! ! +# ! ECMWF uses the following definition for its ! +# ! wave model data. ! +# ! N - Number of secondary bit maps ! +# ! (ie the number of points which are 'not ! +# ! missing'). ! +# ! This definition will accommodate a 1x1 ! +# ! degree global grid. ! +# ! ! +# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +# + + constant datumSize = NC*NR; + transient secondaryBitmapsCount = octetAtWichPackedDataBegins*datumSize; # + transient secondaryBitmapsSize = secondaryBitmapsCount/8; + + #alias numberOfDataPoints = secondaryBitmapsCount; # grib 1 -> 2 + + position offsetBBitmap; + + meta secondaryBitmaps g1bitmap( + dummy, + missingValue, + offsetBBitmap, + secondaryBitmapsSize, + dummy) : read_only; + + position offsetBeforeData; + + meta codedValues data_g1simple_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte + ) : read_only; + + alias data.packedValues = codedValues; + + constant expandBy = NC*NR; + meta secondaryBitmap data_g1secondary_bitmap(bitmap,secondaryBitmaps,missingValue,expandBy,octetAtWichPackedDataBegins); + + meta values data_apply_bitmap(codedValues,secondaryBitmap,missingValue,binaryScaleFactor) : dump; + +} +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; +meta numberOfCodedValues number_of_coded_values(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib1/data.spectral_complex.def b/eccodes/definitions/grib1/data.spectral_complex.def new file mode 100644 index 00000000..ebdf60d4 --- /dev/null +++ b/eccodes/definitions/grib1/data.spectral_complex.def @@ -0,0 +1,138 @@ +# (C) Copyright 2005- ECMWF. + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +# For grib1 -> grib2 + +#constant dataRepresentationTemplateNumber = 51; + +constant PUnset = -32767; + + unsigned[2] N : read_only,dump; + signed[2] P = PUnset ; + + unsigned[1] JS=0 : dump; + unsigned[1] KS=0 : dump; + unsigned[1] MS=0 : dump; + + alias subSetJ=JS ; + alias subSetK=KS ; + alias subSetM=MS ; + + constant GRIBEXShBugPresent = 1; + if (gribex_mode_on()) { + transient computeLaplacianOperator=0 : hidden; + } else { + transient computeLaplacianOperator=1 : hidden; + } + + meta data.laplacianOperator scale(P,oneConstant,grib1divider,truncateLaplacian) : dump; + meta laplacianOperatorIsSet evaluate(P != PUnset && !computeLaplacianOperator ); + + if (localUsePresent) { + if (changed(localDefinitionNumber)) { + transient TS = 0 ; + meta TScalc spectral_truncation(JS,KS,MS,TS) : read_only,hidden; + meta Nassigned octect_number(N,4*TScalc) : hidden ; + } + } + + position offsetBeforeData; + meta values data_g1complex_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM, + + halfByte, + N,packingType,spectral_ieee,precision + ) : dump ; + + meta data.packedValues data_sh_packed( + section4Length, + offsetBeforeData, + offsetSection4, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + + meta data.unpackedValues data_sh_unpacked( + section4Length, + offsetBeforeData, + offsetSection4, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +# nearest sh(values,radius,J,K,M); + +meta numberOfCodedValues g1number_of_coded_values_sh_complex(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues,subSetJ,subSetK,subSetM) : dump; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib1/data.spectral_ieee.def b/eccodes/definitions/grib1/data.spectral_ieee.def new file mode 100644 index 00000000..21a083e2 --- /dev/null +++ b/eccodes/definitions/grib1/data.spectral_ieee.def @@ -0,0 +1,134 @@ +# (C) Copyright 2005- ECMWF. + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +# For grib1 -> grib2 + +#constant dataRepresentationTemplateNumber = 51; + +constant PUnset = -32767; + + unsigned[2] N : read_only,dump; + signed[2] P = PUnset ; + + unsigned[1] JS=0 : dump; + unsigned[1] KS=0 : dump; + unsigned[1] MS=0 : dump; + + alias subSetJ=JS ; + alias subSetK=KS ; + alias subSetM=MS ; + + constant GRIBEXShBugPresent = 1; + transient computeLaplacianOperator=0; + + meta data.laplacianOperator scale(P,oneConstant,grib1divider,truncateLaplacian) : dump; + meta laplacianOperatorIsSet evaluate(P != PUnset && !computeLaplacianOperator ); + + if (localUsePresent) { + if (changed(localDefinitionNumber)) { + transient TS = 0 ; + meta TScalc spectral_truncation(JS,KS,MS,TS) : read_only,hidden; + meta Nassigned octect_number(N,4*TScalc) : hidden ; + } + } + + position offsetBeforeData; + meta values data_g1complex_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM, + + halfByte, + N,packingType,spectral_ieee,precision + ) : dump ; + + meta data.packedValues data_sh_packed( + section4Length, + offsetBeforeData, + offsetSection4, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + + meta data.unpackedValues data_sh_unpacked( + section4Length, + offsetBeforeData, + offsetSection4, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + ieeeFloats, + + laplacianOperatorIsSet, + laplacianOperator, + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; + +# nearest sh(values,radius,J,K,M); + +meta numberOfCodedValues g1number_of_coded_values_sh_complex(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues,subSetJ,subSetK,subSetM) : dump; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib1/data.spectral_simple.def b/eccodes/definitions/grib1/data.spectral_simple.def new file mode 100644 index 00000000..939f1d64 --- /dev/null +++ b/eccodes/definitions/grib1/data.spectral_simple.def @@ -0,0 +1,40 @@ +# (C) Copyright 2005- ECMWF. + +# moved here to allow different bitsPerValue in second order packing +unsigned[1] bitsPerValue : dump ; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +# For grib1 -> grib2 +#constant dataRepresentationTemplateNumber = 50; + +ibmfloat realPart ; +position offsetBeforeData; +transient P=0; + +_if (gribex_mode_on()) { + transient computeLaplacianOperator=0 : hidden; +} else { + transient computeLaplacianOperator=1 : hidden; +} + +meta codedValues data_g1simple_packing( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte +): read_only; + +meta values data_g1shsimple_packing(codedValues,realPart) : dump; +alias data.packedValues = values; +meta numberOfCodedValues g1number_of_coded_values_sh_simple(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib1/gds_not_present_bitmap.def b/eccodes/definitions/grib1/gds_not_present_bitmap.def new file mode 100644 index 00000000..735087dc --- /dev/null +++ b/eccodes/definitions/grib1/gds_not_present_bitmap.def @@ -0,0 +1,23 @@ +# (C) Copyright 2005- ECMWF. + +# SECTION 3, Bit-map section +position offsetSection3; +transient section3Length=1; +meta section3Pointer section_pointer(offsetSection3,section3Length,3); + +# Number of unused bits at end of Section 3 +transient numberOfUnusedBitsAtEndOfSection3 = 0 : read_only; + +# Table reference: +transient tableReference = 0; + +#position offsetBeforeBitmap; +meta bitmap gds_not_present_bitmap( missingValue,numberOfValues, + numberOfPoints, + latitudeOfFirstGridPoint, + Ni,numberOfUnusedBitsAtEndOfSection3) : read_only; + +#position offsetAfterBitmap; + +#padtoeven padding_sec3_1(offsetSection3,section3Length); +#section_padding section3Padding; diff --git a/eccodes/definitions/grib1/grid.192.78.3.10.table b/eccodes/definitions/grib1/grid.192.78.3.10.table new file mode 100755 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib1/grid.192.78.3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib1/grid.192.78.3.9.table b/eccodes/definitions/grib1/grid.192.78.3.9.table new file mode 100755 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib1/grid.192.78.3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib1/grid_21.def b/eccodes/definitions/grib1/grid_21.def new file mode 100644 index 00000000..79d552a4 --- /dev/null +++ b/eccodes/definitions/grib1/grid_21.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 21 + +constant Ni = 37; +constant Nj = 37; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 180000; + +constant latitudeOfFirstGridPoint = 0; +constant latitudeOfLastGridPoint = 90000; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 2500; + +constant numberOfDataPoints=1369; +constant numberOfValues=1333 ; + diff --git a/eccodes/definitions/grib1/grid_22.def b/eccodes/definitions/grib1/grid_22.def new file mode 100644 index 00000000..c9c0dd78 --- /dev/null +++ b/eccodes/definitions/grib1/grid_22.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 22 + +constant Ni = 37; +constant Nj = 37; + +constant longitudeOfFirstGridPoint = -180000; +constant longitudeOfLastGridPoint = 0; + +constant latitudeOfFirstGridPoint = 0; +constant latitudeOfLastGridPoint = 90000; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 2500; + +constant numberOfDataPoints=1369; +constant numberOfValues=1333 ; + diff --git a/eccodes/definitions/grib1/grid_23.def b/eccodes/definitions/grib1/grid_23.def new file mode 100644 index 00000000..0d24337c --- /dev/null +++ b/eccodes/definitions/grib1/grid_23.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 23 + +constant Ni = 37; +constant Nj = 37; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 180000; + +constant latitudeOfFirstGridPoint = -90000; +constant latitudeOfLastGridPoint = 0; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 2500; + +constant numberOfDataPoints=1369; +constant numberOfValues=1333 ; + diff --git a/eccodes/definitions/grib1/grid_24.def b/eccodes/definitions/grib1/grid_24.def new file mode 100644 index 00000000..15d582e4 --- /dev/null +++ b/eccodes/definitions/grib1/grid_24.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 24 + +constant Ni = 37; +constant Nj = 37; + +constant longitudeOfFirstGridPoint = -180000; +constant longitudeOfLastGridPoint = 0; + +constant latitudeOfFirstGridPoint = -90000; +constant latitudeOfLastGridPoint = 0; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 2500; + +constant numberOfDataPoints=1369; +constant numberOfValues=1333 ; + diff --git a/eccodes/definitions/grib1/grid_25.def b/eccodes/definitions/grib1/grid_25.def new file mode 100644 index 00000000..07ab7f8c --- /dev/null +++ b/eccodes/definitions/grib1/grid_25.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 25 + +constant Ni = 72; +constant Nj = 19; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 355000; + +constant latitudeOfFirstGridPoint = 0; +constant latitudeOfLastGridPoint = 90000; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 5000; + +constant numberOfDataPoints=1368; +constant numberOfValues=1297 ; + diff --git a/eccodes/definitions/grib1/grid_26.def b/eccodes/definitions/grib1/grid_26.def new file mode 100644 index 00000000..746b9f8e --- /dev/null +++ b/eccodes/definitions/grib1/grid_26.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 26 + +constant Ni = 72; +constant Nj = 19; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 355000; + +constant latitudeOfFirstGridPoint = -90000; +constant latitudeOfLastGridPoint = 0; + +constant iDirectionIncrement = 5000; +constant jDirectionIncrement = 5000; + +constant numberOfDataPoints=1368; +constant numberOfValues=1297 ; diff --git a/eccodes/definitions/grib1/grid_61.def b/eccodes/definitions/grib1/grid_61.def new file mode 100644 index 00000000..625fd7be --- /dev/null +++ b/eccodes/definitions/grib1/grid_61.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 61 + +constant Ni = 91; +constant Nj = 46; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 180000; + +constant latitudeOfFirstGridPoint = 0; +constant latitudeOfLastGridPoint = 90000; + +constant iDirectionIncrement = 2000; +constant jDirectionIncrement = 2000; + +constant numberOfDataPoints=4186; +constant numberOfValues=4096 ; + diff --git a/eccodes/definitions/grib1/grid_62.def b/eccodes/definitions/grib1/grid_62.def new file mode 100644 index 00000000..3c62c810 --- /dev/null +++ b/eccodes/definitions/grib1/grid_62.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 62 + +constant Ni = 91; +constant Nj = 46; + +constant longitudeOfFirstGridPoint = -180000; +constant longitudeOfLastGridPoint = 0; + +constant latitudeOfFirstGridPoint = 0; +constant latitudeOfLastGridPoint = 90000; + +constant iDirectionIncrement = 2000; +constant jDirectionIncrement = 2000; + +constant numberOfDataPoints=4186; +constant numberOfValues=4096 ; diff --git a/eccodes/definitions/grib1/grid_63.def b/eccodes/definitions/grib1/grid_63.def new file mode 100644 index 00000000..c1d03763 --- /dev/null +++ b/eccodes/definitions/grib1/grid_63.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Predefined grid 63 + +constant Ni = 91; +constant Nj = 46; + +constant longitudeOfFirstGridPoint = 0; +constant longitudeOfLastGridPoint = 180000; + +constant latitudeOfFirstGridPoint = -90000; +constant latitudeOfLastGridPoint = 0; + +constant iDirectionIncrement = 2000; +constant jDirectionIncrement = 2000; + +constant numberOfDataPoints=4186; +constant numberOfValues=4096 ; + diff --git a/eccodes/definitions/grib1/grid_64.def b/eccodes/definitions/grib1/grid_64.def new file mode 100644 index 00000000..dd1ecf8b --- /dev/null +++ b/eccodes/definitions/grib1/grid_64.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- ECMWF. +# Predefined grid 21 + +constant Ni = 91; +constant Nj = 46; + +constant longitudeOfFirstGridPoint = -180000; +constant longitudeOfLastGridPoint = 0; + +constant latitudeOfFirstGridPoint = -90000; +constant latitudeOfLastGridPoint = 0; + +constant iDirectionIncrement = 2000; +constant jDirectionIncrement = 2000; + +constant numberOfDataPoints=4186; +constant numberOfValues=4096 ; + diff --git a/eccodes/definitions/grib1/grid_definition_0.def b/eccodes/definitions/grib1/grid_definition_0.def new file mode 100644 index 00000000..c30b702d --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_0.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION latitude/longitude grid - equidistant cylindrical or Plate Carree projection + +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 0; + +template commonBlock "grib1/grid_definition_latlon.def"; + +# Padding - See GRIB-370 +ascii[4] zeros : read_only; diff --git a/eccodes/definitions/grib1/grid_definition_1.def b/eccodes/definitions/grib1/grid_definition_1.def new file mode 100644 index 00000000..14caa71a --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_1.def @@ -0,0 +1,74 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Mercator projection +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 20; + +signed[2] Ni : dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx=Ni; +alias geography.Ni=Ni; +alias numberOfPointsAlongXAxis=Ni; + +signed[2] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Nx=Nj; +alias geography.Nj=Nj; +alias numberOfPointsAlongYAxis=Nj; + +include "grib1/grid_first_last_resandcomp.def"; + +signed[3] Latin : edition_specific,no_copy; +meta geography.LaDInDegrees scale(Latin,oneConstant,grib1divider,truncateDegrees) : dump; + +pad padding_grid1_1(1); + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; + +include "grib1/scanning_mode.def"; + +signed[3] DiInMetres: dump; +alias longitudinalDirectionGridLength=DiInMetres; +alias Di=DiInMetres; +alias geography.DiInMetres=DiInMetres; +alias DxInMetres = DiInMetres; + +signed[3] DjInMetres: dump; +alias latitudinalDirectionGridLength=DjInMetres; +alias Dj=DjInMetres; +alias geography.DjInMetres=DjInMetres; +alias DyInMetres = DjInMetres; + +constant orientationOfTheGridInDegrees=0; + +pad padding_grid1_2(8); + +meta numberOfDataPoints number_of_points(Ni,Nj) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +iterator mercator(numberOfPoints,missingValue,values, + radius,Ni,Nj, + latitudeOfFirstGridPointInDegrees, longitudeOfFirstGridPointInDegrees, + LaDInDegrees, + latitudeOfLastGridPointInDegrees, longitudeOfLastGridPointInDegrees, + orientationOfTheGridInDegrees, + DiInMetres,DjInMetres, + iScansNegatively, + jScansPositively, + jPointsAreConsecutive, + alternativeRowScanning); + +nearest mercator(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib1/grid_definition_10.def b/eccodes/definitions/grib1/grid_definition_10.def new file mode 100644 index 00000000..8d5f75fd --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_10.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION rotated latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 1; + +template commonBlock "grib1/grid_definition_latlon.def"; + +ascii[4] zeros : read_only; + +# Rotation parameters +include "grib1/grid_rotation.def" diff --git a/eccodes/definitions/grib1/grid_definition_13.def b/eccodes/definitions/grib1/grid_definition_13.def new file mode 100644 index 00000000..ffc42aba --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_13.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Oblique Lambert conformal, secant or tangent, conic or bi-polar +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 30; + +template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions/grib1/grid_definition_14.def b/eccodes/definitions/grib1/grid_definition_14.def new file mode 100644 index 00000000..3249069a --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_14.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Rotated Gaussian latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 41; + +template commonBlock "grib1/grid_definition_gaussian.def"; + +# Rotation parameters +include "grib1/grid_rotation.def" diff --git a/eccodes/definitions/grib1/grid_definition_192.78.def b/eccodes/definitions/grib1/grid_definition_192.78.def new file mode 100755 index 00000000..e70f7019 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_192.78.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +# DWD local grid definition 192 - triangular grid base on icosahedron subdivision + +# n2 - exponent of 2 for the number of intervals on main triangle sides +unsigned[2] n2 : dump ; + +# n3 - exponent of 3 for the number of intervals on main triangle sides +unsigned[2] n3 : dump ; + +# nd - Number of diamonds +unsigned[3] nd : dump ; +alias numberOfDiamonds=nd; +alias Nj=nd; + +# Ni - number of intervals on main triangle sides of the icosahedron +unsigned[3] Ni : dump ; + +# Numbering order of diamonds +flags[1] numberingOrderOfDiamonds 'grib1/grid.192.78.3.9.table'; + +# Latitude of the pole point of the icosahedron on the sphere +signed[4] latitudeOfIcosahedronPole : dump ; + +# Longitude of the pole point of the icosahedron on the sphere +unsigned[4] longitudeOfIcosahedronPole : dump ; + +# Longitude of the centre line of the first diamond of the icosahedron on the sphere +unsigned[4] longitudeOfFirstDiamondCenterLine : dump ; + +# Reserved +unsigned[1] reservedOctet; + +# Scanning mode for one diamond +flags[1] scanningModeForOneDiamond 'grib1/grid.192.78.3.10.table'; + +transient numberOfPoints= nd *(Ni + 1) * (Ni + 1); +alias numberOfDataPoints=numberOfPoints; + +meta numberOfValues +number_of_values(values,bitsPerValue,numberOfDataPoints, + bitmapPresent,bitmap,numberOfCodedValues) : dump; + diff --git a/eccodes/definitions/grib1/grid_definition_192.98.def b/eccodes/definitions/grib1/grid_definition_192.98.def new file mode 100644 index 00000000..380328e8 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_192.98.def @@ -0,0 +1,23 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION ocean ECMWF convention + +unsigned[2] Ni : dump; +alias numberOfPointsAlongFirstAxis = Ni; +alias Nx = Ni; + +unsigned[2] Nj : dump; +alias numberOfPointsAlongSecondAxis = Nj; +alias Nx = Nj; + +# La1 - latitude of first grid point +signed[3] latitudeOfFirstGridPoint : no_copy; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump,no_copy; +alias La1 = latitudeOfFirstGridPoint : no_copy; + +include "grib1/scanning_mode.def"; + +meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; diff --git a/eccodes/definitions/grib1/grid_definition_193.98.def b/eccodes/definitions/grib1/grid_definition_193.98.def new file mode 100644 index 00000000..534c5164 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_193.98.def @@ -0,0 +1,94 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION quasi-regular latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 0; + +unsigned[2] NRj : can_be_missing,dump; + +unsigned[2] numberOfPointsAlongAMeridian : can_be_missing,dump; +alias Nj = numberOfPointsAlongAMeridian; + +# Latitudes and Longitudes of the first and the last points +# Resolution and component flags +include "grib1/grid_first_last_resandcomp.def"; + +unsigned[2] iDirectionIncrement : can_be_missing; +unsigned[2] jDirectionIncrement : can_be_missing; +alias Dj = jDirectionIncrement; +alias Di = iDirectionIncrement; + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; + +include "grib1/scanning_mode.def"; + +# Lar1 - latitude of first grid point of reference domain +signed[3] Lar1 : edition_specific; +meta geography.Lar1InDegrees scale(latitudeOfFirstGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) :dump; +alias La1 = Lar1; + +# Lor1 - longitude of first grid point of reference domain +signed[3] Lor1 : edition_specific; +meta geography.Lor1InDegrees scale(longitudeOfFirstGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo1 = Lor1; + +# Lar2 - latitude of last grid point of reference domain +signed[3] Lar2 : edition_specific; +meta geography.Lar2InDegrees scale(latitudeOfLastGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; +alias La2 = Lar2; + +# Lor2 - longitude of last grid point of reference domain +signed[3] Lor2 ; +meta geography.Lor2InDegrees scale(longitudeOfLastGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo2 = Lor2; + +meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, + jScansPositively, + latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, + numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : can_be_missing,dump; +#transient DjInMicrodegrees = times(jDirectionIncrement,thousand); + +meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, + iScansPositively, + longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, + Ni,oneConstant,grib1divider,1) : can_be_missing,dump; +#meta DiInMicrodegrees times(iDirectionIncrement,thousand); + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; + +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; +alias DjInDegrees = jDirectionIncrementInDegrees; + +meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +if(missing(Ni)){ + iterator latlon_reduced(numberOfPoints,missingValue,values, + latitudeFirstInDegrees,longitudeFirstInDegrees, + latitudeLastInDegrees,loLast, + Nj,DjInDegrees,pl); + nearest latlon_reduced(values,radius,Nj,pl); +} else { + transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 + iterator latlon(numberOfPoints,missingValue,values,longitudeFirstInDegrees,iInc , + Ni,Nj,iScansNegatively , + latitudeFirstInDegrees,DjInDegrees,jScansPositively,jPointsAreConsecutive, + isRotatedGrid, angleOfRotation, + latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); + nearest regular(values,radius,Ni,Nj); +} +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib1/grid_definition_20.def b/eccodes/definitions/grib1/grid_definition_20.def new file mode 100644 index 00000000..1e3a8146 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_20.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION stretched latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 2; + +template commonBlock "grib1/grid_definition_latlon.def"; + +ascii[4] zeros : read_only; + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_24.def b/eccodes/definitions/grib1/grid_definition_24.def new file mode 100644 index 00000000..314b4b86 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_24.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Stretched Gaussian latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 42; + +template commonBlock "grib1/grid_definition_gaussian.def"; + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_3.def b/eccodes/definitions/grib1/grid_definition_3.def new file mode 100644 index 00000000..86d1bfc7 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_3.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Lambert conformal, secant or tangent, conic or bi-polar +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 30; + +template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions/grib1/grid_definition_30.def b/eccodes/definitions/grib1/grid_definition_30.def new file mode 100644 index 00000000..c3e4d1b4 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_30.def @@ -0,0 +1,15 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION stretched and rotated latitude/longitude grids +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 3; + +template commonBlock "grib1/grid_definition_latlon.def"; + +ascii[4] zeros : read_only; + +# Rotation parameters +include "grib1/grid_rotation.def" + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_34.def b/eccodes/definitions/grib1/grid_definition_34.def new file mode 100644 index 00000000..252a8e06 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_34.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Stretched and rotated Gaussian latitude/longitude grids +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 43; + +template commonBlock "grib1/grid_definition_gaussian.def"; + +# Rotation parameters +include "grib1/grid_rotation.def" + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_4.def b/eccodes/definitions/grib1/grid_definition_4.def new file mode 100644 index 00000000..12756280 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_4.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Gaussian latitude/longitude grid +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 40; + +template commonBlock "grib1/grid_definition_gaussian.def"; diff --git a/eccodes/definitions/grib1/grid_definition_5.def b/eccodes/definitions/grib1/grid_definition_5.def new file mode 100644 index 00000000..341da6b1 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_5.def @@ -0,0 +1,89 @@ +# GRID DEFINITION Polar stereographic +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 20; + +unsigned[2] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +unsigned[2] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +signed[3] latitudeOfFirstGridPoint : edition_specific ; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias La1 = latitudeOfFirstGridPoint; + +signed[3] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; + +include "grib1/resolution_flags.def"; + +# LoV - orientation of the grid; i.e. the longitude value of the meridian which is parallel to the Y-axis +signed[3] orientationOfTheGrid ; +meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; +alias LoV = orientationOfTheGrid ; + +# Dx - X-direction grid length +unsigned[3] DxInMetres : dump; +alias xDirectionGridLengthInMetres=DxInMetres; +alias Dx=DxInMetres; +alias geography.DxInMetres=DxInMetres; +alias Di = DxInMetres; + +# Dy - Y-direction grid length +unsigned[3] DyInMetres : dump; +alias yDirectionGridLengthInMetres=DyInMetres; +alias Dy = DyInMetres; +alias Dj = DyInMetres; +alias geography.DyInMetres=DyInMetres; + +constant latitudeWhereDxAndDyAreSpecifiedInDegrees=60; +constant LaDInDegrees=60; +alias geography.LaDInDegrees=LaDInDegrees; + +# Projection centre flag +unsigned[1] projectionCentreFlag : dump ; +alias projectionCenterFlag=projectionCentreFlag; +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +# If bit 1 is 0, then the North Pole is on the projection plane +# If bit 1 is 1, then the South Pole is on the projection plane +flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 + + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; + +include "grib1/scanning_mode.def"; + +pad padding_grid5_1(4); + +meta numberOfDataPoints number_of_points(Nx,Ny,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +iterator polar_stereographic(numberOfPoints,missingValue,values, + radius,Nx,Ny, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + southPoleOnProjectionPlane, + orientationOfTheGridInDegrees, + LaDInDegrees, + Dx,Dy, + iScansNegatively, + jScansPositively, + jPointsAreConsecutive, + alternativeRowScanning); + +nearest polar_stereographic(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib1/grid_definition_50.def b/eccodes/definitions/grib1/grid_definition_50.def new file mode 100644 index 00000000..d46a7b22 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_50.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Spherical harmonic coefficients +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 50; + +template commonBlock "grib1/grid_definition_spherical_harmonics.def"; diff --git a/eccodes/definitions/grib1/grid_definition_60.def b/eccodes/definitions/grib1/grid_definition_60.def new file mode 100644 index 00000000..0b5efc40 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_60.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Rotated spherical harmonic coefficients +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 51; + +template commonBlock "grib1/grid_definition_spherical_harmonics.def"; + +# Rotation parameters +include "grib1/grid_rotation.def" diff --git a/eccodes/definitions/grib1/grid_definition_70.def b/eccodes/definitions/grib1/grid_definition_70.def new file mode 100644 index 00000000..7a510373 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_70.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Stretched spherical harmonics + +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 52; + +template commonBlock "grib1/grid_definition_spherical_harmonics.def"; + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_8.def b/eccodes/definitions/grib1/grid_definition_8.def new file mode 100644 index 00000000..82dac381 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_8.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Albers equal area, secant or tangent, conic or bi-polar +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 31; + +template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions/grib1/grid_definition_80.def b/eccodes/definitions/grib1/grid_definition_80.def new file mode 100644 index 00000000..a85b9ae4 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_80.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- ECMWF. + +# GRID DEFINITION Stretched and rotated spherical harmonic coefficients + +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 53; + +template commonBlock "grib1/grid_definition_spherical_harmonics.def"; + +# Rotation parameters +include "grib1/grid_rotation.def" + +# Stretching parameters +include "grib1/grid_stretching.def" diff --git a/eccodes/definitions/grib1/grid_definition_90.def b/eccodes/definitions/grib1/grid_definition_90.def new file mode 100644 index 00000000..63682ccb --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_90.def @@ -0,0 +1,66 @@ +# GRID DEFINITION Space view, perspective or orthographic +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 90; + +unsigned[2] Nx : dump; +alias numberOfPointsAlongXAxis = Nx; +alias Ni = Nx; +alias geography.Nx=Nx; + +unsigned[2] Ny : dump; +alias numberOfPointsAlongYAxis = Ny; +alias Nj = Ny; +alias geography.Ny=Ny; + +signed[3] latitudeOfSubSatellitePoint ; +meta geography.latitudeOfSubSatellitePointInDegrees scale(latitudeOfSubSatellitePoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lap=latitudeOfSubSatellitePoint; + +signed[3] longitudeOfSubSatellitePoint ; +meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lap=longitudeOfSubSatellitePoint; + +include "grib1/resolution_flags.def"; + +unsigned[3] dx : dump; +alias geography.dx=dx; + +unsigned[3] dy : dump; +alias geography.dy=dy; + +unsigned[2] XpInGridLengths : dump; +alias geography.XpInGridLengths=XpInGridLengths; + + +unsigned[2] YpInGridLengths : dump; +alias geography.YpInGridLengths=YpInGridLengths; + +include "grib1/scanning_mode.def"; + +unsigned[3] orientationOfTheGrid : edition_specific ; +meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; + +unsigned[3] NrInRadiusOfEarth : edition_specific,can_be_missing,no_copy; +alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = NrInRadiusOfEarth; + +unsigned[2] Xo : dump; +alias xCoordinateOfOriginOfSectorImage=Xo; +alias geography.Xo=Xo; + +unsigned[2] Yo : dump; +alias yCoordinateOfOriginOfSectorImage=Yo; +alias geography.Yo=Yo; + +#Ce Length is normally 32 + stretched and/or rotated +#Ce parameters + vertical coordinate parameters + list of +#Ce numbers of points. +#Ce (Lambert conformal and Mercator are 42 octets in length, +#Ce while Space view is 40 for ECMWF (44 in GRIB specification) +if ( centre != 98 ) { + pad padding_grid90_1(6); +} + +meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; diff --git a/eccodes/definitions/grib1/grid_definition_gaussian.def b/eccodes/definitions/grib1/grid_definition_gaussian.def new file mode 100644 index 00000000..f58fc9bf --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_gaussian.def @@ -0,0 +1,96 @@ +unsigned[2] Ni : can_be_missing,dump; +alias numberOfPointsAlongAParallel= Ni ; +alias Nx =Ni; + +signed[2] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny=Nj; + +# Latitudes and Longitudes of the first and the last points +# Resolution and component flags +include "grib1/grid_first_last_resandcomp.def"; + +# Di - i direction increment +unsigned[2] iDirectionIncrement : can_be_missing,dump,edition_specific; +meta geography.iDirectionIncrementInDegrees scale(iDirectionIncrement,oneConstant,grib1divider,truncateDegrees) : can_be_missing,dump; +alias Di = iDirectionIncrement; + +# N - number of parallels between a pole and the equator +unsigned[2] N : dump ; +alias numberOfParallelsBetweenAPoleAndTheEquator=N; +alias geography.N=N; + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; + +include "grib1/scanning_mode.def"; + +pad padding_grid4_1(4); + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; + +meta global global_gaussian(N,Ni,iDirectionIncrement, + latitudeOfFirstGridPoint, + longitudeOfFirstGridPoint, + latitudeOfLastGridPoint, + longitudeOfLastGridPoint, + PLPresent,pl) = 0 : dump; + +# With legacy mode support +meta numberOfDataPoints number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,one) : dump; + +# Use the new algorithm for counting. No support for legacy mode +meta numberOfDataPointsExpected number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,zero) : dump; + +meta legacyGaussSubarea evaluate(numberOfDataPoints != numberOfDataPointsExpected); + +alias numberOfPoints=numberOfDataPoints; +# alias numberOfExpectedPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +if(missing(Ni)){ + iterator gaussian_reduced(numberOfPoints,missingValue,values, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, + N,pl,Nj); + nearest reduced(values,radius,Nj,pl); + box reduced_gaussian(latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, + N,pl); + + #meta sumPlArray sum(pl); + #meta dataGlobal evaluate( sumPlArray == (numberOfValues+numberOfMissing) ); +} else { + iterator gaussian(numberOfPoints,missingValue,values,longitudeFirstInDegrees, + DiInDegrees ,Ni,Nj,iScansNegatively , + latitudeFirstInDegrees, latitudeLastInDegrees, + N,jScansPositively); + nearest regular(values,radius,Ni,Nj); + # box regular_gaussian(latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + # latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, + # DiInDegrees,Ni,N,iScansNegatively,jScansPositively); +} + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); + +meta isOctahedral octahedral_gaussian(N, Ni, PLPresent, pl) = 0 : no_copy,dump; + +meta gaussianGridName gaussian_grid_name(N, Ni, isOctahedral); +alias gridName=gaussianGridName; diff --git a/eccodes/definitions/grib1/grid_definition_lambert.def b/eccodes/definitions/grib1/grid_definition_lambert.def new file mode 100644 index 00000000..aca2b323 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_lambert.def @@ -0,0 +1,113 @@ +unsigned[2] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +unsigned[2] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +# La1 - latitude of first grid point +signed[3] latitudeOfFirstGridPoint : edition_specific; +meta geography.latitudeOfFirstGridPointInDegrees + scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias La1 = latitudeOfFirstGridPoint; +alias La1InDegrees=latitudeOfFirstGridPointInDegrees; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,thousand); + + +# Lo1 - longitude of first grid point +signed[3] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees + scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; +alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,thousand); + +# Resolution and component flags +include "grib1/resolution_flags.def"; + +# LoV - orientation of the grid; i.e. the east longitude value of the meridian which is parallel to the Y-axis +signed[3] LoV : edition_specific ; +meta geography.LoVInDegrees + scale(LoV,oneConstant,grib1divider,truncateDegrees) : dump; +alias orientationOfTheGrid = LoV; +alias orientationOfTheGridInDegrees = LoVInDegrees; + +# Dx - X-direction grid length (in units of metres) +unsigned[3] DxInMetres : dump; +alias xDirectionGridLength=DxInMetres; +alias geography.DxInMetres=DxInMetres ; +alias Dx = DxInMetres; +alias Di = DxInMetres; + +# Dy - Y-direction grid length (in units of metres) +unsigned[3] DyInMetres : dump; +alias yDirectionGridLength=DyInMetres; +alias geography.DyInMetres=DyInMetres; +alias Dy= DyInMetres; +alias Dj = DyInMetres; + +unsigned[1] projectionCentreFlag : dump; +# Also add the old spelling of "centre" for backward compatibility +alias projectionCenterFlag=projectionCentreFlag; + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; + +include "grib1/scanning_mode.def"; + +# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere +signed[3] Latin1 : edition_specific; +meta geography.Latin1InDegrees scale(Latin1,oneConstant,grib1divider,truncateDegrees) : dump; +alias firstLatitude=Latin1; +alias firstLatitudeInDegrees=Latin1InDegrees; + +# GRIB Edition 1 does not have the LaD parameter so we use Latin1 instead +constant LaDInDegrees = Latin1InDegrees : dump; +alias geography.LaDInDegrees=LaDInDegrees; + +# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere +signed[3] Latin2 :edition_specific; +alias secondLatitude=Latin2; +meta geography.Latin2InDegrees scale(Latin2,oneConstant,grib1divider,truncateDegrees) : dump; +alias secondLatitudeInDegrees=Latin2InDegrees; + +signed[3] latitudeOfSouthernPole : no_copy; +meta geography.latitudeOfSouthernPoleInDegrees + scale(latitudeOfSouthernPole,oneConstant,grib1divider,truncateDegrees) : dump; + +signed[3] longitudeOfSouthernPole : no_copy; +meta geography.longitudeOfSouthernPoleInDegrees + scale(longitudeOfSouthernPole,oneConstant,grib1divider,truncateDegrees) : dump; + +meta numberOfDataPoints number_of_points(Nx,Ny,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints, + bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +iterator lambert_conformal(numberOfPoints,missingValue,values, + radius,Nx,Ny, + LoVInDegrees,LaDInDegrees, + Latin1InDegrees,Latin2InDegrees, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + Dx,Dy, + iScansNegatively, + jScansPositively, + jPointsAreConsecutive, + alternativeRowScanning); + + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); + +nearest lambert_conformal(values,radius,Nx,Ny); + +pad padding_grid3_1(2); diff --git a/eccodes/definitions/grib1/grid_definition_latlon.def b/eccodes/definitions/grib1/grid_definition_latlon.def new file mode 100644 index 00000000..552836fc --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_latlon.def @@ -0,0 +1,66 @@ +unsigned[2] Ni : can_be_missing,dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; + +unsigned[2] Nj : can_be_missing,dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj; + +# Latitudes and Longitudes of the first and the last points +# Resolution and component flags +include "grib1/grid_first_last_resandcomp.def"; + +unsigned[2] iDirectionIncrement : can_be_missing, edition_specific; +unsigned[2] jDirectionIncrement : can_be_missing, edition_specific; +alias Dj = jDirectionIncrement; +alias Dy = jDirectionIncrement; +alias Di = iDirectionIncrement; +alias Dx = iDirectionIncrement; + +include "grib1/scanning_mode.def"; + +meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, + jScansPositively, + latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, + numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : can_be_missing,dump; + +alias DjInDegrees=jDirectionIncrementInDegrees; +alias DyInDegrees=jDirectionIncrementInDegrees; + +meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, + iScansPositively, + longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, + Ni,oneConstant,grib1divider,1) : can_be_missing,dump; +alias DiInDegrees=iDirectionIncrementInDegrees; +alias DxInDegrees=iDirectionIncrementInDegrees; + +meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; +alias numberOfPoints=numberOfDataPoints; +meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints, + bitmapPresent,bitmap,numberOfCodedValues) : dump; +#alias ls.valuesCount=numberOfValues; + +if(missing(Ni)){ + iterator latlon_reduced(numberOfPoints,missingValue,values, + latitudeFirstInDegrees,longitudeFirstInDegrees, + latitudeLastInDegrees,longitudeLastInDegrees, + Nj,DjInDegrees,pl); + nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); +} else { + transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 + iterator latlon(numberOfPoints,missingValue,values,longitudeFirstInDegrees, + DiInDegrees ,Ni,Nj,iScansNegatively , + latitudeFirstInDegrees,DjInDegrees, + jScansPositively,jPointsAreConsecutive, + isRotatedGrid, angleOfRotation, + latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); + nearest regular(values,radius,Ni,Nj); +} + + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib1/grid_definition_spherical_harmonics.def b/eccodes/definitions/grib1/grid_definition_spherical_harmonics.def new file mode 100644 index 00000000..5041d374 --- /dev/null +++ b/eccodes/definitions/grib1/grid_definition_spherical_harmonics.def @@ -0,0 +1,35 @@ +# GRID DEFINITION spherical harmonic coefficients (including rotated, stretched, or stretched and rotated) + +# J - pentagonal resolution parameter +unsigned[2] J : dump ; +alias pentagonalResolutionParameterJ= J; +alias geography.J=J; + +# K - pentagonal resolution parameter +unsigned[2] K : dump; +alias pentagonalResolutionParameterK=K; +alias geography.K=K; + +# M - pentagonal resolution parameter +unsigned[2] M : dump ; +alias pentagonalResolutionParameterM=M; +alias geography.M=M; + +constant _T = -1 : hidden; +meta numberOfValues spectral_truncation(J,K,M,_T) : dump; +alias numberOfPoints=numberOfValues; +alias numberOfDataPoints=numberOfValues; +#alias ls.valuesCount=numberOfValues; + +# Representation type +codetable[1] representationType 'grib1/9.table' = 1 : no_copy; + +# Representation mode +codetable[1] representationMode 'grib1/10.table' = 2 : no_copy; + +# Set to zero +# (reserved) +pad padding_grid50_1(18); + +# For now, to make section2 happy +constant Nj = 0; diff --git a/eccodes/definitions/grib1/grid_first_last_resandcomp.def b/eccodes/definitions/grib1/grid_first_last_resandcomp.def new file mode 100644 index 00000000..268e6313 --- /dev/null +++ b/eccodes/definitions/grib1/grid_first_last_resandcomp.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +# La1 - latitude of first grid point +signed[3] latitudeOfFirstGridPoint : edition_specific; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) :dump; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +signed[3] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; + +include "grib1/resolution_flags.def"; + +# La2 - latitude of last grid point +signed[3] latitudeOfLastGridPoint : edition_specific; +meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias La2 = latitudeOfLastGridPoint; + +# Lo2 - longitude of last grid point +signed[3] longitudeOfLastGridPoint : edition_specific; +meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; +alias Lo2 = longitudeOfLastGridPoint; + +# for change_scanning_direction +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; + diff --git a/eccodes/definitions/grib1/grid_rotation.def b/eccodes/definitions/grib1/grid_rotation.def new file mode 100644 index 00000000..05d49bd2 --- /dev/null +++ b/eccodes/definitions/grib1/grid_rotation.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +signed[3] latitudeOfSouthernPole : edition_specific; +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole ,oneConstant,grib1divider,truncateDegrees) : dump; + +signed[3] longitudeOfSouthernPole : edition_specific ; +meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole ,oneConstant,grib1divider,truncateDegrees) : dump; + +ibmfloat geography.angleOfRotationInDegrees : dump; + +alias angleOfRotation =angleOfRotationInDegrees; +alias isRotatedGrid = one; diff --git a/eccodes/definitions/grib1/grid_stretching.def b/eccodes/definitions/grib1/grid_stretching.def new file mode 100644 index 00000000..fac62e6d --- /dev/null +++ b/eccodes/definitions/grib1/grid_stretching.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +signed[3] latitudeOfStretchingPole : edition_specific,no_copy; +signed[3] longitudeOfStretchingPole : edition_specific,no_copy; + +meta geography.latitudeOfStretchingPoleInDegrees + scale(latitudeOfStretchingPole,oneConstant,grib1divider,truncateDegrees) : dump; +meta geography.longitudeOfStretchingPoleInDegrees + scale(longitudeOfStretchingPole,oneConstant,grib1divider,truncateDegrees) : dump; +ibmfloat stretchingFactor : dump; +alias geography.stretchingFactor=stretchingFactor; + diff --git a/eccodes/definitions/grib1/local.1.def b/eccodes/definitions/grib1/local.1.def new file mode 100644 index 00000000..3c758b20 --- /dev/null +++ b/eccodes/definitions/grib1/local.1.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Definition for BOM , same as ECWF +unsigned[1] localDefinitionNumber = 1 : dump; +template localDefinition "grib1/local.98.[localDefinitionNumber:l].def"; diff --git a/eccodes/definitions/grib1/local.13.table b/eccodes/definitions/grib1/local.13.table new file mode 100644 index 00000000..2cbddc5c --- /dev/null +++ b/eccodes/definitions/grib1/local.13.table @@ -0,0 +1,6 @@ +# CODE TABLE local definition 13 (wave) +0 0 System and method are not included +1 1 System and method are included +2 2 System, method, reference date, climate date (from) and climate date (to) are included +3 3 All information in 2 plus leg information for variable resolution systems are included +4 4 All information in 3 plus 4DVar window info diff --git a/eccodes/definitions/grib1/local.214.1.def b/eccodes/definitions/grib1/local.214.1.def new file mode 100644 index 00000000..092bf992 --- /dev/null +++ b/eccodes/definitions/grib1/local.214.1.def @@ -0,0 +1,51 @@ +# (C) Copyright 2005- ECMWF. + +# START 1/local.98.1 ---------------------------------------------------------------------- +# LOCAL 98 1 +# +# localDefinitionTemplate_001 +# --------------------------- +# +# 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 - +#spareSetToZero 52 PAD n/a 1 +# + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +if(perturbationNumber != 0) +{ + alias number = perturbationNumber; +} + +unsigned[1] numberOfForecastsInEnsemble : dump; +pad padding_local1_1(1); + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +if (stepType is "instant" ) { + if (numberOfForecastsInEnsemble!=0) { + alias productDefinitionTemplateNumber=epsPoint; +} +} else { + if (numberOfForecastsInEnsemble!=0) { + alias productDefinitionTemplateNumber=epsContinous; +} +} + +# monthly mean +#if (timeRangeIndicator==113) { +#} + + +# END 1/local.98.1 ---------------------------------------------------------------------- diff --git a/eccodes/definitions/grib1/local.214.244.def b/eccodes/definitions/grib1/local.214.244.def new file mode 100644 index 00000000..20831ab8 --- /dev/null +++ b/eccodes/definitions/grib1/local.214.244.def @@ -0,0 +1,281 @@ +# (C) Copyright 2005- ECMWF. + +# START 1/local.98.244 ---------------------------------------------------------------------- +# LOCAL 214 98 244 +# +#! +#! localDefinitionTemplate_244 +#! --------------------------- +#! +#! # SREPS Short-Range EPS information +#! +#! Last update: 20070223 +#! +#!Description +#!----------- +#! +#! +#! Compatibility with MARS +#! +#localDefinitionNumber +#Class +#Type +#Stream +#experimentVersionNumber +#Number +#Total +#! +#************_EXPERIMENT_************ +#Experiment_Identifier_1 +#Experiment_Identifier_2 +#Sub-Experiment_Identifier_1 +#Sub-Experiment_Identifier_2 +#! +#************_PRODUCT_*************** +#Original_CodeTable_2_Version_Number +#Original_Parameter_Iden_(CodeTable2) +#Original_Parameter_Identifier_1 +#Original_Parameter_Identifier_2 +#Product_Identifier_1 +#Product_Identifier_2 +#! +#! Thresholds and Distributions +#! +#Threshold_[Distribution]_(0=n,1=yes) +#Threshold_[Distribution]_Units +#At_least__[Distribut._Proportion_Of] +#Less_Than_[To_Overall_Distribution] +#! +#zeroForFutureProducts +#! +#************_ENSEMBLE_************** +#Number_Combination_Ensembles_(1=no) +#Show_Combination_E._[2]_(0=no,1=yes) +#Show_Combination_E._[3]_(0=no,1=yes) +#Show_Combination_E._[4]_(0=no,1=yes) +#zeroForFutureCombinations +#Total_Number_Members_Used +#Total_Number_Members_Possible +#Total_Number_Members_Missing +#Ensemble_Combination_Number +#Ensemble_Identifier_1 +#Ensemble_Identifier_2 +#Local_Number_Members_Used +#Local_Number_Members_Possible +#Local_Number_Members_Missing +#! +#listMembersUsed - LIST - Local_Number_Members_Used +#Used_Model_LBC +#endlistMembersUsed - ENDLIST - listMembersUsed +#! +#listMembersMissing - LIST - Local_Number_Members_Missing +#Missing_Model_LBC +#endlistMembersMissing - ENDLIST - listMembersMissing +#! +#! More than one Combination +#! +#listEnsembleCombination2 - LIST - Show_Combination_E._[2]_(0=no,1=yes) +#Ensemble_Combinat._Number_(0=no)_[2] +#Ensemble_Identifier_1_[2] +#Ensemble_Identifier_2_[2] +#Local_Number_Members_Used_[2] +#Local_Number_Members_Possible_[2] +#Local_Number_Members_Missing_[2] +#Date_[2] +#Hour_[2] +#Minute_[2] +#Time_Range_One_[2] +#Time_Range_Two_[2] +#endlistEnsembleCombination2 - ENDLIST - listEnsembleCombination2 +#! +#listMembersUsed_[2] - LIST - Local_Number_Members_Used_[2] +#Used_Model_LBC_[2] +#endlistMembersUsed_[2] - ENDLIST - listMembersUsed_[2] +#! +#listMembersMissing_[2] - LIST - Local_Number_Members_Missing_[2] +#Missing_Model_LBC_[2] +#endlistMembersMissing_[2] - ENDLIST - listMembersMissing_[2] +#! +#listEnsembleCombination3 - LIST - Show_Combination_E._[3]_(0=no,1=yes) +#Ensemble_Combinat._Number_(0=no)_[3] +#Ensemble_Identifier_1_[3] +#Ensemble_Identifier_1_[3] +#Local_Number_Members_Used_[3] +#Local_Number_Members_Possible_[3] +#Local_Number_Members_Missing_[3] +#Date_[3] +#Hour_[3] +#Minute_[3] +#Time_Range_One_[3] +#Time_Range_Two_[3] +#endlistEnsembleCombination3 - ENDLIST - listEnsembleCombination3 +#! +#listMembersUsed_[3] - LIST - Local_Number_Members_Used_[3] +#Used_Model_LBC_[3] - A4 +#endlistMembersUsed_[3] - ENDLIST - listMembersUsed_[3] +#! +#listMembersMissing_[3] - LIST - Local_Number_Members_Missing_[3] +#Missing_Model_LBC_[3] - A4 +#endlistMembersMissing_[3] - ENDLIST - listMembersMissing_[3] +#! +#listEnsembleCombination4 - LIST - Show_Combination_E._[4]_(0=no,1=yes) +#Ensemble_Combinat._Number_(0=no)_[4] +#Ensemble_Identifier_1_[4] +#Ensemble_Identifier_2_[4] +#Local_Number_Members_Used_[4] +#Local_Number_Members_Possible_[4] +#Local_Number_Members_Missing_[4] +#Date_[4] +#Hour_[4] +#Minute_[4] +#Time_Range_One_[4] +#Time_Range_Two_[4] +#endlistEnsembleCombination4 - ENDLIST - listEnsembleCombination4 +#! +#listMembersUsed_[4] - LIST - Local_Number_Members_Used_[4] +#Used_Model_LBC_[4] +#endlistMembersUsed_[4] - ENDLIST - listMembersUsed_[4] +#! +#listMembersMissing_[4] - LIST - Local_Number_Members_Missing_[4] +#Missing_Model_LBC_[4] +#endlistMembersMissing_[4] - ENDLIST - listMembersMissing_[4] +#! +#! EXTRA INFORMATION like 191 +#*********_EXTRA_DATA_*************** +#Extra_Data_FreeFormat_(0=none) +#Data_Descriptor_Bytes - BYTES - Extra_Data_FreeFormat_(0=none) +#padToAMultipleOf80Bytes - PADFROM n/a +#! + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump ; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; + +# +# EXPERIMENT +# +ascii[4] '************_EXPERIMENT_************' ; +ascii[8] 'Experiment_Identifier' ; +ascii[8] 'Sub-Experiment_Identifier' ; + +# +# PRODUCT +# +ascii[4] '************_PRODUCT_***************' ; +unsigned[1] Original_CodeTable_2_Version_Number : dump ; +unsigned[1] Original_Parameter_Iden_CodeTable2 : dump; +ascii[8] 'Original_Parameter_Identifier' ; +ascii[8] 'Product_Identifier' ; + +# Thresholds and Distributions +unsigned[2] Threshold_Or_Distribution_0_no_1_yes : dump ; +ascii[4] 'Threshold_Or_Distribution_Units' ; +unsigned[4] At_least__Or_Distribut_Proportion_Of : dump ; +unsigned[4] Less_Than_Or_To_Overall_Distribution : dump ; + +pad padding_loc244_1(40); + +ascii[4] '************_ENSEMBLE_**************' ; +unsigned[2] Number_Combination_Ensembles_1_none : dump ; +unsigned[1] Show_Combination_Ensem_E2_0_no_1_yes : dump ; +unsigned[1] Show_Combination_Ensem_E3_0_no_1_yes : dump ; +unsigned[1] Show_Combination_Ensem_E4_0_no_1_yes : dump ; + +pad padding_loc244_2(7); + +unsigned[2] Total_Number_Members_Used : dump; +unsigned[2] Total_Number_Members_Possible : dump ; +unsigned[2] Total_Number_Members_Missing : dump ; +unsigned[2] Ensemble_Combination_Number : dump ; +ascii[8] 'Ensemble_Identifier' ; +unsigned[2] Local_Number_Members_Used : dump ; +unsigned[2] Local_Number_Members_Possible : dump ; +unsigned[2] Local_Number_Members_Missing : dump ; + +listMembersUsed list(Local_Number_Members_Used){ + ascii[4] 'Used_Model_LBC' ; +} + +listMembersMissing list(Local_Number_Members_Missing){ + ascii[4] 'Missing_Model_LBC' ; +} + +# +# More than one Combination +# + +if (Show_Combination_Ensem_E2_0_no_1_yes == 1){ + unsigned[2] Ensemble_Combinat_Number_0_none_E2 : dump ; + ascii[8] 'Ensemble_Identifier_E2' ; + unsigned[2] Local_Number_Members_Used_E2 : dump ; + unsigned[2] Local_Number_Members_Possible_E2 : dump ; + unsigned[2] Local_Number_Members_Missing_E2 : dump ; + unsigned[3] Date_E2 : dump; + unsigned[1] Hour_E2 : dump; + unsigned[1] Minute_E2 : dump; + unsigned[2] Time_Range_One_E2 : dump ; + unsigned[2] Time_Range_Two_E2 : dump; + + listMembersUsed2 list(Local_Number_Members_Used_E2){ + ascii[4] 'Used_Model_LBC_E2' ; + } + + listMembersMissing2 list(Local_Number_Members_Missing_E2){ + ascii[4] 'Missing_Model_LBC_E2' ; + } +} + +if (Show_Combination_Ensem_E3_0_no_1_yes == 1){ + unsigned[2] Ensemble_Combinat_Number_0_none_E3 : dump ; + ascii[8] 'Ensemble_Identifier_E3' ; + unsigned[2] Local_Number_Members_Used_E3 : dump; + unsigned[2] Local_Number_Members_Possible_E3 : dump; + unsigned[2] Local_Number_Members_Missing_E3 : dump; + unsigned[3] Date_E3 : dump; + unsigned[1] Hour_E3 : dump; + unsigned[1] Minute_E3 : dump; + unsigned[2] Time_Range_One_E3 : dump; + unsigned[2] Time_Range_Two_E3 : dump; + + listMembersUsed3 list(Local_Number_Members_Used_E3){ + ascii[4] 'Used_Model_LBC_E3' ; + } + + listMembersMissing3 list(Local_Number_Members_Missing_E3){ + ascii[4] 'Missing_Model_LBC_E3' ; + } +} + +if (Show_Combination_Ensem_E4_0_no_1_yes == 1){ + unsigned[2] Ensemble_Combinat_Number_0_none_E4 : dump ; + ascii[8] 'Ensemble_Identifier_E4' ; + unsigned[2] Local_Number_Members_Used_E4 : dump; + unsigned[2] Local_Number_Members_Possible_E4 : dump; + unsigned[2] Local_Number_Members_Missing_E4 : dump; + unsigned[3] Date_E4 : dump; + unsigned[1] Hour_E4 : dump; + unsigned[1] Minute_E4 : dump; + unsigned[2] Time_Range_One_E4 : dump ; + unsigned[2] Time_Range_Two_E4 : dump; + + listMembersUsed4 list(Local_Number_Members_Used_E4){ + ascii[4] 'Used_Model_LBC_E4' ; + } + + listMembersMissing4 list(Local_Number_Members_Missing_E4){ + ascii[4] 'Missing_Model_LBC_E4' ; + } +} + +# +# EXTRA INFORMATION like 191 +# +ascii[4] '*********_EXTRA_DATA_***************' ; +unsigned[2] Extra_Data_FreeFormat_0_none : dump; +position offsetFreeFormData; +unsigned[1] freeFormData[Extra_Data_FreeFormat_0_none] : dump; + +padtomultiple padding_loc244_3(offsetSection1,80); diff --git a/eccodes/definitions/grib1/local.214.245.def b/eccodes/definitions/grib1/local.214.245.def new file mode 100644 index 00000000..6ed1e2f1 --- /dev/null +++ b/eccodes/definitions/grib1/local.214.245.def @@ -0,0 +1,54 @@ +# (C) Copyright 2005- ECMWF. + +# START 1/local.98.245 ---------------------------------------------------------------------- +# LOCAL 214 98 245 +# +#! +#! localDefinitionTemplate_245 +#! --------------------------- +#! +#! # Members iformation of +#! # SREPS Short-Range EPS +#! +#! Last update: 20070323 +#! +#!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 - +#Model_Identifier 52 A8 44 - +#LBC_Initial_Conditions 60 A8 46 - +#Model_LBC_Member_Identifier 68 A4 48 - +#Model_Additional_Information 72 A8 49 - +#zeroForFutureDevelopments 80 PAD 51 20 +#Extra_Data_FreeFormat_(0=none) 100 I2 71 - +#Data_Descriptor_Bytes 102 BYTES 72 Extra_Data_FreeFormat_(0=none) +#padToAMultipleOf80Bytes 103 PADFROM n/a 80 +#! +# + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; + +ascii[8] 'Model_Identifier' ; +ascii[8] 'LBC_Initial_Conditions' ; +ascii[4] 'Model_LBC_Member_Identifier' ; +ascii[8] 'Model_Additional_Information' ; + +pad padding_loc245_1(20); + +unsigned[2] Extra_Data_FreeFormat_0_none : dump ; +position offsetFreeFormData; +unsigned[1] freeFormData[Extra_Data_FreeFormat_0_none] : dump ; + +padtomultiple padding_loc245_2(offsetSection1,80); diff --git a/eccodes/definitions/grib1/local.214.def b/eccodes/definitions/grib1/local.214.def new file mode 100644 index 00000000..2b9e13ba --- /dev/null +++ b/eccodes/definitions/grib1/local.214.def @@ -0,0 +1,3 @@ +codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.214.table' = 244 : dump; +template localDefinition "grib1/local.214.[localDefinitionNumber:l].def"; + diff --git a/eccodes/definitions/grib1/local.253.def b/eccodes/definitions/grib1/local.253.def new file mode 100644 index 00000000..f5e86ea0 --- /dev/null +++ b/eccodes/definitions/grib1/local.253.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +label "local.253.def"; + + diff --git a/eccodes/definitions/grib1/local.254.def b/eccodes/definitions/grib1/local.254.def new file mode 100644 index 00000000..e7dde6ea --- /dev/null +++ b/eccodes/definitions/grib1/local.254.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +label "EUMETSAT local definition (unknown)"; diff --git a/eccodes/definitions/grib1/local.34.1.def b/eccodes/definitions/grib1/local.34.1.def new file mode 100644 index 00000000..078e15cf --- /dev/null +++ b/eccodes/definitions/grib1/local.34.1.def @@ -0,0 +1,48 @@ +# JMA + +constant GRIBEXSection1Problem = 52 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; +pad padding_local1_1(1); + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +if (stepType is "instant" ) { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } +} else { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } + } +} diff --git a/eccodes/definitions/grib1/local.34.def b/eccodes/definitions/grib1/local.34.def new file mode 100644 index 00000000..5498d093 --- /dev/null +++ b/eccodes/definitions/grib1/local.34.def @@ -0,0 +1,5 @@ +# Japanese Meteorological Agency +codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.34.table' = 1 : dump; +template localDefinition "grib1/local.34.[localDefinitionNumber:l].def"; + +template_nofail marsKeywords "mars/grib.[stream:s].[type:s].def"; diff --git a/eccodes/definitions/grib1/local.46.def b/eccodes/definitions/grib1/local.46.def new file mode 100644 index 00000000..3594d4c3 --- /dev/null +++ b/eccodes/definitions/grib1/local.46.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +label "CPTEC local definition"; +# Same as NCEP +include "grib1/local.7.def"; +section_padding local_padding; diff --git a/eccodes/definitions/grib1/local.54.def b/eccodes/definitions/grib1/local.54.def new file mode 100644 index 00000000..1347570c --- /dev/null +++ b/eccodes/definitions/grib1/local.54.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +label "CMC local definition (Canada)"; +# START 1/local.54 -------------------------------------------------------------------- +# LOCAL 54 +# +# CMC localDefinitionTemplate, based on KWBC +# -------------------------------- +# +# Description Octet Code Ksec1 Count +# ----------- ----- ---- ----- ----- +# +# applicationIdentifier 41 +# type 42 +# identificationNumber 43 +# productIdentifier 44 +# spatialSmoothingOfProduct 45 +# isotopeIdentificationNumber 46-47 2 + +unsigned[1] applicationIdentifier : dump ; + +unsigned[1] type : dump; + +unsigned[1] identificationNumber : dump; + +unsigned[1] productIdentifier : dump ; + +unsigned[1] spatialSmoothingOfProduct : dump ; + +# See GRIB-557 +unsigned[2] isotopeIdentificationNumber : dump ; diff --git a/eccodes/definitions/grib1/local.7.1.def b/eccodes/definitions/grib1/local.7.1.def new file mode 100644 index 00000000..8d828cec --- /dev/null +++ b/eccodes/definitions/grib1/local.7.1.def @@ -0,0 +1,88 @@ +# (C) Copyright 2005- ECMWF. + +# KWBC localDefinitionTemplate_001 +# -------------------------------- +# +# Description Octet Code Ksec1 Count +# ----------- ----- ---- ----- ----- +# +#sectionLength 1 L3 n/a ignore +#applicationIdentifier 41 I1 37 - +#type 42 I1 38 - +#identificationNumber 43 I1 39 - +#productIdentifier 44 I1 40 - +#spatialSmoothingOfProduct 45 I1 41 - +#! +#if_ge_46 - IF_GT 45 sectionLength +#probProductDefinition 46 I1 42 - +#probabilityType 47 I1 43 - +#lowerLimit 48 I4 44 - +#upperLimit 52 I4 45 - +#padding 56 PAD n/a 5 +#endif_ge_46 - ENDIF if_ge_46 +#! +#if_ge_61 - IF_GT 60 sectionLength +#ensembleSize 61 I1 46 - +#clusterSize 62 I1 47 - +#numberOfClusters 63 I1 48 - +#clusteringMethod 64 I1 49 - +#northLatitudeOfCluster 65 S3 50 - +#southLatitudeOfCluster 68 S3 51 - +#westLongitudeOfCluster 71 S3 52 - +#eastLongitudeOfCluster 74 S3 53 - +#clusterMember1 77 I1 54 - +#clusterMember2 78 I1 55 - +#clusterMember3 79 I1 56 - +#clusterMember4 80 I1 57 - +#clusterMember5 81 I1 58 - +#clusterMember6 82 I1 59 - +#clusterMember7 83 I1 60 - +#clusterMember8 84 I1 61 - +#clusterMember9 85 I1 62 - +#clusterMember10 86 I1 63 - +#endif_ge_61 - ENDIF if_ge_61 + +#applicationIdentifier 1= ensemble + +#unsigned[1] applicationIdentifier : dump ; # 1= ensemble +unsigned[1] type : dump ; # 1=unperturbed control forecast,2=individual negative perturbed fcst 3=individual positive perturbed fcst, 4=cluster, 5=whole cluster +unsigned[1] identificationNumber : dump ; # if(type=1) { 1=high resolution control fcst, 2=low resolution control fcst} else { ensemble number } +unsigned[1] productIdentifier : dump; # 1= full field, 2=weighted mean, 3= etc +unsigned[1] spatialSmoothingOfProduct : dump ; +# +constant sectionLengthLimitForProbability = 45 : dump; +if(section1Length > sectionLengthLimitForProbability) +{ + unsigned[1] probProductDefinition : dump; + unsigned[1] probabilityType : dump; + unsigned[4] lowerLimit : dump; + unsigned[4] upperLimit : dump; + + # padding + pad padding_local_7_1(5); +} + +# +constant sectionLengthLimitForEnsembles = 60; + +if(section1Length > sectionLengthLimitForEnsembles) +{ + unsigned[1] ensembleSize : dump ; + unsigned[1] clusterSize : dump; + unsigned[1] numberOfClusters : dump ; + unsigned[1] clusteringMethod : dump ; + signed[3] northLatitudeOfCluster : dump ; + signed[3] southLatitudeOfCluster : dump ; + signed[3] westLongitudeOfCluster : dump ; + signed[3] eastLongitudeOfCluster : dump ; + unsigned[1] clusterMember1 : dump ; + unsigned[1] clusterMember2 : dump ; + unsigned[1] clusterMember3 : dump ; + unsigned[1] clusterMember4 : dump ; + unsigned[1] clusterMember5 : dump ; + unsigned[1] clusterMember6 : dump ; + unsigned[1] clusterMember7 : dump ; + unsigned[1] clusterMember8 : dump ; + unsigned[1] clusterMember9 : dump ; + unsigned[1] clusterMember10 : dump ; +} diff --git a/eccodes/definitions/grib1/local.7.def b/eccodes/definitions/grib1/local.7.def new file mode 100644 index 00000000..94937ee8 --- /dev/null +++ b/eccodes/definitions/grib1/local.7.def @@ -0,0 +1,3 @@ +codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.7.table' = 1 : dump; +template localDefinition "grib1/local.7.[localDefinitionNumber:l].def"; + diff --git a/eccodes/definitions/grib1/local.78.def b/eccodes/definitions/grib1/local.78.def new file mode 100644 index 00000000..3b2de1fe --- /dev/null +++ b/eccodes/definitions/grib1/local.78.def @@ -0,0 +1,2 @@ +# Local definition for Offenbach +label "Local definition for Offenbach"; diff --git a/eccodes/definitions/grib1/local.80.def b/eccodes/definitions/grib1/local.80.def new file mode 100644 index 00000000..46b49ca7 --- /dev/null +++ b/eccodes/definitions/grib1/local.80.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +#Local definition for Rome +label "Local definition for Rome CNMC"; diff --git a/eccodes/definitions/grib1/local.82.0.def b/eccodes/definitions/grib1/local.82.0.def new file mode 100644 index 00000000..9df9e114 --- /dev/null +++ b/eccodes/definitions/grib1/local.82.0.def @@ -0,0 +1,39 @@ +#! --------------------------- +#! +#!Description Octet Code Ksec1 Count +#!----------- ----- ----- ----- ----- +#! +#class 42 I1 38 - +#type 43 I1 39 - +#stream 44-45 I2 40 - +#experimentVersionNumber 46-49 A4 41 - +#number 50 I1 42 - +#total 51 I1 43 - +#model 52 I1 44 - +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 May 2013 +# +####################### +### LOCAL SECTION 0 ### +####################### + +# +# This piece of definition is common to all SMHI definitions +# It is only accessed through "include" statement inside local.82.x.def +# + +codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; +codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; +codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; +ksec1expver[4] experimentVersionNumber = "0000" : dump; +# For now, Ensemble stuff is desactivated because it is not used yet +# instead we use a padding of 2 +#unsigned[1] perturbationNumber : dump; +#unsigned[1] numberOfForecastsInEnsemble : dump; +pad reservedNeedNotBePresent(2); +codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; + + diff --git a/eccodes/definitions/grib1/local.82.82.def b/eccodes/definitions/grib1/local.82.82.def new file mode 100644 index 00000000..a97999e7 --- /dev/null +++ b/eccodes/definitions/grib1/local.82.82.def @@ -0,0 +1,18 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 20 Feb 2014 +# +######################## +### LOCAL SECTION 82 ### +######################## + +constant GRIBEXSection1Problem = 53 - section1Length; + +# base local definition +include "grib1/local.82.0.def"; + +unsigned[1] marsExperimentOffset = 0 : dump, long_type; + + diff --git a/eccodes/definitions/grib1/local.82.83.def b/eccodes/definitions/grib1/local.82.83.def new file mode 100644 index 00000000..a25dac49 --- /dev/null +++ b/eccodes/definitions/grib1/local.82.83.def @@ -0,0 +1,56 @@ +#! +#!Description Octet Code Ksec1 Count +#!----------- ----- ---- ----- ----- +#! +# OCTETS 41-52 ARE DESCRIBED in local.82.0.def +#! Supplementary search-able keys +#Sort 53 I1 45 - +#TimeRepres 54 I1 46 - +#Landtype 55 I1 47 - +#AerosolBinNumber 56-57 I2 48 - +#MolarMass 58-59 I2 49 - +#! Info on log transformed fields +#LogTransform 60 I1 50 - +#Threshold 61-62 S2 51 - +#Reserved 63 I1 52 - +#! Info for aerosols +#TotalAerosolBinsNumbers 64 I1 53 - +#IntegerScaleFactor 65 S1 54 - +#LowerRange 66-67 I2 55 - +#UpperRange 68-69 I2 56 - +#MeanSize 70-71 I2 57 - +#StandardDeviation 72-73 I2 58 - +#PartDef 74 PAD n/a 7 +################################################################ +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 20 Feb 2014 +# +######################### +### LOCAL SECTION 83 ### +######################### + +constant GRIBEXSection1Problem = 80 - section1Length; + +# base file: contains keywords always present +include "grib1/local.82.0.def"; + +# extra keywords specific to local definition 83 (MATCH) +codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; +codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; +codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; +codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; +unsigned[2] molarMass : dump; +unsigned[1] logTransform :dump; +signed[2] threshold : dump; +unsigned[1] reserved : dump; +unsigned[1] totalAerosolBinsNumbers : dump; +signed[1] integerScaleFactor : dump; +unsigned[2] lowerRange : dump; +unsigned[2] upperRange : dump; +unsigned[2] meanSize : dump; +unsigned[2] standardDeviation : dump; +pad padding_local1_1(7); + + diff --git a/eccodes/definitions/grib1/local.82.def b/eccodes/definitions/grib1/local.82.def new file mode 100644 index 00000000..e177694e --- /dev/null +++ b/eccodes/definitions/grib1/local.82.def @@ -0,0 +1,26 @@ +# +# Definition for SMHI Swedish Meteorological and Hydrological Institut. +# +# contact: sebastien.villaume@smhi.se +# + + +######################## +### LOCAL DEFINITION ### +######################## + +codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.82.table' = 82 : dump; +template localDefinition "grib1/local.82.[localDefinitionNumber:l].def"; + +################### +### LS LABELING ### +################### + +template ls_labeling "grib1/ls_labeling.82.def"; + +##################### +### MARS LABELING ### +##################### + +template mars_labeling "grib1/mars_labeling.82.def"; +template_nofail marsKeywords "mars/eswi/grib1.[stream:s].[type:s].def"; diff --git a/eccodes/definitions/grib1/local.85.def b/eccodes/definitions/grib1/local.85.def new file mode 100644 index 00000000..8773735d --- /dev/null +++ b/eccodes/definitions/grib1/local.85.def @@ -0,0 +1,24 @@ +transient defaultFaFieldName = ""; +transient defaultFaLevelName = ""; +transient defaultFaModelName = ""; + +concept ls.faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept ls.faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept ls.faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; + +transient LSTCUM = 0; +transient ZLMULT = 1.; +transient ZLBASE = 0.; + +# For compatibility with GRIB2 templates + +transient CLNOMA = ""; +transient INGRIB = 0; +transient LLCOSP = 0; +transient INBITS = 0; + +# Scaling factor + +transient FMULTM = 1; +transient FMULTE = 0; + diff --git a/eccodes/definitions/grib1/local.96.def b/eccodes/definitions/grib1/local.96.def new file mode 100644 index 00000000..06d1b934 --- /dev/null +++ b/eccodes/definitions/grib1/local.96.def @@ -0,0 +1,3 @@ +codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.[centre:l].table' = 1 : dump; +template localDefinition "grib1/local.[centre:l].[localDefinitionNumber:l].def"; + diff --git a/eccodes/definitions/grib1/local.98.1.def b/eccodes/definitions/grib1/local.98.1.def new file mode 100644 index 00000000..d06ea2f2 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.1.def @@ -0,0 +1,52 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 52 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; +pad padding_local1_1(1); + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +if (stepType is "instant" ) { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } +} else { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } + } +} + +# monthly mean +#if (timeRangeIndicator==113) { +#} diff --git a/eccodes/definitions/grib1/local.98.10.def b/eccodes/definitions/grib1/local.98.10.def new file mode 100644 index 00000000..625026d0 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.10.def @@ -0,0 +1,50 @@ +# (C) Copyright 2005- ECMWF. +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; diff --git a/eccodes/definitions/grib1/local.98.11.def b/eccodes/definitions/grib1/local.98.11.def new file mode 100644 index 00000000..658c8ba8 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.11.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 72 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] classOfAnalysis = marsClass : dump; +unsigned[1] typeOfAnalysis = marsType : dump; +unsigned[2] streamOfAnalysis = marsStream : dump; +ksec1expver[4] experimentVersionNumberOfAnalysis = expver : dump; + +unsigned[1] yearOfAnalysis = yearOfCentury : dump; +unsigned[1] monthOfAnalysis = month : dump; +unsigned[1] dayOfAnalysis = day : dump; + +unsigned[1] hourOfAnalysis = hour : dump; + +unsigned[1] minuteOfAnalysis = minute : dump; + +unsigned[1] centuryOfAnalysis = centuryOfReferenceTimeOfData : dump; + +unsigned[1] originatingCentreOfAnalysis = originatingCentre : dump; + +unsigned[1] subcentreOfAnalysis = subCentre : dump; + +# spareSetToZero +pad padding_local11_1(7); + +constant secondsOfAnalysis = 0; + +meta dateOfAnalysis g1date(centuryOfAnalysis,yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; +meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; + +alias date = dateOfAnalysis; +alias time = timeOfAnalysis; diff --git a/eccodes/definitions/grib1/local.98.12.def b/eccodes/definitions/grib1/local.98.12.def new file mode 100644 index 00000000..b1705045 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.12.def @@ -0,0 +1,65 @@ +# (C) Copyright 2005- ECMWF. + +# Seasonal forecast monthly mean data for lagged systems + +constant GRIBEXSection1Problem = 120 - section1Length ; + +# used in local definition 13 +transient localFlag=1 : hidden; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[2] perturbationNumber : dump ; + +unsigned[2] systemNumber : dump ; + +unsigned[2] methodNumber : dump ; + +unsigned[4] verifyingMonth : dump ; + +meta endOfInterval g1end_of_interval_monthly(verifyingMonth); + +meta yearOfEndOfOverallTimeInterval vector(endOfInterval,0); +meta monthOfEndOfOverallTimeInterval vector(endOfInterval,1); +meta dayOfEndOfOverallTimeInterval vector(endOfInterval,2); +meta hourOfEndOfOverallTimeInterval vector(endOfInterval,3); +meta minuteOfEndOfOverallTimeInterval vector(endOfInterval,4); +meta secondOfEndOfOverallTimeInterval vector(endOfInterval,5); + +transient hourOfEndOfOverallTimeInterval=23 : no_copy; +transient minuteOfEndOfOverallTimeInterval=59 : no_copy; +transient secondOfEndOfOverallTimeInterval=59 : no_copy; + +transient indicatorOfUnitForTimeRange=3; +transient lengthOfTimeRange=1; +unsigned[1] averagingPeriod : dump ; + +transient typeOfStatisticalProcessing=0; +transient indicatorOfUnitForTimeIncrement = 1; +transient timeIncrement=averagingPeriod; + +unsigned[2] forecastMonth : dump ; +remove forecastTime; +transient forecastTime=forecastMonth - 1; +#remove typeOfTimeIncrement; +transient typeOfTimeIncrement = 3; + +# Old GRIBS do not have forecast forecastMonth set. It is computed from verifyingMonth +meta marsForecastMonth g1forecastmonth(verifyingMonth,dataDate,day,hour,forecastMonth,zero) : read_only; + +alias origin = centre; +alias number = perturbationNumber; +alias system = systemNumber; +alias method = methodNumber; + +# ECC-679 +unsigned[2] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) +unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) +alias mars.date = indexingDate; +alias mars.time = indexingTime; + +# spareSetToZero +pad padding_loc12_1(50); diff --git a/eccodes/definitions/grib1/local.98.13.def b/eccodes/definitions/grib1/local.98.13.def new file mode 100644 index 00000000..84acafb6 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.13.def @@ -0,0 +1,163 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] directionNumber : dump ; +alias mars.direction = directionNumber; + +unsigned[1] frequencyNumber : dump ; +alias mars.frequency = frequencyNumber; + +unsigned[1] numberOfDirections : dump ; +alias totalNumberOfDirections = numberOfDirections ; + +unsigned[1] numberOfFrequencies : dump; +alias totalNumberOfFrequencies = numberOfFrequencies ; + +unsigned[4] directionScalingFactor : dump; +alias integerScalingFactorAppliedToDirections = directionScalingFactor; + +unsigned[4] frequencyScalingFactor : dump; +alias integerScalingFactorAppliedToFrequencies = frequencyScalingFactor ; + +constant localFlagLatestVersion = 4 : hidden; +codetable[1] localFlag "grib1/local.13.table" = localFlagLatestVersion; + +#! +#! Old versions of wave 2D spectra direction and frequency do not +#! have the systemNumber and methodNumber, and the flag is set to 0. +#! +#if0 - IF_EQ 0 flag +#spareSetToZero 65 PAD n/a 36 +#endif0 - ENDIF if0 +if(localFlag == 0) +{ + pad padding_loc13_1(36); +} + +#! +#! Old versions of wave 2D spectra direction and frequency do not +#! have the systemNumber and methodNumber, and the flag is set to 0. +#! +#! +#! +#if1 - IF_EQ 1 flag +#systemNumber 065 I2 - - +#methodNumber 067 I2 - - +#spareSetToZero1 069 PAD n/a 32 +#endif1 - ENDIF if1 +if(localFlag == 1) +{ + unsigned[2] systemNumber : dump; + unsigned[2] methodNumber : dump; + alias system = systemNumber; + alias method = methodNumber; + pad padding_loc13_2(32); +} + +#if2 - IF_EQ 2 flag +#systemNumber 065 I2 - - +#methodNumber 067 I2 - - +#referenceDate 069 I4 - - +#climateDateFrom 073 I4 - - +#climateDateTo 077 I4 - - +#spareSetToZero2 081 PAD n/a 20 +#endif2 - ENDIF if2 +if(localFlag == 2) +{ + unsigned[2] systemNumber : dump; + unsigned[2] methodNumber : dump; + unsigned[4] referenceDate : dump ; + unsigned[4] climateDateFrom : dump ; + unsigned[4] climateDateTo : dump ; + alias system = systemNumber; + alias method = methodNumber; + alias refdate = referenceDate; + pad padding_loc13_3(20); +} + +#if3 - IF_EQ 3 flag +#systemNumber 065 I2 - - +#methodNumber 067 I2 - - +#referenceDate 069 I4 - - +#climateDateFrom 073 I4 - - +#climateDateTo 077 I4 - - +#legBaseDate 081 I4 - - +#legBaseTime 085 I2 - - +#legNumber 087 I1 - - +#oceanAtmosphereCoupling 088 I1 - - +#spareSetToZero3 089 PAD n/a 12 +#endif3 - ENDIF if3 +if(localFlag == 3) +{ + unsigned[2] systemNumber = 65535 : dump,can_be_missing ; + unsigned[2] methodNumber = 65535 : dump,can_be_missing ; + unsigned[4] referenceDate : dump ; + unsigned[4] climateDateFrom : dump ; + unsigned[4] climateDateTo : dump ; + unsigned[4] legBaseDate : dump; + alias baseDateOfThisLeg = legBaseDate; + unsigned[2] legBaseTime : dump; + alias baseTimeOfThisLeg = legBaseTime; + unsigned[1] legNumber : dump; + unsigned[1] oceanAtmosphereCoupling : dump; + pad padding_loc13_4(12); + alias system = systemNumber; + alias method = methodNumber; + alias refdate = referenceDate; + + alias mars._leg_number = legNumber; +} + +#if4 - IF_EQ 4 flag +#systemNumber 065 I2 - - +#methodNumber 067 I2 - - +#referenceDate 069 I4 - - +#climateDateFrom 073 I4 - - +#climateDateTo 077 I4 - - +#legBaseDate 081 I4 - - +#legBaseTime 085 I2 - - +#legNumber 087 I1 - - +#oceanAtmosphereCoupling 088 I1 - - +#offsetToEndOf4DvarWindow 089 I2 - - +#lengthOf4DvarWindow 091 I2 - - +#spareSetToZero3 093 PAD n/a 8 +#endif4 - ENDIF if4 +if(localFlag == 4) +{ + unsigned[2] systemNumber = 65535 : dump,can_be_missing ; + unsigned[2] methodNumber = 65535 : dump,can_be_missing ; + unsigned[4] referenceDate : dump ; + unsigned[4] climateDateFrom : dump ; + unsigned[4] climateDateTo : dump ; + unsigned[4] legBaseDate : dump; + alias baseDateOfThisLeg = legBaseDate; + unsigned[2] legBaseTime : dump; + alias baseTimeOfThisLeg = legBaseTime; + unsigned[1] legNumber : dump; + unsigned[1] oceanAtmosphereCoupling : dump; + + # Hours + unsigned[2] offsetToEndOf4DvarWindow : dump; + alias anoffset=offsetToEndOf4DvarWindow; + unsigned[2] lengthOf4DvarWindow : dump; + + alias system = systemNumber; + alias method = methodNumber; + alias refdate = referenceDate; + + alias mars._leg_number = legNumber; + + pad padding_loc13_5(8); +} + +unsigned[4] scaledDirections[numberOfDirections] : dump; +unsigned[4] scaledFrequencies[numberOfFrequencies] : dump; + +constant GRIBEXSection1Problem = 100 + 4 * numberOfDirections + 4 * numberOfFrequencies - section1Length ; diff --git a/eccodes/definitions/grib1/local.98.14.def b/eccodes/definitions/grib1/local.98.14.def new file mode 100644 index 00000000..ad0901a4 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.14.def @@ -0,0 +1,29 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 1080 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] channelNumber : dump ; +alias mars.channel = channelNumber; + +unsigned[4] scalingFactorForFrequencies : dump ; +alias integerScalingFactorAppliedToFrequencies = scalingFactorForFrequencies ; + +unsigned[1] numberOfFrequencies : dump ; +alias totalNumberOfFrequencies = numberOfFrequencies ; +alias Nf = numberOfFrequencies ; + +# spareSetToZero +pad padding_loc14_1(3); + +unsigned[4] listOfScaledFrequencies[numberOfFrequencies] : dump; + +# moreSpareSetToZero +padto padding_loc14_2(offsetSection1 + 1080); diff --git a/eccodes/definitions/grib1/local.98.15.def b/eccodes/definitions/grib1/local.98.15.def new file mode 100644 index 00000000..3a66d9e6 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.15.def @@ -0,0 +1,39 @@ +# (C) Copyright 2005- ECMWF. + +# used in local definition 13 +constant GRIBEXSection1Problem = 60 - section1Length ; + +transient localFlag=1 : hidden ; + +template mars_labeling "grib1/mars_labeling.def"; +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=15; +if (stepType is "instant") { + alias productDefinitionTemplateNumber=one; +} else { + alias productDefinitionTemplateNumber=eleven; +} + +unsigned[2] perturbationNumber : dump ; +alias number=perturbationNumber; + +unsigned[2] systemNumber : dump ; + +unsigned[2] methodNumber : dump ; + +unsigned[2] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +# spareSetToZero +pad padding_loc15_1(3); + +alias origin = centre; +alias number = perturbationNumber; +alias total=numberOfForecastsInEnsemble; +alias system = systemNumber; +alias method = methodNumber; + +alias local.perturbationNumber=perturbationNumber; +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions/grib1/local.98.16.def b/eccodes/definitions/grib1/local.98.16.def new file mode 100644 index 00000000..4e5f184c --- /dev/null +++ b/eccodes/definitions/grib1/local.98.16.def @@ -0,0 +1,60 @@ +# (C) Copyright 2005- ECMWF. + +# Seasonal forecast monthly mean data + +constant GRIBEXSection1Problem = 80 - section1Length ; + +# used in local definition 13 +transient localFlag=1 : hidden; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[2] perturbationNumber : dump ; + +unsigned[2] systemNumber : dump ; + +unsigned[2] methodNumber : dump ; + +unsigned[4] verifyingMonth : dump ; + +meta endOfInterval g1end_of_interval_monthly(verifyingMonth); + +meta yearOfEndOfOverallTimeInterval vector(endOfInterval,0); +meta monthOfEndOfOverallTimeInterval vector(endOfInterval,1); +meta dayOfEndOfOverallTimeInterval vector(endOfInterval,2); +meta hourOfEndOfOverallTimeInterval vector(endOfInterval,3); +meta minuteOfEndOfOverallTimeInterval vector(endOfInterval,4); +meta secondOfEndOfOverallTimeInterval vector(endOfInterval,5); + +transient hourOfEndOfOverallTimeInterval=23; +transient minuteOfEndOfOverallTimeInterval=59; +transient secondOfEndOfOverallTimeInterval=59; + +transient indicatorOfUnitForTimeRange=3; +transient lengthOfTimeRange=1; +unsigned[1] averagingPeriod : dump ; + +transient typeOfStatisticalProcessing=0; +transient indicatorOfUnitForTimeIncrement = 1; +transient timeIncrement=averagingPeriod; + +unsigned[2] forecastMonth : dump ; +remove forecastTime; +transient forecastTime=forecastMonth - 1; +#remove typeOfTimeIncrement; +transient typeOfTimeIncrement = 3; + +# Old GRIBS do not have forecast forecastMonth set. It is computed from verifyingMonth +meta marsForecastMonth g1forecastmonth(verifyingMonth,dataDate,day,hour,forecastMonth,one) : read_only; + +alias origin = centre; +alias number = perturbationNumber; +alias system = systemNumber; +alias method = methodNumber; + +# ECC-679 +unsigned[2] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +# spareSetToZero +pad padding_loc16_1(16); diff --git a/eccodes/definitions/grib1/local.98.17.def b/eccodes/definitions/grib1/local.98.17.def new file mode 100644 index 00000000..e5ea33c3 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.17.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +# zeroes +#pad padding_loc17_1(2); + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; + +# Need a proper date (sst_date) +unsigned[3] dateOfSSTFieldUsed : dump ; + +unsigned[1] typeOfSSTFieldUsed : dump ; + +unsigned[1] countOfICEFieldsUsed : dump ; + +position offsetICEFieldsUsed; +ICEFieldsUsed list(countOfICEFieldsUsed) +{ + unsigned[3] dateOfIceFieldUsed : dump ; +# d3date dateOfIceFieldUsed ; + unsigned[1] satelliteNumber : dump ; +} + +# paddingToMultipleOf40Bytes +padtomultiple padding_loc17_2(offsetICEFieldsUsed,40); +position offsetAfterPadding; + +constant GRIBEXSection1Problem = ( offsetAfterPadding - offsetICEFieldsUsed ) % 40; diff --git a/eccodes/definitions/grib1/local.98.18.def b/eccodes/definitions/grib1/local.98.18.def new file mode 100644 index 00000000..a7dd8041 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.18.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 120 - section1Length ; + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=18; + +if (stepType is "instant" ) { + alias productDefinitionTemplateNumber=epsPoint; +} else { + alias productDefinitionTemplateNumber=epsContinous; +} +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump ; +alias number=perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +codetable[1] dataOrigin "common/c-1.table" : dump; +alias origin = dataOrigin; + +ascii[4] modelIdentifier : dump ; + +unsigned[1] consensusCount : dump ; + +# spareSetToZero +pad padding_loc18_1(3); + +#ascii[60] ccccIdentifiers : dump ; + +consensus list(consensusCount) +{ + ascii[4] ccccIdentifiers : dump; +} + +padto padding_loc18_2(offsetSection1 + 120); + +alias local.dataOrigin=dataOrigin; +alias local.modelIdentifier=modelIdentifier; +alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions/grib1/local.98.19.def b/eccodes/definitions/grib1/local.98.19.def new file mode 100644 index 00000000..c93438c7 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.19.def @@ -0,0 +1,40 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +constant GRIBEXSection1Problem = 80 - section1Length ; + +# zeroForMarsCompatibility +#pad padding_loc19_1(1); +unsigned[1] number : dump; +alias perturbationNumber=number; + +unsigned[1] ensembleSize : dump; +alias totalNumber=ensembleSize; + +meta quantile sprintf("%s:%s",number,ensembleSize); + +# See GRIB-862 for the reason behind the aliases + +unsigned[1] versionNumberOfExperimentalSuite : dump; +alias powerOfTenUsedToScaleClimateWeight=versionNumberOfExperimentalSuite; + +unsigned[4] implementationDateOfModelCycle : dump; +alias weightAppliedToClimateMonth1=implementationDateOfModelCycle; + +unsigned[3] numberOfReforecastYearsInModelClimate : dump; +alias firstMonthUsedToBuildClimateMonth1=numberOfReforecastYearsInModelClimate; + +unsigned[3] numberOfDaysInClimateSamplingWindow : dump; +alias lastMonthUsedToBuildClimateMonth1=numberOfDaysInClimateSamplingWindow; + +unsigned[3] sampleSizeOfModelClimate : dump; +alias firstMonthUsedToBuildClimateMonth2=sampleSizeOfModelClimate; + +unsigned[3] versionOfModelClimate : dump; +alias lastMonthUsedToBuildClimateMonth2=versionOfModelClimate; + +unsigned[1] efiOrder : dump; + +# spareSetToZero +pad padding_loc19_2(11); diff --git a/eccodes/definitions/grib1/local.98.190.def b/eccodes/definitions/grib1/local.98.190.def new file mode 100644 index 00000000..c9d3c5ed --- /dev/null +++ b/eccodes/definitions/grib1/local.98.190.def @@ -0,0 +1,26 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 0 ; + +template mars_labeling "grib1/mars_labeling.def"; + +# zeroesForCompatibilityWithMars +pad padding_loc190_1(2); + +unsigned[1] numberOfLocalDefinitions : dump; + +if(numberOfLocalDefinitions == 1){ + unsigned[1] localDefNumberOne : dump; + unsigned[2] numberOfBytesInLocalDefinition : dump; + template subLocalDefinition1 "grib1/local.[centre:l].[localDefNumberOne:l].def"; +} + +if(numberOfLocalDefinitions == 2){ + unsigned[1] localDefNumberOne : dump; + unsigned[2] numberOfBytesInLocalDefinition : dump; + unsigned[1] localDefNumberTwo : dump; + unsigned[2] numberOfBytesInLocalDefinition : dump; + template subLocalDefinition1 "grib1/local.[centre:l].[localDefNumberOne:l].def"; + unsigned[4] spare2; + template subLocalDefinition2 "grib1/local.[centre:l].[localDefNumberTwo:l].def"; +} diff --git a/eccodes/definitions/grib1/local.98.191.def b/eccodes/definitions/grib1/local.98.191.def new file mode 100644 index 00000000..b22c2f96 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.191.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +# zeroForCompatibilityWithMars +pad padding_loc191_1(2); + +unsigned[1] formatVersionMajorNumber : dump; + +unsigned[1] formatVersionMinorNumber : dump; + +unsigned[1] originalSubCentreIdentifier : dump; + +# This does not belong here, this is for class=ms,country=de +alias mars.levelist = level; + + +# setToZero + +pad padding_loc191_2(4); + +unsigned[2] numberOfBytesOfFreeFormatData : dump; + +position offsetFreeFormData; +#freeFormDataList list(numberOfBytesOfFreeFormatData) { +# unsigned[1] freeFormData; +#} + +unsigned[1] freeFormData[numberOfBytesOfFreeFormatData] : dump; + +# padToAMultipleOf80Bytes +# -1 comes from gribex +padtomultiple padding_loc191_3(offsetFreeFormData,80); +position offsetAfterPadding; +constant GRIBEXSection1Problem = ( offsetAfterPadding - offsetFreeFormData) % 80 ; diff --git a/eccodes/definitions/grib1/local.98.192.def b/eccodes/definitions/grib1/local.98.192.def new file mode 100644 index 00000000..7b0dd929 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.192.def @@ -0,0 +1,39 @@ +# (C) Copyright 2005- ECMWF. + +# The mars labeling must be inline +# template mars_labeling "grib1/mars_labeling.def"; + +constant GRIBEXSection1Problem = 0 ; + +codetable[1] thisMarsClass "mars/class.table" = "od" : dump,string_type,lowercase; +codetable[1] thisMarsType "mars/type.table" = "an" : dump,string_type,lowercase; +codetable[2] thisMarsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; +ksec1expver[4] thisExperimentVersionNumber = "0001" : dump; + +alias ls.dataType = thisMarsType; +alias mars.class = thisMarsClass; +alias mars.type = thisMarsType; +alias mars.stream = thisMarsStream; +alias mars.expver = thisExperimentVersionNumber; + +# zeroForCompatibilityWithMars +pad padding_loc192_1(2); + +unsigned[1] numberOfLocalDefinitions = 2 : dump; + +if (numberOfLocalDefinitions == 2 ) { + unsigned[2] subLocalDefinitionLength1 = 7 : dump; + unsigned[1] subLocalDefinitionNumber1 = 1 : dump; + codetable[1] marsClass1 "mars/class.table" = "od" : dump,string_type,lowercase; + codetable[1] marsType1 "mars/type.table" = "an" : dump,string_type,lowercase; + codetable[2] marsStream1 "mars/stream.table" = "oper" : dump,string_type,lowercase; + ksec1expver[4] experimentVersionNumber1 = "0001" : dump; + template subDefinitions1 "grib1/local_no_mars.98.[subLocalDefinitionNumber1].def"; + unsigned[2] subLocalDefinitionLength2 = 9 : dump; + unsigned[1] subLocalDefinitionNumber2 = 24 : dump; + codetable[1] marsClass2 "mars/class.table" = "od" : dump,string_type,lowercase; + codetable[1] marsType2 "mars/type.table" = "an" : dump,string_type,lowercase; + codetable[2] marsStream2 "mars/stream.table" = "oper" : dump,string_type,lowercase; + ksec1expver[4] experimentVersionNumber2 = "0001" : dump; + template subDefinitions2 "grib1/local_no_mars.98.[subLocalDefinitionNumber2].def"; +} diff --git a/eccodes/definitions/grib1/local.98.2.def b/eccodes/definitions/grib1/local.98.2.def new file mode 100644 index 00000000..1dbe247c --- /dev/null +++ b/eccodes/definitions/grib1/local.98.2.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 328 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] clusterNumber : dump; +alias number=clusterNumber; + +unsigned[1] totalNumberOfClusters : dump; +alias totalNumber=totalNumberOfClusters; + +# spareSetToZero +pad padding_loc2_1(1); + +unsigned[1] clusteringMethod : dump; + +unsigned[2] startTimeStep : dump; + +unsigned[2] endTimeStep : dump; + +signed[3] northernLatitudeOfDomain : dump; + +signed[3] westernLongitudeOfDomain : dump; + +signed[3] southernLatitudeOfDomain : dump; + +signed[3] easternLongitudeOfDomain : dump; + +unsigned[1] operationalForecastCluster : dump; + +unsigned[1] controlForecastCluster : dump; + +unsigned[1] numberOfForecastsInCluster : dump; +if (numberOfForecastsInCluster > 0) { +unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; +} +# spareToEnsureFixedLength +padto padding_loc2_2(offsetSection1 + 328); + + +constant unknown="-"; +concept_nofail clusteringDomain(unknown,"cluster_domain.def",conceptsMasterDir,conceptsLocalDirAll); +alias number = clusterNumber; +alias domain = clusteringDomain; diff --git a/eccodes/definitions/grib1/local.98.20.def b/eccodes/definitions/grib1/local.98.20.def new file mode 100644 index 00000000..4e114e91 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.20.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 52 - section1Length ; + +# 1 -> 2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=20; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] iterationNumber : dump; +unsigned[1] totalNumberOfIterations : dump; +alias iteration = iterationNumber; + +alias local.iterationNumber=iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; + +# spareSetToZero +pad padding_loc20_1(1); diff --git a/eccodes/definitions/grib1/local.98.21.def b/eccodes/definitions/grib1/local.98.21.def new file mode 100644 index 00000000..e10f108d --- /dev/null +++ b/eccodes/definitions/grib1/local.98.21.def @@ -0,0 +1,54 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 100 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[2] forecastOrSingularVectorNumber : dump; + +unsigned[2] numberOfIterations : dump; + +unsigned[2] numberOfSingularVectorsComputed : dump; + +unsigned[1] normAtInitialTime : dump; + +unsigned[1] normAtFinalTime : dump; + +unsigned[4] multiplicationFactorForLatLong : dump; + +signed[4] northWestLatitudeOfVerficationArea : dump; + +signed[4] northWestLongitudeOfVerficationArea : dump; + +signed[4] southEastLatitudeOfVerficationArea : dump; + +signed[4] southEastLongitudeOfVerficationArea : dump; + +unsigned[4] accuracyMultipliedByFactor : dump; + +unsigned[2] numberOfSingularVectorsEvolved : dump; + +# Ritz numbers: +signed[4] NINT_LOG10_RITZ : dump; + +signed[4] NINT_RITZ_EXP : dump; + +unsigned[1] optimisationTime : dump; +alias mars.opttime = optimisationTime; + +unsigned[1] forecastLeadTime : dump; +alias mars.leadtime = forecastLeadTime; + +ascii[1] marsDomain : dump; + +unsigned[2] methodNumber : dump; + +unsigned[2] numberOfForecastsInEnsemble : dump; + +unsigned[1] shapeOfVerificationArea : dump; + +# spareSetToZero +pad padding_loc21_1(1); + +# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); +alias mars.domain = marsDomain; diff --git a/eccodes/definitions/grib1/local.98.218.def b/eccodes/definitions/grib1/local.98.218.def new file mode 100644 index 00000000..c6787e25 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.218.def @@ -0,0 +1,42 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 120 - section1Length ; + + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=18; + +if (stepType is "instant" ) { + alias productDefinitionTemplateNumber=epsPoint; +} else { + alias productDefinitionTemplateNumber=epsContinous; +} +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump ; +alias number=perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +codetable[1] dataOrigin "common/c-1.table" : dump; +alias origin = dataOrigin; + +ascii[4] modelIdentifier : dump ; + +unsigned[1] consensusCount =1 : dump ; + +# spareSetToZero +pad padding_loc18_1(3); + +ascii[4] ccccIdentifiers ; + +#consensus list(consensusCount) +#{ ascii[4] ccccIdentifiers : dump;} + +padto padding_loc18_2(offsetSection1 + 120); + +alias local.dataOrigin=dataOrigin; +alias local.modelIdentifier=modelIdentifier; +alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions/grib1/local.98.23.def b/eccodes/definitions/grib1/local.98.23.def new file mode 100644 index 00000000..f23fce2b --- /dev/null +++ b/eccodes/definitions/grib1/local.98.23.def @@ -0,0 +1,56 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 84 - section1Length ; + +#used in local definition 13 +transient localFlag=2 : hidden; + +template mars_labeling "grib1/mars_labeling.def"; +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=23; + +unsigned[2] perturbationNumber : dump; + +# unsigned[2] numberOfForecastsInEnsemble : dump; + +unsigned[2] systemNumber : dump; +unsigned[2] methodNumber : dump; +unsigned[4] verifyingMonth : dump; +unsigned[1] averagingPeriod : dump ; +unsigned[2] forecastMonth : dump ; +unsigned[4] referenceDate : dump; +unsigned[4] climateDateFrom : dump; +unsigned[4] climateDateTo : dump; +signed[1] unitsDecimalScaleFactor : dump; +unsigned[1] thresholdIndicator : dump; +unsigned[2] lowerThresholdValue : dump; +unsigned[2] upperThresholdValue : dump; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; +alias local.verifyingMonth=verifyingMonth ; +alias local.averagingPeriod=averagingPeriod ; +alias local.forecastMonth=forecastMonth ; +alias local.referenceDate=referenceDate ; +alias local.climateDateFrom=climateDateFrom ; +alias local.climateDateTo=climateDateTo ; +alias local.unitsDecimalScaleFactor=unitsDecimalScaleFactor ; +alias local.thresholdIndicator=thresholdIndicator ; +alias local.lowerThresholdValue=lowerThresholdValue ; +alias local.upperThresholdValue=upperThresholdValue; + + +# TODO: BR Note: this is not where we expect it!! + +unsigned[2] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + + +#spareSetToZero +pad padding_loc23_1(2); + +alias number = perturbationNumber; +alias system = systemNumber; +alias method = methodNumber; +alias refdate = referenceDate; diff --git a/eccodes/definitions/grib1/local.98.24.def b/eccodes/definitions/grib1/local.98.24.def new file mode 100644 index 00000000..32f9341a --- /dev/null +++ b/eccodes/definitions/grib1/local.98.24.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 56 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[2] satelliteIdentifier : dump; +alias mars.ident = satelliteIdentifier; + +unsigned[2] instrumentIdentifier : dump; +alias mars.instrument = instrumentIdentifier; + +unsigned[2] channelNumber : dump, can_be_missing; +alias mars.channel = channelNumber; + +unsigned[1] functionCode : dump ; diff --git a/eccodes/definitions/grib1/local.98.244.def b/eccodes/definitions/grib1/local.98.244.def new file mode 120000 index 00000000..80f7dfbd --- /dev/null +++ b/eccodes/definitions/grib1/local.98.244.def @@ -0,0 +1 @@ +local.214.244.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/local.98.245.def b/eccodes/definitions/grib1/local.98.245.def new file mode 120000 index 00000000..c488089b --- /dev/null +++ b/eccodes/definitions/grib1/local.98.245.def @@ -0,0 +1 @@ +local.214.245.def \ No newline at end of file diff --git a/eccodes/definitions/grib1/local.98.25.def b/eccodes/definitions/grib1/local.98.25.def new file mode 100644 index 00000000..21b17891 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.25.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=25; +if (stepType is "instant") { + alias productDefinitionTemplateNumber=zero; +} else { + alias productDefinitionTemplateNumber=eight; +} + + +constant GRIBEXSection1Problem = 52 - section1Length ; + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +unsigned[1] modelErrorType : dump; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions/grib1/local.98.26.def b/eccodes/definitions/grib1/local.98.26.def new file mode 100644 index 00000000..83025d4b --- /dev/null +++ b/eccodes/definitions/grib1/local.98.26.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 69 - section1Length ; + +#used in local definition 13 +transient localFlag=2 : hidden; + +template mars_labeling "grib1/mars_labeling.def"; +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=26; + +if (stepType is "instant" ) { + alias productDefinitionTemplateNumber=epsPoint; +} else { + alias productDefinitionTemplateNumber=epsContinous; +} + +constant wrongPadding=1 : hidden; + +unsigned[1] number : dump; +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; +unsigned[4] referenceDate : dump ; +unsigned[4] climateDateFrom : dump; +unsigned[4] climateDateTo : dump ; +pad padding_loc26_1(6); +alias perturbationNumber=number; + +alias local.referenceDate= referenceDate ; +alias local.climateDateFrom= climateDateFrom ; +alias local.climateDateTo= climateDateTo ; diff --git a/eccodes/definitions/grib1/local.98.27.def b/eccodes/definitions/grib1/local.98.27.def new file mode 100644 index 00000000..345f41f7 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.27.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 107 - section1Length ; + +#1->2 +transient grib2LocalSectionNumber=30; + +template mars_labeling "grib1/mars_labeling.def"; +constant wrongPadding=1 : hidden; + + +unsigned[1] perturbationNumber : dump ; +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; +alias number = perturbationNumber; + + +unsigned[1] oceanAtmosphereCoupling : dump ; + +pad padding_loc27_1(3); + +unsigned[4] legBaseDate : dump ; +unsigned[2] legBaseTime : dump ; +unsigned[1] legNumber : dump ; +unsigned[4] referenceDate : dump ; +unsigned[4] climateDateFrom : dump ; +unsigned[4] climateDateTo : dump ; + +alias mars._leg_number = legNumber; + +pad padding_loc27_2(33); diff --git a/eccodes/definitions/grib1/local.98.28.def b/eccodes/definitions/grib1/local.98.28.def new file mode 100644 index 00000000..8b4ad908 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.28.def @@ -0,0 +1,21 @@ +# (C) Copyright 2005- ECMWF. + +# information about probabilities (they have already probabilities) +# information about clustering (they save it as ASCII, at the moment...) +# +constant GRIBEXSection1Problem = 79 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; +constant wrongPadding=1 : hidden; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; +unsigned[4] baseDateEPS : dump ; +unsigned[2] baseTimeEPS : dump; +unsigned[1] numberOfRepresentativeMember : dump ; +unsigned[1] numberOfMembersInCluster : dump; +unsigned[1] totalInitialConditions : dump; + +pad padding_loc28_1(19); diff --git a/eccodes/definitions/grib1/local.98.29.def b/eccodes/definitions/grib1/local.98.29.def new file mode 100644 index 00000000..3b4cf72a --- /dev/null +++ b/eccodes/definitions/grib1/local.98.29.def @@ -0,0 +1,44 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 960 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] clusterNumber : dump; +alias number=clusterNumber; + +unsigned[1] totalNumberOfClusters : dump ; +alias totalNumber=totalNumberOfClusters; +pad padding_loc29_1(1); +unsigned[1] clusteringMethod : dump ; +signed[3] northernLatitudeOfDomain : dump; +signed[3] westernLongitudeOfDomain : dump ; +signed[3] southernLatitudeOfDomain : dump ; +signed[3] easternLongitudeOfDomain : dump ; +unsigned[1] numberOfForecastsInCluster : dump; +unsigned[1] numberOfParametersUsedForClustering : dump ; +unsigned[1] numberOfPressureLevelsUsedForClustering : dump ; +unsigned[1] numberOfStepsUsedForClustering : dump ; + +pad padding_loc29_2(10); + +listOfEnsembleForecastNumbers list(numberOfForecastsInCluster){ + unsigned[4] baseDateEPS : dump; + unsigned[2] baseTimeEPS : dump; + unsigned[1] number : dump; +} + +listOfParametersUsedForClustering list(numberOfParametersUsedForClustering){ + unsigned[1] parameterCode; + unsigned[1] tableCode; +} + +unsigned[2] pressureLevel[numberOfPressureLevelsUsedForClustering] : dump; + +# Name_change old=step new=stepForClustering +unsigned[2] stepForClustering[numberOfStepsUsedForClustering] : dump; + +#spareToEnsureFixedLength - PADTO n/a 960 +padto padding_loc29_3(offsetSection1 + 960); + +alias number = clusterNumber; diff --git a/eccodes/definitions/grib1/local.98.3.def b/eccodes/definitions/grib1/local.98.3.def new file mode 100644 index 00000000..66838992 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.3.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 52 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; +constant operStream = "oper"; +alias mars.stream = operStream; + + +unsigned[1] band : dump; +alias mars.obstype = band; + +meta marsIdent sprintf("%d",indicatorOfTypeOfLevel) : dump; +alias mars.ident = marsIdent; + +unsigned[1] functionCode : dump; + +pad padding_loc3_1(1); diff --git a/eccodes/definitions/grib1/local.98.30.def b/eccodes/definitions/grib1/local.98.30.def new file mode 100644 index 00000000..952bf2f6 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.30.def @@ -0,0 +1,57 @@ +# (C) Copyright 2005- ECMWF. + +# Forecasting Systems with Variable Resolution +constant GRIBEXSection1Problem = 106 - section1Length ; + +# used in local definition 13 +transient localFlag=3 : hidden; + +# 1-> 2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=30; + +template mars_labeling "grib1/mars_labeling.def"; + +#1->2 +if (stepType is "instant" ) { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + alias productDefinitionTemplateNumber=epsPoint; + } +} else { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + alias productDefinitionTemplateNumber=epsContinous; + } +} + + +unsigned[1] perturbationNumber : dump; +alias number=perturbationNumber; +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] oceanAtmosphereCoupling : dump; + +pad padding_loc30_1(3); + +unsigned[4] legBaseDate : dump ; +unsigned[2] legBaseTime : dump ; +unsigned[1] legNumber : dump ; +unsigned[4] referenceDate : dump ; +unsigned[4] climateDateFrom : dump ; +unsigned[4] climateDateTo : dump; + +alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; +alias local.legBaseDate=legBaseDate ; +alias local.legBaseTime=legBaseTime ; +alias local.legNumber=legNumber ; +alias local.referenceDate=referenceDate ; +alias local.climateDateFrom=climateDateFrom ; +alias local.climateDateTo=climateDateTo; + +alias mars._leg_number = legNumber; + +pad padding_loc30_2(32); diff --git a/eccodes/definitions/grib1/local.98.31.def b/eccodes/definitions/grib1/local.98.31.def new file mode 100644 index 00000000..e565832b --- /dev/null +++ b/eccodes/definitions/grib1/local.98.31.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 240 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number=perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[2] forecastMonth : dump; + + + + +unsigned[4] dateOfForecastRun : dump; +alias referenceDate = dateOfForecastRun; + + +unsigned[1] numberOfModels :dump; +pad padding_local1_31(42); +listOfModelIdentifiers list (numberOfModels) { + codetable[2] modelIdentifier 'common/c-1.table' :dump; +} +padto padding_sec1_loc(offsetSection1 + 240 ); + +alias number = perturbationNumber; + +alias total=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions/grib1/local.98.32.def b/eccodes/definitions/grib1/local.98.32.def new file mode 100644 index 00000000..4e90083f --- /dev/null +++ b/eccodes/definitions/grib1/local.98.32.def @@ -0,0 +1,46 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 328 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] clusterNumber : dump; +alias number=clusterNumber; + +unsigned[1] totalNumberOfClusters : dump; +alias totalNumber=totalNumberOfClusters; + +# spareSetToZero +pad padding_loc2_1(1); + +unsigned[1] clusteringMethod : dump; + +unsigned[2] startTimeStep : dump; + +unsigned[2] endTimeStep : dump; + +signed[3] northernLatitudeOfDomain : dump; + +signed[3] westernLongitudeOfDomain : dump; + +signed[3] southernLatitudeOfDomain : dump; + +signed[3] easternLongitudeOfDomain : dump; + +ascii[1] clusteringDomain : dump; + +unsigned[1] operationalForecastCluster : dump; + +unsigned[1] controlForecastCluster : dump; +unsigned[1] representativeMember : dump; +codetable[1] climatologicalRegime "grib1/regime.table" : dump; + +unsigned[1] numberOfForecastsInCluster : dump; +if (numberOfForecastsInCluster > 0) { +unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; +} +# spareToEnsureFixedLength +padto padding_loc2_2(offsetSection1 + 328); + +alias mars.number = clusterNumber; +alias mars.domain=clusteringDomain; diff --git a/eccodes/definitions/grib1/local.98.33.def b/eccodes/definitions/grib1/local.98.33.def new file mode 100644 index 00000000..20fe3936 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.33.def @@ -0,0 +1,25 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +constant GRIBEXSection1Problem = 0 ; + +unsigned[1] yearOfReference = yearOfCentury : dump; +unsigned[1] monthOfReference = month : dump; +unsigned[1] dayOfReference = day : dump; +unsigned[1] hourOfReference = hour : dump; +unsigned[1] minuteOfReference = minute : dump; +unsigned[1] centuryOfReference = centuryOfReferenceTimeOfData : dump; +transient secondsOfReference = 0 ; + +unsigned[1] numberOfForcasts=0 : dump; +if (numberOfForcasts) { + unsigned[3] forecastSteps[numberOfForcasts] : dump; +} +unsigned[1] numberOfAnalysis=1 : dump; +if (numberOfAnalysis) { + signed[3] analysisOffsets[numberOfAnalysis] : dump; +} + +meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference,dayOfReference) : dump; +meta timeOfReference time(hourOfReference,minuteOfReference,secondsOfReference) : dump; diff --git a/eccodes/definitions/grib1/local.98.35.def b/eccodes/definitions/grib1/local.98.35.def new file mode 100644 index 00000000..62e5dfcd --- /dev/null +++ b/eccodes/definitions/grib1/local.98.35.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 120 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] yearOfReference = yearOfCentury : dump; +unsigned[1] monthOfReference = month : dump; +unsigned[1] dayOfReference = day : dump; +unsigned[1] hourOfReference = hour : dump; +unsigned[1] minuteOfReference = minute : dump; +unsigned[1] centuryOfReference = centuryOfReferenceTimeOfData : dump; +transient secondsOfReference = 0 ; + +unsigned[1] numberOfForcasts=0 : dump; +unsigned[1] numberOfAnalysis=1 : dump; + +if (numberOfForcasts) { + unsigned[3] forecastSteps[numberOfForcasts] : dump; +} +if (numberOfAnalysis) { + signed[3] analysisOffsets[numberOfAnalysis] : dump; +} + +padto padding_local_35(offsetSection1 + 120); + +meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference,dayOfReference) : dump; +meta timeOfReference time(hourOfReference,minuteOfReference,secondsOfReference) : dump; + +if (indicatorOfTypeOfLevel==160) { + alias mars.levelist = level; +} diff --git a/eccodes/definitions/grib1/local.98.36.def b/eccodes/definitions/grib1/local.98.36.def new file mode 100644 index 00000000..fbffd460 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.36.def @@ -0,0 +1,54 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 56 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + +pad padding_local1_1(1); + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +if (stepType is "instant" ) { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } +} else { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } + } +} diff --git a/eccodes/definitions/grib1/local.98.37.def b/eccodes/definitions/grib1/local.98.37.def new file mode 100644 index 00000000..c4db3866 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.37.def @@ -0,0 +1,34 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 1080 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] channelNumber : dump ; +alias mars.channel = channelNumber; + +unsigned[4] scalingFactorForFrequencies : dump ; +alias integerScalingFactorAppliedToFrequencies = scalingFactorForFrequencies ; + +unsigned[1] numberOfFrequencies : dump ; +alias totalNumberOfFrequencies = numberOfFrequencies ; +alias Nf = numberOfFrequencies ; + +# spareSetToZero +pad padding_loc37_1(3); + +unsigned[4] listOfScaledFrequencies[numberOfFrequencies] : dump; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + +# moreSpareSetToZero +padto padding_loc37_2(offsetSection1 + 1080); diff --git a/eccodes/definitions/grib1/local.98.38.def b/eccodes/definitions/grib1/local.98.38.def new file mode 100644 index 00000000..74cb02ea --- /dev/null +++ b/eccodes/definitions/grib1/local.98.38.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 56 - section1Length ; + +# 1 -> 2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=38; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] iterationNumber : dump; +unsigned[1] totalNumberOfIterations : dump; +alias iteration = iterationNumber; + +alias local.iterationNumber=iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + +# spareSetToZero +pad padding_loc38_1(1); diff --git a/eccodes/definitions/grib1/local.98.39.def b/eccodes/definitions/grib1/local.98.39.def new file mode 100644 index 00000000..f59c67f3 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.39.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=39; +if (stepType is "instant") { + alias productDefinitionTemplateNumber=zero; +} else { + alias productDefinitionTemplateNumber=eight; +} + +constant GRIBEXSection1Problem = 56 - section1Length ; + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +unsigned[1] modelErrorType : dump; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions/grib1/local.98.4.def b/eccodes/definitions/grib1/local.98.4.def new file mode 100644 index 00000000..bf4c1827 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.4.def @@ -0,0 +1,154 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 0 ; + +template mars_labeling "grib1/mars_labeling.def"; +transient localFlag=1 : hidden ; + +constant oceanStream = 1090; + +if(marsStream == oceanStream) +{ + unsigned[2] perturbationNumber : dump ; +} + +if(marsStream != oceanStream) +{ + unsigned[1] perturbationNumber : dump ; + pad padding_loc4_2(1); +} + +unsigned[1] flagShowingPostAuxiliaryArrayInUse; +# 'grib1/ocean.1.table'; + +unsigned[1] systemNumber : dump ; +alias system=systemNumber; + +unsigned[1] methodNumber : dump ; + +# +# Coordinate structure definition +# + +unsigned[1] spaceUnitFlag : dump ; + +unsigned[1] verticalCoordinateDefinition : dump ; + +unsigned[1] horizontalCoordinateDefinition : dump ; + +unsigned[1] timeUnitFlag : dump ; + +unsigned[1] timeCoordinateDefinition : dump ; + + +# +# Position definition: mixed coordinates +# + +unsigned[1] mixedCoordinateFieldFlag : dump ; + +unsigned[1] coordinate1Flag : dump ; + +unsigned[1] averaging1Flag : dump ; + +signed[4] coordinate1Start : dump ; + +signed[4] coordinate1End : dump ; + +unsigned[1] coordinate2Flag : dump ; + +unsigned[1] averaging2Flag : dump ; + +signed[4] coordinate2Start : dump ; + +signed[4] coordinate2End : dump ; + +# +# Data grid definitions +# + +unsigned[1] coordinate3Flag : dump ; + +unsigned[1] coordinate4Flag : dump ; + +signed[4] coordinate4OfFirstGridPoint : dump; + +signed[4] coordinate3OfFirstGridPoint : dump ; + +signed[4] coordinate4OfLastGridPoint : dump; + +signed[4] coordinate3OfLastGridPoint : dump ; + +signed[4] iIncrement : dump ; + +signed[4] jIncrement : dump; + +flags[1] flagForIrregularGridCoordinateList 'grib1/ocean.1.table' : dump; + +flags[1] flagForNormalOrStaggeredGrid 'grib1/ocean.1.table' : dump; + +# +# Auxiliary information +# + +flags[1] flagForAnyFurtherInformation 'grib1/ocean.1.table' : dump; + +unsigned[1] numberInHorizontalCoordinates : dump; + +unsigned[2] numberInMixedCoordinateDefinition : dump; + +unsigned[2] numberInTheGridCoordinateList : dump; + +unsigned[2] numberInTheAuxiliaryArray : dump ; + +# +# Horizontal coordinate definition +# + + +unsigned[4] horizontalCoordinateSupplement[numberInHorizontalCoordinates] : dump; + +# +# Mixed coordinate definition +# + + +unsigned[4] mixedCoordinateDefinition[numberInMixedCoordinateDefinition] : dump; + +# +# Grid coordinate list +# +if (numberInTheGridCoordinateList>0) { + + signed[4] gridCoordinate[numberInTheGridCoordinateList] : dump; +} + +# +# Auxiliary array +# + +unsigned[4] auxiliary[numberInTheAuxiliaryArray] : dump; + +# +# Post-auxiliary array +# + +constant postAuxiliaryArrayPresent = 1; + +if (flagShowingPostAuxiliaryArrayInUse == postAuxiliaryArrayPresent){ + unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; + meta sizeOfPostAuxiliaryArray evaluate(sizeOfPostAuxiliaryArrayPlusOne - 1); + if (sizeOfPostAuxiliaryArray>0) { + unsigned[4] postAuxiliary[sizeOfPostAuxiliaryArray] : dump; + + if (sizeOfPostAuxiliaryArray>3) { + meta referenceDate element(postAuxiliary,3); + } + } else { + transient referenceDate=0; + } + +} +alias hdate = dataDate; + +template local_use "grib1/mars_labeling.4.def"; diff --git a/eccodes/definitions/grib1/local.98.40.def b/eccodes/definitions/grib1/local.98.40.def new file mode 100644 index 00000000..4e92d73e --- /dev/null +++ b/eccodes/definitions/grib1/local.98.40.def @@ -0,0 +1,23 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 56 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +codetable[2] marsModel "mars/model.[centre:l].table" = "cosmo": dump; +alias mars.model = marsModel; + +codetable[2] marsDomain "mars/domain.[centre:l].table" = "s": dump; +alias mars.domain = marsDomain; + +pad padding_local40_1(1); diff --git a/eccodes/definitions/grib1/local.98.49.def b/eccodes/definitions/grib1/local.98.49.def new file mode 100644 index 00000000..6a8543b0 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.49.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=49; +if (stepType is "instant") { + alias productDefinitionTemplateNumber=zero; +} else { + alias productDefinitionTemplateNumber=eight; +} + +constant GRIBEXSection1Problem = 56 - section1Length ; + +# Ensemble forecast number: = 0 for a control forecast. Not used for analysis (set to zero) +unsigned[1] perturbationNumber : dump; +alias mars.number=perturbationNumber; +# Total number of forecasts in ensemble (Set to 1 for analysis) +unsigned[1] numberOfForecastsInEnsemble : dump; +# Model error type: 1=Full state 2=Forcing 3=Model Bias +unsigned[1] modelErrorType : dump; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + +alias local.perturbationNumber=perturbationNumber; +alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; +alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions/grib1/local.98.5.def b/eccodes/definitions/grib1/local.98.5.def new file mode 100644 index 00000000..a152d85c --- /dev/null +++ b/eccodes/definitions/grib1/local.98.5.def @@ -0,0 +1,61 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 58 - section1Length ; + +constant probPoint=5 : hidden; +constant probContinous=9 : hidden; + +# 1 to 2 conversion +_if (timeRangeIndicator==3 || timeRangeIndicator==4 + || timeRangeIndicator==5) { + alias productDefinitionTemplateNumber=probContinous; +} else { + alias productDefinitionTemplateNumber=probPoint; +} + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] forecastProbabilityNumber : dump; + +unsigned[1] totalNumberOfForecastProbabilities : dump; + +signed[1] localDecimalScaleFactor : dump; + +unsigned[1] thresholdIndicator : dump; + +signed[2] lowerThreshold : can_be_missing,dump; + +signed[2] upperThreshold : can_be_missing,dump; + +# 1 to 2 conversion +_if (thresholdIndicator == 1) { +# Probability of event above lower limit + transient probabilityType=3; + transient scaleFactorOfLowerLimit=localDecimalScaleFactor; + transient scaledValueOfLowerLimit=lowerThreshold; + transient scaleFactorOfUpperLimit=missing(); + transient scaledValueOfUpperLimit=missing(); + +} +_if (thresholdIndicator == 2) { +# Probability of event below upper limit + transient probabilityType=4; + transient scaleFactorOfLowerLimit= missing(); + transient scaledValueOfLowerLimit=missing(); + transient scaleFactorOfUpperLimit=localDecimalScaleFactor; + transient scaledValueOfUpperLimit=upperThreshold; +} +_if (thresholdIndicator == 3) { +# Probability of event between lower and upper limits. +# The range includes the lower limit but not the upper limit + transient probabilityType=2; + transient scaleFactorOfLowerLimit=localDecimalScaleFactor; + transient scaledValueOfLowerLimit=lowerThreshold; + transient scaleFactorOfUpperLimit=localDecimalScaleFactor; + transient scaledValueOfUpperLimit=upperThreshold; +} + +# spareSetToZero +pad padding_loc5_1(1); +alias number = forecastProbabilityNumber; +alias totalNumber=totalNumberOfForecastProbabilities; diff --git a/eccodes/definitions/grib1/local.98.50.def b/eccodes/definitions/grib1/local.98.50.def new file mode 100644 index 00000000..182d6fe3 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.50.def @@ -0,0 +1,30 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 300 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] perturbationNumber : dump ; +alias number=perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump ; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] modelIdentifier : dump ; + +signed[4] latitudeOfNorthWestCornerOfArea : dump; + +signed[4] longitudeOfNorthWestCornerOfArea : dump ; + +signed[4] latitudeOfSouthEastCornerOfArea : dump; + +signed[4] longitudeOfSouthEastCornerOfArea : dump; + +# reservedForECMWFAdditions +unsigned[1] originalParameterNumber : dump ; + +unsigned[1] originalParameterTableNumber : dump ; + +pad padding_loc50_1(46); + +ascii[184] optionalData : dump ; diff --git a/eccodes/definitions/grib1/local.98.6.def b/eccodes/definitions/grib1/local.98.6.def new file mode 100644 index 00000000..8e3ed491 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.6.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- ECMWF. + +template mars_labeling "grib1/mars_labeling.def"; + +# zeroes + +pad padding_loc6_1(2); + +unsigned[3] dateSSTFieldUsed : dump; + +unsigned[1] typeOfSSTFieldUsed : dump; + +unsigned[1] countOfICEFieldsUsed : dump; + + +ICEFieldsUsed list(countOfICEFieldsUsed) +{ + unsigned[3] dateOfIceFieldUsed : dump ; + unsigned[1] satelliteNumber : dump ; +} + +constant GRIBEXSection1Problem = 56 + countOfICEFieldsUsed * 3 - section1Length ; diff --git a/eccodes/definitions/grib1/local.98.7.def b/eccodes/definitions/grib1/local.98.7.def new file mode 100644 index 00000000..9b15b410 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.7.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +# 1-> 2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=7; + +constant GRIBEXSection1Problem = 54 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +unsigned[1] sensitiveAreaDomain : dump; +#alias mars.domain=sensitiveAreaDomain; + +unsigned[1] diagnosticNumber : dump; + +alias iteration = iterationNumber; +alias diagnostic = diagnosticNumber; + +alias local.iterationNumber=iterationNumber; +alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; +alias local.sensitiveAreaDomain=sensitiveAreaDomain; +alias local.diagnosticNumber=diagnosticNumber; + +# spareSetToZero +pad padding_loc7_1(1); diff --git a/eccodes/definitions/grib1/local.98.8.def b/eccodes/definitions/grib1/local.98.8.def new file mode 100644 index 00000000..b2878870 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.8.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXSection1Problem = 62 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[1] intervalBetweenTimes : dump; + +constant numberOfIntegers=12; +unsigned[1] unsignedIntegers[numberOfIntegers] : dump; diff --git a/eccodes/definitions/grib1/local.98.9.def b/eccodes/definitions/grib1/local.98.9.def new file mode 100644 index 00000000..a3d37151 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.9.def @@ -0,0 +1,62 @@ +# (C) Copyright 2005- ECMWF. + +# 1-> 2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=9; + +constant GRIBEXSection1Problem = 92 - section1Length ; + +template mars_labeling "grib1/mars_labeling.def"; + +unsigned[2] forecastOrSingularVectorNumber : dump; + +# +# These elements are set to zero for perturbed forecast +# + +constant perturbedType = 60; +if(type == perturbedType) +{ + # octetsSetToZero + pad padding_loc9_1(41); +} + +# +# These elements are coded for singular vectors +# + +if(type != perturbedType) +{ + unsigned[2] numberOfIterations : dump; + unsigned[2] numberOfSingularVectorsComputed : dump; + unsigned[1] normAtInitialTime : dump ; + unsigned[1] normAtFinalTime : dump ; + unsigned[4] multiplicationFactorForLatLong : dump; + signed[4] northWestLatitudeOfLPOArea : dump ; + signed[4] northWestLongitudeOfLPOArea : dump; + signed[4] southEastLatitudeOfLPOArea : dump; + signed[4] southEastLongitudeOfLPOArea : dump; + unsigned[4] accuracyMultipliedByFactor : dump; + unsigned[2] numberOfSingularVectorsEvolved : dump; + # Ritz numbers: + signed[4] NINT_LOG10_RITZ : dump ; + signed[4] NINT_RITZ_EXP : dump ; + + alias local.numberOfIterations= numberOfIterations; + alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; + alias local.normAtInitialTime= normAtInitialTime ; + alias local.normAtFinalTime= normAtFinalTime ; + alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; + alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; + alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; + alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; + alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; + alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; + alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; +# Ritz numbers: + alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; + alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; +} + +# spareSetToZero +pad padding_loc9_2(1); diff --git a/eccodes/definitions/grib1/local.98.def b/eccodes/definitions/grib1/local.98.def new file mode 100644 index 00000000..3fcd6e69 --- /dev/null +++ b/eccodes/definitions/grib1/local.98.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[1] localDefinitionNumber = 1 : dump,edition_specific,no_copy; +template localDefinition "grib1/local.[centre:l].[localDefinitionNumber:l].def"; diff --git a/eccodes/definitions/grib1/local/ecmf/3.table b/eccodes/definitions/grib1/local/ecmf/3.table new file mode 100644 index 00000000..767213f1 --- /dev/null +++ b/eccodes/definitions/grib1/local/ecmf/3.table @@ -0,0 +1,53 @@ +# CODE TABLE 3 Fixed levels or layers for which the data are included +0 0 Reserved +1 sfc Surface (of the Earth, which includes sea surface) +2 sfc Cloud base level +3 sfc Cloud top level +4 sfc 0 deg (C) isotherm level +5 5 Adiabatic condensation level (parcel lifted from surface) +6 6 Maximum wind speed level +7 7 Tropopause level +8 sfc Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 sfc Mean sea level 0 0 +103 103 Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) +105 sfc Fixed height above ground height in meters (2 octets) +106 106 Layer between two height levels above ground - height of top, height of bottom (hm) +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 ml Layer between two hybrid levels level number of top level number of bottom +111 sfc Depth below land surface centimeters (2 octets) +112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +200 sfc Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +# 202-209 Reserved +210 pl Isobaric surface (Pa) (ECMWF extension) +# 211-254 Reserved for local use +211 wv Ocean wave level (ECMWF extension) +212 oml Ocean mixed layer (ECMWF extension) +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/local/ecmf/5.table b/eccodes/definitions/grib1/local/ecmf/5.table new file mode 100644 index 00000000..d680045f --- /dev/null +++ b/eccodes/definitions/grib1/local/ecmf/5.table @@ -0,0 +1,25 @@ +# CODE TABLE 5 Time Range Indicator +0 0 Forecast product valid at reference time + P1 (P1>0) +1 1 Initialized analysis product for reference time (P1=0). +2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 +3 3 Average (reference time + P1 to reference time + P2) +4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 +5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 +6 6 Average (reference time - P1 to reference time - P2) +7 7 Average (reference time - P1 to reference time + P2) +10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 +51 51 Climatological Mean Value: +113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. +116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. +117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. +118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. +119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. +124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. +125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +# For ECMWF +128 128 Average of N forecast products with a valid time ranging between reference time + P1 and reference time + P2; products have reference times at Intervals of 24 hours, beginning at the given reference time +130 130 Average of N forecast products; each product has a forecast period from P1 to P2; products have reference times at intervals of P2 - P1, beginning at the given reference time; thus the N products cover a continuous time span +133 133 Average of N forecast products with valid times at intervals given by the remainder of P1/24, from reference time + P1 to reference time + P2; beginning at the given reference time, the reference times are also incremented, at intervals of P2 unless P2 > 24, in which case the interval is 24; thus the N products cover a time span with a regular time interval, given by the remainder of P1/24. diff --git a/eccodes/definitions/grib1/local/edzw/2.0.3.table b/eccodes/definitions/grib1/local/edzw/2.0.3.table new file mode 100755 index 00000000..a4f9a0df --- /dev/null +++ b/eccodes/definitions/grib1/local/edzw/2.0.3.table @@ -0,0 +1,130 @@ +1 p P Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 3 None Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 5 None ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 9 None Standard deviation of height m +10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) +11 t T Temperature K +12 12 None Virtual temperature K +13 13 None Potential temperature K +14 14 None Pseudo-adiabatic potential temperature K +15 15 None Maximum temperature K +16 16 None Minimum temperature K +17 17 None Dew-point temperature K +18 18 None Dew-point depression (or deficit) K +19 19 None Lapse rate K s**-1 +20 20 None Visibility m +21 21 None Radar spectra (1) - +22 22 None Radar spectra (2) - +23 23 None Radar spectra (3) - +24 24 None Parcel lifted index (to 500 hPa) K +25 25 None Temperature anomaly K +26 26 None Pressure anomaly Pa +27 27 None Geopotential height anomaly gpm +28 28 None Wave spectra (1) - +29 29 None Wave spectra (2) - +30 30 None Wave spectra (3) - +31 31 None Wind direction Degree true +32 32 None Wind speed m s**-1 +33 u U U-component of wind m s**-1 +34 v V V-component of wind m s**-1 +35 35 None Stream Function m**2 s**-1 +36 36 None Velocity Potential m**2 s**-1 +37 37 None Montgomery stream Function m**2 s**-1 +38 38 None Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 40 None Vertical velocity m s**-1 +41 41 None Absolute vorticity s**-1 +42 42 None Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 45 None Vertical u-component shear s**-1 +46 46 None Vertical v-component shear s**-1 +47 47 None Direction of current Degree true +48 48 None Speed of current m s**-1 +49 49 None U-component of current m s**-1 +50 50 None V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 53 None Humidity mixing ratio kg m**-2 +54 54 None Precipitable water kg m**-2 +55 55 None Vapour pressure Pa +56 56 None Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 59 None Precipitation rate kg m**-2 s**-1 +60 60 None Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 62 LSP Large scale precipitation kg m**-2 +63 63 None Convective precipitation (water) kg m**-2 +64 64 None Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalentof accumulated snow depth kg m**-2 +66 sd SD Snow depth m (of water equivalent) +67 67 None Mixed layer depth m +68 68 None Transient thermocline depth m +69 69 None Main thermocline depth m +70 70 None Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 clwc CLWC Cloud liquid water content kg kg**-1 +77 77 None Best lifted index (to 500 hPa) K +78 csf CSF Convective snow-fall kg m**-2 +79 lsf LSF Large scale snow-fall kg m**-2 +80 80 None Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 82 None Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Surface temperature of soil K +86 ssw SSW Soil moisture content kg m**-2 +87 veg VEG Percentage of vegetation % +88 88 None Salinity kg kg**-1 +89 89 None Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 91 None Ice cover (1=land, 0=sea) (0 - 1) +92 92 None Ice thickness m +93 93 None Direction of ice drift Degree true +94 94 None Speed of ice drift m s*-1 +95 95 None U-component of ice drift m s**-1 +96 96 None V-component of ice drift m s**-1 +97 97 None Ice growth rate m s**-1 +98 98 None Ice divergence s**-1 +99 99 None Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 104 None Direction of swell waves Degree true +105 105 None Significant height of swell waves m +106 106 None Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 109 None Secondary wave direction Degree true +110 110 None Secondary wave period s +111 111 None Net short-wave radiation flux (surface) W m**-2 +112 112 None Net long-wave radiation flux (surface) W m**-2 +113 113 None Net short-wave radiationflux(atmosph.top) W m**-2 +114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 +115 115 None Long-wave radiation flux W m**-2 +116 116 None Short-wave radiation flux W m**-2 +117 117 None Global radiation flux W m**-2 +118 118 None Brightness temperature K +119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 +120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF (surface) Latent heat flux W m**-2 +122 sshf SSHF (surface) Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 124 None Momentum flux, u-component N m**-2 +125 125 None Momentum flux, v-component N m**-2 +126 126 None Wind mixing energy J +127 127 None Image data - +148 lsm LSM LandSeaMask +160 160 Unknown +255 - - Indicates a missing value - diff --git a/eccodes/definitions/grib1/local/edzw/5.table b/eccodes/definitions/grib1/local/edzw/5.table new file mode 100755 index 00000000..7f7c99d4 --- /dev/null +++ b/eccodes/definitions/grib1/local/edzw/5.table @@ -0,0 +1,24 @@ +# CODE TABLE 5 Time Range Indicator +0 0 Forecast product valid at reference time + P1 (P1>0) +1 1 Initialized analysis product for reference time (P1=0). +2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 +3 3 Average (reference time + P1 to reference time + P2) +4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 +5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 +6 6 Average (reference time - P1 to reference time - P2) +7 7 Average (reference time - P1 to reference time + P2) +10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 +11 11 local use: Initialized forecast (P1 > 0) for IDFI +13 13 local use: Fields from analyses valid at reference time for P1 = 0 +14 14 local use: IFS forecast interpolated to GME triangular grid +51 51 Climatological Mean Value: +113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. +116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. +117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. +118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. +119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. +124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. +125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table new file mode 100755 index 00000000..f2ecd9af --- /dev/null +++ b/eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table @@ -0,0 +1,86 @@ +025 AN2MO AN2MO +033 ANALY ANALY +034 WAMIT WAMIT +036 GPEPS GPEPS +037 KWGFS KWGFS +038 KWGF5 KWGF5 +044 B106V B106V +049 S106V S106V +053 AN1MO AN1MO +058 EM3AN EM3AN +059 EM3MO EM3MO +061 ECMFM ECMFM +064 KWBCM KWBCM +065 LFPWM LFPWM +068 KWB01 KWB01 +069 SGGLO SGGLO +074 B106A B106A +075 SGMED SGMED +079 S106A S106A +080 ECENS ECENS +081 NORMW NORMW +084 NORM3 NORM3 +085 SGNAT SGNAT +086 SGESH SGESH +087 SGBAL SGBAL +088 MOMI3 MOMI3 +094 P106A P106A +111 DM3AN DM3AN +112 DM3MO DM3MO +115 DM4AN DM4AN +116 DM4MO DM4MO +121 WAFTF WAFTF +122 WAFSZ WAFSZ +123 KWB02 KWB02 +124 KWB03 KWB03 +126 KWB04 KWB04 +127 NAEGR NAEGR +131 LM1AN LM1AN +132 LM1MO LM1MO +134 LM2AN LM2AN +135 LM2MO LM2MO +137 LM3AN LM3AN +138 LM3MO LM3MO +140 ecgm_diag_fc05 ecgm_diag_fc05 +141 I032A I032A +143 I048A I048A +145 I064A I064A +147 I096A I096A +148 I096F I096F +149 I128A I128A +150 I128F I128F +157 R096A R096A +159 R128A R128A +160 R128F R128F +173 I192A I192A +174 I192F I192F +175 I256A I256A +176 I256F I256F +185 R192A R192A +186 R192F R192F +187 R256A R256A +188 R256F R256F +194 E128A E128A +195 E192A E192A +196 E256A E256A +197 SGGM0 SGGM0 +198 SGGM1 SGGM1 +199 SGGM2 SGGM2 +201 SGLM0 SGLM0 +202 SGLM1 SGLM1 +205 SGBSH SGBSH +206 I384A I384A +207 I384F I384F +208 R384A R384A +209 R384F R384F +210 E384A E384A +211 EGMES EGMES +212 LFMES LFMES +213 LM4MO LM4MO +214 LM4AN LM4AN +215 LM5MO LM5MO +216 LM5AN LM5AN +217 LM6MO LM6MO +218 LM6AN LM6AN +219 LM7MO LM7MO +225 SGBS1 SGBS1 diff --git a/eccodes/definitions/grib1/local/rjtd/252.table b/eccodes/definitions/grib1/local/rjtd/252.table new file mode 100644 index 00000000..b271d2df --- /dev/null +++ b/eccodes/definitions/grib1/local/rjtd/252.table @@ -0,0 +1,16 @@ +# Code table JMA-252 - type of vegetation +# +0 0 Sea or inland water +1 1 Broadleaf-evergreen trees +2 2 Broadleaf-deciduous trees +3 3 Broadleaf and needleleaf trees +4 4 Needleleaf-evergreen trees +5 5 Needleleaf-deciduous trees +6 6 Broadleaf trees with groundcover +7 7 Groundcover +8 8 Broadleaf shrubs with groundcover +9 9 Broadleaf shrubs with bare soil +10 10 Dwarf trees and shrubs with groundcover (tundra) +11 11 No vegetation: bare soil +12 12 Broadleaf-deciduous trees with winter wheat +13 13 Perennial land ice diff --git a/eccodes/definitions/grib1/local/rjtd/3.table b/eccodes/definitions/grib1/local/rjtd/3.table new file mode 100644 index 00000000..b22887d8 --- /dev/null +++ b/eccodes/definitions/grib1/local/rjtd/3.table @@ -0,0 +1,58 @@ +# CODE TABLE 3 Fixed levels or layers for which the data are included +# For JMA - Japanese Meteorological Agency +0 0 Reserved +1 sfc Surface (of the Earth, which includes sea surface) +2 sfc Cloud base level +3 sfc Cloud top level +4 sfc 0 deg (C) isotherm level +5 5 Adiabatic condensation level (parcel lifted from surface) +6 6 Maximum wind speed level +7 7 Tropopause level +8 sfc Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 sfc Mean sea level 0 0 +103 103 Fixed height level height above mean sea level (MSL) in meters +104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) +105 sfc Fixed height above ground height in meters (2 octets) +106 106 Layer between two height levels above ground - height of top, height of bottom (hm) +107 107 Sigma level sigma value in 1/10000 (2 octets) +108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 ml Hybrid level level number (2 octets) +110 ml Layer between two hybrid levels level number of top level number of bottom +111 sfc Depth below land surface centimeters (2 octets) +112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +200 sfc Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +# 202-209 Reserved +210 pl Isobaric surface (Pa) (ECMWF extension) + +# 211-254 Reserved for local use +# JRA55 levels +211 sfc Entire soil (considered as a single layer) +212 sfc The bottom of land surface model +213 sfc Underground layer number of land surface model + +255 255 Indicates a missing value diff --git a/eccodes/definitions/grib1/local/rjtd/5.table b/eccodes/definitions/grib1/local/rjtd/5.table new file mode 100644 index 00000000..86e41147 --- /dev/null +++ b/eccodes/definitions/grib1/local/rjtd/5.table @@ -0,0 +1,27 @@ +# CODE TABLE 5 Time Range Indicator +0 0 Forecast product valid at reference time + P1 (P1>0) +1 1 Initialized analysis product for reference time (P1=0). +2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 +3 3 Average (reference time + P1 to reference time + P2) +4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 +5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 +6 6 Average (reference time - P1 to reference time - P2) +7 7 Average (reference time - P1 to reference time + P2) +10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 +51 51 Climatological Mean Value: +113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. +116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. +117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. +118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. +119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. +124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. +125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +# For JRA55 +128 128 Average of N forecast products with a valid time ranging between reference time + P1 and reference time + P2; products have reference times at Intervals of 24 hours, beginning at the given reference time +129 129 Temporal variance of N forecasts; each product has valid time ranging between reference time + P1 and reference time + P2; products have reference times at intervals of 24 hours, beginning at the given reference time; unit of measurement is square of that in Code Table 2 +130 130 Average of N forecast products; each product has a forecast period from P1 to P2; products have reference times at intervals of P2 - P1, beginning at the given reference time; thus the N products cover a continuous time span +131 131 Temporal variance of N forecasts; valid time of the first product ranges between R + P1 and R + P2, where R is reference time given in octets 13 to 17, then subsequent products have valid time range at interval of P2 - P1; thus all N products cover continuous time span; products have reference times at intervals of P2 - P1, beginning at the given reference time; unit of measurement is square of that in Code Table 2 +132 132 Temporal variance of N uninitialized analyses [P1 = 0] or instantaneous forecasts [P1 > 0]; each product has valid time at the reference time + P1; products have reference times at intervals of P2, beginning at the given reference time; unit of measurement is square of that in Code Table 2 diff --git a/eccodes/definitions/grib1/localConcepts/ammc/name.def b/eccodes/definitions/grib1/localConcepts/ammc/name.def new file mode 100644 index 00000000..06e43cf2 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ammc/name.def @@ -0,0 +1,5 @@ +# Automatically generated by ./create_def.pl, do not edit +#test +'test' = { + indicatorOfParameter = 1 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ammc/paramId.def b/eccodes/definitions/grib1/localConcepts/ammc/paramId.def new file mode 100644 index 00000000..7c9b8512 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ammc/paramId.def @@ -0,0 +1,5 @@ +# Automatically generated by ./create_def.pl, do not edit +#test +'999999999' = { + indicatorOfParameter = 1 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ammc/shortName.def b/eccodes/definitions/grib1/localConcepts/ammc/shortName.def new file mode 100644 index 00000000..3d91e554 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ammc/shortName.def @@ -0,0 +1,5 @@ +# Automatically generated by ./create_def.pl, do not edit +#test +'' = { + indicatorOfParameter = 1 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ammc/units.def b/eccodes/definitions/grib1/localConcepts/ammc/units.def new file mode 100644 index 00000000..af3952df --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ammc/units.def @@ -0,0 +1,5 @@ +# Automatically generated by ./create_def.pl, do not edit +#test +'(-1 to 1)' = { + indicatorOfParameter = 1 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/name.def b/eccodes/definitions/grib1/localConcepts/cnmc/name.def new file mode 100644 index 00000000..a7af1d9e --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/cnmc/name.def @@ -0,0 +1,2435 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure +'Pressure' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 102 ; + } +#Pressure Tendency (S) +'Pressure Tendency (S)' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (S) +'Geopotential (S)' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (full lev) +'Geopotential (full lev)' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } +#Geopotential +'Geopotential' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Geometric Height of the earths surface above sea level +'Geometric Height of the earths surface above sea level' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'Geometric Height of the layer limits above sea level(NN)' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature (G) +'Temperature (G)' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } +#2m Temperature (AV) +'2m Temperature (AV)' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Climat. temperature, 2m Temperature +'Climat. temperature, 2m Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Temperature +'Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#Max 2m Temperature (i) +'Max 2m Temperature (i)' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#Min 2m Temperature (i) +'Min 2m Temperature (i)' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#2m Dew Point Temperature +'2m Dew Point Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2m Dew Point Temperature (AV) +'2m Dew Point Temperature (AV)' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind Direction (DD_10M) +'Wind Direction (DD_10M)' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind Direction (DD) +'Wind Direction (DD)' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Wind speed (SP_10M) +'Wind speed (SP_10M)' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind speed (SP) +'Wind speed (SP)' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 110 ; + } +#U component of wind +'U component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#U component of wind +'U component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'V component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#V component of wind +'V component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vertical Velocity (Geometric) (w) +'Vertical Velocity (Geometric) (w)' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } +#Specific Humidity (S) +'Specific Humidity (S)' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } +#Specific Humidity (2m) +'Specific Humidity (2m)' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Specific Humidity +'Specific Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#2m Relative Humidity +'2m Relative Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Relative Humidity +'Relative Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + indicatorOfTypeOfLevel = 1 ; + } +#Evaporation (s) +'Evaporation (s)' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Total Column-Integrated Cloud Ice +'Total Column-Integrated Cloud Ice' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Precipitation rate (S) +'Total Precipitation rate (S)' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale Precipitation rate +'Large-Scale Precipitation rate' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } +#Convective Precipitation rate +'Convective Precipitation rate' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow Depth +'Snow Depth' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Cloud Cover +'Convective Cloud Cover' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'Convective Snowfall rate water equivalent (s)' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale snowfall rate water equivalent (s) +'Large-Scale snowfall rate water equivalent (s)' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + indicatorOfTypeOfLevel = 1 ; + } +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'Soil Temperature ( 36 cm depth, vv=0h)' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } +#Soil Temperature (41 cm depth) +'Soil Temperature (41 cm depth)' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; + topLevel = 100 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'Column-integrated Soil Moisture (1) 0 -10 cm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'Column-integrated Soil Moisture (2) 10-100cm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; + topLevel = 10 ; + } +#Plant cover +'Plant cover' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + indicatorOfTypeOfLevel = 1 ; + } +#Water Runoff (10-100) +'Water Runoff (10-100)' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#Water Runoff (10-190) +'Water Runoff (10-190)' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + topLevel = 10 ; + bottomLevel = 190 ; + } +#Water Runoff (s) +'Water Runoff (s)' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + timeRangeIndicator = 4 ; + topLevel = 0 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Thickness +'sea Ice Thickness' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + indicatorOfTypeOfLevel = 1 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'Direction of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Net short wave radiation flux (m) (at the surface) +'Net short wave radiation flux (m) (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net short wave radiation flux (m) (on the model top) +'Net short wave radiation flux (m) (on the model top)' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'Net long wave radiation flux (m) (on the model top)' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation (m) (at the surface) +'Photosynthetically active radiation (m) (at the surface)' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Solar radiation heating rate +'Solar radiation heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + indicatorOfTypeOfLevel = 110 ; + } +#Thermal radiation heating rate +'Thermal radiation heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + indicatorOfTypeOfLevel = 110 ; + } +#Latent heat flux from bare soil +'Latent heat flux from bare soil' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Latent heat flux from plants +'Latent heat flux from plants' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } +#Sunshine +'Sunshine' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } +#Stomatal Resistance +'Stomatal Resistance' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Cloud cover +'Cloud cover' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#Non-Convective Cloud Cover, grid scale +'Non-Convective Cloud Cover, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Mixing Ratio +'Cloud Mixing Ratio' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Ice Mixing Ratio +'Cloud Ice Mixing Ratio' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 110 ; + } +#Rain mixing ratio +'Rain mixing ratio' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + indicatorOfTypeOfLevel = 110 ; + } +#Snow mixing ratio +'Snow mixing ratio' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated rain +'Total column integrated rain' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total column integrated snow +'Total column integrated snow' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + indicatorOfTypeOfLevel = 1 ; + } +#Grauple +'Grauple' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated grauple +'Total column integrated grauple' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } +#Total Column integrated water (all components incl. precipitation) +'Total Column integrated water (all components incl. precipitation)' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertical integral of divergence of total water content (s) +'vertical integral of divergence of total water content (s)' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + indicatorOfTypeOfLevel = 1 ; + } +#subgrid scale cloud water +'subgrid scale cloud water' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + indicatorOfTypeOfLevel = 110 ; + } +#subgridscale cloud ice +'subgridscale cloud ice' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#cloud base above msl, shallow convection +'cloud base above msl, shallow convection' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } +#cloud top above msl, shallow convection +'cloud top above msl, shallow convection' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } +#specific cloud water content, convective cloud +'specific cloud water content, convective cloud' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 110 ; + } +#Height of Convective Cloud Base (i) +'Height of Convective Cloud Base (i)' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } +#Height of Convective Cloud Top (i) +'Height of Convective Cloud Top (i)' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'base index (vertical level) of main convective cloud (i)' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'top index (vertical level) of main convective cloud (i)' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to convection +'Temperature tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to convection +'Specific humitiy tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 110 ; + } +#zonal wind tendency due to convection +'zonal wind tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to convection +'meridional wind tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 110 ; + } +#height of top of dry convection +'height of top of dry convection' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'height of 0 degree celsius level code 0,3,6 ?' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } +#Height of snow fall limit +'Height of snow fall limit' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } +#Tendency of specific cloud liquid water content due to conversion +'Tendency of specific cloud liquid water content due to conversion' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud ice content due to convection +'tendency of specific cloud ice content due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'Specific content of precipitation particles (needed for water loadin)g' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 110 ; + } +#Large scale rain rate +'Large scale rain rate' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale rain rate (s) +'Large scale rain rate (s)' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Convective rain rate +'Convective rain rate' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective rain rate (s) +'Convective rain rate (s)' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#rain amount, grid-scale plus convective +'rain amount, grid-scale plus convective' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#snow amount, grid-scale plus convective +'snow amount, grid-scale plus convective' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to grid scale precipation +'Temperature tendency due to grid scale precipation' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to grid scale precipitation +'Specific humitiy tendency due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'tendency of specific cloud liquid water content due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + indicatorOfTypeOfLevel = 110 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + indicatorOfTypeOfLevel = 1 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'tendency of specific cloud ice content due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 110 ; + } +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 1 ; + } +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow density +'Snow density' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure perturbation +'Pressure perturbation' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + indicatorOfTypeOfLevel = 110 ; + } +#supercell detection index 1 (rot. up+down drafts) +'supercell detection index 1 (rot. up+down drafts)' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + indicatorOfTypeOfLevel = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'supercell detection index 2 (only rot. up drafts)' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, most unstable +'Convective Available Potential Energy, most unstable' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, most unstable +'Convective Inhibition, most unstable' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, mean layer +'Convective Available Potential Energy, mean layer' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, mean layer +'Convective Inhibition, mean layer' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective turbulent kinetic enery +'Convective turbulent kinetic enery' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } +#Tendency of turbulent kinetic energy +'Tendency of turbulent kinetic energy' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + indicatorOfTypeOfLevel = 109 ; + } +#Kinetic Energy +'Kinetic Energy' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + indicatorOfTypeOfLevel = 110 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusioncoefficient for momentum +'Turbulent diffusioncoefficient for momentum' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'Turbulent diffusion coefficient for heat (and moisture)' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent transfer coefficient for impulse +'Turbulent transfer coefficient for impulse' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + indicatorOfTypeOfLevel = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'Turbulent transfer coefficient for heat (and Moisture)' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + indicatorOfTypeOfLevel = 1 ; + } +#mixed layer depth +'mixed layer depth' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + indicatorOfTypeOfLevel = 1 ; + } +#maximum Wind 10m +'maximum Wind 10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + timeRangeIndicator = 2 ; + } +#Air concentration of Ruthenium 103 +'Air concentration of Ruthenium 103' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + indicatorOfTypeOfLevel = 100 ; + } +#Soil Temperature (multilayers) +'Soil Temperature (multilayers)' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } +#Column-integrated Soil Moisture (multilayers) +'Column-integrated Soil Moisture (multilayers)' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } +#soil ice content (multilayers) +'soil ice content (multilayers)' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } +#Plant Canopy Surface Water +'Plant Canopy Surface Water' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow temperature (top of snow) +'Snow temperature (top of snow)' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#Minimal Stomatal Resistance +'Minimal Stomatal Resistance' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Temperature +'sea Ice Temperature' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'Base reflectivity' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'Base reflectivity' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } +#Base reflectivity (cmax) +'Base reflectivity (cmax)' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } +#unknown +'unknown' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 110 ; + } +#Effective transmissivity of solar radiation +'Effective transmissivity of solar radiation' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 110 ; + } +#sum of contributions to evaporation +'sum of contributions to evaporation' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } +#total transpiration from all soil layers +'total transpiration from all soil layers' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } +#total forcing at soil surface +'total forcing at soil surface' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#residuum of soil moisture +'residuum of soil moisture' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } +#Massflux at convective cloud base +'Massflux at convective cloud base' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy +'Convective Available Potential Energy' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + indicatorOfTypeOfLevel = 1 ; + } +#moisture convergence for Kuo-type closure +'moisture convergence for Kuo-type closure' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + indicatorOfTypeOfLevel = 1 ; + } +#total wave direction +'total wave direction' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } +#wind sea mean period +'wind sea mean period' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 102 ; + } +#wind sea peak period +'wind sea peak period' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } +#swell mean period +'swell mean period' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 102 ; + } +#swell peak period +'swell peak period' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } +#total wave peak period +'total wave peak period' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } +#total wave mean period +'total wave mean period' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } +#total Tm1 period +'total Tm1 period' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } +#total Tm2 period +'total Tm2 period' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } +#total directional spread +'total directional spread' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } +#analysis error(standard deviation), geopotential(gpm) +'analysis error(standard deviation), geopotential(gpm)' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), u-comp. of wind +'analysis error(standard deviation), u-comp. of wind' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), v-comp. of wind +'analysis error(standard deviation), v-comp. of wind' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + level = 100 ; + } +#zonal wind tendency due to subgrid scale oro. +'zonal wind tendency due to subgrid scale oro.' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to subgrid scale oro. +'meridional wind tendency due to subgrid scale oro.' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + indicatorOfTypeOfLevel = 110 ; + } +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + indicatorOfTypeOfLevel = 1 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + indicatorOfTypeOfLevel = 1 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 1 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + indicatorOfTypeOfLevel = 1 ; + } +#surface emissivity +'surface emissivity' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + timeRangeIndicator = 0 ; + } +#Soil Type +'Soil Type' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } +#Leaf area index +'Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#root depth of vegetation +'root depth of vegetation' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of ozone maximum (climatological) +'height of ozone maximum (climatological)' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertically integrated ozone content (climatological) +'vertically integrated ozone content (climatological)' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the vegetation phase +'Plant covering degree in the vegetation phase' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the quiescent phas +'Plant covering degree in the quiescent phas' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 1 ; + } +#Max Leaf area index +'Max Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 1 ; + } +#Min Leaf area index +'Min Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + indicatorOfTypeOfLevel = 1 ; + } +#Orographie + Land-Meer-Verteilung +'Orographie + Land-Meer-Verteilung' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } +#variance of soil moisture content (0-10) +'variance of soil moisture content (0-10)' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#variance of soil moisture content (10-100) +'variance of soil moisture content (10-100)' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#evergreen forest +'evergreen forest' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#deciduous forest +'deciduous forest' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#normalized differential vegetation index +'normalized differential vegetation index' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } +#normalized differential vegetation index (NDVI) +'normalized differential vegetation index (NDVI)' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 3 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Total sulfate aerosol +'Total sulfate aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } +#Total sulfate aerosol (12M) +'Total sulfate aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } +#Total soil dust aerosol +'Total soil dust aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } +#Total soil dust aerosol (12M) +'Total soil dust aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } +#Organic aerosol +'Organic aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } +#Organic aerosol (12M) +'Organic aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } +#Black carbon aerosol +'Black carbon aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } +#Black carbon aerosol (12M) +'Black carbon aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } +#Sea salt aerosol +'Sea salt aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } +#Sea salt aerosol (12M) +'Sea salt aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } +#tendency of specific humidity +'tendency of specific humidity' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + indicatorOfTypeOfLevel = 110 ; + } +#water vapor flux +'water vapor flux' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + indicatorOfTypeOfLevel = 1 ; + } +#Coriolis parameter +'Coriolis parameter' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical latitude +'geographical latitude' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical longitude +'geographical longitude' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + indicatorOfTypeOfLevel = 1 ; + } +#Friction velocity +'Friction velocity' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + indicatorOfTypeOfLevel = 110 ; + } +#Delay of the GPS signal trough the (total) atm. +'Delay of the GPS signal trough the (total) atm.' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'Delay of the GPS signal trough wet atmos.' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'Delay of the GPS signal trough dry atmos.' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ozone Mixing Ratio +'Ozone Mixing Ratio' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + indicatorOfTypeOfLevel = 110 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'Air concentration of Ruthenium 103 (Ru103- concentration)' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } +#Ru103-dry deposition +'Ru103-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ru103-wet deposition +'Ru103-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Strontium 90 +'Air concentration of Strontium 90' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } +#Sr90-dry deposition +'Sr90-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 1 ; + } +#Sr90-wet deposition +'Sr90-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-concentration +'I131-concentration' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } +#I131-dry deposition +'I131-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-wet deposition +'I131-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-concentration +'Cs137-concentration' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } +#Cs137-dry deposition +'Cs137-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-wet deposition +'Cs137-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 205 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'Air concentration of Tellurium 132 (Te132-concentration)' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } +#Te132-dry deposition +'Te132-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + indicatorOfTypeOfLevel = 1 ; + } +#Te132-wet deposition +'Te132-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'Air concentration of Zirconium 95 (Zr95-concentration)' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } +#Zr95-dry deposition +'Zr95-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + indicatorOfTypeOfLevel = 1 ; + } +#Zr95-wet deposition +'Zr95-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'Air concentration of Krypton 85 (Kr85-concentration)' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } +#Kr85-dry deposition +'Kr85-dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + indicatorOfTypeOfLevel = 1 ; + } +#Kr85-wet deposition +'Kr85-wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - concentration +'TRACER - concentration' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } +#TRACER - dry deposition +'TRACER - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - wet deposition +'TRACER - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'Air concentration of Xenon 133 (Xe133 - concentration)' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } +#Xe133 - dry deposition +'Xe133 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + indicatorOfTypeOfLevel = 1 ; + } +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - concentration +'I131g - concentration' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - wet deposition +'I131g - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - concentration +'I131o - concentration' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } +#I131o - dry deposition +'I131o - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - wet deposition +'I131o - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Barium 40 +'Air concentration of Barium 40' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } +#Ba140 - dry deposition +'Ba140 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ba140 - wet deposition +'Ba140 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + indicatorOfTypeOfLevel = 1 ; + } +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'UV_Index_Maximum_W UV_Index clouded (W), daily maximum' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + indicatorOfTypeOfLevel = 1 ; + } +#wind shear +'wind shear' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#storm relative helicity +'storm relative helicity' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#absolute vorticity advection +'absolute vorticity advection' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 100 ; + } +#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) +'NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407)' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund +'Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } +#weather interpretation (WMO) +'weather interpretation (WMO)' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 1 ; + } +#geostrophische Vorticityadvektion +'geostrophische Vorticityadvektion' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 100 ; + } +#Geo Temperatur Adv geostrophische Schichtdickenadvektion +'Geo Temperatur Adv geostrophische Schichtdickenadvektion' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + indicatorOfTypeOfLevel = 101 ; + } +#Schichtdicken-Advektion +'Schichtdicken-Advektion' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + indicatorOfTypeOfLevel = 101 ; + } +#Winddivergenz +'Winddivergenz' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + indicatorOfTypeOfLevel = 100 ; + } +#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen +'Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 100 ; + } +#Isentrope potentielle Vorticity +'Isentrope potentielle Vorticity' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } +#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen +'XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 100 ; + } +#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen +'YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 100 ; + } +#Druck einer isentropen Flaeche +'Druck einer isentropen Flaeche' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } +#KO index +'KO index' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + indicatorOfTypeOfLevel = 1 ; + } +#Aequivalentpotentielle Temperatur +'Aequivalentpotentielle Temperatur' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 100 ; + } +#Ceiling +'Ceiling' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + indicatorOfTypeOfLevel = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Icing Grade (1=LGT,2=MOD,3=SEV)' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 100 ; + } +#modified cloud depth for media +'modified cloud depth for media' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#modified cloud cover for media +'modified cloud cover for media' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'Monthly Mean of RMS of difference FG-AN of geopotential' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'Monthly Mean of RMS of difference IA-AN of geopotential' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'Monthly Mean of RMS of difference FG-AN of relative humidity' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'Monthly Mean of RMS of difference IA-AN of relative humidity' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'Monthly Mean of RMS of difference FG-AN of temperature' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'Monthly Mean of RMS of difference IA-AN of temperature' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 4 ; + } +#smoothed forecast, temperature +'smoothed forecast, temperature' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, maximum temp. +'smoothed forecast, maximum temp.' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, minimum temp. +'smoothed forecast, minimum temp.' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, dew point temp. +'smoothed forecast, dew point temp.' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, u comp. of wind +'smoothed forecast, u comp. of wind' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, v comp. of wind +'smoothed forecast, v comp. of wind' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, total precipitation rate +'smoothed forecast, total precipitation rate' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, total cloud cover +'smoothed forecast, total cloud cover' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover low +'smoothed forecast, cloud cover low' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover medium +'smoothed forecast, cloud cover medium' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover high +'smoothed forecast, cloud cover high' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'smoothed forecast, large-scale snowfall rate w.e.' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, soil temperature +'smoothed forecast, soil temperature' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#smoothed forecast, wind speed (gust) +'smoothed forecast, wind speed (gust)' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#calibrated forecast, total precipitation rate +'calibrated forecast, total precipitation rate' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'calibrated forecast, large-scale snowfall rate w.e.' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, wind speed (gust) +'calibrated forecast, wind speed (gust)' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/paramId.def b/eccodes/definitions/grib1/localConcepts/cnmc/paramId.def new file mode 100644 index 00000000..60a31048 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/cnmc/paramId.def @@ -0,0 +1,2435 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure (S) (not reduced) +'500000' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure +'500001' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Pressure Reduced to MSL +'500002' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 102 ; + } +#Pressure Tendency (S) +'500003' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (S) +'500004' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (full lev) +'500005' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } +#Geopotential +'500006' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Geometric Height of the earths surface above sea level +'500007' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'500008' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } +#Total Column Integrated Ozone +'500009' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature (G) +'500010' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } +#2m Temperature (AV) +'500012' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Climat. temperature, 2m Temperature +'500013' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Temperature +'500014' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#Max 2m Temperature (i) +'500015' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#Min 2m Temperature (i) +'500016' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#2m Dew Point Temperature +'500017' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2m Dew Point Temperature (AV) +'500018' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Radar spectra (1) +'500019' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + } +#Wave spectra (1) +'500020' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'500021' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'500022' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind Direction (DD_10M) +'500023' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind Direction (DD) +'500024' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Wind speed (SP_10M) +'500025' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind speed (SP) +'500026' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 110 ; + } +#U component of wind +'500027' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#U component of wind +'500028' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'500029' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#V component of wind +'500030' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'500031' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vertical Velocity (Geometric) (w) +'500032' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } +#Specific Humidity (S) +'500033' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } +#Specific Humidity (2m) +'500034' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Specific Humidity +'500035' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#2m Relative Humidity +'500036' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Relative Humidity +'500037' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#Total column integrated water vapour +'500038' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + indicatorOfTypeOfLevel = 1 ; + } +#Evaporation (s) +'500039' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Total Column-Integrated Cloud Ice +'500040' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Precipitation rate (S) +'500041' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale Precipitation rate +'500042' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } +#Convective Precipitation rate +'500043' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow depth water equivalent +'500044' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow Depth +'500045' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Cloud Cover +'500046' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Cloud Cover +'500047' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Cover (800 hPa - Soil) +'500048' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (400 - 800 hPa) +'500049' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (0 - 400 hPa) +'500050' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Column-Integrated Cloud Water +'500051' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'500052' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale snowfall rate water equivalent (s) +'500053' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Land Cover (1=land, 0=sea) +'500054' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + indicatorOfTypeOfLevel = 1 ; + } +#Surface Roughness length Surface Roughness +'500055' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'500056' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'500057' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'500058' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } +#Soil Temperature (41 cm depth) +'500059' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } +#Soil Temperature +'500060' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } +#Soil Temperature +'500061' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#Column-integrated Soil Moisture +'500062' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; + topLevel = 100 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'500063' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + topLevel = 0 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'500064' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#Plant cover +'500065' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + indicatorOfTypeOfLevel = 1 ; + } +#Water Runoff (10-100) +'500066' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + timeRangeIndicator = 4 ; + bottomLevel = 100 ; + } +#Water Runoff (10-190) +'500067' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + timeRangeIndicator = 4 ; + bottomLevel = 190 ; + } +#Water Runoff (s) +'500068' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + topLevel = 0 ; + timeRangeIndicator = 4 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'500069' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Thickness +'500070' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + indicatorOfTypeOfLevel = 1 ; + } +#Significant height of combined wind waves and swell +'500071' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'500072' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'500073' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'500074' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'500075' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'500076' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'500077' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Net short wave radiation flux (m) (at the surface) +'500078' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'500079' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (at the surface) +'500080' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'500081' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net short wave radiation flux (m) (on the model top) +'500082' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'500083' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'500084' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'500085' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Latent Heat Net Flux (m) +'500086' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Sensible Heat Net Flux (m) +'500087' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, U-Component (m) +'500088' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, V-Component (m) +'500089' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation (m) (at the surface) +'500090' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation +'500091' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Solar radiation heating rate +'500092' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + indicatorOfTypeOfLevel = 110 ; + } +#Thermal radiation heating rate +'500093' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + indicatorOfTypeOfLevel = 110 ; + } +#Latent heat flux from bare soil +'500094' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Latent heat flux from plants +'500095' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } +#Sunshine +'500096' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } +#Stomatal Resistance +'500097' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Cloud cover +'500098' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#Non-Convective Cloud Cover, grid scale +'500099' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Mixing Ratio +'500100' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Ice Mixing Ratio +'500101' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 110 ; + } +#Rain mixing ratio +'500102' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + indicatorOfTypeOfLevel = 110 ; + } +#Snow mixing ratio +'500103' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated rain +'500104' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total column integrated snow +'500105' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + indicatorOfTypeOfLevel = 1 ; + } +#Grauple +'500106' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated grauple +'500107' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } +#Total Column integrated water (all components incl. precipitation) +'500108' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertical integral of divergence of total water content (s) +'500109' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + indicatorOfTypeOfLevel = 1 ; + } +#subgrid scale cloud water +'500110' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + indicatorOfTypeOfLevel = 110 ; + } +#subgridscale cloud ice +'500111' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#cloud cover CH (0..8) +'500112' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'500113' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'500114' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#cloud base above msl, shallow convection +'500115' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } +#cloud top above msl, shallow convection +'500116' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } +#specific cloud water content, convective cloud +'500117' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 110 ; + } +#Height of Convective Cloud Base (i) +'500118' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } +#Height of Convective Cloud Top (i) +'500119' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'500120' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'500121' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to convection +'500122' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to convection +'500123' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 110 ; + } +#zonal wind tendency due to convection +'500124' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to convection +'500125' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 110 ; + } +#height of top of dry convection +'500126' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'500127' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } +#Height of snow fall limit +'500128' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } +#Tendency of specific cloud liquid water content due to conversion +'500129' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud ice content due to convection +'500130' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'500131' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 110 ; + } +#Large scale rain rate +'500132' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale snowfall rate water equivalent +'500133' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale rain rate (s) +'500134' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Convective rain rate +'500135' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective snowfall rate water equivalent +'500136' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective rain rate (s) +'500137' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#rain amount, grid-scale plus convective +'500138' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#snow amount, grid-scale plus convective +'500139' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to grid scale precipation +'500140' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to grid scale precipitation +'500141' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'500142' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + indicatorOfTypeOfLevel = 110 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'500143' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + indicatorOfTypeOfLevel = 1 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'500144' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 110 ; + } +#Graupel (snow pellets) precipitation rate +'500145' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 1 ; + } +#Graupel (snow pellets) precipitation rate +'500146' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow density +'500147' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure perturbation +'500148' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + indicatorOfTypeOfLevel = 110 ; + } +#supercell detection index 1 (rot. up+down drafts) +'500149' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + indicatorOfTypeOfLevel = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'500150' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, most unstable +'500151' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, most unstable +'500152' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, mean layer +'500153' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, mean layer +'500154' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective turbulent kinetic enery +'500155' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } +#Tendency of turbulent kinetic energy +'500156' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + indicatorOfTypeOfLevel = 109 ; + } +#Kinetic Energy +'500157' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + indicatorOfTypeOfLevel = 110 ; + } +#Turbulent Kinetic Energy +'500158' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusioncoefficient for momentum +'500159' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'500160' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent transfer coefficient for impulse +'500161' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + indicatorOfTypeOfLevel = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'500162' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + indicatorOfTypeOfLevel = 1 ; + } +#mixed layer depth +'500163' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + indicatorOfTypeOfLevel = 1 ; + } +#maximum Wind 10m +'500164' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + timeRangeIndicator = 2 ; + } +#Air concentration of Ruthenium 103 +'500165' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + indicatorOfTypeOfLevel = 100 ; + } +#Soil Temperature (multilayers) +'500166' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } +#Column-integrated Soil Moisture (multilayers) +'500167' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } +#soil ice content (multilayers) +'500168' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } +#Plant Canopy Surface Water +'500169' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow temperature (top of snow) +'500170' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#Minimal Stomatal Resistance +'500171' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Temperature +'500172' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'500173' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'500174' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } +#Base reflectivity (cmax) +'500175' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } +#unknown +'500176' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 110 ; + } +#Effective transmissivity of solar radiation +'500177' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 110 ; + } +#sum of contributions to evaporation +'500178' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } +#total transpiration from all soil layers +'500179' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } +#total forcing at soil surface +'500180' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#residuum of soil moisture +'500181' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } +#Massflux at convective cloud base +'500182' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy +'500183' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + indicatorOfTypeOfLevel = 1 ; + } +#moisture convergence for Kuo-type closure +'500184' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + indicatorOfTypeOfLevel = 1 ; + } +#total wave direction +'500185' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } +#wind sea mean period +'500186' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 102 ; + } +#wind sea peak period +'500187' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } +#swell mean period +'500188' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 102 ; + } +#swell peak period +'500189' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } +#total wave peak period +'500190' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } +#total wave mean period +'500191' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } +#total Tm1 period +'500192' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } +#total Tm2 period +'500193' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } +#total directional spread +'500194' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } +#analysis error(standard deviation), geopotential(gpm) +'500195' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), u-comp. of wind +'500196' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), v-comp. of wind +'500197' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + level = 100 ; + } +#zonal wind tendency due to subgrid scale oro. +'500198' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to subgrid scale oro. +'500199' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + indicatorOfTypeOfLevel = 110 ; + } +#Standard deviation of sub-grid scale orography +'500200' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + indicatorOfTypeOfLevel = 1 ; + } +#Anisotropy of sub-gridscale orography +'500201' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + indicatorOfTypeOfLevel = 1 ; + } +#Angle of sub-gridscale orography +'500202' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 1 ; + } +#Slope of sub-gridscale orography +'500203' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + indicatorOfTypeOfLevel = 1 ; + } +#surface emissivity +'500204' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + timeRangeIndicator = 0 ; + } +#Soil Type +'500205' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } +#Leaf area index +'500206' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#root depth of vegetation +'500207' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of ozone maximum (climatological) +'500208' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertically integrated ozone content (climatological) +'500209' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the vegetation phase +'500210' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the quiescent phas +'500211' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 1 ; + } +#Max Leaf area index +'500212' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 1 ; + } +#Min Leaf area index +'500213' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + indicatorOfTypeOfLevel = 1 ; + } +#Orographie + Land-Meer-Verteilung +'500214' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } +#variance of soil moisture content (0-10) +'500215' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#variance of soil moisture content (10-100) +'500216' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#evergreen forest +'500217' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#deciduous forest +'500218' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#normalized differential vegetation index +'500219' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } +#normalized differential vegetation index (NDVI) +'500220' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 3 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500221' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500222' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Total sulfate aerosol +'500223' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } +#Total sulfate aerosol (12M) +'500224' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } +#Total soil dust aerosol +'500225' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } +#Total soil dust aerosol (12M) +'500226' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } +#Organic aerosol +'500227' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } +#Organic aerosol (12M) +'500228' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } +#Black carbon aerosol +'500229' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } +#Black carbon aerosol (12M) +'500230' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } +#Sea salt aerosol +'500231' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } +#Sea salt aerosol (12M) +'500232' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } +#tendency of specific humidity +'500233' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + indicatorOfTypeOfLevel = 110 ; + } +#water vapor flux +'500234' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + indicatorOfTypeOfLevel = 1 ; + } +#Coriolis parameter +'500235' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical latitude +'500236' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical longitude +'500237' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + indicatorOfTypeOfLevel = 1 ; + } +#Friction velocity +'500238' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + indicatorOfTypeOfLevel = 110 ; + } +#Delay of the GPS signal trough the (total) atm. +'500239' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'500240' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'500241' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ozone Mixing Ratio +'500242' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + indicatorOfTypeOfLevel = 110 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'500243' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } +#Ru103-dry deposition +'500244' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ru103-wet deposition +'500245' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Strontium 90 +'500246' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } +#Sr90-dry deposition +'500247' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 1 ; + } +#Sr90-wet deposition +'500248' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-concentration +'500249' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } +#I131-dry deposition +'500250' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-wet deposition +'500251' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-concentration +'500252' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } +#Cs137-dry deposition +'500253' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-wet deposition +'500254' = { + table2Version = 202 ; + indicatorOfParameter = 205 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'500255' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } +#Te132-dry deposition +'500256' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + indicatorOfTypeOfLevel = 1 ; + } +#Te132-wet deposition +'500257' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'500258' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } +#Zr95-dry deposition +'500259' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + indicatorOfTypeOfLevel = 1 ; + } +#Zr95-wet deposition +'500260' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'500261' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } +#Kr85-dry deposition +'500262' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + indicatorOfTypeOfLevel = 1 ; + } +#Kr85-wet deposition +'500263' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - concentration +'500264' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } +#TRACER - dry deposition +'500265' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - wet deposition +'500266' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'500267' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } +#Xe133 - dry deposition +'500268' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + indicatorOfTypeOfLevel = 1 ; + } +#Xe133 - wet deposition +'500269' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - concentration +'500270' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } +#Xe133 - wet deposition +'500271' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - wet deposition +'500272' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - concentration +'500273' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } +#I131o - dry deposition +'500274' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - wet deposition +'500275' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Barium 40 +'500276' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } +#Ba140 - dry deposition +'500277' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ba140 - wet deposition +'500278' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + indicatorOfTypeOfLevel = 1 ; + } +#u-momentum flux due to SSO-effects +'500279' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#u-momentum flux due to SSO-effects +'500280' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#v-momentum flux due to SSO-effects +'500281' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#v-momentum flux due to SSO-effects +'500282' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Gravity wave dissipation (vertical integral) +'500283' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Gravity wave dissipation (vertical integral) +'500284' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'500285' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + indicatorOfTypeOfLevel = 1 ; + } +#wind shear +'500286' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#storm relative helicity +'500287' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#absolute vorticity advection +'500288' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 100 ; + } +#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) +'500289' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund +'500290' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'500291' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } +#weather interpretation (WMO) +'500292' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 1 ; + } +#geostrophische Vorticityadvektion +'500293' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 100 ; + } +#Geo Temperatur Adv geostrophische Schichtdickenadvektion +'500294' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + indicatorOfTypeOfLevel = 101 ; + } +#Schichtdicken-Advektion +'500295' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + indicatorOfTypeOfLevel = 101 ; + } +#Winddivergenz +'500296' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + indicatorOfTypeOfLevel = 100 ; + } +#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen +'500297' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 100 ; + } +#Isentrope potentielle Vorticity +'500298' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } +#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen +'500299' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 100 ; + } +#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen +'500300' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 100 ; + } +#Druck einer isentropen Flaeche +'500301' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } +#KO index +'500302' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + indicatorOfTypeOfLevel = 1 ; + } +#Aequivalentpotentielle Temperatur +'500303' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 100 ; + } +#Ceiling +'500304' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + indicatorOfTypeOfLevel = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'500305' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 100 ; + } +#modified cloud depth for media +'500306' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#modified cloud cover for media +'500307' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'500308' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'500309' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'500310' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'500311' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'500312' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'500313' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'500314' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'500315' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'500316' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'500317' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'500318' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'500319' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'500320' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'500321' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'500322' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'500323' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } +#Synth. Sat. brightness temperature cloudy +'500324' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'500325' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'500326' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500327' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'500328' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'500329' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'500330' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500331' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature clear sky +'500332' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500333' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'500334' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature cloudy +'500335' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance clear sky +'500336' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500337' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'500338' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance cloudy +'500339' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'500340' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500341' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500342' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500343' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500344' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500345' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500346' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'500347' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'500348' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500349' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500350' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500351' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500352' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500353' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500354' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'500355' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'500356' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500357' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500358' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500359' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500360' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500361' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500362' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'500363' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'500364' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500365' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500366' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500367' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500368' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500369' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500370' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'500371' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 4 ; + } +#smoothed forecast, temperature +'500372' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, maximum temp. +'500373' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, minimum temp. +'500374' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, dew point temp. +'500375' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, u comp. of wind +'500376' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, v comp. of wind +'500377' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, total precipitation rate +'500378' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, total cloud cover +'500379' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover low +'500380' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover medium +'500381' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover high +'500382' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'500383' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, soil temperature +'500384' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#smoothed forecast, wind speed (gust) +'500385' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#calibrated forecast, total precipitation rate +'500386' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'500387' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, wind speed (gust) +'500388' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/shortName.def b/eccodes/definitions/grib1/localConcepts/cnmc/shortName.def new file mode 100644 index 00000000..dcac8f56 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/cnmc/shortName.def @@ -0,0 +1,2435 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure (S) (not reduced) +'ps' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure +'p' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Pressure Reduced to MSL +'pmsl' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 102 ; + } +#Pressure Tendency (S) +'dpsdt' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (S) +'fis' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (full lev) +'fif' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } +#Geopotential +'fi' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Geometric Height of the earths surface above sea level +'hsurf' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'hhl' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } +#Total Column Integrated Ozone +'to3' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature (G) +'t_g' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } +#2m Temperature (AV) +'t_2m_av' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Climat. temperature, 2m Temperature +'t_2m_cl' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Temperature +'t' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#Max 2m Temperature (i) +'tmax_2m' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#Min 2m Temperature (i) +'tmin_2m' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#2m Dew Point Temperature +'td_2m' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2m Dew Point Temperature (AV) +'td_2m_av' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Radar spectra (1) +'dbz_max' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind Direction (DD_10M) +'dd_10m' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind Direction (DD) +'dd' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Wind speed (SP_10M) +'sp_10m' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind speed (SP) +'sp' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 110 ; + } +#U component of wind +'u_10m' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#U component of wind +'u' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v_10m' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#V component of wind +'v' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'omega' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vertical Velocity (Geometric) (w) +'w' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } +#Specific Humidity (S) +'qv_s' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } +#Specific Humidity (2m) +'qv_2m' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Specific Humidity +'qv' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#2m Relative Humidity +'relhum_2m' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Relative Humidity +'relhum' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#Total column integrated water vapour +'tqv' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + indicatorOfTypeOfLevel = 1 ; + } +#Evaporation (s) +'aevap_s' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Total Column-Integrated Cloud Ice +'tqi' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Precipitation rate (S) +'tot_prec' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale Precipitation rate +'prec_gsp' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } +#Convective Precipitation rate +'prec_con' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow depth water equivalent +'w_snow' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow Depth +'h_snow' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Cloud Cover +'clct' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Cloud Cover +'clc_con' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Cover (800 hPa - Soil) +'clcl' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (400 - 800 hPa) +'clcm' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (0 - 400 hPa) +'clch' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Column-Integrated Cloud Water +'tqc' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'snow_con' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale snowfall rate water equivalent (s) +'snow_gsp' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Land Cover (1=land, 0=sea) +'fr_land' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + indicatorOfTypeOfLevel = 1 ; + } +#Surface Roughness length Surface Roughness +'z0' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'alb_rad' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'albedo_b' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'t_cl' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } +#Soil Temperature (41 cm depth) +'t_cl_lm' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } +#Soil Temperature +'t_m' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } +#Soil Temperature +'t_s' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#Column-integrated Soil Moisture +'w_cl' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; + topLevel = 100 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'w_g1' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + topLevel = 0 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'w_g2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; + topLevel = 10 ; + } +#Plant cover +'plcov' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + indicatorOfTypeOfLevel = 1 ; + } +#Water Runoff (10-100) +'runoff_g' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + bottomLevel = 100 ; + topLevel = 10 ; + } +#Water Runoff (10-190) +'runoff_g_lm' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + bottomLevel = 190 ; + topLevel = 10 ; + } +#Water Runoff (s) +'runoff_s' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + topLevel = 0 ; + timeRangeIndicator = 4 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'fr_ice' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Thickness +'h_ice' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + indicatorOfTypeOfLevel = 1 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'mdww' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'mdps' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'shps' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'mpps' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Net short wave radiation flux (m) (at the surface) +'asob_s' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'sobs_rad' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (at the surface) +'athb_s' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'thbs_rad' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net short wave radiation flux (m) (on the model top) +'asob_t' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'sobt_rad' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'athb_t' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'thbt_rad' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Latent Heat Net Flux (m) +'alhfl_s' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Sensible Heat Net Flux (m) +'ashfl_s' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, U-Component (m) +'aumfl_s' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, V-Component (m) +'avmfl_s' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation (m) (at the surface) +'apab_s' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation +'pabs_rad' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Solar radiation heating rate +'sohr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + indicatorOfTypeOfLevel = 110 ; + } +#Thermal radiation heating rate +'thhr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + indicatorOfTypeOfLevel = 110 ; + } +#Latent heat flux from bare soil +'alhfl_bs' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Latent heat flux from plants +'alhfl_pl' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } +#Sunshine +'dursun' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } +#Stomatal Resistance +'rstom' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Cloud cover +'clc' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#Non-Convective Cloud Cover, grid scale +'clc_sgs' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Mixing Ratio +'qc' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Ice Mixing Ratio +'qi' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 110 ; + } +#Rain mixing ratio +'qr' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + indicatorOfTypeOfLevel = 110 ; + } +#Snow mixing ratio +'qs' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated rain +'tqr' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total column integrated snow +'tqs' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + indicatorOfTypeOfLevel = 1 ; + } +#Grauple +'qg' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated grauple +'tqg' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } +#Total Column integrated water (all components incl. precipitation) +'twater' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertical integral of divergence of total water content (s) +'tdiv_hum' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + indicatorOfTypeOfLevel = 1 ; + } +#subgrid scale cloud water +'qc_rad' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + indicatorOfTypeOfLevel = 110 ; + } +#subgridscale cloud ice +'qi_rad' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#cloud cover CH (0..8) +'clch_8' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'clcm_8' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'clcl_8' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#cloud base above msl, shallow convection +'hbas_sc' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } +#cloud top above msl, shallow convection +'htop_sc' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } +#specific cloud water content, convective cloud +'clw_con' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 110 ; + } +#Height of Convective Cloud Base (i) +'hbas_con' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } +#Height of Convective Cloud Top (i) +'htop_con' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'bas_con' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'top_con' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to convection +'dt_con' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to convection +'dqv_con' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 110 ; + } +#zonal wind tendency due to convection +'du_con' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to convection +'dv_con' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 110 ; + } +#height of top of dry convection +'htop_dc' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'hzerocl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } +#Height of snow fall limit +'snowlmt' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } +#Tendency of specific cloud liquid water content due to conversion +'dqc_con' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud ice content due to convection +'dqi_con' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'q_sedim' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 110 ; + } +#Large scale rain rate +'prr_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale snowfall rate water equivalent +'prs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale rain rate (s) +'rain_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Convective rain rate +'prr_con' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective snowfall rate water equivalent +'prs_con' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective rain rate (s) +'rain_con' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#rain amount, grid-scale plus convective +'rr_f' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#snow amount, grid-scale plus convective +'rr_c' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to grid scale precipation +'dt_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to grid scale precipitation +'dqv_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'dqc_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + indicatorOfTypeOfLevel = 110 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'freshsnw' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + indicatorOfTypeOfLevel = 1 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'dqi_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 110 ; + } +#Graupel (snow pellets) precipitation rate +'prg_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 1 ; + } +#Graupel (snow pellets) precipitation rate +'grau_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow density +'rho_snow' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure perturbation +'pp' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + indicatorOfTypeOfLevel = 110 ; + } +#supercell detection index 1 (rot. up+down drafts) +'sdi_1' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + indicatorOfTypeOfLevel = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'sdi_2' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, most unstable +'cape_mu' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, most unstable +'cin_mu' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, mean layer +'cape_ml' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, mean layer +'cin_ml' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective turbulent kinetic enery +'tke_con' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } +#Tendency of turbulent kinetic energy +'tketens' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + indicatorOfTypeOfLevel = 109 ; + } +#Kinetic Energy +'ke' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + indicatorOfTypeOfLevel = 110 ; + } +#Turbulent Kinetic Energy +'tke' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusioncoefficient for momentum +'tkvm' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'tkvh' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent transfer coefficient for impulse +'tcm' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + indicatorOfTypeOfLevel = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'tch' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + indicatorOfTypeOfLevel = 1 ; + } +#mixed layer depth +'mh' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + indicatorOfTypeOfLevel = 1 ; + } +#maximum Wind 10m +'vmax_10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + timeRangeIndicator = 2 ; + } +#Air concentration of Ruthenium 103 +'ru-103' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + indicatorOfTypeOfLevel = 100 ; + } +#Soil Temperature (multilayers) +'t_so' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } +#Column-integrated Soil Moisture (multilayers) +'w_so' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } +#soil ice content (multilayers) +'w_so_ice' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } +#Plant Canopy Surface Water +'w_i' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow temperature (top of snow) +'t_snow' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#Minimal Stomatal Resistance +'prs_min' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Temperature +'t_ice' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'dbz_850' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'dbz' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } +#Base reflectivity (cmax) +'dbz_cmax' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } +#unknown +'dttdiv' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 110 ; + } +#Effective transmissivity of solar radiation +'sotr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 110 ; + } +#sum of contributions to evaporation +'evatra_sum' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } +#total transpiration from all soil layers +'tra_sum' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } +#total forcing at soil surface +'totforce_s' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#residuum of soil moisture +'resid_wso' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } +#Massflux at convective cloud base +'mflx_con' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy +'cape_con' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + indicatorOfTypeOfLevel = 1 ; + } +#moisture convergence for Kuo-type closure +'qcvg_con' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + indicatorOfTypeOfLevel = 1 ; + } +#total wave direction +'mwd' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } +#wind sea mean period +'mwp_x' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 102 ; + } +#wind sea peak period +'ppww' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } +#swell mean period +'mpp_s' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 102 ; + } +#swell peak period +'ppps' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } +#total wave peak period +'pp1d' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } +#total wave mean period +'tm10' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } +#total Tm1 period +'tm01' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } +#total Tm2 period +'tm02' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } +#total directional spread +'sprd' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } +#analysis error(standard deviation), geopotential(gpm) +'ana_err_fi' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), u-comp. of wind +'ana_err_u' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), v-comp. of wind +'ana_err_v' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + level = 100 ; + } +#zonal wind tendency due to subgrid scale oro. +'du_sso' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to subgrid scale oro. +'dv_sso' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + indicatorOfTypeOfLevel = 110 ; + } +#Standard deviation of sub-grid scale orography +'sso_stdh' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + indicatorOfTypeOfLevel = 1 ; + } +#Anisotropy of sub-gridscale orography +'sso_gamma' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + indicatorOfTypeOfLevel = 1 ; + } +#Angle of sub-gridscale orography +'sso_theta' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 1 ; + } +#Slope of sub-gridscale orography +'sso_sigma' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + indicatorOfTypeOfLevel = 1 ; + } +#surface emissivity +'emis_rad' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + timeRangeIndicator = 0 ; + } +#Soil Type +'soiltyp' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } +#Leaf area index +'lai' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#root depth of vegetation +'rootdp' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of ozone maximum (climatological) +'hmo3' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertically integrated ozone content (climatological) +'vio3' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the vegetation phase +'plcov_mx' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the quiescent phas +'plcov_mn' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 1 ; + } +#Max Leaf area index +'lai_mx' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 1 ; + } +#Min Leaf area index +'lai_mn' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + indicatorOfTypeOfLevel = 1 ; + } +#Orographie + Land-Meer-Verteilung +'oro_mod' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } +#variance of soil moisture content (0-10) +'wvar1' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#variance of soil moisture content (10-100) +'wvar2' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; + topLevel = 10 ; + } +#evergreen forest +'for_e' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#deciduous forest +'for_d' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#normalized differential vegetation index +'ndvi' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } +#normalized differential vegetation index (NDVI) +'ndvi_max' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 3 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ndvi_mrat' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ndviratio' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Total sulfate aerosol +'aer_so4' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } +#Total sulfate aerosol (12M) +'aer_so412' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } +#Total soil dust aerosol +'aer_dust' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } +#Total soil dust aerosol (12M) +'aer_dust12' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } +#Organic aerosol +'aer_org' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } +#Organic aerosol (12M) +'aer_org12' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } +#Black carbon aerosol +'aer_bc' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } +#Black carbon aerosol (12M) +'aer_bc12' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } +#Sea salt aerosol +'aer_ss' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } +#Sea salt aerosol (12M) +'aer_ss12' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } +#tendency of specific humidity +'dqvdt' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + indicatorOfTypeOfLevel = 110 ; + } +#water vapor flux +'qvsflx' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + indicatorOfTypeOfLevel = 1 ; + } +#Coriolis parameter +'fc' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical latitude +'rlat' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical longitude +'rlon' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + indicatorOfTypeOfLevel = 1 ; + } +#Friction velocity +'ustr' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + indicatorOfTypeOfLevel = 110 ; + } +#Delay of the GPS signal trough the (total) atm. +'ztd' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'zwd' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'zhd' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ozone Mixing Ratio +'o3' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + indicatorOfTypeOfLevel = 110 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'ru-103' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } +#Ru103-dry deposition +'ru-103d' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ru103-wet deposition +'ru-103w' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Strontium 90 +'sr-90' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } +#Sr90-dry deposition +'sr-90d' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 1 ; + } +#Sr90-wet deposition +'sr-90w' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-concentration +'i-131a' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } +#I131-dry deposition +'i-131ad' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-wet deposition +'i-131aw' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-concentration +'cs-137' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } +#Cs137-dry deposition +'cs-137d' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-wet deposition +'cs-137w' = { + table2Version = 202 ; + indicatorOfParameter = 205 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'te-132' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } +#Te132-dry deposition +'te-132d' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + indicatorOfTypeOfLevel = 1 ; + } +#Te132-wet deposition +'te-132w' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'zr-95' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } +#Zr95-dry deposition +'zr-95d' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + indicatorOfTypeOfLevel = 1 ; + } +#Zr95-wet deposition +'zr-95w' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'kr-85' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } +#Kr85-dry deposition +'kr-85d' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + indicatorOfTypeOfLevel = 1 ; + } +#Kr85-wet deposition +'kr-85w' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - concentration +'tr-2' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } +#TRACER - dry deposition +'tr-2d' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - wet deposition +'tr-2w' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'xe-133' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } +#Xe133 - dry deposition +'xe-133d' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + indicatorOfTypeOfLevel = 1 ; + } +#Xe133 - wet deposition +'xe-133w' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - concentration +'i-131g' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } +#Xe133 - wet deposition +'i-131gd' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - wet deposition +'i-131gw' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - concentration +'i-131o' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } +#I131o - dry deposition +'i-131od' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - wet deposition +'i-131ow' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Barium 40 +'ba-140' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } +#Ba140 - dry deposition +'ba-140d' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ba140 - wet deposition +'ba-140w' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + indicatorOfTypeOfLevel = 1 ; + } +#u-momentum flux due to SSO-effects +'austr_sso' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#u-momentum flux due to SSO-effects +'ustr_sso' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#v-momentum flux due to SSO-effects +'avstr_sso' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#v-momentum flux due to SSO-effects +'vstr_sso' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Gravity wave dissipation (vertical integral) +'avdis_sso' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Gravity wave dissipation (vertical integral) +'vdis_sso' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'uv_max' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + indicatorOfTypeOfLevel = 1 ; + } +#wind shear +'w_shaer' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#storm relative helicity +'srh' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#absolute vorticity advection +'vabs' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 100 ; + } +#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) +'cl_typ' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund +'ccl_gnd' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'ccl_nn' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } +#weather interpretation (WMO) +'ww' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 1 ; + } +#geostrophische Vorticityadvektion +'advorg' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 100 ; + } +#Geo Temperatur Adv geostrophische Schichtdickenadvektion +'advor' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + indicatorOfTypeOfLevel = 101 ; + } +#Schichtdicken-Advektion +'adrtg' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + indicatorOfTypeOfLevel = 101 ; + } +#Winddivergenz +'wdiv' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + indicatorOfTypeOfLevel = 100 ; + } +#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen +'fqn' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 100 ; + } +#Isentrope potentielle Vorticity +'ipv' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } +#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen +'up' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 100 ; + } +#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen +'vp' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 100 ; + } +#Druck einer isentropen Flaeche +'ptheta' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } +#KO index +'ko' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + indicatorOfTypeOfLevel = 1 ; + } +#Aequivalentpotentielle Temperatur +'thetae' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 100 ; + } +#Ceiling +'ceiling' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + indicatorOfTypeOfLevel = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'ice_grd' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 100 ; + } +#modified cloud depth for media +'cldepth' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#modified cloud cover for media +'clct_mod' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'efa-ps' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'eia-ps' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'efa-u' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'eia-u' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'efa-v' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'eia-v' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'efa-fi' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'eia-fi' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'efa-rh' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'eia-rh' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'efa-t' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'eia-t' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'efa-om' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'eia-om' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'efa-ke' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'eia-ke' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } +#Synth. Sat. brightness temperature cloudy +'synme5_bt_cl' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'synme5_bt_cs' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'synme5_rad_cl' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synme5_rad_cs' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'synme6_bt_cl' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'synme6_bt_cs' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'synme6_rad_cl' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synme6_rad_cs' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature clear sky +'synme7_bt_cl_ir11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synme7_bt_cl_wv6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'synme7_bt_cs_ir11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature cloudy +'synme7_bt_cs_wv6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance clear sky +'synme7_rad_cl_ir11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synme7_rad_cl_wv6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'synme7_rad_cs_ir11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance cloudy +'synme7_rad_cs_wv6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_wv6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_wv7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_wv6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_wv7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_wv6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_wv7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_wv6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_wv7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 4 ; + } +#smoothed forecast, temperature +'t_2m_s' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, maximum temp. +'tmax_2m_s' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, minimum temp. +'tmin_2m_s' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, dew point temp. +'td_2m_s' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, u comp. of wind +'u_10m_s' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, v comp. of wind +'v_10m_s' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, total precipitation rate +'tot_prec_s' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, total cloud cover +'clct_s' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover low +'clcl_s' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover medium +'clcm_s' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover high +'clch_s' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'snow_gsp_s' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, soil temperature +'t_s_s' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#smoothed forecast, wind speed (gust) +'vmax_10m_s' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#calibrated forecast, total precipitation rate +'tot_prec_c' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'snow_gsp_c' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, wind speed (gust) +'vmax_10m_c' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/units.def b/eccodes/definitions/grib1/localConcepts/cnmc/units.def new file mode 100644 index 00000000..11853f93 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/cnmc/units.def @@ -0,0 +1,2435 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure (S) (not reduced) +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Pressure Reduced to MSL +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 102 ; + } +#Pressure Tendency (S) +'Pa s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (S) +'m**2 s**-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geopotential (full lev) +'m**2 s**-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Geometric Height of the earths surface above sea level +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } +#Total Column Integrated Ozone +'Dobson' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature (G) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } +#2m Temperature (AV) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Climat. temperature, 2m Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#Max 2m Temperature (i) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#Min 2m Temperature (i) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#2m Dew Point Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2m Dew Point Temperature (AV) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 3 ; + } +#Radar spectra (1) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + } +#Wave spectra (1) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind Direction (DD_10M) +'degrees' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind Direction (DD) +'degrees' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Wind speed (SP_10M) +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#Wind speed (SP) +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 110 ; + } +#U component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#U component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#V component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vertical Velocity (Geometric) (w) +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } +#Specific Humidity (S) +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } +#Specific Humidity (2m) +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Specific Humidity +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#2m Relative Humidity +'%' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Relative Humidity +'%' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#Total column integrated water vapour +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + indicatorOfTypeOfLevel = 1 ; + } +#Evaporation (s) +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Total Column-Integrated Cloud Ice +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Precipitation rate (S) +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } +#Convective Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow depth water equivalent +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow Depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Cloud Cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Cloud Cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Cover (800 hPa - Soil) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (400 - 800 hPa) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cloud Cover (0 - 400 hPa) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total Column-Integrated Cloud Water +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Large-Scale snowfall rate water equivalent (s) +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Land Cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + indicatorOfTypeOfLevel = 1 ; + } +#Surface Roughness length Surface Roughness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + } +#Albedo (in short-wave) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } +#Soil Temperature (41 cm depth) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#Column-integrated Soil Moisture +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; + topLevel = 100 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; + topLevel = 10 ; + } +#Plant cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + indicatorOfTypeOfLevel = 1 ; + } +#Water Runoff (10-100) +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#Water Runoff (10-190) +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; + topLevel = 10 ; + bottomLevel = 190 ; + } +#Water Runoff (s) +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 112 ; + bottomLevel = 10 ; + timeRangeIndicator = 4 ; + topLevel = 0 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Thickness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + indicatorOfTypeOfLevel = 1 ; + } +#Significant height of combined wind waves and swell +'m' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Net short wave radiation flux (m) (at the surface) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (at the surface) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Net short wave radiation flux (m) (on the model top) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net short wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } +#Net long wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 0 ; + } +#Latent Heat Net Flux (m) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Sensible Heat Net Flux (m) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, U-Component (m) +'N m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Momentum Flux, V-Component (m) +'N m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation (m) (at the surface) +'W m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Photosynthetically active radiation +'W m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Solar radiation heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + indicatorOfTypeOfLevel = 110 ; + } +#Thermal radiation heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + indicatorOfTypeOfLevel = 110 ; + } +#Latent heat flux from bare soil +'W m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Latent heat flux from plants +'W m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } +#Sunshine +'~' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } +#Stomatal Resistance +'s m**-1' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Cloud cover +'%' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#Non-Convective Cloud Cover, grid scale +'%' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Mixing Ratio +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 110 ; + } +#Cloud Ice Mixing Ratio +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 110 ; + } +#Rain mixing ratio +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + indicatorOfTypeOfLevel = 110 ; + } +#Snow mixing ratio +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated rain +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + indicatorOfTypeOfLevel = 1 ; + } +#Total column integrated snow +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + indicatorOfTypeOfLevel = 1 ; + } +#Grauple +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + indicatorOfTypeOfLevel = 110 ; + } +#Total column integrated grauple +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } +#Total Column integrated water (all components incl. precipitation) +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertical integral of divergence of total water content (s) +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + indicatorOfTypeOfLevel = 1 ; + } +#subgrid scale cloud water +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + indicatorOfTypeOfLevel = 110 ; + } +#subgridscale cloud ice +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#cloud cover CH (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#cloud base above msl, shallow convection +'m' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } +#cloud top above msl, shallow convection +'m' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } +#specific cloud water content, convective cloud +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 110 ; + } +#Height of Convective Cloud Base (i) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } +#Height of Convective Cloud Top (i) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to convection +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to convection +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 110 ; + } +#zonal wind tendency due to convection +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to convection +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 110 ; + } +#height of top of dry convection +'m' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'m' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } +#Height of snow fall limit +'m' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } +#Tendency of specific cloud liquid water content due to conversion +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud ice content due to convection +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 110 ; + } +#Large scale rain rate +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 1 ; + } +#Large scale rain rate (s) +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Convective rain rate +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective rain rate (s) +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#rain amount, grid-scale plus convective +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#snow amount, grid-scale plus convective +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Temperature tendency due to grid scale precipation +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 110 ; + } +#Specific humitiy tendency due to grid scale precipitation +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 110 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + indicatorOfTypeOfLevel = 110 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + indicatorOfTypeOfLevel = 1 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'kg kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 110 ; + } +#Graupel (snow pellets) precipitation rate +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 1 ; + } +#Graupel (snow pellets) precipitation rate +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 4 ; + } +#Snow density +'kg m**-3' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 1 ; + } +#Pressure perturbation +'Pa' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + indicatorOfTypeOfLevel = 110 ; + } +#supercell detection index 1 (rot. up+down drafts) +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + indicatorOfTypeOfLevel = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, most unstable +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, most unstable +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy, mean layer +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Inhibition, mean layer +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective turbulent kinetic enery +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } +#Tendency of turbulent kinetic energy +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + indicatorOfTypeOfLevel = 109 ; + } +#Kinetic Energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + indicatorOfTypeOfLevel = 110 ; + } +#Turbulent Kinetic Energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusioncoefficient for momentum +'m**2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'m**2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 109 ; + } +#Turbulent transfer coefficient for impulse +'~' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + indicatorOfTypeOfLevel = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + indicatorOfTypeOfLevel = 1 ; + } +#mixed layer depth +'m' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + indicatorOfTypeOfLevel = 1 ; + } +#maximum Wind 10m +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + timeRangeIndicator = 2 ; + } +#Air concentration of Ruthenium 103 +'Bq m**-3' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + indicatorOfTypeOfLevel = 100 ; + } +#Soil Temperature (multilayers) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } +#Column-integrated Soil Moisture (multilayers) +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } +#soil ice content (multilayers) +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } +#Plant Canopy Surface Water +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + indicatorOfTypeOfLevel = 1 ; + } +#Snow temperature (top of snow) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#Minimal Stomatal Resistance +'s m**-1' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + indicatorOfTypeOfLevel = 1 ; + } +#sea Ice Temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'dB' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } +#Base reflectivity +'dB' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } +#Base reflectivity (cmax) +'dB' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } +#unknown +'m' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 110 ; + } +#Effective transmissivity of solar radiation +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 110 ; + } +#sum of contributions to evaporation +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } +#total transpiration from all soil layers +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } +#total forcing at soil surface +'W m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#residuum of soil moisture +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } +#Massflux at convective cloud base +'kg m**-2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } +#Convective Available Potential Energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + indicatorOfTypeOfLevel = 1 ; + } +#moisture convergence for Kuo-type closure +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + indicatorOfTypeOfLevel = 1 ; + } +#total wave direction +'Degree true' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } +#wind sea mean period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 102 ; + } +#wind sea peak period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } +#swell mean period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 102 ; + } +#swell peak period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } +#total wave peak period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } +#total wave mean period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } +#total Tm1 period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } +#total Tm2 period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } +#total directional spread +'Degree true' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } +#analysis error(standard deviation), geopotential(gpm) +'gpm' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), u-comp. of wind +'m**2 s**-2' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + indicatorOfTypeOfLevel = 100 ; + } +#analysis error(standard deviation), v-comp. of wind +'m**2 s**-2' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + level = 100 ; + } +#zonal wind tendency due to subgrid scale oro. +'m s**-1' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + indicatorOfTypeOfLevel = 110 ; + } +#meridional wind tendency due to subgrid scale oro. +'m s**-1' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + indicatorOfTypeOfLevel = 110 ; + } +#Standard deviation of sub-grid scale orography +'m' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + indicatorOfTypeOfLevel = 1 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + indicatorOfTypeOfLevel = 1 ; + } +#Angle of sub-gridscale orography +'radians' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 1 ; + } +#Slope of sub-gridscale orography +'~' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + indicatorOfTypeOfLevel = 1 ; + } +#surface emissivity +'~' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + timeRangeIndicator = 0 ; + } +#Soil Type +'~' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } +#Leaf area index +'~' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#root depth of vegetation +'m' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + indicatorOfTypeOfLevel = 1 ; + } +#height of ozone maximum (climatological) +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + indicatorOfTypeOfLevel = 1 ; + } +#vertically integrated ozone content (climatological) +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the vegetation phase +'~' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + indicatorOfTypeOfLevel = 1 ; + } +#Plant covering degree in the quiescent phas +'~' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 1 ; + } +#Max Leaf area index +'~' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 1 ; + } +#Min Leaf area index +'~' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + indicatorOfTypeOfLevel = 1 ; + } +#Orographie + Land-Meer-Verteilung +'m' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } +#variance of soil moisture content (0-10) +'kg**2 m**-4' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } +#variance of soil moisture content (10-100) +'kg**2 m**-4' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } +#evergreen forest +'~' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#deciduous forest +'~' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + indicatorOfTypeOfLevel = 1 ; + } +#normalized differential vegetation index +'~' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } +#normalized differential vegetation index (NDVI) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 3 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'~' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'~' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Total sulfate aerosol +'~' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } +#Total sulfate aerosol (12M) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } +#Total soil dust aerosol +'~' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } +#Total soil dust aerosol (12M) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } +#Organic aerosol +'~' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } +#Organic aerosol (12M) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } +#Black carbon aerosol +'~' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } +#Black carbon aerosol (12M) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } +#Sea salt aerosol +'~' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } +#Sea salt aerosol (12M) +'~' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } +#tendency of specific humidity +'s**-1' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + indicatorOfTypeOfLevel = 110 ; + } +#water vapor flux +'s**-1 m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + indicatorOfTypeOfLevel = 1 ; + } +#Coriolis parameter +'s**-1' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical latitude +'Degree N' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 1 ; + } +#geographical longitude +'Degree E' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + indicatorOfTypeOfLevel = 1 ; + } +#Friction velocity +'m s**-1' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + indicatorOfTypeOfLevel = 110 ; + } +#Delay of the GPS signal trough the (total) atm. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ozone Mixing Ratio +'kg kg**-1' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + indicatorOfTypeOfLevel = 110 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } +#Ru103-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ru103-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Strontium 90 +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } +#Sr90-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 1 ; + } +#Sr90-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-concentration +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } +#I131-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-concentration +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } +#Cs137-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Cs137-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 205 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } +#Te132-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + indicatorOfTypeOfLevel = 1 ; + } +#Te132-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } +#Zr95-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + indicatorOfTypeOfLevel = 1 ; + } +#Zr95-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } +#Kr85-dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + indicatorOfTypeOfLevel = 1 ; + } +#Kr85-wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - concentration +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } +#TRACER - dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + indicatorOfTypeOfLevel = 1 ; + } +#TRACER - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } +#Xe133 - dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + indicatorOfTypeOfLevel = 1 ; + } +#Xe133 - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - concentration +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } +#Xe133 - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131g - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - concentration +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } +#I131o - dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + indicatorOfTypeOfLevel = 1 ; + } +#I131o - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + indicatorOfTypeOfLevel = 1 ; + } +#Air concentration of Barium 40 +'Bq m**-3' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } +#Ba140 - dry deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + indicatorOfTypeOfLevel = 1 ; + } +#Ba140 - wet deposition +'Bq m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + indicatorOfTypeOfLevel = 1 ; + } +#u-momentum flux due to SSO-effects +'N m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#u-momentum flux due to SSO-effects +'N m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#v-momentum flux due to SSO-effects +'N m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#v-momentum flux due to SSO-effects +'N m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#Gravity wave dissipation (vertical integral) +'W m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } +#Gravity wave dissipation (vertical integral) +'W m**-2' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'~' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + indicatorOfTypeOfLevel = 1 ; + } +#wind shear +'m s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + indicatorOfTypeOfLevel = 110 ; + } +#storm relative helicity +'J kg**-1' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + indicatorOfTypeOfLevel = 110 ; + } +#absolute vorticity advection +'s**-2' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 100 ; + } +#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) +'~' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund +'m' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'m' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } +#weather interpretation (WMO) +'~' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + indicatorOfTypeOfLevel = 1 ; + } +#geostrophische Vorticityadvektion +'s**-2' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + indicatorOfTypeOfLevel = 100 ; + } +#Geo Temperatur Adv geostrophische Schichtdickenadvektion +'m**3 kg**-1 s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + indicatorOfTypeOfLevel = 101 ; + } +#Schichtdicken-Advektion +'m**3 kg**-1 s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + indicatorOfTypeOfLevel = 101 ; + } +#Winddivergenz +'s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + indicatorOfTypeOfLevel = 100 ; + } +#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen +'m**2 kg**-1 s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 100 ; + } +#Isentrope potentielle Vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } +#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen +'m s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + indicatorOfTypeOfLevel = 100 ; + } +#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen +'m s**-1' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + indicatorOfTypeOfLevel = 100 ; + } +#Druck einer isentropen Flaeche +'Pa' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } +#KO index +'K' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + indicatorOfTypeOfLevel = 1 ; + } +#Aequivalentpotentielle Temperatur +'K' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + indicatorOfTypeOfLevel = 100 ; + } +#Ceiling +'m' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + indicatorOfTypeOfLevel = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'~' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + indicatorOfTypeOfLevel = 100 ; + } +#modified cloud depth for media +'~' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + indicatorOfTypeOfLevel = 1 ; + } +#modified cloud cover for media +'~' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + indicatorOfTypeOfLevel = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Pa' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Pa' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'m s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'m s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'m s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'m s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'m**2 s**-2' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'m**2 s**-2' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'%' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'%' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'K' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'K' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Pa s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Pa s**-1' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'J kg**-1' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'J kg**-1' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + indicatorOfTypeOfLevel = 222 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 1 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 2 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 2 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 3 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + localElementNumber = 4 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + localElementNumber = 4 ; + } +#smoothed forecast, temperature +'K' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, maximum temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, minimum temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + timeRangeIndicator = 2 ; + } +#smoothed forecast, dew point temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#smoothed forecast, u comp. of wind +'m s**-1' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, v comp. of wind +'m s**-1' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#smoothed forecast, total precipitation rate +'kg m**-2 s**-1' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, total cloud cover +'%' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover low +'%' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover medium +'%' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, cloud cover high +'%' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'kg m**-2 s**-1' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#smoothed forecast, soil temperature +'K' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } +#smoothed forecast, wind speed (gust) +'m s**-1' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#calibrated forecast, total precipitation rate +'kg m**-2 s**-1' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'kg m**-2 s**-1' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + indicatorOfTypeOfLevel = 1 ; + } +#calibrated forecast, wind speed (gust) +'m s**-1' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/cfName.def b/eccodes/definitions/grib1/localConcepts/ecmf/cfName.def new file mode 100644 index 00000000..4a062bc4 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/cfName.def @@ -0,0 +1,1041 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'sea_ice_area_fraction' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Geopotential +'geopotential' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'air_temperature' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'northward_wind' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water vapour +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lwe_thickness_of_stratiform_precipitation_amount' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lwe_thickness_of_stratiform_precipitation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lwe_thickness_of_stratiform_precipitation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'geopotential_height' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'surface_albedo' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'surface_albedo' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'surface_albedo' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Ozone mass mixing ratio +'mass_fraction_of_ozone_in_air' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#Temperature of snow layer +'temperature_in_surface_snow' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'temperature_in_surface_snow' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Sea ice snow thickness +'surface_snow_thickness' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Particulate matter d < 1 um +'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Hydrogen peroxide +'mass_fraction_of_hydrogen_peroxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'mass_fraction_of_methane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'mass_fraction_of_nitric_acid_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Ethene +'mass_fraction_of_ethene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Peroxyacetyl nitrate +'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Isoprene +'mass_fraction_of_isoprene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'mass_fraction_of_dimethyl_sulfide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroxyl radical +'mass_fraction_of_hydroxyl_radical_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'mass_fraction_of_nitrate_radical_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'mass_fraction_of_dinitrogen_pentoxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Methanol +'mass_fraction_of_methanol_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'mass_fraction_of_formic_acid_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Ethane +'mass_fraction_of_ethane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'mass_fraction_of_ethanol_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'mass_fraction_of_propane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'mass_fraction_of_propene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'mass_fraction_of_terpenes_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Total column hydrogen peroxide +'atmosphere_mass_content_of_hydrogen_peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'atmosphere_mass_content_of_methane' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'atmosphere_mass_content_of_nitric_acid' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column ethene +'atmosphere_mass_content_of_ethene' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column peroxyacetyl nitrate +'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column isoprene +'atmosphere_mass_content_of_isoprene' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'atmosphere_mass_content_of_dimethyl_sulfide' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'atmosphere_mass_content_of_ammonia' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'atmosphere_mass_content_of_sulfate' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column nitrogen monoxide +'atmosphere_mass_content_of_nitrogen_monoxide' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroxyl radical +'atmosphere_mass_content_of_hydroxyl_radical' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'atmosphere_mass_content_of_nitrate_radical' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'atmosphere_mass_content_of_dinitrogen_pentoxide' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column methanol +'atmosphere_mass_content_of_methanol' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'atmosphere_mass_content_of_formic_acid' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column ethane +'atmosphere_mass_content_of_ethane' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'atmosphere_mass_content_of_ethanol' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'atmosphere_mass_content_of_propane' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'atmosphere_mass_content_of_propene' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'atmosphere_mass_content_of_terpenes' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Sea water potential temperature +'sea_water_potential_temperature' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'sea_water_practical_salinity' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'eastward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'northward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'upward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Sea water sigma theta +'sea_water_sigma_theta' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Sea surface height +'sea_surface_height_above_geoid' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Ocean barotropic stream function +'ocean_barotropic_streamfunction' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'surface_downward_northward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Depth of 20C isotherm +'depth_of_isosurface_of_sea_water_potential_temperature' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Sea-ice thickness +'sea_ice_thickness' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Carbon Dioxide +'mass_fraction_of_carbon_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'mass_fraction_of_methane_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'mass_fraction_of_nitrous_oxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Nitrous oxide +'atmosphere_mass_content_of_nitrous_oxide' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'mass_fraction_of_formaldehyde_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'atmosphere_mass_content_of_nitrogen_dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'atmosphere_mass_content_of_sulfur_dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'atmosphere_mass_content_of_carbon_monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'atmosphere_mass_content_of_formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Radon +'mass_fraction_of_radon_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Total column Radon +'atmosphere_mass_content_of_radon' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def b/eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def new file mode 100644 index 00000000..40549c85 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def @@ -0,0 +1,17676 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'strf' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'vp' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'pt' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'eqpt' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'ssfr' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'scfr' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'sro' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'ws' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'udvw' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'vdvw' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'urtw' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'vrtw' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'uvcs' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.128' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.128' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'cl' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'cvl' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'cvh' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'tvl' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'tvh' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea ice area fraction +'siconc' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'asn' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'rsn' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'sst' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'istl1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'slt' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'es' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'smlt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'sdur' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'dsrp' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'fg10' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'lspf' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'mont' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'pres' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'cape' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'pv' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'obct' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'sktd' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'crwc' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'cswc' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column cloud liquid water +'tclw' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column cloud ice water +'tciw' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.128' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.128' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.128' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.128' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.128' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.128' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.128' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.128' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.128' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.128' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.128' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.128' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.128' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.128' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.128' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.128' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.128' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.128' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.128' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.128' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.128' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.128' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.128' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.128' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.128' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.128' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.128' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.128' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.128' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.128' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.128' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.128' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.128' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.128' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.128' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.128' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.128' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.128' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.128' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.128' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.128' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'p10fg6' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'emis' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'vite' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.128' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'at' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'at' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'bv' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'bv' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'z' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'t' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'u' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'v' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'q' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'sp' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'sp' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'w' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'w' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'tcw' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'tcw' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sd' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cp' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sf' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'sf' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'chnk' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'snr' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'tnr' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'swhr' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'lwhr' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'d' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gh' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'r' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'blh' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'sdor' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'tcc' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'u10' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'u10' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'v10' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'v10' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'t2m' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'t2m' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'d2m' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'lsm' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'sr' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'sr' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'al' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'e' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'lcc' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'lcc' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'hcc' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'hcc' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'sund' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'btmp' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'src' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'veg' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'o3' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'ro' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'ro' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'tco3' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'si10' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'tisr' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'tp' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'skt' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'skt' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'csf' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'lsf' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'fal' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'clwc' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Fraction of cloud cover +'cc' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'aiw' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'ice' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'p255.190' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'strfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'ptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.200' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.200' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'cldiff' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'asndiff' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'rsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'sltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'esdiff' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'smltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'sdurdiff' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'fgdiff10' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'montdiff' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'presdiff' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'capediff' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'obctdiff' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'p63.200' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'p64.200' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'p65.200' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'p66.200' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'p67.200' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.200' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.200' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'p70.200' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'p71.200' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'p78.200' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'p79.200' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.200' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.200' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.200' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.200' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.200' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.200' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.200' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.200' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.200' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.200' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.200' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.200' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.200' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.200' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.200' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.200' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.200' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.200' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.200' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.200' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.200' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.200' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.200' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.200' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.200' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.200' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.200' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.200' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.200' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.200' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.200' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.200' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.200' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.200' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.200' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.200' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.200' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.200' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.200' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.200' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.200' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'fg6diff10' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'p125.200' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.200' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'bvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'zdiff' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'udiff' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'qdiff' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'spdiff' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'tcwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'sddiff' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'chnkdiff' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'ghdiff' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'rdiff' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'udiff10' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'vdiff10' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'difft2' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'srdiff' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'aldiff' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'ediff' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'hccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'rodiff' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'tco3diff' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'sidiff10' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'tpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'sktdiff' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'faldiff' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'ccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'icediff' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.200' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'p131089' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'p131090' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'p131091' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'p131092' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'p131093' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'p131094' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'p131095' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'p131096' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'p131097' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Total precipitation of at least 25 mm +'tpg25' = { + table2Version = 131 ; + indicatorOfParameter = 98 ; + } +#Total precipitation of at least 50 mm +'tpg50' = { + table2Version = 131 ; + indicatorOfParameter = 99 ; + } +#10 metre wind gust of at least 10 m/s +'fgg1010' = { + table2Version = 131 ; + indicatorOfParameter = 100 ; + } +#Convective available potential energy shear index +'capesi' = { + table2Version = 132 ; + indicatorOfParameter = 44 ; + } +#Water vapour flux index +'wvfi' = { + table2Version = 132 ; + indicatorOfParameter = 45 ; + } +#Convective available potential energy index +'capei' = { + table2Version = 132 ; + indicatorOfParameter = 59 ; + } +#Maximum of significant wave height index +'maxswhi' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'p140080' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'p140081' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'p140082' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'p140083' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'p140084' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Wave induced mean sea level correction +'weta' = { + table2Version = 140 ; + indicatorOfParameter = 98 ; + } +#Ratio of wave angular and frequency width +'wraf' = { + table2Version = 140 ; + indicatorOfParameter = 99 ; + } +#Number of events in freak waves statistics +'wnslc' = { + table2Version = 140 ; + indicatorOfParameter = 100 ; + } +#U-component of atmospheric surface momentum flux +'utaua' = { + table2Version = 140 ; + indicatorOfParameter = 101 ; + } +#V-component of atmospheric surface momentum flux +'vtaua' = { + table2Version = 140 ; + indicatorOfParameter = 102 ; + } +#U-component of surface momentum flux into ocean +'utauo' = { + table2Version = 140 ; + indicatorOfParameter = 103 ; + } +#V-component of surface momentum flux into ocean +'vtauo' = { + table2Version = 140 ; + indicatorOfParameter = 104 ; + } +#Wave turbulent energy flux into ocean +'wphio' = { + table2Version = 140 ; + indicatorOfParameter = 105 ; + } +#Wave directional width of first swell partition +'wdw1' = { + table2Version = 140 ; + indicatorOfParameter = 106 ; + } +#Wave frequency width of first swell partition +'wfw1' = { + table2Version = 140 ; + indicatorOfParameter = 107 ; + } +#Wave directional width of second swell partition +'wdw2' = { + table2Version = 140 ; + indicatorOfParameter = 108 ; + } +#Wave frequency width of second swell partition +'wfw2' = { + table2Version = 140 ; + indicatorOfParameter = 109 ; + } +#Wave directional width of third swell partition +'wdw3' = { + table2Version = 140 ; + indicatorOfParameter = 110 ; + } +#Wave frequency width of third swell partition +'wfw3' = { + table2Version = 140 ; + indicatorOfParameter = 111 ; + } +#Wave energy flux magnitude +'wefxm' = { + table2Version = 140 ; + indicatorOfParameter = 112 ; + } +#Wave energy flux mean direction +'wefxd' = { + table2Version = 140 ; + indicatorOfParameter = 113 ; + } +#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds +'h1012' = { + table2Version = 140 ; + indicatorOfParameter = 114 ; + } +#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds +'h1214' = { + table2Version = 140 ; + indicatorOfParameter = 115 ; + } +#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds +'h1417' = { + table2Version = 140 ; + indicatorOfParameter = 116 ; + } +#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds +'h1721' = { + table2Version = 140 ; + indicatorOfParameter = 117 ; + } +#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds +'h2125' = { + table2Version = 140 ; + indicatorOfParameter = 118 ; + } +#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds +'h2530' = { + table2Version = 140 ; + indicatorOfParameter = 119 ; + } +#Significant wave height of all waves with period larger than 10s +'sh10' = { + table2Version = 140 ; + indicatorOfParameter = 120 ; + } +#Significant wave height of first swell partition +'p140121' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'p140122' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'p140123' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'p140124' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'p140125' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'p140126' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'p140127' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'p140128' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'p140129' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'wss' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'p140208' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'p140209' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'p140210' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'phiaw' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'phioc' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'tla' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'tauoc' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'p193.151' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Water vapour flux +'wvf' = { + table2Version = 162 ; + indicatorOfParameter = 45 ; + } +#Vertical integral of divergence of cloud liquid water flux +'p79.162' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'p80.162' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'p88.162' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'p89.162' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'p90.162' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'p91.162' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'p92.162' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'utendd' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'ttendr' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#Standardised precipitation index valid in the last 3 months +'spi03' = { + table2Version = 170 ; + indicatorOfParameter = 1 ; + } +#Standardised precipitation index valid in the last 6 months +'spi06' = { + table2Version = 170 ; + indicatorOfParameter = 2 ; + } +#Standardised precipitation index valid in the last 12 months +'spi12' = { + table2Version = 170 ; + indicatorOfParameter = 3 ; + } +#100 metre U wind component anomaly +'ua100' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'va100' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature anomaly +'lmlta' = { + table2Version = 171 ; + indicatorOfParameter = 24 ; + } +#Lake ice depth anomaly +'licda' = { + table2Version = 171 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Mean surface runoff rate +'msror' = { + table2Version = 172 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate +'mssror' = { + table2Version = 172 ; + indicatorOfParameter = 9 ; + } +#Mean surface runoff rate anomaly +'msrora' = { + table2Version = 173 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate anomaly +'mssrora' = { + table2Version = 173 ; + indicatorOfParameter = 9 ; + } +#Clear-sky (II) down surface sw flux +'sswcsdown' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'sswcsup' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'vis15' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'mn15t' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'mx15t' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'rhum' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#2 metre specific humidity +'sh2' = { + table2Version = 174 ; + indicatorOfParameter = 96 ; + } +#Sea ice snow thickness +'sisnthick' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Short wave radiation flux at surface +'swrsurf' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'swrtop' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'tcwvap' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'lsrrate' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'crfrate' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'vlca' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'csfrate' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'lsfrate' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'tccro' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'tcclwr' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdms' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p55.210' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.210' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Injection height (from IS4FIRES) +'injh' = { + table2Version = 210 ; + indicatorOfParameter = 60 ; + } +#Particulate matter d < 1 um +'pm1' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'mami' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'apt' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'apb' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16' = { + table2Version = 210 ; + indicatorOfParameter = 247 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17' = { + table2Version = 210 ; + indicatorOfParameter = 248 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18' = { + table2Version = 210 ; + indicatorOfParameter = 249 ; + } +#Nitrate aerosol optical depth at 550 nm +'niaod550' = { + table2Version = 210 ; + indicatorOfParameter = 250 ; + } +#Ammonium aerosol optical depth at 550 nm +'amaod550' = { + table2Version = 210 ; + indicatorOfParameter = 251 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p55.211' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.211' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'alediff' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'aptdiff' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p1.212' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'p2.212' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'p3.212' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'p4.212' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'p5.212' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'p6.212' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'p7.212' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'p8.212' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'p9.212' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'p10.212' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'p11.212' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'p12.212' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'p13.212' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'p14.212' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'p15.212' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'p16.212' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'p17.212' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'p18.212' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'p19.212' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'p20.212' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'p21.212' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'p22.212' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'p23.212' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'p24.212' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'p25.212' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'p26.212' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'p27.212' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'p28.212' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'p29.212' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'p30.212' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'p31.212' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'p32.212' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'p33.212' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'p34.212' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'p35.212' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'p36.212' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'p37.212' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'p38.212' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'p39.212' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'p40.212' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'p41.212' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'p42.212' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'p43.212' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'p44.212' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'p45.212' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p46.212' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'p47.212' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'p48.212' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'p49.212' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'p50.212' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'p51.212' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'p52.212' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'p53.212' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'p54.212' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'p55.212' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.212' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'p57.212' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'p58.212' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'p59.212' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'p60.212' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'p61.212' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'p62.212' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'p63.212' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'p64.212' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'p65.212' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'p66.212' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'p67.212' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'p68.212' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'p69.212' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'p70.212' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'p71.212' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'p72.212' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'p73.212' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'p74.212' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'p75.212' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'p76.212' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'p77.212' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'p78.212' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'p79.212' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.212' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.212' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.212' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.212' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.212' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.212' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.212' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.212' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.212' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.212' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.212' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.212' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.212' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.212' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.212' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.212' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.212' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.212' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.212' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.212' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.212' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.212' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.212' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.212' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.212' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.212' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.212' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.212' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.212' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.212' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.212' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.212' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.212' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.212' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.212' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.212' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.212' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.212' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.212' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.212' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.212' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p121.212' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'p122.212' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'p123.212' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'p124.212' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'p125.212' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'p126.212' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'p127.212' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'p128.212' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'p129.212' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'p130.212' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'p131.212' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'p132.212' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'p133.212' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'p134.212' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'p135.212' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'p136.212' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'p137.212' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'p138.212' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'p139.212' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'p140.212' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'p141.212' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'p142.212' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'p143.212' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'p144.212' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'p145.212' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'p146.212' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'p147.212' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'p148.212' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'p149.212' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'p150.212' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'p151.212' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'p152.212' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'p153.212' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'p154.212' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'p155.212' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'p156.212' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'p157.212' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'p158.212' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'p159.212' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'p160.212' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'p161.212' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'p162.212' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'p163.212' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'p164.212' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'p165.212' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'p166.212' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'p167.212' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'p168.212' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'p169.212' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'p170.212' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'p171.212' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'p172.212' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'p173.212' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'p174.212' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'p175.212' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'p176.212' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'p177.212' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'p178.212' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'p179.212' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'p180.212' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'p181.212' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'p182.212' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'p183.212' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'p184.212' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'p185.212' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'p186.212' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'p187.212' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'p188.212' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'p189.212' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'p190.212' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'p191.212' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'p192.212' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'p193.212' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'p194.212' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'p195.212' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'p196.212' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'p197.212' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'p198.212' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'p199.212' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'p200.212' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'p201.212' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'p202.212' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'p203.212' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'p204.212' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'p205.212' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'p206.212' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'p207.212' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'p208.212' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'p209.212' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'p210.212' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'p211.212' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'p212.212' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'p213.212' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'p214.212' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'p215.212' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'p216.212' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'p217.212' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'p218.212' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'p219.212' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'p220.212' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'p221.212' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'p222.212' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'p223.212' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'p224.212' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'p225.212' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'p226.212' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'p227.212' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'p228.212' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'p229.212' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'p230.212' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'p231.212' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'p232.212' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'p233.212' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'p234.212' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'p235.212' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'p236.212' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'p237.212' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'p238.212' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'p239.212' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'p240.212' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'p241.212' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'p242.212' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'p243.212' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'p244.212' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'p245.212' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'p246.212' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'p247.212' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'p248.212' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'p249.212' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'p250.212' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'p251.212' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'p252.212' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'p253.212' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'p254.212' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'p255.212' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +#Random pattern 1 for SPP scheme +'spp1' = { + table2Version = 213 ; + indicatorOfParameter = 101 ; + } +#Random pattern 2 for SPP scheme +'spp2' = { + table2Version = 213 ; + indicatorOfParameter = 102 ; + } +#Random pattern 3 for SPP scheme +'spp3' = { + table2Version = 213 ; + indicatorOfParameter = 103 ; + } +#Random pattern 4 for SPP scheme +'spp4' = { + table2Version = 213 ; + indicatorOfParameter = 104 ; + } +#Random pattern 5 for SPP scheme +'spp5' = { + table2Version = 213 ; + indicatorOfParameter = 105 ; + } +#Random pattern 6 for SPP scheme +'spp6' = { + table2Version = 213 ; + indicatorOfParameter = 106 ; + } +#Random pattern 7 for SPP scheme +'spp7' = { + table2Version = 213 ; + indicatorOfParameter = 107 ; + } +#Random pattern 8 for SPP scheme +'spp8' = { + table2Version = 213 ; + indicatorOfParameter = 108 ; + } +#Random pattern 9 for SPP scheme +'spp9' = { + table2Version = 213 ; + indicatorOfParameter = 109 ; + } +#Random pattern 10 for SPP scheme +'spp10' = { + table2Version = 213 ; + indicatorOfParameter = 110 ; + } +#Random pattern 11 for SPP scheme +'spp11' = { + table2Version = 213 ; + indicatorOfParameter = 111 ; + } +#Random pattern 12 for SPP scheme +'spp12' = { + table2Version = 213 ; + indicatorOfParameter = 112 ; + } +#Random pattern 13 for SPP scheme +'spp13' = { + table2Version = 213 ; + indicatorOfParameter = 113 ; + } +#Random pattern 14 for SPP scheme +'spp14' = { + table2Version = 213 ; + indicatorOfParameter = 114 ; + } +#Random pattern 15 for SPP scheme +'spp15' = { + table2Version = 213 ; + indicatorOfParameter = 115 ; + } +#Random pattern 16 for SPP scheme +'spp16' = { + table2Version = 213 ; + indicatorOfParameter = 116 ; + } +#Random pattern 17 for SPP scheme +'spp17' = { + table2Version = 213 ; + indicatorOfParameter = 117 ; + } +#Random pattern 18 for SPP scheme +'spp18' = { + table2Version = 213 ; + indicatorOfParameter = 118 ; + } +#Random pattern 19 for SPP scheme +'spp19' = { + table2Version = 213 ; + indicatorOfParameter = 119 ; + } +#Random pattern 20 for SPP scheme +'spp20' = { + table2Version = 213 ; + indicatorOfParameter = 120 ; + } +#Random pattern 21 for SPP scheme +'spp21' = { + table2Version = 213 ; + indicatorOfParameter = 121 ; + } +#Random pattern 22 for SPP scheme +'spp22' = { + table2Version = 213 ; + indicatorOfParameter = 122 ; + } +#Random pattern 23 for SPP scheme +'spp23' = { + table2Version = 213 ; + indicatorOfParameter = 123 ; + } +#Random pattern 24 for SPP scheme +'spp24' = { + table2Version = 213 ; + indicatorOfParameter = 124 ; + } +#Random pattern 25 for SPP scheme +'spp25' = { + table2Version = 213 ; + indicatorOfParameter = 125 ; + } +#Random pattern 26 for SPP scheme +'spp26' = { + table2Version = 213 ; + indicatorOfParameter = 126 ; + } +#Random pattern 27 for SPP scheme +'spp27' = { + table2Version = 213 ; + indicatorOfParameter = 127 ; + } +#Random pattern 28 for SPP scheme +'spp28' = { + table2Version = 213 ; + indicatorOfParameter = 128 ; + } +#Random pattern 29 for SPP scheme +'spp29' = { + table2Version = 213 ; + indicatorOfParameter = 129 ; + } +#Random pattern 30 for SPP scheme +'spp30' = { + table2Version = 213 ; + indicatorOfParameter = 130 ; + } +#Random pattern 31 for SPP scheme +'spp31' = { + table2Version = 213 ; + indicatorOfParameter = 131 ; + } +#Random pattern 32 for SPP scheme +'spp32' = { + table2Version = 213 ; + indicatorOfParameter = 132 ; + } +#Random pattern 33 for SPP scheme +'spp33' = { + table2Version = 213 ; + indicatorOfParameter = 133 ; + } +#Random pattern 34 for SPP scheme +'spp34' = { + table2Version = 213 ; + indicatorOfParameter = 134 ; + } +#Random pattern 35 for SPP scheme +'spp35' = { + table2Version = 213 ; + indicatorOfParameter = 135 ; + } +#Random pattern 36 for SPP scheme +'spp36' = { + table2Version = 213 ; + indicatorOfParameter = 136 ; + } +#Random pattern 37 for SPP scheme +'spp37' = { + table2Version = 213 ; + indicatorOfParameter = 137 ; + } +#Random pattern 38 for SPP scheme +'spp38' = { + table2Version = 213 ; + indicatorOfParameter = 138 ; + } +#Random pattern 39 for SPP scheme +'spp39' = { + table2Version = 213 ; + indicatorOfParameter = 139 ; + } +#Random pattern 40 for SPP scheme +'spp40' = { + table2Version = 213 ; + indicatorOfParameter = 140 ; + } +#Random pattern 41 for SPP scheme +'spp41' = { + table2Version = 213 ; + indicatorOfParameter = 141 ; + } +#Random pattern 42 for SPP scheme +'spp42' = { + table2Version = 213 ; + indicatorOfParameter = 142 ; + } +#Random pattern 43 for SPP scheme +'spp43' = { + table2Version = 213 ; + indicatorOfParameter = 143 ; + } +#Random pattern 44 for SPP scheme +'spp44' = { + table2Version = 213 ; + indicatorOfParameter = 144 ; + } +#Random pattern 45 for SPP scheme +'spp45' = { + table2Version = 213 ; + indicatorOfParameter = 145 ; + } +#Random pattern 46 for SPP scheme +'spp46' = { + table2Version = 213 ; + indicatorOfParameter = 146 ; + } +#Random pattern 47 for SPP scheme +'spp47' = { + table2Version = 213 ; + indicatorOfParameter = 147 ; + } +#Random pattern 48 for SPP scheme +'spp48' = { + table2Version = 213 ; + indicatorOfParameter = 148 ; + } +#Random pattern 49 for SPP scheme +'spp49' = { + table2Version = 213 ; + indicatorOfParameter = 149 ; + } +#Random pattern 50 for SPP scheme +'spp50' = { + table2Version = 213 ; + indicatorOfParameter = 150 ; + } +#Cosine of solar zenith angle +'uvcossza' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +#UV biologically effective dose +'uvbed' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +#UV biologically effective dose clear-sky +'uvbedcs' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +#Profile of optical thickness at 340 nm +'aot340' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +#Source/gain of sulphate aerosol +'aersrcsu' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +#Dry deposition of sulphate aerosol +'aerddpsu' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +#Sedimentation of sulphate aerosol +'aersdmsu' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +#Negative fixer of sulphate aerosol +'aerngtsu' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'aermsssu' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +#Sulphate aerosol optical depth +'aerodsu' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Asymmetry factor at 340 nm +'asymmetry340' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Asymmetry factor at 355 nm +'asymmetry355' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Asymmetry factor at 380 nm +'asymmetry380' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Asymmetry factor at 400 nm +'asymmetry400' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Asymmetry factor at 440 nm +'asymmetry440' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Asymmetry factor at 469 nm +'asymmetry469' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Asymmetry factor at 500 nm +'asymmetry500' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Asymmetry factor at 532 nm +'asymmetry532' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Asymmetry factor at 550 nm +'asymmetry550' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Asymmetry factor at 645 nm +'asymmetry645' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Asymmetry factor at 670 nm +'asymmetry670' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Asymmetry factor at 800 nm +'asymmetry800' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Asymmetry factor at 858 nm +'asymmetry858' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Asymmetry factor at 865 nm +'asymmetry865' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Asymmetry factor at 1020 nm +'asymmetry1020' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Asymmetry factor at 1064 nm +'asymmetry1064' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Asymmetry factor at 1240 nm +'asymmetry1240' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Asymmetry factor at 1640 nm +'asymmetry1640' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Asymmetry factor at 2130 nm +'asymmetry2130' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + table2Version = 215 ; + indicatorOfParameter = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + table2Version = 215 ; + indicatorOfParameter = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + table2Version = 215 ; + indicatorOfParameter = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + table2Version = 215 ; + indicatorOfParameter = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + table2Version = 215 ; + indicatorOfParameter = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + table2Version = 215 ; + indicatorOfParameter = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + table2Version = 215 ; + indicatorOfParameter = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + table2Version = 215 ; + indicatorOfParameter = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + table2Version = 215 ; + indicatorOfParameter = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'aersrcnif' = { + table2Version = 215 ; + indicatorOfParameter = 189 ; + } +#Source/gain of coarse-mode nitrate aerosol +'aersrcnic' = { + table2Version = 215 ; + indicatorOfParameter = 190 ; + } +#Dry deposition of fine-mode nitrate aerosol +'aerddpnif' = { + table2Version = 215 ; + indicatorOfParameter = 191 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'aerddpnic' = { + table2Version = 215 ; + indicatorOfParameter = 192 ; + } +#Sedimentation of fine-mode nitrate aerosol +'aersdmnif' = { + table2Version = 215 ; + indicatorOfParameter = 193 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'aersdmnic' = { + table2Version = 215 ; + indicatorOfParameter = 194 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'aerwdlnif' = { + table2Version = 215 ; + indicatorOfParameter = 195 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'aerwdlnic' = { + table2Version = 215 ; + indicatorOfParameter = 196 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'aerwdcnif' = { + table2Version = 215 ; + indicatorOfParameter = 197 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'aerwdcnic' = { + table2Version = 215 ; + indicatorOfParameter = 198 ; + } +#Negative fixer of fine-mode nitrate aerosol +'aerngtnif' = { + table2Version = 215 ; + indicatorOfParameter = 199 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'aerngtnic' = { + table2Version = 215 ; + indicatorOfParameter = 200 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'aermssnif' = { + table2Version = 215 ; + indicatorOfParameter = 201 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'aermssnic' = { + table2Version = 215 ; + indicatorOfParameter = 202 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'aerodnif' = { + table2Version = 215 ; + indicatorOfParameter = 203 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'aerodnic' = { + table2Version = 215 ; + indicatorOfParameter = 204 ; + } +#Source/gain of ammonium aerosol +'aersrcam' = { + table2Version = 215 ; + indicatorOfParameter = 205 ; + } +#Dry deposition of ammonium aerosol +'aerddpam' = { + table2Version = 215 ; + indicatorOfParameter = 206 ; + } +#Sedimentation of ammonium aerosol +'aersdmam' = { + table2Version = 215 ; + indicatorOfParameter = 207 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'aerwdlam' = { + table2Version = 215 ; + indicatorOfParameter = 208 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'aerwdcam' = { + table2Version = 215 ; + indicatorOfParameter = 209 ; + } +#Negative fixer of ammonium aerosol +'aerngtam' = { + table2Version = 215 ; + indicatorOfParameter = 210 ; + } +#Vertically integrated mass of ammonium aerosol +'aermssam' = { + table2Version = 215 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'p1.216' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'p2.216' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'p3.216' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'p4.216' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'p5.216' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'p6.216' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'p7.216' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'p8.216' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'p9.216' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'p10.216' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'p11.216' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'p12.216' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'p13.216' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'p14.216' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'p15.216' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'p16.216' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'p17.216' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'p18.216' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'p19.216' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'p20.216' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'p21.216' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'p22.216' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'p23.216' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'p24.216' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'p25.216' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'p26.216' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'p27.216' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'p28.216' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'p29.216' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'p30.216' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'p31.216' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'p32.216' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'p33.216' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'p34.216' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'p35.216' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'p36.216' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'p37.216' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'p38.216' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'p39.216' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'p40.216' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'p41.216' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'p42.216' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'p43.216' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'p44.216' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'p45.216' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'p46.216' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'p47.216' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'p48.216' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'p49.216' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'p50.216' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'p51.216' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'p52.216' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'p53.216' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'p54.216' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'p55.216' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'p56.216' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'p57.216' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'p58.216' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'p59.216' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'p60.216' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'p61.216' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'p62.216' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'p63.216' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'p64.216' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'p65.216' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'p66.216' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'p67.216' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'p68.216' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'p69.216' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'p70.216' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'p71.216' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'p72.216' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'p73.216' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'p74.216' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'p75.216' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'p76.216' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'p77.216' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'p78.216' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'p79.216' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.216' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.216' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.216' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.216' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.216' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.216' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.216' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.216' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.216' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.216' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.216' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.216' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.216' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.216' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.216' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.216' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.216' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.216' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.216' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.216' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.216' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.216' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.216' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.216' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.216' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.216' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.216' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.216' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.216' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.216' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.216' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.216' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.216' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.216' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.216' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.216' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.216' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.216' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.216' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.216' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.216' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'p121.216' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'p122.216' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'p123.216' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'p124.216' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'p125.216' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'p126.216' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'p127.216' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'p128.216' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'p129.216' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'p130.216' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'p131.216' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'p132.216' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'p133.216' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'p134.216' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'p135.216' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'p136.216' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'p137.216' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'p138.216' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'p139.216' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'p140.216' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'p141.216' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'p142.216' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'p143.216' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'p144.216' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'p145.216' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'p146.216' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'p147.216' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'p148.216' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'p149.216' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'p150.216' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'p151.216' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'p152.216' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'p153.216' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'p154.216' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'p155.216' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'p156.216' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'p157.216' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'p158.216' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'p159.216' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'p160.216' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'p161.216' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'p162.216' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'p163.216' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'p164.216' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'p165.216' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'p166.216' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'p167.216' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'p168.216' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'p169.216' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'p170.216' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'p171.216' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'p172.216' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'p173.216' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'p174.216' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'p175.216' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'p176.216' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'p177.216' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'p178.216' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'p179.216' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'p180.216' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'p181.216' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'p182.216' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'p183.216' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'p184.216' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'p185.216' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'p186.216' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'p187.216' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'p188.216' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'p189.216' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'p190.216' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'p191.216' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'p192.216' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'p193.216' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'p194.216' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'p195.216' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'p196.216' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'p197.216' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'p198.216' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'p199.216' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'p200.216' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'p201.216' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'p202.216' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'p203.216' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'p204.216' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'p205.216' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'p206.216' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'p207.216' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'p208.216' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'p209.216' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'p210.216' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'p211.216' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'p212.216' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'p213.216' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'p214.216' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'p215.216' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'p216.216' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'p217.216' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'p218.216' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'p219.216' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'p220.216' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'p221.216' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'p222.216' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'p223.216' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'p224.216' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'p225.216' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'p226.216' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'p227.216' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'p228.216' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'p229.216' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'p230.216' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'p231.216' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'p232.216' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'p233.216' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'p234.216' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'p235.216' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'p236.216' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'p237.216' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'p238.216' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'p239.216' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'p240.216' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'p241.216' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'p242.216' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'p243.216' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'p244.216' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'p245.216' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'p246.216' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'p247.216' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'p248.216' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'p249.216' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'p250.216' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'p251.216' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'p252.216' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'p253.216' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'p254.216' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'p255.216' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'ch4_c' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'hno3' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'par' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'c2h4' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'ole' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'ald2' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'rooh' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'onit' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'c5h8' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'dms' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'nh3' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'so4' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'nh4' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'msa' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'o3s' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'pb' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'no' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'ho2' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'oh' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'no3' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'ho2no2' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'ror' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'rxpar' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'xo2' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'nh2' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'psc' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'ch3oh' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'hcooh' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'mcooh' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'c2h6' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'c2h5oh' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'c3h8' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'c3h6' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'c10h16' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'ispd' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'no3_a' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'ch3coch3' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'aco2' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'hypropo2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'tc_ch4' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'tc_par' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'tc_c2h4' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'tc_ole' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'tc_rooh' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'tc_nh3' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'tc_so4' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'tc_nh4' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'tc_pb' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'tc_ror' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'tc_nh2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'tc_c2h6' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'tc_c3h8' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'tc_c3h6' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'tc_aco2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'e_go3' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'e_ch4' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'e_par' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'e_c2h4' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'e_ole' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'e_rooh' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'e_nh3' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'e_so4' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'e_nh4' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'e_ra' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'e_pb' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'e_ror' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'e_nh2' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'e_c2h6' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'e_c3h8' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'e_c3h6' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'e_aco2' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#-10 degrees C isothermal level (atm) +'degm10l' = { + table2Version = 228 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'cbh' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#0 degrees C isothermal level (atm) +'deg0l' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'hvis' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'i10fg' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#2 metre relative humidity with respect to water +'rhw2' = { + table2Version = 228 ; + indicatorOfParameter = 37 ; + } +#Soil wetness index in layer 1 +'swi1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Convective available potential energy shear +'capes' = { + table2Version = 228 ; + indicatorOfParameter = 44 ; + } +#Height of convective cloud top +'hcct' = { + table2Version = 228 ; + indicatorOfParameter = 46 ; + } +#Height of zero-degree wet-bulb temperature +'hwbt0' = { + table2Version = 228 ; + indicatorOfParameter = 47 ; + } +#Height of one-degree wet-bulb temperature +'hwbt1' = { + table2Version = 228 ; + indicatorOfParameter = 48 ; + } +#Instantaneous total lightning flash density +'litoti' = { + table2Version = 228 ; + indicatorOfParameter = 50 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + table2Version = 228 ; + indicatorOfParameter = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + table2Version = 228 ; + indicatorOfParameter = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + table2Version = 228 ; + indicatorOfParameter = 53 ; + } +#SMOS observed soil moisture retrieved using neural network +'smnnob' = { + table2Version = 228 ; + indicatorOfParameter = 70 ; + } +#SMOS observed soil moisture uncertainty retrieved using neural network +'smnner' = { + table2Version = 228 ; + indicatorOfParameter = 71 ; + } +#SMOS radio frequency interference probability +'smnnrfi' = { + table2Version = 228 ; + indicatorOfParameter = 72 ; + } +#SMOS number of observations per grid point +'smnnnb' = { + table2Version = 228 ; + indicatorOfParameter = 73 ; + } +#SMOS observation time for the satellite soil moisture data +'smnntim' = { + table2Version = 228 ; + indicatorOfParameter = 74 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'gppbfas' = { + table2Version = 228 ; + indicatorOfParameter = 78 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'recbfas' = { + table2Version = 228 ; + indicatorOfParameter = 79 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'tcslw' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'tcrw' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'tcsw' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'ccf' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'stf' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'swv' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'ist' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Accumulated freezing rain +'fzra' = { + table2Version = 228 ; + indicatorOfParameter = 216 ; + } +#Instantaneous large-scale surface precipitation fraction +'ilspf' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'crr' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'lsrr' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'csfr' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'lssfr' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'mxtpr3' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'mntpr3' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'mxtpr6' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'mntpr6' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'mxtpr' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'mntpr' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'p228229' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'p228230' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#200 metre U wind component +'u200' = { + table2Version = 228 ; + indicatorOfParameter = 239 ; + } +#200 metre V wind component +'v200' = { + table2Version = 228 ; + indicatorOfParameter = 240 ; + } +#200 metre wind speed +'si200' = { + table2Version = 228 ; + indicatorOfParameter = 241 ; + } +#Surface solar radiation diffuse total sky +'fdif' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'cdif' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'aldr' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'aldf' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'si100' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'irrfr' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'pev' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'irr' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'srovar' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'ssrovar' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'parcsvar' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'fdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'cdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Direct solar radiation (variable resolution) +'dsrpvar' = { + table2Version = 230 ; + indicatorOfParameter = 47 ; + } +#Large-scale precipitation fraction (variable resolution) +'lspfvar' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'aco2neevar' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'aco2gppvar' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'aco2recvar' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'ssrdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'strdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'alvar' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'vimdvar' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Accumulated freezing rain (variable resolution) +'fzravar' = { + table2Version = 230 ; + indicatorOfParameter = 216 ; + } +#Total precipitation (variable resolution) +'tpvar' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'csfvar' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'lsfvar' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'pevvar' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#Mean surface runoff rate +'msror' = { + table2Version = 235 ; + indicatorOfParameter = 20 ; + } +#Mean sub-surface runoff rate +'mssror' = { + table2Version = 235 ; + indicatorOfParameter = 21 ; + } +#Mean surface photosynthetically active radiation flux, clear sky +'msparfcs' = { + table2Version = 235 ; + indicatorOfParameter = 22 ; + } +#Mean snow evaporation rate +'mser' = { + table2Version = 235 ; + indicatorOfParameter = 23 ; + } +#Mean snowmelt rate +'msmr' = { + table2Version = 235 ; + indicatorOfParameter = 24 ; + } +#Mean magnitude of turbulent surface stress +'mmtss' = { + table2Version = 235 ; + indicatorOfParameter = 25 ; + } +#Mean large-scale precipitation fraction +'mlspf' = { + table2Version = 235 ; + indicatorOfParameter = 26 ; + } +#Mean surface downward UV radiation flux +'msdwuvrf' = { + table2Version = 235 ; + indicatorOfParameter = 27 ; + } +#Mean surface photosynthetically active radiation flux +'msparf' = { + table2Version = 235 ; + indicatorOfParameter = 28 ; + } +#Mean large-scale precipitation rate +'mlspr' = { + table2Version = 235 ; + indicatorOfParameter = 29 ; + } +#Mean convective precipitation rate +'mcpr' = { + table2Version = 235 ; + indicatorOfParameter = 30 ; + } +#Mean snowfall rate +'msr' = { + table2Version = 235 ; + indicatorOfParameter = 31 ; + } +#Mean boundary layer dissipation +'mbld' = { + table2Version = 235 ; + indicatorOfParameter = 32 ; + } +#Mean surface sensible heat flux +'msshf' = { + table2Version = 235 ; + indicatorOfParameter = 33 ; + } +#Mean surface latent heat flux +'mslhf' = { + table2Version = 235 ; + indicatorOfParameter = 34 ; + } +#Mean surface downward short-wave radiation flux +'msdwswrf' = { + table2Version = 235 ; + indicatorOfParameter = 35 ; + } +#Mean surface downward long-wave radiation flux +'msdwlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 36 ; + } +#Mean surface net short-wave radiation flux +'msnswrf' = { + table2Version = 235 ; + indicatorOfParameter = 37 ; + } +#Mean surface net long-wave radiation flux +'msnlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 38 ; + } +#Mean top net short-wave radiation flux +'mtnswrf' = { + table2Version = 235 ; + indicatorOfParameter = 39 ; + } +#Mean top net long-wave radiation flux +'mtnlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 40 ; + } +#Mean eastward turbulent surface stress +'metss' = { + table2Version = 235 ; + indicatorOfParameter = 41 ; + } +#Mean northward turbulent surface stress +'mntss' = { + table2Version = 235 ; + indicatorOfParameter = 42 ; + } +#Mean evaporation rate +'mer' = { + table2Version = 235 ; + indicatorOfParameter = 43 ; + } +#Sunshine duration fraction +'sdf' = { + table2Version = 235 ; + indicatorOfParameter = 44 ; + } +#Mean eastward gravity wave surface stress +'megwss' = { + table2Version = 235 ; + indicatorOfParameter = 45 ; + } +#Mean northward gravity wave surface stress +'mngwss' = { + table2Version = 235 ; + indicatorOfParameter = 46 ; + } +#Mean gravity wave dissipation +'mgwd' = { + table2Version = 235 ; + indicatorOfParameter = 47 ; + } +#Mean runoff rate +'mror' = { + table2Version = 235 ; + indicatorOfParameter = 48 ; + } +#Mean top net short-wave radiation flux, clear sky +'mtnswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 49 ; + } +#Mean top net long-wave radiation flux, clear sky +'mtnlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 50 ; + } +#Mean surface net short-wave radiation flux, clear sky +'msnswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 51 ; + } +#Mean surface net long-wave radiation flux, clear sky +'msnlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 52 ; + } +#Mean top downward short-wave radiation flux +'mtdwswrf' = { + table2Version = 235 ; + indicatorOfParameter = 53 ; + } +#Mean vertically integrated moisture divergence +'mvimd' = { + table2Version = 235 ; + indicatorOfParameter = 54 ; + } +#Mean total precipitation rate +'mtpr' = { + table2Version = 235 ; + indicatorOfParameter = 55 ; + } +#Mean convective snowfall rate +'mcsr' = { + table2Version = 235 ; + indicatorOfParameter = 56 ; + } +#Mean large-scale snowfall rate +'mlssr' = { + table2Version = 235 ; + indicatorOfParameter = 57 ; + } +#Mean surface direct short-wave radiation flux +'msdrswrf' = { + table2Version = 235 ; + indicatorOfParameter = 58 ; + } +#Mean surface direct short-wave radiation flux, clear sky +'msdrswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 59 ; + } +#Mean surface diffuse short-wave radiation flux +'msdfswrf' = { + table2Version = 235 ; + indicatorOfParameter = 60 ; + } +#Mean surface diffuse short-wave radiation flux, clear sky +'msdfswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 61 ; + } +#Mean carbon dioxide net ecosystem exchange flux +'mcdneef' = { + table2Version = 235 ; + indicatorOfParameter = 62 ; + } +#Mean carbon dioxide gross primary production flux +'mcdgppf' = { + table2Version = 235 ; + indicatorOfParameter = 63 ; + } +#Mean carbon dioxide ecosystem respiration flux +'mcderf' = { + table2Version = 235 ; + indicatorOfParameter = 64 ; + } +#Mean rain rate +'mrr' = { + table2Version = 235 ; + indicatorOfParameter = 65 ; + } +#Mean convective rain rate +'mcrr' = { + table2Version = 235 ; + indicatorOfParameter = 66 ; + } +#Mean large-scale rain rate +'mlsrr' = { + table2Version = 235 ; + indicatorOfParameter = 67 ; + } +#Mean surface downward short-wave radiation flux, clear sky +'msdwswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 68 ; + } +#Mean surface downward long-wave radiation flux, clear sky +'msdwlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 69 ; + } +#Mean potential evaporation rate +'mper' = { + table2Version = 235 ; + indicatorOfParameter = 70 ; + } +#Total precipitation rate +'tprate' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#Ceiling +'ceil' = { + table2Version = 228 ; + indicatorOfParameter = 109 ; + } +#K index +'kx' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'totalx' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'strfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'p24.129' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'p25.129' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'clgrd' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'asngrd' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'rsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'sltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'fggrd10' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'presgrd' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'obctgrd' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'p63.129' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'p64.129' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'p65.129' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'p66.129' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'p67.129' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.129' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.129' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'p70.129' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'p71.129' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'p78.129' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'p79.129' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'p80.129' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'p81.129' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'p82.129' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'p83.129' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'p84.129' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'p85.129' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'p86.129' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'p87.129' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'p88.129' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'p89.129' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'p90.129' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'p91.129' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'p92.129' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'p93.129' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'p94.129' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'p95.129' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'p96.129' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'p97.129' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'p98.129' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'p99.129' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'p100.129' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'p101.129' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'p102.129' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'p103.129' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'p104.129' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'p105.129' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'p106.129' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'p107.129' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'p108.129' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'p109.129' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'p110.129' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'p111.129' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'p112.129' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'p113.129' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'p114.129' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'p115.129' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'p116.129' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'p117.129' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'p118.129' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'p119.129' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'p120.129' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'fg6grd10' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'p125.129' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.129' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'bvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'zgrd' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'qgrd' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'spgrd' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'tcwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'sdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'chnkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'ghgrd' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'rgrd' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'ugrd10' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'vgrd10' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'grd2t' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'grd2d' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'srgrd' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'algrd' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'egrd' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'rogrd' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'sigrd10' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'icegrd' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.129' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'tsru' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'ttru' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'clw' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'cf' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'mvv' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'t2ag2' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'t2ag1' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'t2ag0' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'t2alm1' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'t2alm2' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'saip' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'whip' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'g10p' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'capep' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'sp10g10' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'sp10g15' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre wind gust of at least 15 m/s +'fg10g15' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre wind gust of at least 20 m/s +'fg10g20' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre wind gust of at least 25 m/s +'fg10g25' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'t2l273' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'zp' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'tap' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'tccp' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'sp10' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'t2p' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'swhp' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'mwpp' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'p255.131' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'fg10i' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'sfi' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'ws10i' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'t2i' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'mx2ti' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'mn2ti' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'tpi' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'t2plm10' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'t2plm5' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'t2pl0' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'t2pl5' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'t2pl10' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'t2pg25' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'t2pg30' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'t2pg35' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'t2pg40' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'t2pg45' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'sp10g10' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'sp10g15' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'sp10g20' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'sp10g35' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'sp10g50' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'gp10g20' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'gp10g35' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'gp10g50' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'gp10g75' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'gp10g100' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'hmax' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'wmb' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean zero-crossing wave period +'mp2' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'wdw' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'mwd' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak wave period +'pp1d' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'mwp' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'cdww' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'shts' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'mdts' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'mpts' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'sdhs' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'mdwi' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'msqs' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'wind' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'awh' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'arrc' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'dwi' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'d2sp' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'d2fd' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'bfi' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'wsp' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.140' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'ocs' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'ocpd' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'p133.150' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'p134.150' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'ocw' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'rn' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'uv' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'ut' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'vt' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'uu' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'vv' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'p144.150' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'p145.150' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'p146.150' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'p147.150' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'p148.150' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'sl' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'p153.150' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'mld' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'p155.150' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'p168.150' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'p169.150' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'p170.150' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'p172.150' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'p173.150' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'p180.150' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'p181.150' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'p182.150' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'p183.150' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'p255.150' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'p128.151' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Sea water potential temperature +'thetao' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'so' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'uoe' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'von' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'wo' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'vvs' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'vdf' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'dep' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sea water sigma theta +'sigmat' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'rn' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'uv' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'ut' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'vt' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'uu' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'vv' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea surface height +'zos' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'sl_1' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Ocean barotropic stream function +'stfbarot' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'mld' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'sh' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'crl' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'p152.151' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#Surface downward eastward stress +'taueo' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'tauno' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'asr' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'pme' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'sst' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'shf' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'hfc' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#Depth of 20C isotherm +'t20d' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'umax' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'smax' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'pti' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'ptae' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'bpt' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'apt' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'ptbe' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'as' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'sali' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'sale' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'bsal' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'salbe' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'fgbt' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'fgbs' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'bpa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'fgbp' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'pta' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psa' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'p255.151' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'fgrea10' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'pwcrea' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sdrea' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsprea' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprea' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sfrea' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'ghrea' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'rrea' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'ewssrea' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'nsssrea' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erea' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'srcrea' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'rorea' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'vurea' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'vvrea' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'wurea' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'csfrea' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'lsfrea' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'ccrea' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'falrea' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'wsrea10' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'moflrea' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'p249.160' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'hsdrea' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'p51.162' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'p53.162' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'p54.162' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'p55.162' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'p56.162' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'p57.162' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'p58.162' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'p59.162' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'p60.162' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'p61.162' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'p62.162' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'p63.162' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'p64.162' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'p65.162' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'p66.162' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'p67.162' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'p68.162' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'p69.162' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'p70.162' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'p71.162' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'p72.162' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'p73.162' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'p74.162' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'p75.162' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'p76.162' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'p77.162' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'p78.162' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'p81.162' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'p82.162' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'p83.162' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'p84.162' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'p85.162' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'p86.162' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'p87.162' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'p100.162' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'p101.162' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'p102.162' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'p103.162' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'p104.162' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'p105.162' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'p106.162' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'p107.162' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'p108.162' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'p109.162' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'p110.162' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'p111.162' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'p112.162' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'p113.162' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'p206.162' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'p207.162' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'p208.162' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'p209.162' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'p210.162' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'p211.162' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'p212.162' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'p213.162' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'p214.162' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'p215.162' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'p216.162' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'p217.162' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'p218.162' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'p219.162' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'p220.162' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'p221.162' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'p222.162' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'p223.162' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'p224.162' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'p225.162' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'p226.162' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'p227.162' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'p229.162' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'p230.162' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'p231.162' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'p232.162' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'p233.162' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'p255.162' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'tsw' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'strfa' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'vpota' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'pta' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'cla' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'asna' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'rsna' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'slta' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'esa' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'smlta' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'sdura' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'fga10' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'monta' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mean2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'pva' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'obcta' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.171' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'bva' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'za' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'ta' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'ua' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'va' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'qa' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'spa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'tcwa' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'voa' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'sda' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'chnka' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'snra' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'tnra' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'da' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'gha' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'ra' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'blha' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'ua10' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'va10' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'t2a' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'d2a' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'sra' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'ala' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'ea' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'hcca' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'roa' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'ua10' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'sia' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'tpa' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'skta' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'fala' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'cca' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'iaa' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'p255.171' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'esrate' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'p45.172' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress +'p48.172' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Mean large-scale precipitation fraction +'mlspfr' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Mean large-scale precipitation rate +'mlsprt' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate +'cprate' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Mean total snowfall rate +'mtsfr' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Mean surface sensible heat flux +'msshfl' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Mean surface latent heat flux +'mslhfl' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Mean surface net radiation flux +'msnrf' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Mean short-wave heating rate +'mswhr' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Mean long-wave heating rate +'mlwhr' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Mean surface downward solar radiation flux +'msdsrf' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Mean surface downward thermal radiation flux +'msdtrf' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Mean surface net solar radiation flux +'msnsrf' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Mean surface net thermal radiation flux +'msntrf' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Mean top net solar radiation flux +'mtnsrf' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Mean top net thermal radiation flux +'mtntrf' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress rate of accumulation +'ewssra' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress rate of accumulation +'nsssra' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erate' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Mean sunshine duration rate +'msdr' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'p195.172' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'p196.172' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Mean runoff rate +'mrort' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'p208.172' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'p209.172' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'p210.172' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'p211.172' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation rate of accumulation +'soira' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Mean total precipitation rate +'tprate' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'p239.172' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'p240.172' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'p255.172' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'p44.173' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'p45.173' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'p48.173' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'p50.173' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'lspara' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate anomaly +'mcpra' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'p145.173' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'sshfara' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'slhfara' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'p149.173' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'p153.173' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'p154.173' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'ssrdara' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'strdara' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'ssrara' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'strara' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'tsrara' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'ttrara' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'ewssara' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'nsssara' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomalous rate of accumulation +'evara' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'p195.173' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'p196.173' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'p197.173' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomalous rate of accumulation +'roara' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'p208.173' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'p209.173' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'p210.173' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'p211.173' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomalous rate of accumulation +'soiara' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'p239.173' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'p240.173' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'p255.173' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'p6.174' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'sro' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'p31.174' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'p34.174' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'p39.174' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'p40.174' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'p41.174' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'p42.174' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'p49.174' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.174' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'p83.174' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'p85.174' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'p86.174' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'p87.174' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'p88.174' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'p89.174' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'p90.174' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'p94.174' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'p95.174' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'sithick' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'p99.174' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'p110.174' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'p111.174' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'p139.174' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.174' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'p167.174' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'p168.174' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'p170.174' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'p175.174' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'p183.174' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.174' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.174' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'p236.174' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'p255.174' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'p6.175' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'p31.175' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'p34.175' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'p39.175' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'p40.175' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'p41.175' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'p42.175' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'p49.175' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.175' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'p83.175' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'p85.175' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'p86.175' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'p87.175' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'p88.175' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'p89.175' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'p90.175' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'p110.175' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'p111.175' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'p139.175' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.175' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'p167.175' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'p168.175' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'p170.175' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'p175.175' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'p183.175' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.175' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.175' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'p236.175' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'p255.175' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'tsw' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'sdsien' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'cap' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wiltsien' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'sr' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'tsm' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'ddiff2' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'p1.201' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'p2.201' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'p3.201' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'p4.201' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'p6.201' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'p7.201' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'p8.201' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'p9.201' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'p10.201' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'p11.201' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'p12.201' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'p15.201' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'p16.201' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'p17.201' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'clc' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'p30.201' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'qc' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'p32.201' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'p34.201' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'p35.201' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'p36.201' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'p37.201' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'p38.201' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'twater' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'p42.201' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'p51.201' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'p52.201' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'p53.201' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'p54.201' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'p55.201' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'p56.201' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'p60.201' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'p61.201' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'p62.201' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'p63.201' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'p64.201' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'p65.201' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'p66.201' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'p67.201' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'p70.201' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'p71.201' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'bas_con' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'top_con' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'dt_con' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'p76.201' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'p77.201' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'p80.201' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'p81.201' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'p83.201' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'pp' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'p150.201' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'w_i' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'t_snow' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'t_ice' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'cape_con' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'p255.201' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdep' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerlts' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aerscc' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2o' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#CO2 column-mean molar fraction +'tcco2' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#CH4 column-mean molar fraction +'tcch4' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfire' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfire' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'co' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hcho' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'nox' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'ra' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcra' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aersccdiff' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2diff' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5firediff' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'oafirediff' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2diff' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'codiff' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'radiff' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcradiff' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3diff' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'tpoc' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'cin' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'orog' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'zust' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'meantcc' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'dl' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'lmld' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'lblt' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'ltlt' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'lshf' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'lict' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'licd' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'dctb' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'tplb' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'tplt' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'sm' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'st' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'cap' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wilt' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'tp' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'esvar' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'smltvar' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'sdurvar' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'uvbvar' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'parvar' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'lspvar' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'cpvar' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'sfvar' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'bldvar' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'sshfvar' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'slhfvar' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'ssrdvar' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'strdvar' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'ssrvar' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'strvar' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'tsrvar' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'ttrvar' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'ewssvar' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'nsssvar' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'evar' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'sundvar' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'lgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'mgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'gwdvar' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'srcvar' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'rovar' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'tsrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'ttrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'ssrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'strcvar' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'tisrvar' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'sts' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'msls' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'t2s' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'tps' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'ust' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'vst' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefirediff' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3firediff' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'u100' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'v100' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/name.def b/eccodes/definitions/grib1/localConcepts/ecmf/name.def new file mode 100644 index 00000000..7323f9fc --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/name.def @@ -0,0 +1,17676 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'Total precipitation of at least 1 mm' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'Total precipitation of at least 5 mm' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'Total precipitation of at least 10 mm' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'Total precipitation of at least 20 mm' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'Total precipitation of at least 40 mm' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'Total precipitation of at least 60 mm' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'Total precipitation of at least 80 mm' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'Stream function' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'Equivalent potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'Saturated equivalent potential temperature' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'Soil sand fraction' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'Soil clay fraction' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'Surface runoff' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'Wind speed' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'U component of divergent wind' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'V component of divergent wind' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'U component of rotational wind' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'V component of rotational wind' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'UV visible albedo for direct radiation' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'UV visible albedo for diffuse radiation' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'Near IR albedo for direct radiation' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'Near IR albedo for diffuse radiation' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'Clear sky surface UV' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'Clear sky surface photosynthetically active radiation' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'Lake cover' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'Low vegetation cover' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'High vegetation cover' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'Type of low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'Type of high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea ice area fraction +'Sea ice area fraction' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'Snow density' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'Sea surface temperature' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'Ice temperature layer 1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'Ice temperature layer 2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'Ice temperature layer 3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'Ice temperature layer 4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'Soil type' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'Snow evaporation' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'Snowmelt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'Solar duration' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'Direct solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'Maximum temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'Minimum temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'Montgomery potential' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'Pressure' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'Mean temperature at 2 metres in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'Mean 2 metre dewpoint temperature in the last 24 hours' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'Downward UV radiation at the surface' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'Photosynthetically active radiation at the surface' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'Convective available potential energy' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'Observation count' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'Instantaneous surface solar radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'Instantaneous surface thermal radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'Standard deviation of filtered subgrid orography' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'Specific rain water content' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'Specific snow water content' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'Eta-coordinate vertical velocity' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column cloud liquid water +'Total column cloud liquid water' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column cloud ice water +'Total column cloud ice water' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'10 metre wind gust in the last 6 hours' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'Surface emissivity' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'Atmospheric tide' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'Atmospheric tide' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'Budget values' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'Budget values' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'Geopotential' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'Geopotential' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'Temperature' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'Temperature' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'U component of wind' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'U component of wind' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'V component of wind' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'V component of wind' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'Total column water' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'Total column water' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'Snow depth' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'Snow depth' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'Snow depth' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'Snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'Snowfall' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'Charnock' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'Surface net radiation' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'Top net radiation' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'Divergence' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'Divergence' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'Boundary layer height' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'Standard deviation of orography' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'Albedo' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'Albedo' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'Albedo' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'Evaporation' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'Sunshine duration' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'Skin reservoir content' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'Vegetation fraction' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'Ozone mass mixing ratio' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'Runoff' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'Runoff' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'TOA incident solar radiation' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'Vertically integrated moisture divergence' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'Diabatic heating large-scale condensation' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'East-West gravity wave drag tendency' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'North-South gravity wave drag tendency' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'Instantaneous surface sensible heat flux' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'Skin temperature' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'Skin temperature' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'Accumulated cloud fraction tendency' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'Accumulated liquid water tendency' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Fraction of cloud cover +'Fraction of cloud cover' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'Accumulated ice water tendency' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'Ice age' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'Stream function difference' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'Velocity potential difference' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'Potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'Equivalent potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'Saturated equivalent potential temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'U component of divergent wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'V component of divergent wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'U component of rotational wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'V component of rotational wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'Unbalanced component of temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'Unbalanced component of logarithm of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'Unbalanced component of divergence difference' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'Lake cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'Low vegetation cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'High vegetation cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'Type of low vegetation difference' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'Type of high vegetation difference' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'Sea-ice cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'Snow albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'Snow density difference' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'Sea surface temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'Ice surface temperature layer 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'Ice surface temperature layer 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'Ice surface temperature layer 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'Ice surface temperature layer 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'Volumetric soil water layer 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'Volumetric soil water layer 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'Volumetric soil water layer 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'Volumetric soil water layer 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'Soil type difference' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'Snow evaporation difference' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'Snowmelt difference' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'Solar duration difference' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'Direct solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress difference +'Magnitude of turbulent surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'10 metre wind gust difference' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'Large-scale precipitation fraction difference' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'Maximum 2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'Minimum 2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'Montgomery potential difference' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'Pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'Mean 2 metre temperature in the last 24 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'Downward UV radiation at the surface difference' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'Photosynthetically active radiation at the surface difference' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'Convective available potential energy difference' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'Potential vorticity difference' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'Total precipitation from observations difference' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'Observation count difference' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'Total column ice water' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'Maximum temperature at 2 metres difference' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'Minimum temperature at 2 metres difference' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10 metre wind gust in the last 6 hours difference' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'Atmospheric tide difference' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'Budget values difference' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'Geopotential difference' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'Temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'U component of wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'V component of wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'Specific humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'Surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'Vertical velocity (pressure) difference' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'Total column water difference' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'Total column water vapour difference' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'Vorticity (relative) difference' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'Soil temperature level 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'Soil wetness level 1 difference' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'Snow depth difference' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'Stratiform precipitation (Large-scale precipitation) difference' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'Convective precipitation difference' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'Snowfall (convective + stratiform) difference' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'Boundary layer dissipation difference' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'Surface sensible heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'Surface latent heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'Charnock difference' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'Surface net radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'Top net radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'Mean sea level pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'Logarithm of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'Short-wave heating rate difference' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'Long-wave heating rate difference' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'Divergence difference' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'Height difference' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'Relative humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'Tendency of surface pressure difference' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'Boundary layer height difference' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'Standard deviation of orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'Anisotropy of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'Angle of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'Slope of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'Total cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'10 metre U wind component difference' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'10 metre V wind component difference' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'2 metre temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'Surface solar radiation downwards difference' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'Soil temperature level 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'Soil wetness level 2 difference' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'Land-sea mask difference' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'Surface roughness difference' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'Albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'Surface thermal radiation downwards difference' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'Surface net solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'Surface net thermal radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'Top net solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'Top net thermal radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'East-West surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'North-South surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'Evaporation difference' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'Soil temperature level 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'Soil wetness level 3 difference' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'Convective cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'Low cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'Medium cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'High cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'Sunshine duration difference' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'East-West component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'North-South component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'North-West/South-East component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'North-East/South-West component of sub-gridscale orographic variance difference' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'Brightness temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'Longitudinal component of gravity wave stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'Meridional component of gravity wave stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'Gravity wave dissipation difference' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'Skin reservoir content difference' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'Vegetation fraction difference' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'Variance of sub-gridscale orography difference' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'Maximum temperature at 2 metres since previous post-processing difference' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'Minimum temperature at 2 metres since previous post-processing difference' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'Ozone mass mixing ratio difference' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'Precipitation analysis weights difference' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'Runoff difference' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'Total column ozone difference' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'10 metre wind speed difference' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'Top net solar radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'Top net thermal radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'Surface net solar radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'Surface net thermal radiation, clear sky difference' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'TOA incident solar radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'Diabatic heating by radiation difference' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'Diabatic heating by vertical diffusion difference' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'Diabatic heating by cumulus convection difference' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'Diabatic heating large-scale condensation difference' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'Vertical diffusion of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'Vertical diffusion of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'East-West gravity wave drag tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'North-South gravity wave drag tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'Convective tendency of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'Convective tendency of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'Vertical diffusion of humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'Humidity tendency by cumulus convection difference' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'Humidity tendency by large-scale condensation difference' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'Change from removal of negative humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'Total precipitation difference' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'Instantaneous X surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'Instantaneous Y surface stress difference' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'Instantaneous surface heat flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'Instantaneous moisture flux difference' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'Apparent surface humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'Logarithm of surface roughness length for heat difference' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'Soil temperature level 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'Soil wetness level 4 difference' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'Temperature of snow layer difference' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'Convective snowfall difference' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'Large scale snowfall difference' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'Accumulated cloud fraction tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'Accumulated liquid water tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'Forecast albedo difference' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'Forecast surface roughness difference' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'Forecast logarithm of surface roughness for heat difference' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'Specific cloud liquid water content difference' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'Specific cloud ice water content difference' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'Cloud cover difference' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'Accumulated ice water tendency difference' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'Ice age difference' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'Adiabatic tendency of temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'Adiabatic tendency of humidity difference' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'Adiabatic tendency of zonal wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'Adiabatic tendency of meridional wind difference' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'Probability of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'Probability of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'Probability of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'Climatological probability of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'Climatological probability of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'Climatological probability of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'Probability anomaly of a tropical storm' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'Probability anomaly of a hurricane' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'Probability anomaly of a tropical depression' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Total precipitation of at least 25 mm +'Total precipitation of at least 25 mm' = { + table2Version = 131 ; + indicatorOfParameter = 98 ; + } +#Total precipitation of at least 50 mm +'Total precipitation of at least 50 mm' = { + table2Version = 131 ; + indicatorOfParameter = 99 ; + } +#10 metre wind gust of at least 10 m/s +'10 metre wind gust of at least 10 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 100 ; + } +#Convective available potential energy shear index +'Convective available potential energy shear index' = { + table2Version = 132 ; + indicatorOfParameter = 44 ; + } +#Water vapour flux index +'Water vapour flux index' = { + table2Version = 132 ; + indicatorOfParameter = 45 ; + } +#Convective available potential energy index +'Convective available potential energy index' = { + table2Version = 132 ; + indicatorOfParameter = 59 ; + } +#Maximum of significant wave height index +'Maximum of significant wave height index' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'Wave experimental parameter 1' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'Wave experimental parameter 2' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'Wave experimental parameter 3' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'Wave experimental parameter 4' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'Wave experimental parameter 5' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Wave induced mean sea level correction +'Wave induced mean sea level correction' = { + table2Version = 140 ; + indicatorOfParameter = 98 ; + } +#Ratio of wave angular and frequency width +'Ratio of wave angular and frequency width' = { + table2Version = 140 ; + indicatorOfParameter = 99 ; + } +#Number of events in freak waves statistics +'Number of events in freak waves statistics' = { + table2Version = 140 ; + indicatorOfParameter = 100 ; + } +#U-component of atmospheric surface momentum flux +'U-component of atmospheric surface momentum flux' = { + table2Version = 140 ; + indicatorOfParameter = 101 ; + } +#V-component of atmospheric surface momentum flux +'V-component of atmospheric surface momentum flux' = { + table2Version = 140 ; + indicatorOfParameter = 102 ; + } +#U-component of surface momentum flux into ocean +'U-component of surface momentum flux into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 103 ; + } +#V-component of surface momentum flux into ocean +'V-component of surface momentum flux into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 104 ; + } +#Wave turbulent energy flux into ocean +'Wave turbulent energy flux into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 105 ; + } +#Wave directional width of first swell partition +'Wave directional width of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 106 ; + } +#Wave frequency width of first swell partition +'Wave frequency width of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 107 ; + } +#Wave directional width of second swell partition +'Wave directional width of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 108 ; + } +#Wave frequency width of second swell partition +'Wave frequency width of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 109 ; + } +#Wave directional width of third swell partition +'Wave directional width of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 110 ; + } +#Wave frequency width of third swell partition +'Wave frequency width of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 111 ; + } +#Wave energy flux magnitude +'Wave energy flux magnitude' = { + table2Version = 140 ; + indicatorOfParameter = 112 ; + } +#Wave energy flux mean direction +'Wave energy flux mean direction' = { + table2Version = 140 ; + indicatorOfParameter = 113 ; + } +#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds +'Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 114 ; + } +#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds +'Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 115 ; + } +#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds +'Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 116 ; + } +#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds +'Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 117 ; + } +#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds +'Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 118 ; + } +#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds +'Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds' = { + table2Version = 140 ; + indicatorOfParameter = 119 ; + } +#Significant wave height of all waves with period larger than 10s +'Significant wave height of all waves with period larger than 10s' = { + table2Version = 140 ; + indicatorOfParameter = 120 ; + } +#Significant wave height of first swell partition +'Significant wave height of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'Mean wave direction of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'Mean wave period of first swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'Significant wave height of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'Mean wave direction of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'Mean wave period of second swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'Significant wave height of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'Mean wave direction of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'Mean wave period of third swell partition' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'Wave Spectral Skewness' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'Free convective velocity over the oceans' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'Air density over the oceans' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'Mean square wave strain in sea ice' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'Normalized energy flux into waves' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'Normalized energy flux into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'Turbulent Langmuir number' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'Normalized stress into ocean' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'Reserved' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Water vapour flux +'Water vapour flux' = { + table2Version = 162 ; + indicatorOfParameter = 45 ; + } +#Vertical integral of divergence of cloud liquid water flux +'Vertical integral of divergence of cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'Vertical integral of divergence of cloud frozen water flux' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'Vertical integral of eastward cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'Vertical integral of northward cloud liquid water flux' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'Vertical integral of eastward cloud frozen water flux' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'Vertical integral of northward cloud frozen water flux ' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'Vertical integral of mass tendency' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'U-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'V-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'T-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'q-tendency from dynamics' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'T-tendency from radiation' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'U-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'V-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'T-tendency from turbulent diffusion + subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'q-tendency from turbulent diffusion' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'U-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'V-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'T-tendency from subgrid orography' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'U-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'V-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'T-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'q-tendency from convection (deep+shallow)' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'Liquid Precipitation flux from convection' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'Ice Precipitation flux from convection' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'T-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'q-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'ql-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qi-tendency from cloud scheme' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'Liquid Precip flux from cloud scheme (stratiform)' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'Ice Precip flux from cloud scheme (stratiform)' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'U-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'V-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'T-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'q-tendency from shallow convection' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#Standardised precipitation index valid in the last 3 months +'Standardised precipitation index valid in the last 3 months' = { + table2Version = 170 ; + indicatorOfParameter = 1 ; + } +#Standardised precipitation index valid in the last 6 months +'Standardised precipitation index valid in the last 6 months' = { + table2Version = 170 ; + indicatorOfParameter = 2 ; + } +#Standardised precipitation index valid in the last 12 months +'Standardised precipitation index valid in the last 12 months' = { + table2Version = 170 ; + indicatorOfParameter = 3 ; + } +#100 metre U wind component anomaly +'100 metre U wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'100 metre V wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature anomaly +'Lake mix-layer temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 24 ; + } +#Lake ice depth anomaly +'Lake ice depth anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'Maximum temperature at 2 metres in the last 6 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'Minimum temperature at 2 metres in the last 6 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Mean surface runoff rate +'Mean surface runoff rate' = { + table2Version = 172 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate +'Mean sub-surface runoff rate' = { + table2Version = 172 ; + indicatorOfParameter = 9 ; + } +#Mean surface runoff rate anomaly +'Mean surface runoff rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate anomaly +'Mean sub-surface runoff rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 9 ; + } +#Clear-sky (II) down surface sw flux +'Clear-sky (II) down surface sw flux' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'Clear-sky (II) up surface sw flux' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'Visibility at 1.5m' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'Minimum temperature at 1.5m since previous post-processing' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'Maximum temperature at 1.5m since previous post-processing' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'Relative humidity at 1.5m' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#2 metre specific humidity +'2 metre specific humidity' = { + table2Version = 174 ; + indicatorOfParameter = 96 ; + } +#Sea ice snow thickness +'Sea ice snow thickness' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Short wave radiation flux at surface +'Short wave radiation flux at surface' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'Short wave radiation flux at top of atmosphere' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'Large scale rainfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'Convective rainfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'Very low cloud amount' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'Total cloud amount - random overlap' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'Total cloud amount in lw radiation' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'Volcanic ash aerosol mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'Volcanic sulphate aerosol mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'Volcanic SO2 precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'Mixing ration of organic carbon aerosol, nucleation mode' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'Monoterpene precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'Secondary organic precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Injection height (from IS4FIRES) +'Injection height (from IS4FIRES)' = { + table2Version = 210 ; + indicatorOfParameter = 60 ; + } +#Particulate matter d < 1 um +'Particulate matter d < 1 um' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'Particulate matter d < 2.5 um' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'Particulate matter d < 10 um' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'Wildfire viewing angle of observation' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'Wildfire Flux of Ethane (C2H6)' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'Mean altitude of maximum injection' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'UV visible albedo for direct radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'UV visible albedo for direct radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'UV visible albedo for direct radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'Near IR albedo for direct radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'Near IR albedo for direct radiation, volumetric component' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'Near IR albedo for direct radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'UV visible albedo for diffuse radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'UV visible albedo for diffuse radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'UV visible albedo for diffuse radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'Near IR albedo for diffuse radiation, isotropic component ' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'Near IR albedo for diffuse radiation, volumetric component ' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'Near IR albedo for diffuse radiation, geometric component ' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'Total aerosol optical depth at 340 nm' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'Total aerosol optical depth at 355 nm' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'Total aerosol optical depth at 380 nm' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'Total aerosol optical depth at 400 nm' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'Total aerosol optical depth at 440 nm' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'Total aerosol optical depth at 500 nm' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'Total aerosol optical depth at 532 nm' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'Total aerosol optical depth at 645 nm' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'Total aerosol optical depth at 800 nm' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'Total aerosol optical depth at 858 nm' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'Total aerosol optical depth at 1020 nm' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'Total aerosol optical depth at 1064 nm' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'Total aerosol optical depth at 1640 nm' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'Total aerosol optical depth at 2130 nm' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'Wildfire Flux of Toluene (C7H8)' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'Wildfire Flux of Benzene (C6H6)' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'Wildfire Flux of Xylene (C8H10)' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'Wildfire Flux of Butenes (C4H8)' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'Wildfire Flux of Pentenes (C5H10)' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'Wildfire Flux of Hexene (C6H12)' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'Wildfire Flux of Octene (C8H16)' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'Wildfire Flux of Butanes (C4H10)' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'Wildfire Flux of Pentanes (C5H12)' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'Wildfire Flux of Hexanes (C6H14)' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'Wildfire Flux of Heptane (C7H16)' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'Altitude of plume bottom' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'Volcanic sulphate aerosol optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'Volcanic ash optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'Profile of total aerosol dry extinction coefficient' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'Profile of total aerosol dry absorption coefficient' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'Nitrate fine mode aerosol mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 247 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'Nitrate coarse mode aerosol mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 248 ; + } +#Ammonium aerosol mass mixing ratio +'Ammonium aerosol mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 249 ; + } +#Nitrate aerosol optical depth at 550 nm +'Nitrate aerosol optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 250 ; + } +#Ammonium aerosol optical depth at 550 nm +'Ammonium aerosol optical depth at 550 nm' = { + table2Version = 210 ; + indicatorOfParameter = 251 ; + } +#Aerosol type 13 mass mixing ratio +'Aerosol type 13 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'Aerosol type 14 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'Aerosol type 15 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'Wildfire Flux of Ethane (C2H6)' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'Altitude of emitter' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'Experimental product' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'Random pattern 1 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'Random pattern 2 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'Random pattern 3 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'Random pattern 4 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'Random pattern 5 for sppt' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +#Random pattern 1 for SPP scheme +'Random pattern 1 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 101 ; + } +#Random pattern 2 for SPP scheme +'Random pattern 2 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 102 ; + } +#Random pattern 3 for SPP scheme +'Random pattern 3 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 103 ; + } +#Random pattern 4 for SPP scheme +'Random pattern 4 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 104 ; + } +#Random pattern 5 for SPP scheme +'Random pattern 5 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 105 ; + } +#Random pattern 6 for SPP scheme +'Random pattern 6 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 106 ; + } +#Random pattern 7 for SPP scheme +'Random pattern 7 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 107 ; + } +#Random pattern 8 for SPP scheme +'Random pattern 8 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 108 ; + } +#Random pattern 9 for SPP scheme +'Random pattern 9 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 109 ; + } +#Random pattern 10 for SPP scheme +'Random pattern 10 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 110 ; + } +#Random pattern 11 for SPP scheme +'Random pattern 11 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 111 ; + } +#Random pattern 12 for SPP scheme +'Random pattern 12 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 112 ; + } +#Random pattern 13 for SPP scheme +'Random pattern 13 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 113 ; + } +#Random pattern 14 for SPP scheme +'Random pattern 14 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 114 ; + } +#Random pattern 15 for SPP scheme +'Random pattern 15 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 115 ; + } +#Random pattern 16 for SPP scheme +'Random pattern 16 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 116 ; + } +#Random pattern 17 for SPP scheme +'Random pattern 17 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 117 ; + } +#Random pattern 18 for SPP scheme +'Random pattern 18 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 118 ; + } +#Random pattern 19 for SPP scheme +'Random pattern 19 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 119 ; + } +#Random pattern 20 for SPP scheme +'Random pattern 20 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 120 ; + } +#Random pattern 21 for SPP scheme +'Random pattern 21 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 121 ; + } +#Random pattern 22 for SPP scheme +'Random pattern 22 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 122 ; + } +#Random pattern 23 for SPP scheme +'Random pattern 23 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 123 ; + } +#Random pattern 24 for SPP scheme +'Random pattern 24 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 124 ; + } +#Random pattern 25 for SPP scheme +'Random pattern 25 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 125 ; + } +#Random pattern 26 for SPP scheme +'Random pattern 26 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 126 ; + } +#Random pattern 27 for SPP scheme +'Random pattern 27 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 127 ; + } +#Random pattern 28 for SPP scheme +'Random pattern 28 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 128 ; + } +#Random pattern 29 for SPP scheme +'Random pattern 29 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 129 ; + } +#Random pattern 30 for SPP scheme +'Random pattern 30 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 130 ; + } +#Random pattern 31 for SPP scheme +'Random pattern 31 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 131 ; + } +#Random pattern 32 for SPP scheme +'Random pattern 32 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 132 ; + } +#Random pattern 33 for SPP scheme +'Random pattern 33 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 133 ; + } +#Random pattern 34 for SPP scheme +'Random pattern 34 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 134 ; + } +#Random pattern 35 for SPP scheme +'Random pattern 35 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 135 ; + } +#Random pattern 36 for SPP scheme +'Random pattern 36 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 136 ; + } +#Random pattern 37 for SPP scheme +'Random pattern 37 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 137 ; + } +#Random pattern 38 for SPP scheme +'Random pattern 38 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 138 ; + } +#Random pattern 39 for SPP scheme +'Random pattern 39 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 139 ; + } +#Random pattern 40 for SPP scheme +'Random pattern 40 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 140 ; + } +#Random pattern 41 for SPP scheme +'Random pattern 41 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 141 ; + } +#Random pattern 42 for SPP scheme +'Random pattern 42 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 142 ; + } +#Random pattern 43 for SPP scheme +'Random pattern 43 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 143 ; + } +#Random pattern 44 for SPP scheme +'Random pattern 44 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 144 ; + } +#Random pattern 45 for SPP scheme +'Random pattern 45 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 145 ; + } +#Random pattern 46 for SPP scheme +'Random pattern 46 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 146 ; + } +#Random pattern 47 for SPP scheme +'Random pattern 47 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 147 ; + } +#Random pattern 48 for SPP scheme +'Random pattern 48 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 148 ; + } +#Random pattern 49 for SPP scheme +'Random pattern 49 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 149 ; + } +#Random pattern 50 for SPP scheme +'Random pattern 50 for SPP scheme' = { + table2Version = 213 ; + indicatorOfParameter = 150 ; + } +#Cosine of solar zenith angle +'Cosine of solar zenith angle' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +#UV biologically effective dose +'UV biologically effective dose' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +#UV biologically effective dose clear-sky +'UV biologically effective dose clear-sky' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'Total surface UV spectral flux (280-285 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'Total surface UV spectral flux (285-290 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'Total surface UV spectral flux (290-295 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'Total surface UV spectral flux (295-300 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'Total surface UV spectral flux (300-305 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'Total surface UV spectral flux (305-310 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'Total surface UV spectral flux (310-315 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'Total surface UV spectral flux (315-320 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'Total surface UV spectral flux (320-325 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'Total surface UV spectral flux (325-330 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'Total surface UV spectral flux (330-335 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'Total surface UV spectral flux (335-340 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'Total surface UV spectral flux (340-345 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'Total surface UV spectral flux (345-350 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'Total surface UV spectral flux (350-355 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'Total surface UV spectral flux (355-360 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'Total surface UV spectral flux (360-365 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'Total surface UV spectral flux (365-370 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'Total surface UV spectral flux (370-375 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'Total surface UV spectral flux (375-380 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'Total surface UV spectral flux (380-385 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'Total surface UV spectral flux (385-390 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'Total surface UV spectral flux (390-395 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'Total surface UV spectral flux (395-400 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'Clear-sky surface UV spectral flux (280-285 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'Clear-sky surface UV spectral flux (285-290 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'Clear-sky surface UV spectral flux (290-295 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'Clear-sky surface UV spectral flux (295-300 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'Clear-sky surface UV spectral flux (300-305 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'Clear-sky surface UV spectral flux (305-310 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'Clear-sky surface UV spectral flux (310-315 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'Clear-sky surface UV spectral flux (315-320 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'Clear-sky surface UV spectral flux (320-325 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'Clear-sky surface UV spectral flux (325-330 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'Clear-sky surface UV spectral flux (330-335 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'Clear-sky surface UV spectral flux (335-340 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'Clear-sky surface UV spectral flux (340-345 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'Clear-sky surface UV spectral flux (345-350 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'Clear-sky surface UV spectral flux (350-355 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'Clear-sky surface UV spectral flux (355-360 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'Clear-sky surface UV spectral flux (360-365 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'Clear-sky surface UV spectral flux (365-370 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'Clear-sky surface UV spectral flux (370-375 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'Clear-sky surface UV spectral flux (375-380 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'Clear-sky surface UV spectral flux (380-385 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'Clear-sky surface UV spectral flux (385-390 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'Clear-sky surface UV spectral flux (390-395 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'Clear-sky surface UV spectral flux (395-400 nm)' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +#Profile of optical thickness at 340 nm +'Profile of optical thickness at 340 nm' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'Source/gain of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'Source/gain of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'Dry deposition of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'Dry deposition of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'Sedimentation of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'Sedimentation of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'Negative fixer of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'Negative fixer of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'Sea salt aerosol (0.03 - 0.5 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'Sea salt aerosol (0.5 - 5 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'Sea salt aerosol (5 - 20 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'Source/gain of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'Source/gain of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'Source/gain of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'Dry deposition of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'Dry deposition of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'Dry deposition of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'Sedimentation of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'Sedimentation of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'Sedimentation of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'Negative fixer of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'Negative fixer of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'Negative fixer of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'Vertically integrated mass of dust aerosol (9 - 20 um)' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'Dust aerosol (0.03 - 0.55 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'Dust aerosol (0.55 - 9 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'Dust aerosol (9 - 20 um) optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'Source/gain of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'Source/gain of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'Dry deposition of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'Dry deposition of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'Sedimentation of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'Sedimentation of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'Negative fixer of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'Negative fixer of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'Vertically integrated mass of hydrophobic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'Vertically integrated mass of hydrophilic organic matter aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'Hydrophobic organic matter aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'Hydrophilic organic matter aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'Source/gain of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'Source/gain of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'Dry deposition of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'Dry deposition of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'Sedimentation of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'Sedimentation of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'Negative fixer of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'Negative fixer of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'Vertically integrated mass of hydrophobic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'Vertically integrated mass of hydrophilic black carbon aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'Hydrophobic black carbon aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'Hydrophilic black carbon aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +#Source/gain of sulphate aerosol +'Source/gain of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +#Dry deposition of sulphate aerosol +'Dry deposition of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +#Sedimentation of sulphate aerosol +'Sedimentation of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'Wet deposition of sulphate aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'Wet deposition of sulphate aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +#Negative fixer of sulphate aerosol +'Negative fixer of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'Vertically integrated mass of sulphate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +#Sulphate aerosol optical depth +'Sulphate aerosol optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'Accumulated total aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'Effective (snow effect included) UV visible albedo for direct radiation' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'10 metre wind speed dust emission potential' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'10 metre wind gustiness dust emission potential' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Total aerosol optical thickness at 532 nm +'Total aerosol optical thickness at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'Total absorption aerosol optical depth at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'Total absorption aerosol optical depth at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'Total absorption aerosol optical depth at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'Total absorption aerosol optical depth at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'Total absorption aerosol optical depth at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'Total absorption aerosol optical depth at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'Total absorption aerosol optical depth at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'Total absorption aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'Total absorption aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'Total absorption aerosol optical depth at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'Total absorption aerosol optical depth at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'Total absorption aerosol optical depth at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'Total absorption aerosol optical depth at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'Total absorption aerosol optical depth at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'Total absorption aerosol optical depth at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'Total absorption aerosol optical depth at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'Total absorption aerosol optical depth at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'Total absorption aerosol optical depth at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'Single scattering albedo at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'Single scattering albedo at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'Single scattering albedo at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'Single scattering albedo at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'Single scattering albedo at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'Single scattering albedo at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'Single scattering albedo at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'Single scattering albedo at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'Single scattering albedo at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'Single scattering albedo at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'Single scattering albedo at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'Single scattering albedo at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'Single scattering albedo at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'Single scattering albedo at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'Single scattering albedo at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'Single scattering albedo at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'Single scattering albedo at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'Single scattering albedo at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Asymmetry factor at 340 nm +'Asymmetry factor at 340 nm' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Asymmetry factor at 355 nm +'Asymmetry factor at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Asymmetry factor at 380 nm +'Asymmetry factor at 380 nm' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Asymmetry factor at 400 nm +'Asymmetry factor at 400 nm' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Asymmetry factor at 440 nm +'Asymmetry factor at 440 nm' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Asymmetry factor at 469 nm +'Asymmetry factor at 469 nm' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Asymmetry factor at 500 nm +'Asymmetry factor at 500 nm' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Asymmetry factor at 532 nm +'Asymmetry factor at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Asymmetry factor at 550 nm +'Asymmetry factor at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Asymmetry factor at 645 nm +'Asymmetry factor at 645 nm' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Asymmetry factor at 670 nm +'Asymmetry factor at 670 nm' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Asymmetry factor at 800 nm +'Asymmetry factor at 800 nm' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Asymmetry factor at 858 nm +'Asymmetry factor at 858 nm' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Asymmetry factor at 865 nm +'Asymmetry factor at 865 nm' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Asymmetry factor at 1020 nm +'Asymmetry factor at 1020 nm' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Asymmetry factor at 1064 nm +'Asymmetry factor at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Asymmetry factor at 1240 nm +'Asymmetry factor at 1240 nm' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Asymmetry factor at 1640 nm +'Asymmetry factor at 1640 nm' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'Source/gain of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'Dry deposition of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'Sedimentation of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'Wet deposition of sulphur dioxide by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'Wet deposition of sulphur dioxide by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'Negative fixer of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'Vertically integrated mass of sulphur dioxide' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'Sulphur dioxide optical depth' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'Total absorption aerosol optical depth at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'Single scattering albedo at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Asymmetry factor at 2130 nm +'Asymmetry factor at 2130 nm' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'Aerosol extinction coefficient at 355 nm' = { + table2Version = 215 ; + indicatorOfParameter = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'Aerosol extinction coefficient at 532 nm' = { + table2Version = 215 ; + indicatorOfParameter = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'Aerosol extinction coefficient at 1064 nm' = { + table2Version = 215 ; + indicatorOfParameter = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { + table2Version = 215 ; + indicatorOfParameter = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { + table2Version = 215 ; + indicatorOfParameter = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { + table2Version = 215 ; + indicatorOfParameter = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'Aerosol backscatter coefficient at 355 nm (from ground)' = { + table2Version = 215 ; + indicatorOfParameter = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'Aerosol backscatter coefficient at 532 nm (from ground)' = { + table2Version = 215 ; + indicatorOfParameter = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'Aerosol backscatter coefficient at 1064 nm (from ground)' = { + table2Version = 215 ; + indicatorOfParameter = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'Source/gain of fine-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 189 ; + } +#Source/gain of coarse-mode nitrate aerosol +'Source/gain of coarse-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 190 ; + } +#Dry deposition of fine-mode nitrate aerosol +'Dry deposition of fine-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 191 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'Dry deposition of coarse-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 192 ; + } +#Sedimentation of fine-mode nitrate aerosol +'Sedimentation of fine-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 193 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'Sedimentation of coarse-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 194 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'Wet deposition of fine-mode nitrate aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 195 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 196 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'Wet deposition of fine-mode nitrate aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 197 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'Wet deposition of coarse-mode nitrate aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 198 ; + } +#Negative fixer of fine-mode nitrate aerosol +'Negative fixer of fine-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 199 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'Negative fixer of coarse-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 200 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'Vertically integrated mass of fine-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 201 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'Vertically integrated mass of coarse-mode nitrate aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 202 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'Fine-mode nitrate aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 203 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'Coarse-mode nitrate aerosol optical depth at 550 nm' = { + table2Version = 215 ; + indicatorOfParameter = 204 ; + } +#Source/gain of ammonium aerosol +'Source/gain of ammonium aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 205 ; + } +#Dry deposition of ammonium aerosol +'Dry deposition of ammonium aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 206 ; + } +#Sedimentation of ammonium aerosol +'Sedimentation of ammonium aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 207 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'Wet deposition of ammonium aerosol by large-scale precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 208 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'Wet deposition of ammonium aerosol by convective precipitation' = { + table2Version = 215 ; + indicatorOfParameter = 209 ; + } +#Negative fixer of ammonium aerosol +'Negative fixer of ammonium aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 210 ; + } +#Vertically integrated mass of ammonium aerosol +'Vertically integrated mass of ammonium aerosol' = { + table2Version = 215 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'Experimental product' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'Hydrogen peroxide' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'Methane (chemistry)' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'Nitric acid' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'Methyl peroxide' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'Paraffins' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'Ethene' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'Olefins' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'Aldehydes' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'Peroxyacetyl nitrate' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'Peroxides' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'Organic nitrates' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'Isoprene' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'Dimethyl sulfide' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'Ammonia' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'Sulfate' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'Ammonium' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'Methane sulfonic acid' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'Methyl glyoxal' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'Stratospheric ozone' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'Lead' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'Nitrogen monoxide' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'Hydroperoxy radical' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'Methylperoxy radical' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'Hydroxyl radical' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'Nitrate radical' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'Dinitrogen pentoxide' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'Pernitric acid' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'Peroxy acetyl radical' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'Organic ethers' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'PAR budget corrector' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'NO to NO2 operator' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'NO to alkyl nitrate operator' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'Amine' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'Polar stratospheric cloud' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'Methanol' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'Formic acid' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'Methacrylic acid' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'Ethane' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'Ethanol' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'Propane' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'Propene' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'Terpenes' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'Methacrolein MVK' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'Nitrate' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'Acetone' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'Acetone product' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'IC3H7O2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'HYPROPO2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'Nitrogen oxides Transp' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'Total column hydrogen peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'Total column methane' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'Total column nitric acid' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'Total column methyl peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'Total column paraffins' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'Total column ethene' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'Total column olefins' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'Total column aldehydes' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'Total column peroxyacetyl nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'Total column peroxides' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'Total column organic nitrates' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'Total column isoprene' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'Total column dimethyl sulfide' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'Total column ammonia' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'Total column sulfate' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'Total column ammonium' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'Total column methane sulfonic acid' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'Total column methyl glyoxal' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'Total column stratospheric ozone' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'Total column lead' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'Total column nitrogen monoxide' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'Total column hydroperoxy radical' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'Total column methylperoxy radical' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'Total column hydroxyl radical' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'Total column nitrate radical' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'Total column dinitrogen pentoxide' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'Total column pernitric acid' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'Total column peroxy acetyl radical' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'Total column organic ethers' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'Total column PAR budget corrector' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'Total column NO to NO2 operator' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'Total column NO to alkyl nitrate operator' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'Total column amine' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'Total column polar stratospheric cloud' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'Total column methanol' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'Total column formic acid' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'Total column methacrylic acid' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'Total column ethane' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'Total column ethanol' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'Total column propane' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'Total column propene' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'Total column terpenes' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'Total column methacrolein MVK' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'Total column nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'Total column acetone' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'Total column acetone product' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'Total column IC3H7O2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'Total column HYPROPO2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'Total column nitrogen oxides Transp' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'Ozone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'Nitrogen oxides emissions' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'Hydrogen peroxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'Methane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'Carbon monoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'Nitric acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'Methyl peroxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'Formaldehyde emissions' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'Paraffins emissions' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'Ethene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'Olefins emissions' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'Aldehydes emissions' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'Peroxyacetyl nitrate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'Peroxides emissions' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'Organic nitrates emissions' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'Isoprene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'Sulfur dioxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'Dimethyl sulfide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'Ammonia emissions' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'Sulfate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'Ammonium emissions' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'Methane sulfonic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'Methyl glyoxal emissions' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'Stratospheric ozone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'Radon emissions' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'Lead emissions' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'Nitrogen monoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'Hydroperoxy radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'Methylperoxy radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'Hydroxyl radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'Nitrogen dioxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'Nitrate radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'Dinitrogen pentoxide emissions' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'Pernitric acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'Peroxy acetyl radical emissions' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'Organic ethers emissions' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'PAR budget corrector emissions' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'NO to NO2 operator emissions' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'NO to alkyl nitrate operator emissions' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'Amine emissions' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'Polar stratospheric cloud emissions' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'Methanol emissions' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'Formic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'Methacrylic acid emissions' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'Ethane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'Ethanol emissions' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'Propane emissions' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'Propene emissions' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'Terpenes emissions' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'Methacrolein MVK emissions' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'Nitrate emissions' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'Acetone emissions' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'Acetone product emissions' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'IC3H7O2 emissions' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'HYPROPO2 emissions' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'Nitrogen oxides Transp emissions' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'Ozone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'Nitrogen oxides deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'Hydrogen peroxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'Methane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'Carbon monoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'Nitric acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'Methyl peroxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'Formaldehyde deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'Paraffins deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'Ethene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'Olefins deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'Aldehydes deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'Peroxyacetyl nitrate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'Peroxides deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'Organic nitrates deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'Isoprene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'Sulfur dioxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'Dimethyl sulfide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'Ammonia deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'Sulfate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'Ammonium deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'Methane sulfonic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'Methyl glyoxal deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'Stratospheric ozone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'Radon deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'Lead deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'Nitrogen monoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'Hydroperoxy radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'Methylperoxy radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'Hydroxyl radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'Nitrogen dioxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'Nitrate radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'Dinitrogen pentoxide deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'Pernitric acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'Peroxy acetyl radical deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'Organic ethers deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'PAR budget corrector deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'NO to NO2 operator deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'NO to alkyl nitrate operator deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'Amine deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'Polar stratospheric cloud deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'Methanol deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'Formic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'Methacrylic acid deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'Ethane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'Ethanol deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'Propane deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'Propene deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'Terpenes deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'Methacrolein MVK deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'Nitrate deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'Acetone deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'Acetone product deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'IC3H7O2 deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'HYPROPO2 deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'Nitrogen oxides Transp deposition velocity' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#-10 degrees C isothermal level (atm) +'-10 degrees C isothermal level (atm)' = { + table2Version = 228 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface +'Total sky direct solar radiation at surface' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'Clear-sky direct solar radiation at surface' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'Cloud base height' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#0 degrees C isothermal level (atm) +'0 degrees C isothermal level (atm)' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'Horizontal visibility' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'Maximum temperature at 2 metres in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'Minimum temperature at 2 metres in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'Instantaneous 10 metre wind gust' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#2 metre relative humidity with respect to water +'2 metre relative humidity with respect to water' = { + table2Version = 228 ; + indicatorOfParameter = 37 ; + } +#Soil wetness index in layer 1 +'Soil wetness index in layer 1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'Soil wetness index in layer 2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'Soil wetness index in layer 3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'Soil wetness index in layer 4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Convective available potential energy shear +'Convective available potential energy shear' = { + table2Version = 228 ; + indicatorOfParameter = 44 ; + } +#Height of convective cloud top +'Height of convective cloud top' = { + table2Version = 228 ; + indicatorOfParameter = 46 ; + } +#Height of zero-degree wet-bulb temperature +'Height of zero-degree wet-bulb temperature' = { + table2Version = 228 ; + indicatorOfParameter = 47 ; + } +#Height of one-degree wet-bulb temperature +'Height of one-degree wet-bulb temperature' = { + table2Version = 228 ; + indicatorOfParameter = 48 ; + } +#Instantaneous total lightning flash density +'Instantaneous total lightning flash density' = { + table2Version = 228 ; + indicatorOfParameter = 50 ; + } +#Averaged total lightning flash density in the last hour +'Averaged total lightning flash density in the last hour' = { + table2Version = 228 ; + indicatorOfParameter = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'Instantaneous cloud-to-ground lightning flash density' = { + table2Version = 228 ; + indicatorOfParameter = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'Averaged cloud-to-ground lightning flash density in the last hour' = { + table2Version = 228 ; + indicatorOfParameter = 53 ; + } +#SMOS observed soil moisture retrieved using neural network +'SMOS observed soil moisture retrieved using neural network' = { + table2Version = 228 ; + indicatorOfParameter = 70 ; + } +#SMOS observed soil moisture uncertainty retrieved using neural network +'SMOS observed soil moisture uncertainty retrieved using neural network' = { + table2Version = 228 ; + indicatorOfParameter = 71 ; + } +#SMOS radio frequency interference probability +'SMOS radio frequency interference probability' = { + table2Version = 228 ; + indicatorOfParameter = 72 ; + } +#SMOS number of observations per grid point +'SMOS number of observations per grid point' = { + table2Version = 228 ; + indicatorOfParameter = 73 ; + } +#SMOS observation time for the satellite soil moisture data +'SMOS observation time for the satellite soil moisture data' = { + table2Version = 228 ; + indicatorOfParameter = 74 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'GPP coefficient from Biogenic Flux Adjustment System' = { + table2Version = 228 ; + indicatorOfParameter = 78 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'Rec coefficient from Biogenic Flux Adjustment System' = { + table2Version = 228 ; + indicatorOfParameter = 79 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'Accumulated Carbon Dioxide Gross Primary Production' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'Accumulated Carbon Dioxide Ecosystem Respiration' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'Flux of Carbon Dioxide Net Ecosystem Exchange' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'Flux of Carbon Dioxide Gross Primary Production' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'Flux of Carbon Dioxide Ecosystem Respiration' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'Total column supercooled liquid water' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'Total column rain water' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'Total column snow water' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'Canopy cover fraction' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'Soil texture fraction' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'Ice temperature' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'Surface solar radiation downward clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'Surface thermal radiation downward clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Accumulated freezing rain +'Accumulated freezing rain' = { + table2Version = 228 ; + indicatorOfParameter = 216 ; + } +#Instantaneous large-scale surface precipitation fraction +'Instantaneous large-scale surface precipitation fraction' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'Convective rain rate' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'Large scale rain rate' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'Maximum total precipitation rate in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'Minimum total precipitation rate in the last 3 hours' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'Maximum total precipitation rate in the last 6 hours' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'Minimum total precipitation rate in the last 6 hours' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'Maximum total precipitation rate since previous post-processing' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'Minimum total precipitation rate since previous post-processing' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'SMOS first Brightness Temperature Bias Correction parameter' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'SMOS second Brightness Temperature Bias Correction parameter' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#200 metre U wind component +'200 metre U wind component' = { + table2Version = 228 ; + indicatorOfParameter = 239 ; + } +#200 metre V wind component +'200 metre V wind component' = { + table2Version = 228 ; + indicatorOfParameter = 240 ; + } +#200 metre wind speed +'200 metre wind speed' = { + table2Version = 228 ; + indicatorOfParameter = 241 ; + } +#Surface solar radiation diffuse total sky +'Surface solar radiation diffuse total sky' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'Surface solar radiation diffuse clear-sky' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'Surface albedo of direct radiation' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'Surface albedo of diffuse radiation' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'100 metre wind speed' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'Irrigation fraction' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'Potential evaporation' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'Irrigation' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'Surface runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'Sub-surface runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'Clear sky surface photosynthetically active radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'Total sky direct solar radiation at surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'Clear-sky direct solar radiation at surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Direct solar radiation (variable resolution) +'Direct solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 47 ; + } +#Large-scale precipitation fraction (variable resolution) +'Large-scale precipitation fraction (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'Accumulated Carbon Dioxide Gross Primary Production (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'Surface solar radiation downward clear-sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'Surface thermal radiation downward clear-sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'Albedo (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'Vertically integrated moisture divergence (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Accumulated freezing rain (variable resolution) +'Accumulated freezing rain (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 216 ; + } +#Total precipitation (variable resolution) +'Total precipitation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'Convective snowfall (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'Large-scale snowfall (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'Potential evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#Mean surface runoff rate +'Mean surface runoff rate' = { + table2Version = 235 ; + indicatorOfParameter = 20 ; + } +#Mean sub-surface runoff rate +'Mean sub-surface runoff rate' = { + table2Version = 235 ; + indicatorOfParameter = 21 ; + } +#Mean surface photosynthetically active radiation flux, clear sky +'Mean surface photosynthetically active radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 22 ; + } +#Mean snow evaporation rate +'Mean snow evaporation rate' = { + table2Version = 235 ; + indicatorOfParameter = 23 ; + } +#Mean snowmelt rate +'Mean snowmelt rate' = { + table2Version = 235 ; + indicatorOfParameter = 24 ; + } +#Mean magnitude of turbulent surface stress +'Mean magnitude of turbulent surface stress' = { + table2Version = 235 ; + indicatorOfParameter = 25 ; + } +#Mean large-scale precipitation fraction +'Mean large-scale precipitation fraction' = { + table2Version = 235 ; + indicatorOfParameter = 26 ; + } +#Mean surface downward UV radiation flux +'Mean surface downward UV radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 27 ; + } +#Mean surface photosynthetically active radiation flux +'Mean surface photosynthetically active radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 28 ; + } +#Mean large-scale precipitation rate +'Mean large-scale precipitation rate' = { + table2Version = 235 ; + indicatorOfParameter = 29 ; + } +#Mean convective precipitation rate +'Mean convective precipitation rate' = { + table2Version = 235 ; + indicatorOfParameter = 30 ; + } +#Mean snowfall rate +'Mean snowfall rate' = { + table2Version = 235 ; + indicatorOfParameter = 31 ; + } +#Mean boundary layer dissipation +'Mean boundary layer dissipation' = { + table2Version = 235 ; + indicatorOfParameter = 32 ; + } +#Mean surface sensible heat flux +'Mean surface sensible heat flux' = { + table2Version = 235 ; + indicatorOfParameter = 33 ; + } +#Mean surface latent heat flux +'Mean surface latent heat flux' = { + table2Version = 235 ; + indicatorOfParameter = 34 ; + } +#Mean surface downward short-wave radiation flux +'Mean surface downward short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 35 ; + } +#Mean surface downward long-wave radiation flux +'Mean surface downward long-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 36 ; + } +#Mean surface net short-wave radiation flux +'Mean surface net short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 37 ; + } +#Mean surface net long-wave radiation flux +'Mean surface net long-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 38 ; + } +#Mean top net short-wave radiation flux +'Mean top net short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 39 ; + } +#Mean top net long-wave radiation flux +'Mean top net long-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 40 ; + } +#Mean eastward turbulent surface stress +'Mean eastward turbulent surface stress' = { + table2Version = 235 ; + indicatorOfParameter = 41 ; + } +#Mean northward turbulent surface stress +'Mean northward turbulent surface stress' = { + table2Version = 235 ; + indicatorOfParameter = 42 ; + } +#Mean evaporation rate +'Mean evaporation rate' = { + table2Version = 235 ; + indicatorOfParameter = 43 ; + } +#Sunshine duration fraction +'Sunshine duration fraction' = { + table2Version = 235 ; + indicatorOfParameter = 44 ; + } +#Mean eastward gravity wave surface stress +'Mean eastward gravity wave surface stress' = { + table2Version = 235 ; + indicatorOfParameter = 45 ; + } +#Mean northward gravity wave surface stress +'Mean northward gravity wave surface stress' = { + table2Version = 235 ; + indicatorOfParameter = 46 ; + } +#Mean gravity wave dissipation +'Mean gravity wave dissipation' = { + table2Version = 235 ; + indicatorOfParameter = 47 ; + } +#Mean runoff rate +'Mean runoff rate' = { + table2Version = 235 ; + indicatorOfParameter = 48 ; + } +#Mean top net short-wave radiation flux, clear sky +'Mean top net short-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 49 ; + } +#Mean top net long-wave radiation flux, clear sky +'Mean top net long-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 50 ; + } +#Mean surface net short-wave radiation flux, clear sky +'Mean surface net short-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 51 ; + } +#Mean surface net long-wave radiation flux, clear sky +'Mean surface net long-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 52 ; + } +#Mean top downward short-wave radiation flux +'Mean top downward short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 53 ; + } +#Mean vertically integrated moisture divergence +'Mean vertically integrated moisture divergence' = { + table2Version = 235 ; + indicatorOfParameter = 54 ; + } +#Mean total precipitation rate +'Mean total precipitation rate' = { + table2Version = 235 ; + indicatorOfParameter = 55 ; + } +#Mean convective snowfall rate +'Mean convective snowfall rate' = { + table2Version = 235 ; + indicatorOfParameter = 56 ; + } +#Mean large-scale snowfall rate +'Mean large-scale snowfall rate' = { + table2Version = 235 ; + indicatorOfParameter = 57 ; + } +#Mean surface direct short-wave radiation flux +'Mean surface direct short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 58 ; + } +#Mean surface direct short-wave radiation flux, clear sky +'Mean surface direct short-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 59 ; + } +#Mean surface diffuse short-wave radiation flux +'Mean surface diffuse short-wave radiation flux' = { + table2Version = 235 ; + indicatorOfParameter = 60 ; + } +#Mean surface diffuse short-wave radiation flux, clear sky +'Mean surface diffuse short-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 61 ; + } +#Mean carbon dioxide net ecosystem exchange flux +'Mean carbon dioxide net ecosystem exchange flux' = { + table2Version = 235 ; + indicatorOfParameter = 62 ; + } +#Mean carbon dioxide gross primary production flux +'Mean carbon dioxide gross primary production flux' = { + table2Version = 235 ; + indicatorOfParameter = 63 ; + } +#Mean carbon dioxide ecosystem respiration flux +'Mean carbon dioxide ecosystem respiration flux' = { + table2Version = 235 ; + indicatorOfParameter = 64 ; + } +#Mean rain rate +'Mean rain rate' = { + table2Version = 235 ; + indicatorOfParameter = 65 ; + } +#Mean convective rain rate +'Mean convective rain rate' = { + table2Version = 235 ; + indicatorOfParameter = 66 ; + } +#Mean large-scale rain rate +'Mean large-scale rain rate' = { + table2Version = 235 ; + indicatorOfParameter = 67 ; + } +#Mean surface downward short-wave radiation flux, clear sky +'Mean surface downward short-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 68 ; + } +#Mean surface downward long-wave radiation flux, clear sky +'Mean surface downward long-wave radiation flux, clear sky' = { + table2Version = 235 ; + indicatorOfParameter = 69 ; + } +#Mean potential evaporation rate +'Mean potential evaporation rate' = { + table2Version = 235 ; + indicatorOfParameter = 70 ; + } +#Total precipitation rate +'Total precipitation rate' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#Ceiling +'Ceiling' = { + table2Version = 228 ; + indicatorOfParameter = 109 ; + } +#K index +'K index' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'Total totals index' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'Stream function gradient' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'Velocity potential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'Potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'Equivalent potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'Saturated equivalent potential temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'U component of divergent wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'V component of divergent wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'U component of rotational wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'V component of rotational wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'Unbalanced component of temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'Unbalanced component of logarithm of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'Unbalanced component of divergence gradient' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'Lake cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'Low vegetation cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'High vegetation cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'Type of low vegetation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'Type of high vegetation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'Sea-ice cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'Snow albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'Snow density gradient' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'Sea surface temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'Ice surface temperature layer 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'Ice surface temperature layer 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'Ice surface temperature layer 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'Ice surface temperature layer 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'Volumetric soil water layer 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'Volumetric soil water layer 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'Volumetric soil water layer 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'Volumetric soil water layer 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'Soil type gradient' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'Snow evaporation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'Snowmelt gradient' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'Solar duration gradient' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'Direct solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress gradient +'Magnitude of turbulent surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'10 metre wind gust gradient' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'Large-scale precipitation fraction gradient' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'Maximum 2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'Minimum 2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'Montgomery potential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'Pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'Mean 2 metre temperature in the last 24 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'Downward UV radiation at the surface gradient' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'Photosynthetically active radiation at the surface gradient' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'Convective available potential energy gradient' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'Potential vorticity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'Total precipitation from observations gradient' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'Observation count gradient' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'Total column ice water' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'Experimental product' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'Maximum temperature at 2 metres gradient' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'Minimum temperature at 2 metres gradient' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10 metre wind gust in the last 6 hours gradient' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'Atmospheric tide gradient' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'Budget values gradient' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'Geopotential gradient' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'Temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'U component of wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'V component of wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'Specific humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'Surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'vertical velocity (pressure) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'Total column water gradient' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'Total column water vapour gradient' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'Vorticity (relative) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'Soil temperature level 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'Soil wetness level 1 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'Snow depth gradient' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'Stratiform precipitation (Large-scale precipitation) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'Convective precipitation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'Snowfall (convective + stratiform) gradient' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'Boundary layer dissipation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'Surface sensible heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'Surface latent heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'Charnock gradient' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'Surface net radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'Top net radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'Mean sea level pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'Logarithm of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'Short-wave heating rate gradient' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'Long-wave heating rate gradient' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'Divergence gradient' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'Height gradient' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'Relative humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'Tendency of surface pressure gradient' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'Boundary layer height gradient' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'Standard deviation of orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'Anisotropy of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'Angle of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'Slope of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'Total cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'10 metre U wind component gradient' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'10 metre V wind component gradient' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'2 metre temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'2 metre dewpoint temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'Surface solar radiation downwards gradient' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'Soil temperature level 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'Soil wetness level 2 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'Land-sea mask gradient' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'Surface roughness gradient' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'Albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'Surface thermal radiation downwards gradient' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'Surface net solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'Surface net thermal radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'Top net solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'Top net thermal radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'East-West surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'North-South surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'Evaporation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'Soil temperature level 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'Soil wetness level 3 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'Convective cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'Low cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'Medium cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'High cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'Sunshine duration gradient' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'East-West component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'North-South component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'North-West/South-East component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'North-East/South-West component of sub-gridscale orographic variance gradient' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'Brightness temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'Longitudinal component of gravity wave stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'Meridional component of gravity wave stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'Gravity wave dissipation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'Skin reservoir content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'Vegetation fraction gradient' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'Variance of sub-gridscale orography gradient' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'Maximum temperature at 2 metres since previous post-processing gradient' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'Minimum temperature at 2 metres since previous post-processing gradient' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'Ozone mass mixing ratio gradient' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'Precipitation analysis weights gradient' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'Runoff gradient' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'Total column ozone gradient' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'10 metre wind speed gradient' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'Top net solar radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'Top net thermal radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'Surface net solar radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'Surface net thermal radiation, clear sky gradient' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'TOA incident solar radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'Diabatic heating by radiation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'Diabatic heating by vertical diffusion gradient' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'Diabatic heating by cumulus convection gradient' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'Diabatic heating large-scale condensation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'Vertical diffusion of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'Vertical diffusion of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'East-West gravity wave drag tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'North-South gravity wave drag tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'Convective tendency of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'Convective tendency of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'Vertical diffusion of humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'Humidity tendency by cumulus convection gradient' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'Humidity tendency by large-scale condensation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'Change from removal of negative humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'Total precipitation gradient' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'Instantaneous X surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'Instantaneous Y surface stress gradient' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'Instantaneous surface heat flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'Instantaneous moisture flux gradient' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'Apparent surface humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'Logarithm of surface roughness length for heat gradient' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'Skin temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'Soil temperature level 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'Soil wetness level 4 gradient' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'Temperature of snow layer gradient' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'Convective snowfall gradient' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'Large scale snowfall gradient' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'Accumulated cloud fraction tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'Accumulated liquid water tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'Forecast albedo gradient' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'Forecast surface roughness gradient' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'Forecast logarithm of surface roughness for heat gradient' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'Specific cloud liquid water content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'Specific cloud ice water content gradient' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'Cloud cover gradient' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'Accumulated ice water tendency gradient' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'Ice age gradient' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'Adiabatic tendency of temperature gradient' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'Adiabatic tendency of humidity gradient' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'Adiabatic tendency of zonal wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'Adiabatic tendency of meridional wind gradient' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'Top solar radiation upward' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'Top thermal radiation upward' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'Top solar radiation upward, clear sky' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'Top thermal radiation upward, clear sky' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'Cloud liquid water' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'Cloud fraction' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'Diabatic heating by large-scale condensation' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'East-West gravity wave drag' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'North-South gravity wave drag' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'Mean vertical velocity' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'2m temperature anomaly of at least +2K' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'2m temperature anomaly of at least +1K' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'2m temperature anomaly of at least 0K' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'2m temperature anomaly of at most -1K' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'2m temperature anomaly of at most -2K' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'Total precipitation anomaly of at least 20 mm' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'Total precipitation anomaly of at least 10 mm' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'Total precipitation anomaly of at least 0 mm' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'Surface temperature anomaly of at least 0K' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'Mean sea level pressure anomaly of at least 0 Pa' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'Height of 0 degree isotherm probability' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'Height of snowfall limit probability' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'Showalter index probability' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'Whiting index probability' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'Temperature anomaly less than -2 K' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'Temperature anomaly of at least +2 K' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'Temperature anomaly less than -8 K' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'Temperature anomaly less than -4 K' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'Temperature anomaly greater than +4 K' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'Temperature anomaly greater than +8 K' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'10 metre wind gust probability' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'Convective available potential energy probability' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'Total precipitation less than 0.1 mm' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'Total precipitation rate less than 1 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'Total precipitation rate of at least 3 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'Total precipitation rate of at least 5 mm/day' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10 metre Wind speed of at least 10 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10 metre Wind speed of at least 15 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre wind gust of at least 15 m/s +'10 metre wind gust of at least 15 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre wind gust of at least 20 m/s +'10 metre wind gust of at least 20 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre wind gust of at least 25 m/s +'10 metre wind gust of at least 25 m/s' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'2 metre temperature less than 273.15 K' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'Significant wave height of at least 2 m' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'Significant wave height of at least 4 m' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'Significant wave height of at least 6 m' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'Significant wave height of at least 8 m' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'Mean wave period of at least 8 s' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'Mean wave period of at least 10 s' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'Mean wave period of at least 12 s' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'Mean wave period of at least 15 s' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'Geopotential probability' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'Temperature anomaly probability' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#Soil temperature level 1 probability +'Soil temperature level 1 probability' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'Snowfall (convective + stratiform) probability' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Mean sea level pressure probability +'Mean sea level pressure probability' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'Total cloud cover probability' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'10 metre speed probability' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'Maximum 2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'Minimum 2 metre temperature probability' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'Total precipitation probability' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'Significant wave height probability' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'Mean wave period probability' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'10 metre wind gust index' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'Snowfall index' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'10 metre speed index' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'2 metre temperature index' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'Maximum temperature at 2 metres index' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'Minimum temperature at 2 metres index' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'Total precipitation index' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'2m temperature probability less than -10 C' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'2m temperature probability less than -5 C' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'2m temperature probability less than 0 C' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'2m temperature probability less than 5 C' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'2m temperature probability less than 10 C' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'2m temperature probability greater than 25 C' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'2m temperature probability greater than 30 C' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'2m temperature probability greater than 35 C' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'2m temperature probability greater than 40 C' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'2m temperature probability greater than 45 C' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'Minimum 2 metre temperature probability less than -10 C' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'Minimum 2 metre temperature probability less than -5 C' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'Minimum 2 metre temperature probability less than 0 C' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'Minimum 2 metre temperature probability less than 5 C' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'Minimum 2 metre temperature probability less than 10 C' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'Maximum 2 metre temperature probability greater than 25 C' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'Maximum 2 metre temperature probability greater than 30 C' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'Maximum 2 metre temperature probability greater than 35 C' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'Maximum 2 metre temperature probability greater than 40 C' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'Maximum 2 metre temperature probability greater than 45 C' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10 metre wind speed probability of at least 10 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10 metre wind speed probability of at least 15 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10 metre wind speed probability of at least 20 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10 metre wind speed probability of at least 35 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10 metre wind speed probability of at least 50 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10 metre wind gust probability of at least 20 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10 metre wind gust probability of at least 35 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10 metre wind gust probability of at least 50 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10 metre wind gust probability of at least 75 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10 metre wind gust probability of at least 100 m/s' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'Total precipitation probability of at least 1 mm' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'Total precipitation probability of at least 5 mm' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'Total precipitation probability of at least 10 mm' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'Total precipitation probability of at least 20 mm' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'Total precipitation probability of at least 40 mm' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'Total precipitation probability of at least 60 mm' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'Total precipitation probability of at least 80 mm' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'Total precipitation probability of at least 100 mm' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'Total precipitation probability of at least 150 mm' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'Total precipitation probability of at least 200 mm' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'Total precipitation probability of at least 300 mm' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'Snowfall probability of at least 1 mm' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'Snowfall probability of at least 5 mm' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'Snowfall probability of at least 10 mm' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'Snowfall probability of at least 20 mm' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'Snowfall probability of at least 40 mm' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'Snowfall probability of at least 60 mm' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'Snowfall probability of at least 80 mm' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'Snowfall probability of at least 100 mm' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'Snowfall probability of at least 150 mm' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'Snowfall probability of at least 200 mm' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'Snowfall probability of at least 300 mm' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'Total Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'Total Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'Total Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'Total Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'Total Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'Total Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'Total Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'Total Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'Total Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'Total Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'High Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'High Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'High Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'High Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'High Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'High Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'High Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'High Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'High Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'High Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'Medium Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'Medium Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'Medium Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'Medium Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'Medium Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'Medium Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'Medium Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'Medium Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'Medium Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'Medium Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'Low Cloud Cover probability greater than 10%' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'Low Cloud Cover probability greater than 20%' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'Low Cloud Cover probability greater than 30%' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'Low Cloud Cover probability greater than 40%' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'Low Cloud Cover probability greater than 50%' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'Low Cloud Cover probability greater than 60%' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'Low Cloud Cover probability greater than 70%' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'Low Cloud Cover probability greater than 80%' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'Low Cloud Cover probability greater than 90%' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'Low Cloud Cover probability greater than 99%' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'Maximum of significant wave height' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'Period corresponding to maximum individual wave height' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'Maximum individual wave height' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'Model bathymetry' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'Mean wave period based on first moment' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'Wave spectral directional width' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'Mean wave period based on first moment for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'Mean wave period based on second moment for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'Wave spectral directional width for wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'Mean wave period based on first moment for swell' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'Mean wave period based on second moment for swell' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'Wave spectral directional width for swell' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'Mean wave direction' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak wave period +'Peak wave period' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'Mean wave period' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'Significant height of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'Mean direction of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'Mean period of total swell' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'Standard deviation wave height' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'Mean wind direction' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'Standard deviation of 10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'Mean square slope of waves' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'Altimeter wave height' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'Altimeter corrected wave height' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'Altimeter range relative correction' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'10 metre wind direction' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'2D wave spectra (multiple)' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'2D wave spectra (single)' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'Wave spectral kurtosis' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'Benjamin-Feir index' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'Wave spectral peakedness' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'Ocean salinity' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'Ocean potential density' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'Ocean U wind component' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'Ocean V wind component' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'Ocean W wind component' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'Richardson number' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'U*V product' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'U*T product' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'V*T product' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'U*U product' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'V*V product' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'UV - U~V~' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'UT - U~T~' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'VT - V~T~' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'UU - U~U~' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'VV - V~V~' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'Sea level' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'Barotropic stream function' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'Depth' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'U stress' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'V stress' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'Net surface heat flux' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'Surface solar radiation' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'P-E' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'Heat flux correction' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'Observed sea surface temperature' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'Observed heat flux' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'In situ Temperature' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Sea water potential temperature +'Sea water potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'Sea water practical salinity' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'Eastward sea water velocity' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'Northward sea water velocity' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'Upward sea water velocity' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'Modulus of strain rate tensor' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'Vertical viscosity' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'Vertical diffusivity' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'Bottom level Depth' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sea water sigma theta +'Sea water sigma theta' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'Richardson number' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'UV product' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'UT product' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'VT product' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'UU product' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'VV product' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea surface height +'Sea surface height' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'Sea level previous timestep' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Ocean barotropic stream function +'Ocean barotropic stream function' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'Bottom Pressure (equivalent height)' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'Steric height' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'Curl of Wind Stress' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'Divergence of wind stress' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#Surface downward eastward stress +'Surface downward eastward stress' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'Surface downward northward stress' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'Net surface heat flux' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'Absorbed solar radiation' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'Precipitation - evaporation' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'Specified sea surface temperature' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'Specified surface heat flux' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'Heat flux correction' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#Depth of 20C isotherm +'Depth of 20C isotherm' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'Average potential temperature in the upper 300m' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'Vertically integrated zonal velocity (previous time step)' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'Vertically Integrated meridional velocity (previous time step)' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'Vertically integrated zonal volume transport' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'Vertically integrated meridional volume transport' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'Vertically integrated zonal heat transport' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'Vertically integrated meridional heat transport' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'U velocity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'Depth of the velocity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'Salinity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'Depth of salinity maximum' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'Average salinity in the upper 300m' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'Layer Thickness at scalar points' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'Layer Thickness at vector points' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'Potential temperature increment' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'Potential temperature analysis error' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'Background potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'Analysed potential temperature' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'Potential temperature background error' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'Analysed salinity' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'Salinity increment' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'Estimated Bias in Temperature' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'Estimated Bias in Salinity' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'Zonal Velocity increment (from balance operator)' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'Meridional Velocity increment (from balance operator)' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'Salinity increment (from salinity data)' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'Salinity analysis error' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'Background Salinity' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'Salinity background error' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'Estimated temperature bias from assimilation' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'Estimated salinity bias from assimilation' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'Temperature increment from relaxation term' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'Salinity increment from relaxation term' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Bias in the zonal pressure gradient (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Bias in the meridional pressure gradient (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'Estimated temperature bias from relaxation' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'Estimated salinity bias from relaxation' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'First guess bias in temperature' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'First guess bias in salinity' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'Applied bias in pressure' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'FG bias in pressure' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'Bias in temperature(applied)' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'Bias in salinity (applied)' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'10 metre wind gust during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'vertical velocity (pressure)' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'Precipitable water content' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'Snow depth' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'Snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'Height' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'East-West surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'Skin reservoir content' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'Maximum temperature at 2 metres during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'Minimum temperature at 2 metres during averaging time' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'Runoff' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'Standard deviation of geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'Covariance of temperature and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'Standard deviation of temperature' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'Covariance of specific humidity and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'Covariance of specific humidity and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'Standard deviation of specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'Covariance of U component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'Covariance of U component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'Covariance of U component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'Standard deviation of U velocity' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'Covariance of V component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'Covariance of V component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'Covariance of V component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'Covariance of V component and U component' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'Standard deviation of V component' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'Covariance of W component and geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'Covariance of W component and temperature' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'Covariance of W component and specific humidity' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'Covariance of W component and U component' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'Covariance of W component and V component' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'Standard deviation of vertical velocity' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'Instantaneous surface heat flux' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'Cloud liquid water content' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'Cloud cover' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'10 metre wind speed' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'Momentum flux' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'Gravity wave dissipation flux' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'Heaviside beta function' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'Surface geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'Vertical integral of mass of atmosphere' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'Vertical integral of temperature' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'Vertical integral of water vapour' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'Vertical integral of cloud liquid water' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'Vertical integral of cloud frozen water' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'Vertical integral of ozone' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'Vertical integral of kinetic energy' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'Vertical integral of thermal energy' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'Vertical integral of potential+internal energy' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'Vertical integral of potential+internal+latent energy' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'Vertical integral of total energy' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'Vertical integral of energy conversion' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'Vertical integral of eastward mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'Vertical integral of northward mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'Vertical integral of eastward kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'Vertical integral of northward kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'Vertical integral of eastward heat flux' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'Vertical integral of northward heat flux' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'Vertical integral of eastward water vapour flux' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'Vertical integral of northward water vapour flux' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'Vertical integral of eastward geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'Vertical integral of northward geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'Vertical integral of eastward total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'Vertical integral of northward total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'Vertical integral of eastward ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'Vertical integral of northward ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'Vertical integral of divergence of mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'Vertical integral of divergence of kinetic energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'Vertical integral of divergence of thermal energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'Vertical integral of divergence of moisture flux' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'Vertical integral of divergence of geopotential flux' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'Vertical integral of divergence of total energy flux' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'Vertical integral of divergence of ozone flux' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'Tendency of short wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'Tendency of long wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'Tendency of clear sky short wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'Tendency of clear sky long wave radiation' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'Updraught mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'Downdraught mass flux' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'Updraught detrainment rate' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'Downdraught detrainment rate' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'Total precipitation flux' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'Turbulent diffusion coefficient for heat' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'Tendency of temperature due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'Tendency of specific humidity due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'Tendency of u component due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'Tendency of v component due to physics' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'Variance of geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'Covariance of geopotential/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'Variance of temperature' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'Covariance of geopotential/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'Covariance of temperature/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'Variance of specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'Covariance of u component/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'Covariance of u component/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'Covariance of u component/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'Variance of u component' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'Covariance of v component/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'Covariance of v component/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'Covariance of v component/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'Covariance of v component/u component' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'Variance of v component' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'Covariance of omega/geopotential' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'Covariance of omega/temperature' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'Covariance of omega/specific humidity' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'Covariance of omega/u component' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'Covariance of omega/v component' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'Variance of omega' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'Variance of surface pressure' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'Variance of relative humidity' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'Covariance of u component/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'Covariance of v component/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'Covariance of omega/ozone' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'Variance of ozone' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'Stream function anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'Velocity potential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'Potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'Equivalent potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'Saturated equivalent potential temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'U component of divergent wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'V component of divergent wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'U component of rotational wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'V component of rotational wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'Unbalanced component of temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'Unbalanced component of logarithm of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'Unbalanced component of divergence anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'Lake cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'Low vegetation cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'High vegetation cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'Type of low vegetation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'Type of high vegetation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'Sea-ice cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'Snow albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'Snow density anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'Sea surface temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'Ice surface temperature anomaly layer 1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'Ice surface temperature anomaly layer 2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'Ice surface temperature anomaly layer 3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'Ice surface temperature anomaly layer 4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'Volumetric soil water anomaly layer 1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'Volumetric soil water anomaly layer 2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'Volumetric soil water anomaly layer 3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'Volumetric soil water anomaly layer 4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'Soil type anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'Solar duration anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'Direct solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'10 metre wind gust anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'Maximum 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'Minimum 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'Montgomery potential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'Mean 2 metre temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'Downward UV radiation at the surface anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'Photosynthetically active radiation at the surface anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'Convective available potential energy anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'Potential vorticity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'Total precipitation from observations anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'Observation count anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'Start time for skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'Finish time for skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'Skin temperature difference anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'Total column liquid water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'Total column ice water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'Vertically integrated total energy anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'Atmospheric tide anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'Budget values anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'Geopotential anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'U component of wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'V component of wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'Specific humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'Surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'Vertical velocity (pressure) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'Total column water anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'Total column water vapour anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'Relative vorticity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'Soil temperature anomaly level 1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'Soil wetness anomaly level 1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'Snow depth anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'Snowfall (convective + stratiform) anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'Charnock anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'Top net radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'Mean sea level pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'Logarithm of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'Relative divergence anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'Height anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'Relative humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'Tendency of surface pressure anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'Boundary layer height anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'Standard deviation of orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'Anisotropy of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'Angle of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'Slope of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'Total cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'10 metre U wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'10 metre V wind component anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'2 metre temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'2 metre dewpoint temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'Soil temperature anomaly level 2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'Soil wetness anomaly level 2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'Surface roughness anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'Albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'Surface net solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'Surface net thermal radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'Top net solar radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'Top net thermal radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'Soil temperature anomaly level 3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'Soil wetness anomaly level 3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'Convective cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'Low cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'Medium cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'High cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'Sunshine duration anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'East-West component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'North-South component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'North-West/South-East component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'North-East/South-West component of sub-gridscale orographic variance anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'Brightness temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'Skin reservoir content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'Vegetation fraction anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'Variance of sub-gridscale orography anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'Maximum temperature at 2 metres anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'Minimum temperature at 2 metres anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'Ozone mass mixing ratio anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'Precipitation analysis weights anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'Runoff anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'Total column ozone anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'10 metre wind speed anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'Top net solar radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'Top net thermal radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'Surface net solar radiation clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'Diabatic heating by radiation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'Diabatic heating by vertical diffusion anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'Diabatic heating by cumulus convection anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'Diabatic heating by large-scale condensation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'Vertical diffusion of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'Vertical diffusion of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'East-West gravity wave drag tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'North-South gravity wave drag tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'Convective tendency of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'Convective tendency of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'Vertical diffusion of humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'Humidity tendency by cumulus convection anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'Humidity tendency by large-scale condensation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'Change from removal of negative humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'Total precipitation anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'Instantaneous X surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'Instantaneous Y surface stress anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'Instantaneous surface heat flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'Instantaneous moisture flux anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'Apparent surface humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'Logarithm of surface roughness length for heat anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'Skin temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'Soil temperature level 4 anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'Soil wetness level 4 anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'Temperature of snow layer anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'Accumulated cloud fraction tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'Accumulated liquid water tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'Forecast albedo anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'Forecast surface roughness anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'Forecast logarithm of surface roughness for heat anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'Cloud liquid water content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'Cloud ice water content anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'Cloud cover anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'Accumulated ice water tendency anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'Ice age anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'Adiabatic tendency of temperature anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'Adiabatic tendency of humidity anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'Adiabatic tendency of zonal wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'Adiabatic tendency of meridional wind anomaly' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'Snow evaporation' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'Snowmelt' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Mean large-scale precipitation fraction +'Mean large-scale precipitation fraction' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Mean large-scale precipitation rate +'Mean large-scale precipitation rate' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate +'Mean convective precipitation rate' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Mean total snowfall rate +'Mean total snowfall rate' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Mean surface sensible heat flux +'Mean surface sensible heat flux' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Mean surface latent heat flux +'Mean surface latent heat flux' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Mean surface net radiation flux +'Mean surface net radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Mean short-wave heating rate +'Mean short-wave heating rate' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Mean long-wave heating rate +'Mean long-wave heating rate' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Mean surface downward solar radiation flux +'Mean surface downward solar radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Mean surface downward thermal radiation flux +'Mean surface downward thermal radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Mean surface net solar radiation flux +'Mean surface net solar radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Mean surface net thermal radiation flux +'Mean surface net thermal radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Mean top net solar radiation flux +'Mean top net solar radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Mean top net thermal radiation flux +'Mean top net thermal radiation flux' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress rate of accumulation +'East-West surface stress rate of accumulation' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress rate of accumulation +'North-South surface stress rate of accumulation' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'Evaporation' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Mean sunshine duration rate +'Mean sunshine duration rate' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'Longitudinal component of gravity wave stress' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'Meridional component of gravity wave stress' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Mean runoff rate +'Mean runoff rate' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation rate of accumulation +'Solar insolation rate of accumulation' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Mean total precipitation rate +'Mean total precipitation rate' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate anomaly +'Mean convective precipitation rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'Snowfall (convective + stratiform) anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'Surface sensible heat flux anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'Surface latent heat flux anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'Surface solar radiation downwards anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'Surface thermal radiation downwards anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'Surface solar radiation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'Surface thermal radiation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'Top solar radiation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'Top thermal radiation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'East-West surface stress anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'North-South surface stress anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomalous rate of accumulation +'Evaporation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'Sunshine duration anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomalous rate of accumulation +'Runoff anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'Top net solar radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'Top net thermal radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'Surface net solar radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomalous rate of accumulation +'Solar insolation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'Total precipitation anomalous rate of accumulation' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'Surface runoff' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'10 metre wind gust in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'Mean sea surface temperature' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'1.5m specific humidity' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'Sea-ice thickness' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'Liquid water potential temperature' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'10m wind gust in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'Total soil wetness' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'Snow depth' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'Field capacity' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'Wilting point' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'Roughness length' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'Total soil moisture' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'2 metre dewpoint temperature difference' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'downward shortwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'upward shortwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'downward longwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'upward longwave radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'downwd photosynthetic active radiant flux density' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'net shortwave flux' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'net longwave flux' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'total net radiative flux density' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'downw shortw radiant flux density, cloudfree part' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'upw shortw radiant flux density, cloudy part' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'downw longw radiant flux density, cloudfree part' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'upw longw radiant flux density, cloudy part' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'shortwave radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'longwave radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'total radiative heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'soil heat flux, surface' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'soil heat flux, bottom of layer' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'fractional cloud cover' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'cloud cover, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'specific cloud water content' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'cloud water content, grid scale, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'specific cloud ice content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'cloud ice content, grid scale, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'specific rainwater content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'specific snow content, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'specific rainwater content, gs, vert. integrated' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'specific snow content, gs, vert. integrated' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'total column water' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'vert. integral of divergence of tot. water content' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'cloud covers CH_CM_CL (000...888)' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'total cloud cover (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'fog (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'fog' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'cloud cover, convective cirrus' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'specific cloud water content, convective clouds' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'cloud water content, conv clouds, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'specific cloud ice content, convective clouds' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'cloud ice content, conv clouds, vert integrated' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'convective mass flux' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'Updraft velocity, convection' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'entrainment parameter, convection' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'cloud base, convective clouds (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'cloud top, convective clouds (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'convective layers (00...77) (BKE)' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'KO-index' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'convection base index' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'convection top index' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'convective temperature tendency' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'convective tendency of specific humidity' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'convective tendency of total heat' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'convective tendency of total water' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'convective momentum tendency (X-component)' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'convective momentum tendency (Y-component)' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'convective vorticity tendency' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'convective divergence tendency' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'top of dry convection (above msl)' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'dry convection top index' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'height of 0 degree Celsius isotherm above msl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'height of snow-fall limit' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'spec. content of precip. particles' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'surface precipitation rate, rain, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'surface precipitation rate, snow, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'surface precipitation amount, rain, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'surface precipitation rate, rain, convective' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'surface precipitation rate, snow, convective' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'surface precipitation amount, rain, convective' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'deviation of pressure from reference value' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'coefficient of horizontal diffusion' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'Maximum wind velocity' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'water content of interception store' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'snow temperature' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'ice surface temperature' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'convective available potential energy' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'Indicates a missing value' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'SO2 precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'Soil clay content' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'Methane' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#CO2 column-mean molar fraction +'CO2 column-mean molar fraction' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#CH4 column-mean molar fraction +'CH4 column-mean molar fraction' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'Wildfire flux of Carbon Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'Wildfire flux of Carbon Monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'Wildfire flux of Methane' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'Wildfire flux of Non-Methane Hydro-Carbons' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'Wildfire flux of Hydrogen' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'Wildfire flux of Nitrogen Oxides NOx' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'Wildfire flux of Nitrous Oxide' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'Wildfire flux of Particulate Matter PM2.5' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'Wildfire flux of Total Particulate Matter' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'Wildfire flux of Total Carbon in Aerosols' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'Wildfire flux of Organic Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'Wildfire flux of Black Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'Number of positive FRP pixels per grid cell' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'Radon' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'Total column Radon' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'Aerosol type 12 mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'Soil clay content' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'Methane' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'Total column Methane' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'Wildfire flux of Carbon Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'Wildfire flux of Carbon Monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'Wildfire flux of Methane' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'Wildfire flux of Non-Methane Hydro-Carbons' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'Wildfire flux of Hydrogen' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'Wildfire flux of Nitrogen Oxides NOx' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'Wildfire flux of Nitrous Oxide' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'Wildfire flux of Particulate Matter PM2.5' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'Wildfire flux of Total Particulate Matter' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'Wildfire flux of Total Carbon in Aerosols' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'Wildfire flux of Organic Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'Wildfire flux of Black Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'Wildfire observed area' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'Radon' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'Total column Radon' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'Total precipitation observation count' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'Convective inhibition' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'Orography' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'Friction velocity' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'Mean temperature at 2 metres' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'Mean total cloud cover' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'Lake depth' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'Lake shape factor' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'Lake ice temperature' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'Lake ice depth' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'Minimum vertical gradient of refractivity inside trapping layer' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'Mean vertical gradient of refractivity inside trapping layer' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'Duct base height' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'Trapping layer base height' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'Trapping layer top height' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'Neutral wind at 10 m u-component' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'Neutral wind at 10 m v-component' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'Field capacity' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'Wilting point' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'Total Precipitation' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'Snow evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'Snowmelt (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'Solar duration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'Downward UV radiation at the surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'Photosynthetically active radiation at the surface (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'Stratiform precipitation (Large-scale precipitation) (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'Convective precipitation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'Snowfall (convective + stratiform) (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'Boundary layer dissipation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'Surface sensible heat flux (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'Surface latent heat flux (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'Surface solar radiation downwards (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'Surface thermal radiation downwards (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'Surface net solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'Surface net thermal radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'Top net solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'Top net thermal radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'East-West surface stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'North-South surface stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'Evaporation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'Sunshine duration (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'Longitudinal component of gravity wave stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'Meridional component of gravity wave stress (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'Gravity wave dissipation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'Skin reservoir content (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'Runoff (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'Top net solar radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'Top net thermal radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'Surface net solar radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'Surface net thermal radiation, clear sky (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'TOA incident solar radiation (variable resolution)' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'Surface temperature significance' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'Mean sea level pressure significance' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'2 metre temperature significance' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'Total precipitation significance' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'U-component stokes drift' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'V-component stokes drift' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'Wildfire flux of Sulfur Dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'Wildfire Flux of Methanol (CH3OH)' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'Wildfire Flux of Ethanol (C2H5OH)' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'Wildfire Flux of Propane (C3H8)' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'Wildfire Flux of Ethene (C2H4)' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'Wildfire Flux of Propene (C3H6)' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'Wildfire Flux of Isoprene (C5H8)' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'Wildfire Flux of Terpenes (C5H8)n' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'Wildfire Flux of Formaldehyde (CH2O)' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'Wildfire Flux of Acetaldehyde (C2H4O)' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'Wildfire Flux of Acetone (C3H6O)' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'Wildfire Flux of Ammonia (NH3)' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'Wildfire flux of Sulfur Dioxide' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'Wildfire Flux of Methanol (CH3OH)' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'Wildfire Flux of Ethanol (C2H5OH)' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'Wildfire Flux of Propane (C3H8)' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'Wildfire Flux of Ethene (C2H4)' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'Wildfire Flux of Propene (C3H6)' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'Wildfire Flux of Isoprene (C5H8)' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'Wildfire Flux of Terpenes (C5H8)n' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'Wildfire Flux of Formaldehyde (CH2O)' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'Wildfire Flux of Acetaldehyde (C2H4O)' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'Wildfire Flux of Acetone (C3H6O)' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'Wildfire Flux of Ammonia (NH3)' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'V-tendency from non-orographic wave drag' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'U-tendency from non-orographic wave drag' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'100 metre U wind component' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'100 metre V wind component' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ASCAT first soil moisture CDF matching parameter' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ASCAT second soil moisture CDF matching parameter' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/paramId.def b/eccodes/definitions/grib1/localConcepts/ecmf/paramId.def new file mode 100644 index 00000000..8b237823 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/paramId.def @@ -0,0 +1,17676 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'131060' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'131061' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'131062' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'131063' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'131082' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'131083' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'131084' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'131085' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'131086' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'131087' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'131088' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'1' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'2' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'3' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'4' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'5' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'6' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'7' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'8' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'9' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'10' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'11' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'12' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'13' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'14' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'15' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'16' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'17' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'18' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'19' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'20' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'21' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'23' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'24' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'25' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'26' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'27' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'28' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'29' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'30' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea ice area fraction +'31' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'32' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'33' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'34' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'35' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'36' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'37' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'38' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'39' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'40' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'41' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'42' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'43' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'44' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'45' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'46' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'47' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress +'48' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'49' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'50' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'51' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'52' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'53' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'54' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'55' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'56' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'57' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'58' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'59' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'60' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'62' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'63' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'64' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'65' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'66' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'67' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'68' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'69' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'70' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'71' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'72' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'73' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'74' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'75' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'76' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'77' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column cloud liquid water +'78' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column cloud ice water +'79' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'80' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'81' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'82' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'83' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'84' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'85' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'86' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'87' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'88' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'89' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'90' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'91' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'92' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'93' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'94' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'95' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'96' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'97' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'98' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'99' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'100' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'101' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'102' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'103' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'104' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'105' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'106' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'107' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'108' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'109' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'110' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'111' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'112' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'113' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'114' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'115' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'116' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'117' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'118' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'119' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'120' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'123' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'124' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'125' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'126' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'127' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'127' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'128' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'128' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'129' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'129' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'130' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'130' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'131' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'131' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'132' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'132' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'133' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'133' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'134' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'134' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'134' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'135' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'135' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'136' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'136' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'137' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'137' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'138' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'138' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'139' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'140' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'140' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'141' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'141' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'141' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'142' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'142' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'142' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'143' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'143' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'143' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'144' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'144' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'145' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'145' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'146' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'147' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'147' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'148' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'149' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'150' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'151' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'151' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'152' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'152' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'153' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'154' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'155' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'155' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'156' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'157' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'157' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'157' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'158' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'158' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'159' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'160' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'161' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'162' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'163' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'164' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'164' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'165' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'165' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'166' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'166' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'167' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'167' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'169' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'169' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'170' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'170' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'171' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'172' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'172' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'173' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'173' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'174' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'174' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'174' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'175' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'175' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'176' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'176' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'177' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'178' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'178' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'178' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'179' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'179' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'179' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'180' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'181' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'182' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'182' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'183' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'183' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'184' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'184' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'185' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'185' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'185' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'186' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'186' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'187' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'187' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'188' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'188' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'189' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'194' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'195' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'195' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'196' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'196' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'197' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'197' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'198' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'199' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'200' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'200' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'203' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'204' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'204' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'205' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'205' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'206' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'207' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'208' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'209' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'210' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'211' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'212' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'213' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'214' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'215' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'216' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'217' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'218' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'219' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'220' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'221' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'222' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'222' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'223' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'223' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'224' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'225' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'226' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'227' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'227' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'228' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'228' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'231' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'232' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'232' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'233' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'233' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'234' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'234' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'235' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'235' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'236' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'236' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'237' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'237' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'238' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'238' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'239' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'240' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'241' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'242' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'243' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'244' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'244' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'246' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'247' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Fraction of cloud cover +'248' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'249' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'250' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'251' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'252' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'253' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'254' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'255' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'255' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'200001' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'200002' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'200003' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'200004' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'200005' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'200011' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'200012' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'200013' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'200014' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'200021' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'200022' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'200023' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'200024' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'200025' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'200026' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'200027' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'200028' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'200029' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'200030' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'200031' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'200032' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'200033' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'200034' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'200035' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'200036' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'200037' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'200038' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'200039' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'200040' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'200041' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'200042' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'200043' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'200044' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'200045' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'200046' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'200047' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress difference +'200048' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'200049' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'200050' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'200051' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'200052' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'200053' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'200054' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'200055' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'200056' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'200057' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'200058' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'200059' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'200060' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'200061' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'200062' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'200063' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'200064' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'200065' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'200066' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'200067' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'200068' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'200069' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'200070' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'200071' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'200078' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'200079' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'200080' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'200081' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'200082' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'200083' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'200084' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'200085' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'200086' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'200087' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'200088' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'200089' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'200090' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'200091' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'200092' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'200093' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'200094' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'200095' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'200096' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'200097' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'200098' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'200099' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'200100' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'200101' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'200102' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'200103' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'200104' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'200105' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'200106' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'200107' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'200108' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'200109' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'200110' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'200111' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'200112' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'200113' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'200114' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'200115' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'200116' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'200117' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'200118' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'200119' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'200120' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'200121' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'200122' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'200123' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'200125' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'200126' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'200127' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'200128' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'200129' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'200130' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'200131' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'200132' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'200133' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'200134' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'200135' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'200136' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'200137' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'200138' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'200139' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'200140' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'200141' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'200142' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'200143' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'200144' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'200145' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'200146' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'200147' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'200148' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'200149' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'200150' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'200151' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'200152' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'200153' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'200154' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'200155' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'200156' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'200157' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'200158' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'200159' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'200160' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'200161' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'200162' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'200163' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'200164' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'200165' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'200166' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'200167' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'200169' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'200170' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'200171' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'200172' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'200173' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'200174' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'200175' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'200176' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'200177' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'200178' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'200179' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'200180' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'200181' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'200182' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'200183' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'200184' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'200185' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'200186' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'200187' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'200188' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'200189' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'200190' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'200191' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'200192' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'200193' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'200194' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'200195' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'200196' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'200197' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'200198' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'200199' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'200200' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'200201' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'200202' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'200203' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'200204' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'200205' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'200206' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'200207' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'200208' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'200209' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'200210' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'200211' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'200212' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'200214' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'200215' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'200216' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'200217' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'200218' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'200219' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'200220' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'200221' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'200222' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'200223' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'200224' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'200225' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'200226' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'200227' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'200228' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'200229' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'200230' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'200231' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'200232' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'200233' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'200234' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'200235' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'200236' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'200237' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'200238' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'200239' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'200240' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'200241' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'200242' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'200243' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'200244' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'200245' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'200246' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'200247' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'200248' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'200249' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'200250' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'200251' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'200252' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'200253' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'200254' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'200255' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'131089' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'131090' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'131091' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'131092' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'131093' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'131094' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'131095' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'131096' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'131097' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Total precipitation of at least 25 mm +'131098' = { + table2Version = 131 ; + indicatorOfParameter = 98 ; + } +#Total precipitation of at least 50 mm +'131099' = { + table2Version = 131 ; + indicatorOfParameter = 99 ; + } +#10 metre wind gust of at least 10 m/s +'131100' = { + table2Version = 131 ; + indicatorOfParameter = 100 ; + } +#Convective available potential energy shear index +'132044' = { + table2Version = 132 ; + indicatorOfParameter = 44 ; + } +#Water vapour flux index +'132045' = { + table2Version = 132 ; + indicatorOfParameter = 45 ; + } +#Convective available potential energy index +'132059' = { + table2Version = 132 ; + indicatorOfParameter = 59 ; + } +#Maximum of significant wave height index +'132216' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'140080' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'140081' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'140082' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'140083' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'140084' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Wave induced mean sea level correction +'140098' = { + table2Version = 140 ; + indicatorOfParameter = 98 ; + } +#Ratio of wave angular and frequency width +'140099' = { + table2Version = 140 ; + indicatorOfParameter = 99 ; + } +#Number of events in freak waves statistics +'140100' = { + table2Version = 140 ; + indicatorOfParameter = 100 ; + } +#U-component of atmospheric surface momentum flux +'140101' = { + table2Version = 140 ; + indicatorOfParameter = 101 ; + } +#V-component of atmospheric surface momentum flux +'140102' = { + table2Version = 140 ; + indicatorOfParameter = 102 ; + } +#U-component of surface momentum flux into ocean +'140103' = { + table2Version = 140 ; + indicatorOfParameter = 103 ; + } +#V-component of surface momentum flux into ocean +'140104' = { + table2Version = 140 ; + indicatorOfParameter = 104 ; + } +#Wave turbulent energy flux into ocean +'140105' = { + table2Version = 140 ; + indicatorOfParameter = 105 ; + } +#Wave directional width of first swell partition +'140106' = { + table2Version = 140 ; + indicatorOfParameter = 106 ; + } +#Wave frequency width of first swell partition +'140107' = { + table2Version = 140 ; + indicatorOfParameter = 107 ; + } +#Wave directional width of second swell partition +'140108' = { + table2Version = 140 ; + indicatorOfParameter = 108 ; + } +#Wave frequency width of second swell partition +'140109' = { + table2Version = 140 ; + indicatorOfParameter = 109 ; + } +#Wave directional width of third swell partition +'140110' = { + table2Version = 140 ; + indicatorOfParameter = 110 ; + } +#Wave frequency width of third swell partition +'140111' = { + table2Version = 140 ; + indicatorOfParameter = 111 ; + } +#Wave energy flux magnitude +'140112' = { + table2Version = 140 ; + indicatorOfParameter = 112 ; + } +#Wave energy flux mean direction +'140113' = { + table2Version = 140 ; + indicatorOfParameter = 113 ; + } +#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds +'140114' = { + table2Version = 140 ; + indicatorOfParameter = 114 ; + } +#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds +'140115' = { + table2Version = 140 ; + indicatorOfParameter = 115 ; + } +#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds +'140116' = { + table2Version = 140 ; + indicatorOfParameter = 116 ; + } +#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds +'140117' = { + table2Version = 140 ; + indicatorOfParameter = 117 ; + } +#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds +'140118' = { + table2Version = 140 ; + indicatorOfParameter = 118 ; + } +#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds +'140119' = { + table2Version = 140 ; + indicatorOfParameter = 119 ; + } +#Significant wave height of all waves with period larger than 10s +'140120' = { + table2Version = 140 ; + indicatorOfParameter = 120 ; + } +#Significant wave height of first swell partition +'140121' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'140122' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'140123' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'140124' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'140125' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'140126' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'140127' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'140128' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'140129' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'140207' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'140208' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'140209' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'140210' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'140211' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'140212' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'140213' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'140214' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'151193' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Water vapour flux +'162045' = { + table2Version = 162 ; + indicatorOfParameter = 45 ; + } +#Vertical integral of divergence of cloud liquid water flux +'162079' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'162080' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'162088' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'162089' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'162090' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'162091' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'162092' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'162114' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'162115' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'162116' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'162117' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'162118' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'162119' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'162120' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'162121' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'162122' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'162123' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'162124' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'162125' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'162126' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'162127' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'162128' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'162129' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'162130' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'162131' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'162132' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'162133' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'162134' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'162135' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'162136' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'162137' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'162138' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'162139' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'162140' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'162141' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#Standardised precipitation index valid in the last 3 months +'170001' = { + table2Version = 170 ; + indicatorOfParameter = 1 ; + } +#Standardised precipitation index valid in the last 6 months +'170002' = { + table2Version = 170 ; + indicatorOfParameter = 2 ; + } +#Standardised precipitation index valid in the last 12 months +'170003' = { + table2Version = 170 ; + indicatorOfParameter = 3 ; + } +#100 metre U wind component anomaly +'171006' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'171007' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature anomaly +'171024' = { + table2Version = 171 ; + indicatorOfParameter = 24 ; + } +#Lake ice depth anomaly +'171025' = { + table2Version = 171 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'171121' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'171122' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Mean surface runoff rate +'172008' = { + table2Version = 172 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate +'172009' = { + table2Version = 172 ; + indicatorOfParameter = 9 ; + } +#Mean surface runoff rate anomaly +'173008' = { + table2Version = 173 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate anomaly +'173009' = { + table2Version = 173 ; + indicatorOfParameter = 9 ; + } +#Clear-sky (II) down surface sw flux +'174010' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'174013' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'174025' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'174050' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'174051' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'174052' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#2 metre specific humidity +'174096' = { + table2Version = 174 ; + indicatorOfParameter = 96 ; + } +#Sea ice snow thickness +'174097' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Short wave radiation flux at surface +'174116' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'174117' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'174137' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'174142' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'174143' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'174186' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'174239' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'174240' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'174248' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'174249' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'210013' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'210014' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'210015' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'210028' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'210029' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'210030' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'210043' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'210044' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'210045' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'210055' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'210056' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'210057' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'210058' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'210059' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Injection height (from IS4FIRES) +'210060' = { + table2Version = 210 ; + indicatorOfParameter = 60 ; + } +#Particulate matter d < 1 um +'210072' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'210073' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'210074' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'210079' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'210118' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'210119' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'210120' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'210186' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'210187' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'210188' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'210189' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'210190' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'210191' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'210192' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'210193' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'210194' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'210195' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'210196' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'210197' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'210217' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'210218' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'210219' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'210220' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'210221' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'210222' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'210223' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'210224' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'210225' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'210226' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'210227' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'210228' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'210229' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'210230' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'210231' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'210232' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'210233' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'210234' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'210235' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'210236' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'210237' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'210238' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'210239' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'210240' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'210241' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'210242' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'210243' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'210244' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'210245' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'210246' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'210247' = { + table2Version = 210 ; + indicatorOfParameter = 247 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'210248' = { + table2Version = 210 ; + indicatorOfParameter = 248 ; + } +#Ammonium aerosol mass mixing ratio +'210249' = { + table2Version = 210 ; + indicatorOfParameter = 249 ; + } +#Nitrate aerosol optical depth at 550 nm +'210250' = { + table2Version = 210 ; + indicatorOfParameter = 250 ; + } +#Ammonium aerosol optical depth at 550 nm +'210251' = { + table2Version = 210 ; + indicatorOfParameter = 251 ; + } +#Aerosol type 13 mass mixing ratio +'211013' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'211014' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'211015' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'211028' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'211029' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'211030' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'211043' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'211044' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'211045' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'211055' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'211056' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'211118' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'211119' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'211120' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'212001' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'212002' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'212003' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'212004' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'212005' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'212006' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'212007' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'212008' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'212009' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'212010' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'212011' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'212012' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'212013' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'212014' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'212015' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'212016' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'212017' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'212018' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'212019' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'212020' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'212021' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'212022' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'212023' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'212024' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'212025' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'212026' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'212027' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'212028' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'212029' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'212030' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'212031' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'212032' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'212033' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'212034' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'212035' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'212036' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'212037' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'212038' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'212039' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'212040' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'212041' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'212042' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'212043' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'212044' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'212045' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'212046' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'212047' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'212048' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'212049' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'212050' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'212051' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'212052' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'212053' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'212054' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'212055' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'212056' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'212057' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'212058' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'212059' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'212060' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'212061' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'212062' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'212063' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'212064' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'212065' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'212066' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'212067' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'212068' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'212069' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'212070' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'212071' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'212072' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'212073' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'212074' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'212075' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'212076' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'212077' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'212078' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'212079' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'212080' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'212081' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'212082' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'212083' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'212084' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'212085' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'212086' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'212087' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'212088' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'212089' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'212090' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'212091' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'212092' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'212093' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'212094' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'212095' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'212096' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'212097' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'212098' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'212099' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'212100' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'212101' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'212102' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'212103' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'212104' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'212105' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'212106' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'212107' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'212108' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'212109' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'212110' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'212111' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'212112' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'212113' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'212114' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'212115' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'212116' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'212117' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'212118' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'212119' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'212120' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'212121' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'212122' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'212123' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'212124' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'212125' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'212126' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'212127' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'212128' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'212129' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'212130' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'212131' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'212132' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'212133' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'212134' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'212135' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'212136' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'212137' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'212138' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'212139' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'212140' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'212141' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'212142' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'212143' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'212144' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'212145' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'212146' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'212147' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'212148' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'212149' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'212150' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'212151' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'212152' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'212153' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'212154' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'212155' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'212156' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'212157' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'212158' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'212159' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'212160' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'212161' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'212162' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'212163' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'212164' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'212165' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'212166' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'212167' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'212168' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'212169' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'212170' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'212171' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'212172' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'212173' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'212174' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'212175' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'212176' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'212177' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'212178' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'212179' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'212180' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'212181' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'212182' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'212183' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'212184' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'212185' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'212186' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'212187' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'212188' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'212189' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'212190' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'212191' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'212192' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'212193' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'212194' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'212195' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'212196' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'212197' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'212198' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'212199' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'212200' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'212201' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'212202' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'212203' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'212204' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'212205' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'212206' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'212207' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'212208' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'212209' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'212210' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'212211' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'212212' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'212213' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'212214' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'212215' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'212216' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'212217' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'212218' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'212219' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'212220' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'212221' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'212222' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'212223' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'212224' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'212225' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'212226' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'212227' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'212228' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'212229' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'212230' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'212231' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'212232' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'212233' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'212234' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'212235' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'212236' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'212237' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'212238' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'212239' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'212240' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'212241' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'212242' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'212243' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'212244' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'212245' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'212246' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'212247' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'212248' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'212249' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'212250' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'212251' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'212252' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'212253' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'212254' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'212255' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'213001' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'213002' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'213003' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'213004' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'213005' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +#Random pattern 1 for SPP scheme +'213101' = { + table2Version = 213 ; + indicatorOfParameter = 101 ; + } +#Random pattern 2 for SPP scheme +'213102' = { + table2Version = 213 ; + indicatorOfParameter = 102 ; + } +#Random pattern 3 for SPP scheme +'213103' = { + table2Version = 213 ; + indicatorOfParameter = 103 ; + } +#Random pattern 4 for SPP scheme +'213104' = { + table2Version = 213 ; + indicatorOfParameter = 104 ; + } +#Random pattern 5 for SPP scheme +'213105' = { + table2Version = 213 ; + indicatorOfParameter = 105 ; + } +#Random pattern 6 for SPP scheme +'213106' = { + table2Version = 213 ; + indicatorOfParameter = 106 ; + } +#Random pattern 7 for SPP scheme +'213107' = { + table2Version = 213 ; + indicatorOfParameter = 107 ; + } +#Random pattern 8 for SPP scheme +'213108' = { + table2Version = 213 ; + indicatorOfParameter = 108 ; + } +#Random pattern 9 for SPP scheme +'213109' = { + table2Version = 213 ; + indicatorOfParameter = 109 ; + } +#Random pattern 10 for SPP scheme +'213110' = { + table2Version = 213 ; + indicatorOfParameter = 110 ; + } +#Random pattern 11 for SPP scheme +'213111' = { + table2Version = 213 ; + indicatorOfParameter = 111 ; + } +#Random pattern 12 for SPP scheme +'213112' = { + table2Version = 213 ; + indicatorOfParameter = 112 ; + } +#Random pattern 13 for SPP scheme +'213113' = { + table2Version = 213 ; + indicatorOfParameter = 113 ; + } +#Random pattern 14 for SPP scheme +'213114' = { + table2Version = 213 ; + indicatorOfParameter = 114 ; + } +#Random pattern 15 for SPP scheme +'213115' = { + table2Version = 213 ; + indicatorOfParameter = 115 ; + } +#Random pattern 16 for SPP scheme +'213116' = { + table2Version = 213 ; + indicatorOfParameter = 116 ; + } +#Random pattern 17 for SPP scheme +'213117' = { + table2Version = 213 ; + indicatorOfParameter = 117 ; + } +#Random pattern 18 for SPP scheme +'213118' = { + table2Version = 213 ; + indicatorOfParameter = 118 ; + } +#Random pattern 19 for SPP scheme +'213119' = { + table2Version = 213 ; + indicatorOfParameter = 119 ; + } +#Random pattern 20 for SPP scheme +'213120' = { + table2Version = 213 ; + indicatorOfParameter = 120 ; + } +#Random pattern 21 for SPP scheme +'213121' = { + table2Version = 213 ; + indicatorOfParameter = 121 ; + } +#Random pattern 22 for SPP scheme +'213122' = { + table2Version = 213 ; + indicatorOfParameter = 122 ; + } +#Random pattern 23 for SPP scheme +'213123' = { + table2Version = 213 ; + indicatorOfParameter = 123 ; + } +#Random pattern 24 for SPP scheme +'213124' = { + table2Version = 213 ; + indicatorOfParameter = 124 ; + } +#Random pattern 25 for SPP scheme +'213125' = { + table2Version = 213 ; + indicatorOfParameter = 125 ; + } +#Random pattern 26 for SPP scheme +'213126' = { + table2Version = 213 ; + indicatorOfParameter = 126 ; + } +#Random pattern 27 for SPP scheme +'213127' = { + table2Version = 213 ; + indicatorOfParameter = 127 ; + } +#Random pattern 28 for SPP scheme +'213128' = { + table2Version = 213 ; + indicatorOfParameter = 128 ; + } +#Random pattern 29 for SPP scheme +'213129' = { + table2Version = 213 ; + indicatorOfParameter = 129 ; + } +#Random pattern 30 for SPP scheme +'213130' = { + table2Version = 213 ; + indicatorOfParameter = 130 ; + } +#Random pattern 31 for SPP scheme +'213131' = { + table2Version = 213 ; + indicatorOfParameter = 131 ; + } +#Random pattern 32 for SPP scheme +'213132' = { + table2Version = 213 ; + indicatorOfParameter = 132 ; + } +#Random pattern 33 for SPP scheme +'213133' = { + table2Version = 213 ; + indicatorOfParameter = 133 ; + } +#Random pattern 34 for SPP scheme +'213134' = { + table2Version = 213 ; + indicatorOfParameter = 134 ; + } +#Random pattern 35 for SPP scheme +'213135' = { + table2Version = 213 ; + indicatorOfParameter = 135 ; + } +#Random pattern 36 for SPP scheme +'213136' = { + table2Version = 213 ; + indicatorOfParameter = 136 ; + } +#Random pattern 37 for SPP scheme +'213137' = { + table2Version = 213 ; + indicatorOfParameter = 137 ; + } +#Random pattern 38 for SPP scheme +'213138' = { + table2Version = 213 ; + indicatorOfParameter = 138 ; + } +#Random pattern 39 for SPP scheme +'213139' = { + table2Version = 213 ; + indicatorOfParameter = 139 ; + } +#Random pattern 40 for SPP scheme +'213140' = { + table2Version = 213 ; + indicatorOfParameter = 140 ; + } +#Random pattern 41 for SPP scheme +'213141' = { + table2Version = 213 ; + indicatorOfParameter = 141 ; + } +#Random pattern 42 for SPP scheme +'213142' = { + table2Version = 213 ; + indicatorOfParameter = 142 ; + } +#Random pattern 43 for SPP scheme +'213143' = { + table2Version = 213 ; + indicatorOfParameter = 143 ; + } +#Random pattern 44 for SPP scheme +'213144' = { + table2Version = 213 ; + indicatorOfParameter = 144 ; + } +#Random pattern 45 for SPP scheme +'213145' = { + table2Version = 213 ; + indicatorOfParameter = 145 ; + } +#Random pattern 46 for SPP scheme +'213146' = { + table2Version = 213 ; + indicatorOfParameter = 146 ; + } +#Random pattern 47 for SPP scheme +'213147' = { + table2Version = 213 ; + indicatorOfParameter = 147 ; + } +#Random pattern 48 for SPP scheme +'213148' = { + table2Version = 213 ; + indicatorOfParameter = 148 ; + } +#Random pattern 49 for SPP scheme +'213149' = { + table2Version = 213 ; + indicatorOfParameter = 149 ; + } +#Random pattern 50 for SPP scheme +'213150' = { + table2Version = 213 ; + indicatorOfParameter = 150 ; + } +#Cosine of solar zenith angle +'214001' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +#UV biologically effective dose +'214002' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +#UV biologically effective dose clear-sky +'214003' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'214004' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'214005' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'214006' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'214007' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'214008' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'214009' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'214010' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'214011' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'214012' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'214013' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'214014' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'214015' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'214016' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'214017' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'214018' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'214019' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'214020' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'214021' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'214022' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'214023' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'214024' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'214025' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'214026' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'214027' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'214028' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'214029' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'214030' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'214031' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'214032' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'214033' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'214034' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'214035' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'214036' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'214037' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'214038' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'214039' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'214040' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'214041' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'214042' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'214043' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'214044' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'214045' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'214046' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'214047' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'214048' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'214049' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'214050' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'214051' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +#Profile of optical thickness at 340 nm +'214052' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'215001' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'215002' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'215003' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'215004' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'215005' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'215006' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'215007' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'215008' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'215009' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'215010' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'215011' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'215012' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'215013' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'215014' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'215015' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'215016' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'215017' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'215018' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'215019' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'215020' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'215021' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'215022' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'215023' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'215024' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'215025' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'215026' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'215027' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'215028' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'215029' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'215030' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'215031' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'215032' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'215033' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'215034' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'215035' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'215036' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'215037' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'215038' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'215039' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'215040' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'215041' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'215042' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'215043' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'215044' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'215045' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'215046' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'215047' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'215048' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'215049' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'215050' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'215051' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'215052' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'215053' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'215054' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'215055' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'215056' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'215057' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'215058' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'215059' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'215060' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'215061' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'215062' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'215063' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'215064' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'215065' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'215066' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'215067' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'215068' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'215069' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'215070' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'215071' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'215072' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'215073' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'215074' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'215075' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'215076' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'215077' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'215078' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'215079' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'215080' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +#Source/gain of sulphate aerosol +'215081' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +#Dry deposition of sulphate aerosol +'215082' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +#Sedimentation of sulphate aerosol +'215083' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'215084' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'215085' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +#Negative fixer of sulphate aerosol +'215086' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'215087' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +#Sulphate aerosol optical depth +'215088' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'215089' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'215090' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'215091' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'215092' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Total aerosol optical thickness at 532 nm +'215093' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'215094' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'215095' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'215096' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'215097' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'215098' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'215099' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'215100' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'215101' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'215102' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'215103' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'215104' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'215105' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'215106' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'215107' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'215108' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'215109' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'215110' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'215111' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'215112' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'215113' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'215114' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'215115' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'215116' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'215117' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'215118' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'215119' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'215120' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'215121' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'215122' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'215123' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'215124' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'215125' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'215126' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'215127' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'215128' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'215129' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'215130' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'215131' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'215132' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'215133' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'215134' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'215135' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'215136' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'215137' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'215138' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'215139' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'215140' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'215141' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'215142' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'215143' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'215144' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'215145' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'215146' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'215147' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'215148' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'215149' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Asymmetry factor at 340 nm +'215150' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Asymmetry factor at 355 nm +'215151' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Asymmetry factor at 380 nm +'215152' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Asymmetry factor at 400 nm +'215153' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Asymmetry factor at 440 nm +'215154' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Asymmetry factor at 469 nm +'215155' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Asymmetry factor at 500 nm +'215156' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Asymmetry factor at 532 nm +'215157' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Asymmetry factor at 550 nm +'215158' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Asymmetry factor at 645 nm +'215159' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Asymmetry factor at 670 nm +'215160' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Asymmetry factor at 800 nm +'215161' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Asymmetry factor at 858 nm +'215162' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Asymmetry factor at 865 nm +'215163' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Asymmetry factor at 1020 nm +'215164' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Asymmetry factor at 1064 nm +'215165' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Asymmetry factor at 1240 nm +'215166' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Asymmetry factor at 1640 nm +'215167' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'215168' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'215169' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'215170' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'215171' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'215172' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'215173' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'215174' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'215175' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'215176' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'215177' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'215178' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Asymmetry factor at 2130 nm +'215179' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'215180' = { + table2Version = 215 ; + indicatorOfParameter = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'215181' = { + table2Version = 215 ; + indicatorOfParameter = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'215182' = { + table2Version = 215 ; + indicatorOfParameter = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'215183' = { + table2Version = 215 ; + indicatorOfParameter = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'215184' = { + table2Version = 215 ; + indicatorOfParameter = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'215185' = { + table2Version = 215 ; + indicatorOfParameter = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'215186' = { + table2Version = 215 ; + indicatorOfParameter = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'215187' = { + table2Version = 215 ; + indicatorOfParameter = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'215188' = { + table2Version = 215 ; + indicatorOfParameter = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'215189' = { + table2Version = 215 ; + indicatorOfParameter = 189 ; + } +#Source/gain of coarse-mode nitrate aerosol +'215190' = { + table2Version = 215 ; + indicatorOfParameter = 190 ; + } +#Dry deposition of fine-mode nitrate aerosol +'215191' = { + table2Version = 215 ; + indicatorOfParameter = 191 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'215192' = { + table2Version = 215 ; + indicatorOfParameter = 192 ; + } +#Sedimentation of fine-mode nitrate aerosol +'215193' = { + table2Version = 215 ; + indicatorOfParameter = 193 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'215194' = { + table2Version = 215 ; + indicatorOfParameter = 194 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'215195' = { + table2Version = 215 ; + indicatorOfParameter = 195 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'215196' = { + table2Version = 215 ; + indicatorOfParameter = 196 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'215197' = { + table2Version = 215 ; + indicatorOfParameter = 197 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'215198' = { + table2Version = 215 ; + indicatorOfParameter = 198 ; + } +#Negative fixer of fine-mode nitrate aerosol +'215199' = { + table2Version = 215 ; + indicatorOfParameter = 199 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'215200' = { + table2Version = 215 ; + indicatorOfParameter = 200 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'215201' = { + table2Version = 215 ; + indicatorOfParameter = 201 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'215202' = { + table2Version = 215 ; + indicatorOfParameter = 202 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'215203' = { + table2Version = 215 ; + indicatorOfParameter = 203 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'215204' = { + table2Version = 215 ; + indicatorOfParameter = 204 ; + } +#Source/gain of ammonium aerosol +'215205' = { + table2Version = 215 ; + indicatorOfParameter = 205 ; + } +#Dry deposition of ammonium aerosol +'215206' = { + table2Version = 215 ; + indicatorOfParameter = 206 ; + } +#Sedimentation of ammonium aerosol +'215207' = { + table2Version = 215 ; + indicatorOfParameter = 207 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'215208' = { + table2Version = 215 ; + indicatorOfParameter = 208 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'215209' = { + table2Version = 215 ; + indicatorOfParameter = 209 ; + } +#Negative fixer of ammonium aerosol +'215210' = { + table2Version = 215 ; + indicatorOfParameter = 210 ; + } +#Vertically integrated mass of ammonium aerosol +'215211' = { + table2Version = 215 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'216001' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'216002' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'216003' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'216004' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'216005' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'216006' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'216007' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'216008' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'216009' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'216010' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'216011' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'216012' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'216013' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'216014' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'216015' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'216016' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'216017' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'216018' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'216019' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'216020' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'216021' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'216022' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'216023' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'216024' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'216025' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'216026' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'216027' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'216028' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'216029' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'216030' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'216031' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'216032' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'216033' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'216034' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'216035' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'216036' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'216037' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'216038' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'216039' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'216040' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'216041' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'216042' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'216043' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'216044' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'216045' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'216046' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'216047' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'216048' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'216049' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'216050' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'216051' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'216052' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'216053' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'216054' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'216055' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'216056' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'216057' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'216058' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'216059' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'216060' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'216061' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'216062' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'216063' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'216064' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'216065' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'216066' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'216067' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'216068' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'216069' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'216070' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'216071' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'216072' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'216073' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'216074' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'216075' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'216076' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'216077' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'216078' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'216079' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'216080' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'216081' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'216082' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'216083' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'216084' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'216085' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'216086' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'216087' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'216088' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'216089' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'216090' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'216091' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'216092' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'216093' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'216094' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'216095' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'216096' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'216097' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'216098' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'216099' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'216100' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'216101' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'216102' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'216103' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'216104' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'216105' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'216106' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'216107' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'216108' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'216109' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'216110' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'216111' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'216112' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'216113' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'216114' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'216115' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'216116' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'216117' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'216118' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'216119' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'216120' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'216121' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'216122' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'216123' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'216124' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'216125' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'216126' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'216127' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'216128' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'216129' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'216130' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'216131' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'216132' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'216133' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'216134' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'216135' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'216136' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'216137' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'216138' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'216139' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'216140' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'216141' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'216142' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'216143' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'216144' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'216145' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'216146' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'216147' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'216148' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'216149' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'216150' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'216151' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'216152' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'216153' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'216154' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'216155' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'216156' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'216157' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'216158' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'216159' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'216160' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'216161' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'216162' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'216163' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'216164' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'216165' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'216166' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'216167' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'216168' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'216169' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'216170' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'216171' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'216172' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'216173' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'216174' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'216175' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'216176' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'216177' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'216178' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'216179' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'216180' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'216181' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'216182' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'216183' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'216184' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'216185' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'216186' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'216187' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'216188' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'216189' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'216190' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'216191' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'216192' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'216193' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'216194' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'216195' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'216196' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'216197' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'216198' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'216199' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'216200' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'216201' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'216202' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'216203' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'216204' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'216205' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'216206' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'216207' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'216208' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'216209' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'216210' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'216211' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'216212' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'216213' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'216214' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'216215' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'216216' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'216217' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'216218' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'216219' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'216220' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'216221' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'216222' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'216223' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'216224' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'216225' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'216226' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'216227' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'216228' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'216229' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'216230' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'216231' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'216232' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'216233' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'216234' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'216235' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'216236' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'216237' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'216238' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'216239' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'216240' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'216241' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'216242' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'216243' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'216244' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'216245' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'216246' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'216247' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'216248' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'216249' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'216250' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'216251' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'216252' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'216253' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'216254' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'216255' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'217003' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'217004' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'217006' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'217007' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'217009' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'217010' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'217011' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'217012' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'217013' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'217014' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'217015' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'217016' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'217018' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'217019' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'217020' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'217021' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'217022' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'217023' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'217024' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'217026' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'217027' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'217028' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'217029' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'217030' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'217032' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'217033' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'217034' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'217035' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'217036' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'217037' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'217038' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'217039' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'217040' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'217041' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'217042' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'217043' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'217044' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'217045' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'217046' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'217047' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'217048' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'217049' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'217050' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'217051' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'217052' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'217053' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'217054' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'217055' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'217056' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'218003' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'218004' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'218006' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'218007' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'218009' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'218010' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'218011' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'218012' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'218013' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'218014' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'218015' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'218016' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'218018' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'218019' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'218020' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'218021' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'218022' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'218023' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'218024' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'218026' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'218027' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'218028' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'218029' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'218030' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'218032' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'218033' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'218034' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'218035' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'218036' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'218037' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'218038' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'218039' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'218040' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'218041' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'218042' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'218043' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'218044' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'218045' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'218046' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'218047' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'218048' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'218049' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'218050' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'218051' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'218052' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'218053' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'218054' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'218055' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'218056' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'219001' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'219002' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'219003' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'219004' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'219005' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'219006' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'219007' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'219008' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'219009' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'219010' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'219011' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'219012' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'219013' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'219014' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'219015' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'219016' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'219017' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'219018' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'219019' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'219020' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'219021' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'219022' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'219023' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'219024' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'219025' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'219026' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'219027' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'219028' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'219029' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'219030' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'219031' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'219032' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'219033' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'219034' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'219035' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'219036' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'219037' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'219038' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'219039' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'219040' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'219041' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'219042' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'219043' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'219044' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'219045' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'219046' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'219047' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'219048' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'219049' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'219050' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'219051' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'219052' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'219053' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'219054' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'219055' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'219056' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'221001' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'221002' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'221003' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'221004' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'221005' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'221006' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'221007' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'221008' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'221009' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'221010' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'221011' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'221012' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'221013' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'221014' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'221015' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'221016' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'221017' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'221018' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'221019' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'221020' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'221021' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'221022' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'221023' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'221024' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'221025' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'221026' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'221027' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'221028' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'221029' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'221030' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'221031' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'221032' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'221033' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'221034' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'221035' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'221036' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'221037' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'221038' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'221039' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'221040' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'221041' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'221042' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'221043' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'221044' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'221045' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'221046' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'221047' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'221048' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'221049' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'221050' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'221051' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'221052' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'221053' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'221054' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'221055' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'221056' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#-10 degrees C isothermal level (atm) +'228020' = { + table2Version = 228 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface +'228021' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'228022' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'228023' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#0 degrees C isothermal level (atm) +'228024' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'228025' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'228026' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'228027' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'228029' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#2 metre relative humidity with respect to water +'228037' = { + table2Version = 228 ; + indicatorOfParameter = 37 ; + } +#Soil wetness index in layer 1 +'228040' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'228041' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'228042' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'228043' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Convective available potential energy shear +'228044' = { + table2Version = 228 ; + indicatorOfParameter = 44 ; + } +#Height of convective cloud top +'228046' = { + table2Version = 228 ; + indicatorOfParameter = 46 ; + } +#Height of zero-degree wet-bulb temperature +'228047' = { + table2Version = 228 ; + indicatorOfParameter = 47 ; + } +#Height of one-degree wet-bulb temperature +'228048' = { + table2Version = 228 ; + indicatorOfParameter = 48 ; + } +#Instantaneous total lightning flash density +'228050' = { + table2Version = 228 ; + indicatorOfParameter = 50 ; + } +#Averaged total lightning flash density in the last hour +'228051' = { + table2Version = 228 ; + indicatorOfParameter = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'228052' = { + table2Version = 228 ; + indicatorOfParameter = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'228053' = { + table2Version = 228 ; + indicatorOfParameter = 53 ; + } +#SMOS observed soil moisture retrieved using neural network +'228070' = { + table2Version = 228 ; + indicatorOfParameter = 70 ; + } +#SMOS observed soil moisture uncertainty retrieved using neural network +'228071' = { + table2Version = 228 ; + indicatorOfParameter = 71 ; + } +#SMOS radio frequency interference probability +'228072' = { + table2Version = 228 ; + indicatorOfParameter = 72 ; + } +#SMOS number of observations per grid point +'228073' = { + table2Version = 228 ; + indicatorOfParameter = 73 ; + } +#SMOS observation time for the satellite soil moisture data +'228074' = { + table2Version = 228 ; + indicatorOfParameter = 74 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'228078' = { + table2Version = 228 ; + indicatorOfParameter = 78 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'228079' = { + table2Version = 228 ; + indicatorOfParameter = 79 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'228080' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'228081' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'228082' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'228083' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'228084' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'228085' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'228088' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'228089' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'228090' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'228091' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'228092' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'228093' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'228094' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'228129' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'228130' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Accumulated freezing rain +'228216' = { + table2Version = 228 ; + indicatorOfParameter = 216 ; + } +#Instantaneous large-scale surface precipitation fraction +'228217' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'228218' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'228219' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'228220' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'228221' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'228222' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'228223' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'228224' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'228225' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'228226' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'228227' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'228229' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'228230' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#200 metre U wind component +'228239' = { + table2Version = 228 ; + indicatorOfParameter = 239 ; + } +#200 metre V wind component +'228240' = { + table2Version = 228 ; + indicatorOfParameter = 240 ; + } +#200 metre wind speed +'228241' = { + table2Version = 228 ; + indicatorOfParameter = 241 ; + } +#Surface solar radiation diffuse total sky +'228242' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'228243' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'228244' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'228245' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'228249' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'228250' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'228251' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'228252' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'230008' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'230009' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'230020' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'230021' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'230022' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Direct solar radiation (variable resolution) +'230047' = { + table2Version = 230 ; + indicatorOfParameter = 47 ; + } +#Large-scale precipitation fraction (variable resolution) +'230050' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'230080' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'230081' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'230082' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'230129' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'230130' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'230174' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'230213' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Accumulated freezing rain (variable resolution) +'230216' = { + table2Version = 230 ; + indicatorOfParameter = 216 ; + } +#Total precipitation (variable resolution) +'230228' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'230239' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'230240' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'230251' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#Mean surface runoff rate +'235020' = { + table2Version = 235 ; + indicatorOfParameter = 20 ; + } +#Mean sub-surface runoff rate +'235021' = { + table2Version = 235 ; + indicatorOfParameter = 21 ; + } +#Mean surface photosynthetically active radiation flux, clear sky +'235022' = { + table2Version = 235 ; + indicatorOfParameter = 22 ; + } +#Mean snow evaporation rate +'235023' = { + table2Version = 235 ; + indicatorOfParameter = 23 ; + } +#Mean snowmelt rate +'235024' = { + table2Version = 235 ; + indicatorOfParameter = 24 ; + } +#Mean magnitude of turbulent surface stress +'235025' = { + table2Version = 235 ; + indicatorOfParameter = 25 ; + } +#Mean large-scale precipitation fraction +'235026' = { + table2Version = 235 ; + indicatorOfParameter = 26 ; + } +#Mean surface downward UV radiation flux +'235027' = { + table2Version = 235 ; + indicatorOfParameter = 27 ; + } +#Mean surface photosynthetically active radiation flux +'235028' = { + table2Version = 235 ; + indicatorOfParameter = 28 ; + } +#Mean large-scale precipitation rate +'235029' = { + table2Version = 235 ; + indicatorOfParameter = 29 ; + } +#Mean convective precipitation rate +'235030' = { + table2Version = 235 ; + indicatorOfParameter = 30 ; + } +#Mean snowfall rate +'235031' = { + table2Version = 235 ; + indicatorOfParameter = 31 ; + } +#Mean boundary layer dissipation +'235032' = { + table2Version = 235 ; + indicatorOfParameter = 32 ; + } +#Mean surface sensible heat flux +'235033' = { + table2Version = 235 ; + indicatorOfParameter = 33 ; + } +#Mean surface latent heat flux +'235034' = { + table2Version = 235 ; + indicatorOfParameter = 34 ; + } +#Mean surface downward short-wave radiation flux +'235035' = { + table2Version = 235 ; + indicatorOfParameter = 35 ; + } +#Mean surface downward long-wave radiation flux +'235036' = { + table2Version = 235 ; + indicatorOfParameter = 36 ; + } +#Mean surface net short-wave radiation flux +'235037' = { + table2Version = 235 ; + indicatorOfParameter = 37 ; + } +#Mean surface net long-wave radiation flux +'235038' = { + table2Version = 235 ; + indicatorOfParameter = 38 ; + } +#Mean top net short-wave radiation flux +'235039' = { + table2Version = 235 ; + indicatorOfParameter = 39 ; + } +#Mean top net long-wave radiation flux +'235040' = { + table2Version = 235 ; + indicatorOfParameter = 40 ; + } +#Mean eastward turbulent surface stress +'235041' = { + table2Version = 235 ; + indicatorOfParameter = 41 ; + } +#Mean northward turbulent surface stress +'235042' = { + table2Version = 235 ; + indicatorOfParameter = 42 ; + } +#Mean evaporation rate +'235043' = { + table2Version = 235 ; + indicatorOfParameter = 43 ; + } +#Sunshine duration fraction +'235044' = { + table2Version = 235 ; + indicatorOfParameter = 44 ; + } +#Mean eastward gravity wave surface stress +'235045' = { + table2Version = 235 ; + indicatorOfParameter = 45 ; + } +#Mean northward gravity wave surface stress +'235046' = { + table2Version = 235 ; + indicatorOfParameter = 46 ; + } +#Mean gravity wave dissipation +'235047' = { + table2Version = 235 ; + indicatorOfParameter = 47 ; + } +#Mean runoff rate +'235048' = { + table2Version = 235 ; + indicatorOfParameter = 48 ; + } +#Mean top net short-wave radiation flux, clear sky +'235049' = { + table2Version = 235 ; + indicatorOfParameter = 49 ; + } +#Mean top net long-wave radiation flux, clear sky +'235050' = { + table2Version = 235 ; + indicatorOfParameter = 50 ; + } +#Mean surface net short-wave radiation flux, clear sky +'235051' = { + table2Version = 235 ; + indicatorOfParameter = 51 ; + } +#Mean surface net long-wave radiation flux, clear sky +'235052' = { + table2Version = 235 ; + indicatorOfParameter = 52 ; + } +#Mean top downward short-wave radiation flux +'235053' = { + table2Version = 235 ; + indicatorOfParameter = 53 ; + } +#Mean vertically integrated moisture divergence +'235054' = { + table2Version = 235 ; + indicatorOfParameter = 54 ; + } +#Mean total precipitation rate +'235055' = { + table2Version = 235 ; + indicatorOfParameter = 55 ; + } +#Mean convective snowfall rate +'235056' = { + table2Version = 235 ; + indicatorOfParameter = 56 ; + } +#Mean large-scale snowfall rate +'235057' = { + table2Version = 235 ; + indicatorOfParameter = 57 ; + } +#Mean surface direct short-wave radiation flux +'235058' = { + table2Version = 235 ; + indicatorOfParameter = 58 ; + } +#Mean surface direct short-wave radiation flux, clear sky +'235059' = { + table2Version = 235 ; + indicatorOfParameter = 59 ; + } +#Mean surface diffuse short-wave radiation flux +'235060' = { + table2Version = 235 ; + indicatorOfParameter = 60 ; + } +#Mean surface diffuse short-wave radiation flux, clear sky +'235061' = { + table2Version = 235 ; + indicatorOfParameter = 61 ; + } +#Mean carbon dioxide net ecosystem exchange flux +'235062' = { + table2Version = 235 ; + indicatorOfParameter = 62 ; + } +#Mean carbon dioxide gross primary production flux +'235063' = { + table2Version = 235 ; + indicatorOfParameter = 63 ; + } +#Mean carbon dioxide ecosystem respiration flux +'235064' = { + table2Version = 235 ; + indicatorOfParameter = 64 ; + } +#Mean rain rate +'235065' = { + table2Version = 235 ; + indicatorOfParameter = 65 ; + } +#Mean convective rain rate +'235066' = { + table2Version = 235 ; + indicatorOfParameter = 66 ; + } +#Mean large-scale rain rate +'235067' = { + table2Version = 235 ; + indicatorOfParameter = 67 ; + } +#Mean surface downward short-wave radiation flux, clear sky +'235068' = { + table2Version = 235 ; + indicatorOfParameter = 68 ; + } +#Mean surface downward long-wave radiation flux, clear sky +'235069' = { + table2Version = 235 ; + indicatorOfParameter = 69 ; + } +#Mean potential evaporation rate +'235070' = { + table2Version = 235 ; + indicatorOfParameter = 70 ; + } +#Total precipitation rate +'260048' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#Ceiling +'260109' = { + table2Version = 228 ; + indicatorOfParameter = 109 ; + } +#K index +'260121' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'260123' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'129001' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'129002' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'129003' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'129004' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'129005' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'129011' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'129012' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'129013' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'129014' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'129021' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'129022' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'129023' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'129024' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'129025' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'129026' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'129027' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'129028' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'129029' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'129030' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'129031' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'129032' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'129033' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'129034' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'129035' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'129036' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'129037' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'129038' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'129039' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'129040' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'129041' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'129042' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'129043' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'129044' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'129045' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'129046' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'129047' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress gradient +'129048' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'129049' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'129050' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'129051' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'129052' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'129053' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'129054' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'129055' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'129056' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'129057' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'129058' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'129059' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'129060' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'129061' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'129062' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'129063' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'129064' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'129065' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'129066' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'129067' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'129068' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'129069' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'129070' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'129071' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'129078' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'129079' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'129080' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'129081' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'129082' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'129083' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'129084' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'129085' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'129086' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'129087' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'129088' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'129089' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'129090' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'129091' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'129092' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'129093' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'129094' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'129095' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'129096' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'129097' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'129098' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'129099' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'129100' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'129101' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'129102' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'129103' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'129104' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'129105' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'129106' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'129107' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'129108' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'129109' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'129110' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'129111' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'129112' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'129113' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'129114' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'129115' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'129116' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'129117' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'129118' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'129119' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'129120' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'129121' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'129122' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'129123' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'129125' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'129126' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'129127' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'129128' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'129129' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'129130' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'129131' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'129132' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'129133' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'129134' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'129135' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'129136' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'129137' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'129138' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'129139' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'129140' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'129141' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'129142' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'129143' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'129144' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'129145' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'129146' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'129147' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'129148' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'129149' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'129150' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'129151' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'129152' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'129153' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'129154' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'129155' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'129156' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'129157' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'129158' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'129159' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'129160' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'129161' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'129162' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'129163' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'129164' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'129165' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'129166' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'129167' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'129168' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'129169' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'129170' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'129171' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'129172' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'129173' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'129174' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'129175' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'129176' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'129177' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'129178' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'129179' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'129180' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'129181' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'129182' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'129183' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'129184' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'129185' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'129186' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'129187' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'129188' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'129189' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'129190' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'129191' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'129192' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'129193' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'129194' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'129195' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'129196' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'129197' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'129198' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'129199' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'129200' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'129201' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'129202' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'129203' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'129204' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'129205' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'129206' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'129207' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'129208' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'129209' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'129210' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'129211' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'129212' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'129214' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'129215' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'129216' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'129217' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'129218' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'129219' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'129220' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'129221' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'129222' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'129223' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'129224' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'129225' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'129226' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'129227' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'129228' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'129229' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'129230' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'129231' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'129232' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'129233' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'129234' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'129235' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'129236' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'129237' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'129238' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'129239' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'129240' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'129241' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'129242' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'129243' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'129244' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'129245' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'129246' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'129247' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'129248' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'129249' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'129250' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'129251' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'129252' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'129253' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'129254' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'129255' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'130208' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'130209' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'130210' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'130211' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'130212' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'130213' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'130214' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'130215' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'130216' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'130217' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'130218' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'130219' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'130220' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'130221' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'130224' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'130225' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'130226' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'130228' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'130229' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'130230' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'130231' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'130232' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'131001' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'131002' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'131003' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'131004' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'131005' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'131006' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'131007' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'131008' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'131009' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'131010' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'131015' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'131016' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'131017' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'131018' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'131020' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'131021' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'131022' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'131023' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'131024' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'131025' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'131049' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'131059' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'131064' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'131065' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'131066' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'131067' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'131068' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'131069' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre wind gust of at least 15 m/s +'131070' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre wind gust of at least 20 m/s +'131071' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre wind gust of at least 25 m/s +'131072' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'131073' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'131074' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'131075' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'131076' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'131077' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'131078' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'131079' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'131080' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'131081' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'131129' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'131130' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#Soil temperature level 1 probability +'131139' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'131144' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Mean sea level pressure probability +'131151' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'131164' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'131165' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'131167' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'131201' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'131202' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'131228' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'131229' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'131232' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'131255' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'132049' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'132144' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'132165' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'132167' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'132201' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'132202' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'132228' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'133001' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'133002' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'133003' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'133004' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'133005' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'133006' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'133007' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'133008' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'133009' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'133010' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'133011' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'133012' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'133013' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'133014' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'133015' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'133016' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'133017' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'133018' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'133019' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'133020' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'133021' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'133022' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'133023' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'133024' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'133025' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'133026' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'133027' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'133028' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'133029' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'133030' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'133031' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'133032' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'133033' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'133034' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'133035' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'133036' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'133037' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'133038' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'133039' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'133040' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'133041' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'133042' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'133043' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'133044' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'133045' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'133046' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'133047' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'133048' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'133049' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'133050' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'133051' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'133052' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'133053' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'133054' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'133055' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'133056' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'133057' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'133058' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'133059' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'133060' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'133061' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'133062' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'133063' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'133064' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'133065' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'133066' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'133067' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'133068' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'133069' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'133070' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'133071' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'133072' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'133073' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'133074' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'133075' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'133076' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'133077' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'133078' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'133079' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'133080' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'133081' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'133082' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'133083' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'133084' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'133085' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'133086' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'133087' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'133088' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'133089' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'133090' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'133091' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'133092' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'140200' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'140217' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'140218' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'140219' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'140220' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean zero-crossing wave period +'140221' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'140222' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'140223' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'140224' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'140225' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'140226' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'140227' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'140228' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'140229' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'140230' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak wave period +'140231' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'140232' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'140233' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'140234' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'140235' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'140236' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'140237' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'140238' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'140239' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'140240' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'140241' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'140242' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'140243' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'140244' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'140245' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'140246' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'140247' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'140248' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'140249' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'140250' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'140251' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'140252' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'140253' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'140254' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'140255' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'150129' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'150130' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'150131' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'150133' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'150134' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'150135' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'150137' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'150139' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'150140' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'150141' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'150142' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'150143' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'150144' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'150145' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'150146' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'150147' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'150148' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'150152' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'150153' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'150154' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'150155' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'150168' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'150169' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'150170' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'150171' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'150172' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'150173' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'150180' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'150181' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'150182' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'150183' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'150255' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'151128' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Sea water potential temperature +'151129' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'151130' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'151131' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'151132' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'151133' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'151134' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'151135' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'151136' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'151137' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sea water sigma theta +'151138' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'151139' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'151140' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'151141' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'151142' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'151143' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'151144' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea surface height +'151145' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'151146' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Ocean barotropic stream function +'151147' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'151148' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'151149' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'151150' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'151151' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'151152' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#Surface downward eastward stress +'151153' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'151154' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'151155' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'151156' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'151157' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'151158' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'151159' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'151160' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'151161' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'151162' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#Depth of 20C isotherm +'151163' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'151164' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'151165' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'151166' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'151167' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'151168' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'151169' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'151170' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'151171' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'151172' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'151173' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'151174' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'151175' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'151176' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'151177' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'151178' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'151179' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'151180' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'151181' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'151182' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'151183' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'151184' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'151185' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'151186' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'151187' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'151188' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'151190' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'151191' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'151192' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'151194' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'151199' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'151200' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'151201' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'151202' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'151203' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'151204' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'151205' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'151206' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'151207' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'151208' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'151209' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'151210' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'151211' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'151212' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'151255' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'160049' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'160135' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'160137' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'160140' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'160141' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'160142' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'160143' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'160144' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'160156' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'160157' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'160171' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'160180' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'160181' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'160182' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'160184' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'160198' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'160201' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'160202' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'160205' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'160206' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'160207' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'160208' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'160209' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'160210' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'160211' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'160212' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'160213' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'160214' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'160215' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'160216' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'160217' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'160218' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'160219' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'160220' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'160221' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'160222' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'160223' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'160224' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'160225' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'160226' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'160231' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'160239' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'160240' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'160241' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'160242' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'160243' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'160246' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'160247' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'160249' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'160254' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'162051' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'162053' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'162054' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'162055' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'162056' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'162057' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'162058' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'162059' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'162060' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'162061' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'162062' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'162063' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'162064' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'162065' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'162066' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'162067' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'162068' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'162069' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'162070' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'162071' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'162072' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'162073' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'162074' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'162075' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'162076' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'162077' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'162078' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'162081' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'162082' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'162083' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'162084' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'162085' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'162086' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'162087' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'162100' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'162101' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'162102' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'162103' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'162104' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'162105' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'162106' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'162107' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'162108' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'162109' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'162110' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'162111' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'162112' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'162113' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'162206' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'162207' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'162208' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'162209' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'162210' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'162211' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'162212' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'162213' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'162214' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'162215' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'162216' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'162217' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'162218' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'162219' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'162220' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'162221' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'162222' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'162223' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'162224' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'162225' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'162226' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'162227' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'162229' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'162230' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'162231' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'162232' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'162233' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'162255' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'170149' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'170171' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'170179' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'171001' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'171002' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'171003' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'171004' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'171005' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'171011' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'171012' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'171013' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'171014' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'171021' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'171022' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'171023' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'171026' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'171027' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'171028' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'171029' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'171030' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'171031' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'171032' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'171033' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'171034' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'171035' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'171036' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'171037' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'171038' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'171039' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'171040' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'171041' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'171042' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'171043' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'171044' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'171045' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'171046' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'171047' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'171048' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'171049' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'171050' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'171051' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'171052' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'171053' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'171054' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'171055' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'171056' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'171057' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'171058' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'171059' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'171060' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'171061' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'171062' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'171063' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'171064' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'171065' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'171078' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'171079' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'171125' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'171126' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'171127' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'171128' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'171129' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'171130' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'171131' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'171132' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'171133' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'171134' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'171135' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'171136' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'171137' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'171138' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'171139' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'171140' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'171141' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'171142' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'171143' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'171144' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'171145' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'171146' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'171147' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'171148' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'171149' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'171150' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'171151' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'171152' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'171153' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'171154' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'171155' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'171156' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'171157' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'171158' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'171159' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'171160' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'171161' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'171162' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'171163' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'171164' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'171165' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'171166' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'171167' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'171168' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'171169' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'171170' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'171171' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'171173' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'171174' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'171175' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'171176' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'171177' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'171178' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'171179' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'171180' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'171181' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'171182' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'171183' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'171184' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'171185' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'171186' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'171187' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'171188' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'171189' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'171190' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'171191' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'171192' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'171193' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'171194' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'171195' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'171196' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'171197' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'171198' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'171199' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'171200' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'171201' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'171202' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'171203' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'171204' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'171205' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'171206' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'171207' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'171208' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'171209' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'171210' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'171211' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'171212' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'171214' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'171215' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'171216' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'171217' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'171218' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'171219' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'171220' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'171221' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'171222' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'171223' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'171224' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'171225' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'171226' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'171227' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'171228' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'171229' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'171230' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'171231' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'171232' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'171233' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'171234' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'171235' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'171236' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'171237' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'171238' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'171239' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'171240' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'171241' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'171242' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'171243' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'171244' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'171245' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'171246' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'171247' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'171248' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'171249' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'171250' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'171251' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'171252' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'171253' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'171254' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'171255' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'172044' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'172045' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress +'172048' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Mean large-scale precipitation fraction +'172050' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Mean large-scale precipitation rate +'172142' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate +'172143' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Mean total snowfall rate +'172144' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'172145' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Mean surface sensible heat flux +'172146' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Mean surface latent heat flux +'172147' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Mean surface net radiation flux +'172149' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Mean short-wave heating rate +'172153' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Mean long-wave heating rate +'172154' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Mean surface downward solar radiation flux +'172169' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Mean surface downward thermal radiation flux +'172175' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Mean surface net solar radiation flux +'172176' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Mean surface net thermal radiation flux +'172177' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Mean top net solar radiation flux +'172178' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Mean top net thermal radiation flux +'172179' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress rate of accumulation +'172180' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress rate of accumulation +'172181' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'172182' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Mean sunshine duration rate +'172189' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'172195' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'172196' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'172197' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Mean runoff rate +'172205' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'172208' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'172209' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'172210' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'172211' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation rate of accumulation +'172212' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Mean total precipitation rate +'172228' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'172239' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'172240' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'172255' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'173044' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'173045' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'173048' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'173050' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'173142' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate anomaly +'173143' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'173144' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'173145' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'173146' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'173147' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'173149' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'173153' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'173154' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'173169' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'173175' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'173176' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'173177' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'173178' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'173179' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'173180' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'173181' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomalous rate of accumulation +'173182' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'173189' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'173195' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'173196' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'173197' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomalous rate of accumulation +'173205' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'173208' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'173209' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'173210' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'173211' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomalous rate of accumulation +'173212' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'173228' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'173239' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'173240' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'173255' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'174006' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'174008' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'174009' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'174031' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'174034' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'174039' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'174040' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'174041' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'174042' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'174049' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'174055' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'174083' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'174085' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'174086' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'174087' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'174088' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'174089' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'174090' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'174094' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'174095' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'174098' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'174099' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'174110' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'174111' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'174139' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'174164' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'174167' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'174168' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'174170' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'174175' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'174183' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'174201' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'174202' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'174236' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'174255' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'175006' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'175031' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'175034' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'175039' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'175040' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'175041' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'175042' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'175049' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'175055' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'175083' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'175085' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'175086' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'175087' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'175088' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'175089' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'175090' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'175110' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'175111' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'175139' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'175164' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'175167' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'175168' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'175170' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'175175' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'175183' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'175201' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'175202' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'175236' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'175255' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'180149' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'180176' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'180177' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'180178' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'180179' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'190141' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'190170' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'190171' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'190173' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'190229' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'200168' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'201001' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'201002' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'201003' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'201004' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'201005' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'201006' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'201007' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'201008' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'201009' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'201010' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'201011' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'201012' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'201013' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'201014' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'201015' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'201016' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'201017' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'201029' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'201030' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'201031' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'201032' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'201033' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'201034' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'201035' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'201036' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'201037' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'201038' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'201041' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'201042' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'201050' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'201051' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'201052' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'201053' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'201054' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'201055' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'201056' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'201060' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'201061' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'201062' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'201063' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'201064' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'201065' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'201066' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'201067' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'201068' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'201069' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'201070' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'201071' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'201072' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'201073' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'201074' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'201075' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'201076' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'201077' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'201078' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'201079' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'201080' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'201081' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'201082' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'201083' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'201084' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'201085' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'201099' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'201100' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'201101' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'201102' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'201111' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'201112' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'201113' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'201139' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'201150' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'201187' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'201200' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'201203' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'201215' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'201241' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'201255' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'210001' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'210002' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'210003' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'210004' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'210005' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'210006' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'210007' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'210008' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'210009' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'210010' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'210011' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'210012' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'210016' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'210017' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'210018' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'210019' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'210020' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'210021' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'210022' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'210023' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'210024' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'210025' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'210026' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'210027' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'210031' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'210032' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'210033' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'210034' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'210035' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'210036' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'210037' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'210038' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'210039' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'210040' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'210041' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'210042' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'210046' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'210047' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'210048' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'210049' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'210050' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'210051' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'210052' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'210053' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'210054' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'210061' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'210062' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'210063' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#CO2 column-mean molar fraction +'210064' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#CH4 column-mean molar fraction +'210065' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'210066' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'210067' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'210068' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'210069' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'210070' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'210071' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'210080' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'210081' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'210082' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'210083' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'210084' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'210085' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'210086' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'210087' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'210088' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'210089' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'210090' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'210091' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'210092' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'210093' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'210094' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'210095' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'210096' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'210097' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'210098' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'210099' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'210100' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'210121' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'210122' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'210123' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'210124' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'210125' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'210126' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'210127' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'210128' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'210129' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'210130' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'210131' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'210132' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'210133' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'210134' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'210135' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'210136' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'210137' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'210138' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'210139' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'210140' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'210141' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'210142' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'210143' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'210144' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'210145' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'210146' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'210147' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'210148' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'210149' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'210150' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'210151' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'210152' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'210153' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'210154' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'210155' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'210156' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'210157' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'210158' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'210159' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'210160' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'210161' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'210162' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'210163' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'210164' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'210165' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'210166' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'210181' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'210182' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'210183' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'210184' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'210185' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'210203' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'210206' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'210207' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'210208' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'210209' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'210210' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'210211' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'210212' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'210213' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'210214' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'210215' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'210216' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'211001' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'211002' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'211003' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'211004' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'211005' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'211006' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'211007' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'211008' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'211009' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'211010' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'211011' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'211012' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'211016' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'211017' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'211018' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'211019' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'211020' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'211021' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'211022' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'211023' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'211024' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'211025' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'211026' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'211027' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'211031' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'211032' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'211033' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'211034' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'211035' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'211036' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'211037' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'211038' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'211039' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'211040' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'211041' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'211042' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'211046' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'211047' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'211048' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'211049' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'211050' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'211051' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'211052' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'211053' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'211054' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'211061' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'211062' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'211063' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'211064' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'211065' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'211066' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'211067' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'211068' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'211069' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'211070' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'211071' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'211080' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'211081' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'211082' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'211083' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'211084' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'211085' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'211086' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'211087' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'211088' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'211089' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'211090' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'211091' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'211092' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'211093' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'211094' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'211095' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'211096' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'211097' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'211098' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'211099' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'211100' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'211121' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'211122' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'211123' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'211124' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'211125' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'211126' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'211127' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'211128' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'211129' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'211130' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'211131' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'211132' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'211133' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'211134' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'211135' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'211136' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'211137' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'211138' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'211139' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'211140' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'211141' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'211142' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'211143' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'211144' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'211145' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'211146' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'211147' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'211148' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'211149' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'211150' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'211151' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'211152' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'211153' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'211154' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'211155' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'211156' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'211157' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'211158' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'211159' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'211160' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'211161' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'211162' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'211163' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'211164' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'211165' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'211166' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'211181' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'211182' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'211183' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'211184' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'211185' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'211203' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'211206' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'211207' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'211208' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'211209' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'211210' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'211211' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'211212' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'211213' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'211214' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'211215' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'211216' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'220228' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'228001' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'228002' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'228003' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'228004' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'228005' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'228006' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'228007' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'228008' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'228009' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'228010' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'228011' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'228012' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'228013' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'228014' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'228015' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'228016' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'228017' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'228018' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'228019' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'228039' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'228131' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'228132' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'228139' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'228141' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'228144' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'228170' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'228171' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'228228' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'230044' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'230045' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'230046' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'230057' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'230058' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'230142' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'230143' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'230144' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'230145' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'230146' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'230147' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'230169' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'230175' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'230176' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'230177' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'230178' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'230179' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'230180' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'230181' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'230182' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'230189' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'230195' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'230196' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'230197' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'230198' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'230205' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'230208' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'230209' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'230210' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'230211' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'230212' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'234139' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'234151' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'234167' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'234228' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'140215' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'140216' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'210101' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'210102' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'210103' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'210104' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'210105' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'210106' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'210107' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'210108' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'210109' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'210110' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'210111' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'210112' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'210113' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'210114' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'210115' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'210116' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'210117' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'211101' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'211102' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'211103' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'211104' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'211105' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'211106' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'211107' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'211108' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'211109' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'211110' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'211111' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'211112' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'211113' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'211114' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'211115' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'211116' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'211117' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'228134' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'228136' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'228246' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'228247' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'228253' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'228254' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/shortName.def b/eccodes/definitions/grib1/localConcepts/ecmf/shortName.def new file mode 100644 index 00000000..c6bbdf88 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/shortName.def @@ -0,0 +1,17676 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'strf' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'vp' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'pt' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'eqpt' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'ssfr' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'scfr' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'sro' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'ws' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'udvw' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'vdvw' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'urtw' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'vrtw' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'uvcs' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'cl' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'cvl' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'cvh' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'tvl' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'tvh' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea ice area fraction +'ci' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'asn' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'rsn' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'sst' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'istl1' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'slt' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'es' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'smlt' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'sdur' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'dsrp' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'10fg' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'lspf' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'mont' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'pres' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'cape' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'pv' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'obct' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'sktd' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'crwc' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'cswc' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column cloud liquid water +'tclw' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column cloud ice water +'tciw' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'10fg6' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'emis' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'vite' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'at' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'at' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'bv' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'bv' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'z' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'z' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'t' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'t' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'u' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'u' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'v' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'v' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'q' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'q' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'sp' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'sp' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'sp' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'w' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'w' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'tcw' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'tcw' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'stl1' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'swl1' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sd' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'sd' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cp' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'cp' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sf' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'sf' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'chnk' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'snr' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'tnr' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'lnsp' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'swhr' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'lwhr' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'d' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'d' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gh' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'r' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'r' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tsp' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'blh' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'sdor' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'tcc' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'tcc' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'10u' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'10u' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10v' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'10v' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'2t' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'2t' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'ssrd' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'stl2' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'lsm' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'lsm' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'sr' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'sr' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'al' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'al' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'strd' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'ewss' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'nsss' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'e' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'e' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'stl3' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'swl3' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'lcc' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'lcc' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'hcc' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'hcc' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'sund' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'btmp' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'lgws' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'mgws' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'src' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'veg' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'vso' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'o3' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'paw' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'ro' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'ro' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'tco3' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'10si' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'tisr' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'ctzw' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'ctmw' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'tp' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'tp' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'ie' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'asq' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'skt' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'skt' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'stl4' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'swl4' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'tsn' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'csf' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'lsf' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'fal' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'fsr' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'clwc' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Fraction of cloud cover +'cc' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'aiw' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'ice' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'strfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'ptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'cldiff' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'asndiff' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'rsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'sltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'esdiff' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'smltdiff' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'sdurdiff' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'10fgdiff' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'montdiff' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'presdiff' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'capediff' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'obctdiff' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'~' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'~' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'~' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10fg6diff' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'~' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'bvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'zdiff' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'udiff' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'qdiff' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'spdiff' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'tcwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'sddiff' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'chnkdiff' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'ghdiff' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'rdiff' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'10udiff' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'10vdiff' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'srdiff' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'aldiff' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'ediff' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'hccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'rodiff' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'tco3diff' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'10sidiff' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'tpdiff' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'sktdiff' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'faldiff' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'ccdiff' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'icediff' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'pts' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'ph' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'ptd' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'cpts' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'cph' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'cptd' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'pats' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'pah' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'patd' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Total precipitation of at least 25 mm +'tpg25' = { + table2Version = 131 ; + indicatorOfParameter = 98 ; + } +#Total precipitation of at least 50 mm +'tpg50' = { + table2Version = 131 ; + indicatorOfParameter = 99 ; + } +#10 metre wind gust of at least 10 m/s +'10fgg10' = { + table2Version = 131 ; + indicatorOfParameter = 100 ; + } +#Convective available potential energy shear index +'capesi' = { + table2Version = 132 ; + indicatorOfParameter = 44 ; + } +#Water vapour flux index +'wvfi' = { + table2Version = 132 ; + indicatorOfParameter = 45 ; + } +#Convective available potential energy index +'capei' = { + table2Version = 132 ; + indicatorOfParameter = 59 ; + } +#Maximum of significant wave height index +'maxswhi' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'wx1' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'wx2' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'wx3' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'wx4' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'wx5' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Wave induced mean sea level correction +'weta' = { + table2Version = 140 ; + indicatorOfParameter = 98 ; + } +#Ratio of wave angular and frequency width +'wraf' = { + table2Version = 140 ; + indicatorOfParameter = 99 ; + } +#Number of events in freak waves statistics +'wnslc' = { + table2Version = 140 ; + indicatorOfParameter = 100 ; + } +#U-component of atmospheric surface momentum flux +'utaua' = { + table2Version = 140 ; + indicatorOfParameter = 101 ; + } +#V-component of atmospheric surface momentum flux +'vtaua' = { + table2Version = 140 ; + indicatorOfParameter = 102 ; + } +#U-component of surface momentum flux into ocean +'utauo' = { + table2Version = 140 ; + indicatorOfParameter = 103 ; + } +#V-component of surface momentum flux into ocean +'vtauo' = { + table2Version = 140 ; + indicatorOfParameter = 104 ; + } +#Wave turbulent energy flux into ocean +'wphio' = { + table2Version = 140 ; + indicatorOfParameter = 105 ; + } +#Wave directional width of first swell partition +'wdw1' = { + table2Version = 140 ; + indicatorOfParameter = 106 ; + } +#Wave frequency width of first swell partition +'wfw1' = { + table2Version = 140 ; + indicatorOfParameter = 107 ; + } +#Wave directional width of second swell partition +'wdw2' = { + table2Version = 140 ; + indicatorOfParameter = 108 ; + } +#Wave frequency width of second swell partition +'wfw2' = { + table2Version = 140 ; + indicatorOfParameter = 109 ; + } +#Wave directional width of third swell partition +'wdw3' = { + table2Version = 140 ; + indicatorOfParameter = 110 ; + } +#Wave frequency width of third swell partition +'wfw3' = { + table2Version = 140 ; + indicatorOfParameter = 111 ; + } +#Wave energy flux magnitude +'wefxm' = { + table2Version = 140 ; + indicatorOfParameter = 112 ; + } +#Wave energy flux mean direction +'wefxd' = { + table2Version = 140 ; + indicatorOfParameter = 113 ; + } +#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds +'h1012' = { + table2Version = 140 ; + indicatorOfParameter = 114 ; + } +#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds +'h1214' = { + table2Version = 140 ; + indicatorOfParameter = 115 ; + } +#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds +'h1417' = { + table2Version = 140 ; + indicatorOfParameter = 116 ; + } +#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds +'h1721' = { + table2Version = 140 ; + indicatorOfParameter = 117 ; + } +#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds +'h2125' = { + table2Version = 140 ; + indicatorOfParameter = 118 ; + } +#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds +'h2530' = { + table2Version = 140 ; + indicatorOfParameter = 119 ; + } +#Significant wave height of all waves with period larger than 10s +'sh10' = { + table2Version = 140 ; + indicatorOfParameter = 120 ; + } +#Significant wave height of first swell partition +'swh1' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'mwd1' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'mwp1' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'swh2' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'mwd2' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'mwp2' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'swh3' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'mwd3' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'mwp3' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'wss' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'wstar' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'rhoao' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'mswsi' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'phiaw' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'phioc' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'tla' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'tauoc' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'~' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Water vapour flux +'wvf' = { + table2Version = 162 ; + indicatorOfParameter = 45 ; + } +#Vertical integral of divergence of cloud liquid water flux +'vilwd' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'viiwd' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'vilwe' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'vilwn' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'viiwe' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'viiwn' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'vimat' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'utendd' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'ttendr' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#Standardised precipitation index valid in the last 3 months +'spi03' = { + table2Version = 170 ; + indicatorOfParameter = 1 ; + } +#Standardised precipitation index valid in the last 6 months +'spi06' = { + table2Version = 170 ; + indicatorOfParameter = 2 ; + } +#Standardised precipitation index valid in the last 12 months +'spi12' = { + table2Version = 170 ; + indicatorOfParameter = 3 ; + } +#100 metre U wind component anomaly +'100ua' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'100va' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature anomaly +'lmlta' = { + table2Version = 171 ; + indicatorOfParameter = 24 ; + } +#Lake ice depth anomaly +'licda' = { + table2Version = 171 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Mean surface runoff rate +'msror' = { + table2Version = 172 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate +'mssror' = { + table2Version = 172 ; + indicatorOfParameter = 9 ; + } +#Mean surface runoff rate anomaly +'msrora' = { + table2Version = 173 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate anomaly +'mssrora' = { + table2Version = 173 ; + indicatorOfParameter = 9 ; + } +#Clear-sky (II) down surface sw flux +'sswcsdown' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'sswcsup' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'vis15' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'mn15t' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'mx15t' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'rhum' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#2 metre specific humidity +'2sh' = { + table2Version = 174 ; + indicatorOfParameter = 96 ; + } +#Sea ice snow thickness +'sisnthick' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Short wave radiation flux at surface +'swrsurf' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'swrtop' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'tcwvap' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'lsrrate' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'crfrate' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'vlca' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'csfrate' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'lsfrate' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'tccro' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'tcclwr' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdms' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Injection height (from IS4FIRES) +'injh' = { + table2Version = 210 ; + indicatorOfParameter = 60 ; + } +#Particulate matter d < 1 um +'pm1' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'mami' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'apt' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'apb' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16' = { + table2Version = 210 ; + indicatorOfParameter = 247 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17' = { + table2Version = 210 ; + indicatorOfParameter = 248 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18' = { + table2Version = 210 ; + indicatorOfParameter = 249 ; + } +#Nitrate aerosol optical depth at 550 nm +'niaod550' = { + table2Version = 210 ; + indicatorOfParameter = 250 ; + } +#Ammonium aerosol optical depth at 550 nm +'amaod550' = { + table2Version = 210 ; + indicatorOfParameter = 251 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'alediff' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'aptdiff' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +#Random pattern 1 for SPP scheme +'spp1' = { + table2Version = 213 ; + indicatorOfParameter = 101 ; + } +#Random pattern 2 for SPP scheme +'spp2' = { + table2Version = 213 ; + indicatorOfParameter = 102 ; + } +#Random pattern 3 for SPP scheme +'spp3' = { + table2Version = 213 ; + indicatorOfParameter = 103 ; + } +#Random pattern 4 for SPP scheme +'spp4' = { + table2Version = 213 ; + indicatorOfParameter = 104 ; + } +#Random pattern 5 for SPP scheme +'spp5' = { + table2Version = 213 ; + indicatorOfParameter = 105 ; + } +#Random pattern 6 for SPP scheme +'spp6' = { + table2Version = 213 ; + indicatorOfParameter = 106 ; + } +#Random pattern 7 for SPP scheme +'spp7' = { + table2Version = 213 ; + indicatorOfParameter = 107 ; + } +#Random pattern 8 for SPP scheme +'spp8' = { + table2Version = 213 ; + indicatorOfParameter = 108 ; + } +#Random pattern 9 for SPP scheme +'spp9' = { + table2Version = 213 ; + indicatorOfParameter = 109 ; + } +#Random pattern 10 for SPP scheme +'spp10' = { + table2Version = 213 ; + indicatorOfParameter = 110 ; + } +#Random pattern 11 for SPP scheme +'spp11' = { + table2Version = 213 ; + indicatorOfParameter = 111 ; + } +#Random pattern 12 for SPP scheme +'spp12' = { + table2Version = 213 ; + indicatorOfParameter = 112 ; + } +#Random pattern 13 for SPP scheme +'spp13' = { + table2Version = 213 ; + indicatorOfParameter = 113 ; + } +#Random pattern 14 for SPP scheme +'spp14' = { + table2Version = 213 ; + indicatorOfParameter = 114 ; + } +#Random pattern 15 for SPP scheme +'spp15' = { + table2Version = 213 ; + indicatorOfParameter = 115 ; + } +#Random pattern 16 for SPP scheme +'spp16' = { + table2Version = 213 ; + indicatorOfParameter = 116 ; + } +#Random pattern 17 for SPP scheme +'spp17' = { + table2Version = 213 ; + indicatorOfParameter = 117 ; + } +#Random pattern 18 for SPP scheme +'spp18' = { + table2Version = 213 ; + indicatorOfParameter = 118 ; + } +#Random pattern 19 for SPP scheme +'spp19' = { + table2Version = 213 ; + indicatorOfParameter = 119 ; + } +#Random pattern 20 for SPP scheme +'spp20' = { + table2Version = 213 ; + indicatorOfParameter = 120 ; + } +#Random pattern 21 for SPP scheme +'spp21' = { + table2Version = 213 ; + indicatorOfParameter = 121 ; + } +#Random pattern 22 for SPP scheme +'spp22' = { + table2Version = 213 ; + indicatorOfParameter = 122 ; + } +#Random pattern 23 for SPP scheme +'spp23' = { + table2Version = 213 ; + indicatorOfParameter = 123 ; + } +#Random pattern 24 for SPP scheme +'spp24' = { + table2Version = 213 ; + indicatorOfParameter = 124 ; + } +#Random pattern 25 for SPP scheme +'spp25' = { + table2Version = 213 ; + indicatorOfParameter = 125 ; + } +#Random pattern 26 for SPP scheme +'spp26' = { + table2Version = 213 ; + indicatorOfParameter = 126 ; + } +#Random pattern 27 for SPP scheme +'spp27' = { + table2Version = 213 ; + indicatorOfParameter = 127 ; + } +#Random pattern 28 for SPP scheme +'spp28' = { + table2Version = 213 ; + indicatorOfParameter = 128 ; + } +#Random pattern 29 for SPP scheme +'spp29' = { + table2Version = 213 ; + indicatorOfParameter = 129 ; + } +#Random pattern 30 for SPP scheme +'spp30' = { + table2Version = 213 ; + indicatorOfParameter = 130 ; + } +#Random pattern 31 for SPP scheme +'spp31' = { + table2Version = 213 ; + indicatorOfParameter = 131 ; + } +#Random pattern 32 for SPP scheme +'spp32' = { + table2Version = 213 ; + indicatorOfParameter = 132 ; + } +#Random pattern 33 for SPP scheme +'spp33' = { + table2Version = 213 ; + indicatorOfParameter = 133 ; + } +#Random pattern 34 for SPP scheme +'spp34' = { + table2Version = 213 ; + indicatorOfParameter = 134 ; + } +#Random pattern 35 for SPP scheme +'spp35' = { + table2Version = 213 ; + indicatorOfParameter = 135 ; + } +#Random pattern 36 for SPP scheme +'spp36' = { + table2Version = 213 ; + indicatorOfParameter = 136 ; + } +#Random pattern 37 for SPP scheme +'spp37' = { + table2Version = 213 ; + indicatorOfParameter = 137 ; + } +#Random pattern 38 for SPP scheme +'spp38' = { + table2Version = 213 ; + indicatorOfParameter = 138 ; + } +#Random pattern 39 for SPP scheme +'spp39' = { + table2Version = 213 ; + indicatorOfParameter = 139 ; + } +#Random pattern 40 for SPP scheme +'spp40' = { + table2Version = 213 ; + indicatorOfParameter = 140 ; + } +#Random pattern 41 for SPP scheme +'spp41' = { + table2Version = 213 ; + indicatorOfParameter = 141 ; + } +#Random pattern 42 for SPP scheme +'spp42' = { + table2Version = 213 ; + indicatorOfParameter = 142 ; + } +#Random pattern 43 for SPP scheme +'spp43' = { + table2Version = 213 ; + indicatorOfParameter = 143 ; + } +#Random pattern 44 for SPP scheme +'spp44' = { + table2Version = 213 ; + indicatorOfParameter = 144 ; + } +#Random pattern 45 for SPP scheme +'spp45' = { + table2Version = 213 ; + indicatorOfParameter = 145 ; + } +#Random pattern 46 for SPP scheme +'spp46' = { + table2Version = 213 ; + indicatorOfParameter = 146 ; + } +#Random pattern 47 for SPP scheme +'spp47' = { + table2Version = 213 ; + indicatorOfParameter = 147 ; + } +#Random pattern 48 for SPP scheme +'spp48' = { + table2Version = 213 ; + indicatorOfParameter = 148 ; + } +#Random pattern 49 for SPP scheme +'spp49' = { + table2Version = 213 ; + indicatorOfParameter = 149 ; + } +#Random pattern 50 for SPP scheme +'spp50' = { + table2Version = 213 ; + indicatorOfParameter = 150 ; + } +#Cosine of solar zenith angle +'uvcossza' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +#UV biologically effective dose +'uvbed' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +#UV biologically effective dose clear-sky +'uvbedcs' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +#Profile of optical thickness at 340 nm +'aot340' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +#Source/gain of sulphate aerosol +'aersrcsu' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +#Dry deposition of sulphate aerosol +'aerddpsu' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +#Sedimentation of sulphate aerosol +'aersdmsu' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +#Negative fixer of sulphate aerosol +'aerngtsu' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'aermsssu' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +#Sulphate aerosol optical depth +'aerodsu' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Asymmetry factor at 340 nm +'asymmetry340' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Asymmetry factor at 355 nm +'asymmetry355' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Asymmetry factor at 380 nm +'asymmetry380' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Asymmetry factor at 400 nm +'asymmetry400' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Asymmetry factor at 440 nm +'asymmetry440' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Asymmetry factor at 469 nm +'asymmetry469' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Asymmetry factor at 500 nm +'asymmetry500' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Asymmetry factor at 532 nm +'asymmetry532' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Asymmetry factor at 550 nm +'asymmetry550' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Asymmetry factor at 645 nm +'asymmetry645' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Asymmetry factor at 670 nm +'asymmetry670' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Asymmetry factor at 800 nm +'asymmetry800' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Asymmetry factor at 858 nm +'asymmetry858' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Asymmetry factor at 865 nm +'asymmetry865' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Asymmetry factor at 1020 nm +'asymmetry1020' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Asymmetry factor at 1064 nm +'asymmetry1064' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Asymmetry factor at 1240 nm +'asymmetry1240' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Asymmetry factor at 1640 nm +'asymmetry1640' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Asymmetry factor at 2130 nm +'asymmetry2130' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + table2Version = 215 ; + indicatorOfParameter = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + table2Version = 215 ; + indicatorOfParameter = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + table2Version = 215 ; + indicatorOfParameter = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + table2Version = 215 ; + indicatorOfParameter = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + table2Version = 215 ; + indicatorOfParameter = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + table2Version = 215 ; + indicatorOfParameter = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + table2Version = 215 ; + indicatorOfParameter = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + table2Version = 215 ; + indicatorOfParameter = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + table2Version = 215 ; + indicatorOfParameter = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'aersrcnif' = { + table2Version = 215 ; + indicatorOfParameter = 189 ; + } +#Source/gain of coarse-mode nitrate aerosol +'aersrcnic' = { + table2Version = 215 ; + indicatorOfParameter = 190 ; + } +#Dry deposition of fine-mode nitrate aerosol +'aerddpnif' = { + table2Version = 215 ; + indicatorOfParameter = 191 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'aerddpnic' = { + table2Version = 215 ; + indicatorOfParameter = 192 ; + } +#Sedimentation of fine-mode nitrate aerosol +'aersdmnif' = { + table2Version = 215 ; + indicatorOfParameter = 193 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'aersdmnic' = { + table2Version = 215 ; + indicatorOfParameter = 194 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'aerwdlnif' = { + table2Version = 215 ; + indicatorOfParameter = 195 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'aerwdlnic' = { + table2Version = 215 ; + indicatorOfParameter = 196 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'aerwdcnif' = { + table2Version = 215 ; + indicatorOfParameter = 197 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'aerwdcnic' = { + table2Version = 215 ; + indicatorOfParameter = 198 ; + } +#Negative fixer of fine-mode nitrate aerosol +'aerngtnif' = { + table2Version = 215 ; + indicatorOfParameter = 199 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'aerngtnic' = { + table2Version = 215 ; + indicatorOfParameter = 200 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'aermssnif' = { + table2Version = 215 ; + indicatorOfParameter = 201 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'aermssnic' = { + table2Version = 215 ; + indicatorOfParameter = 202 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'aerodnif' = { + table2Version = 215 ; + indicatorOfParameter = 203 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'aerodnic' = { + table2Version = 215 ; + indicatorOfParameter = 204 ; + } +#Source/gain of ammonium aerosol +'aersrcam' = { + table2Version = 215 ; + indicatorOfParameter = 205 ; + } +#Dry deposition of ammonium aerosol +'aerddpam' = { + table2Version = 215 ; + indicatorOfParameter = 206 ; + } +#Sedimentation of ammonium aerosol +'aersdmam' = { + table2Version = 215 ; + indicatorOfParameter = 207 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'aerwdlam' = { + table2Version = 215 ; + indicatorOfParameter = 208 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'aerwdcam' = { + table2Version = 215 ; + indicatorOfParameter = 209 ; + } +#Negative fixer of ammonium aerosol +'aerngtam' = { + table2Version = 215 ; + indicatorOfParameter = 210 ; + } +#Vertically integrated mass of ammonium aerosol +'aermssam' = { + table2Version = 215 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'ch4_c' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'hno3' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'par' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'c2h4' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'ole' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'ald2' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'rooh' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'onit' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'c5h8' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'dms' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'nh3' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'so4' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'nh4' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'msa' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'o3s' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'pb' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'no' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'ho2' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'oh' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'no3' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'ho2no2' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'ror' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'rxpar' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'xo2' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'nh2' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'psc' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'ch3oh' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'hcooh' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'mcooh' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'c2h6' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'c2h5oh' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'c3h8' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'c3h6' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'c10h16' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'ispd' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'no3_a' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'ch3coch3' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'aco2' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'hypropo2' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'tc_ch4' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'tc_par' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'tc_c2h4' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'tc_ole' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'tc_rooh' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'tc_nh3' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'tc_so4' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'tc_nh4' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'tc_pb' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'tc_ror' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'tc_nh2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'tc_c2h6' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'tc_c3h8' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'tc_c3h6' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'tc_aco2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'e_go3' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'e_ch4' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'e_par' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'e_c2h4' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'e_ole' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'e_rooh' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'e_nh3' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'e_so4' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'e_nh4' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'e_ra' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'e_pb' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'e_ror' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'e_nh2' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'e_c2h6' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'e_c3h8' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'e_c3h6' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'e_aco2' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#-10 degrees C isothermal level (atm) +'degm10l' = { + table2Version = 228 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'cbh' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#0 degrees C isothermal level (atm) +'deg0l' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'hvis' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'i10fg' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#2 metre relative humidity with respect to water +'2rhw' = { + table2Version = 228 ; + indicatorOfParameter = 37 ; + } +#Soil wetness index in layer 1 +'swi1' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Convective available potential energy shear +'capes' = { + table2Version = 228 ; + indicatorOfParameter = 44 ; + } +#Height of convective cloud top +'hcct' = { + table2Version = 228 ; + indicatorOfParameter = 46 ; + } +#Height of zero-degree wet-bulb temperature +'hwbt0' = { + table2Version = 228 ; + indicatorOfParameter = 47 ; + } +#Height of one-degree wet-bulb temperature +'hwbt1' = { + table2Version = 228 ; + indicatorOfParameter = 48 ; + } +#Instantaneous total lightning flash density +'litoti' = { + table2Version = 228 ; + indicatorOfParameter = 50 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + table2Version = 228 ; + indicatorOfParameter = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + table2Version = 228 ; + indicatorOfParameter = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + table2Version = 228 ; + indicatorOfParameter = 53 ; + } +#SMOS observed soil moisture retrieved using neural network +'smnnob' = { + table2Version = 228 ; + indicatorOfParameter = 70 ; + } +#SMOS observed soil moisture uncertainty retrieved using neural network +'smnner' = { + table2Version = 228 ; + indicatorOfParameter = 71 ; + } +#SMOS radio frequency interference probability +'smnnrfi' = { + table2Version = 228 ; + indicatorOfParameter = 72 ; + } +#SMOS number of observations per grid point +'smnnnb' = { + table2Version = 228 ; + indicatorOfParameter = 73 ; + } +#SMOS observation time for the satellite soil moisture data +'smnntim' = { + table2Version = 228 ; + indicatorOfParameter = 74 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'gppbfas' = { + table2Version = 228 ; + indicatorOfParameter = 78 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'recbfas' = { + table2Version = 228 ; + indicatorOfParameter = 79 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'tcslw' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'tcrw' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'tcsw' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'ccf' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'stf' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'swv' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'ist' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Accumulated freezing rain +'fzra' = { + table2Version = 228 ; + indicatorOfParameter = 216 ; + } +#Instantaneous large-scale surface precipitation fraction +'ilspf' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'crr' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'lsrr' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'csfr' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'lssfr' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'mxtpr3' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'mntpr3' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'mxtpr6' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'mntpr6' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'mxtpr' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'mntpr' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'smos_tb_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'smos_tb_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#200 metre U wind component +'200u' = { + table2Version = 228 ; + indicatorOfParameter = 239 ; + } +#200 metre V wind component +'200v' = { + table2Version = 228 ; + indicatorOfParameter = 240 ; + } +#200 metre wind speed +'200si' = { + table2Version = 228 ; + indicatorOfParameter = 241 ; + } +#Surface solar radiation diffuse total sky +'fdif' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'cdif' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'aldr' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'aldf' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'100si' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'irrfr' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'pev' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'irr' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'srovar' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'ssrovar' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'parcsvar' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'fdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'cdirvar' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Direct solar radiation (variable resolution) +'dsrpvar' = { + table2Version = 230 ; + indicatorOfParameter = 47 ; + } +#Large-scale precipitation fraction (variable resolution) +'lspfvar' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'aco2neevar' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'aco2gppvar' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'aco2recvar' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'ssrdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'strdcvar' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'alvar' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'vimdvar' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Accumulated freezing rain (variable resolution) +'fzravar' = { + table2Version = 230 ; + indicatorOfParameter = 216 ; + } +#Total precipitation (variable resolution) +'tpvar' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'csfvar' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'lsfvar' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'pevvar' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#Mean surface runoff rate +'msror' = { + table2Version = 235 ; + indicatorOfParameter = 20 ; + } +#Mean sub-surface runoff rate +'mssror' = { + table2Version = 235 ; + indicatorOfParameter = 21 ; + } +#Mean surface photosynthetically active radiation flux, clear sky +'msparfcs' = { + table2Version = 235 ; + indicatorOfParameter = 22 ; + } +#Mean snow evaporation rate +'mser' = { + table2Version = 235 ; + indicatorOfParameter = 23 ; + } +#Mean snowmelt rate +'msmr' = { + table2Version = 235 ; + indicatorOfParameter = 24 ; + } +#Mean magnitude of turbulent surface stress +'mmtss' = { + table2Version = 235 ; + indicatorOfParameter = 25 ; + } +#Mean large-scale precipitation fraction +'mlspf' = { + table2Version = 235 ; + indicatorOfParameter = 26 ; + } +#Mean surface downward UV radiation flux +'msdwuvrf' = { + table2Version = 235 ; + indicatorOfParameter = 27 ; + } +#Mean surface photosynthetically active radiation flux +'msparf' = { + table2Version = 235 ; + indicatorOfParameter = 28 ; + } +#Mean large-scale precipitation rate +'mlspr' = { + table2Version = 235 ; + indicatorOfParameter = 29 ; + } +#Mean convective precipitation rate +'mcpr' = { + table2Version = 235 ; + indicatorOfParameter = 30 ; + } +#Mean snowfall rate +'msr' = { + table2Version = 235 ; + indicatorOfParameter = 31 ; + } +#Mean boundary layer dissipation +'mbld' = { + table2Version = 235 ; + indicatorOfParameter = 32 ; + } +#Mean surface sensible heat flux +'msshf' = { + table2Version = 235 ; + indicatorOfParameter = 33 ; + } +#Mean surface latent heat flux +'mslhf' = { + table2Version = 235 ; + indicatorOfParameter = 34 ; + } +#Mean surface downward short-wave radiation flux +'msdwswrf' = { + table2Version = 235 ; + indicatorOfParameter = 35 ; + } +#Mean surface downward long-wave radiation flux +'msdwlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 36 ; + } +#Mean surface net short-wave radiation flux +'msnswrf' = { + table2Version = 235 ; + indicatorOfParameter = 37 ; + } +#Mean surface net long-wave radiation flux +'msnlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 38 ; + } +#Mean top net short-wave radiation flux +'mtnswrf' = { + table2Version = 235 ; + indicatorOfParameter = 39 ; + } +#Mean top net long-wave radiation flux +'mtnlwrf' = { + table2Version = 235 ; + indicatorOfParameter = 40 ; + } +#Mean eastward turbulent surface stress +'metss' = { + table2Version = 235 ; + indicatorOfParameter = 41 ; + } +#Mean northward turbulent surface stress +'mntss' = { + table2Version = 235 ; + indicatorOfParameter = 42 ; + } +#Mean evaporation rate +'mer' = { + table2Version = 235 ; + indicatorOfParameter = 43 ; + } +#Sunshine duration fraction +'sdf' = { + table2Version = 235 ; + indicatorOfParameter = 44 ; + } +#Mean eastward gravity wave surface stress +'megwss' = { + table2Version = 235 ; + indicatorOfParameter = 45 ; + } +#Mean northward gravity wave surface stress +'mngwss' = { + table2Version = 235 ; + indicatorOfParameter = 46 ; + } +#Mean gravity wave dissipation +'mgwd' = { + table2Version = 235 ; + indicatorOfParameter = 47 ; + } +#Mean runoff rate +'mror' = { + table2Version = 235 ; + indicatorOfParameter = 48 ; + } +#Mean top net short-wave radiation flux, clear sky +'mtnswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 49 ; + } +#Mean top net long-wave radiation flux, clear sky +'mtnlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 50 ; + } +#Mean surface net short-wave radiation flux, clear sky +'msnswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 51 ; + } +#Mean surface net long-wave radiation flux, clear sky +'msnlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 52 ; + } +#Mean top downward short-wave radiation flux +'mtdwswrf' = { + table2Version = 235 ; + indicatorOfParameter = 53 ; + } +#Mean vertically integrated moisture divergence +'mvimd' = { + table2Version = 235 ; + indicatorOfParameter = 54 ; + } +#Mean total precipitation rate +'mtpr' = { + table2Version = 235 ; + indicatorOfParameter = 55 ; + } +#Mean convective snowfall rate +'mcsr' = { + table2Version = 235 ; + indicatorOfParameter = 56 ; + } +#Mean large-scale snowfall rate +'mlssr' = { + table2Version = 235 ; + indicatorOfParameter = 57 ; + } +#Mean surface direct short-wave radiation flux +'msdrswrf' = { + table2Version = 235 ; + indicatorOfParameter = 58 ; + } +#Mean surface direct short-wave radiation flux, clear sky +'msdrswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 59 ; + } +#Mean surface diffuse short-wave radiation flux +'msdfswrf' = { + table2Version = 235 ; + indicatorOfParameter = 60 ; + } +#Mean surface diffuse short-wave radiation flux, clear sky +'msdfswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 61 ; + } +#Mean carbon dioxide net ecosystem exchange flux +'mcdneef' = { + table2Version = 235 ; + indicatorOfParameter = 62 ; + } +#Mean carbon dioxide gross primary production flux +'mcdgppf' = { + table2Version = 235 ; + indicatorOfParameter = 63 ; + } +#Mean carbon dioxide ecosystem respiration flux +'mcderf' = { + table2Version = 235 ; + indicatorOfParameter = 64 ; + } +#Mean rain rate +'mrr' = { + table2Version = 235 ; + indicatorOfParameter = 65 ; + } +#Mean convective rain rate +'mcrr' = { + table2Version = 235 ; + indicatorOfParameter = 66 ; + } +#Mean large-scale rain rate +'mlsrr' = { + table2Version = 235 ; + indicatorOfParameter = 67 ; + } +#Mean surface downward short-wave radiation flux, clear sky +'msdwswrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 68 ; + } +#Mean surface downward long-wave radiation flux, clear sky +'msdwlwrfcs' = { + table2Version = 235 ; + indicatorOfParameter = 69 ; + } +#Mean potential evaporation rate +'mper' = { + table2Version = 235 ; + indicatorOfParameter = 70 ; + } +#Total precipitation rate +'tprate' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#Ceiling +'ceil' = { + table2Version = 228 ; + indicatorOfParameter = 109 ; + } +#K index +'kx' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'totalx' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'strfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'clgrd' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'asngrd' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'rsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'sltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'10fggrd' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'presgrd' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'obctgrd' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'~' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'~' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'~' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'~' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10fg6grd' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'~' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'bvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'zgrd' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'qgrd' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'spgrd' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'tcwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'sdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'chnkgrd' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'ghgrd' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'rgrd' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'10ugrd' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'10vgrd' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'2dgrd' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'srgrd' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'algrd' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'egrd' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'rogrd' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'10sigrd' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'icegrd' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'tsru' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'ttru' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'clw' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'cf' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'mvv' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'2tag2' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'2tag1' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'2tag0' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'2talm1' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'2talm2' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'saip' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'whip' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'10gp' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'capep' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10spg10' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10spg15' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre wind gust of at least 15 m/s +'10fgg15' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre wind gust of at least 20 m/s +'10fgg20' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre wind gust of at least 25 m/s +'10fgg25' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'2tl273' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'zp' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'tap' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'tccp' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'10sp' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'2tp' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'tpp' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'swhp' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'mwpp' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'~' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'10fgi' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'sfi' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'10wsi' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'2ti' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'mx2ti' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'mn2ti' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'tpi' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10spg10' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10spg15' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10spg20' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10spg35' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10spg50' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10gpg20' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10gpg35' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10gpg50' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10gpg75' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10gpg100' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'hmax' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'wmb' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean zero-crossing wave period +'mp2' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'wdw' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'mwd' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak wave period +'pp1d' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'mwp' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'cdww' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'shts' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'mdts' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'mpts' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'sdhs' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'mdwi' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'msqs' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'wind' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'awh' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'arrc' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'dwi' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'2dsp' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'2dfd' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'bfi' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'wsp' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'ocpt' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'ocs' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'ocpd' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'~' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'~' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'ocw' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'rn' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'uv' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'ut' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'vt' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'uu' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'vv' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'~' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'sl' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'~' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'mld' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'~' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'~' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'~' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'~' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'~' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'~' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'~' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'~' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'~' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'~' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'~' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'~' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Sea water potential temperature +'thetao' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'so' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'ocu' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'ocv' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'wo' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'vvs' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'vdf' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'dep' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sea water sigma theta +'sigmat' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'rn' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'uv' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'ut' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'vt' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'uu' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'vv' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea surface height +'zos' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'sl_1' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Ocean barotropic stream function +'stfbarot' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'mld' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'sh' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'crl' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'~' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#Surface downward eastward stress +'taueo' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'tauno' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'nsf' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'asr' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'pme' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'sst' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'shf' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'hfc' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#Depth of 20C isotherm +'t20d' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'umax' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'smax' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'pti' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'ptae' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'bpt' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'apt' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'ptbe' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'as' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'sali' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'sale' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'bsal' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'salbe' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'fgbt' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'fgbs' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'bpa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'fgbp' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'pta' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psa' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'~' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'10fgrea' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'pwcrea' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'sdrea' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lsprea' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'cprea' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'sfrea' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'ghrea' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'rrea' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'ewssrea' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'nsssrea' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erea' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'srcrea' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'rorea' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'vurea' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'vvrea' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'wurea' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'csfrea' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'lsfrea' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'ccrea' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'falrea' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'10wsrea' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'moflrea' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'~' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'hsdrea' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'vima' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'vit' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'viwv' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'vilw' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'viiw' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'vioz' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'vike' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'vithe' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'vipie' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'vipile' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'vitoe' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'viec' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'vimae' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'viman' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'vikee' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'viken' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'vithen' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'vige' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'vign' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'vitoee' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'vitoen' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'vioze' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'viozn' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'vimad' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'viked' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'vithed' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'viwvd' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'vigd' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'vitoed' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'viozd' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'srta' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'trta' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'srtca' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'trtca' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'umfa' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'dmfa' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'udra' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'ddra' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'tpfa' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'tdcha' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'ttpha' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'qtpha' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'utpha' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'vtpha' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'~' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'~' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'~' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'~' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'~' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'~' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'~' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'tsw' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'swl2' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'strfa' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'vpota' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'pta' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'cla' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'asna' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'rsna' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'slta' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'esa' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'smlta' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'sdura' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'10fga' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'monta' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mean2t24a' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'pva' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'obcta' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'bva' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'za' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'ta' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'ua' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'va' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'qa' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'spa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'tcwa' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'voa' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'sda' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'chnka' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'snra' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'tnra' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'da' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'gha' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'ra' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'blha' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'10ua' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'10va' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'2ta' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'2da' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'sra' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'ala' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'ea' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'hcca' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'roa' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'10sia' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'sia' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'tpa' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'skta' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'fala' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'cca' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'iaa' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'esrate' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'~' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Mean large-scale precipitation fraction +'mlspfr' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Mean large-scale precipitation rate +'mlsprt' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate +'cprate' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Mean total snowfall rate +'mtsfr' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Mean surface sensible heat flux +'msshfl' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Mean surface latent heat flux +'mslhfl' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Mean surface net radiation flux +'msnrf' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Mean short-wave heating rate +'mswhr' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Mean long-wave heating rate +'mlwhr' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Mean surface downward solar radiation flux +'msdsrf' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Mean surface downward thermal radiation flux +'msdtrf' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Mean surface net solar radiation flux +'msnsrf' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Mean surface net thermal radiation flux +'msntrf' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Mean top net solar radiation flux +'mtnsrf' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Mean top net thermal radiation flux +'mtntrf' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress rate of accumulation +'ewssra' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress rate of accumulation +'nsssra' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'erate' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Mean sunshine duration rate +'msdr' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'~' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Mean runoff rate +'mrort' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'~' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation rate of accumulation +'soira' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Mean total precipitation rate +'tprate' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'~' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'~' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'lspara' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate anomaly +'mcpra' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'sshfara' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'slhfara' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'ssrdara' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'strdara' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'ssrara' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'strara' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'tsrara' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'ttrara' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'ewssara' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'nsssara' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomalous rate of accumulation +'evara' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomalous rate of accumulation +'roara' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomalous rate of accumulation +'soiara' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'~' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'sro' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'ssro' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'~' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'~' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'~' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'~' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'~' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'sithick' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'~' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'~' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'~' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'~' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'~' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'~' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'~' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'~' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'~' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'~' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'~' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'~' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'~' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'tsw' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'ssr' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'str' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'tsr' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'ttr' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'sdsien' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'cap' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wiltsien' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'sr' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'tsm' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'2ddiff' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'~' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'~' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'~' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'~' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'~' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'clc' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'qc' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'~' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'twater' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'~' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'~' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'~' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'~' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'~' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'~' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'~' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'~' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'~' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'~' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'~' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'bas_con' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'top_con' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'dt_con' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'~' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'~' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'~' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'~' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'~' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'pp' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'~' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'w_i' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'t_snow' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'t_ice' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'cape_con' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'~' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdep' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerlts' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aerscc' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2o' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#CO2 column-mean molar fraction +'tcco2' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#CH4 column-mean molar fraction +'tcch4' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfire' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfire' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'co' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hcho' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'nox' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'ra' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcra' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'aersccdiff' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'co2diff' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'ch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'n2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'tcch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'ch4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'h2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5firediff' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'bcfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'oafirediff' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'so2diff' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'codiff' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'hchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'radiff' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'tcradiff' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'go3diff' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'tpoc' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'cin' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'orog' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'zust' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'meantcc' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'dl' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'lmld' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'lblt' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'ltlt' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'lshf' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'lict' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'licd' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'dctb' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'tplb' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'tplt' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'sm' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'st' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'cap' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'wilt' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'tp' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'esvar' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'smltvar' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'sdurvar' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'uvbvar' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'parvar' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'lspvar' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'cpvar' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'sfvar' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'bldvar' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'sshfvar' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'slhfvar' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'ssrdvar' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'strdvar' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'ssrvar' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'strvar' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'tsrvar' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'ttrvar' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'ewssvar' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'nsssvar' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'evar' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'sundvar' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'lgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'mgwsvar' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'gwdvar' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'srcvar' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'rovar' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'tsrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'ttrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'ssrcvar' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'strcvar' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'tisrvar' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'sts' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'msls' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'2ts' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'tps' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'ust' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'vst' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2firediff' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4firediff' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6firediff' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8firediff' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefirediff' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofirediff' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3firediff' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfirediff' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'100u' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'100v' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/stepType.def b/eccodes/definitions/grib1/localConcepts/ecmf/stepType.def new file mode 100644 index 00000000..6dc6e213 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/stepType.def @@ -0,0 +1,35 @@ +# Concept stepType for ECMWF +# In case of a repeated entry: +# set uses the FIRST one +# get returns the LAST match + +"instant" = {timeRangeIndicator=0;} +"instant" = {timeRangeIndicator=10;} +"instant" = {timeRangeIndicator=1;} +"instant" = {timeRangeIndicator=14;} # Fields from DWD in MARS + +"avg" = {timeRangeIndicator=3;} + +"avgd" = {timeRangeIndicator=113;} +"avgfc" = {timeRangeIndicator=113;} + +"accum" = {timeRangeIndicator=4;} +"accum" = {timeRangeIndicator=2;} + +# Since grib1 has not min/max, we had to use our own convention +# therefore we set the centre to ECMWF (98) +"min" = {timeRangeIndicator=2;centre=98;} +"min" = {timeRangeIndicator=119;} +"max" = {timeRangeIndicator=2;centre=98;} +"max" = {timeRangeIndicator=118;} + +"diff" = {timeRangeIndicator=5;} +"rms" = {timeRangeIndicator=120;} +"sd" = {timeRangeIndicator=121;} +"cov" = {timeRangeIndicator=122;} +"avgua" = {timeRangeIndicator=123;} +"avgia" = {timeRangeIndicator=124;} + +"avgas" = {timeRangeIndicator=128;} +"avgad" = {timeRangeIndicator=130;} +"avgid" = {timeRangeIndicator=133;} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def b/eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def new file mode 100644 index 00000000..28115c3a --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def @@ -0,0 +1,28 @@ +# Concept stepTypeForConversion for ECMWF +# set uses the FIRST one +# get returns the LAST match + +# ECC-457: ECMWF Total Precipitation +"accum" = {timeRangeIndicator=0;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} +"accum" = {timeRangeIndicator=1;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} +"accum" = {timeRangeIndicator=10;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} + +# sshf +"accum" = {indicatorOfParameter=146;gribTablesVersionNo=128;centre=98;} +# slhf +"accum" = {indicatorOfParameter=147;gribTablesVersionNo=128;centre=98;} + +# ssrd +"accum" = {indicatorOfParameter=169;gribTablesVersionNo=128;centre=98;} + +# strd +"accum" = {indicatorOfParameter=175;gribTablesVersionNo=128;centre=98;} +# ssr +"accum" = {indicatorOfParameter=176;gribTablesVersionNo=128;centre=98;} +# str +"accum" = {indicatorOfParameter=177;gribTablesVersionNo=128;centre=98;} +# ttr +"accum" = {indicatorOfParameter=179;gribTablesVersionNo=128;centre=98;} + +# sund +"accum" = {indicatorOfParameter=189;gribTablesVersionNo=128;centre=98;} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def b/eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def new file mode 100644 index 00000000..c43d20a7 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def @@ -0,0 +1,38 @@ +# ECMWF concept type of level +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricInPa' = {indicatorOfTypeOfLevel=210;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} +'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} +'oceanWave' = {indicatorOfTypeOfLevel=211;} +'oceanMixedLayer' = {indicatorOfTypeOfLevel=212;} diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/units.def b/eccodes/definitions/grib1/localConcepts/ecmf/units.def new file mode 100644 index 00000000..609f3d1c --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ecmf/units.def @@ -0,0 +1,17676 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 60 ; + } +#Total precipitation of at least 5 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 61 ; + } +#Total precipitation of at least 10 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 62 ; + } +#Total precipitation of at least 20 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 63 ; + } +#Total precipitation of at least 40 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 82 ; + } +#Total precipitation of at least 60 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 83 ; + } +#Total precipitation of at least 80 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 84 ; + } +#Total precipitation of at least 100 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 85 ; + } +#Total precipitation of at least 150 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 86 ; + } +#Total precipitation of at least 200 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 87 ; + } +#Total precipitation of at least 300 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 88 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +#Potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +#Soil sand fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +#Soil clay fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +#Surface runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +#Wind speed +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +#U component of divergent wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 14 ; + } +#UV visible albedo for direct radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 15 ; + } +#UV visible albedo for diffuse radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 16 ; + } +#Near IR albedo for direct radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 17 ; + } +#Near IR albedo for diffuse radiation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 18 ; + } +#Clear sky surface UV +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 19 ; + } +#Clear sky surface photosynthetically active radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 20 ; + } +#Unbalanced component of temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + table2Version = 128 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +#Lake cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation +'~' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation +'~' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +#Sea ice area fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +#Snow albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +#Snow density +'kg m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +#Ice temperature layer 1 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +#Ice temperature layer 2 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +#Ice temperature layer 3 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +#Ice temperature layer 4 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +#Soil type +'~' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +#Solar duration +'s' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust since previous post-processing +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction +'s' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential +'m**2 s**-2' = { + table2Version = 128 ; + indicatorOfParameter = 53 ; + } +#Pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +#Mean temperature at 2 metres in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy +'J kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +#Observation count +'~' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 128 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 128 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +#Instantaneous surface solar radiation downwards +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +#Instantaneous surface thermal radiation downwards +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +#Standard deviation of filtered subgrid orography +'m' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +#Specific rain water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +#Specific snow water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 76 ; + } +#Eta-coordinate vertical velocity +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 77 ; + } +#Total column cloud liquid water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 78 ; + } +#Total column cloud ice water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +#Surface emissivity +'dimensionless' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide +'~' = { + table2Version = 128 ; + indicatorOfParameter = 127 ; + } +#Atmospheric tide +'~' = { + table2Version = 160 ; + indicatorOfParameter = 127 ; + } +#Budget values +'~' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +#Budget values +'~' = { + table2Version = 160 ; + indicatorOfParameter = 128 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; + } +#Temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; + } +#Surface pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'Pa' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Pa' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; + } +#Total column water +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 136 ; + } +#Total column water +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 137 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'K' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'m' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'m' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; + } +#Charnock +'~' = { + table2Version = 128 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 149 ; + } +#Top net radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 128 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure +'~' = { + table2Version = 128 ; + indicatorOfParameter = 152 ; + } +#Logarithm of surface pressure +'~' = { + table2Version = 160 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate +'K' = { + table2Version = 128 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate +'K' = { + table2Version = 128 ; + indicatorOfParameter = 154 ; + } +#Divergence +'s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height +'gpm' = { + table2Version = 128 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'%' = { + table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'%' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'%' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height +'m' = { + table2Version = 128 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography +'radians' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography +'~' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 165 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 180 ; + indicatorOfParameter = 166 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 190 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 167 ; + } +#2 metre temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 180 ; + indicatorOfParameter = 168 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 190 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +#Soil temperature level 2 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; + } +#Surface roughness +'m' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'m' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 183 ; + } +#Soil temperature level 3 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 184 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + table2Version = 170 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 186 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 187 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 187 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 188 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration +'s' = { + table2Version = 128 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 190 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 191 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 192 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 193 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 194 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 195 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + table2Version = 160 ; + indicatorOfParameter = 195 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + table2Version = 128 ; + indicatorOfParameter = 196 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + table2Version = 160 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 197 ; + } +#Gravity wave dissipation +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography +'m**2' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +#Variance of sub-gridscale orography +'m**2' = { + table2Version = 160 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 170 ; + indicatorOfParameter = 201 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 190 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 170 ; + indicatorOfParameter = 202 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + table2Version = 190 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights +'~' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +#Precipitation analysis weights +'~' = { + table2Version = 160 ; + indicatorOfParameter = 204 ; + } +#Runoff +'m' = { + table2Version = 128 ; + indicatorOfParameter = 205 ; + } +#Runoff +'m' = { + table2Version = 180 ; + indicatorOfParameter = 205 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation +'J m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +#Vertically integrated moisture divergence +'kg m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'K' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'K' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'K' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation +'K' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 226 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 227 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + table2Version = 130 ; + indicatorOfParameter = 227 ; + } +#Total precipitation +'m' = { + table2Version = 128 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 160 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 170 ; + indicatorOfParameter = 228 ; + } +#Total precipitation +'m' = { + table2Version = 190 ; + indicatorOfParameter = 228 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 229 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 229 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 230 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface sensible heat flux +'W m**-2' = { + table2Version = 128 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 232 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 233 ; + } +#Apparent surface humidity +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat +'~' = { + table2Version = 128 ; + indicatorOfParameter = 234 ; + } +#Logarithm of surface roughness length for heat +'~' = { + table2Version = 160 ; + indicatorOfParameter = 234 ; + } +#Skin temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 235 ; + } +#Skin temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 +'K' = { + table2Version = 128 ; + indicatorOfParameter = 236 ; + } +#Soil temperature level 4 +'K' = { + table2Version = 160 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 +'m' = { + table2Version = 128 ; + indicatorOfParameter = 237 ; + } +#Soil wetness level 4 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer +'K' = { + table2Version = 128 ; + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'K' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall +'m of water equivalent' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness +'m' = { + table2Version = 128 ; + indicatorOfParameter = 244 ; + } +#Forecast surface roughness +'m' = { + table2Version = 160 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + table2Version = 128 ; + indicatorOfParameter = 245 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + table2Version = 160 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 247 ; + } +#Fraction of cloud cover +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency +'(-1 to 1)' = { + table2Version = 128 ; + indicatorOfParameter = 249 ; + } +#Ice age +'(0 - 1)' = { + table2Version = 128 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature +'K' = { + table2Version = 128 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity +'kg kg**-1' = { + table2Version = 128 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind +'m s**-1' = { + table2Version = 128 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 132 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 160 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 170 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 180 ; + indicatorOfParameter = 255 ; + } +#Indicates a missing value +'~' = { + table2Version = 190 ; + indicatorOfParameter = 255 ; + } +#Stream function difference +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Velocity potential difference +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Lake cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Snow albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Snow density difference +'kg m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 difference +'m**3 m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Soil type difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Snowmelt difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Solar duration difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential difference +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy difference +'J kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity difference +'K m**2 kg**-1 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations difference +'Millimetres*100 + number of stations' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Observation count difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Budget values difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 128 ; + } +#Geopotential difference +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 129 ; + } +#Temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 130 ; + } +#U component of wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 131 ; + } +#V component of wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Specific humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 133 ; + } +#Surface pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) difference +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 135 ; + } +#Total column water difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 140 ; + } +#Snow depth difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Charnock difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 149 ; + } +#Top net radiation difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure difference +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Divergence difference +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#Height difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 156 ; + } +#Relative humidity difference +'%' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure difference +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography difference +'radians' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 167 ; + } +#Surface solar radiation downwards difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Surface roughness difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 181 ; + } +#Evaporation difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 187 ; + } +#High cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration difference +'s' = { + table2Version = 200 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress difference +'N m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography difference +'m**2' = { + table2Version = 200 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Runoff difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Total column ozone difference +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total precipitation difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress difference +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress difference +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux difference +'J m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux difference +'kg m**-2 s' = { + table2Version = 200 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 234 ; + } +#Skin temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall difference +'m of water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness difference +'m' = { + table2Version = 200 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'~' = { + table2Version = 200 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Cloud cover difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency difference +'(-1 to 1)' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Ice age difference +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity difference +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind difference +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 200 ; + indicatorOfParameter = 255 ; + } +#Probability of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 89 ; + } +#Probability of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 90 ; + } +#Probability of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Climatological probability of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Climatological probability of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 93 ; + } +#Climatological probability of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 94 ; + } +#Probability anomaly of a tropical storm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 95 ; + } +#Probability anomaly of a hurricane +'%' = { + table2Version = 131 ; + indicatorOfParameter = 96 ; + } +#Probability anomaly of a tropical depression +'%' = { + table2Version = 131 ; + indicatorOfParameter = 97 ; + } +#Total precipitation of at least 25 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 98 ; + } +#Total precipitation of at least 50 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 99 ; + } +#10 metre wind gust of at least 10 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 100 ; + } +#Convective available potential energy shear index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 44 ; + } +#Water vapour flux index +'dimensionless' = { + table2Version = 132 ; + indicatorOfParameter = 45 ; + } +#Convective available potential energy index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 59 ; + } +#Maximum of significant wave height index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 216 ; + } +#Wave experimental parameter 1 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 80 ; + } +#Wave experimental parameter 2 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 81 ; + } +#Wave experimental parameter 3 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 82 ; + } +#Wave experimental parameter 4 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 83 ; + } +#Wave experimental parameter 5 +'~' = { + table2Version = 140 ; + indicatorOfParameter = 84 ; + } +#Wave induced mean sea level correction +'m' = { + table2Version = 140 ; + indicatorOfParameter = 98 ; + } +#Ratio of wave angular and frequency width +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 99 ; + } +#Number of events in freak waves statistics +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 100 ; + } +#U-component of atmospheric surface momentum flux +'N m**-2' = { + table2Version = 140 ; + indicatorOfParameter = 101 ; + } +#V-component of atmospheric surface momentum flux +'N m**-2' = { + table2Version = 140 ; + indicatorOfParameter = 102 ; + } +#U-component of surface momentum flux into ocean +'N m**-2' = { + table2Version = 140 ; + indicatorOfParameter = 103 ; + } +#V-component of surface momentum flux into ocean +'N m**-2' = { + table2Version = 140 ; + indicatorOfParameter = 104 ; + } +#Wave turbulent energy flux into ocean +'W m**-2' = { + table2Version = 140 ; + indicatorOfParameter = 105 ; + } +#Wave directional width of first swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 106 ; + } +#Wave frequency width of first swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 107 ; + } +#Wave directional width of second swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 108 ; + } +#Wave frequency width of second swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 109 ; + } +#Wave directional width of third swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 110 ; + } +#Wave frequency width of third swell partition +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 111 ; + } +#Wave energy flux magnitude +'W m**-1' = { + table2Version = 140 ; + indicatorOfParameter = 112 ; + } +#Wave energy flux mean direction +'Degree true' = { + table2Version = 140 ; + indicatorOfParameter = 113 ; + } +#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 114 ; + } +#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 115 ; + } +#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 116 ; + } +#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 117 ; + } +#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 118 ; + } +#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds +'m' = { + table2Version = 140 ; + indicatorOfParameter = 119 ; + } +#Significant wave height of all waves with period larger than 10s +'m' = { + table2Version = 140 ; + indicatorOfParameter = 120 ; + } +#Significant wave height of first swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 121 ; + } +#Mean wave direction of first swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 122 ; + } +#Mean wave period of first swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 123 ; + } +#Significant wave height of second swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 124 ; + } +#Mean wave direction of second swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 125 ; + } +#Mean wave period of second swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 126 ; + } +#Significant wave height of third swell partition +'m' = { + table2Version = 140 ; + indicatorOfParameter = 127 ; + } +#Mean wave direction of third swell partition +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 128 ; + } +#Mean wave period of third swell partition +'s' = { + table2Version = 140 ; + indicatorOfParameter = 129 ; + } +#Wave Spectral Skewness +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 207 ; + } +#Free convective velocity over the oceans +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 208 ; + } +#Air density over the oceans +'kg m**-3' = { + table2Version = 140 ; + indicatorOfParameter = 209 ; + } +#Mean square wave strain in sea ice +'~' = { + table2Version = 140 ; + indicatorOfParameter = 210 ; + } +#Normalized energy flux into waves +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 211 ; + } +#Normalized energy flux into ocean +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 212 ; + } +#Turbulent Langmuir number +'~' = { + table2Version = 140 ; + indicatorOfParameter = 213 ; + } +#Normalized stress into ocean +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 214 ; + } +#Reserved +'~' = { + table2Version = 151 ; + indicatorOfParameter = 193 ; + } +#Water vapour flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 45 ; + } +#Vertical integral of divergence of cloud liquid water flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 79 ; + } +#Vertical integral of divergence of cloud frozen water flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 80 ; + } +#Vertical integral of eastward cloud liquid water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 88 ; + } +#Vertical integral of northward cloud liquid water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 89 ; + } +#Vertical integral of eastward cloud frozen water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 90 ; + } +#Vertical integral of northward cloud frozen water flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 91 ; + } +#Vertical integral of mass tendency +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 92 ; + } +#U-tendency from dynamics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 114 ; + } +#V-tendency from dynamics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 115 ; + } +#T-tendency from dynamics +'K' = { + table2Version = 162 ; + indicatorOfParameter = 116 ; + } +#q-tendency from dynamics +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 117 ; + } +#T-tendency from radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'K' = { + table2Version = 162 ; + indicatorOfParameter = 121 ; + } +#q-tendency from turbulent diffusion +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 122 ; + } +#U-tendency from subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 123 ; + } +#V-tendency from subgrid orography +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 124 ; + } +#T-tendency from subgrid orography +'K' = { + table2Version = 162 ; + indicatorOfParameter = 125 ; + } +#U-tendency from convection (deep+shallow) +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 126 ; + } +#V-tendency from convection (deep+shallow) +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 127 ; + } +#T-tendency from convection (deep+shallow) +'K' = { + table2Version = 162 ; + indicatorOfParameter = 128 ; + } +#q-tendency from convection (deep+shallow) +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 129 ; + } +#Liquid Precipitation flux from convection +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 130 ; + } +#Ice Precipitation flux from convection +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 131 ; + } +#T-tendency from cloud scheme +'K' = { + table2Version = 162 ; + indicatorOfParameter = 132 ; + } +#q-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 133 ; + } +#ql-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 134 ; + } +#qi-tendency from cloud scheme +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 137 ; + } +#U-tendency from shallow convection +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 138 ; + } +#V-tendency from shallow convection +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 139 ; + } +#T-tendency from shallow convection +'K' = { + table2Version = 162 ; + indicatorOfParameter = 140 ; + } +#q-tendency from shallow convection +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 141 ; + } +#Standardised precipitation index valid in the last 3 months +'dimensionless' = { + table2Version = 170 ; + indicatorOfParameter = 1 ; + } +#Standardised precipitation index valid in the last 6 months +'dimensionless' = { + table2Version = 170 ; + indicatorOfParameter = 2 ; + } +#Standardised precipitation index valid in the last 12 months +'dimensionless' = { + table2Version = 170 ; + indicatorOfParameter = 3 ; + } +#100 metre U wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 6 ; + } +#100 metre V wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 24 ; + } +#Lake ice depth anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 122 ; + } +#Mean surface runoff rate +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 9 ; + } +#Mean surface runoff rate anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 8 ; + } +#Mean sub-surface runoff rate anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 9 ; + } +#Clear-sky (II) down surface sw flux +'W m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 10 ; + } +#Clear-sky (II) up surface sw flux +'W m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 13 ; + } +#Visibility at 1.5m +'m' = { + table2Version = 174 ; + indicatorOfParameter = 25 ; + } +#Minimum temperature at 1.5m since previous post-processing +'K' = { + table2Version = 174 ; + indicatorOfParameter = 50 ; + } +#Maximum temperature at 1.5m since previous post-processing +'K' = { + table2Version = 174 ; + indicatorOfParameter = 51 ; + } +#Relative humidity at 1.5m +'kg kg**-1' = { + table2Version = 174 ; + indicatorOfParameter = 52 ; + } +#2 metre specific humidity +'kg kg**-1' = { + table2Version = 174 ; + indicatorOfParameter = 96 ; + } +#Sea ice snow thickness +'m' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Short wave radiation flux at surface +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 116 ; + } +#Short wave radiation flux at top of atmosphere +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 117 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 137 ; + } +#Large scale rainfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 142 ; + } +#Convective rainfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 143 ; + } +#Very low cloud amount +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 186 ; + } +#Convective snowfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall rate +'kg m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 240 ; + } +#Total cloud amount - random overlap +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 248 ; + } +#Total cloud amount in lw radiation +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 249 ; + } +#Volcanic ash aerosol mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 210 ; + indicatorOfParameter = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 57 ; + } +#Monoterpene precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 58 ; + } +#Secondary organic precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 59 ; + } +#Injection height (from IS4FIRES) +'m' = { + table2Version = 210 ; + indicatorOfParameter = 60 ; + } +#Particulate matter d < 1 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'kg m**-3' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Wildfire viewing angle of observation +'deg' = { + table2Version = 210 ; + indicatorOfParameter = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 118 ; + } +#Mean altitude of maximum injection +'m' = { + table2Version = 210 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'m' = { + table2Version = 210 ; + indicatorOfParameter = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'(0 - 1)' = { + table2Version = 210 ; + indicatorOfParameter = 197 ; + } +#Total aerosol optical depth at 340 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 217 ; + } +#Total aerosol optical depth at 355 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 218 ; + } +#Total aerosol optical depth at 380 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 219 ; + } +#Total aerosol optical depth at 400 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 220 ; + } +#Total aerosol optical depth at 440 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 221 ; + } +#Total aerosol optical depth at 500 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 222 ; + } +#Total aerosol optical depth at 532 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 223 ; + } +#Total aerosol optical depth at 645 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 224 ; + } +#Total aerosol optical depth at 800 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 225 ; + } +#Total aerosol optical depth at 858 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 226 ; + } +#Total aerosol optical depth at 1020 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 227 ; + } +#Total aerosol optical depth at 1064 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 228 ; + } +#Total aerosol optical depth at 1640 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 229 ; + } +#Total aerosol optical depth at 2130 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 241 ; + } +#Altitude of plume bottom +'m' = { + table2Version = 210 ; + indicatorOfParameter = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 243 ; + } +#Volcanic ash optical depth at 550 nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'m**-1' = { + table2Version = 210 ; + indicatorOfParameter = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'m**-1' = { + table2Version = 210 ; + indicatorOfParameter = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 247 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 248 ; + } +#Ammonium aerosol mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 249 ; + } +#Nitrate aerosol optical depth at 550 nm +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 250 ; + } +#Ammonium aerosol optical depth at 550 nm +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 251 ; + } +#Aerosol type 13 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 13 ; + } +#Aerosol type 14 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 14 ; + } +#Aerosol type 15 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 211 ; + indicatorOfParameter = 56 ; + } +#Wildfire Flux of Ethane (C2H6) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 118 ; + } +#Altitude of emitter +'m' = { + table2Version = 211 ; + indicatorOfParameter = 119 ; + } +#Altitude of plume top +'m' = { + table2Version = 211 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 212 ; + indicatorOfParameter = 255 ; + } +#Random pattern 1 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 1 ; + } +#Random pattern 2 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 2 ; + } +#Random pattern 3 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 3 ; + } +#Random pattern 4 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 4 ; + } +#Random pattern 5 for sppt +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 5 ; + } +#Random pattern 1 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 101 ; + } +#Random pattern 2 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 102 ; + } +#Random pattern 3 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 103 ; + } +#Random pattern 4 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 104 ; + } +#Random pattern 5 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 105 ; + } +#Random pattern 6 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 106 ; + } +#Random pattern 7 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 107 ; + } +#Random pattern 8 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 108 ; + } +#Random pattern 9 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 109 ; + } +#Random pattern 10 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 110 ; + } +#Random pattern 11 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 111 ; + } +#Random pattern 12 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 112 ; + } +#Random pattern 13 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 113 ; + } +#Random pattern 14 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 114 ; + } +#Random pattern 15 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 115 ; + } +#Random pattern 16 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 116 ; + } +#Random pattern 17 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 117 ; + } +#Random pattern 18 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 118 ; + } +#Random pattern 19 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 119 ; + } +#Random pattern 20 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 120 ; + } +#Random pattern 21 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 121 ; + } +#Random pattern 22 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 122 ; + } +#Random pattern 23 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 123 ; + } +#Random pattern 24 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 124 ; + } +#Random pattern 25 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 125 ; + } +#Random pattern 26 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 126 ; + } +#Random pattern 27 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 127 ; + } +#Random pattern 28 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 128 ; + } +#Random pattern 29 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 129 ; + } +#Random pattern 30 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 130 ; + } +#Random pattern 31 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 131 ; + } +#Random pattern 32 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 132 ; + } +#Random pattern 33 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 133 ; + } +#Random pattern 34 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 134 ; + } +#Random pattern 35 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 135 ; + } +#Random pattern 36 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 136 ; + } +#Random pattern 37 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 137 ; + } +#Random pattern 38 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 138 ; + } +#Random pattern 39 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 139 ; + } +#Random pattern 40 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 140 ; + } +#Random pattern 41 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 141 ; + } +#Random pattern 42 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 142 ; + } +#Random pattern 43 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 143 ; + } +#Random pattern 44 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 144 ; + } +#Random pattern 45 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 145 ; + } +#Random pattern 46 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 146 ; + } +#Random pattern 47 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 147 ; + } +#Random pattern 48 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 148 ; + } +#Random pattern 49 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 149 ; + } +#Random pattern 50 for SPP scheme +'dimensionless' = { + table2Version = 213 ; + indicatorOfParameter = 150 ; + } +#Cosine of solar zenith angle +'~' = { + table2Version = 214 ; + indicatorOfParameter = 1 ; + } +#UV biologically effective dose +'~' = { + table2Version = 214 ; + indicatorOfParameter = 2 ; + } +#UV biologically effective dose clear-sky +'~' = { + table2Version = 214 ; + indicatorOfParameter = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'W m**-2' = { + table2Version = 214 ; + indicatorOfParameter = 51 ; + } +#Profile of optical thickness at 340 nm +'~' = { + table2Version = 214 ; + indicatorOfParameter = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 80 ; + } +#Source/gain of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 81 ; + } +#Dry deposition of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 82 ; + } +#Sedimentation of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 85 ; + } +#Negative fixer of sulphate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 87 ; + } +#Sulphate aerosol optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'s' = { + table2Version = 215 ; + indicatorOfParameter = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 90 ; + } +#10 metre wind speed dust emission potential +'kg s**2 m**-5' = { + table2Version = 215 ; + indicatorOfParameter = 91 ; + } +#10 metre wind gustiness dust emission potential +'kg s**2 m**-5' = { + table2Version = 215 ; + indicatorOfParameter = 92 ; + } +#Total aerosol optical thickness at 532 nm +'dimensionless' = { + table2Version = 215 ; + indicatorOfParameter = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'dimensionless' = { + table2Version = 215 ; + indicatorOfParameter = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'dimensionless' = { + table2Version = 215 ; + indicatorOfParameter = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 131 ; + } +#Single scattering albedo at 340 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 132 ; + } +#Single scattering albedo at 355 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 133 ; + } +#Single scattering albedo at 380 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 134 ; + } +#Single scattering albedo at 400 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 135 ; + } +#Single scattering albedo at 440 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 136 ; + } +#Single scattering albedo at 469 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 137 ; + } +#Single scattering albedo at 500 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 138 ; + } +#Single scattering albedo at 532 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 139 ; + } +#Single scattering albedo at 550 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 140 ; + } +#Single scattering albedo at 645 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 141 ; + } +#Single scattering albedo at 670 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 142 ; + } +#Single scattering albedo at 800 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 143 ; + } +#Single scattering albedo at 858 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 144 ; + } +#Single scattering albedo at 865 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 145 ; + } +#Single scattering albedo at 1020 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 146 ; + } +#Single scattering albedo at 1064 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 147 ; + } +#Single scattering albedo at 1240 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 148 ; + } +#Single scattering albedo at 1640 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 149 ; + } +#Asymmetry factor at 340 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 150 ; + } +#Asymmetry factor at 355 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 151 ; + } +#Asymmetry factor at 380 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 152 ; + } +#Asymmetry factor at 400 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 153 ; + } +#Asymmetry factor at 440 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 154 ; + } +#Asymmetry factor at 469 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 155 ; + } +#Asymmetry factor at 500 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 156 ; + } +#Asymmetry factor at 532 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 157 ; + } +#Asymmetry factor at 550 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 158 ; + } +#Asymmetry factor at 645 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 159 ; + } +#Asymmetry factor at 670 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 160 ; + } +#Asymmetry factor at 800 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 161 ; + } +#Asymmetry factor at 858 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 162 ; + } +#Asymmetry factor at 865 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 163 ; + } +#Asymmetry factor at 1020 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 164 ; + } +#Asymmetry factor at 1064 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 165 ; + } +#Asymmetry factor at 1240 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 166 ; + } +#Asymmetry factor at 1640 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 167 ; + } +#Source/gain of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 168 ; + } +#Dry deposition of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 169 ; + } +#Sedimentation of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 172 ; + } +#Negative fixer of sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 174 ; + } +#Sulphur dioxide optical depth +'~' = { + table2Version = 215 ; + indicatorOfParameter = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 177 ; + } +#Single scattering albedo at 2130 nm +'(0 - 1)' = { + table2Version = 215 ; + indicatorOfParameter = 178 ; + } +#Asymmetry factor at 2130 nm +'~' = { + table2Version = 215 ; + indicatorOfParameter = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'m**-1' = { + table2Version = 215 ; + indicatorOfParameter = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'m**-1' = { + table2Version = 215 ; + indicatorOfParameter = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'m**-1' = { + table2Version = 215 ; + indicatorOfParameter = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'m**-1 sr**-1' = { + table2Version = 215 ; + indicatorOfParameter = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 189 ; + } +#Source/gain of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 190 ; + } +#Dry deposition of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 191 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 192 ; + } +#Sedimentation of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 193 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 194 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 195 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 196 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 197 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 198 ; + } +#Negative fixer of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 199 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 200 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 201 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 202 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'dimensionless' = { + table2Version = 215 ; + indicatorOfParameter = 203 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'dimensionless' = { + table2Version = 215 ; + indicatorOfParameter = 204 ; + } +#Source/gain of ammonium aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 205 ; + } +#Dry deposition of ammonium aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 206 ; + } +#Sedimentation of ammonium aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 207 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 208 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 209 ; + } +#Negative fixer of ammonium aerosol +'kg m**-2 s**-1' = { + table2Version = 215 ; + indicatorOfParameter = 210 ; + } +#Vertically integrated mass of ammonium aerosol +'kg m**-2' = { + table2Version = 215 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 1 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 2 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 3 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 4 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 5 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 6 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 7 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 8 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 9 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 10 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 11 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 12 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 13 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 14 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 15 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 16 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 17 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 18 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 19 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 20 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 21 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 22 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 23 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 24 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 25 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 26 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 27 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 28 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 29 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 30 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 31 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 32 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 33 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 34 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 35 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 36 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 37 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 38 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 39 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 40 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 41 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 42 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 43 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 44 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 45 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 46 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 47 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 48 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 49 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 50 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 51 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 52 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 53 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 54 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 55 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 56 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 57 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 58 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 59 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 60 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 61 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 62 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 63 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 64 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 65 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 66 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 67 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 68 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 69 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 70 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 71 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 72 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 73 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 74 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 75 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 76 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 77 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 78 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 120 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 121 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 122 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 123 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 124 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 125 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 126 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 127 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 128 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 129 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 130 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 131 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 132 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 133 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 134 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 135 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 136 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 137 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 138 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 139 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 140 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 141 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 142 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 143 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 144 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 145 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 146 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 147 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 148 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 149 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 150 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 151 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 152 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 153 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 154 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 155 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 156 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 157 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 158 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 159 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 160 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 161 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 162 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 163 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 164 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 165 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 166 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 167 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 168 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 169 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 170 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 171 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 172 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 173 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 174 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 175 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 176 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 177 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 178 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 179 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 180 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 181 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 182 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 183 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 184 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 185 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 186 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 187 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 188 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 189 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 190 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 191 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 192 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 193 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 194 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 195 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 196 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 197 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 198 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 199 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 200 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 201 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 202 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 203 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 204 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 205 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 206 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 207 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 208 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 209 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 210 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 211 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 212 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 213 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 214 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 215 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 216 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 217 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 218 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 219 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 220 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 221 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 222 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 223 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 224 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 225 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 226 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 227 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 228 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 229 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 230 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 231 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 232 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 233 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 234 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 235 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 236 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 237 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 238 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 239 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 240 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 241 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 242 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 243 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 244 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 245 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 246 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 247 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 248 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 249 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 250 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 251 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 252 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 253 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 254 ; + } +#Experimental product +'~' = { + table2Version = 216 ; + indicatorOfParameter = 255 ; + } +#Hydrogen peroxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 7 ; + } +#Paraffins +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 9 ; + } +#Ethene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Olefins +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 11 ; + } +#Aldehydes +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Peroxides +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 15 ; + } +#Isoprene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Sulfate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 20 ; + } +#Ammonium +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 24 ; + } +#Lead +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 35 ; + } +#Organic ethers +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 39 ; + } +#Amine +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 41 ; + } +#Methanol +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 44 ; + } +#Ethane +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 50 ; + } +#Nitrate +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 51 ; + } +#Acetone +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 52 ; + } +#Acetone product +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp +'kg kg**-1' = { + table2Version = 217 ; + indicatorOfParameter = 56 ; + } +#Total column hydrogen peroxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column methyl peroxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 7 ; + } +#Total column paraffins +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 9 ; + } +#Total column ethene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column olefins +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 11 ; + } +#Total column aldehydes +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 12 ; + } +#Total column peroxyacetyl nitrate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column peroxides +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 14 ; + } +#Total column organic nitrates +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 15 ; + } +#Total column isoprene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column ammonium +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 21 ; + } +#Total column methane sulfonic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 22 ; + } +#Total column methyl glyoxal +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 23 ; + } +#Total column stratospheric ozone +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 24 ; + } +#Total column lead +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 26 ; + } +#Total column nitrogen monoxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroperoxy radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 28 ; + } +#Total column methylperoxy radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 29 ; + } +#Total column hydroxyl radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column pernitric acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 34 ; + } +#Total column peroxy acetyl radical +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 35 ; + } +#Total column organic ethers +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 36 ; + } +#Total column PAR budget corrector +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 37 ; + } +#Total column NO to NO2 operator +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 38 ; + } +#Total column NO to alkyl nitrate operator +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 39 ; + } +#Total column amine +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 40 ; + } +#Total column polar stratospheric cloud +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 41 ; + } +#Total column methanol +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column methacrylic acid +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 44 ; + } +#Total column ethane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } +#Total column methacrolein MVK +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 50 ; + } +#Total column nitrate +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 51 ; + } +#Total column acetone +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 52 ; + } +#Total column acetone product +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 53 ; + } +#Total column IC3H7O2 +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 54 ; + } +#Total column HYPROPO2 +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 55 ; + } +#Total column nitrogen oxides Transp +'kg m**-2' = { + table2Version = 218 ; + indicatorOfParameter = 56 ; + } +#Ozone emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 3 ; + } +#Methane emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 5 ; + } +#Nitric acid emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 8 ; + } +#Paraffins emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 9 ; + } +#Ethene emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 10 ; + } +#Olefins emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 11 ; + } +#Aldehydes emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 13 ; + } +#Peroxides emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 15 ; + } +#Isoprene emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 18 ; + } +#Ammonia emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 19 ; + } +#Sulfate emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 20 ; + } +#Ammonium emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 24 ; + } +#Radon emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 25 ; + } +#Lead emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 35 ; + } +#Organic ethers emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 39 ; + } +#Amine emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 41 ; + } +#Methanol emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 42 ; + } +#Formic acid emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 44 ; + } +#Ethane emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 45 ; + } +#Ethanol emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 46 ; + } +#Propane emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 47 ; + } +#Propene emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 48 ; + } +#Terpenes emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 50 ; + } +#Nitrate emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 51 ; + } +#Acetone emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 52 ; + } +#Acetone product emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp emissions +'kg m**-2 s**-1' = { + table2Version = 219 ; + indicatorOfParameter = 56 ; + } +#Ozone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 1 ; + } +#Nitrogen oxides deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 2 ; + } +#Hydrogen peroxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 3 ; + } +#Methane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 4 ; + } +#Carbon monoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 5 ; + } +#Nitric acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 6 ; + } +#Methyl peroxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 7 ; + } +#Formaldehyde deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 8 ; + } +#Paraffins deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 9 ; + } +#Ethene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 10 ; + } +#Olefins deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 11 ; + } +#Aldehydes deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 13 ; + } +#Peroxides deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 14 ; + } +#Organic nitrates deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 15 ; + } +#Isoprene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 16 ; + } +#Sulfur dioxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 17 ; + } +#Dimethyl sulfide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 18 ; + } +#Ammonia deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 19 ; + } +#Sulfate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 20 ; + } +#Ammonium deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 21 ; + } +#Methane sulfonic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 22 ; + } +#Methyl glyoxal deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 23 ; + } +#Stratospheric ozone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 24 ; + } +#Radon deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 25 ; + } +#Lead deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 26 ; + } +#Nitrogen monoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 27 ; + } +#Hydroperoxy radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 28 ; + } +#Methylperoxy radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 29 ; + } +#Hydroxyl radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 30 ; + } +#Nitrogen dioxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 31 ; + } +#Nitrate radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 33 ; + } +#Pernitric acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 34 ; + } +#Peroxy acetyl radical deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 35 ; + } +#Organic ethers deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 36 ; + } +#PAR budget corrector deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 37 ; + } +#NO to NO2 operator deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 39 ; + } +#Amine deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 40 ; + } +#Polar stratospheric cloud deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 41 ; + } +#Methanol deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 42 ; + } +#Formic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 43 ; + } +#Methacrylic acid deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 44 ; + } +#Ethane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 45 ; + } +#Ethanol deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 46 ; + } +#Propane deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 47 ; + } +#Propene deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 48 ; + } +#Terpenes deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 49 ; + } +#Methacrolein MVK deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 50 ; + } +#Nitrate deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 51 ; + } +#Acetone deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 52 ; + } +#Acetone product deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 53 ; + } +#IC3H7O2 deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 54 ; + } +#HYPROPO2 deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'m s**-1' = { + table2Version = 221 ; + indicatorOfParameter = 56 ; + } +#-10 degrees C isothermal level (atm) +'m' = { + table2Version = 228 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 22 ; + } +#Cloud base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 23 ; + } +#0 degrees C isothermal level (atm) +'m' = { + table2Version = 228 ; + indicatorOfParameter = 24 ; + } +#Horizontal visibility +'m' = { + table2Version = 228 ; + indicatorOfParameter = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'K' = { + table2Version = 228 ; + indicatorOfParameter = 26 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'K' = { + table2Version = 228 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 28 ; + } +#Instantaneous 10 metre wind gust +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 29 ; + } +#2 metre relative humidity with respect to water +'%' = { + table2Version = 228 ; + indicatorOfParameter = 37 ; + } +#Soil wetness index in layer 1 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 40 ; + } +#Soil wetness index in layer 2 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 41 ; + } +#Soil wetness index in layer 3 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 42 ; + } +#Soil wetness index in layer 4 +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 43 ; + } +#Convective available potential energy shear +'m**2 s**-2' = { + table2Version = 228 ; + indicatorOfParameter = 44 ; + } +#Height of convective cloud top +'m' = { + table2Version = 228 ; + indicatorOfParameter = 46 ; + } +#Height of zero-degree wet-bulb temperature +'m' = { + table2Version = 228 ; + indicatorOfParameter = 47 ; + } +#Height of one-degree wet-bulb temperature +'m' = { + table2Version = 228 ; + indicatorOfParameter = 48 ; + } +#Instantaneous total lightning flash density +'km**-2 day**-1' = { + table2Version = 228 ; + indicatorOfParameter = 50 ; + } +#Averaged total lightning flash density in the last hour +'km**-2 day**-1' = { + table2Version = 228 ; + indicatorOfParameter = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'km**-2 day**-1' = { + table2Version = 228 ; + indicatorOfParameter = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'km**-2 day**-1' = { + table2Version = 228 ; + indicatorOfParameter = 53 ; + } +#SMOS observed soil moisture retrieved using neural network +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 70 ; + } +#SMOS observed soil moisture uncertainty retrieved using neural network +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 71 ; + } +#SMOS radio frequency interference probability +'%' = { + table2Version = 228 ; + indicatorOfParameter = 72 ; + } +#SMOS number of observations per grid point +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 73 ; + } +#SMOS observation time for the satellite soil moisture data +'hour' = { + table2Version = 228 ; + indicatorOfParameter = 74 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 78 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 79 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 82 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 83 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 84 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 85 ; + } +#Total column supercooled liquid water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 88 ; + } +#Total column rain water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 89 ; + } +#Total column snow water +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 90 ; + } +#Canopy cover fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 91 ; + } +#Soil texture fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 92 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 93 ; + } +#Ice temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 94 ; + } +#Surface solar radiation downward clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 130 ; + } +#Accumulated freezing rain +'m' = { + table2Version = 228 ; + indicatorOfParameter = 216 ; + } +#Instantaneous large-scale surface precipitation fraction +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 217 ; + } +#Convective rain rate +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 218 ; + } +#Large scale rain rate +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 219 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 220 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 221 ; + } +#Maximum total precipitation rate in the last 3 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 222 ; + } +#Minimum total precipitation rate in the last 3 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 223 ; + } +#Maximum total precipitation rate in the last 6 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 224 ; + } +#Minimum total precipitation rate in the last 6 hours +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 225 ; + } +#Maximum total precipitation rate since previous post-processing +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 226 ; + } +#Minimum total precipitation rate since previous post-processing +'kg m**-2 s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 227 ; + } +#SMOS first Brightness Temperature Bias Correction parameter +'K' = { + table2Version = 228 ; + indicatorOfParameter = 229 ; + } +#SMOS second Brightness Temperature Bias Correction parameter +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 230 ; + } +#200 metre U wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 239 ; + } +#200 metre V wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 240 ; + } +#200 metre wind speed +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 241 ; + } +#Surface solar radiation diffuse total sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 242 ; + } +#Surface solar radiation diffuse clear-sky +'J m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 243 ; + } +#Surface albedo of direct radiation +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 244 ; + } +#Surface albedo of diffuse radiation +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 245 ; + } +#100 metre wind speed +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 249 ; + } +#Irrigation fraction +'Proportion' = { + table2Version = 228 ; + indicatorOfParameter = 250 ; + } +#Potential evaporation +'m' = { + table2Version = 228 ; + indicatorOfParameter = 251 ; + } +#Irrigation +'m' = { + table2Version = 228 ; + indicatorOfParameter = 252 ; + } +#Surface runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 9 ; + } +#Clear sky surface photosynthetically active radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 20 ; + } +#Total sky direct solar radiation at surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 21 ; + } +#Clear-sky direct solar radiation at surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 22 ; + } +#Direct solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 47 ; + } +#Large-scale precipitation fraction (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 50 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 80 ; + } +#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 81 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 82 ; + } +#Surface solar radiation downward clear-sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 129 ; + } +#Surface thermal radiation downward clear-sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 130 ; + } +#Albedo (variable resolution) +'(0 - 1)' = { + table2Version = 230 ; + indicatorOfParameter = 174 ; + } +#Vertically integrated moisture divergence (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 213 ; + } +#Accumulated freezing rain (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 216 ; + } +#Total precipitation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 239 ; + } +#Large-scale snowfall (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 240 ; + } +#Potential evaporation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 251 ; + } +#Mean surface runoff rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 20 ; + } +#Mean sub-surface runoff rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 21 ; + } +#Mean surface photosynthetically active radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 22 ; + } +#Mean snow evaporation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 23 ; + } +#Mean snowmelt rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 24 ; + } +#Mean magnitude of turbulent surface stress +'N m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 25 ; + } +#Mean large-scale precipitation fraction +'Proportion' = { + table2Version = 235 ; + indicatorOfParameter = 26 ; + } +#Mean surface downward UV radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 27 ; + } +#Mean surface photosynthetically active radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 28 ; + } +#Mean large-scale precipitation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 29 ; + } +#Mean convective precipitation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 30 ; + } +#Mean snowfall rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 31 ; + } +#Mean boundary layer dissipation +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 32 ; + } +#Mean surface sensible heat flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 33 ; + } +#Mean surface latent heat flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 34 ; + } +#Mean surface downward short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 35 ; + } +#Mean surface downward long-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 36 ; + } +#Mean surface net short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 37 ; + } +#Mean surface net long-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 38 ; + } +#Mean top net short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 39 ; + } +#Mean top net long-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 40 ; + } +#Mean eastward turbulent surface stress +'N m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 41 ; + } +#Mean northward turbulent surface stress +'N m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 42 ; + } +#Mean evaporation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 43 ; + } +#Sunshine duration fraction +'Proportion' = { + table2Version = 235 ; + indicatorOfParameter = 44 ; + } +#Mean eastward gravity wave surface stress +'N m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 45 ; + } +#Mean northward gravity wave surface stress +'N m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 46 ; + } +#Mean gravity wave dissipation +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 47 ; + } +#Mean runoff rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 48 ; + } +#Mean top net short-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 49 ; + } +#Mean top net long-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 50 ; + } +#Mean surface net short-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 51 ; + } +#Mean surface net long-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 52 ; + } +#Mean top downward short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 53 ; + } +#Mean vertically integrated moisture divergence +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 54 ; + } +#Mean total precipitation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 55 ; + } +#Mean convective snowfall rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 56 ; + } +#Mean large-scale snowfall rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 57 ; + } +#Mean surface direct short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 58 ; + } +#Mean surface direct short-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 59 ; + } +#Mean surface diffuse short-wave radiation flux +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 60 ; + } +#Mean surface diffuse short-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 61 ; + } +#Mean carbon dioxide net ecosystem exchange flux +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 62 ; + } +#Mean carbon dioxide gross primary production flux +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 63 ; + } +#Mean carbon dioxide ecosystem respiration flux +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 64 ; + } +#Mean rain rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 65 ; + } +#Mean convective rain rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 66 ; + } +#Mean large-scale rain rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 67 ; + } +#Mean surface downward short-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 68 ; + } +#Mean surface downward long-wave radiation flux, clear sky +'W m**-2' = { + table2Version = 235 ; + indicatorOfParameter = 69 ; + } +#Mean potential evaporation rate +'kg m**-2 s**-1' = { + table2Version = 235 ; + indicatorOfParameter = 70 ; + } +#Total precipitation rate +'kg m**-2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#Ceiling +'m' = { + table2Version = 228 ; + indicatorOfParameter = 109 ; + } +#K index +'K' = { + table2Version = 228 ; + indicatorOfParameter = 121 ; + } +#Total totals index +'K' = { + table2Version = 228 ; + indicatorOfParameter = 123 ; + } +#Stream function gradient +'m**2 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Velocity potential gradient +'m**2 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 2 ; + } +#Potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 23 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 24 ; + } +#Reserved for future unbalanced components +'~' = { + table2Version = 129 ; + indicatorOfParameter = 25 ; + } +#Lake cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 31 ; + } +#Snow albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#Snow density gradient +'kg m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature layer 1 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature layer 2 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature layer 3 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature layer 4 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water layer 1 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 gradient +'m**3 m**-3' = { + table2Version = 129 ; + indicatorOfParameter = 42 ; + } +#Soil type gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 44 ; + } +#Snowmelt gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 45 ; + } +#Solar duration gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential gradient +'m**2 s**-2' = { + table2Version = 129 ; + indicatorOfParameter = 53 ; + } +#Pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy gradient +'J kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity gradient +'K m**2 kg**-1 s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations gradient +'Millimetres*100 + number of stations' = { + table2Version = 129 ; + indicatorOfParameter = 61 ; + } +#Observation count gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference +'s' = { + table2Version = 129 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference +'s' = { + table2Version = 129 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference +'K' = { + table2Version = 129 ; + indicatorOfParameter = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + table2Version = 129 ; + indicatorOfParameter = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + table2Version = 129 ; + indicatorOfParameter = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Total column liquid water +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Total column ice water +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 80 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 81 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 82 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 83 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 84 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 85 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 86 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 87 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 88 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 89 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 90 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 91 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 92 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 93 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 94 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 95 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 96 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 97 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 98 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 99 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 100 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 101 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 102 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 103 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 104 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 105 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 106 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 107 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 108 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 109 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 110 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 111 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 112 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 113 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 114 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 115 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 116 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 117 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 118 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 119 ; + } +#Experimental product +'~' = { + table2Version = 129 ; + indicatorOfParameter = 120 ; + } +#Maximum temperature at 2 metres gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 121 ; + } +#Minimum temperature at 2 metres gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 129 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 127 ; + } +#Budget values gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 128 ; + } +#Geopotential gradient +'m**2 s**-2' = { + table2Version = 129 ; + indicatorOfParameter = 129 ; + } +#Temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 130 ; + } +#U component of wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 131 ; + } +#V component of wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 132 ; + } +#Specific humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 133 ; + } +#Surface pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 134 ; + } +#vertical velocity (pressure) gradient +'Pa s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 135 ; + } +#Total column water gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 138 ; + } +#Soil temperature level 1 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 139 ; + } +#Soil wetness level 1 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 140 ; + } +#Snow depth gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 147 ; + } +#Charnock gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 149 ; + } +#Top net radiation gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure gradient +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 154 ; + } +#Divergence gradient +'s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 155 ; + } +#Height gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 156 ; + } +#Relative humidity gradient +'%' = { + table2Version = 129 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure gradient +'Pa s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography gradient +'radians' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#Soil temperature level 2 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 170 ; + } +#Soil wetness level 2 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#Land-sea mask gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#Surface roughness gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#Albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#Evaporation gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#Soil temperature level 3 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#Soil wetness level 3 gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#High cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration gradient +'s' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress gradient +'N m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography gradient +'m**2' = { + table2Version = 129 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#Runoff gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#Total column ozone gradient +'kg m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating large-scale condensation gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#Total precipitation gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress gradient +'N m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress gradient +'N m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux gradient +'J m**-2' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux gradient +'kg m**-2 s' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#Skin temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall gradient +'m of water equivalent' = { + table2Version = 129 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness gradient +'m' = { + table2Version = 129 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'~' = { + table2Version = 129 ; + indicatorOfParameter = 245 ; + } +#Specific cloud liquid water content gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 246 ; + } +#Specific cloud ice water content gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 247 ; + } +#Cloud cover gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency gradient +'(-1 to 1)' = { + table2Version = 129 ; + indicatorOfParameter = 249 ; + } +#Ice age gradient +'(0 - 1)' = { + table2Version = 129 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature gradient +'K' = { + table2Version = 129 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity gradient +'kg kg**-1' = { + table2Version = 129 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'m s**-1' = { + table2Version = 129 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +#Top solar radiation upward +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 208 ; + } +#Top thermal radiation upward +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 209 ; + } +#Top solar radiation upward, clear sky +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 210 ; + } +#Top thermal radiation upward, clear sky +'J m**-2' = { + table2Version = 130 ; + indicatorOfParameter = 211 ; + } +#Cloud liquid water +'kg kg**-1' = { + table2Version = 130 ; + indicatorOfParameter = 212 ; + } +#Cloud fraction +'(0 - 1)' = { + table2Version = 130 ; + indicatorOfParameter = 213 ; + } +#Diabatic heating by radiation +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 221 ; + } +#Vertical diffusion of humidity +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 226 ; + } +#Adiabatic tendency of temperature +'K s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 228 ; + } +#Adiabatic tendency of humidity +'kg kg**-1 s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 229 ; + } +#Adiabatic tendency of zonal wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 230 ; + } +#Adiabatic tendency of meridional wind +'m**2 s**-3' = { + table2Version = 130 ; + indicatorOfParameter = 231 ; + } +#Mean vertical velocity +'Pa s**-1' = { + table2Version = 130 ; + indicatorOfParameter = 232 ; + } +#2m temperature anomaly of at least +2K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 1 ; + } +#2m temperature anomaly of at least +1K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 2 ; + } +#2m temperature anomaly of at least 0K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 3 ; + } +#2m temperature anomaly of at most -1K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 4 ; + } +#2m temperature anomaly of at most -2K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 8 ; + } +#Surface temperature anomaly of at least 0K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'%' = { + table2Version = 131 ; + indicatorOfParameter = 10 ; + } +#Height of 0 degree isotherm probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 15 ; + } +#Height of snowfall limit probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 16 ; + } +#Showalter index probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 17 ; + } +#Whiting index probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 18 ; + } +#Temperature anomaly less than -2 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 20 ; + } +#Temperature anomaly of at least +2 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 21 ; + } +#Temperature anomaly less than -8 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 22 ; + } +#Temperature anomaly less than -4 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly greater than +4 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly greater than +8 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Convective available potential energy probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 59 ; + } +#Total precipitation less than 0.1 mm +'%' = { + table2Version = 131 ; + indicatorOfParameter = 64 ; + } +#Total precipitation rate less than 1 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'%' = { + table2Version = 131 ; + indicatorOfParameter = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 69 ; + } +#10 metre wind gust of at least 15 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 70 ; + } +#10 metre wind gust of at least 20 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 71 ; + } +#10 metre wind gust of at least 25 m/s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 72 ; + } +#2 metre temperature less than 273.15 K +'%' = { + table2Version = 131 ; + indicatorOfParameter = 73 ; + } +#Significant wave height of at least 2 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 74 ; + } +#Significant wave height of at least 4 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 75 ; + } +#Significant wave height of at least 6 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 76 ; + } +#Significant wave height of at least 8 m +'%' = { + table2Version = 131 ; + indicatorOfParameter = 77 ; + } +#Mean wave period of at least 8 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 78 ; + } +#Mean wave period of at least 10 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 79 ; + } +#Mean wave period of at least 12 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 80 ; + } +#Mean wave period of at least 15 s +'%' = { + table2Version = 131 ; + indicatorOfParameter = 81 ; + } +#Geopotential probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 130 ; + } +#Soil temperature level 1 probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 139 ; + } +#Snowfall (convective + stratiform) probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 144 ; + } +#Mean sea level pressure probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Total cloud cover probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#10 metre speed probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 167 ; + } +#Maximum 2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 201 ; + } +#Minimum 2 metre temperature probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 202 ; + } +#Total precipitation probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 228 ; + } +#Significant wave height probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 229 ; + } +#Mean wave period probability +'%' = { + table2Version = 131 ; + indicatorOfParameter = 232 ; + } +#Indicates a missing value +'~' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 49 ; + } +#Snowfall index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 144 ; + } +#10 metre speed index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 165 ; + } +#2 metre temperature index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 167 ; + } +#Maximum temperature at 2 metres index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 202 ; + } +#Total precipitation index +'(-1 to 1)' = { + table2Version = 132 ; + indicatorOfParameter = 228 ; + } +#2m temperature probability less than -10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#2m temperature probability less than -5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 2 ; + } +#2m temperature probability less than 0 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 3 ; + } +#2m temperature probability less than 5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 4 ; + } +#2m temperature probability less than 10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 5 ; + } +#2m temperature probability greater than 25 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 6 ; + } +#2m temperature probability greater than 30 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 7 ; + } +#2m temperature probability greater than 35 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 8 ; + } +#2m temperature probability greater than 40 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 9 ; + } +#2m temperature probability greater than 45 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'%' = { + table2Version = 133 ; + indicatorOfParameter = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'%' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Total precipitation probability of at least 1 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Total precipitation probability of at least 5 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#Total precipitation probability of at least 10 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#Total precipitation probability of at least 20 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Total precipitation probability of at least 40 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Total precipitation probability of at least 60 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Total precipitation probability of at least 80 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Total precipitation probability of at least 100 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Total precipitation probability of at least 150 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Total precipitation probability of at least 200 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Total precipitation probability of at least 300 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Snowfall probability of at least 1 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Snowfall probability of at least 5 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Snowfall probability of at least 10 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Snowfall probability of at least 20 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Snowfall probability of at least 40 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Snowfall probability of at least 60 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Snowfall probability of at least 80 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#Snowfall probability of at least 100 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#Snowfall probability of at least 150 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Snowfall probability of at least 200 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snowfall probability of at least 300 mm +'%' = { + table2Version = 133 ; + indicatorOfParameter = 52 ; + } +#Total Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 53 ; + } +#Total Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 54 ; + } +#Total Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 55 ; + } +#Total Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 56 ; + } +#Total Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 57 ; + } +#Total Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 58 ; + } +#Total Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 59 ; + } +#Total Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 60 ; + } +#Total Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 61 ; + } +#Total Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 62 ; + } +#High Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 63 ; + } +#High Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 64 ; + } +#High Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 65 ; + } +#High Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#High Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#High Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#High Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#High Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#High Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#High Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Low Cloud Cover probability greater than 10% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 83 ; + } +#Low Cloud Cover probability greater than 20% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 84 ; + } +#Low Cloud Cover probability greater than 30% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 85 ; + } +#Low Cloud Cover probability greater than 40% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 86 ; + } +#Low Cloud Cover probability greater than 50% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 87 ; + } +#Low Cloud Cover probability greater than 60% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Low Cloud Cover probability greater than 70% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Low Cloud Cover probability greater than 80% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 90 ; + } +#Low Cloud Cover probability greater than 90% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Low Cloud Cover probability greater than 99% +'%' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Maximum of significant wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 200 ; + } +#Period corresponding to maximum individual wave height +'s' = { + table2Version = 140 ; + indicatorOfParameter = 217 ; + } +#Maximum individual wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 218 ; + } +#Model bathymetry +'m' = { + table2Version = 140 ; + indicatorOfParameter = 219 ; + } +#Mean wave period based on first moment +'s' = { + table2Version = 140 ; + indicatorOfParameter = 220 ; + } +#Mean zero-crossing wave period +'s' = { + table2Version = 140 ; + indicatorOfParameter = 221 ; + } +#Wave spectral directional width +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 222 ; + } +#Mean wave period based on first moment for wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 223 ; + } +#Mean wave period based on second moment for wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 224 ; + } +#Wave spectral directional width for wind waves +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 225 ; + } +#Mean wave period based on first moment for swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 226 ; + } +#Mean wave period based on second moment for swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 227 ; + } +#Wave spectral directional width for swell +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 228 ; + } +#Significant height of combined wind waves and swell +'m' = { + table2Version = 140 ; + indicatorOfParameter = 229 ; + } +#Mean wave direction +'Degree true' = { + table2Version = 140 ; + indicatorOfParameter = 230 ; + } +#Peak wave period +'s' = { + table2Version = 140 ; + indicatorOfParameter = 231 ; + } +#Mean wave period +'s' = { + table2Version = 140 ; + indicatorOfParameter = 232 ; + } +#Coefficient of drag with waves +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 233 ; + } +#Significant height of wind waves +'m' = { + table2Version = 140 ; + indicatorOfParameter = 234 ; + } +#Mean direction of wind waves +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 235 ; + } +#Mean period of wind waves +'s' = { + table2Version = 140 ; + indicatorOfParameter = 236 ; + } +#Significant height of total swell +'m' = { + table2Version = 140 ; + indicatorOfParameter = 237 ; + } +#Mean direction of total swell +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 238 ; + } +#Mean period of total swell +'s' = { + table2Version = 140 ; + indicatorOfParameter = 239 ; + } +#Standard deviation wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 240 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 241 ; + } +#Mean wind direction +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 242 ; + } +#Standard deviation of 10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 243 ; + } +#Mean square slope of waves +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 244 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 245 ; + } +#Altimeter wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 246 ; + } +#Altimeter corrected wave height +'m' = { + table2Version = 140 ; + indicatorOfParameter = 247 ; + } +#Altimeter range relative correction +'~' = { + table2Version = 140 ; + indicatorOfParameter = 248 ; + } +#10 metre wind direction +'degrees' = { + table2Version = 140 ; + indicatorOfParameter = 249 ; + } +#2D wave spectra (multiple) +'m**2 s radian**-1' = { + table2Version = 140 ; + indicatorOfParameter = 250 ; + } +#2D wave spectra (single) +'m**2 s radian**-1' = { + table2Version = 140 ; + indicatorOfParameter = 251 ; + } +#Wave spectral kurtosis +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 252 ; + } +#Benjamin-Feir index +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 253 ; + } +#Wave spectral peakedness +'dimensionless' = { + table2Version = 140 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +#Ocean potential temperature +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 129 ; + } +#Ocean salinity +'psu' = { + table2Version = 150 ; + indicatorOfParameter = 130 ; + } +#Ocean potential density +'kg m**-3 -1000' = { + table2Version = 150 ; + indicatorOfParameter = 131 ; + } +#Ocean U wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 133 ; + } +#Ocean V wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 134 ; + } +#Ocean W wind component +'m s**-1' = { + table2Version = 150 ; + indicatorOfParameter = 135 ; + } +#Richardson number +'~' = { + table2Version = 150 ; + indicatorOfParameter = 137 ; + } +#U*V product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 139 ; + } +#U*T product +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 140 ; + } +#V*T product +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 141 ; + } +#U*U product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 142 ; + } +#V*V product +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 143 ; + } +#UV - U~V~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 144 ; + } +#UT - U~T~ +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 145 ; + } +#VT - V~T~ +'m s**-1 deg C' = { + table2Version = 150 ; + indicatorOfParameter = 146 ; + } +#UU - U~U~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 147 ; + } +#VV - V~V~ +'m s**-2' = { + table2Version = 150 ; + indicatorOfParameter = 148 ; + } +#Sea level +'m' = { + table2Version = 150 ; + indicatorOfParameter = 152 ; + } +#Barotropic stream function +'~' = { + table2Version = 150 ; + indicatorOfParameter = 153 ; + } +#Mixed layer depth +'m' = { + table2Version = 150 ; + indicatorOfParameter = 154 ; + } +#Depth +'m' = { + table2Version = 150 ; + indicatorOfParameter = 155 ; + } +#U stress +'Pa' = { + table2Version = 150 ; + indicatorOfParameter = 168 ; + } +#V stress +'Pa' = { + table2Version = 150 ; + indicatorOfParameter = 169 ; + } +#Turbulent kinetic energy input +'~' = { + table2Version = 150 ; + indicatorOfParameter = 170 ; + } +#Net surface heat flux +'~' = { + table2Version = 150 ; + indicatorOfParameter = 171 ; + } +#Surface solar radiation +'~' = { + table2Version = 150 ; + indicatorOfParameter = 172 ; + } +#P-E +'~' = { + table2Version = 150 ; + indicatorOfParameter = 173 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 180 ; + } +#Heat flux correction +'J m**-2' = { + table2Version = 150 ; + indicatorOfParameter = 181 ; + } +#Observed sea surface temperature +'deg C' = { + table2Version = 150 ; + indicatorOfParameter = 182 ; + } +#Observed heat flux +'J m**-2' = { + table2Version = 150 ; + indicatorOfParameter = 183 ; + } +#Indicates a missing value +'~' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +#In situ Temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 128 ; + } +#Sea water potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Modulus of strain rate tensor +'s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 134 ; + } +#Vertical viscosity +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 135 ; + } +#Vertical diffusivity +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 136 ; + } +#Bottom level Depth +'m' = { + table2Version = 151 ; + indicatorOfParameter = 137 ; + } +#Sea water sigma theta +'kg m**-3' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Richardson number +'~' = { + table2Version = 151 ; + indicatorOfParameter = 139 ; + } +#UV product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 140 ; + } +#UT product +'m s**-1 degC' = { + table2Version = 151 ; + indicatorOfParameter = 141 ; + } +#VT product +'m s**-1 deg C' = { + table2Version = 151 ; + indicatorOfParameter = 142 ; + } +#UU product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 143 ; + } +#VV product +'m**2 s**-2' = { + table2Version = 151 ; + indicatorOfParameter = 144 ; + } +#Sea surface height +'m' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Sea level previous timestep +'m' = { + table2Version = 151 ; + indicatorOfParameter = 146 ; + } +#Ocean barotropic stream function +'m**3 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Mixed layer depth +'m' = { + table2Version = 151 ; + indicatorOfParameter = 148 ; + } +#Bottom Pressure (equivalent height) +'m' = { + table2Version = 151 ; + indicatorOfParameter = 149 ; + } +#Steric height +'m' = { + table2Version = 151 ; + indicatorOfParameter = 150 ; + } +#Curl of Wind Stress +'N m**-3' = { + table2Version = 151 ; + indicatorOfParameter = 151 ; + } +#Divergence of wind stress +'Nm**-3' = { + table2Version = 151 ; + indicatorOfParameter = 152 ; + } +#Surface downward eastward stress +'N m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'N m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } +#Turbulent kinetic energy input +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 155 ; + } +#Net surface heat flux +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 156 ; + } +#Absorbed solar radiation +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 157 ; + } +#Precipitation - evaporation +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 158 ; + } +#Specified sea surface temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 159 ; + } +#Specified surface heat flux +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 160 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 161 ; + } +#Heat flux correction +'J m**-2' = { + table2Version = 151 ; + indicatorOfParameter = 162 ; + } +#Depth of 20C isotherm +'m' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } +#Average potential temperature in the upper 300m +'degrees C' = { + table2Version = 151 ; + indicatorOfParameter = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 166 ; + } +#Vertically integrated zonal volume transport +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 167 ; + } +#Vertically integrated meridional volume transport +'m**2 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 168 ; + } +#Vertically integrated zonal heat transport +'J m**-1 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 169 ; + } +#Vertically integrated meridional heat transport +'J m**-1 s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 170 ; + } +#U velocity maximum +'m s**-1' = { + table2Version = 151 ; + indicatorOfParameter = 171 ; + } +#Depth of the velocity maximum +'m' = { + table2Version = 151 ; + indicatorOfParameter = 172 ; + } +#Salinity maximum +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 173 ; + } +#Depth of salinity maximum +'m' = { + table2Version = 151 ; + indicatorOfParameter = 174 ; + } +#Average salinity in the upper 300m +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 175 ; + } +#Layer Thickness at scalar points +'m' = { + table2Version = 151 ; + indicatorOfParameter = 176 ; + } +#Layer Thickness at vector points +'m' = { + table2Version = 151 ; + indicatorOfParameter = 177 ; + } +#Potential temperature increment +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 178 ; + } +#Potential temperature analysis error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 179 ; + } +#Background potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 180 ; + } +#Analysed potential temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 181 ; + } +#Potential temperature background error +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 182 ; + } +#Analysed salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 183 ; + } +#Salinity increment +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 184 ; + } +#Estimated Bias in Temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 185 ; + } +#Estimated Bias in Salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 186 ; + } +#Zonal Velocity increment (from balance operator) +'m s**-1 per time step' = { + table2Version = 151 ; + indicatorOfParameter = 187 ; + } +#Meridional Velocity increment (from balance operator) +'~' = { + table2Version = 151 ; + indicatorOfParameter = 188 ; + } +#Salinity increment (from salinity data) +'psu per time step' = { + table2Version = 151 ; + indicatorOfParameter = 190 ; + } +#Salinity analysis error +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 191 ; + } +#Background Salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 192 ; + } +#Salinity background error +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 194 ; + } +#Estimated temperature bias from assimilation +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 199 ; + } +#Estimated salinity bias from assimilation +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 200 ; + } +#Temperature increment from relaxation term +'deg C per time step' = { + table2Version = 151 ; + indicatorOfParameter = 201 ; + } +#Salinity increment from relaxation term +'~' = { + table2Version = 151 ; + indicatorOfParameter = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Pa m**-1' = { + table2Version = 151 ; + indicatorOfParameter = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Pa m**-1' = { + table2Version = 151 ; + indicatorOfParameter = 204 ; + } +#Estimated temperature bias from relaxation +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 205 ; + } +#Estimated salinity bias from relaxation +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 206 ; + } +#First guess bias in temperature +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 207 ; + } +#First guess bias in salinity +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 208 ; + } +#Applied bias in pressure +'Pa' = { + table2Version = 151 ; + indicatorOfParameter = 209 ; + } +#FG bias in pressure +'Pa' = { + table2Version = 151 ; + indicatorOfParameter = 210 ; + } +#Bias in temperature(applied) +'deg C' = { + table2Version = 151 ; + indicatorOfParameter = 211 ; + } +#Bias in salinity (applied) +'psu' = { + table2Version = 151 ; + indicatorOfParameter = 212 ; + } +#Indicates a missing value +'~' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +#10 metre wind gust during averaging time +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 49 ; + } +#vertical velocity (pressure) +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 135 ; + } +#Precipitable water content +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 137 ; + } +#Soil wetness level 1 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 140 ; + } +#Snow depth +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 143 ; + } +#Snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 144 ; + } +#Height +'m' = { + table2Version = 160 ; + indicatorOfParameter = 156 ; + } +#Relative humidity +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 157 ; + } +#Soil wetness level 2 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 171 ; + } +#East-West surface stress +'N m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress +'N m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 182 ; + } +#Soil wetness level 3 +'m' = { + table2Version = 160 ; + indicatorOfParameter = 184 ; + } +#Skin reservoir content +'kg m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 198 ; + } +#Percentage of vegetation +'%' = { + table2Version = 160 ; + indicatorOfParameter = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'K' = { + table2Version = 160 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'K' = { + table2Version = 160 ; + indicatorOfParameter = 202 ; + } +#Runoff +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 205 ; + } +#Standard deviation of geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 206 ; + } +#Covariance of temperature and geopotential +'K m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 207 ; + } +#Standard deviation of temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 208 ; + } +#Covariance of specific humidity and geopotential +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 209 ; + } +#Covariance of specific humidity and temperature +'K' = { + table2Version = 160 ; + indicatorOfParameter = 210 ; + } +#Standard deviation of specific humidity +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 211 ; + } +#Covariance of U component and geopotential +'m**3 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 212 ; + } +#Covariance of U component and temperature +'K m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 213 ; + } +#Covariance of U component and specific humidity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 214 ; + } +#Standard deviation of U velocity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 215 ; + } +#Covariance of V component and geopotential +'m**3 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 216 ; + } +#Covariance of V component and temperature +'K m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 217 ; + } +#Covariance of V component and specific humidity +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 218 ; + } +#Covariance of V component and U component +'m**2 s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of V component +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 220 ; + } +#Covariance of W component and geopotential +'Pa m**2 s**-3' = { + table2Version = 160 ; + indicatorOfParameter = 221 ; + } +#Covariance of W component and temperature +'K Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 222 ; + } +#Covariance of W component and specific humidity +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 223 ; + } +#Covariance of W component and U component +'Pa m s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 224 ; + } +#Covariance of W component and V component +'Pa m s**-2' = { + table2Version = 160 ; + indicatorOfParameter = 225 ; + } +#Standard deviation of vertical velocity +'Pa s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 226 ; + } +#Instantaneous surface heat flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 231 ; + } +#Convective snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'kg m**-2 s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 240 ; + } +#Cloud liquid water content +'kg kg**-1' = { + table2Version = 160 ; + indicatorOfParameter = 241 ; + } +#Cloud cover +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo +'~' = { + table2Version = 160 ; + indicatorOfParameter = 243 ; + } +#10 metre wind speed +'m s**-1' = { + table2Version = 160 ; + indicatorOfParameter = 246 ; + } +#Momentum flux +'N m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 247 ; + } +#Gravity wave dissipation flux +'J m**-2' = { + table2Version = 160 ; + indicatorOfParameter = 249 ; + } +#Heaviside beta function +'(0 - 1)' = { + table2Version = 160 ; + indicatorOfParameter = 254 ; + } +#Surface geopotential +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 51 ; + } +#Vertical integral of mass of atmosphere +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 53 ; + } +#Vertical integral of temperature +'K kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 54 ; + } +#Vertical integral of water vapour +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 55 ; + } +#Vertical integral of cloud liquid water +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 56 ; + } +#Vertical integral of cloud frozen water +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 57 ; + } +#Vertical integral of ozone +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 58 ; + } +#Vertical integral of kinetic energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 59 ; + } +#Vertical integral of thermal energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 60 ; + } +#Vertical integral of potential+internal energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 61 ; + } +#Vertical integral of potential+internal+latent energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 62 ; + } +#Vertical integral of total energy +'J m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 63 ; + } +#Vertical integral of energy conversion +'W m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 64 ; + } +#Vertical integral of eastward mass flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 65 ; + } +#Vertical integral of northward mass flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 67 ; + } +#Vertical integral of northward kinetic energy flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 68 ; + } +#Vertical integral of eastward heat flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 69 ; + } +#Vertical integral of northward heat flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 70 ; + } +#Vertical integral of eastward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 71 ; + } +#Vertical integral of northward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 72 ; + } +#Vertical integral of eastward geopotential flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 73 ; + } +#Vertical integral of northward geopotential flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 74 ; + } +#Vertical integral of eastward total energy flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 75 ; + } +#Vertical integral of northward total energy flux +'W m**-1' = { + table2Version = 162 ; + indicatorOfParameter = 76 ; + } +#Vertical integral of eastward ozone flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 77 ; + } +#Vertical integral of northward ozone flux +'kg m**-1 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 78 ; + } +#Vertical integral of divergence of mass flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'W m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'W m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 83 ; + } +#Vertical integral of divergence of moisture flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 84 ; + } +#Vertical integral of divergence of geopotential flux +'W m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 85 ; + } +#Vertical integral of divergence of total energy flux +'W m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 86 ; + } +#Vertical integral of divergence of ozone flux +'kg m**-2 s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 87 ; + } +#Tendency of short wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 100 ; + } +#Tendency of long wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 101 ; + } +#Tendency of clear sky short wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 102 ; + } +#Tendency of clear sky long wave radiation +'K' = { + table2Version = 162 ; + indicatorOfParameter = 103 ; + } +#Updraught mass flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 104 ; + } +#Downdraught mass flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 105 ; + } +#Updraught detrainment rate +'kg m**-3' = { + table2Version = 162 ; + indicatorOfParameter = 106 ; + } +#Downdraught detrainment rate +'kg m**-3' = { + table2Version = 162 ; + indicatorOfParameter = 107 ; + } +#Total precipitation flux +'kg m**-2' = { + table2Version = 162 ; + indicatorOfParameter = 108 ; + } +#Turbulent diffusion coefficient for heat +'m**2' = { + table2Version = 162 ; + indicatorOfParameter = 109 ; + } +#Tendency of temperature due to physics +'K' = { + table2Version = 162 ; + indicatorOfParameter = 110 ; + } +#Tendency of specific humidity due to physics +'kg kg**-1' = { + table2Version = 162 ; + indicatorOfParameter = 111 ; + } +#Tendency of u component due to physics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 112 ; + } +#Tendency of v component due to physics +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 113 ; + } +#Variance of geopotential +'m**4 s**-4' = { + table2Version = 162 ; + indicatorOfParameter = 206 ; + } +#Covariance of geopotential/temperature +'m**2 K s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 207 ; + } +#Variance of temperature +'K**2' = { + table2Version = 162 ; + indicatorOfParameter = 208 ; + } +#Covariance of geopotential/specific humidity +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 209 ; + } +#Covariance of temperature/specific humidity +'K' = { + table2Version = 162 ; + indicatorOfParameter = 210 ; + } +#Variance of specific humidity +'~' = { + table2Version = 162 ; + indicatorOfParameter = 211 ; + } +#Covariance of u component/geopotential +'m**3 s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 212 ; + } +#Covariance of u component/temperature +'m s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 213 ; + } +#Covariance of u component/specific humidity +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 214 ; + } +#Variance of u component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 215 ; + } +#Covariance of v component/geopotential +'m**3 s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 216 ; + } +#Covariance of v component/temperature +'m s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 217 ; + } +#Covariance of v component/specific humidity +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 218 ; + } +#Covariance of v component/u component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 219 ; + } +#Variance of v component +'m**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 220 ; + } +#Covariance of omega/geopotential +'m**2 Pa s**-3' = { + table2Version = 162 ; + indicatorOfParameter = 221 ; + } +#Covariance of omega/temperature +'Pa s**-1 K' = { + table2Version = 162 ; + indicatorOfParameter = 222 ; + } +#Covariance of omega/specific humidity +'Pa s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 223 ; + } +#Covariance of omega/u component +'m Pa s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 224 ; + } +#Covariance of omega/v component +'m Pa s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 225 ; + } +#Variance of omega +'Pa**2 s**-2' = { + table2Version = 162 ; + indicatorOfParameter = 226 ; + } +#Variance of surface pressure +'Pa**2' = { + table2Version = 162 ; + indicatorOfParameter = 227 ; + } +#Variance of relative humidity +'dimensionless' = { + table2Version = 162 ; + indicatorOfParameter = 229 ; + } +#Covariance of u component/ozone +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 230 ; + } +#Covariance of v component/ozone +'m s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 231 ; + } +#Covariance of omega/ozone +'Pa s**-1' = { + table2Version = 162 ; + indicatorOfParameter = 232 ; + } +#Variance of ozone +'dimensionless' = { + table2Version = 162 ; + indicatorOfParameter = 233 ; + } +#Indicates a missing value +'~' = { + table2Version = 162 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 170 ; + indicatorOfParameter = 149 ; + } +#Soil wetness level 2 +'m' = { + table2Version = 170 ; + indicatorOfParameter = 171 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 170 ; + indicatorOfParameter = 179 ; + } +#Stream function anomaly +'m**2 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 1 ; + } +#Velocity potential anomaly +'m**2 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 2 ; + } +#Potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 3 ; + } +#Equivalent potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 4 ; + } +#Saturated equivalent potential temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 5 ; + } +#U component of divergent wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 11 ; + } +#V component of divergent wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 12 ; + } +#U component of rotational wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 13 ; + } +#V component of rotational wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 14 ; + } +#Unbalanced component of temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 22 ; + } +#Unbalanced component of divergence anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 23 ; + } +#Lake cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 26 ; + } +#Low vegetation cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 27 ; + } +#High vegetation cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 28 ; + } +#Type of low vegetation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 29 ; + } +#Type of high vegetation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 30 ; + } +#Sea-ice cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 31 ; + } +#Snow albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 32 ; + } +#Snow density anomaly +'kg m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 33 ; + } +#Sea surface temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 34 ; + } +#Ice surface temperature anomaly layer 1 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 35 ; + } +#Ice surface temperature anomaly layer 2 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 36 ; + } +#Ice surface temperature anomaly layer 3 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 37 ; + } +#Ice surface temperature anomaly layer 4 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 38 ; + } +#Volumetric soil water anomaly layer 1 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water anomaly layer 2 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water anomaly layer 3 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water anomaly layer 4 +'m**3 m**-3' = { + table2Version = 171 ; + indicatorOfParameter = 42 ; + } +#Soil type anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 43 ; + } +#Snow evaporation anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 45 ; + } +#Solar duration anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 46 ; + } +#Direct solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 48 ; + } +#10 metre wind gust anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 49 ; + } +#Large-scale precipitation fraction anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 52 ; + } +#Montgomery potential anomaly +'m**2 s**-2' = { + table2Version = 171 ; + indicatorOfParameter = 53 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 56 ; + } +#Downward UV radiation at the surface anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 58 ; + } +#Convective available potential energy anomaly +'J kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 59 ; + } +#Potential vorticity anomaly +'K m**2 kg**-1 s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 60 ; + } +#Total precipitation from observations anomaly +'Millimetres*100 + number of stations' = { + table2Version = 171 ; + indicatorOfParameter = 61 ; + } +#Observation count anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 62 ; + } +#Start time for skin temperature difference anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 63 ; + } +#Finish time for skin temperature difference anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 64 ; + } +#Skin temperature difference anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 65 ; + } +#Total column liquid water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 78 ; + } +#Total column ice water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 79 ; + } +#Vertically integrated total energy anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + table2Version = 171 ; + indicatorOfParameter = 126 ; + } +#Atmospheric tide anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 127 ; + } +#Budget values anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 128 ; + } +#Geopotential anomaly +'m**2 s**-2' = { + table2Version = 171 ; + indicatorOfParameter = 129 ; + } +#Temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 130 ; + } +#U component of wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 131 ; + } +#V component of wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 132 ; + } +#Specific humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 133 ; + } +#Surface pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity (pressure) anomaly +'Pa s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 135 ; + } +#Total column water anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 136 ; + } +#Total column water vapour anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 137 ; + } +#Relative vorticity anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 138 ; + } +#Soil temperature anomaly level 1 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 139 ; + } +#Soil wetness anomaly level 1 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 140 ; + } +#Snow depth anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 147 ; + } +#Charnock anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 148 ; + } +#Surface net radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 149 ; + } +#Top net radiation anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 150 ; + } +#Mean sea level pressure anomaly +'Pa' = { + table2Version = 171 ; + indicatorOfParameter = 151 ; + } +#Logarithm of surface pressure anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 152 ; + } +#Short-wave heating rate anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 154 ; + } +#Relative divergence anomaly +'s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 155 ; + } +#Height anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 156 ; + } +#Relative humidity anomaly +'%' = { + table2Version = 171 ; + indicatorOfParameter = 157 ; + } +#Tendency of surface pressure anomaly +'Pa s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 158 ; + } +#Boundary layer height anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 159 ; + } +#Standard deviation of orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 161 ; + } +#Angle of sub-gridscale orography anomaly +'radians' = { + table2Version = 171 ; + indicatorOfParameter = 162 ; + } +#Slope of sub-gridscale orography anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 163 ; + } +#Total cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 164 ; + } +#10 metre U wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 166 ; + } +#2 metre temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 167 ; + } +#2 metre dewpoint temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 168 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 169 ; + } +#Soil temperature anomaly level 2 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 170 ; + } +#Soil wetness anomaly level 2 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 171 ; + } +#Surface roughness anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 173 ; + } +#Albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 174 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 182 ; + } +#Soil temperature anomaly level 3 +'K' = { + table2Version = 171 ; + indicatorOfParameter = 183 ; + } +#Soil wetness anomaly level 3 +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 184 ; + } +#Convective cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 185 ; + } +#Low cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 186 ; + } +#Medium cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 187 ; + } +#High cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 188 ; + } +#Sunshine duration anomaly +'s' = { + table2Version = 171 ; + indicatorOfParameter = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 193 ; + } +#Brightness temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 198 ; + } +#Vegetation fraction anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 199 ; + } +#Variance of sub-gridscale orography anomaly +'m**2' = { + table2Version = 171 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature at 2 metres anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 201 ; + } +#Minimum temperature at 2 metres anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 202 ; + } +#Ozone mass mixing ratio anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 203 ; + } +#Precipitation analysis weights anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 204 ; + } +#Runoff anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 205 ; + } +#Total column ozone anomaly +'kg m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 206 ; + } +#10 metre wind speed anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 207 ; + } +#Top net solar radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 212 ; + } +#Diabatic heating by radiation anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 219 ; + } +#East-West gravity wave drag tendency anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 220 ; + } +#North-South gravity wave drag tendency anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 221 ; + } +#Convective tendency of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 222 ; + } +#Convective tendency of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion of humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 226 ; + } +#Change from removal of negative humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 227 ; + } +#Total precipitation anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 228 ; + } +#Instantaneous X surface stress anomaly +'N m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 229 ; + } +#Instantaneous Y surface stress anomaly +'N m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 230 ; + } +#Instantaneous surface heat flux anomaly +'J m**-2' = { + table2Version = 171 ; + indicatorOfParameter = 231 ; + } +#Instantaneous moisture flux anomaly +'kg m**-2 s' = { + table2Version = 171 ; + indicatorOfParameter = 232 ; + } +#Apparent surface humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 234 ; + } +#Skin temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 235 ; + } +#Soil temperature level 4 anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 236 ; + } +#Soil wetness level 4 anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 237 ; + } +#Temperature of snow layer anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 238 ; + } +#Convective snowfall anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent' = { + table2Version = 171 ; + indicatorOfParameter = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 241 ; + } +#Accumulated liquid water tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 242 ; + } +#Forecast albedo anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 243 ; + } +#Forecast surface roughness anomaly +'m' = { + table2Version = 171 ; + indicatorOfParameter = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'~' = { + table2Version = 171 ; + indicatorOfParameter = 245 ; + } +#Cloud liquid water content anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 246 ; + } +#Cloud ice water content anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 247 ; + } +#Cloud cover anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 248 ; + } +#Accumulated ice water tendency anomaly +'(-1 to 1)' = { + table2Version = 171 ; + indicatorOfParameter = 249 ; + } +#Ice age anomaly +'(0 - 1)' = { + table2Version = 171 ; + indicatorOfParameter = 250 ; + } +#Adiabatic tendency of temperature anomaly +'K' = { + table2Version = 171 ; + indicatorOfParameter = 251 ; + } +#Adiabatic tendency of humidity anomaly +'kg kg**-1' = { + table2Version = 171 ; + indicatorOfParameter = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'m s**-1' = { + table2Version = 171 ; + indicatorOfParameter = 254 ; + } +#Indicates a missing value +'~' = { + table2Version = 171 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 44 ; + } +#Snowmelt +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 48 ; + } +#Mean large-scale precipitation fraction +'~' = { + table2Version = 172 ; + indicatorOfParameter = 50 ; + } +#Mean large-scale precipitation rate +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 143 ; + } +#Mean total snowfall rate +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 145 ; + } +#Mean surface sensible heat flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 146 ; + } +#Mean surface latent heat flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 147 ; + } +#Mean surface net radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 149 ; + } +#Mean short-wave heating rate +'K s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 153 ; + } +#Mean long-wave heating rate +'K s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 154 ; + } +#Mean surface downward solar radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 169 ; + } +#Mean surface downward thermal radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 175 ; + } +#Mean surface net solar radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 176 ; + } +#Mean surface net thermal radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 177 ; + } +#Mean top net solar radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 178 ; + } +#Mean top net thermal radiation flux +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress rate of accumulation +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress rate of accumulation +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 181 ; + } +#Evaporation +'m of water s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 182 ; + } +#Mean sunshine duration rate +'s s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress +'N m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 197 ; + } +#Mean runoff rate +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 211 ; + } +#Solar insolation rate of accumulation +'W m**-2' = { + table2Version = 172 ; + indicatorOfParameter = 212 ; + } +#Mean total precipitation rate +'m s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall +'m of water equivalent s**-1' = { + table2Version = 172 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 172 ; + indicatorOfParameter = 255 ; + } +#Snow evaporation anomaly +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 44 ; + } +#Snowmelt anomaly +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + table2Version = 173 ; + indicatorOfParameter = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 142 ; + } +#Mean convective precipitation rate anomaly +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 147 ; + } +#Surface net radiation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 149 ; + } +#Short-wave heating rate anomaly +'K s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 153 ; + } +#Long-wave heating rate anomaly +'K s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 181 ; + } +#Evaporation anomalous rate of accumulation +'m of water s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'dimensionless' = { + table2Version = 173 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 197 ; + } +#Runoff anomalous rate of accumulation +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + table2Version = 173 ; + indicatorOfParameter = 211 ; + } +#Solar insolation anomalous rate of accumulation +'W m**-2 s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 212 ; + } +#Total precipitation anomalous rate of accumulation +'m s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 228 ; + } +#Convective snowfall anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent s**-1' = { + table2Version = 173 ; + indicatorOfParameter = 240 ; + } +#Indicates a missing value +'~' = { + table2Version = 173 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 174 ; + indicatorOfParameter = 6 ; + } +#Surface runoff +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 8 ; + } +#Sub-surface runoff +'kg m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 9 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 174 ; + indicatorOfParameter = 42 ; + } +#10 metre wind gust in the last 24 hours +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'m s**-1' = { + table2Version = 174 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'K' = { + table2Version = 174 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + table2Version = 174 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + table2Version = 174 ; + indicatorOfParameter = 90 ; + } +#Mean sea surface temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 94 ; + } +#1.5m specific humidity +'kg kg**-1' = { + table2Version = 174 ; + indicatorOfParameter = 95 ; + } +#Sea-ice thickness +'m' = { + table2Version = 174 ; + indicatorOfParameter = 98 ; + } +#Liquid water potential temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 99 ; + } +#Ocean ice concentration +'(0 - 1)' = { + table2Version = 174 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'m' = { + table2Version = 174 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + table2Version = 174 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'K' = { + table2Version = 174 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + table2Version = 174 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + table2Version = 174 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'K' = { + table2Version = 174 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 174 ; + indicatorOfParameter = 255 ; + } +#Total soil moisture +'m' = { + table2Version = 175 ; + indicatorOfParameter = 6 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 31 ; + } +#Open-sea surface temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + table2Version = 175 ; + indicatorOfParameter = 42 ; + } +#10m wind gust in the last 24 hours +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 83 ; + } +#10m U wind over land +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 85 ; + } +#10m V wind over land +'m s**-1' = { + table2Version = 175 ; + indicatorOfParameter = 86 ; + } +#1.5m temperature over land +'K' = { + table2Version = 175 ; + indicatorOfParameter = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + table2Version = 175 ; + indicatorOfParameter = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + table2Version = 175 ; + indicatorOfParameter = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + table2Version = 175 ; + indicatorOfParameter = 90 ; + } +#Ocean ice concentration +'(0 - 1)' = { + table2Version = 175 ; + indicatorOfParameter = 110 ; + } +#Ocean mean ice depth +'m' = { + table2Version = 175 ; + indicatorOfParameter = 111 ; + } +#Soil temperature layer 1 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + table2Version = 175 ; + indicatorOfParameter = 164 ; + } +#1.5m temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 167 ; + } +#1.5m dewpoint temperature +'K' = { + table2Version = 175 ; + indicatorOfParameter = 168 ; + } +#Soil temperature layer 2 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + table2Version = 175 ; + indicatorOfParameter = 175 ; + } +#Soil temperature layer 3 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + table2Version = 175 ; + indicatorOfParameter = 202 ; + } +#Soil temperature layer 4 +'K' = { + table2Version = 175 ; + indicatorOfParameter = 236 ; + } +#Indicates a missing value +'~' = { + table2Version = 175 ; + indicatorOfParameter = 255 ; + } +#Total soil wetness +'m' = { + table2Version = 180 ; + indicatorOfParameter = 149 ; + } +#Surface net solar radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + table2Version = 180 ; + indicatorOfParameter = 179 ; + } +#Snow depth +'kg m**-2' = { + table2Version = 190 ; + indicatorOfParameter = 141 ; + } +#Field capacity +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 171 ; + } +#Roughness length +'(0 - 1)' = { + table2Version = 190 ; + indicatorOfParameter = 173 ; + } +#Total soil moisture +'m**3 m**-3' = { + table2Version = 190 ; + indicatorOfParameter = 229 ; + } +#2 metre dewpoint temperature difference +'K' = { + table2Version = 200 ; + indicatorOfParameter = 168 ; + } +#downward shortwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 1 ; + } +#upward shortwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 2 ; + } +#downward longwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 3 ; + } +#upward longwave radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 4 ; + } +#downwd photosynthetic active radiant flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + } +#net shortwave flux +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 6 ; + } +#net longwave flux +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 7 ; + } +#total net radiative flux density +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 9 ; + } +#upw shortw radiant flux density, cloudy part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 10 ; + } +#downw longw radiant flux density, cloudfree part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 11 ; + } +#upw longw radiant flux density, cloudy part +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 12 ; + } +#shortwave radiative heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } +#longwave radiative heating rate +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } +#total radiative heating rate +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 15 ; + } +#soil heat flux, surface +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 16 ; + } +#soil heat flux, bottom of layer +'J m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 17 ; + } +#fractional cloud cover +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } +#cloud cover, grid scale +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } +#specific cloud water content +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } +#cloud water content, grid scale, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 32 ; + } +#specific cloud ice content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } +#cloud ice content, grid scale, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 34 ; + } +#specific rainwater content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } +#specific snow content, grid scale +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } +#specific rainwater content, gs, vert. integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } +#specific snow content, gs, vert. integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } +#total column water +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } +#vert. integral of divergence of tot. water content +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 50 ; + } +#cloud cover CH (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } +#cloud cover CM (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } +#cloud cover CL (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } +#total cloud cover (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 54 ; + } +#fog (0..8) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 55 ; + } +#fog +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 56 ; + } +#cloud cover, convective cirrus +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 60 ; + } +#specific cloud water content, convective clouds +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } +#cloud water content, conv clouds, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 62 ; + } +#specific cloud ice content, convective clouds +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 64 ; + } +#convective mass flux +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 65 ; + } +#Updraft velocity, convection +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 66 ; + } +#entrainment parameter, convection +'m**-1' = { + table2Version = 201 ; + indicatorOfParameter = 67 ; + } +#cloud base, convective clouds (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + } +#cloud top, convective clouds (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + } +#convective layers (00...77) (BKE) +'(0 - 1)' = { + table2Version = 201 ; + indicatorOfParameter = 70 ; + } +#KO-index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 71 ; + } +#convection base index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + } +#convection top index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + } +#convective temperature tendency +'K s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } +#convective tendency of specific humidity +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } +#convective tendency of total heat +'J kg**-1 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 76 ; + } +#convective tendency of total water +'s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 77 ; + } +#convective momentum tendency (X-component) +'m s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } +#convective momentum tendency (Y-component) +'m s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } +#convective vorticity tendency +'s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 80 ; + } +#convective divergence tendency +'s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#top of dry convection (above msl) +'m' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + } +#dry convection top index +'dimensionless' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'m' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + } +#height of snow-fall limit +'m' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + } +#spec. content of precip. particles +'kg kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } +#surface precipitation rate, rain, grid scale +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } +#surface precipitation rate, snow, grid scale +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } +#surface precipitation amount, rain, grid scale +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } +#surface precipitation rate, rain, convective +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } +#surface precipitation rate, snow, convective +'kg s**-1 m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } +#surface precipitation amount, rain, convective +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } +#deviation of pressure from reference value +'Pa' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } +#coefficient of horizontal diffusion +'m**2 s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 150 ; + } +#Maximum wind velocity +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + } +#water content of interception store +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } +#snow temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } +#ice surface temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } +#convective available potential energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } +#Indicates a missing value +'~' = { + table2Version = 201 ; + indicatorOfParameter = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } +#SO2 precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + table2Version = 210 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'%' = { + table2Version = 210 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#CO2 column-mean molar fraction +'ppm' = { + table2Version = 210 ; + indicatorOfParameter = 64 ; + } +#CH4 column-mean molar fraction +'ppb' = { + table2Version = 210 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + table2Version = 210 ; + indicatorOfParameter = 97 ; + } +#Number of positive FRP pixels per grid cell +'~' = { + table2Version = 210 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 166 ; + } +#Radon +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + table2Version = 210 ; + indicatorOfParameter = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 11 ; + } +#Aerosol type 12 mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + table2Version = 211 ; + indicatorOfParameter = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 53 ; + } +#Soil clay content +'%' = { + table2Version = 211 ; + indicatorOfParameter = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 61 ; + } +#Methane +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 64 ; + } +#Total column Methane +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 71 ; + } +#Wildfire flux of Carbon Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 80 ; + } +#Wildfire flux of Carbon Monoxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 81 ; + } +#Wildfire flux of Methane +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 83 ; + } +#Wildfire flux of Hydrogen +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 85 ; + } +#Wildfire flux of Nitrous Oxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 87 ; + } +#Wildfire flux of Total Particulate Matter +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 89 ; + } +#Wildfire flux of Organic Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 90 ; + } +#Wildfire flux of Black Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 91 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + table2Version = 211 ; + indicatorOfParameter = 97 ; + } +#Wildfire observed area +'m**2' = { + table2Version = 211 ; + indicatorOfParameter = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 166 ; + } +#Radon +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 182 ; + } +#Total column Radon +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + table2Version = 211 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + table2Version = 211 ; + indicatorOfParameter = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + table2Version = 211 ; + indicatorOfParameter = 216 ; + } +#Total precipitation observation count +'dimensionless' = { + table2Version = 220 ; + indicatorOfParameter = 228 ; + } +#Convective inhibition +'J kg**-1' = { + table2Version = 228 ; + indicatorOfParameter = 1 ; + } +#Orography +'m' = { + table2Version = 228 ; + indicatorOfParameter = 2 ; + } +#Friction velocity +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 3 ; + } +#Mean temperature at 2 metres +'K' = { + table2Version = 228 ; + indicatorOfParameter = 4 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 5 ; + } +#Mean total cloud cover +'(0 - 1)' = { + table2Version = 228 ; + indicatorOfParameter = 6 ; + } +#Lake depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 7 ; + } +#Lake mix-layer temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 8 ; + } +#Lake mix-layer depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 9 ; + } +#Lake bottom temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 10 ; + } +#Lake total layer temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 11 ; + } +#Lake shape factor +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 12 ; + } +#Lake ice temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 13 ; + } +#Lake ice depth +'m' = { + table2Version = 228 ; + indicatorOfParameter = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'m**-1' = { + table2Version = 228 ; + indicatorOfParameter = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'m**-1' = { + table2Version = 228 ; + indicatorOfParameter = 16 ; + } +#Duct base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 17 ; + } +#Trapping layer base height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 18 ; + } +#Trapping layer top height +'m' = { + table2Version = 228 ; + indicatorOfParameter = 19 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 39 ; + } +#Neutral wind at 10 m u-component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 131 ; + } +#Neutral wind at 10 m v-component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 132 ; + } +#Soil Temperature +'K' = { + table2Version = 228 ; + indicatorOfParameter = 139 ; + } +#Snow depth water equivalent +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 141 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 144 ; + } +#Total Cloud Cover +'%' = { + table2Version = 228 ; + indicatorOfParameter = 164 ; + } +#Field capacity +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 170 ; + } +#Wilting point +'kg m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 171 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 228 ; + indicatorOfParameter = 228 ; + } +#Snow evaporation (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 44 ; + } +#Snowmelt (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 45 ; + } +#Solar duration (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 46 ; + } +#Downward UV radiation at the surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 57 ; + } +#Photosynthetically active radiation at the surface (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 58 ; + } +#Stratiform precipitation (Large-scale precipitation) (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 142 ; + } +#Convective precipitation (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 143 ; + } +#Snowfall (convective + stratiform) (variable resolution) +'m of water equivalent' = { + table2Version = 230 ; + indicatorOfParameter = 144 ; + } +#Boundary layer dissipation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 145 ; + } +#Surface sensible heat flux (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 146 ; + } +#Surface latent heat flux (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 147 ; + } +#Surface solar radiation downwards (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 169 ; + } +#Surface thermal radiation downwards (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 175 ; + } +#Surface net solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 176 ; + } +#Surface net thermal radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 179 ; + } +#East-West surface stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 180 ; + } +#North-South surface stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 181 ; + } +#Evaporation (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 182 ; + } +#Sunshine duration (variable resolution) +'s' = { + table2Version = 230 ; + indicatorOfParameter = 189 ; + } +#Longitudinal component of gravity wave stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 195 ; + } +#Meridional component of gravity wave stress (variable resolution) +'N m**-2 s' = { + table2Version = 230 ; + indicatorOfParameter = 196 ; + } +#Gravity wave dissipation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 197 ; + } +#Skin reservoir content (variable resolution) +'kg m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 198 ; + } +#Runoff (variable resolution) +'m' = { + table2Version = 230 ; + indicatorOfParameter = 205 ; + } +#Top net solar radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 208 ; + } +#Top net thermal radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 209 ; + } +#Surface net solar radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 210 ; + } +#Surface net thermal radiation, clear sky (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 211 ; + } +#TOA incident solar radiation (variable resolution) +'J m**-2' = { + table2Version = 230 ; + indicatorOfParameter = 212 ; + } +#Surface temperature significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 139 ; + } +#Mean sea level pressure significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 151 ; + } +#2 metre temperature significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 167 ; + } +#Total precipitation significance +'%' = { + table2Version = 234 ; + indicatorOfParameter = 228 ; + } +#U-component stokes drift +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 215 ; + } +#V-component stokes drift +'m s**-1' = { + table2Version = 140 ; + indicatorOfParameter = 216 ; + } +#Wildfire radiative power maximum +'W' = { + table2Version = 210 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'kg m**-2 s**-1' = { + table2Version = 210 ; + indicatorOfParameter = 117 ; + } +#Wildfire radiative power maximum +'W' = { + table2Version = 211 ; + indicatorOfParameter = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'kg m**-2 s**-1' = { + table2Version = 211 ; + indicatorOfParameter = 117 ; + } +#V-tendency from non-orographic wave drag +'m s**-2' = { + table2Version = 228 ; + indicatorOfParameter = 134 ; + } +#U-tendency from non-orographic wave drag +'m s**-2' = { + table2Version = 228 ; + indicatorOfParameter = 136 ; + } +#100 metre U wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 246 ; + } +#100 metre V wind component +'m s**-1' = { + table2Version = 228 ; + indicatorOfParameter = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'m**3 m**-3' = { + table2Version = 228 ; + indicatorOfParameter = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'dimensionless' = { + table2Version = 228 ; + indicatorOfParameter = 254 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/edzw/name.def b/eccodes/definitions/grib1/localConcepts/edzw/name.def new file mode 100755 index 00000000..47f2c21a --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/name.def @@ -0,0 +1,8992 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500001 +#Pressure +'Pressure' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'Pressure Tendency (S)' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'Geopotential (S)' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'Geopotential (full lev)' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500006 +#Geopotential +'Geopotential' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'Geometric Height of the earths surface above sea level' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'Geometric Height of the layer limits above sea level(NN)' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500010 +#Temperature (G) +'Temperature (G)' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500011 +#2m Temperature +'2m Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'2m Temperature (AV)' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'Climat. temperature, 2m Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500014 +#Temperature +'Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'Max 2m Temperature (i)' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'Min 2m Temperature (i)' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'2m Dew Point Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'2m Dew Point Temperature (AV)' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500020 +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500021 +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500022 +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'Wind Direction (DD_10M)' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'Wind Direction (DD)' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'Wind speed (SP_10M)' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'Wind speed (SP)' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500027 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500029 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'Vertical Velocity (Geometric) (w)' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'Specific Humidity (2m)' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'Specific Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500036 +#2m Relative Humidity +'2m Relative Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'Relative Humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'Total column integrated water vapour' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500039 +#Evaporation (s) +'Evaporation (s)' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'Total Column-Integrated Cloud Ice' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'Total Precipitation (Accumulation)' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'Large-Scale Precipitation (Accumulation)' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'Convective Precipitation (Accumulation)' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500045 +#Snow Depth +'Snow Depth' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500046 +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'Convective Cloud Cover' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'Convective Snowfall water equivalent (s)' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'Large-Scale snowfall - water equivalent (Accumulation)' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'Albedo (in short-wave, average)' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'Soil Temperature ( 36 cm depth, vv=0h)' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'Soil Temperature (41 cm depth)' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 100 ; + bottomLevel = 190 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'Column-integrated Soil Moisture (1) 0 -10 cm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'Column-integrated Soil Moisture (2) 10-100cm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } + +#paramId: 500065 +#Plant cover +'Plant cover' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500066 +#Water Runoff +'Water Runoff' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'Water Runoff (s)' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'Sea Ice Thickness' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500072 +#Direction of wind waves +'Direction of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500073 +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500074 +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500075 +#Mean direction of total swell +'Mean direction of total swell' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500076 +#Significant height of total swell +'Significant height of total swell' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500077 +#Mean period of total swell +'Mean period of total swell' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'Net short wave radiation flux (on the model top)' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'Net long wave radiation flux (m) (on the model top)' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'Photosynthetically active radiation (m) (at the surface)' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'Solar radiation heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'Thermal radiation heating rate' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'Latent heat flux from bare soil' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'Latent heat flux from plants' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500096 +#Sunshine duration in h +'Sunshine duration in h' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500097 +#Stomatal Resistance +'Stomatal Resistance' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500098 +#Cloud cover +'Cloud cover' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'Non-Convective Cloud Cover, grid scale' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'Cloud Mixing Ratio' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'Cloud Ice Mixing Ratio' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500102 +#Rain mixing ratio +'Rain mixing ratio' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500103 +#Snow mixing ratio +'Snow mixing ratio' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500104 +#Total column integrated rain +'Total column integrated rain' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500105 +#Total column integrated snow +'Total column integrated snow' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500106 +#Grauple +'Grauple' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500107 +#Total column integrated grauple +'Total column integrated grauple' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'Total Column integrated water (all components incl. precipitation)' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500109 +#vertical integral of divergence of total water content (s) +'vertical integral of divergence of total water content (s)' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500110 +#subgrid scale cloud water +'subgrid scale cloud water' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500111 +#subgridscale cloud ice +'subgridscale cloud ice' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500112 +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500113 +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500114 +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500115 +#cloud base above msl, shallow convection +'cloud base above msl, shallow convection' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500116 +#Cloud top above msl, shallow convection +'Cloud top above msl, shallow convection' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500117 +#specific cloud water content, convective cloud +'specific cloud water content, convective cloud' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'Height of Convective Cloud Base above msl' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'Height of Convective Cloud Top above msl' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500120 +#base index (vertical level) of main convective cloud (i) +'base index (vertical level) of main convective cloud (i)' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500121 +#top index (vertical level) of main convective cloud (i) +'top index (vertical level) of main convective cloud (i)' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'Temperature tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'Specific humidity tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500124 +#zonal wind tendency due to convection +'zonal wind tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500125 +#meridional wind tendency due to convection +'meridional wind tendency due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'Height of top of dry convection above MSL' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'Height of 0 degree Celsius isotherm above msl' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'Height of snow fall limit above MSL' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'Tendency of specific cloud liquid water content due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500130 +#tendency of specific cloud ice content due to convection +'tendency of specific cloud ice content due to convection' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'Specific content of precipitation particles (needed for water loading)' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500132 +#Large scale rain rate +'Large scale rain rate' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'Large scale rain (Accumulation)' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500135 +#Convective rain rate +'Convective rain rate' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500137 +#Convective rain +'Convective rain' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'rain amount, grid-scale plus convective' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'snow amount, grid-scale plus convective' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipation +'Temperature tendency due to grid scale precipation' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'Specific humidity tendency due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500142 +#tendency of specific cloud liquid water content due to grid scale precipitation +'tendency of specific cloud liquid water content due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + } + +#paramId: 500144 +#tendency of specific cloud ice content due to grid scale precipitation +'tendency of specific cloud ice content due to grid scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'Graupel (snow pellets) precipitation (Accumulation)' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500147 +#Snow density +'Snow density' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500148 +#Pressure perturbation +'Pressure perturbation' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500149 +#supercell detection index 1 (rot. up+down drafts) +'supercell detection index 1 (rot. up+down drafts)' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + } + +#paramId: 500150 +#supercell detection index 2 (only rot. up drafts) +'supercell detection index 2 (only rot. up drafts)' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'Convective Available Potential Energy, most unstable' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'Convective Inhibition, most unstable' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'Convective Available Potential Energy, mean layer' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'Convective Inhibition, mean layer' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'Convective turbulent kinetic enery' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'Tendency of turbulent kinetic energy' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500157 +#Kinetic Energy +'Kinetic Energy' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'Turbulent diffusioncoefficient for momentum' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'Turbulent diffusion coefficient for heat (and moisture)' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'Turbulent transfer coefficient for impulse' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'Turbulent transfer coefficient for heat (and Moisture)' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500163 +#mixed layer depth +'mixed layer depth' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500164 +#maximum Wind 10m +'maximum Wind 10m' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'Soil Temperature (multilayer model)' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'Column-integrated Soil Moisture (multilayers)' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'soil ice content (multilayers)' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'Plant Canopy Surface Water' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'Snow temperature (top of snow)' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'Minimal Stomatal Resistance' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'Sea Ice Temperature' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500173 +#Base reflectivity +'Base reflectivity' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'Base reflectivity' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'Base reflectivity (cmax)' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } + +#paramId: 500176 +#solution of 2-d Helmholtz equations - needed for restart +'solution of 2-d Helmholtz equations - needed for restart' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'Effective transmissivity of solar radiation' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500178 +#sum of contributions to evaporation +'sum of contributions to evaporation' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500179 +#total transpiration from all soil layers +'total transpiration from all soil layers' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500180 +#total forcing at soil surface +'total forcing at soil surface' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500181 +#residuum of soil moisture +'residuum of soil moisture' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500182 +#Massflux at convective cloud base +'Massflux at convective cloud base' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'Convective Available Potential Energy' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500184 +#moisture convergence for Kuo-type closure +'moisture convergence for Kuo-type closure' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500185 +#Total Wave Direction +'Total Wave Direction' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500187 +#Peak period of total swell +'Peak period of total swell' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500189 +#Swell peak period +'Swell peak period' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500190 +#Total wave peak period +'Total wave peak period' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500191 +#Total wave mean period +'Total wave mean period' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500192 +#Total Tm1 period +'Total Tm1 period' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500193 +#Total Tm2 period +'Total Tm2 period' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500194 +#Total directional spread +'Total directional spread' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500195 +#analysis error(standard deviation), geopotential(gpm) +'analysis error(standard deviation), geopotential(gpm)' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500196 +#analysis error(standard deviation), u-comp. of wind +'analysis error(standard deviation), u-comp. of wind' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500197 +#analysis error(standard deviation), v-comp. of wind +'analysis error(standard deviation), v-comp. of wind' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500198 +#zonal wind tendency due to subgrid scale oro. +'zonal wind tendency due to subgrid scale oro.' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500199 +#meridional wind tendency due to subgrid scale oro. +'meridional wind tendency due to subgrid scale oro.' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500204 +#surface emissivity +'surface emissivity' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500205 +#soil type of grid (1...9, local soilType.table) +'soil type of grid (1...9, local soilType.table)' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500206 +#Leaf area index +'Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500207 +#root depth of vegetation +'root depth of vegetation' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500208 +#height of ozone maximum (climatological) +'height of ozone maximum (climatological)' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500209 +#vertically integrated ozone content (climatological) +'vertically integrated ozone content (climatological)' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'Plant covering degree in the vegetation phase' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'Plant covering degree in the quiescent phas' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500212 +#Max Leaf area index +'Max Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500213 +#Min Leaf area index +'Min Leaf area index' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'Orographie + Land-Meer-Verteilung' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500215 +#variance of soil moisture content (0-10) +'variance of soil moisture content (0-10)' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500216 +#variance of soil moisture content (10-100) +'variance of soil moisture content (10-100)' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500217 +#evergreen forest +'evergreen forest' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500218 +#deciduous forest +'deciduous forest' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'normalized differential vegetation index' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'normalized differential vegetation index (NDVI)' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500221 +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500222 +#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'Total sulfate aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'Total sulfate aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'Total soil dust aerosol (climatology)' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'Total soil dust aerosol (climatology,12M)' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500227 +#Organic aerosol +'Organic aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'Organic aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500229 +#Black carbon aerosol +'Black carbon aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'Black carbon aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500231 +#Sea salt aerosol +'Sea salt aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'Sea salt aerosol (12M)' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500233 +#tendency of specific humidity +'tendency of specific humidity' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500234 +#water vapor flux +'water vapor flux' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500235 +#Coriolis parameter +'Coriolis parameter' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500236 +#geographical latitude +'geographical latitude' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500237 +#geographical longitude +'geographical longitude' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500239 +#Delay of the GPS signal trough the (total) atm. +'Delay of the GPS signal trough the (total) atm.' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500240 +#Delay of the GPS signal trough wet atmos. +'Delay of the GPS signal trough wet atmos.' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500241 +#Delay of the GPS signal trough dry atmos. +'Delay of the GPS signal trough dry atmos.' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'Ozone Mixing Ratio' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Air concentration of Ruthenium 103' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Ru103 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Ru103 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Air concentration of Strontium 90' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Sr90 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Sr90 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'Air concentration of Iodine 131 aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500250 +#I131 - dry deposition +'I131 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500251 +#I131 - wet deposition +'I131 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Air concentration of Caesium 137' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Cs137 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Air concentration of Tellurium 132' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Te132 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Te132 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Air concentration of Zirconium 95' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Zr95 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Zr95 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Air concentration of Krypton 85' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Kr85 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Kr85 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500264 +#TRACER - concentration +'TRACER - concentration' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'TRACER - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'TRACER - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Air concentration of Xenon 133' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Xe133 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'Air concentration of Iodine 131 elementary gaseous' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500271 +#I131g - dry deposition +'I131g - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500272 +#I131g - wet deposition +'I131g - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'Air concentration of Iodine 131 organic bounded' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500274 +#I131o - dry deposition +'I131o - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500275 +#I131o - wet deposition +'I131o - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Air concentration of Barium 140' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Ba140 - dry deposition' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Ba140 - wet deposition' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500279 +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500280 +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500281 +#v-momentum flux due to SSO-effects (average) +'v-momentum flux due to SSO-effects (average)' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500282 +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500283 +#Gravity wave dissipation (initialisation) +'Gravity wave dissipation (initialisation)' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'UV Index, clouded sky, maximum' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500286 +#Vertical speed shear +'Vertical speed shear' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500287 +#storm relative helicity +'storm relative helicity' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'Absolute vorticity advection' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) +'Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab)' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'Hoehe der Konvektionsuntergrenze ueber Grund' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'Hoehe der Konvektionsuntergrenze ueber nn' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'weather interpretation (WMO)' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'geostrophische Vorticityadvektion' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500294 +#geostrophische Schichtdickenadvektion +'geostrophische Schichtdickenadvektion' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'Schichtdickenadvektion' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500296 +#Winddivergenz +'Winddivergenz' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'Q-Vektor senkrecht zu den Isothermen' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'Isentrope potentielle Vorticity' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'Wind X-Komponente auf isentropen Flaechen' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'Wind Y-Komponente auf isentropen Flaechen' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'Druck einer isentropen Flaeche' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500302 +#KO index +'KO index' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'Aequivalentpotentielle Temperatur' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500304 +#Ceiling +'Ceiling' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Icing Grade (1=LGT,2=MOD,3=SEV)' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500306 +#modified cloud depth for media +'modified cloud depth for media' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500307 +#modified cloud cover for media +'modified cloud cover for media' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'Monthly Mean of RMS of difference FG-AN of geopotential' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'Monthly Mean of RMS of difference IA-AN of geopotential' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'Monthly Mean of RMS of difference FG-AN of relative humidity' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'Monthly Mean of RMS of difference IA-AN of relative humidity' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'Monthly Mean of RMS of difference FG-AN of temperature' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'Monthly Mean of RMS of difference IA-AN of temperature' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500322 +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500323 +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'smoothed forecast, temperature' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'smoothed forecast, maximum temp.' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'smoothed forecast, minimum temp.' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'smoothed forecast, dew point temp.' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'smoothed forecast, u comp. of wind' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'smoothed forecast, v comp. of wind' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'smoothed forecast, total precipitation (Accumulation)' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'smoothed forecast, total cloud cover' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'smoothed forecast, cloud cover low' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'smoothed forecast, cloud cover medium' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'smoothed forecast, cloud cover high' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'smoothed forecast, large-scale snowfall' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'smoothed forecast, soil temperature' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'smoothed forecast, wind speed (gust)' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'calibrated forecast, total precipitation (Accumulation)' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'calibrated forecast, large-scale snowfall' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'calibrated forecast, wind speed (gust)' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'Total Precipitation Difference' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500402 +#Max 2m Temperature long periods > h +'Max 2m Temperature long periods > h' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500403 +#Min 2m Temperature long periods > h +'Min 2m Temperature long periods > h' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500404 +#Total Precipitation (Accumulation) Initialisation +'Total Precipitation (Accumulation) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500408 +#Large scale rain (Accumulation) Initialisation +'Large scale rain (Accumulation) Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500409 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'Large-Scale snowfall - water equivalent (Accumulation) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500410 +#Convective rain Initialisation +'Convective rain Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500411 +#Convective Snowfall water equivalent (s) Initialisation +'Convective Snowfall water equivalent (s) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500412 +#maximum Wind 10m Initialisation +'maximum Wind 10m Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 10 ; + } + +#paramId: 500416 +#Evaporation (s) Initialisation +'Evaporation (s) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500417 +#Max 2m Temperature (i) Initialisation +'Max 2m Temperature (i) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500418 +#Min 2m Temperature (i) Initialisation +'Min 2m Temperature (i) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'Net long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500423 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'Large-Scale snowfall - water equivalent (Accumulation) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500424 +#Convective Snowfall water equivalent (s) Initialisation +'Convective Snowfall water equivalent (s) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500425 +#Total Precipitation (Accumulation) Initialisation +'Total Precipitation (Accumulation) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500428 +#Latent Heat Net Flux (m) Initialisation +'Latent Heat Net Flux (m) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500429 +#Sensible Heat Net Flux (m) Initialisation +'Sensible Heat Net Flux (m) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500430 +#Momentum Flux, U-Component (m) Initialisation +'Momentum Flux, U-Component (m) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500431 +#Momentum Flux, V-Component (m) Initialisation +'Momentum Flux, V-Component (m) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500432 +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500433 +#Large scale rain (Accumulation) Initialisation +'Large scale rain (Accumulation) Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500434 +#Convective rain Initialisation +'Convective rain Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500436 +#Graupel (snow pellets) precipitation (Initialisation) +'Graupel (snow pellets) precipitation (Initialisation)' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'Probability of 1h total precipitation >= 10mm' = { + table2Version = 208 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'Probability of 1h total precipitation >= 25mm' = { + table2Version = 208 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'Probability of 6h total precipitation >= 20mm' = { + table2Version = 208 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'Probability of 6h total precipitation >= 35mm' = { + table2Version = 208 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'Probability of 12h total precipitation >= 25mm' = { + table2Version = 208 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'Probability of 12h total precipitation >= 40mm' = { + table2Version = 208 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'Probability of 12h total precipitation >= 70mm' = { + table2Version = 208 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'Probability of 6h accumulated snow >=0.5cm' = { + table2Version = 208 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'Probability of 6h accumulated snow >= 5cm' = { + table2Version = 208 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'Probability of 6h accumulated snow >= 10cm' = { + table2Version = 208 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'Probability of 12h accumulated snow >=0.5cm' = { + table2Version = 208 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'Probability of 12h accumulated snow >= 10cm' = { + table2Version = 208 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'Probability of 12h accumulated snow >= 15cm' = { + table2Version = 208 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'Probability of 12h accumulated snow >= 25cm' = { + table2Version = 208 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'Probability of 1h maximum wind gust speed >= 14m/s' = { + table2Version = 208 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'Probability of 1h maximum wind gust speed >= 18m/s' = { + table2Version = 208 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'Probability of 1h maximum wind gust speed >= 25m/s' = { + table2Version = 208 ; + indicatorOfParameter = 136 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'Probability of 1h maximum wind gust speed >= 29m/s' = { + table2Version = 208 ; + indicatorOfParameter = 137 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'Probability of 1h maximum wind gust speed >= 33m/s' = { + table2Version = 208 ; + indicatorOfParameter = 138 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'Probability of 1h maximum wind gust speed >= 39m/s' = { + table2Version = 208 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'Probability of black ice during 1h' = { + table2Version = 208 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'Probability of thunderstorm during 1h' = { + table2Version = 208 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'Probability of heavy thunderstorm during 1h' = { + table2Version = 208 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'Probability of severe thunderstorm during 1h' = { + table2Version = 208 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'Probability of snowdrift during 12h' = { + table2Version = 208 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'Probability of strong snowdrift during 12h' = { + table2Version = 208 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'Probability of temperature < 0 deg C during 1h' = { + table2Version = 208 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'Probability of temperature <= -10 deg C during 6h' = { + table2Version = 208 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'UV Index, clear sky; corrected for albedo, aerosol and altitude' = { + table2Version = 202 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol' = { + table2Version = 202 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds' = { + table2Version = 202 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'UV Index, clear sky, maximum' = { + table2Version = 202 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500469 +#Total ozone +'Total ozone' = { + table2Version = 202 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'Time of maximum of UV Index, clouded' = { + table2Version = 202 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500472 +#Konvektionsart (0..4) +'Konvektionsart (0..4)' = { + table2Version = 203 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500473 +#perceived temperature +'perceived temperature' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500475 +#Water temperature +'Water temperature' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500476 +#Water temperature in C +'Water temperature in C' = { + table2Version = 203 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500477 +#Absolute Vorticity +'Absolute Vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'probability to perceive sultriness' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500479 +#value of isolation of clothes +'value of isolation of clothes' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'Downward direct short wave radiation flux at surface (mean over forecast time)' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux +'Downward diffusive short wave radiation flux' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500486 +#vertical integral of divergence of total water content (s) +'vertical integral of divergence of total water content (s)' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500487 +#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation +'Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500488 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500489 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500490 +#Water Fraction +'Water Fraction' = { + table2Version = 202 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500491 +#Lake depth +'Lake depth' = { + table2Version = 201 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500492 +#Wind fetch +'Wind fetch' = { + table2Version = 201 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'Attenuation coefficient of water with respect to solar radiation' = { + table2Version = 201 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'Depth of thermally active layer of bottom sediment' = { + table2Version = 201 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'Temperature at the lower boundary of the thermally active layer of bottom sediment' = { + table2Version = 201 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'Mean temperature of the water column' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'Mixed-layer temperature' = { + table2Version = 201 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'Bottom temperature (temperature at the water-bottom sediment interface)' = { + table2Version = 201 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500499 +#Mixed-layer depth +'Mixed-layer depth' = { + table2Version = 201 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'Shape factor with respect to the temperature profile in the thermocline' = { + table2Version = 201 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave)' = { + table2Version = 201 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'Sediment thickness of the upper layer of bottom sediments' = { + table2Version = 201 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500503 +#Icing Base (hft) - Prognose Icing Degree Composit +'Icing Base (hft) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Prognose Icing Degree Composit +'Icing Max Base (hft) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Prognose Icing Degree Composit +'Icing Max Top (hft) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500506 +#Icing Top (hft) - Prognose Icing Degree Composit +'Icing Top (hft) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit +'Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500509 +#Icing Base (hft) - Prognose Icing Scenario Composit +'Icing Base (hft) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit +'Icing Signifikant Base (hft) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit +'Icing Signifikant Top (hft) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500512 +#Icing Top (hft) - Prognose Icing Scenario Composit +'Icing Top (hft) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit +'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500515 +#Icing Base (hft) - Diagnose Icing Degree Composit +'Icing Base (hft) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Diagnose Icing Degree Composit +'Icing Max Base (hft) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Diagnose Icing Degree Composit +'Icing Max Top (hft) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500518 +#Icing Top (hft) - Diagnose Icing Degree Composit +'Icing Top (hft) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit +'Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500521 +#Icing Base (hft) - Diagnose Icing Scenario Composit +'Icing Base (hft) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit +'Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit +'Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500524 +#Icing Top (hft) - Diagnose Icing Scenario Composit +'Icing Top (hft) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit +'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500527 +#Prognose Icing Degree Code (1=light,2=moderate,3=severe) +'Prognose Icing Degree Code (1=light,2=moderate,3=severe)' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500528 +#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500529 +#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) +'Diagnose Icing Degree Code (1=light,2=moderate,3=severe)' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500530 +#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'current weather (symbol number: 0..9)' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500541 +#relative vorticity,U-component +'relative vorticity,U-component' = { + table2Version = 202 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500542 +#relative vorticity,V-component +'relative vorticity,V-component' = { + table2Version = 202 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500543 +#vertical vorticity +'vertical vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500544 +#Potential vorticity +'Potential vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500545 +#Density +'Density' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'Convective Precipitation (difference)' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'Potentielle Vorticity (auf Druckflaechen, nicht isentrop)' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'geostrophische Vorticity' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'Forcing rechte Seite Omegagleichung' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'Q-Vektor X-Komponente (geostrophisch)' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'Q-Vektor Y-Komponente (geostrophisch)' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'Divergenz Q (geostrophisch)' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'Q-Vektor senkrecht zu d. Isothermen (geostrophisch)' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'Q-Vektor parallel zu d. Isothermen (geostrophisch)' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'Divergenz Qn geostrophisch' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'Divergenz Qs geostrophisch' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'Frontogenesefunktion' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500562 +#Divergenz +'Divergenz' = { + table2Version = 203 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'Q-Vektor parallel zu den Isothermen' = { + table2Version = 203 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500564 +#Divergenz Qn +'Divergenz Qn' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500565 +#Divergenz Qs +'Divergenz Qs' = { + table2Version = 203 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500566 +#Frontogenesis function +'Frontogenesis function' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'Clear Air Turbulence Index' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500568 +#Geopotential height +'Geopotential height' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500569 +#Relative Divergenz +'Relative Divergenz' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500570 +#dry convection top index +'dry convection top index' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500571 +#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 +'- FE1 I128A[AMP]ROUTI von 199809 bis 199905' = { + table2Version = 201 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500572 +#tidal tendencies +'tidal tendencies' = { + table2Version = 202 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'Sea surface temperature interpolated in time in C' = { + table2Version = 202 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'Logarithm of Pressure' = { + table2Version = 202 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500575 +#3 hour pressure change +'3 hour pressure change' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500576 +#covariance of soil moisture content (0-10) +'covariance of soil moisture content (0-10)' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'Soil Temperature (layer)' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'Soil Moisture Content (0-7 cm)' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 7 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'Soil Moisture Content (7-50 cm)' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 7 ; + bottomLevel = 50 ; + } + +#paramId: 500582 +#Max 2m Temperature (i) Initialisation +'Max 2m Temperature (i) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500583 +#Min 2m Temperature (i) Initialisation +'Min 2m Temperature (i) Initialisation' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'Eddy Dissipation Rate' = { + table2Version = 204 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500586 +#Ellrod Index +'Ellrod Index' = { + table2Version = 204 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500588 +#Snow melt +'Snow melt' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500592 +#Geopotential height +'Geopotential height' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500593 +#Global radiation flux +'Global radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500600 +#Prob Windboeen > 25 kn +'Prob Windboeen > 25 kn' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500601 +#Prob Windboeen > 27 kn +'Prob Windboeen > 27 kn' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500602 +#Prob Sturmboeen > 33 kn +'Prob Sturmboeen > 33 kn' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500603 +#Prob Sturmboeen > 40 kn +'Prob Sturmboeen > 40 kn' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500604 +#Prob Schwere Sturmboeen > 47 kn +'Prob Schwere Sturmboeen > 47 kn' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500605 +#Prob Orkanartige Boeen > 55 kn +'Prob Orkanartige Boeen > 55 kn' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500606 +#Prob Orkanboeen > 63 kn +'Prob Orkanboeen > 63 kn' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500607 +#Prob Oberoertliche Orkanboeen > 75 kn +'Prob Oberoertliche Orkanboeen > 75 kn' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500608 +#Prob Starkregen > 10 mm +'Prob Starkregen > 10 mm' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500609 +#Prob Heftiger Starkregen > 25 mm +'Prob Heftiger Starkregen > 25 mm' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500610 +#Prob Extrem Heftiger Starkregen > 50 mm +'Prob Extrem Heftiger Starkregen > 50 mm' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500611 +#Prob Leichter Schneefall > 0,1 mm +'Prob Leichter Schneefall > 0,1 mm' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500612 +#Prob Leichter Schneefall > 0,1 cm +'Prob Leichter Schneefall > 0,1 cm' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500613 +#Prob Leichter Schneefall > 0,5 cm +'Prob Leichter Schneefall > 0,5 cm' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500614 +#Prob Leichter Schneefall > 1 cm +'Prob Leichter Schneefall > 1 cm' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500615 +#Prob Schneefall > 5 cm +'Prob Schneefall > 5 cm' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500616 +#Prob Starker Schneefall > 10 cm +'Prob Starker Schneefall > 10 cm' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500617 +#Prob Extrem starker Schneefall > 25 cm +'Prob Extrem starker Schneefall > 25 cm' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500618 +#Prob Frost +'Prob Frost' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500619 +#Prob Strenger Frost +'Prob Strenger Frost' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500620 +#Prob Gewitter +'Prob Gewitter' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'Prob Starkes Gewitter' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'Prob Schweres Gewitter' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500623 +#Prob Dauerregen +'Prob Dauerregen' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'Prob Ergiebiger Dauerregen' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'Prob Extrem ergiebiger Dauerregen' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'Prob Schneeverwehung' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'Prob Starke Schneeverwehung' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500628 +#Prob Glaette +'Prob Glaette' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'Prob oertlich Glatteis' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500630 +#Prob Glatteis +'Prob Glatteis' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'Prob Nebel (ueberoertl. Sichtweite < 150 m)' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500632 +#Prob Tauwetter +'Prob Tauwetter' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'Prob Starkes Tauwetter' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500634 +#wake-production of TKE due to sub grid scale orography +'wake-production of TKE due to sub grid scale orography' = { + table2Version = 201 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500635 +#shear-production of TKE due to separated horizontal shear modes +'shear-production of TKE due to separated horizontal shear modes' = { + table2Version = 201 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500636 +#buoyancy-production of TKE due to sub grid scale convection +'buoyancy-production of TKE due to sub grid scale convection' = { + table2Version = 201 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500638 +#Atmospheric Resistance +'Atmospheric Resistance' = { + table2Version = 201 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'Height of thermals above MSL' = { + table2Version = 201 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500640 +#mass concentration of dust (minimum mode) +'mass concentration of dust (minimum mode)' = { + table2Version = 242 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500642 +#Lapse rate +'Lapse rate' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500643 +#mass concentration of dust (medium mode) +'mass concentration of dust (medium mode)' = { + table2Version = 242 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500644 +#mass concentration of dust (maximum mode) +'mass concentration of dust (maximum mode)' = { + table2Version = 242 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500645 +#number concentration of dust (minimum mode) +'number concentration of dust (minimum mode)' = { + table2Version = 242 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500646 +#number concentration of dust (medium mode) +'number concentration of dust (medium mode)' = { + table2Version = 242 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500647 +#number concentration of dust (maximum mode) +'number concentration of dust (maximum mode)' = { + table2Version = 242 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500648 +#mass concentration of dust (sum of all modes) +'mass concentration of dust (sum of all modes)' = { + table2Version = 242 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500649 +#number concentration of dust (sum of all modes) +'number concentration of dust (sum of all modes)' = { + table2Version = 242 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'DUMMY_1' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'DUMMY_2' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'DUMMY_3' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'DUMMY_4' = { + table2Version = 254 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'DUMMY_5' = { + table2Version = 254 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'DUMMY_6' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'DUMMY_7' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'DUMMY_8' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'DUMMY_9' = { + table2Version = 254 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'DUMMY_10' = { + table2Version = 254 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'DUMMY_11' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'DUMMY_12' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'DUMMY_13' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'DUMMY_14' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'DUMMY_15' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'DUMMY_16' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'DUMMY_17' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'DUMMY_18' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'DUMMY_19' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'DUMMY_20' = { + table2Version = 254 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'DUMMY_21' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'DUMMY_22' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'DUMMY_23' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'DUMMY_24' = { + table2Version = 254 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'DUMMY_25' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'DUMMY_26' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'DUMMY_27' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'DUMMY_28' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'DUMMY_29' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'DUMMY_30' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'DUMMY_31' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'DUMMY_32' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'DUMMY_33' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'DUMMY_34' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'DUMMY_35' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'DUMMY_36' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'DUMMY_37' = { + table2Version = 254 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'DUMMY_38' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'DUMMY_39' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'DUMMY_40' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'DUMMY_41' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'DUMMY_42' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'DUMMY_43' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'DUMMY_44' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'DUMMY_45' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'DUMMY_46' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'DUMMY_47' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'DUMMY_48' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'DUMMY_49' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'DUMMY_50' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'DUMMY_51' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'DUMMY_52' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'DUMMY_53' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'DUMMY_54' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'DUMMY_55' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'DUMMY_56' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'DUMMY_57' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'DUMMY_58' = { + table2Version = 254 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'DUMMY_59' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'DUMMY_60' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'DUMMY_61' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'DUMMY_62' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'DUMMY_63' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'DUMMY_64' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'DUMMY_65' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'DUMMY_66' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'DUMMY_67' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'DUMMY_68' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'DUMMY_69' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'DUMMY_70' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'DUMMY_71' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'DUMMY_72' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'DUMMY_73' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'DUMMY_74' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'DUMMY_75' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'DUMMY_76' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'DUMMY_77' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'DUMMY_78' = { + table2Version = 254 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'DUMMY_79' = { + table2Version = 254 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'DUMMY_80' = { + table2Version = 254 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'DUMMY_81' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'DUMMY_82' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'DUMMY_83' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'DUMMY_84' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'DUMMY_85' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'DUMMY_86' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'DUMMY_87' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'DUMMY_88' = { + table2Version = 254 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'DUMMY_89' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'DUMMY_90' = { + table2Version = 254 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'DUMMY_91' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'DUMMY_92' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'DUMMY_93' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'DUMMY_94' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'DUMMY_95' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'DUMMY_96' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'DUMMY_97' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'DUMMY_98' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'DUMMY_99' = { + table2Version = 254 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'DUMMY_100' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'DUMMY_101' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'DUMMY_102' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'DUMMY_103' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'DUMMY_104' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'DUMMY_105' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'DUMMY_106' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'DUMMY_107' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'DUMMY_108' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'DUMMY_109' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'DUMMY_110' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'DUMMY_111' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'DUMMY_112' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'DUMMY_113' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'DUMMY_114' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'DUMMY_115' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'DUMMY_116' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'DUMMY_117' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'DUMMY_118' = { + table2Version = 254 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'DUMMY_119' = { + table2Version = 254 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'DUMMY_120' = { + table2Version = 254 ; + indicatorOfParameter = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'DUMMY_121' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'DUMMY_122' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'DUMMY_123' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'DUMMY_124' = { + table2Version = 254 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'DUMMY_125' = { + table2Version = 254 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'DUMMY_126' = { + table2Version = 254 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'DUMMY_127' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'DUMMY_128' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'DUMMY_143' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'DUMMY_144' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'DUMMY_145' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'DUMMY_146' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'DUMMY_147' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'DUMMY_148' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'DUMMY_149' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'DUMMY_150' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'DUMMY_151' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'DUMMY_152' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'DUMMY_153' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'DUMMY_154' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'DUMMY_155' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'DUMMY_156' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'DUMMY_157' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'DUMMY_158' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'DUMMY_159' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'DUMMY_160' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'DUMMY_161' = { + table2Version = 254 ; + indicatorOfParameter = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'DUMMY_162' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'DUMMY_163' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'DUMMY_164' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'DUMMY_165' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'DUMMY_166' = { + table2Version = 254 ; + indicatorOfParameter = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'DUMMY_167' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'DUMMY_168' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'DUMMY_169' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'DUMMY_170' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'DUMMY_171' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'DUMMY_172' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'DUMMY_173' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'DUMMY_174' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'DUMMY_175' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'DUMMY_176' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'DUMMY_177' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'DUMMY_178' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'DUMMY_179' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'DUMMY_180' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'DUMMY_181' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'DUMMY_182' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'DUMMY_183' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'DUMMY_184' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'DUMMY_185' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'DUMMY_186' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'DUMMY_187' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'DUMMY_188' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'DUMMY_189' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'DUMMY_190' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'DUMMY_191' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'DUMMY_192' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'DUMMY_193' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'DUMMY_194' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'DUMMY_195' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'DUMMY_196' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'DUMMY_197' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'DUMMY_198' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'DUMMY_199' = { + table2Version = 254 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'DUMMY_200' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'DUMMY_201' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'DUMMY_202' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'DUMMY_203' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'DUMMY_204' = { + table2Version = 254 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'DUMMY_205' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'DUMMY_206' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'DUMMY_207' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'DUMMY_208' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'DUMMY_209' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'DUMMY_210' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'DUMMY_211' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'DUMMY_212' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'DUMMY_213' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'DUMMY_214' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'DUMMY_215' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'DUMMY_216' = { + table2Version = 254 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'DUMMY_217' = { + table2Version = 254 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'DUMMY_218' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'DUMMY_219' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'DUMMY_220' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'DUMMY_221' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'DUMMY_222' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'DUMMY_223' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'DUMMY_224' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'DUMMY_225' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'DUMMY_226' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'DUMMY_227' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'DUMMY_228' = { + table2Version = 254 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'DUMMY_229' = { + table2Version = 254 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'DUMMY_230' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'DUMMY_231' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'DUMMY_232' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'DUMMY_233' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'DUMMY_234' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'DUMMY_235' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'DUMMY_236' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'DUMMY_237' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'DUMMY_238' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'DUMMY_239' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'DUMMY_240' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'DUMMY_241' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'DUMMY_242' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'DUMMY_243' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'DUMMY_244' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'DUMMY_245' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'DUMMY_246' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'DUMMY_247' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'DUMMY_248' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'DUMMY_249' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'DUMMY_250' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'DUMMY_251' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'DUMMY_252' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'DUMMY_253' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'DUMMY_254' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'Specific Humidity (S)' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'Albedo - diffusive solar - time average (0.3 - 5.0 m-6) ' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + timeRangeIndicator = 3 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'Albedo - diffusive solar (0.3 - 5.0 m-6)' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'Latent Heat Net Flux - instant - at surface' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'Sensible Heat Net Flux - instant - at surface' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502333 +#salinity +'salinity' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502334 +#Stream function +'Stream function' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502335 +#Velocity potential +'Velocity potential' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502336 +#Skin temperature +'Skin temperature' = { + table2Version = 202 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux +'Downward direct short wave radiation flux' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502350 +#Temperature (G) +'Temperature (G)' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502355 +#Stream function +'Stream function' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502356 +#Velocity potential +'Velocity potential' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502357 +#Wind speed (SP) +'Wind speed (SP)' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502358 +#Pressure +'Pressure' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502359 +#Potential vorticity +'Potential vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502360 +#Potential vorticity +'Potential vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502361 +#Geopotential +'Geopotential' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502362 +#Max 2m Temperature +'Max 2m Temperature ' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502363 +#Min 2m Temperature +'Min 2m Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502364 +#Temperature +'Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502365 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502366 +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502367 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502368 +#Specific Humidity +'Specific Humidity' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502369 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502370 +#vertical vorticity +'vertical vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502371 +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502372 +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502373 +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502374 +#Relative Divergenz +'Relative Divergenz' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502375 +#Geopotential height +'Geopotential height' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502376 +#Relative Humidity +'Relative Humidity' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502377 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502378 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502379 +#2m Temperature +'2m Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502381 +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502382 +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502383 +#Albedo (in short-wave, average) +'Albedo (in short-wave, average)' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502384 +#Evaporation (s) +'Evaporation (s)' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502385 +#Convective Cloud Cover +'Convective Cloud Cover' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502386 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502387 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502388 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502389 +#Plant cover +'Plant cover' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502390 +#Water Runoff +'Water Runoff ' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502391 +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502392 +#Convective Snowfall water equivalent (s) +'Convective Snowfall water equivalent (s)' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502393 +#Large-Scale snowfall - water equivalent (Accumulation) +'Large-Scale snowfall - water equivalent (Accumulation)' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502394 +#Large-Scale Precipitation +'Large-Scale Precipitation ' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502395 +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502396 +#Virtual Temperature +'Virtual Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502397 +#Virtual Temperature +'Virtual Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502398 +#Virtual Temperature +'Virtual Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502399 +#Brightness Temperature +'Brightness Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502400 +#Boundary Layer Dissipitation +'Boundary Layer Dissipitation' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502401 +#Pressure Tendency +'Pressure Tendency ' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502402 +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502403 +#Geometric Height +'Geometric Height' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502404 +#Max Temperature +'Max Temperature ' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502405 +#Min Temperature +'Min Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502406 +#Dew Point Temperature +'Dew Point Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502407 +#Dew point depression(or deficit) +'Dew point depression(or deficit)' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502408 +#Lapse rate +'Lapse rate' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502409 +#Visibility +'Visibility' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502410 +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502411 +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502412 +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502413 +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502414 +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502415 +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502416 +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502417 +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502418 +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502419 +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502420 +#Wind Direction (DD) +'Wind Direction (DD)' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502421 +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502422 +#Absolute Vorticity +'Absolute Vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502423 +#Absolute divergence +'Absolute divergence' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502424 +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502425 +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502426 +#Direction of current +'Direction of current' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502427 +#Speed of current +'Speed of current' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502428 +#U-component of current +'U-component of current' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502429 +#V-component of current +'V-component of current' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502430 +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502431 +#Precipitable water +'Precipitable water' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502432 +#Vapour pressure +'Vapour pressure' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502433 +#Saturation deficit +'Saturation deficit' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502434 +#Precipitation rate +'Precipitation rate' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502435 +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502436 +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502437 +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502438 +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502439 +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502440 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502441 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502442 +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502443 +#Water temperature +'Water temperature' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502444 +#Deviation of sea-elbel from mean +'Deviation of sea-elbel from mean' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502445 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502446 +#salinity +'salinity' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502447 +#Density +'Density' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502448 +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502449 +#sea Ice Thickness +'sea Ice Thickness' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502450 +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502451 +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502452 +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502453 +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502454 +#Ice growth rate +'Ice growth rate' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502455 +#Snow melt +'Snow melt' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502456 +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502457 +#Direction of wind waves +'Direction of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502458 +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502459 +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502460 +#Mean direction of total swell +'Mean direction of total swell' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502461 +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502462 +#Swell Mean Period +'Swell Mean Period' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502465 +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502466 +#Secondary wave period +'Secondary wave period' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502467 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502468 +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502469 +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502470 +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502471 +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502472 +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502473 +#Global radiation flux +'Global radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502474 +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502475 +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502476 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502477 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502478 +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502479 +#Image data +'Image data' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502480 +#Geopotential height +'Geopotential height' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502481 +#Soil Temperature +'Soil Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502482 +#Snow Depth water equivalent +'Snow Depth water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502483 +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502484 +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502485 +#Total Precipitation (Accumulation) +'Total Precipitation (Accumulation)' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502486 +#Boundary Layer Dissipitation +'Boundary Layer Dissipitation' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502487 +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502488 +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502490 +#Evaporation (s) +'Evaporation (s)' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502491 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502492 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502493 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502494 +#Brightness Temperature +'Brightness Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502495 +#Water Runoff +'Water Runoff ' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502496 +#Geometric Height +'Geometric Height' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502497 +#Standard devation of height +'Standard devation of height' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502498 +#Standard devation of height +'Standard devation of height' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502499 +#Pseudo-adiabatic potential Temperature +'Pseudo-adiabatic potential Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502500 +#Pseudo-adiabatic potential Temperature +'Pseudo-adiabatic potential Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502501 +#Max Temperature +'Max Temperature ' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502502 +#Min Temperature +'Min Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502503 +#Dew Point Temperature +'Dew Point Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502504 +#Dew point depression(or deficit) +'Dew point depression(or deficit)' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502505 +#Visibility +'Visibility' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502506 +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502507 +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502508 +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502509 +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502510 +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502511 +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502512 +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502513 +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502514 +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502515 +#Absolute divergence +'Absolute divergence' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502516 +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502517 +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502518 +#Direction of current +'Direction of current' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502519 +#Speed of current +'Speed of current' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502520 +#U-component of current +'U-component of current' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502521 +#V-component of current +'V-component of current' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502522 +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502523 +#Vapour pressure +'Vapour pressure' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502524 +#Saturation deficit +'Saturation deficit' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502525 +#Precipitation rate +'Precipitation rate' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502526 +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502527 +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502528 +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502529 +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502530 +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502531 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502532 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502533 +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502534 +#Deviation of sea-elbel from mean +'Deviation of sea-elbel from mean' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502535 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502536 +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502537 +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502538 +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502539 +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502540 +#Ice growth rate +'Ice growth rate' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502542 +#Snow melt +'Snow melt' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502545 +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502546 +#Secondary wave period +'Secondary wave period' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502547 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502548 +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502549 +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502550 +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502551 +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502552 +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502553 +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502554 +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502555 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502556 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502557 +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502558 +#Image data +'Image data' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502559 +#Geopotential height +'Geopotential height' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502560 +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502562 +#Potential temperature +'Potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502563 +#Potential temperature +'Potential temperature' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502564 +#Wind speed (SP) +'Wind speed (SP)' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502565 +#Pressure +'Pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502566 +#Max 2m Temperature +'Max 2m Temperature ' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502567 +#Min 2m Temperature +'Min 2m Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502568 +#Geopotential +'Geopotential' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502569 +#Temperature +'Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502570 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502571 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502572 +#Specific Humidity +'Specific Humidity' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502573 +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502574 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502575 +#vertical vorticity +'vertical vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502576 +#Boundary Layer Dissipitation +'Boundary Layer Dissipitation' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502577 +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502578 +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502579 +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502581 +#Geopotential height +'Geopotential height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502582 +#Relative Humidity +'Relative Humidity' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502583 +#U-Component of Wind +'U-Component of Wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502584 +#V-Component of Wind +'V-Component of Wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502585 +#2m Temperature +'2m Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502587 +#Relative Divergenz +'Relative Divergenz' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502588 +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502589 +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502590 +#Albedo (in short-wave, average) +'Albedo (in short-wave, average)' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502591 +#Evaporation (s) +'Evaporation (s)' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502592 +#Convective Cloud Cover +'Convective Cloud Cover' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502593 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502594 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502595 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502596 +#Brightness Temperature +'Brightness Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502597 +#Plant cover +'Plant cover' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502598 +#Water Runoff +'Water Runoff ' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502599 +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502600 +#Convective Snowfall water equivalent (s) +'Convective Snowfall water equivalent (s)' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502601 +#Large-Scale snowfall - water equivalent (Accumulation) +'Large-Scale snowfall - water equivalent (Accumulation)' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502602 +#Large-Scale Precipitation +'Large-Scale Precipitation ' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502603 +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502604 +#Pressure Tendency +'Pressure Tendency ' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502605 +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502606 +#Geometric Height +'Geometric Height' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502607 +#Standard devation of height +'Standard devation of height' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502608 +#Pseudo-adiabatic potential Temperature +'Pseudo-adiabatic potential Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502609 +#Max Temperature +'Max Temperature ' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502610 +#Min Temperature +'Min Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502611 +#Dew Point Temperature +'Dew Point Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502612 +#Dew point depression(or deficit) +'Dew point depression(or deficit)' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502613 +#Lapse rate +'Lapse rate' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502614 +#Visibility +'Visibility' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502615 +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502616 +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502617 +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502618 +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502619 +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502620 +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502621 +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502622 +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502623 +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502624 +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502625 +#Wind Direction (DD) +'Wind Direction (DD)' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502626 +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502627 +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502628 +#Absolute Vorticity +'Absolute Vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502629 +#Absolute divergence +'Absolute divergence' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502630 +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502631 +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502632 +#Direction of current +'Direction of current' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502633 +#Speed of current +'Speed of current' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502634 +#U-component of current +'U-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502635 +#V-component of current +'V-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502636 +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502637 +#Precipitable water +'Precipitable water' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502638 +#Vapour pressure +'Vapour pressure' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502639 +#Saturation deficit +'Saturation deficit' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502640 +#Precipitation rate +'Precipitation rate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502641 +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502642 +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502643 +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502644 +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502645 +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502646 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502647 +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502648 +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502649 +#Water temperature +'Water temperature' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502650 +#Deviation of sea-elbel from mean +'Deviation of sea-elbel from mean' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502651 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502652 +#salinity +'salinity' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502653 +#Density +'Density' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502654 +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502655 +#sea Ice Thickness +'sea Ice Thickness' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502656 +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502657 +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502658 +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502659 +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502660 +#Ice growth rate +'Ice growth rate' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502662 +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502663 +#Direction of wind waves +'Direction of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502664 +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502665 +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502666 +#Mean direction of total swell +'Mean direction of total swell' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502667 +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502668 +#Swell Mean Period +'Swell Mean Period' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502671 +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502672 +#Secondary wave period +'Secondary wave period' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502673 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502674 +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502675 +#Net short wave radiation flux +'Net short wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502676 +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502677 +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502678 +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502679 +#Global radiation flux +'Global radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502680 +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502681 +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502682 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502683 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502684 +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502685 +#Image data +'Image data' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502686 +#Geopotential height +'Geopotential height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502687 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502688 +#Soil Temperature +'Soil Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502689 +#Snow Depth water equivalent +'Snow Depth water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502690 +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502691 +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502692 +#Total Precipitation (Accumulation) +'Total Precipitation (Accumulation)' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502693 +#Potential temperature +'Potential temperature' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502694 +#Ice divergence +'Ice divergence' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502695 +#Ice divergence +'Ice divergence' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502696 +#Ice divergence +'Ice divergence' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502697 +#Velocity potential +'Velocity potential' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502750 +#Stream function +'Stream function' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502796 +#Precipitation +'Precipitation' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'Eddy dissipitation rate of TKE' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +'Downward diffusive short wave radiation flux at surface ( mean over forecast time)' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503065 +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503066 +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'precipitation, qualified,BRD' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; + } + +#paramId: 503069 +#precipitation,BRD +'precipitation,BRD' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'precipitation phase,BRD' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; + } + +#paramId: 503071 +#hail flag,BRD +'hail flag,BRD' = { + table2Version = 203 ; + indicatorOfParameter = 76 ; + } + +#paramId: 503072 +#snow rate,BRD +'snow rate,BRD' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; + } + +#paramId: 503073 +#snow rate, qualified,BRD +'snow rate, qualified,BRD' = { + table2Version = 204 ; + indicatorOfParameter = 46 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'Gravity wave dissipation ' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503078 +#relative humidity over mixed phase +'relative humidity over mixed phase' = { + table2Version = 250 ; + indicatorOfParameter = 20 ; + } + +#paramId: 503082 +#Friction Velocity +'Friction Velocity' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + } + +#paramId: 503098 +#Vertical Velocity (Geometric) (w) +'Vertical Velocity (Geometric) (w)' = { + table2Version = 3 ; + indicatorOfParameter = 40 ; + } + +#paramId: 503099 +#Fog_fraction +'Fog_fraction' = { + table2Version = 3 ; + indicatorOfParameter = 138 ; + } + +#paramId: 503100 +#accumulated_convective_rain +'accumulated_convective_rain' = { + table2Version = 3 ; + indicatorOfParameter = 140 ; + } + +#paramId: 503101 +#cloud_fraction_below_1000ft +'cloud_fraction_below_1000ft' = { + table2Version = 3 ; + indicatorOfParameter = 207 ; + } + +#paramId: 503103 +#Lowest_cloud_base_height +'Lowest_cloud_base_height' = { + table2Version = 3 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503104 +#wet_bulb_freezing_level_ht +'wet_bulb_freezing_level_ht' = { + table2Version = 3 ; + indicatorOfParameter = 152 ; + } + +#paramId: 503105 +#freezing_level_ICAO_height +'freezing_level_ICAO_height' = { + table2Version = 3 ; + indicatorOfParameter = 162 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'Downward long-wave radiation flux avg' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'Downward long-wave radiation flux accum' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 4 ; + } + +#paramId: 503140 +#orography +'orography' = { + table2Version = 3 ; + indicatorOfParameter = 148 ; + } + +#paramId: 503141 +#wind_gust_10m +'wind_gust_10m' = { + table2Version = 3 ; + indicatorOfParameter = 149 ; + } + +#paramId: 503142 +#Lightning Potential Index +'Lightning Potential Index' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'Impervious (paved or sealed) surface fraction' = { + table2Version = 202 ; + indicatorOfParameter = 33 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'Antropogenic heat flux (e.g. urban heating, traffic)' = { + table2Version = 202 ; + indicatorOfParameter = 34 ; + } + +#paramId: 503325 +#Lightning Potential Index +'Lightning Potential Index' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'Maximum amplitude (positive or negative) of updraft helicity (over given time interval)' = { + table2Version = 203 ; + indicatorOfParameter = 35 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { + table2Version = 203 ; + indicatorOfParameter = 36 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'Maximum updraft track (over given time interval and column)' = { + table2Version = 203 ; + indicatorOfParameter = 37 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'Maximum total-column integrated condensed water above -10 C isotherm (over given time interval)' = { + table2Version = 201 ; + indicatorOfParameter = 49 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'Maximum total-column integrated condensed water (over given time interval)' = { + table2Version = 201 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'Composite reflectivity - observation' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'Composite reflectivity - forecast (simulation)' = { + table2Version = 201 ; + indicatorOfParameter = 234 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'Maximum of Lightning Potential Index (over given time interval)' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'Maximum reflectivity track (over given time interval and entire atmosphere)' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503350 +#relative vorticity +'relative vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present' = { + table2Version = 202 ; + indicatorOfParameter = 36 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'Echotop-height: largest height where radar reflectivity above a threshold is present' = { + table2Version = 202 ; + indicatorOfParameter = 37 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)' = { + table2Version = 202 ; + indicatorOfParameter = 39 ; + } + diff --git a/eccodes/definitions/grib1/localConcepts/edzw/paramId.def b/eccodes/definitions/grib1/localConcepts/edzw/paramId.def new file mode 100755 index 00000000..e2701369 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/paramId.def @@ -0,0 +1,8992 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE,do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'500000' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500001 +#Pressure +'500001' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'500002' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'500003' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'500004' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'500005' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500006 +#Geopotential +'500006' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'500007' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'500008' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'500009' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500010 +#Temperature (G) +'500010' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500011 +#2m Temperature +'500011' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'500012' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'500013' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500014 +#Temperature +'500014' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'500015' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'500016' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'500017' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'500018' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'500019' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500020 +#Wave spectra (1) +'500020' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500021 +#Wave spectra (2) +'500021' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500022 +#Wave spectra (3) +'500022' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'500023' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'500024' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'500025' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'500026' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500027 +#U-Component of Wind +'500027' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'500028' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500029 +#V-Component of Wind +'500029' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'500030' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'500031' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'500032' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'500034' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'500035' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500036 +#2m Relative Humidity +'500036' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'500037' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'500038' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500039 +#Evaporation (s) +'500039' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'500040' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'500041' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'500042' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'500043' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'500044' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500045 +#Snow Depth +'500045' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500046 +#Total Cloud Cover +'500046' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'500047' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'500048' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'500049' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'500050' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'500051' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'500052' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'500053' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'500054' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'500055' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'500056' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'500057' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'500058' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'500059' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'500060' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'500061' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'500062' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 100 ; + bottomLevel = 190 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'500063' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'500064' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } + +#paramId: 500065 +#Plant cover +'500065' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500066 +#Water Runoff +'500066' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'500068' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'500069' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'500070' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'500071' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500072 +#Direction of wind waves +'500072' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500073 +#Significant height of wind waves +'500073' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500074 +#Mean period of wind waves +'500074' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500075 +#Mean direction of total swell +'500075' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500076 +#Significant height of total swell +'500076' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500077 +#Mean period of total swell +'500077' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'500078' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'500079' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'500080' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'500081' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'500082' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'500083' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'500084' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'500085' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'500086' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'500087' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'500088' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'500089' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'500401' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500404 +#Total Precipitation (Accumulation) Initialisation +'500404' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500409 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'500409' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500411 +#Convective Snowfall water equivalent (s) Initialisation +'500411' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500416 +#Evaporation (s) Initialisation +'500416' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500417 +#Max 2m Temperature (i) Initialisation +'500417' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500418 +#Min 2m Temperature (i) Initialisation +'500418' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'500419' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'500420' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'500421' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'500422' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500423 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'500423' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500424 +#Convective Snowfall water equivalent (s) Initialisation +'500424' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500425 +#Total Precipitation (Accumulation) Initialisation +'500425' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500428 +#Latent Heat Net Flux (m) Initialisation +'500428' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500429 +#Sensible Heat Net Flux (m) Initialisation +'500429' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500430 +#Momentum Flux, U-Component (m) Initialisation +'500430' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500431 +#Momentum Flux, V-Component (m) Initialisation +'500431' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500475 +#Water temperature +'500475' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500477 +#Absolute Vorticity +'500477' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500543 +#vertical vorticity +'500543' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500544 +#Potential vorticity +'500544' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500545 +#Density +'500545' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'500547' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500568 +#Geopotential height +'500568' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500569 +#Relative Divergenz +'500569' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'500579' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'500580' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 7 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'500581' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 7 ; + bottomLevel = 50 ; + } + +#paramId: 500582 +#Max 2m Temperature (i) Initialisation +'500582' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500583 +#Min 2m Temperature (i) Initialisation +'500583' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500588 +#Snow melt +'500588' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'500590' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500593 +#Global radiation flux +'500593' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500642 +#Lapse rate +'500642' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'500905' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'502317' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'502318' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502333 +#salinity +'502333' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502334 +#Stream function +'502334' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502335 +#Velocity potential +'502335' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502350 +#Temperature (G) +'502350' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502355 +#Stream function +'502355' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502356 +#Velocity potential +'502356' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502357 +#Wind speed (SP) +'502357' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502358 +#Pressure +'502358' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502359 +#Potential vorticity +'502359' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502360 +#Potential vorticity +'502360' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502361 +#Geopotential +'502361' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502362 +#Max 2m Temperature +'502362' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502363 +#Min 2m Temperature +'502363' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502364 +#Temperature +'502364' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502365 +#U-Component of Wind +'502365' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502366 +#Pressure (S) (not reduced) +'502366' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502367 +#V-Component of Wind +'502367' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502368 +#Specific Humidity +'502368' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502369 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'502369' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502370 +#vertical vorticity +'502370' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502371 +#Sensible Heat Net Flux (m) +'502371' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502372 +#Latent Heat Net Flux (m) +'502372' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502373 +#Pressure Reduced to MSL +'502373' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502374 +#Relative Divergenz +'502374' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502375 +#Geopotential height +'502375' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502376 +#Relative Humidity +'502376' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502377 +#U-Component of Wind +'502377' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502378 +#V-Component of Wind +'502378' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502379 +#2m Temperature +'502379' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502381 +#Land Cover (1=land, 0=sea) +'502381' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502382 +#Surface Roughness length Surface Roughness +'502382' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502383 +#Albedo (in short-wave, average) +'502383' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502384 +#Evaporation (s) +'502384' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502385 +#Convective Cloud Cover +'502385' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502386 +#Cloud Cover (800 hPa - Soil) +'502386' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502387 +#Cloud Cover (400 - 800 hPa) +'502387' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502388 +#Cloud Cover (0 - 400 hPa) +'502388' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502389 +#Plant cover +'502389' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502390 +#Water Runoff +'502390' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502391 +#Total Column Integrated Ozone +'502391' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502392 +#Convective Snowfall water equivalent (s) +'502392' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502393 +#Large-Scale snowfall - water equivalent (Accumulation) +'502393' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502394 +#Large-Scale Precipitation +'502394' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502395 +#Total Column-Integrated Cloud Water +'502395' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502396 +#Virtual Temperature +'502396' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502397 +#Virtual Temperature +'502397' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502398 +#Virtual Temperature +'502398' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502399 +#Brightness Temperature +'502399' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502400 +#Boundary Layer Dissipitation +'502400' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502401 +#Pressure Tendency +'502401' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502402 +#ICAO Standard Atmosphere reference height +'502402' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502403 +#Geometric Height +'502403' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502404 +#Max Temperature +'502404' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502405 +#Min Temperature +'502405' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502406 +#Dew Point Temperature +'502406' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502407 +#Dew point depression(or deficit) +'502407' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502408 +#Lapse rate +'502408' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502409 +#Visibility +'502409' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502410 +#Radar spectra (1) +'502410' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502411 +#Radar spectra (2) +'502411' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502412 +#Radar spectra (3) +'502412' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502413 +#Parcel lifted index (to 500 hPa) +'502413' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502414 +#Temperature anomaly +'502414' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502415 +#Pressure anomaly +'502415' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502416 +#Geopotential height anomaly +'502416' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502417 +#Wave spectra (1) +'502417' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502418 +#Wave spectra (2) +'502418' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502419 +#Wave spectra (3) +'502419' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502420 +#Wind Direction (DD) +'502420' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502421 +#Sigma coordinate vertical velocity +'502421' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502422 +#Absolute Vorticity +'502422' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502423 +#Absolute divergence +'502423' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502424 +#Vertical u-component shear +'502424' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502425 +#Vertical v-component shear +'502425' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502426 +#Direction of current +'502426' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502427 +#Speed of current +'502427' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502428 +#U-component of current +'502428' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502429 +#V-component of current +'502429' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502430 +#Humidity mixing ratio +'502430' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502431 +#Precipitable water +'502431' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502432 +#Vapour pressure +'502432' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502433 +#Saturation deficit +'502433' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502434 +#Precipitation rate +'502434' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502435 +#Thunderstorm probability +'502435' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502436 +#Convective precipitation (water) +'502436' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502437 +#Snow fall rate water equivalent +'502437' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502438 +#Mixed layer depth +'502438' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502439 +#Transient thermocline depth +'502439' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502440 +#Main thermocline depth +'502440' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502441 +#Main thermocline depth +'502441' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502442 +#Best lifted index (to 500 hPa) +'502442' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502443 +#Water temperature +'502443' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502444 +#Deviation of sea-elbel from mean +'502444' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502445 +#Column-integrated Soil Moisture +'502445' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502446 +#salinity +'502446' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502447 +#Density +'502447' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502448 +#Sea Ice Cover ( 0= free, 1=cover) +'502448' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502449 +#sea Ice Thickness +'502449' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502450 +#Direction of ice drift +'502450' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502451 +#Speed of ice drift +'502451' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502452 +#U-component of ice drift +'502452' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502453 +#V-component of ice drift +'502453' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502454 +#Ice growth rate +'502454' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502455 +#Snow melt +'502455' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502456 +#Significant height of combined wind waves and swell +'502456' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502457 +#Direction of wind waves +'502457' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502458 +#Significant height of wind waves +'502458' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502459 +#Mean period of wind waves +'502459' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502460 +#Mean direction of total swell +'502460' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502461 +#Significant height of swell waves +'502461' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502462 +#Swell Mean Period +'502462' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502465 +#Secondary wave direction +'502465' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502466 +#Secondary wave period +'502466' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502467 +#Net short wave radiation flux (at the surface) +'502467' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502468 +#Net long wave radiation flux (m) (at the surface) +'502468' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502469 +#Net short wave radiation flux +'502469' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502470 +#Net long-wave radiation flux(atmosph.top) +'502470' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502471 +#Long wave radiation flux +'502471' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502472 +#Short wave radiation flux +'502472' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502473 +#Global radiation flux +'502473' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502474 +#Radiance (with respect to wave number) +'502474' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502475 +#Radiance (with respect to wave length) +'502475' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502476 +#Momentum Flux, U-Component (m) +'502476' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502477 +#Momentum Flux, V-Component (m) +'502477' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502478 +#Wind mixing energy +'502478' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502479 +#Image data +'502479' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502480 +#Geopotential height +'502480' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502481 +#Soil Temperature +'502481' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502482 +#Snow Depth water equivalent +'502482' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502483 +#Snow depth water equivalent +'502483' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502484 +#Total Cloud Cover +'502484' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502485 +#Total Precipitation (Accumulation) +'502485' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502486 +#Boundary Layer Dissipitation +'502486' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502487 +#Sensible Heat Net Flux (m) +'502487' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502488 +#Latent Heat Net Flux (m) +'502488' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502490 +#Evaporation (s) +'502490' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502491 +#Cloud Cover (800 hPa - Soil) +'502491' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502492 +#Cloud Cover (400 - 800 hPa) +'502492' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502493 +#Cloud Cover (0 - 400 hPa) +'502493' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502494 +#Brightness Temperature +'502494' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502495 +#Water Runoff +'502495' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502496 +#Geometric Height +'502496' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502497 +#Standard devation of height +'502497' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502498 +#Standard devation of height +'502498' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502499 +#Pseudo-adiabatic potential Temperature +'502499' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502500 +#Pseudo-adiabatic potential Temperature +'502500' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502501 +#Max Temperature +'502501' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502502 +#Min Temperature +'502502' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502503 +#Dew Point Temperature +'502503' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502504 +#Dew point depression(or deficit) +'502504' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502505 +#Visibility +'502505' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502506 +#Radar spectra (2) +'502506' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502507 +#Radar spectra (3) +'502507' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502508 +#Parcel lifted index (to 500 hPa) +'502508' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502509 +#Temperature anomaly +'502509' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502510 +#Pressure anomaly +'502510' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502511 +#Geopotential height anomaly +'502511' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502512 +#Montgomery stream Function +'502512' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502513 +#Montgomery stream Function +'502513' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502514 +#Sigma coordinate vertical velocity +'502514' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502515 +#Absolute divergence +'502515' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502516 +#Vertical u-component shear +'502516' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502517 +#Vertical v-component shear +'502517' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502518 +#Direction of current +'502518' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502519 +#Speed of current +'502519' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502520 +#U-component of current +'502520' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502521 +#V-component of current +'502521' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502522 +#Humidity mixing ratio +'502522' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502523 +#Vapour pressure +'502523' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502524 +#Saturation deficit +'502524' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502525 +#Precipitation rate +'502525' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502526 +#Thunderstorm probability +'502526' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502527 +#Convective precipitation (water) +'502527' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502528 +#Snow fall rate water equivalent +'502528' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502529 +#Mixed layer depth +'502529' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502530 +#Transient thermocline depth +'502530' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502531 +#Main thermocline depth +'502531' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502532 +#Main thermocline depth +'502532' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502533 +#Best lifted index (to 500 hPa) +'502533' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502534 +#Deviation of sea-elbel from mean +'502534' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502535 +#Column-integrated Soil Moisture +'502535' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502536 +#Direction of ice drift +'502536' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502537 +#Speed of ice drift +'502537' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502538 +#U-component of ice drift +'502538' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502539 +#V-component of ice drift +'502539' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502540 +#Ice growth rate +'502540' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502542 +#Snow melt +'502542' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502545 +#Secondary wave direction +'502545' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502546 +#Secondary wave period +'502546' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502547 +#Net short wave radiation flux (at the surface) +'502547' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502548 +#Net long wave radiation flux (m) (at the surface) +'502548' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502549 +#Net short wave radiation flux +'502549' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502550 +#Net long-wave radiation flux(atmosph.top) +'502550' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502551 +#Long wave radiation flux +'502551' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502552 +#Short wave radiation flux +'502552' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502553 +#Radiance (with respect to wave number) +'502553' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502554 +#Radiance (with respect to wave length) +'502554' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502555 +#Momentum Flux, U-Component (m) +'502555' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502556 +#Momentum Flux, V-Component (m) +'502556' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502557 +#Wind mixing energy +'502557' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502558 +#Image data +'502558' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502559 +#Geopotential height +'502559' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502560 +#Soil Temperature +'502560' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502562 +#Potential temperature +'502562' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502563 +#Potential temperature +'502563' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502564 +#Wind speed (SP) +'502564' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502565 +#Pressure +'502565' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502566 +#Max 2m Temperature +'502566' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502567 +#Min 2m Temperature +'502567' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502568 +#Geopotential +'502568' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502569 +#Temperature +'502569' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502570 +#U-Component of Wind +'502570' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502571 +#V-Component of Wind +'502571' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502572 +#Specific Humidity +'502572' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502573 +#Pressure (S) (not reduced) +'502573' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502574 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'502574' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502575 +#vertical vorticity +'502575' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502576 +#Boundary Layer Dissipitation +'502576' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502577 +#Sensible Heat Net Flux (m) +'502577' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502578 +#Latent Heat Net Flux (m) +'502578' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502579 +#Pressure Reduced to MSL +'502579' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502581 +#Geopotential height +'502581' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502582 +#Relative Humidity +'502582' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502583 +#U-Component of Wind +'502583' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502584 +#V-Component of Wind +'502584' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502585 +#2m Temperature +'502585' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502587 +#Relative Divergenz +'502587' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502588 +#Land Cover (1=land, 0=sea) +'502588' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502589 +#Surface Roughness length Surface Roughness +'502589' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502590 +#Albedo (in short-wave, average) +'502590' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502591 +#Evaporation (s) +'502591' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502592 +#Convective Cloud Cover +'502592' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502593 +#Cloud Cover (800 hPa - Soil) +'502593' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502594 +#Cloud Cover (400 - 800 hPa) +'502594' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502595 +#Cloud Cover (0 - 400 hPa) +'502595' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502596 +#Brightness Temperature +'502596' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502597 +#Plant cover +'502597' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502598 +#Water Runoff +'502598' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502599 +#Total Column Integrated Ozone +'502599' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502600 +#Convective Snowfall water equivalent (s) +'502600' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502601 +#Large-Scale snowfall - water equivalent (Accumulation) +'502601' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502602 +#Large-Scale Precipitation +'502602' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502603 +#Total Column-Integrated Cloud Water +'502603' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502604 +#Pressure Tendency +'502604' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502605 +#ICAO Standard Atmosphere reference height +'502605' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502606 +#Geometric Height +'502606' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502607 +#Standard devation of height +'502607' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502608 +#Pseudo-adiabatic potential Temperature +'502608' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502609 +#Max Temperature +'502609' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502610 +#Min Temperature +'502610' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502611 +#Dew Point Temperature +'502611' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502612 +#Dew point depression(or deficit) +'502612' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502613 +#Lapse rate +'502613' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502614 +#Visibility +'502614' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502615 +#Radar spectra (1) +'502615' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502616 +#Radar spectra (2) +'502616' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502617 +#Radar spectra (3) +'502617' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502618 +#Parcel lifted index (to 500 hPa) +'502618' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502619 +#Temperature anomaly +'502619' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502620 +#Pressure anomaly +'502620' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502621 +#Geopotential height anomaly +'502621' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502622 +#Wave spectra (1) +'502622' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502623 +#Wave spectra (2) +'502623' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502624 +#Wave spectra (3) +'502624' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502625 +#Wind Direction (DD) +'502625' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502626 +#Montgomery stream Function +'502626' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502627 +#Sigma coordinate vertical velocity +'502627' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502628 +#Absolute Vorticity +'502628' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502629 +#Absolute divergence +'502629' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502630 +#Vertical u-component shear +'502630' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502631 +#Vertical v-component shear +'502631' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502632 +#Direction of current +'502632' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502633 +#Speed of current +'502633' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502634 +#U-component of current +'502634' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502635 +#V-component of current +'502635' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502636 +#Humidity mixing ratio +'502636' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502637 +#Precipitable water +'502637' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502638 +#Vapour pressure +'502638' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502639 +#Saturation deficit +'502639' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502640 +#Precipitation rate +'502640' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502641 +#Thunderstorm probability +'502641' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502642 +#Convective precipitation (water) +'502642' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502643 +#Snow fall rate water equivalent +'502643' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502644 +#Mixed layer depth +'502644' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502645 +#Transient thermocline depth +'502645' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502646 +#Main thermocline depth +'502646' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502647 +#Main thermocline depth +'502647' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502648 +#Best lifted index (to 500 hPa) +'502648' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502649 +#Water temperature +'502649' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502650 +#Deviation of sea-elbel from mean +'502650' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502651 +#Column-integrated Soil Moisture +'502651' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502652 +#salinity +'502652' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502653 +#Density +'502653' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502654 +#Sea Ice Cover ( 0= free, 1=cover) +'502654' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502655 +#sea Ice Thickness +'502655' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502656 +#Direction of ice drift +'502656' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502657 +#Speed of ice drift +'502657' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502658 +#U-component of ice drift +'502658' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502659 +#V-component of ice drift +'502659' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502660 +#Ice growth rate +'502660' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502662 +#Significant height of combined wind waves and swell +'502662' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502663 +#Direction of wind waves +'502663' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502664 +#Significant height of wind waves +'502664' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502665 +#Mean period of wind waves +'502665' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502666 +#Mean direction of total swell +'502666' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502667 +#Significant height of swell waves +'502667' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502668 +#Swell Mean Period +'502668' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502671 +#Secondary wave direction +'502671' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502672 +#Secondary wave period +'502672' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502673 +#Net short wave radiation flux (at the surface) +'502673' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502674 +#Net long wave radiation flux (m) (at the surface) +'502674' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502675 +#Net short wave radiation flux +'502675' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502676 +#Net long-wave radiation flux(atmosph.top) +'502676' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502677 +#Long wave radiation flux +'502677' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502678 +#Short wave radiation flux +'502678' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502679 +#Global radiation flux +'502679' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502680 +#Radiance (with respect to wave number) +'502680' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502681 +#Radiance (with respect to wave length) +'502681' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502682 +#Momentum Flux, U-Component (m) +'502682' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502683 +#Momentum Flux, V-Component (m) +'502683' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502684 +#Wind mixing energy +'502684' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502685 +#Image data +'502685' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502686 +#Geopotential height +'502686' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502687 +#Column-integrated Soil Moisture +'502687' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502688 +#Soil Temperature +'502688' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502689 +#Snow Depth water equivalent +'502689' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502690 +#Snow depth water equivalent +'502690' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502691 +#Total Cloud Cover +'502691' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502692 +#Total Precipitation (Accumulation) +'502692' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502693 +#Potential temperature +'502693' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502694 +#Ice divergence +'502694' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502695 +#Ice divergence +'502695' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502696 +#Ice divergence +'502696' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502697 +#Velocity potential +'502697' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502750 +#Stream function +'502750' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'503063' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'503064' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503098 +#Vertical Velocity (Geometric) (w) +'503098' = { + table2Version = 3 ; + indicatorOfParameter = 40 ; + } + +#paramId: 503099 +#Fog_fraction +'503099' = { + table2Version = 3 ; + indicatorOfParameter = 138 ; + } + +#paramId: 503100 +#accumulated_convective_rain +'503100' = { + table2Version = 3 ; + indicatorOfParameter = 140 ; + } + +#paramId: 503101 +#cloud_fraction_below_1000ft +'503101' = { + table2Version = 3 ; + indicatorOfParameter = 207 ; + } + +#paramId: 503103 +#Lowest_cloud_base_height +'503103' = { + table2Version = 3 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503104 +#wet_bulb_freezing_level_ht +'503104' = { + table2Version = 3 ; + indicatorOfParameter = 152 ; + } + +#paramId: 503105 +#freezing_level_ICAO_height +'503105' = { + table2Version = 3 ; + indicatorOfParameter = 162 ; + } + +#paramId: 503140 +#orography +'503140' = { + table2Version = 3 ; + indicatorOfParameter = 148 ; + } + +#paramId: 503141 +#wind_gust_10m +'503141' = { + table2Version = 3 ; + indicatorOfParameter = 149 ; + } + +#paramId: 503350 +#relative vorticity +'503350' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'500090' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'500091' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'500092' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'500093' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'500094' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'500095' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500096 +#Sunshine duration in h +'500096' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500097 +#Stomatal Resistance +'500097' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500098 +#Cloud cover +'500098' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'500099' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'500100' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'500101' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500102 +#Rain mixing ratio +'500102' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500103 +#Snow mixing ratio +'500103' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500104 +#Total column integrated rain +'500104' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500105 +#Total column integrated snow +'500105' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500106 +#Grauple +'500106' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500107 +#Total column integrated grauple +'500107' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'500108' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500109 +#vertical integral of divergence of total water content (s) +'500109' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500110 +#subgrid scale cloud water +'500110' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500111 +#subgridscale cloud ice +'500111' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500112 +#cloud cover CH (0..8) +'500112' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500113 +#cloud cover CM (0..8) +'500113' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500114 +#cloud cover CL (0..8) +'500114' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500115 +#cloud base above msl, shallow convection +'500115' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500116 +#Cloud top above msl, shallow convection +'500116' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500117 +#specific cloud water content, convective cloud +'500117' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'500118' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'500119' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500120 +#base index (vertical level) of main convective cloud (i) +'500120' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500121 +#top index (vertical level) of main convective cloud (i) +'500121' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'500122' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'500123' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500124 +#zonal wind tendency due to convection +'500124' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500125 +#meridional wind tendency due to convection +'500125' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'500126' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'500127' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'500128' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'500129' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500130 +#tendency of specific cloud ice content due to convection +'500130' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'500131' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500132 +#Large scale rain rate +'500132' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'500133' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'500134' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500135 +#Convective rain rate +'500135' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'500136' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500137 +#Convective rain +'500137' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'500138' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'500139' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipation +'500140' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'500141' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500142 +#tendency of specific cloud liquid water content due to grid scale precipitation +'500142' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'500143' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + } + +#paramId: 500144 +#tendency of specific cloud ice content due to grid scale precipitation +'500144' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'500145' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'500146' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500147 +#Snow density +'500147' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500148 +#Pressure perturbation +'500148' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500149 +#supercell detection index 1 (rot. up+down drafts) +'500149' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + } + +#paramId: 500150 +#supercell detection index 2 (only rot. up drafts) +'500150' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'500151' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'500152' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'500153' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'500154' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'500155' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'500156' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500157 +#Kinetic Energy +'500157' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'500158' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'500159' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'500160' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'500161' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'500162' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500163 +#mixed layer depth +'500163' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500164 +#maximum Wind 10m +'500164' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'500166' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'500167' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'500168' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'500169' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'500170' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'500171' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'500172' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500173 +#Base reflectivity +'500173' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'500174' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'500175' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } + +#paramId: 500176 +#solution of 2-d Helmholtz equations - needed for restart +'500176' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'500177' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500178 +#sum of contributions to evaporation +'500178' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500179 +#total transpiration from all soil layers +'500179' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500180 +#total forcing at soil surface +'500180' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500181 +#residuum of soil moisture +'500181' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500182 +#Massflux at convective cloud base +'500182' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'500183' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500184 +#moisture convergence for Kuo-type closure +'500184' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500185 +#Total Wave Direction +'500185' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500187 +#Peak period of total swell +'500187' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500189 +#Swell peak period +'500189' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500190 +#Total wave peak period +'500190' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500191 +#Total wave mean period +'500191' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500192 +#Total Tm1 period +'500192' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500193 +#Total Tm2 period +'500193' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500194 +#Total directional spread +'500194' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500195 +#analysis error(standard deviation), geopotential(gpm) +'500195' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500196 +#analysis error(standard deviation), u-comp. of wind +'500196' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500197 +#analysis error(standard deviation), v-comp. of wind +'500197' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500198 +#zonal wind tendency due to subgrid scale oro. +'500198' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500199 +#meridional wind tendency due to subgrid scale oro. +'500199' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'500200' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'500201' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'500202' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'500203' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500204 +#surface emissivity +'500204' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500205 +#soil type of grid (1...9, local soilType.table) +'500205' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500206 +#Leaf area index +'500206' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500207 +#root depth of vegetation +'500207' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500208 +#height of ozone maximum (climatological) +'500208' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500209 +#vertically integrated ozone content (climatological) +'500209' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'500210' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'500211' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500212 +#Max Leaf area index +'500212' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500213 +#Min Leaf area index +'500213' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'500214' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500215 +#variance of soil moisture content (0-10) +'500215' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500216 +#variance of soil moisture content (10-100) +'500216' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500217 +#evergreen forest +'500217' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500218 +#deciduous forest +'500218' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'500219' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'500220' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500221 +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500221' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500222 +#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500222' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'500223' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'500224' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'500225' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'500226' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500227 +#Organic aerosol +'500227' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'500228' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500229 +#Black carbon aerosol +'500229' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'500230' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500231 +#Sea salt aerosol +'500231' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'500232' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500233 +#tendency of specific humidity +'500233' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500234 +#water vapor flux +'500234' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500235 +#Coriolis parameter +'500235' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500236 +#geographical latitude +'500236' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500237 +#geographical longitude +'500237' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500239 +#Delay of the GPS signal trough the (total) atm. +'500239' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500240 +#Delay of the GPS signal trough wet atmos. +'500240' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500241 +#Delay of the GPS signal trough dry atmos. +'500241' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'500242' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'500243' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'500244' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'500245' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'500246' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'500247' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'500248' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'500249' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500250 +#I131 - dry deposition +'500250' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500251 +#I131 - wet deposition +'500251' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'500252' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'500253' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'500255' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'500256' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'500257' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'500258' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'500259' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'500260' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'500261' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'500262' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'500263' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500264 +#TRACER - concentration +'500264' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'500265' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'500266' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'500267' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'500268' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'500269' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'500270' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500271 +#I131g - dry deposition +'500271' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500272 +#I131g - wet deposition +'500272' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'500273' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500274 +#I131o - dry deposition +'500274' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500275 +#I131o - wet deposition +'500275' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'500276' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'500277' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'500278' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500279 +#u-momentum flux due to SSO-effects +'500279' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500280 +#u-momentum flux due to SSO-effects +'500280' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500281 +#v-momentum flux due to SSO-effects (average) +'500281' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500282 +#v-momentum flux due to SSO-effects +'500282' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500283 +#Gravity wave dissipation (initialisation) +'500283' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'500284' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'500285' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500286 +#Vertical speed shear +'500286' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500287 +#storm relative helicity +'500287' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'500288' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) +'500289' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'500290' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'500291' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'500292' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'500293' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500294 +#geostrophische Schichtdickenadvektion +'500294' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'500295' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500296 +#Winddivergenz +'500296' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'500297' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'500298' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'500299' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'500300' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'500301' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500302 +#KO index +'500302' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'500303' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500304 +#Ceiling +'500304' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'500305' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500306 +#modified cloud depth for media +'500306' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500307 +#modified cloud cover for media +'500307' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'500308' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'500309' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'500310' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'500311' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'500312' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'500313' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'500314' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'500315' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'500316' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'500317' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'500318' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'500319' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'500320' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'500321' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500322 +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'500322' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500323 +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'500323' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'500324' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'500325' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'500326' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'500327' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'500328' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'500329' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'500330' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'500331' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'500332' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'500333' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'500334' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'500335' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'500336' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'500337' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'500338' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'500339' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'500340' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'500341' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'500342' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'500343' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'500344' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'500345' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'500346' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'500347' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'500348' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'500349' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'500350' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'500351' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'500352' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'500353' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'500354' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'500355' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'500356' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'500357' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'500358' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'500359' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'500360' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'500361' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'500362' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'500363' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'500364' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'500365' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'500366' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'500367' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'500368' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'500369' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'500370' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'500371' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'500372' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'500373' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'500374' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'500375' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'500376' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'500377' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'500378' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'500379' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'500380' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'500381' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'500382' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'500383' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'500384' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'500385' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'500386' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'500387' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'500388' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500402 +#Max 2m Temperature long periods > h +'500402' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500403 +#Min 2m Temperature long periods > h +'500403' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500408 +#Large scale rain (Accumulation) Initialisation +'500408' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500410 +#Convective rain Initialisation +'500410' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500412 +#maximum Wind 10m Initialisation +'500412' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 10 ; + } + +#paramId: 500432 +#Photosynthetically active radiation +'500432' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500433 +#Large scale rain (Accumulation) Initialisation +'500433' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500434 +#Convective rain Initialisation +'500434' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500436 +#Graupel (snow pellets) precipitation (Initialisation) +'500436' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'500437' = { + table2Version = 208 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'500438' = { + table2Version = 208 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'500439' = { + table2Version = 208 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'500440' = { + table2Version = 208 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'500441' = { + table2Version = 208 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'500442' = { + table2Version = 208 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'500443' = { + table2Version = 208 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'500444' = { + table2Version = 208 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'500445' = { + table2Version = 208 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'500446' = { + table2Version = 208 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'500447' = { + table2Version = 208 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'500448' = { + table2Version = 208 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'500449' = { + table2Version = 208 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'500450' = { + table2Version = 208 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'500451' = { + table2Version = 208 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'500452' = { + table2Version = 208 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'500453' = { + table2Version = 208 ; + indicatorOfParameter = 136 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'500454' = { + table2Version = 208 ; + indicatorOfParameter = 137 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'500455' = { + table2Version = 208 ; + indicatorOfParameter = 138 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'500456' = { + table2Version = 208 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'500457' = { + table2Version = 208 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'500458' = { + table2Version = 208 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'500459' = { + table2Version = 208 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'500460' = { + table2Version = 208 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'500461' = { + table2Version = 208 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'500462' = { + table2Version = 208 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'500463' = { + table2Version = 208 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'500464' = { + table2Version = 208 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'500465' = { + table2Version = 202 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'500466' = { + table2Version = 202 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'500467' = { + table2Version = 202 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'500468' = { + table2Version = 202 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500469 +#Total ozone +'500469' = { + table2Version = 202 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'500471' = { + table2Version = 202 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500472 +#Konvektionsart (0..4) +'500472' = { + table2Version = 203 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500473 +#perceived temperature +'500473' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500476 +#Water temperature in C +'500476' = { + table2Version = 203 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'500478' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500479 +#value of isolation of clothes +'500479' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'500480' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux +'500481' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'500482' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500486 +#vertical integral of divergence of total water content (s) +'500486' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500487 +#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation +'500487' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500488 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'500488' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500489 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'500489' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500490 +#Water Fraction +'500490' = { + table2Version = 202 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500491 +#Lake depth +'500491' = { + table2Version = 201 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500492 +#Wind fetch +'500492' = { + table2Version = 201 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'500493' = { + table2Version = 201 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'500494' = { + table2Version = 201 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'500495' = { + table2Version = 201 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'500496' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'500497' = { + table2Version = 201 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'500498' = { + table2Version = 201 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500499 +#Mixed-layer depth +'500499' = { + table2Version = 201 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'500500' = { + table2Version = 201 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'500501' = { + table2Version = 201 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'500502' = { + table2Version = 201 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500503 +#Icing Base (hft) - Prognose Icing Degree Composit +'500503' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Prognose Icing Degree Composit +'500504' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Prognose Icing Degree Composit +'500505' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500506 +#Icing Top (hft) - Prognose Icing Degree Composit +'500506' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit +'500507' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit +'500508' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500509 +#Icing Base (hft) - Prognose Icing Scenario Composit +'500509' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit +'500510' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit +'500511' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500512 +#Icing Top (hft) - Prognose Icing Scenario Composit +'500512' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit +'500513' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit +'500514' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500515 +#Icing Base (hft) - Diagnose Icing Degree Composit +'500515' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Diagnose Icing Degree Composit +'500516' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Diagnose Icing Degree Composit +'500517' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500518 +#Icing Top (hft) - Diagnose Icing Degree Composit +'500518' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit +'500519' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit +'500520' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500521 +#Icing Base (hft) - Diagnose Icing Scenario Composit +'500521' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit +'500522' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit +'500523' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500524 +#Icing Top (hft) - Diagnose Icing Scenario Composit +'500524' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit +'500525' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit +'500526' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500527 +#Prognose Icing Degree Code (1=light,2=moderate,3=severe) +'500527' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500528 +#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'500528' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500529 +#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) +'500529' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500530 +#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'500530' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'500531' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500541 +#relative vorticity,U-component +'500541' = { + table2Version = 202 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500542 +#relative vorticity,V-component +'500542' = { + table2Version = 202 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'500550' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'500551' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'500552' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'500553' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'500554' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'500555' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'500556' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'500557' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'500558' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'500559' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'500560' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500562 +#Divergenz +'500562' = { + table2Version = 203 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'500563' = { + table2Version = 203 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500564 +#Divergenz Qn +'500564' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500565 +#Divergenz Qs +'500565' = { + table2Version = 203 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500566 +#Frontogenesis function +'500566' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'500567' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500570 +#dry convection top index +'500570' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500571 +#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 +'500571' = { + table2Version = 201 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500572 +#tidal tendencies +'500572' = { + table2Version = 202 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'500573' = { + table2Version = 202 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'500574' = { + table2Version = 202 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500575 +#3 hour pressure change +'500575' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500576 +#covariance of soil moisture content (0-10) +'500576' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'500585' = { + table2Version = 204 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500586 +#Ellrod Index +'500586' = { + table2Version = 204 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500592 +#Geopotential height +'500592' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500600 +#Prob Windboeen > 25 kn +'500600' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500601 +#Prob Windboeen > 27 kn +'500601' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500602 +#Prob Sturmboeen > 33 kn +'500602' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500603 +#Prob Sturmboeen > 40 kn +'500603' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500604 +#Prob Schwere Sturmboeen > 47 kn +'500604' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500605 +#Prob Orkanartige Boeen > 55 kn +'500605' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500606 +#Prob Orkanboeen > 63 kn +'500606' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500607 +#Prob Oberoertliche Orkanboeen > 75 kn +'500607' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500608 +#Prob Starkregen > 10 mm +'500608' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500609 +#Prob Heftiger Starkregen > 25 mm +'500609' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500610 +#Prob Extrem Heftiger Starkregen > 50 mm +'500610' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500611 +#Prob Leichter Schneefall > 0,1 mm +'500611' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500612 +#Prob Leichter Schneefall > 0,1 cm +'500612' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500613 +#Prob Leichter Schneefall > 0,5 cm +'500613' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500614 +#Prob Leichter Schneefall > 1 cm +'500614' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500615 +#Prob Schneefall > 5 cm +'500615' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500616 +#Prob Starker Schneefall > 10 cm +'500616' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500617 +#Prob Extrem starker Schneefall > 25 cm +'500617' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500618 +#Prob Frost +'500618' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500619 +#Prob Strenger Frost +'500619' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500620 +#Prob Gewitter +'500620' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'500621' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'500622' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500623 +#Prob Dauerregen +'500623' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'500624' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'500625' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'500626' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'500627' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500628 +#Prob Glaette +'500628' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'500629' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500630 +#Prob Glatteis +'500630' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'500631' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500632 +#Prob Tauwetter +'500632' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'500633' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500634 +#wake-production of TKE due to sub grid scale orography +'500634' = { + table2Version = 201 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500635 +#shear-production of TKE due to separated horizontal shear modes +'500635' = { + table2Version = 201 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500636 +#buoyancy-production of TKE due to sub grid scale convection +'500636' = { + table2Version = 201 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500638 +#Atmospheric Resistance +'500638' = { + table2Version = 201 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'500639' = { + table2Version = 201 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500640 +#mass concentration of dust (minimum mode) +'500640' = { + table2Version = 242 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500643 +#mass concentration of dust (medium mode) +'500643' = { + table2Version = 242 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500644 +#mass concentration of dust (maximum mode) +'500644' = { + table2Version = 242 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500645 +#number concentration of dust (minimum mode) +'500645' = { + table2Version = 242 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500646 +#number concentration of dust (medium mode) +'500646' = { + table2Version = 242 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500647 +#number concentration of dust (maximum mode) +'500647' = { + table2Version = 242 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500648 +#mass concentration of dust (sum of all modes) +'500648' = { + table2Version = 242 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500649 +#number concentration of dust (sum of all modes) +'500649' = { + table2Version = 242 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'500650' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'500651' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'500652' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'500654' = { + table2Version = 254 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'500655' = { + table2Version = 254 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'500656' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'500657' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'500658' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'500659' = { + table2Version = 254 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'500660' = { + table2Version = 254 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'500661' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'500662' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'500663' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'500664' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'500665' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'500666' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'500667' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'500668' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'500669' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'500670' = { + table2Version = 254 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'500671' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'500672' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'500673' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'500674' = { + table2Version = 254 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'500675' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'500676' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'500677' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'500678' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'500679' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'500680' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'500681' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'500682' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'500683' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'500684' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'500685' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'500686' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'500687' = { + table2Version = 254 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'500688' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'500689' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'500690' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'500691' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'500692' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'500693' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'500694' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'500695' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'500696' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'500697' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'500698' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'500699' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'500700' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'500701' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'500702' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'500703' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'500704' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'500705' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'500706' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'500707' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'500708' = { + table2Version = 254 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'500709' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'500710' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'500711' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'500712' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'500713' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'500714' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'500715' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'500716' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'500717' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'500718' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'500719' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'500720' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'500721' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'500722' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'500723' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'500724' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'500725' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'500726' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'500727' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'500728' = { + table2Version = 254 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'500729' = { + table2Version = 254 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'500730' = { + table2Version = 254 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'500731' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'500732' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'500733' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'500734' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'500735' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'500736' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'500737' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'500738' = { + table2Version = 254 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'500739' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'500740' = { + table2Version = 254 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'500741' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'500742' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'500743' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'500744' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'500745' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'500746' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'500747' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'500748' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'500749' = { + table2Version = 254 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'500750' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'500751' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'500752' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'500753' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'500754' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'500755' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'500756' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'500757' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'500758' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'500759' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'500760' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'500761' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'500762' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'500763' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'500764' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'500765' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'500766' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'500767' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'500768' = { + table2Version = 254 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'500769' = { + table2Version = 254 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'500770' = { + table2Version = 254 ; + indicatorOfParameter = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'500771' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'500772' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'500773' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'500774' = { + table2Version = 254 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'500775' = { + table2Version = 254 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'500776' = { + table2Version = 254 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'500777' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'500778' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'500793' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'500794' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'500795' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'500796' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'500797' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'500798' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'500799' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'500800' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'500801' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'500802' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'500803' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'500804' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'500805' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'500806' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'500807' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'500808' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'500809' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'500810' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'500811' = { + table2Version = 254 ; + indicatorOfParameter = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'500812' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'500813' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'500814' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'500815' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'500816' = { + table2Version = 254 ; + indicatorOfParameter = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'500817' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'500818' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'500819' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'500820' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'500821' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'500822' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'500823' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'500824' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'500825' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'500826' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'500827' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'500828' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'500829' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'500830' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'500831' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'500832' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'500833' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'500834' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'500835' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'500836' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'500837' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'500838' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'500839' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'500840' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'500841' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'500842' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'500843' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'500844' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'500845' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'500846' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'500847' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'500848' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'500849' = { + table2Version = 254 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'500850' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'500851' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'500852' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'500853' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'500854' = { + table2Version = 254 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'500855' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'500856' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'500857' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'500858' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'500859' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'500860' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'500861' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'500862' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'500863' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'500864' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'500865' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'500866' = { + table2Version = 254 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'500867' = { + table2Version = 254 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'500868' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'500869' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'500870' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'500871' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'500872' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'500873' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'500874' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'500875' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'500876' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'500877' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'500878' = { + table2Version = 254 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'500879' = { + table2Version = 254 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'500880' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'500881' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'500882' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'500883' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'500884' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'500885' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'500886' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'500887' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'500888' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'500889' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'500890' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'500891' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'500892' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'500893' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'500894' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'500895' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'500896' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'500897' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'500898' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'500899' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'500900' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'500901' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'500902' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'500903' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'500904' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'502307' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + timeRangeIndicator = 3 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'502308' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + } + +#paramId: 502336 +#Skin temperature +'502336' = { + table2Version = 202 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux +'502339' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502796 +#Precipitation +'502796' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'503049' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +'503061' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'503062' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503065 +#u-momentum flux due to SSO-effects +'503065' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503066 +#v-momentum flux due to SSO-effects +'503066' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'503068' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; + } + +#paramId: 503069 +#precipitation,BRD +'503069' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'503070' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; + } + +#paramId: 503071 +#hail flag,BRD +'503071' = { + table2Version = 203 ; + indicatorOfParameter = 76 ; + } + +#paramId: 503072 +#snow rate,BRD +'503072' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; + } + +#paramId: 503073 +#snow rate, qualified,BRD +'503073' = { + table2Version = 204 ; + indicatorOfParameter = 46 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'503076' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503078 +#relative humidity over mixed phase +'503078' = { + table2Version = 250 ; + indicatorOfParameter = 20 ; + } + +#paramId: 503082 +#Friction Velocity +'503082' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'503134' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'503135' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'503136' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 4 ; + } + +#paramId: 503142 +#Lightning Potential Index +'503142' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'503286' = { + table2Version = 202 ; + indicatorOfParameter = 33 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'503287' = { + table2Version = 202 ; + indicatorOfParameter = 34 ; + } + +#paramId: 503325 +#Lightning Potential Index +'503325' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'503341' = { + table2Version = 203 ; + indicatorOfParameter = 35 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'503342' = { + table2Version = 203 ; + indicatorOfParameter = 36 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'503343' = { + table2Version = 203 ; + indicatorOfParameter = 37 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'503344' = { + table2Version = 201 ; + indicatorOfParameter = 49 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'503345' = { + table2Version = 201 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'503346' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'503347' = { + table2Version = 201 ; + indicatorOfParameter = 234 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'503348' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'503349' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'503421' = { + table2Version = 202 ; + indicatorOfParameter = 36 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'503422' = { + table2Version = 202 ; + indicatorOfParameter = 37 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'503425' = { + table2Version = 202 ; + indicatorOfParameter = 39 ; + } + diff --git a/eccodes/definitions/grib1/localConcepts/edzw/shortName.def b/eccodes/definitions/grib1/localConcepts/edzw/shortName.def new file mode 100755 index 00000000..3ee953db --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/shortName.def @@ -0,0 +1,8992 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'PS' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500001 +#Pressure +'P' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'PMSL' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'DPSDT' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'FIS' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'FIF' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500006 +#Geopotential +'FI' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'HSURF' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'HHL' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'TO3' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500010 +#Temperature (G) +'T_G' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500011 +#2m Temperature +'T_2M' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'T_2M_AV' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'T_2M_CL' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500014 +#Temperature +'T' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'TMAX_2M' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'TMIN_2M' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'TD_2M' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'TD_2M_AV' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'DBZ_MAX' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500020 +#Wave spectra (1) +'WVSP1' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500021 +#Wave spectra (2) +'WVSP2' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500022 +#Wave spectra (3) +'WVSP3' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'DD_10M' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'DD' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'SP_10M' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'SP' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500027 +#U-Component of Wind +'U_10M' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'U' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500029 +#V-Component of Wind +'V_10M' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'V' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'OMEGA' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'W' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'QV_2M' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'QV' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500036 +#2m Relative Humidity +'RELHUM_2M' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'RELHUM' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'TQV' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500039 +#Evaporation (s) +'AEVAP_S' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'TQI' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'TOT_PREC' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'PREC_GSP' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'PREC_CON' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'W_SNOW' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500045 +#Snow Depth +'H_SNOW' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500046 +#Total Cloud Cover +'CLCT' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'CLC_CON' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'TQC' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'SNOW_CON' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'SNOW_GSP' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'FR_LAND' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'Z0' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'ALB_RAD' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'ALBEDO_B' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'T_CL' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'T_CL_LM' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'T_M' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'T_S' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'W_CL' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 100 ; + bottomLevel = 190 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'W_G1' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'W_G2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } + +#paramId: 500065 +#Plant cover +'PLCOV' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500066 +#Water Runoff +'RUNOFF_G' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'RUNOFF_S' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'FR_ICE' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'H_ICE' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'SWH' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500072 +#Direction of wind waves +'MDWW' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500073 +#Significant height of wind waves +'SHWW' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500074 +#Mean period of wind waves +'MPWW' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500075 +#Mean direction of total swell +'MDTS' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500076 +#Significant height of total swell +'SHTS' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500077 +#Mean period of total swell +'MPTS' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'SOBS_RAD' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'ATHB_S' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'THBS_RAD' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'ASOB_T' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'SOBT_RAD' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'ATHB_T' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'THBT_RAD' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'ALHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'ASHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'AUMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'AVMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'APAB_S' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'PABS_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'SOHR_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'THHR_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'ALHFL_BS' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'ALHFL_PL' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500096 +#Sunshine duration in h +'SUNSHHRS' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500097 +#Stomatal Resistance +'RSTOM' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500098 +#Cloud cover +'CLC' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'CLC_SGS' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'QC' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'QI' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500102 +#Rain mixing ratio +'QR' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500103 +#Snow mixing ratio +'QS' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500104 +#Total column integrated rain +'TQR' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500105 +#Total column integrated snow +'TQS' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500106 +#Grauple +'QG' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500107 +#Total column integrated grauple +'TQG' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'TWATER' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500109 +#vertical integral of divergence of total water content (s) +'TDIV_HUM' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500110 +#subgrid scale cloud water +'QC_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500111 +#subgridscale cloud ice +'QI_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500112 +#cloud cover CH (0..8) +'CLCH_8' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500113 +#cloud cover CM (0..8) +'CLCM_8' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500114 +#cloud cover CL (0..8) +'CLCL_8' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500115 +#cloud base above msl, shallow convection +'HBAS_SC' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500116 +#Cloud top above msl, shallow convection +'HTOP_SC' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500117 +#specific cloud water content, convective cloud +'CLW_CON' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'HBAS_CON' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'HTOP_CON' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500120 +#base index (vertical level) of main convective cloud (i) +'BAS_CON' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500121 +#top index (vertical level) of main convective cloud (i) +'TOP_CON' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'DT_CON' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'DQV_CON' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500124 +#zonal wind tendency due to convection +'DU_CON' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500125 +#meridional wind tendency due to convection +'DV_CON' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'HTOP_DC' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'HZEROCL' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'SNOWLMT' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'DQC_CON' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500130 +#tendency of specific cloud ice content due to convection +'DQI_CON' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'Q_SEDIM' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500132 +#Large scale rain rate +'PRR_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'PRS_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'RAIN_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500135 +#Convective rain rate +'PRR_CON' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'PRS_CON' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500137 +#Convective rain +'RAIN_CON' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'TOT_RAIN' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'TOT_SNOW' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipation +'DT_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'DQV_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500142 +#tendency of specific cloud liquid water content due to grid scale precipitation +'DQC_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'FRESHSNW' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + } + +#paramId: 500144 +#tendency of specific cloud ice content due to grid scale precipitation +'DQI_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'PRG_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'GRAU_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500147 +#Snow density +'RHO_SNOW' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500148 +#Pressure perturbation +'PP' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500149 +#supercell detection index 1 (rot. up+down drafts) +'SDI_1' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + } + +#paramId: 500150 +#supercell detection index 2 (only rot. up drafts) +'SDI_2' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'CAPE_MU' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'CIN_MU' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'CAPE_ML' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'CIN_ML' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'TKE_CON' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'TKETENS' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500157 +#Kinetic Energy +'KE' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'TKE' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'TKVM' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'TKVH' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'TCM' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'TCH' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500163 +#mixed layer depth +'MH' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500164 +#maximum Wind 10m +'VMAX_10M' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'T_SO' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'W_SO' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'W_SO_ICE' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'W_I' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'T_SNOW' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'RSMIN' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'T_ICE' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500173 +#Base reflectivity +'DBZ_850' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'DBZ' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'DBZ_CMAX' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } + +#paramId: 500176 +#solution of 2-d Helmholtz equations - needed for restart +'DTTDIV' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'SOTR_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500178 +#sum of contributions to evaporation +'EVATRA_SUM' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500179 +#total transpiration from all soil layers +'TRA_SUM' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500180 +#total forcing at soil surface +'TOTFORCE_S' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500181 +#residuum of soil moisture +'RESID_WSO' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500182 +#Massflux at convective cloud base +'MFLX_CON' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'CAPE_CON' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500184 +#moisture convergence for Kuo-type closure +'QCVG_CON' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500185 +#Total Wave Direction +'MWD' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500187 +#Peak period of total swell +'PPTS' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500189 +#Swell peak period +'PPWW' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500190 +#Total wave peak period +'PP1D' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500191 +#Total wave mean period +'TM10' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500192 +#Total Tm1 period +'TM01' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500193 +#Total Tm2 period +'TM02' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500194 +#Total directional spread +'SPRD' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500195 +#analysis error(standard deviation), geopotential(gpm) +'ANA_ERR_FI' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500196 +#analysis error(standard deviation), u-comp. of wind +'ANA_ERR_U' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500197 +#analysis error(standard deviation), v-comp. of wind +'ANA_ERR_V' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500198 +#zonal wind tendency due to subgrid scale oro. +'DU_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500199 +#meridional wind tendency due to subgrid scale oro. +'DV_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'SSO_STDH' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'SSO_GAMMA' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'SSO_THETA' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'SSO_SIGMA' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500204 +#surface emissivity +'EMIS_RAD' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500205 +#soil type of grid (1...9, local soilType.table) +'SOILTYP' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500206 +#Leaf area index +'LAI' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500207 +#root depth of vegetation +'ROOTDP' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500208 +#height of ozone maximum (climatological) +'HMO3' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500209 +#vertically integrated ozone content (climatological) +'VIO3' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'PLCOV_MX' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'PLCOV_MN' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500212 +#Max Leaf area index +'LAI_MX' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500213 +#Min Leaf area index +'LAI_MN' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'ORO_MOD' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500215 +#variance of soil moisture content (0-10) +'WVAR1' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500216 +#variance of soil moisture content (10-100) +'WVAR2' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500217 +#evergreen forest +'FOR_E' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500218 +#deciduous forest +'FOR_D' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'NDVI' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'NDVI_MAX' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500221 +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'NDVI_MRAT' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500222 +#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'NDVIRATIO' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'AER_SO4' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'AER_SO412' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'AER_DUST' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'AER_DUST12' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500227 +#Organic aerosol +'AER_ORG' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'AER_ORG12' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500229 +#Black carbon aerosol +'AER_BC' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'AER_BC12' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500231 +#Sea salt aerosol +'AER_SS' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'AER_SS12' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500233 +#tendency of specific humidity +'DQVDT' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500234 +#water vapor flux +'QVSFLX' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500235 +#Coriolis parameter +'FC' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500236 +#geographical latitude +'RLAT' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500237 +#geographical longitude +'RLON' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500239 +#Delay of the GPS signal trough the (total) atm. +'ZTD' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500240 +#Delay of the GPS signal trough wet atmos. +'ZWD' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500241 +#Delay of the GPS signal trough dry atmos. +'ZHD' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'O3' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Ru-103' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Ru-103d' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Ru-103w' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Sr-90' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Sr-90d' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Sr-90w' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'I-131a' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500250 +#I131 - dry deposition +'I-131ad' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500251 +#I131 - wet deposition +'I-131aw' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Cs-137' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Cs-137d' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Te-132' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Te-132d' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Te-132w' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Zr-95' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Zr-95d' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Zr-95w' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Kr-85' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Kr-85d' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Kr-85w' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500264 +#TRACER - concentration +'Tr-2' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'Tr-2d' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'Tr-2w' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Xe-133' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Xe-133d' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Xe-133w' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'I-131g' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500271 +#I131g - dry deposition +'I-131gd' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500272 +#I131g - wet deposition +'I-131gw' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'I-131o' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500274 +#I131o - dry deposition +'I-131od' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500275 +#I131o - wet deposition +'I-131ow' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Ba-140' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Ba-140d' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Ba-140w' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500279 +#u-momentum flux due to SSO-effects +'AUSTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500280 +#u-momentum flux due to SSO-effects +'USTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500281 +#v-momentum flux due to SSO-effects (average) +'AVSTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500282 +#v-momentum flux due to SSO-effects +'VSTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500283 +#Gravity wave dissipation (initialisation) +'AVDIS_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'VDIS_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'UVI_MAX_CL' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500286 +#Vertical speed shear +'W_SHAER' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500287 +#storm relative helicity +'SRH' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'VABS' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) +'CL_TYP' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'CCL_GND' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'CCL_NN' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'WW' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'ADVORG' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500294 +#geostrophische Schichtdickenadvektion +'ADVOR' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'ADRTG' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500296 +#Winddivergenz +'WDIV' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'QVN' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'IPV' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'UP' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'VP' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'PTHETA' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500302 +#KO index +'KO' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'THETAE' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500304 +#Ceiling +'CEILING' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'ICE_GRD' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500306 +#modified cloud depth for media +'CLDEPTH' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500307 +#modified cloud cover for media +'CLCT_MOD' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'EFA-PS' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'EIA-PS' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'EFA-U' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'EIA-U' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'EFA-V' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'EIA-V' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'EFA-FI' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'EIA-FI' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'EFA-RH' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'EIA-RH' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'EFA-T' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'EIA-T' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'EFA-OM' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'EIA-OM' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500322 +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'EFA-KE' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500323 +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'EIA-KE' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'SYNME5_BT_CL' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'SYNME5_BT_CS' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'SYNME5_RAD_CL' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'SYNME5_RAD_CS' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'SYNME6_BT_CL' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'SYNME6_BT_CS' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'SYNME6_RAD_CL' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'SYNME6_RAD_CS' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'SYNME7_BT_CL_IR11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'SYNME7_BT_CL_WV6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'SYNME7_BT_CS_IR11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'SYNME7_BT_CS_WV6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'SYNME7_RAD_CL_IR11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'SYNME7_RAD_CL_WV6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'SYNME7_RAD_CS_IR11.5' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'SYNME7_RAD_CS_WV6.4' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_WV6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_WV7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_WV6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_WV7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_WV6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_WV7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR10.8' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR12.1' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR13.4' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR3.9' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR8.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR9.7' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_WV6.2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_WV7.3' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'T_2M_S' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'TMAX_2M_S' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'TMIN_2M_S' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'TD_2M_S' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'U_10M_S' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'V_10M_S' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'TOT_PREC_S' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'CLCT_S' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'CLCL_S' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'CLCM_S' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'CLCH_S' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'SNOW_GSP_S' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'T_S_S' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'VMAX_10M_S' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'TOT_PREC_C' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'SNOW_GSP_C' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'VMAX_10M_C' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'TOT_PREC_D' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500402 +#Max 2m Temperature long periods > h +'TMAX_2M_L' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500403 +#Min 2m Temperature long periods > h +'TMIN_2M_L' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500404 +#Total Precipitation (Accumulation) Initialisation +'TOT_PREC' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500408 +#Large scale rain (Accumulation) Initialisation +'RAIN_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500409 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'SNOW_GSP' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500410 +#Convective rain Initialisation +'RAIN_CON' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500411 +#Convective Snowfall water equivalent (s) Initialisation +'SNOW_CON' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500412 +#maximum Wind 10m Initialisation +'VMAX_10M' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 10 ; + } + +#paramId: 500416 +#Evaporation (s) Initialisation +'AEVAP_S' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500417 +#Max 2m Temperature (i) Initialisation +'TMAX_2M' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500418 +#Min 2m Temperature (i) Initialisation +'TMIN_2M' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'ASOB_T' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'ATHB_T' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'ATHB_S' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500423 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'SNOW_GSP' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500424 +#Convective Snowfall water equivalent (s) Initialisation +'SNOW_CON' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500425 +#Total Precipitation (Accumulation) Initialisation +'TOT_PREC' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500428 +#Latent Heat Net Flux (m) Initialisation +'ALHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500429 +#Sensible Heat Net Flux (m) Initialisation +'ASHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500430 +#Momentum Flux, U-Component (m) Initialisation +'AUMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500431 +#Momentum Flux, V-Component (m) Initialisation +'AVMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500432 +#Photosynthetically active radiation +'APAB_S' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500433 +#Large scale rain (Accumulation) Initialisation +'RAIN_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500434 +#Convective rain Initialisation +'RAIN_CON' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500436 +#Graupel (snow pellets) precipitation (Initialisation) +'GRAU_GSP' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'W_SKRR_01' = { + table2Version = 208 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'U_SKRRH_01' = { + table2Version = 208 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'W_SKRR_06' = { + table2Version = 208 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'U_SKRRH_06' = { + table2Version = 208 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'W_DRR_12' = { + table2Version = 208 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'U_DRRER_12' = { + table2Version = 208 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'E_DR_12' = { + table2Version = 208 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'W_SFL_06' = { + table2Version = 208 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'W_SF_06' = { + table2Version = 208 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'U_SFSK_06' = { + table2Version = 208 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'W_SFL_12' = { + table2Version = 208 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'W_SF_12' = { + table2Version = 208 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'U_SFSK_12' = { + table2Version = 208 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'E_SF_12' = { + table2Version = 208 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'W_WND_01' = { + table2Version = 208 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'W_STM_01' = { + table2Version = 208 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'W_STMSW_01' = { + table2Version = 208 ; + indicatorOfParameter = 136 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'U_ORKAR_01' = { + table2Version = 208 ; + indicatorOfParameter = 137 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'U_ORK_01' = { + table2Version = 208 ; + indicatorOfParameter = 138 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'E_ORK_01' = { + table2Version = 208 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'W_GLEIS_01' = { + table2Version = 208 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'W_GEW_01' = { + table2Version = 208 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'W_GEWSK_01' = { + table2Version = 208 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'U_GEWSW_01' = { + table2Version = 208 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'W_SVW_12' = { + table2Version = 208 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'U_SVWSK_12' = { + table2Version = 208 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'W_FR_01' = { + table2Version = 208 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'W_FRSTR_06' = { + table2Version = 208 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'UVI_CS_COR' = { + table2Version = 202 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'UVI_B_CS' = { + table2Version = 202 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'UVI_CL_COR' = { + table2Version = 202 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'UVI_MAX_CS' = { + table2Version = 202 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500469 +#Total ozone +'TOT_O3' = { + table2Version = 202 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'UVI_MAX_H' = { + table2Version = 202 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500472 +#Konvektionsart (0..4) +'C_TYPE' = { + table2Version = 203 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500473 +#perceived temperature +'PT1M' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500475 +#Water temperature +'T_SEA' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500476 +#Water temperature in C +'T_SEA_C' = { + table2Version = 203 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500477 +#Absolute Vorticity +'ABSV' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'SUL_PROB' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500479 +#value of isolation of clothes +'CLO' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'ASWDIR_S' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux +'ASWDIFD_S' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'ASWDIFU_S' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500486 +#vertical integral of divergence of total water content (s) +'TDIV_HUM' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500487 +#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation +'ASWDIR_S' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500488 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'ASWDIFD_S' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500489 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'ASWDIFU_S' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500490 +#Water Fraction +'FR_LAKE' = { + table2Version = 202 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500491 +#Lake depth +'DEPTH_LK' = { + table2Version = 201 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500492 +#Wind fetch +'FETCH_LK' = { + table2Version = 201 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'GAMSO_LK' = { + table2Version = 201 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'DP_BS_LK' = { + table2Version = 201 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'T_BS_LK' = { + table2Version = 201 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'T_MNW_LK' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'T_WML_LK' = { + table2Version = 201 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'T_BOT_LK' = { + table2Version = 201 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500499 +#Mixed-layer depth +'H_ML_LK' = { + table2Version = 201 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'C_T_LK' = { + table2Version = 201 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'T_B1_LK' = { + table2Version = 201 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'H_B1_LK' = { + table2Version = 201 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500503 +#Icing Base (hft) - Prognose Icing Degree Composit +'PIDC_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Prognose Icing Degree Composit +'PIDC_MAX_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Prognose Icing Degree Composit +'PIDC_MAX_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500506 +#Icing Top (hft) - Prognose Icing Degree Composit +'PIDC_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit +'PIDC_VERT_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit +'PIDC_MAX_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500509 +#Icing Base (hft) - Prognose Icing Scenario Composit +'PISC_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit +'PISC_SIG_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit +'PISC_SIG_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500512 +#Icing Top (hft) - Prognose Icing Scenario Composit +'PISC_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit +'PISC_VERT_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit +'PISC_SIG_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500515 +#Icing Base (hft) - Diagnose Icing Degree Composit +'DIDC_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Diagnose Icing Degree Composit +'DIDC_MAX_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Diagnose Icing Degree Composit +'DIDC_MAX_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500518 +#Icing Top (hft) - Diagnose Icing Degree Composit +'DIDC_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit +'DIDC_VERT_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit +'DIDC_MAX_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500521 +#Icing Base (hft) - Diagnose Icing Scenario Composit +'DISC_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit +'DISC_SIG_BASE_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit +'DISC_SIG_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500524 +#Icing Top (hft) - Diagnose Icing Scenario Composit +'DISC_TOP_HFT' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit +'DISC_VERT_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit +'DISC_SIG_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500527 +#Prognose Icing Degree Code (1=light,2=moderate,3=severe) +'PID_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500528 +#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'PIS_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500529 +#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) +'DID_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500530 +#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'DIS_CODE' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'WW_0-9' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500541 +#relative vorticity,U-component +'VORTIC_U' = { + table2Version = 202 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500542 +#relative vorticity,V-component +'VORTIC_V' = { + table2Version = 202 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500543 +#vertical vorticity +'VORTIC_W' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500544 +#Potential vorticity +'POT_VORTIC' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500545 +#Density +'DEN' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'PREC_CON_D' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'PVP' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'VORG' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'FORCOMEGA' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'QVX' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'QVY' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'DIVGEO' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'QVNGEO' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'QVSGEO' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'DIVQNGEO' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'DIVQSGEO' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'FRONTO' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500562 +#Divergenz +'DIVQ' = { + table2Version = 203 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'QVS' = { + table2Version = 203 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500564 +#Divergenz Qn +'DIVQN' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500565 +#Divergenz Qs +'DIVQS' = { + table2Version = 203 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500566 +#Frontogenesis function +'FRONTOF' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'CATIX' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500568 +#Geopotential height +'GH' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500569 +#Relative Divergenz +'RDIV' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500570 +#dry convection top index +'TOP_DCON' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500571 +#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 +'FE1' = { + table2Version = 201 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500572 +#tidal tendencies +'TIDAL' = { + table2Version = 202 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'SST_IC' = { + table2Version = 202 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'LNPS' = { + table2Version = 202 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500575 +#3 hour pressure change +'PPP' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500576 +#covariance of soil moisture content (0-10) +'WCOV1' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'T_S_L' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'W_G3' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 7 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'W_G4' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 7 ; + bottomLevel = 50 ; + } + +#paramId: 500582 +#Max 2m Temperature (i) Initialisation +'TMAX_2M' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500583 +#Min 2m Temperature (i) Initialisation +'TMIN_2M' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'EDP' = { + table2Version = 204 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500586 +#Ellrod Index +'ELD' = { + table2Version = 204 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500588 +#Snow melt +'SNOW_MELT' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'ICAHT' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500592 +#Geopotential height +'GH_10GPM' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500593 +#Global radiation flux +'GRAD' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500600 +#Prob Windboeen > 25 kn +'FX25' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500601 +#Prob Windboeen > 27 kn +'FX27' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500602 +#Prob Sturmboeen > 33 kn +'FX33' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500603 +#Prob Sturmboeen > 40 kn +'FX40' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500604 +#Prob Schwere Sturmboeen > 47 kn +'FX47' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500605 +#Prob Orkanartige Boeen > 55 kn +'FX55' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500606 +#Prob Orkanboeen > 63 kn +'FX63' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500607 +#Prob Oberoertliche Orkanboeen > 75 kn +'FX75' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500608 +#Prob Starkregen > 10 mm +'SH10' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500609 +#Prob Heftiger Starkregen > 25 mm +'SH25' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500610 +#Prob Extrem Heftiger Starkregen > 50 mm +'SH50' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500611 +#Prob Leichter Schneefall > 0,1 mm +'SN00' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500612 +#Prob Leichter Schneefall > 0,1 cm +'SN001' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500613 +#Prob Leichter Schneefall > 0,5 cm +'SN005' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500614 +#Prob Leichter Schneefall > 1 cm +'SN01' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500615 +#Prob Schneefall > 5 cm +'SN05' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500616 +#Prob Starker Schneefall > 10 cm +'SN10' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500617 +#Prob Extrem starker Schneefall > 25 cm +'SN25' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500618 +#Prob Frost +'TN00' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500619 +#Prob Strenger Frost +'TN10' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500620 +#Prob Gewitter +'TS' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'TSX' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'TSXX' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500623 +#Prob Dauerregen +'RA25' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'RA40' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'RA70' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'BLSN6' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'BLSN8' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500628 +#Prob Glaette +'FZ' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'FZRA' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500630 +#Prob Glatteis +'FZRAX' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'FG' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500632 +#Prob Tauwetter +'TAU' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'TAUX' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500634 +#wake-production of TKE due to sub grid scale orography +'DTKE_SSO' = { + table2Version = 201 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500635 +#shear-production of TKE due to separated horizontal shear modes +'DTKE_HSH' = { + table2Version = 201 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500636 +#buoyancy-production of TKE due to sub grid scale convection +'DTKE_CON' = { + table2Version = 201 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500638 +#Atmospheric Resistance +'ATM_RSTC' = { + table2Version = 201 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'HTOP_THERM' = { + table2Version = 201 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500640 +#mass concentration of dust (minimum mode) +'VSOILA' = { + table2Version = 242 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500642 +#Lapse rate +'LAPSE_RATE' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500643 +#mass concentration of dust (medium mode) +'VSOILB' = { + table2Version = 242 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500644 +#mass concentration of dust (maximum mode) +'VSOILC' = { + table2Version = 242 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500645 +#number concentration of dust (minimum mode) +'VSOILA0' = { + table2Version = 242 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500646 +#number concentration of dust (medium mode) +'VSOILB0' = { + table2Version = 242 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500647 +#number concentration of dust (maximum mode) +'VSOILC0' = { + table2Version = 242 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500648 +#mass concentration of dust (sum of all modes) +'VSOILS' = { + table2Version = 242 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500649 +#number concentration of dust (sum of all modes) +'VSOILS0' = { + table2Version = 242 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'DUMMY_1' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'DUMMY_2' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'DUMMY_3' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'DUMMY_4' = { + table2Version = 254 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'DUMMY_5' = { + table2Version = 254 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'DUMMY_6' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'DUMMY_7' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'DUMMY_8' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'DUMMY_9' = { + table2Version = 254 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'DUMMY_10' = { + table2Version = 254 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'DUMMY_11' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'DUMMY_12' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'DUMMY_13' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'DUMMY_14' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'DUMMY_15' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'DUMMY_16' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'DUMMY_17' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'DUMMY_18' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'DUMMY_19' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'DUMMY_20' = { + table2Version = 254 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'DUMMY_21' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'DUMMY_22' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'DUMMY_23' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'DUMMY_24' = { + table2Version = 254 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'DUMMY_25' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'DUMMY_26' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'DUMMY_27' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'DUMMY_28' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'DUMMY_29' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'DUMMY_30' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'DUMMY_31' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'DUMMY_32' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'DUMMY_33' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'DUMMY_34' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'DUMMY_35' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'DUMMY_36' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'DUMMY_37' = { + table2Version = 254 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'DUMMY_38' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'DUMMY_39' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'DUMMY_40' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'DUMMY_41' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'DUMMY_42' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'DUMMY_43' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'DUMMY_44' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'DUMMY_45' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'DUMMY_46' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'DUMMY_47' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'DUMMY_48' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'DUMMY_49' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'DUMMY_50' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'DUMMY_51' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'DUMMY_52' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'DUMMY_53' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'DUMMY_54' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'DUMMY_55' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'DUMMY_56' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'DUMMY_57' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'DUMMY_58' = { + table2Version = 254 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'DUMMY_59' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'DUMMY_60' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'DUMMY_61' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'DUMMY_62' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'DUMMY_63' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'DUMMY_64' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'DUMMY_65' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'DUMMY_66' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'DUMMY_67' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'DUMMY_68' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'DUMMY_69' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'DUMMY_70' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'DUMMY_71' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'DUMMY_72' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'DUMMY_73' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'DUMMY_74' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'DUMMY_75' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'DUMMY_76' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'DUMMY_77' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'DUMMY_78' = { + table2Version = 254 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'DUMMY_79' = { + table2Version = 254 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'DUMMY_80' = { + table2Version = 254 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'DUMMY_81' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'DUMMY_82' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'DUMMY_83' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'DUMMY_84' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'DUMMY_85' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'DUMMY_86' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'DUMMY_87' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'DUMMY_88' = { + table2Version = 254 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'DUMMY_89' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'DUMMY_90' = { + table2Version = 254 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'DUMMY_91' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'DUMMY_92' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'DUMMY_93' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'DUMMY_94' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'DUMMY_95' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'DUMMY_96' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'DUMMY_97' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'DUMMY_98' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'DUMMY_99' = { + table2Version = 254 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'DUMMY_100' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'DUMMY_101' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'DUMMY_102' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'DUMMY_103' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'DUMMY_104' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'DUMMY_105' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'DUMMY_106' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'DUMMY_107' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'DUMMY_108' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'DUMMY_109' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'DUMMY_110' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'DUMMY_111' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'DUMMY_112' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'DUMMY_113' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'DUMMY_114' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'DUMMY_115' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'DUMMY_116' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'DUMMY_117' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'DUMMY_118' = { + table2Version = 254 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'DUMMY_119' = { + table2Version = 254 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'DUMMY_120' = { + table2Version = 254 ; + indicatorOfParameter = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'DUMMY_121' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'DUMMY_122' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'DUMMY_123' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'DUMMY_124' = { + table2Version = 254 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'DUMMY_125' = { + table2Version = 254 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'DUMMY_126' = { + table2Version = 254 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'DUMMY_127' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'DUMMY_128' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'DUMMY_143' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'DUMMY_144' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'DUMMY_145' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'DUMMY_146' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'DUMMY_147' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'DUMMY_148' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'DUMMY_149' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'DUMMY_150' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'DUMMY_151' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'DUMMY_152' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'DUMMY_153' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'DUMMY_154' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'DUMMY_155' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'DUMMY_156' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'DUMMY_157' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'DUMMY_158' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'DUMMY_159' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'DUMMY_160' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'DUMMY_161' = { + table2Version = 254 ; + indicatorOfParameter = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'DUMMY_162' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'DUMMY_163' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'DUMMY_164' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'DUMMY_165' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'DUMMY_166' = { + table2Version = 254 ; + indicatorOfParameter = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'DUMMY_167' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'DUMMY_168' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'DUMMY_169' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'DUMMY_170' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'DUMMY_171' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'DUMMY_172' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'DUMMY_173' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'DUMMY_174' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'DUMMY_175' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'DUMMY_176' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'DUMMY_177' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'DUMMY_178' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'DUMMY_179' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'DUMMY_180' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'DUMMY_181' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'DUMMY_182' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'DUMMY_183' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'DUMMY_184' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'DUMMY_185' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'DUMMY_186' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'DUMMY_187' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'DUMMY_188' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'DUMMY_189' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'DUMMY_190' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'DUMMY_191' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'DUMMY_192' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'DUMMY_193' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'DUMMY_194' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'DUMMY_195' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'DUMMY_196' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'DUMMY_197' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'DUMMY_198' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'DUMMY_199' = { + table2Version = 254 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'DUMMY_200' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'DUMMY_201' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'DUMMY_202' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'DUMMY_203' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'DUMMY_204' = { + table2Version = 254 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'DUMMY_205' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'DUMMY_206' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'DUMMY_207' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'DUMMY_208' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'DUMMY_209' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'DUMMY_210' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'DUMMY_211' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'DUMMY_212' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'DUMMY_213' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'DUMMY_214' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'DUMMY_215' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'DUMMY_216' = { + table2Version = 254 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'DUMMY_217' = { + table2Version = 254 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'DUMMY_218' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'DUMMY_219' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'DUMMY_220' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'DUMMY_221' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'DUMMY_222' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'DUMMY_223' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'DUMMY_224' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'DUMMY_225' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'DUMMY_226' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'DUMMY_227' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'DUMMY_228' = { + table2Version = 254 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'DUMMY_229' = { + table2Version = 254 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'DUMMY_230' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'DUMMY_231' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'DUMMY_232' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'DUMMY_233' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'DUMMY_234' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'DUMMY_235' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'DUMMY_236' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'DUMMY_237' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'DUMMY_238' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'DUMMY_239' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'DUMMY_240' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'DUMMY_241' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'DUMMY_242' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'DUMMY_243' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'DUMMY_244' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'DUMMY_245' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'DUMMY_246' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'DUMMY_247' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'DUMMY_248' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'DUMMY_249' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'DUMMY_250' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'DUMMY_251' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'DUMMY_252' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'DUMMY_253' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'DUMMY_254' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'QV_S' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'ALB_DIF12' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + timeRangeIndicator = 3 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'ALB_DIF' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'LHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'SHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502333 +#salinity +'SALT_LK' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502334 +#Stream function +'STRF' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502335 +#Velocity potential +'VPOT' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502336 +#Skin temperature +'SKT' = { + table2Version = 202 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux +'SWDIRS_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502350 +#Temperature (G) +'T_G' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502355 +#Stream function +'STRF' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502356 +#Velocity potential +'VPOT' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502357 +#Wind speed (SP) +'SP' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502358 +#Pressure +'P' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502359 +#Potential vorticity +'POT_VORTIC' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502360 +#Potential vorticity +'POT_VORTIC' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502361 +#Geopotential +'FIS' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502362 +#Max 2m Temperature +'TMAX_2M' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502363 +#Min 2m Temperature +'TMIN_2M' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502364 +#Temperature +'T' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502365 +#U-Component of Wind +'U' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502366 +#Pressure (S) (not reduced) +'PS' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502367 +#V-Component of Wind +'V' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502368 +#Specific Humidity +'QV' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502369 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'OMEGA' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502370 +#vertical vorticity +'VORTIC_W' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502371 +#Sensible Heat Net Flux (m) +'ASHFL_S' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502372 +#Latent Heat Net Flux (m) +'ALHFL_S' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502373 +#Pressure Reduced to MSL +'PMSL' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502374 +#Relative Divergenz +'RDIV' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502375 +#Geopotential height +'GH' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502376 +#Relative Humidity +'RELHUM' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502377 +#U-Component of Wind +'U_10M' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502378 +#V-Component of Wind +'V_10M' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502379 +#2m Temperature +'T_2M' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502381 +#Land Cover (1=land, 0=sea) +'FR_LAND' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502382 +#Surface Roughness length Surface Roughness +'Z0' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502383 +#Albedo (in short-wave, average) +'ALBEDO_B' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502384 +#Evaporation (s) +'AEVAP_S' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502385 +#Convective Cloud Cover +'CLC_CON' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502386 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502387 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502388 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502389 +#Plant cover +'PLCOV' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502390 +#Water Runoff +'RUNOFF' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502391 +#Total Column Integrated Ozone +'TO3' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502392 +#Convective Snowfall water equivalent (s) +'SNOW_CON' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502393 +#Large-Scale snowfall - water equivalent (Accumulation) +'SNOW_GSP' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502394 +#Large-Scale Precipitation +'PREC_GSP' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502395 +#Total Column-Integrated Cloud Water +'TQC' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502396 +#Virtual Temperature +'VTMP' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502397 +#Virtual Temperature +'VTMP' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502398 +#Virtual Temperature +'VTMP' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502399 +#Brightness Temperature +'BTMP' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502400 +#Boundary Layer Dissipitation +'BLD' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502401 +#Pressure Tendency +'DPSDT' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502402 +#ICAO Standard Atmosphere reference height +'ICAHT' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502403 +#Geometric Height +'HSURF' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502404 +#Max Temperature +'TMAX' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502405 +#Min Temperature +'TMIN' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502406 +#Dew Point Temperature +'TD' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502407 +#Dew point depression(or deficit) +'DEPR' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502408 +#Lapse rate +'LAPSE_RATE' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502409 +#Visibility +'VIS' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502410 +#Radar spectra (1) +'DBZ_MAX' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502411 +#Radar spectra (2) +'RDSP2' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502412 +#Radar spectra (3) +'RDSP3' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502413 +#Parcel lifted index (to 500 hPa) +'PLI' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502414 +#Temperature anomaly +'TA' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502415 +#Pressure anomaly +'PRESA' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502416 +#Geopotential height anomaly +'GPA' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502417 +#Wave spectra (1) +'WVSP1' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502418 +#Wave spectra (2) +'WVSP2' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502419 +#Wave spectra (3) +'WVSP3' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502420 +#Wind Direction (DD) +'DD' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502421 +#Sigma coordinate vertical velocity +'SGCVV' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502422 +#Absolute Vorticity +'ABSV' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502423 +#Absolute divergence +'ABSD' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502424 +#Vertical u-component shear +'VUCSH' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502425 +#Vertical v-component shear +'VVCSH' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502426 +#Direction of current +'DIRC' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502427 +#Speed of current +'SPC' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502428 +#U-component of current +'UCURR' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502429 +#V-component of current +'VCURR' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502430 +#Humidity mixing ratio +'MIXR' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502431 +#Precipitable water +'TQV' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502432 +#Vapour pressure +'VP' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502433 +#Saturation deficit +'SATD' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502434 +#Precipitation rate +'PRATE' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502435 +#Thunderstorm probability +'TSTM' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502436 +#Convective precipitation (water) +'ACPCP' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502437 +#Snow fall rate water equivalent +'SRWEQ' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502438 +#Mixed layer depth +'MLD' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502439 +#Transient thermocline depth +'TTHDP' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502440 +#Main thermocline depth +'MTHD' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502441 +#Main thermocline depth +'MTHA' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502442 +#Best lifted index (to 500 hPa) +'BLI' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502443 +#Water temperature +'T_SEA' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502444 +#Deviation of sea-elbel from mean +'DSLM' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502445 +#Column-integrated Soil Moisture +'W_CL' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502446 +#salinity +'S' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502447 +#Density +'DEN' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502448 +#Sea Ice Cover ( 0= free, 1=cover) +'FR_ICE' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502449 +#sea Ice Thickness +'H_ICE' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502450 +#Direction of ice drift +'DICED' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502451 +#Speed of ice drift +'SICED' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502452 +#U-component of ice drift +'UICE' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502453 +#V-component of ice drift +'VICED' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502454 +#Ice growth rate +'ICEG' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502455 +#Snow melt +'SNOM' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502456 +#Significant height of combined wind waves and swell +'SWH' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502457 +#Direction of wind waves +'MDWW' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502458 +#Significant height of wind waves +'SHWW' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502459 +#Mean period of wind waves +'MPWW' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502460 +#Mean direction of total swell +'MDTS' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502461 +#Significant height of swell waves +'SHTS' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502462 +#Swell Mean Period +'MPTS' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502465 +#Secondary wave direction +'DIRSW' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502466 +#Secondary wave period +'SWP' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502467 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502468 +#Net long wave radiation flux (m) (at the surface) +'ATHB_S' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502469 +#Net short wave radiation flux +'ASOB_T' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502470 +#Net long-wave radiation flux(atmosph.top) +'NLWRT' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502471 +#Long wave radiation flux +'LWAVR' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502472 +#Short wave radiation flux +'SWAVR' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502473 +#Global radiation flux +'GRAD' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502474 +#Radiance (with respect to wave number) +'LWRAD' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502475 +#Radiance (with respect to wave length) +'SWRAD' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502476 +#Momentum Flux, U-Component (m) +'AUMFL_S' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502477 +#Momentum Flux, V-Component (m) +'AVMFL_S' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502478 +#Wind mixing energy +'WMIXE' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502479 +#Image data +'IMGD' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502480 +#Geopotential height +'OROG' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502481 +#Soil Temperature +'T_S' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502482 +#Snow Depth water equivalent +'H_SNOW' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502483 +#Snow depth water equivalent +'W_SNOW' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502484 +#Total Cloud Cover +'CLCT' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502485 +#Total Precipitation (Accumulation) +'TOT_PREC' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502486 +#Boundary Layer Dissipitation +'BLD' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502487 +#Sensible Heat Net Flux (m) +'ASHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502488 +#Latent Heat Net Flux (m) +'ALHFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502490 +#Evaporation (s) +'AEVAP_S' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502491 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502492 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502493 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502494 +#Brightness Temperature +'BTMP' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502495 +#Water Runoff +'RUNOFF' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502496 +#Geometric Height +'HSURF' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502497 +#Standard devation of height +'HSTDV' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502498 +#Standard devation of height +'HSTDV' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502499 +#Pseudo-adiabatic potential Temperature +'PAPT' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502500 +#Pseudo-adiabatic potential Temperature +'PAPT' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502501 +#Max Temperature +'TMAX' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502502 +#Min Temperature +'TMIN' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502503 +#Dew Point Temperature +'TD' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502504 +#Dew point depression(or deficit) +'DEPR' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502505 +#Visibility +'VIS' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502506 +#Radar spectra (2) +'RDSP2' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502507 +#Radar spectra (3) +'RDSP3' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502508 +#Parcel lifted index (to 500 hPa) +'PLI' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502509 +#Temperature anomaly +'TA' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502510 +#Pressure anomaly +'PRESA' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502511 +#Geopotential height anomaly +'GPA' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502512 +#Montgomery stream Function +'MNTSF' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502513 +#Montgomery stream Function +'MNTSF' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502514 +#Sigma coordinate vertical velocity +'SGCVV' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502515 +#Absolute divergence +'ABSD' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502516 +#Vertical u-component shear +'VUCSH' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502517 +#Vertical v-component shear +'VVCSH' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502518 +#Direction of current +'DIRC' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502519 +#Speed of current +'SPC' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502520 +#U-component of current +'UCURR' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502521 +#V-component of current +'VCURR' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502522 +#Humidity mixing ratio +'MIXR' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502523 +#Vapour pressure +'VP' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502524 +#Saturation deficit +'SATD' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502525 +#Precipitation rate +'PRATE' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502526 +#Thunderstorm probability +'TSTM' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502527 +#Convective precipitation (water) +'ACPCP' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502528 +#Snow fall rate water equivalent +'SRWEQ' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502529 +#Mixed layer depth +'MLD' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502530 +#Transient thermocline depth +'TTHDP' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502531 +#Main thermocline depth +'MTHD' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502532 +#Main thermocline depth +'MTHA' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502533 +#Best lifted index (to 500 hPa) +'BLI' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502534 +#Deviation of sea-elbel from mean +'DSLM' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502535 +#Column-integrated Soil Moisture +'W_CL' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502536 +#Direction of ice drift +'DICED' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502537 +#Speed of ice drift +'SICED' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502538 +#U-component of ice drift +'UICE' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502539 +#V-component of ice drift +'VICED' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502540 +#Ice growth rate +'ICEG' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502542 +#Snow melt +'SNOW' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502545 +#Secondary wave direction +'DIRSW' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502546 +#Secondary wave period +'SWP' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502547 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502548 +#Net long wave radiation flux (m) (at the surface) +'ATHB_S' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502549 +#Net short wave radiation flux +'ASOB_T' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502550 +#Net long-wave radiation flux(atmosph.top) +'NLWRT' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502551 +#Long wave radiation flux +'LWAVR' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502552 +#Short wave radiation flux +'SWAVR' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502553 +#Radiance (with respect to wave number) +'LWRAD' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502554 +#Radiance (with respect to wave length) +'SWRAD' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502555 +#Momentum Flux, U-Component (m) +'AUMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502556 +#Momentum Flux, V-Component (m) +'AVMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502557 +#Wind mixing energy +'WMIXE' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502558 +#Image data +'IMGD' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502559 +#Geopotential height +'OROG' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502560 +#Soil Temperature +'T_S' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502562 +#Potential temperature +'PT' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502563 +#Potential temperature +'PT' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502564 +#Wind speed (SP) +'SP' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502565 +#Pressure +'P' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502566 +#Max 2m Temperature +'TMAX_2M' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502567 +#Min 2m Temperature +'TMIN_2M' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502568 +#Geopotential +'FIS' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502569 +#Temperature +'T' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502570 +#U-Component of Wind +'U' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502571 +#V-Component of Wind +'V' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502572 +#Specific Humidity +'QV' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502573 +#Pressure (S) (not reduced) +'PS' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502574 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'OMEGA' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502575 +#vertical vorticity +'VORTIC_W' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502576 +#Boundary Layer Dissipitation +'BLD' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502577 +#Sensible Heat Net Flux (m) +'ASHFL_S' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502578 +#Latent Heat Net Flux (m) +'ALHFL_S' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502579 +#Pressure Reduced to MSL +'PMSL' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502581 +#Geopotential height +'GH' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502582 +#Relative Humidity +'RELHUM' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502583 +#U-Component of Wind +'U_10M' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502584 +#V-Component of Wind +'V_10M' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502585 +#2m Temperature +'T_2M' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502587 +#Relative Divergenz +'RDIV' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502588 +#Land Cover (1=land, 0=sea) +'FR_LAND' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502589 +#Surface Roughness length Surface Roughness +'Z0' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502590 +#Albedo (in short-wave, average) +'ALBEDO_B' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502591 +#Evaporation (s) +'AEVAP_S' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502592 +#Convective Cloud Cover +'CLC_CON' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502593 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502594 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502595 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502596 +#Brightness Temperature +'BTMP' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502597 +#Plant cover +'PLCOV' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502598 +#Water Runoff +'RUNOFF' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502599 +#Total Column Integrated Ozone +'TO3' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502600 +#Convective Snowfall water equivalent (s) +'SNOW_CON' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502601 +#Large-Scale snowfall - water equivalent (Accumulation) +'SNOW_GSP' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502602 +#Large-Scale Precipitation +'PREC_GSP' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502603 +#Total Column-Integrated Cloud Water +'TQC' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502604 +#Pressure Tendency +'DPSDT' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502605 +#ICAO Standard Atmosphere reference height +'ICAHT' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502606 +#Geometric Height +'HSURF' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502607 +#Standard devation of height +'HSTDV' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502608 +#Pseudo-adiabatic potential Temperature +'PAPT' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502609 +#Max Temperature +'TMAX' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502610 +#Min Temperature +'TMIN' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502611 +#Dew Point Temperature +'TD' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502612 +#Dew point depression(or deficit) +'DEPR' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502613 +#Lapse rate +'LAPSE_RATE' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502614 +#Visibility +'VIS' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502615 +#Radar spectra (1) +'DBZ_MAX' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502616 +#Radar spectra (2) +'RDSP2' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502617 +#Radar spectra (3) +'RDSP3' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502618 +#Parcel lifted index (to 500 hPa) +'PLI' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502619 +#Temperature anomaly +'TA' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502620 +#Pressure anomaly +'PRESA' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502621 +#Geopotential height anomaly +'GPA' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502622 +#Wave spectra (1) +'WVSP1' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502623 +#Wave spectra (2) +'WVSP2' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502624 +#Wave spectra (3) +'WVSP3' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502625 +#Wind Direction (DD) +'DD' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502626 +#Montgomery stream Function +'MNTSF' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502627 +#Sigma coordinate vertical velocity +'SGCVV' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502628 +#Absolute Vorticity +'ABSV' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502629 +#Absolute divergence +'ABSD' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502630 +#Vertical u-component shear +'VUCSH' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502631 +#Vertical v-component shear +'VVCSH' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502632 +#Direction of current +'DIRC' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502633 +#Speed of current +'SPC' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502634 +#U-component of current +'UCURR' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502635 +#V-component of current +'VCURR' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502636 +#Humidity mixing ratio +'MIXR' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502637 +#Precipitable water +'TQV' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502638 +#Vapour pressure +'VP' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502639 +#Saturation deficit +'SATD' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502640 +#Precipitation rate +'PRATE' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502641 +#Thunderstorm probability +'TSTM' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502642 +#Convective precipitation (water) +'ACPCP' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502643 +#Snow fall rate water equivalent +'SRWEQ' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502644 +#Mixed layer depth +'MLD' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502645 +#Transient thermocline depth +'TTHDP' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502646 +#Main thermocline depth +'MTHD' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502647 +#Main thermocline depth +'MTHA' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502648 +#Best lifted index (to 500 hPa) +'BLI' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502649 +#Water temperature +'T_SEA' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502650 +#Deviation of sea-elbel from mean +'DSLM' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502651 +#Column-integrated Soil Moisture +'W_CL' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502652 +#salinity +'S' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502653 +#Density +'DEN' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502654 +#Sea Ice Cover ( 0= free, 1=cover) +'FR_ICE' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502655 +#sea Ice Thickness +'H_ICE' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502656 +#Direction of ice drift +'DICED' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502657 +#Speed of ice drift +'SICED' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502658 +#U-component of ice drift +'UICE' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502659 +#V-component of ice drift +'VICED' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502660 +#Ice growth rate +'ICEG' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502662 +#Significant height of combined wind waves and swell +'SWH' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502663 +#Direction of wind waves +'MDWW' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502664 +#Significant height of wind waves +'SHWW' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502665 +#Mean period of wind waves +'MPWW' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502666 +#Mean direction of total swell +'MDTS' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502667 +#Significant height of swell waves +'SHTS' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502668 +#Swell Mean Period +'MPTS' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502671 +#Secondary wave direction +'DIRSW' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502672 +#Secondary wave period +'SWP' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502673 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502674 +#Net long wave radiation flux (m) (at the surface) +'ATHB_S' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502675 +#Net short wave radiation flux +'ASOB_T' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502676 +#Net long-wave radiation flux(atmosph.top) +'NLWRT' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502677 +#Long wave radiation flux +'LWAVR' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502678 +#Short wave radiation flux +'SWAVR' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502679 +#Global radiation flux +'GRAD' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502680 +#Radiance (with respect to wave number) +'LWRAD' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502681 +#Radiance (with respect to wave length) +'SWRAD' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502682 +#Momentum Flux, U-Component (m) +'AUMFL_S' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502683 +#Momentum Flux, V-Component (m) +'AVMFL_S' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502684 +#Wind mixing energy +'WMIXE' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502685 +#Image data +'IMGD' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502686 +#Geopotential height +'OROG' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502687 +#Column-integrated Soil Moisture +'W_CL' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502688 +#Soil Temperature +'T_S' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502689 +#Snow Depth water equivalent +'H_SNOW' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502690 +#Snow depth water equivalent +'W_SNOW' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502691 +#Total Cloud Cover +'CLCT' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502692 +#Total Precipitation (Accumulation) +'TOT_PREC' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502693 +#Potential temperature +'PT' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502694 +#Ice divergence +'ICED' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502695 +#Ice divergence +'ICED' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502696 +#Ice divergence +'ICED' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502697 +#Velocity potential +'VPOT' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502750 +#Stream function +'STRF' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502796 +#Precipitation +'PREC' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'EDR' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +'SWDIFDS_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'SWDIFUS_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'UMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'VMFL_S' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503065 +#u-momentum flux due to SSO-effects +'AUSTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503066 +#v-momentum flux due to SSO-effects +'AVSTR_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'RADAR_RQ' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; + } + +#paramId: 503069 +#precipitation,BRD +'RADAR_RS' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'RADAR_RE' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; + } + +#paramId: 503071 +#hail flag,BRD +'RADAR_RH' = { + table2Version = 203 ; + indicatorOfParameter = 76 ; + } + +#paramId: 503072 +#snow rate,BRD +'RADAR_FS' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; + } + +#paramId: 503073 +#snow rate, qualified,BRD +'RADAR_FQ' = { + table2Version = 204 ; + indicatorOfParameter = 46 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'AVDIS_SSO' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503078 +#relative humidity over mixed phase +'RH_MIX_EC' = { + table2Version = 250 ; + indicatorOfParameter = 20 ; + } + +#paramId: 503082 +#Friction Velocity +'USTR' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + } + +#paramId: 503098 +#Vertical Velocity (Geometric) (w) +'W' = { + table2Version = 3 ; + indicatorOfParameter = 40 ; + } + +#paramId: 503099 +#Fog_fraction +'FOGFRAC_E' = { + table2Version = 3 ; + indicatorOfParameter = 138 ; + } + +#paramId: 503100 +#accumulated_convective_rain +'PREC_CON_E' = { + table2Version = 3 ; + indicatorOfParameter = 140 ; + } + +#paramId: 503101 +#cloud_fraction_below_1000ft +'CFRAC' = { + table2Version = 3 ; + indicatorOfParameter = 207 ; + } + +#paramId: 503103 +#Lowest_cloud_base_height +'CEILING_E' = { + table2Version = 3 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503104 +#wet_bulb_freezing_level_ht +'WBFL_E' = { + table2Version = 3 ; + indicatorOfParameter = 152 ; + } + +#paramId: 503105 +#freezing_level_ICAO_height +'FL_E' = { + table2Version = 3 ; + indicatorOfParameter = 162 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'THDS_RAD' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'ATHD_S' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'ACCTHD_S' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 4 ; + } + +#paramId: 503140 +#orography +'ORO_UK' = { + table2Version = 3 ; + indicatorOfParameter = 148 ; + } + +#paramId: 503141 +#wind_gust_10m +'GUST_10M_UK' = { + table2Version = 3 ; + indicatorOfParameter = 149 ; + } + +#paramId: 503142 +#Lightning Potential Index +'LPI' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'FR_PAVED' = { + table2Version = 202 ; + indicatorOfParameter = 33 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'AHF' = { + table2Version = 202 ; + indicatorOfParameter = 34 ; + } + +#paramId: 503325 +#Lightning Potential Index +'LPI' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'UH_MAX' = { + table2Version = 203 ; + indicatorOfParameter = 35 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'VORW_CTMAX' = { + table2Version = 203 ; + indicatorOfParameter = 36 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'W_CTMAX' = { + table2Version = 203 ; + indicatorOfParameter = 37 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'TCOND10_MX' = { + table2Version = 201 ; + indicatorOfParameter = 49 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'TCOND_MAX' = { + table2Version = 201 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'DBZCMP_OBS' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'DBZCMP_SIM' = { + table2Version = 201 ; + indicatorOfParameter = 234 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'LPI_MAX' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'DBZ_CTMAX' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503350 +#relative vorticity +'RELV' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'ECHOTOP' = { + table2Version = 202 ; + indicatorOfParameter = 36 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'ECHOTOPinM' = { + table2Version = 202 ; + indicatorOfParameter = 37 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'SKC' = { + table2Version = 202 ; + indicatorOfParameter = 39 ; + } + diff --git a/eccodes/definitions/grib1/localConcepts/edzw/stepType.def b/eccodes/definitions/grib1/localConcepts/edzw/stepType.def new file mode 100644 index 00000000..e47d0bde --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/stepType.def @@ -0,0 +1,146 @@ +# Concept stepType for DWD +# set uses the FIRST one +# get returns the LAST match + +# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=1;} +# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=2;} +# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=3;} +# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=228;table2Version=128;} +# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=228;table2Version=128;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=57;table2Version=2;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=61;table2Version=2;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=78;table2Version=2;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=79;table2Version=2;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=90;table2Version=2;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=42;table2Version=201;} +#ASOB_S/T;ATHB_S/T + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=111;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=112;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=113;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=114;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=111;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=112;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=113;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=114;table2Version=2;} +# + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=121;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=122;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=124;table2Version=2;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=125;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=124;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=125;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=121;table2Version=2;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=122;table2Version=2;} +#APAB_S + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=5;table2Version=201;} +# + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=22;table2Version=201;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=23;table2Version=201;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=24;table2Version=201;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=5;table2Version=201;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=22;table2Version=201;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=23;table2Version=201;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=24;table2Version=201;} +#AUSTR_SSO,AVSTR_SSO,AVDIS_SSO + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=231;table2Version=202;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=232;table2Version=202;} + "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=233;table2Version=202;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=231;table2Version=202;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=232;table2Version=202;} + "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=233;table2Version=202;} +# + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=102;table2Version=201;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=132;table2Version=201;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=132;table2Version=201;} + "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=113;table2Version=201;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=102;table2Version=201;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=102;table2Version=201;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=61;table2Version=2;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=61;table2Version=2;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=78;table2Version=2;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=90;table2Version=2;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=113;table2Version=201;} + "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=79;table2Version=2;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=90;table2Version=2;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=42;table2Version=201;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=57;table2Version=2;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=79;table2Version=2;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=113;table2Version=201;} + "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=78;table2Version=2;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=67;table2Version=202;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=69;table2Version=202;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=248;table2Version=202;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=243;table2Version=202;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=187;table2Version=201;} + "max" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=187;table2Version=201;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=15;table2Version=2;} + "max" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=15;table2Version=2;} + "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=16;table2Version=2;} + "min" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=16;table2Version=2;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=15;table2Version=2;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=78;table2Version=202;} + "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=16;table2Version=2;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=187;table2Version=201;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=55;table2Version=203;} + "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=56;table2Version=203;} + "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=15;table2Version=206;} + "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=16;table2Version=206;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=67;table2Version=202;} + "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=68;table2Version=202;} + "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=69;table2Version=202;} + "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=70;table2Version=202;} + "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=15;table2Version=2;} + "min" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=16;table2Version=2;} + "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=187;table2Version=201;} + "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=42;table2Version=201;} + "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=57;table2Version=2;} + "instant" = {timeRangeIndicator=14;} # Fields from DWD in MARS + "instant" = {timeRangeIndicator=1;} + "instant" = {timeRangeIndicator=10;} +#orig "instant" = {timeRangeIndicator=0;} + "instant" = {timeRangeIndicator=13;centre=78;} + "instant" = {timeRangeIndicator=11;centre=78;} + "instant" = {timeRangeIndicator=14;centre=78;} + +#orig "avg" = {timeRangeIndicator=3;} + "avgfc" = {timeRangeIndicator=113;} + "avgd" = {timeRangeIndicator=113;} + "accum" = {timeRangeIndicator=2;} +#dwd+1 + "accum" = {timeRangeIndicator=4;} + "max" = {timeRangeIndicator=118;} + "max" = {timeRangeIndicator=2;centre=98;} + "min" = {timeRangeIndicator=119;} + "min" = {timeRangeIndicator=2;centre=98;} +#dwd+1 + "diff" = {timeRangeIndicator=5;} + "rms" = {timeRangeIndicator=120;} + "sd" = {timeRangeIndicator=121;} + "cov" = {timeRangeIndicator=122;} + "avgua" = {timeRangeIndicator=123;} + "avgia" = {timeRangeIndicator=124;} +#tab204 monthly mean rms + "rms" = {centre=78;indicatorOfParameter=1;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=2;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=3;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=4;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=5;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=6;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=7;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=8;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=9;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=10;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=11;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=12;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=13;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=14;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=15;table2Version=204;} + "rms" = {centre=78;indicatorOfParameter=16;table2Version=204;} +#tab208 still TODO + "max" = {centre=78;table2Version=208;} + "instant" = {timeRangeIndicator=0;} + "max" = {timeRangeIndicator=2;} + "min" = {timeRangeIndicator=2;} + "avg" = {timeRangeIndicator=3;} + "accum" = {timeRangeIndicator=4;} + "diff" = {timeRangeIndicator=5;} diff --git a/eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def b/eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def new file mode 100644 index 00000000..fcc38a21 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def @@ -0,0 +1,41 @@ +# ECMWF concept type of level +#set uses the last one +#get returns the first match +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricInPa' = {indicatorOfTypeOfLevel=210;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} +'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} +'oceanWave' = {indicatorOfTypeOfLevel=211;} +'oceanMixedLayer' = {indicatorOfTypeOfLevel=212;} +'synSat' = {indicatorOfTypeOfLevel=222;} diff --git a/eccodes/definitions/grib1/localConcepts/edzw/units.def b/eccodes/definitions/grib1/localConcepts/edzw/units.def new file mode 100755 index 00000000..d525620a --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/edzw/units.def @@ -0,0 +1,8992 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500001 +#Pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'Pa s-1' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'m2 s-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'m2 s-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500006 +#Geopotential +'m2 s-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + indicatorOfTypeOfLevel = 109 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'DU' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500010 +#Temperature (G) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500011 +#2m Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500014 +#Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 3 ; + level = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500020 +#Wave spectra (1) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500021 +#Wave spectra (2) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500022 +#Wave spectra (3) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500027 +#U-Component of Wind +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500029 +#V-Component of Wind +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s-1' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'kg kg-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'kg kg-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500036 +#2m Relative Humidity +'%' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'%' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500039 +#Evaporation (s) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500045 +#Snow Depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500046 +#Total Cloud Cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'Proportion' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'%' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 100 ; + bottomLevel = 190 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 10 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; + bottomLevel = 100 ; + } + +#paramId: 500065 +#Plant cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500066 +#Water Runoff +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + topLevel = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'Proportion' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'m' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500072 +#Direction of wind waves +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500073 +#Significant height of wind waves +'m' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500074 +#Mean period of wind waves +'s' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500075 +#Mean direction of total swell +'degree coming from' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500076 +#Significant height of total swell +'m' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500077 +#Mean period of total swell +'s' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'K s-1' = { + table2Version = 201 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'K s-1' = { + table2Version = 201 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 18 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 19 ; + indicatorOfTypeOfLevel = 111 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500096 +#Sunshine duration in h +'h' = { + table2Version = 201 ; + indicatorOfParameter = 20 ; + timeRangeIndicator = 4 ; + } + +#paramId: 500097 +#Stomatal Resistance +'s m-1' = { + table2Version = 201 ; + indicatorOfParameter = 21 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500098 +#Cloud cover +'%' = { + table2Version = 201 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'%' = { + table2Version = 201 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500102 +#Rain mixing ratio +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500103 +#Snow mixing ratio +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500104 +#Total column integrated rain +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500105 +#Total column integrated snow +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500106 +#Grauple +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500107 +#Total column integrated grauple +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500109 +#vertical integral of divergence of total water content (s) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500110 +#subgrid scale cloud water +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500111 +#subgridscale cloud ice +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500112 +#cloud cover CH (0..8) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500113 +#cloud cover CM (0..8) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500114 +#cloud cover CL (0..8) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500115 +#cloud base above msl, shallow convection +'m' = { + table2Version = 201 ; + indicatorOfParameter = 58 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500116 +#Cloud top above msl, shallow convection +'m' = { + table2Version = 201 ; + indicatorOfParameter = 59 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500117 +#specific cloud water content, convective cloud +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'m' = { + table2Version = 201 ; + indicatorOfParameter = 68 ; + indicatorOfTypeOfLevel = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'m' = { + table2Version = 201 ; + indicatorOfParameter = 69 ; + indicatorOfTypeOfLevel = 3 ; + } + +#paramId: 500120 +#base index (vertical level) of main convective cloud (i) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 72 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500121 +#top index (vertical level) of main convective cloud (i) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'K s-1' = { + table2Version = 201 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500124 +#zonal wind tendency due to convection +'m s-2' = { + table2Version = 201 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500125 +#meridional wind tendency due to convection +'m s-2' = { + table2Version = 201 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'m' = { + table2Version = 201 ; + indicatorOfParameter = 82 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'m' = { + table2Version = 201 ; + indicatorOfParameter = 84 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'m' = { + table2Version = 201 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500130 +#tendency of specific cloud ice content due to convection +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'kg kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500132 +#Large scale rain rate +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500135 +#Convective rain rate +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500137 +#Convective rain +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipation +'K s-1' = { + table2Version = 201 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500142 +#tendency of specific cloud liquid water content due to grid scale precipitation +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 129 ; + } + +#paramId: 500144 +#tendency of specific cloud ice content due to grid scale precipitation +'kg kg-1 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 130 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500147 +#Snow density +'kg m-3' = { + table2Version = 201 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500148 +#Pressure perturbation +'Pa' = { + table2Version = 201 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500149 +#supercell detection index 1 (rot. up+down drafts) +'s-1' = { + table2Version = 201 ; + indicatorOfParameter = 141 ; + } + +#paramId: 500150 +#supercell detection index 2 (only rot. up drafts) +'s-1' = { + table2Version = 201 ; + indicatorOfParameter = 142 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 143 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 144 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 145 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 146 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'m2 s-3' = { + table2Version = 201 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500157 +#Kinetic Energy +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'m2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'m2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500163 +#mixed layer depth +'m' = { + table2Version = 201 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500164 +#maximum Wind 10m +'m s-1' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 197 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 198 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 199 ; + indicatorOfTypeOfLevel = 111 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'s m-1' = { + table2Version = 201 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500173 +#Base reflectivity +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 110 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + } + +#paramId: 500176 +#solution of 2-d Helmholtz equations - needed for restart +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'K s-1' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500178 +#sum of contributions to evaporation +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500179 +#total transpiration from all soil layers +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500180 +#total forcing at soil surface +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500181 +#residuum of soil moisture +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500182 +#Massflux at convective cloud base +'kg m-2 s-1' = { + table2Version = 201 ; + indicatorOfParameter = 240 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500184 +#moisture convergence for Kuo-type closure +'s-1' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500185 +#Total Wave Direction +'degree true' = { + table2Version = 202 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500187 +#Peak period of total swell +'s' = { + table2Version = 202 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500189 +#Swell peak period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500190 +#Total wave peak period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500191 +#Total wave mean period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500192 +#Total Tm1 period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500193 +#Total Tm2 period +'s' = { + table2Version = 202 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500194 +#Total directional spread +'degree true' = { + table2Version = 202 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500195 +#analysis error(standard deviation), geopotential(gpm) +'gpm' = { + table2Version = 202 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500196 +#analysis error(standard deviation), u-comp. of wind +'m2 s-2' = { + table2Version = 202 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500197 +#analysis error(standard deviation), v-comp. of wind +'m2 s-2' = { + table2Version = 202 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500198 +#zonal wind tendency due to subgrid scale oro. +'m s-2' = { + table2Version = 202 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500199 +#meridional wind tendency due to subgrid scale oro. +'m s-2' = { + table2Version = 202 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'m' = { + table2Version = 202 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'rad' = { + table2Version = 202 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500204 +#surface emissivity +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500205 +#soil type of grid (1...9, local soilType.table) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500206 +#Leaf area index +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500207 +#root depth of vegetation +'m' = { + table2Version = 202 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500208 +#height of ozone maximum (climatological) +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500209 +#vertically integrated ozone content (climatological) +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500212 +#Max Leaf area index +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500213 +#Min Leaf area index +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'m' = { + table2Version = 202 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500215 +#variance of soil moisture content (0-10) +'kg2 m-4' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500216 +#variance of soil moisture content (10-100) +'kg2 m-4' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500217 +#evergreen forest +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500218 +#deciduous forest +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 77 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500221 +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500222 +#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 84 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 86 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500227 +#Organic aerosol +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 91 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500229 +#Black carbon aerosol +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 92 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500231 +#Sea salt aerosol +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 93 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500233 +#tendency of specific humidity +'s-1' = { + table2Version = 202 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500234 +#water vapor flux +'s-1 m-2' = { + table2Version = 202 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500235 +#Coriolis parameter +'s-1' = { + table2Version = 202 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500236 +#geographical latitude +'deg N' = { + table2Version = 202 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500237 +#geographical longitude +'deg E' = { + table2Version = 202 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500239 +#Delay of the GPS signal trough the (total) atm. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500240 +#Delay of the GPS signal trough wet atmos. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500241 +#Delay of the GPS signal trough dry atmos. +'m' = { + table2Version = 202 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'kg kg-1' = { + table2Version = 202 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500250 +#I131 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500251 +#I131 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500264 +#TRACER - concentration +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500271 +#I131g - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500272 +#I131g - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500274 +#I131o - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500275 +#I131o - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Bq m-3' = { + table2Version = 202 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Bq m-2' = { + table2Version = 202 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500279 +#u-momentum flux due to SSO-effects +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500280 +#u-momentum flux due to SSO-effects +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500281 +#v-momentum flux due to SSO-effects (average) +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500282 +#v-momentum flux due to SSO-effects +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500283 +#Gravity wave dissipation (initialisation) +'W m-2' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'W m-2' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500286 +#Vertical speed shear +'s-1' = { + table2Version = 203 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500287 +#storm relative helicity +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'s-2' = { + table2Version = 203 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'m' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'m' = { + table2Version = 203 ; + indicatorOfParameter = 94 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'s-2' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500294 +#geostrophische Schichtdickenadvektion +'m3 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'m3 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500296 +#Winddivergenz +'s-1' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'K m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; + indicatorOfTypeOfLevel = 100 ; + } + +#paramId: 500302 +#KO index +'K' = { + table2Version = 203 ; + indicatorOfParameter = 140 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'K' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500304 +#Ceiling +'m' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500306 +#modified cloud depth for media +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500307 +#modified cloud cover for media +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Pa' = { + table2Version = 204 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Pa' = { + table2Version = 204 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'m s-1' = { + table2Version = 204 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'m s-1' = { + table2Version = 204 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'m s-1' = { + table2Version = 204 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'m s-1' = { + table2Version = 204 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'m2 s-2' = { + table2Version = 204 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'m2 s-2' = { + table2Version = 204 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'%' = { + table2Version = 204 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'%' = { + table2Version = 204 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'K' = { + table2Version = 204 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'K' = { + table2Version = 204 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Pa s-1' = { + table2Version = 204 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Pa s-1' = { + table2Version = 204 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500322 +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'J kg-1' = { + table2Version = 204 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500323 +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'J kg-1' = { + table2Version = 204 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 1 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'K' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 3 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 6 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 7 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 8 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 1 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 4 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 5 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 2 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; + localElementNumber = 4 ; + indicatorOfTypeOfLevel = 222 ; + level = 3 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'K' = { + table2Version = 206 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'K' = { + table2Version = 206 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'m s-1' = { + table2Version = 206 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'m s-1' = { + table2Version = 206 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'kg m-2' = { + table2Version = 206 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'%' = { + table2Version = 206 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'%' = { + table2Version = 206 ; + indicatorOfParameter = 73 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'%' = { + table2Version = 206 ; + indicatorOfParameter = 74 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'%' = { + table2Version = 206 ; + indicatorOfParameter = 75 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'kg m-2' = { + table2Version = 206 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'K' = { + table2Version = 206 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 111 ; + level = 0 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'m s-1' = { + table2Version = 206 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'kg m-2' = { + table2Version = 207 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'kg m-2' = { + table2Version = 207 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'m s-1' = { + table2Version = 207 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500402 +#Max 2m Temperature long periods > h +'C' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500403 +#Min 2m Temperature long periods > h +'C' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 2 ; + level = 2 ; + } + +#paramId: 500404 +#Total Precipitation (Accumulation) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500408 +#Large scale rain (Accumulation) Initialisation +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500409 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500410 +#Convective rain Initialisation +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500411 +#Convective Snowfall water equivalent (s) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500412 +#maximum Wind 10m Initialisation +'m s-1' = { + table2Version = 201 ; + indicatorOfParameter = 187 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 10 ; + } + +#paramId: 500416 +#Evaporation (s) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500417 +#Max 2m Temperature (i) Initialisation +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500418 +#Min 2m Temperature (i) Initialisation +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 0 ; + level = 2 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + indicatorOfTypeOfLevel = 8 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500423 +#Large-Scale snowfall - water equivalent (Accumulation) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500424 +#Convective Snowfall water equivalent (s) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500425 +#Total Precipitation (Accumulation) Initialisation +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500428 +#Latent Heat Net Flux (m) Initialisation +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500429 +#Sensible Heat Net Flux (m) Initialisation +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500430 +#Momentum Flux, U-Component (m) Initialisation +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500431 +#Momentum Flux, V-Component (m) Initialisation +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500432 +#Photosynthetically active radiation +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 5 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500433 +#Large scale rain (Accumulation) Initialisation +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 102 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500434 +#Convective rain Initialisation +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 113 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500436 +#Graupel (snow pellets) precipitation (Initialisation) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 132 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'kg m2' = { + table2Version = 208 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 132 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 136 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 137 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 138 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'m s-1' = { + table2Version = 208 ; + indicatorOfParameter = 139 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'Numeric' = { + table2Version = 208 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'K' = { + table2Version = 208 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'K' = { + table2Version = 208 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500469 +#Total ozone +'DU' = { + table2Version = 202 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'Numeric' = { + table2Version = 202 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500472 +#Konvektionsart (0..4) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500473 +#perceived temperature +'K' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500475 +#Water temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500476 +#Water temperature in C +'C' = { + table2Version = 203 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500477 +#Absolute Vorticity +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500479 +#value of isolation of clothes +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 3 ; + } + +#paramId: 500486 +#vertical integral of divergence of total water content (s) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 42 ; + timeRangeIndicator = 0 ; + } + +#paramId: 500487 +#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500488 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500489 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + timeRangeIndicator = 1 ; + } + +#paramId: 500490 +#Water Fraction +'Proportion' = { + table2Version = 202 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500491 +#Lake depth +'m' = { + table2Version = 201 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500492 +#Wind fetch +'m' = { + table2Version = 201 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'m-1' = { + table2Version = 201 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'m' = { + table2Version = 201 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'K' = { + table2Version = 201 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'K' = { + table2Version = 201 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500499 +#Mixed-layer depth +'m' = { + table2Version = 201 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'K' = { + table2Version = 201 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'m' = { + table2Version = 201 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500503 +#Icing Base (hft) - Prognose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Prognose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Prognose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500506 +#Icing Top (hft) - Prognose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500509 +#Icing Base (hft) - Prognose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500512 +#Icing Top (hft) - Prognose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500515 +#Icing Base (hft) - Diagnose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Diagnose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Diagnose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500518 +#Icing Top (hft) - Diagnose Icing Degree Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500521 +#Icing Base (hft) - Diagnose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 1 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 2 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 3 ; + } + +#paramId: 500524 +#Icing Top (hft) - Diagnose Icing Scenario Composit +'hft' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 4 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 5 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; + indicatorOfTypeOfLevel = 202 ; + level = 6 ; + } + +#paramId: 500527 +#Prognose Icing Degree Code (1=light,2=moderate,3=severe) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500528 +#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500529 +#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500530 +#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500541 +#relative vorticity,U-component +'s-1' = { + table2Version = 202 ; + indicatorOfParameter = 133 ; + } + +#paramId: 500542 +#relative vorticity,V-component +'s-1' = { + table2Version = 202 ; + indicatorOfParameter = 134 ; + } + +#paramId: 500543 +#vertical vorticity +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500544 +#Potential vorticity +'K m2 kg-1 s-1' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500545 +#Density +'kg m-3' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + timeRangeIndicator = 5 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'K m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'s-1' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'K2 m-2 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500562 +#Divergenz +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'m2 kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500564 +#Divergenz Qn +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500565 +#Divergenz Qs +'m kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500566 +#Frontogenesis function +'Km kg-1 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'s-1' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500568 +#Geopotential height +'gpm' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500569 +#Relative Divergenz +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500570 +#dry convection top index +'Numeric' = { + table2Version = 201 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500571 +#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 +'' = { + table2Version = 201 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500572 +#tidal tendencies +'s2 m-2' = { + table2Version = 202 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'C' = { + table2Version = 202 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500575 +#3 hour pressure change +'Pa-3h' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500576 +#covariance of soil moisture content (0-10) +'kg2 m-4' = { + table2Version = 202 ; + indicatorOfParameter = 74 ; + localElementNumber = 2 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + indicatorOfTypeOfLevel = 112 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 0 ; + bottomLevel = 7 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + indicatorOfTypeOfLevel = 112 ; + topLevel = 7 ; + bottomLevel = 50 ; + } + +#paramId: 500582 +#Max 2m Temperature (i) Initialisation +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500583 +#Min 2m Temperature (i) Initialisation +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + timeRangeIndicator = 1 ; + level = 2 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'m2/3 s-1' = { + table2Version = 204 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500586 +#Ellrod Index +'10-7 s-2' = { + table2Version = 204 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500588 +#Snow melt +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500592 +#Geopotential height +'10 gpm' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500593 +#Global radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500600 +#Prob Windboeen > 25 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500601 +#Prob Windboeen > 27 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500602 +#Prob Sturmboeen > 33 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500603 +#Prob Sturmboeen > 40 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500604 +#Prob Schwere Sturmboeen > 47 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500605 +#Prob Orkanartige Boeen > 55 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500606 +#Prob Orkanboeen > 63 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500607 +#Prob Oberoertliche Orkanboeen > 75 kn +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500608 +#Prob Starkregen > 10 mm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500609 +#Prob Heftiger Starkregen > 25 mm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500610 +#Prob Extrem Heftiger Starkregen > 50 mm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500611 +#Prob Leichter Schneefall > 0,1 mm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500612 +#Prob Leichter Schneefall > 0,1 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500613 +#Prob Leichter Schneefall > 0,5 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500614 +#Prob Leichter Schneefall > 1 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500615 +#Prob Schneefall > 5 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500616 +#Prob Starker Schneefall > 10 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500617 +#Prob Extrem starker Schneefall > 25 cm +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500618 +#Prob Frost +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500619 +#Prob Strenger Frost +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500620 +#Prob Gewitter +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500623 +#Prob Dauerregen +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500628 +#Prob Glaette +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500630 +#Prob Glatteis +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500632 +#Prob Tauwetter +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'Numeric' = { + table2Version = 210 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500634 +#wake-production of TKE due to sub grid scale orography +'m2 s-3' = { + table2Version = 201 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500635 +#shear-production of TKE due to separated horizontal shear modes +'m2 s-3' = { + table2Version = 201 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500636 +#buoyancy-production of TKE due to sub grid scale convection +'m2 s-3' = { + table2Version = 201 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500638 +#Atmospheric Resistance +'s m-1' = { + table2Version = 201 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'m' = { + table2Version = 201 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500640 +#mass concentration of dust (minimum mode) +'kg m-3' = { + table2Version = 242 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500642 +#Lapse rate +'K m-1' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500643 +#mass concentration of dust (medium mode) +'kg m-3' = { + table2Version = 242 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500644 +#mass concentration of dust (maximum mode) +'kg m-3' = { + table2Version = 242 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500645 +#number concentration of dust (minimum mode) +'m-3' = { + table2Version = 242 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500646 +#number concentration of dust (medium mode) +'m-3' = { + table2Version = 242 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500647 +#number concentration of dust (maximum mode) +'m-3' = { + table2Version = 242 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500648 +#mass concentration of dust (sum of all modes) +'kg m-3' = { + table2Version = 242 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500649 +#number concentration of dust (sum of all modes) +'m-3' = { + table2Version = 242 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'' = { + table2Version = 254 ; + indicatorOfParameter = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'' = { + table2Version = 254 ; + indicatorOfParameter = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'' = { + table2Version = 254 ; + indicatorOfParameter = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'' = { + table2Version = 254 ; + indicatorOfParameter = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'' = { + table2Version = 254 ; + indicatorOfParameter = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'' = { + table2Version = 254 ; + indicatorOfParameter = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'' = { + table2Version = 254 ; + indicatorOfParameter = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'' = { + table2Version = 254 ; + indicatorOfParameter = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'' = { + table2Version = 254 ; + indicatorOfParameter = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'' = { + table2Version = 254 ; + indicatorOfParameter = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'' = { + table2Version = 254 ; + indicatorOfParameter = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'' = { + table2Version = 254 ; + indicatorOfParameter = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'' = { + table2Version = 254 ; + indicatorOfParameter = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'' = { + table2Version = 254 ; + indicatorOfParameter = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'' = { + table2Version = 254 ; + indicatorOfParameter = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'' = { + table2Version = 254 ; + indicatorOfParameter = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'' = { + table2Version = 254 ; + indicatorOfParameter = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'' = { + table2Version = 254 ; + indicatorOfParameter = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'' = { + table2Version = 254 ; + indicatorOfParameter = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'' = { + table2Version = 254 ; + indicatorOfParameter = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'' = { + table2Version = 254 ; + indicatorOfParameter = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'' = { + table2Version = 254 ; + indicatorOfParameter = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'' = { + table2Version = 254 ; + indicatorOfParameter = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'' = { + table2Version = 254 ; + indicatorOfParameter = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'' = { + table2Version = 254 ; + indicatorOfParameter = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'' = { + table2Version = 254 ; + indicatorOfParameter = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'' = { + table2Version = 254 ; + indicatorOfParameter = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'' = { + table2Version = 254 ; + indicatorOfParameter = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'kg kg-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'%' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + timeRangeIndicator = 3 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'%' = { + table2Version = 202 ; + indicatorOfParameter = 129 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502333 +#salinity +'kg kg-1' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502334 +#Stream function +'m2 s-1' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502335 +#Velocity potential +'m2 s-1' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502336 +#Skin temperature +'K' = { + table2Version = 202 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux +'' = { + table2Version = 201 ; + indicatorOfParameter = 22 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502350 +#Temperature (G) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502355 +#Stream function +'m2 s-1' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502356 +#Velocity potential +'m2 s-1' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502357 +#Wind speed (SP) +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502358 +#Pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502359 +#Potential vorticity +'K m2 kg-1 s-1' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502360 +#Potential vorticity +'K m2 kg-1 s-1' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } + +#paramId: 502361 +#Geopotential +'m2 s-2' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502362 +#Max 2m Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502363 +#Min 2m Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502364 +#Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502365 +#U-Component of Wind +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502366 +#Pressure (S) (not reduced) +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502367 +#V-Component of Wind +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502368 +#Specific Humidity +'kg kg-1' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502369 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s-1' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502370 +#vertical vorticity +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502371 +#Sensible Heat Net Flux (m) +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502372 +#Latent Heat Net Flux (m) +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502373 +#Pressure Reduced to MSL +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502374 +#Relative Divergenz +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502375 +#Geopotential height +'gpm' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502376 +#Relative Humidity +'%' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502377 +#U-Component of Wind +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502378 +#V-Component of Wind +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502379 +#2m Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502381 +#Land Cover (1=land, 0=sea) +'Proportion' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502382 +#Surface Roughness length Surface Roughness +'m' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502383 +#Albedo (in short-wave, average) +'%' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502384 +#Evaporation (s) +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502385 +#Convective Cloud Cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502386 +#Cloud Cover (800 hPa - Soil) +'%' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502387 +#Cloud Cover (400 - 800 hPa) +'%' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502388 +#Cloud Cover (0 - 400 hPa) +'%' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502389 +#Plant cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502390 +#Water Runoff +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502391 +#Total Column Integrated Ozone +'DU' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502392 +#Convective Snowfall water equivalent (s) +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502393 +#Large-Scale snowfall - water equivalent (Accumulation) +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502394 +#Large-Scale Precipitation +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502395 +#Total Column-Integrated Cloud Water +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502396 +#Virtual Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502397 +#Virtual Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502398 +#Virtual Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } + +#paramId: 502399 +#Brightness Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502400 +#Boundary Layer Dissipitation +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502401 +#Pressure Tendency +'Pa s-1' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502402 +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502403 +#Geometric Height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502404 +#Max Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502405 +#Min Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502406 +#Dew Point Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502407 +#Dew point depression(or deficit) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502408 +#Lapse rate +'K m-1' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502409 +#Visibility +'m' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502410 +#Radar spectra (1) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502411 +#Radar spectra (2) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502412 +#Radar spectra (3) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502413 +#Parcel lifted index (to 500 hPa) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502414 +#Temperature anomaly +'K' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502415 +#Pressure anomaly +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502416 +#Geopotential height anomaly +'gpm' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502417 +#Wave spectra (1) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502418 +#Wave spectra (2) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502419 +#Wave spectra (3) +'Numeric' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502420 +#Wind Direction (DD) +'degree true' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502421 +#Sigma coordinate vertical velocity +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502422 +#Absolute Vorticity +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502423 +#Absolute divergence +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502424 +#Vertical u-component shear +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502425 +#Vertical v-component shear +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502426 +#Direction of current +'degree true' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502427 +#Speed of current +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502428 +#U-component of current +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502429 +#V-component of current +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502430 +#Humidity mixing ratio +'kg kg-1' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502431 +#Precipitable water +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502432 +#Vapour pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502433 +#Saturation deficit +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502434 +#Precipitation rate +'kg m-2 s-1' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502435 +#Thunderstorm probability +'%' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502436 +#Convective precipitation (water) +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502437 +#Snow fall rate water equivalent +'kg m-2 s-1' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502438 +#Mixed layer depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502439 +#Transient thermocline depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502440 +#Main thermocline depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502441 +#Main thermocline depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502442 +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502443 +#Water temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502444 +#Deviation of sea-elbel from mean +'m' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502445 +#Column-integrated Soil Moisture +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502446 +#salinity +'' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502447 +#Density +'kg m-3' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502448 +#Sea Ice Cover ( 0= free, 1=cover) +'Proportion' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502449 +#sea Ice Thickness +'m' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502450 +#Direction of ice drift +'degree true' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502451 +#Speed of ice drift +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502452 +#U-component of ice drift +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502453 +#V-component of ice drift +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502454 +#Ice growth rate +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502455 +#Snow melt +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502456 +#Significant height of combined wind waves and swell +'m' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502457 +#Direction of wind waves +'degree true' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502458 +#Significant height of wind waves +'m' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502459 +#Mean period of wind waves +'s' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502460 +#Mean direction of total swell +'degree coming from' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502461 +#Significant height of swell waves +'m' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502462 +#Swell Mean Period +'s' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502465 +#Secondary wave direction +'degree true' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502466 +#Secondary wave period +'s' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502467 +#Net short wave radiation flux (at the surface) +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502468 +#Net long wave radiation flux (m) (at the surface) +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502469 +#Net short wave radiation flux +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502470 +#Net long-wave radiation flux(atmosph.top) +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502471 +#Long wave radiation flux +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502472 +#Short wave radiation flux +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502473 +#Global radiation flux +'W m-2' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502474 +#Radiance (with respect to wave number) +'' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502475 +#Radiance (with respect to wave length) +'' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502476 +#Momentum Flux, U-Component (m) +'N m-2' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502477 +#Momentum Flux, V-Component (m) +'N m-2' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502478 +#Wind mixing energy +'J' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502479 +#Image data +'' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502480 +#Geopotential height +'gpm' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502481 +#Soil Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502482 +#Snow Depth water equivalent +'m' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502483 +#Snow depth water equivalent +'kg -2' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502484 +#Total Cloud Cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502485 +#Total Precipitation (Accumulation) +'kg m-2' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502486 +#Boundary Layer Dissipitation +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502487 +#Sensible Heat Net Flux (m) +'' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502488 +#Latent Heat Net Flux (m) +'' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502490 +#Evaporation (s) +'' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502491 +#Cloud Cover (800 hPa - Soil) +'' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502492 +#Cloud Cover (400 - 800 hPa) +'' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502493 +#Cloud Cover (0 - 400 hPa) +'' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502494 +#Brightness Temperature +'' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502495 +#Water Runoff +'' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502496 +#Geometric Height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502497 +#Standard devation of height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502498 +#Standard devation of height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502499 +#Pseudo-adiabatic potential Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502500 +#Pseudo-adiabatic potential Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502501 +#Max Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502502 +#Min Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502503 +#Dew Point Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502504 +#Dew point depression(or deficit) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502505 +#Visibility +'m' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502506 +#Radar spectra (2) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502507 +#Radar spectra (3) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502508 +#Parcel lifted index (to 500 hPa) +'Numeric' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502509 +#Temperature anomaly +'K' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502510 +#Pressure anomaly +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502511 +#Geopotential height anomaly +'gpm' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502512 +#Montgomery stream Function +'m-2/s-2' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502513 +#Montgomery stream Function +'m-2/s-2' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502514 +#Sigma coordinate vertical velocity +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502515 +#Absolute divergence +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502516 +#Vertical u-component shear +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502517 +#Vertical v-component shear +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502518 +#Direction of current +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502519 +#Speed of current +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502520 +#U-component of current +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502521 +#V-component of current +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502522 +#Humidity mixing ratio +'kg kg-1' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502523 +#Vapour pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502524 +#Saturation deficit +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502525 +#Precipitation rate +'kg m-2 s-1' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502526 +#Thunderstorm probability +'%' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502527 +#Convective precipitation (water) +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502528 +#Snow fall rate water equivalent +'kg m-2 s-1' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502529 +#Mixed layer depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502530 +#Transient thermocline depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502531 +#Main thermocline depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502532 +#Main thermocline depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502533 +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502534 +#Deviation of sea-elbel from mean +'m' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502535 +#Column-integrated Soil Moisture +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502536 +#Direction of ice drift +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502537 +#Speed of ice drift +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502538 +#U-component of ice drift +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502539 +#V-component of ice drift +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502540 +#Ice growth rate +'m s-1' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502542 +#Snow melt +'kg m-2' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } + +#paramId: 502545 +#Secondary wave direction +'degree true' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502546 +#Secondary wave period +'s' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502547 +#Net short wave radiation flux (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502548 +#Net long wave radiation flux (m) (at the surface) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502549 +#Net short wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502550 +#Net long-wave radiation flux(atmosph.top) +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502551 +#Long wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502552 +#Short wave radiation flux +'W m-2' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502553 +#Radiance (with respect to wave number) +'' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502554 +#Radiance (with respect to wave length) +'' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502555 +#Momentum Flux, U-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502556 +#Momentum Flux, V-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502557 +#Wind mixing energy +'J' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502558 +#Image data +'' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502559 +#Geopotential height +'gpm' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502560 +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502562 +#Potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502563 +#Potential temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502564 +#Wind speed (SP) +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } + +#paramId: 502565 +#Pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } + +#paramId: 502566 +#Max 2m Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502567 +#Min 2m Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502568 +#Geopotential +'m2 s-2' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } + +#paramId: 502569 +#Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } + +#paramId: 502570 +#U-Component of Wind +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } + +#paramId: 502571 +#V-Component of Wind +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } + +#paramId: 502572 +#Specific Humidity +'kg kg-1' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } + +#paramId: 502573 +#Pressure (S) (not reduced) +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502574 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s-1' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } + +#paramId: 502575 +#vertical vorticity +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } + +#paramId: 502576 +#Boundary Layer Dissipitation +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } + +#paramId: 502577 +#Sensible Heat Net Flux (m) +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } + +#paramId: 502578 +#Latent Heat Net Flux (m) +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } + +#paramId: 502579 +#Pressure Reduced to MSL +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } + +#paramId: 502581 +#Geopotential height +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } + +#paramId: 502582 +#Relative Humidity +'%' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } + +#paramId: 502583 +#U-Component of Wind +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502584 +#V-Component of Wind +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } + +#paramId: 502585 +#2m Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } + +#paramId: 502587 +#Relative Divergenz +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } + +#paramId: 502588 +#Land Cover (1=land, 0=sea) +'Proportion' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } + +#paramId: 502589 +#Surface Roughness length Surface Roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } + +#paramId: 502590 +#Albedo (in short-wave, average) +'%' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } + +#paramId: 502591 +#Evaporation (s) +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } + +#paramId: 502592 +#Convective Cloud Cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } + +#paramId: 502593 +#Cloud Cover (800 hPa - Soil) +'%' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } + +#paramId: 502594 +#Cloud Cover (400 - 800 hPa) +'%' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } + +#paramId: 502595 +#Cloud Cover (0 - 400 hPa) +'%' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } + +#paramId: 502596 +#Brightness Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } + +#paramId: 502597 +#Plant cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } + +#paramId: 502598 +#Water Runoff +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } + +#paramId: 502599 +#Total Column Integrated Ozone +'DU' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } + +#paramId: 502600 +#Convective Snowfall water equivalent (s) +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } + +#paramId: 502601 +#Large-Scale snowfall - water equivalent (Accumulation) +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } + +#paramId: 502602 +#Large-Scale Precipitation +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } + +#paramId: 502603 +#Total Column-Integrated Cloud Water +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } + +#paramId: 502604 +#Pressure Tendency +'Pa s-1' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } + +#paramId: 502605 +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } + +#paramId: 502606 +#Geometric Height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } + +#paramId: 502607 +#Standard devation of height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } + +#paramId: 502608 +#Pseudo-adiabatic potential Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } + +#paramId: 502609 +#Max Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } + +#paramId: 502610 +#Min Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } + +#paramId: 502611 +#Dew Point Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } + +#paramId: 502612 +#Dew point depression(or deficit) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } + +#paramId: 502613 +#Lapse rate +'K m-1' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } + +#paramId: 502614 +#Visibility +'m' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } + +#paramId: 502615 +#Radar spectra (1) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } + +#paramId: 502616 +#Radar spectra (2) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } + +#paramId: 502617 +#Radar spectra (3) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } + +#paramId: 502618 +#Parcel lifted index (to 500 hPa) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } + +#paramId: 502619 +#Temperature anomaly +'K' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } + +#paramId: 502620 +#Pressure anomaly +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } + +#paramId: 502621 +#Geopotential height anomaly +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } + +#paramId: 502622 +#Wave spectra (1) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } + +#paramId: 502623 +#Wave spectra (2) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } + +#paramId: 502624 +#Wave spectra (3) +'Numeric' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } + +#paramId: 502625 +#Wind Direction (DD) +'degree true' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } + +#paramId: 502626 +#Montgomery stream Function +'m-2/s-2' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } + +#paramId: 502627 +#Sigma coordinate vertical velocity +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } + +#paramId: 502628 +#Absolute Vorticity +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } + +#paramId: 502629 +#Absolute divergence +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } + +#paramId: 502630 +#Vertical u-component shear +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } + +#paramId: 502631 +#Vertical v-component shear +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } + +#paramId: 502632 +#Direction of current +'degree true' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } + +#paramId: 502633 +#Speed of current +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } + +#paramId: 502634 +#U-component of current +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } + +#paramId: 502635 +#V-component of current +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } + +#paramId: 502636 +#Humidity mixing ratio +'kg kg-1' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } + +#paramId: 502637 +#Precipitable water +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } + +#paramId: 502638 +#Vapour pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } + +#paramId: 502639 +#Saturation deficit +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } + +#paramId: 502640 +#Precipitation rate +'kg m-2 s-1' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } + +#paramId: 502641 +#Thunderstorm probability +'%' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } + +#paramId: 502642 +#Convective precipitation (water) +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } + +#paramId: 502643 +#Snow fall rate water equivalent +'kg m-2 s-1' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } + +#paramId: 502644 +#Mixed layer depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } + +#paramId: 502645 +#Transient thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } + +#paramId: 502646 +#Main thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } + +#paramId: 502647 +#Main thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } + +#paramId: 502648 +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } + +#paramId: 502649 +#Water temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } + +#paramId: 502650 +#Deviation of sea-elbel from mean +'m' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } + +#paramId: 502651 +#Column-integrated Soil Moisture +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502652 +#salinity +'' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } + +#paramId: 502653 +#Density +'kg m-3' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } + +#paramId: 502654 +#Sea Ice Cover ( 0= free, 1=cover) +'Proportion' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } + +#paramId: 502655 +#sea Ice Thickness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } + +#paramId: 502656 +#Direction of ice drift +'degree true' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } + +#paramId: 502657 +#Speed of ice drift +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } + +#paramId: 502658 +#U-component of ice drift +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } + +#paramId: 502659 +#V-component of ice drift +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } + +#paramId: 502660 +#Ice growth rate +'m s-1' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } + +#paramId: 502662 +#Significant height of combined wind waves and swell +'m' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } + +#paramId: 502663 +#Direction of wind waves +'degree true' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } + +#paramId: 502664 +#Significant height of wind waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } + +#paramId: 502665 +#Mean period of wind waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } + +#paramId: 502666 +#Mean direction of total swell +'degree coming from' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } + +#paramId: 502667 +#Significant height of swell waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } + +#paramId: 502668 +#Swell Mean Period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } + +#paramId: 502671 +#Secondary wave direction +'degree true' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } + +#paramId: 502672 +#Secondary wave period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } + +#paramId: 502673 +#Net short wave radiation flux (at the surface) +'w m-2' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } + +#paramId: 502674 +#Net long wave radiation flux (m) (at the surface) +'w m-2' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } + +#paramId: 502675 +#Net short wave radiation flux +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } + +#paramId: 502676 +#Net long-wave radiation flux(atmosph.top) +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } + +#paramId: 502677 +#Long wave radiation flux +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } + +#paramId: 502678 +#Short wave radiation flux +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } + +#paramId: 502679 +#Global radiation flux +'W m-2' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } + +#paramId: 502680 +#Radiance (with respect to wave number) +'' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } + +#paramId: 502681 +#Radiance (with respect to wave length) +'' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } + +#paramId: 502682 +#Momentum Flux, U-Component (m) +'N m-2' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } + +#paramId: 502683 +#Momentum Flux, V-Component (m) +'N m-2' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } + +#paramId: 502684 +#Wind mixing energy +'J' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } + +#paramId: 502685 +#Image data +'' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } + +#paramId: 502686 +#Geopotential height +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 502687 +#Column-integrated Soil Moisture +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } + +#paramId: 502688 +#Soil Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } + +#paramId: 502689 +#Snow Depth water equivalent +'m' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } + +#paramId: 502690 +#Snow depth water equivalent +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } + +#paramId: 502691 +#Total Cloud Cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } + +#paramId: 502692 +#Total Precipitation (Accumulation) +'kg m-2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } + +#paramId: 502693 +#Potential temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } + +#paramId: 502694 +#Ice divergence +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502695 +#Ice divergence +'s-1' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502696 +#Ice divergence +'s-1' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } + +#paramId: 502697 +#Velocity potential +'m2 s-1' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } + +#paramId: 502750 +#Stream function +'m2 2-1' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } + +#paramId: 502796 +#Precipitation +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'m2 s-3' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 23 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'W m-2' = { + table2Version = 201 ; + indicatorOfParameter = 24 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'N m-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + indicatorOfTypeOfLevel = 1 ; + } + +#paramId: 503065 +#u-momentum flux due to SSO-effects +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 231 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503066 +#v-momentum flux due to SSO-effects +'N m-2' = { + table2Version = 202 ; + indicatorOfParameter = 232 ; + timeRangeIndicator = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; + } + +#paramId: 503069 +#precipitation,BRD +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'1' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; + } + +#paramId: 503071 +#hail flag,BRD +'Numeric' = { + table2Version = 203 ; + indicatorOfParameter = 76 ; + } + +#paramId: 503072 +#snow rate,BRD +'0.01 m' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; + } + +#paramId: 503073 +#snow rate, qualified,BRD +'0.01 m' = { + table2Version = 204 ; + indicatorOfParameter = 46 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'W m-2' = { + table2Version = 202 ; + indicatorOfParameter = 233 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503078 +#relative humidity over mixed phase +'%' = { + table2Version = 250 ; + indicatorOfParameter = 20 ; + } + +#paramId: 503082 +#Friction Velocity +'' = { + table2Version = 202 ; + indicatorOfParameter = 120 ; + } + +#paramId: 503098 +#Vertical Velocity (Geometric) (w) +'m s-1' = { + table2Version = 3 ; + indicatorOfParameter = 40 ; + } + +#paramId: 503099 +#Fog_fraction +'' = { + table2Version = 3 ; + indicatorOfParameter = 138 ; + } + +#paramId: 503100 +#accumulated_convective_rain +'' = { + table2Version = 3 ; + indicatorOfParameter = 140 ; + } + +#paramId: 503101 +#cloud_fraction_below_1000ft +'' = { + table2Version = 3 ; + indicatorOfParameter = 207 ; + } + +#paramId: 503103 +#Lowest_cloud_base_height +'' = { + table2Version = 3 ; + indicatorOfParameter = 151 ; + } + +#paramId: 503104 +#wet_bulb_freezing_level_ht +'' = { + table2Version = 3 ; + indicatorOfParameter = 152 ; + } + +#paramId: 503105 +#freezing_level_ICAO_height +'' = { + table2Version = 3 ; + indicatorOfParameter = 162 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'W m-2 ' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'W m-2 ' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 3 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'W m-2 ' = { + table2Version = 201 ; + indicatorOfParameter = 25 ; + timeRangeIndicator = 4 ; + } + +#paramId: 503140 +#orography +'' = { + table2Version = 3 ; + indicatorOfParameter = 148 ; + } + +#paramId: 503141 +#wind_gust_10m +'' = { + table2Version = 3 ; + indicatorOfParameter = 149 ; + } + +#paramId: 503142 +#Lightning Potential Index +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'Proportion' = { + table2Version = 202 ; + indicatorOfParameter = 33 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'W m-2' = { + table2Version = 202 ; + indicatorOfParameter = 34 ; + } + +#paramId: 503325 +#Lightning Potential Index +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'m2s-2' = { + table2Version = 203 ; + indicatorOfParameter = 35 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'s-1' = { + table2Version = 203 ; + indicatorOfParameter = 36 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 37 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 49 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'kg m-2' = { + table2Version = 201 ; + indicatorOfParameter = 48 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 234 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'J kg-1' = { + table2Version = 201 ; + indicatorOfParameter = 196 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'dBZ' = { + table2Version = 201 ; + indicatorOfParameter = 230 ; + indicatorOfTypeOfLevel = 200 ; + timeRangeIndicator = 2 ; + } + +#paramId: 503350 +#relative vorticity +'s-1' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'Pa' = { + table2Version = 202 ; + indicatorOfParameter = 36 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'m' = { + table2Version = 202 ; + indicatorOfParameter = 37 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'W m-2 K-1' = { + table2Version = 202 ; + indicatorOfParameter = 39 ; + } + diff --git a/eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def b/eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def new file mode 100644 index 00000000..727ee660 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def @@ -0,0 +1,1121 @@ +# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi +'P-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 1 ; +} +'Z-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; +} +'HL-M' = { + table2Version = 203 ; + indicatorOfParameter = 3 ; +} +'T-C' = { + table2Version = 203 ; + indicatorOfParameter = 4 ; +} +'TP-K' = { + table2Version = 203 ; + indicatorOfParameter = 8 ; +} +'TPW-K' = { + table2Version = 203 ; + indicatorOfParameter = 9 ; +} +'TD-C' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; +} +'Q-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 12 ; +} +'RH-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 13 ; +} +'CLDSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 15 ; +} +'FRNTSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 18 ; +} +'FOGSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 19 ; +} +'DD-D' = { + table2Version = 203 ; + indicatorOfParameter = 20 ; +} +'FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 21 ; +} +'DF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 22 ; +} +'U-MS' = { + table2Version = 203 ; + indicatorOfParameter = 23 ; +} +'V-MS' = { + table2Version = 203 ; + indicatorOfParameter = 24 ; +} +'FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 27 ; +} +'HM20C-M' = { + table2Version = 203 ; + indicatorOfParameter = 28 ; +} +'ABSVO-HZ-5' = { + table2Version = 203 ; + indicatorOfParameter = 31 ; +} +'AQI-N' = { + table2Version = 203 ; + indicatorOfParameter = 38 ; +} +'FF10-MS' = { + table2Version = 203 ; + indicatorOfParameter = 39 ; +} +'VV-PAS' = { + table2Version = 203 ; + indicatorOfParameter = 40 ; +} +'VV-MMS' = { + table2Version = 203 ; + indicatorOfParameter = 43 ; +} +'VV-MS' = { + table2Version = 203 ; + indicatorOfParameter = 44 ; +} +'PRCWAT-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 47 ; +} +'RR-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 50 ; +} +'SD-M' = { + table2Version = 203 ; + indicatorOfParameter = 51 ; +} +'HSADE1-N' = { + table2Version = 203 ; + indicatorOfParameter = 52 ; +} +'HSADE2-N' = { + table2Version = 203 ; + indicatorOfParameter = 53 ; +} +'RR-6-MM' = { + table2Version = 203 ; + indicatorOfParameter = 54 ; +} +'RR-12-MM' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; +} +'RR-1-MM' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; +} +'RR-2-MM' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; +} +'RR-3-MM' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; +} +'PRECFORM-N' = { + table2Version = 203 ; + indicatorOfParameter = 59 ; +} +'SMOGI-N' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; +} +'RRL-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 62 ; +} +'RRC-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 63 ; +} +'SNACC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 68 ; +} +'RNETLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 69 ; +} +'H0C-M' = { + table2Version = 203 ; + indicatorOfParameter = 70 ; +} +'RRR-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; +} +'RRRC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; +} +'RRRL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; +} +'LNSP-N' = { + table2Version = 203 ; + indicatorOfParameter = 74 ; +} +'TG-K' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; +} +'LSSN-M100' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; +} +'CLDWAT-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 78 ; +} +'N-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 79 ; +} +'KINDEX-N' = { + table2Version = 203 ; + indicatorOfParameter = 80 ; +} +'ALBEDO' = { + table2Version = 203 ; + indicatorOfParameter = 89 ; +} +'HESSAA-N' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; +} +'RADLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 95 ; +} +'RADGLO-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 96 ; +} +'LC-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; +} +'IC-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; +} +'RHO-KGM3' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; +} +'SSICING-N' = { + table2Version = 203 ; + indicatorOfParameter = 102 ; +} +'ICING-N' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; +} +'CLDICE-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 104 ; +} +'CLDCND-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; +} +'SNL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 106 ; +} +'SNC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; +} +'SNRL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 108 ; +} +'SNRC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; +} +'SNR-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 110 ; +} +'T-C1-C' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; +} +'T-C2-C' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; +} +'T-C3-C' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; +} +'T-C4-C' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; +} +'T-C5-C' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; +} +'T-C6-C' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; +} +'Z-C1-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; +} +'Z-C2-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; +} +'Z-C3-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; +} +'Z-C4-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 120 ; +} +'Z-C5-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 121 ; +} +'Z-C6-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 122 ; +} +'RTOPLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; +} +'RNETSW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; +} +'TPE-K' = { + table2Version = 203 ; + indicatorOfParameter = 129 ; +} +'ABSH-KGM3' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; +} +'PROB-T-1' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; +} +'PROB-T-2' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; +} +'PROB-T-3' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; +} +'PROB-T-4' = { + table2Version = 203 ; + indicatorOfParameter = 134 ; +} +'PROB-RR-1' = { + table2Version = 203 ; + indicatorOfParameter = 141 ; +} +'PROB-RR-2' = { + table2Version = 203 ; + indicatorOfParameter = 142 ; +} +'PROB-RR-3' = { + table2Version = 203 ; + indicatorOfParameter = 143 ; +} +'PROB-RR-4' = { + table2Version = 203 ; + indicatorOfParameter = 144 ; +} +'WSH-KT' = { + table2Version = 203 ; + indicatorOfParameter = 145 ; +} +'WSH-1-KT' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; +} +'HLCY-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 147 ; +} +'HLCY-1-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 148 ; +} +'FF1500-MS' = { + table2Version = 203 ; + indicatorOfParameter = 149 ; +} +'TPE3-C' = { + table2Version = 203 ; + indicatorOfParameter = 150 ; +} +'PROB-W-1' = { + table2Version = 203 ; + indicatorOfParameter = 151 ; +} +'PROB-W-2' = { + table2Version = 203 ; + indicatorOfParameter = 152 ; +} +'PROB-WG-1' = { + table2Version = 203 ; + indicatorOfParameter = 153 ; +} +'PROB-WG-2' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; +} +'PROB-WG-3' = { + table2Version = 203 ; + indicatorOfParameter = 155 ; +} +'EFI-WS' = { + table2Version = 203 ; + indicatorOfParameter = 156 ; +} +'EFI-T' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; +} +'EFI-WG' = { + table2Version = 203 ; + indicatorOfParameter = 158 ; +} +'EFI-RR' = { + table2Version = 203 ; + indicatorOfParameter = 159 ; +} +'PROBSN-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 161 ; +} +'MOL-M' = { + table2Version = 203 ; + indicatorOfParameter = 163 ; +} +'SRMOM-M' = { + table2Version = 203 ; + indicatorOfParameter = 164 ; +} +'RRI-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 165 ; +} +'RSI-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 166 ; +} +'MIXHGT-M' = { + table2Version = 203 ; + indicatorOfParameter = 167 ; +} +'SI-N' = { + table2Version = 203 ; + indicatorOfParameter = 168 ; +} +'LI-N' = { + table2Version = 203 ; + indicatorOfParameter = 169 ; +} +'CTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 170 ; +} +'VTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 171 ; +} +'TTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 172 ; +} +'F0-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 173 ; +} +'F10-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 174 ; +} +'F25-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 175 ; +} +'F50-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 176 ; +} +'F75-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 177 ; +} +'F90-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 178 ; +} +'F100-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 179 ; +} +'LCL-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 180 ; +} +'LFC-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; +} +'EL-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; +} +'SR-M' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; +} +'LCL-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; +} +'LFC-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 185 ; +} +'SM-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 186 ; +} +'F0-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 187 ; +} +'F10-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 188 ; +} +'F25-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 189 ; +} +'F50-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 190 ; +} +'F75-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; +} +'F90-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; +} +'F100-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; +} +'EL-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; +} +'CAPE-MU-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 195 ; +} +'UVIMAX-N' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; +} +'UVI-N' = { + table2Version = 203 ; + indicatorOfParameter = 197 ; +} +'O3ANOM-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 198 ; +} +'CIN-MU-N' = { + table2Version = 203 ; + indicatorOfParameter = 199 ; +} +'CANW-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 200 ; +} +'FLLAT-JM2' = { + table2Version = 203 ; + indicatorOfParameter = 201 ; +} +'FLSEN-JM2' = { + table2Version = 203 ; + indicatorOfParameter = 202 ; +} +'FLMOM-PA' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; +} +'CAPE-0-3-MU' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; +} +'CAPE1040-MU' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; +} +'ILSAA1-N' = { + table2Version = 203 ; + indicatorOfParameter = 206 ; +} +'SOILTY-N' = { + table2Version = 203 ; + indicatorOfParameter = 207 ; +} +'TKEN-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 208 ; +} +'UFLMOM-NM2' = { + table2Version = 203 ; + indicatorOfParameter = 209 ; +} +'VFLMOM-NM2' = { + table2Version = 203 ; + indicatorOfParameter = 210 ; +} +'VEGET-N' = { + table2Version = 203 ; + indicatorOfParameter = 211 ; +} +'GRR-MMH' = { + table2Version = 203 ; + indicatorOfParameter = 212 ; +} +'RRRS-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 213 ; +} +'F0-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 214 ; +} +'F10-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 215 ; +} +'F25-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 216 ; +} +'F50-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 217 ; +} +'F75-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 218 ; +} +'F90-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 219 ; +} +'F100-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 220 ; +} +'F0-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 221 ; +} +'F10-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 222 ; +} +'F25-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 223 ; +} +'F50-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 224 ; +} +'F75-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 225 ; +} +'F90-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 226 ; +} +'F100-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 227 ; +} +'F0-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 228 ; +} +'F10-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 229 ; +} +'F25-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 230 ; +} +'F50-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 231 ; +} +'F75-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 232 ; +} +'F90-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 233 ; +} +'F100-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 234 ; +} +'LCL-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 235 ; +} +'LFC-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 236 ; +} +'EL-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 237 ; +} +'LCL-M' = { + table2Version = 203 ; + indicatorOfParameter = 238 ; +} +'LFC-M' = { + table2Version = 203 ; + indicatorOfParameter = 239 ; +} +'EL-M' = { + table2Version = 203 ; + indicatorOfParameter = 240 ; +} +'CAPE-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 241 ; +} +'CAPE-500' = { + table2Version = 203 ; + indicatorOfParameter = 242 ; +} +'CAPE1040' = { + table2Version = 203 ; + indicatorOfParameter = 243 ; +} +'CIN-N' = { + table2Version = 203 ; + indicatorOfParameter = 244 ; +} +'LCL-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 245 ; +} +'LFC-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 246 ; +} +'EL-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 247 ; +} +'LCL-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 248 ; +} +'LFC-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 249 ; +} +'EL-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 250 ; +} +'CAPE-0-3' = { + table2Version = 203 ; + indicatorOfParameter = 251 ; +} +'CAPE-0-3-500' = { + table2Version = 203 ; + indicatorOfParameter = 252 ; +} +'CAPE1040-500' = { + table2Version = 203 ; + indicatorOfParameter = 253 ; +} +'CIN-500-N' = { + table2Version = 203 ; + indicatorOfParameter = 254 ; +} +'PRECFORM2-N' = { + table2Version = 203 ; + indicatorOfParameter = 255 ; +} +'TSEA-C' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; +} +'ICNCT-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; +} +'ITHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; +} +'IMINTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; +} +'IMAXTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 5 ; +} +'IRIDGE-CM' = { + table2Version = 205 ; + indicatorOfParameter = 6 ; +} +'IVELU-MS' = { + table2Version = 205 ; + indicatorOfParameter = 7 ; +} +'IVELV-MS' = { + table2Version = 205 ; + indicatorOfParameter = 8 ; +} +'IMEANTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 9 ; +} +'IRIDGC-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 10 ; +} +'IRAFTTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 11 ; +} +'IRCNCT-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 12 ; +} +'IDD-D' = { + table2Version = 205 ; + indicatorOfParameter = 13 ; +} +'IFF-MS' = { + table2Version = 205 ; + indicatorOfParameter = 14 ; +} +'P-PA' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; +} +'P-PA' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; +} +'Z-M2S2' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; +} +'HL-M' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; +} +'T-K' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; +} +'TP-K' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; +} +'TMAX-C' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; +} +'TMIN-C' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; +} +'TD-K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; +} +'VV-M' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; +} +'U-MS' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; +} +'V-MS' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; +} +'VV-PAS' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; +} +'VV-MS' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; +} +'ABSVO-HZ' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; +} +'Q-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; +} +'RH-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; +} +'PRCWAT-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; +} +'EVAP-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; +} +'CLDICE-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; +} +'RR-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; +} +'SD-M' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; +} +'MIXHGT-M' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; +} +'N-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; +} +'NL-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; +} +'NM-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; +} +'NH-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; +} +'CLDWAT-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; +} +'LC-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; +} +'SR-M' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; +} +'ALBEDO' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; +} +'SM-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; +} +'IC-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; +} +'DW-D' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; +} +'HWS-M' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; +} +'PWS-S' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; +} +'RNETSWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; +} +'RNETLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; +} +'RTOPSW-WM2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'RTOPSWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'RTOPLW-WM2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'RTOPLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'RADLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; +} +'RADGLOA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; +} +'FLLAT-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; +} +'FLSEN-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; +} +'UFLMOM-NM2' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; +} +'VFLMOM-NM2' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; +} +'ICINGWARN-N' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; +} +'PRECTYPE-N' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; +} +'CAPE-JKG' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; +} +'WGU-MS' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; +} +'WGV-MS' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; +} +'RRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; +} +'SNACC-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'SNRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'RRS-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; +} +'CLDBASE-M' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; +} +'CLDTOP-M' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; +} +'TKEN-JKG' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; +} +'GR-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'GRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'RRH-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; +} +'FL-MPLTY-N' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; +} +'REFLTY-DBZ' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; +} +'FFG-MS' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/efkl/name.def b/eccodes/definitions/grib1/localConcepts/efkl/name.def new file mode 100644 index 00000000..4ccde83b --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/efkl/name.def @@ -0,0 +1,1121 @@ +# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi +'Pressure in hPa' = { + table2Version = 203 ; + indicatorOfParameter = 1 ; +} +'Geopotential' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; +} +'Height of level in meters' = { + table2Version = 203 ; + indicatorOfParameter = 3 ; +} +'Temperature in Celsius' = { + table2Version = 203 ; + indicatorOfParameter = 4 ; +} +'Potential temperature' = { + table2Version = 203 ; + indicatorOfParameter = 8 ; +} +'Pseudoadiabatic potential temperature in K' = { + table2Version = 203 ; + indicatorOfParameter = 9 ; +} +'Dew point Temperature in C' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; +} +'Specific Humidity in kg/kg' = { + table2Version = 203 ; + indicatorOfParameter = 12 ; +} +'Relative Humidity in percents' = { + table2Version = 203 ; + indicatorOfParameter = 13 ; +} +'Cloud Symbol' = { + table2Version = 203 ; + indicatorOfParameter = 15 ; +} +'Front Symbol' = { + table2Version = 203 ; + indicatorOfParameter = 18 ; +} +'Fog symbol' = { + table2Version = 203 ; + indicatorOfParameter = 19 ; +} +'Wind Direction in Degrees' = { + table2Version = 203 ; + indicatorOfParameter = 20 ; +} +'Wind speed in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 21 ; +} +'Wind Vector in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 22 ; +} +'U wind in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 23 ; +} +'V wind in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 24 ; +} +'Instantaneous Wind Speed in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 27 ; +} +'Height of -20 C level in meters' = { + table2Version = 203 ; + indicatorOfParameter = 28 ; +} +'Absolute Vorticity in HZ/10000' = { + table2Version = 203 ; + indicatorOfParameter = 31 ; +} +'FMI Air Quality Index' = { + table2Version = 203 ; + indicatorOfParameter = 38 ; +} +'WindSpeed at 10 m in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 39 ; +} +'Vertical Velocity in pa/s' = { + table2Version = 203 ; + indicatorOfParameter = 40 ; +} +'Vertical Velocity in mm/s' = { + table2Version = 203 ; + indicatorOfParameter = 43 ; +} +'Vertical Velocity in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 44 ; +} +'Precipitable water in mm' = { + table2Version = 203 ; + indicatorOfParameter = 47 ; +} +'Total precipitation' = { + table2Version = 203 ; + indicatorOfParameter = 50 ; +} +'Snow Depth in Meters' = { + table2Version = 203 ; + indicatorOfParameter = 51 ; +} +'Precalculated weather symbol' = { + table2Version = 203 ; + indicatorOfParameter = 52 ; +} +'Precalculated weather symbol' = { + table2Version = 203 ; + indicatorOfParameter = 53 ; +} +'Rain over the last 6 hours in mm' = { + table2Version = 203 ; + indicatorOfParameter = 54 ; +} +'Rain over the last 12 hours in mm' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; +} +'Rain over the last 1 hour in mm' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; +} +'Rain over the last 2 hours in mm' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; +} +'Rain over the last 3 hours in mm' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; +} +'Precipitation form' = { + table2Version = 203 ; + indicatorOfParameter = 59 ; +} +'Calculated smog appearance' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; +} +'Large Scale precipitation in 10ths of mm' = { + table2Version = 203 ; + indicatorOfParameter = 62 ; +} +'Convective precipitation in 10ths of mm' = { + table2Version = 203 ; + indicatorOfParameter = 63 ; +} +'Snowfall accumulation in mm' = { + table2Version = 203 ; + indicatorOfParameter = 68 ; +} +'Net long wave radiation' = { + table2Version = 203 ; + indicatorOfParameter = 69 ; +} +'Height of 0 C level in meters' = { + table2Version = 203 ; + indicatorOfParameter = 70 ; +} +'Total Precipitation rate in kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; +} +'Convective Precipitation rate in kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; +} +'Large Scale Precipitation rate in kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; +} +'Log Surface Pressure' = { + table2Version = 203 ; + indicatorOfParameter = 74 ; +} +'Ground Temperature in Kelvins' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; +} +'Loose snow depth in cm' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; +} +'Cloud water' = { + table2Version = 203 ; + indicatorOfParameter = 78 ; +} +'Total Cloud Cover in %' = { + table2Version = 203 ; + indicatorOfParameter = 79 ; +} +'Stability index (-50 -> 50)' = { + table2Version = 203 ; + indicatorOfParameter = 80 ; +} +'ALBEDO 0 to 1' = { + table2Version = 203 ; + indicatorOfParameter = 89 ; +} +'Simple weather symbol fo HS and others' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; +} +'Long wave radiation' = { + table2Version = 203 ; + indicatorOfParameter = 95 ; +} +'Global radiation' = { + table2Version = 203 ; + indicatorOfParameter = 96 ; +} +'Land Cover, 1=land, 0=sea' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; +} +'Ice Cover, 1=ice, 0=no ice' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; +} +'Density of dry air in Kg m-3' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; +} +'Sea spray icing for major oceans' = { + table2Version = 203 ; + indicatorOfParameter = 102 ; +} +'Icing, code 20041 in BUFR' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; +} +'Cloud ice' = { + table2Version = 203 ; + indicatorOfParameter = 104 ; +} +'Cloud condensate' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; +} +'Large scale snow accumulation in kg/m2' = { + table2Version = 203 ; + indicatorOfParameter = 106 ; +} +'Convective snow accumulation in kg/m2' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; +} +'Large scale snowfall rate in mm/h' = { + table2Version = 203 ; + indicatorOfParameter = 108 ; +} +'Convective snowfall rate in mm/h' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; +} +'Snowfall rate in mm/s or mm/h' = { + table2Version = 203 ; + indicatorOfParameter = 110 ; +} +'Temperature in cluster 1 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; +} +'Temperature in cluster 2 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; +} +'Temperature in cluster 3 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; +} +'Temperature in cluster 4 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; +} +'Temperature in cluster 5 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; +} +'Temperature in cluster 6 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; +} +'Geopotential in cluster 1 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; +} +'Geopotential in cluster 2 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; +} +'Geopotential in cluster 3 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; +} +'Geopotential in cluster 4 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 120 ; +} +'Geopotential in cluster 5 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 121 ; +} +'Geopotential in cluster 6 of EPS' = { + table2Version = 203 ; + indicatorOfParameter = 122 ; +} +'Net long wave radiation, top of athmosphere' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; +} +'Net short wave radiation' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; +} +'Equivalent potential temperature in K' = { + table2Version = 203 ; + indicatorOfParameter = 129 ; +} +'Absolute humidity, kg/m^3' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; +} +'Probability of big negative temperature anomaly (-8 K) in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; +} +'Probability of moderate negative temperature anomaly (-4 K) in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; +} +'Probability of moderate positive temperature anomaly (+4 K) in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; +} +'Probability of big positive temperature anomaly (+8 K) in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 134 ; +} +'Probability of reaching precipitation of 1 mm in 24 hours in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 141 ; +} +'Probability of reaching precipitation of 5 mm in 24 hours in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 142 ; +} +'Probability of reaching precipitation of 10 mm in 24 hours in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 143 ; +} +'Probability of reaching precipitation of 20 mm in 24 hours in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 144 ; +} +'Wind shear in knots' = { + table2Version = 203 ; + indicatorOfParameter = 145 ; +} +'Wind shear at 1km in knots' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; +} +'Storm relative helicity' = { + table2Version = 203 ; + indicatorOfParameter = 147 ; +} +'Storm relative helicity, 0 .. 1 km' = { + table2Version = 203 ; + indicatorOfParameter = 148 ; +} +'Wind speed at 1500 meters in m/s' = { + table2Version = 203 ; + indicatorOfParameter = 149 ; +} +'Equivalent potential temperature from range 0 ..3km in C' = { + table2Version = 203 ; + indicatorOfParameter = 150 ; +} +'Probability of reaching wind speed of 10 m/s in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 151 ; +} +'Probability of reaching wind speed of 15 m/s in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 152 ; +} +'Probability of reaching wind gust speed of 15 m/s in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 153 ; +} +'Probability of reaching wind gust speed of 20 m/s in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; +} +'Probability of reaching wind gust speed of 25 m/s in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 155 ; +} +'Extreme forecast index for wind speed' = { + table2Version = 203 ; + indicatorOfParameter = 156 ; +} +'Extreme forecast index for temperature' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; +} +'Extreme forecast index for wind gusts' = { + table2Version = 203 ; + indicatorOfParameter = 158 ; +} +'Extreme forecast index for precipitation' = { + table2Version = 203 ; + indicatorOfParameter = 159 ; +} +'Probability of snow' = { + table2Version = 203 ; + indicatorOfParameter = 161 ; +} +'Inverse of Monin-Obukhov length, i.e. 1/L in m-1' = { + table2Version = 203 ; + indicatorOfParameter = 163 ; +} +'Surface Roughness (momentum) in meters' = { + table2Version = 203 ; + indicatorOfParameter = 164 ; +} +'Instant rain in kg/m2' = { + table2Version = 203 ; + indicatorOfParameter = 165 ; +} +'Instant solid precipitation (snow+graupel) in kg/m2' = { + table2Version = 203 ; + indicatorOfParameter = 166 ; +} +'Mixed layer height in m' = { + table2Version = 203 ; + indicatorOfParameter = 167 ; +} +'Showalter index' = { + table2Version = 203 ; + indicatorOfParameter = 168 ; +} +'Lifted index' = { + table2Version = 203 ; + indicatorOfParameter = 169 ; +} +'Cross totals index' = { + table2Version = 203 ; + indicatorOfParameter = 170 ; +} +'Vertical totals index' = { + table2Version = 203 ; + indicatorOfParameter = 171 ; +} +'Total totals index' = { + table2Version = 203 ; + indicatorOfParameter = 172 ; +} +'0th fractal (ie. minimum) temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 173 ; +} +'10th fractal temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 174 ; +} +'25th fractal temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 175 ; +} +'50th fractal temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 176 ; +} +'75th fractal temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 177 ; +} +'90th fractal temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 178 ; +} +'100th fractal (ie. maximum) temperature in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 179 ; +} +'Height of LCL in hPa, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 180 ; +} +'Height of LFC in hPa, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; +} +'Height of EL in hPa, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; +} +'Surface Roughness in Meters' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; +} +'Height of LCL in meters, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; +} +'Height of LFC in meters, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 185 ; +} +'Soil Moisture Content in Kg per square meter' = { + table2Version = 203 ; + indicatorOfParameter = 186 ; +} +'0th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 187 ; +} +'10th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 188 ; +} +'25th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 189 ; +} +'50th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 190 ; +} +'75th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; +} +'90th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; +} +'100th fractal precipitation in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; +} +'Height of EL in meters, source data is found from most unstable level' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; +} +'Convective available potential energy, source data is most unstable' = { + table2Version = 203 ; + indicatorOfParameter = 195 ; +} +'UV index maximum' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; +} +'UV index' = { + table2Version = 203 ; + indicatorOfParameter = 197 ; +} +'Ozone anomaly' = { + table2Version = 203 ; + indicatorOfParameter = 198 ; +} +'Convective inhibition, source data is most unstable' = { + table2Version = 203 ; + indicatorOfParameter = 199 ; +} +'Canopy water' = { + table2Version = 203 ; + indicatorOfParameter = 200 ; +} +'Latent heat flux' = { + table2Version = 203 ; + indicatorOfParameter = 201 ; +} +'Sensible heat flux' = { + table2Version = 203 ; + indicatorOfParameter = 202 ; +} +'Scalar momentum flux in Pa' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; +} +'CAPE, source data is most unstable, value of CAPE between 0 .. 3km' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; +} +'CAPE, source data is most unstable, value of parameter when -40C < T < -10C' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; +} +'FMIWEATHERSYMBOL1' = { + table2Version = 203 ; + indicatorOfParameter = 206 ; +} +'Soil type' = { + table2Version = 203 ; + indicatorOfParameter = 207 ; +} +'Kinetic energy of turbulence in J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 208 ; +} +'U-component of momentum flux in N m-2' = { + table2Version = 203 ; + indicatorOfParameter = 209 ; +} +'V-component of momentum flux in N m-2' = { + table2Version = 203 ; + indicatorOfParameter = 210 ; +} +'Vegetation type' = { + table2Version = 203 ; + indicatorOfParameter = 211 ; +} +'Graupel rate in mm/h' = { + table2Version = 203 ; + indicatorOfParameter = 212 ; +} +'Solid precipitation rate (f.ex. snow+graupel)' = { + table2Version = 203 ; + indicatorOfParameter = 213 ; +} +'0th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 214 ; +} +'10th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 215 ; +} +'25th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 216 ; +} +'50th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 217 ; +} +'75th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 218 ; +} +'90th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 219 ; +} +'100th fractal cloudiness in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 220 ; +} +'0th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 221 ; +} +'10th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 222 ; +} +'25th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 223 ; +} +'50th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 224 ; +} +'75th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 225 ; +} +'90th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 226 ; +} +'100th fractal wind gust speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 227 ; +} +'0th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 228 ; +} +'10th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 229 ; +} +'25th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 230 ; +} +'50th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 231 ; +} +'75th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 232 ; +} +'90th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 233 ; +} +'100th fractal wind speed in EPS' = { + table2Version = 203 ; + indicatorOfParameter = 234 ; +} +'Height of LCL in hPa' = { + table2Version = 203 ; + indicatorOfParameter = 235 ; +} +'Height of LFC in hPa' = { + table2Version = 203 ; + indicatorOfParameter = 236 ; +} +'Height of EL in hPa' = { + table2Version = 203 ; + indicatorOfParameter = 237 ; +} +'Height of LCL in meters' = { + table2Version = 203 ; + indicatorOfParameter = 238 ; +} +'Height of LFC in meters' = { + table2Version = 203 ; + indicatorOfParameter = 239 ; +} +'Height of EL in meters' = { + table2Version = 203 ; + indicatorOfParameter = 240 ; +} +'Convective available potential energy' = { + table2Version = 203 ; + indicatorOfParameter = 241 ; +} +'Convective available potential energy, source data is LCL-500 and EL-500' = { + table2Version = 203 ; + indicatorOfParameter = 242 ; +} +'Convective available potential energy, value of parameter when -40C < T < -10C' = { + table2Version = 203 ; + indicatorOfParameter = 243 ; +} +'Convective inhibition (cin)' = { + table2Version = 203 ; + indicatorOfParameter = 244 ; +} +'Height of LCL in hPa, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 245 ; +} +'Height of LFC in hPa, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 246 ; +} +'Height of EL in hPa, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 247 ; +} +'Height of LCL in meters, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 248 ; +} +'Height of LFC in meters, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 249 ; +} +'Height of EL in meters, source data is averaged between 0 .. 500m' = { + table2Version = 203 ; + indicatorOfParameter = 250 ; +} +'Convective available potential energy, value of CAPE between 0 .. 3km' = { + table2Version = 203 ; + indicatorOfParameter = 251 ; +} +'CAPE, source data is LFC-500 and EL-500, value of CAPE between 0 .. 3km' = { + table2Version = 203 ; + indicatorOfParameter = 252 ; +} +'CAPE, source data is LFC-500 and EL-500, value of CAPE when -40C < T < -10C' = { + table2Version = 203 ; + indicatorOfParameter = 253 ; +} +'Convective inhibition, source data is LFC-500 and EL-500' = { + table2Version = 203 ; + indicatorOfParameter = 254 ; +} +'Precipitation form, duplicate parameter for HIMAN purposes' = { + table2Version = 203 ; + indicatorOfParameter = 255 ; +} +'Sea Temperature in Celsius' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; +} +'Ice concentration' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; +} +'Ice thickness' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; +} +'Ice minimum thickness' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; +} +'Ice maximum thickness' = { + table2Version = 205 ; + indicatorOfParameter = 5 ; +} +'Ice degree of ridging' = { + table2Version = 205 ; + indicatorOfParameter = 6 ; +} +'Sea ice velocity (U) in m/s' = { + table2Version = 205 ; + indicatorOfParameter = 7 ; +} +'Sea ice velocity (V) in m/s' = { + table2Version = 205 ; + indicatorOfParameter = 8 ; +} +'Ice mean thickness' = { + table2Version = 205 ; + indicatorOfParameter = 9 ; +} +'Ice concentration of ridging' = { + table2Version = 205 ; + indicatorOfParameter = 10 ; +} +'Rafted sea ice mean thickness' = { + table2Version = 205 ; + indicatorOfParameter = 11 ; +} +'Rafted sea ice concentration' = { + table2Version = 205 ; + indicatorOfParameter = 12 ; +} +'Ice Direction in Degrees' = { + table2Version = 205 ; + indicatorOfParameter = 13 ; +} +'Ice speed in m/s' = { + table2Version = 205 ; + indicatorOfParameter = 14 ; +} +'Pressure in Pascals' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; +} +'Pressure in Pascals' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; +} +'Geopotential' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; +} +'Height of level in meters' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; +} +'Temperature in Kelvins' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; +} +'Potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; +} +'Maximum Temperature in Celsius' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; +} +'Minimum Temperature in Celsius' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; +} +'Dew point Temperature in K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; +} +'Visibility in Meters' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; +} +'U wind in m/s' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; +} +'V wind in m/s' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; +} +'Vertical Velocity in pa/s' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; +} +'Vertical Velocity in m/s' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; +} +'Absolute Vorticity in HZ' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; +} +'Specific Humidity in kg/kg' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; +} +'Relative Humidity in percents' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; +} +'Precipitable water in mm' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; +} +'Evaporation in mm' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; +} +'Cloud ice' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; +} +'Total precipitation in kg/m2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; +} +'Snow Depth in Meters' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; +} +'Mixed layer height in m' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; +} +'Cloudiness 0...1' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; +} +'Low Cloud Amount' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; +} +'Medium Cloud Amount' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; +} +'High Cloud Amount' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; +} +'Cloud water' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; +} +'Land Cover, 1=land, 0=sea' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; +} +'Surface Roughness in Meters' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; +} +'ALBEDO 0 to 1' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; +} +'Soil Moisture Content in Kg per square meter' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; +} +'Ice Cover, 1=ice, 0=no ice' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; +} +'Mean wave direction at spectral peak in degrees' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; +} +'Significant wave height in m' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; +} +'Peak wave period in s' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; +} +'Net short wave radiation accumulation' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; +} +'Net long wave radiation accumulation' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; +} +'Net short wave radiation, top of athmosphere' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'Net short wave radiation accumulation, top of atmosphere' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'Net long wave radiation, top of athmosphere' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'Net long wave radiation accumulation, top of atmosphere' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'Long wave radiation accumulation' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; +} +'Global radiation accumulation' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; +} +'Latent heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; +} +'Sensible heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; +} +'U-component of momentum flux in N m-2' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; +} +'V-component of momentum flux in N m-2' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; +} +'Icing warning index, values between 0 ... 4' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; +} +'Precipitation type' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; +} +'Convective available potential energy' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; +} +'U-component of wind gust' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; +} +'V-component of wind gust' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; +} +'Instant rain in kg/m2' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; +} +'Snowfall accumulation in mm' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'Instant snowfall rate in mm/s or mm/h' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'Solid precipitation (f.ex. snow+graupel)' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; +} +'Cloud base height' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; +} +'Height of cloud top' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; +} +'Kinetic energy of turbulence in J kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; +} +'Graupel precipitation in kg/m2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'Instant graupel in kg/m2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'Total hail precipitation in kg/m2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; +} +'Multiplicity Of The Flash, Number' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; +} +'Clutter corrected ceflectivity' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; +} +'Instantaneous Wind Speed in m/s' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/efkl/paramId.def b/eccodes/definitions/grib1/localConcepts/efkl/paramId.def new file mode 100644 index 00000000..53e6b4e0 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/efkl/paramId.def @@ -0,0 +1,801 @@ +# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi +'1' = { + table2Version = 203 ; + indicatorOfParameter = 1 ; +} +'2' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; +} +'3' = { + table2Version = 203 ; + indicatorOfParameter = 3 ; +} +'4' = { + table2Version = 203 ; + indicatorOfParameter = 4 ; +} +'8' = { + table2Version = 203 ; + indicatorOfParameter = 8 ; +} +'9' = { + table2Version = 203 ; + indicatorOfParameter = 9 ; +} +'10' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; +} +'12' = { + table2Version = 203 ; + indicatorOfParameter = 12 ; +} +'13' = { + table2Version = 203 ; + indicatorOfParameter = 13 ; +} +'15' = { + table2Version = 203 ; + indicatorOfParameter = 15 ; +} +'18' = { + table2Version = 203 ; + indicatorOfParameter = 18 ; +} +'19' = { + table2Version = 203 ; + indicatorOfParameter = 19 ; +} +'20' = { + table2Version = 203 ; + indicatorOfParameter = 20 ; +} +'21' = { + table2Version = 203 ; + indicatorOfParameter = 21 ; +} +'22' = { + table2Version = 203 ; + indicatorOfParameter = 22 ; +} +'23' = { + table2Version = 203 ; + indicatorOfParameter = 23 ; +} +'24' = { + table2Version = 203 ; + indicatorOfParameter = 24 ; +} +'27' = { + table2Version = 203 ; + indicatorOfParameter = 27 ; +} +'28' = { + table2Version = 203 ; + indicatorOfParameter = 28 ; +} +'31' = { + table2Version = 203 ; + indicatorOfParameter = 31 ; +} +'38' = { + table2Version = 203 ; + indicatorOfParameter = 38 ; +} +'39' = { + table2Version = 203 ; + indicatorOfParameter = 39 ; +} +'40' = { + table2Version = 203 ; + indicatorOfParameter = 40 ; +} +'43' = { + table2Version = 203 ; + indicatorOfParameter = 43 ; +} +'44' = { + table2Version = 203 ; + indicatorOfParameter = 44 ; +} +'47' = { + table2Version = 203 ; + indicatorOfParameter = 47 ; +} +'50' = { + table2Version = 203 ; + indicatorOfParameter = 50 ; +} +'51' = { + table2Version = 203 ; + indicatorOfParameter = 51 ; +} +'52' = { + table2Version = 203 ; + indicatorOfParameter = 52 ; +} +'53' = { + table2Version = 203 ; + indicatorOfParameter = 53 ; +} +'54' = { + table2Version = 203 ; + indicatorOfParameter = 54 ; +} +'55' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; +} +'56' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; +} +'57' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; +} +'58' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; +} +'59' = { + table2Version = 203 ; + indicatorOfParameter = 59 ; +} +'60' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; +} +'62' = { + table2Version = 203 ; + indicatorOfParameter = 62 ; +} +'63' = { + table2Version = 203 ; + indicatorOfParameter = 63 ; +} +'68' = { + table2Version = 203 ; + indicatorOfParameter = 68 ; +} +'69' = { + table2Version = 203 ; + indicatorOfParameter = 69 ; +} +'70' = { + table2Version = 203 ; + indicatorOfParameter = 70 ; +} +'71' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; +} +'72' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; +} +'73' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; +} +'74' = { + table2Version = 203 ; + indicatorOfParameter = 74 ; +} +'75' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; +} +'77' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; +} +'78' = { + table2Version = 203 ; + indicatorOfParameter = 78 ; +} +'79' = { + table2Version = 203 ; + indicatorOfParameter = 79 ; +} +'80' = { + table2Version = 203 ; + indicatorOfParameter = 80 ; +} +'89' = { + table2Version = 203 ; + indicatorOfParameter = 89 ; +} +'91' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; +} +'95' = { + table2Version = 203 ; + indicatorOfParameter = 95 ; +} +'96' = { + table2Version = 203 ; + indicatorOfParameter = 96 ; +} +'99' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; +} +'100' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; +} +'101' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; +} +'102' = { + table2Version = 203 ; + indicatorOfParameter = 102 ; +} +'103' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; +} +'104' = { + table2Version = 203 ; + indicatorOfParameter = 104 ; +} +'105' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; +} +'106' = { + table2Version = 203 ; + indicatorOfParameter = 106 ; +} +'107' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; +} +'108' = { + table2Version = 203 ; + indicatorOfParameter = 108 ; +} +'109' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; +} +'110' = { + table2Version = 203 ; + indicatorOfParameter = 110 ; +} +'111' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; +} +'112' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; +} +'113' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; +} +'114' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; +} +'115' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; +} +'116' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; +} +'117' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; +} +'118' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; +} +'119' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; +} +'120' = { + table2Version = 203 ; + indicatorOfParameter = 120 ; +} +'121' = { + table2Version = 203 ; + indicatorOfParameter = 121 ; +} +'122' = { + table2Version = 203 ; + indicatorOfParameter = 122 ; +} +'126' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; +} +'128' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; +} +'129' = { + table2Version = 203 ; + indicatorOfParameter = 129 ; +} +'130' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; +} +'131' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; +} +'132' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; +} +'133' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; +} +'134' = { + table2Version = 203 ; + indicatorOfParameter = 134 ; +} +'141' = { + table2Version = 203 ; + indicatorOfParameter = 141 ; +} +'142' = { + table2Version = 203 ; + indicatorOfParameter = 142 ; +} +'143' = { + table2Version = 203 ; + indicatorOfParameter = 143 ; +} +'144' = { + table2Version = 203 ; + indicatorOfParameter = 144 ; +} +'145' = { + table2Version = 203 ; + indicatorOfParameter = 145 ; +} +'146' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; +} +'147' = { + table2Version = 203 ; + indicatorOfParameter = 147 ; +} +'148' = { + table2Version = 203 ; + indicatorOfParameter = 148 ; +} +'149' = { + table2Version = 203 ; + indicatorOfParameter = 149 ; +} +'150' = { + table2Version = 203 ; + indicatorOfParameter = 150 ; +} +'151' = { + table2Version = 203 ; + indicatorOfParameter = 151 ; +} +'152' = { + table2Version = 203 ; + indicatorOfParameter = 152 ; +} +'153' = { + table2Version = 203 ; + indicatorOfParameter = 153 ; +} +'154' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; +} +'155' = { + table2Version = 203 ; + indicatorOfParameter = 155 ; +} +'156' = { + table2Version = 203 ; + indicatorOfParameter = 156 ; +} +'157' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; +} +'158' = { + table2Version = 203 ; + indicatorOfParameter = 158 ; +} +'159' = { + table2Version = 203 ; + indicatorOfParameter = 159 ; +} +'161' = { + table2Version = 203 ; + indicatorOfParameter = 161 ; +} +'163' = { + table2Version = 203 ; + indicatorOfParameter = 163 ; +} +'164' = { + table2Version = 203 ; + indicatorOfParameter = 164 ; +} +'165' = { + table2Version = 203 ; + indicatorOfParameter = 165 ; +} +'166' = { + table2Version = 203 ; + indicatorOfParameter = 166 ; +} +'167' = { + table2Version = 203 ; + indicatorOfParameter = 167 ; +} +'168' = { + table2Version = 203 ; + indicatorOfParameter = 168 ; +} +'169' = { + table2Version = 203 ; + indicatorOfParameter = 169 ; +} +'170' = { + table2Version = 203 ; + indicatorOfParameter = 170 ; +} +'171' = { + table2Version = 203 ; + indicatorOfParameter = 171 ; +} +'172' = { + table2Version = 203 ; + indicatorOfParameter = 172 ; +} +'173' = { + table2Version = 203 ; + indicatorOfParameter = 173 ; +} +'174' = { + table2Version = 203 ; + indicatorOfParameter = 174 ; +} +'175' = { + table2Version = 203 ; + indicatorOfParameter = 175 ; +} +'176' = { + table2Version = 203 ; + indicatorOfParameter = 176 ; +} +'177' = { + table2Version = 203 ; + indicatorOfParameter = 177 ; +} +'178' = { + table2Version = 203 ; + indicatorOfParameter = 178 ; +} +'179' = { + table2Version = 203 ; + indicatorOfParameter = 179 ; +} +'180' = { + table2Version = 203 ; + indicatorOfParameter = 180 ; +} +'181' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; +} +'182' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; +} +'183' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; +} +'184' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; +} +'185' = { + table2Version = 203 ; + indicatorOfParameter = 185 ; +} +'186' = { + table2Version = 203 ; + indicatorOfParameter = 186 ; +} +'187' = { + table2Version = 203 ; + indicatorOfParameter = 187 ; +} +'188' = { + table2Version = 203 ; + indicatorOfParameter = 188 ; +} +'189' = { + table2Version = 203 ; + indicatorOfParameter = 189 ; +} +'190' = { + table2Version = 203 ; + indicatorOfParameter = 190 ; +} +'191' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; +} +'192' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; +} +'193' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; +} +'194' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; +} +'195' = { + table2Version = 203 ; + indicatorOfParameter = 195 ; +} +'196' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; +} +'197' = { + table2Version = 203 ; + indicatorOfParameter = 197 ; +} +'198' = { + table2Version = 203 ; + indicatorOfParameter = 198 ; +} +'199' = { + table2Version = 203 ; + indicatorOfParameter = 199 ; +} +'200' = { + table2Version = 203 ; + indicatorOfParameter = 200 ; +} +'201' = { + table2Version = 203 ; + indicatorOfParameter = 201 ; +} +'202' = { + table2Version = 203 ; + indicatorOfParameter = 202 ; +} +'203' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; +} +'204' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; +} +'205' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; +} +'206' = { + table2Version = 203 ; + indicatorOfParameter = 206 ; +} +'207' = { + table2Version = 203 ; + indicatorOfParameter = 207 ; +} +'208' = { + table2Version = 203 ; + indicatorOfParameter = 208 ; +} +'209' = { + table2Version = 203 ; + indicatorOfParameter = 209 ; +} +'210' = { + table2Version = 203 ; + indicatorOfParameter = 210 ; +} +'211' = { + table2Version = 203 ; + indicatorOfParameter = 211 ; +} +'212' = { + table2Version = 203 ; + indicatorOfParameter = 212 ; +} +'213' = { + table2Version = 203 ; + indicatorOfParameter = 213 ; +} +'214' = { + table2Version = 203 ; + indicatorOfParameter = 214 ; +} +'215' = { + table2Version = 203 ; + indicatorOfParameter = 215 ; +} +'216' = { + table2Version = 203 ; + indicatorOfParameter = 216 ; +} +'217' = { + table2Version = 203 ; + indicatorOfParameter = 217 ; +} +'218' = { + table2Version = 203 ; + indicatorOfParameter = 218 ; +} +'219' = { + table2Version = 203 ; + indicatorOfParameter = 219 ; +} +'220' = { + table2Version = 203 ; + indicatorOfParameter = 220 ; +} +'221' = { + table2Version = 203 ; + indicatorOfParameter = 221 ; +} +'222' = { + table2Version = 203 ; + indicatorOfParameter = 222 ; +} +'223' = { + table2Version = 203 ; + indicatorOfParameter = 223 ; +} +'224' = { + table2Version = 203 ; + indicatorOfParameter = 224 ; +} +'225' = { + table2Version = 203 ; + indicatorOfParameter = 225 ; +} +'226' = { + table2Version = 203 ; + indicatorOfParameter = 226 ; +} +'227' = { + table2Version = 203 ; + indicatorOfParameter = 227 ; +} +'228' = { + table2Version = 203 ; + indicatorOfParameter = 228 ; +} +'229' = { + table2Version = 203 ; + indicatorOfParameter = 229 ; +} +'230' = { + table2Version = 203 ; + indicatorOfParameter = 230 ; +} +'231' = { + table2Version = 203 ; + indicatorOfParameter = 231 ; +} +'232' = { + table2Version = 203 ; + indicatorOfParameter = 232 ; +} +'233' = { + table2Version = 203 ; + indicatorOfParameter = 233 ; +} +'234' = { + table2Version = 203 ; + indicatorOfParameter = 234 ; +} +'235' = { + table2Version = 203 ; + indicatorOfParameter = 235 ; +} +'236' = { + table2Version = 203 ; + indicatorOfParameter = 236 ; +} +'237' = { + table2Version = 203 ; + indicatorOfParameter = 237 ; +} +'238' = { + table2Version = 203 ; + indicatorOfParameter = 238 ; +} +'239' = { + table2Version = 203 ; + indicatorOfParameter = 239 ; +} +'240' = { + table2Version = 203 ; + indicatorOfParameter = 240 ; +} +'241' = { + table2Version = 203 ; + indicatorOfParameter = 241 ; +} +'242' = { + table2Version = 203 ; + indicatorOfParameter = 242 ; +} +'243' = { + table2Version = 203 ; + indicatorOfParameter = 243 ; +} +'244' = { + table2Version = 203 ; + indicatorOfParameter = 244 ; +} +'245' = { + table2Version = 203 ; + indicatorOfParameter = 245 ; +} +'246' = { + table2Version = 203 ; + indicatorOfParameter = 246 ; +} +'247' = { + table2Version = 203 ; + indicatorOfParameter = 247 ; +} +'248' = { + table2Version = 203 ; + indicatorOfParameter = 248 ; +} +'249' = { + table2Version = 203 ; + indicatorOfParameter = 249 ; +} +'250' = { + table2Version = 203 ; + indicatorOfParameter = 250 ; +} +'251' = { + table2Version = 203 ; + indicatorOfParameter = 251 ; +} +'252' = { + table2Version = 203 ; + indicatorOfParameter = 252 ; +} +'253' = { + table2Version = 203 ; + indicatorOfParameter = 253 ; +} +'254' = { + table2Version = 203 ; + indicatorOfParameter = 254 ; +} +'255' = { + table2Version = 203 ; + indicatorOfParameter = 255 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/efkl/shortName.def b/eccodes/definitions/grib1/localConcepts/efkl/shortName.def new file mode 100644 index 00000000..727ee660 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/efkl/shortName.def @@ -0,0 +1,1121 @@ +# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi +'P-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 1 ; +} +'Z-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; +} +'HL-M' = { + table2Version = 203 ; + indicatorOfParameter = 3 ; +} +'T-C' = { + table2Version = 203 ; + indicatorOfParameter = 4 ; +} +'TP-K' = { + table2Version = 203 ; + indicatorOfParameter = 8 ; +} +'TPW-K' = { + table2Version = 203 ; + indicatorOfParameter = 9 ; +} +'TD-C' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; +} +'Q-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 12 ; +} +'RH-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 13 ; +} +'CLDSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 15 ; +} +'FRNTSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 18 ; +} +'FOGSYM-N' = { + table2Version = 203 ; + indicatorOfParameter = 19 ; +} +'DD-D' = { + table2Version = 203 ; + indicatorOfParameter = 20 ; +} +'FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 21 ; +} +'DF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 22 ; +} +'U-MS' = { + table2Version = 203 ; + indicatorOfParameter = 23 ; +} +'V-MS' = { + table2Version = 203 ; + indicatorOfParameter = 24 ; +} +'FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 27 ; +} +'HM20C-M' = { + table2Version = 203 ; + indicatorOfParameter = 28 ; +} +'ABSVO-HZ-5' = { + table2Version = 203 ; + indicatorOfParameter = 31 ; +} +'AQI-N' = { + table2Version = 203 ; + indicatorOfParameter = 38 ; +} +'FF10-MS' = { + table2Version = 203 ; + indicatorOfParameter = 39 ; +} +'VV-PAS' = { + table2Version = 203 ; + indicatorOfParameter = 40 ; +} +'VV-MMS' = { + table2Version = 203 ; + indicatorOfParameter = 43 ; +} +'VV-MS' = { + table2Version = 203 ; + indicatorOfParameter = 44 ; +} +'PRCWAT-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 47 ; +} +'RR-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 50 ; +} +'SD-M' = { + table2Version = 203 ; + indicatorOfParameter = 51 ; +} +'HSADE1-N' = { + table2Version = 203 ; + indicatorOfParameter = 52 ; +} +'HSADE2-N' = { + table2Version = 203 ; + indicatorOfParameter = 53 ; +} +'RR-6-MM' = { + table2Version = 203 ; + indicatorOfParameter = 54 ; +} +'RR-12-MM' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; +} +'RR-1-MM' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; +} +'RR-2-MM' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; +} +'RR-3-MM' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; +} +'PRECFORM-N' = { + table2Version = 203 ; + indicatorOfParameter = 59 ; +} +'SMOGI-N' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; +} +'RRL-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 62 ; +} +'RRC-MM10' = { + table2Version = 203 ; + indicatorOfParameter = 63 ; +} +'SNACC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 68 ; +} +'RNETLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 69 ; +} +'H0C-M' = { + table2Version = 203 ; + indicatorOfParameter = 70 ; +} +'RRR-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; +} +'RRRC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; +} +'RRRL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; +} +'LNSP-N' = { + table2Version = 203 ; + indicatorOfParameter = 74 ; +} +'TG-K' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; +} +'LSSN-M100' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; +} +'CLDWAT-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 78 ; +} +'N-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 79 ; +} +'KINDEX-N' = { + table2Version = 203 ; + indicatorOfParameter = 80 ; +} +'ALBEDO' = { + table2Version = 203 ; + indicatorOfParameter = 89 ; +} +'HESSAA-N' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; +} +'RADLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 95 ; +} +'RADGLO-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 96 ; +} +'LC-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; +} +'IC-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; +} +'RHO-KGM3' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; +} +'SSICING-N' = { + table2Version = 203 ; + indicatorOfParameter = 102 ; +} +'ICING-N' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; +} +'CLDICE-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 104 ; +} +'CLDCND-KGKG' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; +} +'SNL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 106 ; +} +'SNC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; +} +'SNRL-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 108 ; +} +'SNRC-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; +} +'SNR-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 110 ; +} +'T-C1-C' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; +} +'T-C2-C' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; +} +'T-C3-C' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; +} +'T-C4-C' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; +} +'T-C5-C' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; +} +'T-C6-C' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; +} +'Z-C1-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; +} +'Z-C2-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; +} +'Z-C3-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; +} +'Z-C4-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 120 ; +} +'Z-C5-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 121 ; +} +'Z-C6-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 122 ; +} +'RTOPLW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; +} +'RNETSW-WM2' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; +} +'TPE-K' = { + table2Version = 203 ; + indicatorOfParameter = 129 ; +} +'ABSH-KGM3' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; +} +'PROB-T-1' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; +} +'PROB-T-2' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; +} +'PROB-T-3' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; +} +'PROB-T-4' = { + table2Version = 203 ; + indicatorOfParameter = 134 ; +} +'PROB-RR-1' = { + table2Version = 203 ; + indicatorOfParameter = 141 ; +} +'PROB-RR-2' = { + table2Version = 203 ; + indicatorOfParameter = 142 ; +} +'PROB-RR-3' = { + table2Version = 203 ; + indicatorOfParameter = 143 ; +} +'PROB-RR-4' = { + table2Version = 203 ; + indicatorOfParameter = 144 ; +} +'WSH-KT' = { + table2Version = 203 ; + indicatorOfParameter = 145 ; +} +'WSH-1-KT' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; +} +'HLCY-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 147 ; +} +'HLCY-1-M2S2' = { + table2Version = 203 ; + indicatorOfParameter = 148 ; +} +'FF1500-MS' = { + table2Version = 203 ; + indicatorOfParameter = 149 ; +} +'TPE3-C' = { + table2Version = 203 ; + indicatorOfParameter = 150 ; +} +'PROB-W-1' = { + table2Version = 203 ; + indicatorOfParameter = 151 ; +} +'PROB-W-2' = { + table2Version = 203 ; + indicatorOfParameter = 152 ; +} +'PROB-WG-1' = { + table2Version = 203 ; + indicatorOfParameter = 153 ; +} +'PROB-WG-2' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; +} +'PROB-WG-3' = { + table2Version = 203 ; + indicatorOfParameter = 155 ; +} +'EFI-WS' = { + table2Version = 203 ; + indicatorOfParameter = 156 ; +} +'EFI-T' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; +} +'EFI-WG' = { + table2Version = 203 ; + indicatorOfParameter = 158 ; +} +'EFI-RR' = { + table2Version = 203 ; + indicatorOfParameter = 159 ; +} +'PROBSN-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 161 ; +} +'MOL-M' = { + table2Version = 203 ; + indicatorOfParameter = 163 ; +} +'SRMOM-M' = { + table2Version = 203 ; + indicatorOfParameter = 164 ; +} +'RRI-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 165 ; +} +'RSI-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 166 ; +} +'MIXHGT-M' = { + table2Version = 203 ; + indicatorOfParameter = 167 ; +} +'SI-N' = { + table2Version = 203 ; + indicatorOfParameter = 168 ; +} +'LI-N' = { + table2Version = 203 ; + indicatorOfParameter = 169 ; +} +'CTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 170 ; +} +'VTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 171 ; +} +'TTI-N' = { + table2Version = 203 ; + indicatorOfParameter = 172 ; +} +'F0-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 173 ; +} +'F10-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 174 ; +} +'F25-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 175 ; +} +'F50-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 176 ; +} +'F75-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 177 ; +} +'F90-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 178 ; +} +'F100-T-K' = { + table2Version = 203 ; + indicatorOfParameter = 179 ; +} +'LCL-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 180 ; +} +'LFC-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; +} +'EL-MU-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; +} +'SR-M' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; +} +'LCL-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; +} +'LFC-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 185 ; +} +'SM-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 186 ; +} +'F0-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 187 ; +} +'F10-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 188 ; +} +'F25-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 189 ; +} +'F50-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 190 ; +} +'F75-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; +} +'F90-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; +} +'F100-RR-6' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; +} +'EL-MU-M' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; +} +'CAPE-MU-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 195 ; +} +'UVIMAX-N' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; +} +'UVI-N' = { + table2Version = 203 ; + indicatorOfParameter = 197 ; +} +'O3ANOM-PRCNT' = { + table2Version = 203 ; + indicatorOfParameter = 198 ; +} +'CIN-MU-N' = { + table2Version = 203 ; + indicatorOfParameter = 199 ; +} +'CANW-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 200 ; +} +'FLLAT-JM2' = { + table2Version = 203 ; + indicatorOfParameter = 201 ; +} +'FLSEN-JM2' = { + table2Version = 203 ; + indicatorOfParameter = 202 ; +} +'FLMOM-PA' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; +} +'CAPE-0-3-MU' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; +} +'CAPE1040-MU' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; +} +'ILSAA1-N' = { + table2Version = 203 ; + indicatorOfParameter = 206 ; +} +'SOILTY-N' = { + table2Version = 203 ; + indicatorOfParameter = 207 ; +} +'TKEN-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 208 ; +} +'UFLMOM-NM2' = { + table2Version = 203 ; + indicatorOfParameter = 209 ; +} +'VFLMOM-NM2' = { + table2Version = 203 ; + indicatorOfParameter = 210 ; +} +'VEGET-N' = { + table2Version = 203 ; + indicatorOfParameter = 211 ; +} +'GRR-MMH' = { + table2Version = 203 ; + indicatorOfParameter = 212 ; +} +'RRRS-KGM2' = { + table2Version = 203 ; + indicatorOfParameter = 213 ; +} +'F0-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 214 ; +} +'F10-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 215 ; +} +'F25-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 216 ; +} +'F50-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 217 ; +} +'F75-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 218 ; +} +'F90-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 219 ; +} +'F100-N-0TO1' = { + table2Version = 203 ; + indicatorOfParameter = 220 ; +} +'F0-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 221 ; +} +'F10-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 222 ; +} +'F25-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 223 ; +} +'F50-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 224 ; +} +'F75-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 225 ; +} +'F90-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 226 ; +} +'F100-FFG-MS' = { + table2Version = 203 ; + indicatorOfParameter = 227 ; +} +'F0-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 228 ; +} +'F10-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 229 ; +} +'F25-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 230 ; +} +'F50-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 231 ; +} +'F75-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 232 ; +} +'F90-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 233 ; +} +'F100-FF-MS' = { + table2Version = 203 ; + indicatorOfParameter = 234 ; +} +'LCL-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 235 ; +} +'LFC-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 236 ; +} +'EL-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 237 ; +} +'LCL-M' = { + table2Version = 203 ; + indicatorOfParameter = 238 ; +} +'LFC-M' = { + table2Version = 203 ; + indicatorOfParameter = 239 ; +} +'EL-M' = { + table2Version = 203 ; + indicatorOfParameter = 240 ; +} +'CAPE-JKG' = { + table2Version = 203 ; + indicatorOfParameter = 241 ; +} +'CAPE-500' = { + table2Version = 203 ; + indicatorOfParameter = 242 ; +} +'CAPE1040' = { + table2Version = 203 ; + indicatorOfParameter = 243 ; +} +'CIN-N' = { + table2Version = 203 ; + indicatorOfParameter = 244 ; +} +'LCL-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 245 ; +} +'LFC-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 246 ; +} +'EL-500-HPA' = { + table2Version = 203 ; + indicatorOfParameter = 247 ; +} +'LCL-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 248 ; +} +'LFC-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 249 ; +} +'EL-500-M' = { + table2Version = 203 ; + indicatorOfParameter = 250 ; +} +'CAPE-0-3' = { + table2Version = 203 ; + indicatorOfParameter = 251 ; +} +'CAPE-0-3-500' = { + table2Version = 203 ; + indicatorOfParameter = 252 ; +} +'CAPE1040-500' = { + table2Version = 203 ; + indicatorOfParameter = 253 ; +} +'CIN-500-N' = { + table2Version = 203 ; + indicatorOfParameter = 254 ; +} +'PRECFORM2-N' = { + table2Version = 203 ; + indicatorOfParameter = 255 ; +} +'TSEA-C' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; +} +'ICNCT-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; +} +'ITHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; +} +'IMINTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; +} +'IMAXTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 5 ; +} +'IRIDGE-CM' = { + table2Version = 205 ; + indicatorOfParameter = 6 ; +} +'IVELU-MS' = { + table2Version = 205 ; + indicatorOfParameter = 7 ; +} +'IVELV-MS' = { + table2Version = 205 ; + indicatorOfParameter = 8 ; +} +'IMEANTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 9 ; +} +'IRIDGC-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 10 ; +} +'IRAFTTHK-CM' = { + table2Version = 205 ; + indicatorOfParameter = 11 ; +} +'IRCNCT-PRCNT' = { + table2Version = 205 ; + indicatorOfParameter = 12 ; +} +'IDD-D' = { + table2Version = 205 ; + indicatorOfParameter = 13 ; +} +'IFF-MS' = { + table2Version = 205 ; + indicatorOfParameter = 14 ; +} +'P-PA' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; +} +'P-PA' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; +} +'Z-M2S2' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; +} +'HL-M' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; +} +'T-K' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; +} +'TP-K' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; +} +'TMAX-C' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; +} +'TMIN-C' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; +} +'TD-K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; +} +'VV-M' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; +} +'U-MS' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; +} +'V-MS' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; +} +'VV-PAS' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; +} +'VV-MS' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; +} +'ABSVO-HZ' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; +} +'Q-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; +} +'RH-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; +} +'PRCWAT-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; +} +'EVAP-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; +} +'CLDICE-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; +} +'RR-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; +} +'SD-M' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; +} +'MIXHGT-M' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; +} +'N-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; +} +'NL-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; +} +'NM-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; +} +'NH-PRCNT' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; +} +'CLDWAT-KGKG' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; +} +'LC-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; +} +'SR-M' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; +} +'ALBEDO' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; +} +'SM-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; +} +'IC-0TO1' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; +} +'DW-D' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; +} +'HWS-M' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; +} +'PWS-S' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; +} +'RNETSWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; +} +'RNETLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; +} +'RTOPSW-WM2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'RTOPSWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'RTOPLW-WM2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'RTOPLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'RADLWA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; +} +'RADGLOA-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; +} +'FLLAT-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; +} +'FLSEN-JM2' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; +} +'UFLMOM-NM2' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; +} +'VFLMOM-NM2' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; +} +'ICINGWARN-N' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; +} +'PRECTYPE-N' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; +} +'CAPE-JKG' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; +} +'WGU-MS' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; +} +'WGV-MS' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; +} +'RRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; +} +'SNACC-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'SNRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'RRS-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; +} +'CLDBASE-M' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; +} +'CLDTOP-M' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; +} +'TKEN-JKG' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; +} +'GR-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'GRI-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'RRH-KGM2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; +} +'FL-MPLTY-N' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; +} +'REFLTY-DBZ' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; +} +'FFG-MS' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/efkl/units.def b/eccodes/definitions/grib1/localConcepts/efkl/units.def new file mode 100644 index 00000000..e0114b96 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/efkl/units.def @@ -0,0 +1,1121 @@ +# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 1 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 2 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 3 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 4 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 8 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 9 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 10 ; +} +'kg kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 12 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 13 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 15 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 18 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 19 ; +} +'Deg' = { + table2Version = 203 ; + indicatorOfParameter = 20 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 21 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 22 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 23 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 24 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 27 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 28 ; +} +'s-1 10-5' = { + table2Version = 203 ; + indicatorOfParameter = 31 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 38 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 39 ; +} +'Pa/s' = { + table2Version = 203 ; + indicatorOfParameter = 40 ; +} +'mm s-1' = { + table2Version = 203 ; + indicatorOfParameter = 43 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 44 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 47 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 50 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 51 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 52 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 53 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 54 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 55 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 56 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 57 ; +} +'mm' = { + table2Version = 203 ; + indicatorOfParameter = 58 ; +} +'JustAnumber' = { + table2Version = 203 ; + indicatorOfParameter = 59 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 60 ; +} +'m 10-4' = { + table2Version = 203 ; + indicatorOfParameter = 62 ; +} +'m 10-4' = { + table2Version = 203 ; + indicatorOfParameter = 63 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 68 ; +} +'W m-2' = { + table2Version = 203 ; + indicatorOfParameter = 69 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 70 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 71 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 72 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 73 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 74 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 75 ; +} +'cm' = { + table2Version = 203 ; + indicatorOfParameter = 77 ; +} +'kg kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 78 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 79 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 80 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 89 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 91 ; +} +'W m-2' = { + table2Version = 203 ; + indicatorOfParameter = 95 ; +} +'W m-2' = { + table2Version = 203 ; + indicatorOfParameter = 96 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 99 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 100 ; +} +'kg m-3' = { + table2Version = 203 ; + indicatorOfParameter = 101 ; +} +'Code' = { + table2Version = 203 ; + indicatorOfParameter = 102 ; +} +'Code' = { + table2Version = 203 ; + indicatorOfParameter = 103 ; +} +'kg kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 104 ; +} +'kg kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 105 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 106 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 107 ; +} +'kg m-2 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 108 ; +} +'kg m-2 s-1' = { + table2Version = 203 ; + indicatorOfParameter = 109 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 110 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 111 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 112 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 113 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 114 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 115 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 116 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 117 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 118 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 119 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 120 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 121 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 122 ; +} +'W m-2' = { + table2Version = 203 ; + indicatorOfParameter = 126 ; +} +'W m-2' = { + table2Version = 203 ; + indicatorOfParameter = 128 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 129 ; +} +'kg m-3' = { + table2Version = 203 ; + indicatorOfParameter = 130 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 131 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 132 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 133 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 134 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 141 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 142 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 143 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 144 ; +} +'kt' = { + table2Version = 203 ; + indicatorOfParameter = 145 ; +} +'kt' = { + table2Version = 203 ; + indicatorOfParameter = 146 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 147 ; +} +'m2 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 148 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 149 ; +} +'C' = { + table2Version = 203 ; + indicatorOfParameter = 150 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 151 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 152 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 153 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 154 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 155 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 156 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 157 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 158 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 159 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 161 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 163 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 164 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 165 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 166 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 167 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 168 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 169 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 170 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 171 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 172 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 173 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 174 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 175 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 176 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 177 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 178 ; +} +'K' = { + table2Version = 203 ; + indicatorOfParameter = 179 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 180 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 181 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 182 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 183 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 184 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 185 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 186 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 187 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 188 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 189 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 190 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 191 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 192 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 193 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 194 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 195 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 196 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 197 ; +} +'%' = { + table2Version = 203 ; + indicatorOfParameter = 198 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 199 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 200 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 201 ; +} +'kg s-2' = { + table2Version = 203 ; + indicatorOfParameter = 202 ; +} +'kg m-1 s-2' = { + table2Version = 203 ; + indicatorOfParameter = 203 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 204 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 205 ; +} +'JustAnumber' = { + table2Version = 203 ; + indicatorOfParameter = 206 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 207 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 208 ; +} +'N m-2 s' = { + table2Version = 203 ; + indicatorOfParameter = 209 ; +} +'N m-2 s' = { + table2Version = 203 ; + indicatorOfParameter = 210 ; +} +'No Unit' = { + table2Version = 203 ; + indicatorOfParameter = 211 ; +} +'kg/m2/h' = { + table2Version = 203 ; + indicatorOfParameter = 212 ; +} +'kg m-2' = { + table2Version = 203 ; + indicatorOfParameter = 213 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 214 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 215 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 216 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 217 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 218 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 219 ; +} +'0to1' = { + table2Version = 203 ; + indicatorOfParameter = 220 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 221 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 222 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 223 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 224 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 225 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 226 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 227 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 228 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 229 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 230 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 231 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 232 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 233 ; +} +'m s-1' = { + table2Version = 203 ; + indicatorOfParameter = 234 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 235 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 236 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 237 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 238 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 239 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 240 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 241 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 242 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 243 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 244 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 245 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 246 ; +} +'hPa' = { + table2Version = 203 ; + indicatorOfParameter = 247 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 248 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 249 ; +} +'m' = { + table2Version = 203 ; + indicatorOfParameter = 250 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 251 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 252 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 253 ; +} +'J kg-1' = { + table2Version = 203 ; + indicatorOfParameter = 254 ; +} +'JustAnumber' = { + table2Version = 203 ; + indicatorOfParameter = 255 ; +} +'C' = { + table2Version = 205 ; + indicatorOfParameter = 1 ; +} +'%' = { + table2Version = 205 ; + indicatorOfParameter = 2 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 3 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 4 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 5 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 6 ; +} +'m s-1' = { + table2Version = 205 ; + indicatorOfParameter = 7 ; +} +'m s-1' = { + table2Version = 205 ; + indicatorOfParameter = 8 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 9 ; +} +'%' = { + table2Version = 205 ; + indicatorOfParameter = 10 ; +} +'cm' = { + table2Version = 205 ; + indicatorOfParameter = 11 ; +} +'%' = { + table2Version = 205 ; + indicatorOfParameter = 12 ; +} +'m s-1' = { + table2Version = 205 ; + indicatorOfParameter = 13 ; +} +'m s-1' = { + table2Version = 205 ; + indicatorOfParameter = 14 ; +} +'kg m-1 s-2' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; +} +'kg m-1 s-2' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; +} +'m2 s-2' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; +} +'K' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; +} +'K' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; +} +'C' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; +} +'C' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; +} +'K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; +} +'m s-1' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; +} +'m s-1' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; +} +'Pa/s' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; +} +'m s-1' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; +} +'s-1' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; +} +'kg kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; +} +'%' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; +} +'hPa s-1' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; +} +'kg kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; +} +'0to1' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; +} +'%' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; +} +'%' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; +} +'%' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; +} +'kg kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; +} +'0to1' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; +} +'%' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; +} +'0to1' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; +} +'Deg' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; +} +'s' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; +} +'W m-2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; +} +'W m-2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; +} +'J m-2' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; +} +'kg s-2' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; +} +'kg s-2' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; +} +'N m-2 s' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; +} +'N m-2 s' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; +} +'Code' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; +} +'JustAnumber' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; +} +'J kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; +} +'kg/m2/h' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'kg/m2/h' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; +} +'m' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; +} +'J kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'kg/m2/h' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; +} +'kg m-2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; +} +'JustAnumber' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; +} +'dBZ' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; +} +'m s-1' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/eidb/name.def b/eccodes/definitions/grib1/localConcepts/eidb/name.def new file mode 100644 index 00000000..08c43a54 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eidb/name.def @@ -0,0 +1,1840 @@ +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'Geopotential' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'Geopotential height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'Wind speed' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u-component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v-component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'Stream function' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'Montgomery stream function' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pressure Vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'Relative vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'Relative divergence' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'Evaporation' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'Cloud ice' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'Large scale precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'Water equivalent of accumulated snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'Snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'Cloud water' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'Water temperature' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'Land cover (1=land, 0=sea)' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'Albedo' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'Soil temperature' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'Vegetation' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'Salinity' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'Water run-off' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'Ice cover (1=land, 0=sea)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean Direction of wind waves +'Mean Direction of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'Mean direction of primary swell' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'Mean period of primary swell' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'Net short-wave radiation flux (atmosph.top)' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'Net long-wave radiation flux (atmosph.top)' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'Long-wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'Short-wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'Momentum flux' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Max wind speed (at 10m) +'Max wind speed (at 10m)' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Temperature over land +'Temperature over land' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'Specific humidity over land' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land Fraction +'Relative humidity over land Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land K +'Dew point over land K' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'Slope fraction' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'Shadow fraction' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter A +'Shadow parameter A' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter B +'Shadow parameter B' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Surface slope +'Surface slope' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'Sky wiew factor' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'Fraction of aspect' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'Snow density' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'Water on canopy level' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'Surface soil ice' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Soil type code +'Soil type code' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'Fraction of lake' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'Fraction of forest' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'Fraction of open land' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'Vegetation type (Olsson land use)' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Maximum slope of smallest scale orography +'Maximum slope of smallest scale orography' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'Standard deviation of smallest scale orography' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Max wind gust +'Max wind gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Pressure +'Pressure' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'Geopotential' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'Geopotential height' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Temperature +'Temperature' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 253 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 253 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 253 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 253 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'Wind speed' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u-component of wind' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v-component of wind' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#Stream function +'Stream function' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 253 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'Montgomery stream function' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pressure Vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'Relative vorticity' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'Relative divergence' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'Evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'Cloud ice' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'Large scale precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'Water equivalent of accumulated snow depth' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'Snow depth' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'Cloud water' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'Large scale snowfall' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'Water temperature' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'Land cover (1=land, 0=sea)' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Albedo +'Albedo' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'Soil temperature' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'Vegetation' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Salinity +'Salinity' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'Water run-off' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'Ice cover (1=land, 0=sea)' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'Mean direction of primary swell' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'Mean period of primary swell' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'Net short-wave radiation flux (atmosph.top)' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'Net long-wave radiation flux (atmosph.top)' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'Long-wave radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'Short-wave radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Analysed RMS of PHI (CANARI) +'Analysed RMS of PHI (CANARI)' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Forecast RMS of PHI (CANARI) +'Forecast RMS of PHI (CANARI)' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#SW net clear sky rad +'SW net clear sky rad' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#LW net clear sky rad +'LW net clear sky rad' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#Latent heat flux through evaporation +'Latent heat flux through evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Mask of significant cloud amount +'Mask of significant cloud amount' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Icing index +'Icing index' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'Pseudo satellite image: cloud top temperature (infrared)' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: water vapour Tb +'Pseudo satellite image: water vapour Tb' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'Pseudo satellite image: water vapour Tb + correction for clouds' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'Pseudo satellite image: cloud water reflectivity (visible)' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Direct normal irradiance +'Direct normal irradiance' = { + table2Version = 253 ; + indicatorOfParameter = 140 ; + } +#Precipitation Type +'Precipitation Type' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Surface downward moon radiation +'Surface downward moon radiation' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#CAPE out of the model +'CAPE out of the model' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#AROME hail diagnostic +'AROME hail diagnostic' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Gust, u-component +'Gust, u-component' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#Gust, v-component +'Gust, v-component' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#MOCON out of the model +'MOCON out of the model' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Total water vapour +'Total water vapour' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Brightness temperature OZ clear +'Brightness temperature OZ clear' = { + table2Version = 253 ; + indicatorOfParameter = 170 ; + } +#Brightness temperature OZ cloud +'Brightness temperature OZ cloud' = { + table2Version = 253 ; + indicatorOfParameter = 171 ; + } +#Brightness temperature IR clear +'Brightness temperature IR clear' = { + table2Version = 253 ; + indicatorOfParameter = 172 ; + } +#Brightness temperature IR cloud +'Brightness temperature IR cloud' = { + table2Version = 253 ; + indicatorOfParameter = 173 ; + } +#Brightness temperature WV clear +'Brightness temperature WV clear' = { + table2Version = 253 ; + indicatorOfParameter = 174 ; + } +#Brightness temperature WV cloud +'Brightness temperature WV cloud' = { + table2Version = 253 ; + indicatorOfParameter = 175 ; + } +#Rain +'Rain' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Stratiform rain +'Stratiform rain' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Convective rain +'Convective rain' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Snow +'Snow' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Total solid precipitation +'Total solid precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Cloud base +'Cloud base' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Cloud top +'Cloud top' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Fraction of urban land +'Fraction of urban land' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Snow density +'Snow density' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Water on canopy (Interception content) +'Water on canopy (Interception content)' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Soil ice +'Soil ice' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Gravity wave stress U-comp +'Gravity wave stress U-comp' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'Gravity wave stress V-comp' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#TKE +'TKE' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Graupel +'Graupel' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Hail +'Hail' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#Simulated reflectivity +'Simulated reflectivity' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Lightning +'Lightning' = { + table2Version = 253 ; + indicatorOfParameter = 211 ; + } +#Pressure departure +'Pressure departure' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Vertical Divergence +'Vertical Divergence' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Updraft omega +'Updraft omega' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#Downdraft omega +'Downdraft omega' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Updraft mesh fraction +'Updraft mesh fraction' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Downdraft mesh fraction +'Downdraft mesh fraction' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Surface albedo for non snow covered areas +'Surface albedo for non snow covered areas' = { + table2Version = 253 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of orography * g +'Standard deviation of orography * g' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Anisotropy coeff of topography +'Anisotropy coeff of topography' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Direction of main axis of topography +'Direction of main axis of topography' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Roughness length of bare surface * g +'Roughness length of bare surface * g' = { + table2Version = 253 ; + indicatorOfParameter = 223 ; + } +#Roughness length for vegetation * g +'Roughness length for vegetation * g' = { + table2Version = 253 ; + indicatorOfParameter = 224 ; + } +#Fraction of clay within soil +'Fraction of clay within soil' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#Fraction of sand within soil +'Fraction of sand within soil' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Maximum - of vegetation +'Maximum - of vegetation' = { + table2Version = 253 ; + indicatorOfParameter = 227 ; + } +#Gust +'Gust' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Albedo of bare ground +'Albedo of bare ground' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'Albedo of vegetation' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#Stomatal minimum resistance +'Stomatal minimum resistance' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Leaf area index +'Leaf area index' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Dominant vegetation index +'Dominant vegetation index' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Surface emissivity +'Surface emissivity' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Maximum soil depth +'Maximum soil depth' = { + table2Version = 253 ; + indicatorOfParameter = 236 ; + } +#Soil depth +'Soil depth' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Soil wetness +'Soil wetness' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Thermal roughness length * g +'Thermal roughness length * g' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } +#Resistance to evapotransiration +'Resistance to evapotransiration' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'Minimum relative moisture at 2 meters' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'Maximum relative moisture at 2 meters' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Duration of total precipitation +'Duration of total precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Latent Heat Sublimation +'Latent Heat Sublimation' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Water evaporation +'Water evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Snow Sublimation +'Snow Sublimation' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Snow history +'Snow history' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#A Ozone +'A Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#B Ozone +'B Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#C Ozone +'C Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Surface aerosol sea +'Surface aerosol sea' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Surface aerosol land +'Surface aerosol land' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol soot (carbon) +'Surface aerosol soot (carbon)' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'Surface aerosol desert' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Missing +'Missing' = { + table2Version = 253 ; + indicatorOfParameter = 255 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eidb/paramId.def b/eccodes/definitions/grib1/localConcepts/eidb/paramId.def new file mode 100644 index 00000000..1d7cc058 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eidb/paramId.def @@ -0,0 +1,1840 @@ +#Reserved +'233001000' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'233001001' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'233001002' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'233001003' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'233001004' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'233001005' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'233001006' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'233001007' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'233001008' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'233001009' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'233001010' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'233001011' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'233001012' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'233001013' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'233001014' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'233001015' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'233001016' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'233001017' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'233001018' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'233001019' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'233001020' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'233001021' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'233001022' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'233001023' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'233001024' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'233001025' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'233001026' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'233001027' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'233001028' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'233001029' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'233001030' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'233001031' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'233001032' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'233001033' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'233001034' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'233001035' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'233001036' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'233001037' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'233001038' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'233001039' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'233001040' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'233001041' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'233001042' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'233001043' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'233001044' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'233001045' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'233001046' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'233001047' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'233001048' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'233001049' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'233001050' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'233001051' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'233001052' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'233001053' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'233001054' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'233001055' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'233001056' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'233001057' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'233001058' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'233001059' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'233001060' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'233001061' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'233001062' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'233001063' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'233001064' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'233001065' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'233001066' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'233001067' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'233001068' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'233001069' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'233001070' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'233001071' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'233001072' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'233001073' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'233001074' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'233001075' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'233001076' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'233001077' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'233001078' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'233001079' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'233001080' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'233001081' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'233001082' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'233001083' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'233001084' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'233001085' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'233001086' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'233001087' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'233001088' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'233001089' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'233001090' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'233001091' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'233001092' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'233001093' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'233001094' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'233001095' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'233001096' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'233001097' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'233001098' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'233001099' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'233001100' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean Direction of wind waves +'233001101' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'233001102' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'233001103' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'233001104' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'233001105' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'233001106' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'233001107' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'233001108' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'233001109' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'233001110' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'233001111' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'233001112' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'233001113' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'233001114' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'233001115' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'233001116' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'233001117' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'233001118' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'233001119' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'233001120' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'233001121' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'233001122' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'233001123' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'233001124' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'233001125' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'233001126' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'233001127' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'233001128' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Max wind speed (at 10m) +'233001135' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Temperature over land +'233001140' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'233001141' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land Fraction +'233001142' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land K +'233001143' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'233001160' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'233001161' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter A +'233001162' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter B +'233001163' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Surface slope +'233001165' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'233001166' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'233001167' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Snow albedo +'233001190' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'233001191' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'233001192' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'233001193' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Soil type code +'233001195' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'233001196' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'233001197' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'233001198' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'233001199' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'233001200' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Maximum slope of smallest scale orography +'233001208' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'233001209' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Max wind gust +'233001228' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Pressure +'233253001' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'233253002' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'233253003' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'233253004' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'233253005' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'233253006' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'233253007' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'233253008' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'233253009' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'233253010' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Temperature +'233253011' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'233253012' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'233253013' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'233253014' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'233253015' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'233253016' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'233253017' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'233253018' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'233253019' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Visibility +'233253020' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'233253021' = { + table2Version = 253 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'233253022' = { + table2Version = 253 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'233253023' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'233253024' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'233253025' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'233253026' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'233253027' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'233253028' = { + table2Version = 253 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'233253029' = { + table2Version = 253 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'233253030' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'233253031' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'233253032' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'233253033' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'233253034' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#Stream function +'233253035' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'233253036' = { + table2Version = 253 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'233253037' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'233253038' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'233253039' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'233253040' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'233253041' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'233253042' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'233253043' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'233253044' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'233253045' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'233253046' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'233253047' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'233253048' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'233253049' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'233253050' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'233253051' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'233253052' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'233253053' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'233253054' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'233253055' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'233253056' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'233253057' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'233253058' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'233253059' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'233253060' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'233253061' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'233253062' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'233253063' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'233253064' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'233253065' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'233253066' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'233253067' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'233253068' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'233253069' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'233253070' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'233253071' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'233253072' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'233253073' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'233253074' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'233253075' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'233253076' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'233253077' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'233253078' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'233253079' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'233253080' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'233253081' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'233253082' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'233253083' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Albedo +'233253084' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'233253085' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'233253086' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'233253087' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Salinity +'233253088' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Density +'233253089' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'233253090' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'233253091' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'233253092' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'233253093' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'233253094' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'233253095' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'233253096' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'233253097' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'233253098' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'233253099' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'233253100' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'233253101' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'233253102' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'233253103' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'233253104' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'233253105' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'233253106' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'233253107' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'233253108' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'233253109' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'233253110' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'233253111' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'233253112' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'233253113' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'233253114' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'233253115' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'233253116' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'233253117' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'233253118' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'233253119' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'233253120' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'233253121' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'233253122' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'233253123' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'233253124' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'233253125' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'233253126' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Image data +'233253127' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Analysed RMS of PHI (CANARI) +'233253128' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Forecast RMS of PHI (CANARI) +'233253129' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#SW net clear sky rad +'233253130' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#LW net clear sky rad +'233253131' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#Latent heat flux through evaporation +'233253132' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Mask of significant cloud amount +'233253133' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Icing index +'233253135' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'233253136' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: water vapour Tb +'233253137' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'233253138' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'233253139' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Direct normal irradiance +'233253140' = { + table2Version = 253 ; + indicatorOfParameter = 140 ; + } +#Precipitation Type +'233253144' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Surface downward moon radiation +'233253158' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#CAPE out of the model +'233253160' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#AROME hail diagnostic +'233253161' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Gust, u-component +'233253162' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#Gust, v-component +'233253163' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#MOCON out of the model +'233253166' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Total water vapour +'233253167' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Brightness temperature OZ clear +'233253170' = { + table2Version = 253 ; + indicatorOfParameter = 170 ; + } +#Brightness temperature OZ cloud +'233253171' = { + table2Version = 253 ; + indicatorOfParameter = 171 ; + } +#Brightness temperature IR clear +'233253172' = { + table2Version = 253 ; + indicatorOfParameter = 172 ; + } +#Brightness temperature IR cloud +'233253173' = { + table2Version = 253 ; + indicatorOfParameter = 173 ; + } +#Brightness temperature WV clear +'233253174' = { + table2Version = 253 ; + indicatorOfParameter = 174 ; + } +#Brightness temperature WV cloud +'233253175' = { + table2Version = 253 ; + indicatorOfParameter = 175 ; + } +#Rain +'233253181' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Stratiform rain +'233253182' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Convective rain +'233253183' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Snow +'233253184' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Total solid precipitation +'233253185' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Cloud base +'233253186' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Cloud top +'233253187' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Fraction of urban land +'233253188' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Snow albedo +'233253190' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Snow density +'233253191' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Water on canopy (Interception content) +'233253192' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Soil ice +'233253193' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Gravity wave stress U-comp +'233253195' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'233253196' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#TKE +'233253200' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Graupel +'233253201' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Hail +'233253204' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#Simulated reflectivity +'233253210' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Lightning +'233253211' = { + table2Version = 253 ; + indicatorOfParameter = 211 ; + } +#Pressure departure +'233253212' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Vertical Divergence +'233253213' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Updraft omega +'233253214' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#Downdraft omega +'233253215' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Updraft mesh fraction +'233253216' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Downdraft mesh fraction +'233253217' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Surface albedo for non snow covered areas +'233253219' = { + table2Version = 253 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of orography * g +'233253220' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Anisotropy coeff of topography +'233253221' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Direction of main axis of topography +'233253222' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Roughness length of bare surface * g +'233253223' = { + table2Version = 253 ; + indicatorOfParameter = 223 ; + } +#Roughness length for vegetation * g +'233253224' = { + table2Version = 253 ; + indicatorOfParameter = 224 ; + } +#Fraction of clay within soil +'233253225' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#Fraction of sand within soil +'233253226' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Maximum - of vegetation +'233253227' = { + table2Version = 253 ; + indicatorOfParameter = 227 ; + } +#Gust +'233253228' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Albedo of bare ground +'233253229' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'233253230' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#Stomatal minimum resistance +'233253231' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Leaf area index +'233253232' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Dominant vegetation index +'233253234' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Surface emissivity +'233253235' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Maximum soil depth +'233253236' = { + table2Version = 253 ; + indicatorOfParameter = 236 ; + } +#Soil depth +'233253237' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Soil wetness +'233253238' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Thermal roughness length * g +'233253239' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } +#Resistance to evapotransiration +'233253240' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'233253241' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'233253242' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Duration of total precipitation +'233253243' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Latent Heat Sublimation +'233253244' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Water evaporation +'233253245' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Snow Sublimation +'233253246' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Snow history +'233253247' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#A Ozone +'233253248' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#B Ozone +'233253249' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#C Ozone +'233253250' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Surface aerosol sea +'233253251' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Surface aerosol land +'233253252' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol soot (carbon) +'233253253' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'233253254' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Missing +'233253255' = { + table2Version = 253 ; + indicatorOfParameter = 255 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eidb/shortName.def b/eccodes/definitions/grib1/localConcepts/eidb/shortName.def new file mode 100644 index 00000000..914d526b --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eidb/shortName.def @@ -0,0 +1,1840 @@ +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'pres' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'ptend' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'pv' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'z' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gh' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'h' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'tco3' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'t' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'vptmp' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'pt' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'td' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'ws' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'strf' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'mntsf' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'w' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'tw' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'absv' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'vo' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'d' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'q' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'r' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'e' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'ciwc' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'prate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'lsp' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'sf' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'sd' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'mld' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'tcc' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'cwat' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'csf' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'lsf' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'wtmp' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'lsm' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'sr' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'al' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'st' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'sm' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'veg' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'s' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'ro' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'icec' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean Direction of wind waves +'mdww' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'mdps' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'mpps' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'nswrt' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'nlwrt' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'lwavr' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'swavr' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'btmp' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'slhf' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'sshf' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'mofl' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Max wind speed (at 10m) +'maxv' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Temperature over land +'tland' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'qland' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land Fraction +'rhland' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land K +'dptland' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'slfr' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'shfr' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter A +'rsha' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter B +'rshb' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Surface slope +'susl' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'skwf' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'frasp' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Snow albedo +'asn' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'dsn' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'watcn' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'ssi' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Soil type code +'sltyp' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'fol' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'fof' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'fool' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'vgtyp' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'tke' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Maximum slope of smallest scale orography +'mssso' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'sdsso' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Max wind gust +'gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Pressure +'pres' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'ptend' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'pv' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'z' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gh' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'h' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'tco3' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Temperature +'t' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'vptmp' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'pt' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'td' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 253 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 253 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 253 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 253 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'ws' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#Stream function +'strf' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 253 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'mntsf' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'w' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'tw' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'absv' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'vo' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'d' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'q' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'r' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'e' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'ciwc' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'prate' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'tp' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'lsp' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'sf' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'sd' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'mld' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'tcc' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'cwat' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'csf' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'lsf' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'wtmp' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'lsm' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'sr' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Albedo +'al' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'st' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'sm' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'veg' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Salinity +'s' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'ro' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'icec' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'mdps' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'mpps' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'nswrt' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'nlwrt' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'lwavr' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'swavr' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'btmp' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'slhf' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'sshf' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Analysed RMS of PHI (CANARI) +'armsp' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Forecast RMS of PHI (CANARI) +'frmsp' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#SW net clear sky rad +'cssw' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#LW net clear sky rad +'cslw' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#Latent heat flux through evaporation +'lhe' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Mask of significant cloud amount +'msca' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Icing index +'icei' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'psct' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: water vapour Tb +'pstb' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'pstbc' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'pscw' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Direct normal irradiance +'dni' = { + table2Version = 253 ; + indicatorOfParameter = 140 ; + } +#Precipitation Type +'prtp' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Surface downward moon radiation +'mrad' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#CAPE out of the model +'cape' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#AROME hail diagnostic +'xhail' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Gust, u-component +'ugst' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#Gust, v-component +'vgst' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#MOCON out of the model +'mcn' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Total water vapour +'totqv' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Brightness temperature OZ clear +'bt_oz_cs' = { + table2Version = 253 ; + indicatorOfParameter = 170 ; + } +#Brightness temperature OZ cloud +'bt_oz_cl' = { + table2Version = 253 ; + indicatorOfParameter = 171 ; + } +#Brightness temperature IR clear +'bt_ir_cs' = { + table2Version = 253 ; + indicatorOfParameter = 172 ; + } +#Brightness temperature IR cloud +'bt_ir_cl' = { + table2Version = 253 ; + indicatorOfParameter = 173 ; + } +#Brightness temperature WV clear +'bt_wv_cs' = { + table2Version = 253 ; + indicatorOfParameter = 174 ; + } +#Brightness temperature WV cloud +'bt_wv_cl' = { + table2Version = 253 ; + indicatorOfParameter = 175 ; + } +#Rain +'rain' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Stratiform rain +'srain' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Convective rain +'cr' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Snow +'snow' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Total solid precipitation +'tpsolid' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Cloud base +'cb' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Cloud top +'ct' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Fraction of urban land +'ful' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Snow albedo +'asn' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Snow density +'rsn' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Water on canopy (Interception content) +'w_i' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Soil ice +'w_so_ice' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Gravity wave stress U-comp +'gwdu' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'gwdv' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#TKE +'tke' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Graupel +'grpl' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Hail +'hail' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#Simulated reflectivity +'refl' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Lightning +'lgt' = { + table2Version = 253 ; + indicatorOfParameter = 211 ; + } +#Pressure departure +'pdep' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Vertical Divergence +'vdiv' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Updraft omega +'upom' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#Downdraft omega +'dnom' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Updraft mesh fraction +'upmf' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Downdraft mesh fraction +'dnmf' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Surface albedo for non snow covered areas +'alns' = { + table2Version = 253 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of orography * g +'stdo' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Anisotropy coeff of topography +'atop' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Direction of main axis of topography +'dtop' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Roughness length of bare surface * g +'srbs' = { + table2Version = 253 ; + indicatorOfParameter = 223 ; + } +#Roughness length for vegetation * g +'srveg' = { + table2Version = 253 ; + indicatorOfParameter = 224 ; + } +#Fraction of clay within soil +'clfr' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#Fraction of sand within soil +'slfr' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Maximum - of vegetation +'vegmax' = { + table2Version = 253 ; + indicatorOfParameter = 227 ; + } +#Gust +'fg' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Albedo of bare ground +'alb' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'alv' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#Stomatal minimum resistance +'smnr' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Leaf area index +'lai' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Dominant vegetation index +'dvi' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Surface emissivity +'se' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Maximum soil depth +'sdmax' = { + table2Version = 253 ; + indicatorOfParameter = 236 ; + } +#Soil depth +'sld' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Soil wetness +'swv' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Thermal roughness length * g +'zt' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } +#Resistance to evapotransiration +'rev' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'rmn' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'rmx' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Duration of total precipitation +'dutp' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Latent Heat Sublimation +'lhsub' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Water evaporation +'wevap' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Snow Sublimation +'snsub' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Snow history +'shis' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#A Ozone +'ao' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#B Ozone +'bo' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#C Ozone +'co' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Surface aerosol sea +'aers' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Surface aerosol land +'aerl' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol soot (carbon) +'aerc' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'aerd' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Missing +'-' = { + table2Version = 253 ; + indicatorOfParameter = 255 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def b/eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def new file mode 100644 index 00000000..a312b4c2 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def @@ -0,0 +1,49 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 May 2013 +# +######################### +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'northTile' = {indicatorOfTypeOfLevel=191;} +'northEastTile' = {indicatorOfTypeOfLevel=192;} +'eastTile' = {indicatorOfTypeOfLevel=193;} +'southEastTile' = {indicatorOfTypeOfLevel=194;} +'southTile' = {indicatorOfTypeOfLevel=195;} +'southWestTile' = {indicatorOfTypeOfLevel=196;} +'westTile' = {indicatorOfTypeOfLevel=197;} +'northWestTile' = {indicatorOfTypeOfLevel=198;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} +'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions/grib1/localConcepts/eidb/units.def b/eccodes/definitions/grib1/localConcepts/eidb/units.def new file mode 100644 index 00000000..e7688d7a --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eidb/units.def @@ -0,0 +1,1840 @@ +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'Dobson' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'m2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'m**2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pa s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'%' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'%' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'%' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean Direction of wind waves +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'s' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m-**3 sr**-1' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Max wind speed (at 10m) +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Temperature over land +'K' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land Fraction +'' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land K +'' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'-' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'-' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter A +'-' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter B +'-' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Surface slope +'-' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'-' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'-' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Snow albedo +'-' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'-' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'m**3 m**-3' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Soil type code +'-' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'-' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'-' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'-' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'J kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Maximum slope of smallest scale orography +'rad' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Max wind gust +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gpm' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geometrical height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#Total column ozone +'Dobson' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Virtual potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#Stream function +'m2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'m**2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pa s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'%' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Cloud ice +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Water equivalent of accumulated snow depth +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#Convective snowfall +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#Large scale snowfall +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Water temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Land cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'m' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Albedo +'-' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'%' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Water run-off +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Ice cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Mean direction of primary swell +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean period of primary swell +'s' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux (atmosph.top) +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux (atmosph.top) +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Long-wave radiation flux +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Short-wave radiation flux +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m-**3 sr**-1' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Image data +'-' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Analysed RMS of PHI (CANARI) +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Forecast RMS of PHI (CANARI) +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#SW net clear sky rad +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#LW net clear sky rad +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#Latent heat flux through evaporation +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Mask of significant cloud amount +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Icing index +'-' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: water vapour Tb +'-' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'-' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Direct normal irradiance +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 140 ; + } +#Precipitation Type +'-' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Surface downward moon radiation +'-' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#CAPE out of the model +'J kg-1' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#AROME hail diagnostic +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Gust, u-component +'m s*-1' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#Gust, v-component +'m s*-1' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#MOCON out of the model +' kg kg**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Total water vapour +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Brightness temperature OZ clear +'K' = { + table2Version = 253 ; + indicatorOfParameter = 170 ; + } +#Brightness temperature OZ cloud +'K' = { + table2Version = 253 ; + indicatorOfParameter = 171 ; + } +#Brightness temperature IR clear +'K' = { + table2Version = 253 ; + indicatorOfParameter = 172 ; + } +#Brightness temperature IR cloud +'K' = { + table2Version = 253 ; + indicatorOfParameter = 173 ; + } +#Brightness temperature WV clear +'K' = { + table2Version = 253 ; + indicatorOfParameter = 174 ; + } +#Brightness temperature WV cloud +'K' = { + table2Version = 253 ; + indicatorOfParameter = 175 ; + } +#Rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Stratiform rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Convective rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Snow +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Total solid precipitation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Cloud base +'m' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Cloud top +'m' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Fraction of urban land +'%' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Snow albedo +'(0-1)' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Snow density +'kg m**-3' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Water on canopy (Interception content) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Soil ice +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Gravity wave stress U-comp +'kg m**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'kg m**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#TKE +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Graupel +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Hail +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#Simulated reflectivity +'dBz' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Lightning +'-' = { + table2Version = 253 ; + indicatorOfParameter = 211 ; + } +#Pressure departure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Vertical Divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Updraft omega +'ms*-1' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#Downdraft omega +'ms*-1' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Updraft mesh fraction +'-' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Downdraft mesh fraction +'-' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Surface albedo for non snow covered areas +'-' = { + table2Version = 253 ; + indicatorOfParameter = 219 ; + } +#Standard deviation of orography * g +'m**2s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Anisotropy coeff of topography +'rad' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Direction of main axis of topography +'-' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Roughness length of bare surface * g +'m2 2**-2' = { + table2Version = 253 ; + indicatorOfParameter = 223 ; + } +#Roughness length for vegetation * g +'m2 2**-2' = { + table2Version = 253 ; + indicatorOfParameter = 224 ; + } +#Fraction of clay within soil +'-' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#Fraction of sand within soil +'-' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Maximum - of vegetation +'-' = { + table2Version = 253 ; + indicatorOfParameter = 227 ; + } +#Gust +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Albedo of bare ground +'-' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'-' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#Stomatal minimum resistance +'s m**-1' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Leaf area index +'m**2 m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Dominant vegetation index +'-' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Surface emissivity +'-' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Maximum soil depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 236 ; + } +#Soil depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Soil wetness +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Thermal roughness length * g +'m' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } +#Resistance to evapotransiration +'s m**-1' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'-' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'-' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Duration of total precipitation +'s' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Latent Heat Sublimation +'J kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Water evaporation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Snow Sublimation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Snow history +'???' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#A Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#B Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#C Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Surface aerosol sea +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Surface aerosol land +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol soot (carbon) +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Missing +'' = { + table2Version = 253 ; + indicatorOfParameter = 255 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/name.def b/eccodes/definitions/grib1/localConcepts/ekmi/name.def new file mode 100644 index 00000000..2e4c487d --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ekmi/name.def @@ -0,0 +1,21 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Total precipitation +'Total precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#10 metre wind gust +'10 metre wind gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#convective available potential energy +'Convective available potential energy' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Convective inhibition +'Convective inhibition' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/paramId.def b/eccodes/definitions/grib1/localConcepts/ekmi/paramId.def new file mode 100644 index 00000000..9039a994 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ekmi/paramId.def @@ -0,0 +1,21 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Total precipitation +'94001061' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#10 metre wind gust +'94001228' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#convective available potential energy +'94001225' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Convective inhibition +'94001224' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/shortName.def b/eccodes/definitions/grib1/localConcepts/ekmi/shortName.def new file mode 100644 index 00000000..02692374 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ekmi/shortName.def @@ -0,0 +1,21 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Total precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#10 metre wind gust +'gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#convective available potential energy +'cape' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Convective inhibition +'cin' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/units.def b/eccodes/definitions/grib1/localConcepts/ekmi/units.def new file mode 100644 index 00000000..276dd233 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/ekmi/units.def @@ -0,0 +1,21 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Total precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#10 metre wind gust +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#convective available potential energy +'J kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Convective inhibition +'J kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/enmi/name.def b/eccodes/definitions/grib1/localConcepts/enmi/name.def new file mode 100644 index 00000000..1e93243e --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/enmi/name.def @@ -0,0 +1,16 @@ +#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) +#Total precipitation +'Total precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Convective available potential energy +'Convective available potential energy' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; +} +#10 metre wind gust +'10 metre wind gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/enmi/paramId.def b/eccodes/definitions/grib1/localConcepts/enmi/paramId.def new file mode 100644 index 00000000..07280764 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/enmi/paramId.def @@ -0,0 +1,16 @@ +#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) +#Total precipitation +'88001061' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Convective available potential energy +'59' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; +} +#10 metre wind gust +'88001228' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/enmi/shortName.def b/eccodes/definitions/grib1/localConcepts/enmi/shortName.def new file mode 100644 index 00000000..7a8fddd4 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/enmi/shortName.def @@ -0,0 +1,16 @@ +#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) +#Total precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Convective available potential energy +'cape' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; +} +#10 metre wind gust +'gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/enmi/units.def b/eccodes/definitions/grib1/localConcepts/enmi/units.def new file mode 100644 index 00000000..67b2e16c --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/enmi/units.def @@ -0,0 +1,16 @@ +#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) +#Total precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Convective available potential energy +'J kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; +} +#10 metre wind gust +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def b/eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def new file mode 100644 index 00000000..2cf2abdd --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def @@ -0,0 +1,20 @@ +######################### +# +# author: Sebastien Villaume +# created: 13 May 2013 +# modified: +# +######################### +"none"={matchAerosolBinNumber=0;} +"bin1"={matchAerosolBinNumber=1;} +"bin2"={matchAerosolBinNumber=2;} +"bin3"={matchAerosolBinNumber=3;} +"bin4"={matchAerosolBinNumber=4;} +"bin5"={matchAerosolBinNumber=5;} +"bin6"={matchAerosolBinNumber=6;} +"bin7"={matchAerosolBinNumber=7;} +"bin8"={matchAerosolBinNumber=8;} +"bin9"={matchAerosolBinNumber=9;} +"bin10"={matchAerosolBinNumber=10;} +"all"={matchAerosolBinNumber=100;} +"missing"={matchAerosolBinNumber=255;} diff --git a/eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table b/eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table new file mode 100644 index 00000000..c39cb655 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table @@ -0,0 +1,24 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# +# Model 50 (MATCH) SMHI local definitions aerosol bin number +# +# Aerosol bin number parameter in local extension +# +0 0 none +1 1 Aerosol Binary number 1 +2 2 Aerosol Binary number 2 +3 3 Aerosol Binary number 3 +4 4 Aerosol Binary number 4 +5 5 Aerosol Binary number 5 +6 6 Aerosol Binary number 6 +7 7 Aerosol Binary number 7 +8 8 Aerosol Binary number 8 +9 9 Aerosol Binary number 9 +10 10 Aerosol Binary number 10 +100 100 All binary number +255 255 missing value diff --git a/eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def b/eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def new file mode 100644 index 00000000..e9489783 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def @@ -0,0 +1,39 @@ +######################### +# +# author: Sebastien Villaume +# created: 13 May 2013 +# modified: +# +######################### +"all"={matchLandType=0;} +"water"={matchLandType=1;} +"rural"={matchLandType=2;} +"urban"={matchLandType=3;} +"lowveg"={matchLandType=4;} +"forest"={matchLandType=5;} +"noveg"={matchLandType=6;} +"pasture"={matchLandType=21;} +"arable"={matchLandType=22;} +"beechoak"={matchLandType=23;} +"deciduous"={matchLandType=24;} +"spruce"={matchLandType=25;} +"pine"={matchLandType=26;} +"wetland"={matchLandType=27;} +"mountain"={matchLandType=28;} +"birch"={matchLandType=29;} +"ice"={matchLandType=51;} +"snow"={matchLandType=52;} +"hslowv"={matchLandType=71;} +"hsfor"={matchLandType=72;} +"politi"={matchLandType=73;} +"mask"={matchLandType=74;} +"regional"={matchLandType=81;} +"long-range"={matchLandType=82;} +"local"={matchLandType=83;} +"zone"={matchLandType=90;} +"top"={matchLandType=100;} +"effdose"={matchLandType=150;} +"skin"={matchLandType=151;} +"thyroid"={matchLandType=152;} +"lung"={matchLandType=153;} +"missing"={matchLandType=255;} diff --git a/eccodes/definitions/grib1/localConcepts/eswi/landtype.table b/eccodes/definitions/grib1/localConcepts/eswi/landtype.table new file mode 100644 index 00000000..8181b835 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/landtype.table @@ -0,0 +1,43 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# +# Model 50 (MATCH) SMHI local definitions landtype +# +# landtype parameter in local extension +# +0 0 All surfaces +1 1 Water or Sea Water (fraction) +2 2 Rural (fraction) +3 3 Urban (fraction) +4 4 Lowveg (fraction) +5 5 Forest (fraction) +6 6 Noveg (fraction) +21 21 Pasture (fraction) +22 22 Arable (fraction) +23 23 Beech_oak (fraction) +24 24 Deciduous (fraction) +25 25 Spruce (fraction) +26 26 Pine (fraction) +27 27 Wetland (fraction) +28 28 Mountain (fraction) +29 29 Birch (fraction) +51 51 Ice (fraction) +52 52 Snow (fraction) +71 71 Hendersen-Sellers classification +72 72 Hendersen-Sellers classification +73 73 Politi +74 74 Mask +81 81 Regional contribution +82 82 Long-range contribution +83 83 Local (urban) contribution +90 90 Zone index +100 100 Top layer +150 150 Effective dose [Sv] +151 151 Skin dose [Sv] +152 152 Thyroid dose [Sv] +153 153 Lung dose [Sv] +255 255 missing value diff --git a/eccodes/definitions/grib1/localConcepts/eswi/name.def b/eccodes/definitions/grib1/localConcepts/eswi/name.def new file mode 100644 index 00000000..2c2ece7e --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/name.def @@ -0,0 +1,5580 @@ +############### table2Version 1 ############ +############### WMO/Hirlam ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'Geopotential' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'Geopotential height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'Geometric height' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total ozone +'Total ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar Spectra (1) +'Radar Spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar Spectra (2) +'Radar Spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar Spectra (3) +'Radar Spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave Spectra (1) +'Wave Spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave Spectra (2) +'Wave Spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave Spectra (3) +'Wave Spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'Wind speed' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u-component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v-component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'Stream function' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'Montgomery stream function' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coord. vertical velocity +'Sigma coord. vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pressure Vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Geometric Vertical velocity +'Geometric Vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'Relative vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'Relative divergence' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#u-component of current +'u-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#v-component of current +'v-component of current' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'Evaporation' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud Ice +'Cloud Ice' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'Large scale precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snowfall rate water equivalent +'Snowfall rate water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equiv. of accum. snow depth +'Water equiv. of accum. snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'Snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'Cloud water' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snow +'Convective snow' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snow +'Large scale snow' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water Temperature +'Water Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'Land-sea mask (1=land 0=sea) (see note)' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea level from mean +'Deviation of sea level from mean' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'Albedo' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'Soil temperature' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'Vegetation' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'Salinity' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run off +'Water run off' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'Ice cover (ice=1 no ice=0)(see note)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#u-component of ice drift +'u-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#v-component of ice drift +'v-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'Direction of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short wave radiation flux (surface) +'Net short wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long wave radiation flux (surface) +'Net long wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short wave radiation flux (top of atmos.) +'Net short wave radiation flux (top of atmos.)' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long wave radiation flux (top of atmos.) +'Net long wave radiation flux (top of atmos.)' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat net flux +'Latent heat net flux' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat net flux +'Sensible heat net flux' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u component +'Momentum flux, u component' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v component +'Momentum flux, v component' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'Momentum flux' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Humidity tendencies +'Humidity tendencies' = { + table2Version = 1 ; + indicatorOfParameter = 129 ; + } +#Radiation at top of atmosphere +'Radiation at top of atmosphere' = { + table2Version = 1 ; + indicatorOfParameter = 130 ; + } +#Cloud top temperature, infrared +'Cloud top temperature, infrared' = { + table2Version = 1 ; + indicatorOfParameter = 131 ; + } +#Water vapor brightness temperature +'Water vapor brightness temperature' = { + table2Version = 1 ; + indicatorOfParameter = 132 ; + } +#Water vapor brightness temperature, correction +'Water vapor brightness temperature, correction' = { + table2Version = 1 ; + indicatorOfParameter = 133 ; + } +#Cloud water reflectivity +'Cloud water reflectivity' = { + table2Version = 1 ; + indicatorOfParameter = 134 ; + } +#Maximum wind +'Maximum wind' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Minimum wind +'Minimum wind' = { + table2Version = 1 ; + indicatorOfParameter = 136 ; + } +#Integrated cloud condensate +'Integrated cloud condensate' = { + table2Version = 1 ; + indicatorOfParameter = 137 ; + } +#Snow depth, cold snow +'Snow depth, cold snow' = { + table2Version = 1 ; + indicatorOfParameter = 138 ; + } +#Open land snow depth +'Open land snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 139 ; + } +#Temperature over land +'Temperature over land' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'Specific humidity over land' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land +'Relative humidity over land' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land +'Dew point over land' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'Slope fraction' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'Shadow fraction' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter RSHA +'Shadow parameter RSHA' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter RSHB +'Shadow parameter RSHB' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Momentum vegetation roughness +'Momentum vegetation roughness' = { + table2Version = 1 ; + indicatorOfParameter = 164 ; + } +#Surface slope +'Surface slope' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'Sky wiew factor' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'Fraction of aspect' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Heat roughness +'Heat roughness' = { + table2Version = 1 ; + indicatorOfParameter = 168 ; + } +#Albedo with solar angle correction +'Albedo with solar angle correction' = { + table2Version = 1 ; + indicatorOfParameter = 169 ; + } +#Soil wetness index +'Soil wetness index' = { + table2Version = 1 ; + indicatorOfParameter = 189 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'Snow density' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'Water on canopy level' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'Surface soil ice' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Fraction of surface type +'Fraction of surface type' = { + table2Version = 1 ; + indicatorOfParameter = 194 ; + } +#Soil type +'Soil type' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'Fraction of lake' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'Fraction of forest' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'Fraction of open land' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'Vegetation type (Olsson land use)' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Standard deviation of mesoscale orography +'Standard deviation of mesoscale orography' = { + table2Version = 1 ; + indicatorOfParameter = 204 ; + } +#Anisotrophic mesoscale orography +'Anisotrophic mesoscale orography' = { + table2Version = 1 ; + indicatorOfParameter = 205 ; + } +#X-angle of mesoscale orography +'X-angle of mesoscale orography' = { + table2Version = 1 ; + indicatorOfParameter = 206 ; + } +#Maximum slope of smallest scale orography +'Maximum slope of smallest scale orography' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'Standard deviation of smallest scale orography' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Ice existence +'Ice existence' = { + table2Version = 1 ; + indicatorOfParameter = 210 ; + } +#Lifting condensation level +'Lifting condensation level' = { + table2Version = 1 ; + indicatorOfParameter = 222 ; + } +#Level of neutral buoyancy +'Level of neutral buoyancy' = { + table2Version = 1 ; + indicatorOfParameter = 223 ; + } +#Convective inhibation +'Convective inhibation' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } +#CAPE +'CAPE' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Precipitation type +'Precipitation type' = { + table2Version = 1 ; + indicatorOfParameter = 226 ; + } +#Friction velocity +'Friction velocity' = { + table2Version = 1 ; + indicatorOfParameter = 227 ; + } +#Wind gust +'Wind gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Analysed 3-hour precipitation (-3h/0h) +'Analysed 3-hour precipitation (-3h/0h)' = { + table2Version = 1 ; + indicatorOfParameter = 250 ; + } +#Analysed 12-hour precipitation (-12h/0h) +'Analysed 12-hour precipitation (-12h/0h)' = { + table2Version = 1 ; + indicatorOfParameter = 251 ; + } +#Missing +'Missing' = { + table2Version = 1 ; + indicatorOfParameter = 255 ; + } +############### table2Version 128 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 128 ; + indicatorOfParameter = 0 ; + } +# SO2/SO2 +'SO2/SO2' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'SO4(2-)/SO4(2-) (sulphate)' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +# DMS/DMS +'DMS/DMS' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +# MSA/MSA +'MSA/MSA' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +# H2S/H2S +'H2S/H2S' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +# NH4SO4/(NH4)1.5H0.5SO4 +'NH4SO4/(NH4)1.5H0.5SO4' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +# NH4HSO4/NH4HSO4 +'NH4HSO4/NH4HSO4' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +# NH42SO4/(NH4)2SO4 +'NH42SO4/(NH4)2SO4' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +# SULFATE/SULFATE +'SULFATE/SULFATE' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +# SO2_AQ/SO2 in aqueous phase +'SO2_AQ/SO2 in aqueous phase' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +# SO4_AQ/sulfate in aqueous phase +'SO4_AQ/sulfate in aqueous phase' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +# LRT_SO2_S/long-range SO2_S +'LRT_SO2_S/long-range SO2_S' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +# LRT_SO4_S/LRT-contriubtion to SO4_S +'LRT_SO4_S/LRT-contriubtion to SO4_S' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +# LRT_SOX_S/LRT-contriubtion to SO4_S +'LRT_SOX_S/LRT-contriubtion to SO4_S' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +# XSOX_S/excess SOX (corrected for sea salt as sulfur) +'XSOX_S/excess SOX (corrected for sea salt as sulfur)' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +# SO2_S/SO2 (as sulphur) +'SO2_S/SO2 (as sulphur)' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +# SO4_S/SO4 (as sulphur) +'SO4_S/SO4 (as sulphur)' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'SOX_S/All oxidised sulphur compounds (as sulphur)' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +# NO +'NO' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +# NO2/NO2 +'NO2/NO2' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +# HNO3/HNO3 +'HNO3/HNO3' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +# NO3(-1)/NO3(-1) (nitrate) +'NO3(-1)/NO3(-1) (nitrate)' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +# NH4NO3/NH4NO3 +'NH4NO3/NH4NO3' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +# NITRATE/NITRATE +'NITRATE/NITRATE' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +# PNO3/(COARSE) NITRATE +'PNO3/(COARSE) NITRATE' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +# LRT_NOY_N/long-range NOY_N +'LRT_NOY_N/long-range NOY_N' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +# NO3_N/NO3 as N +'NO3_N/NO3 as N' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +# HNO3_N/HNO3 as N +'HNO3_N/HNO3 as N' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +# LRT_NO3_N/long-range NO3_N +'LRT_NO3_N/long-range NO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +# LRT_HNO3_N/long-range HNO3_N +'LRT_HNO3_N/long-range HNO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +# LRT_NO2_N/long-range NO2_N +'LRT_NO2_N/long-range NO2_N' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +# LRT_NOZ_N/long-range NOZ_N +'LRT_NOZ_N/long-range NOZ_N' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +# NOX/NOX as NO2 +'NOX/NOX as NO2' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +# NO_N/NO as N +'NO_N/NO as N' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +# NO2_N/NO2 as N +'NO2_N/NO2 as N' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'NOX_N/NO2+NO (NOx) as nitrogen' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'NOY_N/All oxidised N-compounds (as nitrogen)' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +# NOZ_N/NOy-NOx (as nitrogen) +'NOZ_N/NOy-NOx (as nitrogen)' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +# NH3/NH3 +'NH3/NH3' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +# NH4(+1)/NH4 +'NH4(+1)/NH4' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +# AMMONIUM/AMMONIUM +'AMMONIUM/AMMONIUM' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +# NH3_N/NH3 (as nitrogen) +'NH3_N/NH3 (as nitrogen)' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +# NH4_N/NH4 (as nitrogen) +'NH4_N/NH4 (as nitrogen)' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +# LRT_NH3_N/long-range NH3_N +'LRT_NH3_N/long-range NH3_N' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +# LRT_NH4_N/long-range NH4_N +'LRT_NH4_N/long-range NH4_N' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +# LRT_NHX_N/long-range NHX_N +'LRT_NHX_N/long-range NHX_N' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'NHX_N/All reduced nitrogen (as nitrogen)' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +# O3 +'O3' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +# H2O2/H2O2 +'H2O2/H2O2' = { + table2Version = 128 ; + indicatorOfParameter = 61 ; + } +# OH/OH +'OH/OH' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +# O3_AQ/O3 in aqueous phase +'O3_AQ/O3 in aqueous phase' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +# H2O2_AQ/H2O2 in aqueous phase +'H2O2_AQ/H2O2 in aqueous phase' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +# OX/Ox=O3+NO2 +'OX/Ox=O3+NO2' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +# C +'C' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +# CO/CO +'CO/CO' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +# CO2/CO2 +'CO2/CO2' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +# CH4/CH4 +'CH4/CH4' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +# OC/Organic carbon (particles) +'OC/Organic carbon (particles)' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +# EC/Elementary carbon (particles) +'EC/Elementary carbon (particles)' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +# CF6 +'CF6' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +# PMCH/PMCH +'PMCH/PMCH' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +# PMCP/PMCP +'PMCP/PMCP' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +# TRACER/Tracer +'TRACER/Tracer' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +# Inert/Inert +'Inert/Inert' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +# H3 +'H3' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +# Ar41/Ar41 +'Ar41/Ar41' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +# Kr85/Kr85 +'Kr85/Kr85' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +# Kr88/Kr88 +'Kr88/Kr88' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +# Xe131/Xe131 +'Xe131/Xe131' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +# Xe133/Xe133 +'Xe133/Xe133' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +# Rn222/Rn222 +'Rn222/Rn222' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +# I131/I131 +'I131/I131' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +# I132/I132 +'I132/I132' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +# I133/I133 +'I133/I133' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +# I135/I135 +'I135/I135' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +# Sr90 +'Sr90' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +# Co60/Co60 +'Co60/Co60' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +# Ru103/Ru103 +'Ru103/Ru103' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +# Ru106/Ru106 +'Ru106/Ru106' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +# Cs134/Cs134 +'Cs134/Cs134' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +# Cs137/Cs137 +'Cs137/Cs137' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +# Ra223/Ra123 +'Ra223/Ra123' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +# Ra228/Ra228 +'Ra228/Ra228' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +# Zr95 +'Zr95' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +# Nb95/Nb95 +'Nb95/Nb95' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +# Ce144/Ce144 +'Ce144/Ce144' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +# Np238/Np238 +'Np238/Np238' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +# Np239/Np239 +'Np239/Np239' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +# Pu241/Pu241 +'Pu241/Pu241' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +# Pb210/Pb210 +'Pb210/Pb210' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +# ALL +'ALL' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +# NACL +'NACL' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +# SODIUM/Na+ +'SODIUM/Na+' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +# MAGNESIUM/Mg++ +'MAGNESIUM/Mg++' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +# POTASSIUM/K+ +'POTASSIUM/K+' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +# CALCIUM/Ca++ +'CALCIUM/Ca++' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +# XMG/excess Mg++ (corrected for sea salt) +'XMG/excess Mg++ (corrected for sea salt)' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +# XK/excess K+ (corrected for sea salt) +'XK/excess K+ (corrected for sea salt)' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +# XCA/excess Ca++ (corrected for sea salt) +'XCA/excess Ca++ (corrected for sea salt)' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +# Cl2/Cloride +'Cl2/Cloride' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +# PMFINE +'PMFINE' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +# PMCOARSE/Coarse particles +'PMCOARSE/Coarse particles' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +# DUST/Dust (particles) +'DUST/Dust (particles)' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +# PNUMBER/Number concentration +'PNUMBER/Number concentration' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +# PRADIUS/Particle radius +'PRADIUS/Particle radius' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +# PSURFACE/Particle surface conc +'PSURFACE/Particle surface conc' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +# PMASS/Particle mass conc +'PMASS/Particle mass conc' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +# PM10/PM10 particles +'PM10/PM10 particles' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +# PSOX/Particulate sulfate +'PSOX/Particulate sulfate' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +# PNOX/Particulate nitrate +'PNOX/Particulate nitrate' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +# PNHX/Particulate ammonium +'PNHX/Particulate ammonium' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +# PPMFINE/Primary emitted fine particles +'PPMFINE/Primary emitted fine particles' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +# PPM10/Primary emitted particles +'PPM10/Primary emitted particles' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +# SOA/Secondary Organic Aerosol +'SOA/Secondary Organic Aerosol' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +# PM2.5/PM2.5 particles +'PM2.5/PM2.5 particles' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +# PM/Total particulate matter +'PM/Total particulate matter' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +# BIRCH_POLLEN/Birch pollen +'BIRCH_POLLEN/Birch pollen' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +# KZ +'KZ' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +# L/Monin-Obukhovs length [m] +'L/Monin-Obukhovs length [m]' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +# U*/Friction velocity [m/s] +'U*/Friction velocity [m/s]' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +# W*/Convective velocity scale [m/s] +'W*/Convective velocity scale [m/s]' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +# Z-D/Z0 minus displacement length [m] +'Z-D/Z0 minus displacement length [m]' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +# SURFTYPE/Surface type (see link{OCTET45}) +'SURFTYPE/Surface type (see link{OCTET45})' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +# LAI/Leaf area index +'LAI/Leaf area index' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +# SOILTYPE/Soil type +'SOILTYPE/Soil type' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +# SSALB/Single scattering albodo [1] +'SSALB/Single scattering albodo [1]' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +# ASYMPAR/Asymmetry parameter +'ASYMPAR/Asymmetry parameter' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +# VIS/Visibility [m] +'VIS/Visibility [m]' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +# EXT/Extinction [1/m] +'EXT/Extinction [1/m]' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +# BSCA/Backscattering coeff [1/m/sr] +'BSCA/Backscattering coeff [1/m/sr]' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +# AOD/Aerosol opt depth [1] +'AOD/Aerosol opt depth [1]' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +# DAOD/AOD per layer [1] +'DAOD/AOD per layer [1]' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +# CONV_TIED +'CONV_TIED' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +# CONV_BOT/Convective cloud bottom (unit?) +'CONV_BOT/Convective cloud bottom (unit?)' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +# CONV_TOP/Convective cloud top (unit?) +'CONV_TOP/Convective cloud top (unit?)' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +# DXDY/Gridsize [m2] +'DXDY/Gridsize [m2]' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +# EMIS/Sectoral emissions +'EMIS/Sectoral emissions' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +# LONG/Longitude +'LONG/Longitude' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +# LAT/Latitude +'LAT/Latitude' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Missing +'Missing' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +############### table2Version 129 ############ +############### Mesan ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 129 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Temperature +'Temperature' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#Wet bulb temperature +'Wet bulb temperature' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#24 hour mean of 2 meter temperature +'24 hour mean of 2 meter temperature' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 129 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 129 ; + indicatorOfParameter = 16 ; + } +#Visibility +'Visibility' = { + table2Version = 129 ; + indicatorOfParameter = 20 ; + } +#Wind gusts +'Wind gusts' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u-component of wind' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v-component of wind' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 129 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'Medium cloud cove' = { + table2Version = 129 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 129 ; + indicatorOfParameter = 75 ; + } +#Fraction of significant clouds +'Fraction of significant clouds' = { + table2Version = 129 ; + indicatorOfParameter = 77 ; + } +#Cloud base of significant clouds +'Cloud base of significant clouds' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Cloud top of significant clouds +'Cloud top of significant clouds' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Type of precipitation +'Type of precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Sort of precipitation +'Sort of precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#6 hour precipitation +'6 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#12 hour precipitation +'12 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#18 hour precipitation +'18 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#24 hour precipitation +'24 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#1 hour precipitation +'1 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#2 hour precipitation +'2 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#3 hour precipitation +'3 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#9 hour precipitation +'9 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#15 hour precipitation +'15 hour precipitation' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#6 hour fresh snow cover +'6 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#12 hour fresh snow cover +'12 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#18 hour fresh snow cover +'18 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#24 hour fresh snow cover +'24 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#1 hour fresh snow cover +'1 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#2 hour fresh snow cover +'2 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#3 hour fresh snow cover +'3 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#9 hour fresh snow cover +'9 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#15 hour fresh snow cover +'15 hour fresh snow cover' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#6 hour precipitation, corrected +'6 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#12 hour precipitation, corrected +'12 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#18 hour precipitation, corrected +'18 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#24 hour precipitation, corrected +'24 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#1 hour precipitation, corrected +'1 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#2 hour precipitation, corrected +'2 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#3 hour precipitation, corrected +'3 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#9 hour precipitation, corrected +'9 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#15 hour precipitation, corrected +'15 hour precipitation, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#6 hour fresh snow cover, corrected +'6 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#12 hour fresh snow cover, corrected +'12 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#18 hour fresh snow cover, corrected +'18 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#24 hour fresh snow cover, corrected +'24 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#1 hour fresh snow cover, corrected +'1 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#2 hour fresh snow cover, corrected +'2 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#3 hour fresh snow cover, corrected +'3 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#9 hour fresh snow cover, corrected +'9 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#15 hour fresh snow cover, corrected +'15 hour fresh snow cover, corrected' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#6 hour precipitation, standardized +'6 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#12 hour precipitation, standardized +'12 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#18 hour precipitation, standardized +'18 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#24 hour precipitation, standardized +'24 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#1 hour precipitation, standardized +'1 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#2 hour precipitation, standardized +'2 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#3 hour precipitation, standardized +'3 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#9 hour precipitation, standardized +'9 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#15 hour precipitation, standardized +'15 hour precipitation, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#6 hour fresh snow cover, standardized +'6 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#12 hour fresh snow cover, standardized +'12 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#18 hour fresh snow cover, standardized +'18 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 213 ; + } +#24 hour fresh snow cover, standardized +'24 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#1 hour fresh snow cover, standardized +'1 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#2 hour fresh snow cover, standardized +'2 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#3 hour fresh snow cover, standardized +'3 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#9 hour fresh snow cover, standardized +'9 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#15 hour fresh snow cover, standardized +'15 hour fresh snow cover, standardized' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#6 hour precipitation, corrected and standardized +'6 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#12 hour precipitation, corrected and standardized +'12 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#18 hour precipitation, corrected and standardized +'18 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#24 hour precipitation, corrected and standardized +'24 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#1 hour precipitation, corrected and standardized +'1 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#2 hour precipitation, corrected and standardized +'2 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#3 hour precipitation, corrected and standardized +'3 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#9 hour precipitation, corrected and standardized +'9 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#15 hour precipitation, corrected and standardized +'15 hour precipitation, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#6 hour fresh snow cover, corrected and standardized +'6 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#12 hour fresh snow cover, corrected and standardized +'12 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#18 hour fresh snow cover, corrected and standardized +'18 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#24 hour fresh snow cover, corrected and standardized +'24 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#1 hour fresh snow cover, corrected and standardized +'1 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#2 hour fresh snow cover, corrected and standardized +'2 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#3 hour fresh snow cover, corrected and standardized +'3 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#9 hour fresh snow cover, corrected and standardized +'9 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#15 hour fresh snow cover, corrected and standardized +'15 hour fresh snow cover, corrected and standardized' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Missing +'Missing' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +############### table2Version 130 ############ +############### PMP ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 130 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + table2Version = 130 ; + indicatorOfParameter = 1 ; + } +#Temperature +'Temperature' = { + table2Version = 130 ; + indicatorOfParameter = 11 ; + } +#Visibility +'Visibility' = { + table2Version = 130 ; + indicatorOfParameter = 20 ; + } +#u-component of wind +'u-component of wind' = { + table2Version = 130 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v-component of wind' = { + table2Version = 130 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 130 ; + indicatorOfParameter = 52 ; + } +#Probability of frozen rain +'Probability of frozen rain' = { + table2Version = 130 ; + indicatorOfParameter = 58 ; + } +#Probability thunderstorm +'Probability thunderstorm' = { + table2Version = 130 ; + indicatorOfParameter = 60 ; + } +#Total_precipitation +'Total_precipitation' = { + table2Version = 130 ; + indicatorOfParameter = 61 ; + } +#Water_equiv._of_snow_depth +'Water_equiv._of_snow_depth' = { + table2Version = 130 ; + indicatorOfParameter = 65 ; + } +#Area_time_min_totalcloudcover +'Area_time_min_totalcloudcover' = { + table2Version = 130 ; + indicatorOfParameter = 67 ; + } +#Area_time_max_totalcloudcover +'Area_time_max_totalcloudcover' = { + table2Version = 130 ; + indicatorOfParameter = 68 ; + } +#Area_time_median_totalcloudcover +'Area_time_median_totalcloudcover' = { + table2Version = 130 ; + indicatorOfParameter = 69 ; + } +#Area_time_mean_totalcloudcover +'Area_time_mean_totalcloudcover' = { + table2Version = 130 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 130 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 130 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 130 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'Medium cloud cove' = { + table2Version = 130 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 130 ; + indicatorOfParameter = 75 ; + } +#cloud mask +'cloud mask' = { + table2Version = 130 ; + indicatorOfParameter = 77 ; + } +#Index 2m maxtemperatur over 3 dygn +'Index 2m maxtemperatur over 3 dygn' = { + table2Version = 130 ; + indicatorOfParameter = 100 ; + } +#EPS T mean +'EPS T mean' = { + table2Version = 130 ; + indicatorOfParameter = 110 ; + } +#EPS T standard deviation +'EPS T standard deviation' = { + table2Version = 130 ; + indicatorOfParameter = 111 ; + } +#Maximum wind (mean 10 min) +'Maximum wind (mean 10 min)' = { + table2Version = 130 ; + indicatorOfParameter = 130 ; + } +#Wind gust +'Wind gust' = { + table2Version = 130 ; + indicatorOfParameter = 131 ; + } +#Cloud base (significant) +'Cloud base (significant)' = { + table2Version = 130 ; + indicatorOfParameter = 135 ; + } +#Cloud top (significant) +'Cloud top (significant)' = { + table2Version = 130 ; + indicatorOfParameter = 136 ; + } +#Omradesnederbord gridpunkts-min +'Omradesnederbord gridpunkts-min' = { + table2Version = 130 ; + indicatorOfParameter = 137 ; + } +#Omradesnederbord gridpunkts-max +'Omradesnederbord gridpunkts-max' = { + table2Version = 130 ; + indicatorOfParameter = 138 ; + } +#Omradesnederbord gridpunkts-medel +'Omradesnederbord gridpunkts-medel' = { + table2Version = 130 ; + indicatorOfParameter = 139 ; + } +#Precipitation intensity total +'Precipitation intensity total' = { + table2Version = 130 ; + indicatorOfParameter = 140 ; + } +#Precipitation intensity snow +'Precipitation intensity snow' = { + table2Version = 130 ; + indicatorOfParameter = 141 ; + } +#Area_time_min_precipitation +'Area_time_min_precipitation' = { + table2Version = 130 ; + indicatorOfParameter = 142 ; + } +#Area_time_max_precipitation +'Area_time_max_precipitation' = { + table2Version = 130 ; + indicatorOfParameter = 143 ; + } +#Precipitation type, conv 0, large scale 1, no prec -9 +'Precipitation type, conv 0, large scale 1, no prec -9' = { + table2Version = 130 ; + indicatorOfParameter = 145 ; + } +#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle +'Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle' = { + table2Version = 130 ; + indicatorOfParameter = 146 ; + } +#Vadersymbol +'Vadersymbol' = { + table2Version = 130 ; + indicatorOfParameter = 147 ; + } +#Area_time_mean_precipitation +'Area_time_mean_precipitation' = { + table2Version = 130 ; + indicatorOfParameter = 148 ; + } +#Area_time_median_precipitation +'Area_time_median_precipitation' = { + table2Version = 130 ; + indicatorOfParameter = 149 ; + } +#Missing +'Missing' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +############### table2Version 131 ############ +############### RCA ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 131 ; + indicatorOfParameter = 0 ; + } +#Sea surface temperature (LAKE) +'Sea surface temperature (LAKE)' = { + table2Version = 131 ; + indicatorOfParameter = 11 ; + } +#Current east +'Current east' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Current north +'Current north' = { + table2Version = 131 ; + indicatorOfParameter = 50 ; + } +#Snowdepth in Probe +'Snowdepth in Probe' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Ice concentration (LAKE) +'Ice concentration (LAKE)' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Ice thickness Probe-lake +'Ice thickness Probe-lake' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Temperature ABC-lake +'Temperature ABC-lake' = { + table2Version = 131 ; + indicatorOfParameter = 150 ; + } +#Temperature C-lake +'Temperature C-lake' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Temperature D-lake +'Temperature D-lake' = { + table2Version = 131 ; + indicatorOfParameter = 152 ; + } +#Temperature E-lake +'Temperature E-lake' = { + table2Version = 131 ; + indicatorOfParameter = 153 ; + } +#Area ABC-lake +'Area ABC-lake' = { + table2Version = 131 ; + indicatorOfParameter = 160 ; + } +#Depth ABC-lake +'Depth ABC-lake' = { + table2Version = 131 ; + indicatorOfParameter = 161 ; + } +#C-lakes +'C-lakes' = { + table2Version = 131 ; + indicatorOfParameter = 162 ; + } +#D-lakes +'D-lakes' = { + table2Version = 131 ; + indicatorOfParameter = 163 ; + } +#E-lakes +'E-lakes' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#Ice thickness ABC-lake +'Ice thickness ABC-lake' = { + table2Version = 131 ; + indicatorOfParameter = 170 ; + } +#Ice thickness C-lake +'Ice thickness C-lake' = { + table2Version = 131 ; + indicatorOfParameter = 171 ; + } +#Ice thickness D-lake +'Ice thickness D-lake' = { + table2Version = 131 ; + indicatorOfParameter = 172 ; + } +#Ice thickness E-lake +'Ice thickness E-lake' = { + table2Version = 131 ; + indicatorOfParameter = 173 ; + } +#Sea surface temperature (T) +'Sea surface temperature (T)' = { + table2Version = 131 ; + indicatorOfParameter = 180 ; + } +#Ice concentration (I) +'Ice concentration (I)' = { + table2Version = 131 ; + indicatorOfParameter = 183 ; + } +#Fraction lake +'Fraction lake' = { + table2Version = 131 ; + indicatorOfParameter = 196 ; + } +#Black ice thickness in Probe +'Black ice thickness in Probe' = { + table2Version = 131 ; + indicatorOfParameter = 241 ; + } +#Vallad istjocklek i Probe +'Vallad istjocklek i Probe' = { + table2Version = 131 ; + indicatorOfParameter = 244 ; + } +#Internal ice concentration in Probe +'Internal ice concentration in Probe' = { + table2Version = 131 ; + indicatorOfParameter = 245 ; + } +#Isfrontlaege i Probe +'Isfrontlaege i Probe' = { + table2Version = 131 ; + indicatorOfParameter = 246 ; + } +#Heat in Probe +'Heat in Probe' = { + table2Version = 131 ; + indicatorOfParameter = 250 ; + } +#Turbulent Kintetic Energy +'Turbulent Kintetic Energy' = { + table2Version = 131 ; + indicatorOfParameter = 251 ; + } +#Dissipation rate Turbulent Kinetic Energy +'Dissipation rate Turbulent Kinetic Energy' = { + table2Version = 131 ; + indicatorOfParameter = 252 ; + } +#Missing +'Missing' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +############### table2Version 133 ############ +############### Hiromb ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 133 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#Temperature +'Temperature' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'Wind speed' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#U-component of Wind +'U-component of Wind' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#V-component of Wind +'V-component of Wind' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Stream function +'Stream function' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'Montgomery stream function' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Z-component of velocity (pressure) +'Z-component of velocity (pressure)' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Z-component of velocity (geometric) +'Z-component of velocity (geometric)' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'Relative vorticity' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'Relative divergence' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Direction of horizontal current +'Direction of horizontal current' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Speed of horizontal current +'Speed of horizontal current' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#U-comp of Current +'U-comp of Current' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#V-comp of Current +'V-comp of Current' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snow Depth +'Snow Depth' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#Water temperature +'Water temperature' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea level from mean +'Deviation of sea level from mean' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Salinity +'Salinity' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Ice Cover +'Ice Cover' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Total ice thickness +'Total ice thickness' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 133 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 133 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 133 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 133 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 133 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 133 ; + indicatorOfParameter = 98 ; + } +#Significant wave height +'Significant wave height' = { + table2Version = 133 ; + indicatorOfParameter = 100 ; + } +#Direction of Wind Waves +'Direction of Wind Waves' = { + table2Version = 133 ; + indicatorOfParameter = 101 ; + } +#Sign Height Wind Waves +'Sign Height Wind Waves' = { + table2Version = 133 ; + indicatorOfParameter = 102 ; + } +#Mean Period Wind Waves +'Mean Period Wind Waves' = { + table2Version = 133 ; + indicatorOfParameter = 103 ; + } +#Direction of Swell Waves +'Direction of Swell Waves' = { + table2Version = 133 ; + indicatorOfParameter = 104 ; + } +#Sign Height Swell Waves +'Sign Height Swell Waves' = { + table2Version = 133 ; + indicatorOfParameter = 105 ; + } +#Mean Period Swell Waves +'Mean Period Swell Waves' = { + table2Version = 133 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 133 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 133 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 133 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 133 ; + indicatorOfParameter = 110 ; + } +#Mean period of waves +'Mean period of waves' = { + table2Version = 133 ; + indicatorOfParameter = 111 ; + } +#Mean direction of Waves +'Mean direction of Waves' = { + table2Version = 133 ; + indicatorOfParameter = 112 ; + } +#Peak period of 1D spectra +'Peak period of 1D spectra' = { + table2Version = 133 ; + indicatorOfParameter = 113 ; + } +#Skin velocity, x-comp. +'Skin velocity, x-comp.' = { + table2Version = 133 ; + indicatorOfParameter = 130 ; + } +#Skin velocity, y-comp. +'Skin velocity, y-comp.' = { + table2Version = 133 ; + indicatorOfParameter = 131 ; + } +#Nitrate +'Nitrate' = { + table2Version = 133 ; + indicatorOfParameter = 151 ; + } +#Ammonium +'Ammonium' = { + table2Version = 133 ; + indicatorOfParameter = 152 ; + } +#Phosphate +'Phosphate' = { + table2Version = 133 ; + indicatorOfParameter = 153 ; + } +#Oxygen +'Oxygen' = { + table2Version = 133 ; + indicatorOfParameter = 154 ; + } +#Phytoplankton +'Phytoplankton' = { + table2Version = 133 ; + indicatorOfParameter = 155 ; + } +#Zooplankton +'Zooplankton' = { + table2Version = 133 ; + indicatorOfParameter = 156 ; + } +#Detritus +'Detritus' = { + table2Version = 133 ; + indicatorOfParameter = 157 ; + } +#Bentos nitrogen +'Bentos nitrogen' = { + table2Version = 133 ; + indicatorOfParameter = 158 ; + } +#Bentos phosphorus +'Bentos phosphorus' = { + table2Version = 133 ; + indicatorOfParameter = 159 ; + } +#Silicate +'Silicate' = { + table2Version = 133 ; + indicatorOfParameter = 160 ; + } +#Biogenic silica +'Biogenic silica' = { + table2Version = 133 ; + indicatorOfParameter = 161 ; + } +#Light in water column +'Light in water column' = { + table2Version = 133 ; + indicatorOfParameter = 162 ; + } +#Inorganic suspended matter +'Inorganic suspended matter' = { + table2Version = 133 ; + indicatorOfParameter = 163 ; + } +#Diatomes (algae) +'Diatomes (algae)' = { + table2Version = 133 ; + indicatorOfParameter = 164 ; + } +#Flagellates (algae) +'Flagellates (algae)' = { + table2Version = 133 ; + indicatorOfParameter = 165 ; + } +#Nitrate (aggregated) +'Nitrate (aggregated)' = { + table2Version = 133 ; + indicatorOfParameter = 166 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + table2Version = 133 ; + indicatorOfParameter = 200 ; + } +#Dissipation rate of TKE +'Dissipation rate of TKE' = { + table2Version = 133 ; + indicatorOfParameter = 201 ; + } +#Eddy viscosity +'Eddy viscosity' = { + table2Version = 133 ; + indicatorOfParameter = 202 ; + } +#Eddy diffusivity +'Eddy diffusivity' = { + table2Version = 133 ; + indicatorOfParameter = 203 ; + } +# Level ice thickness +' Level ice thickness' = { + table2Version = 133 ; + indicatorOfParameter = 220 ; + } +#Ridged ice thickness +'Ridged ice thickness' = { + table2Version = 133 ; + indicatorOfParameter = 221 ; + } +#Ice ridge height +'Ice ridge height' = { + table2Version = 133 ; + indicatorOfParameter = 222 ; + } +#Ice ridge density +'Ice ridge density' = { + table2Version = 133 ; + indicatorOfParameter = 223 ; + } +#U-mean (prev. timestep) +'U-mean (prev. timestep)' = { + table2Version = 133 ; + indicatorOfParameter = 231 ; + } +#V-mean (prev. timestep) +'V-mean (prev. timestep)' = { + table2Version = 133 ; + indicatorOfParameter = 232 ; + } +#W-mean (prev. timestep) +'W-mean (prev. timestep)' = { + table2Version = 133 ; + indicatorOfParameter = 233 ; + } +#Snow temperature +'Snow temperature' = { + table2Version = 133 ; + indicatorOfParameter = 239 ; + } +#Total depth in meters +'Total depth in meters' = { + table2Version = 133 ; + indicatorOfParameter = 243 ; + } +#Missing +'Missing' = { + table2Version = 133 ; + indicatorOfParameter = 255 ; + } +############### table2Version 134 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 0 ; + } +#C2H6/Ethane +'C2H6/Ethane' = { + table2Version = 134 ; + indicatorOfParameter = 1 ; + } +#NC4H10/N-butane +'NC4H10/N-butane' = { + table2Version = 134 ; + indicatorOfParameter = 2 ; + } +#C2H4/Ethene +'C2H4/Ethene' = { + table2Version = 134 ; + indicatorOfParameter = 3 ; + } +#C3H6/Propene +'C3H6/Propene' = { + table2Version = 134 ; + indicatorOfParameter = 4 ; + } +#OXYLENE/O-xylene +'OXYLENE/O-xylene' = { + table2Version = 134 ; + indicatorOfParameter = 5 ; + } +#HCHO/Formalydehyde +'HCHO/Formalydehyde' = { + table2Version = 134 ; + indicatorOfParameter = 6 ; + } +#CH3CHO/Acetaldehyde +'CH3CHO/Acetaldehyde' = { + table2Version = 134 ; + indicatorOfParameter = 7 ; + } +#CH3COC2H5/Ethyl methyl keton +'CH3COC2H5/Ethyl methyl keton' = { + table2Version = 134 ; + indicatorOfParameter = 8 ; + } +#MGLYOX/Methyl-glyoxal (CH3COCHO) +'MGLYOX/Methyl-glyoxal (CH3COCHO)' = { + table2Version = 134 ; + indicatorOfParameter = 9 ; + } +#GLYOX/Glyoxal (HCOCHO) +'GLYOX/Glyoxal (HCOCHO)' = { + table2Version = 134 ; + indicatorOfParameter = 10 ; + } +#C5H8/Isoprene +'C5H8/Isoprene' = { + table2Version = 134 ; + indicatorOfParameter = 11 ; + } +#C2H5OH/Ethanol +'C2H5OH/Ethanol' = { + table2Version = 134 ; + indicatorOfParameter = 12 ; + } +#CH3OH/Metanol +'CH3OH/Metanol' = { + table2Version = 134 ; + indicatorOfParameter = 13 ; + } +#HCOOH/Formic acid +'HCOOH/Formic acid' = { + table2Version = 134 ; + indicatorOfParameter = 14 ; + } +#CH3COOH/Acetic acid +'CH3COOH/Acetic acid' = { + table2Version = 134 ; + indicatorOfParameter = 15 ; + } +#NMVOC_C/Total NMVOC as C +'NMVOC_C/Total NMVOC as C' = { + table2Version = 134 ; + indicatorOfParameter = 19 ; + } +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 20 ; + } +#PAN/Peroxy acetyl nitrate +'PAN/Peroxy acetyl nitrate' = { + table2Version = 134 ; + indicatorOfParameter = 21 ; + } +#NO3/Nitrate radical +'NO3/Nitrate radical' = { + table2Version = 134 ; + indicatorOfParameter = 22 ; + } +#N2O5/Dinitrogen pentoxide +'N2O5/Dinitrogen pentoxide' = { + table2Version = 134 ; + indicatorOfParameter = 23 ; + } +#ONIT/Organic nitrate +'ONIT/Organic nitrate' = { + table2Version = 134 ; + indicatorOfParameter = 24 ; + } +#ISONRO2/Isoprene-NO3 adduct +'ISONRO2/Isoprene-NO3 adduct' = { + table2Version = 134 ; + indicatorOfParameter = 25 ; + } +#HO2NO2/HO2NO2 +'HO2NO2/HO2NO2' = { + table2Version = 134 ; + indicatorOfParameter = 26 ; + } +#MPAN +'MPAN' = { + table2Version = 134 ; + indicatorOfParameter = 27 ; + } +#ISONO3H +'ISONO3H' = { + table2Version = 134 ; + indicatorOfParameter = 28 ; + } +#HONO +'HONO' = { + table2Version = 134 ; + indicatorOfParameter = 29 ; + } +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 30 ; + } +#HO2/Hydroperhydroxyl radical +'HO2/Hydroperhydroxyl radical' = { + table2Version = 134 ; + indicatorOfParameter = 31 ; + } +#H2/Molecular hydrogen +'H2/Molecular hydrogen' = { + table2Version = 134 ; + indicatorOfParameter = 32 ; + } +#O/Oxygen atomic ground state (3P) +'O/Oxygen atomic ground state (3P)' = { + table2Version = 134 ; + indicatorOfParameter = 33 ; + } +#O1D/Oxygen atomic first singlet state +'O1D/Oxygen atomic first singlet state' = { + table2Version = 134 ; + indicatorOfParameter = 34 ; + } +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 40 ; + } +#CH3O2/Methyl peroxy radical +'CH3O2/Methyl peroxy radical' = { + table2Version = 134 ; + indicatorOfParameter = 41 ; + } +#CH3O2H/Methyl hydroperoxide +'CH3O2H/Methyl hydroperoxide' = { + table2Version = 134 ; + indicatorOfParameter = 42 ; + } +#C2H5O2/Ethyl peroxy radical +'C2H5O2/Ethyl peroxy radical' = { + table2Version = 134 ; + indicatorOfParameter = 43 ; + } +#CH3COO2/Peroxy acetyl radical +'CH3COO2/Peroxy acetyl radical' = { + table2Version = 134 ; + indicatorOfParameter = 44 ; + } +#SECC4H9O2/Buthyl peroxy radical +'SECC4H9O2/Buthyl peroxy radical' = { + table2Version = 134 ; + indicatorOfParameter = 45 ; + } +#CH3COCHO2CH3/peroxy radical from MEK +'CH3COCHO2CH3/peroxy radical from MEK' = { + table2Version = 134 ; + indicatorOfParameter = 46 ; + } +#ACETOL/acetol (hydroxy acetone) +'ACETOL/acetol (hydroxy acetone)' = { + table2Version = 134 ; + indicatorOfParameter = 47 ; + } +#CH2O2CH2OH +'CH2O2CH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 48 ; + } +#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH +'CH3CHO2CH2OH/Peroxy radical from C3H6 + OH' = { + table2Version = 134 ; + indicatorOfParameter = 49 ; + } +#MAL/CH3COCH=CHCHO +'MAL/CH3COCH=CHCHO' = { + table2Version = 134 ; + indicatorOfParameter = 50 ; + } +#MALO2/Peroxy radical from MAL + oh +'MALO2/Peroxy radical from MAL + oh' = { + table2Version = 134 ; + indicatorOfParameter = 51 ; + } +#ISRO2/Peroxy radical from isoprene + oh +'ISRO2/Peroxy radical from isoprene + oh' = { + table2Version = 134 ; + indicatorOfParameter = 52 ; + } +#ISOPROD/Peroxy radical from ISOPROD +'ISOPROD/Peroxy radical from ISOPROD' = { + table2Version = 134 ; + indicatorOfParameter = 53 ; + } +#C2H5OOH/Ethyl hydroperoxide +'C2H5OOH/Ethyl hydroperoxide' = { + table2Version = 134 ; + indicatorOfParameter = 54 ; + } +#CH3COO2H +'CH3COO2H' = { + table2Version = 134 ; + indicatorOfParameter = 55 ; + } +#OXYO2H/Hydroperoxide from OXYO2 +'OXYO2H/Hydroperoxide from OXYO2' = { + table2Version = 134 ; + indicatorOfParameter = 56 ; + } +#SECC4H9O2H/Buthyl hydroperoxide +'SECC4H9O2H/Buthyl hydroperoxide' = { + table2Version = 134 ; + indicatorOfParameter = 57 ; + } +#CH2OOHCH2OH +'CH2OOHCH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 58 ; + } +#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 +'CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2' = { + table2Version = 134 ; + indicatorOfParameter = 59 ; + } +#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 +'CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2' = { + table2Version = 134 ; + indicatorOfParameter = 60 ; + } +#MALO2H/Hydroperoxide from MALO2 + ho2 +'MALO2H/Hydroperoxide from MALO2 + ho2' = { + table2Version = 134 ; + indicatorOfParameter = 61 ; + } +#IPRO2 +'IPRO2' = { + table2Version = 134 ; + indicatorOfParameter = 62 ; + } +#XO2 +'XO2' = { + table2Version = 134 ; + indicatorOfParameter = 63 ; + } +#OXYO2/Peroxy radical from o-xylene + oh +'OXYO2/Peroxy radical from o-xylene + oh' = { + table2Version = 134 ; + indicatorOfParameter = 64 ; + } +#ISRO2H +'ISRO2H' = { + table2Version = 134 ; + indicatorOfParameter = 65 ; + } +#MVK +'MVK' = { + table2Version = 134 ; + indicatorOfParameter = 66 ; + } +#MVKO2 +'MVKO2' = { + table2Version = 134 ; + indicatorOfParameter = 67 ; + } +#MVKO2H +'MVKO2H' = { + table2Version = 134 ; + indicatorOfParameter = 68 ; + } +#BENZENE +'BENZENE' = { + table2Version = 134 ; + indicatorOfParameter = 70 ; + } +#ISNI +'ISNI' = { + table2Version = 134 ; + indicatorOfParameter = 74 ; + } +#ISNIR +'ISNIR' = { + table2Version = 134 ; + indicatorOfParameter = 75 ; + } +#ISNIRH +'ISNIRH' = { + table2Version = 134 ; + indicatorOfParameter = 76 ; + } +#MACR +'MACR' = { + table2Version = 134 ; + indicatorOfParameter = 77 ; + } +#AOH1 +'AOH1' = { + table2Version = 134 ; + indicatorOfParameter = 78 ; + } +#AOH1H +'AOH1H' = { + table2Version = 134 ; + indicatorOfParameter = 79 ; + } +#MACRO2 +'MACRO2' = { + table2Version = 134 ; + indicatorOfParameter = 80 ; + } +#MACO3H +'MACO3H' = { + table2Version = 134 ; + indicatorOfParameter = 81 ; + } +#MACOOH +'MACOOH' = { + table2Version = 134 ; + indicatorOfParameter = 82 ; + } +#CH2CCH3 +'CH2CCH3' = { + table2Version = 134 ; + indicatorOfParameter = 83 ; + } +#CH2CO2HCH3 +'CH2CO2HCH3' = { + table2Version = 134 ; + indicatorOfParameter = 84 ; + } +#BIGENE +'BIGENE' = { + table2Version = 134 ; + indicatorOfParameter = 90 ; + } +#BIGALK +'BIGALK' = { + table2Version = 134 ; + indicatorOfParameter = 91 ; + } +#TOLUENE +'TOLUENE' = { + table2Version = 134 ; + indicatorOfParameter = 92 ; + } +#CH2CHCN +'CH2CHCN' = { + table2Version = 134 ; + indicatorOfParameter = 100 ; + } +#(CH3)2NNH2/Dimetylhydrazin +'(CH3)2NNH2/Dimetylhydrazin' = { + table2Version = 134 ; + indicatorOfParameter = 101 ; + } +#CH2OC2H3Cl/Epiklorhydrin +'CH2OC2H3Cl/Epiklorhydrin' = { + table2Version = 134 ; + indicatorOfParameter = 102 ; + } +#CH2OC2/Etylenoxid +'CH2OC2/Etylenoxid' = { + table2Version = 134 ; + indicatorOfParameter = 103 ; + } +#HF/Vaetefluorid +'HF/Vaetefluorid' = { + table2Version = 134 ; + indicatorOfParameter = 105 ; + } +#Hcl/Vaeteklorid +'Hcl/Vaeteklorid' = { + table2Version = 134 ; + indicatorOfParameter = 106 ; + } +#CS2/Koldisulfid +'CS2/Koldisulfid' = { + table2Version = 134 ; + indicatorOfParameter = 107 ; + } +#CH3NH2/Metylamin +'CH3NH2/Metylamin' = { + table2Version = 134 ; + indicatorOfParameter = 108 ; + } +#SF6/Sulphurhexafloride +'SF6/Sulphurhexafloride' = { + table2Version = 134 ; + indicatorOfParameter = 110 ; + } +#HCN/Vaetecyanid +'HCN/Vaetecyanid' = { + table2Version = 134 ; + indicatorOfParameter = 111 ; + } +#COCl2/Fosgen +'COCl2/Fosgen' = { + table2Version = 134 ; + indicatorOfParameter = 112 ; + } +#H2CCHCl/Vinylklorid +'H2CCHCl/Vinylklorid' = { + table2Version = 134 ; + indicatorOfParameter = 113 ; + } +#Missing +'Missing' = { + table2Version = 134 ; + indicatorOfParameter = 255 ; + } +############### table2Version 135 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 135 ; + indicatorOfParameter = 0 ; + } +#GRG1/MOZART specie +'GRG1/MOZART specie' = { + table2Version = 135 ; + indicatorOfParameter = 1 ; + } +#GRG2/MOZART specie +'GRG2/MOZART specie' = { + table2Version = 135 ; + indicatorOfParameter = 2 ; + } +#GRG3/MOZART specie +'GRG3/MOZART specie' = { + table2Version = 135 ; + indicatorOfParameter = 3 ; + } +#GRG4/MOZART specie +'GRG4/MOZART specie' = { + table2Version = 135 ; + indicatorOfParameter = 4 ; + } +#GRG5/MOZART specie +'GRG5/MOZART specie' = { + table2Version = 135 ; + indicatorOfParameter = 5 ; + } +#VIS-340/Visibility at 340 nm +'VIS-340/Visibility at 340 nm' = { + table2Version = 135 ; + indicatorOfParameter = 100 ; + } +#VIS-355/Visibility at 355 nm +'VIS-355/Visibility at 355 nm' = { + table2Version = 135 ; + indicatorOfParameter = 101 ; + } +#VIS-380/Visibility at 380 nm +'VIS-380/Visibility at 380 nm' = { + table2Version = 135 ; + indicatorOfParameter = 102 ; + } +#VIS-440/Visibility at 440 nm +'VIS-440/Visibility at 440 nm' = { + table2Version = 135 ; + indicatorOfParameter = 103 ; + } +#VIS-500/Visibility at 500 nm +'VIS-500/Visibility at 500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 104 ; + } +#VIS-532/Visibility at 532 nm +'VIS-532/Visibility at 532 nm' = { + table2Version = 135 ; + indicatorOfParameter = 105 ; + } +#VIS-675/Visibility at 675 nm +'VIS-675/Visibility at 675 nm' = { + table2Version = 135 ; + indicatorOfParameter = 106 ; + } +#VIS-870/Visibility at 870 nm +'VIS-870/Visibility at 870 nm' = { + table2Version = 135 ; + indicatorOfParameter = 107 ; + } +#VIS-1020/Visibility at 1020 nm +'VIS-1020/Visibility at 1020 nm' = { + table2Version = 135 ; + indicatorOfParameter = 108 ; + } +#VIS-1064/Visibility at 1064 nm +'VIS-1064/Visibility at 1064 nm' = { + table2Version = 135 ; + indicatorOfParameter = 109 ; + } +#VIS-3500/Visibility at 3500 nm +'VIS-3500/Visibility at 3500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 110 ; + } +#VIS-10000/Visibility at 10000 nm +'VIS-10000/Visibility at 10000 nm' = { + table2Version = 135 ; + indicatorOfParameter = 111 ; + } +#BSCA-340/Backscatter at 340 nm +'BSCA-340/Backscatter at 340 nm' = { + table2Version = 135 ; + indicatorOfParameter = 120 ; + } +#BSCA-355/Backscatter at 355 nm +'BSCA-355/Backscatter at 355 nm' = { + table2Version = 135 ; + indicatorOfParameter = 121 ; + } +#BSCA-380/Backscatter at 380 nm +'BSCA-380/Backscatter at 380 nm' = { + table2Version = 135 ; + indicatorOfParameter = 122 ; + } +#BSCA-440/Backscatter at 440 nm +'BSCA-440/Backscatter at 440 nm' = { + table2Version = 135 ; + indicatorOfParameter = 123 ; + } +#BSCA-500/Backscatter at 500 nm +'BSCA-500/Backscatter at 500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 124 ; + } +#BSCA-532/Backscatter at 532 nm +'BSCA-532/Backscatter at 532 nm' = { + table2Version = 135 ; + indicatorOfParameter = 125 ; + } +#BSCA-675/Backscatter at 675 nm +'BSCA-675/Backscatter at 675 nm' = { + table2Version = 135 ; + indicatorOfParameter = 126 ; + } +#BSCA-870/Backscatter at 870 nm +'BSCA-870/Backscatter at 870 nm' = { + table2Version = 135 ; + indicatorOfParameter = 127 ; + } +#BSCA-1020/Backscatter at 1020 nm +'BSCA-1020/Backscatter at 1020 nm' = { + table2Version = 135 ; + indicatorOfParameter = 128 ; + } +#BSCA-1064/Backscatter at 1064 nm +'BSCA-1064/Backscatter at 1064 nm' = { + table2Version = 135 ; + indicatorOfParameter = 129 ; + } +#BSCA-3500/Backscatter at 3500 nm +'BSCA-3500/Backscatter at 3500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 130 ; + } +#BSCA-10000/Backscatter at 10000 nm +'BSCA-10000/Backscatter at 10000 nm' = { + table2Version = 135 ; + indicatorOfParameter = 131 ; + } +#EXT-340/Extinction at 340 nm +'EXT-340/Extinction at 340 nm' = { + table2Version = 135 ; + indicatorOfParameter = 140 ; + } +#EXT-355/Extinction at 355 nm +'EXT-355/Extinction at 355 nm' = { + table2Version = 135 ; + indicatorOfParameter = 141 ; + } +#EXT-380/Extinction at 380 nm +'EXT-380/Extinction at 380 nm' = { + table2Version = 135 ; + indicatorOfParameter = 142 ; + } +#EXT-440/Extinction at 440 nm +'EXT-440/Extinction at 440 nm' = { + table2Version = 135 ; + indicatorOfParameter = 143 ; + } +#EXT-500/Extinction at 500 nm +'EXT-500/Extinction at 500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 144 ; + } +#EXT-532/Extinction at 532 nm +'EXT-532/Extinction at 532 nm' = { + table2Version = 135 ; + indicatorOfParameter = 145 ; + } +#EXT-675/Extinction at 675 nm +'EXT-675/Extinction at 675 nm' = { + table2Version = 135 ; + indicatorOfParameter = 146 ; + } +#EXT-870/Extinction at 870 nm +'EXT-870/Extinction at 870 nm' = { + table2Version = 135 ; + indicatorOfParameter = 147 ; + } +#EXT-1020/Extinction at 1020 nm +'EXT-1020/Extinction at 1020 nm' = { + table2Version = 135 ; + indicatorOfParameter = 148 ; + } +#EXT-1064/Extinction at 1064 nm +'EXT-1064/Extinction at 1064 nm' = { + table2Version = 135 ; + indicatorOfParameter = 149 ; + } +#EXT-3500/Extinction at 3500 nm +'EXT-3500/Extinction at 3500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 150 ; + } +#EXT-10000/Extinction at 10000 nm +'EXT-10000/Extinction at 10000 nm' = { + table2Version = 135 ; + indicatorOfParameter = 151 ; + } +#AOD-340/Aerosol optical depth at 340 nm +'AOD-340/Aerosol optical depth at 340 nm' = { + table2Version = 135 ; + indicatorOfParameter = 160 ; + } +#AOD-355/Aerosol optical depth at 355 nm +'AOD-355/Aerosol optical depth at 355 nm' = { + table2Version = 135 ; + indicatorOfParameter = 161 ; + } +#AOD-380/Aerosol optical depth at 380 nm +'AOD-380/Aerosol optical depth at 380 nm' = { + table2Version = 135 ; + indicatorOfParameter = 162 ; + } +#AOD-440/Aerosol optical depth at 440 nm +'AOD-440/Aerosol optical depth at 440 nm' = { + table2Version = 135 ; + indicatorOfParameter = 163 ; + } +#AOD-500/Aerosol optical depth at 500 nm +'AOD-500/Aerosol optical depth at 500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 164 ; + } +#AOD-532/Aerosol optical depth at 532 nm +'AOD-532/Aerosol optical depth at 532 nm' = { + table2Version = 135 ; + indicatorOfParameter = 165 ; + } +#AOD-675/Aerosol optical depth at 675 nm +'AOD-675/Aerosol optical depth at 675 nm' = { + table2Version = 135 ; + indicatorOfParameter = 166 ; + } +#AOD-870/Aerosol optical depth at 870 nm +'AOD-870/Aerosol optical depth at 870 nm' = { + table2Version = 135 ; + indicatorOfParameter = 167 ; + } +#AOD-1020/Aerosol optical depth at 1020 nm +'AOD-1020/Aerosol optical depth at 1020 nm' = { + table2Version = 135 ; + indicatorOfParameter = 168 ; + } +#AOD-1064/Aerosol optical depth at 1064 nm +'AOD-1064/Aerosol optical depth at 1064 nm' = { + table2Version = 135 ; + indicatorOfParameter = 169 ; + } +#AOD-3500/Aerosol optical depth at 3500 nm +'AOD-3500/Aerosol optical depth at 3500 nm' = { + table2Version = 135 ; + indicatorOfParameter = 170 ; + } +#AOD-10000/Aerosol optical depth at 10000 nm +'AOD-10000/Aerosol optical depth at 10000 nm' = { + table2Version = 135 ; + indicatorOfParameter = 171 ; + } +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + table2Version = 135 ; + indicatorOfParameter = 208 ; + } +#Rain factor +'Rain factor' = { + table2Version = 135 ; + indicatorOfParameter = 209 ; + } +#Total column integrated rain +'Total column integrated rain' = { + table2Version = 135 ; + indicatorOfParameter = 210 ; + } +#Total column integrated snow +'Total column integrated snow' = { + table2Version = 135 ; + indicatorOfParameter = 211 ; + } +#Total water precipitation +'Total water precipitation' = { + table2Version = 135 ; + indicatorOfParameter = 212 ; + } +#Total snow precipitation +'Total snow precipitation' = { + table2Version = 135 ; + indicatorOfParameter = 213 ; + } +#Total column water (Vertically integrated total water) +'Total column water (Vertically integrated total water)' = { + table2Version = 135 ; + indicatorOfParameter = 214 ; + } +#Large scale precipitation rate +'Large scale precipitation rate' = { + table2Version = 135 ; + indicatorOfParameter = 215 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + table2Version = 135 ; + indicatorOfParameter = 216 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + table2Version = 135 ; + indicatorOfParameter = 217 ; + } +#Total snowfall rate +'Total snowfall rate' = { + table2Version = 135 ; + indicatorOfParameter = 218 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + table2Version = 135 ; + indicatorOfParameter = 219 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + table2Version = 135 ; + indicatorOfParameter = 220 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 135 ; + indicatorOfParameter = 221 ; + } +#Snow evaporation +'Snow evaporation' = { + table2Version = 135 ; + indicatorOfParameter = 222 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + table2Version = 135 ; + indicatorOfParameter = 223 ; + } +#Rain precipitation rate +'Rain precipitation rate' = { + table2Version = 135 ; + indicatorOfParameter = 224 ; + } +#Snow precipitation rate +'Snow precipitation rate' = { + table2Version = 135 ; + indicatorOfParameter = 225 ; + } +#Freezing rain precipitation rate +'Freezing rain precipitation rate' = { + table2Version = 135 ; + indicatorOfParameter = 226 ; + } +#Ice pellets precipitation rate +'Ice pellets precipitation rate' = { + table2Version = 135 ; + indicatorOfParameter = 227 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + table2Version = 135 ; + indicatorOfParameter = 228 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + table2Version = 135 ; + indicatorOfParameter = 229 ; + } +#Specific rain water content +'Specific rain water content' = { + table2Version = 135 ; + indicatorOfParameter = 230 ; + } +#Specific snow water content +'Specific snow water content' = { + table2Version = 135 ; + indicatorOfParameter = 231 ; + } +#u-component of wind (gust) +'u-component of wind (gust)' = { + table2Version = 135 ; + indicatorOfParameter = 232 ; + } +#v-component of wind (gust) +'v-component of wind (gust)' = { + table2Version = 135 ; + indicatorOfParameter = 233 ; + } +#Vertical speed shear +'Vertical speed shear' = { + table2Version = 135 ; + indicatorOfParameter = 234 ; + } +#Horizontal momentum flux +'Horizontal momentum flux' = { + table2Version = 135 ; + indicatorOfParameter = 235 ; + } +#u-component storm motion +'u-component storm motion' = { + table2Version = 135 ; + indicatorOfParameter = 236 ; + } +#v-component storm motion +'v-component storm motion' = { + table2Version = 135 ; + indicatorOfParameter = 237 ; + } +#Drag coefficient +'Drag coefficient' = { + table2Version = 135 ; + indicatorOfParameter = 238 ; + } +#Eta coordinate vertical velocity +'Eta coordinate vertical velocity' = { + table2Version = 135 ; + indicatorOfParameter = 239 ; + } +#Altimeter setting +'Altimeter setting' = { + table2Version = 135 ; + indicatorOfParameter = 240 ; + } +#Thickness +'Thickness' = { + table2Version = 135 ; + indicatorOfParameter = 241 ; + } +#Pressure altitude +'Pressure altitude' = { + table2Version = 135 ; + indicatorOfParameter = 242 ; + } +#Density altitude +'Density altitude' = { + table2Version = 135 ; + indicatorOfParameter = 243 ; + } +#5-wave geopotential height +'5-wave geopotential height' = { + table2Version = 135 ; + indicatorOfParameter = 244 ; + } +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + table2Version = 135 ; + indicatorOfParameter = 245 ; + } +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + table2Version = 135 ; + indicatorOfParameter = 246 ; + } +#Planetary boundary layer height +'Planetary boundary layer height' = { + table2Version = 135 ; + indicatorOfParameter = 247 ; + } +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + table2Version = 135 ; + indicatorOfParameter = 248 ; + } +#Standard deviation of sub-gridscale orography +'Standard deviation of sub-gridscale orography' = { + table2Version = 135 ; + indicatorOfParameter = 249 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + table2Version = 135 ; + indicatorOfParameter = 250 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + table2Version = 135 ; + indicatorOfParameter = 251 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + table2Version = 135 ; + indicatorOfParameter = 252 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + table2Version = 135 ; + indicatorOfParameter = 253 ; + } +#Natural logarithm of pressure in Pa +'Natural logarithm of pressure in Pa' = { + table2Version = 135 ; + indicatorOfParameter = 254 ; + } +#Missing +'Missing' = { + table2Version = 135 ; + indicatorOfParameter = 255 ; + } +############### table2Version 136 ############ +############### Strang ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 136 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pressure' = { + table2Version = 136 ; + indicatorOfParameter = 1 ; + } +#Temperature +'Temperature' = { + table2Version = 136 ; + indicatorOfParameter = 11 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 136 ; + indicatorOfParameter = 51 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 136 ; + indicatorOfParameter = 54 ; + } +#Snow depth +'Snow depth' = { + table2Version = 136 ; + indicatorOfParameter = 66 ; + } +#Total cloud cover +'Total cloud cover' = { + table2Version = 136 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 136 ; + indicatorOfParameter = 73 ; + } +#Probability for significant cloud base +'Probability for significant cloud base' = { + table2Version = 136 ; + indicatorOfParameter = 77 ; + } +#Significant cloud base +'Significant cloud base' = { + table2Version = 136 ; + indicatorOfParameter = 78 ; + } +#Significant cloud top +'Significant cloud top' = { + table2Version = 136 ; + indicatorOfParameter = 79 ; + } +#Albedo (lev 0=global radiation lev 1=UV radiation) +'Albedo (lev 0=global radiation lev 1=UV radiation)' = { + table2Version = 136 ; + indicatorOfParameter = 84 ; + } +#Ice concentration +'Ice concentration' = { + table2Version = 136 ; + indicatorOfParameter = 91 ; + } +#CIE-weighted UV irradiance +'CIE-weighted UV irradiance' = { + table2Version = 136 ; + indicatorOfParameter = 116 ; + } +#Global irradiance +'Global irradiance' = { + table2Version = 136 ; + indicatorOfParameter = 117 ; + } +#Beam normal irradiance +'Beam normal irradiance' = { + table2Version = 136 ; + indicatorOfParameter = 118 ; + } +#Sunshine duration +'Sunshine duration' = { + table2Version = 136 ; + indicatorOfParameter = 119 ; + } +#PAR +'PAR' = { + table2Version = 136 ; + indicatorOfParameter = 120 ; + } +#Accumulated precipitation, 1 hours +'Accumulated precipitation, 1 hours' = { + table2Version = 136 ; + indicatorOfParameter = 165 ; + } +#Accumulated fresh snow, 1 hours +'Accumulated fresh snow, 1 hours' = { + table2Version = 136 ; + indicatorOfParameter = 175 ; + } +#Total ozone +'Total ozone' = { + table2Version = 136 ; + indicatorOfParameter = 206 ; + } +#Missing +'Missing' = { + table2Version = 136 ; + indicatorOfParameter = 255 ; + } +############### table2Version 137 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 137 ; + indicatorOfParameter = 0 ; + } +#Concentration of SOX, excluding seasalt, in air +'Concentration of SOX, excluding seasalt, in air' = { + table2Version = 137 ; + indicatorOfParameter = 1 ; + } +#Drydeposition of SOX, excluding seasalt, mixed gound +'Drydeposition of SOX, excluding seasalt, mixed gound' = { + table2Version = 137 ; + indicatorOfParameter = 2 ; + } +#Drydeposition of SOX, excluding seasalt, Pasture +'Drydeposition of SOX, excluding seasalt, Pasture' = { + table2Version = 137 ; + indicatorOfParameter = 3 ; + } +#Drydeposition of SOX, excluding seasalt, Arable +'Drydeposition of SOX, excluding seasalt, Arable' = { + table2Version = 137 ; + indicatorOfParameter = 4 ; + } +#Drydeposition of SOX, excluding seasalt, Beach Oak +'Drydeposition of SOX, excluding seasalt, Beach Oak' = { + table2Version = 137 ; + indicatorOfParameter = 5 ; + } +#Drydeposition of SOX, excluding seasalt, Deciduous +'Drydeposition of SOX, excluding seasalt, Deciduous' = { + table2Version = 137 ; + indicatorOfParameter = 6 ; + } +#Drydeposition of SOX, excluding seasalt, Spruce +'Drydeposition of SOX, excluding seasalt, Spruce' = { + table2Version = 137 ; + indicatorOfParameter = 7 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 10 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 11 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 12 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 13 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 14 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 15 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 16 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 17 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 20 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 21 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 22 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 23 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 24 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 25 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 26 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 27 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 30 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 31 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 32 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 33 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 34 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 35 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 36 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 37 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 40 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 41 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 42 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 43 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 44 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 45 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 46 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 47 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 50 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 51 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 52 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 53 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 54 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 55 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 56 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 57 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 60 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 61 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 62 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 63 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 64 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 65 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 66 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 67 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 70 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 71 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 72 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 73 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 74 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 75 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 76 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 77 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 100 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 101 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 102 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 103 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 104 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 105 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 106 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 107 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 110 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 111 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 112 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 113 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 114 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 115 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 116 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 117 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 120 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 121 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 122 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 123 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 124 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 125 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 126 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 127 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'Drydeposition of SOX, excluding seasalt, Pine' = { + table2Version = 137 ; + indicatorOfParameter = 130 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'Drydeposition of SOX, excluding seasalt, Wetland' = { + table2Version = 137 ; + indicatorOfParameter = 131 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'Drydeposition of SOX, excluding seasalt, Mountain' = { + table2Version = 137 ; + indicatorOfParameter = 132 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'Drydeposition of SOX, excluding seasalt, Urban' = { + table2Version = 137 ; + indicatorOfParameter = 133 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'Drydeposition of SOX, excluding seasalt, Water' = { + table2Version = 137 ; + indicatorOfParameter = 134 ; + } +#Wetdeposition of SOX, excluding seasalt +'Wetdeposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 135 ; + } +#Total deposition of SOX, excluding seasalt +'Total deposition of SOX, excluding seasalt' = { + table2Version = 137 ; + indicatorOfParameter = 136 ; + } +#Concentration of SOX in air +'Concentration of SOX in air' = { + table2Version = 137 ; + indicatorOfParameter = 137 ; + } +#Missing +'Missing' = { + table2Version = 137 ; + indicatorOfParameter = 255 ; + } +############### table2Version 140 ############ +############### Blixtlokalisering ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 140 ; + indicatorOfParameter = 0 ; + } +#Cloud to ground discharge count +'Cloud to ground discharge count' = { + table2Version = 140 ; + indicatorOfParameter = 1 ; + } +#Cloud to cloud discharge count +'Cloud to cloud discharge count' = { + table2Version = 140 ; + indicatorOfParameter = 2 ; + } +#Total discharge count +'Total discharge count' = { + table2Version = 140 ; + indicatorOfParameter = 3 ; + } +#Cloud to ground accumulated absolute peek current +'Cloud to ground accumulated absolute peek current' = { + table2Version = 140 ; + indicatorOfParameter = 4 ; + } +#Cloud to cloud accumulated absolute peek current +'Cloud to cloud accumulated absolute peek current' = { + table2Version = 140 ; + indicatorOfParameter = 5 ; + } +#Total accumulated absolute peek current +'Total accumulated absolute peek current' = { + table2Version = 140 ; + indicatorOfParameter = 6 ; + } +#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) +'Significant cloud to ground discharge count (discharges with absolute peek current above 100kA)' = { + table2Version = 140 ; + indicatorOfParameter = 7 ; + } +#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) +'Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA)' = { + table2Version = 140 ; + indicatorOfParameter = 8 ; + } +#Significant total discharge count (discharges with absolute peek current above 100kA) +'Significant total discharge count (discharges with absolute peek current above 100kA)' = { + table2Version = 140 ; + indicatorOfParameter = 9 ; + } +#Missing +'Missing' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +############### table2Version 150 ############ +############### Hirlam postpr ############ +################################################# +#Reserved +'Reserved ' = { + table2Version = 150 ; + indicatorOfParameter = 0 ; + } +#Evaporation Penman formula +'Evaporation Penman formula' = { + table2Version = 150 ; + indicatorOfParameter = 57 ; + } +#Spray weather recomendation +'Spray weather recomendation' = { + table2Version = 150 ; + indicatorOfParameter = 58 ; + } +#Missing +'Missing' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +############### table2Version 151 ############ +############### ECMWF postpr ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 151 ; + indicatorOfParameter = 0 ; + } +#Probability total precipitation between 1 and 10 mm +'Probability total precipitation between 1 and 10 mm' = { + table2Version = 151 ; + indicatorOfParameter = 1 ; + } +#Probability total precipitation between 10 and 50 mm +'Probability total precipitation between 10 and 50 mm' = { + table2Version = 151 ; + indicatorOfParameter = 2 ; + } +#Probability total precipitation more than 50 mm +'Probability total precipitation more than 50 mm' = { + table2Version = 151 ; + indicatorOfParameter = 3 ; + } +#Evaporation Penman formula +'Evaporation Penman formula' = { + table2Version = 151 ; + indicatorOfParameter = 57 ; + } +#Missing +'Missing' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +### HARMONIE tables ### +#Absolute divergence +'Absolute divergence' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Surface aerosol soot (carbon) +'Surface aerosol soot (carbon)' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'Surface aerosol desert' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Surface aerosol land +'Surface aerosol land' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol sea +'Surface aerosol sea' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Albedo +'Albedo' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Albedo of bare ground +'Albedo of bare ground ' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'Albedo of vegetation ' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#A Ozone +'A Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#Analysed RMS of PHI (CANARI) +'Analysed RMS of PHI (CANARI)' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Snow albedo +'Snow albedo' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Anisotropy coeff of topography +'Anisotropy coeff of topography ' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#B Ozone +'B Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#CAPE out of the model +'CAPE out of the model' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#Cloud base +'Cloud base' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Cloud ice water content +'Cloud ice water content' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Fraction of clay within soil +'Fraction of clay within soil ' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#C Ozone +'C Ozone' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Convective rain +'Convective rain' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Convective snowfall +'Convective snowfall' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#LW net clear sky rad +'LW net clear sky rad' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#SW net clear sky rad +'SW net clear sky rad' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#Cloud top +'Cloud top' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Cloud water +'Cloud water' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Divergence +'Divergence' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Density +'Density' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Direction of current +'Direction of current' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Downdraft mesh fraction +'Downdraft mesh fraction' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Downdraft omega +'Downdraft omega' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Direction of main axis of topography +'Direction of main axis of topography ' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Duration of total precipitation +'Duration of total precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Dominant vegetation index +'Dominant vegetation index ' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Evaporation +'Evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Gust +'Gust' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Forecast RMS of PHI (CANARI) +'Forecast RMS of PHI (CANARI)' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#Fraction of urban land +'Fraction of urban land' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Graupel +'Graupel' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Gravity wave stress U-comp +'Gravity wave stress U-comp' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'Gravity wave stress V-comp' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Hail +'Hail' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Ice cover (1=land, 0=sea) +'Ice cover (1=land, 0=sea)' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Icing index +'Icing index' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Image data +'Image data' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Leaf area index +'Leaf area index ' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Lightning +'Lightning' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; + } +#Latent heat flux through evaporation +'Latent heat flux through evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Latent Heat Sublimation +'Latent Heat Sublimation' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#large scale precipitation (water) +'large scale precipitation (water)' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#MOCON out of the model +'MOCON out of the model ' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Mean direction of primary swell +'Mean direction of primary swell' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Mean period of primary swell +'Mean period of primary swell' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Surface downward moon radiation +'Surface downward moon radiation' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#Mask of significant cloud amount +'Mask of significant cloud amount' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net short-wave radiationflux(atmosph.top) +'Net short-wave radiationflux(atmosph.top)' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Pressure departure +'Pressure departure' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Pressure +'Pressure' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Precipitation Type +'Precipitation Type' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'Pseudo satellite image: cloud top temperature (infrared)' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'Pseudo satellite image: cloud water reflectivity (visible)' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Pseudo satellite image: water vapour Tb +'Pseudo satellite image: water vapour Tb' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'Pseudo satellite image: water vapour Tb + correction for clouds' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Rain +'Rain' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Simulated reflectivity +'Simulated reflectivity ' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Resistance to evapotransiration +'Resistance to evapotransiration ' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'Minimum relative moisture at 2 meters' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'Maximum relative moisture at 2 meters' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Runoff +'Runoff' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Snow density +'Snow density' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Salinity +'Salinity' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Surface emissivity +'Surface emissivity ' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Snow history +'Snow history' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#Soil depth +'Soil depth' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Fraction of sand within soil +'Fraction of sand within soil ' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Stomatal minimum resistance +'Stomatal minimum resistance ' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Snow melt +'Snow melt' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Snow +'Snow' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Snow Sublimation +'Snow Sublimation' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Speed of current +'Speed of current' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#Stratiform rain +'Stratiform rain' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Surface roughness * g +'Surface roughness * g' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Standard deviation of orography * g +'Standard deviation of orography * g ' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Stream function +'Stream function' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Secondary wave period +'Secondary wave period' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Soil wetness +'Soil wetness' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Temperature +'Temperature' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#TKE +'TKE' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Total water vapour +'Total water vapour' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Total solid precipitation +'Total solid precipitation' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#U component of wind +'U component of wind' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#U-component of current +'U-component of current ' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Gust, u-component +'Gust, u-component' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#Updraft mesh fraction +'Updraft mesh fraction' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Updraft omega +'Updraft omega' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#V component of wind +'V component of wind' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#V-component of current +'V-component of current ' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Vertical Divergence +'Vertical Divergence' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Vegetation fraction +'Vegetation fraction' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Gust, v-component +'Gust, v-component' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Visibility +'Visibility' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Water on canopy (Interception content) +'Water on canopy (Interception content)' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Water on canopy (Interception content) +'Water on canopy (Interception content)' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Wind direction +'Wind direction' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Water evaporation +'Water evaporation' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Wind speed +'Wind speed' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#Water temperature +'Water temperature' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#AROME hail diagnostic +'AROME hail diagnostic' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Geopotential +'Geopotential' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Thermal roughness length * g +'Thermal roughness length * g ' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eswi/paramId.def b/eccodes/definitions/grib1/localConcepts/eswi/paramId.def new file mode 100644 index 00000000..5c9738db --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/paramId.def @@ -0,0 +1,5580 @@ +############### table2Version 1 ############ +############### WMO/Hirlam ############ +################################################# +#Reserved +'82001000' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'82001001' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to MSL +'82001002' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'82001003' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'82001004' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'82001005' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'82001006' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'82001007' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'82001008' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'82001009' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total ozone +'82001010' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'82001011' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'82001012' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'82001013' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'82001014' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'82001015' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'82001016' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'82001017' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'82001018' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'82001019' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'82001020' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar Spectra (1) +'82001021' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar Spectra (2) +'82001022' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar Spectra (3) +'82001023' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'82001024' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'82001025' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'82001026' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'82001027' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave Spectra (1) +'82001028' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave Spectra (2) +'82001029' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave Spectra (3) +'82001030' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'82001031' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'82001032' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'82001033' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'82001034' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'82001035' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'82001036' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'82001037' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coord. vertical velocity +'82001038' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'82001039' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Geometric Vertical velocity +'82001040' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'82001041' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'82001042' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'82001043' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'82001044' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'82001045' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'82001046' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'82001047' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'82001048' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#u-component of current +'82001049' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#v-component of current +'82001050' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'82001051' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'82001052' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'82001053' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'82001054' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'82001055' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'82001056' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'82001057' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud Ice +'82001058' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'82001059' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'82001060' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'82001061' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'82001062' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'82001063' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snowfall rate water equivalent +'82001064' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equiv. of accum. snow depth +'82001065' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'82001066' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'82001067' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'82001068' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'82001069' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'82001070' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'82001071' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'82001072' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'82001073' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'82001074' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'82001075' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'82001076' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'82001077' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snow +'82001078' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snow +'82001079' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water Temperature +'82001080' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'82001081' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea level from mean +'82001082' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'82001083' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'82001084' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'82001085' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'82001086' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'82001087' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'82001088' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'82001089' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run off +'82001090' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'82001091' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'82001092' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'82001093' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'82001094' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#u-component of ice drift +'82001095' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#v-component of ice drift +'82001096' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'82001097' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'82001098' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'82001099' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Significant height of combined wind waves and swell +'82001100' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'82001101' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'82001102' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'82001103' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'82001104' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'82001105' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'82001106' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'82001107' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'82001108' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'82001109' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'82001110' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short wave radiation flux (surface) +'82001111' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long wave radiation flux (surface) +'82001112' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short wave radiation flux (top of atmos.) +'82001113' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long wave radiation flux (top of atmos.) +'82001114' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'82001115' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'82001116' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'82001117' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'82001118' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'82001119' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'82001120' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat net flux +'82001121' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat net flux +'82001122' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'82001123' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u component +'82001124' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v component +'82001125' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'82001126' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'82001127' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'82001128' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Humidity tendencies +'82001129' = { + table2Version = 1 ; + indicatorOfParameter = 129 ; + } +#Radiation at top of atmosphere +'82001130' = { + table2Version = 1 ; + indicatorOfParameter = 130 ; + } +#Cloud top temperature, infrared +'82001131' = { + table2Version = 1 ; + indicatorOfParameter = 131 ; + } +#Water vapor brightness temperature +'82001132' = { + table2Version = 1 ; + indicatorOfParameter = 132 ; + } +#Water vapor brightness temperature, correction +'82001133' = { + table2Version = 1 ; + indicatorOfParameter = 133 ; + } +#Cloud water reflectivity +'82001134' = { + table2Version = 1 ; + indicatorOfParameter = 134 ; + } +#Maximum wind +'82001135' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Minimum wind +'82001136' = { + table2Version = 1 ; + indicatorOfParameter = 136 ; + } +#Integrated cloud condensate +'82001137' = { + table2Version = 1 ; + indicatorOfParameter = 137 ; + } +#Snow depth, cold snow +'82001138' = { + table2Version = 1 ; + indicatorOfParameter = 138 ; + } +#Open land snow depth +'82001139' = { + table2Version = 1 ; + indicatorOfParameter = 139 ; + } +#Temperature over land +'82001140' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'82001141' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land +'82001142' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land +'82001143' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'82001160' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'82001161' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter RSHA +'82001162' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter RSHB +'82001163' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Momentum vegetation roughness +'82001164' = { + table2Version = 1 ; + indicatorOfParameter = 164 ; + } +#Surface slope +'82001165' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'82001166' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'82001167' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Heat roughness +'82001168' = { + table2Version = 1 ; + indicatorOfParameter = 168 ; + } +#Albedo with solar angle correction +'82001169' = { + table2Version = 1 ; + indicatorOfParameter = 169 ; + } +#Soil wetness index +'82001189' = { + table2Version = 1 ; + indicatorOfParameter = 189 ; + } +#Snow albedo +'82001190' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'82001191' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'82001192' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'82001193' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Fraction of surface type +'82001194' = { + table2Version = 1 ; + indicatorOfParameter = 194 ; + } +#Soil type +'82001195' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'82001196' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'82001197' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'82001198' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'82001199' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'82001200' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Standard deviation of mesoscale orography +'82001204' = { + table2Version = 1 ; + indicatorOfParameter = 204 ; + } +#Anisotrophic mesoscale orography +'82001205' = { + table2Version = 1 ; + indicatorOfParameter = 205 ; + } +#X-angle of mesoscale orography +'82001206' = { + table2Version = 1 ; + indicatorOfParameter = 206 ; + } +#Maximum slope of smallest scale orography +'82001208' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'82001209' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Ice existence +'82001210' = { + table2Version = 1 ; + indicatorOfParameter = 210 ; + } +#Lifting condensation level +'82001222' = { + table2Version = 1 ; + indicatorOfParameter = 222 ; + } +#Level of neutral buoyancy +'82001223' = { + table2Version = 1 ; + indicatorOfParameter = 223 ; + } +#Convective inhibation +'82001224' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } +#CAPE +'82001225' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Precipitation type +'82001226' = { + table2Version = 1 ; + indicatorOfParameter = 226 ; + } +#Friction velocity +'82001227' = { + table2Version = 1 ; + indicatorOfParameter = 227 ; + } +#Wind gust +'82001228' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Analysed 3-hour precipitation (-3h/0h) +'82001250' = { + table2Version = 1 ; + indicatorOfParameter = 250 ; + } +#Analysed 12-hour precipitation (-12h/0h) +'82001251' = { + table2Version = 1 ; + indicatorOfParameter = 251 ; + } +#Missing +'82001255' = { + table2Version = 1 ; + indicatorOfParameter = 255 ; + } +############### table2Version 128 ############ +############### Match ############ +################################################# +#Reserved +'82128000' = { + table2Version = 128 ; + indicatorOfParameter = 0 ; + } +# SO2/SO2 +'82128001' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'82128002' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +# DMS/DMS +'82128003' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +# MSA/MSA +'82128004' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +# H2S/H2S +'82128005' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +# NH4SO4/(NH4)1.5H0.5SO4 +'82128006' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +# NH4HSO4/NH4HSO4 +'82128007' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +# NH42SO4/(NH4)2SO4 +'82128008' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +# SULFATE/SULFATE +'82128009' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +# SO2_AQ/SO2 in aqueous phase +'82128010' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +# SO4_AQ/sulfate in aqueous phase +'82128011' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +# LRT_SO2_S/long-range SO2_S +'82128023' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +# LRT_SO4_S/LRT-contriubtion to SO4_S +'82128024' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +# LRT_SOX_S/LRT-contriubtion to SO4_S +'82128025' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +# XSOX_S/excess SOX (corrected for sea salt as sulfur) +'82128026' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +# SO2_S/SO2 (as sulphur) +'82128027' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +# SO4_S/SO4 (as sulphur) +'82128028' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'82128029' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +# NO +'82128030' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +# NO2/NO2 +'82128031' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +# HNO3/HNO3 +'82128032' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +# NO3(-1)/NO3(-1) (nitrate) +'82128033' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +# NH4NO3/NH4NO3 +'82128034' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +# NITRATE/NITRATE +'82128035' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +# PNO3/(COARSE) NITRATE +'82128036' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +# LRT_NOY_N/long-range NOY_N +'82128037' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +# NO3_N/NO3 as N +'82128038' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +# HNO3_N/HNO3 as N +'82128039' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +# LRT_NO3_N/long-range NO3_N +'82128040' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +# LRT_HNO3_N/long-range HNO3_N +'82128041' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +# LRT_NO2_N/long-range NO2_N +'82128042' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +# LRT_NOZ_N/long-range NOZ_N +'82128043' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +# NOX/NOX as NO2 +'82128044' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +# NO_N/NO as N +'82128045' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +# NO2_N/NO2 as N +'82128046' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'82128047' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'82128048' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +# NOZ_N/NOy-NOx (as nitrogen) +'82128049' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +# NH3/NH3 +'82128050' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +# NH4(+1)/NH4 +'82128051' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +# AMMONIUM/AMMONIUM +'82128052' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +# NH3_N/NH3 (as nitrogen) +'82128054' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +# NH4_N/NH4 (as nitrogen) +'82128055' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +# LRT_NH3_N/long-range NH3_N +'82128056' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +# LRT_NH4_N/long-range NH4_N +'82128057' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +# LRT_NHX_N/long-range NHX_N +'82128058' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'82128059' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +# O3 +'82128060' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +# H2O2/H2O2 +'82128061' = { + table2Version = 128 ; + indicatorOfParameter = 61 ; + } +# OH/OH +'82128062' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +# O3_AQ/O3 in aqueous phase +'82128063' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +# H2O2_AQ/H2O2 in aqueous phase +'82128064' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +# OX/Ox=O3+NO2 +'82128065' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +# C +'82128070' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +# CO/CO +'82128071' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +# CO2/CO2 +'82128072' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +# CH4/CH4 +'82128073' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +# OC/Organic carbon (particles) +'82128074' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +# EC/Elementary carbon (particles) +'82128075' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +# CF6 +'82128080' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +# PMCH/PMCH +'82128081' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +# PMCP/PMCP +'82128082' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +# TRACER/Tracer +'82128083' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +# Inert/Inert +'82128084' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +# H3 +'82128085' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +# Ar41/Ar41 +'82128086' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +# Kr85/Kr85 +'82128087' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +# Kr88/Kr88 +'82128088' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +# Xe131/Xe131 +'82128091' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +# Xe133/Xe133 +'82128092' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +# Rn222/Rn222 +'82128093' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +# I131/I131 +'82128095' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +# I132/I132 +'82128096' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +# I133/I133 +'82128097' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +# I135/I135 +'82128098' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +# Sr90 +'82128100' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +# Co60/Co60 +'82128101' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +# Ru103/Ru103 +'82128102' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +# Ru106/Ru106 +'82128103' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +# Cs134/Cs134 +'82128104' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +# Cs137/Cs137 +'82128105' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +# Ra223/Ra123 +'82128106' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +# Ra228/Ra228 +'82128108' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +# Zr95 +'82128110' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +# Nb95/Nb95 +'82128111' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +# Ce144/Ce144 +'82128112' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +# Np238/Np238 +'82128113' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +# Np239/Np239 +'82128114' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +# Pu241/Pu241 +'82128115' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +# Pb210/Pb210 +'82128116' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +# ALL +'82128119' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +# NACL +'82128120' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +# SODIUM/Na+ +'82128121' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +# MAGNESIUM/Mg++ +'82128122' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +# POTASSIUM/K+ +'82128123' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +# CALCIUM/Ca++ +'82128124' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +# XMG/excess Mg++ (corrected for sea salt) +'82128125' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +# XK/excess K+ (corrected for sea salt) +'82128126' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +# XCA/excess Ca++ (corrected for sea salt) +'82128128' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +# Cl2/Cloride +'82128140' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +# PMFINE +'82128160' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +# PMCOARSE/Coarse particles +'82128161' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +# DUST/Dust (particles) +'82128162' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +# PNUMBER/Number concentration +'82128163' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +# PRADIUS/Particle radius +'82128164' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +# PSURFACE/Particle surface conc +'82128165' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +# PMASS/Particle mass conc +'82128166' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +# PM10/PM10 particles +'82128167' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +# PSOX/Particulate sulfate +'82128168' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +# PNOX/Particulate nitrate +'82128169' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +# PNHX/Particulate ammonium +'82128170' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +# PPMFINE/Primary emitted fine particles +'82128171' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +# PPM10/Primary emitted particles +'82128172' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +# SOA/Secondary Organic Aerosol +'82128173' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +# PM2.5/PM2.5 particles +'82128174' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +# PM/Total particulate matter +'82128175' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +# BIRCH_POLLEN/Birch pollen +'82128180' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +# KZ +'82128200' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +# L/Monin-Obukhovs length [m] +'82128201' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +# U*/Friction velocity [m/s] +'82128202' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +# W*/Convective velocity scale [m/s] +'82128203' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +# Z-D/Z0 minus displacement length [m] +'82128204' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +# SURFTYPE/Surface type (see link{OCTET45}) +'82128210' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +# LAI/Leaf area index +'82128211' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +# SOILTYPE/Soil type +'82128212' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +# SSALB/Single scattering albodo [1] +'82128213' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +# ASYMPAR/Asymmetry parameter +'82128214' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +# VIS/Visibility [m] +'82128215' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +# EXT/Extinction [1/m] +'82128216' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +# BSCA/Backscattering coeff [1/m/sr] +'82128217' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +# AOD/Aerosol opt depth [1] +'82128218' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +# DAOD/AOD per layer [1] +'82128219' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +# CONV_TIED +'82128220' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +# CONV_BOT/Convective cloud bottom (unit?) +'82128221' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +# CONV_TOP/Convective cloud top (unit?) +'82128222' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +# DXDY/Gridsize [m2] +'82128223' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +# EMIS/Sectoral emissions +'82128240' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +# LONG/Longitude +'82128241' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +# LAT/Latitude +'82128242' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Missing +'82128255' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +############### table2Version 129 ############ +############### Mesan ############ +################################################# +#Reserved +'82129000' = { + table2Version = 129 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'82129001' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Temperature +'82129011' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#Wet bulb temperature +'82129012' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#24 hour mean of 2 meter temperature +'82129013' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#Maximum temperature +'82129015' = { + table2Version = 129 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'82129016' = { + table2Version = 129 ; + indicatorOfParameter = 16 ; + } +#Visibility +'82129020' = { + table2Version = 129 ; + indicatorOfParameter = 20 ; + } +#Wind gusts +'82129032' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'82129033' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'82129034' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'82129052' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Total cloud cover +'82129071' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'82129073' = { + table2Version = 129 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'82129074' = { + table2Version = 129 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'82129075' = { + table2Version = 129 ; + indicatorOfParameter = 75 ; + } +#Fraction of significant clouds +'82129077' = { + table2Version = 129 ; + indicatorOfParameter = 77 ; + } +#Cloud base of significant clouds +'82129078' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Cloud top of significant clouds +'82129079' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Type of precipitation +'82129145' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Sort of precipitation +'82129146' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#6 hour precipitation +'82129161' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#12 hour precipitation +'82129162' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#18 hour precipitation +'82129163' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#24 hour precipitation +'82129164' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#1 hour precipitation +'82129165' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#2 hour precipitation +'82129166' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#3 hour precipitation +'82129167' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#9 hour precipitation +'82129168' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#15 hour precipitation +'82129169' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#6 hour fresh snow cover +'82129171' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#12 hour fresh snow cover +'82129172' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#18 hour fresh snow cover +'82129173' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#24 hour fresh snow cover +'82129174' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#1 hour fresh snow cover +'82129175' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#2 hour fresh snow cover +'82129176' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#3 hour fresh snow cover +'82129177' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#9 hour fresh snow cover +'82129178' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#15 hour fresh snow cover +'82129179' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#6 hour precipitation, corrected +'82129181' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#12 hour precipitation, corrected +'82129182' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#18 hour precipitation, corrected +'82129183' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#24 hour precipitation, corrected +'82129184' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#1 hour precipitation, corrected +'82129185' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#2 hour precipitation, corrected +'82129186' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#3 hour precipitation, corrected +'82129187' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#9 hour precipitation, corrected +'82129188' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#15 hour precipitation, corrected +'82129189' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#6 hour fresh snow cover, corrected +'82129191' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#12 hour fresh snow cover, corrected +'82129192' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#18 hour fresh snow cover, corrected +'82129193' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#24 hour fresh snow cover, corrected +'82129194' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#1 hour fresh snow cover, corrected +'82129195' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#2 hour fresh snow cover, corrected +'82129196' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#3 hour fresh snow cover, corrected +'82129197' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#9 hour fresh snow cover, corrected +'82129198' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#15 hour fresh snow cover, corrected +'82129199' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#6 hour precipitation, standardized +'82129201' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#12 hour precipitation, standardized +'82129202' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#18 hour precipitation, standardized +'82129203' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#24 hour precipitation, standardized +'82129204' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#1 hour precipitation, standardized +'82129205' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#2 hour precipitation, standardized +'82129206' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#3 hour precipitation, standardized +'82129207' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#9 hour precipitation, standardized +'82129208' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#15 hour precipitation, standardized +'82129209' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#6 hour fresh snow cover, standardized +'82129211' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#12 hour fresh snow cover, standardized +'82129212' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#18 hour fresh snow cover, standardized +'82129213' = { + table2Version = 129 ; + indicatorOfParameter = 213 ; + } +#24 hour fresh snow cover, standardized +'82129214' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#1 hour fresh snow cover, standardized +'82129215' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#2 hour fresh snow cover, standardized +'82129216' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#3 hour fresh snow cover, standardized +'82129217' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#9 hour fresh snow cover, standardized +'82129218' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#15 hour fresh snow cover, standardized +'82129219' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#6 hour precipitation, corrected and standardized +'82129221' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#12 hour precipitation, corrected and standardized +'82129222' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#18 hour precipitation, corrected and standardized +'82129223' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#24 hour precipitation, corrected and standardized +'82129224' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#1 hour precipitation, corrected and standardized +'82129225' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#2 hour precipitation, corrected and standardized +'82129226' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#3 hour precipitation, corrected and standardized +'82129227' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#9 hour precipitation, corrected and standardized +'82129228' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#15 hour precipitation, corrected and standardized +'82129229' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#6 hour fresh snow cover, corrected and standardized +'82129231' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#12 hour fresh snow cover, corrected and standardized +'82129232' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#18 hour fresh snow cover, corrected and standardized +'82129233' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#24 hour fresh snow cover, corrected and standardized +'82129234' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#1 hour fresh snow cover, corrected and standardized +'82129235' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#2 hour fresh snow cover, corrected and standardized +'82129236' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#3 hour fresh snow cover, corrected and standardized +'82129237' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#9 hour fresh snow cover, corrected and standardized +'82129238' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#15 hour fresh snow cover, corrected and standardized +'82129239' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Missing +'82129255' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +############### table2Version 130 ############ +############### PMP ############ +################################################# +#Reserved +'82130000' = { + table2Version = 130 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'82130001' = { + table2Version = 130 ; + indicatorOfParameter = 1 ; + } +#Temperature +'82130011' = { + table2Version = 130 ; + indicatorOfParameter = 11 ; + } +#Visibility +'82130020' = { + table2Version = 130 ; + indicatorOfParameter = 20 ; + } +#u-component of wind +'82130033' = { + table2Version = 130 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'82130034' = { + table2Version = 130 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'82130052' = { + table2Version = 130 ; + indicatorOfParameter = 52 ; + } +#Probability of frozen rain +'82130058' = { + table2Version = 130 ; + indicatorOfParameter = 58 ; + } +#Probability thunderstorm +'82130060' = { + table2Version = 130 ; + indicatorOfParameter = 60 ; + } +#Total_precipitation +'82130061' = { + table2Version = 130 ; + indicatorOfParameter = 61 ; + } +#Water_equiv._of_snow_depth +'82130065' = { + table2Version = 130 ; + indicatorOfParameter = 65 ; + } +#Area_time_min_totalcloudcover +'82130067' = { + table2Version = 130 ; + indicatorOfParameter = 67 ; + } +#Area_time_max_totalcloudcover +'82130068' = { + table2Version = 130 ; + indicatorOfParameter = 68 ; + } +#Area_time_median_totalcloudcover +'82130069' = { + table2Version = 130 ; + indicatorOfParameter = 69 ; + } +#Area_time_mean_totalcloudcover +'82130070' = { + table2Version = 130 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'82130071' = { + table2Version = 130 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'82130072' = { + table2Version = 130 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'82130073' = { + table2Version = 130 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'82130074' = { + table2Version = 130 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'82130075' = { + table2Version = 130 ; + indicatorOfParameter = 75 ; + } +#cloud mask +'82130077' = { + table2Version = 130 ; + indicatorOfParameter = 77 ; + } +#Index 2m maxtemperatur over 3 dygn +'82130100' = { + table2Version = 130 ; + indicatorOfParameter = 100 ; + } +#EPS T mean +'82130110' = { + table2Version = 130 ; + indicatorOfParameter = 110 ; + } +#EPS T standard deviation +'82130111' = { + table2Version = 130 ; + indicatorOfParameter = 111 ; + } +#Maximum wind (mean 10 min) +'82130130' = { + table2Version = 130 ; + indicatorOfParameter = 130 ; + } +#Wind gust +'82130131' = { + table2Version = 130 ; + indicatorOfParameter = 131 ; + } +#Cloud base (significant) +'82130135' = { + table2Version = 130 ; + indicatorOfParameter = 135 ; + } +#Cloud top (significant) +'82130136' = { + table2Version = 130 ; + indicatorOfParameter = 136 ; + } +#Omradesnederbord gridpunkts-min +'82130137' = { + table2Version = 130 ; + indicatorOfParameter = 137 ; + } +#Omradesnederbord gridpunkts-max +'82130138' = { + table2Version = 130 ; + indicatorOfParameter = 138 ; + } +#Omradesnederbord gridpunkts-medel +'82130139' = { + table2Version = 130 ; + indicatorOfParameter = 139 ; + } +#Precipitation intensity total +'82130140' = { + table2Version = 130 ; + indicatorOfParameter = 140 ; + } +#Precipitation intensity snow +'82130141' = { + table2Version = 130 ; + indicatorOfParameter = 141 ; + } +#Area_time_min_precipitation +'82130142' = { + table2Version = 130 ; + indicatorOfParameter = 142 ; + } +#Area_time_max_precipitation +'82130143' = { + table2Version = 130 ; + indicatorOfParameter = 143 ; + } +#Precipitation type, conv 0, large scale 1, no prec -9 +'82130145' = { + table2Version = 130 ; + indicatorOfParameter = 145 ; + } +#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle +'82130146' = { + table2Version = 130 ; + indicatorOfParameter = 146 ; + } +#Vadersymbol +'82130147' = { + table2Version = 130 ; + indicatorOfParameter = 147 ; + } +#Area_time_mean_precipitation +'82130148' = { + table2Version = 130 ; + indicatorOfParameter = 148 ; + } +#Area_time_median_precipitation +'82130149' = { + table2Version = 130 ; + indicatorOfParameter = 149 ; + } +#Missing +'82130255' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +############### table2Version 131 ############ +############### RCA ############ +################################################# +#Reserved +'82131000' = { + table2Version = 131 ; + indicatorOfParameter = 0 ; + } +#Sea surface temperature (LAKE) +'82131011' = { + table2Version = 131 ; + indicatorOfParameter = 11 ; + } +#Current east +'82131049' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Current north +'82131050' = { + table2Version = 131 ; + indicatorOfParameter = 50 ; + } +#Snowdepth in Probe +'82131066' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Ice concentration (LAKE) +'82131091' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Ice thickness Probe-lake +'82131092' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Temperature ABC-lake +'82131150' = { + table2Version = 131 ; + indicatorOfParameter = 150 ; + } +#Temperature C-lake +'82131151' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Temperature D-lake +'82131152' = { + table2Version = 131 ; + indicatorOfParameter = 152 ; + } +#Temperature E-lake +'82131153' = { + table2Version = 131 ; + indicatorOfParameter = 153 ; + } +#Area ABC-lake +'82131160' = { + table2Version = 131 ; + indicatorOfParameter = 160 ; + } +#Depth ABC-lake +'82131161' = { + table2Version = 131 ; + indicatorOfParameter = 161 ; + } +#C-lakes +'82131162' = { + table2Version = 131 ; + indicatorOfParameter = 162 ; + } +#D-lakes +'82131163' = { + table2Version = 131 ; + indicatorOfParameter = 163 ; + } +#E-lakes +'82131164' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#Ice thickness ABC-lake +'82131170' = { + table2Version = 131 ; + indicatorOfParameter = 170 ; + } +#Ice thickness C-lake +'82131171' = { + table2Version = 131 ; + indicatorOfParameter = 171 ; + } +#Ice thickness D-lake +'82131172' = { + table2Version = 131 ; + indicatorOfParameter = 172 ; + } +#Ice thickness E-lake +'82131173' = { + table2Version = 131 ; + indicatorOfParameter = 173 ; + } +#Sea surface temperature (T) +'82131180' = { + table2Version = 131 ; + indicatorOfParameter = 180 ; + } +#Ice concentration (I) +'82131183' = { + table2Version = 131 ; + indicatorOfParameter = 183 ; + } +#Fraction lake +'82131196' = { + table2Version = 131 ; + indicatorOfParameter = 196 ; + } +#Black ice thickness in Probe +'82131241' = { + table2Version = 131 ; + indicatorOfParameter = 241 ; + } +#Vallad istjocklek i Probe +'82131244' = { + table2Version = 131 ; + indicatorOfParameter = 244 ; + } +#Internal ice concentration in Probe +'82131245' = { + table2Version = 131 ; + indicatorOfParameter = 245 ; + } +#Isfrontlaege i Probe +'82131246' = { + table2Version = 131 ; + indicatorOfParameter = 246 ; + } +#Heat in Probe +'82131250' = { + table2Version = 131 ; + indicatorOfParameter = 250 ; + } +#Turbulent Kintetic Energy +'82131251' = { + table2Version = 131 ; + indicatorOfParameter = 251 ; + } +#Dissipation rate Turbulent Kinetic Energy +'82131252' = { + table2Version = 131 ; + indicatorOfParameter = 252 ; + } +#Missing +'82131255' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +############### table2Version 133 ############ +############### Hiromb ############ +################################################# +#Reserved +'82133000' = { + table2Version = 133 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'82133001' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#Temperature +'82133011' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Potential temperature +'82133013' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Wave spectra (1) +'82133028' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'82133029' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'82133030' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'82133031' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'82133032' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#U-component of Wind +'82133033' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#V-component of Wind +'82133034' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Stream function +'82133035' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'82133036' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'82133037' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'82133038' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Z-component of velocity (pressure) +'82133039' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Z-component of velocity (geometric) +'82133040' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'82133041' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'82133042' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'82133043' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'82133044' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'82133045' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'82133046' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Direction of horizontal current +'82133047' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Speed of horizontal current +'82133048' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#U-comp of Current +'82133049' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#V-comp of Current +'82133050' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'82133051' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snow Depth +'82133066' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'82133067' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'82133068' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'82133069' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'82133070' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#Total Cloud Cover +'82133071' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#Water temperature +'82133080' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea level from mean +'82133082' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Salinity +'82133088' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Density +'82133089' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Ice Cover +'82133091' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Total ice thickness +'82133092' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'82133093' = { + table2Version = 133 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'82133094' = { + table2Version = 133 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'82133095' = { + table2Version = 133 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'82133096' = { + table2Version = 133 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'82133097' = { + table2Version = 133 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'82133098' = { + table2Version = 133 ; + indicatorOfParameter = 98 ; + } +#Significant wave height +'82133100' = { + table2Version = 133 ; + indicatorOfParameter = 100 ; + } +#Direction of Wind Waves +'82133101' = { + table2Version = 133 ; + indicatorOfParameter = 101 ; + } +#Sign Height Wind Waves +'82133102' = { + table2Version = 133 ; + indicatorOfParameter = 102 ; + } +#Mean Period Wind Waves +'82133103' = { + table2Version = 133 ; + indicatorOfParameter = 103 ; + } +#Direction of Swell Waves +'82133104' = { + table2Version = 133 ; + indicatorOfParameter = 104 ; + } +#Sign Height Swell Waves +'82133105' = { + table2Version = 133 ; + indicatorOfParameter = 105 ; + } +#Mean Period Swell Waves +'82133106' = { + table2Version = 133 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'82133107' = { + table2Version = 133 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'82133108' = { + table2Version = 133 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'82133109' = { + table2Version = 133 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'82133110' = { + table2Version = 133 ; + indicatorOfParameter = 110 ; + } +#Mean period of waves +'82133111' = { + table2Version = 133 ; + indicatorOfParameter = 111 ; + } +#Mean direction of Waves +'82133112' = { + table2Version = 133 ; + indicatorOfParameter = 112 ; + } +#Peak period of 1D spectra +'82133113' = { + table2Version = 133 ; + indicatorOfParameter = 113 ; + } +#Skin velocity, x-comp. +'82133130' = { + table2Version = 133 ; + indicatorOfParameter = 130 ; + } +#Skin velocity, y-comp. +'82133131' = { + table2Version = 133 ; + indicatorOfParameter = 131 ; + } +#Nitrate +'82133151' = { + table2Version = 133 ; + indicatorOfParameter = 151 ; + } +#Ammonium +'82133152' = { + table2Version = 133 ; + indicatorOfParameter = 152 ; + } +#Phosphate +'82133153' = { + table2Version = 133 ; + indicatorOfParameter = 153 ; + } +#Oxygen +'82133154' = { + table2Version = 133 ; + indicatorOfParameter = 154 ; + } +#Phytoplankton +'82133155' = { + table2Version = 133 ; + indicatorOfParameter = 155 ; + } +#Zooplankton +'82133156' = { + table2Version = 133 ; + indicatorOfParameter = 156 ; + } +#Detritus +'82133157' = { + table2Version = 133 ; + indicatorOfParameter = 157 ; + } +#Bentos nitrogen +'82133158' = { + table2Version = 133 ; + indicatorOfParameter = 158 ; + } +#Bentos phosphorus +'82133159' = { + table2Version = 133 ; + indicatorOfParameter = 159 ; + } +#Silicate +'82133160' = { + table2Version = 133 ; + indicatorOfParameter = 160 ; + } +#Biogenic silica +'82133161' = { + table2Version = 133 ; + indicatorOfParameter = 161 ; + } +#Light in water column +'82133162' = { + table2Version = 133 ; + indicatorOfParameter = 162 ; + } +#Inorganic suspended matter +'82133163' = { + table2Version = 133 ; + indicatorOfParameter = 163 ; + } +#Diatomes (algae) +'82133164' = { + table2Version = 133 ; + indicatorOfParameter = 164 ; + } +#Flagellates (algae) +'82133165' = { + table2Version = 133 ; + indicatorOfParameter = 165 ; + } +#Nitrate (aggregated) +'82133166' = { + table2Version = 133 ; + indicatorOfParameter = 166 ; + } +#Turbulent Kinetic Energy +'82133200' = { + table2Version = 133 ; + indicatorOfParameter = 200 ; + } +#Dissipation rate of TKE +'82133201' = { + table2Version = 133 ; + indicatorOfParameter = 201 ; + } +#Eddy viscosity +'82133202' = { + table2Version = 133 ; + indicatorOfParameter = 202 ; + } +#Eddy diffusivity +'82133203' = { + table2Version = 133 ; + indicatorOfParameter = 203 ; + } +# Level ice thickness +'82133220' = { + table2Version = 133 ; + indicatorOfParameter = 220 ; + } +#Ridged ice thickness +'82133221' = { + table2Version = 133 ; + indicatorOfParameter = 221 ; + } +#Ice ridge height +'82133222' = { + table2Version = 133 ; + indicatorOfParameter = 222 ; + } +#Ice ridge density +'82133223' = { + table2Version = 133 ; + indicatorOfParameter = 223 ; + } +#U-mean (prev. timestep) +'82133231' = { + table2Version = 133 ; + indicatorOfParameter = 231 ; + } +#V-mean (prev. timestep) +'82133232' = { + table2Version = 133 ; + indicatorOfParameter = 232 ; + } +#W-mean (prev. timestep) +'82133233' = { + table2Version = 133 ; + indicatorOfParameter = 233 ; + } +#Snow temperature +'82133239' = { + table2Version = 133 ; + indicatorOfParameter = 239 ; + } +#Total depth in meters +'82133243' = { + table2Version = 133 ; + indicatorOfParameter = 243 ; + } +#Missing +'82133255' = { + table2Version = 133 ; + indicatorOfParameter = 255 ; + } +############### table2Version 134 ############ +############### Match ############ +################################################# +#Reserved +'82134000' = { + table2Version = 134 ; + indicatorOfParameter = 0 ; + } +#C2H6/Ethane +'82134001' = { + table2Version = 134 ; + indicatorOfParameter = 1 ; + } +#NC4H10/N-butane +'82134002' = { + table2Version = 134 ; + indicatorOfParameter = 2 ; + } +#C2H4/Ethene +'82134003' = { + table2Version = 134 ; + indicatorOfParameter = 3 ; + } +#C3H6/Propene +'82134004' = { + table2Version = 134 ; + indicatorOfParameter = 4 ; + } +#OXYLENE/O-xylene +'82134005' = { + table2Version = 134 ; + indicatorOfParameter = 5 ; + } +#HCHO/Formalydehyde +'82134006' = { + table2Version = 134 ; + indicatorOfParameter = 6 ; + } +#CH3CHO/Acetaldehyde +'82134007' = { + table2Version = 134 ; + indicatorOfParameter = 7 ; + } +#CH3COC2H5/Ethyl methyl keton +'82134008' = { + table2Version = 134 ; + indicatorOfParameter = 8 ; + } +#MGLYOX/Methyl-glyoxal (CH3COCHO) +'82134009' = { + table2Version = 134 ; + indicatorOfParameter = 9 ; + } +#GLYOX/Glyoxal (HCOCHO) +'82134010' = { + table2Version = 134 ; + indicatorOfParameter = 10 ; + } +#C5H8/Isoprene +'82134011' = { + table2Version = 134 ; + indicatorOfParameter = 11 ; + } +#C2H5OH/Ethanol +'82134012' = { + table2Version = 134 ; + indicatorOfParameter = 12 ; + } +#CH3OH/Metanol +'82134013' = { + table2Version = 134 ; + indicatorOfParameter = 13 ; + } +#HCOOH/Formic acid +'82134014' = { + table2Version = 134 ; + indicatorOfParameter = 14 ; + } +#CH3COOH/Acetic acid +'82134015' = { + table2Version = 134 ; + indicatorOfParameter = 15 ; + } +#NMVOC_C/Total NMVOC as C +'82134019' = { + table2Version = 134 ; + indicatorOfParameter = 19 ; + } +#Reserved +'82134020' = { + table2Version = 134 ; + indicatorOfParameter = 20 ; + } +#PAN/Peroxy acetyl nitrate +'82134021' = { + table2Version = 134 ; + indicatorOfParameter = 21 ; + } +#NO3/Nitrate radical +'82134022' = { + table2Version = 134 ; + indicatorOfParameter = 22 ; + } +#N2O5/Dinitrogen pentoxide +'82134023' = { + table2Version = 134 ; + indicatorOfParameter = 23 ; + } +#ONIT/Organic nitrate +'82134024' = { + table2Version = 134 ; + indicatorOfParameter = 24 ; + } +#ISONRO2/Isoprene-NO3 adduct +'82134025' = { + table2Version = 134 ; + indicatorOfParameter = 25 ; + } +#HO2NO2/HO2NO2 +'82134026' = { + table2Version = 134 ; + indicatorOfParameter = 26 ; + } +#MPAN +'82134027' = { + table2Version = 134 ; + indicatorOfParameter = 27 ; + } +#ISONO3H +'82134028' = { + table2Version = 134 ; + indicatorOfParameter = 28 ; + } +#HONO +'82134029' = { + table2Version = 134 ; + indicatorOfParameter = 29 ; + } +#Reserved +'82134030' = { + table2Version = 134 ; + indicatorOfParameter = 30 ; + } +#HO2/Hydroperhydroxyl radical +'82134031' = { + table2Version = 134 ; + indicatorOfParameter = 31 ; + } +#H2/Molecular hydrogen +'82134032' = { + table2Version = 134 ; + indicatorOfParameter = 32 ; + } +#O/Oxygen atomic ground state (3P) +'82134033' = { + table2Version = 134 ; + indicatorOfParameter = 33 ; + } +#O1D/Oxygen atomic first singlet state +'82134034' = { + table2Version = 134 ; + indicatorOfParameter = 34 ; + } +#Reserved +'82134040' = { + table2Version = 134 ; + indicatorOfParameter = 40 ; + } +#CH3O2/Methyl peroxy radical +'82134041' = { + table2Version = 134 ; + indicatorOfParameter = 41 ; + } +#CH3O2H/Methyl hydroperoxide +'82134042' = { + table2Version = 134 ; + indicatorOfParameter = 42 ; + } +#C2H5O2/Ethyl peroxy radical +'82134043' = { + table2Version = 134 ; + indicatorOfParameter = 43 ; + } +#CH3COO2/Peroxy acetyl radical +'82134044' = { + table2Version = 134 ; + indicatorOfParameter = 44 ; + } +#SECC4H9O2/Buthyl peroxy radical +'82134045' = { + table2Version = 134 ; + indicatorOfParameter = 45 ; + } +#CH3COCHO2CH3/peroxy radical from MEK +'82134046' = { + table2Version = 134 ; + indicatorOfParameter = 46 ; + } +#ACETOL/acetol (hydroxy acetone) +'82134047' = { + table2Version = 134 ; + indicatorOfParameter = 47 ; + } +#CH2O2CH2OH +'82134048' = { + table2Version = 134 ; + indicatorOfParameter = 48 ; + } +#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH +'82134049' = { + table2Version = 134 ; + indicatorOfParameter = 49 ; + } +#MAL/CH3COCH=CHCHO +'82134050' = { + table2Version = 134 ; + indicatorOfParameter = 50 ; + } +#MALO2/Peroxy radical from MAL + oh +'82134051' = { + table2Version = 134 ; + indicatorOfParameter = 51 ; + } +#ISRO2/Peroxy radical from isoprene + oh +'82134052' = { + table2Version = 134 ; + indicatorOfParameter = 52 ; + } +#ISOPROD/Peroxy radical from ISOPROD +'82134053' = { + table2Version = 134 ; + indicatorOfParameter = 53 ; + } +#C2H5OOH/Ethyl hydroperoxide +'82134054' = { + table2Version = 134 ; + indicatorOfParameter = 54 ; + } +#CH3COO2H +'82134055' = { + table2Version = 134 ; + indicatorOfParameter = 55 ; + } +#OXYO2H/Hydroperoxide from OXYO2 +'82134056' = { + table2Version = 134 ; + indicatorOfParameter = 56 ; + } +#SECC4H9O2H/Buthyl hydroperoxide +'82134057' = { + table2Version = 134 ; + indicatorOfParameter = 57 ; + } +#CH2OOHCH2OH +'82134058' = { + table2Version = 134 ; + indicatorOfParameter = 58 ; + } +#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 +'82134059' = { + table2Version = 134 ; + indicatorOfParameter = 59 ; + } +#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 +'82134060' = { + table2Version = 134 ; + indicatorOfParameter = 60 ; + } +#MALO2H/Hydroperoxide from MALO2 + ho2 +'82134061' = { + table2Version = 134 ; + indicatorOfParameter = 61 ; + } +#IPRO2 +'82134062' = { + table2Version = 134 ; + indicatorOfParameter = 62 ; + } +#XO2 +'82134063' = { + table2Version = 134 ; + indicatorOfParameter = 63 ; + } +#OXYO2/Peroxy radical from o-xylene + oh +'82134064' = { + table2Version = 134 ; + indicatorOfParameter = 64 ; + } +#ISRO2H +'82134065' = { + table2Version = 134 ; + indicatorOfParameter = 65 ; + } +#MVK +'82134066' = { + table2Version = 134 ; + indicatorOfParameter = 66 ; + } +#MVKO2 +'82134067' = { + table2Version = 134 ; + indicatorOfParameter = 67 ; + } +#MVKO2H +'82134068' = { + table2Version = 134 ; + indicatorOfParameter = 68 ; + } +#BENZENE +'82134070' = { + table2Version = 134 ; + indicatorOfParameter = 70 ; + } +#ISNI +'82134074' = { + table2Version = 134 ; + indicatorOfParameter = 74 ; + } +#ISNIR +'82134075' = { + table2Version = 134 ; + indicatorOfParameter = 75 ; + } +#ISNIRH +'82134076' = { + table2Version = 134 ; + indicatorOfParameter = 76 ; + } +#MACR +'82134077' = { + table2Version = 134 ; + indicatorOfParameter = 77 ; + } +#AOH1 +'82134078' = { + table2Version = 134 ; + indicatorOfParameter = 78 ; + } +#AOH1H +'82134079' = { + table2Version = 134 ; + indicatorOfParameter = 79 ; + } +#MACRO2 +'82134080' = { + table2Version = 134 ; + indicatorOfParameter = 80 ; + } +#MACO3H +'82134081' = { + table2Version = 134 ; + indicatorOfParameter = 81 ; + } +#MACOOH +'82134082' = { + table2Version = 134 ; + indicatorOfParameter = 82 ; + } +#CH2CCH3 +'82134083' = { + table2Version = 134 ; + indicatorOfParameter = 83 ; + } +#CH2CO2HCH3 +'82134084' = { + table2Version = 134 ; + indicatorOfParameter = 84 ; + } +#BIGENE +'82134090' = { + table2Version = 134 ; + indicatorOfParameter = 90 ; + } +#BIGALK +'82134091' = { + table2Version = 134 ; + indicatorOfParameter = 91 ; + } +#TOLUENE +'82134092' = { + table2Version = 134 ; + indicatorOfParameter = 92 ; + } +#CH2CHCN +'82134100' = { + table2Version = 134 ; + indicatorOfParameter = 100 ; + } +#(CH3)2NNH2/Dimetylhydrazin +'82134101' = { + table2Version = 134 ; + indicatorOfParameter = 101 ; + } +#CH2OC2H3Cl/Epiklorhydrin +'82134102' = { + table2Version = 134 ; + indicatorOfParameter = 102 ; + } +#CH2OC2/Etylenoxid +'82134103' = { + table2Version = 134 ; + indicatorOfParameter = 103 ; + } +#HF/Vaetefluorid +'82134105' = { + table2Version = 134 ; + indicatorOfParameter = 105 ; + } +#Hcl/Vaeteklorid +'82134106' = { + table2Version = 134 ; + indicatorOfParameter = 106 ; + } +#CS2/Koldisulfid +'82134107' = { + table2Version = 134 ; + indicatorOfParameter = 107 ; + } +#CH3NH2/Metylamin +'82134108' = { + table2Version = 134 ; + indicatorOfParameter = 108 ; + } +#SF6/Sulphurhexafloride +'82134110' = { + table2Version = 134 ; + indicatorOfParameter = 110 ; + } +#HCN/Vaetecyanid +'82134111' = { + table2Version = 134 ; + indicatorOfParameter = 111 ; + } +#COCl2/Fosgen +'82134112' = { + table2Version = 134 ; + indicatorOfParameter = 112 ; + } +#H2CCHCl/Vinylklorid +'82134113' = { + table2Version = 134 ; + indicatorOfParameter = 113 ; + } +#Missing +'82134255' = { + table2Version = 134 ; + indicatorOfParameter = 255 ; + } +############### table2Version 135 ############ +############### Match ############ +################################################# +#Reserved +'82135000' = { + table2Version = 135 ; + indicatorOfParameter = 0 ; + } +#GRG1/MOZART specie +'82135001' = { + table2Version = 135 ; + indicatorOfParameter = 1 ; + } +#GRG2/MOZART specie +'82135002' = { + table2Version = 135 ; + indicatorOfParameter = 2 ; + } +#GRG3/MOZART specie +'82135003' = { + table2Version = 135 ; + indicatorOfParameter = 3 ; + } +#GRG4/MOZART specie +'82135004' = { + table2Version = 135 ; + indicatorOfParameter = 4 ; + } +#GRG5/MOZART specie +'82135005' = { + table2Version = 135 ; + indicatorOfParameter = 5 ; + } +#VIS-340/Visibility at 340 nm +'82135100' = { + table2Version = 135 ; + indicatorOfParameter = 100 ; + } +#VIS-355/Visibility at 355 nm +'82135101' = { + table2Version = 135 ; + indicatorOfParameter = 101 ; + } +#VIS-380/Visibility at 380 nm +'82135102' = { + table2Version = 135 ; + indicatorOfParameter = 102 ; + } +#VIS-440/Visibility at 440 nm +'82135103' = { + table2Version = 135 ; + indicatorOfParameter = 103 ; + } +#VIS-500/Visibility at 500 nm +'82135104' = { + table2Version = 135 ; + indicatorOfParameter = 104 ; + } +#VIS-532/Visibility at 532 nm +'82135105' = { + table2Version = 135 ; + indicatorOfParameter = 105 ; + } +#VIS-675/Visibility at 675 nm +'82135106' = { + table2Version = 135 ; + indicatorOfParameter = 106 ; + } +#VIS-870/Visibility at 870 nm +'82135107' = { + table2Version = 135 ; + indicatorOfParameter = 107 ; + } +#VIS-1020/Visibility at 1020 nm +'82135108' = { + table2Version = 135 ; + indicatorOfParameter = 108 ; + } +#VIS-1064/Visibility at 1064 nm +'82135109' = { + table2Version = 135 ; + indicatorOfParameter = 109 ; + } +#VIS-3500/Visibility at 3500 nm +'82135110' = { + table2Version = 135 ; + indicatorOfParameter = 110 ; + } +#VIS-10000/Visibility at 10000 nm +'82135111' = { + table2Version = 135 ; + indicatorOfParameter = 111 ; + } +#BSCA-340/Backscatter at 340 nm +'82135120' = { + table2Version = 135 ; + indicatorOfParameter = 120 ; + } +#BSCA-355/Backscatter at 355 nm +'82135121' = { + table2Version = 135 ; + indicatorOfParameter = 121 ; + } +#BSCA-380/Backscatter at 380 nm +'82135122' = { + table2Version = 135 ; + indicatorOfParameter = 122 ; + } +#BSCA-440/Backscatter at 440 nm +'82135123' = { + table2Version = 135 ; + indicatorOfParameter = 123 ; + } +#BSCA-500/Backscatter at 500 nm +'82135124' = { + table2Version = 135 ; + indicatorOfParameter = 124 ; + } +#BSCA-532/Backscatter at 532 nm +'82135125' = { + table2Version = 135 ; + indicatorOfParameter = 125 ; + } +#BSCA-675/Backscatter at 675 nm +'82135126' = { + table2Version = 135 ; + indicatorOfParameter = 126 ; + } +#BSCA-870/Backscatter at 870 nm +'82135127' = { + table2Version = 135 ; + indicatorOfParameter = 127 ; + } +#BSCA-1020/Backscatter at 1020 nm +'82135128' = { + table2Version = 135 ; + indicatorOfParameter = 128 ; + } +#BSCA-1064/Backscatter at 1064 nm +'82135129' = { + table2Version = 135 ; + indicatorOfParameter = 129 ; + } +#BSCA-3500/Backscatter at 3500 nm +'82135130' = { + table2Version = 135 ; + indicatorOfParameter = 130 ; + } +#BSCA-10000/Backscatter at 10000 nm +'82135131' = { + table2Version = 135 ; + indicatorOfParameter = 131 ; + } +#EXT-340/Extinction at 340 nm +'82135140' = { + table2Version = 135 ; + indicatorOfParameter = 140 ; + } +#EXT-355/Extinction at 355 nm +'82135141' = { + table2Version = 135 ; + indicatorOfParameter = 141 ; + } +#EXT-380/Extinction at 380 nm +'82135142' = { + table2Version = 135 ; + indicatorOfParameter = 142 ; + } +#EXT-440/Extinction at 440 nm +'82135143' = { + table2Version = 135 ; + indicatorOfParameter = 143 ; + } +#EXT-500/Extinction at 500 nm +'82135144' = { + table2Version = 135 ; + indicatorOfParameter = 144 ; + } +#EXT-532/Extinction at 532 nm +'82135145' = { + table2Version = 135 ; + indicatorOfParameter = 145 ; + } +#EXT-675/Extinction at 675 nm +'82135146' = { + table2Version = 135 ; + indicatorOfParameter = 146 ; + } +#EXT-870/Extinction at 870 nm +'82135147' = { + table2Version = 135 ; + indicatorOfParameter = 147 ; + } +#EXT-1020/Extinction at 1020 nm +'82135148' = { + table2Version = 135 ; + indicatorOfParameter = 148 ; + } +#EXT-1064/Extinction at 1064 nm +'82135149' = { + table2Version = 135 ; + indicatorOfParameter = 149 ; + } +#EXT-3500/Extinction at 3500 nm +'82135150' = { + table2Version = 135 ; + indicatorOfParameter = 150 ; + } +#EXT-10000/Extinction at 10000 nm +'82135151' = { + table2Version = 135 ; + indicatorOfParameter = 151 ; + } +#AOD-340/Aerosol optical depth at 340 nm +'82135160' = { + table2Version = 135 ; + indicatorOfParameter = 160 ; + } +#AOD-355/Aerosol optical depth at 355 nm +'82135161' = { + table2Version = 135 ; + indicatorOfParameter = 161 ; + } +#AOD-380/Aerosol optical depth at 380 nm +'82135162' = { + table2Version = 135 ; + indicatorOfParameter = 162 ; + } +#AOD-440/Aerosol optical depth at 440 nm +'82135163' = { + table2Version = 135 ; + indicatorOfParameter = 163 ; + } +#AOD-500/Aerosol optical depth at 500 nm +'82135164' = { + table2Version = 135 ; + indicatorOfParameter = 164 ; + } +#AOD-532/Aerosol optical depth at 532 nm +'82135165' = { + table2Version = 135 ; + indicatorOfParameter = 165 ; + } +#AOD-675/Aerosol optical depth at 675 nm +'82135166' = { + table2Version = 135 ; + indicatorOfParameter = 166 ; + } +#AOD-870/Aerosol optical depth at 870 nm +'82135167' = { + table2Version = 135 ; + indicatorOfParameter = 167 ; + } +#AOD-1020/Aerosol optical depth at 1020 nm +'82135168' = { + table2Version = 135 ; + indicatorOfParameter = 168 ; + } +#AOD-1064/Aerosol optical depth at 1064 nm +'82135169' = { + table2Version = 135 ; + indicatorOfParameter = 169 ; + } +#AOD-3500/Aerosol optical depth at 3500 nm +'82135170' = { + table2Version = 135 ; + indicatorOfParameter = 170 ; + } +#AOD-10000/Aerosol optical depth at 10000 nm +'82135171' = { + table2Version = 135 ; + indicatorOfParameter = 171 ; + } +#Rain fraction of total cloud water +'82135208' = { + table2Version = 135 ; + indicatorOfParameter = 208 ; + } +#Rain factor +'82135209' = { + table2Version = 135 ; + indicatorOfParameter = 209 ; + } +#Total column integrated rain +'82135210' = { + table2Version = 135 ; + indicatorOfParameter = 210 ; + } +#Total column integrated snow +'82135211' = { + table2Version = 135 ; + indicatorOfParameter = 211 ; + } +#Total water precipitation +'82135212' = { + table2Version = 135 ; + indicatorOfParameter = 212 ; + } +#Total snow precipitation +'82135213' = { + table2Version = 135 ; + indicatorOfParameter = 213 ; + } +#Total column water (Vertically integrated total water) +'82135214' = { + table2Version = 135 ; + indicatorOfParameter = 214 ; + } +#Large scale precipitation rate +'82135215' = { + table2Version = 135 ; + indicatorOfParameter = 215 ; + } +#Convective snowfall rate water equivalent +'82135216' = { + table2Version = 135 ; + indicatorOfParameter = 216 ; + } +#Large scale snowfall rate water equivalent +'82135217' = { + table2Version = 135 ; + indicatorOfParameter = 217 ; + } +#Total snowfall rate +'82135218' = { + table2Version = 135 ; + indicatorOfParameter = 218 ; + } +#Convective snowfall rate +'82135219' = { + table2Version = 135 ; + indicatorOfParameter = 219 ; + } +#Large scale snowfall rate +'82135220' = { + table2Version = 135 ; + indicatorOfParameter = 220 ; + } +#Snow depth water equivalent +'82135221' = { + table2Version = 135 ; + indicatorOfParameter = 221 ; + } +#Snow evaporation +'82135222' = { + table2Version = 135 ; + indicatorOfParameter = 222 ; + } +#Total column integrated water vapour +'82135223' = { + table2Version = 135 ; + indicatorOfParameter = 223 ; + } +#Rain precipitation rate +'82135224' = { + table2Version = 135 ; + indicatorOfParameter = 224 ; + } +#Snow precipitation rate +'82135225' = { + table2Version = 135 ; + indicatorOfParameter = 225 ; + } +#Freezing rain precipitation rate +'82135226' = { + table2Version = 135 ; + indicatorOfParameter = 226 ; + } +#Ice pellets precipitation rate +'82135227' = { + table2Version = 135 ; + indicatorOfParameter = 227 ; + } +#Specific cloud liquid water content +'82135228' = { + table2Version = 135 ; + indicatorOfParameter = 228 ; + } +#Specific cloud ice water content +'82135229' = { + table2Version = 135 ; + indicatorOfParameter = 229 ; + } +#Specific rain water content +'82135230' = { + table2Version = 135 ; + indicatorOfParameter = 230 ; + } +#Specific snow water content +'82135231' = { + table2Version = 135 ; + indicatorOfParameter = 231 ; + } +#u-component of wind (gust) +'82135232' = { + table2Version = 135 ; + indicatorOfParameter = 232 ; + } +#v-component of wind (gust) +'82135233' = { + table2Version = 135 ; + indicatorOfParameter = 233 ; + } +#Vertical speed shear +'82135234' = { + table2Version = 135 ; + indicatorOfParameter = 234 ; + } +#Horizontal momentum flux +'82135235' = { + table2Version = 135 ; + indicatorOfParameter = 235 ; + } +#u-component storm motion +'82135236' = { + table2Version = 135 ; + indicatorOfParameter = 236 ; + } +#v-component storm motion +'82135237' = { + table2Version = 135 ; + indicatorOfParameter = 237 ; + } +#Drag coefficient +'82135238' = { + table2Version = 135 ; + indicatorOfParameter = 238 ; + } +#Eta coordinate vertical velocity +'82135239' = { + table2Version = 135 ; + indicatorOfParameter = 239 ; + } +#Altimeter setting +'82135240' = { + table2Version = 135 ; + indicatorOfParameter = 240 ; + } +#Thickness +'82135241' = { + table2Version = 135 ; + indicatorOfParameter = 241 ; + } +#Pressure altitude +'82135242' = { + table2Version = 135 ; + indicatorOfParameter = 242 ; + } +#Density altitude +'82135243' = { + table2Version = 135 ; + indicatorOfParameter = 243 ; + } +#5-wave geopotential height +'82135244' = { + table2Version = 135 ; + indicatorOfParameter = 244 ; + } +#Zonal flux of gravity wave stress +'82135245' = { + table2Version = 135 ; + indicatorOfParameter = 245 ; + } +#Meridional flux of gravity wave stress +'82135246' = { + table2Version = 135 ; + indicatorOfParameter = 246 ; + } +#Planetary boundary layer height +'82135247' = { + table2Version = 135 ; + indicatorOfParameter = 247 ; + } +#5-wave geopotential height anomaly +'82135248' = { + table2Version = 135 ; + indicatorOfParameter = 248 ; + } +#Standard deviation of sub-gridscale orography +'82135249' = { + table2Version = 135 ; + indicatorOfParameter = 249 ; + } +#Angle of sub-gridscale orography +'82135250' = { + table2Version = 135 ; + indicatorOfParameter = 250 ; + } +#Slope of sub-gridscale orography +'82135251' = { + table2Version = 135 ; + indicatorOfParameter = 251 ; + } +#Gravity wave dissipation +'82135252' = { + table2Version = 135 ; + indicatorOfParameter = 252 ; + } +#Anisotropy of sub-gridscale orography +'82135253' = { + table2Version = 135 ; + indicatorOfParameter = 253 ; + } +#Natural logarithm of pressure in Pa +'82135254' = { + table2Version = 135 ; + indicatorOfParameter = 254 ; + } +#Missing +'82135255' = { + table2Version = 135 ; + indicatorOfParameter = 255 ; + } +############### table2Version 136 ############ +############### Strang ############ +################################################# +#Reserved +'82136000' = { + table2Version = 136 ; + indicatorOfParameter = 0 ; + } +#Pressure +'82136001' = { + table2Version = 136 ; + indicatorOfParameter = 1 ; + } +#Temperature +'82136011' = { + table2Version = 136 ; + indicatorOfParameter = 11 ; + } +#Specific humidity +'82136051' = { + table2Version = 136 ; + indicatorOfParameter = 51 ; + } +#Precipitable water +'82136054' = { + table2Version = 136 ; + indicatorOfParameter = 54 ; + } +#Snow depth +'82136066' = { + table2Version = 136 ; + indicatorOfParameter = 66 ; + } +#Total cloud cover +'82136071' = { + table2Version = 136 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'82136073' = { + table2Version = 136 ; + indicatorOfParameter = 73 ; + } +#Probability for significant cloud base +'82136077' = { + table2Version = 136 ; + indicatorOfParameter = 77 ; + } +#Significant cloud base +'82136078' = { + table2Version = 136 ; + indicatorOfParameter = 78 ; + } +#Significant cloud top +'82136079' = { + table2Version = 136 ; + indicatorOfParameter = 79 ; + } +#Albedo (lev 0=global radiation lev 1=UV radiation) +'82136084' = { + table2Version = 136 ; + indicatorOfParameter = 84 ; + } +#Ice concentration +'82136091' = { + table2Version = 136 ; + indicatorOfParameter = 91 ; + } +#CIE-weighted UV irradiance +'82136116' = { + table2Version = 136 ; + indicatorOfParameter = 116 ; + } +#Global irradiance +'82136117' = { + table2Version = 136 ; + indicatorOfParameter = 117 ; + } +#Beam normal irradiance +'82136118' = { + table2Version = 136 ; + indicatorOfParameter = 118 ; + } +#Sunshine duration +'82136119' = { + table2Version = 136 ; + indicatorOfParameter = 119 ; + } +#PAR +'82136120' = { + table2Version = 136 ; + indicatorOfParameter = 120 ; + } +#Accumulated precipitation, 1 hours +'82136165' = { + table2Version = 136 ; + indicatorOfParameter = 165 ; + } +#Accumulated fresh snow, 1 hours +'82136175' = { + table2Version = 136 ; + indicatorOfParameter = 175 ; + } +#Total ozone +'82136206' = { + table2Version = 136 ; + indicatorOfParameter = 206 ; + } +#Missing +'82136255' = { + table2Version = 136 ; + indicatorOfParameter = 255 ; + } +############### table2Version 137 ############ +############### Match ############ +################################################# +#Reserved +'82137000' = { + table2Version = 137 ; + indicatorOfParameter = 0 ; + } +#Concentration of SOX, excluding seasalt, in air +'82137001' = { + table2Version = 137 ; + indicatorOfParameter = 1 ; + } +#Drydeposition of SOX, excluding seasalt, mixed gound +'82137002' = { + table2Version = 137 ; + indicatorOfParameter = 2 ; + } +#Drydeposition of SOX, excluding seasalt, Pasture +'82137003' = { + table2Version = 137 ; + indicatorOfParameter = 3 ; + } +#Drydeposition of SOX, excluding seasalt, Arable +'82137004' = { + table2Version = 137 ; + indicatorOfParameter = 4 ; + } +#Drydeposition of SOX, excluding seasalt, Beach Oak +'82137005' = { + table2Version = 137 ; + indicatorOfParameter = 5 ; + } +#Drydeposition of SOX, excluding seasalt, Deciduous +'82137006' = { + table2Version = 137 ; + indicatorOfParameter = 6 ; + } +#Drydeposition of SOX, excluding seasalt, Spruce +'82137007' = { + table2Version = 137 ; + indicatorOfParameter = 7 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137010' = { + table2Version = 137 ; + indicatorOfParameter = 10 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137011' = { + table2Version = 137 ; + indicatorOfParameter = 11 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137012' = { + table2Version = 137 ; + indicatorOfParameter = 12 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137013' = { + table2Version = 137 ; + indicatorOfParameter = 13 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137014' = { + table2Version = 137 ; + indicatorOfParameter = 14 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137015' = { + table2Version = 137 ; + indicatorOfParameter = 15 ; + } +#Total deposition of SOX, excluding seasalt +'82137016' = { + table2Version = 137 ; + indicatorOfParameter = 16 ; + } +#Concentration of SOX in air +'82137017' = { + table2Version = 137 ; + indicatorOfParameter = 17 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137020' = { + table2Version = 137 ; + indicatorOfParameter = 20 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137021' = { + table2Version = 137 ; + indicatorOfParameter = 21 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137022' = { + table2Version = 137 ; + indicatorOfParameter = 22 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137023' = { + table2Version = 137 ; + indicatorOfParameter = 23 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137024' = { + table2Version = 137 ; + indicatorOfParameter = 24 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137025' = { + table2Version = 137 ; + indicatorOfParameter = 25 ; + } +#Total deposition of SOX, excluding seasalt +'82137026' = { + table2Version = 137 ; + indicatorOfParameter = 26 ; + } +#Concentration of SOX in air +'82137027' = { + table2Version = 137 ; + indicatorOfParameter = 27 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137030' = { + table2Version = 137 ; + indicatorOfParameter = 30 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137031' = { + table2Version = 137 ; + indicatorOfParameter = 31 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137032' = { + table2Version = 137 ; + indicatorOfParameter = 32 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137033' = { + table2Version = 137 ; + indicatorOfParameter = 33 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137034' = { + table2Version = 137 ; + indicatorOfParameter = 34 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137035' = { + table2Version = 137 ; + indicatorOfParameter = 35 ; + } +#Total deposition of SOX, excluding seasalt +'82137036' = { + table2Version = 137 ; + indicatorOfParameter = 36 ; + } +#Concentration of SOX in air +'82137037' = { + table2Version = 137 ; + indicatorOfParameter = 37 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137040' = { + table2Version = 137 ; + indicatorOfParameter = 40 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137041' = { + table2Version = 137 ; + indicatorOfParameter = 41 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137042' = { + table2Version = 137 ; + indicatorOfParameter = 42 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137043' = { + table2Version = 137 ; + indicatorOfParameter = 43 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137044' = { + table2Version = 137 ; + indicatorOfParameter = 44 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137045' = { + table2Version = 137 ; + indicatorOfParameter = 45 ; + } +#Total deposition of SOX, excluding seasalt +'82137046' = { + table2Version = 137 ; + indicatorOfParameter = 46 ; + } +#Concentration of SOX in air +'82137047' = { + table2Version = 137 ; + indicatorOfParameter = 47 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137050' = { + table2Version = 137 ; + indicatorOfParameter = 50 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137051' = { + table2Version = 137 ; + indicatorOfParameter = 51 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137052' = { + table2Version = 137 ; + indicatorOfParameter = 52 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137053' = { + table2Version = 137 ; + indicatorOfParameter = 53 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137054' = { + table2Version = 137 ; + indicatorOfParameter = 54 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137055' = { + table2Version = 137 ; + indicatorOfParameter = 55 ; + } +#Total deposition of SOX, excluding seasalt +'82137056' = { + table2Version = 137 ; + indicatorOfParameter = 56 ; + } +#Concentration of SOX in air +'82137057' = { + table2Version = 137 ; + indicatorOfParameter = 57 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137060' = { + table2Version = 137 ; + indicatorOfParameter = 60 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137061' = { + table2Version = 137 ; + indicatorOfParameter = 61 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137062' = { + table2Version = 137 ; + indicatorOfParameter = 62 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137063' = { + table2Version = 137 ; + indicatorOfParameter = 63 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137064' = { + table2Version = 137 ; + indicatorOfParameter = 64 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137065' = { + table2Version = 137 ; + indicatorOfParameter = 65 ; + } +#Total deposition of SOX, excluding seasalt +'82137066' = { + table2Version = 137 ; + indicatorOfParameter = 66 ; + } +#Concentration of SOX in air +'82137067' = { + table2Version = 137 ; + indicatorOfParameter = 67 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137070' = { + table2Version = 137 ; + indicatorOfParameter = 70 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137071' = { + table2Version = 137 ; + indicatorOfParameter = 71 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137072' = { + table2Version = 137 ; + indicatorOfParameter = 72 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137073' = { + table2Version = 137 ; + indicatorOfParameter = 73 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137074' = { + table2Version = 137 ; + indicatorOfParameter = 74 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137075' = { + table2Version = 137 ; + indicatorOfParameter = 75 ; + } +#Total deposition of SOX, excluding seasalt +'82137076' = { + table2Version = 137 ; + indicatorOfParameter = 76 ; + } +#Concentration of SOX in air +'82137077' = { + table2Version = 137 ; + indicatorOfParameter = 77 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137100' = { + table2Version = 137 ; + indicatorOfParameter = 100 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137101' = { + table2Version = 137 ; + indicatorOfParameter = 101 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137102' = { + table2Version = 137 ; + indicatorOfParameter = 102 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137103' = { + table2Version = 137 ; + indicatorOfParameter = 103 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137104' = { + table2Version = 137 ; + indicatorOfParameter = 104 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137105' = { + table2Version = 137 ; + indicatorOfParameter = 105 ; + } +#Total deposition of SOX, excluding seasalt +'82137106' = { + table2Version = 137 ; + indicatorOfParameter = 106 ; + } +#Concentration of SOX in air +'82137107' = { + table2Version = 137 ; + indicatorOfParameter = 107 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137110' = { + table2Version = 137 ; + indicatorOfParameter = 110 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137111' = { + table2Version = 137 ; + indicatorOfParameter = 111 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137112' = { + table2Version = 137 ; + indicatorOfParameter = 112 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137113' = { + table2Version = 137 ; + indicatorOfParameter = 113 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137114' = { + table2Version = 137 ; + indicatorOfParameter = 114 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137115' = { + table2Version = 137 ; + indicatorOfParameter = 115 ; + } +#Total deposition of SOX, excluding seasalt +'82137116' = { + table2Version = 137 ; + indicatorOfParameter = 116 ; + } +#Concentration of SOX in air +'82137117' = { + table2Version = 137 ; + indicatorOfParameter = 117 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137120' = { + table2Version = 137 ; + indicatorOfParameter = 120 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137121' = { + table2Version = 137 ; + indicatorOfParameter = 121 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137122' = { + table2Version = 137 ; + indicatorOfParameter = 122 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137123' = { + table2Version = 137 ; + indicatorOfParameter = 123 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137124' = { + table2Version = 137 ; + indicatorOfParameter = 124 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137125' = { + table2Version = 137 ; + indicatorOfParameter = 125 ; + } +#Total deposition of SOX, excluding seasalt +'82137126' = { + table2Version = 137 ; + indicatorOfParameter = 126 ; + } +#Concentration of SOX in air +'82137127' = { + table2Version = 137 ; + indicatorOfParameter = 127 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'82137130' = { + table2Version = 137 ; + indicatorOfParameter = 130 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'82137131' = { + table2Version = 137 ; + indicatorOfParameter = 131 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'82137132' = { + table2Version = 137 ; + indicatorOfParameter = 132 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'82137133' = { + table2Version = 137 ; + indicatorOfParameter = 133 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'82137134' = { + table2Version = 137 ; + indicatorOfParameter = 134 ; + } +#Wetdeposition of SOX, excluding seasalt +'82137135' = { + table2Version = 137 ; + indicatorOfParameter = 135 ; + } +#Total deposition of SOX, excluding seasalt +'82137136' = { + table2Version = 137 ; + indicatorOfParameter = 136 ; + } +#Concentration of SOX in air +'82137137' = { + table2Version = 137 ; + indicatorOfParameter = 137 ; + } +#Missing +'82137255' = { + table2Version = 137 ; + indicatorOfParameter = 255 ; + } +############### table2Version 140 ############ +############### Blixtlokalisering ############ +################################################# +#Reserved +'82140000' = { + table2Version = 140 ; + indicatorOfParameter = 0 ; + } +#Cloud to ground discharge count +'82140001' = { + table2Version = 140 ; + indicatorOfParameter = 1 ; + } +#Cloud to cloud discharge count +'82140002' = { + table2Version = 140 ; + indicatorOfParameter = 2 ; + } +#Total discharge count +'82140003' = { + table2Version = 140 ; + indicatorOfParameter = 3 ; + } +#Cloud to ground accumulated absolute peek current +'82140004' = { + table2Version = 140 ; + indicatorOfParameter = 4 ; + } +#Cloud to cloud accumulated absolute peek current +'82140005' = { + table2Version = 140 ; + indicatorOfParameter = 5 ; + } +#Total accumulated absolute peek current +'82140006' = { + table2Version = 140 ; + indicatorOfParameter = 6 ; + } +#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) +'82140007' = { + table2Version = 140 ; + indicatorOfParameter = 7 ; + } +#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) +'82140008' = { + table2Version = 140 ; + indicatorOfParameter = 8 ; + } +#Significant total discharge count (discharges with absolute peek current above 100kA) +'82140009' = { + table2Version = 140 ; + indicatorOfParameter = 9 ; + } +#Missing +'82140255' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +############### table2Version 150 ############ +############### Hirlam postpr ############ +################################################# +#Reserved +'82150000' = { + table2Version = 150 ; + indicatorOfParameter = 0 ; + } +#Evaporation Penman formula +'82150057' = { + table2Version = 150 ; + indicatorOfParameter = 57 ; + } +#Spray weather recomendation +'82150058' = { + table2Version = 150 ; + indicatorOfParameter = 58 ; + } +#Missing +'82150255' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +############### table2Version 151 ############ +############### ECMWF postpr ############ +################################################# +#Reserved +'82151000' = { + table2Version = 151 ; + indicatorOfParameter = 0 ; + } +#Probability total precipitation between 1 and 10 mm +'82151001' = { + table2Version = 151 ; + indicatorOfParameter = 1 ; + } +#Probability total precipitation between 10 and 50 mm +'82151002' = { + table2Version = 151 ; + indicatorOfParameter = 2 ; + } +#Probability total precipitation more than 50 mm +'82151003' = { + table2Version = 151 ; + indicatorOfParameter = 3 ; + } +#Evaporation Penman formula +'82151057' = { + table2Version = 151 ; + indicatorOfParameter = 57 ; + } +#Missing +'82151255' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +### HARMONIE tables ### +#Absolute divergence +'82253042' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Absolute vorticity +'82253041' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Convective precipitation (water) +'82253063' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Surface aerosol soot (carbon) +'82253253' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'82253254' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Surface aerosol land +'82253252' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol sea +'82253251' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Albedo +'82253084' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Albedo of bare ground +'82253229' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'82253230' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#A Ozone +'82253248' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#Analysed RMS of PHI (CANARI) +'82253128' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Snow albedo +'82253190' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Anisotropy coeff of topography +'82253221' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Boundary layer dissipation +'82253123' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Best lifted index (to 500 hPa) +'82253077' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#B Ozone +'82253249' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#Brightness temperature +'82253118' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#CAPE out of the model +'82253160' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#Cloud base +'82253186' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Convective cloud cover +'82253072' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Cloud ice water content +'82253058' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Fraction of clay within soil +'82253225' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#C Ozone +'82253250' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Convective rain +'82253183' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Convective snowfall +'82253078' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#LW net clear sky rad +'82253131' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#SW net clear sky rad +'82253130' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#Cloud top +'82253187' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Cloud water +'82253076' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Divergence +'82253044' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Density +'82253089' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Dew point depression (or deficit) +'82253018' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Direction of ice drift +'82253093' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Direction of current +'82253047' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Secondary wave direction +'82253109' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Downdraft mesh fraction +'82253217' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Downdraft omega +'82253215' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Deviation of sea-level from mean +'82253082' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Direction of main axis of topography +'82253222' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Duration of total precipitation +'82253243' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Dominant vegetation index +'82253234' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Evaporation +'82253057' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Gust +'82253228' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Forecast RMS of PHI (CANARI) +'82253129' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#Fraction of urban land +'82253188' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Geopotential Height +'82253007' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geopotential height anomaly +'82253027' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Global radiation flux +'82253117' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Graupel +'82253201' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Gravity wave stress U-comp +'82253195' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'82253196' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#Geometrical height +'82253008' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Hail +'82253204' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#High cloud cover +'82253075' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Standard deviation of height +'82253009' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#ICAO Standard Atmosphere reference height +'82253005' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Ice cover (1=land, 0=sea) +'82253091' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice divergence +'82253098' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Ice growth rate +'82253097' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Icing index +'82253135' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Ice thickness +'82253092' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Image data +'82253127' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Leaf area index +'82253232' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Lapse rate +'82253019' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Low cloud cover +'82253073' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Lightning +'82253209' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; + } +#Latent heat flux through evaporation +'82253132' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Latent Heat Sublimation +'82253244' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Large-scale snowfall +'82253079' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Land-sea mask +'82253081' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#large scale precipitation (water) +'82253062' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Long wave radiation flux +'82253115' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Radiance (with respect to wave number) +'82253119' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Medium cloud cover +'82253074' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#MOCON out of the model +'82253166' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Mean direction of primary swell +'82253107' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean direction of wind waves +'82253101' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Humidity mixing ratio +'82253053' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Mixed layer depth +'82253067' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Montgomery stream Function +'82253037' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Mean period of primary swell +'82253108' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Mean period of wind waves +'82253103' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Surface downward moon radiation +'82253158' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#Mask of significant cloud amount +'82253133' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Mean sea level pressure +'82253002' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Main thermocline anomaly +'82253070' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Main thermocline depth +'82253069' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Net long-wave radiation flux (surface) +'82253112' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net long-wave radiation flux(atmosph.top) +'82253114' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Net short-wave radiation flux (surface) +'82253111' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net short-wave radiationflux(atmosph.top) +'82253113' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Pseudo-adiabatic potential temperature +'82253014' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Pressure departure +'82253212' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Parcel lifted index (to 500 hPa) +'82253024' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Precipitation rate +'82253059' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Pressure +'82253001' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Pressure anomaly +'82253026' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Precipitation Type +'82253144' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'82253136' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'82253139' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Pseudo satellite image: water vapour Tb +'82253137' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'82253138' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Potential temperature +'82253013' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pressure tendency +'82253003' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'82253004' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#Precipitable water +'82253054' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Specific humidity +'82253051' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'82253052' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Rain +'82253181' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Radar spectra (3) +'82253023' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Simulated reflectivity +'82253210' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Resistance to evapotransiration +'82253240' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'82253241' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'82253242' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Runoff +'82253090' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Snow density +'82253191' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Salinity +'82253088' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Saturation deficit +'82253056' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Snow depth water equivalent +'82253066' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Surface emissivity +'82253235' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Snow Fall water equivalent +'82253065' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Sigma coordinate vertical velocity +'82253038' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Snow history +'82253247' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#Significant height of wind waves +'82253102' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Speed of ice drift +'82253094' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#Soil depth +'82253237' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Fraction of sand within soil +'82253226' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Surface latent heat flux +'82253121' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Soil Temperature +'82253085' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil Moisture +'82253086' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Stomatal minimum resistance +'82253231' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Snow melt +'82253099' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Snow +'82253184' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Snow Sublimation +'82253246' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Speed of current +'82253048' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#Stratiform rain +'82253182' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Surface roughness * g +'82253083' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Snow fall rate water equivalent +'82253064' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Surface sensible heat flux +'82253122' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Standard deviation of orography * g +'82253220' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Stream function +'82253035' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Short wave radiation flux +'82253116' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Direction of swell waves +'82253104' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'82253105' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Signific.height,combined wind waves+swell +'82253100' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Secondary wave period +'82253110' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Mean period of swell waves +'82253106' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Radiance (with respect to wave length) +'82253120' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Soil wetness +'82253238' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Temperature +'82253011' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Temperature anomaly +'82253025' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Total Cloud Cover +'82253071' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Total column ozone +'82253010' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Dew point temperature +'82253017' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#TKE +'82001200' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature +'82253015' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'82253016' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Total water vapour +'82253167' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Total precipitation +'82253061' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Total solid precipitation +'82253185' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Thunderstorm probability +'82253060' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Transient thermocline depth +'82253068' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Vertical velocity +'82253040' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#U component of wind +'82253033' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#U-component of current +'82253049' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#Momentum flux, u-component +'82253124' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Gust, u-component +'82253162' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#U-component of ice drift +'82253095' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#Updraft mesh fraction +'82253216' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Updraft omega +'82253214' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#V component of wind +'82253034' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#V-component of current +'82253050' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Vertical Divergence +'82253213' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Vegetation fraction +'82253087' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Momentum flux, v-component +'82253125' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Gust, v-component +'82253163' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#V-component of ice drift +'82253096' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Visibility +'82253020' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Vorticity (relative) +'82253043' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Vapour pressure +'82253055' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Virtual potential temperature +'82253012' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Vertical u-component shear +'82253045' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'82253046' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Vertical velocity +'82253039' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Water on canopy (Interception content) +'82253192' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Water on canopy (Interception content) +'82253193' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Wind direction +'82253031' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Water evaporation +'82253245' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Wind mixing energy +'82253126' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Wind speed +'82253032' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#Water temperature +'82253080' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Wave spectra (3) +'82253030' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#AROME hail diagnostic +'82253161' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Geopotential +'82253006' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Thermal roughness length * g +'82253239' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eswi/shortName.def b/eccodes/definitions/grib1/localConcepts/eswi/shortName.def new file mode 100644 index 00000000..8db79009 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/shortName.def @@ -0,0 +1,5580 @@ +############### table2Version 1 ############ +############### WMO/Hirlam ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'pres' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to MSL +'msl' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'ptend' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'pv' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'z' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gh' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'h' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total ozone +'tozne' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'t' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'pt' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'dptd' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar Spectra (1) +'rdsp1' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar Spectra (2) +'rdsp2' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar Spectra (3) +'rdsp3' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave Spectra (1) +'wvsp1' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave Spectra (2) +'wvsp2' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave Spectra (3) +'wvsp3' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'ws' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'strf' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'mntsf' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coord. vertical velocity +'sgcvv' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'omega' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Geometric Vertical velocity +'w' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'absv' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'vo' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'d' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'vusch' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvsch' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#u-component of current +'ucurr' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#v-component of current +'vcurr' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'q' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'r' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'e' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud Ice +'cice' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'prate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'lsp' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'acpcp' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snowfall rate water equivalent +'srweq' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equiv. of accum. snow depth +'sdwe' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'sd' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'mld' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'tcc' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'cwat' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snow +'csf' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snow +'lsf' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water Temperature +'wtmp' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'lsm' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea level from mean +'dslm' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'sr' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'al' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'st' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'ssw' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'veg' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'s' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run off +'watr' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'icec' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#u-component of ice drift +'uice' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#v-component of ice drift +'vice' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Significant height of combined wind waves and swell +'swh' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'mdww' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'prwd' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'perpw' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'persw' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short wave radiation flux (surface) +'nswrs' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short wave radiation flux (top of atmos.) +'nswrt' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long wave radiation flux (top of atmos.) +'nlwrt' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'btmp' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat net flux +'lhtfl' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat net flux +'shtfl' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u component +'uflx' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v component +'vflx' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'mofl' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Humidity tendencies +'qten' = { + table2Version = 1 ; + indicatorOfParameter = 129 ; + } +#Radiation at top of atmosphere +'radtop' = { + table2Version = 1 ; + indicatorOfParameter = 130 ; + } +#Cloud top temperature, infrared +'ctt' = { + table2Version = 1 ; + indicatorOfParameter = 131 ; + } +#Water vapor brightness temperature +'wvbt' = { + table2Version = 1 ; + indicatorOfParameter = 132 ; + } +#Water vapor brightness temperature, correction +'wvbt_corr' = { + table2Version = 1 ; + indicatorOfParameter = 133 ; + } +#Cloud water reflectivity +'cwref' = { + table2Version = 1 ; + indicatorOfParameter = 134 ; + } +#Maximum wind +'maxgust' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Minimum wind +'mingust' = { + table2Version = 1 ; + indicatorOfParameter = 136 ; + } +#Integrated cloud condensate +'icc' = { + table2Version = 1 ; + indicatorOfParameter = 137 ; + } +#Snow depth, cold snow +'sd_cold' = { + table2Version = 1 ; + indicatorOfParameter = 138 ; + } +#Open land snow depth +'sd_cold_ol' = { + table2Version = 1 ; + indicatorOfParameter = 139 ; + } +#Temperature over land +'tland' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'qland' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land +'rhland' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land +'dptland' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'slfr' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'shfr' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter RSHA +'RSHA' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter RSHB +'RSHB' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Momentum vegetation roughness +'movegro' = { + table2Version = 1 ; + indicatorOfParameter = 164 ; + } +#Surface slope +'susl' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'skwf' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'frasp' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Heat roughness +'hero' = { + table2Version = 1 ; + indicatorOfParameter = 168 ; + } +#Albedo with solar angle correction +'al_scorr' = { + table2Version = 1 ; + indicatorOfParameter = 169 ; + } +#Soil wetness index +'swi' = { + table2Version = 1 ; + indicatorOfParameter = 189 ; + } +#Snow albedo +'asn' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'dsn' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'watcn' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'ssi' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Fraction of surface type +'frst' = { + table2Version = 1 ; + indicatorOfParameter = 194 ; + } +#Soil type +'slt' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'fol' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'fof' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'fool' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'vgtyp' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'TKE' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Standard deviation of mesoscale orography +'orostdv' = { + table2Version = 1 ; + indicatorOfParameter = 204 ; + } +#Anisotrophic mesoscale orography +'amo' = { + table2Version = 1 ; + indicatorOfParameter = 205 ; + } +#X-angle of mesoscale orography +'anmo' = { + table2Version = 1 ; + indicatorOfParameter = 206 ; + } +#Maximum slope of smallest scale orography +'mssso' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'sdsso' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Ice existence +'iceex' = { + table2Version = 1 ; + indicatorOfParameter = 210 ; + } +#Lifting condensation level +'lcl' = { + table2Version = 1 ; + indicatorOfParameter = 222 ; + } +#Level of neutral buoyancy +'lnb' = { + table2Version = 1 ; + indicatorOfParameter = 223 ; + } +#Convective inhibation +'ci' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } +#CAPE +'CAPE' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Precipitation type +'ptype' = { + table2Version = 1 ; + indicatorOfParameter = 226 ; + } +#Friction velocity +'vfr' = { + table2Version = 1 ; + indicatorOfParameter = 227 ; + } +#Wind gust +'gust' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Analysed 3-hour precipitation (-3h/0h) +'anpr3' = { + table2Version = 1 ; + indicatorOfParameter = 250 ; + } +#Analysed 12-hour precipitation (-12h/0h) +'anpr12' = { + table2Version = 1 ; + indicatorOfParameter = 251 ; + } +#Missing +'Missing' = { + table2Version = 1 ; + indicatorOfParameter = 255 ; + } +############### table2Version 128 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 128 ; + indicatorOfParameter = 0 ; + } +# SO2/SO2 +'SO2' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'SO4(2-)' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +# DMS/DMS +'DMS' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +# MSA/MSA +'MSA' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +# H2S/H2S +'H2S' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +# NH4SO4/(NH4)1.5H0.5SO4 +'NH4SO4' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +# NH4HSO4/NH4HSO4 +'NH4HSO4' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +# NH42SO4/(NH4)2SO4 +'NH42SO4' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +# SULFATE/SULFATE +'SFT' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +# SO2_AQ/SO2 in aqueous phase +'SO2_AQ' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +# SO4_AQ/sulfate in aqueous phase +'SO4_AQ' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +# LRT_SO2_S/long-range SO2_S +'LRT_SO2_S' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +# LRT_SO4_S/LRT-contriubtion to SO4_S +'LRT_SO4_S' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +# LRT_SOX_S/LRT-contriubtion to SO4_S +'LRT_SOX_S' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +# XSOX_S/excess SOX (corrected for sea salt as sulfur) +'XSOX_S' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +# SO2_S/SO2 (as sulphur) +'SO2_S' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +# SO4_S/SO4 (as sulphur) +'SO4_S' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'SOX_S' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +# NO +'NO' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +# NO2/NO2 +'NO2' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +# HNO3/HNO3 +'HNO3' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +# NO3(-1)/NO3(-1) (nitrate) +'NO3(-1)' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +# NH4NO3/NH4NO3 +'NH4NO3' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +# NITRATE/NITRATE +'NITRATE' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +# PNO3/(COARSE) NITRATE +'PNO3' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +# LRT_NOY_N/long-range NOY_N +'LRT_NOY_N' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +# NO3_N/NO3 as N +'NO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +# HNO3_N/HNO3 as N +'HNO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +# LRT_NO3_N/long-range NO3_N +'LRT_NO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +# LRT_HNO3_N/long-range HNO3_N +'LRT_HNO3_N' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +# LRT_NO2_N/long-range NO2_N +'LRT_NO2_N' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +# LRT_NOZ_N/long-range NOZ_N +'LRT_NOZ_N' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +# NOX/NOX as NO2 +'NOX' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +# NO_N/NO as N +'NO_N' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +# NO2_N/NO2 as N +'NO2_N' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'NOX_N' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'NOY_N' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +# NOZ_N/NOy-NOx (as nitrogen) +'NOZ_N' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +# NH3/NH3 +'NH3' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +# NH4(+1)/NH4 +'NH4(+1)' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +# AMMONIUM/AMMONIUM +'AMMONIUM' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +# NH3_N/NH3 (as nitrogen) +'NH3_N' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +# NH4_N/NH4 (as nitrogen) +'NH4_N' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +# LRT_NH3_N/long-range NH3_N +'LRT_NH3_N' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +# LRT_NH4_N/long-range NH4_N +'LRT_NH4_N' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +# LRT_NHX_N/long-range NHX_N +'LRT_NHX_N' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'NHX_N' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +# O3 +'O3' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +# H2O2/H2O2 +'H2O2' = { + table2Version = 128 ; + indicatorOfParameter = 61 ; + } +# OH/OH +'OH' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +# O3_AQ/O3 in aqueous phase +'O3_AQ' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +# H2O2_AQ/H2O2 in aqueous phase +'H2O2_AQ' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +# OX/Ox=O3+NO2 +'OX' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +# C +'C' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +# CO/CO +'CO' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +# CO2/CO2 +'CO2' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +# CH4/CH4 +'CH4' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +# OC/Organic carbon (particles) +'OC' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +# EC/Elementary carbon (particles) +'EC' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +# CF6 +'CF6' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +# PMCH/PMCH +'PMCH' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +# PMCP/PMCP +'PMCP' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +# TRACER/Tracer +'TRACER' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +# Inert/Inert +'Inert' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +# H3 +'H3' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +# Ar41/Ar41 +'Ar41' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +# Kr85/Kr85 +'Kr85' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +# Kr88/Kr88 +'Kr88' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +# Xe131/Xe131 +'Xe131' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +# Xe133/Xe133 +'Xe133' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +# Rn222/Rn222 +'Rn222' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +# I131/I131 +'I131' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +# I132/I132 +'I132' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +# I133/I133 +'I133' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +# I135/I135 +'I135' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +# Sr90 +'Sr90' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +# Co60/Co60 +'Co60' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +# Ru103/Ru103 +'Ru103' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +# Ru106/Ru106 +'Ru106' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +# Cs134/Cs134 +'Cs134' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +# Cs137/Cs137 +'Cs137' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +# Ra223/Ra123 +'Ra223' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +# Ra228/Ra228 +'Ra228' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +# Zr95 +'Zr95' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +# Nb95/Nb95 +'Nb95' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +# Ce144/Ce144 +'Ce144' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +# Np238/Np238 +'Np238' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +# Np239/Np239 +'Np239' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +# Pu241/Pu241 +'Pu241' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +# Pb210/Pb210 +'Pb210' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +# ALL +'ALL' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +# NACL +'NACL' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +# SODIUM/Na+ +'Na+'= { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +# MAGNESIUM/Mg++ +'Mg++' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +# POTASSIUM/K+ +'K+' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +# CALCIUM/Ca++ +'Ca++' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +# XMG/excess Mg++ (corrected for sea salt) +'XMG' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +# XK/excess K+ (corrected for sea salt) +'XK' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +# XCA/excess Ca++ (corrected for sea salt) +'XCA' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +# Cl2/Cloride +'Cl2' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +# PMFINE +'PMFINE' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +# PMCOARSE/Coarse particles +'PMCOARSE' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +# DUST/Dust (particles) +'DUST' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +# PNUMBER/Number concentration +'PNUMBER' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +# PRADIUS/Particle radius +'PRADIUS' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +# PSURFACE/Particle surface conc +'PSURFACE' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +# PMASS/Particle mass conc +'PMASS' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +# PM10/PM10 particles +'PM10' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +# PSOX/Particulate sulfate +'PSOX' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +# PNOX/Particulate nitrate +'PNOX' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +# PNHX/Particulate ammonium +'PNHX' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +# PPMFINE/Primary emitted fine particles +'PPMFINE' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +# PPM10/Primary emitted particles +'PPM10' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +# SOA/Secondary Organic Aerosol +'SOA' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +# PM2.5/PM2.5 particles +'PM2.5' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +# PM/Total particulate matter +'PM' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +# BIRCH_POLLEN/Birch pollen +'BIRCH_POLLEN' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +# KZ +'KZ' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +# L/Monin-Obukhovs length [m] +'L' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +# U*/Friction velocity [m/s] +'U*' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +# W*/Convective velocity scale [m/s] +'W*' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +# Z-D/Z0 minus displacement length [m] +'Z-D' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +# SURFTYPE/Surface type (see link{OCTET45}) +'SURFTYPE' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +# LAI/Leaf area index +'LAI' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +# SOILTYPE/Soil type +'SOILTYPE' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +# SSALB/Single scattering albodo [1] +'SSALB' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +# ASYMPAR/Asymmetry parameter +'ASYMPAR' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +# VIS/Visibility [m] +'VIS' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +# EXT/Extinction [1/m] +'EXT' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +# BSCA/Backscattering coeff [1/m/sr] +'BSCA' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +# AOD/Aerosol opt depth [1] +'AOD' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +# DAOD/AOD per layer [1] +'DAOD' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +# CONV_TIED +'CONV_TIED' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +# CONV_BOT/Convective cloud bottom (unit?) +'CONV_BOT' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +# CONV_TOP/Convective cloud top (unit?) +'CONV_TOP' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +# DXDY/Gridsize [m2] +'DXDY' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +# EMIS/Sectoral emissions +'EMIS' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +# LONG/Longitude +'LONG' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +# LAT/Latitude +'LAT' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Missing +'Missing' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +############### table2Version 129 ############ +############### Mesan ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 129 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'MSL' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Temperature +'t' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#Wet bulb temperature +'Tiw' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#24 hour mean of 2 meter temperature +'mean2t24h' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#Maximum temperature +'tmax' = { + table2Version = 129 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 129 ; + indicatorOfParameter = 16 ; + } +#Visibility +'vis' = { + table2Version = 129 ; + indicatorOfParameter = 20 ; + } +#Wind gusts +'gust' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'u' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'r' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Total cloud cover +'tcc' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'lcc' = { + table2Version = 129 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'mcc' = { + table2Version = 129 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 129 ; + indicatorOfParameter = 75 ; + } +#Fraction of significant clouds +'c_sigfr' = { + table2Version = 129 ; + indicatorOfParameter = 77 ; + } +#Cloud base of significant clouds +'cb_sig' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Cloud top of significant clouds +'ct_sig' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Type of precipitation +'prtype' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Sort of precipitation +'prsort' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#6 hour precipitation +'prec6h' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#12 hour precipitation +'prec12h' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#18 hour precipitation +'prec18h' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#24 hour precipitation +'prec24h' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#1 hour precipitation +'prec1h' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#2 hour precipitation +'prec2h' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#3 hour precipitation +'prec3h' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#9 hour precipitation +'prec9h' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#15 hour precipitation +'prec15h' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#6 hour fresh snow cover +'frsn6h' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#12 hour fresh snow cover +'frsn12h' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#18 hour fresh snow cover +'frsn18h' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#24 hour fresh snow cover +'frsn24h' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#1 hour fresh snow cover +'frsn1h' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#2 hour fresh snow cover +'frsn2h' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#3 hour fresh snow cover +'frsn3h' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#9 hour fresh snow cover +'frsn9h' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#15 hour fresh snow cover +'frsn15h' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#6 hour precipitation, corrected +'prec6h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#12 hour precipitation, corrected +'prec12h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#18 hour precipitation, corrected +'prec18h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#24 hour precipitation, corrected +'prec24h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#1 hour precipitation, corrected +'prec1h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#2 hour precipitation, corrected +'prec2h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#3 hour precipitation, corrected +'prec3h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#9 hour precipitation, corrected +'prec9h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#15 hour precipitation, corrected +'prec15h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#6 hour fresh snow cover, corrected +'frsn6h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#12 hour fresh snow cover, corrected +'frsn12h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#18 hour fresh snow cover, corrected +'frsn18h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#24 hour fresh snow cover, corrected +'frsn24h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#1 hour fresh snow cover, corrected +'frsn1h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#2 hour fresh snow cover, corrected +'frsn2h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#3 hour fresh snow cover, corrected +'frsn3h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#9 hour fresh snow cover, corrected +'frsn9h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#15 hour fresh snow cover, corrected +'frsn15h_cor' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#6 hour precipitation, standardized +'prec6h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#12 hour precipitation, standardized +'prec12h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#18 hour precipitation, standardized +'prec18h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#24 hour precipitation, standardized +'prec24h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#1 hour precipitation, standardized +'prec1h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#2 hour precipitation, standardized +'prec2h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#3 hour precipitation, standardized +'prec3h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#9 hour precipitation, standardized +'prec9h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#15 hour precipitation, standardized +'prec15h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#6 hour fresh snow cover, standardized +'frsn6h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#12 hour fresh snow cover, standardized +'frsn12h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#18 hour fresh snow cover, standardized +'frsn18h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 213 ; + } +#24 hour fresh snow cover, standardized +'frsn24h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#1 hour fresh snow cover, standardized +'frsn1h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#2 hour fresh snow cover, standardized +'frsn2h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#3 hour fresh snow cover, standardized +'frsn3h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#9 hour fresh snow cover, standardized +'frsn9h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#15 hour fresh snow cover, standardized +'frsn15h_sta' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#6 hour precipitation, corrected and standardized +'prec6h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#12 hour precipitation, corrected and standardized +'prec12h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#18 hour precipitation, corrected and standardized +'prec18h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#24 hour precipitation, corrected and standardized +'prec24h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#1 hour precipitation, corrected and standardized +'prec1h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#2 hour precipitation, corrected and standardized +'prec2h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#3 hour precipitation, corrected and standardized +'prec3h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#9 hour precipitation, corrected and standardized +'prec9h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#15 hour precipitation, corrected and standardized +'prec15h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#6 hour fresh snow cover, corrected and standardized +'frsn6h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#12 hour fresh snow cover, corrected and standardized +'frsn12h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#18 hour fresh snow cover, corrected and standardized +'frsn18h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#24 hour fresh snow cover, corrected and standardized +'frsn24h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#1 hour fresh snow cover, corrected and standardized +'frsn1h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#2 hour fresh snow cover, corrected and standardized +'frsn2h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#3 hour fresh snow cover, corrected and standardized +'frsn3h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#9 hour fresh snow cover, corrected and standardized +'frsn9h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#15 hour fresh snow cover, corrected and standardized +'frsn15h_corsta' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Missing +'Missing' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +############### table2Version 130 ############ +############### PMP ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 130 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'msl' = { + table2Version = 130 ; + indicatorOfParameter = 1 ; + } +#Temperature +'t' = { + table2Version = 130 ; + indicatorOfParameter = 11 ; + } +#Visibility +'vis' = { + table2Version = 130 ; + indicatorOfParameter = 20 ; + } +#u-component of wind +'u' = { + table2Version = 130 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'v' = { + table2Version = 130 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'r' = { + table2Version = 130 ; + indicatorOfParameter = 52 ; + } +#Probability of frozen rain +'fzrpr' = { + table2Version = 130 ; + indicatorOfParameter = 58 ; + } +#Probability thunderstorm +'tstm' = { + table2Version = 130 ; + indicatorOfParameter = 60 ; + } +#Total_precipitation +'tp' = { + table2Version = 130 ; + indicatorOfParameter = 61 ; + } +#Water_equiv._of_snow_depth +'sdwe' = { + table2Version = 130 ; + indicatorOfParameter = 65 ; + } +#Area_time_min_totalcloudcover +'tccarmin' = { + table2Version = 130 ; + indicatorOfParameter = 67 ; + } +#Area_time_max_totalcloudcover +'tccarmax' = { + table2Version = 130 ; + indicatorOfParameter = 68 ; + } +#Area_time_median_totalcloudcover +'tccarmedian' = { + table2Version = 130 ; + indicatorOfParameter = 69 ; + } +#Area_time_mean_totalcloudcover +'tccarmean' = { + table2Version = 130 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'tcc' = { + table2Version = 130 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 130 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 130 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'mcc' = { + table2Version = 130 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 130 ; + indicatorOfParameter = 75 ; + } +#cloud mask +'cm' = { + table2Version = 130 ; + indicatorOfParameter = 77 ; + } +#Index 2m maxtemperatur over 3 dygn +'2tmax3dind' = { + table2Version = 130 ; + indicatorOfParameter = 100 ; + } +#EPS T mean +'epstm' = { + table2Version = 130 ; + indicatorOfParameter = 110 ; + } +#EPS T standard deviation +'epststdv' = { + table2Version = 130 ; + indicatorOfParameter = 111 ; + } +#Maximum wind (mean 10 min) +'maxws' = { + table2Version = 130 ; + indicatorOfParameter = 130 ; + } +#Wind gust +'gust' = { + table2Version = 130 ; + indicatorOfParameter = 131 ; + } +#Cloud base (significant) +'cb_sig' = { + table2Version = 130 ; + indicatorOfParameter = 135 ; + } +#Cloud top (significant) +'ct_sig' = { + table2Version = 130 ; + indicatorOfParameter = 136 ; + } +#Omradesnederbord gridpunkts-min +'parmin2' = { + table2Version = 130 ; + indicatorOfParameter = 137 ; + } +#Omradesnederbord gridpunkts-max +'parmax2' = { + table2Version = 130 ; + indicatorOfParameter = 138 ; + } +#Omradesnederbord gridpunkts-medel +'parmean2' = { + table2Version = 130 ; + indicatorOfParameter = 139 ; + } +#Precipitation intensity total +'pit' = { + table2Version = 130 ; + indicatorOfParameter = 140 ; + } +#Precipitation intensity snow +'pis' = { + table2Version = 130 ; + indicatorOfParameter = 141 ; + } +#Area_time_min_precipitation +'parmin' = { + table2Version = 130 ; + indicatorOfParameter = 142 ; + } +#Area_time_max_precipitation +'parmax' = { + table2Version = 130 ; + indicatorOfParameter = 143 ; + } +#Precipitation type, conv 0, large scale 1, no prec -9 +'ptype' = { + table2Version = 130 ; + indicatorOfParameter = 145 ; + } +#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle +'pcat' = { + table2Version = 130 ; + indicatorOfParameter = 146 ; + } +#Vadersymbol +'Wsymb' = { + table2Version = 130 ; + indicatorOfParameter = 147 ; + } +#Area_time_mean_precipitation +'parmean' = { + table2Version = 130 ; + indicatorOfParameter = 148 ; + } +#Area_time_median_precipitation +'parmedian' = { + table2Version = 130 ; + indicatorOfParameter = 149 ; + } +#Missing +'Missing' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +############### table2Version 131 ############ +############### RCA ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 131 ; + indicatorOfParameter = 0 ; + } +#Sea surface temperature (LAKE) +'sstLAKE' = { + table2Version = 131 ; + indicatorOfParameter = 11 ; + } +#Current east +'ecurr' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Current north +'ncurr' = { + table2Version = 131 ; + indicatorOfParameter = 50 ; + } +#Snowdepth in Probe +'sd_pr' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Ice concentration (LAKE) +'iccLAKE' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Ice thickness Probe-lake +'icth_pr' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Temperature ABC-lake +'t_ABC' = { + table2Version = 131 ; + indicatorOfParameter = 150 ; + } +#Temperature C-lake +'t_C' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Temperature D-lake +'t_D' = { + table2Version = 131 ; + indicatorOfParameter = 152 ; + } +#Temperature E-lake +'t_E' = { + table2Version = 131 ; + indicatorOfParameter = 153 ; + } +#Area ABC-lake +'ar_ABC' = { + table2Version = 131 ; + indicatorOfParameter = 160 ; + } +#Depth ABC-lake +'dp_ABC' = { + table2Version = 131 ; + indicatorOfParameter = 161 ; + } +#C-lakes +'Clake' = { + table2Version = 131 ; + indicatorOfParameter = 162 ; + } +#D-lakes +'Dlake' = { + table2Version = 131 ; + indicatorOfParameter = 163 ; + } +#E-lakes +'Elake' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#Ice thickness ABC-lake +'icth_ABC' = { + table2Version = 131 ; + indicatorOfParameter = 170 ; + } +#Ice thickness C-lake +'icth_C' = { + table2Version = 131 ; + indicatorOfParameter = 171 ; + } +#Ice thickness D-lake +'icth_D' = { + table2Version = 131 ; + indicatorOfParameter = 172 ; + } +#Ice thickness E-lake +'icth_E' = { + table2Version = 131 ; + indicatorOfParameter = 173 ; + } +#Sea surface temperature (T) +'sst' = { + table2Version = 131 ; + indicatorOfParameter = 180 ; + } +#Ice concentration (I) +'icc' = { + table2Version = 131 ; + indicatorOfParameter = 183 ; + } +#Fraction lake +'fl' = { + table2Version = 131 ; + indicatorOfParameter = 196 ; + } +#Black ice thickness in Probe +'bit_pr' = { + table2Version = 131 ; + indicatorOfParameter = 241 ; + } +#Vallad istjocklek i Probe +'icth_ri' = { + table2Version = 131 ; + indicatorOfParameter = 244 ; + } +#Internal ice concentration in Probe +'intic_pr' = { + table2Version = 131 ; + indicatorOfParameter = 245 ; + } +#Isfrontlaege i Probe +'icfr_pr' = { + table2Version = 131 ; + indicatorOfParameter = 246 ; + } +#Heat in Probe +'heat_pr' = { + table2Version = 131 ; + indicatorOfParameter = 250 ; + } +#Turbulent Kintetic Energy +'TKE' = { + table2Version = 131 ; + indicatorOfParameter = 251 ; + } +#Dissipation rate Turbulent Kinetic Energy +'TKEdiss' = { + table2Version = 131 ; + indicatorOfParameter = 252 ; + } +#Missing +'Missing' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +############### table2Version 133 ############ +############### Hiromb ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 133 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'MSL' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#Temperature +'t' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Potential temperature +'pt' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'ws' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#U-component of Wind +'u' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#V-component of Wind +'v' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Stream function +'strf' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'mntsf' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Z-component of velocity (pressure) +'wcur_pr' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Z-component of velocity (geometric) +'wcur_ge' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'absv' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'vo' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'d' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'vshu' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vshv' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Direction of horizontal current +'dirhcur' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Speed of horizontal current +'spdhcur' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#U-comp of Current +'ucur' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#V-comp of Current +'vcur' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'q' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snow Depth +'sd' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'mld' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#Water temperature +'wtmp' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea level from mean +'dslm' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Salinity +'s' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Ice Cover +'icec' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Total ice thickness +'icetk' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 133 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 133 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 133 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 133 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 133 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 133 ; + indicatorOfParameter = 98 ; + } +#Significant wave height +'swh' = { + table2Version = 133 ; + indicatorOfParameter = 100 ; + } +#Direction of Wind Waves +'wvdir' = { + table2Version = 133 ; + indicatorOfParameter = 101 ; + } +#Sign Height Wind Waves +'shww' = { + table2Version = 133 ; + indicatorOfParameter = 102 ; + } +#Mean Period Wind Waves +'mpww' = { + table2Version = 133 ; + indicatorOfParameter = 103 ; + } +#Direction of Swell Waves +'swdir' = { + table2Version = 133 ; + indicatorOfParameter = 104 ; + } +#Sign Height Swell Waves +'shps' = { + table2Version = 133 ; + indicatorOfParameter = 105 ; + } +#Mean Period Swell Waves +'swper' = { + table2Version = 133 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'dirpw' = { + table2Version = 133 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'perpw' = { + table2Version = 133 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 133 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'persw' = { + table2Version = 133 ; + indicatorOfParameter = 110 ; + } +#Mean period of waves +'mpw' = { + table2Version = 133 ; + indicatorOfParameter = 111 ; + } +#Mean direction of Waves +'wadir' = { + table2Version = 133 ; + indicatorOfParameter = 112 ; + } +#Peak period of 1D spectra +'pp1d' = { + table2Version = 133 ; + indicatorOfParameter = 113 ; + } +#Skin velocity, x-comp. +'usurf' = { + table2Version = 133 ; + indicatorOfParameter = 130 ; + } +#Skin velocity, y-comp. +'vsurf' = { + table2Version = 133 ; + indicatorOfParameter = 131 ; + } +#Nitrate +'NO3' = { + table2Version = 133 ; + indicatorOfParameter = 151 ; + } +#Ammonium +'NH4' = { + table2Version = 133 ; + indicatorOfParameter = 152 ; + } +#Phosphate +'PO4' = { + table2Version = 133 ; + indicatorOfParameter = 153 ; + } +#Oxygen +'O2' = { + table2Version = 133 ; + indicatorOfParameter = 154 ; + } +#Phytoplankton +'phpl' = { + table2Version = 133 ; + indicatorOfParameter = 155 ; + } +#Zooplankton +'zpl' = { + table2Version = 133 ; + indicatorOfParameter = 156 ; + } +#Detritus +'dtr' = { + table2Version = 133 ; + indicatorOfParameter = 157 ; + } +#Bentos nitrogen +'benN' = { + table2Version = 133 ; + indicatorOfParameter = 158 ; + } +#Bentos phosphorus +'benP' = { + table2Version = 133 ; + indicatorOfParameter = 159 ; + } +#Silicate +'SiO4' = { + table2Version = 133 ; + indicatorOfParameter = 160 ; + } +#Biogenic silica +'SiO2_bi' = { + table2Version = 133 ; + indicatorOfParameter = 161 ; + } +#Light in water column +'li_wacol' = { + table2Version = 133 ; + indicatorOfParameter = 162 ; + } +#Inorganic suspended matter +'inorg_mat' = { + table2Version = 133 ; + indicatorOfParameter = 163 ; + } +#Diatomes (algae) +'diat' = { + table2Version = 133 ; + indicatorOfParameter = 164 ; + } +#Flagellates (algae) +'flag' = { + table2Version = 133 ; + indicatorOfParameter = 165 ; + } +#Nitrate (aggregated) +'NO3_agg' = { + table2Version = 133 ; + indicatorOfParameter = 166 ; + } +#Turbulent Kinetic Energy +'TKE' = { + table2Version = 133 ; + indicatorOfParameter = 200 ; + } +#Dissipation rate of TKE +'DTKE' = { + table2Version = 133 ; + indicatorOfParameter = 201 ; + } +#Eddy viscosity +'Km' = { + table2Version = 133 ; + indicatorOfParameter = 202 ; + } +#Eddy diffusivity +'Kh' = { + table2Version = 133 ; + indicatorOfParameter = 203 ; + } +# Level ice thickness +'hlev' = { + table2Version = 133 ; + indicatorOfParameter = 220 ; + } +#Ridged ice thickness +'hrdg' = { + table2Version = 133 ; + indicatorOfParameter = 221 ; + } +#Ice ridge height +'Rh' = { + table2Version = 133 ; + indicatorOfParameter = 222 ; + } +#Ice ridge density +'Rd' = { + table2Version = 133 ; + indicatorOfParameter = 223 ; + } +#U-mean (prev. timestep) +'ucurmean' = { + table2Version = 133 ; + indicatorOfParameter = 231 ; + } +#V-mean (prev. timestep) +'vcurmean' = { + table2Version = 133 ; + indicatorOfParameter = 232 ; + } +#W-mean (prev. timestep) +'wcurmean' = { + table2Version = 133 ; + indicatorOfParameter = 233 ; + } +#Snow temperature +'tsn' = { + table2Version = 133 ; + indicatorOfParameter = 239 ; + } +#Total depth in meters +'dpt' = { + table2Version = 133 ; + indicatorOfParameter = 243 ; + } +#Missing +'Missing' = { + table2Version = 133 ; + indicatorOfParameter = 255 ; + } +############### table2Version 134 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 0 ; + } +#C2H6/Ethane +'C2H6' = { + table2Version = 134 ; + indicatorOfParameter = 1 ; + } +#NC4H10/N-butane +'NC4H10' = { + table2Version = 134 ; + indicatorOfParameter = 2 ; + } +#C2H4/Ethene +'C2H4' = { + table2Version = 134 ; + indicatorOfParameter = 3 ; + } +#C3H6/Propene +'C3H6' = { + table2Version = 134 ; + indicatorOfParameter = 4 ; + } +#OXYLENE/O-xylene +'OXYLENE' = { + table2Version = 134 ; + indicatorOfParameter = 5 ; + } +#HCHO/Formalydehyde +'HCHO' = { + table2Version = 134 ; + indicatorOfParameter = 6 ; + } +#CH3CHO/Acetaldehyde +'CH3CHO' = { + table2Version = 134 ; + indicatorOfParameter = 7 ; + } +#CH3COC2H5/Ethyl methyl keton +'CH3COC2H5' = { + table2Version = 134 ; + indicatorOfParameter = 8 ; + } +#MGLYOX/Methyl-glyoxal (CH3COCHO) +'MGLYOX' = { + table2Version = 134 ; + indicatorOfParameter = 9 ; + } +#GLYOX/Glyoxal (HCOCHO) +'GLYOX' = { + table2Version = 134 ; + indicatorOfParameter = 10 ; + } +#C5H8/Isoprene +'C5H8' = { + table2Version = 134 ; + indicatorOfParameter = 11 ; + } +#C2H5OH/Ethanol +'C2H5OH' = { + table2Version = 134 ; + indicatorOfParameter = 12 ; + } +#CH3OH/Metanol +'CH3OH' = { + table2Version = 134 ; + indicatorOfParameter = 13 ; + } +#HCOOH/Formic acid +'HCOOH' = { + table2Version = 134 ; + indicatorOfParameter = 14 ; + } +#CH3COOH/Acetic acid +'CH3COOH' = { + table2Version = 134 ; + indicatorOfParameter = 15 ; + } +#NMVOC_C/Total NMVOC as C +'NMVOC_C' = { + table2Version = 134 ; + indicatorOfParameter = 19 ; + } +#Reserved +'' = { + table2Version = 134 ; + indicatorOfParameter = 20 ; + } +#PAN/Peroxy acetyl nitrate +'PAN' = { + table2Version = 134 ; + indicatorOfParameter = 21 ; + } +#NO3/Nitrate radical +'NO3' = { + table2Version = 134 ; + indicatorOfParameter = 22 ; + } +#N2O5/Dinitrogen pentoxide +'N2O5' = { + table2Version = 134 ; + indicatorOfParameter = 23 ; + } +#ONIT/Organic nitrate +'ONIT' = { + table2Version = 134 ; + indicatorOfParameter = 24 ; + } +#ISONRO2/Isoprene-NO3 adduct +'ISONRO2' = { + table2Version = 134 ; + indicatorOfParameter = 25 ; + } +#HO2NO2/HO2NO2 +'HO2NO2' = { + table2Version = 134 ; + indicatorOfParameter = 26 ; + } +#MPAN +'MPAN' = { + table2Version = 134 ; + indicatorOfParameter = 27 ; + } +#ISONO3H +'ISONO3H' = { + table2Version = 134 ; + indicatorOfParameter = 28 ; + } +#HONO +'HONO' = { + table2Version = 134 ; + indicatorOfParameter = 29 ; + } +#Reserved +'' = { + table2Version = 134 ; + indicatorOfParameter = 30 ; + } +#HO2/Hydroperhydroxyl radical +'HO2' = { + table2Version = 134 ; + indicatorOfParameter = 31 ; + } +#H2/Molecular hydrogen +'H2' = { + table2Version = 134 ; + indicatorOfParameter = 32 ; + } +#O/Oxygen atomic ground state (3P) +'O' = { + table2Version = 134 ; + indicatorOfParameter = 33 ; + } +#O1D/Oxygen atomic first singlet state +'O1D' = { + table2Version = 134 ; + indicatorOfParameter = 34 ; + } +#Reserved +'-' = { + table2Version = 134 ; + indicatorOfParameter = 40 ; + } +#CH3O2/Methyl peroxy radical +'CH3O2' = { + table2Version = 134 ; + indicatorOfParameter = 41 ; + } +#CH3O2H/Methyl hydroperoxide +'CH3O2H' = { + table2Version = 134 ; + indicatorOfParameter = 42 ; + } +#C2H5O2/Ethyl peroxy radical +'C2H5O2' = { + table2Version = 134 ; + indicatorOfParameter = 43 ; + } +#CH3COO2/Peroxy acetyl radical +'CH3COO2' = { + table2Version = 134 ; + indicatorOfParameter = 44 ; + } +#SECC4H9O2/Buthyl peroxy radical +'SECC4H9O2' = { + table2Version = 134 ; + indicatorOfParameter = 45 ; + } +#CH3COCHO2CH3/peroxy radical from MEK +'CH3COCHO2CH3' = { + table2Version = 134 ; + indicatorOfParameter = 46 ; + } +#ACETOL/acetol (hydroxy acetone) +'ACETOL' = { + table2Version = 134 ; + indicatorOfParameter = 47 ; + } +#CH2O2CH2OH +'CH2O2CH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 48 ; + } +#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH +'CH3CHO2CH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 49 ; + } +#MAL/CH3COCH=CHCHO +'MAL' = { + table2Version = 134 ; + indicatorOfParameter = 50 ; + } +#MALO2/Peroxy radical from MAL + oh +'MALO2' = { + table2Version = 134 ; + indicatorOfParameter = 51 ; + } +#ISRO2/Peroxy radical from isoprene + oh +'ISRO2' = { + table2Version = 134 ; + indicatorOfParameter = 52 ; + } +#ISOPROD/Peroxy radical from ISOPROD +'ISOPROD' = { + table2Version = 134 ; + indicatorOfParameter = 53 ; + } +#C2H5OOH/Ethyl hydroperoxide +'C2H5OOH' = { + table2Version = 134 ; + indicatorOfParameter = 54 ; + } +#CH3COO2H +'CH3COO2H' = { + table2Version = 134 ; + indicatorOfParameter = 55 ; + } +#OXYO2H/Hydroperoxide from OXYO2 +'OXYO2H' = { + table2Version = 134 ; + indicatorOfParameter = 56 ; + } +#SECC4H9O2H/Buthyl hydroperoxide +'SECC4H9O2H' = { + table2Version = 134 ; + indicatorOfParameter = 57 ; + } +#CH2OOHCH2OH +'CH2OOHCH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 58 ; + } +#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 +'CH3CHOOHCH2OH' = { + table2Version = 134 ; + indicatorOfParameter = 59 ; + } +#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 +'CH3COCHO2HCH3' = { + table2Version = 134 ; + indicatorOfParameter = 60 ; + } +#MALO2H/Hydroperoxide from MALO2 + ho2 +'MALO2H' = { + table2Version = 134 ; + indicatorOfParameter = 61 ; + } +#IPRO2 +'IPRO2' = { + table2Version = 134 ; + indicatorOfParameter = 62 ; + } +#XO2 +'XO2' = { + table2Version = 134 ; + indicatorOfParameter = 63 ; + } +#OXYO2/Peroxy radical from o-xylene + oh +'OXYO2' = { + table2Version = 134 ; + indicatorOfParameter = 64 ; + } +#ISRO2H +'ISRO2H' = { + table2Version = 134 ; + indicatorOfParameter = 65 ; + } +#MVK +'MVK' = { + table2Version = 134 ; + indicatorOfParameter = 66 ; + } +#MVKO2 +'MVKO2' = { + table2Version = 134 ; + indicatorOfParameter = 67 ; + } +#MVKO2H +'MVKO2H' = { + table2Version = 134 ; + indicatorOfParameter = 68 ; + } +#BENZENE +'BENZENE' = { + table2Version = 134 ; + indicatorOfParameter = 70 ; + } +#ISNI +'ISNI' = { + table2Version = 134 ; + indicatorOfParameter = 74 ; + } +#ISNIR +'ISNIR' = { + table2Version = 134 ; + indicatorOfParameter = 75 ; + } +#ISNIRH +'ISNIRH' = { + table2Version = 134 ; + indicatorOfParameter = 76 ; + } +#MACR +'MACR' = { + table2Version = 134 ; + indicatorOfParameter = 77 ; + } +#AOH1 +'AOH1' = { + table2Version = 134 ; + indicatorOfParameter = 78 ; + } +#AOH1H +'AOH1H' = { + table2Version = 134 ; + indicatorOfParameter = 79 ; + } +#MACRO2 +'MACRO2' = { + table2Version = 134 ; + indicatorOfParameter = 80 ; + } +#MACO3H +'MACO3H' = { + table2Version = 134 ; + indicatorOfParameter = 81 ; + } +#MACOOH +'MACOOH' = { + table2Version = 134 ; + indicatorOfParameter = 82 ; + } +#CH2CCH3 +'CH2CCH3' = { + table2Version = 134 ; + indicatorOfParameter = 83 ; + } +#CH2CO2HCH3 +'CH2CO2HCH3' = { + table2Version = 134 ; + indicatorOfParameter = 84 ; + } +#BIGENE +'BIGENE' = { + table2Version = 134 ; + indicatorOfParameter = 90 ; + } +#BIGALK +'BIGALK' = { + table2Version = 134 ; + indicatorOfParameter = 91 ; + } +#TOLUENE +'TOLUENE' = { + table2Version = 134 ; + indicatorOfParameter = 92 ; + } +#CH2CHCN +'CH2CHCN' = { + table2Version = 134 ; + indicatorOfParameter = 100 ; + } +#(CH3)2NNH2/Dimetylhydrazin +'(CH3)2NNH2' = { + table2Version = 134 ; + indicatorOfParameter = 101 ; + } +#CH2OC2H3Cl/Epiklorhydrin +'CH2OC2H3Cl' = { + table2Version = 134 ; + indicatorOfParameter = 102 ; + } +#CH2OC2/Etylenoxid +'CH2OC2' = { + table2Version = 134 ; + indicatorOfParameter = 103 ; + } +#HF/Vaetefluorid +'HF' = { + table2Version = 134 ; + indicatorOfParameter = 105 ; + } +#Hcl/Vaeteklorid +'Hcl' = { + table2Version = 134 ; + indicatorOfParameter = 106 ; + } +#CS2/Koldisulfid +'CS2' = { + table2Version = 134 ; + indicatorOfParameter = 107 ; + } +#CH3NH2/Metylamin +'CH3NH2' = { + table2Version = 134 ; + indicatorOfParameter = 108 ; + } +#SF6/Sulphurhexafloride +'SF6' = { + table2Version = 134 ; + indicatorOfParameter = 110 ; + } +#HCN/Vaetecyanid +'HCN' = { + table2Version = 134 ; + indicatorOfParameter = 111 ; + } +#COCl2/Fosgen +'COCl2' = { + table2Version = 134 ; + indicatorOfParameter = 112 ; + } +#H2CCHCl/Vinylklorid +'H2CCHCl' = { + table2Version = 134 ; + indicatorOfParameter = 113 ; + } +#Missing +'Missing' = { + table2Version = 134 ; + indicatorOfParameter = 255 ; + } +############### table2Version 135 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 135 ; + indicatorOfParameter = 0 ; + } +#GRG1/MOZART specie +'GRG1' = { + table2Version = 135 ; + indicatorOfParameter = 1 ; + } +#GRG2/MOZART specie +'GRG2' = { + table2Version = 135 ; + indicatorOfParameter = 2 ; + } +#GRG3/MOZART specie +'GRG3' = { + table2Version = 135 ; + indicatorOfParameter = 3 ; + } +#GRG4/MOZART specie +'GRG4' = { + table2Version = 135 ; + indicatorOfParameter = 4 ; + } +#GRG5/MOZART specie +'GRG5' = { + table2Version = 135 ; + indicatorOfParameter = 5 ; + } +#VIS-340/Visibility at 340 nm +'VIS-340' = { + table2Version = 135 ; + indicatorOfParameter = 100 ; + } +#VIS-355/Visibility at 355 nm +'VIS-355' = { + table2Version = 135 ; + indicatorOfParameter = 101 ; + } +#VIS-380/Visibility at 380 nm +'VIS-380' = { + table2Version = 135 ; + indicatorOfParameter = 102 ; + } +#VIS-440/Visibility at 440 nm +'VIS-440' = { + table2Version = 135 ; + indicatorOfParameter = 103 ; + } +#VIS-500/Visibility at 500 nm +'VIS-500' = { + table2Version = 135 ; + indicatorOfParameter = 104 ; + } +#VIS-532/Visibility at 532 nm +'VIS-532' = { + table2Version = 135 ; + indicatorOfParameter = 105 ; + } +#VIS-675/Visibility at 675 nm +'VIS-675' = { + table2Version = 135 ; + indicatorOfParameter = 106 ; + } +#VIS-870/Visibility at 870 nm +'VIS-870' = { + table2Version = 135 ; + indicatorOfParameter = 107 ; + } +#VIS-1020/Visibility at 1020 nm +'VIS-1020' = { + table2Version = 135 ; + indicatorOfParameter = 108 ; + } +#VIS-1064/Visibility at 1064 nm +'VIS-1064' = { + table2Version = 135 ; + indicatorOfParameter = 109 ; + } +#VIS-3500/Visibility at 3500 nm +'VIS-3500' = { + table2Version = 135 ; + indicatorOfParameter = 110 ; + } +#VIS-10000/Visibility at 10000 nm +'VIS-10000' = { + table2Version = 135 ; + indicatorOfParameter = 111 ; + } +#BSCA-340/Backscatter at 340 nm +'BSCA-340' = { + table2Version = 135 ; + indicatorOfParameter = 120 ; + } +#BSCA-355/Backscatter at 355 nm +'BSCA-355' = { + table2Version = 135 ; + indicatorOfParameter = 121 ; + } +#BSCA-380/Backscatter at 380 nm +'BSCA-380' = { + table2Version = 135 ; + indicatorOfParameter = 122 ; + } +#BSCA-440/Backscatter at 440 nm +'BSCA-440' = { + table2Version = 135 ; + indicatorOfParameter = 123 ; + } +#BSCA-500/Backscatter at 500 nm +'BSCA-500' = { + table2Version = 135 ; + indicatorOfParameter = 124 ; + } +#BSCA-532/Backscatter at 532 nm +'BSCA-532' = { + table2Version = 135 ; + indicatorOfParameter = 125 ; + } +#BSCA-675/Backscatter at 675 nm +'BSCA-675' = { + table2Version = 135 ; + indicatorOfParameter = 126 ; + } +#BSCA-870/Backscatter at 870 nm +'BSCA-870' = { + table2Version = 135 ; + indicatorOfParameter = 127 ; + } +#BSCA-1020/Backscatter at 1020 nm +'BSCA-1020' = { + table2Version = 135 ; + indicatorOfParameter = 128 ; + } +#BSCA-1064/Backscatter at 1064 nm +'BSCA-1064' = { + table2Version = 135 ; + indicatorOfParameter = 129 ; + } +#BSCA-3500/Backscatter at 3500 nm +'BSCA-3500' = { + table2Version = 135 ; + indicatorOfParameter = 130 ; + } +#BSCA-10000/Backscatter at 10000 nm +'BSCA-10000' = { + table2Version = 135 ; + indicatorOfParameter = 131 ; + } +#EXT-340/Extinction at 340 nm +'EXT-340' = { + table2Version = 135 ; + indicatorOfParameter = 140 ; + } +#EXT-355/Extinction at 355 nm +'EXT-355' = { + table2Version = 135 ; + indicatorOfParameter = 141 ; + } +#EXT-380/Extinction at 380 nm +'EXT-380' = { + table2Version = 135 ; + indicatorOfParameter = 142 ; + } +#EXT-440/Extinction at 440 nm +'EXT-440' = { + table2Version = 135 ; + indicatorOfParameter = 143 ; + } +#EXT-500/Extinction at 500 nm +'EXT-500' = { + table2Version = 135 ; + indicatorOfParameter = 144 ; + } +#EXT-532/Extinction at 532 nm +'EXT-532' = { + table2Version = 135 ; + indicatorOfParameter = 145 ; + } +#EXT-675/Extinction at 675 nm +'EXT-675' = { + table2Version = 135 ; + indicatorOfParameter = 146 ; + } +#EXT-870/Extinction at 870 nm +'EXT-870' = { + table2Version = 135 ; + indicatorOfParameter = 147 ; + } +#EXT-1020/Extinction at 1020 nm +'EXT-1020' = { + table2Version = 135 ; + indicatorOfParameter = 148 ; + } +#EXT-1064/Extinction at 1064 nm +'EXT-1064' = { + table2Version = 135 ; + indicatorOfParameter = 149 ; + } +#EXT-3500/Extinction at 3500 nm +'EXT-3500' = { + table2Version = 135 ; + indicatorOfParameter = 150 ; + } +#EXT-10000/Extinction at 10000 nm +'EXT-10000' = { + table2Version = 135 ; + indicatorOfParameter = 151 ; + } +#AOD-340/Aerosol optical depth at 340 nm +'AOD-340' = { + table2Version = 135 ; + indicatorOfParameter = 160 ; + } +#AOD-355/Aerosol optical depth at 355 nm +'AOD-355' = { + table2Version = 135 ; + indicatorOfParameter = 161 ; + } +#AOD-380/Aerosol optical depth at 380 nm +'AOD-380' = { + table2Version = 135 ; + indicatorOfParameter = 162 ; + } +#AOD-440/Aerosol optical depth at 440 nm +'AOD-440' = { + table2Version = 135 ; + indicatorOfParameter = 163 ; + } +#AOD-500/Aerosol optical depth at 500 nm +'AOD-500' = { + table2Version = 135 ; + indicatorOfParameter = 164 ; + } +#AOD-532/Aerosol optical depth at 532 nm +'AOD-532' = { + table2Version = 135 ; + indicatorOfParameter = 165 ; + } +#AOD-675/Aerosol optical depth at 675 nm +'AOD-675' = { + table2Version = 135 ; + indicatorOfParameter = 166 ; + } +#AOD-870/Aerosol optical depth at 870 nm +'AOD-870' = { + table2Version = 135 ; + indicatorOfParameter = 167 ; + } +#AOD-1020/Aerosol optical depth at 1020 nm +'AOD-1020' = { + table2Version = 135 ; + indicatorOfParameter = 168 ; + } +#AOD-1064/Aerosol optical depth at 1064 nm +'AOD-1064' = { + table2Version = 135 ; + indicatorOfParameter = 169 ; + } +#AOD-3500/Aerosol optical depth at 3500 nm +'AOD-3500' = { + table2Version = 135 ; + indicatorOfParameter = 170 ; + } +#AOD-10000/Aerosol optical depth at 10000 nm +'AOD-10000' = { + table2Version = 135 ; + indicatorOfParameter = 171 ; + } +#Rain fraction of total cloud water +'fra' = { + table2Version = 135 ; + indicatorOfParameter = 208 ; + } +#Rain factor +'facra' = { + table2Version = 135 ; + indicatorOfParameter = 209 ; + } +#Total column integrated rain +'tqr' = { + table2Version = 135 ; + indicatorOfParameter = 210 ; + } +#Total column integrated snow +'tqs' = { + table2Version = 135 ; + indicatorOfParameter = 211 ; + } +#Total water precipitation +'twatp' = { + table2Version = 135 ; + indicatorOfParameter = 212 ; + } +#Total snow precipitation +'tsnowp' = { + table2Version = 135 ; + indicatorOfParameter = 213 ; + } +#Total column water (Vertically integrated total water) +'tcw' = { + table2Version = 135 ; + indicatorOfParameter = 214 ; + } +#Large scale precipitation rate +'lsprate' = { + table2Version = 135 ; + indicatorOfParameter = 215 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + table2Version = 135 ; + indicatorOfParameter = 216 ; + } +#Large scale snowfall rate water equivalent +'prs_gsp' = { + table2Version = 135 ; + indicatorOfParameter = 217 ; + } +#Total snowfall rate +'tsrate' = { + table2Version = 135 ; + indicatorOfParameter = 218 ; + } +#Convective snowfall rate +'csrate' = { + table2Version = 135 ; + indicatorOfParameter = 219 ; + } +#Large scale snowfall rate +'lssrate' = { + table2Version = 135 ; + indicatorOfParameter = 220 ; + } +#Snow depth water equivalent +'sdwe' = { + table2Version = 135 ; + indicatorOfParameter = 221 ; + } +#Snow evaporation +'se' = { + table2Version = 135 ; + indicatorOfParameter = 222 ; + } +#Total column integrated water vapour +'tciwv' = { + table2Version = 135 ; + indicatorOfParameter = 223 ; + } +#Rain precipitation rate +'rprate' = { + table2Version = 135 ; + indicatorOfParameter = 224 ; + } +#Snow precipitation rate +'sprate' = { + table2Version = 135 ; + indicatorOfParameter = 225 ; + } +#Freezing rain precipitation rate +'fprate' = { + table2Version = 135 ; + indicatorOfParameter = 226 ; + } +#Ice pellets precipitation rate +'iprate' = { + table2Version = 135 ; + indicatorOfParameter = 227 ; + } +#Specific cloud liquid water content +'clwc' = { + table2Version = 135 ; + indicatorOfParameter = 228 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 135 ; + indicatorOfParameter = 229 ; + } +#Specific rain water content +'crwc' = { + table2Version = 135 ; + indicatorOfParameter = 230 ; + } +#Specific snow water content +'cswc' = { + table2Version = 135 ; + indicatorOfParameter = 231 ; + } +#u-component of wind (gust) +'ugust' = { + table2Version = 135 ; + indicatorOfParameter = 232 ; + } +#v-component of wind (gust) +'vgust' = { + table2Version = 135 ; + indicatorOfParameter = 233 ; + } +#Vertical speed shear +'vwsh' = { + table2Version = 135 ; + indicatorOfParameter = 234 ; + } +#Horizontal momentum flux +'mflx' = { + table2Version = 135 ; + indicatorOfParameter = 235 ; + } +#u-component storm motion +'ustm' = { + table2Version = 135 ; + indicatorOfParameter = 236 ; + } +#v-component storm motion +'vstm' = { + table2Version = 135 ; + indicatorOfParameter = 237 ; + } +#Drag coefficient +'cd' = { + table2Version = 135 ; + indicatorOfParameter = 238 ; + } +#Eta coordinate vertical velocity +'eta' = { + table2Version = 135 ; + indicatorOfParameter = 239 ; + } +#Altimeter setting +'alts' = { + table2Version = 135 ; + indicatorOfParameter = 240 ; + } +#Thickness +'thick' = { + table2Version = 135 ; + indicatorOfParameter = 241 ; + } +#Pressure altitude +'presalt' = { + table2Version = 135 ; + indicatorOfParameter = 242 ; + } +#Density altitude +'denalt' = { + table2Version = 135 ; + indicatorOfParameter = 243 ; + } +#5-wave geopotential height +'5wavh' = { + table2Version = 135 ; + indicatorOfParameter = 244 ; + } +#Zonal flux of gravity wave stress +'u-gwd' = { + table2Version = 135 ; + indicatorOfParameter = 245 ; + } +#Meridional flux of gravity wave stress +'v-gwd' = { + table2Version = 135 ; + indicatorOfParameter = 246 ; + } +#Planetary boundary layer height +'hbpl' = { + table2Version = 135 ; + indicatorOfParameter = 247 ; + } +#5-wave geopotential height anomaly +'5wava' = { + table2Version = 135 ; + indicatorOfParameter = 248 ; + } +#Standard deviation of sub-gridscale orography +'stdsgor' = { + table2Version = 135 ; + indicatorOfParameter = 249 ; + } +#Angle of sub-gridscale orography +'angsgor' = { + table2Version = 135 ; + indicatorOfParameter = 250 ; + } +#Slope of sub-gridscale orography +'slsgor' = { + table2Version = 135 ; + indicatorOfParameter = 251 ; + } +#Gravity wave dissipation +'gwd' = { + table2Version = 135 ; + indicatorOfParameter = 252 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + table2Version = 135 ; + indicatorOfParameter = 253 ; + } +#Natural logarithm of pressure in Pa +'nlpres' = { + table2Version = 135 ; + indicatorOfParameter = 254 ; + } +#Missing +'Missing' = { + table2Version = 135 ; + indicatorOfParameter = 255 ; + } +############### table2Version 136 ############ +############### Strang ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 136 ; + indicatorOfParameter = 0 ; + } +#Pressure +'pres' = { + table2Version = 136 ; + indicatorOfParameter = 1 ; + } +#Temperature +'t' = { + table2Version = 136 ; + indicatorOfParameter = 11 ; + } +#Specific humidity +'q' = { + table2Version = 136 ; + indicatorOfParameter = 51 ; + } +#Precipitable water +'pwat' = { + table2Version = 136 ; + indicatorOfParameter = 54 ; + } +#Snow depth +'sd' = { + table2Version = 136 ; + indicatorOfParameter = 66 ; + } +#Total cloud cover +'tcc' = { + table2Version = 136 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'lcc' = { + table2Version = 136 ; + indicatorOfParameter = 73 ; + } +#Probability for significant cloud base +'cb_sigpr' = { + table2Version = 136 ; + indicatorOfParameter = 77 ; + } +#Significant cloud base +'cb_sig' = { + table2Version = 136 ; + indicatorOfParameter = 78 ; + } +#Significant cloud top +'ct_sig' = { + table2Version = 136 ; + indicatorOfParameter = 79 ; + } +#Albedo (lev 0=global radiation lev 1=UV radiation) +'al' = { + table2Version = 136 ; + indicatorOfParameter = 84 ; + } +#Ice concentration +'icec' = { + table2Version = 136 ; + indicatorOfParameter = 91 ; + } +#CIE-weighted UV irradiance +'UVirr' = { + table2Version = 136 ; + indicatorOfParameter = 116 ; + } +#Global irradiance +'GLirr' = { + table2Version = 136 ; + indicatorOfParameter = 117 ; + } +#Beam normal irradiance +'BNirr' = { + table2Version = 136 ; + indicatorOfParameter = 118 ; + } +#Sunshine duration +'sun' = { + table2Version = 136 ; + indicatorOfParameter = 119 ; + } +#PAR +'PAR' = { + table2Version = 136 ; + indicatorOfParameter = 120 ; + } +#Accumulated precipitation, 1 hours +'pr_1h' = { + table2Version = 136 ; + indicatorOfParameter = 165 ; + } +#Accumulated fresh snow, 1 hours +'sn_1h' = { + table2Version = 136 ; + indicatorOfParameter = 175 ; + } +#Total ozone +'totO3' = { + table2Version = 136 ; + indicatorOfParameter = 206 ; + } +#Missing +'Missing' = { + table2Version = 136 ; + indicatorOfParameter = 255 ; + } +############### table2Version 137 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 137 ; + indicatorOfParameter = 0 ; + } +#Concentration of SOX, excluding seasalt, in air +'XSOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 1 ; + } +#Drydeposition of SOX, excluding seasalt, mixed gound +'XSOX_DRY_MIX' = { + table2Version = 137 ; + indicatorOfParameter = 2 ; + } +#Drydeposition of SOX, excluding seasalt, Pasture +'XSOX_DRY_PA' = { + table2Version = 137 ; + indicatorOfParameter = 3 ; + } +#Drydeposition of SOX, excluding seasalt, Arable +'XSOX_DRY_AR' = { + table2Version = 137 ; + indicatorOfParameter = 4 ; + } +#Drydeposition of SOX, excluding seasalt, Beach Oak +'XSOX_DRY_BO' = { + table2Version = 137 ; + indicatorOfParameter = 5 ; + } +#Drydeposition of SOX, excluding seasalt, Deciduous +'XSOX_DRY_DE' = { + table2Version = 137 ; + indicatorOfParameter = 6 ; + } +#Drydeposition of SOX, excluding seasalt, Spruce +'XSOX_DRY_SP' = { + table2Version = 137 ; + indicatorOfParameter = 7 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 10 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 11 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 12 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 13 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 14 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 15 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 16 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 17 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 20 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 21 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 22 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 23 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 24 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 25 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 26 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 27 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 30 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 31 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 32 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 33 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 34 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 35 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 36 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 37 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 40 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 41 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 42 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 43 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 44 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 45 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 46 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 47 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 50 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 51 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 52 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 53 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 54 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 55 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 56 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 57 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 60 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 61 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 62 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 63 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 64 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 65 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 66 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 67 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 70 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 71 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 72 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 73 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 74 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 75 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 76 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 77 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 100 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 101 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 102 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 103 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 104 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 105 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 106 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 107 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 110 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 111 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 112 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 113 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 114 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 115 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 116 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 117 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 120 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 121 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 122 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 123 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 124 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 125 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 126 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 127 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'XSOX_DRY_PI' = { + table2Version = 137 ; + indicatorOfParameter = 130 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'XSOX_DRY_WE' = { + table2Version = 137 ; + indicatorOfParameter = 131 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'XSOX_DRY_MH' = { + table2Version = 137 ; + indicatorOfParameter = 132 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'XSOX_DRY_UR' = { + table2Version = 137 ; + indicatorOfParameter = 133 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'XSOX_DRY_WA' = { + table2Version = 137 ; + indicatorOfParameter = 134 ; + } +#Wetdeposition of SOX, excluding seasalt +'XSOX_WET' = { + table2Version = 137 ; + indicatorOfParameter = 135 ; + } +#Total deposition of SOX, excluding seasalt +'XSOX_TOT' = { + table2Version = 137 ; + indicatorOfParameter = 136 ; + } +#Concentration of SOX in air +'SOX_HIL' = { + table2Version = 137 ; + indicatorOfParameter = 137 ; + } +#Missing +'Missing' = { + table2Version = 137 ; + indicatorOfParameter = 255 ; + } +############### table2Version 140 ############ +############### Blixtlokalisering ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 140 ; + indicatorOfParameter = 0 ; + } +#Cloud to ground discharge count +'CTGDC' = { + table2Version = 140 ; + indicatorOfParameter = 1 ; + } +#Cloud to cloud discharge count +'CTCDC' = { + table2Version = 140 ; + indicatorOfParameter = 2 ; + } +#Total discharge count +'TDC' = { + table2Version = 140 ; + indicatorOfParameter = 3 ; + } +#Cloud to ground accumulated absolute peek current +'CTGAAPC' = { + table2Version = 140 ; + indicatorOfParameter = 4 ; + } +#Cloud to cloud accumulated absolute peek current +'CTCAAPC' = { + table2Version = 140 ; + indicatorOfParameter = 5 ; + } +#Total accumulated absolute peek current +'TAAPC' = { + table2Version = 140 ; + indicatorOfParameter = 6 ; + } +#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) +'SCTGDC' = { + table2Version = 140 ; + indicatorOfParameter = 7 ; + } +#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) +'SCTCDC' = { + table2Version = 140 ; + indicatorOfParameter = 8 ; + } +#Significant total discharge count (discharges with absolute peek current above 100kA) +'STDC' = { + table2Version = 140 ; + indicatorOfParameter = 9 ; + } +#Missing +'Missing' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +############### table2Version 150 ############ +############### Hirlam postpr ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 150 ; + indicatorOfParameter = 0 ; + } +#Evaporation Penman formula +'eP' = { + table2Version = 150 ; + indicatorOfParameter = 57 ; + } +#Spray weather recomendation +'spw' = { + table2Version = 150 ; + indicatorOfParameter = 58 ; + } +#Missing +'Missing' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +############### table2Version 151 ############ +############### ECMWF postpr ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 151 ; + indicatorOfParameter = 0 ; + } +#Probability total precipitation between 1 and 10 mm +'tp_1_10' = { + table2Version = 151 ; + indicatorOfParameter = 1 ; + } +#Probability total precipitation between 10 and 50 mm +'tp_10_50' = { + table2Version = 151 ; + indicatorOfParameter = 2 ; + } +#Probability total precipitation more than 50 mm +'tp_>50' = { + table2Version = 151 ; + indicatorOfParameter = 3 ; + } +#Evaporation Penman formula +'eP' = { + table2Version = 151 ; + indicatorOfParameter = 57 ; + } +#Missing +'Missing' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +### HARMONIE tables ### +#Absolute divergence +'absd' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Absolute vorticity +'absv' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Surface aerosol soot (carbon) +'aerc' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'aerd' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Surface aerosol land +'aerl' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol sea +'aers' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Albedo +'al' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Albedo of bare ground +'alb' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'alv' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#A Ozone +'ao' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#Analysed RMS of PHI (CANARI) +'armsp' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Snow albedo +'asn' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Anisotropy coeff of topography +'atop' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#B Ozone +'bo' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#Brightness temperature +'btmp' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#CAPE out of the model +'cape' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#Cloud base +'cb' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Cloud ice water content +'ciwc' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Fraction of clay within soil +'clfr' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#C Ozone +'co' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Convective rain +'cr' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Convective snowfall +'csf' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#LW net clear sky rad +'cslw' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#SW net clear sky rad +'cssw' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#Cloud top +'ct' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Cloud water +'cwat' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Divergence +'d' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Density +'den' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Direction of ice drift +'diced' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Direction of current +'dirc' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Downdraft mesh fraction +'dnmf' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Downdraft omega +'dnom' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Direction of main axis of topography +'dtop' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Duration of total precipitation +'dutp' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Dominant vegetation index +'dvi' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Evaporation +'e' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Gust +'fg' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Forecast RMS of PHI (CANARI) +'frmsp' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#Fraction of urban land +'ful' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Geopotential Height +'gh' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Global radiation flux +'grad' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Graupel +'grpl' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Gravity wave stress U-comp +'gwdu' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'gwdv' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#Geometrical height +'h' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Hail +'hail' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#High cloud cover +'hcc' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Ice cover (1=land, 0=sea) +'icec' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice divergence +'iced' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Ice growth rate +'iceg' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Icing index +'icei' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Ice thickness +'icetk' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Image data +'imgd' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Leaf area index +'lai' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Lapse rate +'lapr' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Low cloud cover +'lcc' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Lightning +'lgt' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; + } +#Latent heat flux through evaporation +'lhe' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Latent Heat Sublimation +'lhsub' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Large-scale snowfall +'lsf' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Land-sea mask +'lsm' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#large scale precipitation (water) +'lsp' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#MOCON out of the model +'mcn' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Mean direction of primary swell +'mdps' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Mixed layer depth +'mld' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Montgomery stream Function +'mntsf' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Mean period of primary swell +'mpps' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Surface downward moon radiation +'mrad' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#Mask of significant cloud amount +'msca' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net short-wave radiationflux(atmosph.top) +'nswrt' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Pressure departure +'pdep' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Precipitation rate +'prate' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Pressure +'pres' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Pressure anomaly +'presa' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Precipitation Type +'prtp' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'psct' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'pscw' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Pseudo satellite image: water vapour Tb +'pstb' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'pstbc' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Potential temperature +'pt' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pressure tendency +'ptend' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'pv' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#Precipitable water +'pwat' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Specific humidity +'q' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'r' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Rain +'rain' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Radar spectra (3) +'rdsp' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Simulated reflectivity +'refl' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Resistance to evapotransiration +'rev' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'rmn' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'rmx' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Runoff +'ro' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Snow density +'rsn' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Salinity +'s' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Saturation deficit +'satd' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Snow depth water equivalent +'sdp' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Surface emissivity +'se' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Snow history +'shis' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Speed of ice drift +'siced' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#Soil depth +'sld' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Fraction of sand within soil +'slfr' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Surface latent heat flux +'slhf' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Soil Temperature +'slt' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil Moisture +'sm' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Stomatal minimum resistance +'smnr' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Snow melt +'snom' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Snow +'snow' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Snow Sublimation +'snsub' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Speed of current +'spc' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#Stratiform rain +'srain' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Surface roughness * g +'srg' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Surface sensible heat flux +'sshf' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Standard deviation of orography * g +'stdo' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Stream function +'strf' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Secondary wave period +'swp' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Soil wetness +'swv' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Temperature +'t' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Temperature anomaly +'ta' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Total column ozone +'tco' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Dew point temperature +'td' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#TKE +'tke' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature +'tmax' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Total water vapour +'totqv' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Total precipitation +'tp' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Total solid precipitation +'tpsolid' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Vertical velocity +'tw' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#U component of wind +'u' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#U-component of current +'ucurr' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Gust, u-component +'ugst' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#U-component of ice drift +'uice' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#Updraft mesh fraction +'upmf' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Updraft omega +'upom' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#V component of wind +'v' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#V-component of current +'vcurr' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Vertical Divergence +'vdiv' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Vegetation fraction +'veg' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Gust, v-component +'vgst' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#V-component of ice drift +'vice' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Visibility +'vis' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Vapour pressure +'vp' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Virtual potential temperature +'vptmp' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Vertical velocity +'w' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Water on canopy (Interception content) +'w_i' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Water on canopy (Interception content) +'w_so_ice' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Wind direction +'wdir' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Water evaporation +'wevap' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Wind speed +'ws' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#Water temperature +'wtmp' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Wave spectra (3) +'wvsp' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#AROME hail diagnostic +'xhail' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Geopotential +'z' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Thermal roughness length * g +'zt' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/eswi/sort.table b/eccodes/definitions/grib1/localConcepts/eswi/sort.table new file mode 100644 index 00000000..a4da1613 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/sort.table @@ -0,0 +1,100 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# +# Model 50 SMHI local definitions sort +# +# Sort parameter in local extension +# +0 0 none +1 1 Atm. conc. [g/kg] +2 2 Log Atm. conc. [g/kg] +3 3 Atm. conc. [g/m3] +3 3 Atm. conc. [g/m3] +4 4 Log Atm. conc. [g/m3] +7 7 Atm. conc. [number/m3] +9 9 Atm. conc. [Bq/m3] +10 10 Log Atm. conc. [Bq/m3] +11 11 Atm. conc. at reference height [g/kg] +12 12 Atm. conc. at reference height [g/m3] +13 13 Log Atm. conc. at reference height [g/m3] +14 14 Total column [g/m2] +14 14 Column up to 6000m [g/m2] +14 14 Column up above 6000m [g/m2] +14 14 Max in column up to 6000m [g/m3] +14 14 Max in column above 6000m [g/m3] +15 15 Level at max in column up to 6000m [m] +15 15 Level at max in column above 6000m [m] +21 21 Integrated atm. conc. s [g/kg] +22 22 Log Integrated atm. conc. s [g/kg] +23 23 Integrated atm. conc. s [g/m3] +24 24 Logarith of Integrated atm. conc. s [g/m3] +27 27 Integrated atm. conc. s [number/m3] +29 29 Integrated atm. conc. s [Bq/m3] +30 30 Log Integrated atm. conc. s [Bq/m3] +51 51 Conc. in liquid water [g/m3] +53 53 Conc. in liquid water Equivalents/m3 +54 54 Conc. in liquid water [number/m3] +55 55 Conc. in liquid water [Bq/m3] +61 61 Conc. in ice water [g/m3] +63 63 Conc. in ice water Equivalents/m3 +64 64 Conc. in ice water [number/m3] +65 65 Conc. in ice water [Bq/m3] +71 71 Conc. in precipitation [g/m3] (mg/l) +73 73 Conc. in precipitation Equivalents/m3 +74 74 Conc. in precipitation [number/m3] +75 75 Conc. in precipitation [Bq/m3] +81 81 Dry deposition [g/m2] +82 82 Log Dry deposition [g/m2] +84 84 Dry deposition [number/m2] +85 85 Dry deposition [Bq/m2] +91 91 Wet deposition [g/m2] +92 92 Log Wet deposition [g/m2] +94 94 Wet deposition [number/m2] +95 95 Wet deposition [Bq/m2] +101 101 Total deposition [g/m2] +102 102 Log Total deposition [g/m2] +104 104 Total deposition [number/m2] +105 105 Total deposition [Bq/m2] +110 110 Emissions [ton] +111 111 Emissions [kg] +112 112 Emissions [g] +114 114 Emissions [number] +115 115 Emissions [Bq] +121 121 Emissions [kg/s] +122 122 Emissions [g/s] +124 124 Emissions [number/s] +125 125 Emissions [Bq/s] +131 131 Emissions [kg/(m2 s)] +132 132 Emissions [g/(m2 s)] +134 134 Emissions [number/(m2 s)] +135 135 Emissions [Bq/(m2 s)] +136 136 Surface emissions [kg/(m2 s)] +137 137 Surface emissions [g/(m2 s)] +138 138 Surface emissions [number/(m2 s)] +139 139 Surface emissions [Bq/(m2 s)] +150 150 Inhalation dose [nSv] +151 151 Ground dose [nSv] +152 152 Infinite cloud dose [nSv] +153 153 Sum of cloud and ground dose [nSv] +201 201 Dry deposition velocity [m/s] +202 202 Settling velocity [m/s] +203 203 Scavenging coefficient [1/s] +205 205 Degree hours or days for last day [K] +206 206 Current degree days [K] +207 207 Critical degree days [K] +208 208 Accum pollen emission [grains/m2] +209 209 Correction factor [fraction] +210 210 Aerosol optical depth [] +240 240 Deposition arrival since 1 Jan 1971 [days] +241 241 Latest deposition since 1 Jan 1971 [days] +242 242 Time of max activity since 1 Jan 1971 [days] +243 243 Max radioactive activity [Bq/m2] +244 244 Log Max radioactive activity +250 250 Relative occurrence [] +251 251 statistics [kg] +252 252 statistics [mol] +255 255 missing value diff --git a/eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def b/eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def new file mode 100644 index 00000000..be7abb05 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def @@ -0,0 +1,96 @@ +######################### +# +# author: Sebastien Villaume +# created: 13 May 2013 +# modified: +# +######################### +"none"={matchSort=0;} +"cm"={matchSort=1;} +"lncm"={matchSort=2;} +"c"={matchSort=3;} +"cc"={matchSort=3;} +"lnc"={matchSort=4;} +"nr"={matchSort=7;} +"cbq"={matchSort=9;} +"lncbq"={matchSort=10;} +"cmrefh"={matchSort=11;} +"crefh"={matchSort=12;} +"lncrefh"={matchSort=13;} +"totcolumn"={matchSort=14;} +"loncolumn"={matchSort=14;} +"highcolumn"={matchSort=14;} +"lowmax"={matchSort=14;} +"highmax"={matchSort=14;} +"lowmaxz"={matchSort=15;} +"highmaxz"={matchSort=15;} +"icm"={matchSort=21;} +"lnicm"={matchSort=22;} +"ic"={matchSort=23;} +"lnic"={matchSort=24;} +"inr"={matchSort=27;} +"icbq"={matchSort=29;} +"lnicbq"={matchSort=30;} +"clw"={matchSort=51;} +"ceqlw"={matchSort=53;} +"cnrlw"={matchSort=54;} +"cbqlwc"={matchSort=55;} +"ciw"={matchSort=61;} +"ceqiw"={matchSort=63;} +"cnriw"={matchSort=64;} +"cbqiw"={matchSort=65;} +"cprec"={matchSort=71;} +"ceqprec"={matchSort=73;} +"cnprec"={matchSort=74;} +"cbqprec"={matchSort=75;} +"drydep"={matchSort=81;} +"lndrydep"={matchSort=82;} +"drydepnr"={matchSort=84;} +"drydepbq"={matchSort=85;} +"wetdep"={matchSort=91;} +"lnwetdep"={matchSort=92;} +"wetdepnr"={matchSort=94;} +"wetdepbq"={matchSort=95;} +"totdep"={matchSort=101;} +"lntotdep"={matchSort=102;} +"totdepnr"={matchSort=104;} +"totdepbq"={matchSort=105;} +"qton"={matchSort=110;} +"qkg"={matchSort=111;} +"qg"={matchSort=112;} +"qnr"={matchSort=114;} +"qbq"={matchSort=115;} +"qkgs"={matchSort=121;} +"qgs"={matchSort=122;} +"qns"={matchSort=124;} +"qbqs"={matchSort=125;} +"aqkgs"={matchSort=131;} +"aqgs"={matchSort=132;} +"aqnrs"={matchSort=134;} +"aqbqs"={matchSort=135;} +"aq0kgs"={matchSort=136;} +"aq0gs"={matchSort=137;} +"aq0nrs"={matchSort=138;} +"aq0bqs"={matchSort=139;} +"inhdose"={matchSort=150;} +"grddose"={matchSort=151;} +"clddose"={matchSort=152;} +"sumdose"={matchSort=153;} +"vd"={matchSort=201;} +"vs"={matchSort=202;} +"lamda"={matchSort=203;} +"tsum"={matchSort=205;} +"hsum"={matchSort=206;} +"hcrit"={matchSort=207;} +"raccum"={matchSort=208;} +"corr"={matchSort=209;} +"aod"={matchSort=210;} +"timearr"={matchSort=240;} +"timelat"={matchSort=241;} +"timemax"={matchSort=242;} +"maxactiv"={matchSort=243;} +"lnmaxactiv"={matchSort=244;} +"freq"={matchSort=250;} +"flux"={matchSort=251;} +"fluxmol"={matchSort=252;} +"missing"={matchSort=255;} diff --git a/eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def b/eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def new file mode 100644 index 00000000..5fe275cf --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def @@ -0,0 +1,48 @@ +######################### +# +# author: Sebastien Villaume +# created: 13 May 2013 +# modified: +# +######################### +"none"={matchTimeRepres=0;} +"3hMean"={matchTimeRepres=1;} +"diurnalMean"={matchTimeRepres=2;} +"1hMean"={matchTimeRepres=3;} +"monthlyMean"={matchTimeRepres=5;} +"mean"={matchTimeRepres=6;} +"yearMean"={matchTimeRepres=7;} +"max"={matchTimeRepres=10;} +"min"={matchTimeRepres=11;} +"dailyMax"={matchTimeRepres=12;} +"monthlyMax"={matchTimeRepres=14;} +"yearMax"={matchTimeRepres=16;} +"mMeanDayMax"={matchTimeRepres=17;} +"yMeanDayMax"={matchTimeRepres=18;} +"meanDayMax"={matchTimeRepres=19;} +"accum"={matchTimeRepres=20;} +"dayAccum"={matchTimeRepres=21;} +"monthAccum"={matchTimeRepres=22;} +"3hAccum"={matchTimeRepres=23;} +"3monthAccum"={matchTimeRepres=24;} +"6monthAccum"={matchTimeRepres=25;} +"yearAccum"={matchTimeRepres=26;} +"8hMean"={matchTimeRepres=30;} +"max8hMean"={matchTimeRepres=31;} +"meanMax8h"={matchTimeRepres=32;} +"maxMax8h"={matchTimeRepres=33;} +"perc98h1"={matchTimeRepres=40;} +"perc98d1"={matchTimeRepres=41;} +"perc90d1"={matchTimeRepres=42;} +"median"={matchTimeRepres=43;} +"likelyhood"={matchTimeRepres=44;} +"jointProb"={matchTimeRepres=45;} +"perc"={matchTimeRepres=46;} +"boundary"={matchTimeRepres=50;} +"firatGuess"={matchTimeRepres=51;} +"stdDev"={matchTimeRepres=52;} +"anaIncr"={matchTimeRepres=60;} +"anaErr"={matchTimeRepres=61;} +"bgErr"={matchTimeRepres=62;} +"quality"={matchTimeRepres=70;} +"missing"={matchTimeRepres=255;} diff --git a/eccodes/definitions/grib1/localConcepts/eswi/timerepres.table b/eccodes/definitions/grib1/localConcepts/eswi/timerepres.table new file mode 100644 index 00000000..f98e3b3f --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/timerepres.table @@ -0,0 +1,52 @@ +######################### +## +## author: Sebastien Villaume +## created: 6 Oct 2011 +## modified: 13 May 2013 +## +# +# Model 50 (MATCH) SMHI local definitions timerep +# +# Time representation parameter in local extension +# +0 0 No representation specified +1 1 3 Hour mean value (hours) +2 2 Diurnal or Daily mean (hours) +3 3 1 Hour mean value (hours) +5 5 Monthly mean (month) +6 6 Mean from start (hours) +7 7 Annual mean (year) +10 10 Max value +11 11 Min value +12 12 Diurnal max +14 14 Monthly max +16 16 Annual max +17 17 Mean of daily-max +18 18 Mean of daily-max +19 19 Mean of daily-max +20 20 Acc. since start (hours) +21 21 Acc. over one day (hours) +22 22 Acc. over one month (months) +23 23 Acc. over one day (hours) +24 24 Acc. over three months (months) +25 25 Acc. over six months (months) +26 26 Acc. over one year (year) +30 30 Running 8-hour mean (hours) +31 31 Daily maximum of 8-hour mean +32 32 Mean of daily maximum of 8-hour mean +33 33 Max of daily maximum of 8-hour mean +40 40 98 percentil (hours) +41 41 98 percentil (day) +42 42 90 percentil (day) +43 43 Median +44 44 Likelihood +45 45 Joint probability +46 46 Percentile +50 50 Boundary value +51 51 First guess +52 52 Standard deviation +60 ANAINCR Analysis increment +61 ANAERR Analysis error +62 BGERR Background error +70 QUALITY Quality flag +255 255 missing value diff --git a/eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def b/eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def new file mode 100644 index 00000000..a312b4c2 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def @@ -0,0 +1,49 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 May 2013 +# +######################### +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'northTile' = {indicatorOfTypeOfLevel=191;} +'northEastTile' = {indicatorOfTypeOfLevel=192;} +'eastTile' = {indicatorOfTypeOfLevel=193;} +'southEastTile' = {indicatorOfTypeOfLevel=194;} +'southTile' = {indicatorOfTypeOfLevel=195;} +'southWestTile' = {indicatorOfTypeOfLevel=196;} +'westTile' = {indicatorOfTypeOfLevel=197;} +'northWestTile' = {indicatorOfTypeOfLevel=198;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} +'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions/grib1/localConcepts/eswi/units.def b/eccodes/definitions/grib1/localConcepts/eswi/units.def new file mode 100644 index 00000000..ea2d049d --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/eswi/units.def @@ -0,0 +1,5580 @@ +############### table2Version 1 ############ +############### WMO/Hirlam ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 1 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to MSL +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pa/s' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'K*m2/kg/s' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geopotential +'m2/s2' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'Gpm' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Total ozone +'Dobson' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K/m' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar Spectra (1) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar Spectra (2) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar Spectra (3) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Gpm' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave Spectra (1) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave Spectra (2) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave Spectra (3) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Stream function +'m2/s' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m2/s' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'m2/s2' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coord. vertical velocity +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Pressure Vertical velocity +'Pa/s' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Geometric Vertical velocity +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#u-component of current +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#v-component of current +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'kg/kg' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'%' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'kg/kg' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Cloud Ice +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 58 ; + } +#Precipitation rate +'kg/m2/s' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snowfall rate water equivalent +'kg/m2/s' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Water equiv. of accum. snow depth +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Convective snow +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Large scale snow +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Water Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Deviation of sea level from mean +'m' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Surface roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Albedo +'%' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Soil temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'%' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Salinity +'kg/kg' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'kg/m3' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Water run off +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#u-component of ice drift +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#v-component of ice drift +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'1/s' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Significant height of combined wind waves and swell +'m' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Direction of wind waves +'deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'deg. true' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short wave radiation flux (surface) +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long wave radiation flux (surface) +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short wave radiation flux (top of atmos.) +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long wave radiation flux (top of atmos.) +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Brightness temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Radiance (with respect to wave number) +'W/m/sr' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W/m3/sr' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Latent heat net flux +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat net flux +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W/m2' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Momentum flux, u component +'N/m2' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v component +'N/m2' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'-' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Momentum flux +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 128 ; + } +#Humidity tendencies +'?' = { + table2Version = 1 ; + indicatorOfParameter = 129 ; + } +#Radiation at top of atmosphere +'?' = { + table2Version = 1 ; + indicatorOfParameter = 130 ; + } +#Cloud top temperature, infrared +'K' = { + table2Version = 1 ; + indicatorOfParameter = 131 ; + } +#Water vapor brightness temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 132 ; + } +#Water vapor brightness temperature, correction +'K' = { + table2Version = 1 ; + indicatorOfParameter = 133 ; + } +#Cloud water reflectivity +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 134 ; + } +#Maximum wind +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 135 ; + } +#Minimum wind +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 136 ; + } +#Integrated cloud condensate +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 137 ; + } +#Snow depth, cold snow +'m' = { + table2Version = 1 ; + indicatorOfParameter = 138 ; + } +#Open land snow depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 139 ; + } +#Temperature over land +'K' = { + table2Version = 1 ; + indicatorOfParameter = 140 ; + } +#Specific humidity over land +'kg/kg' = { + table2Version = 1 ; + indicatorOfParameter = 141 ; + } +#Relative humidity over land +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 142 ; + } +#Dew point over land +'K' = { + table2Version = 1 ; + indicatorOfParameter = 143 ; + } +#Slope fraction +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; + } +#Shadow fraction +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 161 ; + } +#Shadow parameter RSHA +'-' = { + table2Version = 1 ; + indicatorOfParameter = 162 ; + } +#Shadow parameter RSHB +'-' = { + table2Version = 1 ; + indicatorOfParameter = 163 ; + } +#Momentum vegetation roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 164 ; + } +#Surface slope +'-' = { + table2Version = 1 ; + indicatorOfParameter = 165 ; + } +#Sky wiew factor +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 166 ; + } +#Fraction of aspect +'-' = { + table2Version = 1 ; + indicatorOfParameter = 167 ; + } +#Heat roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 168 ; + } +#Albedo with solar angle correction +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 169 ; + } +#Soil wetness index +'-' = { + table2Version = 1 ; + indicatorOfParameter = 189 ; + } +#Snow albedo +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 190 ; + } +#Snow density +'?' = { + table2Version = 1 ; + indicatorOfParameter = 191 ; + } +#Water on canopy level +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 192 ; + } +#Surface soil ice +'m3/m3' = { + table2Version = 1 ; + indicatorOfParameter = 193 ; + } +#Fraction of surface type +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 194 ; + } +#Soil type +'code' = { + table2Version = 1 ; + indicatorOfParameter = 195 ; + } +#Fraction of lake +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 196 ; + } +#Fraction of forest +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 197 ; + } +#Fraction of open land +'Fraction' = { + table2Version = 1 ; + indicatorOfParameter = 198 ; + } +#Vegetation type (Olsson land use) +'-' = { + table2Version = 1 ; + indicatorOfParameter = 199 ; + } +#Turbulent Kinetic Energy +'J/kg' = { + table2Version = 1 ; + indicatorOfParameter = 200 ; + } +#Standard deviation of mesoscale orography +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 204 ; + } +#Anisotrophic mesoscale orography +'-' = { + table2Version = 1 ; + indicatorOfParameter = 205 ; + } +#X-angle of mesoscale orography +'rad' = { + table2Version = 1 ; + indicatorOfParameter = 206 ; + } +#Maximum slope of smallest scale orography +'rad' = { + table2Version = 1 ; + indicatorOfParameter = 208 ; + } +#Standard deviation of smallest scale orography +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 209 ; + } +#Ice existence +'?' = { + table2Version = 1 ; + indicatorOfParameter = 210 ; + } +#Lifting condensation level +'m' = { + table2Version = 1 ; + indicatorOfParameter = 222 ; + } +#Level of neutral buoyancy +'m' = { + table2Version = 1 ; + indicatorOfParameter = 223 ; + } +#Convective inhibation +'J/kg' = { + table2Version = 1 ; + indicatorOfParameter = 224 ; + } +#CAPE +'J/kg' = { + table2Version = 1 ; + indicatorOfParameter = 225 ; + } +#Precipitation type +'code' = { + table2Version = 1 ; + indicatorOfParameter = 226 ; + } +#Friction velocity +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 227 ; + } +#Wind gust +'m/s' = { + table2Version = 1 ; + indicatorOfParameter = 228 ; + } +#Analysed 3-hour precipitation (-3h/0h) +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 250 ; + } +#Analysed 12-hour precipitation (-12h/0h) +'kg/m2' = { + table2Version = 1 ; + indicatorOfParameter = 251 ; + } +#Missing +'Missing' = { + table2Version = 1 ; + indicatorOfParameter = 255 ; + } +############### table2Version 128 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 128 ; + indicatorOfParameter = 0 ; + } +# SO2/SO2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 1 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 2 ; + } +# DMS/DMS +'-' = { + table2Version = 128 ; + indicatorOfParameter = 3 ; + } +# MSA/MSA +'-' = { + table2Version = 128 ; + indicatorOfParameter = 4 ; + } +# H2S/H2S +'-' = { + table2Version = 128 ; + indicatorOfParameter = 5 ; + } +# NH4SO4/(NH4)1.5H0.5SO4 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 6 ; + } +# NH4HSO4/NH4HSO4 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 7 ; + } +# NH42SO4/(NH4)2SO4 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 8 ; + } +# SULFATE/SULFATE +'-' = { + table2Version = 128 ; + indicatorOfParameter = 9 ; + } +# SO2_AQ/SO2 in aqueous phase +'-' = { + table2Version = 128 ; + indicatorOfParameter = 10 ; + } +# SO4_AQ/sulfate in aqueous phase +'-' = { + table2Version = 128 ; + indicatorOfParameter = 11 ; + } +# LRT_SO2_S/long-range SO2_S +'-' = { + table2Version = 128 ; + indicatorOfParameter = 23 ; + } +# LRT_SO4_S/LRT-contriubtion to SO4_S +'-' = { + table2Version = 128 ; + indicatorOfParameter = 24 ; + } +# LRT_SOX_S/LRT-contriubtion to SO4_S +'-' = { + table2Version = 128 ; + indicatorOfParameter = 25 ; + } +# XSOX_S/excess SOX (corrected for sea salt as sulfur) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 26 ; + } +# SO2_S/SO2 (as sulphur) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 27 ; + } +# SO4_S/SO4 (as sulphur) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 28 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 29 ; + } +# NO +'-' = { + table2Version = 128 ; + indicatorOfParameter = 30 ; + } +# NO2/NO2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } +# HNO3/HNO3 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 32 ; + } +# NO3(-1)/NO3(-1) (nitrate) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 33 ; + } +# NH4NO3/NH4NO3 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 34 ; + } +# NITRATE/NITRATE +'-' = { + table2Version = 128 ; + indicatorOfParameter = 35 ; + } +# PNO3/(COARSE) NITRATE +'-' = { + table2Version = 128 ; + indicatorOfParameter = 36 ; + } +# LRT_NOY_N/long-range NOY_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 37 ; + } +# NO3_N/NO3 as N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 38 ; + } +# HNO3_N/HNO3 as N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 39 ; + } +# LRT_NO3_N/long-range NO3_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 40 ; + } +# LRT_HNO3_N/long-range HNO3_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 41 ; + } +# LRT_NO2_N/long-range NO2_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 42 ; + } +# LRT_NOZ_N/long-range NOZ_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 43 ; + } +# NOX/NOX as NO2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 44 ; + } +# NO_N/NO as N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 45 ; + } +# NO2_N/NO2 as N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 46 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'-' = { + table2Version = 128 ; + indicatorOfParameter = 47 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 48 ; + } +# NOZ_N/NOy-NOx (as nitrogen) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 49 ; + } +# NH3/NH3 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 50 ; + } +# NH4(+1)/NH4 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 51 ; + } +# AMMONIUM/AMMONIUM +'-' = { + table2Version = 128 ; + indicatorOfParameter = 52 ; + } +# NH3_N/NH3 (as nitrogen) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 54 ; + } +# NH4_N/NH4 (as nitrogen) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 55 ; + } +# LRT_NH3_N/long-range NH3_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 56 ; + } +# LRT_NH4_N/long-range NH4_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 57 ; + } +# LRT_NHX_N/long-range NHX_N +'-' = { + table2Version = 128 ; + indicatorOfParameter = 58 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 59 ; + } +# O3 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 60 ; + } +# H2O2/H2O2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 61 ; + } +# OH/OH +'-' = { + table2Version = 128 ; + indicatorOfParameter = 62 ; + } +# O3_AQ/O3 in aqueous phase +'-' = { + table2Version = 128 ; + indicatorOfParameter = 63 ; + } +# H2O2_AQ/H2O2 in aqueous phase +'-' = { + table2Version = 128 ; + indicatorOfParameter = 64 ; + } +# OX/Ox=O3+NO2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 65 ; + } +# C +'-' = { + table2Version = 128 ; + indicatorOfParameter = 70 ; + } +# CO/CO +'-' = { + table2Version = 128 ; + indicatorOfParameter = 71 ; + } +# CO2/CO2 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 72 ; + } +# CH4/CH4 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 73 ; + } +# OC/Organic carbon (particles) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 74 ; + } +# EC/Elementary carbon (particles) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 75 ; + } +# CF6 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 80 ; + } +# PMCH/PMCH +'-' = { + table2Version = 128 ; + indicatorOfParameter = 81 ; + } +# PMCP/PMCP +'-' = { + table2Version = 128 ; + indicatorOfParameter = 82 ; + } +# TRACER/Tracer +'-' = { + table2Version = 128 ; + indicatorOfParameter = 83 ; + } +# Inert/Inert +'-' = { + table2Version = 128 ; + indicatorOfParameter = 84 ; + } +# H3 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 85 ; + } +# Ar41/Ar41 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 86 ; + } +# Kr85/Kr85 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 87 ; + } +# Kr88/Kr88 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 88 ; + } +# Xe131/Xe131 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 91 ; + } +# Xe133/Xe133 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 92 ; + } +# Rn222/Rn222 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 93 ; + } +# I131/I131 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 95 ; + } +# I132/I132 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 96 ; + } +# I133/I133 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 97 ; + } +# I135/I135 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 98 ; + } +# Sr90 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 100 ; + } +# Co60/Co60 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 101 ; + } +# Ru103/Ru103 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 102 ; + } +# Ru106/Ru106 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 103 ; + } +# Cs134/Cs134 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 104 ; + } +# Cs137/Cs137 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 105 ; + } +# Ra223/Ra123 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 106 ; + } +# Ra228/Ra228 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 108 ; + } +# Zr95 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 110 ; + } +# Nb95/Nb95 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 111 ; + } +# Ce144/Ce144 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 112 ; + } +# Np238/Np238 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 113 ; + } +# Np239/Np239 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 114 ; + } +# Pu241/Pu241 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 115 ; + } +# Pb210/Pb210 +'-' = { + table2Version = 128 ; + indicatorOfParameter = 116 ; + } +# ALL +'-' = { + table2Version = 128 ; + indicatorOfParameter = 119 ; + } +# NACL +'-' = { + table2Version = 128 ; + indicatorOfParameter = 120 ; + } +# SODIUM/Na+ +'-' = { + table2Version = 128 ; + indicatorOfParameter = 121 ; + } +# MAGNESIUM/Mg++ +'-' = { + table2Version = 128 ; + indicatorOfParameter = 122 ; + } +# POTASSIUM/K+ +'-' = { + table2Version = 128 ; + indicatorOfParameter = 123 ; + } +# CALCIUM/Ca++ +'-' = { + table2Version = 128 ; + indicatorOfParameter = 124 ; + } +# XMG/excess Mg++ (corrected for sea salt) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 125 ; + } +# XK/excess K+ (corrected for sea salt) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 126 ; + } +# XCA/excess Ca++ (corrected for sea salt) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 128 ; + } +# Cl2/Cloride +'-' = { + table2Version = 128 ; + indicatorOfParameter = 140 ; + } +# PMFINE +'-' = { + table2Version = 128 ; + indicatorOfParameter = 160 ; + } +# PMCOARSE/Coarse particles +'-' = { + table2Version = 128 ; + indicatorOfParameter = 161 ; + } +# DUST/Dust (particles) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 162 ; + } +# PNUMBER/Number concentration +'-' = { + table2Version = 128 ; + indicatorOfParameter = 163 ; + } +# PRADIUS/Particle radius +'-' = { + table2Version = 128 ; + indicatorOfParameter = 164 ; + } +# PSURFACE/Particle surface conc +'-' = { + table2Version = 128 ; + indicatorOfParameter = 165 ; + } +# PMASS/Particle mass conc +'-' = { + table2Version = 128 ; + indicatorOfParameter = 166 ; + } +# PM10/PM10 particles +'-' = { + table2Version = 128 ; + indicatorOfParameter = 167 ; + } +# PSOX/Particulate sulfate +'-' = { + table2Version = 128 ; + indicatorOfParameter = 168 ; + } +# PNOX/Particulate nitrate +'-' = { + table2Version = 128 ; + indicatorOfParameter = 169 ; + } +# PNHX/Particulate ammonium +'-' = { + table2Version = 128 ; + indicatorOfParameter = 170 ; + } +# PPMFINE/Primary emitted fine particles +'-' = { + table2Version = 128 ; + indicatorOfParameter = 171 ; + } +# PPM10/Primary emitted particles +'-' = { + table2Version = 128 ; + indicatorOfParameter = 172 ; + } +# SOA/Secondary Organic Aerosol +'-' = { + table2Version = 128 ; + indicatorOfParameter = 173 ; + } +# PM2.5/PM2.5 particles +'-' = { + table2Version = 128 ; + indicatorOfParameter = 174 ; + } +# PM/Total particulate matter +'-' = { + table2Version = 128 ; + indicatorOfParameter = 175 ; + } +# BIRCH_POLLEN/Birch pollen +'-' = { + table2Version = 128 ; + indicatorOfParameter = 180 ; + } +# KZ +' m2/s' = { + table2Version = 128 ; + indicatorOfParameter = 200 ; + } +# L/Monin-Obukhovs length [m] +' m' = { + table2Version = 128 ; + indicatorOfParameter = 201 ; + } +# U*/Friction velocity [m/s] +' m/s' = { + table2Version = 128 ; + indicatorOfParameter = 202 ; + } +# W*/Convective velocity scale [m/s] +' m/s' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +# Z-D/Z0 minus displacement length [m] +' m' = { + table2Version = 128 ; + indicatorOfParameter = 204 ; + } +# SURFTYPE/Surface type (see link{OCTET45}) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 210 ; + } +# LAI/Leaf area index +'-' = { + table2Version = 128 ; + indicatorOfParameter = 211 ; + } +# SOILTYPE/Soil type +'-' = { + table2Version = 128 ; + indicatorOfParameter = 212 ; + } +# SSALB/Single scattering albodo [1] +'1' = { + table2Version = 128 ; + indicatorOfParameter = 213 ; + } +# ASYMPAR/Asymmetry parameter +'-' = { + table2Version = 128 ; + indicatorOfParameter = 214 ; + } +# VIS/Visibility [m] +' m' = { + table2Version = 128 ; + indicatorOfParameter = 215 ; + } +# EXT/Extinction [1/m] +' 1/m' = { + table2Version = 128 ; + indicatorOfParameter = 216 ; + } +# BSCA/Backscattering coeff [1/m/sr] +' 1/m/sr' = { + table2Version = 128 ; + indicatorOfParameter = 217 ; + } +# AOD/Aerosol opt depth [1] +'1' = { + table2Version = 128 ; + indicatorOfParameter = 218 ; + } +# DAOD/AOD per layer [1] +'1' = { + table2Version = 128 ; + indicatorOfParameter = 219 ; + } +# CONV_TIED +'-' = { + table2Version = 128 ; + indicatorOfParameter = 220 ; + } +# CONV_BOT/Convective cloud bottom (unit?) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 221 ; + } +# CONV_TOP/Convective cloud top (unit?) +'-' = { + table2Version = 128 ; + indicatorOfParameter = 222 ; + } +# DXDY/Gridsize [m2] +' m2' = { + table2Version = 128 ; + indicatorOfParameter = 223 ; + } +# EMIS/Sectoral emissions +'-' = { + table2Version = 128 ; + indicatorOfParameter = 240 ; + } +# LONG/Longitude +'-' = { + table2Version = 128 ; + indicatorOfParameter = 241 ; + } +# LAT/Latitude +'-' = { + table2Version = 128 ; + indicatorOfParameter = 242 ; + } +#Missing +'Missing' = { + table2Version = 128 ; + indicatorOfParameter = 255 ; + } +############### table2Version 129 ############ +############### Mesan ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 129 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pa' = { + table2Version = 129 ; + indicatorOfParameter = 1 ; + } +#Temperature +'K' = { + table2Version = 129 ; + indicatorOfParameter = 11 ; + } +#Wet bulb temperature +'K' = { + table2Version = 129 ; + indicatorOfParameter = 12 ; + } +#24 hour mean of 2 meter temperature +'K' = { + table2Version = 129 ; + indicatorOfParameter = 13 ; + } +#Maximum temperature +'K' = { + table2Version = 129 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 129 ; + indicatorOfParameter = 16 ; + } +#Visibility +'m' = { + table2Version = 129 ; + indicatorOfParameter = 20 ; + } +#Wind gusts +'m/s' = { + table2Version = 129 ; + indicatorOfParameter = 32 ; + } +#u-component of wind +'m/s' = { + table2Version = 129 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'m/s' = { + table2Version = 129 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'%' = { + table2Version = 129 ; + indicatorOfParameter = 52 ; + } +#Total cloud cover +'fraction' = { + table2Version = 129 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'fraction' = { + table2Version = 129 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'fraction' = { + table2Version = 129 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'fraction' = { + table2Version = 129 ; + indicatorOfParameter = 75 ; + } +#Fraction of significant clouds +'fraction' = { + table2Version = 129 ; + indicatorOfParameter = 77 ; + } +#Cloud base of significant clouds +'m' = { + table2Version = 129 ; + indicatorOfParameter = 78 ; + } +#Cloud top of significant clouds +'m' = { + table2Version = 129 ; + indicatorOfParameter = 79 ; + } +#Type of precipitation +'code' = { + table2Version = 129 ; + indicatorOfParameter = 145 ; + } +#Sort of precipitation +'code' = { + table2Version = 129 ; + indicatorOfParameter = 146 ; + } +#6 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 161 ; + } +#12 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 162 ; + } +#18 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 163 ; + } +#24 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 164 ; + } +#1 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 165 ; + } +#2 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 166 ; + } +#3 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 167 ; + } +#9 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 168 ; + } +#15 hour precipitation +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 169 ; + } +#6 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 171 ; + } +#12 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 172 ; + } +#18 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 173 ; + } +#24 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 174 ; + } +#1 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 175 ; + } +#2 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 176 ; + } +#3 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 177 ; + } +#9 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 178 ; + } +#15 hour fresh snow cover +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 179 ; + } +#6 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 181 ; + } +#12 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 182 ; + } +#18 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 183 ; + } +#24 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 184 ; + } +#1 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 185 ; + } +#2 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 186 ; + } +#3 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 187 ; + } +#9 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 188 ; + } +#15 hour precipitation, corrected +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 189 ; + } +#6 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 191 ; + } +#12 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 192 ; + } +#18 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 193 ; + } +#24 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 194 ; + } +#1 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 195 ; + } +#2 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 196 ; + } +#3 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 197 ; + } +#9 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 198 ; + } +#15 hour fresh snow cover, corrected +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 199 ; + } +#6 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 201 ; + } +#12 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 202 ; + } +#18 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 203 ; + } +#24 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 204 ; + } +#1 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 205 ; + } +#2 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 206 ; + } +#3 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 207 ; + } +#9 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 208 ; + } +#15 hour precipitation, standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 209 ; + } +#6 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 211 ; + } +#12 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 212 ; + } +#18 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 213 ; + } +#24 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 214 ; + } +#1 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 215 ; + } +#2 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 216 ; + } +#3 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 217 ; + } +#9 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 218 ; + } +#15 hour fresh snow cover, standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 219 ; + } +#6 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 221 ; + } +#12 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 222 ; + } +#18 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 223 ; + } +#24 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 224 ; + } +#1 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 225 ; + } +#2 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 226 ; + } +#3 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 227 ; + } +#9 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 228 ; + } +#15 hour precipitation, corrected and standardized +'mm' = { + table2Version = 129 ; + indicatorOfParameter = 229 ; + } +#6 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 231 ; + } +#12 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 232 ; + } +#18 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 233 ; + } +#24 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 234 ; + } +#1 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 235 ; + } +#2 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 236 ; + } +#3 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 237 ; + } +#9 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 238 ; + } +#15 hour fresh snow cover, corrected and standardized +'cm' = { + table2Version = 129 ; + indicatorOfParameter = 239 ; + } +#Missing +'Missing' = { + table2Version = 129 ; + indicatorOfParameter = 255 ; + } +############### table2Version 130 ############ +############### PMP ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 130 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pa' = { + table2Version = 130 ; + indicatorOfParameter = 1 ; + } +#Temperature +'K' = { + table2Version = 130 ; + indicatorOfParameter = 11 ; + } +#Visibility +'m' = { + table2Version = 130 ; + indicatorOfParameter = 20 ; + } +#u-component of wind +'m/s' = { + table2Version = 130 ; + indicatorOfParameter = 33 ; + } +#v-component of wind +'m/s' = { + table2Version = 130 ; + indicatorOfParameter = 34 ; + } +#Relative humidity +'%' = { + table2Version = 130 ; + indicatorOfParameter = 52 ; + } +#Probability of frozen rain +'%' = { + table2Version = 130 ; + indicatorOfParameter = 58 ; + } +#Probability thunderstorm +'%' = { + table2Version = 130 ; + indicatorOfParameter = 60 ; + } +#Total_precipitation +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 61 ; + } +#Water_equiv._of_snow_depth +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 65 ; + } +#Area_time_min_totalcloudcover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 67 ; + } +#Area_time_max_totalcloudcover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 68 ; + } +#Area_time_median_totalcloudcover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 69 ; + } +#Area_time_mean_totalcloudcover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 70 ; + } +#Total cloud cover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cove +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 75 ; + } +#cloud mask +'fraction' = { + table2Version = 130 ; + indicatorOfParameter = 77 ; + } +#Index 2m maxtemperatur over 3 dygn +'-' = { + table2Version = 130 ; + indicatorOfParameter = 100 ; + } +#EPS T mean +'K' = { + table2Version = 130 ; + indicatorOfParameter = 110 ; + } +#EPS T standard deviation +'K' = { + table2Version = 130 ; + indicatorOfParameter = 111 ; + } +#Maximum wind (mean 10 min) +'M/S' = { + table2Version = 130 ; + indicatorOfParameter = 130 ; + } +#Wind gust +'M/S' = { + table2Version = 130 ; + indicatorOfParameter = 131 ; + } +#Cloud base (significant) +'m' = { + table2Version = 130 ; + indicatorOfParameter = 135 ; + } +#Cloud top (significant) +'m' = { + table2Version = 130 ; + indicatorOfParameter = 136 ; + } +#Omradesnederbord gridpunkts-min +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 137 ; + } +#Omradesnederbord gridpunkts-max +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 138 ; + } +#Omradesnederbord gridpunkts-medel +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 139 ; + } +#Precipitation intensity total +'kg/m2/s' = { + table2Version = 130 ; + indicatorOfParameter = 140 ; + } +#Precipitation intensity snow +'kg/m2/s' = { + table2Version = 130 ; + indicatorOfParameter = 141 ; + } +#Area_time_min_precipitation +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 142 ; + } +#Area_time_max_precipitation +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 143 ; + } +#Precipitation type, conv 0, large scale 1, no prec -9 +'category' = { + table2Version = 130 ; + indicatorOfParameter = 145 ; + } +#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle +'category' = { + table2Version = 130 ; + indicatorOfParameter = 146 ; + } +#Vadersymbol +'category' = { + table2Version = 130 ; + indicatorOfParameter = 147 ; + } +#Area_time_mean_precipitation +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 148 ; + } +#Area_time_median_precipitation +'kg/m2' = { + table2Version = 130 ; + indicatorOfParameter = 149 ; + } +#Missing +'Missing' = { + table2Version = 130 ; + indicatorOfParameter = 255 ; + } +############### table2Version 131 ############ +############### RCA ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 131 ; + indicatorOfParameter = 0 ; + } +#Sea surface temperature (LAKE) +'K' = { + table2Version = 131 ; + indicatorOfParameter = 11 ; + } +#Current east +'m/s' = { + table2Version = 131 ; + indicatorOfParameter = 49 ; + } +#Current north +'m/s' = { + table2Version = 131 ; + indicatorOfParameter = 50 ; + } +#Snowdepth in Probe +'m' = { + table2Version = 131 ; + indicatorOfParameter = 66 ; + } +#Ice concentration (LAKE) +'fraction' = { + table2Version = 131 ; + indicatorOfParameter = 91 ; + } +#Ice thickness Probe-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 92 ; + } +#Temperature ABC-lake +'K' = { + table2Version = 131 ; + indicatorOfParameter = 150 ; + } +#Temperature C-lake +'K' = { + table2Version = 131 ; + indicatorOfParameter = 151 ; + } +#Temperature D-lake +'K' = { + table2Version = 131 ; + indicatorOfParameter = 152 ; + } +#Temperature E-lake +'K' = { + table2Version = 131 ; + indicatorOfParameter = 153 ; + } +#Area ABC-lake +'km2' = { + table2Version = 131 ; + indicatorOfParameter = 160 ; + } +#Depth ABC-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 161 ; + } +#C-lakes +'amount' = { + table2Version = 131 ; + indicatorOfParameter = 162 ; + } +#D-lakes +'amount' = { + table2Version = 131 ; + indicatorOfParameter = 163 ; + } +#E-lakes +'amount' = { + table2Version = 131 ; + indicatorOfParameter = 164 ; + } +#Ice thickness ABC-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 170 ; + } +#Ice thickness C-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 171 ; + } +#Ice thickness D-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 172 ; + } +#Ice thickness E-lake +'m' = { + table2Version = 131 ; + indicatorOfParameter = 173 ; + } +#Sea surface temperature (T) +'K' = { + table2Version = 131 ; + indicatorOfParameter = 180 ; + } +#Ice concentration (I) +'fraction' = { + table2Version = 131 ; + indicatorOfParameter = 183 ; + } +#Fraction lake +'fraction' = { + table2Version = 131 ; + indicatorOfParameter = 196 ; + } +#Black ice thickness in Probe +'m' = { + table2Version = 131 ; + indicatorOfParameter = 241 ; + } +#Vallad istjocklek i Probe +'m' = { + table2Version = 131 ; + indicatorOfParameter = 244 ; + } +#Internal ice concentration in Probe +'fraction' = { + table2Version = 131 ; + indicatorOfParameter = 245 ; + } +#Isfrontlaege i Probe +'m' = { + table2Version = 131 ; + indicatorOfParameter = 246 ; + } +#Heat in Probe +'Joule' = { + table2Version = 131 ; + indicatorOfParameter = 250 ; + } +#Turbulent Kintetic Energy +'J/kg' = { + table2Version = 131 ; + indicatorOfParameter = 251 ; + } +#Dissipation rate Turbulent Kinetic Energy +'W/kg' = { + table2Version = 131 ; + indicatorOfParameter = 252 ; + } +#Missing +'Missing' = { + table2Version = 131 ; + indicatorOfParameter = 255 ; + } +############### table2Version 133 ############ +############### Hiromb ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 133 ; + indicatorOfParameter = 0 ; + } +#Pressure reduced to MSL +'Pa' = { + table2Version = 133 ; + indicatorOfParameter = 1 ; + } +#Temperature +'Deg C' = { + table2Version = 133 ; + indicatorOfParameter = 11 ; + } +#Potential temperature +'K' = { + table2Version = 133 ; + indicatorOfParameter = 13 ; + } +#Wave spectra (1) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Deg true' = { + table2Version = 133 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 32 ; + } +#U-component of Wind +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 33 ; + } +#V-component of Wind +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 34 ; + } +#Stream function +'m2/s' = { + table2Version = 133 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m2/s' = { + table2Version = 133 ; + indicatorOfParameter = 36 ; + } +#Montgomery stream function +'m2/s2' = { + table2Version = 133 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 38 ; + } +#Z-component of velocity (pressure) +'Pa/s' = { + table2Version = 133 ; + indicatorOfParameter = 39 ; + } +#Z-component of velocity (geometric) +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 42 ; + } +#Relative vorticity +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 43 ; + } +#Relative divergence +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 44 ; + } +#Vertical u-component shear +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 46 ; + } +#Direction of horizontal current +'Deg true' = { + table2Version = 133 ; + indicatorOfParameter = 47 ; + } +#Speed of horizontal current +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 48 ; + } +#U-comp of Current +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 49 ; + } +#V-comp of Current +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'g/kg' = { + table2Version = 133 ; + indicatorOfParameter = 51 ; + } +#Snow Depth +'m' = { + table2Version = 133 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'m' = { + table2Version = 133 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 133 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 133 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 133 ; + indicatorOfParameter = 70 ; + } +#Total Cloud Cover +'Fraction' = { + table2Version = 133 ; + indicatorOfParameter = 71 ; + } +#Water temperature +'K' = { + table2Version = 133 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea level from mean +'cm' = { + table2Version = 133 ; + indicatorOfParameter = 82 ; + } +#Salinity +'psu' = { + table2Version = 133 ; + indicatorOfParameter = 88 ; + } +#Density +'kg/m3' = { + table2Version = 133 ; + indicatorOfParameter = 89 ; + } +#Ice Cover +'Fraction' = { + table2Version = 133 ; + indicatorOfParameter = 91 ; + } +#Total ice thickness +'m' = { + table2Version = 133 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Deg true' = { + table2Version = 133 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'1/s' = { + table2Version = 133 ; + indicatorOfParameter = 98 ; + } +#Significant wave height +'m' = { + table2Version = 133 ; + indicatorOfParameter = 100 ; + } +#Direction of Wind Waves +'Deg. true' = { + table2Version = 133 ; + indicatorOfParameter = 101 ; + } +#Sign Height Wind Waves +'m' = { + table2Version = 133 ; + indicatorOfParameter = 102 ; + } +#Mean Period Wind Waves +'s' = { + table2Version = 133 ; + indicatorOfParameter = 103 ; + } +#Direction of Swell Waves +'Deg. true' = { + table2Version = 133 ; + indicatorOfParameter = 104 ; + } +#Sign Height Swell Waves +'m' = { + table2Version = 133 ; + indicatorOfParameter = 105 ; + } +#Mean Period Swell Waves +'s' = { + table2Version = 133 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Deg true' = { + table2Version = 133 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 133 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Deg true' = { + table2Version = 133 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 133 ; + indicatorOfParameter = 110 ; + } +#Mean period of waves +'s' = { + table2Version = 133 ; + indicatorOfParameter = 111 ; + } +#Mean direction of Waves +'Deg. true' = { + table2Version = 133 ; + indicatorOfParameter = 112 ; + } +#Peak period of 1D spectra +'s' = { + table2Version = 133 ; + indicatorOfParameter = 113 ; + } +#Skin velocity, x-comp. +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 130 ; + } +#Skin velocity, y-comp. +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 131 ; + } +#Nitrate +'-' = { + table2Version = 133 ; + indicatorOfParameter = 151 ; + } +#Ammonium +'-' = { + table2Version = 133 ; + indicatorOfParameter = 152 ; + } +#Phosphate +'-' = { + table2Version = 133 ; + indicatorOfParameter = 153 ; + } +#Oxygen +'-' = { + table2Version = 133 ; + indicatorOfParameter = 154 ; + } +#Phytoplankton +'-' = { + table2Version = 133 ; + indicatorOfParameter = 155 ; + } +#Zooplankton +'-' = { + table2Version = 133 ; + indicatorOfParameter = 156 ; + } +#Detritus +'-' = { + table2Version = 133 ; + indicatorOfParameter = 157 ; + } +#Bentos nitrogen +'-' = { + table2Version = 133 ; + indicatorOfParameter = 158 ; + } +#Bentos phosphorus +'-' = { + table2Version = 133 ; + indicatorOfParameter = 159 ; + } +#Silicate +'-' = { + table2Version = 133 ; + indicatorOfParameter = 160 ; + } +#Biogenic silica +'-' = { + table2Version = 133 ; + indicatorOfParameter = 161 ; + } +#Light in water column +'-' = { + table2Version = 133 ; + indicatorOfParameter = 162 ; + } +#Inorganic suspended matter +'-' = { + table2Version = 133 ; + indicatorOfParameter = 163 ; + } +#Diatomes (algae) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 164 ; + } +#Flagellates (algae) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 165 ; + } +#Nitrate (aggregated) +'-' = { + table2Version = 133 ; + indicatorOfParameter = 166 ; + } +#Turbulent Kinetic Energy +'J/kg' = { + table2Version = 133 ; + indicatorOfParameter = 200 ; + } +#Dissipation rate of TKE +'W/kg' = { + table2Version = 133 ; + indicatorOfParameter = 201 ; + } +#Eddy viscosity +'m2/s' = { + table2Version = 133 ; + indicatorOfParameter = 202 ; + } +#Eddy diffusivity +'m2/s' = { + table2Version = 133 ; + indicatorOfParameter = 203 ; + } +# Level ice thickness +'m' = { + table2Version = 133 ; + indicatorOfParameter = 220 ; + } +#Ridged ice thickness +'m' = { + table2Version = 133 ; + indicatorOfParameter = 221 ; + } +#Ice ridge height +'m' = { + table2Version = 133 ; + indicatorOfParameter = 222 ; + } +#Ice ridge density +'1/km' = { + table2Version = 133 ; + indicatorOfParameter = 223 ; + } +#U-mean (prev. timestep) +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 231 ; + } +#V-mean (prev. timestep) +'cm/s' = { + table2Version = 133 ; + indicatorOfParameter = 232 ; + } +#W-mean (prev. timestep) +'m/s' = { + table2Version = 133 ; + indicatorOfParameter = 233 ; + } +#Snow temperature +'Deg C' = { + table2Version = 133 ; + indicatorOfParameter = 239 ; + } +#Total depth in meters +'m' = { + table2Version = 133 ; + indicatorOfParameter = 243 ; + } +#Missing +'Missing' = { + table2Version = 133 ; + indicatorOfParameter = 255 ; + } +############### table2Version 134 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 134 ; + indicatorOfParameter = 0 ; + } +#C2H6/Ethane +'-' = { + table2Version = 134 ; + indicatorOfParameter = 1 ; + } +#NC4H10/N-butane +'-' = { + table2Version = 134 ; + indicatorOfParameter = 2 ; + } +#C2H4/Ethene +'-' = { + table2Version = 134 ; + indicatorOfParameter = 3 ; + } +#C3H6/Propene +'-' = { + table2Version = 134 ; + indicatorOfParameter = 4 ; + } +#OXYLENE/O-xylene +'-' = { + table2Version = 134 ; + indicatorOfParameter = 5 ; + } +#HCHO/Formalydehyde +'-' = { + table2Version = 134 ; + indicatorOfParameter = 6 ; + } +#CH3CHO/Acetaldehyde +'-' = { + table2Version = 134 ; + indicatorOfParameter = 7 ; + } +#CH3COC2H5/Ethyl methyl keton +'-' = { + table2Version = 134 ; + indicatorOfParameter = 8 ; + } +#MGLYOX/Methyl-glyoxal (CH3COCHO) +'-' = { + table2Version = 134 ; + indicatorOfParameter = 9 ; + } +#GLYOX/Glyoxal (HCOCHO) +'-' = { + table2Version = 134 ; + indicatorOfParameter = 10 ; + } +#C5H8/Isoprene +'-' = { + table2Version = 134 ; + indicatorOfParameter = 11 ; + } +#C2H5OH/Ethanol +'-' = { + table2Version = 134 ; + indicatorOfParameter = 12 ; + } +#CH3OH/Metanol +'-' = { + table2Version = 134 ; + indicatorOfParameter = 13 ; + } +#HCOOH/Formic acid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 14 ; + } +#CH3COOH/Acetic acid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 15 ; + } +#NMVOC_C/Total NMVOC as C +'-' = { + table2Version = 134 ; + indicatorOfParameter = 19 ; + } +#Reserved +'' = { + table2Version = 134 ; + indicatorOfParameter = 20 ; + } +#PAN/Peroxy acetyl nitrate +'-' = { + table2Version = 134 ; + indicatorOfParameter = 21 ; + } +#NO3/Nitrate radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 22 ; + } +#N2O5/Dinitrogen pentoxide +'-' = { + table2Version = 134 ; + indicatorOfParameter = 23 ; + } +#ONIT/Organic nitrate +'-' = { + table2Version = 134 ; + indicatorOfParameter = 24 ; + } +#ISONRO2/Isoprene-NO3 adduct +'-' = { + table2Version = 134 ; + indicatorOfParameter = 25 ; + } +#HO2NO2/HO2NO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 26 ; + } +#MPAN +'-' = { + table2Version = 134 ; + indicatorOfParameter = 27 ; + } +#ISONO3H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 28 ; + } +#HONO +'-' = { + table2Version = 134 ; + indicatorOfParameter = 29 ; + } +#Reserved +'' = { + table2Version = 134 ; + indicatorOfParameter = 30 ; + } +#HO2/Hydroperhydroxyl radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 31 ; + } +#H2/Molecular hydrogen +'-' = { + table2Version = 134 ; + indicatorOfParameter = 32 ; + } +#O/Oxygen atomic ground state (3P) +'-' = { + table2Version = 134 ; + indicatorOfParameter = 33 ; + } +#O1D/Oxygen atomic first singlet state +'-' = { + table2Version = 134 ; + indicatorOfParameter = 34 ; + } +#Reserved +'-' = { + table2Version = 134 ; + indicatorOfParameter = 40 ; + } +#CH3O2/Methyl peroxy radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 41 ; + } +#CH3O2H/Methyl hydroperoxide +'-' = { + table2Version = 134 ; + indicatorOfParameter = 42 ; + } +#C2H5O2/Ethyl peroxy radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 43 ; + } +#CH3COO2/Peroxy acetyl radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 44 ; + } +#SECC4H9O2/Buthyl peroxy radical +'-' = { + table2Version = 134 ; + indicatorOfParameter = 45 ; + } +#CH3COCHO2CH3/peroxy radical from MEK +'-' = { + table2Version = 134 ; + indicatorOfParameter = 46 ; + } +#ACETOL/acetol (hydroxy acetone) +'-' = { + table2Version = 134 ; + indicatorOfParameter = 47 ; + } +#CH2O2CH2OH +'-' = { + table2Version = 134 ; + indicatorOfParameter = 48 ; + } +#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH +'-' = { + table2Version = 134 ; + indicatorOfParameter = 49 ; + } +#MAL/CH3COCH=CHCHO +'-' = { + table2Version = 134 ; + indicatorOfParameter = 50 ; + } +#MALO2/Peroxy radical from MAL + oh +'-' = { + table2Version = 134 ; + indicatorOfParameter = 51 ; + } +#ISRO2/Peroxy radical from isoprene + oh +'-' = { + table2Version = 134 ; + indicatorOfParameter = 52 ; + } +#ISOPROD/Peroxy radical from ISOPROD +'-' = { + table2Version = 134 ; + indicatorOfParameter = 53 ; + } +#C2H5OOH/Ethyl hydroperoxide +'-' = { + table2Version = 134 ; + indicatorOfParameter = 54 ; + } +#CH3COO2H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 55 ; + } +#OXYO2H/Hydroperoxide from OXYO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 56 ; + } +#SECC4H9O2H/Buthyl hydroperoxide +'-' = { + table2Version = 134 ; + indicatorOfParameter = 57 ; + } +#CH2OOHCH2OH +'-' = { + table2Version = 134 ; + indicatorOfParameter = 58 ; + } +#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 59 ; + } +#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 60 ; + } +#MALO2H/Hydroperoxide from MALO2 + ho2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 61 ; + } +#IPRO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 62 ; + } +#XO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 63 ; + } +#OXYO2/Peroxy radical from o-xylene + oh +'-' = { + table2Version = 134 ; + indicatorOfParameter = 64 ; + } +#ISRO2H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 65 ; + } +#MVK +'-' = { + table2Version = 134 ; + indicatorOfParameter = 66 ; + } +#MVKO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 67 ; + } +#MVKO2H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 68 ; + } +#BENZENE +'-' = { + table2Version = 134 ; + indicatorOfParameter = 70 ; + } +#ISNI +'-' = { + table2Version = 134 ; + indicatorOfParameter = 74 ; + } +#ISNIR +'-' = { + table2Version = 134 ; + indicatorOfParameter = 75 ; + } +#ISNIRH +'-' = { + table2Version = 134 ; + indicatorOfParameter = 76 ; + } +#MACR +'-' = { + table2Version = 134 ; + indicatorOfParameter = 77 ; + } +#AOH1 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 78 ; + } +#AOH1H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 79 ; + } +#MACRO2 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 80 ; + } +#MACO3H +'-' = { + table2Version = 134 ; + indicatorOfParameter = 81 ; + } +#MACOOH +'-' = { + table2Version = 134 ; + indicatorOfParameter = 82 ; + } +#CH2CCH3 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 83 ; + } +#CH2CO2HCH3 +'-' = { + table2Version = 134 ; + indicatorOfParameter = 84 ; + } +#BIGENE +'-' = { + table2Version = 134 ; + indicatorOfParameter = 90 ; + } +#BIGALK +'-' = { + table2Version = 134 ; + indicatorOfParameter = 91 ; + } +#TOLUENE +'-' = { + table2Version = 134 ; + indicatorOfParameter = 92 ; + } +#CH2CHCN +'-' = { + table2Version = 134 ; + indicatorOfParameter = 100 ; + } +#(CH3)2NNH2/Dimetylhydrazin +'-' = { + table2Version = 134 ; + indicatorOfParameter = 101 ; + } +#CH2OC2H3Cl/Epiklorhydrin +'-' = { + table2Version = 134 ; + indicatorOfParameter = 102 ; + } +#CH2OC2/Etylenoxid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 103 ; + } +#HF/Vaetefluorid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 105 ; + } +#Hcl/Vaeteklorid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 106 ; + } +#CS2/Koldisulfid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 107 ; + } +#CH3NH2/Metylamin +'-' = { + table2Version = 134 ; + indicatorOfParameter = 108 ; + } +#SF6/Sulphurhexafloride +'-' = { + table2Version = 134 ; + indicatorOfParameter = 110 ; + } +#HCN/Vaetecyanid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 111 ; + } +#COCl2/Fosgen +'-' = { + table2Version = 134 ; + indicatorOfParameter = 112 ; + } +#H2CCHCl/Vinylklorid +'-' = { + table2Version = 134 ; + indicatorOfParameter = 113 ; + } +#Missing +'Missing' = { + table2Version = 134 ; + indicatorOfParameter = 255 ; + } +############### table2Version 135 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 135 ; + indicatorOfParameter = 0 ; + } +#GRG1/MOZART specie +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 1 ; + } +#GRG2/MOZART specie +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 2 ; + } +#GRG3/MOZART specie +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 3 ; + } +#GRG4/MOZART specie +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 4 ; + } +#GRG5/MOZART specie +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 5 ; + } +#VIS-340/Visibility at 340 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 100 ; + } +#VIS-355/Visibility at 355 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 101 ; + } +#VIS-380/Visibility at 380 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 102 ; + } +#VIS-440/Visibility at 440 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 103 ; + } +#VIS-500/Visibility at 500 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 104 ; + } +#VIS-532/Visibility at 532 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 105 ; + } +#VIS-675/Visibility at 675 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 106 ; + } +#VIS-870/Visibility at 870 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 107 ; + } +#VIS-1020/Visibility at 1020 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 108 ; + } +#VIS-1064/Visibility at 1064 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 109 ; + } +#VIS-3500/Visibility at 3500 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 110 ; + } +#VIS-10000/Visibility at 10000 nm +'m' = { + table2Version = 135 ; + indicatorOfParameter = 111 ; + } +#BSCA-340/Backscatter at 340 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 120 ; + } +#BSCA-355/Backscatter at 355 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 121 ; + } +#BSCA-380/Backscatter at 380 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 122 ; + } +#BSCA-440/Backscatter at 440 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 123 ; + } +#BSCA-500/Backscatter at 500 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 124 ; + } +#BSCA-532/Backscatter at 532 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 125 ; + } +#BSCA-675/Backscatter at 675 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 126 ; + } +#BSCA-870/Backscatter at 870 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 127 ; + } +#BSCA-1020/Backscatter at 1020 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 128 ; + } +#BSCA-1064/Backscatter at 1064 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 129 ; + } +#BSCA-3500/Backscatter at 3500 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 130 ; + } +#BSCA-10000/Backscatter at 10000 nm +'1/m/sr' = { + table2Version = 135 ; + indicatorOfParameter = 131 ; + } +#EXT-340/Extinction at 340 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 140 ; + } +#EXT-355/Extinction at 355 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 141 ; + } +#EXT-380/Extinction at 380 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 142 ; + } +#EXT-440/Extinction at 440 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 143 ; + } +#EXT-500/Extinction at 500 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 144 ; + } +#EXT-532/Extinction at 532 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 145 ; + } +#EXT-675/Extinction at 675 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 146 ; + } +#EXT-870/Extinction at 870 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 147 ; + } +#EXT-1020/Extinction at 1020 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 148 ; + } +#EXT-1064/Extinction at 1064 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 149 ; + } +#EXT-3500/Extinction at 3500 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 150 ; + } +#EXT-10000/Extinction at 10000 nm +'1/m' = { + table2Version = 135 ; + indicatorOfParameter = 151 ; + } +#AOD-340/Aerosol optical depth at 340 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 160 ; + } +#AOD-355/Aerosol optical depth at 355 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 161 ; + } +#AOD-380/Aerosol optical depth at 380 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 162 ; + } +#AOD-440/Aerosol optical depth at 440 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 163 ; + } +#AOD-500/Aerosol optical depth at 500 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 164 ; + } +#AOD-532/Aerosol optical depth at 532 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 165 ; + } +#AOD-675/Aerosol optical depth at 675 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 166 ; + } +#AOD-870/Aerosol optical depth at 870 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 167 ; + } +#AOD-1020/Aerosol optical depth at 1020 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 168 ; + } +#AOD-1064/Aerosol optical depth at 1064 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 169 ; + } +#AOD-3500/Aerosol optical depth at 3500 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 170 ; + } +#AOD-10000/Aerosol optical depth at 10000 nm +'1' = { + table2Version = 135 ; + indicatorOfParameter = 171 ; + } +#Rain fraction of total cloud water +'Proportion' = { + table2Version = 135 ; + indicatorOfParameter = 208 ; + } +#Rain factor +'Numeric' = { + table2Version = 135 ; + indicatorOfParameter = 209 ; + } +#Total column integrated rain +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 210 ; + } +#Total column integrated snow +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 211 ; + } +#Total water precipitation +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 212 ; + } +#Total snow precipitation +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 213 ; + } +#Total column water (Vertically integrated total water) +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 214 ; + } +#Large scale precipitation rate +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 215 ; + } +#Convective snowfall rate water equivalent +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 216 ; + } +#Large scale snowfall rate water equivalent +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 217 ; + } +#Total snowfall rate +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 218 ; + } +#Convective snowfall rate +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 219 ; + } +#Large scale snowfall rate +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 220 ; + } +#Snow depth water equivalent +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 221 ; + } +#Snow evaporation +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 222 ; + } +#Total column integrated water vapour +'kg/m2' = { + table2Version = 135 ; + indicatorOfParameter = 223 ; + } +#Rain precipitation rate +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 224 ; + } +#Snow precipitation rate +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 225 ; + } +#Freezing rain precipitation rate +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 226 ; + } +#Ice pellets precipitation rate +'kg/m2/s' = { + table2Version = 135 ; + indicatorOfParameter = 227 ; + } +#Specific cloud liquid water content +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 228 ; + } +#Specific cloud ice water content +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 229 ; + } +#Specific rain water content +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 230 ; + } +#Specific snow water content +'kg/kg' = { + table2Version = 135 ; + indicatorOfParameter = 231 ; + } +#u-component of wind (gust) +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 232 ; + } +#v-component of wind (gust) +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 233 ; + } +#Vertical speed shear +'1/s' = { + table2Version = 135 ; + indicatorOfParameter = 234 ; + } +#Horizontal momentum flux +'N/m2' = { + table2Version = 135 ; + indicatorOfParameter = 235 ; + } +#u-component storm motion +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 236 ; + } +#v-component storm motion +'m/s' = { + table2Version = 135 ; + indicatorOfParameter = 237 ; + } +#Drag coefficient +'Numeric' = { + table2Version = 135 ; + indicatorOfParameter = 238 ; + } +#Eta coordinate vertical velocity +'1/s' = { + table2Version = 135 ; + indicatorOfParameter = 239 ; + } +#Altimeter setting +'Pa' = { + table2Version = 135 ; + indicatorOfParameter = 240 ; + } +#Thickness +'m' = { + table2Version = 135 ; + indicatorOfParameter = 241 ; + } +#Pressure altitude +'m' = { + table2Version = 135 ; + indicatorOfParameter = 242 ; + } +#Density altitude +'m' = { + table2Version = 135 ; + indicatorOfParameter = 243 ; + } +#5-wave geopotential height +'gpm' = { + table2Version = 135 ; + indicatorOfParameter = 244 ; + } +#Zonal flux of gravity wave stress +'N/m2' = { + table2Version = 135 ; + indicatorOfParameter = 245 ; + } +#Meridional flux of gravity wave stress +'N/m2' = { + table2Version = 135 ; + indicatorOfParameter = 246 ; + } +#Planetary boundary layer height +'m' = { + table2Version = 135 ; + indicatorOfParameter = 247 ; + } +#5-wave geopotential height anomaly +'gpm' = { + table2Version = 135 ; + indicatorOfParameter = 248 ; + } +#Standard deviation of sub-gridscale orography +'m' = { + table2Version = 135 ; + indicatorOfParameter = 249 ; + } +#Angle of sub-gridscale orography +'rad' = { + table2Version = 135 ; + indicatorOfParameter = 250 ; + } +#Slope of sub-gridscale orography +'Numeric' = { + table2Version = 135 ; + indicatorOfParameter = 251 ; + } +#Gravity wave dissipation +'W/m2' = { + table2Version = 135 ; + indicatorOfParameter = 252 ; + } +#Anisotropy of sub-gridscale orography +'Numeric' = { + table2Version = 135 ; + indicatorOfParameter = 253 ; + } +#Natural logarithm of pressure in Pa +'Numeric' = { + table2Version = 135 ; + indicatorOfParameter = 254 ; + } +#Missing +'Missing' = { + table2Version = 135 ; + indicatorOfParameter = 255 ; + } +############### table2Version 136 ############ +############### Strang ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 136 ; + indicatorOfParameter = 0 ; + } +#Pressure +'Pa' = { + table2Version = 136 ; + indicatorOfParameter = 1 ; + } +#Temperature +'K' = { + table2Version = 136 ; + indicatorOfParameter = 11 ; + } +#Specific humidity +'kg/kg' = { + table2Version = 136 ; + indicatorOfParameter = 51 ; + } +#Precipitable water +'kg/m2' = { + table2Version = 136 ; + indicatorOfParameter = 54 ; + } +#Snow depth +'m' = { + table2Version = 136 ; + indicatorOfParameter = 66 ; + } +#Total cloud cover +'fraction' = { + table2Version = 136 ; + indicatorOfParameter = 71 ; + } +#Low cloud cover +'fraction' = { + table2Version = 136 ; + indicatorOfParameter = 73 ; + } +#Probability for significant cloud base +'fraction' = { + table2Version = 136 ; + indicatorOfParameter = 77 ; + } +#Significant cloud base +'m' = { + table2Version = 136 ; + indicatorOfParameter = 78 ; + } +#Significant cloud top +'m' = { + table2Version = 136 ; + indicatorOfParameter = 79 ; + } +#Albedo (lev 0=global radiation lev 1=UV radiation) +'fraction' = { + table2Version = 136 ; + indicatorOfParameter = 84 ; + } +#Ice concentration +'fraction' = { + table2Version = 136 ; + indicatorOfParameter = 91 ; + } +#CIE-weighted UV irradiance +'mW/m2' = { + table2Version = 136 ; + indicatorOfParameter = 116 ; + } +#Global irradiance +'W/m2' = { + table2Version = 136 ; + indicatorOfParameter = 117 ; + } +#Beam normal irradiance +'W/m2' = { + table2Version = 136 ; + indicatorOfParameter = 118 ; + } +#Sunshine duration +'min' = { + table2Version = 136 ; + indicatorOfParameter = 119 ; + } +#PAR +'W/m2' = { + table2Version = 136 ; + indicatorOfParameter = 120 ; + } +#Accumulated precipitation, 1 hours +'mm' = { + table2Version = 136 ; + indicatorOfParameter = 165 ; + } +#Accumulated fresh snow, 1 hours +'cm' = { + table2Version = 136 ; + indicatorOfParameter = 175 ; + } +#Total ozone +'Atm cm' = { + table2Version = 136 ; + indicatorOfParameter = 206 ; + } +#Missing +'Missing' = { + table2Version = 136 ; + indicatorOfParameter = 255 ; + } +############### table2Version 137 ############ +############### Match ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 137 ; + indicatorOfParameter = 0 ; + } +#Concentration of SOX, excluding seasalt, in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 1 ; + } +#Drydeposition of SOX, excluding seasalt, mixed gound +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 2 ; + } +#Drydeposition of SOX, excluding seasalt, Pasture +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 3 ; + } +#Drydeposition of SOX, excluding seasalt, Arable +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 4 ; + } +#Drydeposition of SOX, excluding seasalt, Beach Oak +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 5 ; + } +#Drydeposition of SOX, excluding seasalt, Deciduous +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 6 ; + } +#Drydeposition of SOX, excluding seasalt, Spruce +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 7 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 10 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 11 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 12 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 13 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 14 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 15 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 16 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 17 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 20 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 21 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 22 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 23 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 24 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 25 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 26 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 27 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 30 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 31 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 32 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 33 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 34 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 35 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 36 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 37 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 40 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 41 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 42 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 43 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 44 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 45 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 46 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 47 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 50 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 51 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 52 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 53 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 54 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 55 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 56 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 57 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 60 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 61 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 62 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 63 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 64 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 65 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 66 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 67 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 70 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 71 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 72 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 73 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 74 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 75 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 76 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 77 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 100 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 101 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 102 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 103 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 104 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 105 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 106 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 107 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 110 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 111 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 112 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 113 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 114 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 115 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 116 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 117 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 120 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 121 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 122 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 123 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 124 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 125 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 126 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 127 ; + } +#Drydeposition of SOX, excluding seasalt, Pine +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 130 ; + } +#Drydeposition of SOX, excluding seasalt, Wetland +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 131 ; + } +#Drydeposition of SOX, excluding seasalt, Mountain +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 132 ; + } +#Drydeposition of SOX, excluding seasalt, Urban +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 133 ; + } +#Drydeposition of SOX, excluding seasalt, Water +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 134 ; + } +#Wetdeposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 135 ; + } +#Total deposition of SOX, excluding seasalt +'mg S/m**2' = { + table2Version = 137 ; + indicatorOfParameter = 136 ; + } +#Concentration of SOX in air +'ug/m**3' = { + table2Version = 137 ; + indicatorOfParameter = 137 ; + } +#Missing +'Missing' = { + table2Version = 137 ; + indicatorOfParameter = 255 ; + } +############### table2Version 140 ############ +############### Blixtlokalisering ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 140 ; + indicatorOfParameter = 0 ; + } +#Cloud to ground discharge count +'count' = { + table2Version = 140 ; + indicatorOfParameter = 1 ; + } +#Cloud to cloud discharge count +'count' = { + table2Version = 140 ; + indicatorOfParameter = 2 ; + } +#Total discharge count +'count' = { + table2Version = 140 ; + indicatorOfParameter = 3 ; + } +#Cloud to ground accumulated absolute peek current +'kA' = { + table2Version = 140 ; + indicatorOfParameter = 4 ; + } +#Cloud to cloud accumulated absolute peek current +'kA' = { + table2Version = 140 ; + indicatorOfParameter = 5 ; + } +#Total accumulated absolute peek current +'kA' = { + table2Version = 140 ; + indicatorOfParameter = 6 ; + } +#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) +'count' = { + table2Version = 140 ; + indicatorOfParameter = 7 ; + } +#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) +'count' = { + table2Version = 140 ; + indicatorOfParameter = 8 ; + } +#Significant total discharge count (discharges with absolute peek current above 100kA) +'count' = { + table2Version = 140 ; + indicatorOfParameter = 9 ; + } +#Missing +'Missing' = { + table2Version = 140 ; + indicatorOfParameter = 255 ; + } +############### table2Version 150 ############ +############### Hirlam postpr ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 150 ; + indicatorOfParameter = 0 ; + } +#Evaporation Penman formula +'mm' = { + table2Version = 150 ; + indicatorOfParameter = 57 ; + } +#Spray weather recomendation +'index' = { + table2Version = 150 ; + indicatorOfParameter = 58 ; + } +#Missing +'Missing' = { + table2Version = 150 ; + indicatorOfParameter = 255 ; + } +############### table2Version 151 ############ +############### PMP postpr ############ +################################################# +#Reserved +'Reserved' = { + table2Version = 151 ; + indicatorOfParameter = 0 ; + } +#Probability total precipitation between 1 and 10 mm +'%' = { + table2Version = 151 ; + indicatorOfParameter = 1 ; + } +#Probability total precipitation between 10 and 50 mm +'%' = { + table2Version = 151 ; + indicatorOfParameter = 2 ; + } +#Probability total precipitation more than 50 mm +'%' = { + table2Version = 151 ; + indicatorOfParameter = 3 ; + } +#Evaporation Penman formula +'mm' = { + table2Version = 151 ; + indicatorOfParameter = 57 ; + } +#Missing +'Missing' = { + table2Version = 151 ; + indicatorOfParameter = 255 ; + } +### HARMONIE tables ### +#Absolute divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 42 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 41 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 63 ; + } +#Surface aerosol soot (carbon) +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 253 ; + } +#Surface aerosol desert +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 254 ; + } +#Surface aerosol land +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 252 ; + } +#Surface aerosol sea +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 251 ; + } +#Albedo +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 84 ; + } +#Albedo of bare ground +'-' = { + table2Version = 253 ; + indicatorOfParameter = 229 ; + } +#Albedo of vegetation +'-' = { + table2Version = 253 ; + indicatorOfParameter = 230 ; + } +#A Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 248 ; + } +#Analysed RMS of PHI (CANARI) +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 128 ; + } +#Snow albedo +'(0-1)' = { + table2Version = 253 ; + indicatorOfParameter = 190 ; + } +#Anisotropy coeff of topography +'rad' = { + table2Version = 253 ; + indicatorOfParameter = 221 ; + } +#Boundary layer dissipation +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 123 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 77 ; + } +#B Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 249 ; + } +#Brightness temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 118 ; + } +#CAPE out of the model +'J kg-1 ' = { + table2Version = 253 ; + indicatorOfParameter = 160 ; + } +#Cloud base +'m' = { + table2Version = 253 ; + indicatorOfParameter = 186 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 72 ; + } +#Cloud ice water content +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 58 ; + } +#Fraction of clay within soil +'-' = { + table2Version = 253 ; + indicatorOfParameter = 225 ; + } +#C Ozone +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 250 ; + } +#Convective rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 183 ; + } +#Convective snowfall +'m of water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 78 ; + } +#LW net clear sky rad +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 131 ; + } +#SW net clear sky rad +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 130 ; + } +#Cloud top +'m' = { + table2Version = 253 ; + indicatorOfParameter = 187 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 76 ; + } +#Divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 44 ; + } +#Density +'kg m**-3' = { + table2Version = 253 ; + indicatorOfParameter = 89 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 18 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 93 ; + } +#Direction of current +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 47 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 109 ; + } +#Downdraft mesh fraction +'-' = { + table2Version = 253 ; + indicatorOfParameter = 217 ; + } +#Downdraft omega +'ms*-1' = { + table2Version = 253 ; + indicatorOfParameter = 215 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 253 ; + indicatorOfParameter = 82 ; + } +#Direction of main axis of topography +'-' = { + table2Version = 253 ; + indicatorOfParameter = 222 ; + } +#Duration of total precipitation +'s' = { + table2Version = 253 ; + indicatorOfParameter = 243 ; + } +#Dominant vegetation index +'-' = { + table2Version = 253 ; + indicatorOfParameter = 234 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 57 ; + } +#Gust +'m s*-1' = { + table2Version = 253 ; + indicatorOfParameter = 228 ; + } +#Forecast RMS of PHI (CANARI) +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 129 ; + } +#Fraction of urban land +'%' = { + table2Version = 253 ; + indicatorOfParameter = 188 ; + } +#Geopotential Height +'gpm' = { + table2Version = 253 ; + indicatorOfParameter = 7 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 253 ; + indicatorOfParameter = 27 ; + } +#Global radiation flux +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 117 ; + } +#Graupel +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 201 ; + } +#Gravity wave stress U-comp +'kg m**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 195 ; + } +#Gravity wave stress V-comp +'kg m**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 196 ; + } +#Geometrical height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 8 ; + } +#Hail +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 204 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 75 ; + } +#Standard deviation of height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 9 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 253 ; + indicatorOfParameter = 5 ; + } +#Ice cover (1=land, 0=sea) +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 91 ; + } +#Ice divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 98 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 97 ; + } +#Icing index +'-' = { + table2Version = 253 ; + indicatorOfParameter = 135 ; + } +#Ice thickness +'m' = { + table2Version = 253 ; + indicatorOfParameter = 92 ; + } +#Image data +'~' = { + table2Version = 253 ; + indicatorOfParameter = 127 ; + } +#Leaf area index +'m**2 m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 232 ; + } +#Lapse rate +'K s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 19 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 73 ; + } +#Lightning +'-' = { + table2Version = 253 ; + indicatorOfParameter = 209 ; + } +#Latent heat flux through evaporation +'W m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 132 ; + } +#Latent Heat Sublimation +'J kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 244 ; + } +#Large-scale snowfall +'m of water equivalent' = { + table2Version = 253 ; + indicatorOfParameter = 79 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 81 ; + } +#large scale precipitation (water) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 62 ; + } +#Long wave radiation flux +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 115 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 253 ; + indicatorOfParameter = 119 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 74 ; + } +#MOCON out of the model +'kg kg**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 166 ; + } +#Mean direction of primary swell +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 107 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 101 ; + } +#Humidity mixing ratio +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 53 ; + } +#Mixed layer depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 67 ; + } +#Montgomery stream Function +'m**2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 37 ; + } +#Mean period of primary swell +'s' = { + table2Version = 253 ; + indicatorOfParameter = 108 ; + } +#Mean period of wind waves +'s' = { + table2Version = 253 ; + indicatorOfParameter = 103 ; + } +#Surface downward moon radiation +'-' = { + table2Version = 253 ; + indicatorOfParameter = 158 ; + } +#Mask of significant cloud amount +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 133 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 2 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 253 ; + indicatorOfParameter = 70 ; + } +#Main thermocline depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 69 ; + } +#Net long-wave radiation flux (surface) +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 112 ; + } +#Net long-wave radiation flux(atmosph.top) +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 114 ; + } +#Net short-wave radiation flux (surface) +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 111 ; + } +#Net short-wave radiationflux(atmosph.top) +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 113 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 14 ; + } +#Pressure departure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 212 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 253 ; + indicatorOfParameter = 24 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 59 ; + } +#Pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 1 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 26 ; + } +#Precipitation Type +'-' = { + table2Version = 253 ; + indicatorOfParameter = 144 ; + } +#Pseudo satellite image: cloud top temperature (infrared) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 136 ; + } +#Pseudo satellite image: cloud water reflectivity (visible) +'-' = { + table2Version = 253 ; + indicatorOfParameter = 139 ; + } +#Pseudo satellite image: water vapour Tb +'-' = { + table2Version = 253 ; + indicatorOfParameter = 137 ; + } +#Pseudo satellite image: water vapour Tb + correction for clouds +'-' = { + table2Version = 253 ; + indicatorOfParameter = 138 ; + } +#Potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 13 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 3 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 4 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 54 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'%' = { + table2Version = 253 ; + indicatorOfParameter = 52 ; + } +#Rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 181 ; + } +#Radar spectra (3) +'~' = { + table2Version = 253 ; + indicatorOfParameter = 23 ; + } +#Simulated reflectivity +'dBz ?' = { + table2Version = 253 ; + indicatorOfParameter = 210 ; + } +#Resistance to evapotransiration +'s m**-1' = { + table2Version = 253 ; + indicatorOfParameter = 240 ; + } +#Minimum relative moisture at 2 meters +'-' = { + table2Version = 253 ; + indicatorOfParameter = 241 ; + } +#Maximum relative moisture at 2 meters +'-' = { + table2Version = 253 ; + indicatorOfParameter = 242 ; + } +#Runoff +'m' = { + table2Version = 253 ; + indicatorOfParameter = 90 ; + } +#Snow density +'kg m**-3' = { + table2Version = 253 ; + indicatorOfParameter = 191 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 88 ; + } +#Saturation deficit +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 56 ; + } +#Snow depth water equivalent +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 66 ; + } +#Surface emissivity +'-' = { + table2Version = 253 ; + indicatorOfParameter = 235 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 65 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 38 ; + } +#Snow history +'???' = { + table2Version = 253 ; + indicatorOfParameter = 247 ; + } +#Significant height of wind waves +'m' = { + table2Version = 253 ; + indicatorOfParameter = 102 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 94 ; + } +#Soil depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 237 ; + } +#Fraction of sand within soil +'-' = { + table2Version = 253 ; + indicatorOfParameter = 226 ; + } +#Surface latent heat flux +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 121 ; + } +#Soil Temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 85 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 253 ; + indicatorOfParameter = 86 ; + } +#Stomatal minimum resistance +'s m**-1' = { + table2Version = 253 ; + indicatorOfParameter = 231 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 99 ; + } +#Snow +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 184 ; + } +#Snow Sublimation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 246 ; + } +#Speed of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 48 ; + } +#Stratiform rain +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 182 ; + } +#Surface roughness * g +'m' = { + table2Version = 253 ; + indicatorOfParameter = 83 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 64 ; + } +#Surface sensible heat flux +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 122 ; + } +#Standard deviation of orography * g +'m**2s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 220 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 35 ; + } +#Short wave radiation flux +'J m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 116 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 253 ; + indicatorOfParameter = 105 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 253 ; + indicatorOfParameter = 100 ; + } +#Secondary wave period +'s' = { + table2Version = 253 ; + indicatorOfParameter = 110 ; + } +#Mean period of swell waves +'s' = { + table2Version = 253 ; + indicatorOfParameter = 106 ; + } +#Radiance (with respect to wave length) +'W m**-1 sr**-1' = { + table2Version = 253 ; + indicatorOfParameter = 120 ; + } +#Soil wetness +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 238 ; + } +#Temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 11 ; + } +#Temperature anomaly +'K' = { + table2Version = 253 ; + indicatorOfParameter = 25 ; + } +#Total Cloud Cover +'%' = { + table2Version = 253 ; + indicatorOfParameter = 71 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 10 ; + } +#Dew point temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 17 ; + } +#TKE +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 200 ; + } +#Maximum temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 16 ; + } +#Total water vapour +'kg kg**-1' = { + table2Version = 253 ; + indicatorOfParameter = 167 ; + } +#Total precipitation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 61 ; + } +#Total solid precipitation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 185 ; + } +#Thunderstorm probability +'%' = { + table2Version = 253 ; + indicatorOfParameter = 60 ; + } +#Transient thermocline depth +'m' = { + table2Version = 253 ; + indicatorOfParameter = 68 ; + } +#Vertical velocity +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 40 ; + } +#U component of wind +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 33 ; + } +#U-component of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 49 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 124 ; + } +#Gust, u-component +'m s*-1' = { + table2Version = 253 ; + indicatorOfParameter = 162 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 95 ; + } +#Updraft mesh fraction +'-' = { + table2Version = 253 ; + indicatorOfParameter = 216 ; + } +#Updraft omega +'ms*-1' = { + table2Version = 253 ; + indicatorOfParameter = 214 ; + } +#V component of wind +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 34 ; + } +#V-component of current +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 50 ; + } +#Vertical Divergence +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 213 ; + } +#Vegetation fraction +'(0 - 1)' = { + table2Version = 253 ; + indicatorOfParameter = 87 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 125 ; + } +#Gust, v-component +'m s*-1' = { + table2Version = 253 ; + indicatorOfParameter = 163 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 96 ; + } +#Visibility +'m' = { + table2Version = 253 ; + indicatorOfParameter = 20 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 43 ; + } +#Vapour pressure +'Pa' = { + table2Version = 253 ; + indicatorOfParameter = 55 ; + } +#Virtual potential temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 12 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 46 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 39 ; + } +#Water on canopy (Interception content) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 192 ; + } +#Water on canopy (Interception content) +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 193 ; + } +#Wind direction +'Degree true' = { + table2Version = 253 ; + indicatorOfParameter = 31 ; + } +#Water evaporation +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 245 ; + } +#Wind mixing energy +'J' = { + table2Version = 253 ; + indicatorOfParameter = 126 ; + } +#Wind speed +'m s**-1' = { + table2Version = 253 ; + indicatorOfParameter = 32 ; + } +#Water temperature +'K' = { + table2Version = 253 ; + indicatorOfParameter = 80 ; + } +#Wave spectra (3) +'~' = { + table2Version = 253 ; + indicatorOfParameter = 30 ; + } +#AROME hail diagnostic +'kg m**-2' = { + table2Version = 253 ; + indicatorOfParameter = 161 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 253 ; + indicatorOfParameter = 6 ; + } +#Thermal roughness length * g +'m' = { + table2Version = 253 ; + indicatorOfParameter = 239 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/name.def b/eccodes/definitions/grib1/localConcepts/kwbc/name.def new file mode 100644 index 00000000..a49d4245 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/kwbc/name.def @@ -0,0 +1,2 @@ +'Snow Depth' = { table2Version=128; indicatorOfParameter =141; } +'V-component of ice drift' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/paramId.def b/eccodes/definitions/grib1/localConcepts/kwbc/paramId.def new file mode 100644 index 00000000..ce22a009 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/kwbc/paramId.def @@ -0,0 +1,2 @@ +'260056' = { table2Version=128; indicatorOfParameter =141; } +'3096' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/shortName.def b/eccodes/definitions/grib1/localConcepts/kwbc/shortName.def new file mode 100644 index 00000000..0089a582 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/kwbc/shortName.def @@ -0,0 +1,2 @@ +'sd' = { table2Version=128; indicatorOfParameter =141; } +'vice' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/units.def b/eccodes/definitions/grib1/localConcepts/kwbc/units.def new file mode 100644 index 00000000..a7171201 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/kwbc/units.def @@ -0,0 +1,2 @@ +'m of water equivalent' = { table2Version=128; indicatorOfParameter =141; } +'m s**-1' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def b/eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def new file mode 100644 index 00000000..1a579592 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def @@ -0,0 +1,572 @@ +'CLPMHAUT.MOD.XFU' = { + indicatorOfParameter = 165; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLPMOCON.MOD.XFU' = { + indicatorOfParameter = 166; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSHUMI.RELATIVE' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 52; + indicatorOfTypeOfLevel = 105; + level = 2; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSMAXI.TEMPERAT' = { + indicatorOfParameter = 15; + indicatorOfTypeOfLevel = 105; + level = 2; + table2Version = 1; + timeRangeIndicator = 2; +} +'CLSMINI.TEMPERAT' = { + indicatorOfParameter = 16; + indicatorOfTypeOfLevel = 105; + level = 2; + table2Version = 1; + timeRangeIndicator = 2; +} +'CLSTEMPERATURE' = { + indicatorOfParameter = 11; + indicatorOfTypeOfLevel = 105; + level = 2; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSU.RAF.MOD.XFU' = { + indicatorOfParameter = 163; + indicatorOfTypeOfLevel = 105; + level = 10; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSVENT.MERIDIEN' = { + indicatorOfParameter = 34; + indicatorOfTypeOfLevel = 105; + level = 10; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSVENT.ZONAL' = { + indicatorOfParameter = 33; + indicatorOfTypeOfLevel = 105; + level = 10; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLSV.RAF.MOD.XFU' = { + indicatorOfParameter = 164; + indicatorOfTypeOfLevel = 105; + level = 10; + table2Version = 1; + timeRangeIndicator = 0; +} +'CLOUD_FRAC' = { + indicatorOfParameter = 36; + table2Version = 159; + timeRangeIndicator = 0; +} +'HUMI_RELAT' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 52; + table2Version = 1; + timeRangeIndicator = 0; +} +'PRESSURE' = { + indicatorOfParameter = 1; + table2Version = 1; + timeRangeIndicator = 0; +} +'RAD_LIQUID' = { + indicatorOfParameter = 32; + table2Version = 159; + timeRangeIndicator = 0; +} +'RAD_SOLID_' = { + indicatorOfParameter = 247; + table2Version = 128; + timeRangeIndicator = 0; +} +'TEMPERATUR' = { + indicatorOfParameter = 11; + table2Version = 1; + timeRangeIndicator = 0; +} +'TKE' = { + indicatorOfParameter = 37; + table2Version = 159; + timeRangeIndicator = 0; +} +'VENT_MERID' = { + indicatorOfParameter = 34; + table2Version = 1; + timeRangeIndicator = 0; +} +'VENT_ZONAL' = { + indicatorOfParameter = 33; + table2Version = 1; + timeRangeIndicator = 0; +} +'ISOT_ALTIT' = { + indicatorOfParameter = 8; + table2Version = 128; + timeRangeIndicator = 0; +} +'MSLPRESSURE' = { + indicatorOfParameter = 2; + indicatorOfTypeOfLevel = 102; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'ABS_VORTIC' = { + indicatorOfParameter = 41; + table2Version = 1; + timeRangeIndicator = 0; +} +'GEOPOTENTI' = { + indicatorOfParameter = 6; + table2Version = 1; + timeRangeIndicator = 0; +} +'POT_VORTIC' = { + indicatorOfParameter = 4; + table2Version = 1; + timeRangeIndicator = 0; +} +'THETA_PRIM' = { + indicatorOfParameter = 14; + table2Version = 1; + timeRangeIndicator = 0; +} +'VITESSE_VE' = { + indicatorOfParameter = 39; + table2Version = 1; + timeRangeIndicator = 0; +} +'DIVERGENCE' = { + indicatorOfParameter = 44; + table2Version = 1; + timeRangeIndicator = 0; +} +'PROFRESERV.EAU' = { + bottomLevel = 250; + indicatorOfParameter = 153; + indicatorOfTypeOfLevel = 112; + table2Version = 1; + timeRangeIndicator = 0; + topLevel = 0; +} +'PROFRESERV.GLACE' = { + bottomLevel = 250; + indicatorOfParameter = 152; + indicatorOfTypeOfLevel = 112; + table2Version = 1; + timeRangeIndicator = 0; + topLevel = 0; +} +'PROFTEMPERATURE' = { + indicatorOfParameter = 11; + indicatorOfTypeOfLevel = 111; + level = 10; + table2Version = 1; + timeRangeIndicator = 0; +} +'SOMMFLU.RAY.SOLA' = { + LSTCUM = 1; + indicatorOfParameter = 113; + indicatorOfTypeOfLevel = 8; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SOMMFLU.RAY.THER' = { + LSTCUM = 1; + indicatorOfParameter = 114; + indicatorOfTypeOfLevel = 8; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFCAPE.MOD.XFU' = { + indicatorOfParameter = 154; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 159; + timeRangeIndicator = 0; +} +'SURFCAPE.POS.F00' = { + indicatorOfParameter = 160; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFFLU.CHA.SENS' = { + LSTCUM = 1; + indicatorOfParameter = 122; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFFLU.LAT.MTOT' = { + LSTCUM = 1; + indicatorOfParameter = 121; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFFLU.MTOTA.NE' = { + LSTCUM = 1; + indicatorOfParameter = 57; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFFLU.RAY.SOLA' = { + LSTCUM = 1; + indicatorOfParameter = 111; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFFLU.RAY.THER' = { + LSTCUM = 1; + indicatorOfParameter = 112; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFISOTPW0.MALT' = { + indicatorOfParameter = 8; + indicatorOfTypeOfLevel = 20; + level = 27315; + table2Version = 128; + timeRangeIndicator = 0; +} +'SURFNEBUL.BASSE' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 73; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFNEBUL.CONVEC' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 72; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFNEBUL.HAUTE' = { + indicatorOfParameter = 75; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFNEBUL.MOYENN' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 74; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFNEBUL.TOTALE' = { + FMULTM = 1; + FMULTE = 2; + indicatorOfParameter = 71; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFPREC.EAU.CON' = { + LSTCUM = 1; + indicatorOfParameter = 63; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFPREC.EAU.GEC' = { + LSTCUM = 1; + indicatorOfParameter = 62; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFPREC.NEI.CON' = { + LSTCUM = 1; + indicatorOfParameter = 78; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFPREC.NEI.GEC' = { + LSTCUM = 1; + indicatorOfParameter = 79; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFPRESSION' = { + indicatorOfParameter = 1; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFRAYT.LUNE.DE' = { + LSTCUM = 1; + indicatorOfParameter = 158; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFRAYT_SOLA_DE' = { + LSTCUM = 1; + indicatorOfParameter = 105; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 149; + timeRangeIndicator = 4; +} +'SURFRAYT_SOL_CL' = { + LSTCUM = 1; + indicatorOfParameter = 168; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFRAYT_THER_CL' = { + LSTCUM = 1; + indicatorOfParameter = 169; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'SURFRAYT_THER_DE' = { + LSTCUM = 1; + indicatorOfParameter = 104; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 149; + timeRangeIndicator = 4; +} +'SURFRESERV.EAU' = { + bottomLevel = 1; + indicatorOfParameter = 153; + indicatorOfTypeOfLevel = 112; + table2Version = 1; + timeRangeIndicator = 0; + topLevel = 0; +} +'SURFRESERV.GLACE' = { + bottomLevel = 1; + indicatorOfParameter = 152; + indicatorOfTypeOfLevel = 112; + table2Version = 1; + timeRangeIndicator = 0; + topLevel = 0; +} +'SURFRESERV.NEIGE' = { + indicatorOfParameter = 65; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFTEMPERATURE' = { + indicatorOfParameter = 11; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFTENS.TOTA.ME' = { + LSTCUM = 1; + indicatorOfParameter = 131; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFTENS.TOTA.ZO' = { + LSTCUM = 1; + indicatorOfParameter = 130; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFTOT.WAT.VAPO' = { + indicatorOfParameter = 167; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 0; +} +'ABS_VORTICIT' = { + indicatorOfParameter = 41; + table2Version = 1; + timeRangeIndicator = 0; +} +'GEOPOTENTIEL' = { + indicatorOfParameter = 6; + table2Version = 1; + timeRangeIndicator = 0; +} +'TEMPE_POTENT' = { + indicatorOfParameter = 13; + table2Version = 1; + timeRangeIndicator = 0; +} +'VENT_MERIDIE' = { + indicatorOfParameter = 34; + table2Version = 1; + timeRangeIndicator = 0; +} +'C002_METEOSAT_09' = { + indicatorOfParameter = 1; + indicatorOfTypeOfLevel = 100; + level = 62; + table2Version = 129; + timeRangeIndicator = 0; +} +'C006_METEOSAT_09' = { + indicatorOfParameter = 1; + indicatorOfTypeOfLevel = 100; + level = 108; + table2Version = 129; + timeRangeIndicator = 0; +} +'EDR' = { + indicatorOfParameter = 135; + table2Version = 128; + timeRangeIndicator = 0; +} +'SURFISOTPW1.MALT' = { + indicatorOfParameter = 8; + indicatorOfTypeOfLevel = 20; + level = 27315; + table2Version = 128; + timeRangeIndicator = 0; +} +'SURFACCGRAUPEL' = { + LSTCUM = 1; + indicatorOfParameter = 29; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 159; + timeRangeIndicator = 4; +} +'SURFACCNEIGE' = { + LSTCUM = 1; + indicatorOfParameter = 99; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 1; + timeRangeIndicator = 4; +} +'SURFACCPLUIE' = { + LSTCUM = 1; + indicatorOfParameter = 150; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 2; + timeRangeIndicator = 4; +} +'SURFDIAGHAIL' = { + indicatorOfParameter = 248; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 159; + timeRangeIndicator = 0; +} +'SURFREFLECT.MAX' = { + indicatorOfParameter = 217; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 159; + timeRangeIndicator = 0; +} +'CLOUD_WATE' = { + indicatorOfParameter = 32; + table2Version = 159; + timeRangeIndicator = 0; +} +'GRAUPEL' = { + indicatorOfParameter = 35; + table2Version = 159; + timeRangeIndicator = 0; +} +'ICE_CRYSTA' = { + indicatorOfParameter = 247; + table2Version = 128; + timeRangeIndicator = 0; +} +'RAIN' = { + indicatorOfParameter = 33; + table2Version = 159; + timeRangeIndicator = 0; +} +'SNOW' = { + indicatorOfParameter = 34; + table2Version = 159; + timeRangeIndicator = 0; +} +'SIM_REFLEC' = { + indicatorOfParameter = 31; + table2Version = 159; + timeRangeIndicator = 0; +} +'THETA_VIRT' = { + indicatorOfParameter = 38; + table2Version = 159; + timeRangeIndicator = 0; +} +'VERT.VELOC' = { + indicatorOfParameter = 40; + table2Version = 1; + timeRangeIndicator = 0; +} +'SURFRAYT_DIR_SUR' = { + LSTCUM = 1; + indicatorOfParameter = 137; + indicatorOfTypeOfLevel = 1; + level = 0; + table2Version = 128; + timeRangeIndicator = 4; +} +'default' = { + indicatorOfParameter = 255; + table2Version = 255; +} diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def b/eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def new file mode 100644 index 00000000..8abf7e84 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def @@ -0,0 +1,36 @@ +'H' = { + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 105; + table2Version = 255; +} +'P' = { + ZLMULT = 1.0000000e-02; + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 100; + table2Version = 255; +} +'V' = { + ZLMULT = 1.0000000e+02; + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 117; + table2Version = 255; +} +'KT' = { + ZLBASE = 1.5000000e+01; + ZLMULT = 1.0000000e+02; + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 115; + table2Version = 255; +} +'KB' = { + ZLBASE = 1.5000000e+01; + ZLMULT = 1.0000000e+02; + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 115; + table2Version = 255; +} +'default' = { + indicatorOfParameter = 255; + indicatorOfTypeOfLevel = 255; + table2Version = 255; +} diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def b/eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def new file mode 100644 index 00000000..31b9ed02 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def @@ -0,0 +1,9 @@ +'arpege-france-oper-forecast-production' = { generatingProcessIdentifier = 211; } +'arpege-france-oper-forecast-assim' = { generatingProcessIdentifier = 12; } +'arpege-france-dble-forecast-production' = { generatingProcessIdentifier = 212; } +'arpege-france-dble-forecast-assim' = { generatingProcessIdentifier = 22; } +'arome-france-oper-6' = { generatingProcessIdentifier = 204; } +'arome-france-oper-1' = { generatingProcessIdentifier = 213; } +'arome-france-dble-6' = { generatingProcessIdentifier = 209; } +'arome-france-dble-1' = { generatingProcessIdentifier = 210; } +'default' = { generatingProcessIdentifier = 255; } diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/name.def b/eccodes/definitions/grib1/localConcepts/lfpw/name.def new file mode 100644 index 00000000..06aa4274 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/name.def @@ -0,0 +1,18 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total convective Precipitation +'Total convective Precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 156 ; + stepType = "accum" ; + } +#Total large scale precipitation +'Total large scale precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 157 ; + stepType = "accum" ; + } +#Convective Available Potential Energy instantaneous +'Convective Available Potential Energy instantaneous' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/paramId.def b/eccodes/definitions/grib1/localConcepts/lfpw/paramId.def new file mode 100644 index 00000000..d127e96e --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/paramId.def @@ -0,0 +1,18 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total convective Precipitation +'85001156' = { + table2Version = 1 ; + indicatorOfParameter = 156 ; + stepType = "accum" ; + } +#Total large scale precipitation +'85001157' = { + table2Version = 1 ; + indicatorOfParameter = 157 ; + stepType = "accum" ; + } +#Convective Available Potential Energy instantaneous +'85001160' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/shortName.def b/eccodes/definitions/grib1/localConcepts/lfpw/shortName.def new file mode 100644 index 00000000..7b4f9115 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/shortName.def @@ -0,0 +1,18 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total convective Precipitation +'PREC_CONVEC' = { + table2Version = 1 ; + indicatorOfParameter = 156 ; + stepType = "accum" ; + } +#Total large scale precipitation +'PREC_GDE_ECH' = { + table2Version = 1 ; + indicatorOfParameter = 157 ; + stepType = "accum" ; + } +#Convective Available Potential Energy instantaneous +'CAPE_INS' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/units.def b/eccodes/definitions/grib1/localConcepts/lfpw/units.def new file mode 100644 index 00000000..ba97e24d --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lfpw/units.def @@ -0,0 +1,18 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total convective Precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 156 ; + stepType = "accum" ; + } +#Total large scale precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 157 ; + stepType = "accum" ; + } +#Convective Available Potential Energy instantaneous +'m**2 s**-2' = { + table2Version = 1 ; + indicatorOfParameter = 160 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/lowm/name.def b/eccodes/definitions/grib1/localConcepts/lowm/name.def new file mode 100644 index 00000000..abdfa7b5 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lowm/name.def @@ -0,0 +1,66 @@ +#Provided by Florian Weidle (ZAMG/Austria) +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } +#Convective available potential energy +'Convective available potential energy' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#Convective inhibition +'Convective inhibition' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } +#Total Precipitation +'Total precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 208 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 201 ; + indicatorOfParameter = 168 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 201 ; + indicatorOfParameter = 167 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 201 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 201 ; + indicatorOfParameter = 166 ; + } +#10 metre wind gust +'10 metre wind gust' = { + table2Version = 201 ; + indicatorOfParameter = 206 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#Geopotential +'Geopotential' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/lowm/paramId.def b/eccodes/definitions/grib1/localConcepts/lowm/paramId.def new file mode 100644 index 00000000..00bad96d --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lowm/paramId.def @@ -0,0 +1,66 @@ +#Provided by Florian Weidle (ZAMG/Austria) +#Mean sea level pressure +'151' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } +#Convective available potential energy +'59' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#Convective inhibition +'228001' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } +#Total Precipitation +'228228' = { + table2Version = 201 ; + indicatorOfParameter = 208 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 201 ; + indicatorOfParameter = 168 ; + } +#2 metre temperature +'167' = { + table2Version = 201 ; + indicatorOfParameter = 167 ; + } +#10 metre U wind component +'165' = { + table2Version = 201 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'166' = { + table2Version = 201 ; + indicatorOfParameter = 166 ; + } +#10 metre wind gust +'228028' = { + table2Version = 201 ; + indicatorOfParameter = 206 ; + } +#Large-scale precipitation +'3062' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } +#Land-sea mask +'172' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#Geopotential +'129' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } +#Geopotential Height +'156' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/lowm/shortName.def b/eccodes/definitions/grib1/localConcepts/lowm/shortName.def new file mode 100644 index 00000000..dedf91e0 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lowm/shortName.def @@ -0,0 +1,66 @@ +#Provided by Florian Weidle (ZAMG/Austria) +#Mean sea level pressure +'msl' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } +#Convective available potential energy +'cape' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#Convective inhibition +'cin' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } +#Total Precipitation +'tp' = { + table2Version = 201 ; + indicatorOfParameter = 208 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 201 ; + indicatorOfParameter = 168 ; + } +#2 metre temperature +'2t' = { + table2Version = 201 ; + indicatorOfParameter = 167 ; + } +#10 metre U wind component +'10u' = { + table2Version = 201 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'10v' = { + table2Version = 201 ; + indicatorOfParameter = 166 ; + } +#10 metre wind gust +'gust' = { + table2Version = 201 ; + indicatorOfParameter = 206 ; + } +#Large-scale precipitation +'lsp' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } +#Land-sea mask +'lsm' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#Geopotential +'z' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } +#Geopotential Height +'gh' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/lowm/units.def b/eccodes/definitions/grib1/localConcepts/lowm/units.def new file mode 100644 index 00000000..11219466 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/lowm/units.def @@ -0,0 +1,66 @@ +#Provided by Florian Weidle (ZAMG/Austria) +#Mean sea level pressure +'Pa' = { + table2Version = 201 ; + indicatorOfParameter = 151 ; + } +#Convective available potential energy +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 238 ; + } +#Convective inhibition +'J kg**-1' = { + table2Version = 201 ; + indicatorOfParameter = 243 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 208 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 168 ; + } +#2 metre temperature +'K' = { + table2Version = 201 ; + indicatorOfParameter = 167 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 165 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 166 ; + } +#10 metre wind gust +'m s**-1' = { + table2Version = 201 ; + indicatorOfParameter = 206 ; + } +#Large-scale precipitation +'kg m**-2' = { + table2Version = 201 ; + indicatorOfParameter = 232 ; + } +#Land-sea mask +'Proportion' = { + table2Version = 201 ; + indicatorOfParameter = 81 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 201 ; + indicatorOfParameter = 235 ; + } +#Geopotential Height +'gpm' = { + table2Version = 201 ; + indicatorOfParameter = 233 ; + } diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def b/eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def new file mode 100644 index 00000000..d91932f9 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def @@ -0,0 +1,962 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'strf' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Sea ice area fraction +'ci' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Montgomery potential +'mont' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Pressure +'pres' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Total column cloud liquid water +'tclw' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total column cloud ice water +'tciw' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Geopotential +'z' = { + table2Version = 200 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 200 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'u10' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'v10' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + topLevel = 10 ; + } +#2 metre temperature +'t2m' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Brightness temperature +'btmp' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Snow depth +'sde' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 200 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 200 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 200 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 200 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#2 metre specific humidity +'sh2' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Convective snow +'snoc' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Maximum wind speed +'maxgust' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#Downward short-wave radiation flux +'dswrf' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Upward short-wave radiation flux +'uswrf' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Cloud water +'cwat' = { + table2Version = 200 ; + indicatorOfParameter = 76 ; + } +#Cloud work function +'cwork' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Total column integrated ozone +'tcioz' = { + table2Version = 200 ; + indicatorOfParameter = 10 ; + } +#Ground heat flux +'gflux' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#2 metre relative humidity +'r2' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Clear Sky Downward Solar Flux +'csdsf' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Clear Sky Upward Solar Flux +'csusf' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Clear Sky Upward Long Wave Flux +'csulf' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Clear Sky Downward Long Wave Flux +'csdlf' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Albedo +'al' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Mean evaporation +'evpsfc' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Mean total precipitation +'tpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Mean large scale precipitation +'lpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Mean convective precipitation +'cpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Mean snowfall rate water equivalent +'srweqsfc' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Mean surface water runoff +'rofsfc' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Square of Brunt-Vaisala frequency +'bvf2tht' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Adiabatic zonal acceleration +'aduahbl' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Adiabatic meridional acceleration +'advaprs' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#Mean frequency of deep convection +'frcvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Mean frequency of shallow convection +'frcvssfc' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Mean frequency of stratocumulus parameterisation +'frscsfc' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Gravity wave zonal acceleration +'gwduahbl' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Gravity wave meridional acceleration +'gwdvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Mean evapotranspiration +'ltrssfc' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Adiabatic heating rate +'adhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Moisture storage on canopy +'mscsfc' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Moisture storage on ground or cover +'msgsfc' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Mass concentration of condensed water in soil +'smcugl' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Upward mass flux at cloud base +'mflxbhbl' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Upward mass flux +'mfluxhbl' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Adiabatic moistening rate +'admrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Ozone mixing ratio +'ozonehbl' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Convective zonal acceleration +'cnvuahbl' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Mean zonal momentum flux by long gravity wave +'fglusfc' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Mean meridional momentum flux by long gravity wave +'fglvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Mean meridional momentum flux by short gravity wave +'fgsvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Mean zonal momentum flux by short gravity wave +'fgsusfc' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Convective meridional acceleration +'cnvvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Large scale condensation heating rate +'lrghrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Convective heating rate +'cnvhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Convective moistening rate +'cnvmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Vertical diffusion heating rate +'vdfhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Vertical diffusion zonal acceleration +'vdfuahbl' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Vertical diffusion meridional acceleration +'vdfvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Vertical diffusion moistening rate +'vdfmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Solar radiative heating rate +'swhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Long wave radiative heating rate +'lwhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Large scale moistening rate +'lrgmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Type of vegetation +'tovg' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#Vertical velocity +'omg2' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Interception loss +'pitp' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Soil wetness of surface +'ussl' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Temperature at canopy +'ctmp' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Ground/surface cover temperature +'tgsc' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Pressure tendency +'ptend' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'h' = { + table2Version = 200 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 200 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 200 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 200 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 200 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 200 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 200 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 200 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'absv' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Vapour pressure +'vp' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'prate' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Mixed layer depth +'mld' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 200 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'wtmp' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'ssw' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Salinity +'s' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Ice thickness +'icetk' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'mdps' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'mpps' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'nswrt' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 200 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Cloud liquid water +'clw' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#Vertical integral of northward heat flux +'vithen' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#specific cloud water content +'qc' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Soil Temperature +'st' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/name.def b/eccodes/definitions/grib1/localConcepts/rjtd/name.def new file mode 100644 index 00000000..bd139be7 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/name.def @@ -0,0 +1,962 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'Stream function' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'Wind speed' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Sea ice area fraction +'Sea ice area fraction' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Montgomery potential +'Montgomery potential' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Pressure +'Pressure' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Total column cloud liquid water +'Total column cloud liquid water' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total column cloud ice water +'Total column cloud ice water' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Geopotential +'Geopotential' = { + table2Version = 200 ; + indicatorOfParameter = 6 ; + } +#Temperature +'Temperature' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'U component of wind' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'V component of wind' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Total column water vapour +'Total column water vapour' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Divergence +'Divergence' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 200 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + topLevel = 10 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Snow depth +'Snow depth' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 200 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 200 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 200 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 200 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'Large scale snow' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#2 metre specific humidity +'2 metre specific humidity' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Convective snow +'Convective snow' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Maximum wind speed +'Maximum wind speed' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Upward short-wave radiation flux +'Upward short-wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Cloud water +'Cloud water' = { + table2Version = 200 ; + indicatorOfParameter = 76 ; + } +#Cloud work function +'Cloud work function' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Total column integrated ozone +'Total column integrated ozone' = { + table2Version = 200 ; + indicatorOfParameter = 10 ; + } +#Ground heat flux +'Ground heat flux' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#2 metre relative humidity +'2 metre relative humidity' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Clear Sky Downward Solar Flux +'Clear Sky Downward Solar Flux' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Clear Sky Upward Solar Flux +'Clear Sky Upward Solar Flux' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Clear Sky Upward Long Wave Flux +'Clear Sky Upward Long Wave Flux' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Clear Sky Downward Long Wave Flux +'Clear Sky Downward Long Wave Flux' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Albedo +'Albedo' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Mean evaporation +'Mean evaporation' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Mean total precipitation +'Mean total precipitation' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Mean large scale precipitation +'Mean large scale precipitation' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Mean convective precipitation +'Mean convective precipitation' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Mean snowfall rate water equivalent +'Mean snowfall rate water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Mean surface water runoff +'Mean surface water runoff' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Square of Brunt-Vaisala frequency +'Square of Brunt-Vaisala frequency' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Adiabatic zonal acceleration +'Adiabatic zonal acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Adiabatic meridional acceleration +'Adiabatic meridional acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#Mean frequency of deep convection +'Mean frequency of deep convection' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Mean frequency of shallow convection +'Mean frequency of shallow convection' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Mean frequency of stratocumulus parameterisation +'Mean frequency of stratocumulus parameterisation' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Gravity wave zonal acceleration +'Gravity wave zonal acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Gravity wave meridional acceleration +'Gravity wave meridional acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Mean evapotranspiration +'Mean evapotranspiration' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Adiabatic heating rate +'Adiabatic heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Moisture storage on canopy +'Moisture storage on canopy' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Moisture storage on ground or cover +'Moisture storage on ground or cover' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Mass concentration of condensed water in soil +'Mass concentration of condensed water in soil' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Upward mass flux at cloud base +'Upward mass flux at cloud base' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Upward mass flux +'Upward mass flux' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Adiabatic moistening rate +'Adiabatic moistening rate' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Ozone mixing ratio +'Ozone mixing ratio' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Convective zonal acceleration +'Convective zonal acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Mean zonal momentum flux by long gravity wave +'Mean zonal momentum flux by long gravity wave' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Mean meridional momentum flux by long gravity wave +'Mean meridional momentum flux by long gravity wave' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Mean meridional momentum flux by short gravity wave +'Mean meridional momentum flux by short gravity wave' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Mean zonal momentum flux by short gravity wave +'Mean zonal momentum flux by short gravity wave' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Convective meridional acceleration +'Convective meridional acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Large scale condensation heating rate +'Large scale condensation heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Convective heating rate +'Convective heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Convective moistening rate +'Convective moistening rate' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Vertical diffusion heating rate +'Vertical diffusion heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Vertical diffusion zonal acceleration +'Vertical diffusion zonal acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Vertical diffusion meridional acceleration +'Vertical diffusion meridional acceleration' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Vertical diffusion moistening rate +'Vertical diffusion moistening rate' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Solar radiative heating rate +'Solar radiative heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Long wave radiative heating rate +'Long wave radiative heating rate' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Large scale moistening rate +'Large scale moistening rate' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Type of vegetation +'Type of vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Interception loss +'Interception loss' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Soil wetness of surface +'Soil wetness of surface' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Temperature at canopy +'Temperature at canopy' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Ground/surface cover temperature +'Ground/surface cover temperature' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 200 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 200 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 200 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 200 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 200 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 200 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 200 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 200 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current ' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current ' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 200 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'Water temperature' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Salinity +'Salinity' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'Net short-wave radiation flux(atmosph.top)' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 200 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Cloud liquid water +'Cloud liquid water' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Vertical integral of eastward heat flux +'Vertical integral of eastward heat flux' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#Vertical integral of northward heat flux +'Vertical integral of northward heat flux' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#Vertical integral of eastward water vapour flux +'Vertical integral of eastward water vapour flux' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Vertical integral of northward water vapour flux +'Vertical integral of northward water vapour flux' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#specific cloud water content +'specific cloud water content' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/paramId.def b/eccodes/definitions/grib1/localConcepts/rjtd/paramId.def new file mode 100644 index 00000000..300ecdf8 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/paramId.def @@ -0,0 +1,962 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'1' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'2' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'3' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'10' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Sea ice area fraction +'31' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Montgomery potential +'53' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Pressure +'54' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'60' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Total column cloud liquid water +'78' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total column cloud ice water +'79' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Geopotential +'129' = { + table2Version = 200 ; + indicatorOfParameter = 6 ; + } +#Temperature +'130' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'131' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'132' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'133' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'134' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'135' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Total column water vapour +'137' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Vorticity (relative) +'138' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'151' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Divergence +'155' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'156' = { + table2Version = 200 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'157' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'165' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'166' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + topLevel = 10 ; + } +#2 metre temperature +'167' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'172' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'173' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Brightness temperature +'194' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Specific cloud ice water content +'247' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Snow depth +'3066' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'3072' = { + table2Version = 200 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'3073' = { + table2Version = 200 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'3074' = { + table2Version = 200 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'3075' = { + table2Version = 200 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'3079' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'3121' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'3122' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'3123' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#2 metre specific humidity +'174096' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Convective snow +'260011' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Maximum wind speed +'260064' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#Downward short-wave radiation flux +'260087' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Upward short-wave radiation flux +'260088' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#Downward long-wave radiation flux +'260097' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Upward long-wave radiation flux +'260098' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Cloud water +'260102' = { + table2Version = 200 ; + indicatorOfParameter = 76 ; + } +#Cloud work function +'260111' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Total column integrated ozone +'260132' = { + table2Version = 200 ; + indicatorOfParameter = 10 ; + } +#Ground heat flux +'260186' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#2 metre relative humidity +'260242' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Clear Sky Downward Solar Flux +'260342' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Clear Sky Upward Solar Flux +'260344' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Clear Sky Upward Long Wave Flux +'260355' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Clear Sky Downward Long Wave Flux +'260356' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Albedo +'260509' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Mean evaporation +'260600' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Mean total precipitation +'260601' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Mean large scale precipitation +'260602' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Mean convective precipitation +'260603' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Mean snowfall rate water equivalent +'260604' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Mean surface water runoff +'260605' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Square of Brunt-Vaisala frequency +'260606' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Adiabatic zonal acceleration +'260607' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Adiabatic meridional acceleration +'260609' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#Mean frequency of deep convection +'260610' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Mean frequency of shallow convection +'260611' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Mean frequency of stratocumulus parameterisation +'260612' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Gravity wave zonal acceleration +'260613' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Gravity wave meridional acceleration +'260614' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Mean evapotranspiration +'260615' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Adiabatic heating rate +'260616' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Moisture storage on canopy +'260617' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Moisture storage on ground or cover +'260618' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Mass concentration of condensed water in soil +'260619' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Upward mass flux at cloud base +'260621' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Upward mass flux +'260622' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Adiabatic moistening rate +'260623' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Ozone mixing ratio +'260624' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Convective zonal acceleration +'260625' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Mean zonal momentum flux by long gravity wave +'260626' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Mean meridional momentum flux by long gravity wave +'260627' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Mean meridional momentum flux by short gravity wave +'260628' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Mean zonal momentum flux by short gravity wave +'260629' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Convective meridional acceleration +'260632' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Large scale condensation heating rate +'260633' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Convective heating rate +'260634' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Convective moistening rate +'260635' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Vertical diffusion heating rate +'260636' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Vertical diffusion zonal acceleration +'260637' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Vertical diffusion meridional acceleration +'260638' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Vertical diffusion moistening rate +'260639' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Solar radiative heating rate +'260640' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Long wave radiative heating rate +'260641' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Large scale moistening rate +'260642' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Type of vegetation +'260643' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Virtual temperature +'300012' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#Vertical velocity +'300040' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Interception loss +'300179' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Soil wetness of surface +'300182' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Temperature at canopy +'300190' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Ground/surface cover temperature +'300191' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Pressure tendency +'3003' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'3008' = { + table2Version = 200 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'3009' = { + table2Version = 200 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'3015' = { + table2Version = 200 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'3016' = { + table2Version = 200 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'3017' = { + table2Version = 200 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'3018' = { + table2Version = 200 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'3019' = { + table2Version = 200 ; + indicatorOfParameter = 19 ; + } +#Visibility +'3020' = { + table2Version = 200 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'3021' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'3022' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'3023' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'3025' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'3026' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'3027' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'3028' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'3029' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'3030' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'3031' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Sigma coordinate vertical velocity +'3038' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'3041' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'3042' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'3045' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'3046' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'3047' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'3048' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'3049' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'3050' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'3053' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Vapour pressure +'3055' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'3056' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'3059' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'3060' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Mixed layer depth +'3067' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'3068' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'3069' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'3070' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + table2Version = 200 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'3080' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'3082' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'3086' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Salinity +'3088' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Density +'3089' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Ice thickness +'3092' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'3093' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'3094' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'3095' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'3096' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'3097' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'3098' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'3099' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'3100' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'3101' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'3102' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'3103' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'3104' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'3105' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'3106' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'3107' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'3108' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'3109' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'3110' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'3112' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'3113' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'3114' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'3115' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'3116' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'3117' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'3119' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'3120' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'3124' = { + table2Version = 200 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'3125' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'3126' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Image data +'3127' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Cloud liquid water +'130212' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Vertical integral of eastward heat flux +'162069' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#Vertical integral of northward heat flux +'162070' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#Vertical integral of eastward water vapour flux +'162071' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Vertical integral of northward water vapour flux +'162072' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#specific cloud water content +'201031' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Soil Temperature +'228139' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Snow depth water equivalent +'228141' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/shortName.def b/eccodes/definitions/grib1/localConcepts/rjtd/shortName.def new file mode 100644 index 00000000..b65dce32 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/shortName.def @@ -0,0 +1,962 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'strf' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Sea ice area fraction +'ci' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Montgomery potential +'mont' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Pressure +'pres' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Total column cloud liquid water +'tclw' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total column cloud ice water +'tciw' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Geopotential +'z' = { + table2Version = 200 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Total column water vapour +'tcwv' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 200 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10u' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10v' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + topLevel = 10 ; + } +#2 metre temperature +'2t' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Brightness temperature +'btmp' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Specific cloud ice water content +'ciwc' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Snow depth +'sde' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 200 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 200 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 200 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 200 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#2 metre specific humidity +'2sh' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Convective snow +'snoc' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Maximum wind speed +'maxgust' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#Downward short-wave radiation flux +'dswrf' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Upward short-wave radiation flux +'uswrf' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Cloud water +'cwat' = { + table2Version = 200 ; + indicatorOfParameter = 76 ; + } +#Cloud work function +'cwork' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Total column integrated ozone +'tcioz' = { + table2Version = 200 ; + indicatorOfParameter = 10 ; + } +#Ground heat flux +'gflux' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#2 metre relative humidity +'2r' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Clear Sky Downward Solar Flux +'csdsf' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Clear Sky Upward Solar Flux +'csusf' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Clear Sky Upward Long Wave Flux +'csulf' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Clear Sky Downward Long Wave Flux +'csdlf' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Albedo +'al' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Mean evaporation +'evpsfc' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Mean total precipitation +'tpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Mean large scale precipitation +'lpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Mean convective precipitation +'cpratsfc' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Mean snowfall rate water equivalent +'srweqsfc' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Mean surface water runoff +'rofsfc' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Square of Brunt-Vaisala frequency +'bvf2tht' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Adiabatic zonal acceleration +'aduahbl' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Adiabatic meridional acceleration +'advaprs' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#Mean frequency of deep convection +'frcvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Mean frequency of shallow convection +'frcvssfc' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Mean frequency of stratocumulus parameterisation +'frscsfc' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Gravity wave zonal acceleration +'gwduahbl' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Gravity wave meridional acceleration +'gwdvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Mean evapotranspiration +'ltrssfc' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Adiabatic heating rate +'adhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Moisture storage on canopy +'mscsfc' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Moisture storage on ground or cover +'msgsfc' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Mass concentration of condensed water in soil +'smcugl' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Upward mass flux at cloud base +'mflxbhbl' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Upward mass flux +'mfluxhbl' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Adiabatic moistening rate +'admrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Ozone mixing ratio +'ozonehbl' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Convective zonal acceleration +'cnvuahbl' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Mean zonal momentum flux by long gravity wave +'fglusfc' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Mean meridional momentum flux by long gravity wave +'fglvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Mean meridional momentum flux by short gravity wave +'fgsvsfc' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Mean zonal momentum flux by short gravity wave +'fgsusfc' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Convective meridional acceleration +'cnvvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Large scale condensation heating rate +'lrghrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Convective heating rate +'cnvhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Convective moistening rate +'cnvmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Vertical diffusion heating rate +'vdfhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Vertical diffusion zonal acceleration +'vdfuahbl' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Vertical diffusion meridional acceleration +'vdfvahbl' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Vertical diffusion moistening rate +'vdfmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Solar radiative heating rate +'swhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Long wave radiative heating rate +'lwhrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Large scale moistening rate +'lrgmrhbl' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Type of vegetation +'tovg' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#Vertical velocity +'omg2' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Interception loss +'pitp' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Soil wetness of surface +'ussl' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Temperature at canopy +'ctmp' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Ground/surface cover temperature +'tgsc' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Pressure tendency +'ptend' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'h' = { + table2Version = 200 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 200 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 200 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 200 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 200 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 200 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 200 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 200 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'absv' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Vapour pressure +'vp' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'prate' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Mixed layer depth +'mld' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 200 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'wtmp' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'ssw' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Salinity +'s' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Ice thickness +'icetk' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'mdps' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'mpps' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'nswrt' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 200 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Cloud liquid water +'clw' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#Vertical integral of northward heat flux +'vithen' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#specific cloud water content +'qc' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Soil Temperature +'st' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Snow depth water equivalent +'sd' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/stepType.def b/eccodes/definitions/grib1/localConcepts/rjtd/stepType.def new file mode 100644 index 00000000..985938c9 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/stepType.def @@ -0,0 +1,24 @@ +# stepType for JMA +# In case of a repeated entry: +# set uses the FIRST one +# get returns the LAST match + +"instant" = {timeRangeIndicator=1;} +"instant" = {timeRangeIndicator=10;} +"instant" = {timeRangeIndicator=0;} +"avg" = {timeRangeIndicator=3;} +"avgfc" = {timeRangeIndicator=113;} +"avgd" = {timeRangeIndicator=113;} +"accum" = {timeRangeIndicator=2;} +"accum" = {timeRangeIndicator=4;} +"diff" = {timeRangeIndicator=5;} +"avgua" = {timeRangeIndicator=123;} +"avgia" = {timeRangeIndicator=124;} + +# Specific to JMA +"avgas" = {timeRangeIndicator=128;} +"avgad" = {timeRangeIndicator=130;} + +"varas" = {timeRangeIndicator=129;} +"varad" = {timeRangeIndicator=131;} +"varins" = {timeRangeIndicator=132;} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def b/eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def new file mode 100644 index 00000000..bf9f35ff --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def @@ -0,0 +1,43 @@ +# Concepts for JMA levels +# +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricInPa' = {indicatorOfTypeOfLevel=210;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} +'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} +# +# The following are specific to JMA +# +'deepSoil' = {indicatorOfTypeOfLevel=211;} +'subSurface' = {indicatorOfTypeOfLevel=212;} +'threeLayers' = {indicatorOfTypeOfLevel=213;} diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/units.def b/eccodes/definitions/grib1/localConcepts/rjtd/units.def new file mode 100644 index 00000000..9e951ab1 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/rjtd/units.def @@ -0,0 +1,962 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 32 ; + } +#Sea ice area fraction +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 91 ; + } +#Montgomery potential +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 37 ; + } +#Pressure +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 4 ; + } +#Total column cloud liquid water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 227 ; + } +#Total column cloud ice water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 58 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 6 ; + } +#Temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 39 ; + } +#Total column water vapour +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 54 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 2 ; + } +#Divergence +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gpm' = { + table2Version = 200 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'%' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + topLevel = 10 ; + } +#2 metre temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'m' = { + table2Version = 200 ; + indicatorOfParameter = 83 ; + } +#Brightness temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 118 ; + } +#Specific cloud ice water content +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 229 ; + } +#Snow depth +'m' = { + table2Version = 200 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'%' = { + table2Version = 200 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'%' = { + table2Version = 200 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'%' = { + table2Version = 200 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'%' = { + table2Version = 200 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 123 ; + } +#2 metre specific humidity +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 51 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Convective snow +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 78 ; + } +#Maximum wind speed +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 219 ; + } +#Downward short-wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 204 ; + } +#Upward short-wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 211 ; + } +#Downward long-wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 205 ; + } +#Upward long-wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 212 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 76 ; + } +#Cloud work function +'J kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 146 ; + } +#Total column integrated ozone +'DU' = { + table2Version = 200 ; + indicatorOfParameter = 10 ; + } +#Ground heat flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 155 ; + } +#2 metre relative humidity +'%' = { + table2Version = 200 ; + indicatorOfParameter = 52 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Clear Sky Downward Solar Flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 161 ; + } +#Clear Sky Upward Solar Flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 160 ; + } +#Clear Sky Upward Long Wave Flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 162 ; + } +#Clear Sky Downward Long Wave Flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 163 ; + } +#Albedo +'%' = { + table2Version = 200 ; + indicatorOfParameter = 84 ; + } +#Mean evaporation +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 57 ; + } +#Mean total precipitation +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 61 ; + } +#Mean large scale precipitation +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 62 ; + } +#Mean convective precipitation +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 63 ; + } +#Mean snowfall rate water equivalent +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 64 ; + } +#Mean surface water runoff +'mm per day' = { + table2Version = 200 ; + indicatorOfParameter = 90 ; + } +#Square of Brunt-Vaisala frequency +'s**-2' = { + table2Version = 200 ; + indicatorOfParameter = 132 ; + } +#Adiabatic zonal acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 151 ; + } +#Adiabatic meridional acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 165 ; + } +#Mean frequency of deep convection +'%' = { + table2Version = 200 ; + indicatorOfParameter = 170 ; + } +#Mean frequency of shallow convection +'%' = { + table2Version = 200 ; + indicatorOfParameter = 171 ; + } +#Mean frequency of stratocumulus parameterisation +'%' = { + table2Version = 200 ; + indicatorOfParameter = 172 ; + } +#Gravity wave zonal acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 173 ; + } +#Gravity wave meridional acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 174 ; + } +#Mean evapotranspiration +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 202 ; + } +#Adiabatic heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 222 ; + } +#Moisture storage on canopy +'m' = { + table2Version = 200 ; + indicatorOfParameter = 223 ; + } +#Moisture storage on ground or cover +'m' = { + table2Version = 200 ; + indicatorOfParameter = 224 ; + } +#Mass concentration of condensed water in soil +'kg m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 226 ; + } +#Upward mass flux at cloud base +'kg m**-2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 230 ; + } +#Upward mass flux +'kg m**-2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 231 ; + } +#Adiabatic moistening rate +'kg kg**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 236 ; + } +#Ozone mixing ratio +'mg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 237 ; + } +#Convective zonal acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 239 ; + } +#Mean zonal momentum flux by long gravity wave +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 147 ; + } +#Mean meridional momentum flux by long gravity wave +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 148 ; + } +#Mean meridional momentum flux by short gravity wave +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 154 ; + } +#Mean zonal momentum flux by short gravity wave +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 159 ; + } +#Convective meridional acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 240 ; + } +#Large scale condensation heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 241 ; + } +#Convective heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 242 ; + } +#Convective moistening rate +'kg kg**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 243 ; + } +#Vertical diffusion heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 246 ; + } +#Vertical diffusion zonal acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 247 ; + } +#Vertical diffusion meridional acceleration +'m s**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 248 ; + } +#Vertical diffusion moistening rate +'kg kg**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 249 ; + } +#Solar radiative heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 250 ; + } +#Long wave radiative heating rate +'K per day' = { + table2Version = 200 ; + indicatorOfParameter = 251 ; + } +#Large scale moistening rate +'kg kg**-1 per day' = { + table2Version = 200 ; + indicatorOfParameter = 253 ; + } +#Type of vegetation +'Code Table JMA-252' = { + table2Version = 200 ; + indicatorOfParameter = 252 ; + } +#Virtual temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 12 ; + } +#Vertical velocity +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 40 ; + } +#Interception loss +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 203 ; + } +#Soil wetness of surface +'(0 - 1)' = { + table2Version = 200 ; + indicatorOfParameter = 225 ; + } +#Temperature at canopy +'K' = { + table2Version = 200 ; + indicatorOfParameter = 144 ; + } +#Ground/surface cover temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 145 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 200 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'m' = { + table2Version = 200 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 200 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 200 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 200 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 200 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 200 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 200 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'~' = { + table2Version = 200 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 31 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 53 ; + } +#Vapour pressure +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 200 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 200 ; + indicatorOfParameter = 60 ; + } +#Mixed layer depth +'m' = { + table2Version = 200 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 200 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 200 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 200 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 200 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 200 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 86 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 200 ; + indicatorOfParameter = 89 ; + } +#Ice thickness +'m' = { + table2Version = 200 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 200 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 200 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 200 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 200 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 200 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 200 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 200 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 200 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 200 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + table2Version = 200 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 200 ; + indicatorOfParameter = 126 ; + } +#Image data +'~' = { + table2Version = 200 ; + indicatorOfParameter = 127 ; + } +#Cloud liquid water +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 228 ; + } +#Percentage of vegetation +'%' = { + table2Version = 200 ; + indicatorOfParameter = 87 ; + } +#Vertical integral of eastward heat flux +'W m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 190 ; + } +#Vertical integral of northward heat flux +'W m**-1' = { + table2Version = 200 ; + indicatorOfParameter = 191 ; + } +#Vertical integral of eastward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 157 ; + } +#Vertical integral of northward water vapour flux +'kg m**-1 s**-1' = { + table2Version = 200 ; + indicatorOfParameter = 152 ; + } +#specific cloud water content +'kg kg**-1' = { + table2Version = 200 ; + indicatorOfParameter = 221 ; + } +#Soil Temperature +'K' = { + table2Version = 200 ; + indicatorOfParameter = 85 ; + } +#Snow depth water equivalent +'kg m**-2' = { + table2Version = 200 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'%' = { + table2Version = 200 ; + indicatorOfParameter = 71 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/name.def b/eccodes/definitions/grib1/localConcepts/sbsj/name.def new file mode 100644 index 00000000..1540b6b3 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/sbsj/name.def @@ -0,0 +1,1136 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure +'Pressure' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to msl +'Pressure reduced to msl' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } +#Geopotential +'Geopotential' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'Geopotential height' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'Geometric height' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } +#Absolute temperature +'Absolute temperature' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } +#Dew point depression +'Dew point depression' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } +#Radar spectra(1) +'Radar spectra(1)' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } +#Radar spectra(2) +'Radar spectra(2)' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } +#Radar spectra(3) +'Radar spectra(3)' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } +#Geopot height anomaly +'Geopot height anomaly' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } +#Wave spectra(1) +'Wave spectra(1)' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } +#Wave spectra(2) +'Wave spectra(2)' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } +#Wave spectra(3) +'Wave spectra(3)' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'Wind speed' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } +#Zonal wind (u) +'Zonal wind (u)' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } +#Meridional wind (v) +'Meridional wind (v)' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } +#Stream function +'Stream function' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } +#Sigma coord vert vel +'Sigma coord vert vel' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } +#Omega +'Omega' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } +#Vorticity +'Vorticity' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } +#Divergence +'Divergence' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } +#Vertical u-comp shear +'Vertical u-comp shear' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } +#Vert v-comp shear +'Vert v-comp shear' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } +#Inst. precipitable water +'Inst. precipitable water' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'Evaporation' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } +#Thunder probability +'Thunder probability' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'Total precipitation' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'Large scale precipitation' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'Convective precipitation' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } +#Snowfall +'Snowfall' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } +#Wat equiv acc snow depth +'Wat equiv acc snow depth' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'Snow depth' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } +#Trans thermocline depth +'Trans thermocline depth' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anom +'Main thermocline anom' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } +#Cloud cover +'Cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'Cloud water' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hpa) +'Best lifted index (to 500 hpa)' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } +#Land sea mask +'Land sea mask' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } +#Dev sea_lev from mean +'Dev sea_lev from mean' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } +#Roughness length +'Roughness length' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } +#Albedo +'Albedo' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } +#Deep soil temperature +'Deep soil temperature' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'Vegetation' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } +#Density +'Density' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } +#Ice concentration +'Ice concentration' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } +#U-comp of ice drift +'U-comp of ice drift' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } +#V-comp of ice drift +'V-comp of ice drift' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } +#Ice growth +'Ice growth' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } +#Sig hgt com wave/swell +'Sig hgt com wave/swell' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } +#Direction of wind wave +'Direction of wind wave' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } +#Sig hght of wind waves +'Sig hght of wind waves' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } +#Mean period wind waves +'Mean period wind waves' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } +#Direction of swell wave +'Direction of swell wave' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } +#Sig height swell waves +'Sig height swell waves' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } +#Mean period swell waves +'Mean period swell waves' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } +#Prim wave mean period +'Prim wave mean period' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } +#Second wave direction +'Second wave direction' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } +#Second wave mean period +'Second wave mean period' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } +#Short wave absorbed at ground +'Short wave absorbed at ground' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } +#Net long wave at bottom +'Net long wave at bottom' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } +#Net short-wav rad(top) +'Net short-wav rad(top)' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } +#Outgoing long wave at top +'Outgoing long wave at top' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } +#Long-wav rad +'Long-wav rad' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } +#Short wave absorbed by earth/atmosphere +'Short wave absorbed by earth/atmosphere' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } +#Global radiation +'Global radiation' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } +#Latent heat flux from surface +'Latent heat flux from surface' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux from surface +'Sensible heat flux from surface' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } +#Bound layer dissipation +'Bound layer dissipation' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } +#Image +'Image' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 254 ; + indicatorOfParameter = 129 ; + } +#10 metre u-wind component +'10 metre u-wind component' = { + table2Version = 254 ; + indicatorOfParameter = 130 ; + } +#10 metre v-wind component +'10 metre v-wind component' = { + table2Version = 254 ; + indicatorOfParameter = 131 ; + } +#Topography +'Topography' = { + table2Version = 254 ; + indicatorOfParameter = 132 ; + } +#Geometric mean surface pressure +'Geometric mean surface pressure' = { + table2Version = 254 ; + indicatorOfParameter = 133 ; + } +#Ln surface pressure +'Ln surface pressure' = { + table2Version = 254 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 254 ; + indicatorOfParameter = 135 ; + } +#M s l pressure (mesinger method) +'M s l pressure (mesinger method)' = { + table2Version = 254 ; + indicatorOfParameter = 136 ; + } +#Mask +'Mask' = { + table2Version = 254 ; + indicatorOfParameter = 137 ; + } +#Maximum u-wind +'Maximum u-wind' = { + table2Version = 254 ; + indicatorOfParameter = 138 ; + } +#Maximum v-wind +'Maximum v-wind' = { + table2Version = 254 ; + indicatorOfParameter = 139 ; + } +#Convective avail. pot.energy +'Convective avail. pot.energy' = { + table2Version = 254 ; + indicatorOfParameter = 140 ; + } +#Convective inhib. energy +'Convective inhib. energy' = { + table2Version = 254 ; + indicatorOfParameter = 141 ; + } +#Convective latent heating +'Convective latent heating' = { + table2Version = 254 ; + indicatorOfParameter = 142 ; + } +#Convective moisture source +'Convective moisture source' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } +#Shallow conv. moisture source +'Shallow conv. moisture source' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } +#Shallow convective heating +'Shallow convective heating' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } +#Maximum wind press. lvl +'Maximum wind press. lvl' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } +#Storm motion u-component +'Storm motion u-component' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } +#Storm motion v-component +'Storm motion v-component' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } +#Mean cloud cover +'Mean cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } +#Pressure at cloud base +'Pressure at cloud base' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } +#Pressure at cloud top +'Pressure at cloud top' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } +#Freezing level height +'Freezing level height' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } +#Freezing level relative humidity +'Freezing level relative humidity' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } +#Flight levels temperature +'Flight levels temperature' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } +#Flight levels u-wind +'Flight levels u-wind' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } +#Flight levels v-wind +'Flight levels v-wind' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } +#Tropopause pressure +'Tropopause pressure' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } +#Tropopause temperature +'Tropopause temperature' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } +#Tropopause u-wind component +'Tropopause u-wind component' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } +#Tropopause v-wind component +'Tropopause v-wind component' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } +#Gravity wave drag du/dt +'Gravity wave drag du/dt' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } +#Gravity wave drag dv/dt +'Gravity wave drag dv/dt' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } +#Gravity wave drag sfc zonal stress +'Gravity wave drag sfc zonal stress' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } +#Gravity wave drag sfc meridional stress +'Gravity wave drag sfc meridional stress' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } +#Divergence of specific humidity +'Divergence of specific humidity' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } +#Horiz. moisture flux conv. +'Horiz. moisture flux conv.' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } +#Vert. integrated moisture flux conv. +'Vert. integrated moisture flux conv.' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } +#Vertical moisture advection +'Vertical moisture advection' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } +#Neg. hum. corr. moisture source +'Neg. hum. corr. moisture source' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } +#Large scale latent heating +'Large scale latent heating' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } +#Large scale moisture source +'Large scale moisture source' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } +#Soil moisture availability +'Soil moisture availability' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } +#Soil temperature of root zone +'Soil temperature of root zone' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } +#Bare soil latent heat +'Bare soil latent heat' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } +#Potential sfc evaporation +'Potential sfc evaporation' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } +#Runoff +'Runoff' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } +#Interception loss +'Interception loss' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } +#Vapor pressure of canopy air space +'Vapor pressure of canopy air space' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } +#Surface spec humidity +'Surface spec humidity' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } +#Soil wetness of surface +'Soil wetness of surface' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } +#Soil wetness of root zone +'Soil wetness of root zone' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } +#Soil wetness of drainage zone +'Soil wetness of drainage zone' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } +#Storage on canopy +'Storage on canopy' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } +#Storage on ground +'Storage on ground' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } +#Surface temperature +'Surface temperature' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } +#Surface absolute temperature +'Surface absolute temperature' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } +#Temperature of canopy air space +'Temperature of canopy air space' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } +#Temperature at canopy +'Temperature at canopy' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } +#Ground/surface cover temperature +'Ground/surface cover temperature' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } +#Surface zonal wind (u) +'Surface zonal wind (u)' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } +#Surface zonal wind stress +'Surface zonal wind stress' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } +#Surface meridional wind (v) +'Surface meridional wind (v)' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } +#Surface meridional wind stress +'Surface meridional wind stress' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } +#Surface momentum flux +'Surface momentum flux' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } +#Incident short wave flux +'Incident short wave flux' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } +#Time ave ground ht flx +'Time ave ground ht flx' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } +#Net long wave at bottom (clear) +'Net long wave at bottom (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } +#Outgoing long wave at top (clear) +'Outgoing long wave at top (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } +#Short wv absrbd by earth/atmos (clear) +'Short wv absrbd by earth/atmos (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } +#Short wave absorbed at ground (clear) +'Short wave absorbed at ground (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } +#Long wave radiative heating +'Long wave radiative heating' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } +#Short wave radiative heating +'Short wave radiative heating' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } +#Downward long wave at bottom +'Downward long wave at bottom' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } +#Downward long wave at bottom (clear) +'Downward long wave at bottom (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } +#Downward short wave at ground +'Downward short wave at ground' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } +#Downward short wave at ground (clear) +'Downward short wave at ground (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } +#Upward long wave at bottom +'Upward long wave at bottom' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } +#Upward short wave at ground +'Upward short wave at ground' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } +#Upward short wave at ground (clear) +'Upward short wave at ground (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } +#Upward short wave at top +'Upward short wave at top' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } +#Upward short wave at top (clear) +'Upward short wave at top (clear)' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } +#Horizontal heating diffusion +'Horizontal heating diffusion' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } +#Horizontal moisture diffusion +'Horizontal moisture diffusion' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } +#Horizontal divergence diffusion +'Horizontal divergence diffusion' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } +#Horizontal vorticity diffusion +'Horizontal vorticity diffusion' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } +#Vertical diff. moisture source +'Vertical diff. moisture source' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } +#Vertical diffusion du/dt +'Vertical diffusion du/dt' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion dv/dt +'Vertical diffusion dv/dt' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } +#Vertical diffusion heating +'Vertical diffusion heating' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } +#Surface relative humidity +'Surface relative humidity' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } +#Vertical dist total cloud cover +'Vertical dist total cloud cover' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } +#Time mean surface zonal wind (u) +'Time mean surface zonal wind (u)' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } +#Time mean surface meridional wind (v) +'Time mean surface meridional wind (v)' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } +#Time mean surface absolute temperature +'Time mean surface absolute temperature' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } +#Time mean surface relative humidity +'Time mean surface relative humidity' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } +#Time mean absolute temperature +'Time mean absolute temperature' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } +#Time mean deep soil temperature +'Time mean deep soil temperature' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } +#Time mean derived omega +'Time mean derived omega' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } +#Time mean divergence +'Time mean divergence' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } +#Time mean geopotential height +'Time mean geopotential height' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } +#Time mean log surface pressure +'Time mean log surface pressure' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } +#Time mean mask +'Time mean mask' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } +#Time mean meridional wind (v) +'Time mean meridional wind (v)' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } +#Time mean omega +'Time mean omega' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } +#Time mean potential temperature +'Time mean potential temperature' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } +#Time mean precip. water +'Time mean precip. water' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } +#Time mean relative humidity +'Time mean relative humidity' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } +#Time mean sea level pressure +'Time mean sea level pressure' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } +#Time mean sigmadot +'Time mean sigmadot' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } +#Time mean specific humidity +'Time mean specific humidity' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } +#Time mean stream function +'Time mean stream function' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } +#Time mean surface pressure +'Time mean surface pressure' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } +#Time mean surface temperature +'Time mean surface temperature' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } +#Time mean velocity potential +'Time mean velocity potential' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } +#Time mean virtual temperature +'Time mean virtual temperature' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } +#Time mean vorticity +'Time mean vorticity' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } +#Time mean zonal wind (u) +'Time mean zonal wind (u)' = { + table2Version = 254 ; + indicatorOfParameter = 255 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/paramId.def b/eccodes/definitions/grib1/localConcepts/sbsj/paramId.def new file mode 100644 index 00000000..235923df --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/sbsj/paramId.def @@ -0,0 +1,1136 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure +'300001' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to msl +'300002' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'300003' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } +#Geopotential +'300006' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'300007' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'300008' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } +#Absolute temperature +'300011' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'300012' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'300013' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'300014' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'300015' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'300016' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'300017' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } +#Dew point depression +'300018' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'300019' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } +#Radar spectra(1) +'300021' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } +#Radar spectra(2) +'300022' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } +#Radar spectra(3) +'300023' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly +'300025' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'300026' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } +#Geopot height anomaly +'300027' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } +#Wave spectra(1) +'300028' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } +#Wave spectra(2) +'300029' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } +#Wave spectra(3) +'300030' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'300031' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'300032' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } +#Zonal wind (u) +'300033' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } +#Meridional wind (v) +'300034' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } +#Stream function +'300035' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'300036' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } +#Sigma coord vert vel +'300038' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } +#Omega +'300039' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'300040' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'300041' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'300042' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } +#Vorticity +'300043' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } +#Divergence +'300044' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } +#Vertical u-comp shear +'300045' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } +#Vert v-comp shear +'300046' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'300047' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'300048' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'300049' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'300050' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'300051' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'300052' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'300053' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } +#Inst. precipitable water +'300054' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'300055' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'300056' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'300057' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } +#Precipitation rate +'300059' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } +#Thunder probability +'300060' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'300061' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'300062' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'300063' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } +#Snowfall +'300064' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } +#Wat equiv acc snow depth +'300065' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'300066' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'300067' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } +#Trans thermocline depth +'300068' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'300069' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anom +'300070' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } +#Cloud cover +'300071' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'300072' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'300073' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'300074' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'300075' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'300076' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hpa) +'300077' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } +#Land sea mask +'300081' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } +#Dev sea_lev from mean +'300082' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } +#Roughness length +'300083' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } +#Albedo +'300084' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } +#Deep soil temperature +'300085' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'300086' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'300087' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } +#Density +'300089' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } +#Ice concentration +'300091' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'300092' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'300093' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'300094' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } +#U-comp of ice drift +'300095' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } +#V-comp of ice drift +'300096' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } +#Ice growth +'300097' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'300098' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } +#Sig hgt com wave/swell +'300100' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } +#Direction of wind wave +'300101' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } +#Sig hght of wind waves +'300102' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } +#Mean period wind waves +'300103' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } +#Direction of swell wave +'300104' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } +#Sig height swell waves +'300105' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } +#Mean period swell waves +'300106' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'300107' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } +#Prim wave mean period +'300108' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } +#Second wave direction +'300109' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } +#Second wave mean period +'300110' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } +#Short wave absorbed at ground +'300111' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } +#Net long wave at bottom +'300112' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } +#Net short-wav rad(top) +'300113' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } +#Outgoing long wave at top +'300114' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } +#Long-wav rad +'300115' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } +#Short wave absorbed by earth/atmosphere +'300116' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } +#Global radiation +'300117' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } +#Latent heat flux from surface +'300121' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux from surface +'300122' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } +#Bound layer dissipation +'300123' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } +#Image +'300127' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } +#2 metre temperature +'300128' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } +#2 metre dewpoint temperature +'300129' = { + table2Version = 254 ; + indicatorOfParameter = 129 ; + } +#10 metre u-wind component +'300130' = { + table2Version = 254 ; + indicatorOfParameter = 130 ; + } +#10 metre v-wind component +'300131' = { + table2Version = 254 ; + indicatorOfParameter = 131 ; + } +#Topography +'300132' = { + table2Version = 254 ; + indicatorOfParameter = 132 ; + } +#Geometric mean surface pressure +'300133' = { + table2Version = 254 ; + indicatorOfParameter = 133 ; + } +#Ln surface pressure +'300134' = { + table2Version = 254 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'300135' = { + table2Version = 254 ; + indicatorOfParameter = 135 ; + } +#M s l pressure (mesinger method) +'300136' = { + table2Version = 254 ; + indicatorOfParameter = 136 ; + } +#Mask +'300137' = { + table2Version = 254 ; + indicatorOfParameter = 137 ; + } +#Maximum u-wind +'300138' = { + table2Version = 254 ; + indicatorOfParameter = 138 ; + } +#Maximum v-wind +'300139' = { + table2Version = 254 ; + indicatorOfParameter = 139 ; + } +#Convective avail. pot.energy +'300140' = { + table2Version = 254 ; + indicatorOfParameter = 140 ; + } +#Convective inhib. energy +'300141' = { + table2Version = 254 ; + indicatorOfParameter = 141 ; + } +#Convective latent heating +'300142' = { + table2Version = 254 ; + indicatorOfParameter = 142 ; + } +#Convective moisture source +'300143' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } +#Shallow conv. moisture source +'300144' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } +#Shallow convective heating +'300145' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } +#Maximum wind press. lvl +'300146' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } +#Storm motion u-component +'300147' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } +#Storm motion v-component +'300148' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } +#Mean cloud cover +'300149' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } +#Pressure at cloud base +'300150' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } +#Pressure at cloud top +'300151' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } +#Freezing level height +'300152' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } +#Freezing level relative humidity +'300153' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } +#Flight levels temperature +'300154' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } +#Flight levels u-wind +'300155' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } +#Flight levels v-wind +'300156' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } +#Tropopause pressure +'300157' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } +#Tropopause temperature +'300158' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } +#Tropopause u-wind component +'300159' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } +#Tropopause v-wind component +'300160' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } +#Gravity wave drag du/dt +'300162' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } +#Gravity wave drag dv/dt +'300163' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } +#Gravity wave drag sfc zonal stress +'300164' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } +#Gravity wave drag sfc meridional stress +'300165' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } +#Divergence of specific humidity +'300167' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } +#Horiz. moisture flux conv. +'300168' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } +#Vert. integrated moisture flux conv. +'300169' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } +#Vertical moisture advection +'300170' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } +#Neg. hum. corr. moisture source +'300171' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } +#Large scale latent heating +'300172' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } +#Large scale moisture source +'300173' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } +#Soil moisture availability +'300174' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } +#Soil temperature of root zone +'300175' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } +#Bare soil latent heat +'300176' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } +#Potential sfc evaporation +'300177' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } +#Runoff +'300178' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } +#Interception loss +'300179' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } +#Vapor pressure of canopy air space +'300180' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } +#Surface spec humidity +'300181' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } +#Soil wetness of surface +'300182' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } +#Soil wetness of root zone +'300183' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } +#Soil wetness of drainage zone +'300184' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } +#Storage on canopy +'300185' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } +#Storage on ground +'300186' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } +#Surface temperature +'300187' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } +#Surface absolute temperature +'300188' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } +#Temperature of canopy air space +'300189' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } +#Temperature at canopy +'300190' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } +#Ground/surface cover temperature +'300191' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } +#Surface zonal wind (u) +'300192' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } +#Surface zonal wind stress +'300193' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } +#Surface meridional wind (v) +'300194' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } +#Surface meridional wind stress +'300195' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } +#Surface momentum flux +'300196' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } +#Incident short wave flux +'300197' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } +#Time ave ground ht flx +'300198' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } +#Net long wave at bottom (clear) +'300200' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } +#Outgoing long wave at top (clear) +'300201' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } +#Short wv absrbd by earth/atmos (clear) +'300202' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } +#Short wave absorbed at ground (clear) +'300203' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } +#Long wave radiative heating +'300205' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } +#Short wave radiative heating +'300206' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } +#Downward long wave at bottom +'300207' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } +#Downward long wave at bottom (clear) +'300208' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } +#Downward short wave at ground +'300209' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } +#Downward short wave at ground (clear) +'300210' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } +#Upward long wave at bottom +'300211' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } +#Upward short wave at ground +'300212' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } +#Upward short wave at ground (clear) +'300213' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } +#Upward short wave at top +'300214' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } +#Upward short wave at top (clear) +'300215' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } +#Horizontal heating diffusion +'300218' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } +#Horizontal moisture diffusion +'300219' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } +#Horizontal divergence diffusion +'300220' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } +#Horizontal vorticity diffusion +'300221' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } +#Vertical diff. moisture source +'300222' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } +#Vertical diffusion du/dt +'300223' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion dv/dt +'300224' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } +#Vertical diffusion heating +'300225' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } +#Surface relative humidity +'300226' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } +#Vertical dist total cloud cover +'300227' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } +#Time mean surface zonal wind (u) +'300230' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } +#Time mean surface meridional wind (v) +'300231' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } +#Time mean surface absolute temperature +'300232' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } +#Time mean surface relative humidity +'300233' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } +#Time mean absolute temperature +'300234' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } +#Time mean deep soil temperature +'300235' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } +#Time mean derived omega +'300236' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } +#Time mean divergence +'300237' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } +#Time mean geopotential height +'300238' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } +#Time mean log surface pressure +'300239' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } +#Time mean mask +'300240' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } +#Time mean meridional wind (v) +'300241' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } +#Time mean omega +'300242' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } +#Time mean potential temperature +'300243' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } +#Time mean precip. water +'300244' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } +#Time mean relative humidity +'300245' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } +#Time mean sea level pressure +'300246' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } +#Time mean sigmadot +'300247' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } +#Time mean specific humidity +'300248' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } +#Time mean stream function +'300249' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } +#Time mean surface pressure +'300250' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } +#Time mean surface temperature +'300251' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } +#Time mean velocity potential +'300252' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } +#Time mean virtual temperature +'300253' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } +#Time mean vorticity +'300254' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } +#Time mean zonal wind (u) +'300255' = { + table2Version = 254 ; + indicatorOfParameter = 255 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/shortName.def b/eccodes/definitions/grib1/localConcepts/sbsj/shortName.def new file mode 100644 index 00000000..ce101d89 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/sbsj/shortName.def @@ -0,0 +1,1136 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure +'pres' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to msl +'psnm' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'tsps' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } +#Geopotential +'geop' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'zgeo' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'gzge' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } +#Absolute temperature +'temp' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'ptmp' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'psat' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'mxtp' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'mntp' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'tpor' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } +#Dew point depression +'dptd' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lpsr' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } +#Radar spectra(1) +'rds1' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } +#Radar spectra(2) +'rds2' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } +#Radar spectra(3) +'rds3' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly +'tpan' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'psan' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } +#Geopot height anomaly +'zgan' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } +#Wave spectra(1) +'wvs1' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } +#Wave spectra(2) +'wvs2' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } +#Wave spectra(3) +'wvs3' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wind' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'wins' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } +#Zonal wind (u) +'uvel' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } +#Meridional wind (v) +'vvel' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } +#Stream function +'fcor' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'potv' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } +#Sigma coord vert vel +'sgvv' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } +#Omega +'omeg' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'omg2' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'abvo' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'abdv' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } +#Vorticity +'vort' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } +#Divergence +'divg' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } +#Vertical u-comp shear +'vucs' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } +#Vert v-comp shear +'vvcs' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spdc' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucpc' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcpc' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'umes' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'umrl' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'hmxr' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } +#Inst. precipitable water +'agpl' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vapp' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'sadf' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'evap' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } +#Precipitation rate +'prcr' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } +#Thunder probability +'thpb' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'prec' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'prge' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'prcv' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } +#Snowfall +'neve' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } +#Wat equiv acc snow depth +'wenv' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'nvde' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'mxld' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } +#Trans thermocline depth +'tthd' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anom +'mtha' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } +#Cloud cover +'cbnv' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'cvnv' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lwnv' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mdnv' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hinv' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'wtnv' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hpa) +'bli' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } +#Land sea mask +'lsmk' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } +#Dev sea_lev from mean +'dslm' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } +#Roughness length +'zorl' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } +#Albedo +'albe' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } +#Deep soil temperature +'dstp' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'soic' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'vege' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } +#Density +'dens' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } +#Ice concentration +'icec' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icet' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'iced' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'ices' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } +#U-comp of ice drift +'iceu' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } +#V-comp of ice drift +'icev' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } +#Ice growth +'iceg' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'icdv' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } +#Sig hgt com wave/swell +'shcw' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } +#Direction of wind wave +'wwdi' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } +#Sig hght of wind waves +'wwsh' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } +#Mean period wind waves +'wwmp' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } +#Direction of swell wave +'swdi' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } +#Sig height swell waves +'swsh' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } +#Mean period swell waves +'swmp' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'prwd' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } +#Prim wave mean period +'prmp' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } +#Second wave direction +'swdi' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } +#Second wave mean period +'swmp' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } +#Short wave absorbed at ground +'ocas' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } +#Net long wave at bottom +'slds' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } +#Net short-wav rad(top) +'nswr' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } +#Outgoing long wave at top +'role' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } +#Long-wav rad +'lwrd' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } +#Short wave absorbed by earth/atmosphere +'swea' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } +#Global radiation +'glbr' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } +#Latent heat flux from surface +'clsf' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux from surface +'cssf' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } +#Bound layer dissipation +'blds' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } +#Image +'imag' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } +#2 metre temperature +'tp2m' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } +#2 metre dewpoint temperature +'dp2m' = { + table2Version = 254 ; + indicatorOfParameter = 129 ; + } +#10 metre u-wind component +'u10m' = { + table2Version = 254 ; + indicatorOfParameter = 130 ; + } +#10 metre v-wind component +'v10m' = { + table2Version = 254 ; + indicatorOfParameter = 131 ; + } +#Topography +'topo' = { + table2Version = 254 ; + indicatorOfParameter = 132 ; + } +#Geometric mean surface pressure +'gsfp' = { + table2Version = 254 ; + indicatorOfParameter = 133 ; + } +#Ln surface pressure +'lnsp' = { + table2Version = 254 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'pslc' = { + table2Version = 254 ; + indicatorOfParameter = 135 ; + } +#M s l pressure (mesinger method) +'pslm' = { + table2Version = 254 ; + indicatorOfParameter = 136 ; + } +#Mask +'mask' = { + table2Version = 254 ; + indicatorOfParameter = 137 ; + } +#Maximum u-wind +'mxwu' = { + table2Version = 254 ; + indicatorOfParameter = 138 ; + } +#Maximum v-wind +'mxwv' = { + table2Version = 254 ; + indicatorOfParameter = 139 ; + } +#Convective avail. pot.energy +'cape' = { + table2Version = 254 ; + indicatorOfParameter = 140 ; + } +#Convective inhib. energy +'cine' = { + table2Version = 254 ; + indicatorOfParameter = 141 ; + } +#Convective latent heating +'lhcv' = { + table2Version = 254 ; + indicatorOfParameter = 142 ; + } +#Convective moisture source +'mscv' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } +#Shallow conv. moisture source +'scvm' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } +#Shallow convective heating +'scvh' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } +#Maximum wind press. lvl +'mxwp' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } +#Storm motion u-component +'ustr' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } +#Storm motion v-component +'vstr' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } +#Mean cloud cover +'cbnt' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } +#Pressure at cloud base +'pcbs' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } +#Pressure at cloud top +'pctp' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } +#Freezing level height +'fzht' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } +#Freezing level relative humidity +'fzrh' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } +#Flight levels temperature +'fdlt' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } +#Flight levels u-wind +'fdlu' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } +#Flight levels v-wind +'fdlv' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } +#Tropopause pressure +'tppp' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } +#Tropopause temperature +'tppt' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } +#Tropopause u-wind component +'tppu' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } +#Tropopause v-wind component +'tppv' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } +#Gravity wave drag du/dt +'gvdu' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } +#Gravity wave drag dv/dt +'gvdv' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } +#Gravity wave drag sfc zonal stress +'gvus' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } +#Gravity wave drag sfc meridional stress +'gvvs' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } +#Divergence of specific humidity +'dvsh' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } +#Horiz. moisture flux conv. +'hmfc' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } +#Vert. integrated moisture flux conv. +'vmfl' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } +#Vertical moisture advection +'vadv' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } +#Neg. hum. corr. moisture source +'nhcm' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } +#Large scale latent heating +'lglh' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } +#Large scale moisture source +'lgms' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } +#Soil moisture availability +'smav' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } +#Soil temperature of root zone +'tgrz' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } +#Bare soil latent heat +'bslh' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } +#Potential sfc evaporation +'evpp' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } +#Runoff +'rnof' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } +#Interception loss +'pitp' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } +#Vapor pressure of canopy air space +'vpca' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } +#Surface spec humidity +'qsfc' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } +#Soil wetness of surface +'ussl' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } +#Soil wetness of root zone +'uzrs' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } +#Soil wetness of drainage zone +'uzds' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } +#Storage on canopy +'amdl' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } +#Storage on ground +'amsl' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } +#Surface temperature +'tsfc' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } +#Surface absolute temperature +'tems' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } +#Temperature of canopy air space +'tcas' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } +#Temperature at canopy +'ctmp' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } +#Ground/surface cover temperature +'tgsc' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } +#Surface zonal wind (u) +'uves' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } +#Surface zonal wind stress +'usst' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } +#Surface meridional wind (v) +'vves' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } +#Surface meridional wind stress +'vsst' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } +#Surface momentum flux +'suvf' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } +#Incident short wave flux +'iswf' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } +#Time ave ground ht flx +'ghfl' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } +#Net long wave at bottom (clear) +'lwbc' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } +#Outgoing long wave at top (clear) +'lwtc' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } +#Short wv absrbd by earth/atmos (clear) +'swec' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } +#Short wave absorbed at ground (clear) +'ocac' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } +#Long wave radiative heating +'lwrh' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } +#Short wave radiative heating +'swrh' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } +#Downward long wave at bottom +'olis' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } +#Downward long wave at bottom (clear) +'olic' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } +#Downward short wave at ground +'ocis' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } +#Downward short wave at ground (clear) +'ocic' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } +#Upward long wave at bottom +'oles' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } +#Upward short wave at ground +'oces' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } +#Upward short wave at ground (clear) +'swgc' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } +#Upward short wave at top +'roce' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } +#Upward short wave at top (clear) +'swtc' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } +#Horizontal heating diffusion +'hhdf' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } +#Horizontal moisture diffusion +'hmdf' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } +#Horizontal divergence diffusion +'hddf' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } +#Horizontal vorticity diffusion +'hvdf' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } +#Vertical diff. moisture source +'vdms' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } +#Vertical diffusion du/dt +'vdfu' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion dv/dt +'vdfv' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } +#Vertical diffusion heating +'vdfh' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } +#Surface relative humidity +'umrs' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } +#Vertical dist total cloud cover +'vdcc' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } +#Time mean surface zonal wind (u) +'usmt' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } +#Time mean surface meridional wind (v) +'vsmt' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } +#Time mean surface absolute temperature +'tsmt' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } +#Time mean surface relative humidity +'rsmt' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } +#Time mean absolute temperature +'atmt' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } +#Time mean deep soil temperature +'stmt' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } +#Time mean derived omega +'ommt' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } +#Time mean divergence +'dvmt' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } +#Time mean geopotential height +'zhmt' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } +#Time mean log surface pressure +'lnmt' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } +#Time mean mask +'mkmt' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } +#Time mean meridional wind (v) +'vvmt' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } +#Time mean omega +'omtm' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } +#Time mean potential temperature +'ptmt' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } +#Time mean precip. water +'pcmt' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } +#Time mean relative humidity +'rhmt' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } +#Time mean sea level pressure +'mpmt' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } +#Time mean sigmadot +'simt' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } +#Time mean specific humidity +'uemt' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } +#Time mean stream function +'fcmt' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } +#Time mean surface pressure +'psmt' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } +#Time mean surface temperature +'tmmt' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } +#Time mean velocity potential +'pvmt' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } +#Time mean virtual temperature +'tvmt' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } +#Time mean vorticity +'vtmt' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } +#Time mean zonal wind (u) +'uvmt' = { + table2Version = 254 ; + indicatorOfParameter = 255 ; +} diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/units.def b/eccodes/definitions/grib1/localConcepts/sbsj/units.def new file mode 100644 index 00000000..ba33b886 --- /dev/null +++ b/eccodes/definitions/grib1/localConcepts/sbsj/units.def @@ -0,0 +1,1136 @@ +# Automatically generated by ./create_def.pl, do not edit +#Pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 1 ; + } +#Pressure reduced to msl +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 2 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 3 ; + } +#Geopotential +'dam' = { + table2Version = 254 ; + indicatorOfParameter = 6 ; + } +#Geopotential height +'gpm' = { + table2Version = 254 ; + indicatorOfParameter = 7 ; + } +#Geometric height +'m' = { + table2Version = 254 ; + indicatorOfParameter = 8 ; + } +#Absolute temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 11 ; + } +#Virtual temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 12 ; + } +#Potential temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 13 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 17 ; + } +#Dew point depression +'K' = { + table2Version = 254 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 254 ; + indicatorOfParameter = 19 ; + } +#Radar spectra(1) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 21 ; + } +#Radar spectra(2) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 22 ; + } +#Radar spectra(3) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 23 ; + } +#Temperature anomaly +'K' = { + table2Version = 254 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa hPa' = { + table2Version = 254 ; + indicatorOfParameter = 26 ; + } +#Geopot height anomaly +'m' = { + table2Version = 254 ; + indicatorOfParameter = 27 ; + } +#Wave spectra(1) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 28 ; + } +#Wave spectra(2) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 29 ; + } +#Wave spectra(3) +'dimensionless' = { + table2Version = 254 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 31 ; + } +#Wind speed +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 32 ; + } +#Zonal wind (u) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 33 ; + } +#Meridional wind (v) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 34 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 36 ; + } +#Sigma coord vert vel +'s s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 38 ; + } +#Omega +'Pa s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 39 ; + } +#Vertical velocity +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 40 ; + } +#Absolute vorticity +'10**5 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'10**5 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 42 ; + } +#Vorticity +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 43 ; + } +#Divergence +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 44 ; + } +#Vertical u-comp shear +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 45 ; + } +#Vert v-comp shear +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 50 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 254 ; + indicatorOfParameter = 51 ; + } +#Relative humidity +'~' = { + table2Version = 254 ; + indicatorOfParameter = 52 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 254 ; + indicatorOfParameter = 53 ; + } +#Inst. precipitable water +'kg m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa hPa' = { + table2Version = 254 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa hPa' = { + table2Version = 254 ; + indicatorOfParameter = 56 ; + } +#Evaporation +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 57 ; + } +#Precipitation rate +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 59 ; + } +#Thunder probability +'%' = { + table2Version = 254 ; + indicatorOfParameter = 60 ; + } +#Total precipitation +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 61 ; + } +#Large scale precipitation +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 62 ; + } +#Convective precipitation +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 63 ; + } +#Snowfall +'kg m**-2/day' = { + table2Version = 254 ; + indicatorOfParameter = 64 ; + } +#Wat equiv acc snow depth +'kg m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 65 ; + } +#Snow depth +'cm' = { + table2Version = 254 ; + indicatorOfParameter = 66 ; + } +#Mixed layer depth +'m cm' = { + table2Version = 254 ; + indicatorOfParameter = 67 ; + } +#Trans thermocline depth +'m cm' = { + table2Version = 254 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m cm' = { + table2Version = 254 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anom +'m cm' = { + table2Version = 254 ; + indicatorOfParameter = 70 ; + } +#Cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 71 ; + } +#Convective cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 75 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 76 ; + } +#Best lifted index (to 500 hpa) +'K' = { + table2Version = 254 ; + indicatorOfParameter = 77 ; + } +#Land sea mask +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 81 ; + } +#Dev sea_lev from mean +'m' = { + table2Version = 254 ; + indicatorOfParameter = 82 ; + } +#Roughness length +'m' = { + table2Version = 254 ; + indicatorOfParameter = 83 ; + } +#Albedo +'%' = { + table2Version = 254 ; + indicatorOfParameter = 84 ; + } +#Deep soil temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 85 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 86 ; + } +#Vegetation +'%' = { + table2Version = 254 ; + indicatorOfParameter = 87 ; + } +#Density +'kg m**-3' = { + table2Version = 254 ; + indicatorOfParameter = 89 ; + } +#Ice concentration +'Fraction' = { + table2Version = 254 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 254 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 94 ; + } +#U-comp of ice drift +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 95 ; + } +#V-comp of ice drift +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 96 ; + } +#Ice growth +'m' = { + table2Version = 254 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 98 ; + } +#Sig hgt com wave/swell +'m' = { + table2Version = 254 ; + indicatorOfParameter = 100 ; + } +#Direction of wind wave +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 101 ; + } +#Sig hght of wind waves +'m' = { + table2Version = 254 ; + indicatorOfParameter = 102 ; + } +#Mean period wind waves +'s' = { + table2Version = 254 ; + indicatorOfParameter = 103 ; + } +#Direction of swell wave +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 104 ; + } +#Sig height swell waves +'m' = { + table2Version = 254 ; + indicatorOfParameter = 105 ; + } +#Mean period swell waves +'s' = { + table2Version = 254 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 107 ; + } +#Prim wave mean period +'s' = { + table2Version = 254 ; + indicatorOfParameter = 108 ; + } +#Second wave direction +'deg' = { + table2Version = 254 ; + indicatorOfParameter = 109 ; + } +#Second wave mean period +'s' = { + table2Version = 254 ; + indicatorOfParameter = 110 ; + } +#Short wave absorbed at ground +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 111 ; + } +#Net long wave at bottom +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 112 ; + } +#Net short-wav rad(top) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 113 ; + } +#Outgoing long wave at top +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 114 ; + } +#Long-wav rad +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 115 ; + } +#Short wave absorbed by earth/atmosphere +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 116 ; + } +#Global radiation +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 117 ; + } +#Latent heat flux from surface +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux from surface +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 122 ; + } +#Bound layer dissipation +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 123 ; + } +#Image +'image^data' = { + table2Version = 254 ; + indicatorOfParameter = 127 ; + } +#2 metre temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 128 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 129 ; + } +#10 metre u-wind component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 130 ; + } +#10 metre v-wind component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 131 ; + } +#Topography +'m' = { + table2Version = 254 ; + indicatorOfParameter = 132 ; + } +#Geometric mean surface pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 133 ; + } +#Ln surface pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 135 ; + } +#M s l pressure (mesinger method) +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 136 ; + } +#Mask +'-/+' = { + table2Version = 254 ; + indicatorOfParameter = 137 ; + } +#Maximum u-wind +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 138 ; + } +#Maximum v-wind +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 139 ; + } +#Convective avail. pot.energy +'m**2 s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 140 ; + } +#Convective inhib. energy +'m**2 s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 141 ; + } +#Convective latent heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 142 ; + } +#Convective moisture source +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 143 ; + } +#Shallow conv. moisture source +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 144 ; + } +#Shallow convective heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 145 ; + } +#Maximum wind press. lvl +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 146 ; + } +#Storm motion u-component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 147 ; + } +#Storm motion v-component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 148 ; + } +#Mean cloud cover +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 149 ; + } +#Pressure at cloud base +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 150 ; + } +#Pressure at cloud top +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 151 ; + } +#Freezing level height +'m' = { + table2Version = 254 ; + indicatorOfParameter = 152 ; + } +#Freezing level relative humidity +'%' = { + table2Version = 254 ; + indicatorOfParameter = 153 ; + } +#Flight levels temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 154 ; + } +#Flight levels u-wind +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 155 ; + } +#Flight levels v-wind +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 156 ; + } +#Tropopause pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 157 ; + } +#Tropopause temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 158 ; + } +#Tropopause u-wind component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 159 ; + } +#Tropopause v-wind component +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 160 ; + } +#Gravity wave drag du/dt +'m s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 162 ; + } +#Gravity wave drag dv/dt +'m s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 163 ; + } +#Gravity wave drag sfc zonal stress +'Pa' = { + table2Version = 254 ; + indicatorOfParameter = 164 ; + } +#Gravity wave drag sfc meridional stress +'Pa' = { + table2Version = 254 ; + indicatorOfParameter = 165 ; + } +#Divergence of specific humidity +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 167 ; + } +#Horiz. moisture flux conv. +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 168 ; + } +#Vert. integrated moisture flux conv. +'kg m**-2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 169 ; + } +#Vertical moisture advection +'kg kg**-1 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 170 ; + } +#Neg. hum. corr. moisture source +'kg kg**-1 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 171 ; + } +#Large scale latent heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 172 ; + } +#Large scale moisture source +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 173 ; + } +#Soil moisture availability +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 174 ; + } +#Soil temperature of root zone +'K' = { + table2Version = 254 ; + indicatorOfParameter = 175 ; + } +#Bare soil latent heat +'Ws m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 176 ; + } +#Potential sfc evaporation +'m' = { + table2Version = 254 ; + indicatorOfParameter = 177 ; + } +#Runoff +'kg m**-2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 178 ; + } +#Interception loss +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 179 ; + } +#Vapor pressure of canopy air space +'mb' = { + table2Version = 254 ; + indicatorOfParameter = 180 ; + } +#Surface spec humidity +'kg kg**-1' = { + table2Version = 254 ; + indicatorOfParameter = 181 ; + } +#Soil wetness of surface +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 182 ; + } +#Soil wetness of root zone +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 183 ; + } +#Soil wetness of drainage zone +'(0 - 1)' = { + table2Version = 254 ; + indicatorOfParameter = 184 ; + } +#Storage on canopy +'m' = { + table2Version = 254 ; + indicatorOfParameter = 185 ; + } +#Storage on ground +'m' = { + table2Version = 254 ; + indicatorOfParameter = 186 ; + } +#Surface temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 187 ; + } +#Surface absolute temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 188 ; + } +#Temperature of canopy air space +'K' = { + table2Version = 254 ; + indicatorOfParameter = 189 ; + } +#Temperature at canopy +'K' = { + table2Version = 254 ; + indicatorOfParameter = 190 ; + } +#Ground/surface cover temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 191 ; + } +#Surface zonal wind (u) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 192 ; + } +#Surface zonal wind stress +'Pa' = { + table2Version = 254 ; + indicatorOfParameter = 193 ; + } +#Surface meridional wind (v) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 194 ; + } +#Surface meridional wind stress +'Pa' = { + table2Version = 254 ; + indicatorOfParameter = 195 ; + } +#Surface momentum flux +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 196 ; + } +#Incident short wave flux +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 197 ; + } +#Time ave ground ht flx +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 198 ; + } +#Net long wave at bottom (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 200 ; + } +#Outgoing long wave at top (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 201 ; + } +#Short wv absrbd by earth/atmos (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 202 ; + } +#Short wave absorbed at ground (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 203 ; + } +#Long wave radiative heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 205 ; + } +#Short wave radiative heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 206 ; + } +#Downward long wave at bottom +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 207 ; + } +#Downward long wave at bottom (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 208 ; + } +#Downward short wave at ground +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 209 ; + } +#Downward short wave at ground (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 210 ; + } +#Upward long wave at bottom +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 211 ; + } +#Upward short wave at ground +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 212 ; + } +#Upward short wave at ground (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 213 ; + } +#Upward short wave at top +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 214 ; + } +#Upward short wave at top (clear) +'W m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 215 ; + } +#Horizontal heating diffusion +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 218 ; + } +#Horizontal moisture diffusion +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 219 ; + } +#Horizontal divergence diffusion +'s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 220 ; + } +#Horizontal vorticity diffusion +'s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 221 ; + } +#Vertical diff. moisture source +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 222 ; + } +#Vertical diffusion du/dt +'m s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 223 ; + } +#Vertical diffusion dv/dt +'m s**-12' = { + table2Version = 254 ; + indicatorOfParameter = 224 ; + } +#Vertical diffusion heating +'K s**-2' = { + table2Version = 254 ; + indicatorOfParameter = 225 ; + } +#Surface relative humidity +'~' = { + table2Version = 254 ; + indicatorOfParameter = 226 ; + } +#Vertical dist total cloud cover +'~' = { + table2Version = 254 ; + indicatorOfParameter = 227 ; + } +#Time mean surface zonal wind (u) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 230 ; + } +#Time mean surface meridional wind (v) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 231 ; + } +#Time mean surface absolute temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 232 ; + } +#Time mean surface relative humidity +'~' = { + table2Version = 254 ; + indicatorOfParameter = 233 ; + } +#Time mean absolute temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 234 ; + } +#Time mean deep soil temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 235 ; + } +#Time mean derived omega +'Pa s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 236 ; + } +#Time mean divergence +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 237 ; + } +#Time mean geopotential height +'m' = { + table2Version = 254 ; + indicatorOfParameter = 238 ; + } +#Time mean log surface pressure +'ln(cbar)' = { + table2Version = 254 ; + indicatorOfParameter = 239 ; + } +#Time mean mask +'-/+' = { + table2Version = 254 ; + indicatorOfParameter = 240 ; + } +#Time mean meridional wind (v) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 241 ; + } +#Time mean omega +'cbar s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 242 ; + } +#Time mean potential temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 243 ; + } +#Time mean precip. water +'kg m**-2' = { + table2Version = 254 ; + indicatorOfParameter = 244 ; + } +#Time mean relative humidity +'%' = { + table2Version = 254 ; + indicatorOfParameter = 245 ; + } +#Time mean sea level pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 246 ; + } +#Time mean sigmadot +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 247 ; + } +#Time mean specific humidity +'kg kg**-1' = { + table2Version = 254 ; + indicatorOfParameter = 248 ; + } +#Time mean stream function +'m**2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 249 ; + } +#Time mean surface pressure +'hPa' = { + table2Version = 254 ; + indicatorOfParameter = 250 ; + } +#Time mean surface temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 251 ; + } +#Time mean velocity potential +'m**2 s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 252 ; + } +#Time mean virtual temperature +'K' = { + table2Version = 254 ; + indicatorOfParameter = 253 ; + } +#Time mean vorticity +'s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 254 ; + } +#Time mean zonal wind (u) +'m s**-1' = { + table2Version = 254 ; + indicatorOfParameter = 255 ; +} diff --git a/eccodes/definitions/grib1/localDefinitionNumber.34.table b/eccodes/definitions/grib1/localDefinitionNumber.34.table new file mode 100644 index 00000000..c730ef41 --- /dev/null +++ b/eccodes/definitions/grib1/localDefinitionNumber.34.table @@ -0,0 +1,2 @@ +# JMA +1 1 MARS labelling or ensemble forecast data diff --git a/eccodes/definitions/grib1/localDefinitionNumber.82.table b/eccodes/definitions/grib1/localDefinitionNumber.82.table new file mode 100644 index 00000000..1d00b5d6 --- /dev/null +++ b/eccodes/definitions/grib1/localDefinitionNumber.82.table @@ -0,0 +1,10 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 May 2013 +# +######################### +82 82 standard operational SMHI +83 83 MATCH data (standard operational SMHI + extra MATCH keywords) +255 255 MISSING diff --git a/eccodes/definitions/grib1/localDefinitionNumber.96.table b/eccodes/definitions/grib1/localDefinitionNumber.96.table new file mode 100644 index 00000000..2c0e67e7 --- /dev/null +++ b/eccodes/definitions/grib1/localDefinitionNumber.96.table @@ -0,0 +1 @@ +40 40 MARS labeling with domain and model (for LAM) diff --git a/eccodes/definitions/grib1/localDefinitionNumber.98.table b/eccodes/definitions/grib1/localDefinitionNumber.98.table new file mode 100644 index 00000000..f63cf147 --- /dev/null +++ b/eccodes/definitions/grib1/localDefinitionNumber.98.table @@ -0,0 +1,44 @@ +1 1 MARS labelling or ensemble forecast data +2 2 Cluster means and standard deviations +3 3 Satellite image data +4 4 Ocean model data +5 5 Forecast probability data +6 6 Surface temperature data +7 7 Sensitivity data +8 8 ECMWF reanalysis data +9 9 Singular vectors and ensemble perturbations +10 10 EPS tubes +11 11 Supplementary data used by the analysis +12 12 Seasonal forecast monthly mean data for lagged systems +13 13 Wave 2D spectra direction and frequency +14 14 Brightness temperature +15 15 Seasonal forecast data +16 16 Seasonal forecast monthly mean data +17 17 Surface temperature or sea-ice data +18 18 Multianalysis ensemble data +19 19 Extreme forecast index data +20 20 4D variational increments +21 21 Sensitive area predictions +22 22 Coupled atmospheric, wave and ocean models (with hindcast support) +23 23 Coupled atmospheric, wave and ocean means (with hindcast support) +24 24 Satellite image simulation +25 25 4DVar model errors +26 26 MARS labelling or ensemble forecast data (with hindcast support) +27 27 Forecasting Systems with Variable Resolution (Obsolete) +28 28 COSMO local area EPS +29 29 COSMO clustering information +30 30 Forecasting Systems with Variable Resolution +31 31 EUROSIP products +32 32 Cluster Scenarios +35 35 Elaboration of ocean model products +36 36 MARS labelling for long window 4Dvar system +37 37 Brightness temperature for long window 4Dvar system +38 38 4D variational increments for long window 4Dvar system +39 39 4DVar model errors for long window 4Dvar system +40 40 MARS labeling with domain and model (for LAM) +49 49 4DVar model errors for ELDA +50 50 Member State data +190 190 Multiple ECMWF local definitions +191 191 Free format data descriptor data +192 192 Multiple ECMWF local definitions + diff --git a/eccodes/definitions/grib1/local_no_mars.98.1.def b/eccodes/definitions/grib1/local_no_mars.98.1.def new file mode 100644 index 00000000..ed418cee --- /dev/null +++ b/eccodes/definitions/grib1/local_no_mars.98.1.def @@ -0,0 +1,66 @@ +# START 1/local.98.1 ---------------------------------------------------------------------- +# LOCAL 98 1 +# +# localDefinitionTemplate_001 +# --------------------------- +# +# 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 - +#spareSetToZero 52 PAD n/a 1 +# +constant GRIBEXSection1Problem = 52 - section1Length ; + + +unsigned[1] perturbationNumber : dump; +alias number = perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; +pad padding_local1_1(1); + +#1->2 +alias grib2LocalSectionPresent=present; +constant grib2LocalSectionNumber=1; + +if (stepType is "instant" ) { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } +} else { + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } + } +} + +# monthly mean +#if (timeRangeIndicator==113) { +#} diff --git a/eccodes/definitions/grib1/local_no_mars.98.24.def b/eccodes/definitions/grib1/local_no_mars.98.24.def new file mode 100644 index 00000000..efdd3d8a --- /dev/null +++ b/eccodes/definitions/grib1/local_no_mars.98.24.def @@ -0,0 +1,25 @@ +# 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 - +#satelliteIdentifier 50 I2 42 - +#instrumentIdentifier 52 I2 43 - +#channelNumber 54 I2 44 - +#functionCode 56 I1 45 - +# + +constant GRIBEXSection1Problem = 56 - section1Length ; + +unsigned[2] satelliteIdentifier : dump; +alias mars.ident = satelliteIdentifier; + +unsigned[2] instrumentIdentifier : dump; +alias mars.instrument = instrumentIdentifier; + +unsigned[2] channelNumber : dump ; +alias mars.channel = channelNumber; + +unsigned[1] functionCode : dump ; diff --git a/eccodes/definitions/grib1/ls.def b/eccodes/definitions/grib1/ls.def new file mode 100644 index 00000000..92209e99 --- /dev/null +++ b/eccodes/definitions/grib1/ls.def @@ -0,0 +1,16 @@ +alias ls.centre=centre; +#alias ls.param=marsParam; +alias ls.shortName=shortName; + +alias ls.dataType = dataType; + +alias ls.date=date; +alias ls.stepRange = stepRange; + +alias ls.gridType=gridType; +alias ls.numberOfValues=numberOfValues; + +alias ls.levelType=indicatorOfTypeOfLevel; +alias ls.level=level; + +alias ls.packingType=packingType; diff --git a/eccodes/definitions/grib1/ls_labeling.82.def b/eccodes/definitions/grib1/ls_labeling.82.def new file mode 100644 index 00000000..3a0e2e40 --- /dev/null +++ b/eccodes/definitions/grib1/ls_labeling.82.def @@ -0,0 +1,19 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 Sep 2013 +# +######################### + +alias ls.dataType = marsType; + +if (localDefinitionNumber == 83 ) { + + concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",conceptsLocalDirAll,conceptsMasterDir); + concept_nofail ls.sort (unknown,"sortConcept.def",conceptsLocalDirAll,conceptsMasterDir); + concept_nofail ls.landtype (unknown,"landTypeConcept.def",conceptsLocalDirAll,conceptsMasterDir); + concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",conceptsLocalDirAll,conceptsMasterDir); + +} + diff --git a/eccodes/definitions/grib1/mars_labeling.23.def b/eccodes/definitions/grib1/mars_labeling.23.def new file mode 100644 index 00000000..d373496b --- /dev/null +++ b/eccodes/definitions/grib1/mars_labeling.23.def @@ -0,0 +1 @@ +# (C) Copyright 2005- ECMWF. diff --git a/eccodes/definitions/grib1/mars_labeling.4.def b/eccodes/definitions/grib1/mars_labeling.4.def new file mode 100644 index 00000000..279943ae --- /dev/null +++ b/eccodes/definitions/grib1/mars_labeling.4.def @@ -0,0 +1,193 @@ +constant P_INST = 0; +constant P_TAVG = 1; +constant P_TACC = 3; + +constant TYPE_AN = 2; +constant TYPE_FC = 9; +constant TYPE_CF = 10; +constant TYPE_PF = 11; +constant TYPE_FF = 25; +constant TYPE_OF = 26; +constant TYPE_OR = 70; +constant TYPE_FX = 71; + +constant coordAveraging0 = "inst"; +constant coordAveraging1 = "tavg"; +constant coordAveraging2 = 2; +constant coordAveraging3 = "tacc"; +constant coordAveragingTims = "tims"; + +constant isectionNumber2 = "h"; +constant isectionNumber3 = "m"; +constant isectionNumber4 = "z"; + + +constant tsectionNumber3 = "v"; +constant tsectionNumber4 = "z"; +constant tsectionNumber5 = "m"; + +constant GRIB_DEPTH = 2; +constant GRIB_LONGITUDE = 3; +constant GRIB_LATITUDE = 4; + +meta verificationDate g1verificationdate(dataDate, dataTime, endStep) : read_only; + + +if(horizontalCoordinateDefinition == 0) +{ + + if(coordinate1Flag == 1 ) + { + +# range + + + if(averaging1Flag == P_TAVG ){ + if( + marsType == TYPE_OR + || marsType == TYPE_FC + || marsType == TYPE_FF + || marsType == TYPE_FX + ) + { + meta marsRange evaluate((coordinate1End - coordinate1Start)/3600); + alias mars.range = marsRange; + } + } +# section + + if(coordinate2Flag == 2) { alias mars.section = isectionNumber2;} + if(coordinate2Flag == 3) { alias mars.section = isectionNumber3;} + if(coordinate2Flag == 4) { alias mars.section = isectionNumber4;} + +# levelist latitude longitude + + if(coordinate2Flag == GRIB_DEPTH){ + meta marsLevelist divdouble( coordinate2Start,1000 ); + meta roundedMarsLevelist round( marsLevelist ,1000); + alias mars.levelist = roundedMarsLevelist ; + + } + if(coordinate2Flag == GRIB_LONGITUDE){ + meta marsLongitude divdouble( coordinate2Start,1000000 ); + meta roundedMarsLongitude round( marsLongitude ,1000); + alias mars.longitude = roundedMarsLongitude ; + } + + if(coordinate2Flag == GRIB_LATITUDE){ + meta marsLatitude divdouble( coordinate2Start,1000000 ); + + meta roundedMarsLatitude round( marsLatitude ,1000); + alias mars.latitude = roundedMarsLatitude ; + } + + +#product + if(averaging1Flag == 0) { alias mars.product = coordAveraging0;} + if(averaging1Flag == 1) { alias mars.product = coordAveraging1;} + if(averaging1Flag == 2) { alias mars.product = coordAveraging2;} + if(averaging1Flag == 3) { alias mars.product = coordAveraging3;} + +# date + if( + (marsType == TYPE_OR && averaging1Flag == P_TAVG) + || (marsType == TYPE_OR && averaging1Flag == P_TACC) + || (marsType == TYPE_FX && averaging1Flag == P_TAVG) + ) + { + #remove mars.date; + alias mars.date = verificationDate; + #remove mars.step; + constant stepZero = 0; + alias mars.step = stepZero; + } + + + } + else + { + + meta coordinateIndexNumber evaluate(coordinate4Flag+coordinate3Flag); + +# levelist latitude longitude + + if(coordinateIndexNumber== 3) + { + meta marsLatitude divdouble( coordinate1Start,1000000); + meta marsLongitude divdouble( coordinate2Start,1000000); + + meta roundedMarsLatitude round( marsLatitude ,1000); + meta roundedMarsLongitude round( marsLongitude ,1000); + + alias mars.latitude = roundedMarsLatitude ; + alias mars.longitude = roundedMarsLongitude ; + + } + + if(coordinateIndexNumber == 4) + { + meta marsLevelist divdouble( coordinate1Start,1000); + meta marsLatitude divdouble( coordinate2Start,1000000); + + meta roundedMarsLevelist round( marsLevelist ,1000); + meta roundedMarsLatitude round( marsLatitude ,1000); + + alias mars.levelist = roundedMarsLevelist ; + alias mars.latitude = roundedMarsLatitude ; + } + + if(coordinateIndexNumber == 5) + { + meta marsLevelist divdouble( coordinate1Start,1000); + meta marsLongitude divdouble( coordinate2Start,1000000); + + meta roundedMarsLevelist round( marsLevelist ,1000); + meta roundedMarsLongitude round( marsLongitude ,1000); + + alias mars.levelist = roundedMarsLevelist ; + alias mars.longitude = roundedMarsLongitude ; + + } + +# section + + if(coordinateIndexNumber == 3) { alias mars.section = tsectionNumber3;} + if(coordinateIndexNumber == 4) { alias mars.section = tsectionNumber4;} + if(coordinateIndexNumber == 5) { alias mars.section = tsectionNumber5;} + +# range + if(averaging1Flag == P_INST){ + if( + (marsType == TYPE_OR) + ||(marsType == TYPE_FC) + ||(marsType == TYPE_CF) + ||(marsType == TYPE_PF) + ||(marsType == TYPE_FF) + ||(marsType == TYPE_OF) + ) + { + if( coordinate4Flag == 1){ + meta marsRange evaluate((coordinate4OfLastGridPoint - coordinate4OfFirstGridPoint)/3600); + }else{ + + meta marsRange evaluate((coordinate3OfLastGridPoint - coordinate3OfFirstGridPoint)/3600); + } + + alias mars.range = marsRange; + } + } + +# product + alias mars.product = coordAveragingTims; +# date + + if(marsType == TYPE_OR && averaging1Flag == P_INST){ + + #remove mars.date; + alias mars.date = verificationDate; + #remove mars.step; + constant stepZero = 0; + alias mars.step =stepZero; + } + } +} diff --git a/eccodes/definitions/grib1/mars_labeling.82.def b/eccodes/definitions/grib1/mars_labeling.82.def new file mode 100644 index 00000000..65c785da --- /dev/null +++ b/eccodes/definitions/grib1/mars_labeling.82.def @@ -0,0 +1,50 @@ +######################### +# +# author: Sebastien Villaume +# created: 6 Oct 2011 +# modified: 13 Sep 2013 +# +######################### + +constant conceptsMasterMarsDir="mars" : hidden; +constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; + +########################## +# # +# Base MARS keywors # +# # +########################## + +alias mars.class = marsClass; +alias mars.type = marsType; +alias mars.stream = marsStream; +alias mars.model = marsModel; +alias mars.expver = experimentVersionNumber; +alias mars.domain = globalDomain; + +######################### +# # +# local section 82 # +# # +######################### + +### nothing needed here... + +######################### +# # +# local section 83 # +# # +######################### + +if ( localDefinitionNumber == 83 ) { + + alias mars.sort = matchSort; + alias mars.timerepres = matchTimeRepres; + alias mars.landtype = matchLandType; + alias mars.aerosolbinnumber = matchAerosolBinNumber; + + concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); + alias mars.aerosolpacking = matchAerosolPacking; + +} + diff --git a/eccodes/definitions/grib1/mars_labeling.def b/eccodes/definitions/grib1/mars_labeling.def new file mode 100644 index 00000000..51eae2bd --- /dev/null +++ b/eccodes/definitions/grib1/mars_labeling.def @@ -0,0 +1,14 @@ +codetable[1] marsClass "mars/class.table" = "od" : dump, string_type, lowercase; +codetable[1] marsType "mars/type.table" = "an" : dump, string_type, lowercase; +codetable[2] marsStream "mars/stream.table" = "oper" : dump, string_type, lowercase ; +ksec1expver[4] experimentVersionNumber = "0001" : dump; + +#alias typeOfProcessedData=marsType; +alias ls.dataType = marsType; + +alias mars.class = marsClass; +alias mars.type = marsType; +alias mars.stream = marsStream; +alias mars.expver = experimentVersionNumber; + +alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions/grib1/name.def b/eccodes/definitions/grib1/name.def new file mode 100644 index 00000000..9e7a0b29 --- /dev/null +++ b/eccodes/definitions/grib1/name.def @@ -0,0 +1,2059 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'Stream function' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'Wind speed' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pressure' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'Geopotential' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'U component of wind' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'V component of wind' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'Divergence' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'Evaporation' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } +#Runoff +'Runoff' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'large scale precipitation' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'Snow depth' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'Large scale snow' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'Convective snow' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'Cloud water' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } +#Albedo +'Albedo' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'Virtual temperature' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 3 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 3 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current ' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current ' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'Water temperature' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Salinity +'Salinity' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'Ice cover (1=ice, 0=no ice)' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 3 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 3 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'Net short-wave radiation flux(atmosph.top)' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } +#Orography +'Orography' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'Total Precipitation' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'Stream function' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'Wind speed' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pressure' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'Geopotential' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'U component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'V component of wind' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'Divergence' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'Evaporation' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } +#Runoff +'Runoff' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'large scale precipitation' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'Snow depth' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'Large scale snow' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'Convective snow' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'Cloud water' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } +#Albedo +'Albedo' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current ' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current ' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'Water temperature' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Salinity +'Salinity' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'Ice cover (1=ice, 0=no ice)' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 2 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 2 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'Net short-wave radiation flux(atmosph.top)' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } +#Orography +'Orography' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'Total Precipitation' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'Stream function' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'Velocity potential' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'Potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'Wind speed' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'Geopotential' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'U component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'V component of wind' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'Specific humidity' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Surface pressure' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'Divergence' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'Geopotential Height' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'Relative humidity' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10 metre U wind component' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10 metre V wind component' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2 metre temperature' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'Surface roughness' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'Evaporation' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'Brightness temperature' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Runoff +'Runoff' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'Total column ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'large scale precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'Snow depth' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'Convective cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'Low cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'Medium cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'High cloud cover' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'Large scale snow' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'Latent heat flux' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'Sensible heat flux' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'Convective snow' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'Cloud water' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Albedo +'Albedo' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'Pressure tendency' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'Geometrical height' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'Standard deviation of height' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'Maximum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'Minimum temperature' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'Dew point temperature' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'Lapse rate' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'Visibility' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'Temperature anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pressure anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Wind direction' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'Absolute vorticity' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'Absolute divergence' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Direction of current' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'Speed of current' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'U-component of current ' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'V-component of current ' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'Precipitable water' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Vapour pressure' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Saturation deficit' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'Precipitation rate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'Snow fall rate water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'Mixed layer depth' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'Main thermocline depth' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'Water temperature' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'Deviation of sea-level from mean' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'Soil moisture content' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Salinity +'Salinity' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'Density' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'Ice cover (1=ice, 0=no ice)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'Ice thickness' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Direction of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'Speed of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'U-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'V-component of ice drift' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'Ice growth rate' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'Ice divergence' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'Snow melt' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'Signific.height,combined wind waves+swell' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Direction of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Primary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'Primary wave mean period' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Secondary wave direction' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'Net long-wave radiation flux (surface)' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'Net short-wave radiation flux(atmosph.top)' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'Net long-wave radiation flux(atmosph.top)' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'Global radiation flux' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'Momentum flux, u-component' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'Momentum flux, v-component' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'Wind mixing energy' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'Image data' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Orography +'Orography' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'Soil Moisture' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'Soil Temperature' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'Total Precipitation' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; +} diff --git a/eccodes/definitions/grib1/ocean.1.table b/eccodes/definitions/grib1/ocean.1.table new file mode 100644 index 00000000..2ccc5c31 --- /dev/null +++ b/eccodes/definitions/grib1/ocean.1.table @@ -0,0 +1,17 @@ +# CODE TABLE OCEAN 1 +0 0 bit0_off +0 1 bit0_on +1 0 bit1_off +1 1 bit1_on +2 0 bit2_off +2 1 bit2_on +3 0 bit3_off +3 1 bit3_on +4 0 bit4_off +4 1 bit4_on +5 0 bit5_off +5 1 bit5_on +6 0 bit6_off +6 1 bit6_on +7 0 absent +7 1 present diff --git a/eccodes/definitions/grib1/param.pl b/eccodes/definitions/grib1/param.pl new file mode 100755 index 00000000..93bc6c4f --- /dev/null +++ b/eccodes/definitions/grib1/param.pl @@ -0,0 +1,60 @@ +#!/usr/local/bin/perl56 -I/usr/local/lib/metaps/perl +use Data::Dumper; +use metdb qw(prod); + +use metdb::grib_parameters; + + +my @x = metdb::grib_parameters->all_fields; +print Dumper(\@x); +my $last; + +foreach my $p ( metdb::grib_parameters->find( + { }, + [qw(grib_originating_centre grib_code_table grib_parameter)])) +{ + my ($centre,$table) = ($p->get_grib_originating_centre,$p->get_grib_code_table); + my ($param,$abbr,$name,$unit) = ($p->get_grib_parameter, $p->get_mars_abbreviation,$p->get_long_name,$p->get_unit); + + $abbr = "-" unless($abbr); + + my $file = "2.$centre.$table.table"; + if($file ne $last) + { + open(OUT,">$file") or die "$file: $!"; + print OUT "# This file was automatically generated by $0\n"; + + $last = $file; + } + + print OUT join(" ",$param,lc($abbr),$name,"($unit)"), "\n"; +} + + +__END__ +'grib_originating_centre', +'grib_code_table', +'grib_parameter', +'mars_abbreviation', +'long_name', +'description', +'web_title', +'unit', +'comment', +'parameter_type', +'wind_corresponding_parameter', +'netcdf_name', +'netcdf_cf_approved', +'magics_abbreviated_text', +'magics_title', +'magics_offset', +'magics_factor', +'magics_scaled_unit', +'magics_contour_interval', +'magics_specification_group', +'magics_comment', +'dissemination_accuracy', +'dissemination', +'insert_date', +'update_date' + diff --git a/eccodes/definitions/grib1/paramId.def b/eccodes/definitions/grib1/paramId.def new file mode 100644 index 00000000..ed387116 --- /dev/null +++ b/eccodes/definitions/grib1/paramId.def @@ -0,0 +1,2059 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'1' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'2' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'3' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'10' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } +#Pressure +'54' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'60' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'129' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'130' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'131' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'132' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'133' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'134' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'135' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'138' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'151' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'155' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'156' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'157' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'165' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'166' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'167' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'172' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'173' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'182' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'194' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } +#Runoff +'205' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'206' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'3062' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'3066' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'3072' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'3073' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'3074' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'3075' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'3079' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'3121' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'3122' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'3123' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'260011' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'260102' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } +#Albedo +'260509' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Virtual temperature +'300012' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'300012' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'300012' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } +#Pressure tendency +'3003' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'3008' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'3009' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'3015' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'3016' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'3017' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'3018' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'3019' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } +#Visibility +'3020' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'3021' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'3022' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'3023' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'3025' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'3026' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'3027' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'3028' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'3029' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'3030' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'3031' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'3037' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'3038' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'3041' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'3042' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'3045' = { + table2Version = 3 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'3046' = { + table2Version = 3 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'3047' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'3048' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'3049' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'3050' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'3053' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'3054' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'3055' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'3056' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'3059' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'3060' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'3063' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'3064' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'3067' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'3068' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'3069' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'3070' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'3080' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'3082' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'3086' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Salinity +'3088' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } +#Density +'3089' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'3091' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'3092' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'3093' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'3094' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'3095' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'3096' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'3097' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'3098' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'3099' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'3100' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'3101' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'3102' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'3103' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'3104' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'3105' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'3106' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'3107' = { + table2Version = 3 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'3108' = { + table2Version = 3 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'3109' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'3110' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'3112' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'3113' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'3114' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'3115' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'3116' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'3117' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'3119' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'3120' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'3124' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'3125' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'3126' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } +#Image data +'3127' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } +#Orography +'228002' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'228039' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'228139' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'228144' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'228228' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'1' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'2' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'3' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'10' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } +#Pressure +'54' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'60' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'129' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'130' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'131' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'132' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'133' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'134' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'135' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'138' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'151' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'155' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'156' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'157' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'165' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'166' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'167' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'172' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'173' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'182' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'194' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } +#Runoff +'205' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'206' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'3062' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'3066' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'3072' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'3073' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'3074' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'3075' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'3079' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'3121' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'3122' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'3123' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'260011' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'260102' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } +#Albedo +'260509' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'3003' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'3008' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'3009' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'3015' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'3016' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'3017' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'3018' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'3019' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } +#Visibility +'3020' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'3021' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'3022' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'3023' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'3025' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'3026' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'3027' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'3028' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'3029' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'3030' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'3031' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'3037' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'3038' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'3041' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'3042' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'3045' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'3046' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'3047' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'3048' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'3049' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'3050' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'3053' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'3054' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'3055' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'3056' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'3059' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'3060' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'3063' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'3064' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'3067' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'3068' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'3069' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'3070' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'3080' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'3082' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'3086' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Salinity +'3088' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } +#Density +'3089' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'3091' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'3092' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'3093' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'3094' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'3095' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'3096' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'3097' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'3098' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'3099' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'3100' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'3101' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'3102' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'3103' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'3104' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'3105' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'3106' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'3107' = { + table2Version = 2 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'3108' = { + table2Version = 2 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'3109' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'3110' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'3112' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'3113' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'3114' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'3115' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'3116' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'3117' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'3119' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'3120' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'3124' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'3125' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'3126' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } +#Image data +'3127' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } +#Orography +'228002' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'228039' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'228139' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'228144' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'228228' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'1' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'2' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'3' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'10' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#Pressure +'54' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'60' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'129' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'130' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'131' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'132' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'133' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'134' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'135' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'138' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'151' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'155' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'156' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'157' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'165' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'166' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'167' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'168' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'172' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'173' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'182' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'194' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Runoff +'205' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'206' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'3062' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'3066' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'3072' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'3073' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'3074' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'3075' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'3079' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'3121' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'3122' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'3123' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'260011' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'260102' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Albedo +'260509' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'3003' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'3008' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'3009' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'3015' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'3016' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'3017' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'3018' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'3019' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'3020' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'3021' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'3022' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'3023' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'3025' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'3026' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'3027' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'3028' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'3029' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'3030' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'3031' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'3037' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'3038' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'3041' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'3042' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'3045' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'3046' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'3047' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'3048' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'3049' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'3050' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'3053' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'3054' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'3055' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'3056' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'3059' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'3060' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'3063' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'3064' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'3067' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'3068' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'3069' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'3070' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'3080' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'3082' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'3086' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Salinity +'3088' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'3089' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'3091' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'3092' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'3093' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'3094' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'3095' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'3096' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'3097' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'3098' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'3099' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'3100' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'3101' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'3102' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'3103' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'3104' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'3105' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'3106' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'3107' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'3108' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'3109' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'3110' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'3112' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'3113' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'3114' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'3115' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'3116' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'3117' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'3119' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'3120' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'3124' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'3125' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'3126' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'3127' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'160199' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Orography +'228002' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'228039' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'228139' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'228144' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'228164' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'228228' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; +} diff --git a/eccodes/definitions/grib1/precision.table b/eccodes/definitions/grib1/precision.table new file mode 100644 index 00000000..5526a4f7 --- /dev/null +++ b/eccodes/definitions/grib1/precision.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 32bits IEEE 32-bit +2 64bits IEEE 64-bit +3 128bits IEEE 128-bit +255 255 Missing diff --git a/eccodes/definitions/grib1/predefined_grid.def b/eccodes/definitions/grib1/predefined_grid.def new file mode 100644 index 00000000..52298f85 --- /dev/null +++ b/eccodes/definitions/grib1/predefined_grid.def @@ -0,0 +1,129 @@ +# Predefined grid 21 + +#position offsetSection2; +#transient section2Length=0 ; + +template predefined_grid_values "grib1/grid_[gridDefinition].def"; + +# NV -- number of vertical coordinate parameters +constant numberOfVerticalCoordinateValues=0 ; + +constant neitherPresent = 255; + +alias NV = numberOfVerticalCoordinateValues; +alias numberOfCoordinatesValues= numberOfVerticalCoordinateValues; + +# PV -- location +# (octet number) +constant pvlLocation = 255; + +# Data representation type +constant dataRepresentationType = 0; + +# Grid definition +# (according to data representation type - octet 6 above) + +# grib 1 -> 2 +constant gridDefinitionTemplateNumber = 0; + +# START 1/grid_definition.latitude_longitude_grid ---------------------------------------------------------------------- +# GRID DEFINITION latitude/longitude grid (or equidistant cylindrical) + +alias numberOfPointsAlongAParallel=Ni; +alias numberOfPointsAlongAMeridian=Nj; + +# Latitudes and Longitudes of the first and the last points +# Resolution and component flags + +# La1 - latitude of first grid point +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; +alias Lo1 = longitudeOfFirstGridPoint; + +# Resolution and component flags +constant resolutionAndComponentFlags = 128; + +# Not flagbit numbers 7 to 0, while wmo is 1 to 8 +constant ijDirectionIncrementGiven = 1 ; + +# For grib 1 to 2 +alias iDirectionIncrementGiven = ijDirectionIncrementGiven; +alias jDirectionIncrementGiven = ijDirectionIncrementGiven; +alias DiGiven = ijDirectionIncrementGiven; +alias DjGiven = ijDirectionIncrementGiven; + +constant earthIsOblate = 0; +constant resolutionAndComponentFlags3 = 0; +constant resolutionAndComponentFlags4 = 0; +constant uvRelativeToGrid = 0; +constant resolutionAndComponentFlags6 = 0; +constant resolutionAndComponentFlags7 = 0; +constant resolutionAndComponentFlags8 = 0; + +# La2 - latitude of last grid point +meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; +alias La2 = latitudeOfLastGridPoint; + +# Lo2 - longitude of last grid point +meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; +alias Lo2 = longitudeOfLastGridPoint; + +alias Dj = jDirectionIncrement; +alias Di = iDirectionIncrement; + +# Scanning mode +constant scanningMode = 64; + +# Not flagbit numbers 7 to 0, while wmo is 1 to 8 +constant iScansNegatively = 0 ; +constant jScansPositively = 1 ; +constant jPointsAreConsecutive = 0; +constant iScansPositively = 1; + +constant scanningMode4 = 0; +constant scanningMode5 = 0; +constant scanningMode6 = 0; +constant scanningMode7 = 0; +constant scanningMode8 = 0; + +meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, + jScansPositively, + latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, + numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : read_only; + +meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, + iScansPositively, + longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, + Ni,oneConstant,grib1divider,1) : read_only; + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; +alias DjInDegrees = jDirectionIncrementInDegrees; + +alias numberOfPoints=numberOfDataPoints; +#alias ls.valuesCount=numberOfValues; + +# END 1/grid_definition.latitude_longitude_grid ---------------------------------------------------------------------- +constant PVPresent = 0; +constant PLPresent = 0; +constant reducedGrid =0; + +# we always include the bitmap keys if a GDS is not present +# Number of unused bits at end of Section 3 +constant numberOfUnusedBitsAtEndOfSection3 = 0; + +# Table reference: +constant tableReference = 0; + +#position offsetBeforeBitmap; +meta bitmap gds_not_present_bitmap( missingValue,numberOfValues, + numberOfPoints, + latitudeOfFirstGridPoint, + Ni,numberOfUnusedBitsAtEndOfSection3) : read_only; + diff --git a/eccodes/definitions/grib1/regimes.table b/eccodes/definitions/grib1/regimes.table new file mode 100644 index 00000000..d9fd1a66 --- /dev/null +++ b/eccodes/definitions/grib1/regimes.table @@ -0,0 +1,5 @@ +# CODE TABLE Climatological regimes +1 1 Positive NAO +2 2 Scandinavian blocking +3 3 Negative NAO +4 4 Atlantic Ridge diff --git a/eccodes/definitions/grib1/resolution_flags.def b/eccodes/definitions/grib1/resolution_flags.def new file mode 100644 index 00000000..6c56f24b --- /dev/null +++ b/eccodes/definitions/grib1/resolution_flags.def @@ -0,0 +1,32 @@ +# Resolution and component flags +flags[1] resolutionAndComponentFlags 'grib1/7.table' : edition_specific,no_copy ; + +# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 +# (most significant to least significant) + +flagbit ijDirectionIncrementGiven(resolutionAndComponentFlags,7) = 1 ; + +# For grib 1 to 2 +alias iDirectionIncrementGiven = ijDirectionIncrementGiven; +alias jDirectionIncrementGiven = ijDirectionIncrementGiven; +alias DiGiven = ijDirectionIncrementGiven; +alias DjGiven = ijDirectionIncrementGiven; + +flagbit earthIsOblate(resolutionAndComponentFlags,6) : dump; +if (earthIsOblate) { + # Earth assumed oblate spheroidal with size as determined by IAU in 1965 + transient earthMajorAxis = 6378160.0; + transient earthMinorAxis = 6356775.0; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} + + +flagbit resolutionAndComponentFlags3(resolutionAndComponentFlags,5) = 0: read_only; +flagbit resolutionAndComponentFlags4(resolutionAndComponentFlags,4) = 0: read_only; + +flagbit uvRelativeToGrid(resolutionAndComponentFlags,3) : dump; + +flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,2) = 0: read_only; +flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,1) = 0: read_only; +flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,0) = 0: read_only; diff --git a/eccodes/definitions/grib1/scanning_mode.def b/eccodes/definitions/grib1/scanning_mode.def new file mode 100644 index 00000000..27ad7fd3 --- /dev/null +++ b/eccodes/definitions/grib1/scanning_mode.def @@ -0,0 +1,37 @@ +# Scanning mode +flags[1] scanningMode 'grib1/8.table' : edition_specific,no_copy; + +# Not flagbit numbers 7 to 0, while wmo is 1 to 8 +flagbit iScansNegatively(scanningMode,7) : dump; +flagbit jScansPositively(scanningMode,6) : dump; +flagbit jPointsAreConsecutive(scanningMode,5) : dump; +constant alternativeRowScanning=0 : dump; +transient iScansPositively = !iScansNegatively : constraint; + +alias geography.iScansNegatively=iScansNegatively; +alias geography.jScansPositively=jScansPositively; +alias geography.jPointsAreConsecutive=jPointsAreConsecutive; + +flagbit scanningMode4(scanningMode,4) = 0: read_only; +flagbit scanningMode5(scanningMode,3) = 0: read_only; +flagbit scanningMode6(scanningMode,2) = 0: read_only; +flagbit scanningMode7(scanningMode,1) = 0: read_only; +flagbit scanningMode8(scanningMode,0) = 0: read_only; + +meta swapScanningX change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + xFirst,xLast,x) : edition_specific,hidden,no_copy; +alias swapScanningLon = swapScanningX; + +meta swapScanningY change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + yFirst,yLast,y) : edition_specific,hidden,no_copy; +alias swapScanningLat = swapScanningY; + +if (jPointsAreConsecutive) { + alias numberOfRows=Ni; + alias numberOfColumns=Nj; +} else { + alias numberOfRows=Nj; + alias numberOfColumns=Ni; +} diff --git a/eccodes/definitions/grib1/section.0.def b/eccodes/definitions/grib1/section.0.def new file mode 100644 index 00000000..dd4673c1 --- /dev/null +++ b/eccodes/definitions/grib1/section.0.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +label "_empty"; diff --git a/eccodes/definitions/grib1/section.1.def b/eccodes/definitions/grib1/section.1.def new file mode 100644 index 00000000..1ed21d91 --- /dev/null +++ b/eccodes/definitions/grib1/section.1.def @@ -0,0 +1,327 @@ +constant ECMWF = 98 : hidden; +constant ECMWF_s = "ecmf" : hidden; +constant WMO= 0; +constant conceptsMasterDir="grib1" : hidden; +constant conceptsLocalDirECMF="grib1/localConcepts/ecmf" : hidden; +constant conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; + +constant tablesMasterDir="grib1" : hidden; +constant tablesLocalDir="grib1/local/[centre:s]" : hidden; + +# ECC-806: Local concepts precedence order +if (preferLocalConcepts) { + constant conceptsDir1 = conceptsMasterDir : hidden; + constant conceptsDir2 = conceptsLocalDirAll : hidden; +} else { + constant conceptsDir1 = conceptsLocalDirAll : hidden; + constant conceptsDir2 = conceptsMasterDir : hidden; +} + +transient productionStatusOfProcessedData=0; +position offsetSection1; +section_length[3] section1Length ; +meta section1Pointer section_pointer(offsetSection1,section1Length,1); +constant wrongPadding=0; + +# GRIB tables Version No. +# (currently 3 for international exchange) +unsigned[1] table2Version : edition_specific,dump; +alias gribTablesVersionNo=table2Version; + + +#assert(section1Length > 5); + +# Identification of originating/generating centre +codetable[1] centre 'common/c-1.table' : dump,string_type; +alias identificationOfOriginatingGeneratingCentre=centre; +meta centreDescription codetable_title(centre); + +alias parameter.centre=centre; +alias originatingCentre=centre; +alias ls.centre = centre; + +# Generating process identification number +# (allocated by originating centre) +unsigned[1] generatingProcessIdentifier : dump ; +alias generatingProcessIdentificationNumber=generatingProcessIdentifier; +alias process=generatingProcessIdentifier; + +unsigned[1] gridDefinition = 255 : edition_specific ; +flags[1] section1Flags 'grib1/1.table' = 128 : hidden ; # = section 2 present + +alias centreForTable2=centre; + +codetable[1] indicatorOfParameter 'grib1/2.[centreForTable2:l].[table2Version:l].table' : edition_specific,no_copy,dump; +meta parameterName codetable_title(indicatorOfParameter); +meta parameterUnits codetable_units(indicatorOfParameter); + +# Local comes before Master to give precedence to the local, centre-specific table +codetable[1] indicatorOfTypeOfLevel ('3.table',tablesLocalDir,tablesMasterDir) : edition_specific,no_copy,dump,string_type; +alias levelType=indicatorOfTypeOfLevel; + +transient pressureUnits="hPa"; + +concept_nofail typeOfLevelECMF (unknown, "typeOfLevel.def",conceptsMasterDir,conceptsLocalDirECMF); +concept_nofail vertical.typeOfLevel (typeOfLevelECMF, "typeOfLevel.def",conceptsDir2,conceptsDir1); + +when ( typeOfLevel is "isobaricInPa" ) { set pressureUnits="Pa"; } +else { set pressureUnits="hPa";} + +alias ls.typeOfLevel=typeOfLevel; + +if ( indicatorOfTypeOfLevel == 101 or + indicatorOfTypeOfLevel == 104 or + indicatorOfTypeOfLevel == 106 or + indicatorOfTypeOfLevel == 108 or + indicatorOfTypeOfLevel == 110 or + indicatorOfTypeOfLevel == 112 or + indicatorOfTypeOfLevel == 114 or + indicatorOfTypeOfLevel == 116 or + indicatorOfTypeOfLevel == 120 or + indicatorOfTypeOfLevel == 121 or + indicatorOfTypeOfLevel == 128 or + indicatorOfTypeOfLevel == 141 ) +{ + unsigned[1] topLevel : can_be_missing,dump; + unsigned[1] bottomLevel : can_be_missing,dump; + meta levels sprintf("%d-%d",topLevel,bottomLevel) : dump; + alias ls.levels=levels; + alias vertical.level = topLevel; + alias vertical.topLevel = topLevel; + alias vertical.bottomLevel = bottomLevel; +} +else +{ + unsigned[2] level : can_be_missing,dump; + if (indicatorOfTypeOfLevel == 210) { + meta marsLevel scale(level,oneConstant,hundred) : read_only; + alias mars.levelist = marsLevel; + } + alias vertical.level=level; + alias vertical.topLevel = level; + alias vertical.bottomLevel = level; + alias ls.level=level; + alias lev=level; +} + +if( indicatorOfTypeOfLevel == 109 || + indicatorOfTypeOfLevel == 100 || + indicatorOfTypeOfLevel == 110 || + indicatorOfTypeOfLevel == 113 || + indicatorOfTypeOfLevel == 117) +{ + alias mars.levelist = level; +} + +unsigned[1] yearOfCentury : edition_specific ; +unsigned[1] month ; +unsigned[1] day ; +unsigned[1] hour ; +unsigned[1] minute ; +transient second = 0; + +codetable[1] unitOfTimeRange 'grib1/4.table' = 1 : edition_specific; +alias unitOfTime=unitOfTimeRange; +alias indicatorOfUnitOfTimeRange=unitOfTimeRange; + +unsigned[1] P1 : edition_specific; + +unsigned[1] P2 : edition_specific; + +# Local comes before Master to give precedence to the local, centre-specific table +codetable[1] timeRangeIndicator ('5.table',tablesLocalDir,tablesMasterDir) = 1 : dump,edition_specific; + +unsigned[2] numberIncludedInAverage; + +meta mybits bits(numberIncludedInAverage,0,12); + +unsigned[1] numberMissingFromAveragesOrAccumulations; +unsigned[1] centuryOfReferenceTimeOfData ; + +codetable[1] subCentre 'grib1/0.[centre].table' : dump; + +if(table2Version >= 128) { + _if (centre != 98 && subCentre == 98) { + alias centreForTable2 = subCentre; + } else { + alias centreForTable2 = centre; + } +} else { + alias centreForTable2 = WMO; +} + +#if ( subCentre == 98 ) { +# alias conceptsLocalDir=conceptsLocalDirECMF; +#} else { +# alias conceptsLocalDir=conceptsLocalDirAll; +#} + +concept paramIdECMF (defaultParameter,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; +concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type,dump; +# transient pid = paramId : hidden; + +concept cfNameECMF(defaultName,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; +concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; + +concept cfVarNameECMF(defaultName,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; +concept cfVarName(cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; + +concept unitsECMF(defaultName,"units.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,read_only; +concept units(unitsECMF,"units.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; + +concept nameECMF(defaultName,"name.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; +concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; + +signed[2] decimalScaleFactor :dump; +transient setLocalDefinition= 0 : no_copy; + +# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error +transient optimizeScaleFactor = 0; + +meta dataDate g1date(centuryOfReferenceTimeOfData,yearOfCentury,month,day) : dump; +meta year evaluate(dataDate / 10000) ; + +meta dataTime time(hour,minute,second) : dump; +meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; + +codetable[1] stepUnits 'stepUnits.table' = 1 : transient,dump,no_copy; + +concept_nofail stepType (timeRangeIndicator, "stepType.def", conceptsDir2, conceptsDir1); + +#alias stepTypeInternal=stepType; +#alias lengthOfTimeRange=numberIncludedInAverage; +#alias indicatorOfUnitForTimeRange=unitOfTimeRange; +#alias indicatorOfUnitForTimeIncrement=zero; +#alias timeIncrement=zero; + +#if (timeRangeIndicator==113) { +# alias lengthOfTimeRange=numberIncludedInAverage; +# alias indicatorOfUnitForTimeRange=unitOfTimeRange; +# alias indicatorOfUnitForTimeIncrement=unitOfTimeRange; +# alias timeIncrement=P2; +# alias forecastTime=P1; +#} + +#if (stepType is "accum") { +# transient accumulationRange=P2-P1; +# alias lengthOfTimeRange=accumulationRange; +# alias forecastTime=P1; +# alias indicatorOfUnitForTimeRange=unitOfTimeRange; +#} + +#conversion 1->2 +_if (stepType is "instant" ) { + alias productDefinitionTemplateNumber=zero; +} else { + alias productDefinitionTemplateNumber=eight; +} + +meta stepRange g1step_range(P1,P2,timeRangeIndicator,unitOfTimeRange,stepUnits,stepType) : dump; +meta startStep long_vector(stepRange,0) : dump,no_copy; +meta endStep long_vector(stepRange,1) : dump,no_copy; +meta stepHumanReadable step_human_readable(stepUnits, stepRange): hidden,no_copy; + +alias stepInHours = endStep; +alias ls.stepRange = stepRange; +alias ls.dataDate = dataDate; + +alias mars.step = endStep; +alias mars.date = dataDate; +alias mars.levtype = indicatorOfTypeOfLevel; +alias mars.time = dataTime; +#alias mars.param = paramId; +meta marsParam mars_param(paramId,gribTablesVersionNo,indicatorOfParameter): read_only,dump; +alias mars.param = marsParam; + +# GRIB-860: JRA55 rule for MARS. +# subCentre of 241 means Japanese Reanalysis Project +if (centre == 34 && subCentre == 241) +{ + alias mars.param = paramId; + + if (indicatorOfTypeOfLevel == 101) { + # See ECC-467 + constant sfc_levtype = "sfc"; + alias mars.levtype = sfc_levtype; + } +} + +meta time.validityDate validity_date(dataDate,dataTime,step,stepUnits); +meta time.validityTime validity_time(dataDate,dataTime,step,stepUnits); + +transient deleteLocalDefinition=0; + +if(((section1Length > 40) or new() or setLocalDefinition> 0) and deleteLocalDefinition==0) +{ + constant localUsePresent = 1 : edition_specific; + alias grib2LocalSectionPresent=present; + + if( (centre == ECMWF) or + (centre != ECMWF and + subCentre == ECMWF)) + { + pad reservedNeedNotBePresent(12); + codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.98.table' = 1 : dump; + template_nofail localDefinition "grib1/local.98.[localDefinitionNumber:l].def"; + if (changed(localDefinitionNumber)) { + if(!new() && localDefinitionNumber!=4 ) { + section_padding localExtensionPadding : read_only; + } + } + + template_nofail marsKeywords "mars/grib.[stream:s].[type:s].def"; + #template marsKeywords "mars/grib.[stream:s].[type:s].def"; + + } + else + { + if ( !new() || setLocalDefinition ) { + # Other centres + pad reservedNeedNotBePresent(12); + template_nofail localDefinition "grib1/local.[centre:l].def"; + + section_padding localExtensionPadding : read_only; + } + } +} +else +{ + constant localUsePresent = 0 : edition_specific; + # template defaultMarsLabeling "mars/default_labeling.def"; +} + +section_padding section1Padding : read_only; + +#if (!wrongPadding) { +# padtoeven evenpadding_sec1(offsetSection1,section1Length); +#} + +concept shortNameECMF (defaultShortName,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy; +concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1) : no_copy,dump; +meta ifsParam ifs_param(paramId,type); + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +alias parameter=paramId; +alias short_name=shortName; + +alias time.stepRange=stepRange; +alias time.stepUnits=stepUnits; +alias time.dataDate=dataDate; +alias time.dataTime=dataTime; +alias time.startStep=startStep; +alias time.endStep=endStep; +alias time.stepType=stepType; + +# ECC-457: GRIB1 to GRIB2 conversion +concept_nofail stepTypeForConversion (unknown, "stepTypeForConversion.def", conceptsDir2, conceptsDir1); +if (stepTypeForConversion is "accum" ) { + alias productDefinitionTemplateNumber=eight; +} + +meta md5Section1 md5(offsetSection1,section1Length); +# md5(start,length,blacklisted1,blacklisted2,...); +meta md5Product md5(offsetSection1,section1Length,gridDefinition,section1Flags,decimalScaleFactor); diff --git a/eccodes/definitions/grib1/section.2.def b/eccodes/definitions/grib1/section.2.def new file mode 100644 index 00000000..b1f2b98e --- /dev/null +++ b/eccodes/definitions/grib1/section.2.def @@ -0,0 +1,100 @@ +# START grib1::section +# SECTION 2, Grid description section +# Length of section + +position offsetSection2; +section_length[3] section2Length ; +meta section2Pointer section_pointer(offsetSection2,section2Length,2); +transient radius=6367470; +alias radiusOfTheEarth=radius; +alias radiusInMetres=radius; +transient shapeOfTheEarth=0: hidden; #ECC-811 + +# NV -- number of vertical coordinate parameters + +unsigned[1] numberOfVerticalCoordinateValues : dump ; + +constant neitherPresent = 255; + +alias NV = numberOfVerticalCoordinateValues; +alias numberOfCoordinatesValues= numberOfVerticalCoordinateValues; + +# PV -- location +# (octet number) + +unsigned[1] pvlLocation = 255; + +# Data representation type +codetable[1] dataRepresentationType 'grib1/6.table' = 0; +meta gridDefinitionDescription codetable_title(dataRepresentationType); + + +# Grid definition +# (according to data representation type - octet 6 above) +alias isRotatedGrid=zero; + +if (dataRepresentationType < 192) +{ + template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].def"; +} +else +{ + template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].[centre:l].def"; +} +position endGridDefinition; + +position offsetBeforePV; +transient PVPresent = ( NV > 0); + +if (pvlLocation != neitherPresent) +{ + padto padding_sec2_2(offsetSection2 + pvlLocation - 1); +} else { + padto padding_sec2_2(offsetSection2 + 32 ); +} + +if(PVPresent ) +{ + ibmfloat pv[NV] : dump; + alias vertical.pv=pv; +} + +position offsetBeforePL; + +transient PLPresent = (section2Length > (offsetBeforePL - offsetSection2)) + && (section2Length >= (Nj * 2 + offsetBeforePL - offsetSection2)) ; + +if(PLPresent) +{ + # For grib 1 -> 2 + constant numberOfOctectsForNumberOfPoints = 2; + constant interpretationOfNumberOfPoints = 1; + + unsigned[2] pl[Nj] : dump; + alias geography.pl=pl; +} + +if(PVPresent == 0 && PLPresent == 0) +{ + # pad to the end of the grid definiton as in documentation + # ( gribex compatibility ) + padto padding_sec2_1(offsetSection2 + 32); +} + +#when (PVPresent == 0) { set NV = 0;} +when ((PVPresent == 1) or (PLPresent==1)) { + set pvlLocation = offsetBeforePV - offsetSection2 + 1; +} +when ((PVPresent == 0) and (PLPresent==0)) { set pvlLocation = 255; } + +alias reducedGrid = PLPresent; + +# GRIB-534: To easily remove vertical coordinates, set this key to 1 +concept_nofail deletePV(unknown) { + "1" = { PVPresent=0; NV=0; } +} + +padtoeven padding_sec2_3(offsetSection2,section2Length); + +meta md5Section2 md5(offsetSection2,section2Length); +alias md5GridSection = md5Section2; diff --git a/eccodes/definitions/grib1/section.3.def b/eccodes/definitions/grib1/section.3.def new file mode 100644 index 00000000..152c9dcb --- /dev/null +++ b/eccodes/definitions/grib1/section.3.def @@ -0,0 +1,25 @@ +# SECTION 3, Bit-map section +position offsetSection3; +section_length[3] section3Length ; +meta section3Pointer section_pointer(offsetSection3,section3Length,3); + +# Number of unused bits at end of Section 3 +unsigned[1] numberOfUnusedBitsAtEndOfSection3 = 0: read_only; +alias unusedBitsInBitmap=numberOfUnusedBitsAtEndOfSection3; + +# Table reference: +unsigned[2] tableReference = 0 : dump; + +position offsetBeforeBitmap; +meta geography.bitmap g1bitmap( tableReference, + missingValue, + offsetSection3, + section3Length, + numberOfUnusedBitsAtEndOfSection3) : read_only,dump; + +position offsetAfterBitmap; + +padtoeven padding_sec3_1(offsetSection3,section3Length); +section_padding section3Padding; + +meta md5Section3 md5(offsetSection3,section3Length); diff --git a/eccodes/definitions/grib1/section.4.def b/eccodes/definitions/grib1/section.4.def new file mode 100644 index 00000000..aef4ec25 --- /dev/null +++ b/eccodes/definitions/grib1/section.4.def @@ -0,0 +1,245 @@ +# GRIB1 SECTION 4, Binary data section +# Length of section +position offsetSection4; + +# Due to a trick done by GRIBEX to support large GRIBs, we need a special treatment +# of the message length and of the section4 lenth, so instead of +# section_length[3] section4Length; +# we get: +g1_section4_length[3] section4Length(totalLength); + +meta section4Pointer section_pointer(offsetSection4,section4Length,4); + +g1_half_byte_codeflag halfByte; +flags[1] dataFlag "grib1/11.table" = 0 : read_only; +signed[2] binaryScaleFactor = 0 : read_only,dump; +ibmfloat referenceValue : read_only,dump; + +meta referenceValueError reference_value_error(referenceValue,ibm); + +flagbit sphericalHarmonics(dataFlag,7) : dump; +flagbit complexPacking(dataFlag,6) : dump; +flagbit integerPointValues(dataFlag,5) : dump; +flagbit additionalFlagPresent(dataFlag,4) : edition_specific,dump; + +# second order packing +if (complexPacking && sphericalHarmonics==0) { + unsigned[1] widthOfFirstOrderValues : dump ; + unsigned [2] N1; + flags[1] extendedFlag "grib1/11-2.table"; + + # Undocumented use of octet 14 extededFlags + # Taken from d2ordr.F + # R------- only bit 1 is reserved. + # -0------ single datum at each grid point. + # -1------ matrix of values at each grid point. + # --0----- no secondary bit map. + # --1----- secondary bit map present. + # ---0---- second order values have constant width. + # ---1---- second order values have different widths. + # ----0--- no general extended second order packing. + # ----1--- general extended second order packing used. + # -----0-- standard field ordering in section 4. + # -----1-- boustrophedonic ordering in section 4. + # ------00 no spatial differencing used. + # ------01 1st-order spatial differencing used. + # ------10 2nd-order " " " . + # ------11 3rd-order " " " . + + #ksec4(8) + flagbit matrixOfValues (extendedFlag,6) = 0 : dump; + #ksec4(9) + flagbit secondaryBitmapPresent (extendedFlag,5) = 0 : dump; + #ksec4(10) + flagbit secondOrderOfDifferentWidth (extendedFlag,4) = 0 : dump; + #ksec4(12) + flagbit generalExtended2ordr (extendedFlag,3) = 0 : dump; + #ksec4(13) + flagbit boustrophedonicOrdering (extendedFlag,2) = 0 : dump; + #ksec4(14) + flagbit twoOrdersOfSPD (extendedFlag,1) = 0 : dump; + #ksec4(15) + flagbit plusOneinOrdersOfSPD (extendedFlag,0) = 0 : dump; + meta orderOfSPD evaluate(plusOneinOrdersOfSPD + 2 * twoOrdersOfSPD); + alias secondaryBitmap = secondaryBitmapPresent; + alias boustrophedonic=boustrophedonicOrdering; +} else { + transient orderOfSPD=2; + transient boustrophedonic=0; +} +transient hideThis=0; + +concept packingType { +#set uses the last one +#get returns the first match + "grid_simple" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_ieee" = { sphericalHarmonics = 0; complexPacking = 0; + integerPointValues=1; additionalFlagPresent=1;} + "spectral_complex" = { sphericalHarmonics = 1; complexPacking = 1; + additionalFlagPresent = 0; } + "spectral_simple" = { sphericalHarmonics = 1; complexPacking = 0; additionalFlagPresent = 0; + representationMode=1;} + "spectral_ieee" = { sphericalHarmonics = 1; complexPacking = 1; + additionalFlagPresent = 0;hideThis=1; } + "grid_simple_matrix" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 1;} + + "grid_second_order_row_by_row" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=0; } + "grid_second_order_constant_width" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=0; + matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } + "grid_second_order_general_grib1" = {sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } + "grid_second_order_no_SPD" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=0;} + "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} + "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} + "grid_second_order_no_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} + "grid_second_order_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} + "grid_second_order_SPD1" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=1; twoOrdersOfSPD=0; } + "grid_second_order_SPD2" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; } + "grid_second_order_SPD3" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=1; twoOrdersOfSPD=1; } + "grid_jpeg" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_png" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_ccsds" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_simple_log_preprocessing"= { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} +} : dump; + + +alias ls.packingType=packingType; +alias typeOfPacking=packingType; + +if( binaryScaleFactor == -32767) { + unsigned[1] bitsPerValue : dump ; + alias numberOfBitsContainingEachPackedValue = bitsPerValue; + + constant dataRepresentationTemplateNumber = 0; + constant bitMapIndicator = 0; + # For grib 1 -> 2 + position offsetBeforeData; + transient numberOfCodedValues=numberOfPoints; + meta values data_dummy_field( + section4Length, + offsetBeforeData, + offsetSection4, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + halfByte, + packingType, + grid_ieee,precision, + missingValue, + numberOfPoints, + bitmap + ) : dump; +} else { + template dataValues "grib1/data.[packingType:s].def"; +} + +position offsetAfterData; + +transient dataLength=(offsetAfterData-offsetBeforeData)/8; + +if (bitmapPresent==1) { + alias numberOfEffectiveValues=numberOfDataPoints; +} else { + alias numberOfEffectiveValues=numberOfCodedValues; +} + +_if (sphericalHarmonics) { + alias numberOfEffectiveValues=numberOfValues; +} + +meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; +meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; +alias setDecimalPrecision=changeDecimalPrecision; + +meta bitsPerValueAndRepack bits_per_value(values,bitsPerValue) : edition_specific; +alias setBitsPerValue=bitsPerValueAndRepack; + +meta scaleValuesBy scale_values(values,missingValue) : edition_specific; +meta offsetValuesBy offset_values(values,missingValue) : edition_specific; + +concept gridType { +#set uses the last one +#get returns the first match + "regular_ll" = {dataRepresentationType = 0; sphericalHarmonics = 0; PLPresent=0;} + "reduced_ll" = {dataRepresentationType = 0; sphericalHarmonics = 0; PLPresent=1; Ni=missing(); } + "mercator" = {dataRepresentationType = 1; sphericalHarmonics = 0; PLPresent=0; } + "lambert" = {dataRepresentationType = 3; sphericalHarmonics = 0; PLPresent=0; } + "polar_stereographic" = {dataRepresentationType = 5; sphericalHarmonics = 0; PLPresent=0; } + "UTM" = {dataRepresentationType = 6; sphericalHarmonics = 0; PLPresent=0; } + "simple_polyconic" = {dataRepresentationType = 7; sphericalHarmonics = 0; PLPresent=0; } + "albers" = {dataRepresentationType = 8; sphericalHarmonics = 0; PLPresent=0; } + "miller" = {dataRepresentationType = 8; sphericalHarmonics = 0; PLPresent=0; } + "rotated_ll" = {dataRepresentationType = 10; sphericalHarmonics = 0; PLPresent=0; } + "stretched_ll" = {dataRepresentationType = 20; sphericalHarmonics = 0; PLPresent=0; } + "stretched_rotated_ll" = {dataRepresentationType = 30; sphericalHarmonics = 0; PLPresent=0; } + "regular_gg" = {dataRepresentationType = 4; sphericalHarmonics = 0; PLPresent=0; } + "rotated_gg" = {dataRepresentationType = 14; sphericalHarmonics = 0; PLPresent=0; } + "stretched_gg" = {dataRepresentationType = 24; sphericalHarmonics = 0; PLPresent=0; } + "stretched_rotated_gg" = {dataRepresentationType = 34; sphericalHarmonics = 0; PLPresent=0; } + "reduced_gg" = {dataRepresentationType = 4; sphericalHarmonics = 0; + PLPresent=1; numberOfPointsAlongAParallel = missing(); + iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} + + "reduced_rotated_gg" = {dataRepresentationType = 14; sphericalHarmonics = 0; + PLPresent=1; numberOfPointsAlongAParallel = missing(); + iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} + "reduced_stretched_gg" = {dataRepresentationType = 24; sphericalHarmonics = 0; + PLPresent=1; numberOfPointsAlongAParallel = missing(); + iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} + "reduced_stretched_rotated_gg" = {dataRepresentationType = 34; sphericalHarmonics = 0; + PLPresent=1; numberOfPointsAlongAParallel = missing(); + iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} + +# For consistency add the prefix regular_ +"regular_rotated_gg" = { dataRepresentationType = 14; sphericalHarmonics = 0; PLPresent=0; } # = rotated_gg +"regular_stretched_gg" = { dataRepresentationType = 24; sphericalHarmonics = 0; PLPresent=0; } # = stretched_gg +"regular_stretched_rotated_gg" = { dataRepresentationType = 34; sphericalHarmonics = 0; PLPresent=0; } # = stretched_rotated_gg + + "sh" = {dataRepresentationType = 50; sphericalHarmonics = 1; PLPresent=0; } + "rotated_sh" = {dataRepresentationType = 60; sphericalHarmonics = 1; PLPresent=0; } + "stretched_sh" = {dataRepresentationType = 70; sphericalHarmonics = 1; PLPresent=0; } + "stretched_rotated_sh" = {dataRepresentationType = 80; sphericalHarmonics = 1; PLPresent=0; } + "space_view" = {dataRepresentationType = 90; sphericalHarmonics = 0; PLPresent=0; } + "unknown" = {PLPresent=0;} + "unknown_PLPresent" = {PLPresent=1;} +} : dump; + +alias ls.gridType=gridType; +alias geography.gridType=gridType; +alias typeOfGrid=gridType; + +meta projSourceString proj_string(gridType, 0): hidden; +meta projTargetString proj_string(gridType, 1): hidden; +alias projString = projTargetString : hidden; + +meta getNumberOfValues size(values) : edition_specific,dump ; + +if (complexPacking==0 || sphericalHarmonics==1) { + padtoeven padding_sec4_1(offsetSection4,section4Length) ; +} + +meta md5Section4 md5(offsetSection4,section4Length); +alias md5DataSection = md5Section4; diff --git a/eccodes/definitions/grib1/section.5.def b/eccodes/definitions/grib1/section.5.def new file mode 100644 index 00000000..3e019b5e --- /dev/null +++ b/eccodes/definitions/grib1/section.5.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +position offsetSection5; +constant section5Length=4; + +meta section5Pointer section_pointer(offsetSection5,section5Length,5); + +ascii[4] '7777' = "7777" : read_only; diff --git a/eccodes/definitions/grib1/sensitive_area_domain.def b/eccodes/definitions/grib1/sensitive_area_domain.def new file mode 100644 index 00000000..ef1aa0b7 --- /dev/null +++ b/eccodes/definitions/grib1/sensitive_area_domain.def @@ -0,0 +1,27 @@ +'h' = {northWestLatitudeOfVerficationArea=4630;northWestLongitudeOfVerficationArea=719;southEastLatitudeOfVerficationArea=2689;southEastLongitudeOfVerficationArea=3140;} +'h' = {northWestLatitudeOfVerficationArea=4760;northWestLongitudeOfVerficationArea=-2180;southEastLatitudeOfVerficationArea=2809;southEastLongitudeOfVerficationArea=250;} +'h' = {northWestLatitudeOfVerficationArea=4800;northWestLongitudeOfVerficationArea=-300;southEastLatitudeOfVerficationArea=2900;southEastLongitudeOfVerficationArea=2100;} +'h' = {northWestLatitudeOfVerficationArea=4940;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=2990;southEastLongitudeOfVerficationArea=2430;} +'h' = {northWestLatitudeOfVerficationArea=5020;northWestLongitudeOfVerficationArea=-720;southEastLatitudeOfVerficationArea=3070;southEastLongitudeOfVerficationArea=1700;} +'h' = {northWestLatitudeOfVerficationArea=5130;northWestLongitudeOfVerficationArea=-739;southEastLatitudeOfVerficationArea=3189;southEastLongitudeOfVerficationArea=1690;} +'h' = {northWestLatitudeOfVerficationArea=5130;northWestLongitudeOfVerficationArea=-739;southEastLatitudeOfVerficationArea=3189;southEastLongitudeOfVerficationArea=169;} +'h' = {northWestLatitudeOfVerficationArea=6200;northWestLongitudeOfVerficationArea=-2160;southEastLatitudeOfVerficationArea=4260;southEastLongitudeOfVerficationArea=260;} +'h' = {northWestLatitudeOfVerficationArea=6640;northWestLongitudeOfVerficationArea=-2340;southEastLatitudeOfVerficationArea=4690;southEastLongitudeOfVerficationArea=90;} +'i' = {northWestLatitudeOfVerficationArea=0;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=0;southEastLongitudeOfVerficationArea=0;} +'i' = {northWestLatitudeOfVerficationArea=4890;northWestLongitudeOfVerficationArea=730;southEastLatitudeOfVerficationArea=2940;southEastLongitudeOfVerficationArea=3160;} +'i' = {northWestLatitudeOfVerficationArea=4900;northWestLongitudeOfVerficationArea=-800;southEastLatitudeOfVerficationArea=2900;southEastLongitudeOfVerficationArea=1500;} +'i' = {northWestLatitudeOfVerficationArea=5020;northWestLongitudeOfVerficationArea=-2290;southEastLatitudeOfVerficationArea=3070;southEastLongitudeOfVerficationArea=130;} +'i' = {northWestLatitudeOfVerficationArea=5100;northWestLongitudeOfVerficationArea=-300;southEastLatitudeOfVerficationArea=3200;southEastLongitudeOfVerficationArea=2000;} +'i' = {northWestLatitudeOfVerficationArea=6140;northWestLongitudeOfVerficationArea=-950;southEastLatitudeOfVerficationArea=4190;southEastLongitudeOfVerficationArea=1479;} +'j' = {northWestLatitudeOfVerficationArea=4700;northWestLongitudeOfVerficationArea=-900;southEastLatitudeOfVerficationArea=2700;southEastLongitudeOfVerficationArea=1400;} +'j' = {northWestLatitudeOfVerficationArea=6660;northWestLongitudeOfVerficationArea=-1870;southEastLatitudeOfVerficationArea=4710;southEastLongitudeOfVerficationArea=550;} +'j' = {northWestLatitudeOfVerficationArea=6660;northWestLongitudeOfVerficationArea=-920;southEastLatitudeOfVerficationArea=4710;southEastLongitudeOfVerficationArea=1510;} +'k' = {northWestLatitudeOfVerficationArea=4910;northWestLongitudeOfVerficationArea=-1000;southEastLatitudeOfVerficationArea=2959;southEastLongitudeOfVerficationArea=1429;} +'k' = {northWestLatitudeOfVerficationArea=5030;northWestLongitudeOfVerficationArea=-59;southEastLatitudeOfVerficationArea=3089;southEastLongitudeOfVerficationArea=2370;} +'k' = {northWestLatitudeOfVerficationArea=5080;northWestLongitudeOfVerficationArea=-1050;southEastLatitudeOfVerficationArea=3139;southEastLongitudeOfVerficationArea=1379;} +'l' = {northWestLatitudeOfVerficationArea=4950;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=3009;southEastLongitudeOfVerficationArea=2430;} +'l' = {northWestLatitudeOfVerficationArea=5150;northWestLongitudeOfVerficationArea=-90;southEastLatitudeOfVerficationArea=3200;southEastLongitudeOfVerficationArea=2330;} +'l' = {northWestLatitudeOfVerficationArea=6300;northWestLongitudeOfVerficationArea=-1600;southEastLatitudeOfVerficationArea=4300;southEastLongitudeOfVerficationArea=800;} +'p' = {northWestLatitudeOfVerficationArea=6300;northWestLongitudeOfVerficationArea=-1900;southEastLatitudeOfVerficationArea=4400;southEastLongitudeOfVerficationArea=400;} +'i' = {northWestLatitudeOfVerficationArea=7100;northWestLongitudeOfVerficationArea=500;southEastLatitudeOfVerficationArea=5200;southEastLongitudeOfVerficationArea=2900;} + diff --git a/eccodes/definitions/grib1/shortName.def b/eccodes/definitions/grib1/shortName.def new file mode 100644 index 00000000..9e902d68 --- /dev/null +++ b/eccodes/definitions/grib1/shortName.def @@ -0,0 +1,2059 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'strf' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10u' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10v' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2t' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'lsp' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sde' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'cwat' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'vtmp' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } +#Pressure tendency +'ptend' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'h' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'mntsf' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'absv' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 3 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 3 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'prate' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'mld' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'wtmp' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'ssw' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Salinity +'s' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'icec' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'mdps' = { + table2Version = 3 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'mpps' = { + table2Version = 3 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'nswrt' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'strf' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10u' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10v' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2t' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'lsp' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sde' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'cwat' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'ptend' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'h' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'mntsf' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'absv' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'prate' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'mld' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'wtmp' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'ssw' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Salinity +'s' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'icec' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'mdps' = { + table2Version = 2 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'mpps' = { + table2Version = 2 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'nswrt' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'strf' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'pt' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'ws' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#Pressure +'pres' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'pv' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'z' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'t' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'u' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'v' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'q' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'sp' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'w' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'vo' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'msl' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'d' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gh' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'r' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'10u' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'10v' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'2t' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'2d' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'lsm' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'sr' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'e' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'btmp' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Runoff +'ro' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'tco3' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'lsp' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'sde' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'ccc' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'lcc' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'mcc' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'hcc' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'lssf' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'lhf' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'shf' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'bld' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'snoc' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'cwat' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Albedo +'al' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'ptend' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'h' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'hstdv' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'tmax' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'tmin' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'dpt' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'depr' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'lapr' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'vis' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'rdsp1' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'rdsp2' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'rdsp3' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'ta' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'presa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpa' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'wvsp1' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'wvsp2' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'wvsp3' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'wdir' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'mntsf' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'absv' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'absd' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'vucsh' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'vvcsh' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'dirc' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'spc' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'ucurr' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'vcurr' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'mixr' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'pwat' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'vp' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'satd' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'prate' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'tstm' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'acpcp' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'srweq' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'mld' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'tthdp' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'mthd' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'mtha' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'wtmp' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'dslm' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'ssw' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Salinity +'s' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'den' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'icec' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'icetk' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'diced' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'siced' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'uice' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'vice' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'iceg' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'iced' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'snom' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'swh' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'mdww' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'shww' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'mpww' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'swdir' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'swell' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'swper' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'mdps' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'mpps' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'dirsw' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'swp' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'nlwrs' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'nswrt' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'nlwrt' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'lwavr' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'swavr' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'grad' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'swrad' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'uflx' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'vflx' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'wmixe' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'imgd' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'vegrea' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Orography +'orog' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'sm' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'st' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'sf' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'tcc' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'tp' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; +} diff --git a/eccodes/definitions/grib1/stepType.def b/eccodes/definitions/grib1/stepType.def new file mode 100644 index 00000000..7c6b824b --- /dev/null +++ b/eccodes/definitions/grib1/stepType.def @@ -0,0 +1,27 @@ +# Concept stepType +# In case of a repeated entry: +# set uses the FIRST one +# get returns the LAST match + +"instant" = {timeRangeIndicator=0;} +"instant" = {timeRangeIndicator=10;} +"instant" = {timeRangeIndicator=1;} + +"avg" = {timeRangeIndicator=3;} + +"avgd" = {timeRangeIndicator=113;} +"avgfc" = {timeRangeIndicator=113;} + +"accum" = {timeRangeIndicator=4;} +"accum" = {timeRangeIndicator=2;} + +# Since grib1 has not min/max, we had to use our own convention +# therefore we set the centre to ECMWF (98) +"min" = {timeRangeIndicator=2;centre=98;} +"min" = {timeRangeIndicator=119;} +"max" = {timeRangeIndicator=2;centre=98;} +"max" = {timeRangeIndicator=118;} + +"diff" = {timeRangeIndicator=5;} +"avgua" = {timeRangeIndicator=123;} +"avgia" = {timeRangeIndicator=124;} diff --git a/eccodes/definitions/grib1/stepTypeForConversion.def b/eccodes/definitions/grib1/stepTypeForConversion.def new file mode 100644 index 00000000..c8b68e6c --- /dev/null +++ b/eccodes/definitions/grib1/stepTypeForConversion.def @@ -0,0 +1,3 @@ +# Concept stepTypeForConversion +# See ECC-457 +"unknown" = {dummy=0;} diff --git a/eccodes/definitions/grib1/tube_domain.def b/eccodes/definitions/grib1/tube_domain.def new file mode 100644 index 00000000..605a218b --- /dev/null +++ b/eccodes/definitions/grib1/tube_domain.def @@ -0,0 +1,7 @@ +'a' = { northLatitudeOfDomainOfTubing=70000; westLongitudeOfDomainOfTubing=332500; southLatitudeOfDomainOfTubing=40000; eastLongitudeOfDomainOfTubing=10000; } +'b' = { northLatitudeOfDomainOfTubing=72500; westLongitudeOfDomainOfTubing=0; southLatitudeOfDomainOfTubing=50000; eastLongitudeOfDomainOfTubing=45000; } +'c' = { northLatitudeOfDomainOfTubing=57500; westLongitudeOfDomainOfTubing=345000; southLatitudeOfDomainOfTubing=32500; eastLongitudeOfDomainOfTubing=17500; } +'d' = { northLatitudeOfDomainOfTubing=57500; westLongitudeOfDomainOfTubing=2500; southLatitudeOfDomainOfTubing=32500; eastLongitudeOfDomainOfTubing=42500; } +'e' = { northLatitudeOfDomainOfTubing=75000; westLongitudeOfDomainOfTubing=340000; southLatitudeOfDomainOfTubing=30000; eastLongitudeOfDomainOfTubing=45000; } +'f' = { northLatitudeOfDomainOfTubing=60000; westLongitudeOfDomainOfTubing=310000; southLatitudeOfDomainOfTubing=40000; eastLongitudeOfDomainOfTubing=0; } + diff --git a/eccodes/definitions/grib1/typeOfLevel.def b/eccodes/definitions/grib1/typeOfLevel.def new file mode 100644 index 00000000..bbfb9a4e --- /dev/null +++ b/eccodes/definitions/grib1/typeOfLevel.def @@ -0,0 +1,36 @@ +# ECMWF concept type of level +'surface' = {indicatorOfTypeOfLevel=1;} +'cloudBase' = {indicatorOfTypeOfLevel=2;} +'cloudTop' = {indicatorOfTypeOfLevel=3;} +'isothermZero' = {indicatorOfTypeOfLevel=4;} +'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} +'maxWind' = {indicatorOfTypeOfLevel=6;} +'tropopause' = {indicatorOfTypeOfLevel=7;} +'nominalTop' = {indicatorOfTypeOfLevel=8;} +'seaBottom' = {indicatorOfTypeOfLevel=9;} +'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} +'isobaricInPa' = {indicatorOfTypeOfLevel=210;} +'isobaricLayer' = {indicatorOfTypeOfLevel=101;} +'meanSea' = {indicatorOfTypeOfLevel=102;} +'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} +'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} +'heightAboveSea' = {indicatorOfTypeOfLevel=103;} +'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} +'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} +'heightAboveGround' = {indicatorOfTypeOfLevel=105;} +'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} +'sigma' = {indicatorOfTypeOfLevel=107;} +'sigmaLayer' = {indicatorOfTypeOfLevel=108;} +'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} +'hybrid' = {indicatorOfTypeOfLevel=109;} +'hybridLayer' = {indicatorOfTypeOfLevel=110;} +'depthBelowLand' = {indicatorOfTypeOfLevel=111;} +'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} +'theta' = {indicatorOfTypeOfLevel=113;} +'thetaLayer' = {indicatorOfTypeOfLevel=114;} +'pressureFromGround' = {indicatorOfTypeOfLevel=115;} +'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} +'potentialVorticity' = {indicatorOfTypeOfLevel=117;} +'depthBelowSea' = {indicatorOfTypeOfLevel=160;} +'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} +'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions/grib1/units.def b/eccodes/definitions/grib1/units.def new file mode 100644 index 00000000..4472eec8 --- /dev/null +++ b/eccodes/definitions/grib1/units.def @@ -0,0 +1,2059 @@ +# Automatically generated by ./create_def.pl, do not edit +#Stream function +'m**2 s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 3 ; + indicatorOfParameter = 6 ; + } +#Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 3 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 2 ; + } +#Divergence +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gpm' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'%' = { + table2Version = 3 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 3 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'m' = { + table2Version = 3 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 3 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 118 ; + } +#Runoff +'m' = { + table2Version = 3 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 76 ; + } +#Albedo +'%' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Virtual temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 12 ; + } +#Virtual temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 12 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 3 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 3 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 3 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 3 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 3 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'~' = { + table2Version = 3 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'m**2 s**-2' = { + table2Version = 3 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 3 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 3 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 3 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 3 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 3 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 3 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 3 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 3 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 3 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'(0 - 1)' = { + table2Version = 3 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 3 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 3 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 3 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 3 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 3 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 3 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 3 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 3 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 3 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 3 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 3 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + table2Version = 3 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 3 ; + indicatorOfParameter = 126 ; + } +#Image data +'~' = { + table2Version = 3 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'%' = { + table2Version = 3 ; + indicatorOfParameter = 87 ; + } +#Orography +'m' = { + table2Version = 3 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 3 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'K' = { + table2Version = 3 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'%' = { + table2Version = 3 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 3 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 2 ; + indicatorOfParameter = 6 ; + } +#Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 2 ; + } +#Divergence +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gpm' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'%' = { + table2Version = 2 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 2 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 2 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 118 ; + } +#Runoff +'m' = { + table2Version = 2 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 76 ; + } +#Albedo +'%' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 2 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 2 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 2 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 2 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 2 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'~' = { + table2Version = 2 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'m**2 s**-2' = { + table2Version = 2 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 2 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 2 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 2 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 2 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 2 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 2 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 2 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 2 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'(0 - 1)' = { + table2Version = 2 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 2 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 2 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 2 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 2 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 2 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 2 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 2 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 2 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 2 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 2 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 2 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + table2Version = 2 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 2 ; + indicatorOfParameter = 126 ; + } +#Image data +'~' = { + table2Version = 2 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'%' = { + table2Version = 2 ; + indicatorOfParameter = 87 ; + } +#Orography +'m' = { + table2Version = 2 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 2 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'K' = { + table2Version = 2 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'%' = { + table2Version = 2 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 2 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; + } +#Stream function +'m**2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 35 ; + } +#Velocity potential +'m**2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 36 ; + } +#Potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 13 ; + } +#Wind speed +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 32 ; + } +#Pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 4 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Geopotential +'m**2 s**-2' = { + table2Version = 1 ; + indicatorOfParameter = 6 ; + } +#Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + } +#U component of wind +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + } +#V component of wind +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + } +#Specific humidity +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 51 ; + } +#Surface pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 1 ; + indicatorOfTypeOfLevel = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 39 ; + } +#Vorticity (relative) +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 43 ; + } +#Mean sea level pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 2 ; + } +#Divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 44 ; + } +#Geopotential Height +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + } +#Relative humidity +'%' = { + table2Version = 1 ; + indicatorOfParameter = 52 ; + } +#10 metre U wind component +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 33 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#10 metre V wind component +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 34 ; + indicatorOfTypeOfLevel = 105 ; + level = 10 ; + } +#2 metre temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 11 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#2 metre dewpoint temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + indicatorOfTypeOfLevel = 105 ; + level = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 81 ; + } +#Surface roughness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 83 ; + } +#Evaporation +'m of water equivalent' = { + table2Version = 1 ; + indicatorOfParameter = 57 ; + } +#Brightness temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 118 ; + } +#Runoff +'m' = { + table2Version = 1 ; + indicatorOfParameter = 90 ; + } +#Total column ozone +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } +#large scale precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 62 ; + } +#Snow depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Low cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 73 ; + } +#Medium cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 74 ; + } +#High cloud cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 75 ; + } +#Large scale snow +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 79 ; + } +#Latent heat flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } +#Boundary layer dissipation +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 123 ; + } +#Convective snow +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 78 ; + } +#Cloud water +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 76 ; + } +#Albedo +'%' = { + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Pressure tendency +'Pa s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 3 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 5 ; + } +#Geometrical height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 8 ; + } +#Standard deviation of height +'m' = { + table2Version = 1 ; + indicatorOfParameter = 9 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 14 ; + } +#Maximum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 15 ; + } +#Minimum temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 16 ; + } +#Dew point temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 17 ; + } +#Dew point depression (or deficit) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 18 ; + } +#Lapse rate +'K m**-1' = { + table2Version = 1 ; + indicatorOfParameter = 19 ; + } +#Visibility +'m' = { + table2Version = 1 ; + indicatorOfParameter = 20 ; + } +#Radar spectra (1) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 21 ; + } +#Radar spectra (2) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 22 ; + } +#Radar spectra (3) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 23 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 24 ; + } +#Temperature anomaly +'K' = { + table2Version = 1 ; + indicatorOfParameter = 25 ; + } +#Pressure anomaly +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 26 ; + } +#Geopotential height anomaly +'gpm' = { + table2Version = 1 ; + indicatorOfParameter = 27 ; + } +#Wave spectra (1) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 28 ; + } +#Wave spectra (2) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 29 ; + } +#Wave spectra (3) +'~' = { + table2Version = 1 ; + indicatorOfParameter = 30 ; + } +#Wind direction +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 31 ; + } +#Montgomery stream Function +'m**2 s**-2' = { + table2Version = 1 ; + indicatorOfParameter = 37 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 38 ; + } +#Absolute vorticity +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 41 ; + } +#Absolute divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 42 ; + } +#Vertical u-component shear +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 45 ; + } +#Vertical v-component shear +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 46 ; + } +#Direction of current +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 47 ; + } +#Speed of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 48 ; + } +#U-component of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 49 ; + } +#V-component of current +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 50 ; + } +#Humidity mixing ratio +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 53 ; + } +#Precipitable water +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 54 ; + } +#Vapour pressure +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 55 ; + } +#Saturation deficit +'Pa' = { + table2Version = 1 ; + indicatorOfParameter = 56 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 59 ; + } +#Thunderstorm probability +'%' = { + table2Version = 1 ; + indicatorOfParameter = 60 ; + } +#Convective precipitation (water) +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; + } +#Snow fall rate water equivalent +'kg m**-2 s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 64 ; + } +#Mixed layer depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 67 ; + } +#Transient thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 68 ; + } +#Main thermocline depth +'m' = { + table2Version = 1 ; + indicatorOfParameter = 69 ; + } +#Main thermocline anomaly +'m' = { + table2Version = 1 ; + indicatorOfParameter = 70 ; + } +#Best lifted index (to 500 hPa) +'K' = { + table2Version = 1 ; + indicatorOfParameter = 77 ; + } +#Water temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 80 ; + } +#Deviation of sea-level from mean +'m' = { + table2Version = 1 ; + indicatorOfParameter = 82 ; + } +#Soil moisture content +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Salinity +'kg kg**-1' = { + table2Version = 1 ; + indicatorOfParameter = 88 ; + } +#Density +'kg m**-3' = { + table2Version = 1 ; + indicatorOfParameter = 89 ; + } +#Ice cover (1=ice, 0=no ice) +'(0 - 1)' = { + table2Version = 1 ; + indicatorOfParameter = 91 ; + } +#Ice thickness +'m' = { + table2Version = 1 ; + indicatorOfParameter = 92 ; + } +#Direction of ice drift +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 93 ; + } +#Speed of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 94 ; + } +#U-component of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 95 ; + } +#V-component of ice drift +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 96 ; + } +#Ice growth rate +'m s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 97 ; + } +#Ice divergence +'s**-1' = { + table2Version = 1 ; + indicatorOfParameter = 98 ; + } +#Snow melt +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 99 ; + } +#Signific.height,combined wind waves+swell +'m' = { + table2Version = 1 ; + indicatorOfParameter = 100 ; + } +#Mean direction of wind waves +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 101 ; + } +#Significant height of wind waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 102 ; + } +#Mean period of wind waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 103 ; + } +#Direction of swell waves +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 104 ; + } +#Significant height of swell waves +'m' = { + table2Version = 1 ; + indicatorOfParameter = 105 ; + } +#Mean period of swell waves +'s' = { + table2Version = 1 ; + indicatorOfParameter = 106 ; + } +#Primary wave direction +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 107 ; + } +#Primary wave mean period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 108 ; + } +#Secondary wave direction +'Degree true' = { + table2Version = 1 ; + indicatorOfParameter = 109 ; + } +#Secondary wave mean period +'s' = { + table2Version = 1 ; + indicatorOfParameter = 110 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 111 ; + } +#Net long-wave radiation flux (surface) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 112 ; + } +#Net short-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 113 ; + } +#Net long-wave radiation flux(atmosph.top) +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 114 ; + } +#Long wave radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 115 ; + } +#Short wave radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 116 ; + } +#Global radiation flux +'W m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 117 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + table2Version = 1 ; + indicatorOfParameter = 119 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + table2Version = 1 ; + indicatorOfParameter = 120 ; + } +#Momentum flux, u-component +'N m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 124 ; + } +#Momentum flux, v-component +'N m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 125 ; + } +#Wind mixing energy +'J' = { + table2Version = 1 ; + indicatorOfParameter = 126 ; + } +#Image data +'~' = { + table2Version = 1 ; + indicatorOfParameter = 127 ; + } +#Percentage of vegetation +'%' = { + table2Version = 1 ; + indicatorOfParameter = 87 ; + } +#Orography +'m' = { + table2Version = 1 ; + indicatorOfParameter = 7 ; + indicatorOfTypeOfLevel = 1 ; + } +#Soil Moisture +'kg m**-3' = { + table2Version = 1 ; + indicatorOfParameter = 86 ; + } +#Soil Temperature +'K' = { + table2Version = 1 ; + indicatorOfParameter = 85 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 65 ; + } +#Total Cloud Cover +'%' = { + table2Version = 1 ; + indicatorOfParameter = 71 ; + } +#Total Precipitation +'kg m**-2' = { + table2Version = 1 ; + indicatorOfParameter = 61 ; + indicatorOfTypeOfLevel = 1 ; + level = 0 ; +} diff --git a/eccodes/definitions/grib2/boot.def b/eccodes/definitions/grib2/boot.def new file mode 100644 index 00000000..1fc76c98 --- /dev/null +++ b/eccodes/definitions/grib2/boot.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- 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. +# + +# This gets updated twice a year by WMO. +# See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html +constant tablesVersionLatest = 26 : edition_specific; + +constant million = 1000000 : hidden; +constant grib2divider = 1000000; +alias extraDimensionPresent=zero; +alias is_tigge = zero; +alias is_s2s = zero; +transient is_efas = 0; +transient angleSubdivisions=grib2divider; # micro degrees + +meta gts_header gts_header() : no_copy,hidden,read_only; +meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; +meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; +meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; + +transient missingValue = 9999; +constant ieeeFloats = 1 : edition_specific; +constant isHindcast = 0; + +include "grib2/section.0.def"; + +template core "grib2/sections.def"; + +#if(!new()) +#{ + #lookup[4] endOfProduct(0); + #while(endOfProduct != `7777`) + #{ + #template core "grib2/sections.def"; + #lookup[4] endOfProduct(0); + #} +#} + +template section_8 "grib2/section.8.def"; diff --git a/eccodes/definitions/grib2/boot_multifield.def b/eccodes/definitions/grib2/boot_multifield.def new file mode 100644 index 00000000..5684aa58 --- /dev/null +++ b/eccodes/definitions/grib2/boot_multifield.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- 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. +# + +constant grib2divider = 1000000; +transient missingValue = 9999; +constant ieeeFloats = 1 : edition_specific; + + +ascii[4] identifier; +ascii[2] reserved : hidden; +codetable[1] discipline 'grib2/0.0.table'; +unsigned[1] editionNumber : edition_specific; +section_length[8] totalLength; + + +template core "grib2/sections.def"; + +lookup[4] endOfProduct(0); + + if(endOfProduct != `7777`){ + template core "grib2/sections.def"; + } + + template section8 "grib2/section.8.def"; + diff --git a/eccodes/definitions/grib2/cfName.def b/eccodes/definitions/grib2/cfName.def new file mode 100644 index 00000000..9e55439c --- /dev/null +++ b/eccodes/definitions/grib2/cfName.def @@ -0,0 +1,278 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'sea_ice_area_fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Ozone mass mixing ratio +'mass_fraction_of_ozone_in_air' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'temperature_in_surface_snow' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Sea surface practical salinity +'sea_surface_salinity' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'ocean_mixed_layer_thickness_defined_by_sigma_theta' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#Eastward sea water velocity +'eastward_sea_water_velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'northward_sea_water_velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'sea_surface_height_above_geoid' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'depth_of_isosurface_of_sea_water_potential_temperature' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 20 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#Sea-ice thickness +'sea_ice_thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Geopotential +'geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'air_temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'eastward_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'northward_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'specific_humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'surface_air_pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'divergence_of_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'geopotential_height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'relative_humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Land-sea mask +'land_binary_mask' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'surface_roughness_length' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Albedo +'surface_albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; +} diff --git a/eccodes/definitions/grib2/cfVarName.def b/eccodes/definitions/grib2/cfVarName.def new file mode 100644 index 00000000..0a07feaa --- /dev/null +++ b/eccodes/definitions/grib2/cfVarName.def @@ -0,0 +1,4140 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 5 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 40 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 80 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 150 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 200 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 3 ; + scaleFactorOfLowerLimit = -2 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 200 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 31 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 45 ; + } +#Sea ice area fraction +'siconc' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'rsn' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'sst' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'slt' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'fg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#Specific rain water content +'crwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'cswc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Total column cloud liquid water +'tclw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Total column cloud ice water +'tciw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Surface solar radiation downwards +'ssrd' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'strd' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net solar radiation +'tsr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'ewss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'nsss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Ozone mass mixing ratio +'o3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'tsn' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Specific cloud liquid water content +'clwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'ciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'cc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'lsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth +'sde' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Total precipitation of at least 25 mm +'tpg25' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 25 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 50 mm +'tpg50' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 50 ; + } +#10 metre wind gust of at least 10 m/s +'fgg1010' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 10 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Probability of temperature standardized anomaly greater than 1 standard deviation +'ptsa_gt_1stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + } +#Probability of temperature standardized anomaly greater than 1.5 standard deviation +'ptsa_gt_1p5stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 15 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly greater than 2 standard deviation +'ptsa_gt_2stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 2 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Probability of temperature standardized anomaly less than -1 standard deviation +'ptsa_lt_1stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -1 ; + probabilityType = 0 ; + } +#Probability of temperature standardized anomaly less than -1.5 standard deviation +'ptsa_lt_1p5stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -15 ; + } +#Probability of temperature standardized anomaly less than -2 standard deviation +'ptsa_lt_2stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -2 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Mean sea water potential temperature in the upper 300 m +'mswpt300m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Mean sea water temperature in the upper 300 m +'mswt300m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Sea surface practical salinity +'sos' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'mlotst010' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + scaledValueOfFirstFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; + } +#2 metre specific humidity +'sh2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Nitrate aerosol optical depth at 550 nm +'niaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 62004 ; + } +#Ammonium aerosol optical depth at 550 nm +'amaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 62003 ; + is_aerosol_optical = 1 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Dry deposition of ammonium aerosol +'aerddpam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Sedimentation of ammonium aerosol +'aersdmam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'aerwdlam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'aerwdcam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Vertically integrated mass of ammonium aerosol +'aermssam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + aerosolType = 62003 ; + } +#-10 degrees C isothermal level (atm) +'degm10l' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 26315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#0 degrees C isothermal level (atm) +'deg0l' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 27315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'rhw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'rhi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'asn' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'fspc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'fcpc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Maximum CAPE in the last 6 hours +'mxcape6' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Maximum CAPES in the last 6 hours +'mxcapes6' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 19 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + } +#2 metre relative humidity with respect to water +'rhw2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Liquid water content in snow pack +'lwcs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Height of convective cloud top +'hcct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Unbalanced component of specific humidity +'ucq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'ucclwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'ucciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + } +#Soil temperature top 20 cm +'st20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 100 cm +'st100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Water runoff and drainage +'ro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mixed-layer CAPE in the lowest 50 hPa +'mlcape50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'mlcin50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'mlcape100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'mlcin100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'mucape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Most-unstable CIN +'mucin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'mudlp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#200 metre U wind component +'u200' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + typeOfFirstFixedSurface = 103 ; + } +#200 metre V wind component +'v200' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#200 metre wind speed +'si200' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#100 metre wind speed +'si100' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mean temperature tendency due to short-wave radiation +'mttswr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'mttlwr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'mttswrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'mttlwrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'mttpm' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'mqtpm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'mutpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'mvtpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'mumf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'mdmf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'mudr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'mddr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'mtpf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'mtdch' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Time integral of rain flux +'tirf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface eastward momentum flux +'tisemf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface northward momentum flux +'tisnmf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Cross sectional area of flow in channel +'chcross' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'chside' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'dis' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'rivsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'fldsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'fldfrc' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'dslr' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'frost' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'woss' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'tpups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'smups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean discharge in the last 6 hours +'dis06' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean discharge in the last 24 hours +'dis24' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Snow depth at elevation bands +'sd_elev' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'gwus' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'gwls' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Latitude +'lat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Longitude +'lon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } +#Latitude on T grid +'tlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Longitude on T grid +'tlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Latitude on U grid +'ulat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Longitude on U grid +'ulon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Latitude on V grid +'vlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Longitude on V grid +'vlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Latitude on W grid +'wlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Longitude on W grid +'wlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Latitude on F grid +'flat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Longitude on F grid +'flon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Total column graupel +'tcolg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity +'r2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'aptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'hindex' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'ccl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'evarate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'wdir10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'dirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'difswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'tidirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation in the last 6 hours +'eva06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + is_uerra = 0 ; + } +#Evaporation in the last 24 hours +'eva24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + is_uerra = 0 ; + } +#Total precipitation in the last 6 hours +'tp06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + is_efas = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Total precipitation in the last 24 hours +'tp24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + is_efas = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Fraction of snow cover +'fscov' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 121 ; + } +#Clear air turbulence (CAT) +'cat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 29 ; + } +#Mountain wave turbulence (eddy dissipation rate) +'mwt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 28 ; + } +#Soil temperature +'sot' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'dswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'uswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'dlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'sohf' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'percr' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'sod' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'adswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'auswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'adlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'perc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'clbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'csbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'p260530' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'p260531' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'p260532' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'p260533' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'p260534' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'p260535' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'p260536' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'p260537' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'p260538' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'p260539' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Forest fire weather index +'fwinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Fine fuel moisture code +'ffmcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Duff moisture code +'dufmcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Drought code +'drtcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Initial fire spread index +'infsinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Fire buildup index +'fbupinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Fire daily severity rating +'fdsrte' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Cloudy radiance (with respect to wave number) +'p260550' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'p260551' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'p260552' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'p260553' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'p260554' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'p260555' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'p260556' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Keetch-Byram drought index +'kbdi' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'drtmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'rosmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'fdimrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'scnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'buinfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'icnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'ercnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } +#Universal thermal climate index +'utci' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Mean radiant temperature +'mrt' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Fraction of Malaria cases +'mal_cases_frac' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Malaria circumsporozoite protein ratio +'mal_prot_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Plasmodium falciparum entomological inoculation rate +'mal_innoc_rate' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Human bite rate by anopheles vectors +'mal_hbite_rate' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Malaria immunity ratio +'mal_immun_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Falciparum parasite ratio +'mal_infect_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Detectable falciparum parasite ratio (after day 10) +'mal_infect_d10_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Anopheles vector to host ratio +'mal_host_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Anopheles vector density +'mal_vect_dens' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Fraction of malarial vector reproductive habitat +'mal_hab_frac' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Population density +'pop_dens' = { + discipline = 20 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Virtual temperature +'vtmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'vptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'mwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Peak wave period +'pp1d' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Mean wave period +'mwp' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Eastward sea water velocity +'uoe' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'von' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'zos' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'t20d' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfSecondFixedSurface = 255 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 29315 ; + } +#Average salinity in the upper 300m +'sav300' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 21 ; + typeOfSecondFixedSurface = 160 ; + typeOfFirstFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Surface runoff +'sro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Sea-ice thickness +'sithick' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre U wind component +'u100' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre V wind component +'v100' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'cape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'pv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'z' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'sp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'tcw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'vo' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'bld' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'sshf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'slhf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'d' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'u10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'v10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'t2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'d2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'lsm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'sr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'str' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'sund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'btmp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'si10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Skin temperature +'skt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'lhtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'shtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'heatx' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'wcf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'mindpd' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'snohf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'vapp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'ncpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'srweq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'snoc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'snol' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'snoag' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'absh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'ptype' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'iliqw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'clwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'icmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'rwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'snmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'maxrh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'maxah' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'asnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'pwcat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'grle' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'crain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'cfrzr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'cicep' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'csnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'cprat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'mdiv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'cpofp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'pevap' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'pevpr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'snowc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'frain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'rime' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'tcolr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tcols' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'lswp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'cwp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'twatp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'tsnowp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'tcwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'tprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'tsrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'lsprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'lssrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'tsrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'csrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'lssrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'tciwv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'rprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'sprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'fprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'iprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'uflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'vflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'maxgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'ugust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'vgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'vwsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'mflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'ustm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'vstm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'cd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'fricv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'prmsl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'dist' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'alts' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'thick' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'presalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'denalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'wavh5' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'p260081' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'p260082' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'hpbl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'p260084' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'sdsgso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'nswrt' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'dswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'uswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'nswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'photar' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'nswrfcs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'dwuvr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'uviucs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'uvi' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'nlwrt' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'nlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'nlwrcs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'cice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'cwat' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'cdca' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'tmaxt' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'thunc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'cdcb' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'ceil' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'cdlyr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'cwork' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'cuefi' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'tcolw' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'tcoli' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'tcolc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'fice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'cdcimr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'suns' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'p260120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'kx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'kox' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'totalx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'sx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'hlcy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'ehlx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'lftx4' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'aerot' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'tozne' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'tcioz' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'bswid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'bref' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'brvel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'veril' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'lmaxbr' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'prec' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'acces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'aciod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'acradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'gdces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'gdiod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'gdradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'tiaccp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'tiacip' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'tiacrp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'volash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'icit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'icib' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'ici' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'turbt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'turbb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'turb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'tke' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'pblreg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'conti' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'contet' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'contt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'contb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'mxsalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'snfalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'p260163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'p260164' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Relative clear air turbulence (RCAT) +'rcat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'p260166' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'var190m0' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'ffldg' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'ffldro' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'rssc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'esct' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'swepon' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'bgrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'ssrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'cppop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'pposp' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'pop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'land' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'veg' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'watr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'evapt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'mterh' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'landu' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'gflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'mstav' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'sfexc' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'cnwat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'bmixl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'ccond' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'rsmin' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'rcs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'rct' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'rcsol' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'rcq' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'cisoilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'hflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'vsw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'vwiltm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'uplst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'uplsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'lowlsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'botlst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'soill' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'rlyrs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'smref' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'smdry' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'poros' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'liqvsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'voltso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'transo' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'voldec' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'direc' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'soilp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'vsosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'satosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'estp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'irrate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'ctoph' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'ctophqi' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'estu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'estv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'npixu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'solza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'raza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'rfl06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'rfl08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'rfl16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'rfl39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'atmdiv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'wvdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'dirpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'dirc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'spc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'wz' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'ist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'dslm' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'al' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'ptend' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'hstdv' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'dpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'lapr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'rdsp1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'rdsp2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'rdsp3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'ta' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'presa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'absv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'absd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'vucsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'vvcsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'ucurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'vcurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'satd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'prate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'acpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'ssw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'s' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'uice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'vice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'snom' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'grad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'swrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'wmixe' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre wind gust of at least 15 m/s +'fg10g15' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre wind gust of at least 20 m/s +'fg10g20' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + } +#Convective inhibition +'cin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'orog' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Fall water equivalent +'sf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Field capacity +'cap' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wilting point +'wilt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib2/crraLocalVersion.table b/eccodes/definitions/grib2/crraLocalVersion.table new file mode 100644 index 00000000..3b7d1136 --- /dev/null +++ b/eccodes/definitions/grib2/crraLocalVersion.table @@ -0,0 +1 @@ +1 CRRA Copernicus regional reanalysis diff --git a/eccodes/definitions/grib2/crra_suiteName.table b/eccodes/definitions/grib2/crra_suiteName.table new file mode 100644 index 00000000..7fe5fd74 --- /dev/null +++ b/eccodes/definitions/grib2/crra_suiteName.table @@ -0,0 +1,7 @@ +# CARRA/CERRA suite names +0 unknown Unknown +1 no-ar-ce HARMONIE-AROME reanalysis by MetNorway on CARRA-East domain (CARRA project) +2 no-ar-cw HARMONIE-AROME reanalysis by MetNorway on CARRA-West domain (CARRA project) +3 no-ar-pa HARMONIE-AROME reanalysis by MetNorway on Pan-Arctic domain (CARRA project) +4 se-al-ec HARMONIE-ALADIN reanalysis by SMHI on EURO-CORDEX domain (CERRA project) +5 fr-ms-ec MESCAN-SURFEX surface reanalysis by Meteo-France on EURO-CORDEX domain (CERRA project) diff --git a/eccodes/definitions/grib2/d b/eccodes/definitions/grib2/d new file mode 100644 index 00000000..1747c362 --- /dev/null +++ b/eccodes/definitions/grib2/d @@ -0,0 +1,98 @@ +0.0.table +1.0.table +1.1.table +1.2.table +1.3.table +1.4.table +3.0.table +3.1.table +3.10.table +3.11.table +3.15.table +3.2.table +3.20.table +3.21.table +3.3.table +3.4.table +3.5.table +3.6.table +3.7.table +3.8.table +3.9.table +4.0.table +4.1.0.table +4.1.1.table +4.1.10.table +4.1.2.table +4.1.3.table +4.1.table +4.10.table +4.11.table +4.12.table +4.13.table +4.14.table +4.2.0.0.table +4.2.0.1.table +4.2.0.13.table +4.2.0.14.table +4.2.0.15.table +4.2.0.18.table +4.2.0.19.table +4.2.0.190.table +4.2.0.191.table +4.2.0.2.table +4.2.0.3.table +4.2.0.4.table +4.2.0.5.table +4.2.0.6.table +4.2.0.7.table +4.2.1.0.table +4.2.1.1.table +4.2.10.0.table +4.2.10.1.table +4.2.10.2.table +4.2.10.3.table +4.2.10.4.table +4.2.2.0.table +4.2.2.3.table +4.2.3.0.table +4.2.3.1.table +4.2.table +4.201.table +4.202.table +4.203.table +4.204.table +4.205.table +4.206.table +4.207.table +4.208.table +4.209.table +4.210.table +4.211.table +4.212.table +4.213.table +4.215.table +4.216.table +4.217.table +4.220.table +4.221.table +4.3.table +4.4.table +4.5.table +4.6.table +4.7.table +4.8.table +4.9.table +5.0.table +5.1.table +5.2.table +5.3.table +5.4.table +5.40.table +5.40000.table +5.5.table +5.6.table +5.7.table +5.8.table +5.9.table +6.0.table diff --git a/eccodes/definitions/grib2/dimension.0.table b/eccodes/definitions/grib2/dimension.0.table new file mode 100644 index 00000000..a53ef534 --- /dev/null +++ b/eccodes/definitions/grib2/dimension.0.table @@ -0,0 +1 @@ +# Vegetation fraction diff --git a/eccodes/definitions/grib2/dimensionTableNumber.table b/eccodes/definitions/grib2/dimensionTableNumber.table new file mode 100644 index 00000000..fcb28eee --- /dev/null +++ b/eccodes/definitions/grib2/dimensionTableNumber.table @@ -0,0 +1 @@ +0 vegetation vegetation diff --git a/eccodes/definitions/grib2/dimensionType.table b/eccodes/definitions/grib2/dimensionType.table new file mode 100644 index 00000000..a724b579 --- /dev/null +++ b/eccodes/definitions/grib2/dimensionType.table @@ -0,0 +1,2 @@ +0 layer layer +255 missing missing diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.82.table b/eccodes/definitions/grib2/grib2LocalSectionNumber.82.table new file mode 100644 index 00000000..923227c4 --- /dev/null +++ b/eccodes/definitions/grib2/grib2LocalSectionNumber.82.table @@ -0,0 +1,4 @@ +0 0 Empty local section +82 82 standard operational SMHI +83 83 MATCH data (standard operational SMHI + extra MATCH keywords) +255 255 MISSING diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.85.table b/eccodes/definitions/grib2/grib2LocalSectionNumber.85.table new file mode 100644 index 00000000..d0f5e6b6 --- /dev/null +++ b/eccodes/definitions/grib2/grib2LocalSectionNumber.85.table @@ -0,0 +1,3 @@ +0 0 Empty local section +1 1 FA section is present +255 255 MISSING diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.98.table b/eccodes/definitions/grib2/grib2LocalSectionNumber.98.table new file mode 100644 index 00000000..c4076309 --- /dev/null +++ b/eccodes/definitions/grib2/grib2LocalSectionNumber.98.table @@ -0,0 +1,25 @@ +0 0 Empty local section +1 1 MARS labelling +5 5 Forecast probability data +7 7 Sensitivity data +9 9 Singular vectors and ensemble perturbations +11 11 Supplementary data used by the analysis +12 12 Seasonal forecast monthly mean data for lagged systems +14 14 Brightness temperature +15 15 Seasonal forecast data +16 16 Seasonal forecast monthly mean data +18 18 Multianalysis ensemble data +20 20 4D variational increments +21 21 Sensitive area predictions +24 24 Satellite Channel Data +25 25 4DVar model errors +26 26 MARS labelling or ensemble forecast data (with hindcast support) +28 28 COSMO local area EPS +30 30 Forecasting Systems with Variable Resolution +36 36 MARS labelling for long window 4DVar system +38 38 4D variational increments for long window 4DVar system +39 39 4DVar model errors for long window 4Dvar system +41 41 The European Flood Awareness System +42 42 Lead Centre for Wave Forecast Verification +192 192 Multiple ECMWF local definitions +300 300 Multi-dimensional parameters diff --git a/eccodes/definitions/grib2/lcwfv_suiteName.table b/eccodes/definitions/grib2/lcwfv_suiteName.table new file mode 100644 index 00000000..95dba4c0 --- /dev/null +++ b/eccodes/definitions/grib2/lcwfv_suiteName.table @@ -0,0 +1,22 @@ +# LC-WFV table of suite names +0 unknown Unknown +1 ecmf Wave model run by ECMWF +2 egrr Wave model run by UKMO +3 fnmo Wave model run by FNMOC +4 cwao Wave model run by ECCC +5 kwbc Wave model run by NCEP +6 lfpw Wave model run by METFR +7 edzw Wave model run by DWD +8 ammc Wave model run by BoM +# Note: For MeteoFrance code==85 and subcentre==202 +# lops = Laboratoire D'Oceanographie Physique et Spatiale +9 lops Wave model run by LOPS +10 rjtd Wave model run by JMA +11 rksl Wave model run by KMA +12 lemm Wave model run by PRTOS +13 ekmi Wave model run by DMI +14 niwa Wave model run by NIWA +15 enmi Wave model run by METNO +16 sabm Wave model run by SHN/SM +17 nzkl Wave model run by NZMS +18 cnmc Wave model run by METEOAM diff --git a/eccodes/definitions/grib2/local.82.0.def b/eccodes/definitions/grib2/local.82.0.def new file mode 100644 index 00000000..ac8d1784 --- /dev/null +++ b/eccodes/definitions/grib2/local.82.0.def @@ -0,0 +1,28 @@ +######################### +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + +# +# This piece of definition is common to all SMHI definitions +# It is only accessed through "include" statement inside local.82.x.def +# + +codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; +codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; +codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; +ksec1expver[4] experimentVersionNumber = "0000" : dump; +# For now, Ensemble stuff is desactivated because it is not used yet +# instead we use a padding of 2 +#unsigned[1] perturbationNumber : dump; +#unsigned[1] numberOfForecastsInEnsemble : dump; +pad reservedNeedNotBePresent(2); +codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; + + + diff --git a/eccodes/definitions/grib2/local.82.82.def b/eccodes/definitions/grib2/local.82.82.def new file mode 100644 index 00000000..7cb9734c --- /dev/null +++ b/eccodes/definitions/grib2/local.82.82.def @@ -0,0 +1,16 @@ +######################### +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + +# base local definition +include "grib2/local.82.0.def"; + +unsigned[1] marsExperimentOffset = 0 : dump, long_type; + + diff --git a/eccodes/definitions/grib2/local.82.83.def b/eccodes/definitions/grib2/local.82.83.def new file mode 100644 index 00000000..2d7d37f6 --- /dev/null +++ b/eccodes/definitions/grib2/local.82.83.def @@ -0,0 +1,22 @@ +################################################# +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + + +# base file: contains keywords always present +include "grib2/local.82.0.def"; + +# extra keywords specific to local definition 83 (MATCH) +codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; +codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; +codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; +codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; +unsigned[2] meanSize : dump; + + diff --git a/eccodes/definitions/grib2/local.82.def b/eccodes/definitions/grib2/local.82.def new file mode 100644 index 00000000..2e38242c --- /dev/null +++ b/eccodes/definitions/grib2/local.82.def @@ -0,0 +1,22 @@ +#local section ECMWF + +alias localDefinitionNumber=grib2LocalSectionNumber; +template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; + +##################### +### MARS LABELING ### +##################### + +template mars_labeling "grib2/mars_labeling.82.def"; +template_nofail marsKeywords "mars/eswi/grib2.[stream:s].[type:s].def"; + +################### +### LS LABELING ### +################### + +template ls_labeling "grib2/ls_labeling.82.def"; + + +position offsetAfterLocalSection; + + diff --git a/eccodes/definitions/grib2/local.85.0.def b/eccodes/definitions/grib2/local.85.0.def new file mode 100644 index 00000000..8b8d747c --- /dev/null +++ b/eccodes/definitions/grib2/local.85.0.def @@ -0,0 +1 @@ +label "_empty section"; diff --git a/eccodes/definitions/grib2/local.85.1.def b/eccodes/definitions/grib2/local.85.1.def new file mode 100644 index 00000000..c85e4d3c --- /dev/null +++ b/eccodes/definitions/grib2/local.85.1.def @@ -0,0 +1,29 @@ +transient defaultFaFieldName = ""; +transient defaultFaLevelName = ""; +transient defaultFaModelName = ""; + +concept faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; + +# 0 = Accumulation or time range from last event +# 1 = Accumulation or time range from the start +transient LSTCUM = 0; + +# Scaling factor for levels +transient ZLMULT = 1.; +# Base value for levels +transient ZLBASE = 0.; + +# Name in FA +ascii[16] CLNOMA : dump; +# Encoding method +unsigned[8] INGRIB : dump; +# Spectral/grid-point +unsigned[8] LLCOSP : dump; +# Number of bits used to encode each value +unsigned[8] INBITS : dump; + +# FA scaling factor +signed[8] FMULTM = 1 : dump; +signed[8] FMULTE = 0 : dump; diff --git a/eccodes/definitions/grib2/local.85.2.def b/eccodes/definitions/grib2/local.85.2.def new file mode 100644 index 00000000..58fe1d88 --- /dev/null +++ b/eccodes/definitions/grib2/local.85.2.def @@ -0,0 +1,5 @@ +# Hollow grid-point fields used for AROME coupling + +include "grib2/local.85.1.def"; + +unsigned[8] ICPLSIZE : dump; diff --git a/eccodes/definitions/grib2/local.85.def b/eccodes/definitions/grib2/local.85.def new file mode 100644 index 00000000..c6607956 --- /dev/null +++ b/eccodes/definitions/grib2/local.85.def @@ -0,0 +1,3 @@ +alias localDefinitionNumber=grib2LocalSectionNumber; +template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; +position offsetAfterLocalSection; diff --git a/eccodes/definitions/grib2/local.98.0.def b/eccodes/definitions/grib2/local.98.0.def new file mode 100644 index 00000000..919a1dfc --- /dev/null +++ b/eccodes/definitions/grib2/local.98.0.def @@ -0,0 +1,3 @@ +label "_empty section"; + + diff --git a/eccodes/definitions/grib2/local.98.1.def b/eccodes/definitions/grib2/local.98.1.def new file mode 100644 index 00000000..b8b49723 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.1.def @@ -0,0 +1,3 @@ +label "_local 98.1"; + + diff --git a/eccodes/definitions/grib2/local.98.11.def b/eccodes/definitions/grib2/local.98.11.def new file mode 100644 index 00000000..3676a546 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.11.def @@ -0,0 +1,19 @@ +# Local definition 11: Supplementary data used by the analysis + +unsigned[2] yearOfAnalysis = year : dump; +unsigned[1] monthOfAnalysis = month : dump; +unsigned[1] dayOfAnalysis = day : dump; +unsigned[1] hourOfAnalysis = hour : dump; +unsigned[1] minuteOfAnalysis = minute : dump; + +codetable[2] originatingCentreOfAnalysis 'common/c-1.table' = originatingCentre : dump,string_type; + +unsigned[2] subcentreOfAnalysis = subCentre : dump; + +constant secondsOfAnalysis = 0; + +meta dateOfAnalysis g2date(yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; +meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; + +alias date = dateOfAnalysis; +alias time = timeOfAnalysis; diff --git a/eccodes/definitions/grib2/local.98.12.def b/eccodes/definitions/grib2/local.98.12.def new file mode 100644 index 00000000..8632fd6a --- /dev/null +++ b/eccodes/definitions/grib2/local.98.12.def @@ -0,0 +1,14 @@ +# Seasonal forecast monthly mean data for lagged systems + +unsigned[2] systemNumber : dump; +unsigned[2] methodNumber : dump; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; + +unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) +unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) +alias mars.date = indexingDate; +alias mars.time = indexingTime; + +pad padding_loc12_1(50); diff --git a/eccodes/definitions/grib2/local.98.14.def b/eccodes/definitions/grib2/local.98.14.def new file mode 100644 index 00000000..7ebc7708 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.14.def @@ -0,0 +1,4 @@ +# Local definition 14: Brightness temperature + +unsigned[4] channelNumber : dump ; +alias mars.channel = channelNumber; diff --git a/eccodes/definitions/grib2/local.98.15.def b/eccodes/definitions/grib2/local.98.15.def new file mode 100644 index 00000000..69837690 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.15.def @@ -0,0 +1,9 @@ +# Local definition 15: Seasonal forecast data + +unsigned[2] systemNumber : dump; +unsigned[2] methodNumber : dump; +alias system=systemNumber; +alias method=methodNumber; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions/grib2/local.98.16.def b/eccodes/definitions/grib2/local.98.16.def new file mode 100644 index 00000000..c94fae1b --- /dev/null +++ b/eccodes/definitions/grib2/local.98.16.def @@ -0,0 +1,7 @@ +# Local definition 16: Seasonal forecast monthly mean data + +unsigned[2] systemNumber : dump; +unsigned[2] methodNumber : dump; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions/grib2/local.98.18.def b/eccodes/definitions/grib2/local.98.18.def new file mode 100644 index 00000000..9fc5f239 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.18.def @@ -0,0 +1,17 @@ +# Local definition 18: Multianalysis ensemble data + +codetable[1] dataOrigin "common/c-1.table" : dump; +alias mars.origin=dataOrigin; + +ascii[4] modelIdentifier : dump ; + +unsigned[1] consensusCount : dump ; + +consensus list(consensusCount) +{ + ascii[4] ccccIdentifiers : dump; +} + +alias local.dataOrigin=dataOrigin; +alias local.modelIdentifier=modelIdentifier; +alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions/grib2/local.98.192.def b/eccodes/definitions/grib2/local.98.192.def new file mode 100644 index 00000000..eacf2ccf --- /dev/null +++ b/eccodes/definitions/grib2/local.98.192.def @@ -0,0 +1,11 @@ +# Local definition 192: Multiple ECMWF local definitions + +unsigned[1] numberOfLocalDefinitions = 2 : dump; + +if (numberOfLocalDefinitions == 2 ) { + unsigned[1] subLocalDefinitionNumber1 = 1 : dump; + template subDefinitions1 "grib2/local.98.[subLocalDefinitionNumber1].def"; + + unsigned[1] subLocalDefinitionNumber2 = 24 : dump; + template subDefinitions2 "grib2/local.98.[subLocalDefinitionNumber2].def"; +} diff --git a/eccodes/definitions/grib2/local.98.20.def b/eccodes/definitions/grib2/local.98.20.def new file mode 100644 index 00000000..8b7f9e7a --- /dev/null +++ b/eccodes/definitions/grib2/local.98.20.def @@ -0,0 +1,12 @@ +# Local definition 20: 4D variational increments + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; + +unsigned[1] totalNumberOfIterations : dump; +alias totalNumber=totalNumberOfIterations; + +alias iteration = iterationNumber; + +alias local.iterationNumber =iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; diff --git a/eccodes/definitions/grib2/local.98.21.def b/eccodes/definitions/grib2/local.98.21.def new file mode 100644 index 00000000..f46cb36a --- /dev/null +++ b/eccodes/definitions/grib2/local.98.21.def @@ -0,0 +1,32 @@ +# Local definition 21: Sensitive area predictions + +unsigned[2] forecastOrSingularVectorNumber : dump; + +unsigned[2] numberOfIterations : dump; +unsigned[2] numberOfSingularVectorsComputed : dump; +unsigned[1] normAtInitialTime : dump; +unsigned[1] normAtFinalTime : dump; +unsigned[4] multiplicationFactorForLatLong : dump; +signed[4] northWestLatitudeOfVerficationArea : dump; +signed[4] northWestLongitudeOfVerficationArea : dump; +signed[4] southEastLatitudeOfVerficationArea : dump; +signed[4] southEastLongitudeOfVerficationArea : dump; +unsigned[4] accuracyMultipliedByFactor : dump; +unsigned[2] numberOfSingularVectorsEvolved : dump; + +# Ritz numbers: +signed[4] NINT_LOG10_RITZ : dump; +signed[4] NINT_RITZ_EXP : dump; + +unsigned[1] optimisationTime : dump; +alias mars.opttime = optimisationTime; + +unsigned[1] forecastLeadTime : dump; +alias mars.leadtime = forecastLeadTime; + +ascii[1] marsDomain : dump; +unsigned[2] methodNumber : dump; +unsigned[1] shapeOfVerificationArea : dump; + +# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); +alias mars.domain = marsDomain; diff --git a/eccodes/definitions/grib2/local.98.24.def b/eccodes/definitions/grib2/local.98.24.def new file mode 100644 index 00000000..28fac039 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.24.def @@ -0,0 +1,4 @@ +# Local definition 24: Satellite Channel Data + +unsigned[2] channelNumber : dump, can_be_missing; +alias mars.channel = channelNumber; diff --git a/eccodes/definitions/grib2/local.98.25.def b/eccodes/definitions/grib2/local.98.25.def new file mode 100644 index 00000000..0719d1b6 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.25.def @@ -0,0 +1,11 @@ +# Local definition 25: 4DVar model errors + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +alias totalNumber=numberOfComponents; +unsigned[1] modelErrorType : dump; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions/grib2/local.98.26.def b/eccodes/definitions/grib2/local.98.26.def new file mode 100644 index 00000000..49fd2121 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.26.def @@ -0,0 +1,9 @@ +# Local definition 26: MARS labelling or ensemble forecast data (with hindcast support) + +unsigned[4] referenceDate : dump; +unsigned[4] climateDateFrom : dump; +unsigned[4] climateDateTo : dump; + +alias local.referenceDate= referenceDate; +alias local.climateDateFrom= climateDateFrom; +alias local.climateDateTo= climateDateTo; diff --git a/eccodes/definitions/grib2/local.98.28.def b/eccodes/definitions/grib2/local.98.28.def new file mode 100644 index 00000000..eeb30d06 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.28.def @@ -0,0 +1,7 @@ +# Local Definition 28 - COSMO local area EPS + +unsigned[4] baseDateEPS : dump; +unsigned[2] baseTimeEPS : dump; +unsigned[1] numberOfRepresentativeMember : dump; +unsigned[1] numberOfMembersInCluster : dump; +unsigned[1] totalInitialConditions : dump; diff --git a/eccodes/definitions/grib2/local.98.30.def b/eccodes/definitions/grib2/local.98.30.def new file mode 100644 index 00000000..47591bf0 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.30.def @@ -0,0 +1,20 @@ +# Local definition 30: Forecasting Systems with Variable Resolution + +unsigned[1] oceanAtmosphereCoupling : dump; + +unsigned[4] legBaseDate : dump; +unsigned[2] legBaseTime : dump; +unsigned[1] legNumber : dump; +unsigned[4] referenceDate : dump; +unsigned[4] climateDateFrom : dump; +unsigned[4] climateDateTo : dump; + +alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; +alias local.legBaseDate=legBaseDate; +alias local.legBaseTime=legBaseTime; +alias local.legNumber=legNumber; +alias local.referenceDate=referenceDate; +alias local.climateDateFrom=climateDateFrom; +alias local.climateDateTo=climateDateTo; + +alias mars._leg_number = legNumber; diff --git a/eccodes/definitions/grib2/local.98.300.def b/eccodes/definitions/grib2/local.98.300.def new file mode 100644 index 00000000..c127da40 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.300.def @@ -0,0 +1,12 @@ +# Local definition 300: Multi-dimensional parameters + +codetable[1] dimensionType "grib2/dimensionType.table"=0; + +# The n-th dimension (out of total number of dimensions) +unsigned[2] dimensionNumber; +alias dimension=dimensionNumber; + +# Total number of dimensions +unsigned[2] totalNumberOfdimensions; + +alias extraDimensionPresent=one; diff --git a/eccodes/definitions/grib2/local.98.36.def b/eccodes/definitions/grib2/local.98.36.def new file mode 100644 index 00000000..83063850 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.36.def @@ -0,0 +1,7 @@ +# Local definition 36: MARS labelling for long window 4Dvar system (inspired by local def 1) + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; + +alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions/grib2/local.98.38.def b/eccodes/definitions/grib2/local.98.38.def new file mode 100644 index 00000000..238dde57 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.38.def @@ -0,0 +1,18 @@ +# Local definition 38: 4D variational increments for long window 4Dvar system (inspired by local def 20) + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; + +unsigned[1] totalNumberOfIterations : dump; +alias totalNumber=totalNumberOfIterations; + +alias iteration = iterationNumber; + +alias local.iterationNumber =iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; + +alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions/grib2/local.98.39.def b/eccodes/definitions/grib2/local.98.39.def new file mode 100644 index 00000000..5d0964a7 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.39.def @@ -0,0 +1,16 @@ +# Local definition 39: 4DVar model errors for long window 4Dvar system (inspired by local def 25) + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +alias totalNumber=numberOfComponents; +unsigned[1] modelErrorType : dump; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions/grib2/local.98.41.def b/eccodes/definitions/grib2/local.98.41.def new file mode 100644 index 00000000..604dcf36 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.41.def @@ -0,0 +1,92 @@ +# (C) Copyright 2005- ECMWF. + +# Local definition 41 - The European Flood Awareness System + +# isFillup can be 0, 1 or missing +# When it is 0, it means "Water Balance" +unsigned[1] isFillup = missing() : dump, can_be_missing; +alias local.isFillup = isFillup; + +# Forecast Reference Date and Time +unsigned[2] yearOfForecast = year : dump; +unsigned[1] monthOfForecast = month : dump; +unsigned[1] dayOfForecast = day : dump; +unsigned[1] hourOfForecast = hour : dump; +unsigned[1] minuteOfForecast = minute : dump; +constant secondOfForecast = 0; +meta dateOfForecast g2date(yearOfForecast,monthOfForecast, dayOfForecast) : dump; +meta timeOfForecast time (hourOfForecast,minuteOfForecast,secondOfForecast) : dump; + +# Calculate the Julian number for the forecast date and time. +# This will be a floating point number with units of 'day' +meta julianForecastDay julian_day(dateOfForecast,hourOfForecast,minuteOfForecast,secondOfForecast): hidden; +# Calculate the difference between the forecast date and reference date +transient diffInDays = (julianForecastDay - julianDay) : hidden; # float + +# Now convert this to hours. First convert to minutes then round up +transient diffInHours = (diffInDays * 1440 + 0.5)/60 : hidden; +meta _anoffset round(diffInHours, 10): dump,long_type; +transient anoffset = _anoffset; # needed to force anoffset to be integer +alias local.anoffset = anoffset; + +# ECC-662 +unsigned[2] anoffsetFirst = missing(): dump, can_be_missing; +unsigned[2] anoffsetLast = missing(): dump, can_be_missing; +unsigned[2] anoffsetFrequency = missing(): dump, can_be_missing; + +# Boolean +transient is_efas = 1; +transient lsdate_bug = 1: hidden; # See ECC-707 + +# Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 +concept efas_post_proc { + "unknown" = { typeOfPostProcessing=0 ; } + "lisflood" = { typeOfPostProcessing=1 ; } + "lisflood_eric" = { typeOfPostProcessing=2 ; } + "lisflood_season" = { typeOfPostProcessing=3 ; } + "lisflood_merged" = { typeOfPostProcessing=4 ; } + "ericha" = { typeOfPostProcessing=51 ; } + "htessel_lisflood" = { typeOfPostProcessing=101; } + "htessel_eric" = { typeOfPostProcessing=102; } + "htessel_camaflood" = { typeOfPostProcessing=103; } + "epic" = { typeOfPostProcessing=152; } + "unknown" = { dummy = 1; } +} : hidden; + +#Domain. Missing, local or global +#codetable[1] efasDomain "grib2/tables/local/ecmf/efas_domain.table" = 255 : dump, string_type; +#unsigned[1] efas_domain = missing() : can_be_missing, dump; +#concept efasDomain(unknown) { +# "local" = { efas_domain = 0; } +# "global" = { efas_domain = 1; } +#} : hidden; + +# Model Cycle Date/Time +# This is the date of the new official implementation of the EFAS cycle. +unsigned[2] yearOfModelVersion = 0 : dump; +unsigned[1] monthOfModelVersion = 0 : dump; +unsigned[1] dayOfModelVersion = 0 : dump; +unsigned[1] hourOfModelVersion = 0 : dump; +unsigned[1] minuteOfModelVersion = 0 : dump; +constant secondOfModelVersion = 0; +meta dateOfModelVersion g2date(yearOfModelVersion, monthOfModelVersion, dayOfModelVersion) : dump; +meta timeOfModelVersion time (hourOfModelVersion, minuteOfModelVersion, secondOfModelVersion) : dump; + +# Note: the key inputOriginatingCentre is in the PDTNs 70, 71, 72 and 73 +#concept efas_forecast { +# "griddedobs" = { inputOriginatingCentre=98; marsType = "an"; } +# # "reanalysis" = { inputOriginatingCentre=98; marsType = "an"; } +# +# "hres" = { inputOriginatingCentre=98; marsType = "fc"; } # deterministic +# "ens" = { inputOriginatingCentre=98; marsType = "pf"; } # ensemble +# "ens" = { inputOriginatingCentre=98; marsType = "cf"; } # ensemble +# +# DWD rules +# "global" = { inputOriginatingCentre=78; inputProcessIdentifier = 1; } +# "lam" = { inputOriginatingCentre=78; inputProcessIdentifier = 2; } +# +# TODO: For now anything coming from cnmc (COSMO) is local area +# "lam" = { inputOriginatingCentre=80; } +# +# "unknown" = { dummy = 1; } +#} : hidden; diff --git a/eccodes/definitions/grib2/local.98.42.def b/eccodes/definitions/grib2/local.98.42.def new file mode 100644 index 00000000..1bb73af4 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.42.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# Definition 42 - WMO Lead Centre for Wave Forecast Verification (LC-WFV) + +codetable[2] lcwfvSuiteName "grib2/lcwfv_suiteName.table" : dump; +alias mars.origin = lcwfvSuiteName; diff --git a/eccodes/definitions/grib2/local.98.5.def b/eccodes/definitions/grib2/local.98.5.def new file mode 100644 index 00000000..19ab3418 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.5.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +label "_empty section"; diff --git a/eccodes/definitions/grib2/local.98.500.def b/eccodes/definitions/grib2/local.98.500.def new file mode 100755 index 00000000..3fa593b5 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.500.def @@ -0,0 +1,53 @@ +# mars labeling + +# Year +# (4 digits) +#unsigned[2] year ; + +# Month +#unsigned[1] month ; + +# Day +#unsigned[1] day ; + +# Hour +#unsigned[1] hour ; + +# Minute +#unsigned[1] minute ; + +# Second +#unsigned[1] second ; + +#meta dataDate g2date(year,month,day) : dump; +#alias mars.date=dataDate; + +#meta dataTime time(hour,minute,second) : dump; +#alias mars.time = dataTime; + +codetable[2] observationType "grib2/tables/local/ecmf/obstat.2.0.table"; + +codetable[2] codeType "grib2/tables/local/ecmf/obstat.3.0.table"; + +codetable[2] varno "grib2/tables/local/ecmf/obstat.varno.table"; + +codetable[2] reportType "grib2/tables/local/ecmf/obstat.reporttype.table"; + +unsigned[1] phase; + +codetable[2] platform "grib2/tables/local/ecmf/obstat.4.0.table"; + +codetable[2] instrument "grib2/tables/local/ecmf/obstat.5.0.table"; + +codetable[2] dataStream "grib2/tables/local/ecmf/obstat.6.0.table"; + +# include "grib2/template.4.horizontal.def" + +codetable[2] observationDiagnostic "grib2/tables/local/ecmf/obstat.9.0.table"; + +codetable[2] dataSelection "grib2/tables/local/ecmf/obstat.10.0.table"; + +unsigned[2] scanPosition; + +codetable[1] mask "grib2/tables/local/ecmf/obstat.8.0.table"; + diff --git a/eccodes/definitions/grib2/local.98.7.def b/eccodes/definitions/grib2/local.98.7.def new file mode 100644 index 00000000..66cf6919 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.7.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; +unsigned[1] sensitiveAreaDomain : dump; +unsigned[1] diagnosticNumber : dump; + +alias local.iterationNumber=iterationNumber; +alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; +alias local.sensitiveAreaDomain=sensitiveAreaDomain; +alias local.diagnosticNumber=diagnosticNumber; + +alias iteration = iterationNumber; +alias diagnostic = diagnosticNumber; diff --git a/eccodes/definitions/grib2/local.98.9.def b/eccodes/definitions/grib2/local.98.9.def new file mode 100644 index 00000000..7f9f0c98 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.9.def @@ -0,0 +1,38 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[2] forecastOrSingularVectorNumber : dump; + +constant perturbedType = 60; + +if(type != perturbedType) +{ + unsigned[2] numberOfIterations : dump; + unsigned[2] numberOfSingularVectorsComputed : dump; + unsigned[1] normAtInitialTime : dump ; + unsigned[1] normAtFinalTime : dump ; + unsigned[4] multiplicationFactorForLatLong : dump; + signed[4] northWestLatitudeOfLPOArea : dump ; + signed[4] northWestLongitudeOfLPOArea : dump; + signed[4] southEastLatitudeOfLPOArea : dump; + signed[4] southEastLongitudeOfLPOArea : dump; + unsigned[4] accuracyMultipliedByFactor : dump; + unsigned[2] numberOfSingularVectorsEvolved : dump; + # Ritz numbers: + signed[4] NINT_LOG10_RITZ : dump ; + signed[4] NINT_RITZ_EXP : dump ; + + alias local.numberOfIterations= numberOfIterations; + alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; + alias local.normAtInitialTime= normAtInitialTime ; + alias local.normAtFinalTime= normAtFinalTime ; + alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; + alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; + alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; + alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; + alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; + alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; + alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; +# Ritz numbers: + alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; + alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; +} diff --git a/eccodes/definitions/grib2/local.98.def b/eccodes/definitions/grib2/local.98.def new file mode 100644 index 00000000..2662e327 --- /dev/null +++ b/eccodes/definitions/grib2/local.98.def @@ -0,0 +1,33 @@ +#local section ECMWF + +template mars_labeling "grib2/mars_labeling.def"; +transient productDefinitionTemplateNumberInternal=-1; + +meta localDefinitionNumber local_definition(grib2LocalSectionNumber, + productDefinitionTemplateNumber, + productDefinitionTemplateNumberInternal, + type, + stream, + class, + eps, + stepType, + derivedForecast); + +meta eps g2_eps(productDefinitionTemplateNumber, + type, + stream, + stepType, + derivedForecast); + +template_nofail localSection "grib2/local.98.[grib2LocalSectionNumber:l].def"; +position offsetAfterLocalSection; +transient addExtraLocalSection=0; +transient deleteExtraLocalSection=0; +#transient extraLocalSectionPresent=section2Length - offsetAfterLocalSection + offsetSection2 ; +meta extraLocalSectionPresent evaluate (section2Length - offsetAfterLocalSection + offsetSection2 > 0 ); +if ( ( extraLocalSectionPresent || addExtraLocalSection ) && ! deleteExtraLocalSection) { + # extra local section present + codetable[2] extraLocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; + template localSection "grib2/local.98.[extraLocalSectionNumber:l].def"; +} + diff --git a/eccodes/definitions/grib2/local.crra.1.def b/eccodes/definitions/grib2/local.crra.1.def new file mode 100644 index 00000000..27bbcea3 --- /dev/null +++ b/eccodes/definitions/grib2/local.crra.1.def @@ -0,0 +1,4 @@ +# CARRA/CERRA local + +codetable[2] suiteName "grib2/crra_suiteName.table" : dump; +alias crraSuiteID = suiteName; diff --git a/eccodes/definitions/grib2/local.tigge.1.def b/eccodes/definitions/grib2/local.tigge.1.def new file mode 100644 index 00000000..65b23701 --- /dev/null +++ b/eccodes/definitions/grib2/local.tigge.1.def @@ -0,0 +1,5 @@ +# tigge LAM labeling + +codetable[2] suiteName "grib2/tigge_suiteName.table" : dump; +alias tiggeSuiteID = suiteName; + diff --git a/eccodes/definitions/grib2/local/1098/2.1.table b/eccodes/definitions/grib2/local/1098/2.1.table new file mode 100644 index 00000000..d8d1c0d0 --- /dev/null +++ b/eccodes/definitions/grib2/local/1098/2.1.table @@ -0,0 +1 @@ +0 model Model info diff --git a/eccodes/definitions/grib2/local/1098/centres.table b/eccodes/definitions/grib2/local/1098/centres.table new file mode 100644 index 00000000..2f0d02a3 --- /dev/null +++ b/eccodes/definitions/grib2/local/1098/centres.table @@ -0,0 +1,12 @@ +0 eggr UK Met Office - UK +1 aemet AEMET- Spain HIRLAM +2 arpasim ARPA-SIM - Italy COSMO +3 metno Met.NO +4 zamg ZAMG / Austria +5 dwd DWD - Germany SRNWP +6 dnmi DNMI/Univ Oslo - Norway HIRLAM ALADIN +7 meteofrance Meteo-France / France +8 dmi DMI +9 hungary Hungary +10 czech Czech Republic +11 croatia Croatia diff --git a/eccodes/definitions/grib2/local/1098/models.table b/eccodes/definitions/grib2/local/1098/models.table new file mode 100644 index 00000000..70e03f70 --- /dev/null +++ b/eccodes/definitions/grib2/local/1098/models.table @@ -0,0 +1,13 @@ +0 0 MOGREPS +1 1 SREPS +2 2 SRNWP PEPS +3 3 COSMO-LEPS +4 4 NORLAMEPS +5 5 ALADIN LAEF +6 6 COSMO DE EPS +7 7 COSMO-SREPS +8 8 GLAMEPS +9 9 PEARCE +10 10 DMI - HIRLAM +11 11 OMSZ ALADIN EPS + diff --git a/eccodes/definitions/grib2/local/1098/template.2.0.def b/eccodes/definitions/grib2/local/1098/template.2.0.def new file mode 100644 index 00000000..68e64f33 --- /dev/null +++ b/eccodes/definitions/grib2/local/1098/template.2.0.def @@ -0,0 +1,19 @@ +codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; +codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; +concept tiggeLAMName { + "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} + "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} + "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} + "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} + "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} + "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} + "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} + "COSMO-SREPS-BO-EU" = {tiggeCentre=2;tiggeModel=7;} + "GLAMEPS" = {tiggeCentre=6;tiggeModel=8;} + "PEARCE" = {tiggeCentre=7;tiggeModel=9;} + "DMI- HIRLAM" = {tiggeCentre=8;tiggeModel=10;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=9;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} +} + diff --git a/eccodes/definitions/grib2/local/2.0.table b/eccodes/definitions/grib2/local/2.0.table new file mode 100644 index 00000000..471911b5 --- /dev/null +++ b/eccodes/definitions/grib2/local/2.0.table @@ -0,0 +1,96 @@ +# Code table 2.0: Identification of centres for local section 2 +0 0 Absent +1 ammc Melbourne (WMC) +2 2 Melbourne (WMC) +4 rums Moscow (WMC) +5 5 Moscow (WMC) +7 kwbc US National Weather Service - NCEP (WMC) +8 8 US National Weather Service - NWSTG (WMC) +9 9 US National Weather Service - Other (WMC) +10 10 Cairo (RSMC/RAFC) +12 12 Dakar (RSMC/RAFC) +14 14 Nairobi (RSMC/RAFC) +16 16 Atananarivo (RSMC) +18 18 Tunis-Casablanca (RSMC) +20 20 Las Palmas (RAFC) +21 21 Algiers (RSMC) +22 22 Lagos (RSMC) +24 fapr Pretoria (RSMC) +26 26 Khabarovsk (RSMC) +28 28 New Delhi (RSMC/RAFC) +30 30 Novosibirsk (RSMC) +32 32 Tashkent (RSMC) +33 33 Jeddah (RSMC) +34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) +36 36 Bankok +37 37 Ulan Bator +38 babj Beijing (RSMC) +40 rksl Seoul +41 sabm Buenos Aires (RSMC/RAFC) +43 43 Brasilia (RSMC/RAFC) +45 45 Santiago +46 sbsj Brasilian Space Agency - INPE +51 51 Miami (RSMC/RAFC) +52 52 National Hurricane Center, Miami +53 53 Canadian Meteorological Service - Montreal (RSMC) +54 cwao Canadian Meteorological Service - Montreal (RSMC) +55 55 San Francisco +57 57 U.S. Air Force - Global Weather Center +58 fnmo US Navy - Fleet Numerical Oceanography Center +59 59 NOAA Forecast Systems Lab, Boulder CO +60 60 National Center for Atmospheric Research (NCAR), Boulder, CO +64 64 Honolulu +65 65 Darwin (RSMC) +67 67 Melbourne (RSMC) +69 nzkl Wellington (RSMC/RAFC) +74 egrr U.K. Met Office - Exeter +76 76 Moscow (RSMC/RAFC) +78 edzw Offenbach (RSMC) +80 cnmc Rome (RSMC) +82 eswi Norrkoping +84 lfpw French Weather Service - Toulouse +85 lfpw French Weather Service - Toulouse +86 86 Helsinki +87 87 Belgrade +88 enmi Oslo +89 89 Prague +90 90 Episkopi +91 91 Ankara +92 92 Frankfurt/Main (RAFC) +93 93 London (WAFC) +94 ekmi Copenhagen +95 95 Rota +96 96 Athens +97 97 European Space Agency (ESA) +98 ecmf European Centre for Medium-Range Weather Forecasts +99 99 DeBilt, Netherlands +#100 to 109 Reserved for centres in Region I which are not in the list above +110 110 Hong-Kong +#111 to 133 Reserved for centres in Region II which are not in the list above +#134 to 153 Reserved for centres in Region I which are not listed above +#154 to 159 Reserved for centres in Region III which are not in the list above +160 160 US NOAA/NESDIS +# 161 to 185 Reserved for centres in Region IV which are not in the list above +# 186 to 198 Reserved for centres in Region I which are not listed above +# 199 to 209 Reserved for centres in Region V which are not in the list above +195 wiix Indonesia (NMC) +204 204 National Institute of Water and Atmospheric Research (NIWA - New Zealand) +210 210 Frascati (ESA/ESRIN) +211 211 Lannion +212 212 Lisboa +213 213 Reykjavik +214 lemm INM +215 lssw Zurich +216 216 Service ARGOS Toulouse +218 habp Budapest +224 lowm Austria +227 ebum Belgium (NMC) +233 eidb Dublin +235 ingv INGV +239 crfc CERFAX +246 ifmk IfM-Kiel +247 hadc Hadley Centre +250 cosmo COnsortium for Small scale MOdelling (COSMO) +251 251 Meteorological Cooperation on Operational NWP (MetCoOp) +254 eums EUMETSAT Operation Centre +1098 tigge TIGGE CENTRES diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/modelName.def b/eccodes/definitions/grib2/localConcepts/cnmc/modelName.def new file mode 100644 index 00000000..e7a85ed1 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/cnmc/modelName.def @@ -0,0 +1,7 @@ +# modelName: Contribution from Daniel Lee @ DWD + +# defintions for Roma (COSMO LEPS) +'cosmo-leps' = { + subCentre=98; + grib2LocalSectionNumber=28; +} diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/name.def b/eccodes/definitions/grib2/localConcepts/cnmc/name.def new file mode 100644 index 00000000..89dafe5d --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/cnmc/name.def @@ -0,0 +1,3073 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + is_s2s = 1 ; + typeOfFirstFixedSurface = 103 ; + subCentre = 102 ; + } +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 101 ; + } +#Pressure Tendency (S) +'Pressure Tendency (S)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (S) +'Geopotential (S)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (full lev) +'Geopotential (full lev)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Geopotential +'Geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geometric Height of the earths surface above sea level +'Geometric Height of the earths surface above sea level' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'Geometric Height of the layer limits above sea level(NN)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature (G) +'Temperature (G)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Climat. temperature, 2m Temperature +'Climat. temperature, 2m Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 9 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Temperature +'Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Max 2m Temperature (i) +'Max 2m Temperature (i)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Min 2m Temperature (i) +'Min 2m Temperature (i)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Dew Point Temperature (AV) +'2m Dew Point Temperature (AV)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind Direction (DD_10M) +'Wind Direction (DD_10M)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Wind Direction (DD) +'Wind Direction (DD)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wind speed (SP_10M) +'Wind speed (SP_10M)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wind speed (SP) +'Wind speed (SP)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#U component of wind +'U component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#U component of wind +'U component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'V component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#V component of wind +'V component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vertical Velocity (Geometric) (w) +'Vertical Velocity (Geometric) (w)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Specific Humidity (S) +'Specific Humidity (S)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Specific Humidity (2m) +'Specific Humidity (2m)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Specific Humidity +'Specific Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Relative Humidity +'2m Relative Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Relative Humidity +'Relative Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation (s) +'Evaporation (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Column-Integrated Cloud Ice +'Total Column-Integrated Cloud Ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Precipitation rate (S) +'Total Precipitation rate (S)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Large-Scale Precipitation rate +'Large-Scale Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective Precipitation rate +'Convective Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Depth +'Snow Depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Cloud Cover +'Convective Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + } +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + } +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'Convective Snowfall rate water equivalent (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Large-Scale snowfall rate water equivalent (s) +'Large-Scale snowfall rate water equivalent (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'Soil Temperature ( 36 cm depth, vv=0h)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 36 ; + } +#Soil Temperature (41 cm depth) +'Soil Temperature (41 cm depth)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 41 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 9 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'Column-integrated Soil Moisture (1) 0 -10 cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'Column-integrated Soil Moisture (2) 10-100cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant cover +'Plant cover' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Water Runoff (10-100) +'Water Runoff (10-100)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Water Runoff (10-190) +'Water Runoff (10-190)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Water Runoff (s) +'Water Runoff (s)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Thickness +'sea Ice Thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'Direction of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Direction of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Net short wave radiation flux (m) (at the surface) +'Net short wave radiation flux (m) (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Net short wave radiation flux (m) (on the model top) +'Net short wave radiation flux (m) (on the model top)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'Net long wave radiation flux (m) (on the model top)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + } +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation (m) (at the surface) +'Photosynthetically active radiation (m) (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } +#Solar radiation heating rate +'Solar radiation heating rate' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Thermal radiation heating rate +'Thermal radiation heating rate' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Latent heat flux from bare soil +'Latent heat flux from bare soil' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat flux from plants +'Latent heat flux from plants' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Sunshine +'Sunshine' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + } +#Stomatal Resistance +'Stomatal Resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Non-Convective Cloud Cover, grid scale +'Non-Convective Cloud Cover, grid scale' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Cloud Mixing Ratio +'Cloud Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Cloud Ice Mixing Ratio +'Cloud Ice Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Rain mixing ratio +'Rain mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Snow mixing ratio +'Snow mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Grauple +'Grauple' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total column integrated grauple +'Total column integrated grauple' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } +#Total Column integrated water (all components incl. precipitation) +'Total Column integrated water (all components incl. precipitation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + typeOfFirstFixedSurface = 1 ; + } +#vertical integral of divergence of total water content (s) +'vertical integral of divergence of total water content (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#subgrid scale cloud water +'subgrid scale cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#subgridscale cloud ice +'subgridscale cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#cloud base above msl, shallow convection +'cloud base above msl, shallow convection' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 2 ; + } +#cloud top above msl, shallow convection +'cloud top above msl, shallow convection' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 3 ; + } +#specific cloud water content, convective cloud +'specific cloud water content, convective cloud' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Height of Convective Cloud Base (i) +'Height of Convective Cloud Base (i)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 2 ; + } +#Height of Convective Cloud Top (i) +'Height of Convective Cloud Top (i)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'base index (vertical level) of main convective cloud (i)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'top index (vertical level) of main convective cloud (i)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to convection +'Temperature tendency due to convection' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Specific humitiy tendency due to convection +'Specific humitiy tendency due to convection' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#zonal wind tendency due to convection +'zonal wind tendency due to convection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to convection +'meridional wind tendency due to convection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#height of top of dry convection +'height of top of dry convection' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'height of 0 degree celsius level code 0,3,6 ?' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 4 ; + } +#Height of snow fall limit +'Height of snow fall limit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + } +#Tendency of specific cloud liquid water content due to conversion +'Tendency of specific cloud liquid water content due to conversion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud ice content due to convection +'tendency of specific cloud ice content due to convection' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'Specific content of precipitation particles (needed for water loadin)g' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Large scale rain rate +'Large scale rain rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale rain rate (s) +'Large scale rain rate (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective rain rate +'Convective rain rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective rain rate (s) +'Convective rain rate (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#rain amount, grid-scale plus convective +'rain amount, grid-scale plus convective' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#snow amount, grid-scale plus convective +'snow amount, grid-scale plus convective' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to grid scale precipation +'Temperature tendency due to grid scale precipation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to grid scale precipitation +'Specific humitiy tendency due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'tendency of specific cloud liquid water content due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'tendency of specific cloud ice content due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + } +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow density +'Snow density' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure perturbation +'Pressure perturbation' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#supercell detection index 1 (rot. up+down drafts) +'supercell detection index 1 (rot. up+down drafts)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'supercell detection index 2 (only rot. up drafts)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy, most unstable +'Convective Available Potential Energy, most unstable' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Inhibition, most unstable +'Convective Inhibition, most unstable' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Available Potential Energy, mean layer +'Convective Available Potential Energy, mean layer' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective Inhibition, mean layer +'Convective Inhibition, mean layer' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective turbulent kinetic enery +'Convective turbulent kinetic enery' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } +#Tendency of turbulent kinetic energy +'Tendency of turbulent kinetic energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Kinetic Energy +'Kinetic Energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusioncoefficient for momentum +'Turbulent diffusioncoefficient for momentum' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'Turbulent diffusion coefficient for heat (and moisture)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Turbulent transfer coefficient for impulse +'Turbulent transfer coefficient for impulse' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'Turbulent transfer coefficient for heat (and Moisture)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 1 ; + } +#mixed layer depth +'mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#maximum Wind 10m +'maximum Wind 10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Air concentration of Ruthenium 103 +'Air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } +#Soil Temperature (multilayers) +'Soil Temperature (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Column-integrated Soil Moisture (multilayers) +'Column-integrated Soil Moisture (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#soil ice content (multilayers) +'soil ice content (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant Canopy Surface Water +'Plant Canopy Surface Water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow temperature (top of snow) +'Snow temperature (top of snow)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } +#Minimal Stomatal Resistance +'Minimal Stomatal Resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Temperature +'sea Ice Temperature' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Base reflectivity (cmax) +'Base reflectivity (cmax)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + } +#unknown +'unknown' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Effective transmissivity of solar radiation +'Effective transmissivity of solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#sum of contributions to evaporation +'sum of contributions to evaporation' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#total transpiration from all soil layers +'total transpiration from all soil layers' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#total forcing at soil surface +'total forcing at soil surface' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#residuum of soil moisture +'residuum of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Massflux at convective cloud base +'Massflux at convective cloud base' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy +'Convective Available Potential Energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#moisture convergence for Kuo-type closure +'moisture convergence for Kuo-type closure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } +#total wave direction +'total wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#wind sea mean period +'wind sea mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 101 ; + } +#wind sea peak period +'wind sea peak period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#swell mean period +'swell mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 101 ; + } +#swell peak period +'swell peak period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#total wave peak period +'total wave peak period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#total wave mean period +'total wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#total Tm1 period +'total Tm1 period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#total Tm2 period +'total Tm2 period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#total directional spread +'total directional spread' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#analysis error(standard deviation), geopotential(gpm) +'analysis error(standard deviation), geopotential(gpm)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + typeOfStatisticalProcessing = 6 ; + } +#analysis error(standard deviation), u-comp. of wind +'analysis error(standard deviation), u-comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#analysis error(standard deviation), v-comp. of wind +'analysis error(standard deviation), v-comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#zonal wind tendency due to subgrid scale oro. +'zonal wind tendency due to subgrid scale oro.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to subgrid scale oro. +'meridional wind tendency due to subgrid scale oro.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 1 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 1 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + typeOfFirstFixedSurface = 1 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 1 ; + } +#surface emissivity +'surface emissivity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Type +'Soil Type' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Leaf area index +'Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + } +#root depth of vegetation +'root depth of vegetation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + typeOfFirstFixedSurface = 1 ; + } +#height of ozone maximum (climatological) +'height of ozone maximum (climatological)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#vertically integrated ozone content (climatological) +'vertically integrated ozone content (climatological)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the vegetation phase +'Plant covering degree in the vegetation phase' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the quiescent phas +'Plant covering degree in the quiescent phas' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } +#Max Leaf area index +'Max Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Min Leaf area index +'Min Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Orographie + Land-Meer-Verteilung +'Orographie + Land-Meer-Verteilung' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#variance of soil moisture content (0-10) +'variance of soil moisture content (0-10)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#variance of soil moisture content (10-100) +'variance of soil moisture content (10-100)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#evergreen forest +'evergreen forest' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#deciduous forest +'deciduous forest' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + } +#normalized differential vegetation index +'normalized differential vegetation index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } +#normalized differential vegetation index (NDVI) +'normalized differential vegetation index (NDVI)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Total sulfate aerosol +'Total sulfate aerosol' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + } +#Total sulfate aerosol (12M) +'Total sulfate aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } +#Total soil dust aerosol +'Total soil dust aerosol' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + } +#Total soil dust aerosol (12M) +'Total soil dust aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } +#Organic aerosol +'Organic aerosol' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + } +#Organic aerosol (12M) +'Organic aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } +#Black carbon aerosol +'Black carbon aerosol' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + } +#Black carbon aerosol (12M) +'Black carbon aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 0 ; + } +#Sea salt aerosol +'Sea salt aerosol' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + } +#Sea salt aerosol (12M) +'Sea salt aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 0 ; + } +#tendency of specific humidity +'tendency of specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#water vapor flux +'water vapor flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } +#Coriolis parameter +'Coriolis parameter' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical latitude +'geographical latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical longitude +'geographical longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Friction velocity +'Friction velocity' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Delay of the GPS signal trough the (total) atm. +'Delay of the GPS signal trough the (total) atm.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'Delay of the GPS signal trough wet atmos.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'Delay of the GPS signal trough dry atmos.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Ozone Mixing Ratio +'Ozone Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'Air concentration of Ruthenium 103 (Ru103- concentration)' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + } +#Ru103-dry deposition +'Ru103-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 193 ; + } +#Ru103-wet deposition +'Ru103-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 194 ; + } +#Air concentration of Strontium 90 +'Air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 195 ; + } +#Sr90-dry deposition +'Sr90-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 196 ; + } +#Sr90-wet deposition +'Sr90-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 197 ; + } +#I131-concentration +'I131-concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 198 ; + } +#I131-dry deposition +'I131-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 199 ; + } +#I131-wet deposition +'I131-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 200 ; + } +#Cs137-concentration +'Cs137-concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 201 ; + } +#Cs137-dry deposition +'Cs137-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 202 ; + } +#Cs137-wet deposition +'Cs137-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 203 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'Air concentration of Tellurium 132 (Te132-concentration)' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 204 ; + } +#Te132-dry deposition +'Te132-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 205 ; + } +#Te132-wet deposition +'Te132-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 206 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'Air concentration of Zirconium 95 (Zr95-concentration)' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 207 ; + } +#Zr95-dry deposition +'Zr95-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 208 ; + } +#Zr95-wet deposition +'Zr95-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 209 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'Air concentration of Krypton 85 (Kr85-concentration)' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 210 ; + } +#Kr85-dry deposition +'Kr85-dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 211 ; + } +#Kr85-wet deposition +'Kr85-wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 212 ; + } +#TRACER - concentration +'TRACER - concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 213 ; + } +#TRACER - dry deposition +'TRACER - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 214 ; + } +#TRACER - wet deposition +'TRACER - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 215 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'Air concentration of Xenon 133 (Xe133 - concentration)' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 216 ; + } +#Xe133 - dry deposition +'Xe133 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 217 ; + } +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 218 ; + } +#I131g - concentration +'I131g - concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 219 ; + } +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 220 ; + } +#I131g - wet deposition +'I131g - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 221 ; + } +#I131o - concentration +'I131o - concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 222 ; + } +#I131o - dry deposition +'I131o - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 223 ; + } +#I131o - wet deposition +'I131o - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 224 ; + } +#Air concentration of Barium 40 +'Air concentration of Barium 40' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 225 ; + } +#Ba140 - dry deposition +'Ba140 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 226 ; + } +#Ba140 - wet deposition +'Ba140 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 227 ; + } +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'UV_Index_Maximum_W UV_Index clouded (W), daily maximum' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#wind shear +'wind shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + } +#storm relative helicity +'storm relative helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#absolute vorticity advection +'absolute vorticity advection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 1 ; + } +#weather interpretation (WMO) +'weather interpretation (WMO)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 1 ; + } +#Isentrope potentielle Vorticity +'Isentrope potentielle Vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 107 ; + } +#Druck einer isentropen Flaeche +'Druck einer isentropen Flaeche' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#KO index +'KO index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Aequivalentpotentielle Temperatur +'Aequivalentpotentielle Temperatur' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Ceiling +'Ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Icing Grade (1=LGT,2=MOD,3=SEV)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#modified cloud depth for media +'modified cloud depth for media' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } +#modified cloud cover for media +'modified cloud cover for media' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'Monthly Mean of RMS of difference FG-AN of geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'Monthly Mean of RMS of difference IA-AN of geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'Monthly Mean of RMS of difference FG-AN of relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'Monthly Mean of RMS of difference IA-AN of relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'Monthly Mean of RMS of difference FG-AN of temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'Monthly Mean of RMS of difference IA-AN of temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + } +#smoothed forecast, temperature +'smoothed forecast, temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, maximum temp. +'smoothed forecast, maximum temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, minimum temp. +'smoothed forecast, minimum temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, dew point temp. +'smoothed forecast, dew point temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, u comp. of wind +'smoothed forecast, u comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#smoothed forecast, v comp. of wind +'smoothed forecast, v comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, total precipitation rate +'smoothed forecast, total precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 1 ; + } +#smoothed forecast, total cloud cover +'smoothed forecast, total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover low +'smoothed forecast, cloud cover low' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 800 ; + } +#smoothed forecast, cloud cover medium +'smoothed forecast, cloud cover medium' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } +#smoothed forecast, cloud cover high +'smoothed forecast, cloud cover high' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'smoothed forecast, large-scale snowfall rate w.e.' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#smoothed forecast, soil temperature +'smoothed forecast, soil temperature' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 106 ; + } +#smoothed forecast, wind speed (gust) +'smoothed forecast, wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#calibrated forecast, total precipitation rate +'calibrated forecast, total precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'calibrated forecast, large-scale snowfall rate w.e.' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 1 ; + } +#calibrated forecast, wind speed (gust) +'calibrated forecast, wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + scaledValueOfCentralWaveNumber = 2000000 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 625000 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 1666666 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 1250000 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 83333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/paramId.def b/eccodes/definitions/grib2/localConcepts/cnmc/paramId.def new file mode 100644 index 00000000..2e2b5181 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/cnmc/paramId.def @@ -0,0 +1,3073 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Sea ice area fraction +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + is_s2s = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + } +#Pressure (S) (not reduced) +'500000' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure +'500001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure Reduced to MSL +'500002' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 101 ; + } +#Pressure Tendency (S) +'500003' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (S) +'500004' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (full lev) +'500005' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Geopotential +'500006' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geometric Height of the earths surface above sea level +'500007' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'500008' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total Column Integrated Ozone +'500009' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature (G) +'500010' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Climat. temperature, 2m Temperature +'500013' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 9 ; + } +#Temperature +'500014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Max 2m Temperature (i) +'500015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#Min 2m Temperature (i) +'500016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + } +#2m Dew Point Temperature (AV) +'500018' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 0 ; + } +#Radar spectra (1) +'500019' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Wave spectra (1) +'500020' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'500021' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'500022' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind Direction (DD_10M) +'500023' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Wind Direction (DD) +'500024' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Wind speed (SP_10M) +'500025' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Wind speed (SP) +'500026' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#U component of wind +'500027' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#U component of wind +'500028' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'500029' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#V component of wind +'500030' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'500031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vertical Velocity (Geometric) (w) +'500032' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Specific Humidity (S) +'500033' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Specific Humidity (2m) +'500034' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Specific Humidity +'500035' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Relative Humidity +'500036' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Relative Humidity +'500037' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total column integrated water vapour +'500038' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation (s) +'500039' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Column-Integrated Cloud Ice +'500040' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Precipitation rate (S) +'500041' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Large-Scale Precipitation rate +'500042' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective Precipitation rate +'500043' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth water equivalent +'500044' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Depth +'500045' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'500046' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Cloud Cover +'500047' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Cover (800 hPa - Soil) +'500048' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 100 ; + } +#Cloud Cover (400 - 800 hPa) +'500049' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Cloud Cover (0 - 400 hPa) +'500050' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + } +#Total Column-Integrated Cloud Water +'500051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'500052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Large-Scale snowfall rate water equivalent (s) +'500053' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Land Cover (1=land, 0=sea) +'500054' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface Roughness length Surface Roughness +'500055' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'500056' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'500057' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'500058' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 36 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Soil Temperature (41 cm depth) +'500059' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaledValueOfFirstFixedSurface = 41 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil Temperature +'500060' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 9 ; + } +#Soil Temperature +'500061' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Column-integrated Soil Moisture +'500062' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'500063' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'500064' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant cover +'500065' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Water Runoff (10-100) +'500066' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 100 ; + } +#Water Runoff (10-190) +'500067' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 190 ; + } +#Water Runoff (s) +'500068' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'500069' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Thickness +'500070' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Significant height of combined wind waves and swell +'500071' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'500072' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'500073' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'500074' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'500075' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'500076' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'500077' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Net short wave radiation flux (m) (at the surface) +'500078' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'500079' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Net long wave radiation flux (m) (at the surface) +'500080' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'500081' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Net short wave radiation flux (m) (on the model top) +'500082' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'500083' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'500084' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'500085' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + } +#Latent Heat Net Flux (m) +'500086' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Sensible Heat Net Flux (m) +'500087' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Momentum Flux, U-Component (m) +'500088' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Momentum Flux, V-Component (m) +'500089' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation (m) (at the surface) +'500090' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation +'500091' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } +#Solar radiation heating rate +'500092' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Thermal radiation heating rate +'500093' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Latent heat flux from bare soil +'500094' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Latent heat flux from plants +'500095' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + typeOfStatisticalProcessing = 0 ; + } +#Sunshine +'500096' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + } +#Stomatal Resistance +'500097' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Cloud cover +'500098' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Non-Convective Cloud Cover, grid scale +'500099' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Mixing Ratio +'500100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Ice Mixing Ratio +'500101' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Rain mixing ratio +'500102' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Snow mixing ratio +'500103' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total column integrated rain +'500104' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'500105' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Grauple +'500106' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total column integrated grauple +'500107' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } +#Total Column integrated water (all components incl. precipitation) +'500108' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + typeOfFirstFixedSurface = 1 ; + } +#vertical integral of divergence of total water content (s) +'500109' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#subgrid scale cloud water +'500110' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#subgridscale cloud ice +'500111' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#cloud base above msl, shallow convection +'500115' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 2 ; + } +#cloud top above msl, shallow convection +'500116' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 3 ; + } +#specific cloud water content, convective cloud +'500117' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Height of Convective Cloud Base (i) +'500118' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 2 ; + } +#Height of Convective Cloud Top (i) +'500119' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'500120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'500121' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to convection +'500122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to convection +'500123' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#zonal wind tendency due to convection +'500124' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to convection +'500125' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#height of top of dry convection +'500126' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'500127' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 4 ; + } +#Height of snow fall limit +'500128' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + } +#Tendency of specific cloud liquid water content due to conversion +'500129' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud ice content due to convection +'500130' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'500131' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Large scale rain rate +'500132' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale snowfall rate water equivalent +'500133' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale rain rate (s) +'500134' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective rain rate +'500135' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective snowfall rate water equivalent +'500136' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective rain rate (s) +'500137' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#rain amount, grid-scale plus convective +'500138' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#snow amount, grid-scale plus convective +'500139' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature tendency due to grid scale precipation +'500140' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to grid scale precipitation +'500141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'500142' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'500143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'500144' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Graupel (snow pellets) precipitation rate +'500145' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + } +#Graupel (snow pellets) precipitation rate +'500146' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow density +'500147' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure perturbation +'500148' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#supercell detection index 1 (rot. up+down drafts) +'500149' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'500150' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy, most unstable +'500151' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Inhibition, most unstable +'500152' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Available Potential Energy, mean layer +'500153' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective Inhibition, mean layer +'500154' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective turbulent kinetic enery +'500155' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } +#Tendency of turbulent kinetic energy +'500156' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Kinetic Energy +'500157' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent Kinetic Energy +'500158' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusioncoefficient for momentum +'500159' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'500160' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent transfer coefficient for impulse +'500161' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'500162' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 1 ; + } +#mixed layer depth +'500163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#maximum Wind 10m +'500164' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Air concentration of Ruthenium 103 +'500165' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } +#Soil Temperature (multilayers) +'500166' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (multilayers) +'500167' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#soil ice content (multilayers) +'500168' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant Canopy Surface Water +'500169' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow temperature (top of snow) +'500170' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } +#Minimal Stomatal Resistance +'500171' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Temperature +'500172' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'500173' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'500174' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Base reflectivity (cmax) +'500175' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + } +#unknown +'500176' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Effective transmissivity of solar radiation +'500177' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#sum of contributions to evaporation +'500178' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#total transpiration from all soil layers +'500179' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#total forcing at soil surface +'500180' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#residuum of soil moisture +'500181' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Massflux at convective cloud base +'500182' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy +'500183' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#moisture convergence for Kuo-type closure +'500184' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } +#total wave direction +'500185' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#wind sea mean period +'500186' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 101 ; + } +#wind sea peak period +'500187' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#swell mean period +'500188' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 101 ; + } +#swell peak period +'500189' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#total wave peak period +'500190' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#total wave mean period +'500191' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#total Tm1 period +'500192' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#total Tm2 period +'500193' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#total directional spread +'500194' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#analysis error(standard deviation), geopotential(gpm) +'500195' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#analysis error(standard deviation), u-comp. of wind +'500196' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#analysis error(standard deviation), v-comp. of wind +'500197' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#zonal wind tendency due to subgrid scale oro. +'500198' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to subgrid scale oro. +'500199' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Standard deviation of sub-grid scale orography +'500200' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 1 ; + } +#Anisotropy of sub-gridscale orography +'500201' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 1 ; + } +#Angle of sub-gridscale orography +'500202' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + typeOfFirstFixedSurface = 1 ; + } +#Slope of sub-gridscale orography +'500203' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 1 ; + } +#surface emissivity +'500204' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Type +'500205' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Leaf area index +'500206' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + } +#root depth of vegetation +'500207' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + typeOfFirstFixedSurface = 1 ; + } +#height of ozone maximum (climatological) +'500208' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#vertically integrated ozone content (climatological) +'500209' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the vegetation phase +'500210' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the quiescent phas +'500211' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } +#Max Leaf area index +'500212' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Min Leaf area index +'500213' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Orographie + Land-Meer-Verteilung +'500214' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#variance of soil moisture content (0-10) +'500215' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfStatisticalProcessing = 7 ; + } +#variance of soil moisture content (10-100) +'500216' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + } +#evergreen forest +'500217' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#deciduous forest +'500218' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + } +#normalized differential vegetation index +'500219' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } +#normalized differential vegetation index (NDVI) +'500220' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500221' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500222' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Total sulfate aerosol +'500223' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + } +#Total sulfate aerosol (12M) +'500224' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } +#Total soil dust aerosol +'500225' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + } +#Total soil dust aerosol (12M) +'500226' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } +#Organic aerosol +'500227' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + } +#Organic aerosol (12M) +'500228' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } +#Black carbon aerosol +'500229' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + } +#Black carbon aerosol (12M) +'500230' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 0 ; + } +#Sea salt aerosol +'500231' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + } +#Sea salt aerosol (12M) +'500232' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 0 ; + } +#tendency of specific humidity +'500233' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#water vapor flux +'500234' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } +#Coriolis parameter +'500235' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical latitude +'500236' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical longitude +'500237' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Friction velocity +'500238' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Delay of the GPS signal trough the (total) atm. +'500239' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'500240' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'500241' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Ozone Mixing Ratio +'500242' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'500243' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + } +#Ru103-dry deposition +'500244' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 193 ; + } +#Ru103-wet deposition +'500245' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 194 ; + } +#Air concentration of Strontium 90 +'500246' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 195 ; + } +#Sr90-dry deposition +'500247' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 196 ; + } +#Sr90-wet deposition +'500248' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 197 ; + } +#I131-concentration +'500249' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 198 ; + } +#I131-dry deposition +'500250' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 199 ; + } +#I131-wet deposition +'500251' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 200 ; + } +#Cs137-concentration +'500252' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 201 ; + } +#Cs137-dry deposition +'500253' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 202 ; + } +#Cs137-wet deposition +'500254' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 203 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'500255' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 204 ; + } +#Te132-dry deposition +'500256' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 205 ; + } +#Te132-wet deposition +'500257' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 206 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'500258' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 207 ; + } +#Zr95-dry deposition +'500259' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 208 ; + } +#Zr95-wet deposition +'500260' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 209 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'500261' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 210 ; + } +#Kr85-dry deposition +'500262' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 211 ; + } +#Kr85-wet deposition +'500263' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 212 ; + } +#TRACER - concentration +'500264' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 213 ; + } +#TRACER - dry deposition +'500265' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 214 ; + } +#TRACER - wet deposition +'500266' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 215 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'500267' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 216 ; + } +#Xe133 - dry deposition +'500268' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 217 ; + } +#Xe133 - wet deposition +'500269' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 218 ; + } +#I131g - concentration +'500270' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 219 ; + } +#Xe133 - wet deposition +'500271' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 220 ; + } +#I131g - wet deposition +'500272' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 221 ; + } +#I131o - concentration +'500273' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 222 ; + } +#I131o - dry deposition +'500274' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 223 ; + } +#I131o - wet deposition +'500275' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 224 ; + } +#Air concentration of Barium 40 +'500276' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 225 ; + } +#Ba140 - dry deposition +'500277' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 226 ; + } +#Ba140 - wet deposition +'500278' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 227 ; + } +#u-momentum flux due to SSO-effects +'500279' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#u-momentum flux due to SSO-effects +'500280' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'500281' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'500282' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'500283' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'500284' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'500285' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#wind shear +'500286' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + } +#storm relative helicity +'500287' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#absolute vorticity advection +'500288' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'500291' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 1 ; + } +#weather interpretation (WMO) +'500292' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 1 ; + } +#Isentrope potentielle Vorticity +'500298' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 107 ; + } +#Druck einer isentropen Flaeche +'500301' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#KO index +'500302' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Aequivalentpotentielle Temperatur +'500303' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Ceiling +'500304' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'500305' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#modified cloud depth for media +'500306' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } +#modified cloud cover for media +'500307' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'500308' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'500309' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'500310' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'500311' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'500312' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'500313' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'500314' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'500315' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'500316' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'500317' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'500318' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'500319' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'500320' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'500321' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'500322' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'500323' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Synth. Sat. brightness temperature cloudy +'500324' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'500325' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. radiance cloudy +'500326' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'500327' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. brightness temperature cloudy +'500328' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'500329' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'500330' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'500331' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'500332' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'500333' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'500334' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'500335' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance clear sky +'500336' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'500337' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance clear sky +'500338' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'500339' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'500340' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. brightness temperature cloudy +'500341' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } +#Synth. Sat. brightness temperature cloudy +'500342' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. brightness temperature cloudy +'500343' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'500344' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'500345' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Synth. Sat. brightness temperature cloudy +'500346' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. brightness temperature cloudy +'500347' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. brightness temperature clear sky +'500348' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } +#Synth. Sat. brightness temperature clear sky +'500349' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. brightness temperature clear sky +'500350' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'500351' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'500352' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } +#Synth. Sat. brightness temperature clear sky +'500353' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Synth. Sat. brightness temperature clear sky +'500354' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'500355' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. radiance cloudy +'500356' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. radiance cloudy +'500357' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. radiance cloudy +'500358' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } +#Synth. Sat. radiance cloudy +'500359' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'500360' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'500361' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Synth. Sat. radiance cloudy +'500362' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } +#Synth. Sat. radiance cloudy +'500363' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. radiance clear sky +'500364' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. radiance clear sky +'500365' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } +#Synth. Sat. radiance clear sky +'500366' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'500367' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'500368' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } +#Synth. Sat. radiance clear sky +'500369' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Synth. Sat. radiance clear sky +'500370' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } +#Synth. Sat. radiance clear sky +'500371' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#smoothed forecast, temperature +'500372' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, maximum temp. +'500373' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, minimum temp. +'500374' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, dew point temp. +'500375' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#smoothed forecast, u comp. of wind +'500376' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, v comp. of wind +'500377' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, total precipitation rate +'500378' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, total cloud cover +'500379' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover low +'500380' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover medium +'500381' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover high +'500382' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'500383' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#smoothed forecast, soil temperature +'500384' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, wind speed (gust) +'500385' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#calibrated forecast, total precipitation rate +'500386' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'500387' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + } +#calibrated forecast, wind speed (gust) +'500388' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 198 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500389' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500390' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500391' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500392' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1250000 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500393' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500394' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500395' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500396' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500397' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500398' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500399' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'500400' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/shortName.def b/eccodes/definitions/grib2/localConcepts/cnmc/shortName.def new file mode 100644 index 00000000..c6cc8198 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/cnmc/shortName.def @@ -0,0 +1,3073 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Sea ice area fraction +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + is_s2s = 1 ; + subCentre = 102 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + is_s2s = 1 ; + subCentre = 102 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Pressure (S) (not reduced) +'ps' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure +'p' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure Reduced to MSL +'pmsl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 101 ; + } +#Pressure Tendency (S) +'dpsdt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (S) +'fis' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (full lev) +'fif' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Geopotential +'fi' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geometric Height of the earths surface above sea level +'hsurf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'hhl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total Column Integrated Ozone +'to3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature (G) +'t_g' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Climat. temperature, 2m Temperature +'t_2m_cl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 9 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Max 2m Temperature (i) +'tmax_2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#Min 2m Temperature (i) +'tmin_2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + } +#2m Dew Point Temperature (AV) +'td_2m_av' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Radar spectra (1) +'dbz_max' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind Direction (DD_10M) +'dd_10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wind Direction (DD) +'dd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Wind speed (SP_10M) +'sp_10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Wind speed (SP) +'sp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#U component of wind +'u_10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#U component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'v_10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#V component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'omega' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vertical Velocity (Geometric) (w) +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Specific Humidity (S) +'qv_s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Specific Humidity (2m) +'qv_2m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Specific Humidity +'qv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Relative Humidity +'relhum_2m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Relative Humidity +'relhum' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total column integrated water vapour +'tqv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation (s) +'aevap_s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Column-Integrated Cloud Ice +'tqi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Precipitation rate (S) +'tot_prec' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Large-Scale Precipitation rate +'prec_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective Precipitation rate +'prec_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth water equivalent +'w_snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Depth +'h_snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'clct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Cloud Cover +'clc_con' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Cover (800 hPa - Soil) +'clcl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 100 ; + } +#Cloud Cover (400 - 800 hPa) +'clcm' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Cloud Cover (0 - 400 hPa) +'clch' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Total Column-Integrated Cloud Water +'tqc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'snow_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Large-Scale snowfall rate water equivalent (s) +'snow_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Land Cover (1=land, 0=sea) +'fr_land' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface Roughness length Surface Roughness +'z0' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'alb_rad' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'albedo_b' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'t_cl' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaledValueOfFirstFixedSurface = 36 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil Temperature (41 cm depth) +'t_cl_lm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaledValueOfFirstFixedSurface = 41 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil Temperature +'t_m' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaledValueOfFirstFixedSurface = 9 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil Temperature +'t_s' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#Column-integrated Soil Moisture +'w_cl' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'w_g1' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'w_g2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + } +#Plant cover +'plcov' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Water Runoff (10-100) +'runoff_g' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Water Runoff (10-190) +'runoff_g_lm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Water Runoff (s) +'runoff_s' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'fr_ice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Thickness +'h_ice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'mdww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'mdps' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'shps' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'mpps' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Net short wave radiation flux (m) (at the surface) +'asob_s' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'sobs_rad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Net long wave radiation flux (m) (at the surface) +'athb_s' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'thbs_rad' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Net short wave radiation flux (m) (on the model top) +'asob_t' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 0 ; + } +#Net short wave radiation flux +'sobt_rad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'athb_t' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'thbt_rad' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + } +#Latent Heat Net Flux (m) +'alhfl_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Sensible Heat Net Flux (m) +'ashfl_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Momentum Flux, U-Component (m) +'aumfl_s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Momentum Flux, V-Component (m) +'avmfl_s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation (m) (at the surface) +'apab_s' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Photosynthetically active radiation +'pabs_rad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } +#Solar radiation heating rate +'sohr_rad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Thermal radiation heating rate +'thhr_rad' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Latent heat flux from bare soil +'alhfl_bs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Latent heat flux from plants +'alhfl_pl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + typeOfStatisticalProcessing = 0 ; + } +#Sunshine +'dursun' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + } +#Stomatal Resistance +'rstom' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Cloud cover +'clc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Non-Convective Cloud Cover, grid scale +'clc_sgs' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Mixing Ratio +'qc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Ice Mixing Ratio +'qi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Rain mixing ratio +'qr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Snow mixing ratio +'qs' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total column integrated rain +'tqr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tqs' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Grauple +'qg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total column integrated grauple +'tqg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } +#Total Column integrated water (all components incl. precipitation) +'twater' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + typeOfFirstFixedSurface = 1 ; + } +#vertical integral of divergence of total water content (s) +'tdiv_hum' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#subgrid scale cloud water +'qc_rad' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#subgridscale cloud ice +'qi_rad' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#cloud base above msl, shallow convection +'hbas_sc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 2 ; + } +#cloud top above msl, shallow convection +'htop_sc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 3 ; + } +#specific cloud water content, convective cloud +'clw_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Height of Convective Cloud Base (i) +'hbas_con' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 2 ; + } +#Height of Convective Cloud Top (i) +'htop_con' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'bas_con' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'top_con' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to convection +'dt_con' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to convection +'dqv_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#zonal wind tendency due to convection +'du_con' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to convection +'dv_con' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#height of top of dry convection +'htop_dc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'hzerocl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 4 ; + } +#Height of snow fall limit +'snowlmt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + } +#Tendency of specific cloud liquid water content due to conversion +'dqc_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud ice content due to convection +'dqi_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'q_sedim' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Large scale rain rate +'prr_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale snowfall rate water equivalent +'prs_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale rain rate (s) +'rain_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective rain rate +'prr_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective snowfall rate water equivalent +'prs_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective rain rate (s) +'rain_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#rain amount, grid-scale plus convective +'rr_f' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#snow amount, grid-scale plus convective +'rr_c' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature tendency due to grid scale precipation +'dt_gsp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to grid scale precipitation +'dqv_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'dqc_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'freshsnw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'dqi_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Graupel (snow pellets) precipitation rate +'prg_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + } +#Graupel (snow pellets) precipitation rate +'grau_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow density +'rho_snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure perturbation +'pp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#supercell detection index 1 (rot. up+down drafts) +'sdi_1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'sdi_2' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy, most unstable +'cape_mu' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Inhibition, most unstable +'cin_mu' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Available Potential Energy, mean layer +'cape_ml' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective Inhibition, mean layer +'cin_ml' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective turbulent kinetic enery +'tke_con' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } +#Tendency of turbulent kinetic energy +'tketens' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Kinetic Energy +'ke' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent Kinetic Energy +'tke' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusioncoefficient for momentum +'tkvm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'tkvh' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent transfer coefficient for impulse +'tcm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'tch' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 1 ; + } +#mixed layer depth +'mh' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#maximum Wind 10m +'vmax_10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Air concentration of Ruthenium 103 +'ru-103' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } +#Soil Temperature (multilayers) +'t_so' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (multilayers) +'w_so' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#soil ice content (multilayers) +'w_so_ice' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant Canopy Surface Water +'w_i' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow temperature (top of snow) +'t_snow' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } +#Minimal Stomatal Resistance +'prs_min' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Temperature +'t_ice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'dbz_850' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'dbz' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Base reflectivity (cmax) +'dbz_cmax' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + } +#unknown +'dttdiv' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Effective transmissivity of solar radiation +'sotr_rad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#sum of contributions to evaporation +'evatra_sum' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#total transpiration from all soil layers +'tra_sum' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#total forcing at soil surface +'totforce_s' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#residuum of soil moisture +'resid_wso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Massflux at convective cloud base +'mflx_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy +'cape_con' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#moisture convergence for Kuo-type closure +'qcvg_con' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } +#total wave direction +'mwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#wind sea mean period +'mwp_x' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 101 ; + } +#wind sea peak period +'ppww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#swell mean period +'mpp_s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 101 ; + } +#swell peak period +'ppps' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#total wave peak period +'pp1d' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#total wave mean period +'tm10' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#total Tm1 period +'tm01' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#total Tm2 period +'tm02' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#total directional spread +'sprd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#analysis error(standard deviation), geopotential(gpm) +'ana_err_fi' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#analysis error(standard deviation), u-comp. of wind +'ana_err_u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 7 ; + typeOfStatisticalProcessing = 6 ; + } +#analysis error(standard deviation), v-comp. of wind +'ana_err_v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#zonal wind tendency due to subgrid scale oro. +'du_sso' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#meridional wind tendency due to subgrid scale oro. +'dv_sso' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Standard deviation of sub-grid scale orography +'sso_stdh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 1 ; + } +#Anisotropy of sub-gridscale orography +'sso_gamma' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 1 ; + } +#Angle of sub-gridscale orography +'sso_theta' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + typeOfFirstFixedSurface = 1 ; + } +#Slope of sub-gridscale orography +'sso_sigma' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 1 ; + } +#surface emissivity +'emis_rad' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Type +'soiltyp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Leaf area index +'lai' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + } +#root depth of vegetation +'rootdp' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + typeOfFirstFixedSurface = 1 ; + } +#height of ozone maximum (climatological) +'hmo3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#vertically integrated ozone content (climatological) +'vio3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the vegetation phase +'plcov_mx' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the quiescent phas +'plcov_mn' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Max Leaf area index +'lai_mx' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Min Leaf area index +'lai_mn' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } +#Orographie + Land-Meer-Verteilung +'oro_mod' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#variance of soil moisture content (0-10) +'wvar1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#variance of soil moisture content (10-100) +'wvar2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#evergreen forest +'for_e' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#deciduous forest +'for_d' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + } +#normalized differential vegetation index +'ndvi' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } +#normalized differential vegetation index (NDVI) +'ndvi_max' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ndvi_mrat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'ndviratio' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Total sulfate aerosol +'aer_so4' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + } +#Total sulfate aerosol (12M) +'aer_so412' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } +#Total soil dust aerosol +'aer_dust' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + } +#Total soil dust aerosol (12M) +'aer_dust12' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } +#Organic aerosol +'aer_org' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + } +#Organic aerosol (12M) +'aer_org12' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } +#Black carbon aerosol +'aer_bc' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + } +#Black carbon aerosol (12M) +'aer_bc12' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 0 ; + } +#Sea salt aerosol +'aer_ss' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + } +#Sea salt aerosol (12M) +'aer_ss12' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 0 ; + } +#tendency of specific humidity +'dqvdt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#water vapor flux +'qvsflx' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } +#Coriolis parameter +'fc' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical latitude +'rlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical longitude +'rlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Friction velocity +'ustr' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Delay of the GPS signal trough the (total) atm. +'ztd' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'zwd' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'zhd' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Ozone Mixing Ratio +'o3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'ru-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + } +#Ru103-dry deposition +'ru-103d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 193 ; + } +#Ru103-wet deposition +'ru-103w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 194 ; + } +#Air concentration of Strontium 90 +'sr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 195 ; + } +#Sr90-dry deposition +'sr-90d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 196 ; + } +#Sr90-wet deposition +'sr-90w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 197 ; + } +#I131-concentration +'i-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 198 ; + } +#I131-dry deposition +'i-131ad' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 199 ; + } +#I131-wet deposition +'i-131aw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 200 ; + } +#Cs137-concentration +'cs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 201 ; + } +#Cs137-dry deposition +'cs-137d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 202 ; + } +#Cs137-wet deposition +'cs-137w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 203 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'te-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 204 ; + } +#Te132-dry deposition +'te-132d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 205 ; + } +#Te132-wet deposition +'te-132w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 206 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'zr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 207 ; + } +#Zr95-dry deposition +'zr-95d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 208 ; + } +#Zr95-wet deposition +'zr-95w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 209 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'kr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 210 ; + } +#Kr85-dry deposition +'kr-85d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 211 ; + } +#Kr85-wet deposition +'kr-85w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 212 ; + } +#TRACER - concentration +'tr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 213 ; + } +#TRACER - dry deposition +'tr-2d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 214 ; + } +#TRACER - wet deposition +'tr-2w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 215 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'xe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 216 ; + } +#Xe133 - dry deposition +'xe-133d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 217 ; + } +#Xe133 - wet deposition +'xe-133w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 218 ; + } +#I131g - concentration +'i-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 219 ; + } +#Xe133 - wet deposition +'i-131gd' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 220 ; + } +#I131g - wet deposition +'i-131gw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 221 ; + } +#I131o - concentration +'i-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 222 ; + } +#I131o - dry deposition +'i-131od' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 223 ; + } +#I131o - wet deposition +'i-131ow' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 224 ; + } +#Air concentration of Barium 40 +'ba-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 225 ; + } +#Ba140 - dry deposition +'ba-140d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 226 ; + } +#Ba140 - wet deposition +'ba-140w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 227 ; + } +#u-momentum flux due to SSO-effects +'austr_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#u-momentum flux due to SSO-effects +'ustr_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'avstr_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#v-momentum flux due to SSO-effects +'vstr_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'avdis_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'vdis_sso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'uv_max' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#wind shear +'w_shaer' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + } +#storm relative helicity +'srh' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#absolute vorticity advection +'vabs' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'ccl_nn' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 1 ; + } +#weather interpretation (WMO) +'ww' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 1 ; + } +#Isentrope potentielle Vorticity +'ipv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 107 ; + } +#Druck einer isentropen Flaeche +'ptheta' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#KO index +'ko' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Aequivalentpotentielle Temperatur +'thetae' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Ceiling +'ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'ice_grd' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#modified cloud depth for media +'cldepth' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } +#modified cloud cover for media +'clct_mod' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'efa-ps' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'eia-ps' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'efa-u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'eia-u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'efa-v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'eia-v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'efa-fi' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'eia-fi' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'efa-rh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'eia-rh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'efa-t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'eia-t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'efa-om' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'eia-om' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'efa-ke' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'eia-ke' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Synth. Sat. brightness temperature cloudy +'synme5_bt_cl' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. brightness temperature clear sky +'synme5_bt_cs' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'synme5_rad_cl' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'synme5_rad_cs' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature cloudy +'synme6_bt_cl' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'synme6_bt_cs' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + } +#Synth. Sat. radiance cloudy +'synme6_rad_cl' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'synme6_rad_cs' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'synme7_bt_cl_ir11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'synme7_bt_cl_wv6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. brightness temperature clear sky +'synme7_bt_cs_ir11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'synme7_bt_cs_wv6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance clear sky +'synme7_rad_cl_ir11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'synme7_rad_cl_wv6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance clear sky +'synme7_rad_cs_ir11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. radiance cloudy +'synme7_rad_cs_wv6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_ir9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_wv6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } +#Synth. Sat. brightness temperature cloudy +'synmsg_bt_cl_wv7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_ir9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_wv6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'synmsg_bt_cs_wv7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_ir9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_wv6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. radiance cloudy +'synmsg_rad_cl_wv7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_ir9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_wv6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'synmsg_rad_cs_wv7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#smoothed forecast, temperature +'t_2m_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, maximum temp. +'tmax_2m_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, minimum temp. +'tmin_2m_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, dew point temp. +'td_2m_s' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, u comp. of wind +'u_10m_s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, v comp. of wind +'v_10m_s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#smoothed forecast, total precipitation rate +'tot_prec_s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, total cloud cover +'clct_s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover low +'clcl_s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#smoothed forecast, cloud cover medium +'clcm_s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } +#smoothed forecast, cloud cover high +'clch_s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'snow_gsp_s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, soil temperature +'t_s_s' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, wind speed (gust) +'vmax_10m_s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#calibrated forecast, total precipitation rate +'tot_prec_c' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'snow_gsp_c' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#calibrated forecast, wind speed (gust) +'vmax_10m_c' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'obsmsg_alb_hrv' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'obsmsg_alb_nir1.6' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'obsmsg_alb_vis0.6' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'obsmsg_alb_vis0.8' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + scaledValueOfCentralWaveNumber = 1250000 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir10.8' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir12.0' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir13.4' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir3.9' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 256410 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir8.7' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_ir9.7' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_wv6.2' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'obsmsg_bt_wv7.3' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 136986 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/units.def b/eccodes/definitions/grib2/localConcepts/cnmc/units.def new file mode 100644 index 00000000..a3af2632 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/cnmc/units.def @@ -0,0 +1,3073 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea ice area fraction +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Sea ice area fraction +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + is_s2s = 1 ; + typeOfFirstFixedSurface = 103 ; + subCentre = 102 ; + } +#Pressure (S) (not reduced) +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure Reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 101 ; + } +#Pressure Tendency (S) +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (S) +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Geopotential (full lev) +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Geopotential +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geometric Height of the earths surface above sea level +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Geometric Height of the layer limits above sea level(NN) +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total Column Integrated Ozone +'Dobson' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature (G) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Climat. temperature, 2m Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 9 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Max 2m Temperature (i) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Min 2m Temperature (i) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Dew Point Temperature (AV) +'~' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Radar spectra (1) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Wave spectra (1) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind Direction (DD_10M) +'degrees' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Wind Direction (DD) +'degrees' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wind speed (SP_10M) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wind speed (SP) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#U component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#U component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#V component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vertical Velocity (Geometric) (w) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Specific Humidity (S) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Specific Humidity (2m) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Specific Humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2m Relative Humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Relative Humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total column integrated water vapour +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation (s) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Column-Integrated Cloud Ice +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Precipitation rate (S) +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Large-Scale Precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective Precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Cloud Cover (800 hPa - Soil) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + } +#Cloud Cover (400 - 800 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 800 ; + } +#Cloud Cover (0 - 400 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Total Column-Integrated Cloud Water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Snowfall rate water equivalent (s) +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Large-Scale snowfall rate water equivalent (s) +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Land Cover (1=land, 0=sea) +'(0 - 1)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface Roughness length Surface Roughness +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Albedo (in short-wave) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Temperature ( 36 cm depth, vv=0h) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 36 ; + } +#Soil Temperature (41 cm depth) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 41 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 9 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Column-integrated Soil Moisture +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Column-integrated Soil Moisture (1) 0 -10 cm +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + } +#Column-integrated Soil Moisture (2) 10-100cm +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant cover +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } +#Water Runoff (10-100) +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Water Runoff (10-190) +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#Water Runoff (s) +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Sea Ice Cover ( 0= free, 1=cover) +'~' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Significant height of combined wind waves and swell +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Net short wave radiation flux (m) (at the surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Net long wave radiation flux (m) (at the surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Net short wave radiation flux (m) (on the model top) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 0 ; + } +#Net long wave radiation flux (m) (on the model top) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + } +#Net long wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 0 ; + } +#Latent Heat Net Flux (m) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Sensible Heat Net Flux (m) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Momentum Flux, U-Component (m) +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Momentum Flux, V-Component (m) +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation (m) (at the surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Photosynthetically active radiation +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } +#Solar radiation heating rate +'K s**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Thermal radiation heating rate +'K s**-1' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Latent heat flux from bare soil +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat flux from plants +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Sunshine +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + } +#Stomatal Resistance +'s m**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Non-Convective Cloud Cover, grid scale +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Cloud Mixing Ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Cloud Ice Mixing Ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Rain mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Snow mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total column integrated rain +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Grauple +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Total column integrated grauple +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } +#Total Column integrated water (all components incl. precipitation) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + typeOfFirstFixedSurface = 1 ; + } +#vertical integral of divergence of total water content (s) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#subgrid scale cloud water +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#subgridscale cloud ice +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#cloud base above msl, shallow convection +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 2 ; + } +#cloud top above msl, shallow convection +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 3 ; + } +#specific cloud water content, convective cloud +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Height of Convective Cloud Base (i) +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 2 ; + } +#Height of Convective Cloud Top (i) +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 3 ; + } +#base index (vertical level) of main convective cloud (i) +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#top index (vertical level) of main convective cloud (i) +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to convection +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Specific humitiy tendency due to convection +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#zonal wind tendency due to convection +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to convection +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#height of top of dry convection +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#height of 0 degree celsius level code 0,3,6 ? +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 4 ; + } +#Height of snow fall limit +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + } +#Tendency of specific cloud liquid water content due to conversion +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud ice content due to convection +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Specific content of precipitation particles (needed for water loadin)g +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Large scale rain rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + } +#Large scale rain rate (s) +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Convective rain rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective rain rate (s) +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#rain amount, grid-scale plus convective +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#snow amount, grid-scale plus convective +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Temperature tendency due to grid scale precipation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Specific humitiy tendency due to grid scale precipitation +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#tendency of specific cloud liquid water content due to grid scale precipitation +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'~' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } +#tendency of specific cloud ice content due to grid scale precipitation +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Graupel (snow pellets) precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + } +#Graupel (snow pellets) precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow density +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 1 ; + } +#Pressure perturbation +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#supercell detection index 1 (rot. up+down drafts) +'s**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#supercell detection index 2 (only rot. up drafts) +'s**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy, most unstable +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Inhibition, most unstable +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } +#Convective Available Potential Energy, mean layer +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective Inhibition, mean layer +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } +#Convective turbulent kinetic enery +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } +#Tendency of turbulent kinetic energy +'m s**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Kinetic Energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Turbulent Kinetic Energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusioncoefficient for momentum +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Turbulent diffusion coefficient for heat (and moisture) +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Turbulent transfer coefficient for impulse +'~' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#Turbulent transfer coefficient for heat (and Moisture) +'~' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 1 ; + } +#mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#maximum Wind 10m +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Air concentration of Ruthenium 103 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } +#Soil Temperature (multilayers) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#Column-integrated Soil Moisture (multilayers) +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfFirstFixedSurface = 106 ; + } +#soil ice content (multilayers) +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#Plant Canopy Surface Water +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow temperature (top of snow) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } +#Minimal Stomatal Resistance +'s m**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 1 ; + } +#sea Ice Temperature +'K' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Base reflectivity (cmax) +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + } +#unknown +'m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Effective transmissivity of solar radiation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#sum of contributions to evaporation +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#total transpiration from all soil layers +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#total forcing at soil surface +'W m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#residuum of soil moisture +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Massflux at convective cloud base +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective Available Potential Energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#moisture convergence for Kuo-type closure +'s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } +#total wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#wind sea mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 101 ; + } +#wind sea peak period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#swell mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 101 ; + } +#swell peak period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#total wave peak period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#total wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#total Tm1 period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#total Tm2 period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#total directional spread +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#analysis error(standard deviation), geopotential(gpm) +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + typeOfStatisticalProcessing = 6 ; + } +#analysis error(standard deviation), u-comp. of wind +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#analysis error(standard deviation), v-comp. of wind +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; + } +#zonal wind tendency due to subgrid scale oro. +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#meridional wind tendency due to subgrid scale oro. +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Standard deviation of sub-grid scale orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfFirstFixedSurface = 1 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 1 ; + } +#Angle of sub-gridscale orography +'radians' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + typeOfFirstFixedSurface = 1 ; + } +#Slope of sub-gridscale orography +'~' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 1 ; + } +#surface emissivity +'~' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Type +'~' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Leaf area index +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + } +#root depth of vegetation +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + typeOfFirstFixedSurface = 1 ; + } +#height of ozone maximum (climatological) +'Pa' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#vertically integrated ozone content (climatological) +'Pa' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the vegetation phase +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Plant covering degree in the quiescent phas +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } +#Max Leaf area index +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Min Leaf area index +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Orographie + Land-Meer-Verteilung +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#variance of soil moisture content (0-10) +'kg**2 m**-4' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 106 ; + } +#variance of soil moisture content (10-100) +'kg**2 m**-4' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + } +#evergreen forest +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + typeOfFirstFixedSurface = 1 ; + } +#deciduous forest +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + } +#normalized differential vegetation index +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } +#normalized differential vegetation index (NDVI) +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'~' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Total sulfate aerosol +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + } +#Total sulfate aerosol (12M) +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } +#Total soil dust aerosol +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + } +#Total soil dust aerosol (12M) +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } +#Organic aerosol +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + } +#Organic aerosol (12M) +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } +#Black carbon aerosol +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + } +#Black carbon aerosol (12M) +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 0 ; + } +#Sea salt aerosol +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + } +#Sea salt aerosol (12M) +'~' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 0 ; + } +#tendency of specific humidity +'s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#water vapor flux +'s**-1 m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } +#Coriolis parameter +'s**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical latitude +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#geographical longitude +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } +#Friction velocity +'m s**-1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Delay of the GPS signal trough the (total) atm. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough wet atmos. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#Delay of the GPS signal trough dry atmos. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Ozone Mixing Ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 105 ; + } +#Air concentration of Ruthenium 103 (Ru103- concentration) +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + } +#Ru103-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 193 ; + } +#Ru103-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 194 ; + } +#Air concentration of Strontium 90 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 195 ; + } +#Sr90-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 196 ; + } +#Sr90-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 197 ; + } +#I131-concentration +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 198 ; + } +#I131-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 199 ; + } +#I131-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 200 ; + } +#Cs137-concentration +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 201 ; + } +#Cs137-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 202 ; + } +#Cs137-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 203 ; + } +#Air concentration of Tellurium 132 (Te132-concentration) +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 204 ; + } +#Te132-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 205 ; + } +#Te132-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 206 ; + } +#Air concentration of Zirconium 95 (Zr95-concentration) +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 207 ; + } +#Zr95-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 208 ; + } +#Zr95-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 209 ; + } +#Air concentration of Krypton 85 (Kr85-concentration) +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 210 ; + } +#Kr85-dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 211 ; + } +#Kr85-wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 212 ; + } +#TRACER - concentration +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 213 ; + } +#TRACER - dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 214 ; + } +#TRACER - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 215 ; + } +#Air concentration of Xenon 133 (Xe133 - concentration) +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 216 ; + } +#Xe133 - dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 217 ; + } +#Xe133 - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 218 ; + } +#I131g - concentration +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 219 ; + } +#Xe133 - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 220 ; + } +#I131g - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 221 ; + } +#I131o - concentration +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 222 ; + } +#I131o - dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 223 ; + } +#I131o - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 224 ; + } +#Air concentration of Barium 40 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 225 ; + } +#Ba140 - dry deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 226 ; + } +#Ba140 - wet deposition +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 227 ; + } +#u-momentum flux due to SSO-effects +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#u-momentum flux due to SSO-effects +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#v-momentum flux due to SSO-effects +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } +#Gravity wave dissipation (vertical integral) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Gravity wave dissipation (vertical integral) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 1 ; + } +#UV_Index_Maximum_W UV_Index clouded (W), daily maximum +'~' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#wind shear +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 105 ; + } +#storm relative helicity +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#absolute vorticity advection +'s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfFirstFixedSurface = 1 ; + } +#weather interpretation (WMO) +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 1 ; + } +#Isentrope potentielle Vorticity +'K m**2 kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 107 ; + } +#Druck einer isentropen Flaeche +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + scaleFactorOfFirstFixedSurface = -2 ; + } +#KO index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } +#Aequivalentpotentielle Temperatur +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Ceiling +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + } +#Icing Grade (1=LGT,2=MOD,3=SEV) +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#modified cloud depth for media +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } +#modified cloud cover for media +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of geopotential +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of geopotential +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference FG-AN of temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 199 ; + typeOfStatisticalProcessing = 5 ; + } +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } +#Monthly Mean of RMS of difference FG-AN of kinetic energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; + } +#Monthly Mean of RMS of difference IA-AN of kinetic energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 200 ; + typeOfStatisticalProcessing = 5 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + satelliteSeries = 331 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + } +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance cloudy +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 82644 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Synth. Sat. radiance clear sky +'W m sr m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + } +#smoothed forecast, temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, maximum temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, minimum temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, dew point temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#smoothed forecast, u comp. of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#smoothed forecast, v comp. of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#smoothed forecast, total precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 1 ; + } +#smoothed forecast, total cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 197 ; + } +#smoothed forecast, cloud cover low +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + } +#smoothed forecast, cloud cover medium +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + } +#smoothed forecast, cloud cover high +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfSecondFixedSurface = -2 ; + } +#smoothed forecast, large-scale snowfall rate w.e. +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfGeneratingProcess = 197 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#smoothed forecast, soil temperature +'K' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 106 ; + } +#smoothed forecast, wind speed (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#calibrated forecast, total precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 1 ; + } +#calibrated forecast, large-scale snowfall rate w.e. +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 198 ; + typeOfStatisticalProcessing = 1 ; + } +#calibrated forecast, wind speed (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 198 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + scaledValueOfCentralWaveNumber = 2000000 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 625000 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 1666666 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 1250000 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 92592 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 83333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 74626 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 256410 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 114942 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfCentralWaveNumber = 103092 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 161290 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; + } +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + instrumentType = 207 ; + satelliteSeries = 333 ; + scaledValueOfCentralWaveNumber = 136986 ; + satelliteNumber = 72 ; + typeOfGeneratingProcess = 8 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfName.def b/eccodes/definitions/grib2/localConcepts/ecmf/cfName.def new file mode 100644 index 00000000..713d4ea1 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/cfName.def @@ -0,0 +1,633 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total column water vapour +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'surface_temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'lwe_thickness_of_stratiform_precipitation_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Total cloud cover +'cloud_area_fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Albedo +'surface_albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Particulate matter d < 1 um +'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Hydrogen peroxide +'mass_fraction_of_hydrogen_peroxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'mass_fraction_of_methane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'mass_fraction_of_nitric_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Ethene +'mass_fraction_of_ethene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Peroxyacetyl nitrate +'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Isoprene +'mass_fraction_of_isoprene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'mass_fraction_of_dimethyl_sulfide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroxyl radical +'mass_fraction_of_hydroxyl_radical_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'mass_fraction_of_nitrate_radical_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'mass_fraction_of_dinitrogen_pentoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Methanol +'mass_fraction_of_methanol_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'mass_fraction_of_formic_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Ethane +'mass_fraction_of_ethane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'mass_fraction_of_ethanol_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'mass_fraction_of_propane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'mass_fraction_of_propene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'mass_fraction_of_terpenes_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Chlorine dioxide +'mass_fraction_of_chlorine_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'mass_fraction_of_chlorine_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'mass_fraction_of_hypochlorous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Hydrogen bromide +'mass_fraction_of_hydrogen_bromide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Hypobromous acid +'mass_fraction_of_hypobromous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Methyl chloride +'mass_fraction_of_methyl_chloride_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Methyl bromide +'mass_fraction_of_methyl_bromide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Sulfuric acid +'mass_fraction_of_sulfuric_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'mass_fraction_of_nitrous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Acetic acid +'mass_fraction_of_acetic_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#Chlorine monoxide +'mass_fraction_of_chlorine_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Bromine monoxide +'mass_fraction_of_bromine_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Bromine nitrate +'mass_fraction_of_bromine_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Hydrogen chloride +'mass_fraction_of_hydrogen_chloride_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Total column hydrogen peroxide +'atmosphere_mass_content_of_hydrogen_peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'atmosphere_mass_content_of_methane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'atmosphere_mass_content_of_nitric_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column ethene +'atmosphere_mass_content_of_ethene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column peroxyacetyl nitrate +'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column isoprene +'atmosphere_mass_content_of_isoprene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'atmosphere_mass_content_of_dimethyl_sulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'atmosphere_mass_content_of_ammonia' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'atmosphere_mass_content_of_sulfate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column nitrogen monoxide +'atmosphere_mass_content_of_nitrogen_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroxyl radical +'atmosphere_mass_content_of_hydroxyl_radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'atmosphere_mass_content_of_nitrate_radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'atmosphere_mass_content_of_dinitrogen_pentoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column methanol +'atmosphere_mass_content_of_methanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'atmosphere_mass_content_of_formic_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column ethane +'atmosphere_mass_content_of_ethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'atmosphere_mass_content_of_ethanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'atmosphere_mass_content_of_propane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'atmosphere_mass_content_of_propene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'atmosphere_mass_content_of_terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column of chlorine dioxide +'atmosphere_mass_content_of_chlorine_dioxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'atmosphere_mass_content_of_chlorine_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'atmosphere_mass_content_of_hypochlorous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of hydrogen bromide +'atmosphere_mass_content_of_hydrogen_bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of hypobromous acid +'atmosphere_mass_content_of_hypobromous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of methyl chloride +'atmosphere_mass_content_of_methyl_chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of methyl bromide +'atmosphere_mass_content_of_methyl_bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of nitrous acid +'atmosphere_mass_content_of_nitrous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of acetic acid +'atmosphere_mass_content_of_acetic_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of chlorine monoxide +'atmosphere_mass_content_of_chlorine_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of bromine monoxide +'atmosphere_mass_content_of_bromine_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of bromine nitrate +'atmosphere_mass_content_of_bromine_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of hydrogen chloride +'atmosphere_mass_content_of_hydrogen_chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Sea water potential temperature +'sea_water_potential_temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'sea_water_practical_salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'upward_sea_water_velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'sea_water_sigma_theta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Ocean barotropic stream function +'ocean_barotropic_streamfunction' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'surface_downward_northward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Carbon Dioxide +'mass_fraction_of_carbon_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'mass_fraction_of_methane_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'mass_fraction_of_nitrous_oxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Nitrous oxide +'atmosphere_mass_content_of_nitrous_oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'mass_fraction_of_formaldehyde_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'atmosphere_mass_content_of_nitrogen_dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'atmosphere_mass_content_of_sulfur_dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'atmosphere_mass_content_of_carbon_monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'atmosphere_mass_content_of_formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Radon +'mass_fraction_of_radon_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Total column Radon +'atmosphere_mass_content_of_radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'atmosphere_mass_content_of_ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def new file mode 100644 index 00000000..2882a474 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def @@ -0,0 +1,54 @@ +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'eastward_sea_water_velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'northward_sea_water_velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'sea_ice_thickness' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'sea_surface_height_above_geoid' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#Depth of 20C isotherm +'depth_of_isosurface_of_sea_water_potential_temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'temperature_in_surface_snow' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def b/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def new file mode 100644 index 00000000..113ceb82 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -0,0 +1,22056 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Equivalent potential temperature +'eqpt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'ssfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'scfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'udvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'vdvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'urtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'vrtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'uvcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'cl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'cvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'cvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'tvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'tvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'asn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'istl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'es' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'smlt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'sdur' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'lspf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Montgomery potential +'mont' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'obct' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'sktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Experimental product +'p80.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'p10fg6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'emis' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'vite' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'at' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'bv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'tcwv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'stl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'swl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'sd' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'lsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'sf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'chnk' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'snr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'tnr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'lnsp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'swhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'lwhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'tsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'blh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'sdor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'tcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'stl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'al' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'e' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'stl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'swl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'ccc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'lcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'mcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'hcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'lgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'src' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'veg' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'paw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'ro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'tco3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#TOA incident solar radiation +'tisr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'ie' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'asq' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'stl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'swl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Convective snowfall +'csf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'lsf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'fal' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'fsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'aiw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'ice' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'strfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'ptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'cldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'asndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'rsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'sltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'esdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'smltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'sdurdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'fgdiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'montdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'presdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'capediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'obctdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'p63.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'p64.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'p65.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'p66.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'p67.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'p70.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'p71.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'p78.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'p79.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'fg6diff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'p125.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'bvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'zdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'qdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'spdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'tcwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'sddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'chnkdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'ghdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'rdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'udiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'vdiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'difft2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'srdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'aldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'ediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'hccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'rodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'tco3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'sidiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'tpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'sktdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'faldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'ccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'icediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'p193.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'utendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'ttendr' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'ua100' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'va100' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdms' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'p55.210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Injection height (from IS4FIRES) +'injh' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 60 ; + } +#Particulate matter d < 1 um +'pm1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 118 ; + } +#Mean altitude of maximum injection +'mami' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'apt' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#Wildfire day-time radiative power +'frpdayfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 167 ; + } +#Wildfire night-time radiative power +'frpngtfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 169 ; + } +#Wildfire day-time inverse variance of radiative power +'frpdayivar' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 177 ; + } +#Wildfire night-time inverse variance of radiative power +'frpngtivar' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 179 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 241 ; + } +#Altitude of plume bottom +'apb' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'p55.211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'alediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'aptdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Experimental product +'p1.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'p2.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'p3.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'p4.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'p5.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'p6.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'p7.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'p8.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'p9.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'p10.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'p11.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'p12.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'p13.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'p14.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'p15.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'p16.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'p17.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'p18.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'p19.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'p20.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'p21.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'p22.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'p23.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'p24.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'p25.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'p26.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'p27.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'p28.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'p29.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'p30.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'p31.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'p32.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'p33.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'p34.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'p35.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'p36.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'p37.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'p38.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'p39.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'p40.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'p41.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'p42.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'p43.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'p44.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'p45.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'p46.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'p47.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'p48.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'p49.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'p50.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'p51.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'p52.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'p53.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'p54.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'p55.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'p57.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'p58.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'p59.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'p60.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'p61.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'p62.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'p63.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'p64.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'p65.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'p66.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'p67.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'p68.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'p69.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'p70.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'p71.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'p72.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'p73.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'p74.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'p75.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'p76.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'p77.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'p78.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'p79.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'p121.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'p122.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'p123.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'p124.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'p125.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'p126.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'p127.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'p128.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'p129.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'p130.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'p131.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'p132.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'p133.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'p134.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'p135.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'p136.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'p137.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'p138.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'p139.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'p140.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'p141.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'p142.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'p143.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'p144.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'p145.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'p146.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'p147.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'p148.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'p149.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'p150.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'p151.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'p152.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'p153.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'p154.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'p155.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'p156.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'p157.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'p158.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'p159.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'p160.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'p161.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'p162.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'p163.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'p164.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'p165.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'p166.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'p167.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'p168.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'p169.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'p170.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'p171.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'p172.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'p173.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'p174.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'p175.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'p176.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'p177.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'p178.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'p179.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'p180.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'p181.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'p182.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'p183.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'p184.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'p185.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'p186.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'p187.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'p188.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'p189.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'p190.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'p191.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'p192.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'p193.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'p194.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'p195.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'p196.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'p197.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'p198.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'p199.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'p200.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'p201.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'p202.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'p203.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'p204.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'p205.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'p206.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'p207.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'p208.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'p209.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'p210.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'p211.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'p212.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'p213.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'p214.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'p215.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'p216.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'p217.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'p218.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'p219.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'p220.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'p221.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'p222.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'p223.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'p224.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'p225.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'p226.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'p227.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'p228.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'p229.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'p230.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'p231.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'p232.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'p233.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'p234.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'p235.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'p236.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'p237.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'p238.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'p239.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'p240.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'p241.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'p242.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'p243.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'p244.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'p245.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'p246.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'p247.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'p248.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'p249.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'p250.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'p251.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'p252.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'p253.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'p254.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'p255.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +#Random pattern 1 for SPP scheme +'spp1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 101 ; + } +#Random pattern 2 for SPP scheme +'spp2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 102 ; + } +#Random pattern 3 for SPP scheme +'spp3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 103 ; + } +#Random pattern 4 for SPP scheme +'spp4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 104 ; + } +#Random pattern 5 for SPP scheme +'spp5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 105 ; + } +#Random pattern 6 for SPP scheme +'spp6' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 106 ; + } +#Random pattern 7 for SPP scheme +'spp7' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 107 ; + } +#Random pattern 8 for SPP scheme +'spp8' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 108 ; + } +#Random pattern 9 for SPP scheme +'spp9' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 109 ; + } +#Random pattern 10 for SPP scheme +'spp10' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 110 ; + } +#Random pattern 11 for SPP scheme +'spp11' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 111 ; + } +#Random pattern 12 for SPP scheme +'spp12' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 112 ; + } +#Random pattern 13 for SPP scheme +'spp13' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 113 ; + } +#Random pattern 14 for SPP scheme +'spp14' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 114 ; + } +#Random pattern 15 for SPP scheme +'spp15' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 115 ; + } +#Random pattern 16 for SPP scheme +'spp16' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 116 ; + } +#Random pattern 17 for SPP scheme +'spp17' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 117 ; + } +#Random pattern 18 for SPP scheme +'spp18' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 118 ; + } +#Random pattern 19 for SPP scheme +'spp19' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 119 ; + } +#Random pattern 20 for SPP scheme +'spp20' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 120 ; + } +#Random pattern 21 for SPP scheme +'spp21' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 121 ; + } +#Random pattern 22 for SPP scheme +'spp22' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 122 ; + } +#Random pattern 23 for SPP scheme +'spp23' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 123 ; + } +#Random pattern 24 for SPP scheme +'spp24' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 124 ; + } +#Random pattern 25 for SPP scheme +'spp25' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 125 ; + } +#Random pattern 26 for SPP scheme +'spp26' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 126 ; + } +#Random pattern 27 for SPP scheme +'spp27' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 127 ; + } +#Random pattern 28 for SPP scheme +'spp28' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 128 ; + } +#Random pattern 29 for SPP scheme +'spp29' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 129 ; + } +#Random pattern 30 for SPP scheme +'spp30' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 130 ; + } +#Random pattern 31 for SPP scheme +'spp31' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 131 ; + } +#Random pattern 32 for SPP scheme +'spp32' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 132 ; + } +#Random pattern 33 for SPP scheme +'spp33' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 133 ; + } +#Random pattern 34 for SPP scheme +'spp34' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 134 ; + } +#Random pattern 35 for SPP scheme +'spp35' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 135 ; + } +#Random pattern 36 for SPP scheme +'spp36' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 136 ; + } +#Random pattern 37 for SPP scheme +'spp37' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 137 ; + } +#Random pattern 38 for SPP scheme +'spp38' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 138 ; + } +#Random pattern 39 for SPP scheme +'spp39' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 139 ; + } +#Random pattern 40 for SPP scheme +'spp40' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 140 ; + } +#Random pattern 41 for SPP scheme +'spp41' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 141 ; + } +#Random pattern 42 for SPP scheme +'spp42' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 142 ; + } +#Random pattern 43 for SPP scheme +'spp43' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 143 ; + } +#Random pattern 44 for SPP scheme +'spp44' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 144 ; + } +#Random pattern 45 for SPP scheme +'spp45' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 145 ; + } +#Random pattern 46 for SPP scheme +'spp46' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 146 ; + } +#Random pattern 47 for SPP scheme +'spp47' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 147 ; + } +#Random pattern 48 for SPP scheme +'spp48' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 148 ; + } +#Random pattern 49 for SPP scheme +'spp49' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 149 ; + } +#Random pattern 50 for SPP scheme +'spp50' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 150 ; + } +#Cosine of solar zenith angle +'uvcossza' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +#UV biologically effective dose +'uvbed' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +#UV biologically effective dose clear-sky +'uvbedcs' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +#Profile of optical thickness at 340 nm +'aot340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +#Source/gain of sulphate aerosol +'aersrcsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +#Dry deposition of sulphate aerosol +'aerddpsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +#Sedimentation of sulphate aerosol +'aersdmsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +#Negative fixer of sulphate aerosol +'aerngtsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'aermsssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +#Sulphate aerosol optical depth +'aerodsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Asymmetry factor at 340 nm +'asymmetry340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Asymmetry factor at 355 nm +'asymmetry355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Asymmetry factor at 380 nm +'asymmetry380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Asymmetry factor at 400 nm +'asymmetry400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Asymmetry factor at 440 nm +'asymmetry440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Asymmetry factor at 469 nm +'asymmetry469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Asymmetry factor at 500 nm +'asymmetry500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Asymmetry factor at 532 nm +'asymmetry532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Asymmetry factor at 550 nm +'asymmetry550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Asymmetry factor at 645 nm +'asymmetry645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Asymmetry factor at 670 nm +'asymmetry670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Asymmetry factor at 800 nm +'asymmetry800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Asymmetry factor at 858 nm +'asymmetry858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Asymmetry factor at 865 nm +'asymmetry865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Asymmetry factor at 1020 nm +'asymmetry1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Asymmetry factor at 1064 nm +'asymmetry1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Asymmetry factor at 1240 nm +'asymmetry1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Asymmetry factor at 1640 nm +'asymmetry1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Asymmetry factor at 2130 nm +'asymmetry2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'aersrcnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Source/gain of coarse-mode nitrate aerosol +'aersrcnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Dry deposition of fine-mode nitrate aerosol +'aerddpnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'aerddpnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Sedimentation of fine-mode nitrate aerosol +'aersdmnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'aersdmnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'aerwdlnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'aerwdlnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'aerwdcnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'aerwdcnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Negative fixer of fine-mode nitrate aerosol +'aerngtnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'aerngtnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'aermssnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'aermssnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'aerodnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 65534 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'aerodnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfSizeInterval = 255 ; + aerosolType = 65533 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + } +#Source/gain of ammonium aerosol +'aersrcam' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Negative fixer of ammonium aerosol +'aerngtam' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Experimental product +'p1.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'p2.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'p3.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'p4.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'p5.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'p6.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'p7.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'p8.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'p9.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'p10.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'p11.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'p12.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'p13.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'p14.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'p15.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'p16.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'p17.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'p18.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'p19.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'p20.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'p21.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'p22.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'p23.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'p24.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'p25.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'p26.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'p27.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'p28.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'p29.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'p30.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'p31.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'p32.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'p33.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'p34.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'p35.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'p36.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'p37.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'p38.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'p39.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'p40.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'p41.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'p42.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'p43.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'p44.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'p45.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'p46.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'p47.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'p48.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'p49.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'p50.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'p51.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'p52.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'p53.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'p54.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'p55.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'p57.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'p58.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'p59.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'p60.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'p61.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'p62.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'p63.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'p64.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'p65.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'p66.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'p67.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'p68.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'p69.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'p70.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'p71.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'p72.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'p73.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'p74.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'p75.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'p76.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'p77.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'p78.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'p79.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'p121.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'p122.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'p123.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'p124.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'p125.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'p126.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'p127.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'p128.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'p129.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'p130.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'p131.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'p132.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'p133.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'p134.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'p135.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'p136.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'p137.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'p138.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'p139.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'p140.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'p141.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'p142.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'p143.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'p144.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'p145.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'p146.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'p147.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'p148.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'p149.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'p150.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'p151.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'p152.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'p153.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'p154.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'p155.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'p156.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'p157.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'p158.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'p159.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'p160.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'p161.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'p162.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'p163.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'p164.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'p165.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'p166.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'p167.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'p168.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'p169.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'p170.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'p171.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'p172.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'p173.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'p174.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'p175.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'p176.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'p177.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'p178.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'p179.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'p180.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'p181.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'p182.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'p183.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'p184.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'p185.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'p186.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'p187.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'p188.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'p189.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'p190.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'p191.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'p192.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'p193.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'p194.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'p195.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'p196.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'p197.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'p198.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'p199.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'p200.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'p201.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'p202.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'p203.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'p204.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'p205.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'p206.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'p207.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'p208.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'p209.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'p210.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'p211.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'p212.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'p213.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'p214.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'p215.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'p216.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'p217.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'p218.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'p219.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'p220.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'p221.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'p222.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'p223.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'p224.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'p225.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'p226.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'p227.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'p228.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'p229.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'p230.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'p231.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'p232.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'p233.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'p234.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'p235.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'p236.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'p237.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'p238.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'p239.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'p240.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'p241.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'p242.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'p243.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'p244.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'p245.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'p246.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'p247.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'p248.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'p249.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'p250.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'p251.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'p252.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'p253.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'p254.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'p255.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'ch4_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'hno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'par' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'c2h4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'ole' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'ald2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'rooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'onit' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'c5h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'dms' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'nh4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'msa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'o3s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'pb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'ho2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'ho2no2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'ror' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'rxpar' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'xo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'nh2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'psc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'ch3oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'hcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'mcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'c2h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'c2h5oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'c3h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'c3h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'c10h16' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'ispd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'no3_a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'ch3coch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'aco2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'hypropo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Carbon dioxide (chemistry) +'co2_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 57 ; + } +#Nitrous oxide (chemistry) +'n2o_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 58 ; + } +#Water vapour (chemistry) +'h2o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 59 ; + } +#Oxygen +'o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 60 ; + } +#Singlet oxygen +'o2_1s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 61 ; + } +#Singlet delta oxygen +'o2_1d' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 62 ; + } +#Chlorine dioxide +'oclo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'clono2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'hocl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Chlorine +'cl2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 66 ; + } +#Nitryl chloride +'clno2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 67 ; + } +#Hydrogen bromide +'hbr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Dichlorine dioxide +'cl2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 69 ; + } +#Hypobromous acid +'hobr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Trichlorofluoromethane +'cfc11' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 71 ; + } +#Dichlorodifluoromethane +'cfc12' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 72 ; + } +#Trichlorotrifluoroethane +'cfc113' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 73 ; + } +#Dichlorotetrafluoroethane +'cfc114' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 74 ; + } +#Chloropentafluoroethane +'cfc115' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 75 ; + } +#Tetrachloromethane +'ccl4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 76 ; + } +#Methyl chloroform +'ch3ccl3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 77 ; + } +#Methyl chloride +'ch3cl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Chlorodifluoromethane +'hcfc22' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 79 ; + } +#Methyl bromide +'ch3br' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Dibromodifluoromethane +'ha1202' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 81 ; + } +#Bromochlorodifluoromethane +'ha1211' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 82 ; + } +#Trifluorobromomethane +'ha1301' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 83 ; + } +#Cbrf2cbrf2 +'ha2402' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 84 ; + } +#Sulfuric acid +'h2so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'hono' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Alkanes low oh rate +'hc3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 87 ; + } +#Alkanes med oh rate +'hc5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 88 ; + } +#Alkanes high oh rate +'hc8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 89 ; + } +#Terminal alkenes +'olt' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 90 ; + } +#Internal alkenes +'oli' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 91 ; + } +#Ethylperoxy radical +'c2h5o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 92 ; + } +#Butadiene +'dien' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 93 ; + } +#Ethyl hydroperoxide +'c2h5ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 94 ; + } +#A-pinene cyclic terpenes +'api' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 95 ; + } +#Acetic acid +'ch3cooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#D-limonene cyclic diene +'lim' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 97 ; + } +#Acetaldehyde +'ch3cho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 98 ; + } +#Toluene and less reactive aromatics +'tol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 99 ; + } +#Xylene and more reactive aromatics +'xyl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 100 ; + } +#Glycolaldehyde +'glyald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 101 ; + } +#Cresol +'cresol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 102 ; + } +#Acetaldehyde and higher +'ald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 103 ; + } +#Peracetic acid +'ch3coooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 104 ; + } +#Ketones +'ket' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 105 ; + } +#Hoch2ch2o2 +'eo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 106 ; + } +#Glyoxal +'glyoxal' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 107 ; + } +#Hoch2ch2o +'eo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 108 ; + } +#Unsaturated dicarbonyls +'dcb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 109 ; + } +#Methacrolein +'macr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 110 ; + } +#Unsaturated hydroxy dicarbonyl +'udd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 111 ; + } +#Isopropyldioxidanyl +'c3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 112 ; + } +#Hydroxy ketone +'hket' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 113 ; + } +#Isopropyl hydroperoxide +'c3h7ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 114 ; + } +#C3h6oho2 +'po2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 115 ; + } +#C3h6ohooh +'pooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 116 ; + } +#Higher organic peroxides +'op2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 117 ; + } +#Hydroxyacetone +'hyac' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 118 ; + } +#Peroxyacetic acid +'paa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 119 ; + } +#Ch3coch2o2 +'ro2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 120 ; + } +#Peroxy radical from c2h6 +'ethp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 121 ; + } +#Peroxy radical from hc3 +'hc3p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 122 ; + } +#Peroxy radical from hc5 +'hc5p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 123 ; + } +#Lumped alkenes +'bigene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 124 ; + } +#Peroxy radical from hc8 +'hc8p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 125 ; + } +#Lumped alkanes +'bigalk' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 126 ; + } +#Peroxy radical from c2h4 +'etep' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 127 ; + } +#C4h8o +'mek' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 128 ; + } +#Peroxy radical from terminal alkenes +'oltp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 129 ; + } +#C4h9o3 +'eneo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 130 ; + } +#Peroxy radical from internal alkenes +'olip' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 131 ; + } +#Ch3coch(oo)ch3 +'meko2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 132 ; + } +#Peroxy radical from c5h8 +'isopo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 133 ; + } +#Ch3coch(ooh)ch3 +'mekooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 134 ; + } +#Peroxy radical from a-pinene cyclic terpenes +'apip' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 135 ; + } +#Ch2=c(ch3)co3 +'mco3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 136 ; + } +#Peroxy radical from d-limonene cyclic diene +'limp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 137 ; + } +#Methylvinylketone +'mvk' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 138 ; + } +#Phenoxy radical +'pho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 139 ; + } +#Peroxy radical from toluene and less reactive aromatics +'tolp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 140 ; + } +#Ch3c(o)ch(oo)ch2oh +'macro2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 141 ; + } +#Peroxy radical from xylene and more reactive aromatics +'xylp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 142 ; + } +#H3c(o)ch(ooh)ch2oh +'macrooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 143 ; + } +#Peroxy radical from cresol +'cslp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 144 ; + } +#Unsaturated pans +'mpan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 145 ; + } +#Unsaturated acyl peroxy radical +'tco3_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 146 ; + } +#Peroxy radical from ketones +'ketp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 147 ; + } +#C5h11o2 +'alko2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 148 ; + } +#No3-alkenes adduct reacting to form carbonitrates +'olnn' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 149 ; + } +#C5h11ooh +'alkooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 150 ; + } +#No3-alkenes adduct reacting via decomposition +'olnd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 151 ; + } +#Hoch2c(ch3)=chcho +'bigald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 152 ; + } +#C5h6o2 +'hydrald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 153 ; + } +#Trop sulfuric acid +'sulf' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 154 ; + } +#Oxides +'ox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 155 ; + } +#Ch2chc(ch3)(oo)ch2ono2 +'isopno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 156 ; + } +#C3 organic nitrate +'onitr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 157 ; + } +#Chlorine oxides +'clox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 158 ; + } +#Bromine oxides +'brox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 159 ; + } +#Hoch2c(ooh)(ch3)chchoh +'xooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 160 ; + } +#Hoch2c(ooh)(ch3)ch=ch2 +'isopooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 161 ; + } +#Lumped aromatics +'toluene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 162 ; + } +#Dimethyl sulfoxyde +'dmso' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 163 ; + } +#C7h9o5 +'tolo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 164 ; + } +#C7h10o5 +'tolooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 165 ; + } +#Hydrogensulfide +'h2s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 166 ; + } +#C7h10o6 +'xoh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 167 ; + } +#All nitrogen oxides +'noy' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 168 ; + } +#Chlorine family +'cly' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 169 ; + } +#C10h16(oh)(oo) +'terpo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 170 ; + } +#Bromine family +'bry' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 171 ; + } +#C10h18o3 +'terpooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 172 ; + } +#Nitrogen atom +'n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 173 ; + } +#Chlorine monoxide +'clo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Chlorine atom +'cl_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 175 ; + } +#Bromine monoxide +'bro' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Hydrogen atom +'h_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 177 ; + } +#Methyl group +'ch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 178 ; + } +#Aromatic-ho from toluene and less reactive aromatics +'addt' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 179 ; + } +#Aromatic-ho from xylene and more reactive aromatics +'addx' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 180 ; + } +#Ammonium nitrate +'nh4no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 181 ; + } +#Aromatic-ho from csl +'addc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 182 ; + } +#Secondary organic aerosol type 1 +'soa1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 183 ; + } +#Secondary organic aerosol type 2a +'soa2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 184 ; + } +#Secondary organic aerosol type 2b +'soa2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 185 ; + } +#Condensable gas type 1 +'sog1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 186 ; + } +#Condensable gas type 2a +'sog2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 187 ; + } +#Condensable gas type 2b +'sog2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 188 ; + } +#Sulfur trioxide +'so3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 189 ; + } +#Carbonyl sulfide +'ocs_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 190 ; + } +#Bromine atom +'br' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 191 ; + } +#Bromine +'br2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 192 ; + } +#Bromine monochloride +'brcl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 193 ; + } +#Bromine nitrate +'brono2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Dibromomethane +'ch2br2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 195 ; + } +#Methoxy radical +'ch3o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 196 ; + } +#Tribromomethane +'chbr3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 197 ; + } +#Asymmetric chlorine dioxide radical +'cloo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 198 ; + } +#Hydrogen +'h2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 199 ; + } +#Hydrogen chloride +'hcl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Formyl radical +'hco' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 201 ; + } +#Hydrogen fluoride +'hf' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 202 ; + } +#Oxygen atom +'o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 203 ; + } +#Excited oxygen atom +'o1d' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 204 ; + } +#Ground state oxygen atom +'o3p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 205 ; + } +#Stratospheric aerosol +'strataer' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 206 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'tc_ch4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'tc_par' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'tc_c2h4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'tc_ole' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'tc_rooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'tc_nh3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'tc_so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'tc_nh4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'tc_pb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'tc_ror' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'tc_nh2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'tc_c2h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'tc_c3h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'tc_c3h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'tc_aco2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Total column of carbon dioxide (chemistry) +'tc_co2_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 57 ; + } +#Total column of nitrous oxide (chemistry) +'tc_n2o_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 58 ; + } +#Total column of water vapour (chemistry) +'tc_h2o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 59 ; + } +#Total column of oxygen +'tc_o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 60 ; + } +#Total column of singlet oxygen +'tc_o2_1s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 61 ; + } +#Total column of singlet delta oxygen +'tc_o2_1d' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 62 ; + } +#Total column of chlorine dioxide +'tc_oclo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'tc_clono2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'tc_hocl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of chlorine +'tc_cl2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 66 ; + } +#Total column of nitryl chloride +'tc_clno2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 67 ; + } +#Total column of hydrogen bromide +'tc_hbr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of dichlorine dioxide +'tc_cl2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 69 ; + } +#Total column of hypobromous acid +'tc_hobr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of trichlorofluoromethane +'tc_cfc11' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 71 ; + } +#Total column of dichlorodifluoromethane +'tc_cfc12' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 72 ; + } +#Total column of trichlorotrifluoroethane +'tc_cfc113' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 73 ; + } +#Total column of dichlorotetrafluoroethane +'tc_cfc114' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 74 ; + } +#Total column of chloropentafluoroethane +'tc_cfc115' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 75 ; + } +#Total column of tetrachloromethane +'tc_ccl4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 76 ; + } +#Total column of methyl chloroform +'tc_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 77 ; + } +#Total column of methyl chloride +'tc_ch3cl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of chlorodifluoromethane +'tc_hcfc22' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 79 ; + } +#Total column of methyl bromide +'tc_ch3br' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of dibromodifluoromethane +'tc_ha1202' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 81 ; + } +#Total column of bromochlorodifluoromethane +'tc_ha1211' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 82 ; + } +#Total column of trifluorobromomethane +'tc_ha1301' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 83 ; + } +#Total column of cbrf2cbrf2 +'tc_ha2402' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 84 ; + } +#Total column of sulfuric acid +'tc_h2so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 85 ; + } +#Total column of nitrous acid +'tc_hono' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of alkanes low oh rate +'tc_hc3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 87 ; + } +#Total column of alkanes med oh rate +'tc_hc5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 88 ; + } +#Total column of alkanes high oh rate +'tc_hc8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 89 ; + } +#Total column of terminal alkenes +'tc_olt' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 90 ; + } +#Total column of internal alkenes +'tc_oli' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 91 ; + } +#Total column of ethylperoxy radical +'tc_c2h5o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 92 ; + } +#Total column of butadiene +'tc_dien' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 93 ; + } +#Total column of ethyl hydroperoxide +'tc_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 94 ; + } +#Total column of a-pinene cyclic terpenes +'tc_api' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 95 ; + } +#Total column of acetic acid +'tc_ch3cooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of d-limonene cyclic diene +'tc_lim' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 97 ; + } +#Total column of acetaldehyde +'tc_ch3cho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 98 ; + } +#Total column of toluene and less reactive aromatics +'tc_tol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 99 ; + } +#Total column of xylene and more reactive aromatics +'tc_xyl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 100 ; + } +#Total column of glycolaldehyde +'tc_glyald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 101 ; + } +#Total column of cresol +'tc_cresol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 102 ; + } +#Total column of acetaldehyde and higher +'tc_ald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 103 ; + } +#Total column of peracetic acid +'tc_ch3coooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 104 ; + } +#Total column of ketones +'tc_ket' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 105 ; + } +#Total column of hoch2ch2o2 +'tc_eo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 106 ; + } +#Total column of glyoxal +'tc_glyoxal' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 107 ; + } +#Total column of hoch2ch2o +'tc_eo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 108 ; + } +#Total column of unsaturated dicarbonyls +'tc_dcb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 109 ; + } +#Total column of methacrolein +'tc_macr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 110 ; + } +#Total column of unsaturated hydroxy dicarbonyl +'tc_udd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 111 ; + } +#Total column of isopropyldioxidanyl +'tc_c3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 112 ; + } +#Total column of hydroxy ketone +'tc_hket' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 113 ; + } +#Total column of isopropyl hydroperoxide +'tc_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 114 ; + } +#Total column of c3h6oho2 +'tc_po2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 115 ; + } +#Total column of c3h6ohooh +'tc_pooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 116 ; + } +#Total column of higher organic peroxides +'tc_op2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 117 ; + } +#Total column of hydroxyacetone +'tc_hyac' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 118 ; + } +#Total column of peroxyacetic acid +'tc_paa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 119 ; + } +#Total column of ch3coch2o2 +'tc_ro2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 120 ; + } +#Total column of peroxy radical from c2h6 +'tc_ethp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 121 ; + } +#Total column of peroxy radical from hc3 +'tc_hc3p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 122 ; + } +#Total column of peroxy radical from hc5 +'tc_hc5p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 123 ; + } +#Total column of lumped alkenes +'tc_bigene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 124 ; + } +#Total column of peroxy radical from hc8 +'tc_hc8p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 125 ; + } +#Total column of lumped alkanes +'tc_bigalk' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 126 ; + } +#Total column of peroxy radical from c2h4 +'tc_etep' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 127 ; + } +#Total column of c4h8o +'tc_mek' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 128 ; + } +#Total column of peroxy radical from terminal alkenes +'tc_oltp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 129 ; + } +#Total column of c4h9o3 +'tc_eneo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 130 ; + } +#Total column of peroxy radical from internal alkenes +'tc_olip' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 131 ; + } +#Total column of ch3coch(oo)ch3 +'tc_meko2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 132 ; + } +#Total column of peroxy radical from c5h8 +'tc_isopo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 133 ; + } +#Total column of ch3coch(ooh)ch3 +'tc_mekooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 134 ; + } +#Total column of peroxy radical from a-pinene cyclic terpenes +'tc_apip' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 135 ; + } +#Total column of ch2=c(ch3)co3 +'tc_mco3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 136 ; + } +#Total column of peroxy radical from d-limonene cyclic diene +'tc_limp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 137 ; + } +#Total column of methylvinylketone +'tc_mvk' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 138 ; + } +#Total column of phenoxy radical +'tc_pho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 139 ; + } +#Total column of peroxy radical from toluene and less reactive aromatics +'tc_tolp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 140 ; + } +#Total column of ch3c(o)ch(oo)ch2oh +'tc_macro2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 141 ; + } +#Total column of peroxy radical from xylene and more reactive aromatics +'tc_xylp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 142 ; + } +#Total column of h3c(o)ch(ooh)ch2oh +'tc_macrooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 143 ; + } +#Total column of peroxy radical from cresol +'tc_cslp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 144 ; + } +#Total column of unsaturated pans +'tc_mpan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 145 ; + } +#Total column of unsaturated acyl peroxy radical +'tc_tco3_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 146 ; + } +#Total column of peroxy radical from ketones +'tc_ketp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 147 ; + } +#Total column of c5h11o2 +'tc_alko2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 148 ; + } +#Total column of no3-alkenes adduct reacting to form carbonitrates +'tc_olnn' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 149 ; + } +#Total column of c5h11ooh +'tc_alkooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 150 ; + } +#Total column of no3-alkenes adduct reacting via decomposition +'tc_olnd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 151 ; + } +#Total column of hoch2c(ch3)=chcho +'tc_bigald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 152 ; + } +#Total column of c5h6o2 +'tc_hydrald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 153 ; + } +#Total column of trop sulfuric acid +'tc_sulf' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 154 ; + } +#Total column of oxides +'tc_ox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 155 ; + } +#Total column of ch2chc(ch3)(oo)ch2ono2 +'tc_isopno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 156 ; + } +#Total column of c3 organic nitrate +'tc_onitr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 157 ; + } +#Total column of chlorine oxides +'tc_clox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 158 ; + } +#Total column of bromine oxides +'tc_brox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 159 ; + } +#Total column of hoch2c(ooh)(ch3)chchoh +'tc_xooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 160 ; + } +#Total column of hoch2c(ooh)(ch3)ch=ch2 +'tc_isopooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 161 ; + } +#Total column of lumped aromatics +'tc_toluene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 162 ; + } +#Total column of dimethyl sulfoxyde +'tc_dmso' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 163 ; + } +#Total column of c7h9o5 +'tc_tolo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 164 ; + } +#Total column of c7h10o5 +'tc_tolooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 165 ; + } +#Total column of hydrogensulfide +'tc_h2s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 166 ; + } +#Total column of c7h10o6 +'tc_xoh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 167 ; + } +#Total column of all nitrogen oxides +'tc_noy' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 168 ; + } +#Total column of chlorine family +'tc_cly' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 169 ; + } +#Total column of c10h16(oh)(oo) +'tc_terpo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 170 ; + } +#Total column of bromine family +'tc_bry' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 171 ; + } +#Total column of c10h18o3 +'tc_terpooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 172 ; + } +#Total column of nitrogen atom +'tc_n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 173 ; + } +#Total column of chlorine monoxide +'tc_clo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of chlorine atom +'tc_cl_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 175 ; + } +#Total column of bromine monoxide +'tc_bro' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of hydrogen atom +'tc_h_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 177 ; + } +#Total column of methyl group +'tc_ch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 178 ; + } +#Total column of aromatic-ho from toluene and less reactive aromatics +'tc_addt' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 179 ; + } +#Total column of aromatic-ho from xylene and more reactive aromatics +'tc_addx' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 180 ; + } +#Total column of ammonium nitrate +'tc_nh4no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 181 ; + } +#Total column of aromatic-ho from csl +'tc_addc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 182 ; + } +#Total column of secondary organic aerosol type 1 +'tc_soa1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 183 ; + } +#Total column of secondary organic aerosol type 2a +'tc_soa2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 184 ; + } +#Total column of secondary organic aerosol type 2b +'tc_soa2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 185 ; + } +#Total column of condensable gas type 1 +'tc_sog1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 186 ; + } +#Total column of condensable gas type 2a +'tc_sog2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 187 ; + } +#Total column of condensable gas type 2b +'tc_sog2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 188 ; + } +#Total column of sulfur trioxide +'tc_so3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 189 ; + } +#Total column of carbonyl sulfide +'tc_ocs_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 190 ; + } +#Total column of bromine atom +'tc_br' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 191 ; + } +#Total column of bromine +'tc_br2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 192 ; + } +#Total column of bromine monochloride +'tc_brcl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 193 ; + } +#Total column of bromine nitrate +'tc_brono2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of dibromomethane +'tc_ch2br2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 195 ; + } +#Total column of methoxy radical +'tc_ch3o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 196 ; + } +#Total column of tribromomethane +'tc_chbr3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 197 ; + } +#Total column of asymmetric chlorine dioxide radical +'tc_cloo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 198 ; + } +#Total column of hydrogen +'tc_h2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 199 ; + } +#Total column of hydrogen chloride +'tc_hcl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Total column of formyl radical +'tc_hco' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 201 ; + } +#Total column of hydrogen fluoride +'tc_hf' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 202 ; + } +#Total column of oxygen atom +'tc_o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 203 ; + } +#Total column of excited oxygen atom +'tc_o1d' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 204 ; + } +#Total column of ground state oxygen atom +'tc_o3p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 205 ; + } +#Total column of stratospheric aerosol +'tc_strataer' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 206 ; + } +#Ozone emissions +'e_go3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'e_ch4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'e_par' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'e_c2h4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'e_ole' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'e_rooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'e_nh3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'e_so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'e_nh4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'e_ra' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'e_pb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'e_ror' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'e_nh2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'e_c2h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'e_c3h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'e_c3h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'e_aco2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Emissions of carbon dioxide (chemistry) +'e_co2_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 57 ; + } +#Emissions of nitrous oxide (chemistry) +'e_n2o_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 58 ; + } +#Emissions of water vapour (chemistry) +'e_h2o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 59 ; + } +#Emissions of oxygen +'e_o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 60 ; + } +#Emissions of singlet oxygen +'e_o2_1s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 61 ; + } +#Emissions of singlet delta oxygen +'e_o2_1d' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 62 ; + } +#Emissions of chlorine dioxide +'e_oclo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 63 ; + } +#Emissions of chlorine nitrate +'e_clono2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 64 ; + } +#Emissions of hypochlorous acid +'e_hocl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 65 ; + } +#Emissions of chlorine +'e_cl2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 66 ; + } +#Emissions of nitryl chloride +'e_clno2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 67 ; + } +#Emissions of hydrogen bromide +'e_hbr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 68 ; + } +#Emissions of dichlorine dioxide +'e_cl2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 69 ; + } +#Emissions of hypobromous acid +'e_hobr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 70 ; + } +#Emissions of trichlorofluoromethane +'e_cfc11' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 71 ; + } +#Emissions of dichlorodifluoromethane +'e_cfc12' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 72 ; + } +#Emissions of trichlorotrifluoroethane +'e_cfc113' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 73 ; + } +#Emissions of dichlorotetrafluoroethane +'e_cfc114' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 74 ; + } +#Emissions of chloropentafluoroethane +'e_cfc115' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 75 ; + } +#Emissions of tetrachloromethane +'e_ccl4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 76 ; + } +#Emissions of methyl chloroform +'e_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 77 ; + } +#Emissions of methyl chloride +'e_ch3cl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 78 ; + } +#Emissions of chlorodifluoromethane +'e_hcfc22' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 79 ; + } +#Emissions of methyl bromide +'e_ch3br' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 80 ; + } +#Emissions of dibromodifluoromethane +'e_ha1202' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 81 ; + } +#Emissions of bromochlorodifluoromethane +'e_ha1211' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 82 ; + } +#Emissions of trifluorobromomethane +'e_ha1301' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 83 ; + } +#Emissions of cbrf2cbrf2 +'e_ha2402' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 84 ; + } +#Emissions of sulfuric acid +'e_h2so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 85 ; + } +#Emissions of nitrous acid +'e_hono' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 86 ; + } +#Emissions of alkanes low oh rate +'e_hc3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 87 ; + } +#Emissions of alkanes med oh rate +'e_hc5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 88 ; + } +#Emissions of alkanes high oh rate +'e_hc8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 89 ; + } +#Emissions of terminal alkenes +'e_olt' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 90 ; + } +#Emissions of internal alkenes +'e_oli' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 91 ; + } +#Emissions of ethylperoxy radical +'e_c2h5o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 92 ; + } +#Emissions of butadiene +'e_dien' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 93 ; + } +#Emissions of ethyl hydroperoxide +'e_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 94 ; + } +#Emissions of a-pinene cyclic terpenes +'e_api' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 95 ; + } +#Emissions of acetic acid +'e_ch3cooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 96 ; + } +#Emissions of d-limonene cyclic diene +'e_lim' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 97 ; + } +#Emissions of acetaldehyde +'e_ch3cho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 98 ; + } +#Emissions of toluene and less reactive aromatics +'e_tol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 99 ; + } +#Emissions of xylene and more reactive aromatics +'e_xyl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 100 ; + } +#Emissions of glycolaldehyde +'e_glyald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 101 ; + } +#Emissions of cresol +'e_cresol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 102 ; + } +#Emissions of acetaldehyde and higher +'e_ald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 103 ; + } +#Emissions of peracetic acid +'e_ch3coooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 104 ; + } +#Emissions of ketones +'e_ket' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 105 ; + } +#Emissions of hoch2ch2o2 +'e_eo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 106 ; + } +#Emissions of glyoxal +'e_glyoxal' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 107 ; + } +#Emissions of hoch2ch2o +'e_eo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 108 ; + } +#Emissions of unsaturated dicarbonyls +'e_dcb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 109 ; + } +#Emissions of methacrolein +'e_macr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 110 ; + } +#Emissions of unsaturated hydroxy dicarbonyl +'e_udd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 111 ; + } +#Emissions of isopropyldioxidanyl +'e_c3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 112 ; + } +#Emissions of hydroxy ketone +'e_hket' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 113 ; + } +#Emissions of isopropyl hydroperoxide +'e_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 114 ; + } +#Emissions of c3h6oho2 +'e_po2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 115 ; + } +#Emissions of c3h6ohooh +'e_pooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 116 ; + } +#Emissions of higher organic peroxides +'e_op2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 117 ; + } +#Emissions of hydroxyacetone +'e_hyac' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 118 ; + } +#Emissions of peroxyacetic acid +'e_paa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 119 ; + } +#Emissions of ch3coch2o2 +'e_ro2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 120 ; + } +#Emissions of peroxy radical from c2h6 +'e_ethp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 121 ; + } +#Emissions of peroxy radical from hc3 +'e_hc3p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 122 ; + } +#Emissions of peroxy radical from hc5 +'e_hc5p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 123 ; + } +#Emissions of lumped alkenes +'e_bigene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 124 ; + } +#Emissions of peroxy radical from hc8 +'e_hc8p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 125 ; + } +#Emissions of lumped alkanes +'e_bigalk' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 126 ; + } +#Emissions of peroxy radical from c2h4 +'e_etep' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 127 ; + } +#Emissions of c4h8o +'e_mek' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 128 ; + } +#Emissions of peroxy radical from terminal alkenes +'e_oltp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 129 ; + } +#Emissions of c4h9o3 +'e_eneo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 130 ; + } +#Emissions of peroxy radical from internal alkenes +'e_olip' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 131 ; + } +#Emissions of ch3coch(oo)ch3 +'e_meko2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 132 ; + } +#Emissions of peroxy radical from c5h8 +'e_isopo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 133 ; + } +#Emissions of ch3coch(ooh)ch3 +'e_mekooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 134 ; + } +#Emissions of peroxy radical from a-pinene cyclic terpenes +'e_apip' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 135 ; + } +#Emissions of ch2=c(ch3)co3 +'e_mco3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 136 ; + } +#Emissions of peroxy radical from d-limonene cyclic diene +'e_limp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 137 ; + } +#Emissions of methylvinylketone +'e_mvk' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 138 ; + } +#Emissions of phenoxy radical +'e_pho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 139 ; + } +#Emissions of peroxy radical from toluene and less reactive aromatics +'e_tolp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 140 ; + } +#Emissions of ch3c(o)ch(oo)ch2oh +'e_macro2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 141 ; + } +#Emissions of peroxy radical from xylene and more reactive aromatics +'e_xylp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 142 ; + } +#Emissions of h3c(o)ch(ooh)ch2oh +'e_macrooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 143 ; + } +#Emissions of peroxy radical from cresol +'e_cslp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 144 ; + } +#Emissions of unsaturated pans +'e_mpan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 145 ; + } +#Emissions of unsaturated acyl peroxy radical +'e_tco3_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 146 ; + } +#Emissions of peroxy radical from ketones +'e_ketp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 147 ; + } +#Emissions of c5h11o2 +'e_alko2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 148 ; + } +#Emissions of no3-alkenes adduct reacting to form carbonitrates +'e_olnn' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 149 ; + } +#Emissions of c5h11ooh +'e_alkooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 150 ; + } +#Emissions of no3-alkenes adduct reacting via decomposition +'e_olnd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 151 ; + } +#Emissions of hoch2c(ch3)=chcho +'e_bigald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 152 ; + } +#Emissions of c5h6o2 +'e_hydrald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 153 ; + } +#Emissions of trop sulfuric acid +'e_sulf' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 154 ; + } +#Emissions of oxides +'e_ox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 155 ; + } +#Emissions of ch2chc(ch3)(oo)ch2ono2 +'e_isopno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 156 ; + } +#Emissions of c3 organic nitrate +'e_onitr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 157 ; + } +#Emissions of chlorine oxides +'e_clox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 158 ; + } +#Emissions of bromine oxides +'e_brox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 159 ; + } +#Emissions of hoch2c(ooh)(ch3)chchoh +'e_xooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 160 ; + } +#Emissions of hoch2c(ooh)(ch3)ch=ch2 +'e_isopooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 161 ; + } +#Emissions of lumped aromatics +'e_toluene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 162 ; + } +#Emissions of dimethyl sulfoxyde +'e_dmso' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 163 ; + } +#Emissions of c7h9o5 +'e_tolo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 164 ; + } +#Emissions of c7h10o5 +'e_tolooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 165 ; + } +#Emissions of hydrogensulfide +'e_h2s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 166 ; + } +#Emissions of c7h10o6 +'e_xoh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 167 ; + } +#Emissions of all nitrogen oxides +'e_noy' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 168 ; + } +#Emissions of chlorine family +'e_cly' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 169 ; + } +#Emissions of c10h16(oh)(oo) +'e_terpo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 170 ; + } +#Emissions of bromine family +'e_bry' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 171 ; + } +#Emissions of c10h18o3 +'e_terpooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 172 ; + } +#Emissions of nitrogen atom +'e_n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 173 ; + } +#Emissions of chlorine monoxide +'e_clo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 174 ; + } +#Emissions of chlorine atom +'e_cl_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 175 ; + } +#Emissions of bromine monoxide +'e_bro' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 176 ; + } +#Emissions of hydrogen atom +'e_h_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 177 ; + } +#Emissions of methyl group +'e_ch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 178 ; + } +#Emissions of aromatic-ho from toluene and less reactive aromatics +'e_addt' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 179 ; + } +#Emissions of aromatic-ho from xylene and more reactive aromatics +'e_addx' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 180 ; + } +#Emissions of ammonium nitrate +'e_nh4no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 181 ; + } +#Emissions of aromatic-ho from csl +'e_addc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 182 ; + } +#Emissions of secondary organic aerosol type 1 +'e_soa1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 183 ; + } +#Emissions of secondary organic aerosol type 2a +'e_soa2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 184 ; + } +#Emissions of secondary organic aerosol type 2b +'e_soa2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 185 ; + } +#Emissions of condensable gas type 1 +'e_sog1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 186 ; + } +#Emissions of condensable gas type 2a +'e_sog2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 187 ; + } +#Emissions of condensable gas type 2b +'e_sog2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 188 ; + } +#Emissions of sulfur trioxide +'e_so3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 189 ; + } +#Emissions of carbonyl sulfide +'e_ocs_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 190 ; + } +#Emissions of bromine atom +'e_br' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 191 ; + } +#Emissions of bromine +'e_br2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 192 ; + } +#Emissions of bromine monochloride +'e_brcl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 193 ; + } +#Emissions of bromine nitrate +'e_brono2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 194 ; + } +#Emissions of dibromomethane +'e_ch2br2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 195 ; + } +#Emissions of methoxy radical +'e_ch3o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 196 ; + } +#Emissions of tribromomethane +'e_chbr3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 197 ; + } +#Emissions of asymmetric chlorine dioxide radical +'e_cloo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 198 ; + } +#Emissions of hydrogen +'e_h2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 199 ; + } +#Emissions of hydrogen chloride +'e_hcl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 200 ; + } +#Emissions of formyl radical +'e_hco' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 201 ; + } +#Emissions of hydrogen fluoride +'e_hf' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 202 ; + } +#Emissions of oxygen atom +'e_o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 203 ; + } +#Emissions of excited oxygen atom +'e_o1d' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 204 ; + } +#Emissions of ground state oxygen atom +'e_o3p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 205 ; + } +#Emissions of stratospheric aerosol +'e_strataer' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 206 ; + } +#Wildfire flux of paraffins +'parfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 207 ; + } +#Wildfire flux of olefines +'olefire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 208 ; + } +#Wildfire flux of aldehydes +'ald2fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 209 ; + } +#Wildfire flux of ketones +'ketfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 210 ; + } +#Wildfire flux of f a-pinene cyclic terpenes +'apifire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 211 ; + } +#Wildfire flux of toluene less reactive aromatics +'tolfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 212 ; + } +#Wildfire flux of xylene more reactive aromatics +'xylfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 213 ; + } +#Wildfire flux of d-limonene cyclic diene +'limfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 214 ; + } +#Wildfire flux of terminal alkenes +'oltfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 215 ; + } +#Wildfire flux of alkanes low oh rate +'hc3fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 216 ; + } +#Wildfire flux of alkanes med oh rate +'hc5fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 217 ; + } +#Wildfire flux of alkanes high oh rate +'hc8fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 218 ; + } +#Wildfire flux of hydrogen cyanide +'hcnfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 219 ; + } +#Wildfire flux of acetonitrile +'ch3cnfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 220 ; + } +#Ozone deposition velocity +'dv_go3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Dry deposition velocity of carbon dioxide (chemistry) +'dv_co2_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 57 ; + } +#Dry deposition velocity of nitrous oxide (chemistry) +'dv_n2o_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 58 ; + } +#Dry deposition velocity of water vapour (chemistry) +'dv_h2o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 59 ; + } +#Dry deposition velocity of oxygen +'dv_o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 60 ; + } +#Dry deposition velocity of singlet oxygen +'dv_o2_1s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 61 ; + } +#Dry deposition velocity of singlet delta oxygen +'dv_o2_1d' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 62 ; + } +#Dry deposition velocity of chlorine dioxide +'dv_oclo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 63 ; + } +#Dry deposition velocity of chlorine nitrate +'dv_clono2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 64 ; + } +#Dry deposition velocity of hypochlorous acid +'dv_hocl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 65 ; + } +#Dry deposition velocity of chlorine +'dv_cl2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 66 ; + } +#Dry deposition velocity of nitryl chloride +'dv_clno2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 67 ; + } +#Dry deposition velocity of hydrogen bromide +'dv_hbr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 68 ; + } +#Dry deposition velocity of dichlorine dioxide +'dv_cl2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 69 ; + } +#Dry deposition velocity of hypobromous acid +'dv_hobr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 70 ; + } +#Dry deposition velocity of trichlorofluoromethane +'dv_cfc11' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 71 ; + } +#Dry deposition velocity of dichlorodifluoromethane +'dv_cfc12' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 72 ; + } +#Dry deposition velocity of trichlorotrifluoroethane +'dv_cfc113' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 73 ; + } +#Dry deposition velocity of dichlorotetrafluoroethane +'dv_cfc114' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 74 ; + } +#Dry deposition velocity of chloropentafluoroethane +'dv_cfc115' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 75 ; + } +#Dry deposition velocity of tetrachloromethane +'dv_ccl4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 76 ; + } +#Dry deposition velocity of methyl chloroform +'dv_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 77 ; + } +#Dry deposition velocity of methyl chloride +'dv_ch3cl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 78 ; + } +#Dry deposition velocity of chlorodifluoromethane +'dv_hcfc22' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 79 ; + } +#Dry deposition velocity of methyl bromide +'dv_ch3br' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 80 ; + } +#Dry deposition velocity of dibromodifluoromethane +'dv_ha1202' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 81 ; + } +#Dry deposition velocity of bromochlorodifluoromethane +'dv_ha1211' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 82 ; + } +#Dry deposition velocity of trifluorobromomethane +'dv_ha1301' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 83 ; + } +#Dry deposition velocity of cbrf2cbrf2 +'dv_ha2402' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 84 ; + } +#Dry deposition velocity of sulfuric acid +'dv_h2so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 85 ; + } +#Dry deposition velocity of nitrous acid +'dv_hono' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 86 ; + } +#Dry deposition velocity of alkanes low oh rate +'dv_hc3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 87 ; + } +#Dry deposition velocity of alkanes med oh rate +'dv_hc5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 88 ; + } +#Dry deposition velocity of alkanes high oh rate +'dv_hc8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 89 ; + } +#Dry deposition velocity of terminal alkenes +'dv_olt' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 90 ; + } +#Dry deposition velocity of internal alkenes +'dv_oli' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 91 ; + } +#Dry deposition velocity of ethylperoxy radical +'dv_c2h5o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 92 ; + } +#Dry deposition velocity of butadiene +'dv_dien' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 93 ; + } +#Dry deposition velocity of ethyl hydroperoxide +'dv_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 94 ; + } +#Dry deposition velocity of a-pinene cyclic terpenes +'dv_api' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 95 ; + } +#Dry deposition velocity of acetic acid +'dv_ch3cooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 96 ; + } +#Dry deposition velocity of d-limonene cyclic diene +'dv_lim' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 97 ; + } +#Dry deposition velocity of acetaldehyde +'dv_ch3cho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 98 ; + } +#Dry deposition velocity of toluene and less reactive aromatics +'dv_tol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 99 ; + } +#Dry deposition velocity of xylene and more reactive aromatics +'dv_xyl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 100 ; + } +#Dry deposition velocity of glycolaldehyde +'dv_glyald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 101 ; + } +#Dry deposition velocity of cresol +'dv_cresol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 102 ; + } +#Dry deposition velocity of acetaldehyde and higher +'dv_ald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 103 ; + } +#Dry deposition velocity of peracetic acid +'dv_ch3coooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 104 ; + } +#Dry deposition velocity of ketones +'dv_ket' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 105 ; + } +#Dry deposition velocity of hoch2ch2o2 +'dv_eo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 106 ; + } +#Dry deposition velocity of glyoxal +'dv_glyoxal' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 107 ; + } +#Dry deposition velocity of hoch2ch2o +'dv_eo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 108 ; + } +#Dry deposition velocity of unsaturated dicarbonyls +'dv_dcb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 109 ; + } +#Dry deposition velocity of methacrolein +'dv_macr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 110 ; + } +#Dry deposition velocity of unsaturated hydroxy dicarbonyl +'dv_udd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 111 ; + } +#Dry deposition velocity of isopropyldioxidanyl +'dv_c3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 112 ; + } +#Dry deposition velocity of hydroxy ketone +'dv_hket' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 113 ; + } +#Dry deposition velocity of isopropyl hydroperoxide +'dv_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 114 ; + } +#Dry deposition velocity of c3h6oho2 +'dv_po2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 115 ; + } +#Dry deposition velocity of c3h6ohooh +'dv_pooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 116 ; + } +#Dry deposition velocity of higher organic peroxides +'dv_op2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 117 ; + } +#Dry deposition velocity of hydroxyacetone +'dv_hyac' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 118 ; + } +#Dry deposition velocity of peroxyacetic acid +'dv_paa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 119 ; + } +#Dry deposition velocity of ch3coch2o2 +'dv_ro2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 120 ; + } +#Dry deposition velocity of peroxy radical from c2h6 +'dv_ethp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 121 ; + } +#Dry deposition velocity of peroxy radical from hc3 +'dv_hc3p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 122 ; + } +#Dry deposition velocity of peroxy radical from hc5 +'dv_hc5p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 123 ; + } +#Dry deposition velocity of lumped alkenes +'dv_bigene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 124 ; + } +#Dry deposition velocity of peroxy radical from hc8 +'dv_hc8p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 125 ; + } +#Dry deposition velocity of lumped alkanes +'dv_bigalk' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 126 ; + } +#Dry deposition velocity of peroxy radical from c2h4 +'dv_etep' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 127 ; + } +#Dry deposition velocity of c4h8o +'dv_mek' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 128 ; + } +#Dry deposition velocity of peroxy radical from terminal alkenes +'dv_oltp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 129 ; + } +#Dry deposition velocity of c4h9o3 +'dv_eneo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 130 ; + } +#Dry deposition velocity of peroxy radical from internal alkenes +'dv_olip' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 131 ; + } +#Dry deposition velocity of ch3coch(oo)ch3 +'dv_meko2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 132 ; + } +#Dry deposition velocity of peroxy radical from c5h8 +'dv_isopo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 133 ; + } +#Dry deposition velocity of ch3coch(ooh)ch3 +'dv_mekooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 134 ; + } +#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes +'dv_apip' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 135 ; + } +#Dry deposition velocity of ch2=c(ch3)co3 +'dv_mco3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 136 ; + } +#Dry deposition velocity of peroxy radical from d-limonene cyclic diene +'dv_limp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 137 ; + } +#Dry deposition velocity of methylvinylketone +'dv_mvk' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 138 ; + } +#Dry deposition velocity of phenoxy radical +'dv_pho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 139 ; + } +#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics +'dv_tolp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 140 ; + } +#Dry deposition velocity of ch3c(o)ch(oo)ch2oh +'dv_macro2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 141 ; + } +#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics +'dv_xylp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 142 ; + } +#Dry deposition velocity of h3c(o)ch(ooh)ch2oh +'dv_macrooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 143 ; + } +#Dry deposition velocity of peroxy radical from cresol +'dv_cslp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 144 ; + } +#Dry deposition velocity of unsaturated pans +'dv_mpan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 145 ; + } +#Dry deposition velocity of unsaturated acyl peroxy radical +'dv_tco3_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 146 ; + } +#Dry deposition velocity of peroxy radical from ketones +'dv_ketp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 147 ; + } +#Dry deposition velocity of c5h11o2 +'dv_alko2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 148 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates +'dv_olnn' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 149 ; + } +#Dry deposition velocity of c5h11ooh +'dv_alkooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 150 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting via decomposition +'dv_olnd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 151 ; + } +#Dry deposition velocity of hoch2c(ch3)=chcho +'dv_bigald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 152 ; + } +#Dry deposition velocity of c5h6o2 +'dv_hydrald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 153 ; + } +#Dry deposition velocity of trop sulfuric acid +'dv_sulf' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 154 ; + } +#Dry deposition velocity of oxides +'dv_ox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 155 ; + } +#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 +'dv_isopno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 156 ; + } +#Dry deposition velocity of c3 organic nitrate +'dv_onitr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 157 ; + } +#Dry deposition velocity of chlorine oxides +'dv_clox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 158 ; + } +#Dry deposition velocity of bromine oxides +'dv_brox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 159 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh +'dv_xooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 160 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 +'dv_isopooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 161 ; + } +#Dry deposition velocity of lumped aromatics +'dv_toluene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 162 ; + } +#Dry deposition velocity of dimethyl sulfoxyde +'dv_dmso' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 163 ; + } +#Dry deposition velocity of c7h9o5 +'dv_tolo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 164 ; + } +#Dry deposition velocity of c7h10o5 +'dv_tolooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 165 ; + } +#Dry deposition velocity of hydrogensulfide +'dv_h2s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 166 ; + } +#Dry deposition velocity of c7h10o6 +'dv_xoh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 167 ; + } +#Dry deposition velocity of all nitrogen oxides +'dv_noy' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 168 ; + } +#Dry deposition velocity of chlorine family +'dv_cly' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 169 ; + } +#Dry deposition velocity of c10h16(oh)(oo) +'dv_terpo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 170 ; + } +#Dry deposition velocity of bromine family +'dv_bry' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 171 ; + } +#Dry deposition velocity of c10h18o3 +'dv_terpooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 172 ; + } +#Dry deposition velocity of nitrogen atom +'dv_n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 173 ; + } +#Dry deposition velocity of chlorine monoxide +'dv_clo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 174 ; + } +#Dry deposition velocity of chlorine atom +'dv_cl_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 175 ; + } +#Dry deposition velocity of bromine monoxide +'dv_bro' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 176 ; + } +#Dry deposition velocity of hydrogen atom +'dv_h_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 177 ; + } +#Dry deposition velocity of methyl group +'dv_ch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 178 ; + } +#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics +'dv_addt' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 179 ; + } +#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics +'dv_addx' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 180 ; + } +#Dry deposition velocity of ammonium nitrate +'dv_nh4no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 181 ; + } +#Dry deposition velocity of aromatic-ho from csl +'dv_addc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 182 ; + } +#Dry deposition velocity of secondary organic aerosol type 1 +'dv_soa1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 183 ; + } +#Dry deposition velocity of secondary organic aerosol type 2a +'dv_soa2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 184 ; + } +#Dry deposition velocity of secondary organic aerosol type 2b +'dv_soa2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 185 ; + } +#Dry deposition velocity of condensable gas type 1 +'dv_sog1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 186 ; + } +#Dry deposition velocity of condensable gas type 2a +'dv_sog2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 187 ; + } +#Dry deposition velocity of condensable gas type 2b +'dv_sog2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 188 ; + } +#Dry deposition velocity of sulfur trioxide +'dv_so3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 189 ; + } +#Dry deposition velocity of carbonyl sulfide +'dv_ocs_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 190 ; + } +#Dry deposition velocity of bromine atom +'dv_br' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 191 ; + } +#Dry deposition velocity of bromine +'dv_br2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 192 ; + } +#Dry deposition velocity of bromine monochloride +'dv_brcl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 193 ; + } +#Dry deposition velocity of bromine nitrate +'dv_brono2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 194 ; + } +#Dry deposition velocity of dibromomethane +'dv_ch2br2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 195 ; + } +#Dry deposition velocity of methoxy radical +'dv_ch3o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 196 ; + } +#Dry deposition velocity of tribromomethane +'dv_chbr3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 197 ; + } +#Dry deposition velocity of asymmetric chlorine dioxide radical +'dv_cloo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 198 ; + } +#Dry deposition velocity of hydrogen +'dv_h2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 199 ; + } +#Dry deposition velocity of hydrogen chloride +'dv_hcl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 200 ; + } +#Dry deposition velocity of formyl radical +'dv_hco' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 201 ; + } +#Dry deposition velocity of hydrogen fluoride +'dv_hf' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 202 ; + } +#Dry deposition velocity of oxygen atom +'dv_o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 203 ; + } +#Dry deposition velocity of excited oxygen atom +'dv_o1d' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 204 ; + } +#Dry deposition velocity of ground state oxygen atom +'dv_o3p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 205 ; + } +#Dry deposition velocity of stratospheric aerosol +'dv_strataer' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 206 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'cbh' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Horizontal visibility +'hvis' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'swi1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of zero-degree wet-bulb temperature +'hwbt0' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'hwbt1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'gppbfas' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'recbfas' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'tcrw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'tcsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'ccf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'stf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'swv' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'ist' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Evaporation from the top of canopy +'evatc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 100 ; + } +#Evaporation from bare soil +'evabs' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 101 ; + } +#Evaporation from open water surfaces excluding oceans +'evaow' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 102 ; + } +#Evaporation from vegetation transpiration +'evavt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 103 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'tccsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#Irrigation fraction +'irrfr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'pev' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'irr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'tcclw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'strfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'clgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'asngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'rsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'sltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'fggrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'presgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'obctgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'p63.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'p64.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'p65.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'p66.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'p67.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'p70.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'p71.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'p78.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'p79.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'fg6grd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'p125.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'bvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'zgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'qgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'spgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'tcwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'sdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'chnkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'ghgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'rgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'ugrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'vgrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'grd2t' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'grd2d' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'srgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'algrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'egrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'rogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'sigrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'icegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'tsru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'ttru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'clw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'cf' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'mvv' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'t2ag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'t2ag1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'t2ag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'t2alm1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'t2alm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'saip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'whip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'g10p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'capep' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'sp10g10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'sp10g15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre wind gust of at least 25 m/s +'fg10g25' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre temperature less than 273.15 K +'t2l273' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + probabilityType = 3 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 4 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'zp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'tap' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'tccp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'sp10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'t2p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'tpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'swhp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'mwpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'p255.131' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'t2plm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'t2plm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'t2pl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'t2pl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'t2pl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'t2pg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'t2pg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'t2pg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'t2pg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'t2pg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'sp10g10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'sp10g15' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'sp10g20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'sp10g35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'sp10g50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'gp10g20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'gp10g35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'gp10g50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'gp10g75' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'gp10g100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'hmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'wmb' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'wdw' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'pp1d' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Peak wave period +'pp1d' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'cdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'mdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'shts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'mdts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'mpts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'sdhs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'mdwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'msqs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'wind' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'awh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'arrc' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'dwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'d2sp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'d2fd' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'bfi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'wsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.140' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'ocs' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'ocpd' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'p133.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'p134.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'ocw' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'uv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'ut' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'vt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'uu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'vv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'p144.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'p145.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'p146.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'p147.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'p148.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'p153.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'p155.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'p168.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'p169.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'p170.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'p172.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'p173.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'p180.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'p181.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'p182.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'p183.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'p255.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'p128.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Sea water potential temperature +'thetao' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'so' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'wo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'vvs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'vdf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'dep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sea water sigma theta +'sigmat' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'uv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'ut' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'vt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'uu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'vv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level previous timestep +'sl_1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Ocean barotropic stream function +'stfbarot' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'sh' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'crl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'p152.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#Surface downward eastward stress +'taueo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'tauno' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'asr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'pme' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'shf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'hfc' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'umax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'smax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Layer Thickness at scalar points +'ldp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'pti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'ptae' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'bpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'apt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'ptbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'as' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'sali' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'sale' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'bsal' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'salbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'fgbt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'fgbs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'bpa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'fgbp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'pta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'p255.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'fgrea10' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'pwcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Large-scale precipitation +'lsprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'sfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'ghrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'rrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'ewssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'nsssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'erea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'srcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'vegrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'rorea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'vurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'vvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'wurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'csfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'lsfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'ccrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'falrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'wsrea10' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'moflrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'p249.160' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'hsdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'p51.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'vima' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'vit' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'viwv' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'vilw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'viiw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'vioz' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'vike' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'vithe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'vipie' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'vipile' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'vitoe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'viec' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'vimae' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'viman' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'vikee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'viken' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'vithen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'vige' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'vign' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'vitoee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'vitoen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'vioze' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'viozn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'vimad' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'viked' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'vithed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'viwvd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'vigd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'vitoed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'viozd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'srta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'trta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'srtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'trtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'umfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'dmfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'udra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'ddra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'tpfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'tdcha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'ttpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'qtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'utpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'vtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'p206.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'p207.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'p208.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'p209.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'p210.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'p211.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'p212.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'p213.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'p214.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'p215.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'p216.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'p217.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'p218.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'p219.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'p220.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'p221.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'p222.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'p223.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'p224.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'p225.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'p226.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'p227.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'p229.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'p230.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'p231.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'p232.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'p233.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'p255.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'tsw' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'strfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'vpota' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'pta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'cla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'asna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'rsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'slta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'esa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'smlta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'sdura' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'fga10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'monta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mean2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'pva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'obcta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'bva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'za' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'qa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'spa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'tcwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'voa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'sda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'chnka' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'snra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'tnra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'gha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'ra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'blha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'ua10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'va10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'t2a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'d2a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'sra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'ala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'ea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'hcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'roa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'sia10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'sia' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'tpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'skta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'fala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'cca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'iaa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'esrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'p45.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'p48.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Mean large-scale precipitation fraction +'mlspfr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Mean large-scale precipitation rate +'mlsprt' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'cprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'mtsfr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Mean surface sensible heat flux +'msshfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'mslhfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface net radiation flux +'msnrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Mean short-wave heating rate +'mswhr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Mean long-wave heating rate +'mlwhr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Mean surface downward solar radiation flux +'msdsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'msdtrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'msnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'msntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'mtnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'mtntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'ewssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'nsssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'erate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean sunshine duration rate +'msdr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'p195.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'p196.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Mean runoff rate +'mrort' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'p208.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'p209.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'p210.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'p211.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'soira' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'tprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'p239.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'p240.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'p255.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'p44.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'p45.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'p48.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'p50.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'lspara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate anomaly +'mcpra' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'p145.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'sshfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'slhfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'p149.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'p153.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'p154.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'ssrdara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'strdara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'ssrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'strara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'tsrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'ttrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'ewssara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'nsssara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomalous rate of accumulation +'evara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'p195.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'p196.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'p197.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomalous rate of accumulation +'roara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'p208.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'p209.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'p210.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'p211.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomalous rate of accumulation +'soiara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'p239.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'p240.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'p255.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'p6.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'p31.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'p34.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'p39.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'p40.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'p41.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'p42.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'p49.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'p83.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'p85.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'p86.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'p87.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'p88.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'p89.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'p90.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'p94.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'p95.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Liquid water potential temperature +'p99.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'p110.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'p111.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'p139.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'p167.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'p168.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'p170.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'p175.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'p183.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'p236.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'p255.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'p6.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'p31.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'p34.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'p39.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'p40.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'p41.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'p42.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'p49.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'p83.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'p85.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'p86.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'p87.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'p88.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'p89.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'p90.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'p110.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'p111.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'p139.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'p167.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'p168.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'p170.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'p175.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'p183.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'p236.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'p255.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'tsw' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'str' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Field capacity +'cap' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'wiltsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'sr' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'tsm' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'ddiff2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'p1.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'p2.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'p3.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'p4.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'p6.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'p7.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'p8.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'p9.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'p10.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'p11.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'p12.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'p15.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'p16.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'p17.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'clc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'p30.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'qc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'p32.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'p34.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'p35.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'p36.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'p37.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'p38.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'twater' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'p42.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'p51.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'p52.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'p53.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'p54.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'p55.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'p56.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'p60.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'p61.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'p62.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'p63.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'p64.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'p65.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'p66.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'p67.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'p70.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'p71.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'bas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'top_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'dt_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'p76.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'p77.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'p80.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'p81.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'p83.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'pp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'p150.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'w_i' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'t_snow' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'t_ice' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'cape_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'p255.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdep' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerlts' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'aerscc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#CO2 column-mean molar fraction +'tcco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#CH4 column-mean molar fraction +'tcch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'nox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'ra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'aersccdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'ch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'oafirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'radiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcradiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'tpoc' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'zust' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'meantcc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'dctb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'tplb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'tplt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'sts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'msls' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'t2s' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'tps' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'ust' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'vst' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def new file mode 100644 index 00000000..442a0d34 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -0,0 +1,144 @@ +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'uoe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'von' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'sithick' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'zos' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#100 metre U wind component +'u100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; +} +#100 metre V wind component +'v100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; +} +#100 metre wind speed +'si100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; +} +#0 degrees C isothermal level (atm) +'deg0l' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; +} +#Depth of 20C isotherm +'t20d' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Average salinity in the upper 300m +'sav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; +} +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; +} +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; +} +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; +} +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; +} +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; +} +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; +} +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; +} +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; +} +#Total column cloud liquid water +'tclw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; +} +#Total column cloud ice water +'tciw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; +} +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/name.def b/eccodes/definitions/grib2/localConcepts/ecmf/name.def new file mode 100644 index 00000000..eabef9fa --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/name.def @@ -0,0 +1,22056 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 100 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Equivalent potential temperature +'Equivalent potential temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'Saturated equivalent potential temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'Soil sand fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'Soil clay fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'Surface runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'U component of divergent wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'V component of divergent wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'U component of rotational wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'V component of rotational wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'UV visible albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'UV visible albedo for diffuse radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'Near IR albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'Near IR albedo for diffuse radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'Clear sky surface UV' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'Clear sky surface photosynthetically active radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'Lake cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'Low vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'High vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'Type of low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'Type of high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'Ice temperature layer 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'Ice temperature layer 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'Ice temperature layer 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'Ice temperature layer 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'Snowmelt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'Solar duration' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'Direct solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'Maximum temperature at 2 metres in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'Minimum temperature at 2 metres in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Montgomery potential +'Montgomery potential' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'Mean temperature at 2 metres in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'Mean 2 metre dewpoint temperature in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'Downward UV radiation at the surface' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'Photosynthetically active radiation at the surface' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'Observation count' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'Instantaneous surface solar radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'Instantaneous surface thermal radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'Standard deviation of filtered subgrid orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'10 metre wind gust in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'Surface emissivity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'Atmospheric tide' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'Budget values' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'Total column water vapour' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'Snow depth' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'Snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'Charnock' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'Surface net radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'Top net radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'Boundary layer height' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'Standard deviation of orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'Albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'Convective cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'Vegetation fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'Total column ozone' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#TOA incident solar radiation +'TOA incident solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'Vertically integrated moisture divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'Diabatic heating large-scale condensation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'East-West gravity wave drag tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'North-South gravity wave drag tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'Total precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'Instantaneous surface sensible heat flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'Accumulated cloud fraction tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'Accumulated liquid water tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'Accumulated ice water tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'Ice age' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'Stream function difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'Velocity potential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'Potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'Equivalent potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'Saturated equivalent potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'U component of divergent wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'V component of divergent wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'U component of rotational wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'V component of rotational wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'Unbalanced component of temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'Unbalanced component of logarithm of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'Unbalanced component of divergence difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'Lake cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'Low vegetation cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'High vegetation cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'Type of low vegetation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'Type of high vegetation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'Sea-ice cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'Snow albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'Snow density difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'Sea surface temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'Ice surface temperature layer 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'Ice surface temperature layer 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'Ice surface temperature layer 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'Ice surface temperature layer 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'Volumetric soil water layer 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'Volumetric soil water layer 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'Volumetric soil water layer 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'Volumetric soil water layer 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'Soil type difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'Snow evaporation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'Snowmelt difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'Solar duration difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'Direct solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'Magnitude of turbulent surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'10 metre wind gust difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'Large-scale precipitation fraction difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'Maximum 2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'Minimum 2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'Montgomery potential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'Pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'Mean 2 metre temperature in the last 24 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'Downward UV radiation at the surface difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'Photosynthetically active radiation at the surface difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'Convective available potential energy difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'Potential vorticity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'Total precipitation from observations difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'Observation count difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'Total column ice water' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'Maximum temperature at 2 metres difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'Minimum temperature at 2 metres difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10 metre wind gust in the last 6 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'Atmospheric tide difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'Budget values difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'Geopotential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'Temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'U component of wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'V component of wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'Specific humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'Surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'Vertical velocity (pressure) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'Total column water difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'Total column water vapour difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'Vorticity (relative) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'Soil temperature level 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'Soil wetness level 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'Snow depth difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'Stratiform precipitation (Large-scale precipitation) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'Convective precipitation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'Snowfall (convective + stratiform) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'Boundary layer dissipation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'Surface sensible heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'Surface latent heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'Charnock difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'Surface net radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'Top net radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'Mean sea level pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'Logarithm of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'Short-wave heating rate difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'Long-wave heating rate difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'Divergence difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'Height difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'Relative humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'Tendency of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'Boundary layer height difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'Standard deviation of orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'Anisotropy of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'Angle of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'Slope of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'Total cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'10 metre U wind component difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'10 metre V wind component difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'Surface solar radiation downwards difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'Soil temperature level 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'Soil wetness level 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'Land-sea mask difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'Surface roughness difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'Albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'Surface thermal radiation downwards difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'Surface net solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'Surface net thermal radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'Top net solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'Top net thermal radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'East-West surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'North-South surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'Evaporation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'Soil temperature level 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'Soil wetness level 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'Convective cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'Low cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'Medium cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'High cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'Sunshine duration difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'East-West component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'North-South component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'North-West/South-East component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'North-East/South-West component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'Brightness temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'Longitudinal component of gravity wave stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'Meridional component of gravity wave stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'Gravity wave dissipation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'Skin reservoir content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'Vegetation fraction difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'Variance of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'Maximum temperature at 2 metres since previous post-processing difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'Minimum temperature at 2 metres since previous post-processing difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'Ozone mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'Precipitation analysis weights difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'Runoff difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'Total column ozone difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'10 metre wind speed difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'Top net solar radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'Top net thermal radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'Surface net solar radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'Surface net thermal radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'TOA incident solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'Diabatic heating by radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'Diabatic heating by vertical diffusion difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'Diabatic heating by cumulus convection difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'Diabatic heating large-scale condensation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'Vertical diffusion of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'Vertical diffusion of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'East-West gravity wave drag tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'North-South gravity wave drag tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'Convective tendency of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'Convective tendency of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'Vertical diffusion of humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'Humidity tendency by cumulus convection difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'Humidity tendency by large-scale condensation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'Change from removal of negative humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'Total precipitation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'Instantaneous X surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'Instantaneous Y surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'Instantaneous surface heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'Instantaneous moisture flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'Apparent surface humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'Logarithm of surface roughness length for heat difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'Soil temperature level 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'Soil wetness level 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'Temperature of snow layer difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'Convective snowfall difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'Large scale snowfall difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'Accumulated cloud fraction tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'Accumulated liquid water tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'Forecast albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'Forecast surface roughness difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'Forecast logarithm of surface roughness for heat difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'Specific cloud liquid water content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'Specific cloud ice water content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'Cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'Accumulated ice water tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'Ice age difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'Adiabatic tendency of temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'Adiabatic tendency of humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'Adiabatic tendency of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'Adiabatic tendency of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'Reserved' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'U-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'V-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'T-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'q-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'T-tendency from radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'U-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'V-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'T-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'q-tendency from turbulent diffusion' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'U-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'V-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'T-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'U-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'V-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'T-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'q-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'Liquid Precipitation flux from convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'Ice Precipitation flux from convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'T-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'q-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'ql-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qi-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'Liquid Precip flux from cloud scheme (stratiform)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'Ice Precip flux from cloud scheme (stratiform)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'U-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'V-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'T-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'q-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'100 metre U wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'100 metre V wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'Maximum temperature at 2 metres in the last 6 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'Minimum temperature at 2 metres in the last 6 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'Volcanic ash aerosol mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'Volcanic sulphate aerosol mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'Volcanic SO2 precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'Mixing ration of organic carbon aerosol, nucleation mode' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'Monoterpene precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'Secondary organic precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Injection height (from IS4FIRES) +'Injection height (from IS4FIRES)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 60 ; + } +#Particulate matter d < 1 um +'Particulate matter d < 1 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'Particulate matter d < 2.5 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'Particulate matter d < 10 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'Wildfire viewing angle of observation' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'Wildfire Flux of Ethane (C2H6)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 118 ; + } +#Mean altitude of maximum injection +'Mean altitude of maximum injection' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#Wildfire day-time radiative power +'Wildfire day-time radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 167 ; + } +#Wildfire night-time radiative power +'Wildfire night-time radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 169 ; + } +#Wildfire day-time inverse variance of radiative power +'Wildfire day-time inverse variance of radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 177 ; + } +#Wildfire night-time inverse variance of radiative power +'Wildfire night-time inverse variance of radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 179 ; + } +#UV visible albedo for direct radiation, isotropic component +'UV visible albedo for direct radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'UV visible albedo for direct radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'UV visible albedo for direct radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'Near IR albedo for direct radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'Near IR albedo for direct radiation, volumetric component' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'Near IR albedo for direct radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'UV visible albedo for diffuse radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'UV visible albedo for diffuse radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'UV visible albedo for diffuse radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'Near IR albedo for diffuse radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'Near IR albedo for diffuse radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'Near IR albedo for diffuse radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'Total aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'Total aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'Total aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'Total aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'Total aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'Total aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'Total aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'Total aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'Total aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'Total aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'Total aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'Total aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'Total aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'Total aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'Wildfire Flux of Toluene (C7H8)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'Wildfire Flux of Benzene (C6H6)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'Wildfire Flux of Xylene (C8H10)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'Wildfire Flux of Butenes (C4H8)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'Wildfire Flux of Pentenes (C5H10)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'Wildfire Flux of Hexene (C6H12)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'Wildfire Flux of Octene (C8H16)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'Wildfire Flux of Butanes (C4H10)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'Wildfire Flux of Pentanes (C5H12)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'Wildfire Flux of Hexanes (C6H14)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'Wildfire Flux of Heptane (C7H16)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 241 ; + } +#Altitude of plume bottom +'Altitude of plume bottom' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'Volcanic sulphate aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'Volcanic ash optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'Profile of total aerosol dry extinction coefficient' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'Profile of total aerosol dry absorption coefficient' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'Nitrate fine mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'Nitrate coarse mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Aerosol type 13 mass mixing ratio +'Aerosol type 13 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'Aerosol type 14 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'Aerosol type 15 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'Altitude of emitter' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'Nitrate fine mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'Nitrate coarse mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'Random pattern 1 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'Random pattern 2 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'Random pattern 3 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'Random pattern 4 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'Random pattern 5 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +#Random pattern 1 for SPP scheme +'Random pattern 1 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 101 ; + } +#Random pattern 2 for SPP scheme +'Random pattern 2 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 102 ; + } +#Random pattern 3 for SPP scheme +'Random pattern 3 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 103 ; + } +#Random pattern 4 for SPP scheme +'Random pattern 4 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 104 ; + } +#Random pattern 5 for SPP scheme +'Random pattern 5 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 105 ; + } +#Random pattern 6 for SPP scheme +'Random pattern 6 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 106 ; + } +#Random pattern 7 for SPP scheme +'Random pattern 7 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 107 ; + } +#Random pattern 8 for SPP scheme +'Random pattern 8 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 108 ; + } +#Random pattern 9 for SPP scheme +'Random pattern 9 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 109 ; + } +#Random pattern 10 for SPP scheme +'Random pattern 10 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 110 ; + } +#Random pattern 11 for SPP scheme +'Random pattern 11 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 111 ; + } +#Random pattern 12 for SPP scheme +'Random pattern 12 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 112 ; + } +#Random pattern 13 for SPP scheme +'Random pattern 13 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 113 ; + } +#Random pattern 14 for SPP scheme +'Random pattern 14 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 114 ; + } +#Random pattern 15 for SPP scheme +'Random pattern 15 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 115 ; + } +#Random pattern 16 for SPP scheme +'Random pattern 16 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 116 ; + } +#Random pattern 17 for SPP scheme +'Random pattern 17 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 117 ; + } +#Random pattern 18 for SPP scheme +'Random pattern 18 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 118 ; + } +#Random pattern 19 for SPP scheme +'Random pattern 19 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 119 ; + } +#Random pattern 20 for SPP scheme +'Random pattern 20 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 120 ; + } +#Random pattern 21 for SPP scheme +'Random pattern 21 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 121 ; + } +#Random pattern 22 for SPP scheme +'Random pattern 22 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 122 ; + } +#Random pattern 23 for SPP scheme +'Random pattern 23 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 123 ; + } +#Random pattern 24 for SPP scheme +'Random pattern 24 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 124 ; + } +#Random pattern 25 for SPP scheme +'Random pattern 25 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 125 ; + } +#Random pattern 26 for SPP scheme +'Random pattern 26 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 126 ; + } +#Random pattern 27 for SPP scheme +'Random pattern 27 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 127 ; + } +#Random pattern 28 for SPP scheme +'Random pattern 28 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 128 ; + } +#Random pattern 29 for SPP scheme +'Random pattern 29 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 129 ; + } +#Random pattern 30 for SPP scheme +'Random pattern 30 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 130 ; + } +#Random pattern 31 for SPP scheme +'Random pattern 31 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 131 ; + } +#Random pattern 32 for SPP scheme +'Random pattern 32 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 132 ; + } +#Random pattern 33 for SPP scheme +'Random pattern 33 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 133 ; + } +#Random pattern 34 for SPP scheme +'Random pattern 34 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 134 ; + } +#Random pattern 35 for SPP scheme +'Random pattern 35 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 135 ; + } +#Random pattern 36 for SPP scheme +'Random pattern 36 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 136 ; + } +#Random pattern 37 for SPP scheme +'Random pattern 37 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 137 ; + } +#Random pattern 38 for SPP scheme +'Random pattern 38 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 138 ; + } +#Random pattern 39 for SPP scheme +'Random pattern 39 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 139 ; + } +#Random pattern 40 for SPP scheme +'Random pattern 40 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 140 ; + } +#Random pattern 41 for SPP scheme +'Random pattern 41 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 141 ; + } +#Random pattern 42 for SPP scheme +'Random pattern 42 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 142 ; + } +#Random pattern 43 for SPP scheme +'Random pattern 43 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 143 ; + } +#Random pattern 44 for SPP scheme +'Random pattern 44 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 144 ; + } +#Random pattern 45 for SPP scheme +'Random pattern 45 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 145 ; + } +#Random pattern 46 for SPP scheme +'Random pattern 46 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 146 ; + } +#Random pattern 47 for SPP scheme +'Random pattern 47 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 147 ; + } +#Random pattern 48 for SPP scheme +'Random pattern 48 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 148 ; + } +#Random pattern 49 for SPP scheme +'Random pattern 49 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 149 ; + } +#Random pattern 50 for SPP scheme +'Random pattern 50 for SPP scheme' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 150 ; + } +#Cosine of solar zenith angle +'Cosine of solar zenith angle' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +#UV biologically effective dose +'UV biologically effective dose' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +#UV biologically effective dose clear-sky +'UV biologically effective dose clear-sky' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'Total surface UV spectral flux (280-285 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'Total surface UV spectral flux (285-290 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'Total surface UV spectral flux (290-295 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'Total surface UV spectral flux (295-300 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'Total surface UV spectral flux (300-305 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'Total surface UV spectral flux (305-310 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'Total surface UV spectral flux (310-315 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'Total surface UV spectral flux (315-320 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'Total surface UV spectral flux (320-325 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'Total surface UV spectral flux (325-330 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'Total surface UV spectral flux (330-335 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'Total surface UV spectral flux (335-340 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'Total surface UV spectral flux (340-345 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'Total surface UV spectral flux (345-350 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'Total surface UV spectral flux (350-355 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'Total surface UV spectral flux (355-360 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'Total surface UV spectral flux (360-365 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'Total surface UV spectral flux (365-370 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'Total surface UV spectral flux (370-375 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'Total surface UV spectral flux (375-380 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'Total surface UV spectral flux (380-385 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'Total surface UV spectral flux (385-390 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'Total surface UV spectral flux (390-395 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'Total surface UV spectral flux (395-400 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'Clear-sky surface UV spectral flux (280-285 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'Clear-sky surface UV spectral flux (285-290 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'Clear-sky surface UV spectral flux (290-295 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'Clear-sky surface UV spectral flux (295-300 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'Clear-sky surface UV spectral flux (300-305 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'Clear-sky surface UV spectral flux (305-310 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'Clear-sky surface UV spectral flux (310-315 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'Clear-sky surface UV spectral flux (315-320 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'Clear-sky surface UV spectral flux (320-325 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'Clear-sky surface UV spectral flux (325-330 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'Clear-sky surface UV spectral flux (330-335 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'Clear-sky surface UV spectral flux (335-340 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'Clear-sky surface UV spectral flux (340-345 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'Clear-sky surface UV spectral flux (345-350 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'Clear-sky surface UV spectral flux (350-355 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'Clear-sky surface UV spectral flux (355-360 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'Clear-sky surface UV spectral flux (360-365 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'Clear-sky surface UV spectral flux (365-370 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'Clear-sky surface UV spectral flux (370-375 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'Clear-sky surface UV spectral flux (375-380 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'Clear-sky surface UV spectral flux (380-385 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'Clear-sky surface UV spectral flux (385-390 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'Clear-sky surface UV spectral flux (390-395 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'Clear-sky surface UV spectral flux (395-400 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +#Profile of optical thickness at 340 nm +'Profile of optical thickness at 340 nm' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'Source/gain of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'Source/gain of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'Dry deposition of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'Dry deposition of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'Sedimentation of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'Sedimentation of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'Negative fixer of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'Negative fixer of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'Sea salt aerosol (0.03 - 0.5 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'Sea salt aerosol (0.5 - 5 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'Sea salt aerosol (5 - 20 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'Source/gain of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'Source/gain of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'Source/gain of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'Dry deposition of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'Dry deposition of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'Dry deposition of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'Sedimentation of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'Sedimentation of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'Sedimentation of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'Negative fixer of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'Negative fixer of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'Negative fixer of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'Vertically integrated mass of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'Dust aerosol (0.03 - 0.55 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'Dust aerosol (0.55 - 9 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'Dust aerosol (9 - 20 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'Source/gain of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'Source/gain of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'Dry deposition of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'Dry deposition of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'Sedimentation of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'Sedimentation of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'Negative fixer of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'Negative fixer of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'Vertically integrated mass of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'Vertically integrated mass of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'Hydrophobic organic matter aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'Hydrophilic organic matter aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'Source/gain of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'Source/gain of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'Dry deposition of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'Dry deposition of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'Sedimentation of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'Sedimentation of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'Negative fixer of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'Negative fixer of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'Vertically integrated mass of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'Vertically integrated mass of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'Hydrophobic black carbon aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'Hydrophilic black carbon aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +#Source/gain of sulphate aerosol +'Source/gain of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +#Dry deposition of sulphate aerosol +'Dry deposition of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +#Sedimentation of sulphate aerosol +'Sedimentation of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'Wet deposition of sulphate aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'Wet deposition of sulphate aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +#Negative fixer of sulphate aerosol +'Negative fixer of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'Vertically integrated mass of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +#Sulphate aerosol optical depth +'Sulphate aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'Accumulated total aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'Effective (snow effect included) UV visible albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'10 metre wind speed dust emission potential' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'10 metre wind gustiness dust emission potential' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'Total aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'Total absorption aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'Total absorption aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'Total absorption aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'Total absorption aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'Total absorption aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'Total absorption aerosol optical depth at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'Total absorption aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'Total absorption aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'Total absorption aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'Total absorption aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'Total absorption aerosol optical depth at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'Total absorption aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'Total absorption aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'Total absorption aerosol optical depth at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'Total absorption aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'Total absorption aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'Total absorption aerosol optical depth at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'Total absorption aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'Single scattering albedo at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'Single scattering albedo at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'Single scattering albedo at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'Single scattering albedo at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'Single scattering albedo at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'Single scattering albedo at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'Single scattering albedo at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'Single scattering albedo at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'Single scattering albedo at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'Single scattering albedo at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'Single scattering albedo at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'Single scattering albedo at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'Single scattering albedo at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'Single scattering albedo at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'Single scattering albedo at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'Single scattering albedo at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'Single scattering albedo at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'Single scattering albedo at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Asymmetry factor at 340 nm +'Asymmetry factor at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Asymmetry factor at 355 nm +'Asymmetry factor at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Asymmetry factor at 380 nm +'Asymmetry factor at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Asymmetry factor at 400 nm +'Asymmetry factor at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Asymmetry factor at 440 nm +'Asymmetry factor at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Asymmetry factor at 469 nm +'Asymmetry factor at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Asymmetry factor at 500 nm +'Asymmetry factor at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Asymmetry factor at 532 nm +'Asymmetry factor at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Asymmetry factor at 550 nm +'Asymmetry factor at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Asymmetry factor at 645 nm +'Asymmetry factor at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Asymmetry factor at 670 nm +'Asymmetry factor at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Asymmetry factor at 800 nm +'Asymmetry factor at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Asymmetry factor at 858 nm +'Asymmetry factor at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Asymmetry factor at 865 nm +'Asymmetry factor at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Asymmetry factor at 1020 nm +'Asymmetry factor at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Asymmetry factor at 1064 nm +'Asymmetry factor at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Asymmetry factor at 1240 nm +'Asymmetry factor at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Asymmetry factor at 1640 nm +'Asymmetry factor at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'Source/gain of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'Dry deposition of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'Sedimentation of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'Wet deposition of sulphur dioxide by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'Wet deposition of sulphur dioxide by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'Negative fixer of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'Vertically integrated mass of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'Sulphur dioxide optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'Total absorption aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'Single scattering albedo at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Asymmetry factor at 2130 nm +'Asymmetry factor at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'Aerosol extinction coefficient at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'Aerosol extinction coefficient at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'Aerosol extinction coefficient at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'Aerosol backscatter coefficient at 355 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'Aerosol backscatter coefficient at 532 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'Aerosol backscatter coefficient at 1064 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'Source/gain of fine-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Source/gain of coarse-mode nitrate aerosol +'Source/gain of coarse-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Dry deposition of fine-mode nitrate aerosol +'Dry deposition of fine-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'Dry deposition of coarse-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Sedimentation of fine-mode nitrate aerosol +'Sedimentation of fine-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'Sedimentation of coarse-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'Wet deposition of fine-mode nitrate aerosol by large-scale precipitation' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'Wet deposition of fine-mode nitrate aerosol by convective precipitation' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'Wet deposition of coarse-mode nitrate aerosol by convective precipitation' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Negative fixer of fine-mode nitrate aerosol +'Negative fixer of fine-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'Negative fixer of coarse-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'Vertically integrated mass of fine-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + aerosolType = 65534 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'Vertically integrated mass of coarse-mode nitrate aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'Fine-mode nitrate aerosol optical depth at 550 nm' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 65534 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'Coarse-mode nitrate aerosol optical depth at 550 nm' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 65533 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + scaledValueOfFirstWavelength = 55 ; + } +#Source/gain of ammonium aerosol +'Source/gain of ammonium aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Negative fixer of ammonium aerosol +'Negative fixer of ammonium aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'Hydrogen peroxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'Methane (chemistry)' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'Nitric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'Methyl peroxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'Paraffins' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'Ethene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'Olefins' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'Aldehydes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'Peroxyacetyl nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'Peroxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'Organic nitrates' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'Isoprene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'Dimethyl sulfide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'Ammonia' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'Sulfate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'Ammonium' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'Methane sulfonic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'Methyl glyoxal' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'Stratospheric ozone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'Lead' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'Nitrogen monoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'Hydroperoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'Methylperoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'Hydroxyl radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'Nitrate radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'Dinitrogen pentoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'Pernitric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'Peroxy acetyl radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'Organic ethers' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'PAR budget corrector' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'NO to NO2 operator' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'NO to alkyl nitrate operator' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'Amine' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'Polar stratospheric cloud' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'Methanol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'Formic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'Methacrylic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'Ethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'Ethanol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'Propane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'Propene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'Terpenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'Methacrolein MVK' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'Nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'Acetone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'Acetone product' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'IC3H7O2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'HYPROPO2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'Nitrogen oxides Transp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Carbon dioxide (chemistry) +'Carbon dioxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 57 ; + } +#Nitrous oxide (chemistry) +'Nitrous oxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 58 ; + } +#Water vapour (chemistry) +'Water vapour (chemistry)' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 59 ; + } +#Oxygen +'Oxygen' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 60 ; + } +#Singlet oxygen +'Singlet oxygen' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 61 ; + } +#Singlet delta oxygen +'Singlet delta oxygen' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 62 ; + } +#Chlorine dioxide +'Chlorine dioxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'Chlorine nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'Hypochlorous acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Chlorine +'Chlorine' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 66 ; + } +#Nitryl chloride +'Nitryl chloride' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 67 ; + } +#Hydrogen bromide +'Hydrogen bromide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Dichlorine dioxide +'Dichlorine dioxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 69 ; + } +#Hypobromous acid +'Hypobromous acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Trichlorofluoromethane +'Trichlorofluoromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 71 ; + } +#Dichlorodifluoromethane +'Dichlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 72 ; + } +#Trichlorotrifluoroethane +'Trichlorotrifluoroethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 73 ; + } +#Dichlorotetrafluoroethane +'Dichlorotetrafluoroethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 74 ; + } +#Chloropentafluoroethane +'Chloropentafluoroethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 75 ; + } +#Tetrachloromethane +'Tetrachloromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 76 ; + } +#Methyl chloroform +'Methyl chloroform' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 77 ; + } +#Methyl chloride +'Methyl chloride' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Chlorodifluoromethane +'Chlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 79 ; + } +#Methyl bromide +'Methyl bromide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Dibromodifluoromethane +'Dibromodifluoromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 81 ; + } +#Bromochlorodifluoromethane +'Bromochlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 82 ; + } +#Trifluorobromomethane +'Trifluorobromomethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 83 ; + } +#Cbrf2cbrf2 +'Cbrf2cbrf2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 84 ; + } +#Sulfuric acid +'Sulfuric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'Nitrous acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Alkanes low oh rate +'Alkanes low oh rate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 87 ; + } +#Alkanes med oh rate +'Alkanes med oh rate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 88 ; + } +#Alkanes high oh rate +'Alkanes high oh rate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 89 ; + } +#Terminal alkenes +'Terminal alkenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 90 ; + } +#Internal alkenes +'Internal alkenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 91 ; + } +#Ethylperoxy radical +'Ethylperoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 92 ; + } +#Butadiene +'Butadiene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 93 ; + } +#Ethyl hydroperoxide +'Ethyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 94 ; + } +#A-pinene cyclic terpenes +'A-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 95 ; + } +#Acetic acid +'Acetic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#D-limonene cyclic diene +'D-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 97 ; + } +#Acetaldehyde +'Acetaldehyde' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 98 ; + } +#Toluene and less reactive aromatics +'Toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 99 ; + } +#Xylene and more reactive aromatics +'Xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 100 ; + } +#Glycolaldehyde +'Glycolaldehyde' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 101 ; + } +#Cresol +'Cresol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 102 ; + } +#Acetaldehyde and higher +'Acetaldehyde and higher' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 103 ; + } +#Peracetic acid +'Peracetic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 104 ; + } +#Ketones +'Ketones' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 105 ; + } +#Hoch2ch2o2 +'Hoch2ch2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 106 ; + } +#Glyoxal +'Glyoxal' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 107 ; + } +#Hoch2ch2o +'Hoch2ch2o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 108 ; + } +#Unsaturated dicarbonyls +'Unsaturated dicarbonyls' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 109 ; + } +#Methacrolein +'Methacrolein' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 110 ; + } +#Unsaturated hydroxy dicarbonyl +'Unsaturated hydroxy dicarbonyl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 111 ; + } +#Isopropyldioxidanyl +'Isopropyldioxidanyl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 112 ; + } +#Hydroxy ketone +'Hydroxy ketone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 113 ; + } +#Isopropyl hydroperoxide +'Isopropyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 114 ; + } +#C3h6oho2 +'C3h6oho2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 115 ; + } +#C3h6ohooh +'C3h6ohooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 116 ; + } +#Higher organic peroxides +'Higher organic peroxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 117 ; + } +#Hydroxyacetone +'Hydroxyacetone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 118 ; + } +#Peroxyacetic acid +'Peroxyacetic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 119 ; + } +#Ch3coch2o2 +'Ch3coch2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 120 ; + } +#Peroxy radical from c2h6 +'Peroxy radical from c2h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 121 ; + } +#Peroxy radical from hc3 +'Peroxy radical from hc3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 122 ; + } +#Peroxy radical from hc5 +'Peroxy radical from hc5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 123 ; + } +#Lumped alkenes +'Lumped alkenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 124 ; + } +#Peroxy radical from hc8 +'Peroxy radical from hc8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 125 ; + } +#Lumped alkanes +'Lumped alkanes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 126 ; + } +#Peroxy radical from c2h4 +'Peroxy radical from c2h4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 127 ; + } +#C4h8o +'C4h8o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 128 ; + } +#Peroxy radical from terminal alkenes +'Peroxy radical from terminal alkenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 129 ; + } +#C4h9o3 +'C4h9o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 130 ; + } +#Peroxy radical from internal alkenes +'Peroxy radical from internal alkenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 131 ; + } +#Ch3coch(oo)ch3 +'Ch3coch(oo)ch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 132 ; + } +#Peroxy radical from c5h8 +'Peroxy radical from c5h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 133 ; + } +#Ch3coch(ooh)ch3 +'Ch3coch(ooh)ch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 134 ; + } +#Peroxy radical from a-pinene cyclic terpenes +'Peroxy radical from a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 135 ; + } +#Ch2=c(ch3)co3 +'Ch2=c(ch3)co3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 136 ; + } +#Peroxy radical from d-limonene cyclic diene +'Peroxy radical from d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 137 ; + } +#Methylvinylketone +'Methylvinylketone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 138 ; + } +#Phenoxy radical +'Phenoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 139 ; + } +#Peroxy radical from toluene and less reactive aromatics +'Peroxy radical from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 140 ; + } +#Ch3c(o)ch(oo)ch2oh +'Ch3c(o)ch(oo)ch2oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 141 ; + } +#Peroxy radical from xylene and more reactive aromatics +'Peroxy radical from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 142 ; + } +#H3c(o)ch(ooh)ch2oh +'H3c(o)ch(ooh)ch2oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 143 ; + } +#Peroxy radical from cresol +'Peroxy radical from cresol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 144 ; + } +#Unsaturated pans +'Unsaturated pans' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 145 ; + } +#Unsaturated acyl peroxy radical +'Unsaturated acyl peroxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 146 ; + } +#Peroxy radical from ketones +'Peroxy radical from ketones' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 147 ; + } +#C5h11o2 +'C5h11o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 148 ; + } +#No3-alkenes adduct reacting to form carbonitrates +'No3-alkenes adduct reacting to form carbonitrates' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 149 ; + } +#C5h11ooh +'C5h11ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 150 ; + } +#No3-alkenes adduct reacting via decomposition +'No3-alkenes adduct reacting via decomposition' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 151 ; + } +#Hoch2c(ch3)=chcho +'Hoch2c(ch3)=chcho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 152 ; + } +#C5h6o2 +'C5h6o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 153 ; + } +#Trop sulfuric acid +'Trop sulfuric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 154 ; + } +#Oxides +'Oxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 155 ; + } +#Ch2chc(ch3)(oo)ch2ono2 +'Ch2chc(ch3)(oo)ch2ono2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 156 ; + } +#C3 organic nitrate +'C3 organic nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 157 ; + } +#Chlorine oxides +'Chlorine oxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 158 ; + } +#Bromine oxides +'Bromine oxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 159 ; + } +#Hoch2c(ooh)(ch3)chchoh +'Hoch2c(ooh)(ch3)chchoh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 160 ; + } +#Hoch2c(ooh)(ch3)ch=ch2 +'Hoch2c(ooh)(ch3)ch=ch2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 161 ; + } +#Lumped aromatics +'Lumped aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 162 ; + } +#Dimethyl sulfoxyde +'Dimethyl sulfoxyde' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 163 ; + } +#C7h9o5 +'C7h9o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 164 ; + } +#C7h10o5 +'C7h10o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 165 ; + } +#Hydrogensulfide +'Hydrogensulfide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 166 ; + } +#C7h10o6 +'C7h10o6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 167 ; + } +#All nitrogen oxides +'All nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 168 ; + } +#Chlorine family +'Chlorine family' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 169 ; + } +#C10h16(oh)(oo) +'C10h16(oh)(oo)' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 170 ; + } +#Bromine family +'Bromine family' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 171 ; + } +#C10h18o3 +'C10h18o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 172 ; + } +#Nitrogen atom +'Nitrogen atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 173 ; + } +#Chlorine monoxide +'Chlorine monoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Chlorine atom +'Chlorine atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 175 ; + } +#Bromine monoxide +'Bromine monoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Hydrogen atom +'Hydrogen atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 177 ; + } +#Methyl group +'Methyl group' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 178 ; + } +#Aromatic-ho from toluene and less reactive aromatics +'Aromatic-ho from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 179 ; + } +#Aromatic-ho from xylene and more reactive aromatics +'Aromatic-ho from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 180 ; + } +#Ammonium nitrate +'Ammonium nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 181 ; + } +#Aromatic-ho from csl +'Aromatic-ho from csl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 182 ; + } +#Secondary organic aerosol type 1 +'Secondary organic aerosol type 1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 183 ; + } +#Secondary organic aerosol type 2a +'Secondary organic aerosol type 2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 184 ; + } +#Secondary organic aerosol type 2b +'Secondary organic aerosol type 2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 185 ; + } +#Condensable gas type 1 +'Condensable gas type 1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 186 ; + } +#Condensable gas type 2a +'Condensable gas type 2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 187 ; + } +#Condensable gas type 2b +'Condensable gas type 2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 188 ; + } +#Sulfur trioxide +'Sulfur trioxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 189 ; + } +#Carbonyl sulfide +'Carbonyl sulfide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 190 ; + } +#Bromine atom +'Bromine atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 191 ; + } +#Bromine +'Bromine' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 192 ; + } +#Bromine monochloride +'Bromine monochloride' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 193 ; + } +#Bromine nitrate +'Bromine nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Dibromomethane +'Dibromomethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 195 ; + } +#Methoxy radical +'Methoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 196 ; + } +#Tribromomethane +'Tribromomethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 197 ; + } +#Asymmetric chlorine dioxide radical +'Asymmetric chlorine dioxide radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 198 ; + } +#Hydrogen +'Hydrogen' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 199 ; + } +#Hydrogen chloride +'Hydrogen chloride' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Formyl radical +'Formyl radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 201 ; + } +#Hydrogen fluoride +'Hydrogen fluoride' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 202 ; + } +#Oxygen atom +'Oxygen atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 203 ; + } +#Excited oxygen atom +'Excited oxygen atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 204 ; + } +#Ground state oxygen atom +'Ground state oxygen atom' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 205 ; + } +#Stratospheric aerosol +'Stratospheric aerosol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 206 ; + } +#Total column hydrogen peroxide +'Total column hydrogen peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'Total column methane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'Total column nitric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'Total column methyl peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'Total column paraffins' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'Total column ethene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'Total column olefins' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'Total column aldehydes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'Total column peroxyacetyl nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'Total column peroxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'Total column organic nitrates' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'Total column isoprene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'Total column dimethyl sulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'Total column ammonia' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'Total column sulfate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'Total column ammonium' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'Total column methane sulfonic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'Total column methyl glyoxal' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'Total column stratospheric ozone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'Total column lead' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'Total column nitrogen monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'Total column hydroperoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'Total column methylperoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'Total column hydroxyl radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'Total column nitrate radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'Total column dinitrogen pentoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'Total column pernitric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'Total column peroxy acetyl radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'Total column organic ethers' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'Total column PAR budget corrector' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'Total column NO to NO2 operator' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'Total column NO to alkyl nitrate operator' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'Total column amine' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'Total column polar stratospheric cloud' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'Total column methanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'Total column formic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'Total column methacrylic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'Total column ethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'Total column ethanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'Total column propane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'Total column propene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'Total column terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'Total column methacrolein MVK' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'Total column nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'Total column acetone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'Total column acetone product' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'Total column IC3H7O2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'Total column HYPROPO2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'Total column nitrogen oxides Transp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Total column of carbon dioxide (chemistry) +'Total column of carbon dioxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 57 ; + } +#Total column of nitrous oxide (chemistry) +'Total column of nitrous oxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 58 ; + } +#Total column of water vapour (chemistry) +'Total column of water vapour (chemistry)' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 59 ; + } +#Total column of oxygen +'Total column of oxygen' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 60 ; + } +#Total column of singlet oxygen +'Total column of singlet oxygen' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 61 ; + } +#Total column of singlet delta oxygen +'Total column of singlet delta oxygen' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 62 ; + } +#Total column of chlorine dioxide +'Total column of chlorine dioxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'Total column of chlorine nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'Total column of hypochlorous acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of chlorine +'Total column of chlorine' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 66 ; + } +#Total column of nitryl chloride +'Total column of nitryl chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 67 ; + } +#Total column of hydrogen bromide +'Total column of hydrogen bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of dichlorine dioxide +'Total column of dichlorine dioxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 69 ; + } +#Total column of hypobromous acid +'Total column of hypobromous acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of trichlorofluoromethane +'Total column of trichlorofluoromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 71 ; + } +#Total column of dichlorodifluoromethane +'Total column of dichlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 72 ; + } +#Total column of trichlorotrifluoroethane +'Total column of trichlorotrifluoroethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 73 ; + } +#Total column of dichlorotetrafluoroethane +'Total column of dichlorotetrafluoroethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 74 ; + } +#Total column of chloropentafluoroethane +'Total column of chloropentafluoroethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 75 ; + } +#Total column of tetrachloromethane +'Total column of tetrachloromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 76 ; + } +#Total column of methyl chloroform +'Total column of methyl chloroform' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 77 ; + } +#Total column of methyl chloride +'Total column of methyl chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of chlorodifluoromethane +'Total column of chlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 79 ; + } +#Total column of methyl bromide +'Total column of methyl bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of dibromodifluoromethane +'Total column of dibromodifluoromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 81 ; + } +#Total column of bromochlorodifluoromethane +'Total column of bromochlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 82 ; + } +#Total column of trifluorobromomethane +'Total column of trifluorobromomethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 83 ; + } +#Total column of cbrf2cbrf2 +'Total column of cbrf2cbrf2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 84 ; + } +#Total column of sulfuric acid +'Total column of sulfuric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 85 ; + } +#Total column of nitrous acid +'Total column of nitrous acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of alkanes low oh rate +'Total column of alkanes low oh rate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 87 ; + } +#Total column of alkanes med oh rate +'Total column of alkanes med oh rate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 88 ; + } +#Total column of alkanes high oh rate +'Total column of alkanes high oh rate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 89 ; + } +#Total column of terminal alkenes +'Total column of terminal alkenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 90 ; + } +#Total column of internal alkenes +'Total column of internal alkenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 91 ; + } +#Total column of ethylperoxy radical +'Total column of ethylperoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 92 ; + } +#Total column of butadiene +'Total column of butadiene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 93 ; + } +#Total column of ethyl hydroperoxide +'Total column of ethyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 94 ; + } +#Total column of a-pinene cyclic terpenes +'Total column of a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 95 ; + } +#Total column of acetic acid +'Total column of acetic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of d-limonene cyclic diene +'Total column of d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 97 ; + } +#Total column of acetaldehyde +'Total column of acetaldehyde' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 98 ; + } +#Total column of toluene and less reactive aromatics +'Total column of toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 99 ; + } +#Total column of xylene and more reactive aromatics +'Total column of xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 100 ; + } +#Total column of glycolaldehyde +'Total column of glycolaldehyde' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 101 ; + } +#Total column of cresol +'Total column of cresol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 102 ; + } +#Total column of acetaldehyde and higher +'Total column of acetaldehyde and higher' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 103 ; + } +#Total column of peracetic acid +'Total column of peracetic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 104 ; + } +#Total column of ketones +'Total column of ketones' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 105 ; + } +#Total column of hoch2ch2o2 +'Total column of hoch2ch2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 106 ; + } +#Total column of glyoxal +'Total column of glyoxal' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 107 ; + } +#Total column of hoch2ch2o +'Total column of hoch2ch2o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 108 ; + } +#Total column of unsaturated dicarbonyls +'Total column of unsaturated dicarbonyls' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 109 ; + } +#Total column of methacrolein +'Total column of methacrolein' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 110 ; + } +#Total column of unsaturated hydroxy dicarbonyl +'Total column of unsaturated hydroxy dicarbonyl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 111 ; + } +#Total column of isopropyldioxidanyl +'Total column of isopropyldioxidanyl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 112 ; + } +#Total column of hydroxy ketone +'Total column of hydroxy ketone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 113 ; + } +#Total column of isopropyl hydroperoxide +'Total column of isopropyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 114 ; + } +#Total column of c3h6oho2 +'Total column of c3h6oho2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 115 ; + } +#Total column of c3h6ohooh +'Total column of c3h6ohooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 116 ; + } +#Total column of higher organic peroxides +'Total column of higher organic peroxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 117 ; + } +#Total column of hydroxyacetone +'Total column of hydroxyacetone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 118 ; + } +#Total column of peroxyacetic acid +'Total column of peroxyacetic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 119 ; + } +#Total column of ch3coch2o2 +'Total column of ch3coch2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 120 ; + } +#Total column of peroxy radical from c2h6 +'Total column of peroxy radical from c2h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 121 ; + } +#Total column of peroxy radical from hc3 +'Total column of peroxy radical from hc3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 122 ; + } +#Total column of peroxy radical from hc5 +'Total column of peroxy radical from hc5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 123 ; + } +#Total column of lumped alkenes +'Total column of lumped alkenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 124 ; + } +#Total column of peroxy radical from hc8 +'Total column of peroxy radical from hc8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 125 ; + } +#Total column of lumped alkanes +'Total column of lumped alkanes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 126 ; + } +#Total column of peroxy radical from c2h4 +'Total column of peroxy radical from c2h4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 127 ; + } +#Total column of c4h8o +'Total column of c4h8o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 128 ; + } +#Total column of peroxy radical from terminal alkenes +'Total column of peroxy radical from terminal alkenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 129 ; + } +#Total column of c4h9o3 +'Total column of c4h9o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 130 ; + } +#Total column of peroxy radical from internal alkenes +'Total column of peroxy radical from internal alkenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 131 ; + } +#Total column of ch3coch(oo)ch3 +'Total column of ch3coch(oo)ch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 132 ; + } +#Total column of peroxy radical from c5h8 +'Total column of peroxy radical from c5h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 133 ; + } +#Total column of ch3coch(ooh)ch3 +'Total column of ch3coch(ooh)ch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 134 ; + } +#Total column of peroxy radical from a-pinene cyclic terpenes +'Total column of peroxy radical from a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 135 ; + } +#Total column of ch2=c(ch3)co3 +'Total column of ch2=c(ch3)co3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 136 ; + } +#Total column of peroxy radical from d-limonene cyclic diene +'Total column of peroxy radical from d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 137 ; + } +#Total column of methylvinylketone +'Total column of methylvinylketone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 138 ; + } +#Total column of phenoxy radical +'Total column of phenoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 139 ; + } +#Total column of peroxy radical from toluene and less reactive aromatics +'Total column of peroxy radical from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 140 ; + } +#Total column of ch3c(o)ch(oo)ch2oh +'Total column of ch3c(o)ch(oo)ch2oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 141 ; + } +#Total column of peroxy radical from xylene and more reactive aromatics +'Total column of peroxy radical from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 142 ; + } +#Total column of h3c(o)ch(ooh)ch2oh +'Total column of h3c(o)ch(ooh)ch2oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 143 ; + } +#Total column of peroxy radical from cresol +'Total column of peroxy radical from cresol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 144 ; + } +#Total column of unsaturated pans +'Total column of unsaturated pans' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 145 ; + } +#Total column of unsaturated acyl peroxy radical +'Total column of unsaturated acyl peroxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 146 ; + } +#Total column of peroxy radical from ketones +'Total column of peroxy radical from ketones' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 147 ; + } +#Total column of c5h11o2 +'Total column of c5h11o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 148 ; + } +#Total column of no3-alkenes adduct reacting to form carbonitrates +'Total column of no3-alkenes adduct reacting to form carbonitrates' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 149 ; + } +#Total column of c5h11ooh +'Total column of c5h11ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 150 ; + } +#Total column of no3-alkenes adduct reacting via decomposition +'Total column of no3-alkenes adduct reacting via decomposition' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 151 ; + } +#Total column of hoch2c(ch3)=chcho +'Total column of hoch2c(ch3)=chcho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 152 ; + } +#Total column of c5h6o2 +'Total column of c5h6o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 153 ; + } +#Total column of trop sulfuric acid +'Total column of trop sulfuric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 154 ; + } +#Total column of oxides +'Total column of oxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 155 ; + } +#Total column of ch2chc(ch3)(oo)ch2ono2 +'Total column of ch2chc(ch3)(oo)ch2ono2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 156 ; + } +#Total column of c3 organic nitrate +'Total column of c3 organic nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 157 ; + } +#Total column of chlorine oxides +'Total column of chlorine oxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 158 ; + } +#Total column of bromine oxides +'Total column of bromine oxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 159 ; + } +#Total column of hoch2c(ooh)(ch3)chchoh +'Total column of hoch2c(ooh)(ch3)chchoh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 160 ; + } +#Total column of hoch2c(ooh)(ch3)ch=ch2 +'Total column of hoch2c(ooh)(ch3)ch=ch2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 161 ; + } +#Total column of lumped aromatics +'Total column of lumped aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 162 ; + } +#Total column of dimethyl sulfoxyde +'Total column of dimethyl sulfoxyde' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 163 ; + } +#Total column of c7h9o5 +'Total column of c7h9o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 164 ; + } +#Total column of c7h10o5 +'Total column of c7h10o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 165 ; + } +#Total column of hydrogensulfide +'Total column of hydrogensulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 166 ; + } +#Total column of c7h10o6 +'Total column of c7h10o6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 167 ; + } +#Total column of all nitrogen oxides +'Total column of all nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 168 ; + } +#Total column of chlorine family +'Total column of chlorine family' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 169 ; + } +#Total column of c10h16(oh)(oo) +'Total column of c10h16(oh)(oo)' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 170 ; + } +#Total column of bromine family +'Total column of bromine family' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 171 ; + } +#Total column of c10h18o3 +'Total column of c10h18o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 172 ; + } +#Total column of nitrogen atom +'Total column of nitrogen atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 173 ; + } +#Total column of chlorine monoxide +'Total column of chlorine monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of chlorine atom +'Total column of chlorine atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 175 ; + } +#Total column of bromine monoxide +'Total column of bromine monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of hydrogen atom +'Total column of hydrogen atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 177 ; + } +#Total column of methyl group +'Total column of methyl group' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 178 ; + } +#Total column of aromatic-ho from toluene and less reactive aromatics +'Total column of aromatic-ho from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 179 ; + } +#Total column of aromatic-ho from xylene and more reactive aromatics +'Total column of aromatic-ho from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 180 ; + } +#Total column of ammonium nitrate +'Total column of ammonium nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 181 ; + } +#Total column of aromatic-ho from csl +'Total column of aromatic-ho from csl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 182 ; + } +#Total column of secondary organic aerosol type 1 +'Total column of secondary organic aerosol type 1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 183 ; + } +#Total column of secondary organic aerosol type 2a +'Total column of secondary organic aerosol type 2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 184 ; + } +#Total column of secondary organic aerosol type 2b +'Total column of secondary organic aerosol type 2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 185 ; + } +#Total column of condensable gas type 1 +'Total column of condensable gas type 1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 186 ; + } +#Total column of condensable gas type 2a +'Total column of condensable gas type 2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 187 ; + } +#Total column of condensable gas type 2b +'Total column of condensable gas type 2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 188 ; + } +#Total column of sulfur trioxide +'Total column of sulfur trioxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 189 ; + } +#Total column of carbonyl sulfide +'Total column of carbonyl sulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 190 ; + } +#Total column of bromine atom +'Total column of bromine atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 191 ; + } +#Total column of bromine +'Total column of bromine' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 192 ; + } +#Total column of bromine monochloride +'Total column of bromine monochloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 193 ; + } +#Total column of bromine nitrate +'Total column of bromine nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of dibromomethane +'Total column of dibromomethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 195 ; + } +#Total column of methoxy radical +'Total column of methoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 196 ; + } +#Total column of tribromomethane +'Total column of tribromomethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 197 ; + } +#Total column of asymmetric chlorine dioxide radical +'Total column of asymmetric chlorine dioxide radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 198 ; + } +#Total column of hydrogen +'Total column of hydrogen' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 199 ; + } +#Total column of hydrogen chloride +'Total column of hydrogen chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Total column of formyl radical +'Total column of formyl radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 201 ; + } +#Total column of hydrogen fluoride +'Total column of hydrogen fluoride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 202 ; + } +#Total column of oxygen atom +'Total column of oxygen atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 203 ; + } +#Total column of excited oxygen atom +'Total column of excited oxygen atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 204 ; + } +#Total column of ground state oxygen atom +'Total column of ground state oxygen atom' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 205 ; + } +#Total column of stratospheric aerosol +'Total column of stratospheric aerosol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 206 ; + } +#Ozone emissions +'Ozone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'Nitrogen oxides emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'Hydrogen peroxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'Methane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'Carbon monoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'Nitric acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'Methyl peroxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'Formaldehyde emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'Paraffins emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'Ethene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'Olefins emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'Aldehydes emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'Peroxyacetyl nitrate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'Peroxides emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'Organic nitrates emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'Isoprene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'Sulfur dioxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'Dimethyl sulfide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'Ammonia emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'Sulfate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'Ammonium emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'Methane sulfonic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'Methyl glyoxal emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'Stratospheric ozone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'Radon emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'Lead emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'Nitrogen monoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'Hydroperoxy radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'Methylperoxy radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'Hydroxyl radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'Nitrogen dioxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'Nitrate radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'Dinitrogen pentoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'Pernitric acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'Peroxy acetyl radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'Organic ethers emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'PAR budget corrector emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'NO to NO2 operator emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'NO to alkyl nitrate operator emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'Amine emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'Polar stratospheric cloud emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'Methanol emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'Formic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'Methacrylic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'Ethane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'Ethanol emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'Propane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'Propene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'Terpenes emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'Methacrolein MVK emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'Nitrate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'Acetone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'Acetone product emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'IC3H7O2 emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'HYPROPO2 emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'Nitrogen oxides Transp emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Emissions of carbon dioxide (chemistry) +'Emissions of carbon dioxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 57 ; + } +#Emissions of nitrous oxide (chemistry) +'Emissions of nitrous oxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 58 ; + } +#Emissions of water vapour (chemistry) +'Emissions of water vapour (chemistry)' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 59 ; + } +#Emissions of oxygen +'Emissions of oxygen' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 60 ; + } +#Emissions of singlet oxygen +'Emissions of singlet oxygen' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 61 ; + } +#Emissions of singlet delta oxygen +'Emissions of singlet delta oxygen' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 62 ; + } +#Emissions of chlorine dioxide +'Emissions of chlorine dioxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 63 ; + } +#Emissions of chlorine nitrate +'Emissions of chlorine nitrate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 64 ; + } +#Emissions of hypochlorous acid +'Emissions of hypochlorous acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 65 ; + } +#Emissions of chlorine +'Emissions of chlorine' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 66 ; + } +#Emissions of nitryl chloride +'Emissions of nitryl chloride' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 67 ; + } +#Emissions of hydrogen bromide +'Emissions of hydrogen bromide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 68 ; + } +#Emissions of dichlorine dioxide +'Emissions of dichlorine dioxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 69 ; + } +#Emissions of hypobromous acid +'Emissions of hypobromous acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 70 ; + } +#Emissions of trichlorofluoromethane +'Emissions of trichlorofluoromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 71 ; + } +#Emissions of dichlorodifluoromethane +'Emissions of dichlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 72 ; + } +#Emissions of trichlorotrifluoroethane +'Emissions of trichlorotrifluoroethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 73 ; + } +#Emissions of dichlorotetrafluoroethane +'Emissions of dichlorotetrafluoroethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 74 ; + } +#Emissions of chloropentafluoroethane +'Emissions of chloropentafluoroethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 75 ; + } +#Emissions of tetrachloromethane +'Emissions of tetrachloromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 76 ; + } +#Emissions of methyl chloroform +'Emissions of methyl chloroform' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 77 ; + } +#Emissions of methyl chloride +'Emissions of methyl chloride' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 78 ; + } +#Emissions of chlorodifluoromethane +'Emissions of chlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 79 ; + } +#Emissions of methyl bromide +'Emissions of methyl bromide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 80 ; + } +#Emissions of dibromodifluoromethane +'Emissions of dibromodifluoromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 81 ; + } +#Emissions of bromochlorodifluoromethane +'Emissions of bromochlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 82 ; + } +#Emissions of trifluorobromomethane +'Emissions of trifluorobromomethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 83 ; + } +#Emissions of cbrf2cbrf2 +'Emissions of cbrf2cbrf2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 84 ; + } +#Emissions of sulfuric acid +'Emissions of sulfuric acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 85 ; + } +#Emissions of nitrous acid +'Emissions of nitrous acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 86 ; + } +#Emissions of alkanes low oh rate +'Emissions of alkanes low oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 87 ; + } +#Emissions of alkanes med oh rate +'Emissions of alkanes med oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 88 ; + } +#Emissions of alkanes high oh rate +'Emissions of alkanes high oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 89 ; + } +#Emissions of terminal alkenes +'Emissions of terminal alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 90 ; + } +#Emissions of internal alkenes +'Emissions of internal alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 91 ; + } +#Emissions of ethylperoxy radical +'Emissions of ethylperoxy radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 92 ; + } +#Emissions of butadiene +'Emissions of butadiene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 93 ; + } +#Emissions of ethyl hydroperoxide +'Emissions of ethyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 94 ; + } +#Emissions of a-pinene cyclic terpenes +'Emissions of a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 95 ; + } +#Emissions of acetic acid +'Emissions of acetic acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 96 ; + } +#Emissions of d-limonene cyclic diene +'Emissions of d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 97 ; + } +#Emissions of acetaldehyde +'Emissions of acetaldehyde' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 98 ; + } +#Emissions of toluene and less reactive aromatics +'Emissions of toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 99 ; + } +#Emissions of xylene and more reactive aromatics +'Emissions of xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 100 ; + } +#Emissions of glycolaldehyde +'Emissions of glycolaldehyde' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 101 ; + } +#Emissions of cresol +'Emissions of cresol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 102 ; + } +#Emissions of acetaldehyde and higher +'Emissions of acetaldehyde and higher' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 103 ; + } +#Emissions of peracetic acid +'Emissions of peracetic acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 104 ; + } +#Emissions of ketones +'Emissions of ketones' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 105 ; + } +#Emissions of hoch2ch2o2 +'Emissions of hoch2ch2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 106 ; + } +#Emissions of glyoxal +'Emissions of glyoxal' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 107 ; + } +#Emissions of hoch2ch2o +'Emissions of hoch2ch2o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 108 ; + } +#Emissions of unsaturated dicarbonyls +'Emissions of unsaturated dicarbonyls' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 109 ; + } +#Emissions of methacrolein +'Emissions of methacrolein' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 110 ; + } +#Emissions of unsaturated hydroxy dicarbonyl +'Emissions of unsaturated hydroxy dicarbonyl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 111 ; + } +#Emissions of isopropyldioxidanyl +'Emissions of isopropyldioxidanyl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 112 ; + } +#Emissions of hydroxy ketone +'Emissions of hydroxy ketone' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 113 ; + } +#Emissions of isopropyl hydroperoxide +'Emissions of isopropyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 114 ; + } +#Emissions of c3h6oho2 +'Emissions of c3h6oho2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 115 ; + } +#Emissions of c3h6ohooh +'Emissions of c3h6ohooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 116 ; + } +#Emissions of higher organic peroxides +'Emissions of higher organic peroxides' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 117 ; + } +#Emissions of hydroxyacetone +'Emissions of hydroxyacetone' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 118 ; + } +#Emissions of peroxyacetic acid +'Emissions of peroxyacetic acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 119 ; + } +#Emissions of ch3coch2o2 +'Emissions of ch3coch2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 120 ; + } +#Emissions of peroxy radical from c2h6 +'Emissions of peroxy radical from c2h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 121 ; + } +#Emissions of peroxy radical from hc3 +'Emissions of peroxy radical from hc3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 122 ; + } +#Emissions of peroxy radical from hc5 +'Emissions of peroxy radical from hc5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 123 ; + } +#Emissions of lumped alkenes +'Emissions of lumped alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 124 ; + } +#Emissions of peroxy radical from hc8 +'Emissions of peroxy radical from hc8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 125 ; + } +#Emissions of lumped alkanes +'Emissions of lumped alkanes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 126 ; + } +#Emissions of peroxy radical from c2h4 +'Emissions of peroxy radical from c2h4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 127 ; + } +#Emissions of c4h8o +'Emissions of c4h8o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 128 ; + } +#Emissions of peroxy radical from terminal alkenes +'Emissions of peroxy radical from terminal alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 129 ; + } +#Emissions of c4h9o3 +'Emissions of c4h9o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 130 ; + } +#Emissions of peroxy radical from internal alkenes +'Emissions of peroxy radical from internal alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 131 ; + } +#Emissions of ch3coch(oo)ch3 +'Emissions of ch3coch(oo)ch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 132 ; + } +#Emissions of peroxy radical from c5h8 +'Emissions of peroxy radical from c5h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 133 ; + } +#Emissions of ch3coch(ooh)ch3 +'Emissions of ch3coch(ooh)ch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 134 ; + } +#Emissions of peroxy radical from a-pinene cyclic terpenes +'Emissions of peroxy radical from a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 135 ; + } +#Emissions of ch2=c(ch3)co3 +'Emissions of ch2=c(ch3)co3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 136 ; + } +#Emissions of peroxy radical from d-limonene cyclic diene +'Emissions of peroxy radical from d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 137 ; + } +#Emissions of methylvinylketone +'Emissions of methylvinylketone' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 138 ; + } +#Emissions of phenoxy radical +'Emissions of phenoxy radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 139 ; + } +#Emissions of peroxy radical from toluene and less reactive aromatics +'Emissions of peroxy radical from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 140 ; + } +#Emissions of ch3c(o)ch(oo)ch2oh +'Emissions of ch3c(o)ch(oo)ch2oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 141 ; + } +#Emissions of peroxy radical from xylene and more reactive aromatics +'Emissions of peroxy radical from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 142 ; + } +#Emissions of h3c(o)ch(ooh)ch2oh +'Emissions of h3c(o)ch(ooh)ch2oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 143 ; + } +#Emissions of peroxy radical from cresol +'Emissions of peroxy radical from cresol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 144 ; + } +#Emissions of unsaturated pans +'Emissions of unsaturated pans' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 145 ; + } +#Emissions of unsaturated acyl peroxy radical +'Emissions of unsaturated acyl peroxy radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 146 ; + } +#Emissions of peroxy radical from ketones +'Emissions of peroxy radical from ketones' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 147 ; + } +#Emissions of c5h11o2 +'Emissions of c5h11o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 148 ; + } +#Emissions of no3-alkenes adduct reacting to form carbonitrates +'Emissions of no3-alkenes adduct reacting to form carbonitrates' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 149 ; + } +#Emissions of c5h11ooh +'Emissions of c5h11ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 150 ; + } +#Emissions of no3-alkenes adduct reacting via decomposition +'Emissions of no3-alkenes adduct reacting via decomposition' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 151 ; + } +#Emissions of hoch2c(ch3)=chcho +'Emissions of hoch2c(ch3)=chcho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 152 ; + } +#Emissions of c5h6o2 +'Emissions of c5h6o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 153 ; + } +#Emissions of trop sulfuric acid +'Emissions of trop sulfuric acid' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 154 ; + } +#Emissions of oxides +'Emissions of oxides' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 155 ; + } +#Emissions of ch2chc(ch3)(oo)ch2ono2 +'Emissions of ch2chc(ch3)(oo)ch2ono2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 156 ; + } +#Emissions of c3 organic nitrate +'Emissions of c3 organic nitrate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 157 ; + } +#Emissions of chlorine oxides +'Emissions of chlorine oxides' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 158 ; + } +#Emissions of bromine oxides +'Emissions of bromine oxides' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 159 ; + } +#Emissions of hoch2c(ooh)(ch3)chchoh +'Emissions of hoch2c(ooh)(ch3)chchoh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 160 ; + } +#Emissions of hoch2c(ooh)(ch3)ch=ch2 +'Emissions of hoch2c(ooh)(ch3)ch=ch2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 161 ; + } +#Emissions of lumped aromatics +'Emissions of lumped aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 162 ; + } +#Emissions of dimethyl sulfoxyde +'Emissions of dimethyl sulfoxyde' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 163 ; + } +#Emissions of c7h9o5 +'Emissions of c7h9o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 164 ; + } +#Emissions of c7h10o5 +'Emissions of c7h10o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 165 ; + } +#Emissions of hydrogensulfide +'Emissions of hydrogensulfide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 166 ; + } +#Emissions of c7h10o6 +'Emissions of c7h10o6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 167 ; + } +#Emissions of all nitrogen oxides +'Emissions of all nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 168 ; + } +#Emissions of chlorine family +'Emissions of chlorine family' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 169 ; + } +#Emissions of c10h16(oh)(oo) +'Emissions of c10h16(oh)(oo)' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 170 ; + } +#Emissions of bromine family +'Emissions of bromine family' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 171 ; + } +#Emissions of c10h18o3 +'Emissions of c10h18o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 172 ; + } +#Emissions of nitrogen atom +'Emissions of nitrogen atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 173 ; + } +#Emissions of chlorine monoxide +'Emissions of chlorine monoxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 174 ; + } +#Emissions of chlorine atom +'Emissions of chlorine atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 175 ; + } +#Emissions of bromine monoxide +'Emissions of bromine monoxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 176 ; + } +#Emissions of hydrogen atom +'Emissions of hydrogen atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 177 ; + } +#Emissions of methyl group +'Emissions of methyl group' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 178 ; + } +#Emissions of aromatic-ho from toluene and less reactive aromatics +'Emissions of aromatic-ho from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 179 ; + } +#Emissions of aromatic-ho from xylene and more reactive aromatics +'Emissions of aromatic-ho from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 180 ; + } +#Emissions of ammonium nitrate +'Emissions of ammonium nitrate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 181 ; + } +#Emissions of aromatic-ho from csl +'Emissions of aromatic-ho from csl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 182 ; + } +#Emissions of secondary organic aerosol type 1 +'Emissions of secondary organic aerosol type 1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 183 ; + } +#Emissions of secondary organic aerosol type 2a +'Emissions of secondary organic aerosol type 2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 184 ; + } +#Emissions of secondary organic aerosol type 2b +'Emissions of secondary organic aerosol type 2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 185 ; + } +#Emissions of condensable gas type 1 +'Emissions of condensable gas type 1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 186 ; + } +#Emissions of condensable gas type 2a +'Emissions of condensable gas type 2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 187 ; + } +#Emissions of condensable gas type 2b +'Emissions of condensable gas type 2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 188 ; + } +#Emissions of sulfur trioxide +'Emissions of sulfur trioxide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 189 ; + } +#Emissions of carbonyl sulfide +'Emissions of carbonyl sulfide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 190 ; + } +#Emissions of bromine atom +'Emissions of bromine atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 191 ; + } +#Emissions of bromine +'Emissions of bromine' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 192 ; + } +#Emissions of bromine monochloride +'Emissions of bromine monochloride' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 193 ; + } +#Emissions of bromine nitrate +'Emissions of bromine nitrate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 194 ; + } +#Emissions of dibromomethane +'Emissions of dibromomethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 195 ; + } +#Emissions of methoxy radical +'Emissions of methoxy radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 196 ; + } +#Emissions of tribromomethane +'Emissions of tribromomethane' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 197 ; + } +#Emissions of asymmetric chlorine dioxide radical +'Emissions of asymmetric chlorine dioxide radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 198 ; + } +#Emissions of hydrogen +'Emissions of hydrogen' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 199 ; + } +#Emissions of hydrogen chloride +'Emissions of hydrogen chloride' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 200 ; + } +#Emissions of formyl radical +'Emissions of formyl radical' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 201 ; + } +#Emissions of hydrogen fluoride +'Emissions of hydrogen fluoride' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 202 ; + } +#Emissions of oxygen atom +'Emissions of oxygen atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 203 ; + } +#Emissions of excited oxygen atom +'Emissions of excited oxygen atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 204 ; + } +#Emissions of ground state oxygen atom +'Emissions of ground state oxygen atom' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 205 ; + } +#Emissions of stratospheric aerosol +'Emissions of stratospheric aerosol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 206 ; + } +#Wildfire flux of paraffins +'Wildfire flux of paraffins' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 207 ; + } +#Wildfire flux of olefines +'Wildfire flux of olefines' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 208 ; + } +#Wildfire flux of aldehydes +'Wildfire flux of aldehydes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 209 ; + } +#Wildfire flux of ketones +'Wildfire flux of ketones' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 210 ; + } +#Wildfire flux of f a-pinene cyclic terpenes +'Wildfire flux of f a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 211 ; + } +#Wildfire flux of toluene less reactive aromatics +'Wildfire flux of toluene less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 212 ; + } +#Wildfire flux of xylene more reactive aromatics +'Wildfire flux of xylene more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 213 ; + } +#Wildfire flux of d-limonene cyclic diene +'Wildfire flux of d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 214 ; + } +#Wildfire flux of terminal alkenes +'Wildfire flux of terminal alkenes' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 215 ; + } +#Wildfire flux of alkanes low oh rate +'Wildfire flux of alkanes low oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 216 ; + } +#Wildfire flux of alkanes med oh rate +'Wildfire flux of alkanes med oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 217 ; + } +#Wildfire flux of alkanes high oh rate +'Wildfire flux of alkanes high oh rate' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 218 ; + } +#Wildfire flux of hydrogen cyanide +'Wildfire flux of hydrogen cyanide' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 219 ; + } +#Wildfire flux of acetonitrile +'Wildfire flux of acetonitrile' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 220 ; + } +#Ozone deposition velocity +'Ozone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'Nitrogen oxides deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'Hydrogen peroxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'Methane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'Carbon monoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'Nitric acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'Methyl peroxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'Formaldehyde deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'Paraffins deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'Ethene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'Olefins deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'Aldehydes deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'Peroxyacetyl nitrate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'Peroxides deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'Organic nitrates deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'Isoprene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'Sulfur dioxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'Dimethyl sulfide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'Ammonia deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'Sulfate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'Ammonium deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'Methane sulfonic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'Methyl glyoxal deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'Stratospheric ozone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'Radon deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'Lead deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'Nitrogen monoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'Hydroperoxy radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'Methylperoxy radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'Hydroxyl radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'Nitrogen dioxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'Nitrate radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'Dinitrogen pentoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'Pernitric acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'Peroxy acetyl radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'Organic ethers deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'PAR budget corrector deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'NO to NO2 operator deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'NO to alkyl nitrate operator deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'Amine deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'Polar stratospheric cloud deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'Methanol deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'Formic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'Methacrylic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'Ethane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'Ethanol deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'Propane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'Propene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'Terpenes deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'Methacrolein MVK deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'Nitrate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'Acetone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'Acetone product deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'IC3H7O2 deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'HYPROPO2 deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'Nitrogen oxides Transp deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Dry deposition velocity of carbon dioxide (chemistry) +'Dry deposition velocity of carbon dioxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 57 ; + } +#Dry deposition velocity of nitrous oxide (chemistry) +'Dry deposition velocity of nitrous oxide (chemistry)' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 58 ; + } +#Dry deposition velocity of water vapour (chemistry) +'Dry deposition velocity of water vapour (chemistry)' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 59 ; + } +#Dry deposition velocity of oxygen +'Dry deposition velocity of oxygen' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 60 ; + } +#Dry deposition velocity of singlet oxygen +'Dry deposition velocity of singlet oxygen' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 61 ; + } +#Dry deposition velocity of singlet delta oxygen +'Dry deposition velocity of singlet delta oxygen' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 62 ; + } +#Dry deposition velocity of chlorine dioxide +'Dry deposition velocity of chlorine dioxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 63 ; + } +#Dry deposition velocity of chlorine nitrate +'Dry deposition velocity of chlorine nitrate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 64 ; + } +#Dry deposition velocity of hypochlorous acid +'Dry deposition velocity of hypochlorous acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 65 ; + } +#Dry deposition velocity of chlorine +'Dry deposition velocity of chlorine' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 66 ; + } +#Dry deposition velocity of nitryl chloride +'Dry deposition velocity of nitryl chloride' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 67 ; + } +#Dry deposition velocity of hydrogen bromide +'Dry deposition velocity of hydrogen bromide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 68 ; + } +#Dry deposition velocity of dichlorine dioxide +'Dry deposition velocity of dichlorine dioxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 69 ; + } +#Dry deposition velocity of hypobromous acid +'Dry deposition velocity of hypobromous acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 70 ; + } +#Dry deposition velocity of trichlorofluoromethane +'Dry deposition velocity of trichlorofluoromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 71 ; + } +#Dry deposition velocity of dichlorodifluoromethane +'Dry deposition velocity of dichlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 72 ; + } +#Dry deposition velocity of trichlorotrifluoroethane +'Dry deposition velocity of trichlorotrifluoroethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 73 ; + } +#Dry deposition velocity of dichlorotetrafluoroethane +'Dry deposition velocity of dichlorotetrafluoroethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 74 ; + } +#Dry deposition velocity of chloropentafluoroethane +'Dry deposition velocity of chloropentafluoroethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 75 ; + } +#Dry deposition velocity of tetrachloromethane +'Dry deposition velocity of tetrachloromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 76 ; + } +#Dry deposition velocity of methyl chloroform +'Dry deposition velocity of methyl chloroform' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 77 ; + } +#Dry deposition velocity of methyl chloride +'Dry deposition velocity of methyl chloride' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 78 ; + } +#Dry deposition velocity of chlorodifluoromethane +'Dry deposition velocity of chlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 79 ; + } +#Dry deposition velocity of methyl bromide +'Dry deposition velocity of methyl bromide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 80 ; + } +#Dry deposition velocity of dibromodifluoromethane +'Dry deposition velocity of dibromodifluoromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 81 ; + } +#Dry deposition velocity of bromochlorodifluoromethane +'Dry deposition velocity of bromochlorodifluoromethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 82 ; + } +#Dry deposition velocity of trifluorobromomethane +'Dry deposition velocity of trifluorobromomethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 83 ; + } +#Dry deposition velocity of cbrf2cbrf2 +'Dry deposition velocity of cbrf2cbrf2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 84 ; + } +#Dry deposition velocity of sulfuric acid +'Dry deposition velocity of sulfuric acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 85 ; + } +#Dry deposition velocity of nitrous acid +'Dry deposition velocity of nitrous acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 86 ; + } +#Dry deposition velocity of alkanes low oh rate +'Dry deposition velocity of alkanes low oh rate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 87 ; + } +#Dry deposition velocity of alkanes med oh rate +'Dry deposition velocity of alkanes med oh rate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 88 ; + } +#Dry deposition velocity of alkanes high oh rate +'Dry deposition velocity of alkanes high oh rate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 89 ; + } +#Dry deposition velocity of terminal alkenes +'Dry deposition velocity of terminal alkenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 90 ; + } +#Dry deposition velocity of internal alkenes +'Dry deposition velocity of internal alkenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 91 ; + } +#Dry deposition velocity of ethylperoxy radical +'Dry deposition velocity of ethylperoxy radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 92 ; + } +#Dry deposition velocity of butadiene +'Dry deposition velocity of butadiene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 93 ; + } +#Dry deposition velocity of ethyl hydroperoxide +'Dry deposition velocity of ethyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 94 ; + } +#Dry deposition velocity of a-pinene cyclic terpenes +'Dry deposition velocity of a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 95 ; + } +#Dry deposition velocity of acetic acid +'Dry deposition velocity of acetic acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 96 ; + } +#Dry deposition velocity of d-limonene cyclic diene +'Dry deposition velocity of d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 97 ; + } +#Dry deposition velocity of acetaldehyde +'Dry deposition velocity of acetaldehyde' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 98 ; + } +#Dry deposition velocity of toluene and less reactive aromatics +'Dry deposition velocity of toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 99 ; + } +#Dry deposition velocity of xylene and more reactive aromatics +'Dry deposition velocity of xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 100 ; + } +#Dry deposition velocity of glycolaldehyde +'Dry deposition velocity of glycolaldehyde' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 101 ; + } +#Dry deposition velocity of cresol +'Dry deposition velocity of cresol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 102 ; + } +#Dry deposition velocity of acetaldehyde and higher +'Dry deposition velocity of acetaldehyde and higher' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 103 ; + } +#Dry deposition velocity of peracetic acid +'Dry deposition velocity of peracetic acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 104 ; + } +#Dry deposition velocity of ketones +'Dry deposition velocity of ketones' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 105 ; + } +#Dry deposition velocity of hoch2ch2o2 +'Dry deposition velocity of hoch2ch2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 106 ; + } +#Dry deposition velocity of glyoxal +'Dry deposition velocity of glyoxal' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 107 ; + } +#Dry deposition velocity of hoch2ch2o +'Dry deposition velocity of hoch2ch2o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 108 ; + } +#Dry deposition velocity of unsaturated dicarbonyls +'Dry deposition velocity of unsaturated dicarbonyls' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 109 ; + } +#Dry deposition velocity of methacrolein +'Dry deposition velocity of methacrolein' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 110 ; + } +#Dry deposition velocity of unsaturated hydroxy dicarbonyl +'Dry deposition velocity of unsaturated hydroxy dicarbonyl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 111 ; + } +#Dry deposition velocity of isopropyldioxidanyl +'Dry deposition velocity of isopropyldioxidanyl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 112 ; + } +#Dry deposition velocity of hydroxy ketone +'Dry deposition velocity of hydroxy ketone' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 113 ; + } +#Dry deposition velocity of isopropyl hydroperoxide +'Dry deposition velocity of isopropyl hydroperoxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 114 ; + } +#Dry deposition velocity of c3h6oho2 +'Dry deposition velocity of c3h6oho2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 115 ; + } +#Dry deposition velocity of c3h6ohooh +'Dry deposition velocity of c3h6ohooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 116 ; + } +#Dry deposition velocity of higher organic peroxides +'Dry deposition velocity of higher organic peroxides' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 117 ; + } +#Dry deposition velocity of hydroxyacetone +'Dry deposition velocity of hydroxyacetone' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 118 ; + } +#Dry deposition velocity of peroxyacetic acid +'Dry deposition velocity of peroxyacetic acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 119 ; + } +#Dry deposition velocity of ch3coch2o2 +'Dry deposition velocity of ch3coch2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 120 ; + } +#Dry deposition velocity of peroxy radical from c2h6 +'Dry deposition velocity of peroxy radical from c2h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 121 ; + } +#Dry deposition velocity of peroxy radical from hc3 +'Dry deposition velocity of peroxy radical from hc3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 122 ; + } +#Dry deposition velocity of peroxy radical from hc5 +'Dry deposition velocity of peroxy radical from hc5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 123 ; + } +#Dry deposition velocity of lumped alkenes +'Dry deposition velocity of lumped alkenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 124 ; + } +#Dry deposition velocity of peroxy radical from hc8 +'Dry deposition velocity of peroxy radical from hc8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 125 ; + } +#Dry deposition velocity of lumped alkanes +'Dry deposition velocity of lumped alkanes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 126 ; + } +#Dry deposition velocity of peroxy radical from c2h4 +'Dry deposition velocity of peroxy radical from c2h4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 127 ; + } +#Dry deposition velocity of c4h8o +'Dry deposition velocity of c4h8o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 128 ; + } +#Dry deposition velocity of peroxy radical from terminal alkenes +'Dry deposition velocity of peroxy radical from terminal alkenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 129 ; + } +#Dry deposition velocity of c4h9o3 +'Dry deposition velocity of c4h9o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 130 ; + } +#Dry deposition velocity of peroxy radical from internal alkenes +'Dry deposition velocity of peroxy radical from internal alkenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 131 ; + } +#Dry deposition velocity of ch3coch(oo)ch3 +'Dry deposition velocity of ch3coch(oo)ch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 132 ; + } +#Dry deposition velocity of peroxy radical from c5h8 +'Dry deposition velocity of peroxy radical from c5h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 133 ; + } +#Dry deposition velocity of ch3coch(ooh)ch3 +'Dry deposition velocity of ch3coch(ooh)ch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 134 ; + } +#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes +'Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 135 ; + } +#Dry deposition velocity of ch2=c(ch3)co3 +'Dry deposition velocity of ch2=c(ch3)co3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 136 ; + } +#Dry deposition velocity of peroxy radical from d-limonene cyclic diene +'Dry deposition velocity of peroxy radical from d-limonene cyclic diene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 137 ; + } +#Dry deposition velocity of methylvinylketone +'Dry deposition velocity of methylvinylketone' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 138 ; + } +#Dry deposition velocity of phenoxy radical +'Dry deposition velocity of phenoxy radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 139 ; + } +#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics +'Dry deposition velocity of peroxy radical from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 140 ; + } +#Dry deposition velocity of ch3c(o)ch(oo)ch2oh +'Dry deposition velocity of ch3c(o)ch(oo)ch2oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 141 ; + } +#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics +'Dry deposition velocity of peroxy radical from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 142 ; + } +#Dry deposition velocity of h3c(o)ch(ooh)ch2oh +'Dry deposition velocity of h3c(o)ch(ooh)ch2oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 143 ; + } +#Dry deposition velocity of peroxy radical from cresol +'Dry deposition velocity of peroxy radical from cresol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 144 ; + } +#Dry deposition velocity of unsaturated pans +'Dry deposition velocity of unsaturated pans' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 145 ; + } +#Dry deposition velocity of unsaturated acyl peroxy radical +'Dry deposition velocity of unsaturated acyl peroxy radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 146 ; + } +#Dry deposition velocity of peroxy radical from ketones +'Dry deposition velocity of peroxy radical from ketones' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 147 ; + } +#Dry deposition velocity of c5h11o2 +'Dry deposition velocity of c5h11o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 148 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates +'Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 149 ; + } +#Dry deposition velocity of c5h11ooh +'Dry deposition velocity of c5h11ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 150 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting via decomposition +'Dry deposition velocity of no3-alkenes adduct reacting via decomposition' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 151 ; + } +#Dry deposition velocity of hoch2c(ch3)=chcho +'Dry deposition velocity of hoch2c(ch3)=chcho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 152 ; + } +#Dry deposition velocity of c5h6o2 +'Dry deposition velocity of c5h6o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 153 ; + } +#Dry deposition velocity of trop sulfuric acid +'Dry deposition velocity of trop sulfuric acid' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 154 ; + } +#Dry deposition velocity of oxides +'Dry deposition velocity of oxides' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 155 ; + } +#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 +'Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 156 ; + } +#Dry deposition velocity of c3 organic nitrate +'Dry deposition velocity of c3 organic nitrate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 157 ; + } +#Dry deposition velocity of chlorine oxides +'Dry deposition velocity of chlorine oxides' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 158 ; + } +#Dry deposition velocity of bromine oxides +'Dry deposition velocity of bromine oxides' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 159 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh +'Dry deposition velocity of hoch2c(ooh)(ch3)chchoh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 160 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 +'Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 161 ; + } +#Dry deposition velocity of lumped aromatics +'Dry deposition velocity of lumped aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 162 ; + } +#Dry deposition velocity of dimethyl sulfoxyde +'Dry deposition velocity of dimethyl sulfoxyde' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 163 ; + } +#Dry deposition velocity of c7h9o5 +'Dry deposition velocity of c7h9o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 164 ; + } +#Dry deposition velocity of c7h10o5 +'Dry deposition velocity of c7h10o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 165 ; + } +#Dry deposition velocity of hydrogensulfide +'Dry deposition velocity of hydrogensulfide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 166 ; + } +#Dry deposition velocity of c7h10o6 +'Dry deposition velocity of c7h10o6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 167 ; + } +#Dry deposition velocity of all nitrogen oxides +'Dry deposition velocity of all nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 168 ; + } +#Dry deposition velocity of chlorine family +'Dry deposition velocity of chlorine family' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 169 ; + } +#Dry deposition velocity of c10h16(oh)(oo) +'Dry deposition velocity of c10h16(oh)(oo)' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 170 ; + } +#Dry deposition velocity of bromine family +'Dry deposition velocity of bromine family' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 171 ; + } +#Dry deposition velocity of c10h18o3 +'Dry deposition velocity of c10h18o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 172 ; + } +#Dry deposition velocity of nitrogen atom +'Dry deposition velocity of nitrogen atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 173 ; + } +#Dry deposition velocity of chlorine monoxide +'Dry deposition velocity of chlorine monoxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 174 ; + } +#Dry deposition velocity of chlorine atom +'Dry deposition velocity of chlorine atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 175 ; + } +#Dry deposition velocity of bromine monoxide +'Dry deposition velocity of bromine monoxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 176 ; + } +#Dry deposition velocity of hydrogen atom +'Dry deposition velocity of hydrogen atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 177 ; + } +#Dry deposition velocity of methyl group +'Dry deposition velocity of methyl group' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 178 ; + } +#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics +'Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 179 ; + } +#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics +'Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 180 ; + } +#Dry deposition velocity of ammonium nitrate +'Dry deposition velocity of ammonium nitrate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 181 ; + } +#Dry deposition velocity of aromatic-ho from csl +'Dry deposition velocity of aromatic-ho from csl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 182 ; + } +#Dry deposition velocity of secondary organic aerosol type 1 +'Dry deposition velocity of secondary organic aerosol type 1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 183 ; + } +#Dry deposition velocity of secondary organic aerosol type 2a +'Dry deposition velocity of secondary organic aerosol type 2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 184 ; + } +#Dry deposition velocity of secondary organic aerosol type 2b +'Dry deposition velocity of secondary organic aerosol type 2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 185 ; + } +#Dry deposition velocity of condensable gas type 1 +'Dry deposition velocity of condensable gas type 1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 186 ; + } +#Dry deposition velocity of condensable gas type 2a +'Dry deposition velocity of condensable gas type 2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 187 ; + } +#Dry deposition velocity of condensable gas type 2b +'Dry deposition velocity of condensable gas type 2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 188 ; + } +#Dry deposition velocity of sulfur trioxide +'Dry deposition velocity of sulfur trioxide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 189 ; + } +#Dry deposition velocity of carbonyl sulfide +'Dry deposition velocity of carbonyl sulfide' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 190 ; + } +#Dry deposition velocity of bromine atom +'Dry deposition velocity of bromine atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 191 ; + } +#Dry deposition velocity of bromine +'Dry deposition velocity of bromine' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 192 ; + } +#Dry deposition velocity of bromine monochloride +'Dry deposition velocity of bromine monochloride' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 193 ; + } +#Dry deposition velocity of bromine nitrate +'Dry deposition velocity of bromine nitrate' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 194 ; + } +#Dry deposition velocity of dibromomethane +'Dry deposition velocity of dibromomethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 195 ; + } +#Dry deposition velocity of methoxy radical +'Dry deposition velocity of methoxy radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 196 ; + } +#Dry deposition velocity of tribromomethane +'Dry deposition velocity of tribromomethane' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 197 ; + } +#Dry deposition velocity of asymmetric chlorine dioxide radical +'Dry deposition velocity of asymmetric chlorine dioxide radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 198 ; + } +#Dry deposition velocity of hydrogen +'Dry deposition velocity of hydrogen' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 199 ; + } +#Dry deposition velocity of hydrogen chloride +'Dry deposition velocity of hydrogen chloride' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 200 ; + } +#Dry deposition velocity of formyl radical +'Dry deposition velocity of formyl radical' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 201 ; + } +#Dry deposition velocity of hydrogen fluoride +'Dry deposition velocity of hydrogen fluoride' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 202 ; + } +#Dry deposition velocity of oxygen atom +'Dry deposition velocity of oxygen atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 203 ; + } +#Dry deposition velocity of excited oxygen atom +'Dry deposition velocity of excited oxygen atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 204 ; + } +#Dry deposition velocity of ground state oxygen atom +'Dry deposition velocity of ground state oxygen atom' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 205 ; + } +#Dry deposition velocity of stratospheric aerosol +'Dry deposition velocity of stratospheric aerosol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 206 ; + } +#Total sky direct solar radiation at surface +'Total sky direct solar radiation at surface' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'Clear-sky direct solar radiation at surface' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'Cloud base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Horizontal visibility +'Horizontal visibility' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'Maximum temperature at 2 metres in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'Minimum temperature at 2 metres in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'Soil wetness index in layer 1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'Soil wetness index in layer 2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'Soil wetness index in layer 3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'Soil wetness index in layer 4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of zero-degree wet-bulb temperature +'Height of zero-degree wet-bulb temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'Height of one-degree wet-bulb temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'Instantaneous total lightning flash density' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Instantaneous total lightning flash density +'Instantaneous total lightning flash density' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'Averaged total lightning flash density in the last hour' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + } +#Averaged total lightning flash density in the last hour +'Averaged total lightning flash density in the last hour' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'Instantaneous cloud-to-ground lightning flash density' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'Instantaneous cloud-to-ground lightning flash density' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'Averaged cloud-to-ground lightning flash density in the last hour' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'Averaged cloud-to-ground lightning flash density in the last hour' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'Averaged total lightning flash density in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last 3 hours +'Averaged total lightning flash density in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'Averaged total lightning flash density in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + } +#Averaged total lightning flash density in the last 6 hours +'Averaged total lightning flash density in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'GPP coefficient from Biogenic Flux Adjustment System' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'Rec coefficient from Biogenic Flux Adjustment System' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'Accumulated Carbon Dioxide Gross Primary Production' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'Accumulated Carbon Dioxide Ecosystem Respiration' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'Flux of Carbon Dioxide Net Ecosystem Exchange' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'Flux of Carbon Dioxide Gross Primary Production' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'Flux of Carbon Dioxide Ecosystem Respiration' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'Total column rain water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'Total column snow water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'Canopy cover fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'Soil texture fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'Ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Evaporation from the top of canopy +'Evaporation from the top of canopy' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 100 ; + } +#Evaporation from bare soil +'Evaporation from bare soil' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 101 ; + } +#Evaporation from open water surfaces excluding oceans +'Evaporation from open water surfaces excluding oceans' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 102 ; + } +#Evaporation from vegetation transpiration +'Evaporation from vegetation transpiration' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 103 ; + } +#Surface solar radiation downward clear-sky +'Surface solar radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'Surface thermal radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'Surface short wave-effective total cloudiness' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#Irrigation fraction +'Irrigation fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'Irrigation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'Surface long wave-effective total cloudiness' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'Stream function gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'Velocity potential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'Potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'Equivalent potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'Saturated equivalent potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'U component of divergent wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'V component of divergent wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'U component of rotational wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'V component of rotational wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'Unbalanced component of temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'Unbalanced component of logarithm of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'Unbalanced component of divergence gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'Lake cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'Low vegetation cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'High vegetation cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'Type of low vegetation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'Type of high vegetation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'Sea-ice cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'Snow albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'Snow density gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'Sea surface temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'Ice surface temperature layer 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'Ice surface temperature layer 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'Ice surface temperature layer 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'Ice surface temperature layer 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'Volumetric soil water layer 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'Volumetric soil water layer 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'Volumetric soil water layer 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'Volumetric soil water layer 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'Soil type gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'Snow evaporation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'Snowmelt gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'Solar duration gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'Direct solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'Magnitude of turbulent surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'10 metre wind gust gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'Large-scale precipitation fraction gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'Maximum 2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'Minimum 2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'Montgomery potential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'Pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'Mean 2 metre temperature in the last 24 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'Downward UV radiation at the surface gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'Photosynthetically active radiation at the surface gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'Convective available potential energy gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'Potential vorticity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'Total precipitation from observations gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'Observation count gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'Total column ice water' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'Maximum temperature at 2 metres gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'Minimum temperature at 2 metres gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10 metre wind gust in the last 6 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'Atmospheric tide gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'Budget values gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'Geopotential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'Temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'U component of wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'V component of wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'Specific humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'Surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'vertical velocity (pressure) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'Total column water gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'Total column water vapour gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'Vorticity (relative) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'Soil temperature level 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'Soil wetness level 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'Snow depth gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'Stratiform precipitation (Large-scale precipitation) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'Convective precipitation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'Snowfall (convective + stratiform) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'Boundary layer dissipation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'Surface sensible heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'Surface latent heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'Charnock gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'Surface net radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'Top net radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'Mean sea level pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'Logarithm of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'Short-wave heating rate gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'Long-wave heating rate gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'Divergence gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'Height gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'Relative humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'Tendency of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'Boundary layer height gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'Standard deviation of orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'Anisotropy of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'Angle of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'Slope of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'Total cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'10 metre U wind component gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'10 metre V wind component gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'2 metre dewpoint temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'Surface solar radiation downwards gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'Soil temperature level 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'Soil wetness level 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'Land-sea mask gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'Surface roughness gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'Albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'Surface thermal radiation downwards gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'Surface net solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'Surface net thermal radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'Top net solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'Top net thermal radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'East-West surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'North-South surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'Evaporation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'Soil temperature level 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'Soil wetness level 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'Convective cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'Low cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'Medium cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'High cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'Sunshine duration gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'East-West component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'North-South component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'North-West/South-East component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'North-East/South-West component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'Brightness temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'Longitudinal component of gravity wave stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'Meridional component of gravity wave stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'Gravity wave dissipation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'Skin reservoir content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'Vegetation fraction gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'Variance of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'Maximum temperature at 2 metres since previous post-processing gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'Minimum temperature at 2 metres since previous post-processing gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'Ozone mass mixing ratio gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'Precipitation analysis weights gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'Runoff gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'Total column ozone gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'10 metre wind speed gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'Top net solar radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'Top net thermal radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'Surface net solar radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'Surface net thermal radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'TOA incident solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'Diabatic heating by radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'Diabatic heating by vertical diffusion gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'Diabatic heating by cumulus convection gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'Diabatic heating large-scale condensation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'Vertical diffusion of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'Vertical diffusion of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'East-West gravity wave drag tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'North-South gravity wave drag tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'Convective tendency of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'Convective tendency of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'Vertical diffusion of humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'Humidity tendency by cumulus convection gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'Humidity tendency by large-scale condensation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'Change from removal of negative humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'Total precipitation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'Instantaneous X surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'Instantaneous Y surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'Instantaneous surface heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'Instantaneous moisture flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'Apparent surface humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'Logarithm of surface roughness length for heat gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'Skin temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'Soil temperature level 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'Soil wetness level 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'Temperature of snow layer gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'Convective snowfall gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'Large scale snowfall gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'Accumulated cloud fraction tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'Accumulated liquid water tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'Forecast albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'Forecast surface roughness gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'Forecast logarithm of surface roughness for heat gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'Specific cloud liquid water content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'Specific cloud ice water content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'Cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'Accumulated ice water tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'Ice age gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'Adiabatic tendency of temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'Adiabatic tendency of humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'Adiabatic tendency of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'Adiabatic tendency of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'Top solar radiation upward' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'Top thermal radiation upward' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'Top solar radiation upward, clear sky' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'Top thermal radiation upward, clear sky' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'Cloud liquid water' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'Cloud fraction' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'Diabatic heating by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'East-West gravity wave drag' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'North-South gravity wave drag' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'Mean vertical velocity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'2m temperature anomaly of at least +2K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'2m temperature anomaly of at least +1K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'2m temperature anomaly of at least 0K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'2m temperature anomaly of at most -1K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'2m temperature anomaly of at most -2K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'Total precipitation anomaly of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'Total precipitation anomaly of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'Total precipitation anomaly of at least 0 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'Surface temperature anomaly of at least 0K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'Mean sea level pressure anomaly of at least 0 Pa' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'Height of 0 degree isotherm probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'Height of snowfall limit probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'Showalter index probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'Whiting index probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'Temperature anomaly less than -2 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'Temperature anomaly of at least +2 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'Temperature anomaly less than -8 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'Temperature anomaly less than -4 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'Temperature anomaly greater than +4 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'Temperature anomaly greater than +8 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'10 metre wind gust probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'Convective available potential energy probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'Total precipitation less than 0.1 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'Total precipitation rate less than 1 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'Total precipitation rate of at least 3 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'Total precipitation rate of at least 5 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10 metre Wind speed of at least 10 m/s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10 metre Wind speed of at least 15 m/s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre wind gust of at least 25 m/s +'10 metre wind gust of at least 25 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + } +#2 metre temperature less than 273.15 K +'2 metre temperature less than 273.15 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'Significant wave height of at least 2 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 2 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 4 m +'Significant wave height of at least 4 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 4 ; + } +#Significant wave height of at least 6 m +'Significant wave height of at least 6 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'Significant wave height of at least 8 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#Mean wave period of at least 8 s +'Mean wave period of at least 8 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'Mean wave period of at least 10 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'Mean wave period of at least 12 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'Mean wave period of at least 15 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'Geopotential probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'Temperature anomaly probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'Soil temperature level 1 probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'Snowfall (convective + stratiform) probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'Mean sea level pressure probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'Total cloud cover probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'10 metre speed probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'Maximum 2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'Minimum 2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'Total precipitation probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'Significant wave height probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'Mean wave period probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'2m temperature probability less than -10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'2m temperature probability less than -5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'2m temperature probability less than 0 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'2m temperature probability less than 5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'2m temperature probability less than 10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'2m temperature probability greater than 25 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'2m temperature probability greater than 30 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'2m temperature probability greater than 35 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'2m temperature probability greater than 40 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'2m temperature probability greater than 45 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'Minimum 2 metre temperature probability less than -10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'Minimum 2 metre temperature probability less than -5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'Minimum 2 metre temperature probability less than 0 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'Minimum 2 metre temperature probability less than 5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'Minimum 2 metre temperature probability less than 10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'Maximum 2 metre temperature probability greater than 25 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'Maximum 2 metre temperature probability greater than 30 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'Maximum 2 metre temperature probability greater than 35 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'Maximum 2 metre temperature probability greater than 40 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'Maximum 2 metre temperature probability greater than 45 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10 metre wind speed probability of at least 10 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10 metre wind speed probability of at least 15 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10 metre wind speed probability of at least 20 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10 metre wind speed probability of at least 35 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10 metre wind speed probability of at least 50 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10 metre wind gust probability of at least 20 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10 metre wind gust probability of at least 35 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10 metre wind gust probability of at least 50 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10 metre wind gust probability of at least 75 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10 metre wind gust probability of at least 100 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'Total precipitation probability of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'Total precipitation probability of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'Total precipitation probability of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'Total precipitation probability of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'Total precipitation probability of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'Total precipitation probability of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'Total precipitation probability of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'Total precipitation probability of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'Total precipitation probability of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'Total precipitation probability of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'Total precipitation probability of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'Snowfall probability of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'Snowfall probability of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'Snowfall probability of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'Snowfall probability of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'Snowfall probability of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'Snowfall probability of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'Snowfall probability of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'Snowfall probability of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'Snowfall probability of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'Snowfall probability of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'Snowfall probability of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'Total Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'Total Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'Total Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'Total Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'Total Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'Total Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'Total Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'Total Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'Total Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'Total Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'High Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'High Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'High Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'High Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'High Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'High Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'High Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'High Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'High Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'High Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'Medium Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'Medium Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'Medium Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'Medium Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'Medium Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'Medium Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'Medium Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'Medium Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'Medium Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'Medium Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'Low Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'Low Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'Low Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'Low Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'Low Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'Low Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'Low Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'Low Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'Low Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'Low Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'Maximum of significant wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'Period corresponding to maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'Maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'Model bathymetry' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'Mean wave period based on first moment' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'Wave spectral directional width' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'Mean wave period based on first moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'Mean wave period based on second moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'Wave spectral directional width for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'Mean wave period based on first moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'Mean wave period based on second moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'Wave spectral directional width for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'Peak wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Peak wave period +'Peak wave period' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'Significant height of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'Mean direction of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'Mean period of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'Standard deviation wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'Mean wind direction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'Standard deviation of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'Mean square slope of waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'Altimeter wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'Altimeter corrected wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'Altimeter range relative correction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'10 metre wind direction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'2D wave spectra (multiple)' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'2D wave spectra (single)' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'Wave spectral kurtosis' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'Benjamin-Feir index' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'Wave spectral peakedness' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'Ocean salinity' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'Ocean potential density' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'Ocean U wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'Ocean V wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'Ocean W wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'Richardson number' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'U*V product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'U*T product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'V*T product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'U*U product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'V*V product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'UV - U~V~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'UT - U~T~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'VT - V~T~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'UU - U~U~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'VV - V~V~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'Sea level' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'Barotropic stream function' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'Depth' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'U stress' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'V stress' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'Net surface heat flux' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'Surface solar radiation' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'P-E' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'Heat flux correction' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'Observed sea surface temperature' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'Observed heat flux' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'In situ Temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Sea water potential temperature +'Sea water potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'Sea water practical salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'Upward sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'Modulus of strain rate tensor' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'Vertical viscosity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'Vertical diffusivity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'Bottom level Depth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sea water sigma theta +'Sea water sigma theta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'Richardson number' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'UV product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'UT product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'VT product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'UU product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'VV product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level previous timestep +'Sea level previous timestep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Ocean barotropic stream function +'Ocean barotropic stream function' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'Bottom Pressure (equivalent height)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'Steric height' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'Curl of Wind Stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'Divergence of wind stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#Surface downward eastward stress +'Surface downward eastward stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'Surface downward northward stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'Net surface heat flux' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'Absorbed solar radiation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'Precipitation - evaporation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'Specified sea surface temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'Specified surface heat flux' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'Heat flux correction' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#Average potential temperature in the upper 300m +'Average potential temperature in the upper 300m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'Vertically integrated zonal velocity (previous time step)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'Vertically Integrated meridional velocity (previous time step)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'Vertically integrated zonal volume transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'Vertically integrated meridional volume transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'Vertically integrated zonal heat transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'Vertically integrated meridional heat transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'U velocity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'Depth of the velocity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'Salinity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'Depth of salinity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Layer Thickness at scalar points +'Layer Thickness at scalar points' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'Layer Thickness at vector points' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'Potential temperature increment' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'Potential temperature analysis error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'Background potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'Analysed potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'Potential temperature background error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'Analysed salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'Salinity increment' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'Estimated Bias in Temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'Estimated Bias in Salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'Zonal Velocity increment (from balance operator)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'Meridional Velocity increment (from balance operator)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'Salinity increment (from salinity data)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'Salinity analysis error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'Background Salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'Salinity background error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'Estimated temperature bias from assimilation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'Estimated salinity bias from assimilation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'Temperature increment from relaxation term' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'Salinity increment from relaxation term' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Bias in the zonal pressure gradient (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Bias in the meridional pressure gradient (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'Estimated temperature bias from relaxation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'Estimated salinity bias from relaxation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'First guess bias in temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'First guess bias in salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'Applied bias in pressure' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'FG bias in pressure' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'Bias in temperature(applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'Bias in salinity (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'10 metre wind gust during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'vertical velocity (pressure)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'Precipitable water content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'Snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'Height' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'East-West surface stress' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'Maximum temperature at 2 metres during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'Minimum temperature at 2 metres during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'Standard deviation of geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'Covariance of temperature and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'Standard deviation of temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'Covariance of specific humidity and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'Covariance of specific humidity and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'Standard deviation of specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'Covariance of U component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'Covariance of U component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'Covariance of U component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'Standard deviation of U velocity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'Covariance of V component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'Covariance of V component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'Covariance of V component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'Covariance of V component and U component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'Standard deviation of V component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'Covariance of W component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'Covariance of W component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'Covariance of W component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'Covariance of W component and U component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'Covariance of W component and V component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'Standard deviation of vertical velocity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'Instantaneous surface heat flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'Cloud liquid water content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'Momentum flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'Gravity wave dissipation flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'Heaviside beta function' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'Surface geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'Vertical integral of mass of atmosphere' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'Vertical integral of temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'Vertical integral of water vapour' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'Vertical integral of cloud liquid water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'Vertical integral of cloud frozen water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'Vertical integral of ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'Vertical integral of kinetic energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'Vertical integral of thermal energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'Vertical integral of potential+internal energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'Vertical integral of potential+internal+latent energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'Vertical integral of total energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'Vertical integral of energy conversion' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'Vertical integral of eastward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'Vertical integral of northward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'Vertical integral of eastward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'Vertical integral of northward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'Vertical integral of eastward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'Vertical integral of northward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'Vertical integral of eastward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'Vertical integral of northward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'Vertical integral of eastward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'Vertical integral of northward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'Vertical integral of eastward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'Vertical integral of northward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'Vertical integral of eastward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'Vertical integral of northward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'Vertical integral of divergence of mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'Vertical integral of divergence of kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'Vertical integral of divergence of thermal energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'Vertical integral of divergence of moisture flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'Vertical integral of divergence of geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'Vertical integral of divergence of total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'Vertical integral of divergence of ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'Tendency of short wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'Tendency of long wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'Tendency of clear sky short wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'Tendency of clear sky long wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'Updraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'Downdraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'Updraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'Downdraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'Total precipitation flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'Turbulent diffusion coefficient for heat' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'Tendency of temperature due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'Tendency of specific humidity due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'Tendency of u component due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'Tendency of v component due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'Variance of geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'Covariance of geopotential/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'Variance of temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'Covariance of geopotential/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'Covariance of temperature/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'Variance of specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'Covariance of u component/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'Covariance of u component/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'Covariance of u component/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'Variance of u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'Covariance of v component/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'Covariance of v component/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'Covariance of v component/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'Covariance of v component/u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'Variance of v component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'Covariance of omega/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'Covariance of omega/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'Covariance of omega/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'Covariance of omega/u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'Covariance of omega/v component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'Variance of omega' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'Variance of surface pressure' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'Variance of relative humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'Covariance of u component/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'Covariance of v component/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'Covariance of omega/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'Variance of ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'Stream function anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'Velocity potential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'Potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'Equivalent potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'Saturated equivalent potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'U component of divergent wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'V component of divergent wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'U component of rotational wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'V component of rotational wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'Unbalanced component of temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'Unbalanced component of logarithm of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'Unbalanced component of divergence anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'Lake cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'Low vegetation cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'High vegetation cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'Type of low vegetation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'Type of high vegetation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'Sea-ice cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'Snow albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'Snow density anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'Sea surface temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'Ice surface temperature anomaly layer 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'Ice surface temperature anomaly layer 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'Ice surface temperature anomaly layer 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'Ice surface temperature anomaly layer 4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'Volumetric soil water anomaly layer 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'Volumetric soil water anomaly layer 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'Volumetric soil water anomaly layer 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'Volumetric soil water anomaly layer 4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'Soil type anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'Solar duration anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'Direct solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'10 metre wind gust anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'Maximum 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'Minimum 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'Montgomery potential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'Pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'Mean 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'Downward UV radiation at the surface anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'Photosynthetically active radiation at the surface anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'Convective available potential energy anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'Potential vorticity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'Total precipitation from observations anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'Observation count anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'Start time for skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'Finish time for skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'Skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'Total column liquid water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'Total column ice water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'Vertically integrated total energy anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'Atmospheric tide anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'Budget values anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'Geopotential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'Temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'U component of wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'V component of wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'Specific humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'Surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'Vertical velocity (pressure) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'Total column water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'Total column water vapour anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'Relative vorticity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'Soil temperature anomaly level 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'Soil wetness anomaly level 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'Snow depth anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'Snowfall (convective + stratiform) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'Charnock anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'Top net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'Mean sea level pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'Logarithm of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'Relative divergence anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'Height anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'Relative humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'Tendency of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'Boundary layer height anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'Standard deviation of orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'Anisotropy of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'Angle of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'Slope of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'Total cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'10 metre U wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'10 metre V wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'2 metre temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'2 metre dewpoint temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'Soil temperature anomaly level 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'Soil wetness anomaly level 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'Surface roughness anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'Albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'Surface net solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'Surface net thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'Top net solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'Top net thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'Soil temperature anomaly level 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'Soil wetness anomaly level 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'Convective cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'Low cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'Medium cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'High cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'Sunshine duration anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'East-West component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'North-South component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'North-West/South-East component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'North-East/South-West component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'Brightness temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'Skin reservoir content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'Vegetation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'Variance of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'Maximum temperature at 2 metres anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'Minimum temperature at 2 metres anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'Ozone mass mixing ratio anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'Precipitation analysis weights anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'Runoff anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'Total column ozone anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'10 metre wind speed anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'Top net solar radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'Top net thermal radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'Surface net solar radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'Diabatic heating by radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'Diabatic heating by vertical diffusion anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'Diabatic heating by cumulus convection anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'Diabatic heating by large-scale condensation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'Vertical diffusion of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'Vertical diffusion of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'East-West gravity wave drag tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'North-South gravity wave drag tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'Convective tendency of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'Convective tendency of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'Vertical diffusion of humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'Humidity tendency by cumulus convection anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'Humidity tendency by large-scale condensation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'Change from removal of negative humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'Total precipitation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'Instantaneous X surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'Instantaneous Y surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'Instantaneous surface heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'Instantaneous moisture flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'Apparent surface humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'Logarithm of surface roughness length for heat anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'Skin temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'Soil temperature level 4 anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'Soil wetness level 4 anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'Temperature of snow layer anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'Accumulated cloud fraction tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'Accumulated liquid water tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'Forecast albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'Forecast surface roughness anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'Forecast logarithm of surface roughness for heat anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'Cloud liquid water content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'Cloud ice water content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'Cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'Accumulated ice water tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'Ice age anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'Adiabatic tendency of temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'Adiabatic tendency of humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'Adiabatic tendency of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'Adiabatic tendency of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'Snowmelt' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Mean large-scale precipitation fraction +'Mean large-scale precipitation fraction' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Mean large-scale precipitation rate +'Mean large-scale precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'Mean convective precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'Mean total snowfall rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Mean surface sensible heat flux +'Mean surface sensible heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'Mean surface latent heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface net radiation flux +'Mean surface net radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Mean short-wave heating rate +'Mean short-wave heating rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Mean long-wave heating rate +'Mean long-wave heating rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Mean surface downward solar radiation flux +'Mean surface downward solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'Mean surface downward thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'Mean surface net solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'Mean surface net thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'Mean top net solar radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'Mean top net thermal radiation flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'East-West surface stress rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'North-South surface stress rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean sunshine duration rate +'Mean sunshine duration rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'Longitudinal component of gravity wave stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'Meridional component of gravity wave stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Mean runoff rate +'Mean runoff rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'Solar insolation rate of accumulation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'Mean total precipitation rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate anomaly +'Mean convective precipitation rate anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'Snowfall (convective + stratiform) anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'Surface sensible heat flux anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'Surface latent heat flux anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'Surface solar radiation downwards anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'Surface thermal radiation downwards anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'Surface solar radiation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'Surface thermal radiation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'Top solar radiation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'Top thermal radiation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'East-West surface stress anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'North-South surface stress anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomalous rate of accumulation +'Evaporation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'Sunshine duration anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomalous rate of accumulation +'Runoff anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'Top net solar radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'Top net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'Surface net solar radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomalous rate of accumulation +'Solar insolation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'Total precipitation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'10 metre wind gust in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'Mean sea surface temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'1.5m specific humidity' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Liquid water potential temperature +'Liquid water potential temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'10m wind gust in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'Total soil wetness' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Field capacity +'Field capacity' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'Wilting point' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'Roughness length' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'2 metre dewpoint temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'downward shortwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'upward shortwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'downward longwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'upward longwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'downwd photosynthetic active radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'net shortwave flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'net longwave flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'total net radiative flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'downw shortw radiant flux density, cloudfree part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'upw shortw radiant flux density, cloudy part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'downw longw radiant flux density, cloudfree part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'upw longw radiant flux density, cloudy part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'shortwave radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'longwave radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'total radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'soil heat flux, surface' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'soil heat flux, bottom of layer' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'fractional cloud cover' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'cloud cover, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'specific cloud water content' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'cloud water content, grid scale, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'specific cloud ice content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'cloud ice content, grid scale, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'specific rainwater content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'specific snow content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'specific rainwater content, gs, vert. integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'specific snow content, gs, vert. integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'total column water' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'vert. integral of divergence of tot. water content' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'cloud covers CH_CM_CL (000...888)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'total cloud cover (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'fog (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'fog' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'cloud cover, convective cirrus' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'specific cloud water content, convective clouds' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'cloud water content, conv clouds, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'specific cloud ice content, convective clouds' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'cloud ice content, conv clouds, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'convective mass flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'Updraft velocity, convection' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'entrainment parameter, convection' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'cloud base, convective clouds (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'cloud top, convective clouds (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'convective layers (00...77) (BKE)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'KO-index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'convection base index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'convection top index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'convective temperature tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'convective tendency of specific humidity' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'convective tendency of total heat' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'convective tendency of total water' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'convective momentum tendency (X-component)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'convective momentum tendency (Y-component)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'convective vorticity tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'convective divergence tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'top of dry convection (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'dry convection top index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'height of 0 degree Celsius isotherm above msl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'height of snow-fall limit' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'spec. content of precip. particles' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'surface precipitation rate, rain, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'surface precipitation rate, snow, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'surface precipitation amount, rain, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'surface precipitation rate, rain, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'surface precipitation rate, snow, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'surface precipitation amount, rain, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'deviation of pressure from reference value' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'coefficient of horizontal diffusion' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'Maximum wind velocity' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'water content of interception store' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'snow temperature' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'ice surface temperature' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'convective available potential energy' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'SO2 precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'Soil clay content' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'Methane' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#CO2 column-mean molar fraction +'CO2 column-mean molar fraction' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#CH4 column-mean molar fraction +'CH4 column-mean molar fraction' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire flux of Carbon Dioxide +'Wildfire flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 80 ; + } +#Wildfire flux of Carbon Monoxide +'Wildfire flux of Carbon Monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 81 ; + } +#Wildfire flux of Methane +'Wildfire flux of Methane' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'Wildfire flux of Non-Methane Hydro-Carbons' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 83 ; + } +#Wildfire flux of Hydrogen +'Wildfire flux of Hydrogen' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'Wildfire flux of Nitrogen Oxides NOx' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 85 ; + } +#Wildfire flux of Nitrous Oxide +'Wildfire flux of Nitrous Oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'Wildfire flux of Particulate Matter PM2.5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 87 ; + } +#Wildfire flux of Total Particulate Matter +'Wildfire flux of Total Particulate Matter' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'Wildfire flux of Total Carbon in Aerosols' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 89 ; + } +#Wildfire flux of Organic Carbon +'Wildfire flux of Organic Carbon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 90 ; + } +#Wildfire flux of Black Carbon +'Wildfire flux of Black Carbon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 91 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'Number of positive FRP pixels per grid cell' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'Radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'Total column Radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'Aerosol type 12 mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'Soil clay content' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'Methane' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'Total column Methane' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'Wildfire observed area' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'Radon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'Total column Radon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'Total precipitation observation count' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'Friction velocity' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'Mean temperature at 2 metres' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'Mean total cloud cover' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'Lake depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'Lake shape factor' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'Lake ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'Lake ice depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'Minimum vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'Mean vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'Duct base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'Trapping layer base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'Trapping layer top height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'Neutral wind at 10 m u-component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'Neutral wind at 10 m v-component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'Surface temperature significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'Mean sea level pressure significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'2 metre temperature significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'Total precipitation significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'U-component stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'V-component stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'Wildfire flux of Sulfur Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'Wildfire Flux of Methanol (CH3OH)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'Wildfire Flux of Ethanol (C2H5OH)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'Wildfire Flux of Propane (C3H8)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'Wildfire Flux of Ethene (C2H4)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'Wildfire Flux of Propene (C3H6)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'Wildfire Flux of Isoprene (C5H8)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'Wildfire Flux of Terpenes (C5H8)n' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'Wildfire Flux of Formaldehyde (CH2O)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'Wildfire Flux of Acetaldehyde (C2H4O)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'Wildfire Flux of Acetone (C3H6O)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'Wildfire Flux of Ammonia (NH3)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 117 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'V-tendency from non-orographic wave drag' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'U-tendency from non-orographic wave drag' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#ASCAT first soil moisture CDF matching parameter +'ASCAT first soil moisture CDF matching parameter' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ASCAT second soil moisture CDF matching parameter' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def new file mode 100644 index 00000000..6421ee84 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -0,0 +1,144 @@ +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'Eastward sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'Northward sea water velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'Sea-ice thickness' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'Sea surface height' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#100 metre U wind component +'100 metre U wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; +} +#100 metre V wind component +'100 metre V wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; +} +#100 metre wind speed +'100 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; +} +#0 degrees C isothermal level (atm) +'0 degrees C isothermal level (atm)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; +} +#Depth of 20C isotherm +'Depth of 20C isotherm' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Average salinity in the upper 300m +'Average salinity in the upper 300m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; +} +#Total precipitation of at least 1 mm +'Total precipitation of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; +} +#Total precipitation of at least 5 mm +'Total precipitation of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; +} +#Total precipitation of at least 40 mm +'Total precipitation of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; +} +#Total precipitation of at least 60 mm +'Total precipitation of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; +} +#Total precipitation of at least 80 mm +'Total precipitation of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; +} +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; +} +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; +} +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; +} +#Total column cloud liquid water +'Total column cloud liquid water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; +} +#Total column cloud ice water +'Total column cloud ice water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; +} +#Top net solar radiation +'Top net solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/paramId.def b/eccodes/definitions/grib2/localConcepts/ecmf/paramId.def new file mode 100644 index 00000000..bba71a6d --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/paramId.def @@ -0,0 +1,22056 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 100 mm +'131085' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 100 mm +'131085' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Equivalent potential temperature +'4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'5' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'7' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'8' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'9' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'11' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'12' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'13' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'14' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'15' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'16' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'17' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'18' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'19' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'20' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'21' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'23' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'25' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'26' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'27' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'28' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'29' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'30' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'32' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'35' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'36' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'37' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'38' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'39' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'40' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'41' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'42' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'44' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'45' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'46' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'47' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'48' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'50' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'51' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'52' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Montgomery potential +'53' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'55' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'56' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'57' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'58' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'62' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'63' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'64' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'65' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'66' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'67' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'68' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'69' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'70' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'71' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'72' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'73' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'74' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Experimental product +'80' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'81' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'82' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'83' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'84' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'85' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'86' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'87' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'88' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'89' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'90' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'91' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'92' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'93' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'94' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'95' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'96' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'97' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'98' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'99' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'100' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'101' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'102' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'103' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'104' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'105' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'106' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'107' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'108' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'109' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'110' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'111' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'112' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'113' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'114' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'115' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'116' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'117' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'118' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'119' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'120' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'123' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'124' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'125' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'126' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'127' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'137' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'139' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'140' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'141' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'142' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'144' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'148' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'149' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'150' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'152' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'153' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'154' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'158' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'159' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'160' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'161' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'162' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'163' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'164' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'170' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'171' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'174' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'182' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'183' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'184' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'185' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'186' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'187' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'188' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'195' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'196' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'197' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'198' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'199' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'200' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'204' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'205' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'206' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'208' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'209' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#TOA incident solar radiation +'212' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'213' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'214' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'215' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'216' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'217' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'218' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'219' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'220' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'221' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'222' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'223' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'224' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'225' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'226' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'227' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'228' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'231' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'232' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'233' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'234' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'236' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'237' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Convective snowfall +'239' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'240' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'241' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'242' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'243' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'244' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'249' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'250' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'251' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'252' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'253' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'254' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'200001' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'200002' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'200003' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'200004' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'200005' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'200011' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'200012' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'200013' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'200014' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'200021' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'200022' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'200023' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'200024' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'200025' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'200026' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'200027' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'200028' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'200029' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'200030' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'200031' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'200032' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'200033' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'200034' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'200035' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'200036' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'200037' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'200038' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'200039' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'200040' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'200041' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'200042' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'200043' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'200044' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'200045' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'200046' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'200047' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'200048' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'200049' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'200050' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'200051' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'200052' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'200053' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'200054' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'200055' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'200056' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'200057' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'200058' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'200059' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'200060' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'200061' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'200062' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'200063' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'200064' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'200065' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'200066' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'200067' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'200068' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'200069' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'200070' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'200071' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'200078' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'200079' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'200080' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'200081' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'200082' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'200083' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'200084' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'200085' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'200086' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'200087' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'200088' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'200089' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'200090' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'200091' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'200092' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'200093' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'200094' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'200095' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'200096' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'200097' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'200098' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'200099' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'200100' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'200101' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'200102' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'200103' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'200104' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'200105' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'200106' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'200107' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'200108' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'200109' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'200110' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'200111' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'200112' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'200113' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'200114' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'200115' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'200116' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'200117' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'200118' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'200119' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'200120' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'200121' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'200122' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'200123' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'200125' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'200126' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'200127' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'200128' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'200129' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'200130' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'200131' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'200132' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'200133' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'200134' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'200135' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'200136' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'200137' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'200138' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'200139' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'200140' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'200141' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'200142' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'200143' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'200144' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'200145' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'200146' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'200147' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'200148' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'200149' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'200150' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'200151' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'200152' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'200153' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'200154' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'200155' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'200156' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'200157' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'200158' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'200159' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'200160' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'200161' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'200162' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'200163' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'200164' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'200165' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'200166' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'200167' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'200169' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'200170' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'200171' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'200172' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'200173' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'200174' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'200175' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'200176' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'200177' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'200178' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'200179' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'200180' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'200181' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'200182' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'200183' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'200184' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'200185' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'200186' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'200187' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'200188' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'200189' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'200190' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'200191' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'200192' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'200193' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'200194' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'200195' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'200196' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'200197' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'200198' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'200199' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'200200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'200201' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'200202' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'200203' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'200204' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'200205' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'200206' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'200207' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'200208' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'200209' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'200210' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'200211' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'200212' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'200214' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'200215' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'200216' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'200217' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'200218' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'200219' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'200220' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'200221' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'200222' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'200223' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'200224' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'200225' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'200226' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'200227' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'200228' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'200229' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'200230' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'200231' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'200232' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'200233' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'200234' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'200235' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'200236' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'200237' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'200238' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'200239' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'200240' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'200241' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'200242' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'200243' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'200244' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'200245' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'200246' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'200247' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'200248' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'200249' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'200250' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'200251' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'200252' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'200253' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'200254' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'200255' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'151193' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'162114' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'162115' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'162116' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'162117' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'162118' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'162119' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'162120' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'162121' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'162122' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'162123' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'162124' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'162125' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'162126' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'162127' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'162128' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'162129' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'162130' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'162131' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'162132' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'162133' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'162134' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'162135' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'162136' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'162137' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'162138' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'162139' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'162140' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'162141' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'171006' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'171007' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'171121' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'171122' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'210013' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'210014' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'210015' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'210028' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'210029' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'210030' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'210043' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'210044' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'210045' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'210055' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'210056' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'210057' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'210058' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'210059' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Injection height (from IS4FIRES) +'210060' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 60 ; + } +#Particulate matter d < 1 um +'210072' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'210073' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'210074' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'210079' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'210118' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 118 ; + } +#Mean altitude of maximum injection +'210119' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'210120' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#Wildfire day-time radiative power +'210167' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 167 ; + } +#Wildfire night-time radiative power +'210169' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 169 ; + } +#Wildfire day-time inverse variance of radiative power +'210177' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 177 ; + } +#Wildfire night-time inverse variance of radiative power +'210179' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 179 ; + } +#UV visible albedo for direct radiation, isotropic component +'210186' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'210187' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'210188' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'210189' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'210190' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'210191' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'210192' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'210193' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'210194' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'210195' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'210196' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'210197' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'210217' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'210218' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'210219' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'210220' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'210221' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'210222' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'210223' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'210224' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'210225' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'210226' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'210227' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'210228' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'210229' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'210230' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'210231' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'210232' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'210233' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'210234' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'210235' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'210236' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'210237' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'210238' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'210239' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'210240' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'210241' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 241 ; + } +#Altitude of plume bottom +'210242' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'210243' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'210244' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'210245' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'210246' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'210247' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'210248' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Aerosol type 13 mass mixing ratio +'211013' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'211014' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'211015' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'211028' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'211029' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'211030' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'211043' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'211044' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'211045' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'211055' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'211056' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'211119' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'211120' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'211247' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'211248' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Experimental product +'212001' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'212002' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'212003' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'212004' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'212005' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'212006' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'212007' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'212008' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'212009' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'212010' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'212011' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'212012' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'212013' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'212014' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'212015' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'212016' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'212017' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'212018' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'212019' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'212020' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'212021' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'212022' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'212023' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'212024' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'212025' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'212026' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'212027' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'212028' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'212029' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'212030' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'212031' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'212032' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'212033' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'212034' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'212035' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'212036' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'212037' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'212038' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'212039' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'212040' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'212041' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'212042' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'212043' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'212044' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'212045' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'212046' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'212047' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'212048' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'212049' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'212050' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'212051' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'212052' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'212053' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'212054' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'212055' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'212056' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'212057' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'212058' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'212059' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'212060' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'212061' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'212062' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'212063' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'212064' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'212065' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'212066' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'212067' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'212068' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'212069' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'212070' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'212071' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'212072' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'212073' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'212074' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'212075' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'212076' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'212077' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'212078' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'212079' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'212080' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'212081' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'212082' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'212083' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'212084' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'212085' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'212086' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'212087' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'212088' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'212089' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'212090' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'212091' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'212092' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'212093' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'212094' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'212095' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'212096' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'212097' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'212098' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'212099' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'212100' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'212101' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'212102' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'212103' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'212104' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'212105' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'212106' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'212107' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'212108' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'212109' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'212110' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'212111' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'212112' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'212113' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'212114' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'212115' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'212116' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'212117' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'212118' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'212119' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'212120' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'212121' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'212122' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'212123' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'212124' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'212125' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'212126' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'212127' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'212128' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'212129' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'212130' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'212131' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'212132' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'212133' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'212134' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'212135' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'212136' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'212137' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'212138' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'212139' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'212140' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'212141' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'212142' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'212143' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'212144' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'212145' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'212146' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'212147' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'212148' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'212149' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'212150' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'212151' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'212152' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'212153' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'212154' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'212155' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'212156' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'212157' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'212158' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'212159' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'212160' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'212161' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'212162' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'212163' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'212164' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'212165' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'212166' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'212167' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'212168' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'212169' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'212170' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'212171' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'212172' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'212173' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'212174' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'212175' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'212176' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'212177' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'212178' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'212179' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'212180' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'212181' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'212182' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'212183' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'212184' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'212185' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'212186' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'212187' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'212188' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'212189' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'212190' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'212191' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'212192' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'212193' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'212194' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'212195' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'212196' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'212197' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'212198' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'212199' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'212200' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'212201' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'212202' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'212203' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'212204' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'212205' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'212206' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'212207' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'212208' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'212209' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'212210' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'212211' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'212212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'212213' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'212214' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'212215' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'212216' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'212217' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'212218' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'212219' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'212220' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'212221' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'212222' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'212223' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'212224' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'212225' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'212226' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'212227' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'212228' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'212229' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'212230' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'212231' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'212232' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'212233' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'212234' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'212235' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'212236' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'212237' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'212238' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'212239' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'212240' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'212241' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'212242' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'212243' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'212244' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'212245' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'212246' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'212247' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'212248' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'212249' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'212250' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'212251' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'212252' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'212253' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'212254' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'212255' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'213001' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'213002' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'213003' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'213004' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'213005' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +#Random pattern 1 for SPP scheme +'213101' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 101 ; + } +#Random pattern 2 for SPP scheme +'213102' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 102 ; + } +#Random pattern 3 for SPP scheme +'213103' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 103 ; + } +#Random pattern 4 for SPP scheme +'213104' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 104 ; + } +#Random pattern 5 for SPP scheme +'213105' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 105 ; + } +#Random pattern 6 for SPP scheme +'213106' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 106 ; + } +#Random pattern 7 for SPP scheme +'213107' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 107 ; + } +#Random pattern 8 for SPP scheme +'213108' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 108 ; + } +#Random pattern 9 for SPP scheme +'213109' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 109 ; + } +#Random pattern 10 for SPP scheme +'213110' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 110 ; + } +#Random pattern 11 for SPP scheme +'213111' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 111 ; + } +#Random pattern 12 for SPP scheme +'213112' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 112 ; + } +#Random pattern 13 for SPP scheme +'213113' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 113 ; + } +#Random pattern 14 for SPP scheme +'213114' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 114 ; + } +#Random pattern 15 for SPP scheme +'213115' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 115 ; + } +#Random pattern 16 for SPP scheme +'213116' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 116 ; + } +#Random pattern 17 for SPP scheme +'213117' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 117 ; + } +#Random pattern 18 for SPP scheme +'213118' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 118 ; + } +#Random pattern 19 for SPP scheme +'213119' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 119 ; + } +#Random pattern 20 for SPP scheme +'213120' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 120 ; + } +#Random pattern 21 for SPP scheme +'213121' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 121 ; + } +#Random pattern 22 for SPP scheme +'213122' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 122 ; + } +#Random pattern 23 for SPP scheme +'213123' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 123 ; + } +#Random pattern 24 for SPP scheme +'213124' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 124 ; + } +#Random pattern 25 for SPP scheme +'213125' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 125 ; + } +#Random pattern 26 for SPP scheme +'213126' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 126 ; + } +#Random pattern 27 for SPP scheme +'213127' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 127 ; + } +#Random pattern 28 for SPP scheme +'213128' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 128 ; + } +#Random pattern 29 for SPP scheme +'213129' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 129 ; + } +#Random pattern 30 for SPP scheme +'213130' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 130 ; + } +#Random pattern 31 for SPP scheme +'213131' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 131 ; + } +#Random pattern 32 for SPP scheme +'213132' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 132 ; + } +#Random pattern 33 for SPP scheme +'213133' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 133 ; + } +#Random pattern 34 for SPP scheme +'213134' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 134 ; + } +#Random pattern 35 for SPP scheme +'213135' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 135 ; + } +#Random pattern 36 for SPP scheme +'213136' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 136 ; + } +#Random pattern 37 for SPP scheme +'213137' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 137 ; + } +#Random pattern 38 for SPP scheme +'213138' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 138 ; + } +#Random pattern 39 for SPP scheme +'213139' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 139 ; + } +#Random pattern 40 for SPP scheme +'213140' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 140 ; + } +#Random pattern 41 for SPP scheme +'213141' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 141 ; + } +#Random pattern 42 for SPP scheme +'213142' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 142 ; + } +#Random pattern 43 for SPP scheme +'213143' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 143 ; + } +#Random pattern 44 for SPP scheme +'213144' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 144 ; + } +#Random pattern 45 for SPP scheme +'213145' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 145 ; + } +#Random pattern 46 for SPP scheme +'213146' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 146 ; + } +#Random pattern 47 for SPP scheme +'213147' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 147 ; + } +#Random pattern 48 for SPP scheme +'213148' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 148 ; + } +#Random pattern 49 for SPP scheme +'213149' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 149 ; + } +#Random pattern 50 for SPP scheme +'213150' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 150 ; + } +#Cosine of solar zenith angle +'214001' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +#UV biologically effective dose +'214002' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +#UV biologically effective dose clear-sky +'214003' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'214004' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'214005' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'214006' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'214007' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'214008' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'214009' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'214010' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'214011' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'214012' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'214013' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'214014' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'214015' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'214016' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'214017' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'214018' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'214019' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'214020' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'214021' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'214022' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'214023' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'214024' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'214025' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'214026' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'214027' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'214028' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'214029' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'214030' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'214031' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'214032' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'214033' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'214034' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'214035' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'214036' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'214037' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'214038' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'214039' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'214040' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'214041' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'214042' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'214043' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'214044' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'214045' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'214046' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'214047' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'214048' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'214049' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'214050' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'214051' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +#Profile of optical thickness at 340 nm +'214052' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'215001' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'215002' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'215003' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'215004' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'215005' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'215006' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'215007' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'215008' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'215009' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'215010' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'215011' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'215012' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'215013' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'215014' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'215015' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'215016' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'215017' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'215018' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'215019' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'215020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'215021' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'215022' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'215023' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'215024' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'215025' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'215026' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'215027' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'215028' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'215029' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'215030' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'215031' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'215032' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'215033' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'215034' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'215035' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'215036' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'215037' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'215038' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'215039' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'215040' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'215041' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'215042' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'215043' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'215044' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'215045' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'215046' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'215047' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'215048' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'215049' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'215050' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'215051' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'215052' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'215053' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'215054' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'215055' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'215056' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'215057' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'215058' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'215059' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'215060' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'215061' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'215062' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'215063' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'215064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'215065' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'215066' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'215067' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'215068' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'215069' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'215070' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'215071' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'215072' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'215073' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'215074' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'215075' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'215076' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'215077' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'215078' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'215079' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'215080' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +#Source/gain of sulphate aerosol +'215081' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +#Dry deposition of sulphate aerosol +'215082' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +#Sedimentation of sulphate aerosol +'215083' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'215084' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'215085' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +#Negative fixer of sulphate aerosol +'215086' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'215087' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +#Sulphate aerosol optical depth +'215088' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'215089' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'215090' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'215091' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'215092' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'215093' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'215094' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'215095' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'215096' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'215097' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'215098' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'215099' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'215100' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'215101' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'215102' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'215103' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'215104' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'215105' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'215106' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'215107' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'215108' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'215109' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'215110' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'215111' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'215112' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'215113' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'215114' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'215115' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'215116' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'215117' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'215118' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'215119' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'215120' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'215121' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'215122' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'215123' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'215124' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'215125' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'215126' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'215127' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'215128' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'215129' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'215130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'215131' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'215132' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'215133' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'215134' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'215135' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'215136' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'215137' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'215138' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'215139' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'215140' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'215141' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'215142' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'215143' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'215144' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'215145' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'215146' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'215147' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'215148' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'215149' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Asymmetry factor at 340 nm +'215150' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Asymmetry factor at 355 nm +'215151' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Asymmetry factor at 380 nm +'215152' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Asymmetry factor at 400 nm +'215153' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Asymmetry factor at 440 nm +'215154' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Asymmetry factor at 469 nm +'215155' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Asymmetry factor at 500 nm +'215156' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Asymmetry factor at 532 nm +'215157' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Asymmetry factor at 550 nm +'215158' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Asymmetry factor at 645 nm +'215159' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Asymmetry factor at 670 nm +'215160' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Asymmetry factor at 800 nm +'215161' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Asymmetry factor at 858 nm +'215162' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Asymmetry factor at 865 nm +'215163' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Asymmetry factor at 1020 nm +'215164' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Asymmetry factor at 1064 nm +'215165' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Asymmetry factor at 1240 nm +'215166' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Asymmetry factor at 1640 nm +'215167' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'215168' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'215169' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'215170' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'215171' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'215172' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'215173' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'215174' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'215175' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'215176' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'215177' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'215178' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Asymmetry factor at 2130 nm +'215179' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'215180' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'215181' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'215182' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'215183' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'215184' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'215185' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'215186' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'215187' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'215188' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'215189' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Source/gain of coarse-mode nitrate aerosol +'215190' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Dry deposition of fine-mode nitrate aerosol +'215191' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'215192' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Sedimentation of fine-mode nitrate aerosol +'215193' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'215194' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'215195' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'215196' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'215197' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'215198' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Negative fixer of fine-mode nitrate aerosol +'215199' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'215200' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'215201' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'215202' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'215203' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfSizeInterval = 255 ; + aerosolType = 65534 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'215204' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 65533 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + } +#Source/gain of ammonium aerosol +'215205' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Negative fixer of ammonium aerosol +'215210' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Experimental product +'216001' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'216002' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'216003' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'216004' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'216005' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'216006' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'216007' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'216008' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'216009' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'216010' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'216011' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'216012' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'216013' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'216014' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'216015' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'216016' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'216017' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'216018' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'216019' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'216020' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'216021' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'216022' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'216023' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'216024' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'216025' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'216026' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'216027' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'216028' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'216029' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'216030' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'216031' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'216032' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'216033' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'216034' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'216035' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'216036' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'216037' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'216038' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'216039' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'216040' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'216041' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'216042' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'216043' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'216044' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'216045' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'216046' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'216047' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'216048' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'216049' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'216050' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'216051' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'216052' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'216053' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'216054' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'216055' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'216056' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'216057' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'216058' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'216059' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'216060' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'216061' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'216062' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'216063' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'216064' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'216065' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'216066' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'216067' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'216068' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'216069' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'216070' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'216071' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'216072' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'216073' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'216074' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'216075' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'216076' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'216077' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'216078' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'216079' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'216080' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'216081' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'216082' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'216083' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'216084' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'216085' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'216086' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'216087' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'216088' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'216089' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'216090' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'216091' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'216092' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'216093' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'216094' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'216095' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'216096' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'216097' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'216098' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'216099' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'216100' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'216101' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'216102' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'216103' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'216104' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'216105' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'216106' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'216107' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'216108' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'216109' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'216110' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'216111' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'216112' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'216113' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'216114' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'216115' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'216116' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'216117' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'216118' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'216119' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'216120' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'216121' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'216122' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'216123' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'216124' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'216125' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'216126' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'216127' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'216128' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'216129' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'216130' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'216131' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'216132' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'216133' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'216134' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'216135' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'216136' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'216137' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'216138' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'216139' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'216140' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'216141' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'216142' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'216143' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'216144' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'216145' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'216146' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'216147' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'216148' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'216149' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'216150' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'216151' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'216152' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'216153' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'216154' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'216155' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'216156' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'216157' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'216158' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'216159' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'216160' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'216161' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'216162' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'216163' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'216164' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'216165' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'216166' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'216167' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'216168' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'216169' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'216170' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'216171' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'216172' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'216173' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'216174' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'216175' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'216176' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'216177' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'216178' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'216179' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'216180' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'216181' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'216182' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'216183' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'216184' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'216185' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'216186' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'216187' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'216188' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'216189' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'216190' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'216191' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'216192' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'216193' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'216194' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'216195' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'216196' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'216197' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'216198' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'216199' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'216200' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'216201' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'216202' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'216203' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'216204' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'216205' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'216206' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'216207' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'216208' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'216209' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'216210' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'216211' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'216212' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'216213' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'216214' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'216215' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'216216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'216217' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'216218' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'216219' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'216220' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'216221' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'216222' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'216223' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'216224' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'216225' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'216226' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'216227' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'216228' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'216229' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'216230' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'216231' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'216232' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'216233' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'216234' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'216235' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'216236' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'216237' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'216238' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'216239' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'216240' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'216241' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'216242' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'216243' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'216244' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'216245' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'216246' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'216247' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'216248' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'216249' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'216250' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'216251' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'216252' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'216253' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'216254' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'216255' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'217003' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'217004' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'217006' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'217007' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'217009' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'217010' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'217011' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'217012' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'217013' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'217014' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'217015' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'217016' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'217018' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'217019' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'217020' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'217021' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'217022' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'217023' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'217024' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'217026' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'217027' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'217028' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'217029' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'217030' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'217032' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'217033' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'217034' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'217035' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'217036' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'217037' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'217038' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'217039' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'217040' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'217041' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'217042' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'217043' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'217044' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'217045' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'217046' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'217047' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'217048' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'217049' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'217050' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'217051' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'217052' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'217053' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'217054' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'217055' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'217056' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Carbon dioxide (chemistry) +'217057' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 57 ; + } +#Nitrous oxide (chemistry) +'217058' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 58 ; + } +#Water vapour (chemistry) +'217059' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 59 ; + } +#Oxygen +'217060' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 60 ; + } +#Singlet oxygen +'217061' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 61 ; + } +#Singlet delta oxygen +'217062' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 62 ; + } +#Chlorine dioxide +'217063' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'217064' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'217065' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Chlorine +'217066' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 66 ; + } +#Nitryl chloride +'217067' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 67 ; + } +#Hydrogen bromide +'217068' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Dichlorine dioxide +'217069' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 69 ; + } +#Hypobromous acid +'217070' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Trichlorofluoromethane +'217071' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 71 ; + } +#Dichlorodifluoromethane +'217072' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 72 ; + } +#Trichlorotrifluoroethane +'217073' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 73 ; + } +#Dichlorotetrafluoroethane +'217074' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 74 ; + } +#Chloropentafluoroethane +'217075' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 75 ; + } +#Tetrachloromethane +'217076' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 76 ; + } +#Methyl chloroform +'217077' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 77 ; + } +#Methyl chloride +'217078' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Chlorodifluoromethane +'217079' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 79 ; + } +#Methyl bromide +'217080' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Dibromodifluoromethane +'217081' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 81 ; + } +#Bromochlorodifluoromethane +'217082' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 82 ; + } +#Trifluorobromomethane +'217083' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 83 ; + } +#Cbrf2cbrf2 +'217084' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 84 ; + } +#Sulfuric acid +'217085' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'217086' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Alkanes low oh rate +'217087' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 87 ; + } +#Alkanes med oh rate +'217088' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 88 ; + } +#Alkanes high oh rate +'217089' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 89 ; + } +#Terminal alkenes +'217090' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 90 ; + } +#Internal alkenes +'217091' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 91 ; + } +#Ethylperoxy radical +'217092' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 92 ; + } +#Butadiene +'217093' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 93 ; + } +#Ethyl hydroperoxide +'217094' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 94 ; + } +#A-pinene cyclic terpenes +'217095' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 95 ; + } +#Acetic acid +'217096' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#D-limonene cyclic diene +'217097' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 97 ; + } +#Acetaldehyde +'217098' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 98 ; + } +#Toluene and less reactive aromatics +'217099' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 99 ; + } +#Xylene and more reactive aromatics +'217100' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 100 ; + } +#Glycolaldehyde +'217101' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 101 ; + } +#Cresol +'217102' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 102 ; + } +#Acetaldehyde and higher +'217103' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 103 ; + } +#Peracetic acid +'217104' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 104 ; + } +#Ketones +'217105' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 105 ; + } +#Hoch2ch2o2 +'217106' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 106 ; + } +#Glyoxal +'217107' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 107 ; + } +#Hoch2ch2o +'217108' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 108 ; + } +#Unsaturated dicarbonyls +'217109' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 109 ; + } +#Methacrolein +'217110' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 110 ; + } +#Unsaturated hydroxy dicarbonyl +'217111' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 111 ; + } +#Isopropyldioxidanyl +'217112' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 112 ; + } +#Hydroxy ketone +'217113' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 113 ; + } +#Isopropyl hydroperoxide +'217114' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 114 ; + } +#C3h6oho2 +'217115' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 115 ; + } +#C3h6ohooh +'217116' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 116 ; + } +#Higher organic peroxides +'217117' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 117 ; + } +#Hydroxyacetone +'217118' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 118 ; + } +#Peroxyacetic acid +'217119' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 119 ; + } +#Ch3coch2o2 +'217120' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 120 ; + } +#Peroxy radical from c2h6 +'217121' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 121 ; + } +#Peroxy radical from hc3 +'217122' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 122 ; + } +#Peroxy radical from hc5 +'217123' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 123 ; + } +#Lumped alkenes +'217124' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 124 ; + } +#Peroxy radical from hc8 +'217125' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 125 ; + } +#Lumped alkanes +'217126' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 126 ; + } +#Peroxy radical from c2h4 +'217127' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 127 ; + } +#C4h8o +'217128' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 128 ; + } +#Peroxy radical from terminal alkenes +'217129' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 129 ; + } +#C4h9o3 +'217130' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 130 ; + } +#Peroxy radical from internal alkenes +'217131' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 131 ; + } +#Ch3coch(oo)ch3 +'217132' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 132 ; + } +#Peroxy radical from c5h8 +'217133' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 133 ; + } +#Ch3coch(ooh)ch3 +'217134' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 134 ; + } +#Peroxy radical from a-pinene cyclic terpenes +'217135' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 135 ; + } +#Ch2=c(ch3)co3 +'217136' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 136 ; + } +#Peroxy radical from d-limonene cyclic diene +'217137' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 137 ; + } +#Methylvinylketone +'217138' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 138 ; + } +#Phenoxy radical +'217139' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 139 ; + } +#Peroxy radical from toluene and less reactive aromatics +'217140' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 140 ; + } +#Ch3c(o)ch(oo)ch2oh +'217141' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 141 ; + } +#Peroxy radical from xylene and more reactive aromatics +'217142' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 142 ; + } +#H3c(o)ch(ooh)ch2oh +'217143' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 143 ; + } +#Peroxy radical from cresol +'217144' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 144 ; + } +#Unsaturated pans +'217145' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 145 ; + } +#Unsaturated acyl peroxy radical +'217146' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 146 ; + } +#Peroxy radical from ketones +'217147' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 147 ; + } +#C5h11o2 +'217148' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 148 ; + } +#No3-alkenes adduct reacting to form carbonitrates +'217149' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 149 ; + } +#C5h11ooh +'217150' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 150 ; + } +#No3-alkenes adduct reacting via decomposition +'217151' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 151 ; + } +#Hoch2c(ch3)=chcho +'217152' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 152 ; + } +#C5h6o2 +'217153' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 153 ; + } +#Trop sulfuric acid +'217154' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 154 ; + } +#Oxides +'217155' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 155 ; + } +#Ch2chc(ch3)(oo)ch2ono2 +'217156' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 156 ; + } +#C3 organic nitrate +'217157' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 157 ; + } +#Chlorine oxides +'217158' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 158 ; + } +#Bromine oxides +'217159' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 159 ; + } +#Hoch2c(ooh)(ch3)chchoh +'217160' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 160 ; + } +#Hoch2c(ooh)(ch3)ch=ch2 +'217161' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 161 ; + } +#Lumped aromatics +'217162' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 162 ; + } +#Dimethyl sulfoxyde +'217163' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 163 ; + } +#C7h9o5 +'217164' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 164 ; + } +#C7h10o5 +'217165' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 165 ; + } +#Hydrogensulfide +'217166' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 166 ; + } +#C7h10o6 +'217167' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 167 ; + } +#All nitrogen oxides +'217168' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 168 ; + } +#Chlorine family +'217169' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 169 ; + } +#C10h16(oh)(oo) +'217170' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 170 ; + } +#Bromine family +'217171' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 171 ; + } +#C10h18o3 +'217172' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 172 ; + } +#Nitrogen atom +'217173' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 173 ; + } +#Chlorine monoxide +'217174' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Chlorine atom +'217175' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 175 ; + } +#Bromine monoxide +'217176' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Hydrogen atom +'217177' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 177 ; + } +#Methyl group +'217178' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 178 ; + } +#Aromatic-ho from toluene and less reactive aromatics +'217179' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 179 ; + } +#Aromatic-ho from xylene and more reactive aromatics +'217180' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 180 ; + } +#Ammonium nitrate +'217181' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 181 ; + } +#Aromatic-ho from csl +'217182' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 182 ; + } +#Secondary organic aerosol type 1 +'217183' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 183 ; + } +#Secondary organic aerosol type 2a +'217184' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 184 ; + } +#Secondary organic aerosol type 2b +'217185' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 185 ; + } +#Condensable gas type 1 +'217186' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 186 ; + } +#Condensable gas type 2a +'217187' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 187 ; + } +#Condensable gas type 2b +'217188' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 188 ; + } +#Sulfur trioxide +'217189' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 189 ; + } +#Carbonyl sulfide +'217190' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 190 ; + } +#Bromine atom +'217191' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 191 ; + } +#Bromine +'217192' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 192 ; + } +#Bromine monochloride +'217193' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 193 ; + } +#Bromine nitrate +'217194' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Dibromomethane +'217195' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 195 ; + } +#Methoxy radical +'217196' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 196 ; + } +#Tribromomethane +'217197' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 197 ; + } +#Asymmetric chlorine dioxide radical +'217198' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 198 ; + } +#Hydrogen +'217199' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 199 ; + } +#Hydrogen chloride +'217200' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Formyl radical +'217201' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 201 ; + } +#Hydrogen fluoride +'217202' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 202 ; + } +#Oxygen atom +'217203' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 203 ; + } +#Excited oxygen atom +'217204' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 204 ; + } +#Ground state oxygen atom +'217205' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 205 ; + } +#Stratospheric aerosol +'217206' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 206 ; + } +#Total column hydrogen peroxide +'218003' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'218004' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'218006' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'218007' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'218009' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'218010' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'218011' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'218012' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'218013' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'218014' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'218015' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'218016' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'218018' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'218019' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'218020' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'218021' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'218022' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'218023' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'218024' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'218026' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'218027' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'218028' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'218029' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'218030' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'218032' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'218033' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'218034' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'218035' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'218036' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'218037' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'218038' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'218039' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'218040' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'218041' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'218042' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'218043' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'218044' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'218045' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'218046' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'218047' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'218048' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'218049' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'218050' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'218051' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'218052' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'218053' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'218054' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'218055' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'218056' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Total column of carbon dioxide (chemistry) +'218057' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 57 ; + } +#Total column of nitrous oxide (chemistry) +'218058' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 58 ; + } +#Total column of water vapour (chemistry) +'218059' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 59 ; + } +#Total column of oxygen +'218060' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 60 ; + } +#Total column of singlet oxygen +'218061' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 61 ; + } +#Total column of singlet delta oxygen +'218062' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 62 ; + } +#Total column of chlorine dioxide +'218063' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'218064' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'218065' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of chlorine +'218066' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 66 ; + } +#Total column of nitryl chloride +'218067' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 67 ; + } +#Total column of hydrogen bromide +'218068' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of dichlorine dioxide +'218069' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 69 ; + } +#Total column of hypobromous acid +'218070' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of trichlorofluoromethane +'218071' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 71 ; + } +#Total column of dichlorodifluoromethane +'218072' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 72 ; + } +#Total column of trichlorotrifluoroethane +'218073' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 73 ; + } +#Total column of dichlorotetrafluoroethane +'218074' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 74 ; + } +#Total column of chloropentafluoroethane +'218075' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 75 ; + } +#Total column of tetrachloromethane +'218076' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 76 ; + } +#Total column of methyl chloroform +'218077' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 77 ; + } +#Total column of methyl chloride +'218078' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of chlorodifluoromethane +'218079' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 79 ; + } +#Total column of methyl bromide +'218080' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of dibromodifluoromethane +'218081' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 81 ; + } +#Total column of bromochlorodifluoromethane +'218082' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 82 ; + } +#Total column of trifluorobromomethane +'218083' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 83 ; + } +#Total column of cbrf2cbrf2 +'218084' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 84 ; + } +#Total column of sulfuric acid +'218085' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 85 ; + } +#Total column of nitrous acid +'218086' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of alkanes low oh rate +'218087' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 87 ; + } +#Total column of alkanes med oh rate +'218088' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 88 ; + } +#Total column of alkanes high oh rate +'218089' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 89 ; + } +#Total column of terminal alkenes +'218090' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 90 ; + } +#Total column of internal alkenes +'218091' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 91 ; + } +#Total column of ethylperoxy radical +'218092' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 92 ; + } +#Total column of butadiene +'218093' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 93 ; + } +#Total column of ethyl hydroperoxide +'218094' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 94 ; + } +#Total column of a-pinene cyclic terpenes +'218095' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 95 ; + } +#Total column of acetic acid +'218096' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of d-limonene cyclic diene +'218097' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 97 ; + } +#Total column of acetaldehyde +'218098' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 98 ; + } +#Total column of toluene and less reactive aromatics +'218099' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 99 ; + } +#Total column of xylene and more reactive aromatics +'218100' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 100 ; + } +#Total column of glycolaldehyde +'218101' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 101 ; + } +#Total column of cresol +'218102' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 102 ; + } +#Total column of acetaldehyde and higher +'218103' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 103 ; + } +#Total column of peracetic acid +'218104' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 104 ; + } +#Total column of ketones +'218105' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 105 ; + } +#Total column of hoch2ch2o2 +'218106' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 106 ; + } +#Total column of glyoxal +'218107' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 107 ; + } +#Total column of hoch2ch2o +'218108' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 108 ; + } +#Total column of unsaturated dicarbonyls +'218109' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 109 ; + } +#Total column of methacrolein +'218110' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 110 ; + } +#Total column of unsaturated hydroxy dicarbonyl +'218111' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 111 ; + } +#Total column of isopropyldioxidanyl +'218112' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 112 ; + } +#Total column of hydroxy ketone +'218113' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 113 ; + } +#Total column of isopropyl hydroperoxide +'218114' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 114 ; + } +#Total column of c3h6oho2 +'218115' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 115 ; + } +#Total column of c3h6ohooh +'218116' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 116 ; + } +#Total column of higher organic peroxides +'218117' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 117 ; + } +#Total column of hydroxyacetone +'218118' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 118 ; + } +#Total column of peroxyacetic acid +'218119' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 119 ; + } +#Total column of ch3coch2o2 +'218120' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 120 ; + } +#Total column of peroxy radical from c2h6 +'218121' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 121 ; + } +#Total column of peroxy radical from hc3 +'218122' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 122 ; + } +#Total column of peroxy radical from hc5 +'218123' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 123 ; + } +#Total column of lumped alkenes +'218124' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 124 ; + } +#Total column of peroxy radical from hc8 +'218125' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 125 ; + } +#Total column of lumped alkanes +'218126' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 126 ; + } +#Total column of peroxy radical from c2h4 +'218127' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 127 ; + } +#Total column of c4h8o +'218128' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 128 ; + } +#Total column of peroxy radical from terminal alkenes +'218129' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 129 ; + } +#Total column of c4h9o3 +'218130' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 130 ; + } +#Total column of peroxy radical from internal alkenes +'218131' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 131 ; + } +#Total column of ch3coch(oo)ch3 +'218132' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 132 ; + } +#Total column of peroxy radical from c5h8 +'218133' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 133 ; + } +#Total column of ch3coch(ooh)ch3 +'218134' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 134 ; + } +#Total column of peroxy radical from a-pinene cyclic terpenes +'218135' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 135 ; + } +#Total column of ch2=c(ch3)co3 +'218136' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 136 ; + } +#Total column of peroxy radical from d-limonene cyclic diene +'218137' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 137 ; + } +#Total column of methylvinylketone +'218138' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 138 ; + } +#Total column of phenoxy radical +'218139' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 139 ; + } +#Total column of peroxy radical from toluene and less reactive aromatics +'218140' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 140 ; + } +#Total column of ch3c(o)ch(oo)ch2oh +'218141' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 141 ; + } +#Total column of peroxy radical from xylene and more reactive aromatics +'218142' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 142 ; + } +#Total column of h3c(o)ch(ooh)ch2oh +'218143' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 143 ; + } +#Total column of peroxy radical from cresol +'218144' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 144 ; + } +#Total column of unsaturated pans +'218145' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 145 ; + } +#Total column of unsaturated acyl peroxy radical +'218146' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 146 ; + } +#Total column of peroxy radical from ketones +'218147' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 147 ; + } +#Total column of c5h11o2 +'218148' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 148 ; + } +#Total column of no3-alkenes adduct reacting to form carbonitrates +'218149' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 149 ; + } +#Total column of c5h11ooh +'218150' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 150 ; + } +#Total column of no3-alkenes adduct reacting via decomposition +'218151' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 151 ; + } +#Total column of hoch2c(ch3)=chcho +'218152' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 152 ; + } +#Total column of c5h6o2 +'218153' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 153 ; + } +#Total column of trop sulfuric acid +'218154' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 154 ; + } +#Total column of oxides +'218155' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 155 ; + } +#Total column of ch2chc(ch3)(oo)ch2ono2 +'218156' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 156 ; + } +#Total column of c3 organic nitrate +'218157' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 157 ; + } +#Total column of chlorine oxides +'218158' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 158 ; + } +#Total column of bromine oxides +'218159' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 159 ; + } +#Total column of hoch2c(ooh)(ch3)chchoh +'218160' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 160 ; + } +#Total column of hoch2c(ooh)(ch3)ch=ch2 +'218161' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 161 ; + } +#Total column of lumped aromatics +'218162' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 162 ; + } +#Total column of dimethyl sulfoxyde +'218163' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 163 ; + } +#Total column of c7h9o5 +'218164' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 164 ; + } +#Total column of c7h10o5 +'218165' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 165 ; + } +#Total column of hydrogensulfide +'218166' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 166 ; + } +#Total column of c7h10o6 +'218167' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 167 ; + } +#Total column of all nitrogen oxides +'218168' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 168 ; + } +#Total column of chlorine family +'218169' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 169 ; + } +#Total column of c10h16(oh)(oo) +'218170' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 170 ; + } +#Total column of bromine family +'218171' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 171 ; + } +#Total column of c10h18o3 +'218172' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 172 ; + } +#Total column of nitrogen atom +'218173' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 173 ; + } +#Total column of chlorine monoxide +'218174' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of chlorine atom +'218175' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 175 ; + } +#Total column of bromine monoxide +'218176' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of hydrogen atom +'218177' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 177 ; + } +#Total column of methyl group +'218178' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 178 ; + } +#Total column of aromatic-ho from toluene and less reactive aromatics +'218179' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 179 ; + } +#Total column of aromatic-ho from xylene and more reactive aromatics +'218180' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 180 ; + } +#Total column of ammonium nitrate +'218181' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 181 ; + } +#Total column of aromatic-ho from csl +'218182' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 182 ; + } +#Total column of secondary organic aerosol type 1 +'218183' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 183 ; + } +#Total column of secondary organic aerosol type 2a +'218184' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 184 ; + } +#Total column of secondary organic aerosol type 2b +'218185' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 185 ; + } +#Total column of condensable gas type 1 +'218186' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 186 ; + } +#Total column of condensable gas type 2a +'218187' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 187 ; + } +#Total column of condensable gas type 2b +'218188' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 188 ; + } +#Total column of sulfur trioxide +'218189' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 189 ; + } +#Total column of carbonyl sulfide +'218190' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 190 ; + } +#Total column of bromine atom +'218191' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 191 ; + } +#Total column of bromine +'218192' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 192 ; + } +#Total column of bromine monochloride +'218193' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 193 ; + } +#Total column of bromine nitrate +'218194' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of dibromomethane +'218195' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 195 ; + } +#Total column of methoxy radical +'218196' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 196 ; + } +#Total column of tribromomethane +'218197' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 197 ; + } +#Total column of asymmetric chlorine dioxide radical +'218198' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 198 ; + } +#Total column of hydrogen +'218199' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 199 ; + } +#Total column of hydrogen chloride +'218200' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Total column of formyl radical +'218201' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 201 ; + } +#Total column of hydrogen fluoride +'218202' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 202 ; + } +#Total column of oxygen atom +'218203' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 203 ; + } +#Total column of excited oxygen atom +'218204' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 204 ; + } +#Total column of ground state oxygen atom +'218205' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 205 ; + } +#Total column of stratospheric aerosol +'218206' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 206 ; + } +#Ozone emissions +'219001' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'219002' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'219003' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'219004' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'219005' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'219006' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'219007' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'219008' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'219009' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'219010' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'219011' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'219012' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'219013' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'219014' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'219015' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'219016' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'219017' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'219018' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'219019' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'219020' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'219021' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'219022' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'219023' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'219024' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'219025' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'219026' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'219027' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'219028' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'219029' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'219030' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'219031' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'219032' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'219033' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'219034' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'219035' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'219036' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'219037' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'219038' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'219039' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'219040' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'219041' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'219042' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'219043' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'219044' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'219045' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'219046' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'219047' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'219048' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'219049' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'219050' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'219051' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'219052' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'219053' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'219054' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'219055' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'219056' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Emissions of carbon dioxide (chemistry) +'219057' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 57 ; + } +#Emissions of nitrous oxide (chemistry) +'219058' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 58 ; + } +#Emissions of water vapour (chemistry) +'219059' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 59 ; + } +#Emissions of oxygen +'219060' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 60 ; + } +#Emissions of singlet oxygen +'219061' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 61 ; + } +#Emissions of singlet delta oxygen +'219062' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 62 ; + } +#Emissions of chlorine dioxide +'219063' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 63 ; + } +#Emissions of chlorine nitrate +'219064' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 64 ; + } +#Emissions of hypochlorous acid +'219065' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 65 ; + } +#Emissions of chlorine +'219066' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 66 ; + } +#Emissions of nitryl chloride +'219067' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 67 ; + } +#Emissions of hydrogen bromide +'219068' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 68 ; + } +#Emissions of dichlorine dioxide +'219069' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 69 ; + } +#Emissions of hypobromous acid +'219070' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 70 ; + } +#Emissions of trichlorofluoromethane +'219071' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 71 ; + } +#Emissions of dichlorodifluoromethane +'219072' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 72 ; + } +#Emissions of trichlorotrifluoroethane +'219073' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 73 ; + } +#Emissions of dichlorotetrafluoroethane +'219074' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 74 ; + } +#Emissions of chloropentafluoroethane +'219075' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 75 ; + } +#Emissions of tetrachloromethane +'219076' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 76 ; + } +#Emissions of methyl chloroform +'219077' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 77 ; + } +#Emissions of methyl chloride +'219078' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 78 ; + } +#Emissions of chlorodifluoromethane +'219079' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 79 ; + } +#Emissions of methyl bromide +'219080' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 80 ; + } +#Emissions of dibromodifluoromethane +'219081' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 81 ; + } +#Emissions of bromochlorodifluoromethane +'219082' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 82 ; + } +#Emissions of trifluorobromomethane +'219083' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 83 ; + } +#Emissions of cbrf2cbrf2 +'219084' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 84 ; + } +#Emissions of sulfuric acid +'219085' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 85 ; + } +#Emissions of nitrous acid +'219086' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 86 ; + } +#Emissions of alkanes low oh rate +'219087' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 87 ; + } +#Emissions of alkanes med oh rate +'219088' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 88 ; + } +#Emissions of alkanes high oh rate +'219089' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 89 ; + } +#Emissions of terminal alkenes +'219090' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 90 ; + } +#Emissions of internal alkenes +'219091' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 91 ; + } +#Emissions of ethylperoxy radical +'219092' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 92 ; + } +#Emissions of butadiene +'219093' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 93 ; + } +#Emissions of ethyl hydroperoxide +'219094' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 94 ; + } +#Emissions of a-pinene cyclic terpenes +'219095' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 95 ; + } +#Emissions of acetic acid +'219096' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 96 ; + } +#Emissions of d-limonene cyclic diene +'219097' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 97 ; + } +#Emissions of acetaldehyde +'219098' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 98 ; + } +#Emissions of toluene and less reactive aromatics +'219099' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 99 ; + } +#Emissions of xylene and more reactive aromatics +'219100' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 100 ; + } +#Emissions of glycolaldehyde +'219101' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 101 ; + } +#Emissions of cresol +'219102' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 102 ; + } +#Emissions of acetaldehyde and higher +'219103' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 103 ; + } +#Emissions of peracetic acid +'219104' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 104 ; + } +#Emissions of ketones +'219105' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 105 ; + } +#Emissions of hoch2ch2o2 +'219106' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 106 ; + } +#Emissions of glyoxal +'219107' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 107 ; + } +#Emissions of hoch2ch2o +'219108' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 108 ; + } +#Emissions of unsaturated dicarbonyls +'219109' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 109 ; + } +#Emissions of methacrolein +'219110' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 110 ; + } +#Emissions of unsaturated hydroxy dicarbonyl +'219111' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 111 ; + } +#Emissions of isopropyldioxidanyl +'219112' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 112 ; + } +#Emissions of hydroxy ketone +'219113' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 113 ; + } +#Emissions of isopropyl hydroperoxide +'219114' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 114 ; + } +#Emissions of c3h6oho2 +'219115' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 115 ; + } +#Emissions of c3h6ohooh +'219116' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 116 ; + } +#Emissions of higher organic peroxides +'219117' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 117 ; + } +#Emissions of hydroxyacetone +'219118' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 118 ; + } +#Emissions of peroxyacetic acid +'219119' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 119 ; + } +#Emissions of ch3coch2o2 +'219120' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 120 ; + } +#Emissions of peroxy radical from c2h6 +'219121' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 121 ; + } +#Emissions of peroxy radical from hc3 +'219122' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 122 ; + } +#Emissions of peroxy radical from hc5 +'219123' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 123 ; + } +#Emissions of lumped alkenes +'219124' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 124 ; + } +#Emissions of peroxy radical from hc8 +'219125' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 125 ; + } +#Emissions of lumped alkanes +'219126' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 126 ; + } +#Emissions of peroxy radical from c2h4 +'219127' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 127 ; + } +#Emissions of c4h8o +'219128' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 128 ; + } +#Emissions of peroxy radical from terminal alkenes +'219129' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 129 ; + } +#Emissions of c4h9o3 +'219130' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 130 ; + } +#Emissions of peroxy radical from internal alkenes +'219131' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 131 ; + } +#Emissions of ch3coch(oo)ch3 +'219132' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 132 ; + } +#Emissions of peroxy radical from c5h8 +'219133' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 133 ; + } +#Emissions of ch3coch(ooh)ch3 +'219134' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 134 ; + } +#Emissions of peroxy radical from a-pinene cyclic terpenes +'219135' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 135 ; + } +#Emissions of ch2=c(ch3)co3 +'219136' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 136 ; + } +#Emissions of peroxy radical from d-limonene cyclic diene +'219137' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 137 ; + } +#Emissions of methylvinylketone +'219138' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 138 ; + } +#Emissions of phenoxy radical +'219139' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 139 ; + } +#Emissions of peroxy radical from toluene and less reactive aromatics +'219140' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 140 ; + } +#Emissions of ch3c(o)ch(oo)ch2oh +'219141' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 141 ; + } +#Emissions of peroxy radical from xylene and more reactive aromatics +'219142' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 142 ; + } +#Emissions of h3c(o)ch(ooh)ch2oh +'219143' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 143 ; + } +#Emissions of peroxy radical from cresol +'219144' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 144 ; + } +#Emissions of unsaturated pans +'219145' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 145 ; + } +#Emissions of unsaturated acyl peroxy radical +'219146' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 146 ; + } +#Emissions of peroxy radical from ketones +'219147' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 147 ; + } +#Emissions of c5h11o2 +'219148' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 148 ; + } +#Emissions of no3-alkenes adduct reacting to form carbonitrates +'219149' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 149 ; + } +#Emissions of c5h11ooh +'219150' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 150 ; + } +#Emissions of no3-alkenes adduct reacting via decomposition +'219151' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 151 ; + } +#Emissions of hoch2c(ch3)=chcho +'219152' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 152 ; + } +#Emissions of c5h6o2 +'219153' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 153 ; + } +#Emissions of trop sulfuric acid +'219154' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 154 ; + } +#Emissions of oxides +'219155' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 155 ; + } +#Emissions of ch2chc(ch3)(oo)ch2ono2 +'219156' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 156 ; + } +#Emissions of c3 organic nitrate +'219157' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 157 ; + } +#Emissions of chlorine oxides +'219158' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 158 ; + } +#Emissions of bromine oxides +'219159' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 159 ; + } +#Emissions of hoch2c(ooh)(ch3)chchoh +'219160' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 160 ; + } +#Emissions of hoch2c(ooh)(ch3)ch=ch2 +'219161' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 161 ; + } +#Emissions of lumped aromatics +'219162' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 162 ; + } +#Emissions of dimethyl sulfoxyde +'219163' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 163 ; + } +#Emissions of c7h9o5 +'219164' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 164 ; + } +#Emissions of c7h10o5 +'219165' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 165 ; + } +#Emissions of hydrogensulfide +'219166' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 166 ; + } +#Emissions of c7h10o6 +'219167' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 167 ; + } +#Emissions of all nitrogen oxides +'219168' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 168 ; + } +#Emissions of chlorine family +'219169' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 169 ; + } +#Emissions of c10h16(oh)(oo) +'219170' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 170 ; + } +#Emissions of bromine family +'219171' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 171 ; + } +#Emissions of c10h18o3 +'219172' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 172 ; + } +#Emissions of nitrogen atom +'219173' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 173 ; + } +#Emissions of chlorine monoxide +'219174' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 174 ; + } +#Emissions of chlorine atom +'219175' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 175 ; + } +#Emissions of bromine monoxide +'219176' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 176 ; + } +#Emissions of hydrogen atom +'219177' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 177 ; + } +#Emissions of methyl group +'219178' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 178 ; + } +#Emissions of aromatic-ho from toluene and less reactive aromatics +'219179' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 179 ; + } +#Emissions of aromatic-ho from xylene and more reactive aromatics +'219180' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 180 ; + } +#Emissions of ammonium nitrate +'219181' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 181 ; + } +#Emissions of aromatic-ho from csl +'219182' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 182 ; + } +#Emissions of secondary organic aerosol type 1 +'219183' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 183 ; + } +#Emissions of secondary organic aerosol type 2a +'219184' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 184 ; + } +#Emissions of secondary organic aerosol type 2b +'219185' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 185 ; + } +#Emissions of condensable gas type 1 +'219186' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 186 ; + } +#Emissions of condensable gas type 2a +'219187' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 187 ; + } +#Emissions of condensable gas type 2b +'219188' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 188 ; + } +#Emissions of sulfur trioxide +'219189' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 189 ; + } +#Emissions of carbonyl sulfide +'219190' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 190 ; + } +#Emissions of bromine atom +'219191' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 191 ; + } +#Emissions of bromine +'219192' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 192 ; + } +#Emissions of bromine monochloride +'219193' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 193 ; + } +#Emissions of bromine nitrate +'219194' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 194 ; + } +#Emissions of dibromomethane +'219195' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 195 ; + } +#Emissions of methoxy radical +'219196' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 196 ; + } +#Emissions of tribromomethane +'219197' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 197 ; + } +#Emissions of asymmetric chlorine dioxide radical +'219198' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 198 ; + } +#Emissions of hydrogen +'219199' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 199 ; + } +#Emissions of hydrogen chloride +'219200' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 200 ; + } +#Emissions of formyl radical +'219201' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 201 ; + } +#Emissions of hydrogen fluoride +'219202' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 202 ; + } +#Emissions of oxygen atom +'219203' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 203 ; + } +#Emissions of excited oxygen atom +'219204' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 204 ; + } +#Emissions of ground state oxygen atom +'219205' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 205 ; + } +#Emissions of stratospheric aerosol +'219206' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 206 ; + } +#Wildfire flux of paraffins +'219207' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 207 ; + } +#Wildfire flux of olefines +'219208' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 208 ; + } +#Wildfire flux of aldehydes +'219209' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 209 ; + } +#Wildfire flux of ketones +'219210' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 210 ; + } +#Wildfire flux of f a-pinene cyclic terpenes +'219211' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 211 ; + } +#Wildfire flux of toluene less reactive aromatics +'219212' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 212 ; + } +#Wildfire flux of xylene more reactive aromatics +'219213' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 213 ; + } +#Wildfire flux of d-limonene cyclic diene +'219214' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 214 ; + } +#Wildfire flux of terminal alkenes +'219215' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 215 ; + } +#Wildfire flux of alkanes low oh rate +'219216' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 216 ; + } +#Wildfire flux of alkanes med oh rate +'219217' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 217 ; + } +#Wildfire flux of alkanes high oh rate +'219218' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 218 ; + } +#Wildfire flux of hydrogen cyanide +'219219' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 219 ; + } +#Wildfire flux of acetonitrile +'219220' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 220 ; + } +#Ozone deposition velocity +'221001' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'221002' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'221003' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'221004' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'221005' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'221006' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'221007' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'221008' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'221009' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'221010' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'221011' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'221012' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'221013' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'221014' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'221015' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'221016' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'221017' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'221018' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'221019' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'221020' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'221021' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'221022' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'221023' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'221024' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'221025' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'221026' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'221027' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'221028' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'221029' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'221030' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'221031' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'221032' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'221033' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'221034' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'221035' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'221036' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'221037' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'221038' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'221039' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'221040' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'221041' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'221042' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'221043' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'221044' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'221045' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'221046' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'221047' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'221048' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'221049' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'221050' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'221051' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'221052' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'221053' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'221054' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'221055' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'221056' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Dry deposition velocity of carbon dioxide (chemistry) +'221057' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 57 ; + } +#Dry deposition velocity of nitrous oxide (chemistry) +'221058' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 58 ; + } +#Dry deposition velocity of water vapour (chemistry) +'221059' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 59 ; + } +#Dry deposition velocity of oxygen +'221060' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 60 ; + } +#Dry deposition velocity of singlet oxygen +'221061' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 61 ; + } +#Dry deposition velocity of singlet delta oxygen +'221062' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 62 ; + } +#Dry deposition velocity of chlorine dioxide +'221063' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 63 ; + } +#Dry deposition velocity of chlorine nitrate +'221064' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 64 ; + } +#Dry deposition velocity of hypochlorous acid +'221065' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 65 ; + } +#Dry deposition velocity of chlorine +'221066' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 66 ; + } +#Dry deposition velocity of nitryl chloride +'221067' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 67 ; + } +#Dry deposition velocity of hydrogen bromide +'221068' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 68 ; + } +#Dry deposition velocity of dichlorine dioxide +'221069' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 69 ; + } +#Dry deposition velocity of hypobromous acid +'221070' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 70 ; + } +#Dry deposition velocity of trichlorofluoromethane +'221071' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 71 ; + } +#Dry deposition velocity of dichlorodifluoromethane +'221072' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 72 ; + } +#Dry deposition velocity of trichlorotrifluoroethane +'221073' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 73 ; + } +#Dry deposition velocity of dichlorotetrafluoroethane +'221074' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 74 ; + } +#Dry deposition velocity of chloropentafluoroethane +'221075' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 75 ; + } +#Dry deposition velocity of tetrachloromethane +'221076' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 76 ; + } +#Dry deposition velocity of methyl chloroform +'221077' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 77 ; + } +#Dry deposition velocity of methyl chloride +'221078' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 78 ; + } +#Dry deposition velocity of chlorodifluoromethane +'221079' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 79 ; + } +#Dry deposition velocity of methyl bromide +'221080' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 80 ; + } +#Dry deposition velocity of dibromodifluoromethane +'221081' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 81 ; + } +#Dry deposition velocity of bromochlorodifluoromethane +'221082' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 82 ; + } +#Dry deposition velocity of trifluorobromomethane +'221083' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 83 ; + } +#Dry deposition velocity of cbrf2cbrf2 +'221084' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 84 ; + } +#Dry deposition velocity of sulfuric acid +'221085' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 85 ; + } +#Dry deposition velocity of nitrous acid +'221086' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 86 ; + } +#Dry deposition velocity of alkanes low oh rate +'221087' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 87 ; + } +#Dry deposition velocity of alkanes med oh rate +'221088' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 88 ; + } +#Dry deposition velocity of alkanes high oh rate +'221089' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 89 ; + } +#Dry deposition velocity of terminal alkenes +'221090' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 90 ; + } +#Dry deposition velocity of internal alkenes +'221091' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 91 ; + } +#Dry deposition velocity of ethylperoxy radical +'221092' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 92 ; + } +#Dry deposition velocity of butadiene +'221093' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 93 ; + } +#Dry deposition velocity of ethyl hydroperoxide +'221094' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 94 ; + } +#Dry deposition velocity of a-pinene cyclic terpenes +'221095' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 95 ; + } +#Dry deposition velocity of acetic acid +'221096' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 96 ; + } +#Dry deposition velocity of d-limonene cyclic diene +'221097' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 97 ; + } +#Dry deposition velocity of acetaldehyde +'221098' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 98 ; + } +#Dry deposition velocity of toluene and less reactive aromatics +'221099' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 99 ; + } +#Dry deposition velocity of xylene and more reactive aromatics +'221100' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 100 ; + } +#Dry deposition velocity of glycolaldehyde +'221101' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 101 ; + } +#Dry deposition velocity of cresol +'221102' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 102 ; + } +#Dry deposition velocity of acetaldehyde and higher +'221103' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 103 ; + } +#Dry deposition velocity of peracetic acid +'221104' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 104 ; + } +#Dry deposition velocity of ketones +'221105' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 105 ; + } +#Dry deposition velocity of hoch2ch2o2 +'221106' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 106 ; + } +#Dry deposition velocity of glyoxal +'221107' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 107 ; + } +#Dry deposition velocity of hoch2ch2o +'221108' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 108 ; + } +#Dry deposition velocity of unsaturated dicarbonyls +'221109' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 109 ; + } +#Dry deposition velocity of methacrolein +'221110' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 110 ; + } +#Dry deposition velocity of unsaturated hydroxy dicarbonyl +'221111' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 111 ; + } +#Dry deposition velocity of isopropyldioxidanyl +'221112' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 112 ; + } +#Dry deposition velocity of hydroxy ketone +'221113' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 113 ; + } +#Dry deposition velocity of isopropyl hydroperoxide +'221114' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 114 ; + } +#Dry deposition velocity of c3h6oho2 +'221115' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 115 ; + } +#Dry deposition velocity of c3h6ohooh +'221116' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 116 ; + } +#Dry deposition velocity of higher organic peroxides +'221117' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 117 ; + } +#Dry deposition velocity of hydroxyacetone +'221118' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 118 ; + } +#Dry deposition velocity of peroxyacetic acid +'221119' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 119 ; + } +#Dry deposition velocity of ch3coch2o2 +'221120' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 120 ; + } +#Dry deposition velocity of peroxy radical from c2h6 +'221121' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 121 ; + } +#Dry deposition velocity of peroxy radical from hc3 +'221122' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 122 ; + } +#Dry deposition velocity of peroxy radical from hc5 +'221123' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 123 ; + } +#Dry deposition velocity of lumped alkenes +'221124' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 124 ; + } +#Dry deposition velocity of peroxy radical from hc8 +'221125' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 125 ; + } +#Dry deposition velocity of lumped alkanes +'221126' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 126 ; + } +#Dry deposition velocity of peroxy radical from c2h4 +'221127' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 127 ; + } +#Dry deposition velocity of c4h8o +'221128' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 128 ; + } +#Dry deposition velocity of peroxy radical from terminal alkenes +'221129' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 129 ; + } +#Dry deposition velocity of c4h9o3 +'221130' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 130 ; + } +#Dry deposition velocity of peroxy radical from internal alkenes +'221131' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 131 ; + } +#Dry deposition velocity of ch3coch(oo)ch3 +'221132' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 132 ; + } +#Dry deposition velocity of peroxy radical from c5h8 +'221133' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 133 ; + } +#Dry deposition velocity of ch3coch(ooh)ch3 +'221134' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 134 ; + } +#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes +'221135' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 135 ; + } +#Dry deposition velocity of ch2=c(ch3)co3 +'221136' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 136 ; + } +#Dry deposition velocity of peroxy radical from d-limonene cyclic diene +'221137' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 137 ; + } +#Dry deposition velocity of methylvinylketone +'221138' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 138 ; + } +#Dry deposition velocity of phenoxy radical +'221139' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 139 ; + } +#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics +'221140' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 140 ; + } +#Dry deposition velocity of ch3c(o)ch(oo)ch2oh +'221141' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 141 ; + } +#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics +'221142' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 142 ; + } +#Dry deposition velocity of h3c(o)ch(ooh)ch2oh +'221143' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 143 ; + } +#Dry deposition velocity of peroxy radical from cresol +'221144' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 144 ; + } +#Dry deposition velocity of unsaturated pans +'221145' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 145 ; + } +#Dry deposition velocity of unsaturated acyl peroxy radical +'221146' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 146 ; + } +#Dry deposition velocity of peroxy radical from ketones +'221147' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 147 ; + } +#Dry deposition velocity of c5h11o2 +'221148' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 148 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates +'221149' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 149 ; + } +#Dry deposition velocity of c5h11ooh +'221150' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 150 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting via decomposition +'221151' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 151 ; + } +#Dry deposition velocity of hoch2c(ch3)=chcho +'221152' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 152 ; + } +#Dry deposition velocity of c5h6o2 +'221153' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 153 ; + } +#Dry deposition velocity of trop sulfuric acid +'221154' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 154 ; + } +#Dry deposition velocity of oxides +'221155' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 155 ; + } +#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 +'221156' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 156 ; + } +#Dry deposition velocity of c3 organic nitrate +'221157' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 157 ; + } +#Dry deposition velocity of chlorine oxides +'221158' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 158 ; + } +#Dry deposition velocity of bromine oxides +'221159' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 159 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh +'221160' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 160 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 +'221161' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 161 ; + } +#Dry deposition velocity of lumped aromatics +'221162' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 162 ; + } +#Dry deposition velocity of dimethyl sulfoxyde +'221163' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 163 ; + } +#Dry deposition velocity of c7h9o5 +'221164' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 164 ; + } +#Dry deposition velocity of c7h10o5 +'221165' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 165 ; + } +#Dry deposition velocity of hydrogensulfide +'221166' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 166 ; + } +#Dry deposition velocity of c7h10o6 +'221167' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 167 ; + } +#Dry deposition velocity of all nitrogen oxides +'221168' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 168 ; + } +#Dry deposition velocity of chlorine family +'221169' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 169 ; + } +#Dry deposition velocity of c10h16(oh)(oo) +'221170' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 170 ; + } +#Dry deposition velocity of bromine family +'221171' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 171 ; + } +#Dry deposition velocity of c10h18o3 +'221172' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 172 ; + } +#Dry deposition velocity of nitrogen atom +'221173' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 173 ; + } +#Dry deposition velocity of chlorine monoxide +'221174' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 174 ; + } +#Dry deposition velocity of chlorine atom +'221175' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 175 ; + } +#Dry deposition velocity of bromine monoxide +'221176' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 176 ; + } +#Dry deposition velocity of hydrogen atom +'221177' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 177 ; + } +#Dry deposition velocity of methyl group +'221178' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 178 ; + } +#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics +'221179' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 179 ; + } +#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics +'221180' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 180 ; + } +#Dry deposition velocity of ammonium nitrate +'221181' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 181 ; + } +#Dry deposition velocity of aromatic-ho from csl +'221182' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 182 ; + } +#Dry deposition velocity of secondary organic aerosol type 1 +'221183' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 183 ; + } +#Dry deposition velocity of secondary organic aerosol type 2a +'221184' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 184 ; + } +#Dry deposition velocity of secondary organic aerosol type 2b +'221185' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 185 ; + } +#Dry deposition velocity of condensable gas type 1 +'221186' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 186 ; + } +#Dry deposition velocity of condensable gas type 2a +'221187' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 187 ; + } +#Dry deposition velocity of condensable gas type 2b +'221188' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 188 ; + } +#Dry deposition velocity of sulfur trioxide +'221189' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 189 ; + } +#Dry deposition velocity of carbonyl sulfide +'221190' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 190 ; + } +#Dry deposition velocity of bromine atom +'221191' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 191 ; + } +#Dry deposition velocity of bromine +'221192' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 192 ; + } +#Dry deposition velocity of bromine monochloride +'221193' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 193 ; + } +#Dry deposition velocity of bromine nitrate +'221194' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 194 ; + } +#Dry deposition velocity of dibromomethane +'221195' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 195 ; + } +#Dry deposition velocity of methoxy radical +'221196' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 196 ; + } +#Dry deposition velocity of tribromomethane +'221197' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 197 ; + } +#Dry deposition velocity of asymmetric chlorine dioxide radical +'221198' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 198 ; + } +#Dry deposition velocity of hydrogen +'221199' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 199 ; + } +#Dry deposition velocity of hydrogen chloride +'221200' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 200 ; + } +#Dry deposition velocity of formyl radical +'221201' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 201 ; + } +#Dry deposition velocity of hydrogen fluoride +'221202' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 202 ; + } +#Dry deposition velocity of oxygen atom +'221203' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 203 ; + } +#Dry deposition velocity of excited oxygen atom +'221204' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 204 ; + } +#Dry deposition velocity of ground state oxygen atom +'221205' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 205 ; + } +#Dry deposition velocity of stratospheric aerosol +'221206' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 206 ; + } +#Total sky direct solar radiation at surface +'228021' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'228022' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'228023' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Horizontal visibility +'228025' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'228026' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'228027' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'228040' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'228041' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'228042' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'228043' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of zero-degree wet-bulb temperature +'228047' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'228048' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'228050' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous total lightning flash density +'228050' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'228051' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last hour +'228051' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'228052' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'228052' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'228053' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'228053' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'228057' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged total lightning flash density in the last 3 hours +'228057' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'228058' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last 6 hours +'228058' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'228059' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'228059' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'228060' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'228060' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'228078' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'228079' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'228080' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'228081' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'228082' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'228083' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'228084' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'228085' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'228089' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'228090' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'228091' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'228092' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'228093' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'228094' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Evaporation from the top of canopy +'228100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 100 ; + } +#Evaporation from bare soil +'228101' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 101 ; + } +#Evaporation from open water surfaces excluding oceans +'228102' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 102 ; + } +#Evaporation from vegetation transpiration +'228103' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 103 ; + } +#Surface solar radiation downward clear-sky +'228129' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'228130' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'228248' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#Irrigation fraction +'228250' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'228251' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'228252' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'228255' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'129001' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'129002' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'129003' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'129004' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'129005' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'129011' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'129012' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'129013' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'129014' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'129021' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'129022' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'129023' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'129024' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'129025' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'129026' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'129027' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'129028' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'129029' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'129030' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'129031' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'129032' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'129033' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'129034' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'129035' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'129036' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'129037' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'129038' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'129039' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'129040' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'129041' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'129042' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'129043' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'129044' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'129045' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'129046' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'129047' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'129048' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'129049' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'129050' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'129051' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'129052' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'129053' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'129054' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'129055' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'129056' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'129057' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'129058' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'129059' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'129060' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'129061' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'129062' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'129063' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'129064' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'129065' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'129066' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'129067' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'129068' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'129069' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'129070' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'129071' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'129078' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'129079' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'129080' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'129081' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'129082' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'129083' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'129084' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'129085' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'129086' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'129087' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'129088' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'129089' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'129090' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'129091' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'129092' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'129093' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'129094' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'129095' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'129096' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'129097' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'129098' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'129099' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'129100' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'129101' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'129102' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'129103' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'129104' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'129105' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'129106' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'129107' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'129108' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'129109' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'129110' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'129111' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'129112' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'129113' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'129114' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'129115' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'129116' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'129117' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'129118' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'129119' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'129120' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'129121' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'129122' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'129123' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'129125' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'129126' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'129127' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'129128' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'129129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'129130' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'129131' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'129132' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'129133' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'129134' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'129135' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'129136' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'129137' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'129138' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'129139' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'129140' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'129141' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'129142' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'129143' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'129144' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'129145' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'129146' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'129147' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'129148' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'129149' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'129150' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'129151' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'129152' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'129153' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'129154' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'129155' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'129156' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'129157' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'129158' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'129159' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'129160' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'129161' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'129162' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'129163' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'129164' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'129165' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'129166' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'129167' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'129168' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'129169' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'129170' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'129171' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'129172' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'129173' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'129174' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'129175' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'129176' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'129177' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'129178' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'129179' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'129180' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'129181' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'129182' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'129183' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'129184' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'129185' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'129186' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'129187' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'129188' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'129189' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'129190' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'129191' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'129192' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'129193' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'129194' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'129195' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'129196' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'129197' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'129198' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'129199' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'129200' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'129201' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'129202' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'129203' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'129204' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'129205' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'129206' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'129207' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'129208' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'129209' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'129210' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'129211' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'129212' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'129214' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'129215' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'129216' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'129217' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'129218' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'129219' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'129220' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'129221' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'129222' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'129223' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'129224' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'129225' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'129226' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'129227' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'129228' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'129229' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'129230' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'129231' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'129232' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'129233' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'129234' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'129235' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'129236' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'129237' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'129238' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'129239' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'129240' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'129241' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'129242' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'129243' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'129244' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'129245' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'129246' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'129247' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'129248' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'129249' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'129250' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'129251' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'129252' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'129253' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'129254' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'129255' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'130208' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'130209' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'130210' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'130211' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'130212' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'130213' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'130214' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'130215' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'130216' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'130217' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'130218' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'130219' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'130220' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'130221' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'130224' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'130225' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'130226' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'130228' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'130229' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'130230' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'130231' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'130232' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'131001' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'131002' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'131003' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'131004' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'131005' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'131006' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'131007' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'131008' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'131009' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'131010' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'131015' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'131016' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'131017' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'131018' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'131020' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'131021' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'131022' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'131023' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'131024' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'131025' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'131049' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'131059' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'131064' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'131065' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'131066' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'131067' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'131068' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'131069' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre wind gust of at least 25 m/s +'131072' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + } +#2 metre temperature less than 273.15 K +'131073' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'131074' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + } +#Significant wave height of at least 4 m +'131075' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 4 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#Significant wave height of at least 6 m +'131076' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'131077' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'131078' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'131079' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'131080' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'131081' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'131129' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'131130' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'131139' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'131144' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'131151' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'131164' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'131165' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'131167' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'131201' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'131202' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'131228' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'131229' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'131232' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'131255' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'133001' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'133002' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'133003' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'133004' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'133005' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'133006' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'133007' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'133008' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'133009' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'133010' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'133011' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'133012' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'133013' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'133014' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'133015' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'133016' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'133017' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'133018' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'133019' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'133020' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'133021' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'133022' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'133023' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'133024' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'133025' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'133026' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'133027' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'133028' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'133029' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'133030' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'133031' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'133032' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'133033' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'133034' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'133035' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'133036' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'133037' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'133038' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'133039' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'133040' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'133041' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'133042' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'133043' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'133044' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'133045' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'133046' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'133047' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'133048' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'133049' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'133050' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'133051' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'133052' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'133053' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'133054' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'133055' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'133056' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'133057' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'133058' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'133059' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'133060' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'133061' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'133062' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'133063' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'133064' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'133065' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'133066' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'133067' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'133068' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'133069' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'133070' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'133071' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'133072' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'133073' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'133074' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'133075' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'133076' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'133077' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'133078' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'133079' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'133080' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'133081' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'133082' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'133083' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'133084' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'133085' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'133086' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'133087' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'133088' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'133089' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'133090' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'133091' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'133092' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'140200' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'140217' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'140218' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'140219' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'140220' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'140221' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Mean zero-crossing wave period +'140221' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'140222' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'140223' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'140224' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'140225' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'140226' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'140227' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'140228' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'140231' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Peak wave period +'140231' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'140233' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'140234' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'140235' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'140236' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'140237' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'140238' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'140239' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'140240' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'140241' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'140242' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'140243' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'140244' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'140245' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'140246' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'140247' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'140248' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'140249' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'140250' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'140251' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'140252' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'140253' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'140254' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'140255' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'150129' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'150130' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'150131' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'150133' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'150134' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'150135' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'150137' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'150139' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'150140' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'150141' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'150142' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'150143' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'150144' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'150145' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'150146' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'150147' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'150148' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'150152' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'150153' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'150154' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'150155' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'150168' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'150169' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'150170' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'150171' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'150172' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'150173' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'150180' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'150181' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'150182' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'150183' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'150255' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'151128' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Sea water potential temperature +'151129' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'151130' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'151133' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'151134' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'151135' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'151136' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'151137' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sea water sigma theta +'151138' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'151139' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'151140' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'151141' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'151142' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'151143' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'151144' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level previous timestep +'151146' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Ocean barotropic stream function +'151147' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'151148' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'151149' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'151150' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'151151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'151152' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#Surface downward eastward stress +'151153' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'151154' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'151155' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'151156' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'151157' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'151158' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'151159' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'151160' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'151161' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'151162' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#Average potential temperature in the upper 300m +'151164' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'151165' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'151166' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'151167' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'151168' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'151169' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'151170' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'151171' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'151172' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'151173' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'151174' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Layer Thickness at scalar points +'151176' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'151177' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'151178' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'151179' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'151180' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'151181' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'151182' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'151183' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'151184' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'151185' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'151186' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'151187' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'151188' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'151190' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'151191' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'151192' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'151194' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'151199' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'151200' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'151201' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'151202' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'151203' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'151204' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'151205' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'151206' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'151207' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'151208' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'151209' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'151210' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'151211' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'151212' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'151255' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'160049' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'160135' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'160137' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'160140' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Large-scale precipitation +'160142' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'160143' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'160144' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'160156' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'160157' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'160171' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'160180' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'160181' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'160182' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'160184' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'160198' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'160199' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'160201' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'160202' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'160205' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'160206' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'160207' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'160208' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'160209' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'160210' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'160211' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'160212' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'160213' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'160214' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'160215' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'160216' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'160217' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'160218' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'160219' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'160220' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'160221' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'160222' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'160223' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'160224' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'160225' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'160226' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'160231' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'160239' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'160240' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'160241' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'160242' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'160243' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'160246' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'160247' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'160249' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'160254' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'162051' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'162053' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'162054' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'162055' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'162056' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'162057' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'162058' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'162059' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'162060' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'162061' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'162062' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'162063' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'162064' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'162065' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'162066' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'162067' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'162068' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'162069' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'162070' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'162071' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'162072' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'162073' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'162074' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'162075' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'162076' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'162077' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'162078' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'162081' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'162082' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'162083' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'162084' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'162085' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'162086' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'162087' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'162100' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'162101' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'162102' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'162103' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'162104' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'162105' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'162106' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'162107' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'162108' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'162109' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'162110' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'162111' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'162112' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'162113' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'162206' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'162207' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'162208' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'162209' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'162210' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'162211' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'162212' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'162213' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'162214' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'162215' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'162216' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'162217' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'162218' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'162219' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'162220' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'162221' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'162222' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'162223' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'162224' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'162225' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'162226' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'162227' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'162229' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'162230' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'162231' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'162232' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'162233' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'162255' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'170149' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'170171' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'170179' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'171001' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'171002' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'171003' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'171004' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'171005' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'171011' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'171012' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'171013' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'171014' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'171021' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'171022' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'171023' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'171026' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'171027' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'171028' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'171029' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'171030' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'171031' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'171032' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'171033' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'171034' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'171035' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'171036' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'171037' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'171038' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'171039' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'171040' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'171041' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'171042' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'171043' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'171044' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'171045' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'171046' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'171047' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'171048' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'171049' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'171050' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'171051' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'171052' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'171053' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'171054' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'171055' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'171056' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'171057' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'171058' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'171059' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'171060' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'171061' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'171062' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'171063' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'171064' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'171065' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'171078' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'171079' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'171125' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'171126' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'171127' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'171128' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'171129' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'171130' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'171131' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'171132' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'171133' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'171134' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'171135' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'171136' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'171137' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'171138' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'171139' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'171140' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'171141' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'171142' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'171143' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'171144' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'171145' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'171146' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'171147' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'171148' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'171149' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'171150' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'171151' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'171152' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'171153' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'171154' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'171155' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'171156' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'171157' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'171158' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'171159' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'171160' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'171161' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'171162' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'171163' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'171164' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'171165' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'171166' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'171167' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'171168' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'171169' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'171170' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'171171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'171173' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'171174' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'171175' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'171176' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'171177' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'171178' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'171179' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'171180' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'171181' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'171182' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'171183' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'171184' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'171185' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'171186' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'171187' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'171188' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'171189' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'171190' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'171191' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'171192' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'171193' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'171194' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'171195' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'171196' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'171197' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'171198' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'171199' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'171200' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'171201' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'171202' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'171203' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'171204' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'171205' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'171206' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'171207' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'171208' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'171209' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'171210' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'171211' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'171212' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'171214' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'171215' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'171216' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'171217' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'171218' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'171219' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'171220' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'171221' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'171222' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'171223' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'171224' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'171225' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'171226' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'171227' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'171228' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'171229' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'171230' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'171231' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'171232' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'171233' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'171234' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'171235' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'171236' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'171237' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'171238' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'171239' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'171240' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'171241' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'171242' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'171243' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'171244' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'171245' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'171246' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'171247' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'171248' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'171249' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'171250' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'171251' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'171252' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'171253' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'171254' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'171255' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'172044' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'172045' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'172048' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Mean large-scale precipitation fraction +'172050' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Mean large-scale precipitation rate +'172142' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'172143' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'172144' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'172145' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Mean surface sensible heat flux +'172146' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'172147' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface net radiation flux +'172149' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Mean short-wave heating rate +'172153' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Mean long-wave heating rate +'172154' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Mean surface downward solar radiation flux +'172169' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'172175' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'172176' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'172177' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'172178' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'172179' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'172180' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'172181' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'172182' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean sunshine duration rate +'172189' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'172195' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'172196' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'172197' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Mean runoff rate +'172205' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'172208' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'172209' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'172210' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'172211' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'172212' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'172228' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'172239' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'172240' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'172255' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'173044' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'173045' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'173048' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'173050' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'173142' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate anomaly +'173143' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'173144' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'173145' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'173146' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'173147' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'173149' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'173153' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'173154' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'173169' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'173175' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'173176' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'173177' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'173178' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'173179' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'173180' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'173181' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomalous rate of accumulation +'173182' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'173189' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'173195' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'173196' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'173197' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomalous rate of accumulation +'173205' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'173208' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'173209' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'173210' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'173211' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomalous rate of accumulation +'173212' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'173228' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'173239' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'173240' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'173255' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'174006' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'174009' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'174031' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'174034' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'174039' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'174040' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'174041' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'174042' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'174049' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'174055' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'174083' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'174085' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'174086' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'174087' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'174088' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'174089' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'174090' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'174094' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'174095' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Liquid water potential temperature +'174099' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'174110' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'174111' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'174139' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'174164' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'174167' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'174168' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'174170' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'174175' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'174183' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'174201' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'174202' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'174236' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'174255' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'175006' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'175031' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'175034' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'175039' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'175040' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'175041' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'175042' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'175049' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'175055' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'175083' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'175085' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'175086' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'175087' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'175088' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'175089' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'175090' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'175110' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'175111' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'175139' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'175164' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'175167' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'175168' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'175170' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'175175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'175183' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'175201' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'175202' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'175236' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'175255' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'180149' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'180176' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'180177' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'180178' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'180179' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Field capacity +'190170' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'190171' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'190173' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'190229' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'200168' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'201001' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'201002' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'201003' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'201004' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'201005' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'201006' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'201007' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'201008' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'201009' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'201010' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'201011' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'201012' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'201013' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'201014' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'201015' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'201016' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'201017' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'201029' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'201030' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'201031' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'201032' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'201033' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'201034' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'201035' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'201036' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'201037' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'201038' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'201041' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'201042' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'201050' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'201051' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'201052' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'201053' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'201054' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'201055' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'201056' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'201060' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'201061' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'201062' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'201063' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'201064' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'201065' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'201066' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'201067' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'201068' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'201069' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'201070' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'201071' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'201072' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'201073' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'201074' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'201075' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'201076' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'201077' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'201078' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'201079' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'201080' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'201081' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'201082' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'201083' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'201084' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'201085' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'201099' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'201100' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'201101' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'201102' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'201111' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'201112' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'201113' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'201139' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'201150' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'201187' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'201200' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'201203' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'201215' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'201241' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'201255' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'210001' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'210002' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'210003' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'210004' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'210005' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'210006' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'210007' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'210008' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'210009' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'210010' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'210011' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'210012' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'210016' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'210017' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'210018' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'210019' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'210020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'210021' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'210022' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'210023' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'210024' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'210025' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'210026' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'210027' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'210031' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'210032' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'210033' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'210034' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'210035' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'210036' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'210037' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'210038' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'210039' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'210040' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'210041' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'210042' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'210046' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'210047' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'210048' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'210049' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'210050' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'210051' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'210052' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'210053' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'210054' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'210061' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'210062' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'210063' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#CO2 column-mean molar fraction +'210064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#CH4 column-mean molar fraction +'210065' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'210066' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'210067' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'210068' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'210069' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'210070' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'210071' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire flux of Carbon Dioxide +'210080' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 80 ; + } +#Wildfire flux of Carbon Monoxide +'210081' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 81 ; + } +#Wildfire flux of Methane +'210082' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'210083' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 83 ; + } +#Wildfire flux of Hydrogen +'210084' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'210085' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 85 ; + } +#Wildfire flux of Nitrous Oxide +'210086' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'210087' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 87 ; + } +#Wildfire flux of Total Particulate Matter +'210088' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'210089' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 89 ; + } +#Wildfire flux of Organic Carbon +'210090' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 90 ; + } +#Wildfire flux of Black Carbon +'210091' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 91 ; + } +#Wildfire overall flux of burnt Carbon +'210092' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'210093' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'210094' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'210095' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'210096' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'210097' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'210098' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'210099' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'210100' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'210121' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'210122' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'210123' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'210124' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'210125' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'210126' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'210127' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'210128' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'210129' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'210130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'210131' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'210132' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'210133' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'210134' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'210135' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'210136' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'210137' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'210138' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'210139' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'210140' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'210141' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'210142' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'210143' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'210144' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'210145' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'210146' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'210147' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'210148' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'210149' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'210150' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'210151' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'210152' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'210153' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'210154' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'210155' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'210156' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'210157' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'210158' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'210159' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'210160' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'210161' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'210162' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'210163' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'210164' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'210165' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'210166' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'210181' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'210182' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'210183' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'210184' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'210185' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'210203' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'210206' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'210207' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'210208' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'210209' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'210210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'210211' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'210212' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'210213' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'210214' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'210215' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'210216' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'211001' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'211002' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'211003' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'211004' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'211005' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'211006' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'211007' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'211008' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'211009' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'211010' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'211011' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'211012' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'211016' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'211017' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'211018' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'211019' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'211020' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'211021' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'211022' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'211023' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'211024' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'211025' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'211026' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'211027' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'211031' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'211032' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'211033' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'211034' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'211035' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'211036' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'211037' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'211038' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'211039' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'211040' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'211041' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'211042' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'211046' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'211047' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'211048' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'211049' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'211050' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'211051' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'211052' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'211053' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'211054' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'211061' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'211062' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'211063' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'211064' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'211065' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'211066' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'211067' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'211068' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'211069' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'211070' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'211071' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'211092' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'211093' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'211094' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'211095' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'211096' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'211097' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'211098' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'211099' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'211100' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'211121' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'211122' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'211123' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'211124' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'211125' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'211126' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'211127' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'211128' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'211129' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'211130' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'211131' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'211132' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'211133' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'211134' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'211135' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'211136' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'211137' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'211138' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'211139' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'211140' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'211141' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'211142' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'211143' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'211144' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'211145' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'211146' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'211147' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'211148' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'211149' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'211150' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'211151' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'211152' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'211153' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'211154' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'211155' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'211156' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'211157' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'211158' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'211159' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'211160' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'211161' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'211162' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'211163' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'211164' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'211165' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'211166' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'211181' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'211182' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'211183' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'211184' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'211185' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'211203' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'211206' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'211207' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'211208' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'211209' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'211210' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'211211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'211212' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'211213' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'211214' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'211215' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'211216' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'220228' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'228003' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'228004' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'228005' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'228006' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'228007' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'228008' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'228009' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'228010' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'228011' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'228012' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'228013' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'228014' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'228015' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'228016' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'228017' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'228018' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'228019' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'228131' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'228132' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'234139' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'234151' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'234167' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'234228' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'140215' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'140216' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'210101' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'210102' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'210103' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'210104' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'210105' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'210106' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'210107' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'210108' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'210109' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'210110' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'210111' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'210112' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'210113' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'210114' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'210115' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'210116' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'210117' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 117 ; + } +#Wildfire radiative power maximum +'211101' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'228134' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'228136' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#ASCAT first soil moisture CDF matching parameter +'228253' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'228254' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def new file mode 100644 index 00000000..c1667d23 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -0,0 +1,144 @@ +#Surface net solar radiation, clear sky +'210' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'211' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'151131' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'151132' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'174098' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'151145' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#100 metre U wind component +'228246' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; +} +#100 metre V wind component +'228247' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; +} +#100 metre wind speed +'228249' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; +} +#0 degrees C isothermal level (atm) +'228024' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; +} +#Depth of 20C isotherm +'151163' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Average salinity in the upper 300m +'151175' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; +} +#Total precipitation of at least 1 mm +'131060' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; +} +#Total precipitation of at least 5 mm +'131061' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; +} +#Total precipitation of at least 40 mm +'131082' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; +} +#Total precipitation of at least 60 mm +'131083' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; +} +#Total precipitation of at least 80 mm +'131084' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; +} +#Total precipitation of at least 150 mm +'131086' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; +} +#Total precipitation of at least 200 mm +'131087' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; +} +#Total precipitation of at least 300 mm +'131088' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; +} +#Total column cloud liquid water +'78' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; +} +#Total column cloud ice water +'79' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; +} +#Top net solar radiation +'178' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'238' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/shortName.def b/eccodes/definitions/grib2/localConcepts/ecmf/shortName.def new file mode 100644 index 00000000..129a268d --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/shortName.def @@ -0,0 +1,22056 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Equivalent potential temperature +'eqpt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'ssfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'scfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'udvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'vdvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'urtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'vrtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'uvcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'cl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'cvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'cvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'tvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'tvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'asn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'istl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'es' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'smlt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'sdur' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'lspf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Montgomery potential +'mont' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'obct' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'sktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'10fg6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'emis' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'vite' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'at' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'bv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'tcwv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'stl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'swl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'sd' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'lsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'sf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'chnk' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'snr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'tnr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'lnsp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'swhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'lwhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'tsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'blh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'sdor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'tcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'stl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'al' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'e' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'stl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'swl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'ccc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'lcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'mcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'hcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'lgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'src' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'veg' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'paw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'ro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'tco3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#TOA incident solar radiation +'tisr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'ie' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'asq' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'stl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'swl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Convective snowfall +'csf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'lsf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'fal' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'fsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'aiw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'ice' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'strfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'ptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'cldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'asndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'rsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'sltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'esdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'smltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'sdurdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'10fgdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'montdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'presdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'capediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'obctdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10fg6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'bvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'zdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'qdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'spdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'tcwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'sddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'chnkdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'ghdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'rdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'10udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'10vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'srdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'aldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'ediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'hccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'rodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'tco3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'10sidiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'tpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'sktdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'faldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'ccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'icediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'utendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'ttendr' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'100ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'100va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdms' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Injection height (from IS4FIRES) +'injh' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 60 ; + } +#Particulate matter d < 1 um +'pm1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'c2h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 118 ; + } +#Mean altitude of maximum injection +'mami' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'apt' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#Wildfire day-time radiative power +'frpdayfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 167 ; + } +#Wildfire night-time radiative power +'frpngtfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 169 ; + } +#Wildfire day-time inverse variance of radiative power +'frpdayivar' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 177 ; + } +#Wildfire night-time inverse variance of radiative power +'frpngtivar' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 179 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'c7h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'c6h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'c8h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'c4h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'c5h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'c6h12fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'c8h16fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'c4h10fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'c5h12fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'c6h14fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'c7h16fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 241 ; + } +#Altitude of plume bottom +'apb' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'alediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'aptdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +#Random pattern 1 for SPP scheme +'spp1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 101 ; + } +#Random pattern 2 for SPP scheme +'spp2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 102 ; + } +#Random pattern 3 for SPP scheme +'spp3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 103 ; + } +#Random pattern 4 for SPP scheme +'spp4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 104 ; + } +#Random pattern 5 for SPP scheme +'spp5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 105 ; + } +#Random pattern 6 for SPP scheme +'spp6' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 106 ; + } +#Random pattern 7 for SPP scheme +'spp7' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 107 ; + } +#Random pattern 8 for SPP scheme +'spp8' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 108 ; + } +#Random pattern 9 for SPP scheme +'spp9' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 109 ; + } +#Random pattern 10 for SPP scheme +'spp10' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 110 ; + } +#Random pattern 11 for SPP scheme +'spp11' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 111 ; + } +#Random pattern 12 for SPP scheme +'spp12' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 112 ; + } +#Random pattern 13 for SPP scheme +'spp13' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 113 ; + } +#Random pattern 14 for SPP scheme +'spp14' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 114 ; + } +#Random pattern 15 for SPP scheme +'spp15' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 115 ; + } +#Random pattern 16 for SPP scheme +'spp16' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 116 ; + } +#Random pattern 17 for SPP scheme +'spp17' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 117 ; + } +#Random pattern 18 for SPP scheme +'spp18' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 118 ; + } +#Random pattern 19 for SPP scheme +'spp19' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 119 ; + } +#Random pattern 20 for SPP scheme +'spp20' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 120 ; + } +#Random pattern 21 for SPP scheme +'spp21' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 121 ; + } +#Random pattern 22 for SPP scheme +'spp22' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 122 ; + } +#Random pattern 23 for SPP scheme +'spp23' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 123 ; + } +#Random pattern 24 for SPP scheme +'spp24' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 124 ; + } +#Random pattern 25 for SPP scheme +'spp25' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 125 ; + } +#Random pattern 26 for SPP scheme +'spp26' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 126 ; + } +#Random pattern 27 for SPP scheme +'spp27' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 127 ; + } +#Random pattern 28 for SPP scheme +'spp28' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 128 ; + } +#Random pattern 29 for SPP scheme +'spp29' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 129 ; + } +#Random pattern 30 for SPP scheme +'spp30' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 130 ; + } +#Random pattern 31 for SPP scheme +'spp31' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 131 ; + } +#Random pattern 32 for SPP scheme +'spp32' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 132 ; + } +#Random pattern 33 for SPP scheme +'spp33' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 133 ; + } +#Random pattern 34 for SPP scheme +'spp34' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 134 ; + } +#Random pattern 35 for SPP scheme +'spp35' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 135 ; + } +#Random pattern 36 for SPP scheme +'spp36' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 136 ; + } +#Random pattern 37 for SPP scheme +'spp37' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 137 ; + } +#Random pattern 38 for SPP scheme +'spp38' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 138 ; + } +#Random pattern 39 for SPP scheme +'spp39' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 139 ; + } +#Random pattern 40 for SPP scheme +'spp40' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 140 ; + } +#Random pattern 41 for SPP scheme +'spp41' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 141 ; + } +#Random pattern 42 for SPP scheme +'spp42' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 142 ; + } +#Random pattern 43 for SPP scheme +'spp43' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 143 ; + } +#Random pattern 44 for SPP scheme +'spp44' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 144 ; + } +#Random pattern 45 for SPP scheme +'spp45' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 145 ; + } +#Random pattern 46 for SPP scheme +'spp46' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 146 ; + } +#Random pattern 47 for SPP scheme +'spp47' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 147 ; + } +#Random pattern 48 for SPP scheme +'spp48' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 148 ; + } +#Random pattern 49 for SPP scheme +'spp49' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 149 ; + } +#Random pattern 50 for SPP scheme +'spp50' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 150 ; + } +#Cosine of solar zenith angle +'uvcossza' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +#UV biologically effective dose +'uvbed' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +#UV biologically effective dose clear-sky +'uvbedcs' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +#Profile of optical thickness at 340 nm +'aot340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +#Source/gain of sulphate aerosol +'aersrcsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +#Dry deposition of sulphate aerosol +'aerddpsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +#Sedimentation of sulphate aerosol +'aersdmsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +#Negative fixer of sulphate aerosol +'aerngtsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'aermsssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +#Sulphate aerosol optical depth +'aerodsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Asymmetry factor at 340 nm +'asymmetry340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Asymmetry factor at 355 nm +'asymmetry355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Asymmetry factor at 380 nm +'asymmetry380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Asymmetry factor at 400 nm +'asymmetry400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Asymmetry factor at 440 nm +'asymmetry440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Asymmetry factor at 469 nm +'asymmetry469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Asymmetry factor at 500 nm +'asymmetry500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Asymmetry factor at 532 nm +'asymmetry532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Asymmetry factor at 550 nm +'asymmetry550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Asymmetry factor at 645 nm +'asymmetry645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Asymmetry factor at 670 nm +'asymmetry670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Asymmetry factor at 800 nm +'asymmetry800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Asymmetry factor at 858 nm +'asymmetry858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Asymmetry factor at 865 nm +'asymmetry865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Asymmetry factor at 1020 nm +'asymmetry1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Asymmetry factor at 1064 nm +'asymmetry1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Asymmetry factor at 1240 nm +'asymmetry1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Asymmetry factor at 1640 nm +'asymmetry1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Asymmetry factor at 2130 nm +'asymmetry2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'aersrcnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Source/gain of coarse-mode nitrate aerosol +'aersrcnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Dry deposition of fine-mode nitrate aerosol +'aerddpnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'aerddpnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Sedimentation of fine-mode nitrate aerosol +'aersdmnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'aersdmnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'aerwdlnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'aerwdlnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'aerwdcnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'aerwdcnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Negative fixer of fine-mode nitrate aerosol +'aerngtnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'aerngtnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'aermssnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'aermssnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'aerodnif' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 65534 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'aerodnic' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfSizeInterval = 255 ; + aerosolType = 65533 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + } +#Source/gain of ammonium aerosol +'aersrcam' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Negative fixer of ammonium aerosol +'aerngtam' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'ch4_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'hno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'par' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'c2h4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'ole' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'ald2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'rooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'onit' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'c5h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'dms' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'nh4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'msa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'o3s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'pb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'ho2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'ho2no2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'ror' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'rxpar' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'xo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'nh2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'psc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'ch3oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'hcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'mcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'c2h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'c2h5oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'c3h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'c3h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'c10h16' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'ispd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'no3_a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'ch3coch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'aco2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'hypropo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Carbon dioxide (chemistry) +'co2_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 57 ; + } +#Nitrous oxide (chemistry) +'n2o_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 58 ; + } +#Water vapour (chemistry) +'h2o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 59 ; + } +#Oxygen +'o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 60 ; + } +#Singlet oxygen +'o2_1s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 61 ; + } +#Singlet delta oxygen +'o2_1d' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 62 ; + } +#Chlorine dioxide +'oclo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'clono2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'hocl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Chlorine +'cl2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 66 ; + } +#Nitryl chloride +'clno2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 67 ; + } +#Hydrogen bromide +'hbr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Dichlorine dioxide +'cl2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 69 ; + } +#Hypobromous acid +'hobr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Trichlorofluoromethane +'cfc11' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 71 ; + } +#Dichlorodifluoromethane +'cfc12' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 72 ; + } +#Trichlorotrifluoroethane +'cfc113' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 73 ; + } +#Dichlorotetrafluoroethane +'cfc114' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 74 ; + } +#Chloropentafluoroethane +'cfc115' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 75 ; + } +#Tetrachloromethane +'ccl4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 76 ; + } +#Methyl chloroform +'ch3ccl3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 77 ; + } +#Methyl chloride +'ch3cl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Chlorodifluoromethane +'hcfc22' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 79 ; + } +#Methyl bromide +'ch3br' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Dibromodifluoromethane +'ha1202' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 81 ; + } +#Bromochlorodifluoromethane +'ha1211' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 82 ; + } +#Trifluorobromomethane +'ha1301' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 83 ; + } +#Cbrf2cbrf2 +'ha2402' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 84 ; + } +#Sulfuric acid +'h2so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'hono' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Alkanes low oh rate +'hc3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 87 ; + } +#Alkanes med oh rate +'hc5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 88 ; + } +#Alkanes high oh rate +'hc8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 89 ; + } +#Terminal alkenes +'olt' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 90 ; + } +#Internal alkenes +'oli' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 91 ; + } +#Ethylperoxy radical +'c2h5o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 92 ; + } +#Butadiene +'dien' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 93 ; + } +#Ethyl hydroperoxide +'c2h5ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 94 ; + } +#A-pinene cyclic terpenes +'api' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 95 ; + } +#Acetic acid +'ch3cooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#D-limonene cyclic diene +'lim' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 97 ; + } +#Acetaldehyde +'ch3cho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 98 ; + } +#Toluene and less reactive aromatics +'tol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 99 ; + } +#Xylene and more reactive aromatics +'xyl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 100 ; + } +#Glycolaldehyde +'glyald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 101 ; + } +#Cresol +'cresol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 102 ; + } +#Acetaldehyde and higher +'ald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 103 ; + } +#Peracetic acid +'ch3coooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 104 ; + } +#Ketones +'ket' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 105 ; + } +#Hoch2ch2o2 +'eo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 106 ; + } +#Glyoxal +'glyoxal' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 107 ; + } +#Hoch2ch2o +'eo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 108 ; + } +#Unsaturated dicarbonyls +'dcb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 109 ; + } +#Methacrolein +'macr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 110 ; + } +#Unsaturated hydroxy dicarbonyl +'udd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 111 ; + } +#Isopropyldioxidanyl +'c3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 112 ; + } +#Hydroxy ketone +'hket' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 113 ; + } +#Isopropyl hydroperoxide +'c3h7ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 114 ; + } +#C3h6oho2 +'po2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 115 ; + } +#C3h6ohooh +'pooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 116 ; + } +#Higher organic peroxides +'op2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 117 ; + } +#Hydroxyacetone +'hyac' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 118 ; + } +#Peroxyacetic acid +'paa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 119 ; + } +#Ch3coch2o2 +'ro2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 120 ; + } +#Peroxy radical from c2h6 +'ethp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 121 ; + } +#Peroxy radical from hc3 +'hc3p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 122 ; + } +#Peroxy radical from hc5 +'hc5p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 123 ; + } +#Lumped alkenes +'bigene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 124 ; + } +#Peroxy radical from hc8 +'hc8p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 125 ; + } +#Lumped alkanes +'bigalk' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 126 ; + } +#Peroxy radical from c2h4 +'etep' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 127 ; + } +#C4h8o +'mek' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 128 ; + } +#Peroxy radical from terminal alkenes +'oltp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 129 ; + } +#C4h9o3 +'eneo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 130 ; + } +#Peroxy radical from internal alkenes +'olip' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 131 ; + } +#Ch3coch(oo)ch3 +'meko2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 132 ; + } +#Peroxy radical from c5h8 +'isopo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 133 ; + } +#Ch3coch(ooh)ch3 +'mekooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 134 ; + } +#Peroxy radical from a-pinene cyclic terpenes +'apip' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 135 ; + } +#Ch2=c(ch3)co3 +'mco3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 136 ; + } +#Peroxy radical from d-limonene cyclic diene +'limp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 137 ; + } +#Methylvinylketone +'mvk' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 138 ; + } +#Phenoxy radical +'pho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 139 ; + } +#Peroxy radical from toluene and less reactive aromatics +'tolp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 140 ; + } +#Ch3c(o)ch(oo)ch2oh +'macro2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 141 ; + } +#Peroxy radical from xylene and more reactive aromatics +'xylp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 142 ; + } +#H3c(o)ch(ooh)ch2oh +'macrooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 143 ; + } +#Peroxy radical from cresol +'cslp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 144 ; + } +#Unsaturated pans +'mpan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 145 ; + } +#Unsaturated acyl peroxy radical +'tco3_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 146 ; + } +#Peroxy radical from ketones +'ketp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 147 ; + } +#C5h11o2 +'alko2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 148 ; + } +#No3-alkenes adduct reacting to form carbonitrates +'olnn' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 149 ; + } +#C5h11ooh +'alkooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 150 ; + } +#No3-alkenes adduct reacting via decomposition +'olnd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 151 ; + } +#Hoch2c(ch3)=chcho +'bigald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 152 ; + } +#C5h6o2 +'hydrald' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 153 ; + } +#Trop sulfuric acid +'sulf' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 154 ; + } +#Oxides +'ox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 155 ; + } +#Ch2chc(ch3)(oo)ch2ono2 +'isopno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 156 ; + } +#C3 organic nitrate +'onitr' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 157 ; + } +#Chlorine oxides +'clox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 158 ; + } +#Bromine oxides +'brox' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 159 ; + } +#Hoch2c(ooh)(ch3)chchoh +'xooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 160 ; + } +#Hoch2c(ooh)(ch3)ch=ch2 +'isopooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 161 ; + } +#Lumped aromatics +'toluene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 162 ; + } +#Dimethyl sulfoxyde +'dmso' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 163 ; + } +#C7h9o5 +'tolo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 164 ; + } +#C7h10o5 +'tolooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 165 ; + } +#Hydrogensulfide +'h2s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 166 ; + } +#C7h10o6 +'xoh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 167 ; + } +#All nitrogen oxides +'noy' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 168 ; + } +#Chlorine family +'cly' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 169 ; + } +#C10h16(oh)(oo) +'terpo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 170 ; + } +#Bromine family +'bry' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 171 ; + } +#C10h18o3 +'terpooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 172 ; + } +#Nitrogen atom +'n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 173 ; + } +#Chlorine monoxide +'clo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Chlorine atom +'cl_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 175 ; + } +#Bromine monoxide +'bro' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Hydrogen atom +'h_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 177 ; + } +#Methyl group +'ch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 178 ; + } +#Aromatic-ho from toluene and less reactive aromatics +'addt' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 179 ; + } +#Aromatic-ho from xylene and more reactive aromatics +'addx' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 180 ; + } +#Ammonium nitrate +'nh4no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 181 ; + } +#Aromatic-ho from csl +'addc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 182 ; + } +#Secondary organic aerosol type 1 +'soa1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 183 ; + } +#Secondary organic aerosol type 2a +'soa2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 184 ; + } +#Secondary organic aerosol type 2b +'soa2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 185 ; + } +#Condensable gas type 1 +'sog1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 186 ; + } +#Condensable gas type 2a +'sog2a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 187 ; + } +#Condensable gas type 2b +'sog2b' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 188 ; + } +#Sulfur trioxide +'so3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 189 ; + } +#Carbonyl sulfide +'ocs_c' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 190 ; + } +#Bromine atom +'br' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 191 ; + } +#Bromine +'br2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 192 ; + } +#Bromine monochloride +'brcl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 193 ; + } +#Bromine nitrate +'brono2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Dibromomethane +'ch2br2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 195 ; + } +#Methoxy radical +'ch3o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 196 ; + } +#Tribromomethane +'chbr3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 197 ; + } +#Asymmetric chlorine dioxide radical +'cloo' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 198 ; + } +#Hydrogen +'h2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 199 ; + } +#Hydrogen chloride +'hcl' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Formyl radical +'hco' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 201 ; + } +#Hydrogen fluoride +'hf' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 202 ; + } +#Oxygen atom +'o' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 203 ; + } +#Excited oxygen atom +'o1d' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 204 ; + } +#Ground state oxygen atom +'o3p' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 205 ; + } +#Stratospheric aerosol +'strataer' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 206 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'tc_ch4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'tc_par' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'tc_c2h4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'tc_ole' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'tc_rooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'tc_nh3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'tc_so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'tc_nh4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'tc_pb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'tc_ror' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'tc_nh2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'tc_c2h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'tc_c3h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'tc_c3h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'tc_aco2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Total column of carbon dioxide (chemistry) +'tc_co2_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 57 ; + } +#Total column of nitrous oxide (chemistry) +'tc_n2o_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 58 ; + } +#Total column of water vapour (chemistry) +'tc_h2o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 59 ; + } +#Total column of oxygen +'tc_o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 60 ; + } +#Total column of singlet oxygen +'tc_o2_1s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 61 ; + } +#Total column of singlet delta oxygen +'tc_o2_1d' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 62 ; + } +#Total column of chlorine dioxide +'tc_oclo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'tc_clono2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'tc_hocl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of chlorine +'tc_cl2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 66 ; + } +#Total column of nitryl chloride +'tc_clno2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 67 ; + } +#Total column of hydrogen bromide +'tc_hbr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of dichlorine dioxide +'tc_cl2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 69 ; + } +#Total column of hypobromous acid +'tc_hobr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of trichlorofluoromethane +'tc_cfc11' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 71 ; + } +#Total column of dichlorodifluoromethane +'tc_cfc12' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 72 ; + } +#Total column of trichlorotrifluoroethane +'tc_cfc113' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 73 ; + } +#Total column of dichlorotetrafluoroethane +'tc_cfc114' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 74 ; + } +#Total column of chloropentafluoroethane +'tc_cfc115' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 75 ; + } +#Total column of tetrachloromethane +'tc_ccl4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 76 ; + } +#Total column of methyl chloroform +'tc_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 77 ; + } +#Total column of methyl chloride +'tc_ch3cl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of chlorodifluoromethane +'tc_hcfc22' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 79 ; + } +#Total column of methyl bromide +'tc_ch3br' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of dibromodifluoromethane +'tc_ha1202' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 81 ; + } +#Total column of bromochlorodifluoromethane +'tc_ha1211' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 82 ; + } +#Total column of trifluorobromomethane +'tc_ha1301' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 83 ; + } +#Total column of cbrf2cbrf2 +'tc_ha2402' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 84 ; + } +#Total column of sulfuric acid +'tc_h2so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 85 ; + } +#Total column of nitrous acid +'tc_hono' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of alkanes low oh rate +'tc_hc3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 87 ; + } +#Total column of alkanes med oh rate +'tc_hc5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 88 ; + } +#Total column of alkanes high oh rate +'tc_hc8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 89 ; + } +#Total column of terminal alkenes +'tc_olt' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 90 ; + } +#Total column of internal alkenes +'tc_oli' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 91 ; + } +#Total column of ethylperoxy radical +'tc_c2h5o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 92 ; + } +#Total column of butadiene +'tc_dien' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 93 ; + } +#Total column of ethyl hydroperoxide +'tc_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 94 ; + } +#Total column of a-pinene cyclic terpenes +'tc_api' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 95 ; + } +#Total column of acetic acid +'tc_ch3cooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of d-limonene cyclic diene +'tc_lim' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 97 ; + } +#Total column of acetaldehyde +'tc_ch3cho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 98 ; + } +#Total column of toluene and less reactive aromatics +'tc_tol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 99 ; + } +#Total column of xylene and more reactive aromatics +'tc_xyl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 100 ; + } +#Total column of glycolaldehyde +'tc_glyald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 101 ; + } +#Total column of cresol +'tc_cresol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 102 ; + } +#Total column of acetaldehyde and higher +'tc_ald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 103 ; + } +#Total column of peracetic acid +'tc_ch3coooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 104 ; + } +#Total column of ketones +'tc_ket' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 105 ; + } +#Total column of hoch2ch2o2 +'tc_eo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 106 ; + } +#Total column of glyoxal +'tc_glyoxal' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 107 ; + } +#Total column of hoch2ch2o +'tc_eo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 108 ; + } +#Total column of unsaturated dicarbonyls +'tc_dcb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 109 ; + } +#Total column of methacrolein +'tc_macr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 110 ; + } +#Total column of unsaturated hydroxy dicarbonyl +'tc_udd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 111 ; + } +#Total column of isopropyldioxidanyl +'tc_c3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 112 ; + } +#Total column of hydroxy ketone +'tc_hket' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 113 ; + } +#Total column of isopropyl hydroperoxide +'tc_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 114 ; + } +#Total column of c3h6oho2 +'tc_po2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 115 ; + } +#Total column of c3h6ohooh +'tc_pooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 116 ; + } +#Total column of higher organic peroxides +'tc_op2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 117 ; + } +#Total column of hydroxyacetone +'tc_hyac' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 118 ; + } +#Total column of peroxyacetic acid +'tc_paa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 119 ; + } +#Total column of ch3coch2o2 +'tc_ro2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 120 ; + } +#Total column of peroxy radical from c2h6 +'tc_ethp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 121 ; + } +#Total column of peroxy radical from hc3 +'tc_hc3p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 122 ; + } +#Total column of peroxy radical from hc5 +'tc_hc5p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 123 ; + } +#Total column of lumped alkenes +'tc_bigene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 124 ; + } +#Total column of peroxy radical from hc8 +'tc_hc8p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 125 ; + } +#Total column of lumped alkanes +'tc_bigalk' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 126 ; + } +#Total column of peroxy radical from c2h4 +'tc_etep' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 127 ; + } +#Total column of c4h8o +'tc_mek' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 128 ; + } +#Total column of peroxy radical from terminal alkenes +'tc_oltp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 129 ; + } +#Total column of c4h9o3 +'tc_eneo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 130 ; + } +#Total column of peroxy radical from internal alkenes +'tc_olip' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 131 ; + } +#Total column of ch3coch(oo)ch3 +'tc_meko2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 132 ; + } +#Total column of peroxy radical from c5h8 +'tc_isopo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 133 ; + } +#Total column of ch3coch(ooh)ch3 +'tc_mekooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 134 ; + } +#Total column of peroxy radical from a-pinene cyclic terpenes +'tc_apip' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 135 ; + } +#Total column of ch2=c(ch3)co3 +'tc_mco3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 136 ; + } +#Total column of peroxy radical from d-limonene cyclic diene +'tc_limp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 137 ; + } +#Total column of methylvinylketone +'tc_mvk' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 138 ; + } +#Total column of phenoxy radical +'tc_pho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 139 ; + } +#Total column of peroxy radical from toluene and less reactive aromatics +'tc_tolp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 140 ; + } +#Total column of ch3c(o)ch(oo)ch2oh +'tc_macro2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 141 ; + } +#Total column of peroxy radical from xylene and more reactive aromatics +'tc_xylp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 142 ; + } +#Total column of h3c(o)ch(ooh)ch2oh +'tc_macrooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 143 ; + } +#Total column of peroxy radical from cresol +'tc_cslp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 144 ; + } +#Total column of unsaturated pans +'tc_mpan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 145 ; + } +#Total column of unsaturated acyl peroxy radical +'tc_tco3_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 146 ; + } +#Total column of peroxy radical from ketones +'tc_ketp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 147 ; + } +#Total column of c5h11o2 +'tc_alko2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 148 ; + } +#Total column of no3-alkenes adduct reacting to form carbonitrates +'tc_olnn' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 149 ; + } +#Total column of c5h11ooh +'tc_alkooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 150 ; + } +#Total column of no3-alkenes adduct reacting via decomposition +'tc_olnd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 151 ; + } +#Total column of hoch2c(ch3)=chcho +'tc_bigald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 152 ; + } +#Total column of c5h6o2 +'tc_hydrald' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 153 ; + } +#Total column of trop sulfuric acid +'tc_sulf' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 154 ; + } +#Total column of oxides +'tc_ox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 155 ; + } +#Total column of ch2chc(ch3)(oo)ch2ono2 +'tc_isopno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 156 ; + } +#Total column of c3 organic nitrate +'tc_onitr' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 157 ; + } +#Total column of chlorine oxides +'tc_clox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 158 ; + } +#Total column of bromine oxides +'tc_brox' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 159 ; + } +#Total column of hoch2c(ooh)(ch3)chchoh +'tc_xooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 160 ; + } +#Total column of hoch2c(ooh)(ch3)ch=ch2 +'tc_isopooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 161 ; + } +#Total column of lumped aromatics +'tc_toluene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 162 ; + } +#Total column of dimethyl sulfoxyde +'tc_dmso' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 163 ; + } +#Total column of c7h9o5 +'tc_tolo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 164 ; + } +#Total column of c7h10o5 +'tc_tolooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 165 ; + } +#Total column of hydrogensulfide +'tc_h2s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 166 ; + } +#Total column of c7h10o6 +'tc_xoh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 167 ; + } +#Total column of all nitrogen oxides +'tc_noy' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 168 ; + } +#Total column of chlorine family +'tc_cly' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 169 ; + } +#Total column of c10h16(oh)(oo) +'tc_terpo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 170 ; + } +#Total column of bromine family +'tc_bry' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 171 ; + } +#Total column of c10h18o3 +'tc_terpooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 172 ; + } +#Total column of nitrogen atom +'tc_n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 173 ; + } +#Total column of chlorine monoxide +'tc_clo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of chlorine atom +'tc_cl_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 175 ; + } +#Total column of bromine monoxide +'tc_bro' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of hydrogen atom +'tc_h_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 177 ; + } +#Total column of methyl group +'tc_ch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 178 ; + } +#Total column of aromatic-ho from toluene and less reactive aromatics +'tc_addt' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 179 ; + } +#Total column of aromatic-ho from xylene and more reactive aromatics +'tc_addx' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 180 ; + } +#Total column of ammonium nitrate +'tc_nh4no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 181 ; + } +#Total column of aromatic-ho from csl +'tc_addc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 182 ; + } +#Total column of secondary organic aerosol type 1 +'tc_soa1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 183 ; + } +#Total column of secondary organic aerosol type 2a +'tc_soa2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 184 ; + } +#Total column of secondary organic aerosol type 2b +'tc_soa2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 185 ; + } +#Total column of condensable gas type 1 +'tc_sog1' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 186 ; + } +#Total column of condensable gas type 2a +'tc_sog2a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 187 ; + } +#Total column of condensable gas type 2b +'tc_sog2b' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 188 ; + } +#Total column of sulfur trioxide +'tc_so3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 189 ; + } +#Total column of carbonyl sulfide +'tc_ocs_c' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 190 ; + } +#Total column of bromine atom +'tc_br' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 191 ; + } +#Total column of bromine +'tc_br2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 192 ; + } +#Total column of bromine monochloride +'tc_brcl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 193 ; + } +#Total column of bromine nitrate +'tc_brono2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of dibromomethane +'tc_ch2br2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 195 ; + } +#Total column of methoxy radical +'tc_ch3o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 196 ; + } +#Total column of tribromomethane +'tc_chbr3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 197 ; + } +#Total column of asymmetric chlorine dioxide radical +'tc_cloo' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 198 ; + } +#Total column of hydrogen +'tc_h2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 199 ; + } +#Total column of hydrogen chloride +'tc_hcl' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Total column of formyl radical +'tc_hco' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 201 ; + } +#Total column of hydrogen fluoride +'tc_hf' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 202 ; + } +#Total column of oxygen atom +'tc_o' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 203 ; + } +#Total column of excited oxygen atom +'tc_o1d' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 204 ; + } +#Total column of ground state oxygen atom +'tc_o3p' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 205 ; + } +#Total column of stratospheric aerosol +'tc_strataer' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 206 ; + } +#Ozone emissions +'e_go3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'e_ch4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'e_par' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'e_c2h4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'e_ole' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'e_rooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'e_nh3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'e_so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'e_nh4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'e_ra' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'e_pb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'e_ror' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'e_nh2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'e_c2h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'e_c3h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'e_c3h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'e_aco2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Emissions of carbon dioxide (chemistry) +'e_co2_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 57 ; + } +#Emissions of nitrous oxide (chemistry) +'e_n2o_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 58 ; + } +#Emissions of water vapour (chemistry) +'e_h2o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 59 ; + } +#Emissions of oxygen +'e_o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 60 ; + } +#Emissions of singlet oxygen +'e_o2_1s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 61 ; + } +#Emissions of singlet delta oxygen +'e_o2_1d' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 62 ; + } +#Emissions of chlorine dioxide +'e_oclo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 63 ; + } +#Emissions of chlorine nitrate +'e_clono2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 64 ; + } +#Emissions of hypochlorous acid +'e_hocl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 65 ; + } +#Emissions of chlorine +'e_cl2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 66 ; + } +#Emissions of nitryl chloride +'e_clno2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 67 ; + } +#Emissions of hydrogen bromide +'e_hbr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 68 ; + } +#Emissions of dichlorine dioxide +'e_cl2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 69 ; + } +#Emissions of hypobromous acid +'e_hobr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 70 ; + } +#Emissions of trichlorofluoromethane +'e_cfc11' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 71 ; + } +#Emissions of dichlorodifluoromethane +'e_cfc12' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 72 ; + } +#Emissions of trichlorotrifluoroethane +'e_cfc113' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 73 ; + } +#Emissions of dichlorotetrafluoroethane +'e_cfc114' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 74 ; + } +#Emissions of chloropentafluoroethane +'e_cfc115' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 75 ; + } +#Emissions of tetrachloromethane +'e_ccl4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 76 ; + } +#Emissions of methyl chloroform +'e_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 77 ; + } +#Emissions of methyl chloride +'e_ch3cl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 78 ; + } +#Emissions of chlorodifluoromethane +'e_hcfc22' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 79 ; + } +#Emissions of methyl bromide +'e_ch3br' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 80 ; + } +#Emissions of dibromodifluoromethane +'e_ha1202' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 81 ; + } +#Emissions of bromochlorodifluoromethane +'e_ha1211' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 82 ; + } +#Emissions of trifluorobromomethane +'e_ha1301' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 83 ; + } +#Emissions of cbrf2cbrf2 +'e_ha2402' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 84 ; + } +#Emissions of sulfuric acid +'e_h2so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 85 ; + } +#Emissions of nitrous acid +'e_hono' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 86 ; + } +#Emissions of alkanes low oh rate +'e_hc3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 87 ; + } +#Emissions of alkanes med oh rate +'e_hc5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 88 ; + } +#Emissions of alkanes high oh rate +'e_hc8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 89 ; + } +#Emissions of terminal alkenes +'e_olt' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 90 ; + } +#Emissions of internal alkenes +'e_oli' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 91 ; + } +#Emissions of ethylperoxy radical +'e_c2h5o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 92 ; + } +#Emissions of butadiene +'e_dien' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 93 ; + } +#Emissions of ethyl hydroperoxide +'e_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 94 ; + } +#Emissions of a-pinene cyclic terpenes +'e_api' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 95 ; + } +#Emissions of acetic acid +'e_ch3cooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 96 ; + } +#Emissions of d-limonene cyclic diene +'e_lim' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 97 ; + } +#Emissions of acetaldehyde +'e_ch3cho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 98 ; + } +#Emissions of toluene and less reactive aromatics +'e_tol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 99 ; + } +#Emissions of xylene and more reactive aromatics +'e_xyl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 100 ; + } +#Emissions of glycolaldehyde +'e_glyald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 101 ; + } +#Emissions of cresol +'e_cresol' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 102 ; + } +#Emissions of acetaldehyde and higher +'e_ald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 103 ; + } +#Emissions of peracetic acid +'e_ch3coooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 104 ; + } +#Emissions of ketones +'e_ket' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 105 ; + } +#Emissions of hoch2ch2o2 +'e_eo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 106 ; + } +#Emissions of glyoxal +'e_glyoxal' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 107 ; + } +#Emissions of hoch2ch2o +'e_eo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 108 ; + } +#Emissions of unsaturated dicarbonyls +'e_dcb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 109 ; + } +#Emissions of methacrolein +'e_macr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 110 ; + } +#Emissions of unsaturated hydroxy dicarbonyl +'e_udd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 111 ; + } +#Emissions of isopropyldioxidanyl +'e_c3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 112 ; + } +#Emissions of hydroxy ketone +'e_hket' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 113 ; + } +#Emissions of isopropyl hydroperoxide +'e_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 114 ; + } +#Emissions of c3h6oho2 +'e_po2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 115 ; + } +#Emissions of c3h6ohooh +'e_pooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 116 ; + } +#Emissions of higher organic peroxides +'e_op2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 117 ; + } +#Emissions of hydroxyacetone +'e_hyac' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 118 ; + } +#Emissions of peroxyacetic acid +'e_paa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 119 ; + } +#Emissions of ch3coch2o2 +'e_ro2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 120 ; + } +#Emissions of peroxy radical from c2h6 +'e_ethp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 121 ; + } +#Emissions of peroxy radical from hc3 +'e_hc3p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 122 ; + } +#Emissions of peroxy radical from hc5 +'e_hc5p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 123 ; + } +#Emissions of lumped alkenes +'e_bigene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 124 ; + } +#Emissions of peroxy radical from hc8 +'e_hc8p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 125 ; + } +#Emissions of lumped alkanes +'e_bigalk' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 126 ; + } +#Emissions of peroxy radical from c2h4 +'e_etep' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 127 ; + } +#Emissions of c4h8o +'e_mek' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 128 ; + } +#Emissions of peroxy radical from terminal alkenes +'e_oltp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 129 ; + } +#Emissions of c4h9o3 +'e_eneo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 130 ; + } +#Emissions of peroxy radical from internal alkenes +'e_olip' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 131 ; + } +#Emissions of ch3coch(oo)ch3 +'e_meko2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 132 ; + } +#Emissions of peroxy radical from c5h8 +'e_isopo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 133 ; + } +#Emissions of ch3coch(ooh)ch3 +'e_mekooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 134 ; + } +#Emissions of peroxy radical from a-pinene cyclic terpenes +'e_apip' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 135 ; + } +#Emissions of ch2=c(ch3)co3 +'e_mco3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 136 ; + } +#Emissions of peroxy radical from d-limonene cyclic diene +'e_limp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 137 ; + } +#Emissions of methylvinylketone +'e_mvk' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 138 ; + } +#Emissions of phenoxy radical +'e_pho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 139 ; + } +#Emissions of peroxy radical from toluene and less reactive aromatics +'e_tolp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 140 ; + } +#Emissions of ch3c(o)ch(oo)ch2oh +'e_macro2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 141 ; + } +#Emissions of peroxy radical from xylene and more reactive aromatics +'e_xylp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 142 ; + } +#Emissions of h3c(o)ch(ooh)ch2oh +'e_macrooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 143 ; + } +#Emissions of peroxy radical from cresol +'e_cslp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 144 ; + } +#Emissions of unsaturated pans +'e_mpan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 145 ; + } +#Emissions of unsaturated acyl peroxy radical +'e_tco3_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 146 ; + } +#Emissions of peroxy radical from ketones +'e_ketp' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 147 ; + } +#Emissions of c5h11o2 +'e_alko2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 148 ; + } +#Emissions of no3-alkenes adduct reacting to form carbonitrates +'e_olnn' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 149 ; + } +#Emissions of c5h11ooh +'e_alkooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 150 ; + } +#Emissions of no3-alkenes adduct reacting via decomposition +'e_olnd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 151 ; + } +#Emissions of hoch2c(ch3)=chcho +'e_bigald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 152 ; + } +#Emissions of c5h6o2 +'e_hydrald' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 153 ; + } +#Emissions of trop sulfuric acid +'e_sulf' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 154 ; + } +#Emissions of oxides +'e_ox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 155 ; + } +#Emissions of ch2chc(ch3)(oo)ch2ono2 +'e_isopno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 156 ; + } +#Emissions of c3 organic nitrate +'e_onitr' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 157 ; + } +#Emissions of chlorine oxides +'e_clox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 158 ; + } +#Emissions of bromine oxides +'e_brox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 159 ; + } +#Emissions of hoch2c(ooh)(ch3)chchoh +'e_xooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 160 ; + } +#Emissions of hoch2c(ooh)(ch3)ch=ch2 +'e_isopooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 161 ; + } +#Emissions of lumped aromatics +'e_toluene' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 162 ; + } +#Emissions of dimethyl sulfoxyde +'e_dmso' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 163 ; + } +#Emissions of c7h9o5 +'e_tolo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 164 ; + } +#Emissions of c7h10o5 +'e_tolooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 165 ; + } +#Emissions of hydrogensulfide +'e_h2s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 166 ; + } +#Emissions of c7h10o6 +'e_xoh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 167 ; + } +#Emissions of all nitrogen oxides +'e_noy' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 168 ; + } +#Emissions of chlorine family +'e_cly' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 169 ; + } +#Emissions of c10h16(oh)(oo) +'e_terpo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 170 ; + } +#Emissions of bromine family +'e_bry' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 171 ; + } +#Emissions of c10h18o3 +'e_terpooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 172 ; + } +#Emissions of nitrogen atom +'e_n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 173 ; + } +#Emissions of chlorine monoxide +'e_clo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 174 ; + } +#Emissions of chlorine atom +'e_cl_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 175 ; + } +#Emissions of bromine monoxide +'e_bro' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 176 ; + } +#Emissions of hydrogen atom +'e_h_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 177 ; + } +#Emissions of methyl group +'e_ch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 178 ; + } +#Emissions of aromatic-ho from toluene and less reactive aromatics +'e_addt' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 179 ; + } +#Emissions of aromatic-ho from xylene and more reactive aromatics +'e_addx' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 180 ; + } +#Emissions of ammonium nitrate +'e_nh4no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 181 ; + } +#Emissions of aromatic-ho from csl +'e_addc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 182 ; + } +#Emissions of secondary organic aerosol type 1 +'e_soa1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 183 ; + } +#Emissions of secondary organic aerosol type 2a +'e_soa2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 184 ; + } +#Emissions of secondary organic aerosol type 2b +'e_soa2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 185 ; + } +#Emissions of condensable gas type 1 +'e_sog1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 186 ; + } +#Emissions of condensable gas type 2a +'e_sog2a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 187 ; + } +#Emissions of condensable gas type 2b +'e_sog2b' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 188 ; + } +#Emissions of sulfur trioxide +'e_so3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 189 ; + } +#Emissions of carbonyl sulfide +'e_ocs_c' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 190 ; + } +#Emissions of bromine atom +'e_br' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 191 ; + } +#Emissions of bromine +'e_br2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 192 ; + } +#Emissions of bromine monochloride +'e_brcl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 193 ; + } +#Emissions of bromine nitrate +'e_brono2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 194 ; + } +#Emissions of dibromomethane +'e_ch2br2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 195 ; + } +#Emissions of methoxy radical +'e_ch3o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 196 ; + } +#Emissions of tribromomethane +'e_chbr3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 197 ; + } +#Emissions of asymmetric chlorine dioxide radical +'e_cloo' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 198 ; + } +#Emissions of hydrogen +'e_h2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 199 ; + } +#Emissions of hydrogen chloride +'e_hcl' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 200 ; + } +#Emissions of formyl radical +'e_hco' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 201 ; + } +#Emissions of hydrogen fluoride +'e_hf' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 202 ; + } +#Emissions of oxygen atom +'e_o' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 203 ; + } +#Emissions of excited oxygen atom +'e_o1d' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 204 ; + } +#Emissions of ground state oxygen atom +'e_o3p' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 205 ; + } +#Emissions of stratospheric aerosol +'e_strataer' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 206 ; + } +#Wildfire flux of paraffins +'parfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 207 ; + } +#Wildfire flux of olefines +'olefire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 208 ; + } +#Wildfire flux of aldehydes +'ald2fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 209 ; + } +#Wildfire flux of ketones +'ketfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 210 ; + } +#Wildfire flux of f a-pinene cyclic terpenes +'apifire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 211 ; + } +#Wildfire flux of toluene less reactive aromatics +'tolfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 212 ; + } +#Wildfire flux of xylene more reactive aromatics +'xylfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 213 ; + } +#Wildfire flux of d-limonene cyclic diene +'limfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 214 ; + } +#Wildfire flux of terminal alkenes +'oltfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 215 ; + } +#Wildfire flux of alkanes low oh rate +'hc3fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 216 ; + } +#Wildfire flux of alkanes med oh rate +'hc5fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 217 ; + } +#Wildfire flux of alkanes high oh rate +'hc8fire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 218 ; + } +#Wildfire flux of hydrogen cyanide +'hcnfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 219 ; + } +#Wildfire flux of acetonitrile +'ch3cnfire' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 220 ; + } +#Ozone deposition velocity +'dv_go3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Dry deposition velocity of carbon dioxide (chemistry) +'dv_co2_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 57 ; + } +#Dry deposition velocity of nitrous oxide (chemistry) +'dv_n2o_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 58 ; + } +#Dry deposition velocity of water vapour (chemistry) +'dv_h2o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 59 ; + } +#Dry deposition velocity of oxygen +'dv_o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 60 ; + } +#Dry deposition velocity of singlet oxygen +'dv_o2_1s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 61 ; + } +#Dry deposition velocity of singlet delta oxygen +'dv_o2_1d' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 62 ; + } +#Dry deposition velocity of chlorine dioxide +'dv_oclo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 63 ; + } +#Dry deposition velocity of chlorine nitrate +'dv_clono2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 64 ; + } +#Dry deposition velocity of hypochlorous acid +'dv_hocl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 65 ; + } +#Dry deposition velocity of chlorine +'dv_cl2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 66 ; + } +#Dry deposition velocity of nitryl chloride +'dv_clno2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 67 ; + } +#Dry deposition velocity of hydrogen bromide +'dv_hbr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 68 ; + } +#Dry deposition velocity of dichlorine dioxide +'dv_cl2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 69 ; + } +#Dry deposition velocity of hypobromous acid +'dv_hobr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 70 ; + } +#Dry deposition velocity of trichlorofluoromethane +'dv_cfc11' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 71 ; + } +#Dry deposition velocity of dichlorodifluoromethane +'dv_cfc12' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 72 ; + } +#Dry deposition velocity of trichlorotrifluoroethane +'dv_cfc113' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 73 ; + } +#Dry deposition velocity of dichlorotetrafluoroethane +'dv_cfc114' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 74 ; + } +#Dry deposition velocity of chloropentafluoroethane +'dv_cfc115' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 75 ; + } +#Dry deposition velocity of tetrachloromethane +'dv_ccl4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 76 ; + } +#Dry deposition velocity of methyl chloroform +'dv_ch3ccl3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 77 ; + } +#Dry deposition velocity of methyl chloride +'dv_ch3cl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 78 ; + } +#Dry deposition velocity of chlorodifluoromethane +'dv_hcfc22' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 79 ; + } +#Dry deposition velocity of methyl bromide +'dv_ch3br' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 80 ; + } +#Dry deposition velocity of dibromodifluoromethane +'dv_ha1202' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 81 ; + } +#Dry deposition velocity of bromochlorodifluoromethane +'dv_ha1211' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 82 ; + } +#Dry deposition velocity of trifluorobromomethane +'dv_ha1301' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 83 ; + } +#Dry deposition velocity of cbrf2cbrf2 +'dv_ha2402' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 84 ; + } +#Dry deposition velocity of sulfuric acid +'dv_h2so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 85 ; + } +#Dry deposition velocity of nitrous acid +'dv_hono' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 86 ; + } +#Dry deposition velocity of alkanes low oh rate +'dv_hc3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 87 ; + } +#Dry deposition velocity of alkanes med oh rate +'dv_hc5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 88 ; + } +#Dry deposition velocity of alkanes high oh rate +'dv_hc8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 89 ; + } +#Dry deposition velocity of terminal alkenes +'dv_olt' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 90 ; + } +#Dry deposition velocity of internal alkenes +'dv_oli' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 91 ; + } +#Dry deposition velocity of ethylperoxy radical +'dv_c2h5o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 92 ; + } +#Dry deposition velocity of butadiene +'dv_dien' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 93 ; + } +#Dry deposition velocity of ethyl hydroperoxide +'dv_c2h5ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 94 ; + } +#Dry deposition velocity of a-pinene cyclic terpenes +'dv_api' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 95 ; + } +#Dry deposition velocity of acetic acid +'dv_ch3cooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 96 ; + } +#Dry deposition velocity of d-limonene cyclic diene +'dv_lim' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 97 ; + } +#Dry deposition velocity of acetaldehyde +'dv_ch3cho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 98 ; + } +#Dry deposition velocity of toluene and less reactive aromatics +'dv_tol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 99 ; + } +#Dry deposition velocity of xylene and more reactive aromatics +'dv_xyl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 100 ; + } +#Dry deposition velocity of glycolaldehyde +'dv_glyald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 101 ; + } +#Dry deposition velocity of cresol +'dv_cresol' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 102 ; + } +#Dry deposition velocity of acetaldehyde and higher +'dv_ald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 103 ; + } +#Dry deposition velocity of peracetic acid +'dv_ch3coooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 104 ; + } +#Dry deposition velocity of ketones +'dv_ket' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 105 ; + } +#Dry deposition velocity of hoch2ch2o2 +'dv_eo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 106 ; + } +#Dry deposition velocity of glyoxal +'dv_glyoxal' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 107 ; + } +#Dry deposition velocity of hoch2ch2o +'dv_eo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 108 ; + } +#Dry deposition velocity of unsaturated dicarbonyls +'dv_dcb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 109 ; + } +#Dry deposition velocity of methacrolein +'dv_macr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 110 ; + } +#Dry deposition velocity of unsaturated hydroxy dicarbonyl +'dv_udd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 111 ; + } +#Dry deposition velocity of isopropyldioxidanyl +'dv_c3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 112 ; + } +#Dry deposition velocity of hydroxy ketone +'dv_hket' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 113 ; + } +#Dry deposition velocity of isopropyl hydroperoxide +'dv_c3h7ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 114 ; + } +#Dry deposition velocity of c3h6oho2 +'dv_po2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 115 ; + } +#Dry deposition velocity of c3h6ohooh +'dv_pooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 116 ; + } +#Dry deposition velocity of higher organic peroxides +'dv_op2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 117 ; + } +#Dry deposition velocity of hydroxyacetone +'dv_hyac' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 118 ; + } +#Dry deposition velocity of peroxyacetic acid +'dv_paa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 119 ; + } +#Dry deposition velocity of ch3coch2o2 +'dv_ro2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 120 ; + } +#Dry deposition velocity of peroxy radical from c2h6 +'dv_ethp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 121 ; + } +#Dry deposition velocity of peroxy radical from hc3 +'dv_hc3p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 122 ; + } +#Dry deposition velocity of peroxy radical from hc5 +'dv_hc5p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 123 ; + } +#Dry deposition velocity of lumped alkenes +'dv_bigene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 124 ; + } +#Dry deposition velocity of peroxy radical from hc8 +'dv_hc8p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 125 ; + } +#Dry deposition velocity of lumped alkanes +'dv_bigalk' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 126 ; + } +#Dry deposition velocity of peroxy radical from c2h4 +'dv_etep' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 127 ; + } +#Dry deposition velocity of c4h8o +'dv_mek' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 128 ; + } +#Dry deposition velocity of peroxy radical from terminal alkenes +'dv_oltp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 129 ; + } +#Dry deposition velocity of c4h9o3 +'dv_eneo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 130 ; + } +#Dry deposition velocity of peroxy radical from internal alkenes +'dv_olip' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 131 ; + } +#Dry deposition velocity of ch3coch(oo)ch3 +'dv_meko2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 132 ; + } +#Dry deposition velocity of peroxy radical from c5h8 +'dv_isopo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 133 ; + } +#Dry deposition velocity of ch3coch(ooh)ch3 +'dv_mekooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 134 ; + } +#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes +'dv_apip' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 135 ; + } +#Dry deposition velocity of ch2=c(ch3)co3 +'dv_mco3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 136 ; + } +#Dry deposition velocity of peroxy radical from d-limonene cyclic diene +'dv_limp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 137 ; + } +#Dry deposition velocity of methylvinylketone +'dv_mvk' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 138 ; + } +#Dry deposition velocity of phenoxy radical +'dv_pho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 139 ; + } +#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics +'dv_tolp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 140 ; + } +#Dry deposition velocity of ch3c(o)ch(oo)ch2oh +'dv_macro2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 141 ; + } +#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics +'dv_xylp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 142 ; + } +#Dry deposition velocity of h3c(o)ch(ooh)ch2oh +'dv_macrooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 143 ; + } +#Dry deposition velocity of peroxy radical from cresol +'dv_cslp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 144 ; + } +#Dry deposition velocity of unsaturated pans +'dv_mpan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 145 ; + } +#Dry deposition velocity of unsaturated acyl peroxy radical +'dv_tco3_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 146 ; + } +#Dry deposition velocity of peroxy radical from ketones +'dv_ketp' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 147 ; + } +#Dry deposition velocity of c5h11o2 +'dv_alko2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 148 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates +'dv_olnn' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 149 ; + } +#Dry deposition velocity of c5h11ooh +'dv_alkooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 150 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting via decomposition +'dv_olnd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 151 ; + } +#Dry deposition velocity of hoch2c(ch3)=chcho +'dv_bigald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 152 ; + } +#Dry deposition velocity of c5h6o2 +'dv_hydrald' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 153 ; + } +#Dry deposition velocity of trop sulfuric acid +'dv_sulf' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 154 ; + } +#Dry deposition velocity of oxides +'dv_ox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 155 ; + } +#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 +'dv_isopno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 156 ; + } +#Dry deposition velocity of c3 organic nitrate +'dv_onitr' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 157 ; + } +#Dry deposition velocity of chlorine oxides +'dv_clox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 158 ; + } +#Dry deposition velocity of bromine oxides +'dv_brox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 159 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh +'dv_xooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 160 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 +'dv_isopooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 161 ; + } +#Dry deposition velocity of lumped aromatics +'dv_toluene' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 162 ; + } +#Dry deposition velocity of dimethyl sulfoxyde +'dv_dmso' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 163 ; + } +#Dry deposition velocity of c7h9o5 +'dv_tolo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 164 ; + } +#Dry deposition velocity of c7h10o5 +'dv_tolooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 165 ; + } +#Dry deposition velocity of hydrogensulfide +'dv_h2s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 166 ; + } +#Dry deposition velocity of c7h10o6 +'dv_xoh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 167 ; + } +#Dry deposition velocity of all nitrogen oxides +'dv_noy' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 168 ; + } +#Dry deposition velocity of chlorine family +'dv_cly' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 169 ; + } +#Dry deposition velocity of c10h16(oh)(oo) +'dv_terpo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 170 ; + } +#Dry deposition velocity of bromine family +'dv_bry' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 171 ; + } +#Dry deposition velocity of c10h18o3 +'dv_terpooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 172 ; + } +#Dry deposition velocity of nitrogen atom +'dv_n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 173 ; + } +#Dry deposition velocity of chlorine monoxide +'dv_clo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 174 ; + } +#Dry deposition velocity of chlorine atom +'dv_cl_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 175 ; + } +#Dry deposition velocity of bromine monoxide +'dv_bro' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 176 ; + } +#Dry deposition velocity of hydrogen atom +'dv_h_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 177 ; + } +#Dry deposition velocity of methyl group +'dv_ch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 178 ; + } +#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics +'dv_addt' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 179 ; + } +#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics +'dv_addx' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 180 ; + } +#Dry deposition velocity of ammonium nitrate +'dv_nh4no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 181 ; + } +#Dry deposition velocity of aromatic-ho from csl +'dv_addc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 182 ; + } +#Dry deposition velocity of secondary organic aerosol type 1 +'dv_soa1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 183 ; + } +#Dry deposition velocity of secondary organic aerosol type 2a +'dv_soa2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 184 ; + } +#Dry deposition velocity of secondary organic aerosol type 2b +'dv_soa2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 185 ; + } +#Dry deposition velocity of condensable gas type 1 +'dv_sog1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 186 ; + } +#Dry deposition velocity of condensable gas type 2a +'dv_sog2a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 187 ; + } +#Dry deposition velocity of condensable gas type 2b +'dv_sog2b' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 188 ; + } +#Dry deposition velocity of sulfur trioxide +'dv_so3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 189 ; + } +#Dry deposition velocity of carbonyl sulfide +'dv_ocs_c' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 190 ; + } +#Dry deposition velocity of bromine atom +'dv_br' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 191 ; + } +#Dry deposition velocity of bromine +'dv_br2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 192 ; + } +#Dry deposition velocity of bromine monochloride +'dv_brcl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 193 ; + } +#Dry deposition velocity of bromine nitrate +'dv_brono2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 194 ; + } +#Dry deposition velocity of dibromomethane +'dv_ch2br2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 195 ; + } +#Dry deposition velocity of methoxy radical +'dv_ch3o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 196 ; + } +#Dry deposition velocity of tribromomethane +'dv_chbr3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 197 ; + } +#Dry deposition velocity of asymmetric chlorine dioxide radical +'dv_cloo' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 198 ; + } +#Dry deposition velocity of hydrogen +'dv_h2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 199 ; + } +#Dry deposition velocity of hydrogen chloride +'dv_hcl' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 200 ; + } +#Dry deposition velocity of formyl radical +'dv_hco' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 201 ; + } +#Dry deposition velocity of hydrogen fluoride +'dv_hf' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 202 ; + } +#Dry deposition velocity of oxygen atom +'dv_o' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 203 ; + } +#Dry deposition velocity of excited oxygen atom +'dv_o1d' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 204 ; + } +#Dry deposition velocity of ground state oxygen atom +'dv_o3p' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 205 ; + } +#Dry deposition velocity of stratospheric aerosol +'dv_strataer' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 206 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'cbh' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Horizontal visibility +'hvis' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'swi1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of zero-degree wet-bulb temperature +'hwbt0' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'hwbt1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'gppbfas' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'recbfas' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'aco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'aco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'aco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'fco2nee' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'fco2gpp' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'fco2rec' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'tcrw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'tcsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'ccf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'stf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'swv' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'ist' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Evaporation from the top of canopy +'evatc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 100 ; + } +#Evaporation from bare soil +'evabs' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 101 ; + } +#Evaporation from open water surfaces excluding oceans +'evaow' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 102 ; + } +#Evaporation from vegetation transpiration +'evavt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 103 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'tccsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#Irrigation fraction +'irrfr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'pev' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'irr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'tcclw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'strfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'clgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'asngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'rsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'sltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'10fggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'presgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'obctgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10fg6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'bvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'zgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'qgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'spgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'tcwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'sdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'chnkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'ghgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'rgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'10ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'10vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'2dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'srgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'algrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'egrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'rogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'10sigrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'icegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'tsru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'ttru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'clw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'cf' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'mvv' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'2tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'2tag1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'2tag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'2talm1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'2talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'saip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'whip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'10gp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'capep' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10spg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10spg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre wind gust of at least 25 m/s +'10fgg25' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + } +#2 metre temperature less than 273.15 K +'2tl273' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 2 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 4 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'zp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'tap' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'tccp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'10sp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'tpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'swhp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'mwpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10spg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10spg15' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10spg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10spg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10spg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10gpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10gpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10gpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10gpg75' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10gpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'hmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'wmb' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'wdw' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'pp1d' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Peak wave period +'pp1d' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'cdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'mdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'shts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'mdts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'mpts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'sdhs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'mdwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'msqs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'wind' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'awh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'arrc' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'dwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'2dsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'2dfd' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'bfi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'wsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'ocs' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'ocpd' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'ocw' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'uv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'ut' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'vt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'uu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'vv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Sea water potential temperature +'thetao' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'so' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'wo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'vvs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'vdf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'dep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sea water sigma theta +'sigmat' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'uv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'ut' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'vt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'uu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'vv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level previous timestep +'sl_1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Ocean barotropic stream function +'stfbarot' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'sh' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'crl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#Surface downward eastward stress +'taueo' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'tauno' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'asr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'pme' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'shf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'hfc' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'umax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'smax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Layer Thickness at scalar points +'ldp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'pti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'ptae' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'bpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'apt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'ptbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'as' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'sali' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'sale' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'bsal' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'salbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'fgbt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'fgbs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'bpa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'fgbp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'pta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'10fgrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'pwcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Large-scale precipitation +'lsprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'sfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'ghrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'rrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'ewssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'nsssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'erea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'srcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'vegrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'rorea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'vurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'vvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'wurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'csfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'lsfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'ccrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'falrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'10wsrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'moflrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'~' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'hsdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'vima' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'vit' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'viwv' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'vilw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'viiw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'vioz' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'vike' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'vithe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'vipie' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'vipile' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'vitoe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'viec' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'vimae' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'viman' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'vikee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'viken' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'vithen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'vige' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'vign' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'vitoee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'vitoen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'vioze' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'viozn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'vimad' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'viked' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'vithed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'viwvd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'vigd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'vitoed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'viozd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'srta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'trta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'srtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'trtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'umfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'dmfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'udra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'ddra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'tpfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'tdcha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'ttpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'qtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'utpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'vtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'tsw' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'strfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'vpota' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'pta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'cla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'asna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'rsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'slta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'esa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'smlta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'sdura' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'10fga' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'monta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mean2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'pva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'obcta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'bva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'za' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'qa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'spa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'tcwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'voa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'sda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'chnka' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'snra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'tnra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'gha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'ra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'blha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'10ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'10va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'2da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'sra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'ala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'ea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'hcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'roa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'10sia' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'sia' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'tpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'skta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'fala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'cca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'iaa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'esrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Mean large-scale precipitation fraction +'mlspfr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Mean large-scale precipitation rate +'mlsprt' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'cprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'mtsfr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Mean surface sensible heat flux +'msshfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'mslhfl' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface net radiation flux +'msnrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Mean short-wave heating rate +'mswhr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Mean long-wave heating rate +'mlwhr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Mean surface downward solar radiation flux +'msdsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'msdtrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'msnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'msntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'mtnsrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'mtntrf' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'ewssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'nsssra' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'erate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean sunshine duration rate +'msdr' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Mean runoff rate +'mrort' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'soira' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'tprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'lspara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate anomaly +'mcpra' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'sshfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'slhfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'ssrdara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'strdara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'ssrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'strara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'tsrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'ttrara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'ewssara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'nsssara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomalous rate of accumulation +'evara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomalous rate of accumulation +'roara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomalous rate of accumulation +'soiara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Liquid water potential temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'tsw' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'str' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Field capacity +'cap' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'wiltsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'sr' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'tsm' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'2ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'clc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'qc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'twater' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'bas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'top_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'dt_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'pp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'w_i' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'t_snow' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'t_ice' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'cape_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdep' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerlts' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'aerscc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#CO2 column-mean molar fraction +'tcco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#CH4 column-mean molar fraction +'tcch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire flux of Carbon Dioxide +'co2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 80 ; + } +#Wildfire flux of Carbon Monoxide +'cofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 81 ; + } +#Wildfire flux of Methane +'ch4fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'nmhcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 83 ; + } +#Wildfire flux of Hydrogen +'h2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'noxfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 85 ; + } +#Wildfire flux of Nitrous Oxide +'n2ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'pm2p5fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 87 ; + } +#Wildfire flux of Total Particulate Matter +'tpmfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'tcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 89 ; + } +#Wildfire flux of Organic Carbon +'ocfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 90 ; + } +#Wildfire flux of Black Carbon +'bcfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 91 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'nox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'ra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'aersccdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'ch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'oafirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'radiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcradiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'tpoc' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'zust' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'meantcc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'dctb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'tplb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'tplt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'sts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'msls' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'2ts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'tps' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'ust' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'vst' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'so2fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'ch3ohfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'c2h5ohfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'c3h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'c2h4fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'c3h6fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'c5h8fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'terpenesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'toluenefire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'hialkenesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'hialkanesfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'ch2ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'c2h4ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'c3h6ofire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'nh3fire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'c2h6sfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 117 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def new file mode 100644 index 00000000..524fdb65 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -0,0 +1,144 @@ +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'ocu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'ocv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'sithick' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'zos' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#100 metre U wind component +'100u' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; +} +#100 metre V wind component +'100v' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; +} +#100 metre wind speed +'100si' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; +} +#0 degrees C isothermal level (atm) +'deg0l' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; +} +#Depth of 20C isotherm +'t20d' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Average salinity in the upper 300m +'sav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; +} +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; +} +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; +} +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; +} +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; +} +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; +} +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; +} +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; +} +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; +} +#Total column cloud liquid water +'tclw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; +} +#Total column cloud ice water +'tciw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; +} +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/units.def b/eccodes/definitions/grib2/localConcepts/ecmf/units.def new file mode 100644 index 00000000..fa2e1ac0 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/units.def @@ -0,0 +1,22056 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 100 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 100 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Equivalent potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Montgomery potential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'dimensionless' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'m of water equivalent' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 254 ; + } +#Large-scale precipitation +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'~' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'radians' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#TOA incident solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Convective snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'%' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'radians' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'N m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'N m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Injection height (from IS4FIRES) +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 60 ; + } +#Particulate matter d < 1 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'deg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Wildfire Flux of Ethane (C2H6) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 118 ; + } +#Mean altitude of maximum injection +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#Wildfire day-time radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 167 ; + } +#Wildfire night-time radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 169 ; + } +#Wildfire day-time inverse variance of radiative power +'W**-2 m**4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 177 ; + } +#Wildfire night-time inverse variance of radiative power +'W**-2 m**4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 179 ; + } +#UV visible albedo for direct radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Wildfire Flux of Toluene (C7H8) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 231 ; + } +#Wildfire Flux of Benzene (C6H6) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 232 ; + } +#Wildfire Flux of Xylene (C8H10) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 233 ; + } +#Wildfire Flux of Butenes (C4H8) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 234 ; + } +#Wildfire Flux of Pentenes (C5H10) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 235 ; + } +#Wildfire Flux of Hexene (C6H12) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 236 ; + } +#Wildfire Flux of Octene (C8H16) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 237 ; + } +#Wildfire Flux of Butanes (C4H10) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 238 ; + } +#Wildfire Flux of Pentanes (C5H12) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 239 ; + } +#Wildfire Flux of Hexanes (C6H14) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 240 ; + } +#Wildfire Flux of Heptane (C7H16) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 241 ; + } +#Altitude of plume bottom +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'m**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'m**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Aerosol type 13 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'m' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'m' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Nitrate fine mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +#Random pattern 1 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 101 ; + } +#Random pattern 2 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 102 ; + } +#Random pattern 3 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 103 ; + } +#Random pattern 4 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 104 ; + } +#Random pattern 5 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 105 ; + } +#Random pattern 6 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 106 ; + } +#Random pattern 7 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 107 ; + } +#Random pattern 8 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 108 ; + } +#Random pattern 9 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 109 ; + } +#Random pattern 10 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 110 ; + } +#Random pattern 11 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 111 ; + } +#Random pattern 12 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 112 ; + } +#Random pattern 13 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 113 ; + } +#Random pattern 14 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 114 ; + } +#Random pattern 15 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 115 ; + } +#Random pattern 16 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 116 ; + } +#Random pattern 17 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 117 ; + } +#Random pattern 18 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 118 ; + } +#Random pattern 19 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 119 ; + } +#Random pattern 20 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 120 ; + } +#Random pattern 21 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 121 ; + } +#Random pattern 22 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 122 ; + } +#Random pattern 23 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 123 ; + } +#Random pattern 24 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 124 ; + } +#Random pattern 25 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 125 ; + } +#Random pattern 26 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 126 ; + } +#Random pattern 27 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 127 ; + } +#Random pattern 28 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 128 ; + } +#Random pattern 29 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 129 ; + } +#Random pattern 30 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 130 ; + } +#Random pattern 31 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 131 ; + } +#Random pattern 32 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 132 ; + } +#Random pattern 33 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 133 ; + } +#Random pattern 34 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 134 ; + } +#Random pattern 35 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 135 ; + } +#Random pattern 36 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 136 ; + } +#Random pattern 37 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 137 ; + } +#Random pattern 38 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 138 ; + } +#Random pattern 39 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 139 ; + } +#Random pattern 40 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 140 ; + } +#Random pattern 41 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 141 ; + } +#Random pattern 42 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 142 ; + } +#Random pattern 43 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 143 ; + } +#Random pattern 44 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 144 ; + } +#Random pattern 45 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 145 ; + } +#Random pattern 46 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 146 ; + } +#Random pattern 47 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 147 ; + } +#Random pattern 48 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 148 ; + } +#Random pattern 49 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 149 ; + } +#Random pattern 50 for SPP scheme +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 150 ; + } +#Cosine of solar zenith angle +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +#UV biologically effective dose +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +#UV biologically effective dose clear-sky +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +#Total surface UV spectral flux (280-285 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +#Total surface UV spectral flux (285-290 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +#Total surface UV spectral flux (290-295 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +#Total surface UV spectral flux (295-300 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +#Total surface UV spectral flux (300-305 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +#Total surface UV spectral flux (305-310 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +#Total surface UV spectral flux (310-315 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +#Total surface UV spectral flux (315-320 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +#Total surface UV spectral flux (320-325 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +#Total surface UV spectral flux (325-330 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +#Total surface UV spectral flux (330-335 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +#Total surface UV spectral flux (335-340 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +#Total surface UV spectral flux (340-345 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +#Total surface UV spectral flux (345-350 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +#Total surface UV spectral flux (350-355 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +#Total surface UV spectral flux (355-360 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +#Total surface UV spectral flux (360-365 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +#Total surface UV spectral flux (365-370 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +#Total surface UV spectral flux (370-375 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +#Total surface UV spectral flux (375-380 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +#Total surface UV spectral flux (380-385 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +#Total surface UV spectral flux (385-390 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +#Total surface UV spectral flux (390-395 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +#Total surface UV spectral flux (395-400 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +#Clear-sky surface UV spectral flux (280-285 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +#Clear-sky surface UV spectral flux (285-290 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +#Clear-sky surface UV spectral flux (290-295 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +#Clear-sky surface UV spectral flux (295-300 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +#Clear-sky surface UV spectral flux (300-305 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +#Clear-sky surface UV spectral flux (305-310 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +#Clear-sky surface UV spectral flux (310-315 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +#Clear-sky surface UV spectral flux (315-320 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +#Clear-sky surface UV spectral flux (320-325 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +#Clear-sky surface UV spectral flux (325-330 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +#Clear-sky surface UV spectral flux (330-335 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +#Clear-sky surface UV spectral flux (335-340 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +#Clear-sky surface UV spectral flux (340-345 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +#Clear-sky surface UV spectral flux (345-350 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +#Clear-sky surface UV spectral flux (350-355 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +#Clear-sky surface UV spectral flux (355-360 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +#Clear-sky surface UV spectral flux (360-365 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +#Clear-sky surface UV spectral flux (365-370 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +#Clear-sky surface UV spectral flux (370-375 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +#Clear-sky surface UV spectral flux (375-380 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +#Clear-sky surface UV spectral flux (380-385 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +#Clear-sky surface UV spectral flux (385-390 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +#Clear-sky surface UV spectral flux (390-395 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +#Clear-sky surface UV spectral flux (395-400 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +#Profile of optical thickness at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +#Source/gain of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +#Source/gain of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +#Source/gain of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +#Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +#Dry deposition of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +#Dry deposition of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +#Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +#Sedimentation of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +#Sedimentation of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +#Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +#Negative fixer of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +#Negative fixer of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +#Vertically integrated mass of sea salt aerosol (5 - 20 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +#Sea salt aerosol (0.03 - 0.5 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +#Sea salt aerosol (0.5 - 5 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +#Sea salt aerosol (5 - 20 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +#Source/gain of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +#Source/gain of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +#Source/gain of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +#Dry deposition of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +#Dry deposition of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +#Dry deposition of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +#Sedimentation of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +#Sedimentation of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +#Sedimentation of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +#Negative fixer of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +#Negative fixer of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +#Negative fixer of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +#Vertically integrated mass of dust aerosol (0.55 - 9 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +#Vertically integrated mass of dust aerosol (9 - 20 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +#Dust aerosol (0.03 - 0.55 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +#Dust aerosol (0.55 - 9 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +#Dust aerosol (9 - 20 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +#Source/gain of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +#Source/gain of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +#Dry deposition of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +#Dry deposition of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +#Sedimentation of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +#Sedimentation of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +#Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +#Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +#Negative fixer of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +#Negative fixer of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +#Vertically integrated mass of hydrophobic organic matter aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +#Vertically integrated mass of hydrophilic organic matter aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +#Hydrophobic organic matter aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +#Hydrophilic organic matter aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +#Source/gain of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +#Source/gain of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +#Dry deposition of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +#Dry deposition of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +#Sedimentation of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +#Sedimentation of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +#Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +#Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +#Negative fixer of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +#Negative fixer of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +#Vertically integrated mass of hydrophobic black carbon aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +#Vertically integrated mass of hydrophilic black carbon aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +#Hydrophobic black carbon aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +#Hydrophilic black carbon aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +#Source/gain of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +#Dry deposition of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +#Sedimentation of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +#Wet deposition of sulphate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +#Wet deposition of sulphate aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +#Negative fixer of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +#Vertically integrated mass of sulphate aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +#Sulphate aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'s' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Asymmetry factor at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Asymmetry factor at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Asymmetry factor at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Asymmetry factor at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Asymmetry factor at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Asymmetry factor at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Asymmetry factor at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Asymmetry factor at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Asymmetry factor at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Asymmetry factor at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Asymmetry factor at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Asymmetry factor at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Asymmetry factor at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Asymmetry factor at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Asymmetry factor at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Asymmetry factor at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Asymmetry factor at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Asymmetry factor at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Asymmetry factor at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Source/gain of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Source/gain of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Dry deposition of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Dry deposition of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } +#Sedimentation of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Sedimentation of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Wet deposition of fine-mode nitrate aerosol by convective precipitation +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 65534 ; + } +#Wet deposition of coarse-mode nitrate aerosol by convective precipitation +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Negative fixer of fine-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + } +#Negative fixer of coarse-mode nitrate aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 65533 ; + } +#Vertically integrated mass of fine-mode nitrate aerosol +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + aerosolType = 65534 ; + } +#Vertically integrated mass of coarse-mode nitrate aerosol +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Fine-mode nitrate aerosol optical depth at 550 nm +'dimensionless' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 65534 ; + } +#Coarse-mode nitrate aerosol optical depth at 550 nm +'dimensionless' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 65533 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + scaledValueOfFirstWavelength = 55 ; + } +#Source/gain of ammonium aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Negative fixer of ammonium aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Carbon dioxide (chemistry) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 57 ; + } +#Nitrous oxide (chemistry) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 58 ; + } +#Water vapour (chemistry) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 59 ; + } +#Oxygen +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 60 ; + } +#Singlet oxygen +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 61 ; + } +#Singlet delta oxygen +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 62 ; + } +#Chlorine dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Chlorine +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 66 ; + } +#Nitryl chloride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 67 ; + } +#Hydrogen bromide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Dichlorine dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 69 ; + } +#Hypobromous acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Trichlorofluoromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 71 ; + } +#Dichlorodifluoromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 72 ; + } +#Trichlorotrifluoroethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 73 ; + } +#Dichlorotetrafluoroethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 74 ; + } +#Chloropentafluoroethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 75 ; + } +#Tetrachloromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 76 ; + } +#Methyl chloroform +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 77 ; + } +#Methyl chloride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Chlorodifluoromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 79 ; + } +#Methyl bromide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Dibromodifluoromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 81 ; + } +#Bromochlorodifluoromethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 82 ; + } +#Trifluorobromomethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 83 ; + } +#Cbrf2cbrf2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 84 ; + } +#Sulfuric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Alkanes low oh rate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 87 ; + } +#Alkanes med oh rate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 88 ; + } +#Alkanes high oh rate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 89 ; + } +#Terminal alkenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 90 ; + } +#Internal alkenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 91 ; + } +#Ethylperoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 92 ; + } +#Butadiene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 93 ; + } +#Ethyl hydroperoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 94 ; + } +#A-pinene cyclic terpenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 95 ; + } +#Acetic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#D-limonene cyclic diene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 97 ; + } +#Acetaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 98 ; + } +#Toluene and less reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 99 ; + } +#Xylene and more reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 100 ; + } +#Glycolaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 101 ; + } +#Cresol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 102 ; + } +#Acetaldehyde and higher +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 103 ; + } +#Peracetic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 104 ; + } +#Ketones +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 105 ; + } +#Hoch2ch2o2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 106 ; + } +#Glyoxal +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 107 ; + } +#Hoch2ch2o +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 108 ; + } +#Unsaturated dicarbonyls +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 109 ; + } +#Methacrolein +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 110 ; + } +#Unsaturated hydroxy dicarbonyl +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 111 ; + } +#Isopropyldioxidanyl +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 112 ; + } +#Hydroxy ketone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 113 ; + } +#Isopropyl hydroperoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 114 ; + } +#C3h6oho2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 115 ; + } +#C3h6ohooh +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 116 ; + } +#Higher organic peroxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 117 ; + } +#Hydroxyacetone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 118 ; + } +#Peroxyacetic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 119 ; + } +#Ch3coch2o2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 120 ; + } +#Peroxy radical from c2h6 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 121 ; + } +#Peroxy radical from hc3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 122 ; + } +#Peroxy radical from hc5 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 123 ; + } +#Lumped alkenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 124 ; + } +#Peroxy radical from hc8 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 125 ; + } +#Lumped alkanes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 126 ; + } +#Peroxy radical from c2h4 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 127 ; + } +#C4h8o +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 128 ; + } +#Peroxy radical from terminal alkenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 129 ; + } +#C4h9o3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 130 ; + } +#Peroxy radical from internal alkenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 131 ; + } +#Ch3coch(oo)ch3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 132 ; + } +#Peroxy radical from c5h8 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 133 ; + } +#Ch3coch(ooh)ch3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 134 ; + } +#Peroxy radical from a-pinene cyclic terpenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 135 ; + } +#Ch2=c(ch3)co3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 136 ; + } +#Peroxy radical from d-limonene cyclic diene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 137 ; + } +#Methylvinylketone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 138 ; + } +#Phenoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 139 ; + } +#Peroxy radical from toluene and less reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 140 ; + } +#Ch3c(o)ch(oo)ch2oh +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 141 ; + } +#Peroxy radical from xylene and more reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 142 ; + } +#H3c(o)ch(ooh)ch2oh +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 143 ; + } +#Peroxy radical from cresol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 144 ; + } +#Unsaturated pans +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 145 ; + } +#Unsaturated acyl peroxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 146 ; + } +#Peroxy radical from ketones +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 147 ; + } +#C5h11o2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 148 ; + } +#No3-alkenes adduct reacting to form carbonitrates +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 149 ; + } +#C5h11ooh +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 150 ; + } +#No3-alkenes adduct reacting via decomposition +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 151 ; + } +#Hoch2c(ch3)=chcho +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 152 ; + } +#C5h6o2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 153 ; + } +#Trop sulfuric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 154 ; + } +#Oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 155 ; + } +#Ch2chc(ch3)(oo)ch2ono2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 156 ; + } +#C3 organic nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 157 ; + } +#Chlorine oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 158 ; + } +#Bromine oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 159 ; + } +#Hoch2c(ooh)(ch3)chchoh +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 160 ; + } +#Hoch2c(ooh)(ch3)ch=ch2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 161 ; + } +#Lumped aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 162 ; + } +#Dimethyl sulfoxyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 163 ; + } +#C7h9o5 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 164 ; + } +#C7h10o5 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 165 ; + } +#Hydrogensulfide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 166 ; + } +#C7h10o6 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 167 ; + } +#All nitrogen oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 168 ; + } +#Chlorine family +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 169 ; + } +#C10h16(oh)(oo) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 170 ; + } +#Bromine family +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 171 ; + } +#C10h18o3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 172 ; + } +#Nitrogen atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 173 ; + } +#Chlorine monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Chlorine atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 175 ; + } +#Bromine monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Hydrogen atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 177 ; + } +#Methyl group +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 178 ; + } +#Aromatic-ho from toluene and less reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 179 ; + } +#Aromatic-ho from xylene and more reactive aromatics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 180 ; + } +#Ammonium nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 181 ; + } +#Aromatic-ho from csl +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 182 ; + } +#Secondary organic aerosol type 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 183 ; + } +#Secondary organic aerosol type 2a +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 184 ; + } +#Secondary organic aerosol type 2b +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 185 ; + } +#Condensable gas type 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 186 ; + } +#Condensable gas type 2a +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 187 ; + } +#Condensable gas type 2b +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 188 ; + } +#Sulfur trioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 189 ; + } +#Carbonyl sulfide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 190 ; + } +#Bromine atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 191 ; + } +#Bromine +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 192 ; + } +#Bromine monochloride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 193 ; + } +#Bromine nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Dibromomethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 195 ; + } +#Methoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 196 ; + } +#Tribromomethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 197 ; + } +#Asymmetric chlorine dioxide radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 198 ; + } +#Hydrogen +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 199 ; + } +#Hydrogen chloride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Formyl radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 201 ; + } +#Hydrogen fluoride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 202 ; + } +#Oxygen atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 203 ; + } +#Excited oxygen atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 204 ; + } +#Ground state oxygen atom +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 205 ; + } +#Stratospheric aerosol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 206 ; + } +#Total column hydrogen peroxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Total column of carbon dioxide (chemistry) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 57 ; + } +#Total column of nitrous oxide (chemistry) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 58 ; + } +#Total column of water vapour (chemistry) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 59 ; + } +#Total column of oxygen +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 60 ; + } +#Total column of singlet oxygen +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 61 ; + } +#Total column of singlet delta oxygen +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 62 ; + } +#Total column of chlorine dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of chlorine +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 66 ; + } +#Total column of nitryl chloride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 67 ; + } +#Total column of hydrogen bromide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of dichlorine dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 69 ; + } +#Total column of hypobromous acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of trichlorofluoromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 71 ; + } +#Total column of dichlorodifluoromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 72 ; + } +#Total column of trichlorotrifluoroethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 73 ; + } +#Total column of dichlorotetrafluoroethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 74 ; + } +#Total column of chloropentafluoroethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 75 ; + } +#Total column of tetrachloromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 76 ; + } +#Total column of methyl chloroform +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 77 ; + } +#Total column of methyl chloride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of chlorodifluoromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 79 ; + } +#Total column of methyl bromide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of dibromodifluoromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 81 ; + } +#Total column of bromochlorodifluoromethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 82 ; + } +#Total column of trifluorobromomethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 83 ; + } +#Total column of cbrf2cbrf2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 84 ; + } +#Total column of sulfuric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 85 ; + } +#Total column of nitrous acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of alkanes low oh rate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 87 ; + } +#Total column of alkanes med oh rate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 88 ; + } +#Total column of alkanes high oh rate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 89 ; + } +#Total column of terminal alkenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 90 ; + } +#Total column of internal alkenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 91 ; + } +#Total column of ethylperoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 92 ; + } +#Total column of butadiene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 93 ; + } +#Total column of ethyl hydroperoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 94 ; + } +#Total column of a-pinene cyclic terpenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 95 ; + } +#Total column of acetic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of d-limonene cyclic diene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 97 ; + } +#Total column of acetaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 98 ; + } +#Total column of toluene and less reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 99 ; + } +#Total column of xylene and more reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 100 ; + } +#Total column of glycolaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 101 ; + } +#Total column of cresol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 102 ; + } +#Total column of acetaldehyde and higher +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 103 ; + } +#Total column of peracetic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 104 ; + } +#Total column of ketones +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 105 ; + } +#Total column of hoch2ch2o2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 106 ; + } +#Total column of glyoxal +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 107 ; + } +#Total column of hoch2ch2o +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 108 ; + } +#Total column of unsaturated dicarbonyls +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 109 ; + } +#Total column of methacrolein +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 110 ; + } +#Total column of unsaturated hydroxy dicarbonyl +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 111 ; + } +#Total column of isopropyldioxidanyl +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 112 ; + } +#Total column of hydroxy ketone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 113 ; + } +#Total column of isopropyl hydroperoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 114 ; + } +#Total column of c3h6oho2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 115 ; + } +#Total column of c3h6ohooh +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 116 ; + } +#Total column of higher organic peroxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 117 ; + } +#Total column of hydroxyacetone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 118 ; + } +#Total column of peroxyacetic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 119 ; + } +#Total column of ch3coch2o2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 120 ; + } +#Total column of peroxy radical from c2h6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 121 ; + } +#Total column of peroxy radical from hc3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 122 ; + } +#Total column of peroxy radical from hc5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 123 ; + } +#Total column of lumped alkenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 124 ; + } +#Total column of peroxy radical from hc8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 125 ; + } +#Total column of lumped alkanes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 126 ; + } +#Total column of peroxy radical from c2h4 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 127 ; + } +#Total column of c4h8o +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 128 ; + } +#Total column of peroxy radical from terminal alkenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 129 ; + } +#Total column of c4h9o3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 130 ; + } +#Total column of peroxy radical from internal alkenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 131 ; + } +#Total column of ch3coch(oo)ch3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 132 ; + } +#Total column of peroxy radical from c5h8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 133 ; + } +#Total column of ch3coch(ooh)ch3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 134 ; + } +#Total column of peroxy radical from a-pinene cyclic terpenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 135 ; + } +#Total column of ch2=c(ch3)co3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 136 ; + } +#Total column of peroxy radical from d-limonene cyclic diene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 137 ; + } +#Total column of methylvinylketone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 138 ; + } +#Total column of phenoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 139 ; + } +#Total column of peroxy radical from toluene and less reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 140 ; + } +#Total column of ch3c(o)ch(oo)ch2oh +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 141 ; + } +#Total column of peroxy radical from xylene and more reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 142 ; + } +#Total column of h3c(o)ch(ooh)ch2oh +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 143 ; + } +#Total column of peroxy radical from cresol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 144 ; + } +#Total column of unsaturated pans +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 145 ; + } +#Total column of unsaturated acyl peroxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 146 ; + } +#Total column of peroxy radical from ketones +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 147 ; + } +#Total column of c5h11o2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 148 ; + } +#Total column of no3-alkenes adduct reacting to form carbonitrates +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 149 ; + } +#Total column of c5h11ooh +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 150 ; + } +#Total column of no3-alkenes adduct reacting via decomposition +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 151 ; + } +#Total column of hoch2c(ch3)=chcho +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 152 ; + } +#Total column of c5h6o2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 153 ; + } +#Total column of trop sulfuric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 154 ; + } +#Total column of oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 155 ; + } +#Total column of ch2chc(ch3)(oo)ch2ono2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 156 ; + } +#Total column of c3 organic nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 157 ; + } +#Total column of chlorine oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 158 ; + } +#Total column of bromine oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 159 ; + } +#Total column of hoch2c(ooh)(ch3)chchoh +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 160 ; + } +#Total column of hoch2c(ooh)(ch3)ch=ch2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 161 ; + } +#Total column of lumped aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 162 ; + } +#Total column of dimethyl sulfoxyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 163 ; + } +#Total column of c7h9o5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 164 ; + } +#Total column of c7h10o5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 165 ; + } +#Total column of hydrogensulfide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 166 ; + } +#Total column of c7h10o6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 167 ; + } +#Total column of all nitrogen oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 168 ; + } +#Total column of chlorine family +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 169 ; + } +#Total column of c10h16(oh)(oo) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 170 ; + } +#Total column of bromine family +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 171 ; + } +#Total column of c10h18o3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 172 ; + } +#Total column of nitrogen atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 173 ; + } +#Total column of chlorine monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of chlorine atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 175 ; + } +#Total column of bromine monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of hydrogen atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 177 ; + } +#Total column of methyl group +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 178 ; + } +#Total column of aromatic-ho from toluene and less reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 179 ; + } +#Total column of aromatic-ho from xylene and more reactive aromatics +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 180 ; + } +#Total column of ammonium nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 181 ; + } +#Total column of aromatic-ho from csl +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 182 ; + } +#Total column of secondary organic aerosol type 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 183 ; + } +#Total column of secondary organic aerosol type 2a +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 184 ; + } +#Total column of secondary organic aerosol type 2b +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 185 ; + } +#Total column of condensable gas type 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 186 ; + } +#Total column of condensable gas type 2a +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 187 ; + } +#Total column of condensable gas type 2b +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 188 ; + } +#Total column of sulfur trioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 189 ; + } +#Total column of carbonyl sulfide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 190 ; + } +#Total column of bromine atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 191 ; + } +#Total column of bromine +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 192 ; + } +#Total column of bromine monochloride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 193 ; + } +#Total column of bromine nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of dibromomethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 195 ; + } +#Total column of methoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 196 ; + } +#Total column of tribromomethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 197 ; + } +#Total column of asymmetric chlorine dioxide radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 198 ; + } +#Total column of hydrogen +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 199 ; + } +#Total column of hydrogen chloride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } +#Total column of formyl radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 201 ; + } +#Total column of hydrogen fluoride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 202 ; + } +#Total column of oxygen atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 203 ; + } +#Total column of excited oxygen atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 204 ; + } +#Total column of ground state oxygen atom +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 205 ; + } +#Total column of stratospheric aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 206 ; + } +#Ozone emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Emissions of carbon dioxide (chemistry) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 57 ; + } +#Emissions of nitrous oxide (chemistry) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 58 ; + } +#Emissions of water vapour (chemistry) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 59 ; + } +#Emissions of oxygen +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 60 ; + } +#Emissions of singlet oxygen +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 61 ; + } +#Emissions of singlet delta oxygen +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 62 ; + } +#Emissions of chlorine dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 63 ; + } +#Emissions of chlorine nitrate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 64 ; + } +#Emissions of hypochlorous acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 65 ; + } +#Emissions of chlorine +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 66 ; + } +#Emissions of nitryl chloride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 67 ; + } +#Emissions of hydrogen bromide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 68 ; + } +#Emissions of dichlorine dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 69 ; + } +#Emissions of hypobromous acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 70 ; + } +#Emissions of trichlorofluoromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 71 ; + } +#Emissions of dichlorodifluoromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 72 ; + } +#Emissions of trichlorotrifluoroethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 73 ; + } +#Emissions of dichlorotetrafluoroethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 74 ; + } +#Emissions of chloropentafluoroethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 75 ; + } +#Emissions of tetrachloromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 76 ; + } +#Emissions of methyl chloroform +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 77 ; + } +#Emissions of methyl chloride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 78 ; + } +#Emissions of chlorodifluoromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 79 ; + } +#Emissions of methyl bromide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 80 ; + } +#Emissions of dibromodifluoromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 81 ; + } +#Emissions of bromochlorodifluoromethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 82 ; + } +#Emissions of trifluorobromomethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 83 ; + } +#Emissions of cbrf2cbrf2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 84 ; + } +#Emissions of sulfuric acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 85 ; + } +#Emissions of nitrous acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 86 ; + } +#Emissions of alkanes low oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 87 ; + } +#Emissions of alkanes med oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 88 ; + } +#Emissions of alkanes high oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 89 ; + } +#Emissions of terminal alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 90 ; + } +#Emissions of internal alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 91 ; + } +#Emissions of ethylperoxy radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 92 ; + } +#Emissions of butadiene +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 93 ; + } +#Emissions of ethyl hydroperoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 94 ; + } +#Emissions of a-pinene cyclic terpenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 95 ; + } +#Emissions of acetic acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 96 ; + } +#Emissions of d-limonene cyclic diene +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 97 ; + } +#Emissions of acetaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 98 ; + } +#Emissions of toluene and less reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 99 ; + } +#Emissions of xylene and more reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 100 ; + } +#Emissions of glycolaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 101 ; + } +#Emissions of cresol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 102 ; + } +#Emissions of acetaldehyde and higher +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 103 ; + } +#Emissions of peracetic acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 104 ; + } +#Emissions of ketones +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 105 ; + } +#Emissions of hoch2ch2o2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 106 ; + } +#Emissions of glyoxal +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 107 ; + } +#Emissions of hoch2ch2o +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 108 ; + } +#Emissions of unsaturated dicarbonyls +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 109 ; + } +#Emissions of methacrolein +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 110 ; + } +#Emissions of unsaturated hydroxy dicarbonyl +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 111 ; + } +#Emissions of isopropyldioxidanyl +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 112 ; + } +#Emissions of hydroxy ketone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 113 ; + } +#Emissions of isopropyl hydroperoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 114 ; + } +#Emissions of c3h6oho2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 115 ; + } +#Emissions of c3h6ohooh +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 116 ; + } +#Emissions of higher organic peroxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 117 ; + } +#Emissions of hydroxyacetone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 118 ; + } +#Emissions of peroxyacetic acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 119 ; + } +#Emissions of ch3coch2o2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 120 ; + } +#Emissions of peroxy radical from c2h6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 121 ; + } +#Emissions of peroxy radical from hc3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 122 ; + } +#Emissions of peroxy radical from hc5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 123 ; + } +#Emissions of lumped alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 124 ; + } +#Emissions of peroxy radical from hc8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 125 ; + } +#Emissions of lumped alkanes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 126 ; + } +#Emissions of peroxy radical from c2h4 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 127 ; + } +#Emissions of c4h8o +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 128 ; + } +#Emissions of peroxy radical from terminal alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 129 ; + } +#Emissions of c4h9o3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 130 ; + } +#Emissions of peroxy radical from internal alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 131 ; + } +#Emissions of ch3coch(oo)ch3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 132 ; + } +#Emissions of peroxy radical from c5h8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 133 ; + } +#Emissions of ch3coch(ooh)ch3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 134 ; + } +#Emissions of peroxy radical from a-pinene cyclic terpenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 135 ; + } +#Emissions of ch2=c(ch3)co3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 136 ; + } +#Emissions of peroxy radical from d-limonene cyclic diene +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 137 ; + } +#Emissions of methylvinylketone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 138 ; + } +#Emissions of phenoxy radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 139 ; + } +#Emissions of peroxy radical from toluene and less reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 140 ; + } +#Emissions of ch3c(o)ch(oo)ch2oh +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 141 ; + } +#Emissions of peroxy radical from xylene and more reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 142 ; + } +#Emissions of h3c(o)ch(ooh)ch2oh +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 143 ; + } +#Emissions of peroxy radical from cresol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 144 ; + } +#Emissions of unsaturated pans +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 145 ; + } +#Emissions of unsaturated acyl peroxy radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 146 ; + } +#Emissions of peroxy radical from ketones +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 147 ; + } +#Emissions of c5h11o2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 148 ; + } +#Emissions of no3-alkenes adduct reacting to form carbonitrates +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 149 ; + } +#Emissions of c5h11ooh +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 150 ; + } +#Emissions of no3-alkenes adduct reacting via decomposition +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 151 ; + } +#Emissions of hoch2c(ch3)=chcho +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 152 ; + } +#Emissions of c5h6o2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 153 ; + } +#Emissions of trop sulfuric acid +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 154 ; + } +#Emissions of oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 155 ; + } +#Emissions of ch2chc(ch3)(oo)ch2ono2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 156 ; + } +#Emissions of c3 organic nitrate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 157 ; + } +#Emissions of chlorine oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 158 ; + } +#Emissions of bromine oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 159 ; + } +#Emissions of hoch2c(ooh)(ch3)chchoh +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 160 ; + } +#Emissions of hoch2c(ooh)(ch3)ch=ch2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 161 ; + } +#Emissions of lumped aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 162 ; + } +#Emissions of dimethyl sulfoxyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 163 ; + } +#Emissions of c7h9o5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 164 ; + } +#Emissions of c7h10o5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 165 ; + } +#Emissions of hydrogensulfide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 166 ; + } +#Emissions of c7h10o6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 167 ; + } +#Emissions of all nitrogen oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 168 ; + } +#Emissions of chlorine family +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 169 ; + } +#Emissions of c10h16(oh)(oo) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 170 ; + } +#Emissions of bromine family +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 171 ; + } +#Emissions of c10h18o3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 172 ; + } +#Emissions of nitrogen atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 173 ; + } +#Emissions of chlorine monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 174 ; + } +#Emissions of chlorine atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 175 ; + } +#Emissions of bromine monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 176 ; + } +#Emissions of hydrogen atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 177 ; + } +#Emissions of methyl group +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 178 ; + } +#Emissions of aromatic-ho from toluene and less reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 179 ; + } +#Emissions of aromatic-ho from xylene and more reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 180 ; + } +#Emissions of ammonium nitrate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 181 ; + } +#Emissions of aromatic-ho from csl +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 182 ; + } +#Emissions of secondary organic aerosol type 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 183 ; + } +#Emissions of secondary organic aerosol type 2a +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 184 ; + } +#Emissions of secondary organic aerosol type 2b +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 185 ; + } +#Emissions of condensable gas type 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 186 ; + } +#Emissions of condensable gas type 2a +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 187 ; + } +#Emissions of condensable gas type 2b +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 188 ; + } +#Emissions of sulfur trioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 189 ; + } +#Emissions of carbonyl sulfide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 190 ; + } +#Emissions of bromine atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 191 ; + } +#Emissions of bromine +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 192 ; + } +#Emissions of bromine monochloride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 193 ; + } +#Emissions of bromine nitrate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 194 ; + } +#Emissions of dibromomethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 195 ; + } +#Emissions of methoxy radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 196 ; + } +#Emissions of tribromomethane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 197 ; + } +#Emissions of asymmetric chlorine dioxide radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 198 ; + } +#Emissions of hydrogen +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 199 ; + } +#Emissions of hydrogen chloride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 200 ; + } +#Emissions of formyl radical +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 201 ; + } +#Emissions of hydrogen fluoride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 202 ; + } +#Emissions of oxygen atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 203 ; + } +#Emissions of excited oxygen atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 204 ; + } +#Emissions of ground state oxygen atom +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 205 ; + } +#Emissions of stratospheric aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 206 ; + } +#Wildfire flux of paraffins +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 207 ; + } +#Wildfire flux of olefines +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 208 ; + } +#Wildfire flux of aldehydes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 209 ; + } +#Wildfire flux of ketones +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 210 ; + } +#Wildfire flux of f a-pinene cyclic terpenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 211 ; + } +#Wildfire flux of toluene less reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 212 ; + } +#Wildfire flux of xylene more reactive aromatics +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 213 ; + } +#Wildfire flux of d-limonene cyclic diene +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 214 ; + } +#Wildfire flux of terminal alkenes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 215 ; + } +#Wildfire flux of alkanes low oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 216 ; + } +#Wildfire flux of alkanes med oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 217 ; + } +#Wildfire flux of alkanes high oh rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 218 ; + } +#Wildfire flux of hydrogen cyanide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 219 ; + } +#Wildfire flux of acetonitrile +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 220 ; + } +#Ozone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Dry deposition velocity of carbon dioxide (chemistry) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 57 ; + } +#Dry deposition velocity of nitrous oxide (chemistry) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 58 ; + } +#Dry deposition velocity of water vapour (chemistry) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 59 ; + } +#Dry deposition velocity of oxygen +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 60 ; + } +#Dry deposition velocity of singlet oxygen +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 61 ; + } +#Dry deposition velocity of singlet delta oxygen +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 62 ; + } +#Dry deposition velocity of chlorine dioxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 63 ; + } +#Dry deposition velocity of chlorine nitrate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 64 ; + } +#Dry deposition velocity of hypochlorous acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 65 ; + } +#Dry deposition velocity of chlorine +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 66 ; + } +#Dry deposition velocity of nitryl chloride +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 67 ; + } +#Dry deposition velocity of hydrogen bromide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 68 ; + } +#Dry deposition velocity of dichlorine dioxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 69 ; + } +#Dry deposition velocity of hypobromous acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 70 ; + } +#Dry deposition velocity of trichlorofluoromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 71 ; + } +#Dry deposition velocity of dichlorodifluoromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 72 ; + } +#Dry deposition velocity of trichlorotrifluoroethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 73 ; + } +#Dry deposition velocity of dichlorotetrafluoroethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 74 ; + } +#Dry deposition velocity of chloropentafluoroethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 75 ; + } +#Dry deposition velocity of tetrachloromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 76 ; + } +#Dry deposition velocity of methyl chloroform +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 77 ; + } +#Dry deposition velocity of methyl chloride +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 78 ; + } +#Dry deposition velocity of chlorodifluoromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 79 ; + } +#Dry deposition velocity of methyl bromide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 80 ; + } +#Dry deposition velocity of dibromodifluoromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 81 ; + } +#Dry deposition velocity of bromochlorodifluoromethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 82 ; + } +#Dry deposition velocity of trifluorobromomethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 83 ; + } +#Dry deposition velocity of cbrf2cbrf2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 84 ; + } +#Dry deposition velocity of sulfuric acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 85 ; + } +#Dry deposition velocity of nitrous acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 86 ; + } +#Dry deposition velocity of alkanes low oh rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 87 ; + } +#Dry deposition velocity of alkanes med oh rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 88 ; + } +#Dry deposition velocity of alkanes high oh rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 89 ; + } +#Dry deposition velocity of terminal alkenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 90 ; + } +#Dry deposition velocity of internal alkenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 91 ; + } +#Dry deposition velocity of ethylperoxy radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 92 ; + } +#Dry deposition velocity of butadiene +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 93 ; + } +#Dry deposition velocity of ethyl hydroperoxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 94 ; + } +#Dry deposition velocity of a-pinene cyclic terpenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 95 ; + } +#Dry deposition velocity of acetic acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 96 ; + } +#Dry deposition velocity of d-limonene cyclic diene +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 97 ; + } +#Dry deposition velocity of acetaldehyde +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 98 ; + } +#Dry deposition velocity of toluene and less reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 99 ; + } +#Dry deposition velocity of xylene and more reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 100 ; + } +#Dry deposition velocity of glycolaldehyde +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 101 ; + } +#Dry deposition velocity of cresol +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 102 ; + } +#Dry deposition velocity of acetaldehyde and higher +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 103 ; + } +#Dry deposition velocity of peracetic acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 104 ; + } +#Dry deposition velocity of ketones +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 105 ; + } +#Dry deposition velocity of hoch2ch2o2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 106 ; + } +#Dry deposition velocity of glyoxal +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 107 ; + } +#Dry deposition velocity of hoch2ch2o +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 108 ; + } +#Dry deposition velocity of unsaturated dicarbonyls +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 109 ; + } +#Dry deposition velocity of methacrolein +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 110 ; + } +#Dry deposition velocity of unsaturated hydroxy dicarbonyl +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 111 ; + } +#Dry deposition velocity of isopropyldioxidanyl +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 112 ; + } +#Dry deposition velocity of hydroxy ketone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 113 ; + } +#Dry deposition velocity of isopropyl hydroperoxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 114 ; + } +#Dry deposition velocity of c3h6oho2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 115 ; + } +#Dry deposition velocity of c3h6ohooh +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 116 ; + } +#Dry deposition velocity of higher organic peroxides +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 117 ; + } +#Dry deposition velocity of hydroxyacetone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 118 ; + } +#Dry deposition velocity of peroxyacetic acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 119 ; + } +#Dry deposition velocity of ch3coch2o2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 120 ; + } +#Dry deposition velocity of peroxy radical from c2h6 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 121 ; + } +#Dry deposition velocity of peroxy radical from hc3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 122 ; + } +#Dry deposition velocity of peroxy radical from hc5 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 123 ; + } +#Dry deposition velocity of lumped alkenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 124 ; + } +#Dry deposition velocity of peroxy radical from hc8 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 125 ; + } +#Dry deposition velocity of lumped alkanes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 126 ; + } +#Dry deposition velocity of peroxy radical from c2h4 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 127 ; + } +#Dry deposition velocity of c4h8o +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 128 ; + } +#Dry deposition velocity of peroxy radical from terminal alkenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 129 ; + } +#Dry deposition velocity of c4h9o3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 130 ; + } +#Dry deposition velocity of peroxy radical from internal alkenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 131 ; + } +#Dry deposition velocity of ch3coch(oo)ch3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 132 ; + } +#Dry deposition velocity of peroxy radical from c5h8 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 133 ; + } +#Dry deposition velocity of ch3coch(ooh)ch3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 134 ; + } +#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 135 ; + } +#Dry deposition velocity of ch2=c(ch3)co3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 136 ; + } +#Dry deposition velocity of peroxy radical from d-limonene cyclic diene +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 137 ; + } +#Dry deposition velocity of methylvinylketone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 138 ; + } +#Dry deposition velocity of phenoxy radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 139 ; + } +#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 140 ; + } +#Dry deposition velocity of ch3c(o)ch(oo)ch2oh +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 141 ; + } +#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 142 ; + } +#Dry deposition velocity of h3c(o)ch(ooh)ch2oh +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 143 ; + } +#Dry deposition velocity of peroxy radical from cresol +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 144 ; + } +#Dry deposition velocity of unsaturated pans +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 145 ; + } +#Dry deposition velocity of unsaturated acyl peroxy radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 146 ; + } +#Dry deposition velocity of peroxy radical from ketones +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 147 ; + } +#Dry deposition velocity of c5h11o2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 148 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 149 ; + } +#Dry deposition velocity of c5h11ooh +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 150 ; + } +#Dry deposition velocity of no3-alkenes adduct reacting via decomposition +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 151 ; + } +#Dry deposition velocity of hoch2c(ch3)=chcho +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 152 ; + } +#Dry deposition velocity of c5h6o2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 153 ; + } +#Dry deposition velocity of trop sulfuric acid +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 154 ; + } +#Dry deposition velocity of oxides +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 155 ; + } +#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 156 ; + } +#Dry deposition velocity of c3 organic nitrate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 157 ; + } +#Dry deposition velocity of chlorine oxides +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 158 ; + } +#Dry deposition velocity of bromine oxides +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 159 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 160 ; + } +#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 161 ; + } +#Dry deposition velocity of lumped aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 162 ; + } +#Dry deposition velocity of dimethyl sulfoxyde +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 163 ; + } +#Dry deposition velocity of c7h9o5 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 164 ; + } +#Dry deposition velocity of c7h10o5 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 165 ; + } +#Dry deposition velocity of hydrogensulfide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 166 ; + } +#Dry deposition velocity of c7h10o6 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 167 ; + } +#Dry deposition velocity of all nitrogen oxides +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 168 ; + } +#Dry deposition velocity of chlorine family +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 169 ; + } +#Dry deposition velocity of c10h16(oh)(oo) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 170 ; + } +#Dry deposition velocity of bromine family +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 171 ; + } +#Dry deposition velocity of c10h18o3 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 172 ; + } +#Dry deposition velocity of nitrogen atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 173 ; + } +#Dry deposition velocity of chlorine monoxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 174 ; + } +#Dry deposition velocity of chlorine atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 175 ; + } +#Dry deposition velocity of bromine monoxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 176 ; + } +#Dry deposition velocity of hydrogen atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 177 ; + } +#Dry deposition velocity of methyl group +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 178 ; + } +#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 179 ; + } +#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 180 ; + } +#Dry deposition velocity of ammonium nitrate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 181 ; + } +#Dry deposition velocity of aromatic-ho from csl +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 182 ; + } +#Dry deposition velocity of secondary organic aerosol type 1 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 183 ; + } +#Dry deposition velocity of secondary organic aerosol type 2a +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 184 ; + } +#Dry deposition velocity of secondary organic aerosol type 2b +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 185 ; + } +#Dry deposition velocity of condensable gas type 1 +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 186 ; + } +#Dry deposition velocity of condensable gas type 2a +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 187 ; + } +#Dry deposition velocity of condensable gas type 2b +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 188 ; + } +#Dry deposition velocity of sulfur trioxide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 189 ; + } +#Dry deposition velocity of carbonyl sulfide +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 190 ; + } +#Dry deposition velocity of bromine atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 191 ; + } +#Dry deposition velocity of bromine +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 192 ; + } +#Dry deposition velocity of bromine monochloride +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 193 ; + } +#Dry deposition velocity of bromine nitrate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 194 ; + } +#Dry deposition velocity of dibromomethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 195 ; + } +#Dry deposition velocity of methoxy radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 196 ; + } +#Dry deposition velocity of tribromomethane +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 197 ; + } +#Dry deposition velocity of asymmetric chlorine dioxide radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 198 ; + } +#Dry deposition velocity of hydrogen +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 199 ; + } +#Dry deposition velocity of hydrogen chloride +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 200 ; + } +#Dry deposition velocity of formyl radical +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 201 ; + } +#Dry deposition velocity of hydrogen fluoride +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 202 ; + } +#Dry deposition velocity of oxygen atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 203 ; + } +#Dry deposition velocity of excited oxygen atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 204 ; + } +#Dry deposition velocity of ground state oxygen atom +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 205 ; + } +#Dry deposition velocity of stratospheric aerosol +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 206 ; + } +#Total sky direct solar radiation at surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Horizontal visibility +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of zero-degree wet-bulb temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of one-degree wet-bulb temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Instantaneous total lightning flash density +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Instantaneous total lightning flash density +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 50 ; + } +#Averaged total lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + } +#Averaged total lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 51 ; + } +#Instantaneous cloud-to-ground lightning flash density +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 52 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 53 ; + } +#Averaged total lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 57 ; + } +#Averaged total lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + } +#Averaged total lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 58 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 59 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 60 ; + } +#GPP coefficient from Biogenic Flux Adjustment System +'dimensionless' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Rec coefficient from Biogenic Flux Adjustment System +'dimensionless' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Accumulated Carbon Dioxide Net Ecosystem Exchange +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Gross Primary Production +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated Carbon Dioxide Ecosystem Respiration +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } +#Flux of Carbon Dioxide Net Ecosystem Exchange +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Flux of Carbon Dioxide Gross Primary Production +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Flux of Carbon Dioxide Ecosystem Respiration +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total column rain water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Evaporation from the top of canopy +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 100 ; + } +#Evaporation from bare soil +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 101 ; + } +#Evaporation from open water surfaces excluding oceans +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 102 ; + } +#Evaporation from vegetation transpiration +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 103 ; + } +#Surface solar radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#Irrigation fraction +'Proportion' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'%' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'radians' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'N m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'N m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre wind gust of at least 25 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + } +#2 metre temperature less than 273.15 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 2 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 4 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 4 ; + } +#Significant wave height of at least 6 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#Mean wave period of at least 8 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean zero-crossing wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Mean zero-crossing wave period +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Peak wave period +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'m**2 s radian**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'m**2 s radian**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'psu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'kg m**-3 -1000' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'Pa' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'Pa' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'J m**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Sea water potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Sea water practical salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sea water sigma theta +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'m s**-1 degC' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level previous timestep +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Ocean barotropic stream function +'m**3 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'N m**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'Nm**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#Surface downward eastward stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#Average potential temperature in the upper 300m +'degrees C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'J m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'J m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Layer Thickness at scalar points +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'m s**-1 per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'psu per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'deg C per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Pa m**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Pa m**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'Pa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'Pa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'N m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'N m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'%' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'K m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'K m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'K m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'Pa m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'K Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'Pa m s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'Pa m s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'~' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'N m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'K kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'m**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'m**4 s**-4' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'m**2 K s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'K**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'m s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'m s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'m**2 Pa s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'Pa s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'m Pa s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'m Pa s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'Pa**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'Pa**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'dimensionless' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'dimensionless' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'m' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'%' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'radians' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Mean large-scale precipitation fraction +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Mean large-scale precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Mean total snowfall rate +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Mean surface sensible heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Mean surface latent heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Mean surface net radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Mean short-wave heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Mean long-wave heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Mean surface downward solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Mean surface downward thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Mean surface net solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Mean surface net thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Mean top net solar radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Mean top net thermal radiation flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Mean sunshine duration rate +'s s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Mean runoff rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation rate of accumulation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Mean total precipitation rate +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Mean convective precipitation rate anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'K s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'K s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomalous rate of accumulation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomalous rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomalous rate of accumulation +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomalous rate of accumulation +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'dimensionless' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomalous rate of accumulation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomalous rate of accumulation +'W m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Liquid water potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'m' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Field capacity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'m**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'J kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'m s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'m s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'Pa' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'K' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'%' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#CO2 column-mean molar fraction +'ppm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#CH4 column-mean molar fraction +'ppb' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 80 ; + } +#Wildfire flux of Carbon Monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 81 ; + } +#Wildfire flux of Methane +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 82 ; + } +#Wildfire flux of Non-Methane Hydro-Carbons +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 83 ; + } +#Wildfire flux of Hydrogen +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 84 ; + } +#Wildfire flux of Nitrogen Oxides NOx +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 85 ; + } +#Wildfire flux of Nitrous Oxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 86 ; + } +#Wildfire flux of Particulate Matter PM2.5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 87 ; + } +#Wildfire flux of Total Particulate Matter +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 88 ; + } +#Wildfire flux of Total Carbon in Aerosols +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 89 ; + } +#Wildfire flux of Organic Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 90 ; + } +#Wildfire flux of Black Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 91 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'%' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'m**2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'dimensionless' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'W' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire flux of Sulfur Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 102 ; + } +#Wildfire Flux of Methanol (CH3OH) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 103 ; + } +#Wildfire Flux of Ethanol (C2H5OH) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 104 ; + } +#Wildfire Flux of Propane (C3H8) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 105 ; + } +#Wildfire Flux of Ethene (C2H4) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 106 ; + } +#Wildfire Flux of Propene (C3H6) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 107 ; + } +#Wildfire Flux of Isoprene (C5H8) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 108 ; + } +#Wildfire Flux of Terpenes (C5H8)n +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 109 ; + } +#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 110 ; + } +#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 111 ; + } +#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 112 ; + } +#Wildfire Flux of Formaldehyde (CH2O) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 113 ; + } +#Wildfire Flux of Acetaldehyde (C2H4O) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 114 ; + } +#Wildfire Flux of Acetone (C3H6O) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 115 ; + } +#Wildfire Flux of Ammonia (NH3) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 116 ; + } +#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 117 ; + } +#Wildfire radiative power maximum +'W' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'m s**-2' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'m s**-2' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#ASCAT first soil moisture CDF matching parameter +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def b/eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def new file mode 100644 index 00000000..3319bcc9 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -0,0 +1,144 @@ +#Surface net solar radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; +} +#Surface net thermal radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; +} +#Eastward sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; +} +#Northward sea water velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; +} +#Sea-ice thickness +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; +} +#Sea surface height +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; +} +#100 metre U wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; +} +#100 metre V wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; +} +#100 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; +} +#0 degrees C isothermal level (atm) +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; +} +#Depth of 20C isotherm +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; +} +#Average salinity in the upper 300m +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; +} +#Total precipitation of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; +} +#Total precipitation of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; +} +#Total precipitation of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; +} +#Total precipitation of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; +} +#Total precipitation of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; +} +#Total precipitation of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; +} +#Total precipitation of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; +} +#Total precipitation of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; +} +#Total column cloud liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; +} +#Total column cloud ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; +} +#Top net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; +} +#Temperature of snow layer +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def new file mode 100644 index 00000000..c5c15659 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -0,0 +1,14 @@ +# ECMWF Unstructured Grid Mapping + +concept unstructuredGridType(unknown,"unstructuredGridType.def",conceptsLocalDirAll,conceptsMasterDir); + +concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir); + +concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); + +if (unstructuredGridType is "undefined" || unstructuredGridType is "unknown") { + meta gridName sprintf("%s",unstructuredGridType); +} else { + meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); +} +alias ls.gridName=gridName; diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def new file mode 100644 index 00000000..3f93215f --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def @@ -0,0 +1,6 @@ +'undefined' = { numberOfGridInReference = 0; } +'T' = { numberOfGridInReference = 1; } +'U' = { numberOfGridInReference = 2; } +'V' = { numberOfGridInReference = 3; } +'W' = { numberOfGridInReference = 4; } +'F' = { numberOfGridInReference = 5; } diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def new file mode 100644 index 00000000..33dcb3ca --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def @@ -0,0 +1,8 @@ +'undefined' = { numberOfGridUsed = 0; } +'ORCA2' = { numberOfGridUsed = 1; } +'ORCA1' = { numberOfGridUsed = 2; } +'ORCA025' = { numberOfGridUsed = 3; } +'ORCA12' = { numberOfGridUsed = 4; } +'eORCA1' = { numberOfGridUsed = 5; } +'eORCA025' = { numberOfGridUsed = 6; } +'eORCA12' = { numberOfGridUsed = 7; } diff --git a/eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def b/eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def new file mode 100644 index 00000000..14033768 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def @@ -0,0 +1,4 @@ +# Override for sub-hourly steps +# See ECC-438 +label "subhourly"; +alias defaultStepUnits=indicatorOfUnitOfTimeRange; diff --git a/eccodes/definitions/grib2/localConcepts/edzw/modelName.def b/eccodes/definitions/grib2/localConcepts/edzw/modelName.def new file mode 100644 index 00000000..5af6fb6e --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/modelName.def @@ -0,0 +1,107 @@ +# modelName: Contribution from Daniel Lee @ DWD + +# definitions for Offenbach +'cosmo_eu' = { + generatingProcessIdentifier=131; +} +'cosmo_eu' = { + generatingProcessIdentifier=132; +} +'cosmo_eu' = { + generatingProcessIdentifier=134; +} +'cosmo_eu' = { + generatingProcessIdentifier=135; +} +'cosmo_de' = { + generatingProcessIdentifier=137; +} +'cosmo_de' = { + generatingProcessIdentifier=138; +} +'cosmo_de-eps' = { + generatingProcessIdentifier=137; + typeOfEnsembleForecast=192; +} +'cosmo_de-eps' = { + generatingProcessIdentifier=138; + typeOfEnsembleForecast=192; +} + +#DWD model names for ICON +'icogl' = { + gridDefinitionTemplateNumber=101; + generatingProcessIdentifier=1; +} +'icogl130' = { + numberOfGridUsed=26; + generatingProcessIdentifier=1; +} +'icogl130l90' = { + numberOfGridUsed=26; + nlev=91; + generatingProcessIdentifier=1; +} +'icogl130p' = { + numberOfGridUsed=26; + typeOfFirstFixedSurface=100; + generatingProcessIdentifier=1; +} +'icoeu'= { + gridDefinitionTemplateNumber=101; + generatingProcessIdentifier=2; +} +'icoeu065' = { + numberOfGridUsed=27; + generatingProcessIdentifier=2; +} +'icoeu065l60' = { + numberOfGridUsed=27; + nlev=61; + generatingProcessIdentifier=2; +} +'icreu' = { + gridDefinitionTemplateNumber=0; + generatingProcessIdentifier=2; +} +'icreu_0.625' = { + gridDefinitionTemplateNumber=0; + Dx=62500; + Dy=62500; + generatingProcessIdentifier=2; +} +'icreu_0.625l60' = { + gridDefinitionTemplateNumber=0; + Dx=62500; + Dy=62500; + nlev=61; + generatingProcessIdentifier=2; +} +'icreu_0.625p' = { + gridDefinitionTemplateNumber=0; + Dx=62500; + Dy=62500; + typeOfFirstFixedSurface=100; + generatingProcessIdentifier=2; +} +'icreu_0.625z' = { + gridDefinitionTemplateNumber=0; + Dx=62500; + Dy=62500; + typeOfFirstFixedSurface=102; + generatingProcessIdentifier=2; +} +'icrde' = { + gridDefinitionTemplateNumber=0; + generatingProcessIdentifier=3; +} +'icrgl' = { + gridDefinitionTemplateNumber=0; + generatingProcessIdentifier=1; +} +'icrgl_0.25' = { + gridDefinitionTemplateNumber=0; + Dx=250000; + Dy=250000; + generatingProcessIdentifier=1; +} diff --git a/eccodes/definitions/grib2/localConcepts/edzw/name.def b/eccodes/definitions/grib2/localConcepts/edzw/name.def new file mode 100755 index 00000000..e94200ca --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/name.def @@ -0,0 +1,13809 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'Pressure (S) (not reduced)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500001 +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'Pressure Reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'Pressure Tendency (S)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'Geopotential (S)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'Geopotential (full lev)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 105 ; + typeOfFirstFixedSurface = 105 ; + } + +#paramId: 500006 +#Geopotential +'Geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'Geometric Height of the earths surface above sea level' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'Geometric Height of the layer limits above sea level(NN)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'Total Column Integrated Ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } + +#paramId: 500010 +#Temperature (G) +'Temperature (G)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500011 +#2m Temperature +'2m Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'2m Temperature (AV)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'Climat. temperature, 2m Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 9 ; + } + +#paramId: 500014 +#Temperature +'Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'Max 2m Temperature (i)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'Min 2m Temperature (i)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'2m Dew Point Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'2m Dew Point Temperature (AV)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'Radar spectra (1)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500020 +#Wave spectra (1) +'Wave spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500021 +#Wave spectra (2) +'Wave spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500022 +#Wave spectra (3) +'Wave spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'Wind Direction (DD_10M)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'Wind Direction (DD)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'Wind speed (SP_10M)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'Wind speed (SP)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500027 +#U-Component of Wind +'U-Component of Wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'U-Component of Wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500029 +#V-Component of Wind +'V-Component of Wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'V-Component of Wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Vertical Velocity (Pressure) ( omega=dp/dt )' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'Vertical Velocity (Geometric) (w)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'Specific Humidity (2m)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'Specific Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500036 +#2m Relative Humidity +'2m Relative Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'Relative Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'Total column integrated water vapour' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } + +#paramId: 500039 +#Evaporation (s) +'Evaporation (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'Total Column-Integrated Cloud Ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'Total Precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'Large-Scale Precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'Convective Precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'Snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } + +#paramId: 500045 +#Snow Depth +'Snow Depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 500046 +#Total Cloud Cover +'Total Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'Convective Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'Total Column-Integrated Cloud Water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'Convective Snowfall water equivalent (s)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'Large-Scale snowfall - water equivalent (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'Land Cover (1=land, 0=sea)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'Surface Roughness length Surface Roughness' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'Albedo (in short-wave)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'Albedo (in short-wave, average)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'Soil Temperature ( 36 cm depth, vv=0h)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'Soil Temperature (41 cm depth)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'Column-integrated Soil Moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'Column-integrated Soil Moisture (1) 0 -10 cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'Column-integrated Soil Moisture (2) 10-100cm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500065 +#Plant cover +'Plant cover' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500066 +#Water Runoff +'Water Runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'Water Runoff (s)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'Sea Ice Cover ( 0= free, 1=cover)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'Sea Ice Thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500072 +#Direction of wind waves +'Direction of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500073 +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 500074 +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 500075 +#Direction of swell waves +'Direction of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500076 +#Significant height of swell waves +'Significant height of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500077 +#Mean period of swell waves +'Mean period of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'Net long wave radiation flux (m) (at the surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'Net short wave radiation flux (on the model top)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'Net long wave radiation flux (m) (on the model top)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'Latent Heat Net Flux (m)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'Sensible Heat Net Flux (m)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'Photosynthetically active radiation (m) (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500098 +#Cloud cover +'Cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'Non-Convective Cloud Cover, grid scale' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'Cloud Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'Cloud Ice Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + } + +#paramId: 500102 +#Rain mixing ratio +'Rain mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } + +#paramId: 500103 +#Snow mixing ratio +'Snow mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } + +#paramId: 500104 +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } + +#paramId: 500105 +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } + +#paramId: 500106 +#Grauple +'Grauple' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } + +#paramId: 500107 +#Total column integrated grauple +'Total column integrated grauple' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'Total Column integrated water (all components incl. precipitation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'Height of Convective Cloud Base above msl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'Height of Convective Cloud Top above msl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'Height of 0 degree Celsius isotherm above msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500132 +#Large scale rain rate +'Large scale rain rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'Large scale rain (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500135 +#Convective rain rate +'Convective rain rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } + +#paramId: 500137 +#Convective rain +'Convective rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'rain amount, grid-scale plus convective' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'snow amount, grid-scale plus convective' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'Graupel (snow pellets) precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'Graupel (snow pellets) precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500147 +#Snow density +'Snow density' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'Convective turbulent kinetic enery' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'Turbulent diffusioncoefficient for momentum' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'Turbulent diffusion coefficient for heat (and moisture)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'Turbulent transfer coefficient for impulse' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'Turbulent transfer coefficient for heat (and Moisture)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 500163 +#mixed layer depth +'mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } + +#paramId: 500164 +#maximum Wind 10m +'maximum Wind 10m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'Soil Temperature (multilayer model)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'Column-integrated Soil Moisture (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'soil ice content (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'Plant Canopy Surface Water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'Snow temperature (top of snow)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'Minimal Stomatal Resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'Sea Ice Temperature' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500173 +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'Base reflectivity (cmax)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'Convective Available Potential Energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } + +#paramId: 500185 +#Direction of combined wind waves and swell +'Direction of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 500187 +#Peak period of total swell +'Peak period of total swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 500189 +#Peak period of wind waves +'Peak period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 500190 +#Peak wave period +'Peak wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } + +#paramId: 500191 +#Mean period of combined wind waves and swell +'Mean period of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500192 +#Inverse mean wave frequency +'Inverse mean wave frequency' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 500193 +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500194 +#Wave directional width +'Wave directional width' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } + +#paramId: 500206 +#Leaf area index +'Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500207 +#root depth of vegetation +'root depth of vegetation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'Plant covering degree in the vegetation phase' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'Plant covering degree in the quiescent phas' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500212 +#Max Leaf area index +'Max Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500213 +#Min Leaf area index +'Min Leaf area index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'Orographie + Land-Meer-Verteilung' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500217 +#evergreen forest +'evergreen forest' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 500218 +#deciduous forest +'deciduous forest' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'normalized differential vegetation index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'normalized differential vegetation index (NDVI)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'Total sulfate aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62006 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'Total sulfate aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62006 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'Total soil dust aerosol (climatology)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62001 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'Total soil dust aerosol (climatology,12M)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62001 ; + } + +#paramId: 500227 +#Organic aerosol +'Organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62010 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'Organic aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62010 ; + } + +#paramId: 500229 +#Black carbon aerosol +'Black carbon aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62009 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'Black carbon aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62009 ; + } + +#paramId: 500231 +#Sea salt aerosol +'Sea salt aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62008 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'Sea salt aerosol (12M)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62008 ; + } + +#paramId: 500236 +#geographical latitude +'geographical latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } + +#paramId: 500237 +#geographical longitude +'geographical longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } + +#paramId: 500238 +#Friction velocity +'Friction velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'Ozone Mixing Ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30102 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Ru103 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30102 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Ru103 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30102 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30067 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Sr90 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30067 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Sr90 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30067 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'Air concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30141 ; + } + +#paramId: 500250 +#I131a - dry deposition +'I131a - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30141 ; + } + +#paramId: 500251 +#I131a - wet deposition +'I131a - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30141 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30172 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Cs137 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30172 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Air concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30129 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Te132 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30129 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Te132 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30129 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Air concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30079 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Zr95 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30079 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Zr95 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30079 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Air concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30059 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Kr85 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30059 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Kr85 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30059 ; + } + +#paramId: 500264 +#TRACER - concentration +'TRACER - concentration' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30000 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'TRACER - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30000 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'TRACER - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30000 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Air concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30161 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Xe133 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30161 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Xe133 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30161 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'Air concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30138 ; + } + +#paramId: 500271 +#I131g - dry deposition +'I131g - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30138 ; + } + +#paramId: 500272 +#I131g - wet deposition +'I131g - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30138 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'Air concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30139 ; + } + +#paramId: 500274 +#I131o - dry deposition +'I131o - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30139 ; + } + +#paramId: 500275 +#I131o - wet deposition +'I131o - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30139 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Air concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30175 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Ba140 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30175 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Ba140 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30175 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'Gravity wave dissipation (vertical integral)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'UV Index, clouded sky, maximum' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500286 +#Vertical speed shear +'Vertical speed shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } + +#paramId: 500287 +#storm relative helicity +'storm relative helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'Hoehe der Konvektionsuntergrenze ueber Grund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'weather interpretation (WMO)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'Druck einer isentropen Flaeche' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500302 +#KO index +'KO index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'Aequivalentpotentielle Temperatur' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500304 +#Ceiling +'Ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Icing Grade (1=LGT,2=MOD,3=SEV)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'Monthly Mean of RMS of difference FG-AN of geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'Monthly Mean of RMS of difference IA-AN of geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'Monthly Mean of RMS of difference FG-AN of relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'Monthly Mean of RMS of difference IA-AN of relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'Monthly Mean of RMS of difference FG-AN of temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'Monthly Mean of RMS of difference IA-AN of temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'Synth. Sat. brightness temperature cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'Synth. Sat. brightness temperature clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'Synth. Sat. radiance cloudy' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'Synth. Sat. radiance clear sky' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'smoothed forecast, temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'smoothed forecast, maximum temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'smoothed forecast, minimum temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'smoothed forecast, dew point temp.' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'smoothed forecast, u comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'smoothed forecast, v comp. of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'smoothed forecast, total precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'smoothed forecast, total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'smoothed forecast, cloud cover low' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'smoothed forecast, cloud cover medium' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'smoothed forecast, cloud cover high' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'smoothed forecast, large-scale snowfall' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'smoothed forecast, soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'smoothed forecast, wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'calibrated forecast, total precipitation (Accumulation)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'calibrated forecast, large-scale snowfall' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'calibrated forecast, wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500389 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + } + +#paramId: 500390 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + } + +#paramId: 500391 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + } + +#paramId: 500392 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1250000 ; + } + +#paramId: 500393 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500394 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + } + +#paramId: 500395 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500396 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500397 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500398 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500399 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500400 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Obser. Sat. Meteosat sec. generation brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'Total Precipitation Difference' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'Net short wave radiation flux (at the surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'UV Index, clear sky, maximum' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500469 +#Total ozone +'Total ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500474 +#wind chill factor +'wind chill factor' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500475 +#Water temperature +'Water temperature' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500477 +#Absolute Vorticity +'Absolute Vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500490 +#Water Fraction +'Water Fraction' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500491 +#Lake depth +'Lake depth' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500492 +#Wind fetch +'Wind fetch' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 33 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'Attenuation coefficient of water with respect to solar radiation' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'Depth of thermally active layer of bottom sediment' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 164 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'Temperature at the lower boundary of the thermally active layer of bottom sediment' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 164 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'Mean temperature of the water column' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'Mixed-layer temperature' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'Bottom temperature (temperature at the water-bottom sediment interface)' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500499 +#Mixed-layer depth +'Mixed-layer depth' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'Shape factor with respect to the temperature profile in the thermocline' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 166 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave)' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 165 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'Sediment thickness of the upper layer of bottom sediments' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 165 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500539 +#cloud top height +'cloud top height' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 500543 +#vertical vorticity +'vertical vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 500544 +#Potential vorticity +'Potential vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } + +#paramId: 500545 +#Density +'Density' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 500546 +#Altimeter Settings +'Altimeter Settings' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'Convective Precipitation (difference)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500548 +#Soil moisture +'Soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 500549 +#Soil moisture +'Soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } + +#paramId: 500568 +#Geopotential height +'Geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 500569 +#Relative Divergenz +'Relative Divergenz' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'Logarithm of Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'Soil Temperature (layer)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'Soil Moisture Content (0-7 cm)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 7 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'Soil Moisture Content (7-50 cm)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 50 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 7 ; + } + +#paramId: 500584 +#Sunshine duration +'Sunshine duration' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500588 +#Snow melt +'Snow melt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 500593 +#Global radiation flux +'Global radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 500594 +#exner pressure +'exner pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } + +#paramId: 500595 +#normal wind component +'normal wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 34 ; + } + +#paramId: 500596 +#tangential wind component +'tangential wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 35 ; + } + +#paramId: 500597 +#virtual potential temperature +'virtual potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500598 +#Current Direction +'Current Direction' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500599 +#Current Speed +'Current Speed' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500642 +#Lapse rate +'Lapse rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500779 +#Effective radius of cloud water +'Effective radius of cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'Effective radius of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'Effective radius of cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'Effective radius of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'Effective radius of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'Effective radius of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'Effective radius of subgrid liquid clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'Effective radius of subgrid ice clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'Effective aspect ratio of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'Effective aspect ratio of cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'Effective aspect ratio of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'Effective aspect ratio of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'Effective aspect ratio of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'Effective aspect ratio of subgrid ice clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'Specific Humidity (S)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'Albedo - diffusive solar - time average (0.3 - 5.0 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'Albedo - diffusive solar (0.3 - 5.0 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } + +#paramId: 502309 +#center latitude +'center latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502310 +#center longitude +'center longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502311 +#edge midpoint latitude +'edge midpoint latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502312 +#edge midpoint longitude +'edge midpoint longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502313 +#vertex latitude +'vertex latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502314 +#vertex longitude +'vertex longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502315 +#Number of cloud droplets per unit mass of air +'Number of cloud droplets per unit mass of air' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 28 ; + } + +#paramId: 502316 +#Number of cloud ice particles per unit mass of air +'Number of cloud ice particles per unit mass of air' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 29 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'Latent Heat Net Flux - instant - at surface' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'Sensible Heat Net Flux - instant - at surface' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502319 +#Latent Heat Net Flux - accumulated _ surface +'Latent Heat Net Flux - accumulated _ surface' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502320 +#Sensible Heat Net Flux - accumulated _ surface +'Sensible Heat Net Flux - accumulated _ surface' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502321 +#Net short wave radiation flux - accumulated _ surface +'Net short wave radiation flux - accumulated _ surface' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502322 +#Net long wave radiation flux - accumulated _ surface +'Net long wave radiation flux - accumulated _ surface' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502323 +#Net long wave radiation flux - accumulated _ model top +'Net long wave radiation flux - accumulated _ model top' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502327 +#Net short wave radiation flux - accumulated _ model top +'Net short wave radiation flux - accumulated _ model top' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502328 +#Snow temperature - multi level +'Snow temperature - multi level ' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502329 +#Snow depth - multi level +'Snow depth - multi level ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502330 +#Snow density in - multi level +'Snow density in - multi level ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502331 +#Water equivalent of accumulated snoe depth in - multi level +'Water equivalent of accumulated snoe depth in - multi level ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502333 +#salinity +'salinity' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 502334 +#Stream function +'Stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 502335 +#Velocity potential +'Velocity potential' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 502336 +#Skin temperature +'Skin temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502340 +#Snow cover +'Snow cover ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } + +#paramId: 502341 +#Cloud Cover (0 - 400 hPa) +'Cloud Cover (0 - 400 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 40000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502342 +#Cloud Cover (400 - 800 hPa) +'Cloud Cover (400 - 800 hPa)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 80000 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 40000 ; + } + +#paramId: 502343 +#Cloud Cover (800 hPa - Soil) +'Cloud Cover (800 hPa - Soil)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 80000 ; + } + +#paramId: 502348 +#Water Runoff (s) +'Water Runoff (s)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502349 +#Water Runoff +'Water Runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 1 ; + } + +#paramId: 502397 +#Virtual Temperature +'Virtual Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502424 +#Vertical u-component shear +'Vertical u-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } + +#paramId: 502425 +#Vertical v-component shear +'Vertical v-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } + +#paramId: 502693 +#Potential temperature +'Potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502700 +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } + +#paramId: 502701 +#Sunshine duration +'Sunshine duration' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502702 +#Brightness temperature +'Brightness temperature' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } + +#paramId: 502703 +#Heat index +'Heat index' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502705 +#Total column water +'Total column water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } + +#paramId: 502706 +#Large scale precipitation (non-convective) +'Large scale precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502707 +#Snowfall rate water equivalent +'Snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502708 +#Convective snow +'Convective snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } + +#paramId: 502709 +#Large scale snow +'Large scale snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } + +#paramId: 502710 +#Snow age +'Snow age' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } + +#paramId: 502711 +#Absolute humidity +'Absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } + +#paramId: 502712 +#Precipitation type +'Precipitation type' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } + +#paramId: 502713 +#Integrated liquid water +'Integrated liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } + +#paramId: 502714 +#Condensate +'Condensate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } + +#paramId: 502715 +#Ice water mixing ratio +'Ice water mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } + +#paramId: 502717 +#Maximum relative humidity +'Maximum relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } + +#paramId: 502718 +#Maximum absolute humidity +'Maximum absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } + +#paramId: 502719 +#Total snowfall +'Total snowfall' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } + +#paramId: 502720 +#Precipitable water category +'Precipitable water category' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } + +#paramId: 502721 +#Hail +'Hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } + +#paramId: 502722 +#Categorical rain +'Categorical rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } + +#paramId: 502723 +#Categorical freezing rain +'Categorical freezing rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } + +#paramId: 502724 +#Categorical ice pellets +'Categorical ice pellets' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } + +#paramId: 502725 +#Categorical snow +'Categorical snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } + +#paramId: 502727 +#Percent frozen precipitation +'Percent frozen precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } + +#paramId: 502728 +#Potential evaporation +'Potential evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } + +#paramId: 502729 +#Potential evaporation rate +'Potential evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } + +#paramId: 502730 +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } + +#paramId: 502731 +#Rime factor +'Rime factor' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } + +#paramId: 502732 +#Large scale water precipitation (non-convective) +'Large scale water precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } + +#paramId: 502733 +#Convective water precipitation +'Convective water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } + +#paramId: 502734 +#Total water precipitation +'Total water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } + +#paramId: 502735 +#Total snow precipitation +'Total snow precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } + +#paramId: 502737 +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } + +#paramId: 502738 +#Convective snowfall rate +'Convective snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } + +#paramId: 502739 +#Large scale snowfall rate +'Large scale snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } + +#paramId: 502740 +#Water equivalent of accumulated snow depth +'Water equivalent of accumulated snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502741 +#Freezing rain precipitation rate +'Freezing rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } + +#paramId: 502742 +#Ice pellets precipitation rate +'Ice pellets precipitation rate ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } + +#paramId: 502743 +#Maximum wind speed +'Maximum wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } + +#paramId: 502744 +#u-component of wind (gust) +'u-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } + +#paramId: 502745 +#v-component of wind (gust) +'v-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } + +#paramId: 502746 +#Horizontal momentum flux +'Horizontal momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } + +#paramId: 502747 +#U-component storm motion +'U-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } + +#paramId: 502748 +#V-component storm motion +'V-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } + +#paramId: 502749 +#Thickness +'Thickness' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502751 +#Minimum dew point depression +'Minimum dew point depression' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502752 +#Pressure altitude +'Pressure altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502753 +#Density altitude +'Density altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502754 +#5-wave geopotential height +'5-wave geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502755 +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502756 +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 502757 +#Planetary boundary layer height +'Planetary boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } + +#paramId: 502758 +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 502759 +#Net short-wave radiation flux (top of atmosphere) +'Net short-wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502760 +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } + +#paramId: 502761 +#Net short-wave radiation flux, clear sky +'Net short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } + +#paramId: 502762 +#Downward UV radiation +'Downward UV radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } + +#paramId: 502763 +#Net long wave radiation flux (surface) +'Net long wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } + +#paramId: 502764 +#Net long wave radiation flux (top of atmosphere) +'Net long wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } + +#paramId: 502765 +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } + +#paramId: 502766 +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } + +#paramId: 502767 +#Net long-wave radiation flux, clear sky +'Net long-wave radiation flux, clear sky ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } + +#paramId: 502768 +#Cloud Ice +'Cloud Ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } + +#paramId: 502769 +#Cloud water +'Cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } + +#paramId: 502770 +#Cloud amount +'Cloud amount' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } + +#paramId: 502771 +#Cloud type +'Cloud type' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } + +#paramId: 502772 +#Thunderstorm maximum tops +'Thunderstorm maximum tops' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } + +#paramId: 502773 +#Thunderstorm coverage +'Thunderstorm coverage' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } + +#paramId: 502774 +#Cloud base +'Cloud base' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } + +#paramId: 502775 +#Cloud top +'Cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } + +#paramId: 502776 +#Cloud work function +'Cloud work function' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } + +#paramId: 502777 +#Convective cloud efficiency +'Convective cloud efficiency' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } + +#paramId: 502778 +#Total condensate +'Total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } + +#paramId: 502779 +#Total column-integrated cloud water +'Total column-integrated cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } + +#paramId: 502780 +#Total column-integrated cloud ice +'Total column-integrated cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } + +#paramId: 502781 +#Total column-integrated condensate +'Total column-integrated condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } + +#paramId: 502782 +#Ice fraction of total condensate +'Ice fraction of total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } + +#paramId: 502783 +#Cloud ice mixing ratio +'Cloud ice mixing ratio' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } + +#paramId: 502785 +#K index +'K index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 502786 +#Total totals index +'Total totals index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } + +#paramId: 502787 +#Sweat index +'Sweat index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } + +#paramId: 502788 +#Energy helicity index +'Energy helicity index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } + +#paramId: 502789 +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } + +#paramId: 502790 +#Best (4-layer) lifted index +'Best (4-layer) lifted index ' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } + +#paramId: 502791 +#Aerosol type +'Aerosol type' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } + +#paramId: 502792 +#Base spectrum width +'Base spectrum width' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } + +#paramId: 502793 +#Base radial velocity +'Base radial velocity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } + +#paramId: 502794 +#Vertically-integrated liquid +'Vertically-integrated liquid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } + +#paramId: 502795 +#Layer-maximum base reflectivity +'Layer-maximum base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } + +#paramId: 502796 +#Precipitation +'Precipitation' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 502797 +#Air concentration of Caesium 137 +'Air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } + +#paramId: 502798 +#Air concentration of Iodine 131 +'Air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } + +#paramId: 502799 +#Air concentration of radioactive pollutant +'Air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } + +#paramId: 502800 +#Ground deposition of Caesium 137 +'Ground deposition of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } + +#paramId: 502801 +#Ground deposition of Iodine 131 +'Ground deposition of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } + +#paramId: 502802 +#Ground deposition of radioactive pollutant +'Ground deposition of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } + +#paramId: 502843 +#Time-integrated air concentration of caesium pollutant +'Time-integrated air concentration of caesium pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } + +#paramId: 502844 +#Time-integrated air concentration of iodine pollutant +'Time-integrated air concentration of iodine pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } + +#paramId: 502845 +#Time-integrated air concentration of radioactive pollutant +'Time-integrated air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } + +#paramId: 502846 +#Volcanic ash +'Volcanic ash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } + +#paramId: 502847 +#Icing top +'Icing top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } + +#paramId: 502848 +#Icing base +'Icing base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } + +#paramId: 502849 +#Turbulence top +'Turbulence top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } + +#paramId: 502850 +#Turbulence base +'Turbulence base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } + +#paramId: 502851 +#Turbulence +'Turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } + +#paramId: 502852 +#Planetary boundary layer regime +'Planetary boundary layer regime' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } + +#paramId: 502853 +#Contrail intensity +'Contrail intensity' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } + +#paramId: 502854 +#Contrail engine type +'Contrail engine type' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } + +#paramId: 502855 +#Contrail top +'Contrail top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } + +#paramId: 502856 +#Contrail base +'Contrail base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } + +#paramId: 502857 +#Maximum snow albedo +'Maximum snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } + +#paramId: 502858 +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } + +#paramId: 502859 +#Horizontal extent of cumulonimbus (CB) +'Horizontal extent of cumulonimbus (CB)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } + +#paramId: 502860 +#In-cloud turbulence +'In-cloud turbulence ' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } + +#paramId: 502861 +#Clear air turbulence (CAT) +'Clear air turbulence (CAT)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } + +#paramId: 502862 +#Supercooled large droplet probability (see Note 4) +'Supercooled large droplet probability (see Note 4)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } + +#paramId: 502864 +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502865 +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 502866 +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502867 +#Remotely sensed snow cover +'Remotely sensed snow cover' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502868 +#Elevation of snow covered terrain +'Elevation of snow covered terrain' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 502869 +#Snow water equivalent percent of normal +'Snow water equivalent percent of normal' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502870 +#Baseflow-groundwater runoff +'Baseflow-groundwater runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502871 +#Storm surface runoff +'Storm surface runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502872 +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502873 +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502874 +#Probability of 0.01 inch of precipitation (POP) +'Probability of 0.01 inch of precipitation (POP)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502875 +#Evapotranspiration +'Evapotranspiration' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502876 +#Land use +'Land use' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 502877 +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502878 +#Ground heat flux +'Ground heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502879 +#Moisture availability +'Moisture availability' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502880 +#Exchange coefficient +'Exchange coefficient' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502881 +#Blackadar mixing length scale +'Blackadar mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502882 +#Canopy conductance +'Canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 502883 +#Solar parameter in canopy conductance +'Solar parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 502885 +#Soil moisture parameter in canopy conductance +'Soil moisture parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 502886 +#Humidity parameter in canopy conductance +'Humidity parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 502887 +#Column-integrated soil water +'Column-integrated soil water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 502888 +#Heat flux +'Heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 502889 +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 502890 +#Volumetric wilting point +'Volumetric wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 502891 +#Upper layer soil temperature +'Upper layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502892 +#Upper layer soil moisture +'Upper layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } + +#paramId: 502893 +#Lower layer soil moisture +'Lower layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 502894 +#Bottom layer soil temperature +'Bottom layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 502895 +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 502896 +#Number of soil layers in root zone +'Number of soil layers in root zone' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } + +#paramId: 502897 +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502898 +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502899 +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502900 +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 502919 +#Volumetric transpiration stress-onset (soil moisture) +'Volumetric transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 502920 +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502921 +#Volumetric direct evaporation cease (soil moisture) +'Volumetric direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502922 +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502923 +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502924 +#Volumetric saturation of soil moisture +'Volumetric saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502926 +#Estimated precipitation +'Estimated precipitation' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502927 +#Instantaneous rain rate +'Instantaneous rain rate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502928 +#Cloud top height quality indicator +'Cloud top height quality indicator' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502929 +#Estimated u component of wind +'Estimated u component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 502930 +#Estimated v component of wind +'Estimated v component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502931 +#Number of pixels used +'Number of pixels used' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } + +#paramId: 502932 +#Solar zenith angle +'Solar zenith angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502933 +#Reflectance in 0.6 micron channel +'Reflectance in 0.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502934 +#Reflectance in 0.8 micron channel +'Reflectance in 0.8 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502935 +#Reflectance in 1.6 micron channel +'Reflectance in 1.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 502936 +#Reflectance in 3.9 micron channel +'Reflectance in 3.9 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502937 +#Atmospheric divergence +'Atmospheric divergence' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502938 +#Primary wave direction +'Primary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502939 +#Primary wave mean period +'Primary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502940 +#Secondary wave mean period +'Secondary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 502941 +#Deviation of sea level from mea +'Deviation of sea level from mea' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502942 +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502943 +#Standard deviation of height +'Standard deviation of height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502944 +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502945 +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502946 +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 502947 +#Radar spectra (2) +'Radar spectra (2)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } + +#paramId: 502948 +#Radar spectra (3) +'Radar spectra (3)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } + +#paramId: 502949 +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 502950 +#Temperature anomaly +'Temperature anomaly' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502951 +#Pressure anomaly +'Pressure anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502952 +#Geopotential height anomaly +'Geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502953 +#Montgomery stream Function +'Montgomery stream Function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 502954 +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 502955 +#Absolute divergence +'Absolute divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 502958 +#U-component of current +'U-component of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502959 +#V-component of current +'V-component of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502960 +#Precipitable water +'Precipitable water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502961 +#Saturation deficit +'Saturation deficit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502962 +#Precipitation rate +'Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502963 +#Thunderstorm probability +'Thunderstorm probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } + +#paramId: 502964 +#Convective precipitation (water) +'Convective precipitation (water)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502965 +#Transient thermocline depth +'Transient thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } + +#paramId: 502966 +#Main thermocline depth +'Main thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 502967 +#Main thermocline anomaly +'Main thermocline anomaly' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502968 +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 502969 +#Soil moisture content +'Soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 503011 +#Salinity +'Salinity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 503012 +#Direction of ice drift +'Direction of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503013 +#Speed of ice drift +'Speed of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503014 +#U-component of ice drift +'U-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503015 +#V-component of ice drift +'V-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503016 +#Ice growth rate +'Ice growth rate' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503017 +#Ice divergence +'Ice divergence' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503019 +#Secondary wave direction +'Secondary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 503020 +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 503021 +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } + +#paramId: 503022 +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } + +#paramId: 503023 +#Convective inhibition +'Convective inhibition' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } + +#paramId: 503024 +#Wind mixing energy +'Wind mixing energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } + +#paramId: 503025 +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 503028 +#Wilting point +'Wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 503038 +#Snow phase change heat flux +'Snow phase change heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503039 +#Vapor pressure +'Vapor pressure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 503047 +#Land use class fraction +'Land use class fraction' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 503048 +#Saturation of soil moisture +'Saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'Momentum Flux, U-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'Momentum Flux, V-Component (m)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503075 +#Geometric height of the earths surface above mean sea level at vertex point (ICON) +'Geometric height of the earths surface above mean sea level at vertex point (ICON) ' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + numberOfGridInReference = 2 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'Gravity wave dissipation ' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503080 +#Land use class +'Land use class' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 503081 +#Water depth +'Water depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } + +#paramId: 503082 +#Friction velocity +'Friction velocity' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } + +#paramId: 503083 +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503084 +#Normalized wave stress +'Normalized wave stress' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 503085 +#Inverse mean frequency of wind waves +'Inverse mean frequency of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } + +#paramId: 503086 +#Mean zero-crossing period of wind waves +'Mean zero-crossing period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 503087 +#Directional width of wind waves +'Directional width of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 503088 +#Inverse mean frequency of total swell +'Inverse mean frequency of total swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503089 +#Inverse mean zero crossing period of total swell +'Inverse mean zero crossing period of total swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 503090 +#Directional width of total swell +'Directional width of total swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } + +#paramId: 503091 +#Goda peakedness parameter +'Goda peakedness parameter' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 45 ; + } + +#paramId: 503092 +#Spectral kurtosis +'Spectral kurtosis' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 43 ; + } + +#paramId: 503093 +#Benjamin-Feir index +'Benjamin-Feir index' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 44 ; + } + +#paramId: 503094 +#Maximum individual wave height +'Maximum individual wave height' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 503095 +#Maximum wave period +'Maximum wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 503097 +#Meansquare slope +'Meansquare slope' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 503106 +#Hail mixing ratio +'Hail mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 71 ; + } + +#paramId: 503107 +#Hail +'Hail ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 72 ; + } + +#paramId: 503108 +#Hail precipitation rate +'Hail precipitation rate ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + } + +#paramId: 503109 +#Reflectivity of cloud droplets +'Reflectivity of cloud droplets' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 9 ; + } + +#paramId: 503110 +#Reflectivity of cloud ice +'Reflectivity of cloud ice' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 10 ; + } + +#paramId: 503111 +#Reflectivity of snow +'Reflectivity of snow' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 11 ; + } + +#paramId: 503112 +#Reflectivity of rain +'Reflectivity of rain' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 12 ; + } + +#paramId: 503113 +#Reflectivity of graupel +'Reflectivity of graupel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 13 ; + } + +#paramId: 503114 +#Reflectivity of hail +'Reflectivity of hail' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 14 ; + } + +#paramId: 503130 +#Hail precipitation rate, accumulation +'Hail precipitation rate, accumulation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503132 +#Number density of cloud droplets +'Number density of cloud droplets' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 30 ; + } + +#paramId: 503133 +#Number density of cloud ice particles +'Number density of cloud ice particles' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 31 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'Downward long-wave radiation flux avg' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'Downward long-wave radiation flux accum' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503145 +#2m absolute humidity +'2m absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503154 +#Bulk Richardson number +'Bulk Richardson number' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 16 ; + } + +#paramId: 503155 +#Cape of mixed (mean) layer parcel, ascent up to 3 km +'Cape of mixed (mean) layer parcel, ascent up to 3 km' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 3000 ; + } + +#paramId: 503166 +#Geostrophic wind direction +'Geostrophic wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 43 ; + } + +#paramId: 503169 +#Dewpoint depression +'Dewpoint depression' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 503170 +#2m dewpoint depression +'2m dewpoint depression' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503173 +#Geostrophic wind speed +'Geostrophic wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 44 ; + } + +#paramId: 503174 +#Downward short wave radiation flux at surface (time average) +'Downward short wave radiation flux at surface (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503186 +#Height of lifting condensation level of mixed (mean) layer parcel +'Height of lifting condensation level of mixed (mean) layer parcel' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 5 ; + } + +#paramId: 503192 +#Humidity mixing ratio +'Humidity mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 503193 +#2m Humidity mixing ratio +'2m Humidity mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503195 +#relative humidity over ice +'relative humidity over ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } + +#paramId: 503196 +#Gradient Richardson number +'Gradient Richardson number' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 17 ; + } + +#paramId: 503197 +#Showalter index +'Showalter index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 13 ; + } + +#paramId: 503204 +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503210 +#2m potential temperature +'2m potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503211 +#Dew point temperature +'Dew point temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 503212 +#2m equivalentTemperature +'2m equivalentTemperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503213 +#2m virtual potential temperature +'2m virtual potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503214 +#Temperature at cloud top +'Temperature at cloud top' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503215 +#Wet bulb temperature +'Wet bulb temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503216 +#2m wet bulb temperature +'2m wet bulb temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503219 +#Universal thermal climate index with direct incident short wave radiation +'Universal thermal climate index with direct incident short wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 503220 +#u-component of geostrophic wind +'u-component of geostrophic wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 41 ; + } + +#paramId: 503221 +#v-component of geostrophic wind +'v-component of geostrophic wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 42 ; + } + +#paramId: 503229 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503230 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503231 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503232 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 4' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 4 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503233 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 5' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 5 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503234 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 +'Prognostic mass mixing ratio of volcanic ash particles for bin number 6' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 6 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503235 +#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) +'Modal prognostic mass mixing ratio of volcanic ash particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503236 +#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) +'Modal prognostic mass mixing ratio of volcanic ash particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503237 +#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) +'Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503238 +#Modal prognostic specific number concentration of volcanic ash particles (fine mode) +'Modal prognostic specific number concentration of volcanic ash particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503239 +#Modal prognostic specific number concentration of volcanic ash particles (medium mode) +'Modal prognostic specific number concentration of volcanic ash particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503240 +#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) +'Modal prognostic specific number concentration of volcanic ash particles (coarse mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503241 +#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) +'Modal prognostic mass mixing ratio of mineral dust particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503242 +#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) +'Modal prognostic mass mixing ratio of mineral dust particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503243 +#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) +'Modal prognostic mass mixing ratio of mineral dust particles (coarse mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503244 +#Modal prognostic specific number concentration of mineral dust particles (fine mode) +'Modal prognostic specific number concentration of mineral dust particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503245 +#Modal prognostic specific number concentration of mineral dust particles (medium mode) +'Modal prognostic specific number concentration of mineral dust particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503246 +#Modal prognostic specific number concentration of mineral dust particles (coarsemode) +'Modal prognostic specific number concentration of mineral dust particles (coarsemode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503247 +#Modal prognostic mass mixing ratio of sea salt particles (fine mode) +'Modal prognostic mass mixing ratio of sea salt particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503248 +#Modal prognostic mass mixing ratio of sea salt particles (medium mode) +'Modal prognostic mass mixing ratio of sea salt particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503249 +#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) +'Modal prognostic mass mixing ratio of sea salt particles (coarse mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503250 +#Modal prognostic specific number concentration of sea salt particles (fine mode) +'Modal prognostic specific number concentration of sea salt particles (fine mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503251 +#Modal prognostic specific number concentration of sea salt particles (medium mode) +'Modal prognostic specific number concentration of sea salt particles (medium mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503252 +#Modal prognostic specific number concentration of sea salt particles (coarse mode) +'Modal prognostic specific number concentration of sea salt particles (coarse mode)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503253 +#Cs137 - wet deposition +'Cs137 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30172 ; + } + +#paramId: 503254 +#Prognostic specific activity concentration of Iodine 131 aerosol +'Prognostic specific activity concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30141 ; + } + +#paramId: 503255 +#Te132 - total (wet + dry) deposition +'Te132 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30129 ; + } + +#paramId: 503256 +#Prognostic specific activity concentration of Zirconium 95 +'Prognostic specific activity concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30079 ; + } + +#paramId: 503257 +#Prognostic specific activity concentration of Xenon 133 +'Prognostic specific activity concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30161 ; + } + +#paramId: 503258 +#Prognostic specific activity concentration of Iodine 131 elementary gaseous +'Prognostic specific activity concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30138 ; + } + +#paramId: 503259 +#Prognostic specific activity concentration of Iodine 131 organic bounded +'Prognostic specific activity concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30139 ; + } + +#paramId: 503260 +#Prognostic specific activity concentration of Barium 140 +'Prognostic specific activity concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30175 ; + } + +#paramId: 503261 +#Prognostic specific activity concentration of Ruthenium 103 +'Prognostic specific activity concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30102 ; + } + +#paramId: 503262 +#Diagnostic total mass concentration of volcanic ash +'Diagnostic total mass concentration of volcanic ash' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 0 ; + constituentType = 62025 ; + } + +#paramId: 503263 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 +'Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 46500 ; + constituentType = 62025 ; + } + +#paramId: 503265 +#Diagnostic total column of mass concentration of volcanic ash +'Diagnostic total column of mass concentration of volcanic ash' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + constituentType = 62025 ; + } + +#paramId: 503266 +#Diagnostic height of model layer with maximal total mass concentration of volcanic ash +'Diagnostic height of model layer with maximal total mass concentration of volcanic ash' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 62 ; + constituentType = 62025 ; + } + +#paramId: 503267 +#Diagnostic volcanic ash optical depth +'Diagnostic volcanic ash optical depth' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62025 ; + } + +#paramId: 503268 +#Diagnostic mineral dust optical depth +'Diagnostic mineral dust optical depth' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62001 ; + } + +#paramId: 503269 +#Diagnostic sea salt optical depth +'Diagnostic sea salt optical depth' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62008 ; + } + +#paramId: 503270 +#Diagnostic vmaximum activity concentration of radionuclides in a layer +'Diagnostic vmaximum activity concentration of radionuclides in a layer' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 15 ; + } + +#paramId: 503273 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 +'Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 46500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 24000 ; + constituentType = 62025 ; + } + +#paramId: 503274 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 +'Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 70000 ; + constituentType = 62025 ; + } + +#paramId: 503275 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 +'Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 24000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 9100 ; + constituentType = 62025 ; + } + +#paramId: 503276 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 +'Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 70000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 38500 ; + constituentType = 62025 ; + } + +#paramId: 503277 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 +'Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 38500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 20000 ; + constituentType = 62025 ; + } + +#paramId: 503278 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 +'Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 20000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10000 ; + constituentType = 62025 ; + } + +#paramId: 503279 +#Diagnostic maximum total mass concentration of volcanic ash in a layer +'Diagnostic maximum total mass concentration of volcanic ash in a layer' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + constituentType = 62025 ; + } + +#paramId: 503280 +#Aerosol optical depth +'Aerosol optical depth' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + } + +#paramId: 503293 +#Large Scale Rain Difference +'Large Scale Rain Difference' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503294 +#Large Scale Snowfall water Equivalent Difference +'Large Scale Snowfall water Equivalent Difference' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503295 +#Convective Rain Difference +'Convective Rain Difference' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503296 +#Convective Snowfall Water Equivalent Difference +'Convective Snowfall Water Equivalent Difference' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503303 +#Total precipitation rate +'Total precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } + +#paramId: 503304 +#Horizontal moisture convergence +'Horizontal moisture convergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } + +#paramId: 503305 +#TOA downward solar radiation +'TOA downward solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 503306 +#Surface upward thermal radiation +'Surface upward thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503307 +#Surface upward thermal radiation +'Surface upward thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503308 +#Specific mass of liquid water coating on hail +'Specific mass of liquid water coating on hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 110 ; + } + +#paramId: 503309 +#Specific mass of liquid water coating on graupel +'Specific mass of liquid water coating on graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 113 ; + } + +#paramId: 503310 +#Specific mass of liquid water coating on snow +'Specific mass of liquid water coating on snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 116 ; + } + +#paramId: 503311 +#Specific number concentration of rain +'Specific number concentration of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 100 ; + } + +#paramId: 503312 +#Number density of rain +'Number density of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 104 ; + } + +#paramId: 503313 +#Specific number concentration of snow +'Specific number concentration of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 101 ; + } + +#paramId: 503314 +#Specific number concentration of graupel +'Specific number concentration of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 102 ; + } + +#paramId: 503315 +#Specific number concentration of hail +'Specific number concentration of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 103 ; + } + +#paramId: 503316 +#Number density of snow +'Number density of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 105 ; + } + +#paramId: 503317 +#Number density of graupel +'Number density of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 106 ; + } + +#paramId: 503318 +#Number density of hail +'Number density of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 107 ; + } + +#paramId: 503319 +#Mass density of rain +'Mass density of rain ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 96 ; + } + +#paramId: 503320 +#Mass density of snow +'Mass density of snow ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 97 ; + } + +#paramId: 503321 +#Mass density of graupel +'Mass density of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 98 ; + } + +#paramId: 503322 +#Mass density of cloud droplets +'Mass density of cloud droplets' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 38 ; + } + +#paramId: 503323 +#Mass density of cloud ice +'Mass density of cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 39 ; + } + +#paramId: 503324 +#Mass density of hail +'Mass density of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 99 ; + } + +#paramId: 503326 +#Diagnostic total column of activity concentration of radionuclides +'Diagnostic total column of activity concentration of radionuclides' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503327 +#Base for given threshold of mass density for volcanic ash cloud +'Base for given threshold of mass density for volcanic ash cloud' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62025 ; + } + +#paramId: 503328 +#Base for given threshold of mass density for mineral dust cloud +'Base for given threshold of mass density for mineral dust cloud' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62001 ; + } + +#paramId: 503330 +#Top for given threshold of mass density for volcanic ash cloud +'Top for given threshold of mass density for volcanic ash cloud' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62025 ; + } + +#paramId: 503331 +#Top for given threshold of mass density for mineral dust cloud +'Top for given threshold of mass density for mineral dust cloud' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62001 ; + } + +#paramId: 503332 +#Top for given threshold of air concentration of radionuclides +'Top for given threshold of air concentration of radionuclides' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 24 ; + } + +#paramId: 503333 +#Emission rate of dust for mode 2 +'Emission rate of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503334 +#Emission rate of dust for mode 3 +'Emission rate of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503335 +#Emission rate of dust for mode 1 +'Emission rate of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503336 +#Accumulated dust Emission for mode 2 +'Accumulated dust Emission for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503337 +#Accumulated dust Emission for mode 1 +'Accumulated dust Emission for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503338 +#Accumulated dust Emission for mode 3 +'Accumulated dust Emission for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503340 +#Base for given threshold of air concentration of radionuclides +'Base for given threshold of air concentration of radionuclides' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 23 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'Maximum amplitude (positive or negative) of updraft helicity (over given time interval)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 15 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'Maximum total-column integrated condensed water above -10 C isotherm (over given time interval)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 26315 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'Maximum total-column integrated condensed water (over given time interval)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'Composite reflectivity - observation' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 8 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'Composite reflectivity - forecast (simulation)' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'Maximum reflectivity track (over given time interval and entire atmosphere)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503350 +#relative vorticity +'relative vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503352 +#2m Temperature, restricted to land +'2m Temperature, restricted to land' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503353 +#2m Dew Point Temperature, restricted to land +'2m Dew Point Temperature, restricted to land' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503354 +#2m Relative Humidity, restricted to land +'2m Relative Humidity, restricted to land' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503357 +#Maximum 10m wind speed without gust +'Maximum 10m wind speed without gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503360 +#Birch (betula) pollen concentration +'Birch (betula) pollen concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62101 ; + } + +#paramId: 503362 +#Fraction of land occupied by birch (betula) +'Fraction of land occupied by birch (betula)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503368 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) +'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62101 ; + } + +#paramId: 503375 +#Alder (alnus) pollen concentration +'Alder (alnus) pollen concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62100 ; + } + +#paramId: 503376 +#Fraction of land occupied by alder (alnus) +'Fraction of land occupied by alder (alnus)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503382 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) +'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62100 ; + } + +#paramId: 503390 +#Grasses (poaceae) pollen concentration +'Grasses (poaceae) pollen concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62300 ; + } + +#paramId: 503391 +#Fraction of land occupied by grasses (poaceae) +'Fraction of land occupied by grasses (poaceae)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503397 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) +'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62300 ; + } + +#paramId: 503405 +#ragweed (ambrosia) pollen concentration +'ragweed (ambrosia) pollen concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62200 ; + } + +#paramId: 503406 +#Fraction of land occupied by ragweed (ambrosia) +'Fraction of land occupied by ragweed (ambrosia)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503412 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) +'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62200 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'Echotop-height: largest height where radar reflectivity above a threshold is present' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503423 +#Maximum horizontal moisture convergence track (over given time interval and column) +'Maximum horizontal moisture convergence track (over given time interval and column)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'Accumulated dry deposition (surface) of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'Accumulated dry deposition (surface) of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'Accumulated dry deposition (surface) of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'Accumulated wet deposition by grid scale precipitation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'Accumulated wet deposition by grid scale precipitation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'Accumulated wet deposition by grid scale precipitation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'Accumulated wet deposition by convective precipitation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'Accumulated wet deposition by convective precipitation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'Accumulated wet deposition by convective precipitation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'Accumulated sedimentation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'Accumulated sedimentation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'Accumulated sedimentation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'Attenuated backscatter from satellite for dust (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'Attenuated backscatter from ground (ceilometer) for dust (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'Attenuated backscatter from satellite for volcanic ash (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'2m Temperature analysis increment, filtered in time' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Cs137 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Prognostic specific activity concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'Averaged air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'Accumulated air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Prognostic specific activity concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Kr85 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'Averaged air concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'Accumulated air concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Prognostic specific activity concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'Averaged air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'Accumulated air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Sr90 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'I131a - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'Averaged air concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'Accumulated air concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'Averaged air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'Accumulated air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Prognostic specific activity concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Co-60 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Co60 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Ru103 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'Averaged air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'Accumulated air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Prognostic specific activity concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'Averaged air concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'Accumulated air concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Zr95 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'Averaged air concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'Accumulated air concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'TRACER - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Prognostic specific activity concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'Averaged air concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'Accumulated air concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'Averaged air concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'Accumulated air concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Xe133 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'Air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'I131 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'Averaged air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'Accumulated air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'Prognostic specific activity concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'I131 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'I131 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'Averaged air concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'Accumulated air concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'I131g - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'Averaged air concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'Accumulated air concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'I131o - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Ba140 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'Averaged air concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'Accumulated air concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Ru106 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Prognostic specific activity concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Ru106 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Ru106 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'Averaged air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'Accumulated air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Co-60 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Kr85m - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Kr85m - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Prognostic specific activity concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Kr85m - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'Averaged air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'Accumulated air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'Birch (betula) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'Alder (alnus) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'Grasses (poaceae) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'Ragweed (ambrosia) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'Total lightning flash density - instantaneous' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'Total lightning flash density - time average' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'Solar radiation heating rate' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'Thermal radiation heating rate' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'Latent heat flux from bare soil' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'Latent heat flux from plants' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500097 +#Stomatal resistance +'Stomatal resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } + +#paramId: 500109 +#Vertical integral of divergence of total water content - accumulation +'Vertical integral of divergence of total water content - accumulation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500110 +#Sub-grid scale cloud water +'Sub-grid scale cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } + +#paramId: 500111 +#Sub-grid scale cloud ice +'Sub-grid scale cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } + +#paramId: 500115 +#Cloud base above MSL, shallow convection +'Cloud base above MSL, shallow convection' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500116 +#Cloud top above MSL, shallow convection +'Cloud top above MSL, shallow convection' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500117 +#Specific cloud liquid water content, convective cloud +'Specific cloud liquid water content, convective cloud' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } + +#paramId: 500120 +#Base index (vertical level) of main convective cloud +'Base index (vertical level) of main convective cloud' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500121 +#Top index (vertical level) of main convective cloud +'Top index (vertical level) of main convective cloud' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'Temperature tendency due to convection' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'Specific humidity tendency due to convection' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + } + +#paramId: 500124 +#Zonal wind tendency due to convection +'Zonal wind tendency due to convection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + } + +#paramId: 500125 +#Meridional wind tendency due to convection +'Meridional wind tendency due to convection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'Height of top of dry convection above MSL' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'Height of snow fall limit above MSL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'Tendency of specific cloud liquid water content due to convection' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + } + +#paramId: 500130 +#Tendency of specific cloud ice content due to convection +'Tendency of specific cloud ice content due to convection' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'Specific content of precipitation particles (needed for water loading)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipitation +'Temperature tendency due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'Specific humidity tendency due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + } + +#paramId: 500142 +#Tendency of specific cloud liquid water content due to grid scale precipitation +'Tendency of specific cloud liquid water content due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } + +#paramId: 500144 +#Tendency of specific cloud ice content due to grid scale precipitation +'Tendency of specific cloud ice content due to grid scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + } + +#paramId: 500148 +#Pressure perturbation +'Pressure perturbation' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500149 +#Supercell detection index 1 (rot. up- and downdrafts) +'Supercell detection index 1 (rot. up- and downdrafts)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } + +#paramId: 500150 +#Supercell detection index 2 (only rot. updrafts) +'Supercell detection index 2 (only rot. updrafts)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'Convective Available Potential Energy, most unstable' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'Convective Inhibition, most unstable' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'Convective Available Potential Energy, mean layer' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'Convective Inhibition, mean layer' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'Tendency of turbulent kinetic energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } + +#paramId: 500157 +#Kinetic energy +'Kinetic energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + } + +#paramId: 500176 +#Solution of 2-d Helmholtz equations - needed for restart +'Solution of 2-d Helmholtz equations - needed for restart' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 192 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'Effective transmissivity of solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + } + +#paramId: 500178 +#Sum of contributions to evaporation +'Sum of contributions to evaporation' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500179 +#Total transpiration from all soil layers +'Total transpiration from all soil layers' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500180 +#Total forcing at soil surface +'Total forcing at soil surface' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500181 +#Residuum of soil moisture +'Residuum of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500182 +#Mass flux at convective cloud base +'Mass flux at convective cloud base' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500184 +#Moisture convergence for Kuo-type closure +'Moisture convergence for Kuo-type closure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + } + +#paramId: 500195 +#Analysis error (standard deviation), geopotential (gpm) +'Analysis error (standard deviation), geopotential (gpm)' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500196 +#Analysis error (standard deviation), u-comp. of wind +'Analysis error (standard deviation), u-comp. of wind' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500197 +#Analysis error (standard deviation), v-comp. of wind +'Analysis error (standard deviation), v-comp. of wind' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500198 +#Zonal wind tendency due to sub-grid scale oro. +'Zonal wind tendency due to sub-grid scale oro.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + } + +#paramId: 500199 +#Meridional wind tendency due to sub-grid scale oro. +'Meridional wind tendency due to sub-grid scale oro.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + } + +#paramId: 500204 +#Surface emissivity +'Surface emissivity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } + +#paramId: 500205 +#Soil type (1...9, local soilType.table) +'Soil type (1...9, local soilType.table)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 500208 +#Height of ozone maximum (climatological) +'Height of ozone maximum (climatological)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + } + +#paramId: 500209 +#Vertically integrated ozone content (climatological) +'Vertically integrated ozone content (climatological)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + } + +#paramId: 500221 +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500222 +#Ratio of NDVI (normalized differential vegetation index) to annual maximum +'Ratio of NDVI (normalized differential vegetation index) to annual maximum' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500233 +#Tendency of specific humidity +'Tendency of specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + } + +#paramId: 500234 +#Water vapor flux +'Water vapor flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } + +#paramId: 500235 +#Coriolis parameter +'Coriolis parameter' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + } + +#paramId: 500239 +#Delay of the GPS signal through the (total) atmos. +'Delay of the GPS signal through the (total) atmos.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + } + +#paramId: 500240 +#Delay of the GPS signal through wet atmos. +'Delay of the GPS signal through wet atmos.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + } + +#paramId: 500241 +#Delay of the GPS signal through dry atmos. +'Delay of the GPS signal through dry atmos.' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + } + +#paramId: 500279 +#U-momentum flux due to SSO-effects (mean over forecast time) +'U-momentum flux due to SSO-effects (mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500280 +#U-momentum flux due to SSO-effects +'U-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500281 +#V-momentum flux due to SSO-effects (mean over forecast time) +'V-momentum flux due to SSO-effects (mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500282 +#V-momentum flux due to SSO-effects +'V-momentum flux due to SSO-effects' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'Absolute vorticity advection' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 197 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) +'Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 194 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'Hoehe der Konvektionsuntergrenze ueber nn' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 24 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'geostrophische Vorticityadvektion' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 0 ; + } + +#paramId: 500294 +#Geostrophic thickness advection +'Geostrophic thickness advection' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 1 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'Schichtdickenadvektion' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 2 ; + } + +#paramId: 500296 +#Winddivergenz +'Winddivergenz' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 3 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'Q-Vektor senkrecht zu den Isothermen' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 4 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'Isentrope potentielle Vorticity' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'Wind X-Komponente auf isentropen Flaechen' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 5 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'Wind Y-Komponente auf isentropen Flaechen' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 6 ; + } + +#paramId: 500306 +#Modified cloud depth for media +'Modified cloud depth for media' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + } + +#paramId: 500307 +#Modified cloud cover for media +'Modified cloud cover for media' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + } + +#paramId: 500322 +#RMS of difference "first guess - analysis" of kinetic energy +'RMS of difference "first guess - analysis" of kinetic energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500323 +#RMS of difference "initialized analysis - analysis" of kinetic energy +'RMS of difference "initialized analysis - analysis" of kinetic energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'Probability of 1h total precipitation >= 10mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'Probability of 1h total precipitation >= 25mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'Probability of 6h total precipitation >= 20mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 14 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'Probability of 6h total precipitation >= 35mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'Probability of 12h total precipitation >= 25mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'Probability of 12h total precipitation >= 40mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'Probability of 12h total precipitation >= 70mm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 32 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'Probability of 6h accumulated snow >=0.5cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 69 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'Probability of 6h accumulated snow >= 5cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 70 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'Probability of 6h accumulated snow >= 10cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 71 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'Probability of 12h accumulated snow >=0.5cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 72 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'Probability of 12h accumulated snow >= 10cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 74 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'Probability of 12h accumulated snow >= 15cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'Probability of 12h accumulated snow >= 25cm' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'Probability of 1h maximum wind gust speed >= 14m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 132 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'Probability of 1h maximum wind gust speed >= 18m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 134 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'Probability of 1h maximum wind gust speed >= 25m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 136 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'Probability of 1h maximum wind gust speed >= 29m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 137 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'Probability of 1h maximum wind gust speed >= 33m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 138 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'Probability of 1h maximum wind gust speed >= 39m/s' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 139 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'Probability of black ice during 1h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 191 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'Probability of thunderstorm during 1h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'Probability of heavy thunderstorm during 1h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'Probability of severe thunderstorm during 1h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'Probability of snowdrift during 12h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 212 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'Probability of strong snowdrift during 12h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 213 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'Probability of temperature < 0 deg C during 1h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 232 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'Probability of temperature <= -10 deg C during 6h' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 236 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'UV Index, clear sky; corrected for albedo, aerosol and altitude' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 195 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 196 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 197 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'Time of maximum of UV Index, clouded' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500472 +#Type of convection (0..4) +'Type of convection (0..4)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 201 ; + } + +#paramId: 500473 +#perceived temperature +'perceived temperature' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 1 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'probability to perceive sultriness' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 3 ; + } + +#paramId: 500479 +#value of isolation of clothes +'value of isolation of clothes' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 2 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'Downward direct short wave radiation flux at surface (mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500503 +#Icing Base (hft) - Icing Degree Composit +'Icing Base (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Icing Degree Composit +'Icing Max Base (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Icing Degree Composit +'Icing Max Top (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500506 +#Icing Top (hft) - Icing Degree Composit +'Icing Top (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500509 +#Icing Base (hft) - Icing Scenario Composit +'Icing Base (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'Icing Signifikant Base (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'Icing Signifikant Top (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500512 +#Icing Top (hft) - Icing Scenario Composit +'Icing Top (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500515 +#Icing Base (hft) - Icing Degree Composit +'Icing Base (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Icing Degree Composit +'Icing Max Base (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Icing Degree Composit +'Icing Max Top (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500518 +#Icing Top (hft) - Icing Degree Composit +'Icing Top (hft) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500521 +#Icing Base (hft) - Icing Scenario Composit +'Icing Base (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'Icing Signifikant Base (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'Icing Signifikant Top (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500524 +#Icing Top (hft) - Icing Scenario Composit +'Icing Top (hft) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500527 +#Icing Degree Code (1=light,2=moderate,3=severe) +'Icing Degree Code (1=light,2=moderate,3=severe)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500528 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500529 +#Icing Degree Code (1=light,2=moderate,3=severe) +'Icing Degree Code (1=light,2=moderate,3=severe)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500530 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'current weather (symbol number: 0..9)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 209 ; + } + +#paramId: 500538 +#cloud type +'cloud type' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500540 +#cloud top temperature +'cloud top temperature' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } + +#paramId: 500541 +#Relative vorticity, u-component +'Relative vorticity, u-component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 198 ; + } + +#paramId: 500542 +#Relative vorticity, v-component +'Relative vorticity, v-component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 199 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'Potentielle Vorticity (auf Druckflaechen, nicht isentrop)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 23 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'geostrophische Vorticity' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 7 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'Forcing rechte Seite Omegagleichung' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 8 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'Q-Vektor X-Komponente (geostrophisch)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 9 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'Q-Vektor Y-Komponente (geostrophisch)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 10 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'Divergenz Q (geostrophisch)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 11 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'Q-Vektor senkrecht zu d. Isothermen (geostrophisch)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 12 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'Q-Vektor parallel zu d. Isothermen (geostrophisch)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 13 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'Divergenz Qn geostrophisch' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 14 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'Divergenz Qs geostrophisch' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 15 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'Frontogenesefunktion' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 16 ; + } + +#paramId: 500562 +#Divergenz +'Divergenz' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 17 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'Q-Vektor parallel zu den Isothermen' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 18 ; + } + +#paramId: 500564 +#Divergenz Qn +'Divergenz Qn' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 19 ; + } + +#paramId: 500565 +#Divergenz Qs +'Divergenz Qs' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 20 ; + } + +#paramId: 500566 +#Frontogenesis function +'Frontogenesis function' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 21 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'Clear Air Turbulence Index' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 22 ; + } + +#paramId: 500570 +#Dry convection top index +'Dry convection top index' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 202 ; + } + +#paramId: 500572 +#Tidal tendencies +'Tidal tendencies' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'Sea surface temperature interpolated in time in C' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500575 +#3 hour pressure change +'3 hour pressure change' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500577 +#Variance of soil moisture content +'Variance of soil moisture content' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500578 +#Covariance of soil moisture content +'Covariance of soil moisture content' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'Eddy Dissipation Rate' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 216 ; + } + +#paramId: 500586 +#Ellrod Index +'Ellrod Index' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 217 ; + } + +#paramId: 500591 +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation +'Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 209 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500620 +#Prob Gewitter +'Prob Gewitter' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'Prob Starkes Gewitter' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'Prob Schweres Gewitter' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500623 +#Prob Dauerregen +'Prob Dauerregen' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'Prob Ergiebiger Dauerregen' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'Prob Extrem ergiebiger Dauerregen' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'Prob Schneeverwehung' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 7 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'Prob Starke Schneeverwehung' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500628 +#Prob Glaette +'Prob Glaette' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 9 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'Prob oertlich Glatteis' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 10 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500630 +#Prob Glatteis +'Prob Glatteis' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'Prob Nebel (ueberoertl. Sichtweite < 150 m)' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 12 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500632 +#Prob Tauwetter +'Prob Tauwetter' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 13 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'Prob Starkes Tauwetter' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 14 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500634 +#Wake-production of TKE due to sub-grid scale orography +'Wake-production of TKE due to sub-grid scale orography' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 220 ; + } + +#paramId: 500635 +#Shear-production of TKE due to separated horizontal shear modes +'Shear-production of TKE due to separated horizontal shear modes' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 221 ; + } + +#paramId: 500636 +#Buoyancy-production of TKE due to sub-grid scale convection +'Buoyancy-production of TKE due to sub-grid scale convection' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 219 ; + } + +#paramId: 500637 +#Production of TKE +'Production of TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 218 ; + } + +#paramId: 500638 +#Atmospheric resistance +'Atmospheric resistance' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 200 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'Height of thermals above MSL' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 197 ; + } + +#paramId: 500640 +#Mass concentration of dust (minimum mode) +'Mass concentration of dust (minimum mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 33 ; + } + +#paramId: 500643 +#Mass concentration of dust (medium mode) +'Mass concentration of dust (medium mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 34 ; + } + +#paramId: 500644 +#Mass concentration of dust (maximum mode) +'Mass concentration of dust (maximum mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 35 ; + } + +#paramId: 500645 +#Number concentration of dust (minimum mode) +'Number concentration of dust (minimum mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 72 ; + } + +#paramId: 500646 +#Number concentration of dust (medium mode) +'Number concentration of dust (medium mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 73 ; + } + +#paramId: 500647 +#Number concentration of dust (maximum mode) +'Number concentration of dust (maximum mode)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 74 ; + } + +#paramId: 500648 +#Mass concentration of dust (sum of all modes) +'Mass concentration of dust (sum of all modes)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 251 ; + } + +#paramId: 500649 +#Number concentration of dust (sum of all modes) +'Number concentration of dust (sum of all modes)' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'DUMMY_1' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'DUMMY_2' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'DUMMY_3' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'DUMMY_4' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'DUMMY_5' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'DUMMY_6' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'DUMMY_7' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'DUMMY_8' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'DUMMY_9' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'DUMMY_10' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'DUMMY_11' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'DUMMY_12' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'DUMMY_13' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'DUMMY_14' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'DUMMY_15' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'DUMMY_16' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'DUMMY_17' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'DUMMY_18' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'DUMMY_19' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'DUMMY_20' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'DUMMY_21' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'DUMMY_22' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'DUMMY_23' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'DUMMY_24' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'DUMMY_25' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'DUMMY_26' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'DUMMY_27' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'DUMMY_28' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'DUMMY_29' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'DUMMY_30' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'DUMMY_31' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'DUMMY_32' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'DUMMY_33' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'DUMMY_34' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'DUMMY_35' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'DUMMY_36' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'DUMMY_37' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'DUMMY_38' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'DUMMY_39' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'DUMMY_40' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'DUMMY_41' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'DUMMY_42' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'DUMMY_43' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'DUMMY_44' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'DUMMY_45' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'DUMMY_46' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'DUMMY_47' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'DUMMY_48' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'DUMMY_49' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'DUMMY_50' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'DUMMY_51' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'DUMMY_52' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'DUMMY_53' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'DUMMY_54' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'DUMMY_55' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'DUMMY_56' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'DUMMY_57' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'DUMMY_58' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'DUMMY_59' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'DUMMY_60' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'DUMMY_61' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'DUMMY_62' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'DUMMY_63' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'DUMMY_64' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'DUMMY_65' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'DUMMY_66' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'DUMMY_67' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'DUMMY_68' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'DUMMY_69' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'DUMMY_70' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'DUMMY_71' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'DUMMY_72' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'DUMMY_73' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'DUMMY_74' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'DUMMY_75' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'DUMMY_76' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'DUMMY_77' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'DUMMY_78' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'DUMMY_79' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'DUMMY_80' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'DUMMY_81' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'DUMMY_82' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'DUMMY_83' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'DUMMY_84' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'DUMMY_85' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'DUMMY_86' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'DUMMY_87' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'DUMMY_88' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'DUMMY_89' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'DUMMY_90' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'DUMMY_91' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'DUMMY_92' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'DUMMY_93' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'DUMMY_94' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'DUMMY_95' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'DUMMY_96' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'DUMMY_97' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'DUMMY_98' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'DUMMY_99' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'DUMMY_100' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'DUMMY_101' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'DUMMY_102' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'DUMMY_103' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'DUMMY_104' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'DUMMY_105' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'DUMMY_106' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'DUMMY_107' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'DUMMY_108' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'DUMMY_109' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'DUMMY_110' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'DUMMY_111' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'DUMMY_112' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'DUMMY_113' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'DUMMY_114' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'DUMMY_115' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'DUMMY_116' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'DUMMY_117' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'DUMMY_118' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'DUMMY_119' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'DUMMY_120' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'DUMMY_121' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'DUMMY_122' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'DUMMY_123' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'DUMMY_124' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'DUMMY_125' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'DUMMY_126' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'DUMMY_127' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'DUMMY_128' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'DUMMY_143' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'DUMMY_144' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'DUMMY_145' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'DUMMY_146' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'DUMMY_147' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'DUMMY_148' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'DUMMY_149' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'DUMMY_150' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'DUMMY_151' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'DUMMY_152' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'DUMMY_153' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'DUMMY_154' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'DUMMY_155' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'DUMMY_156' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'DUMMY_157' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'DUMMY_158' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'DUMMY_159' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'DUMMY_160' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'DUMMY_161' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'DUMMY_162' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'DUMMY_163' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'DUMMY_164' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'DUMMY_165' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'DUMMY_166' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'DUMMY_167' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'DUMMY_168' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'DUMMY_169' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'DUMMY_170' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'DUMMY_171' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'DUMMY_172' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'DUMMY_173' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'DUMMY_174' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'DUMMY_175' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'DUMMY_176' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'DUMMY_177' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'DUMMY_178' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'DUMMY_179' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'DUMMY_180' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'DUMMY_181' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'DUMMY_182' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'DUMMY_183' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'DUMMY_184' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'DUMMY_185' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'DUMMY_186' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'DUMMY_187' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'DUMMY_188' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'DUMMY_189' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'DUMMY_190' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'DUMMY_191' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'DUMMY_192' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'DUMMY_193' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'DUMMY_194' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'DUMMY_195' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'DUMMY_196' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'DUMMY_197' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'DUMMY_198' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'DUMMY_199' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'DUMMY_200' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'DUMMY_201' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'DUMMY_202' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'DUMMY_203' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'DUMMY_204' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'DUMMY_205' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'DUMMY_206' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'DUMMY_207' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'DUMMY_208' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'DUMMY_209' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'DUMMY_210' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'DUMMY_211' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'DUMMY_212' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'DUMMY_213' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'DUMMY_214' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'DUMMY_215' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'DUMMY_216' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'DUMMY_217' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'DUMMY_218' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'DUMMY_219' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'DUMMY_220' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'DUMMY_221' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'DUMMY_222' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'DUMMY_223' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'DUMMY_224' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'DUMMY_225' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'DUMMY_226' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'DUMMY_227' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'DUMMY_228' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'DUMMY_229' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'DUMMY_230' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'DUMMY_231' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'DUMMY_232' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'DUMMY_233' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'DUMMY_234' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'DUMMY_235' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'DUMMY_236' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'DUMMY_237' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'DUMMY_238' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'DUMMY_239' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'DUMMY_240' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'DUMMY_241' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'DUMMY_242' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'DUMMY_243' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'DUMMY_244' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'DUMMY_245' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'DUMMY_246' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'DUMMY_247' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'DUMMY_248' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'DUMMY_249' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'DUMMY_250' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'DUMMY_251' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'DUMMY_252' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'DUMMY_253' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'DUMMY_254' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 254 ; + } + +#paramId: 502332 +#Liquid water content in snow - multi level +'Liquid water content in snow - multi level' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 210 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux at surface +'Downward direct short wave radiation flux at surface' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502344 +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) +'Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502345 +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) +'Albedo - diffusive solar (UV: 0.3 - 0.7 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + } + +#paramId: 502346 +#Albedo - near infrared - time average (0.7 - 5.0 m-6) +'Albedo - near infrared - time average (0.7 - 5.0 m-6) ' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502347 +#Albedo - near infrared (0.7 - 5.0 m-6) +'Albedo - near infrared (0.7 - 5.0 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + } + +#paramId: 502352 +#Eddy Dissipation Rate Total Col-Max. Upper FIR +'Eddy Dissipation Rate Total Col-Max. Upper FIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 224 ; + } + +#paramId: 502353 +#Eddy Dissipation Rate Total Col-Max. Lower UIR +'Eddy Dissipation Rate Total Col-Max. Lower UIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 225 ; + } + +#paramId: 502354 +#Eddy Dissipation Rate Total Col-Max. Upper UIR +'Eddy Dissipation Rate Total Col-Max. Upper UIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 226 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'Eddy dissipitation rate of TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 227 ; + } + +#paramId: 503050 +#Radar precipitation rate +'Radar precipitation rate' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 195 ; + } + +#paramId: 503052 +#Radar quality information +'Radar quality information' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 196 ; + } + +#paramId: 503053 +#Radar blacklist +'Radar blacklist' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 197 ; + } + +#paramId: 503054 +#Height of radar beam above ground +'Height of radar beam above ground' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 198 ; + } + +#paramId: 503055 +#Specific humidity (diagnostic) +'Specific humidity (diagnostic)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 211 ; + } + +#paramId: 503056 +#Specific cloud water content (diagnostic) +'Specific cloud water content (diagnostic)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 212 ; + } + +#paramId: 503057 +#Specific cloud ice content (diagnostic) +'Specific cloud ice content (diagnostic) ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 213 ; + } + +#paramId: 503058 +#Total column integrated water vapour (diagnostic) +'Total column integrated water vapour (diagnostic) ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 214 ; + } + +#paramId: 503059 +#Total column integrated cloud water (diagnostic) +'Total column integrated cloud water (diagnostic) ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 215 ; + } + +#paramId: 503060 +#Total column integrated cloud ice (diagnostic) +'Total column integrated cloud ice (diagnostic) ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 216 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'precipitation, qualified,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503069 +#precipitation,BRD +'precipitation,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'precipitation phase,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503071 +#hail flag,BRD +'hail flag,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503072 +#snow_rate,BRD +'snow_rate,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503073 +#snow_rate,qualified,BRD +'snow_rate,qualified,BRD' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503074 +#Area weights for regular lon-lat grid +'Area weights for regular lon-lat grid ' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 193 ; + } + +#paramId: 503078 +#Relative humidity over mixed phase +'Relative humidity over mixed phase' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 220 ; + } + +#paramId: 503079 +#Soil moisture index (multilayers) +'Soil moisture index (multilayers)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 503096 +#Peak frequency (interpolated) +'Peak frequency (interpolated)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } + +#paramId: 503115 +#Specific number concentration of rain +'Specific number concentration of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 228 ; + } + +#paramId: 503116 +#Number density of rain +'Number density of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 229 ; + } + +#paramId: 503117 +#Specific number concentration of snow +'Specific number concentration of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 217 ; + } + +#paramId: 503118 +#Specific number concentration of graupel +'Specific number concentration of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 218 ; + } + +#paramId: 503119 +#Specific number concentration of hail +'Specific number concentration of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 219 ; + } + +#paramId: 503120 +#Number density of snow +'Number density of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 221 ; + } + +#paramId: 503121 +#Number density of graupel +'Number density of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 222 ; + } + +#paramId: 503122 +#Number density of hail +'Number density of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 223 ; + } + +#paramId: 503123 +#Mass density of rain +'Mass density of rain ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 224 ; + } + +#paramId: 503124 +#Mass density of snow +'Mass density of snow ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 225 ; + } + +#paramId: 503125 +#Mass density of graupel +'Mass density of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 226 ; + } + +#paramId: 503126 +#Mass density of cloud droplets +'Mass density of cloud droplets' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 203 ; + } + +#paramId: 503127 +#Mass density of cloud ice +'Mass density of cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 204 ; + } + +#paramId: 503128 +#Mass density of hail +'Mass density of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 227 ; + } + +#paramId: 503137 +#Eddy Dissipation Rate Total Col-Max. Lower FIR +'Eddy Dissipation Rate Total Col-Max. Lower FIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 228 ; + } + +#paramId: 503142 +#Lightning Potential Index +'Lightning Potential Index' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + } + +#paramId: 503143 +#Rain drain from snowpack - accumulation +'Rain drain from snowpack - accumulation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 230 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503146 +#Height of -10 degree Celsius isotherm +'Height of -10 degree Celsius isotherm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 503147 +# probability density function of EDP for turbulence greater well defined threshold and model grid box +' probability density function of EDP for turbulence greater well defined threshold and model grid box' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 229 ; + } + +#paramId: 503148 +#Adedokun 2 Index +'Adedokun 2 Index' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 503149 +#Downward direct short wave radiation flux at surface on horizontal plane (time average) +'Downward direct short wave radiation flux at surface on horizontal plane (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503150 +#Gauss Boaga Coordinates West to East,East Sector +'Gauss Boaga Coordinates West to East,East Sector' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 194 ; + } + +#paramId: 503151 +#Gauss Boaga Coordinates South to North,East Sector +'Gauss Boaga Coordinates South to North,East Sector' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 195 ; + } + +#paramId: 503152 +#Gauss Boaga Coordinates West to East, West Sector +'Gauss Boaga Coordinates West to East, West Sector' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 196 ; + } + +#paramId: 503153 +#Gauss Boaga Coordinates South to North, West Sector +'Gauss Boaga Coordinates South to North, West Sector' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 197 ; + } + +#paramId: 503156 +#Ellrod and Knapp turbulence index1 +'Ellrod and Knapp turbulence index1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 230 ; + } + +#paramId: 503157 +#Ellrod and Knapp turbulence index2 +'Ellrod and Knapp turbulence index2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 231 ; + } + +#paramId: 503158 +#Deformation of horizontal wind field +'Deformation of horizontal wind field' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 29 ; + } + +#paramId: 503159 +#Divergence trend (scaled divergence tendency needed for CAT_DVI) +'Divergence trend (scaled divergence tendency needed for CAT_DVI)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 232 ; + } + +#paramId: 503160 +#Divergence modified turbulence index (Ellrod and Knox) +'Divergence modified turbulence index (Ellrod and Knox)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 233 ; + } + +#paramId: 503161 +#Cloud ice ratio qi/(qc+qi) +'Cloud ice ratio qi/(qc+qi)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 231 ; + } + +#paramId: 503162 +#Percentage of convective precipitation (from total prec) +'Percentage of convective precipitation (from total prec)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 232 ; + } + +#paramId: 503163 +#Deep convection index +'Deep convection index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503164 +#Wind direction in azimuth class +'Wind direction in azimuth class' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 503165 +#Wind direction in azimuth class +'Wind direction in azimuth class' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503167 +#Possible astronomical maximum of sunshine +'Possible astronomical maximum of sunshine' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503168 +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) +'Relative duration of sunshine (DURSUN * 100 / DURSUN_M)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503171 +#Enthalpy +'Enthalpy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } + +#paramId: 503172 +#2m Enthalpy +'2m Enthalpy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503175 +#Downward short wave radiation flux at surface on horizontal plane (time average) +'Downward short wave radiation flux at surface on horizontal plane (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503176 +#Downward short wave radiation flux at surface on vertical surface facing east (time average) +'Downward short wave radiation flux at surface on vertical surface facing east (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 202 ; + } + +#paramId: 503177 +#Downward short wave radiation flux at surface on vertical surface facing north (time average) +'Downward short wave radiation flux at surface on vertical surface facing north (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 203 ; + } + +#paramId: 503178 +#Downward short wave radiation flux at surface on vertical surface facing south (time average) +'Downward short wave radiation flux at surface on vertical surface facing south (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 204 ; + } + +#paramId: 503179 +#Downward short wave radiation flux at surface on vertical surface facing west (time average) +'Downward short wave radiation flux at surface on vertical surface facing west (time average)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 205 ; + } + +#paramId: 503180 +#Along-wind Lagrangian time scale (Hanna) +'Along-wind Lagrangian time scale (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 503181 +#Cross-wind Lagrangian time scale (Hanna) +'Cross-wind Lagrangian time scale (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503182 +#Vertical Lagrangian time scale (Hanna) +'Vertical Lagrangian time scale (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503183 +#Zonal Lagrangian time scale (direct) (Hanna) +'Zonal Lagrangian time scale (direct) (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503184 +#Meridional Lagrangian time scale (direct) (Hanna) +'Meridional Lagrangian time scale (direct) (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503185 +#Vertical Lagrangian time scale (direct) (Hanna) +'Vertical Lagrangian time scale (direct) (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503187 +#Height of level of free convection of mixed (mean) layer parcel +'Height of level of free convection of mixed (mean) layer parcel' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 194 ; + } + +#paramId: 503188 +#Luminosity +'Luminosity' = { + discipline = 215 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 503189 +#Downward long-wave radiation flux at surface based on T_2M (time average) +'Downward long-wave radiation flux at surface based on T_2M (time average)' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503190 +#Downward long-wave radiation flux at surface based on T_G (time average) +'Downward long-wave radiation flux at surface based on T_G (time average)' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503191 +#Downward long-wave radiation flux at surface based on T_SO(0) (time average) +'Downward long-wave radiation flux at surface based on T_SO(0) (time average)' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503194 +#Pressure difference between cloud base and cloud top +'Pressure difference between cloud base and cloud top' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503198 +#Along-wind velocity fluctuation (Hanna) +'Along-wind velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503199 +#Cross-wind velocity fluctuation (Hanna) +'Cross-wind velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 503200 +#Vertical velocity fluctuation (Hanna) +'Vertical velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 503201 +#Zonal velocity fluctuation (Hanna) +'Zonal velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 503202 +#Meridional velocity fluctuation (Hanna) +'Meridional velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 503203 +#Vertical velocity fluctuation (Hanna) +'Vertical velocity fluctuation (Hanna)' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503205 +#Percentage of precipitation in snow (from total prec.) +'Percentage of precipitation in snow (from total prec.)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 233 ; + } + +#paramId: 503206 +#Thunderstorm index for Switzerland (night time) +'Thunderstorm index for Switzerland (night time)' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 503207 +#Thunderstorm index for Switzerland (day time) +'Thunderstorm index for Switzerland (day time)' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 503208 +#Swiss coordinate (south-north) +'Swiss coordinate (south-north)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 198 ; + } + +#paramId: 503209 +#Swiss coordinate (west-east) +'Swiss coordinate (west-east)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 199 ; + } + +#paramId: 503217 +#2m temperature, corrected in presence of snow +'2m temperature, corrected in presence of snow' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503218 +#Universal thermal climate index without direct incident short wave radiation +'Universal thermal climate index without direct incident short wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } + +#paramId: 503222 +#Relative geostrophic vorticity +'Relative geostrophic vorticity' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 26 ; + } + +#paramId: 503223 +#Relative geostrophic vorticity advection +'Relative geostrophic vorticity advection' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 27 ; + } + +#paramId: 503226 +#Wind divergence (3D) +'Wind divergence (3D)' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 28 ; + } + +#paramId: 503227 +#Mean vertical wind shear for specified layer or layer-mean vertical wind shear +'Mean vertical wind shear for specified layer or layer-mean vertical wind shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 201 ; + } + +#paramId: 503228 +#Norm of (vertical) wind shear vector between two levels +'Norm of (vertical) wind shear vector between two levels' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 202 ; + } + +#paramId: 503282 +#Diagnostic total column of activity concentration of radionuclides +'Diagnostic total column of activity concentration of radionuclides' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503283 +#Liquid water potential temperature variance +'Liquid water potential temperature variance' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 0 ; + } + +#paramId: 503284 +#Total water specific humidity variance +'Total water specific humidity variance' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 1 ; + } + +#paramId: 503285 +#Liquid water potential temperature - total water specific humidity covariance +'Liquid water potential temperature - total water specific humidity covariance' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 2 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'Impervious (paved or sealed) surface fraction' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'Antropogenic heat flux (e.g. urban heating, traffic)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } + +#paramId: 503292 +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +'Sea ice albedo - diffusive solar (0.3 - 5.0 m-6)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 234 ; + } + +#paramId: 503299 +#Sky-view-factor +'Sky-view-factor' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 0 ; + } + +#paramId: 503300 +#Horizon angle - topography +'Horizon angle - topography' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 1 ; + } + +#paramId: 503301 +#Slope aspect - topography +'Slope aspect - topography' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 3 ; + } + +#paramId: 503302 +#Slope angle - topography +'Slope angle - topography' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 2 ; + } + +#paramId: 503339 +#Threshold friction velocity +'Threshold friction velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 203 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'Maximum updraft track (over given time interval and column)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'Maximum of Lightning Potential Index (over given time interval)' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503351 +#mean radiation temperature of an environment assumed black body related to standing human +'mean radiation temperature of an environment assumed black body related to standing human' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 4 ; + } + +#paramId: 503355 +#Maximum 10m dynamical gust +'Maximum 10m dynamical gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503356 +#Maximum 10m convective gust +'Maximum 10m convective gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503358 +#Standard deviation of saturation deficit +'Standard deviation of saturation deficit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 234 ; + } + +#paramId: 503359 +#Evaporation of plants (integrated since "nightly reset") +'Evaporation of plants (integrated since "nightly reset")' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } + +#paramId: 503363 +#Number of birch (betula) pollen in the reservoir (previous timestep) +'Number of birch (betula) pollen in the reservoir (previous timestep)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62101 ; + } + +#paramId: 503364 +#Number of birch (betula) pollen released into the reservoir (new) +'Number of birch (betula) pollen released into the reservoir (new)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62101 ; + } + +#paramId: 503365 +#Sum of released birch (betula) pollen into the reservoir (daily sum) +'Sum of released birch (betula) pollen into the reservoir (daily sum)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62101 ; + } + +#paramId: 503366 +#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) +'State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62101 ; + } + +#paramId: 503367 +#Height correction for emission (decreasing emission with height) for birch (betula) +'Height correction for emission (decreasing emission with height) for birch (betula) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503369 +#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen +'Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62101 ; + } + +#paramId: 503370 +#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503371 +#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503372 +#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) +'Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62101 ; + } + +#paramId: 503373 +#Length of birch (betula) pollen season +'Length of birch (betula) pollen season' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62101 ; + } + +#paramId: 503374 +#Pollen number emission flux for birch (betula) +'Pollen number emission flux for birch (betula) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62101 ; + } + +#paramId: 503377 +#Number of alder (alnus) pollen in the reservoir (previous timestep) +'Number of alder (alnus) pollen in the reservoir (previous timestep)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62100 ; + } + +#paramId: 503378 +#Number of alder (alnus) pollen released into the reservoir (new) +'Number of alder (alnus) pollen released into the reservoir (new)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62100 ; + } + +#paramId: 503379 +#Sum of released alder (alnus) pollen into the reservoir (daily sum) +'Sum of released alder (alnus) pollen into the reservoir (daily sum)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62100 ; + } + +#paramId: 503380 +#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) +'State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62100 ; + } + +#paramId: 503381 +#Height correction for emission (decreasing emission with height) for alder (alnus) +'Height correction for emission (decreasing emission with height) for alder (alnus) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503383 +#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen +'Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62100 ; + } + +#paramId: 503384 +#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503385 +#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503386 +#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) +'Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62100 ; + } + +#paramId: 503387 +#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) +'Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62100 ; + } + +#paramId: 503388 +#Length of alder (alnus) pollen season +'Length of alder (alnus) pollen season' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62100 ; + } + +#paramId: 503389 +#Pollen number emission flux for alder (alnus) +'Pollen number emission flux for alder (alnus) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62100 ; + } + +#paramId: 503392 +#Number of grasses (poaceae) pollen in the reservoir (previous timestep) +'Number of grasses (poaceae) pollen in the reservoir (previous timestep)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62300 ; + } + +#paramId: 503393 +#Number of grasses (poaceae) pollen released into the reservoir (new) +'Number of grasses (poaceae) pollen released into the reservoir (new)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62300 ; + } + +#paramId: 503394 +#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) +'Sum of released grasses (poaceae) pollen into the reservoir (daily sum)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62300 ; + } + +#paramId: 503395 +#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) +'State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62300 ; + } + +#paramId: 503396 +#Height correction for emission (decreasing emission with height) for grasses (poaceae) +'Height correction for emission (decreasing emission with height) for grasses (poaceae) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503398 +#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen +'Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62300 ; + } + +#paramId: 503399 +#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503400 +#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503401 +#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) +'Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62300 ; + } + +#paramId: 503402 +#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) +'Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62300 ; + } + +#paramId: 503403 +#Length of grasses (poaceae) pollen season +'Length of grasses (poaceae) pollen season' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62300 ; + } + +#paramId: 503404 +#Pollen number emission flux for grasses (poaceae) +'Pollen number emission flux for grasses (poaceae) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62300 ; + } + +#paramId: 503407 +#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) +'Number of ragweed (ambrosia) pollen in the reservoir (previous timestep)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62200 ; + } + +#paramId: 503408 +#Number of ragweed (ambrosia) pollen released into the reservoir (new) +'Number of ragweed (ambrosia) pollen released into the reservoir (new)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62200 ; + } + +#paramId: 503409 +#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) +'Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62200 ; + } + +#paramId: 503410 +#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) +'State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62200 ; + } + +#paramId: 503411 +#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) +'Height correction for emission (decreasing emission with height) for ragweed (ambrosia) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503413 +#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen +'Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62200 ; + } + +#paramId: 503414 +#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503415 +#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) +'Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503416 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) +'Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62200 ; + } + +#paramId: 503417 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) +'Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62200 ; + } + +#paramId: 503418 +#Length of ragweed (ambrosia) pollen season +'Length of ragweed (ambrosia) pollen season' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62200 ; + } + +#paramId: 503419 +#Pollen number emission flux for ragweed (ambrosia) +'Pollen number emission flux for ragweed (ambrosia) ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62200 ; + } + +#paramId: 503420 +#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) +'Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62101 ; + } + +#paramId: 503424 +#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. +'Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those.' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 235 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } + +#paramId: 503426 +#Maximum snow height during contiguous accumulating snow period (coupled with snow age) +'Maximum snow height during contiguous accumulating snow period (coupled with snow age)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 235 ; + } + +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'U-component of (vertical) wind shear vector between two levels' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'V-component of (vertical) wind shear vector between two levels' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'Accumulated wet deposition of dust if rain reaches the surface for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'Accumulated wet deposition of dust if rain reaches the surface for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'Accumulated wet deposition of dust if rain reaches the surface for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'Accumulated dry deposition of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'Accumulated dry deposition of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'Accumulated dry deposition of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'Accumulated sedimentation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'Accumulated sedimentation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'Accumulated sedimentation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'Mineral dust backscatter (not attenuated, for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'Volcanic ash backscatter (not attenuated, for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'Swiss coordinate LV 95 (south-north)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'Swiss coordinate LV 95 (west-east)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'Average hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'Standard deviation of hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'Maximum hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'Duration of updraft' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'Updraft mask' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/eccodes/definitions/grib2/localConcepts/edzw/paramId.def b/eccodes/definitions/grib2/localConcepts/edzw/paramId.def new file mode 100755 index 00000000..9b31c68c --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/paramId.def @@ -0,0 +1,14348 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'500000' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500001 +#Pressure +'500001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'500002' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'500003' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'500004' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'500005' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 105 ; + typeOfFirstFixedSurface = 105 ; + } + +#paramId: 500006 +#Geopotential +'500006' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'500007' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'500008' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'500009' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } + +#paramId: 500010 +#Temperature (G) +'500010' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500011 +#2m Temperature +'500011' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'500012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'500013' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 9 ; + } + +#paramId: 500014 +#Temperature +'500014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'500015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'500016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'500017' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'500018' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'500019' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500020 +#Wave spectra (1) +'500020' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500021 +#Wave spectra (2) +'500021' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500022 +#Wave spectra (3) +'500022' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'500023' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'500024' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'500025' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'500026' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500027 +#U-Component of Wind +'500027' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'500028' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500029 +#V-Component of Wind +'500029' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'500030' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'500031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'500032' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'500034' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'500035' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500036 +#2m Relative Humidity +'500036' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'500037' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'500038' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } + +#paramId: 500039 +#Evaporation (s) +'500039' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'500040' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'500041' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'500042' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'500043' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'500044' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } + +#paramId: 500045 +#Snow Depth +'500045' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 500046 +#Total Cloud Cover +'500046' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'500047' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'500048' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'500049' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'500050' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'500051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'500052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'500053' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'500054' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'500055' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'500056' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'500057' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'500058' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'500059' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'500060' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'500061' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'500062' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'500063' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'500064' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500065 +#Plant cover +'500065' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500066 +#Water Runoff +'500066' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'500068' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'500069' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'500070' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'500071' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500072 +#Direction of wind waves +'500072' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500073 +#Significant height of wind waves +'500073' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 500074 +#Mean period of wind waves +'500074' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 500075 +#Direction of swell waves +'500075' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500076 +#Significant height of swell waves +'500076' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500077 +#Mean period of swell waves +'500077' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'500078' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'500079' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'500080' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'500081' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'500082' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'500083' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'500084' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'500085' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'500086' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'500087' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'500088' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'500089' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'500090' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'500091' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'500092' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'500093' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'500094' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'500095' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500097 +#Stomatal resistance +'500097' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } + +#paramId: 500098 +#Cloud cover +'500098' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'500099' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'500100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'500101' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + } + +#paramId: 500102 +#Rain mixing ratio +'500102' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } + +#paramId: 500103 +#Snow mixing ratio +'500103' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } + +#paramId: 500104 +#Total column integrated rain +'500104' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } + +#paramId: 500105 +#Total column integrated snow +'500105' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } + +#paramId: 500106 +#Grauple +'500106' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } + +#paramId: 500107 +#Total column integrated grauple +'500107' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'500108' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + } + +#paramId: 500109 +#Vertical integral of divergence of total water content - accumulation +'500109' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500110 +#Sub-grid scale cloud water +'500110' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } + +#paramId: 500111 +#Sub-grid scale cloud ice +'500111' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } + +#paramId: 500115 +#Cloud base above MSL, shallow convection +'500115' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500116 +#Cloud top above MSL, shallow convection +'500116' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500117 +#Specific cloud liquid water content, convective cloud +'500117' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'500118' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'500119' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500120 +#Base index (vertical level) of main convective cloud +'500120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500121 +#Top index (vertical level) of main convective cloud +'500121' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'500122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'500123' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + } + +#paramId: 500124 +#Zonal wind tendency due to convection +'500124' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + } + +#paramId: 500125 +#Meridional wind tendency due to convection +'500125' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'500126' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'500127' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'500128' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'500129' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + } + +#paramId: 500130 +#Tendency of specific cloud ice content due to convection +'500130' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'500131' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + } + +#paramId: 500132 +#Large scale rain rate +'500132' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'500133' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'500134' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500135 +#Convective rain rate +'500135' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'500136' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } + +#paramId: 500137 +#Convective rain +'500137' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'500138' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'500139' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipitation +'500140' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'500141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + } + +#paramId: 500142 +#Tendency of specific cloud liquid water content due to grid scale precipitation +'500142' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'500143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } + +#paramId: 500144 +#Tendency of specific cloud ice content due to grid scale precipitation +'500144' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'500145' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'500146' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500147 +#Snow density +'500147' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } + +#paramId: 500148 +#Pressure perturbation +'500148' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500149 +#Supercell detection index 1 (rot. up- and downdrafts) +'500149' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } + +#paramId: 500150 +#Supercell detection index 2 (only rot. updrafts) +'500150' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'500151' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'500152' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'500153' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'500154' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'500155' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'500156' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } + +#paramId: 500157 +#Kinetic energy +'500157' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'500158' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'500159' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'500160' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'500161' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'500162' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 500163 +#mixed layer depth +'500163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } + +#paramId: 500164 +#maximum Wind 10m +'500164' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'500166' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'500167' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'500168' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'500169' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'500170' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'500171' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'500172' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500173 +#Base reflectivity +'500173' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'500174' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'500175' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500176 +#Solution of 2-d Helmholtz equations - needed for restart +'500176' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 192 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'500177' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + } + +#paramId: 500178 +#Sum of contributions to evaporation +'500178' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500179 +#Total transpiration from all soil layers +'500179' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500180 +#Total forcing at soil surface +'500180' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500181 +#Residuum of soil moisture +'500181' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500182 +#Mass flux at convective cloud base +'500182' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'500183' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } + +#paramId: 500184 +#Moisture convergence for Kuo-type closure +'500184' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + } + +#paramId: 500185 +#Direction of combined wind waves and swell +'500185' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 500187 +#Peak period of total swell +'500187' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 500189 +#Peak period of wind waves +'500189' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 500190 +#Peak wave period +'500190' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } + +#paramId: 500191 +#Mean period of combined wind waves and swell +'500191' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500192 +#Inverse mean wave frequency +'500192' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 500193 +#Mean zero-crossing wave period +'500193' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500194 +#Wave directional width +'500194' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } + +#paramId: 500195 +#Analysis error (standard deviation), geopotential (gpm) +'500195' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500196 +#Analysis error (standard deviation), u-comp. of wind +'500196' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500197 +#Analysis error (standard deviation), v-comp. of wind +'500197' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500198 +#Zonal wind tendency due to sub-grid scale oro. +'500198' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + } + +#paramId: 500199 +#Meridional wind tendency due to sub-grid scale oro. +'500199' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'500200' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'500201' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'500202' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'500203' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } + +#paramId: 500204 +#Surface emissivity +'500204' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } + +#paramId: 500205 +#Soil type (1...9, local soilType.table) +'500205' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 500206 +#Leaf area index +'500206' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500207 +#root depth of vegetation +'500207' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 500208 +#Height of ozone maximum (climatological) +'500208' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + } + +#paramId: 500209 +#Vertically integrated ozone content (climatological) +'500209' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'500210' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'500211' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500212 +#Max Leaf area index +'500212' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500213 +#Min Leaf area index +'500213' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'500214' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500215 +#variance of soil moisture content (0-10) +'500215' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500216 +#variance of soil moisture content (10-100) +'500216' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500217 +#evergreen forest +'500217' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 500218 +#deciduous forest +'500218' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'500219' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'500220' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500221 +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'500221' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500222 +#Ratio of NDVI (normalized differential vegetation index) to annual maximum +'500222' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'500223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62006 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'500224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62006 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'500225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62001 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'500226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62001 ; + } + +#paramId: 500227 +#Organic aerosol +'500227' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62010 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'500228' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62010 ; + } + +#paramId: 500229 +#Black carbon aerosol +'500229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62009 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'500230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62009 ; + } + +#paramId: 500231 +#Sea salt aerosol +'500231' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62008 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'500232' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62008 ; + } + +#paramId: 500233 +#Tendency of specific humidity +'500233' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + } + +#paramId: 500234 +#Water vapor flux +'500234' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } + +#paramId: 500235 +#Coriolis parameter +'500235' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + } + +#paramId: 500236 +#geographical latitude +'500236' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } + +#paramId: 500237 +#geographical longitude +'500237' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } + +#paramId: 500238 +#Friction velocity +'500238' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } + +#paramId: 500239 +#Delay of the GPS signal through the (total) atmos. +'500239' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + } + +#paramId: 500240 +#Delay of the GPS signal through wet atmos. +'500240' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + } + +#paramId: 500241 +#Delay of the GPS signal through dry atmos. +'500241' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'500242' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'500243' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30102 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'500244' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30102 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'500245' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30102 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'500246' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30067 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'500247' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30067 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'500248' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30067 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'500249' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30141 ; + } + +#paramId: 500250 +#I131a - dry deposition +'500250' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30141 ; + } + +#paramId: 500251 +#I131a - wet deposition +'500251' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30141 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'500252' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30172 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'500253' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30172 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'500255' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30129 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'500256' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30129 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'500257' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30129 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'500258' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30079 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'500259' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30079 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'500260' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30079 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'500261' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30059 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'500262' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30059 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'500263' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30059 ; + } + +#paramId: 500264 +#TRACER - concentration +'500264' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30000 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'500265' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30000 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'500266' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30000 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'500267' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30161 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'500268' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30161 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'500269' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30161 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'500270' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30138 ; + } + +#paramId: 500271 +#I131g - dry deposition +'500271' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30138 ; + } + +#paramId: 500272 +#I131g - wet deposition +'500272' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30138 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'500273' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30139 ; + } + +#paramId: 500274 +#I131o - dry deposition +'500274' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30139 ; + } + +#paramId: 500275 +#I131o - wet deposition +'500275' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30139 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'500276' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30175 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'500277' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30175 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'500278' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30175 ; + } + +#paramId: 500279 +#U-momentum flux due to SSO-effects (mean over forecast time) +'500279' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500280 +#U-momentum flux due to SSO-effects +'500280' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500281 +#V-momentum flux due to SSO-effects (mean over forecast time) +'500281' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500282 +#V-momentum flux due to SSO-effects +'500282' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500283 +#Gravity wave dissipation (initialisation) +'500283' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'500284' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'500285' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500286 +#Vertical speed shear +'500286' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } + +#paramId: 500287 +#storm relative helicity +'500287' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'500288' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 197 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) +'500289' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 194 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'500290' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'500291' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 24 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'500292' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'500293' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 0 ; + } + +#paramId: 500294 +#Geostrophic thickness advection +'500294' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 1 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'500295' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 2 ; + } + +#paramId: 500296 +#Winddivergenz +'500296' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 3 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'500297' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 4 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'500298' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'500299' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 5 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'500300' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 6 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'500301' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500302 +#KO index +'500302' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'500303' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500304 +#Ceiling +'500304' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'500305' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } + +#paramId: 500306 +#Modified cloud depth for media +'500306' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + } + +#paramId: 500307 +#Modified cloud cover for media +'500307' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'500308' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'500309' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'500310' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'500311' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'500312' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'500313' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'500314' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'500315' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'500316' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'500317' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'500318' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'500319' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'500320' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'500321' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500322 +#RMS of difference "first guess - analysis" of kinetic energy +'500322' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500323 +#RMS of difference "initialized analysis - analysis" of kinetic energy +'500323' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'500324' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'500325' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'500326' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'500327' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'500328' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'500329' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'500330' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'500331' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'500332' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'500333' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'500334' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'500335' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'500336' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'500337' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'500338' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'500339' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'500340' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'500341' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'500342' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'500343' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'500344' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'500345' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'500346' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'500347' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'500348' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'500349' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'500350' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'500351' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'500352' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'500353' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'500354' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'500355' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'500356' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'500357' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'500358' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'500359' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'500360' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'500361' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'500362' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'500363' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'500364' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'500365' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'500366' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'500367' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'500368' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'500369' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'500370' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'500371' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'500372' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'500373' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'500374' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'500375' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'500376' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'500377' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'500378' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'500379' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'500380' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'500381' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'500382' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'500383' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'500384' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'500385' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'500386' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'500387' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'500388' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500389 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500389' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + } + +#paramId: 500390 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500390' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + } + +#paramId: 500391 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500391' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + } + +#paramId: 500392 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'500392' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1250000 ; + } + +#paramId: 500393 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500393' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500394 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500394' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + } + +#paramId: 500395 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500395' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500396 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500396' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500397 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500397' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500398 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500398' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500399 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500399' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500400 +#Obser. Sat. Meteosat sec. generation brightness temperature +'500400' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'500401' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500404 +# +'500404' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500408 +# +'500408' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500409 +# +'500409' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500410 +# +'500410' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500411 +# +'500411' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500412 +# +'500412' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500416 +# +'500416' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500417 +# +'500417' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500418 +# +'500418' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'500419' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'500420' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'500421' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'500422' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500423 +# +'500423' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500424 +# +'500424' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500425 +# +'500425' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500428 +#Latent Heat Net Flux (m) Initialisation +'500428' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500429 +# +'500429' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500430 +#Momentum Flux, U-Component (m) Initialisation +'500430' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500431 +#Momentum Flux, V-Component (m) Initialisation +'500431' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500432 +#Photosynthetically active radiation +'500432' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500433 +# +'500433' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500434 +# +'500434' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500436 +# +'500436' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'500437' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'500438' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'500439' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 14 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'500440' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'500441' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'500442' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'500443' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 32 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'500444' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 69 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'500445' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 70 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'500446' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 71 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'500447' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 72 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'500448' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 74 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'500449' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'500450' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'500451' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 132 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'500452' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 134 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'500453' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 136 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'500454' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 137 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'500455' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 138 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'500456' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 139 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'500457' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 191 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'500458' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'500459' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'500460' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'500461' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 212 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'500462' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 213 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'500463' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 232 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'500464' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 236 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'500465' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 195 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'500466' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 196 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'500467' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 197 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'500468' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500469 +#Total ozone +'500469' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'500471' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500472 +#Type of convection (0..4) +'500472' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 201 ; + } + +#paramId: 500473 +#perceived temperature +'500473' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 1 ; + } + +#paramId: 500474 +#wind chill factor +'500474' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500475 +#Water temperature +'500475' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500477 +#Absolute Vorticity +'500477' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'500478' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 3 ; + } + +#paramId: 500479 +#value of isolation of clothes +'500479' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 2 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'500480' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'500481' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'500482' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500486 +# +'500486' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500487 +#Downward direct short wave radiation flux (mean over forecast time) Initialisation +'500487' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500488 +#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'500488' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500489 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation +'500489' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500490 +#Water Fraction +'500490' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500491 +#Lake depth +'500491' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500492 +#Wind fetch +'500492' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 33 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'500493' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'500494' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 164 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'500495' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 164 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'500496' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'500497' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'500498' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500499 +#Mixed-layer depth +'500499' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'500500' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 166 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'500501' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 165 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'500502' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 165 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500503 +#Icing Base (hft) - Icing Degree Composit +'500503' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Icing Degree Composit +'500504' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Icing Degree Composit +'500505' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500506 +#Icing Top (hft) - Icing Degree Composit +'500506' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'500507' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'500508' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500509 +#Icing Base (hft) - Icing Scenario Composit +'500509' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'500510' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'500511' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500512 +#Icing Top (hft) - Icing Scenario Composit +'500512' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'500513' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'500514' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500515 +#Icing Base (hft) - Icing Degree Composit +'500515' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Icing Degree Composit +'500516' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Icing Degree Composit +'500517' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500518 +#Icing Top (hft) - Icing Degree Composit +'500518' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'500519' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'500520' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500521 +#Icing Base (hft) - Icing Scenario Composit +'500521' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'500522' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'500523' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500524 +#Icing Top (hft) - Icing Scenario Composit +'500524' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'500525' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'500526' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500527 +#Icing Degree Code (1=light,2=moderate,3=severe) +'500527' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500528 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'500528' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500529 +#Icing Degree Code (1=light,2=moderate,3=severe) +'500529' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500530 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'500530' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'500531' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 209 ; + } + +#paramId: 500538 +#cloud type +'500538' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500539 +#cloud top height +'500539' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 500540 +#cloud top temperature +'500540' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } + +#paramId: 500541 +#Relative vorticity, u-component +'500541' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 198 ; + } + +#paramId: 500542 +#Relative vorticity, v-component +'500542' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 199 ; + } + +#paramId: 500543 +#vertical vorticity +'500543' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 500544 +#Potential vorticity +'500544' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } + +#paramId: 500545 +#Density +'500545' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 500546 +#Altimeter Settings +'500546' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'500547' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500548 +#Soil moisture +'500548' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 500549 +#Soil moisture +'500549' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'500550' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 23 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'500551' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 7 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'500552' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 8 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'500553' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 9 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'500554' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 10 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'500555' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 11 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'500556' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 12 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'500557' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 13 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'500558' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 14 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'500559' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 15 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'500560' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 16 ; + } + +#paramId: 500562 +#Divergenz +'500562' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 17 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'500563' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 18 ; + } + +#paramId: 500564 +#Divergenz Qn +'500564' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 19 ; + } + +#paramId: 500565 +#Divergenz Qs +'500565' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 20 ; + } + +#paramId: 500566 +#Frontogenesis function +'500566' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 21 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'500567' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 22 ; + } + +#paramId: 500568 +#Geopotential height +'500568' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 500569 +#Relative Divergenz +'500569' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } + +#paramId: 500570 +#Dry convection top index +'500570' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 202 ; + } + +#paramId: 500572 +#Tidal tendencies +'500572' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'500573' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'500574' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } + +#paramId: 500575 +#3 hour pressure change +'500575' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500576 +# +'500576' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500577 +#Variance of soil moisture content +'500577' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500578 +#Covariance of soil moisture content +'500578' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'500579' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'500580' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 7 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'500581' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 50 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 7 ; + } + +#paramId: 500582 +# +'500582' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500583 +#Min 2m Temperature (i) Initialisation +'500583' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500584 +#Sunshine duration +'500584' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'500585' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 216 ; + } + +#paramId: 500586 +#Ellrod Index +'500586' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 217 ; + } + +#paramId: 500588 +#Snow melt +'500588' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'500590' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 500591 +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation +'500591' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 209 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500593 +#Global radiation flux +'500593' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 500594 +#exner pressure +'500594' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } + +#paramId: 500595 +#normal wind component +'500595' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 34 ; + } + +#paramId: 500596 +#tangential wind component +'500596' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 35 ; + } + +#paramId: 500597 +#virtual potential temperature +'500597' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500598 +#Current Direction +'500598' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500599 +#Current Speed +'500599' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500600 +#Prob Windboeen > 25 kn +'500600' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500601 +#Prob Windboeen > 27 kn +'500601' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500602 +#Prob Sturmboeen > 33 kn +'500602' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500603 +#Prob Sturmboeen > 40 kn +'500603' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500604 +#Prob Schwere Sturmboeen > 47 kn +'500604' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500605 +#Prob Orkanartige Boeen > 55 kn +'500605' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500606 +#Prob Orkanboeen > 63 kn +'500606' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500607 +#Prob Oberoertliche Orkanboeen > 75 kn +'500607' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500608 +#Prob Starkregen > 10 mm +'500608' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500609 +#Prob Heftiger Starkregen > 25 mm +'500609' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500610 +#Prob Extrem Heftiger Starkregen > 50 mm +'500610' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500611 +#Prob Leichter Schneefall > 0,1 mm +'500611' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500612 +#Prob Leichter Schneefall > 0,1 cm +'500612' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500613 +#Prob Leichter Schneefall > 0,5 cm +'500613' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500614 +#Prob Leichter Schneefall > 1 cm +'500614' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500615 +#Prob Schneefall > 5 cm +'500615' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500616 +#Prob Starker Schneefall > 10 cm +'500616' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500617 +#Prob Extrem starker Schneefall > 25 cm +'500617' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500618 +#Prob Frost +'500618' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500619 +#Prob Strenger Frost +'500619' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500620 +#Prob Gewitter +'500620' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'500621' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'500622' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500623 +#Prob Dauerregen +'500623' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'500624' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'500625' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'500626' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 7 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'500627' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500628 +#Prob Glaette +'500628' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 9 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'500629' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 10 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500630 +#Prob Glatteis +'500630' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'500631' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 12 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500632 +#Prob Tauwetter +'500632' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 13 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'500633' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 14 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500634 +#Wake-production of TKE due to sub-grid scale orography +'500634' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 220 ; + } + +#paramId: 500635 +#Shear-production of TKE due to separated horizontal shear modes +'500635' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 221 ; + } + +#paramId: 500636 +#Buoyancy-production of TKE due to sub-grid scale convection +'500636' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 219 ; + } + +#paramId: 500637 +#Production of TKE +'500637' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 218 ; + } + +#paramId: 500638 +#Atmospheric resistance +'500638' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 200 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'500639' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 197 ; + } + +#paramId: 500640 +#Mass concentration of dust (minimum mode) +'500640' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 33 ; + } + +#paramId: 500642 +#Lapse rate +'500642' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500643 +#Mass concentration of dust (medium mode) +'500643' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 34 ; + } + +#paramId: 500644 +#Mass concentration of dust (maximum mode) +'500644' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 35 ; + } + +#paramId: 500645 +#Number concentration of dust (minimum mode) +'500645' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 72 ; + } + +#paramId: 500646 +#Number concentration of dust (medium mode) +'500646' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 73 ; + } + +#paramId: 500647 +#Number concentration of dust (maximum mode) +'500647' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 74 ; + } + +#paramId: 500648 +#Mass concentration of dust (sum of all modes) +'500648' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 251 ; + } + +#paramId: 500649 +#Number concentration of dust (sum of all modes) +'500649' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'500650' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'500651' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'500652' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'500654' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'500655' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'500656' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'500657' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'500658' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'500659' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'500660' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'500661' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'500662' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'500663' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'500664' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'500665' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'500666' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'500667' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'500668' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'500669' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'500670' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'500671' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'500672' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'500673' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'500674' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'500675' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'500676' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'500677' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'500678' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'500679' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'500680' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'500681' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'500682' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'500683' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'500684' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'500685' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'500686' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'500687' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'500688' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'500689' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'500690' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'500691' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'500692' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'500693' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'500694' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'500695' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'500696' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'500697' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'500698' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'500699' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'500700' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'500701' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'500702' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'500703' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'500704' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'500705' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'500706' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'500707' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'500708' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'500709' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'500710' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'500711' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'500712' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'500713' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'500714' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'500715' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'500716' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'500717' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'500718' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'500719' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'500720' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'500721' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'500722' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'500723' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'500724' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'500725' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'500726' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'500727' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'500728' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'500729' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'500730' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'500731' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'500732' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'500733' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'500734' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'500735' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'500736' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'500737' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'500738' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'500739' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'500740' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'500741' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'500742' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'500743' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'500744' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'500745' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'500746' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'500747' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'500748' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'500749' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'500750' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'500751' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'500752' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'500753' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'500754' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'500755' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'500756' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'500757' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'500758' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'500759' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'500760' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'500761' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'500762' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'500763' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'500764' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'500765' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'500766' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'500767' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'500768' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'500769' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'500770' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'500771' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'500772' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'500773' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'500774' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'500775' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'500776' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'500777' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'500778' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 128 ; + } + +#paramId: 500779 +#Effective radius of cloud water +'500779' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'500780' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'500781' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'500782' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'500783' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'500784' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'500785' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'500786' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'500787' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'500788' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'500789' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'500790' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'500791' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'500792' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + +#paramId: 500793 +#DUMMY_143 +'500793' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'500794' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'500795' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'500796' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'500797' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'500798' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'500799' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'500800' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'500801' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'500802' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'500803' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'500804' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'500805' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'500806' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'500807' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'500808' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'500809' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'500810' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'500811' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'500812' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'500813' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'500814' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'500815' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'500816' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'500817' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'500818' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'500819' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'500820' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'500821' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'500822' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'500823' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'500824' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'500825' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'500826' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'500827' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'500828' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'500829' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'500830' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'500831' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'500832' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'500833' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'500834' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'500835' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'500836' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'500837' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'500838' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'500839' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'500840' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'500841' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'500842' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'500843' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'500844' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'500845' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'500846' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'500847' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'500848' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'500849' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'500850' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'500851' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'500852' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'500853' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'500854' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'500855' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'500856' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'500857' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'500858' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'500859' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'500860' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'500861' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'500862' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'500863' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'500864' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'500865' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'500866' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'500867' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'500868' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'500869' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'500870' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'500871' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'500872' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'500873' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'500874' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'500875' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'500876' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'500877' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'500878' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'500879' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'500880' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'500881' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'500882' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'500883' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'500884' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'500885' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'500886' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'500887' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'500888' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'500889' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'500890' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'500891' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'500892' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'500893' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'500894' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'500895' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'500896' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'500897' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'500898' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'500899' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'500900' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'500901' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'500902' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'500903' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'500904' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 254 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'500905' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'502307' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'502308' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } + +#paramId: 502309 +#center latitude +'502309' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502310 +#center longitude +'502310' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502311 +#edge midpoint latitude +'502311' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502312 +#edge midpoint longitude +'502312' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502313 +#vertex latitude +'502313' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502314 +#vertex longitude +'502314' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502315 +#Number of cloud droplets per unit mass of air +'502315' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 28 ; + } + +#paramId: 502316 +#Number of cloud ice particles per unit mass of air +'502316' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 29 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'502317' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'502318' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502319 +#Latent Heat Net Flux - accumulated _ surface +'502319' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502320 +#Sensible Heat Net Flux - accumulated _ surface +'502320' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502321 +#Net short wave radiation flux - accumulated _ surface +'502321' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502322 +#Net long wave radiation flux - accumulated _ surface +'502322' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502323 +#Net long wave radiation flux - accumulated _ model top +'502323' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502327 +#Net short wave radiation flux - accumulated _ model top +'502327' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502328 +#Snow temperature - multi level +'502328' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502329 +#Snow depth - multi level +'502329' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502330 +#Snow density in - multi level +'502330' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502331 +#Water equivalent of accumulated snoe depth in - multi level +'502331' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502332 +#Liquid water content in snow - multi level +'502332' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 210 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502333 +#salinity +'502333' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 502334 +#Stream function +'502334' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 502335 +#Velocity potential +'502335' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 502336 +#Skin temperature +'502336' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux at surface +'502339' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502340 +#Snow cover +'502340' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } + +#paramId: 502341 +#Cloud Cover (0 - 400 hPa) +'502341' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 40000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502342 +#Cloud Cover (400 - 800 hPa) +'502342' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 80000 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 40000 ; + } + +#paramId: 502343 +#Cloud Cover (800 hPa - Soil) +'502343' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 80000 ; + } + +#paramId: 502344 +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) +'502344' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502345 +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) +'502345' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + } + +#paramId: 502346 +#Albedo - near infrared - time average (0.7 - 5.0 m-6) +'502346' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502347 +#Albedo - near infrared (0.7 - 5.0 m-6) +'502347' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + } + +#paramId: 502348 +#Water Runoff (s) +'502348' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502349 +#Water Runoff +'502349' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 1 ; + } + +#paramId: 502352 +#Eddy Dissipation Rate Total Col-Max. Upper FIR +'502352' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 224 ; + } + +#paramId: 502353 +#Eddy Dissipation Rate Total Col-Max. Lower UIR +'502353' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 225 ; + } + +#paramId: 502354 +#Eddy Dissipation Rate Total Col-Max. Upper UIR +'502354' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 226 ; + } + +#paramId: 502397 +#Virtual Temperature +'502397' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502424 +#Vertical u-component shear +'502424' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } + +#paramId: 502425 +#Vertical v-component shear +'502425' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } + +#paramId: 502693 +#Potential temperature +'502693' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502700 +#Boundary layer dissipation +'502700' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } + +#paramId: 502701 +#Sunshine duration +'502701' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502702 +#Brightness temperature +'502702' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } + +#paramId: 502703 +#Heat index +'502703' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502705 +#Total column water +'502705' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } + +#paramId: 502706 +#Large scale precipitation (non-convective) +'502706' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502707 +#Snowfall rate water equivalent +'502707' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502708 +#Convective snow +'502708' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } + +#paramId: 502709 +#Large scale snow +'502709' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } + +#paramId: 502710 +#Snow age +'502710' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } + +#paramId: 502711 +#Absolute humidity +'502711' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } + +#paramId: 502712 +#Precipitation type +'502712' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } + +#paramId: 502713 +#Integrated liquid water +'502713' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } + +#paramId: 502714 +#Condensate +'502714' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } + +#paramId: 502715 +#Ice water mixing ratio +'502715' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } + +#paramId: 502717 +#Maximum relative humidity +'502717' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } + +#paramId: 502718 +#Maximum absolute humidity +'502718' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } + +#paramId: 502719 +#Total snowfall +'502719' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } + +#paramId: 502720 +#Precipitable water category +'502720' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } + +#paramId: 502721 +#Hail +'502721' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } + +#paramId: 502722 +#Categorical rain +'502722' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } + +#paramId: 502723 +#Categorical freezing rain +'502723' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } + +#paramId: 502724 +#Categorical ice pellets +'502724' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } + +#paramId: 502725 +#Categorical snow +'502725' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } + +#paramId: 502727 +#Percent frozen precipitation +'502727' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } + +#paramId: 502728 +#Potential evaporation +'502728' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } + +#paramId: 502729 +#Potential evaporation rate +'502729' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } + +#paramId: 502730 +#Rain fraction of total cloud water +'502730' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } + +#paramId: 502731 +#Rime factor +'502731' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } + +#paramId: 502732 +#Large scale water precipitation (non-convective) +'502732' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } + +#paramId: 502733 +#Convective water precipitation +'502733' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } + +#paramId: 502734 +#Total water precipitation +'502734' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } + +#paramId: 502735 +#Total snow precipitation +'502735' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } + +#paramId: 502737 +#Snow Fall water equivalent +'502737' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } + +#paramId: 502738 +#Convective snowfall rate +'502738' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } + +#paramId: 502739 +#Large scale snowfall rate +'502739' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } + +#paramId: 502740 +#Water equivalent of accumulated snow depth +'502740' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502741 +#Freezing rain precipitation rate +'502741' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } + +#paramId: 502742 +#Ice pellets precipitation rate +'502742' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } + +#paramId: 502743 +#Maximum wind speed +'502743' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } + +#paramId: 502744 +#u-component of wind (gust) +'502744' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } + +#paramId: 502745 +#v-component of wind (gust) +'502745' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } + +#paramId: 502746 +#Horizontal momentum flux +'502746' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } + +#paramId: 502747 +#U-component storm motion +'502747' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } + +#paramId: 502748 +#V-component storm motion +'502748' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } + +#paramId: 502749 +#Thickness +'502749' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502751 +#Minimum dew point depression +'502751' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502752 +#Pressure altitude +'502752' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502753 +#Density altitude +'502753' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502754 +#5-wave geopotential height +'502754' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502755 +#Zonal flux of gravity wave stress +'502755' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502756 +#Meridional flux of gravity wave stress +'502756' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 502757 +#Planetary boundary layer height +'502757' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } + +#paramId: 502758 +#5-wave geopotential height anomaly +'502758' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 502759 +#Net short-wave radiation flux (top of atmosphere) +'502759' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502760 +#Downward short-wave radiation flux +'502760' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } + +#paramId: 502761 +#Net short-wave radiation flux, clear sky +'502761' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } + +#paramId: 502762 +#Downward UV radiation +'502762' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } + +#paramId: 502763 +#Net long wave radiation flux (surface) +'502763' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } + +#paramId: 502764 +#Net long wave radiation flux (top of atmosphere) +'502764' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } + +#paramId: 502765 +#Downward long-wave radiation flux +'502765' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } + +#paramId: 502766 +#Upward long-wave radiation flux +'502766' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } + +#paramId: 502767 +#Net long-wave radiation flux, clear sky +'502767' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } + +#paramId: 502768 +#Cloud Ice +'502768' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } + +#paramId: 502769 +#Cloud water +'502769' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } + +#paramId: 502770 +#Cloud amount +'502770' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } + +#paramId: 502771 +#Cloud type +'502771' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } + +#paramId: 502772 +#Thunderstorm maximum tops +'502772' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } + +#paramId: 502773 +#Thunderstorm coverage +'502773' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } + +#paramId: 502774 +#Cloud base +'502774' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } + +#paramId: 502775 +#Cloud top +'502775' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } + +#paramId: 502776 +#Cloud work function +'502776' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } + +#paramId: 502777 +#Convective cloud efficiency +'502777' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } + +#paramId: 502778 +#Total condensate +'502778' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } + +#paramId: 502779 +#Total column-integrated cloud water +'502779' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } + +#paramId: 502780 +#Total column-integrated cloud ice +'502780' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } + +#paramId: 502781 +#Total column-integrated condensate +'502781' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } + +#paramId: 502782 +#Ice fraction of total condensate +'502782' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } + +#paramId: 502783 +#Cloud ice mixing ratio +'502783' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } + +#paramId: 502785 +#K index +'502785' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 502786 +#Total totals index +'502786' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } + +#paramId: 502787 +#Sweat index +'502787' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } + +#paramId: 502788 +#Energy helicity index +'502788' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } + +#paramId: 502789 +#Surface lifted index +'502789' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } + +#paramId: 502790 +#Best (4-layer) lifted index +'502790' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } + +#paramId: 502791 +#Aerosol type +'502791' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } + +#paramId: 502792 +#Base spectrum width +'502792' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } + +#paramId: 502793 +#Base radial velocity +'502793' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } + +#paramId: 502794 +#Vertically-integrated liquid +'502794' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } + +#paramId: 502795 +#Layer-maximum base reflectivity +'502795' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } + +#paramId: 502796 +#Precipitation +'502796' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 502797 +#Air concentration of Caesium 137 +'502797' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } + +#paramId: 502798 +#Air concentration of Iodine 131 +'502798' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } + +#paramId: 502799 +#Air concentration of radioactive pollutant +'502799' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } + +#paramId: 502800 +#Ground deposition of Caesium 137 +'502800' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } + +#paramId: 502801 +#Ground deposition of Iodine 131 +'502801' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } + +#paramId: 502802 +#Ground deposition of radioactive pollutant +'502802' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } + +#paramId: 502843 +#Time-integrated air concentration of caesium pollutant +'502843' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } + +#paramId: 502844 +#Time-integrated air concentration of iodine pollutant +'502844' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } + +#paramId: 502845 +#Time-integrated air concentration of radioactive pollutant +'502845' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } + +#paramId: 502846 +#Volcanic ash +'502846' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } + +#paramId: 502847 +#Icing top +'502847' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } + +#paramId: 502848 +#Icing base +'502848' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } + +#paramId: 502849 +#Turbulence top +'502849' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } + +#paramId: 502850 +#Turbulence base +'502850' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } + +#paramId: 502851 +#Turbulence +'502851' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } + +#paramId: 502852 +#Planetary boundary layer regime +'502852' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } + +#paramId: 502853 +#Contrail intensity +'502853' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } + +#paramId: 502854 +#Contrail engine type +'502854' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } + +#paramId: 502855 +#Contrail top +'502855' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } + +#paramId: 502856 +#Contrail base +'502856' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } + +#paramId: 502857 +#Maximum snow albedo +'502857' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } + +#paramId: 502858 +#Icing +'502858' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } + +#paramId: 502859 +#Horizontal extent of cumulonimbus (CB) +'502859' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } + +#paramId: 502860 +#In-cloud turbulence +'502860' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } + +#paramId: 502861 +#Clear air turbulence (CAT) +'502861' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } + +#paramId: 502862 +#Supercooled large droplet probability (see Note 4) +'502862' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } + +#paramId: 502864 +#Seconds prior to initial reference time (defined in Section 1) +'502864' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502865 +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'502865' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 502866 +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'502866' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502867 +#Remotely sensed snow cover +'502867' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502868 +#Elevation of snow covered terrain +'502868' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 502869 +#Snow water equivalent percent of normal +'502869' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502870 +#Baseflow-groundwater runoff +'502870' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502871 +#Storm surface runoff +'502871' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502872 +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'502872' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502873 +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'502873' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502874 +#Probability of 0.01 inch of precipitation (POP) +'502874' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502875 +#Evapotranspiration +'502875' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502876 +#Land use +'502876' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 502877 +#Volumetric soil moisture content +'502877' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502878 +#Ground heat flux +'502878' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502879 +#Moisture availability +'502879' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502880 +#Exchange coefficient +'502880' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502881 +#Blackadar mixing length scale +'502881' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502882 +#Canopy conductance +'502882' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 502883 +#Solar parameter in canopy conductance +'502883' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 502885 +#Soil moisture parameter in canopy conductance +'502885' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 502886 +#Humidity parameter in canopy conductance +'502886' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 502887 +#Column-integrated soil water +'502887' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 502888 +#Heat flux +'502888' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 502889 +#Volumetric soil moisture +'502889' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 502890 +#Volumetric wilting point +'502890' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 502891 +#Upper layer soil temperature +'502891' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502892 +#Upper layer soil moisture +'502892' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } + +#paramId: 502893 +#Lower layer soil moisture +'502893' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 502894 +#Bottom layer soil temperature +'502894' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 502895 +#Liquid volumetric soil moisture (non-frozen) +'502895' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 502896 +#Number of soil layers in root zone +'502896' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } + +#paramId: 502897 +#Transpiration stress-onset (soil moisture) +'502897' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502898 +#Direct evaporation cease (soil moisture) +'502898' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502899 +#Soil porosity +'502899' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502900 +#Liquid volumetric soil moisture (non-frozen) +'502900' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 502919 +#Volumetric transpiration stress-onset (soil moisture) +'502919' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 502920 +#Transpiration stress-onset (soil moisture) +'502920' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502921 +#Volumetric direct evaporation cease (soil moisture) +'502921' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502922 +#Direct evaporation cease (soil moisture) +'502922' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502923 +#Soil porosity +'502923' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502924 +#Volumetric saturation of soil moisture +'502924' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502926 +#Estimated precipitation +'502926' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502927 +#Instantaneous rain rate +'502927' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502928 +#Cloud top height quality indicator +'502928' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502929 +#Estimated u component of wind +'502929' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 502930 +#Estimated v component of wind +'502930' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502931 +#Number of pixels used +'502931' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } + +#paramId: 502932 +#Solar zenith angle +'502932' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502933 +#Reflectance in 0.6 micron channel +'502933' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502934 +#Reflectance in 0.8 micron channel +'502934' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502935 +#Reflectance in 1.6 micron channel +'502935' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 502936 +#Reflectance in 3.9 micron channel +'502936' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502937 +#Atmospheric divergence +'502937' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502938 +#Primary wave direction +'502938' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502939 +#Primary wave mean period +'502939' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502940 +#Secondary wave mean period +'502940' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 502941 +#Deviation of sea level from mea +'502941' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502942 +#Seconds prior to initial reference time (defined in Section 1) +'502942' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502943 +#Standard deviation of height +'502943' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502944 +#Maximum temperature +'502944' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502945 +#Minimum temperature +'502945' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502946 +#Visibility +'502946' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 502947 +#Radar spectra (2) +'502947' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } + +#paramId: 502948 +#Radar spectra (3) +'502948' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } + +#paramId: 502949 +#Parcel lifted index (to 500 hPa) +'502949' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 502950 +#Temperature anomaly +'502950' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502951 +#Pressure anomaly +'502951' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502952 +#Geopotential height anomaly +'502952' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502953 +#Montgomery stream Function +'502953' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 502954 +#Sigma coordinate vertical velocity +'502954' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 502955 +#Absolute divergence +'502955' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 502958 +#U-component of current +'502958' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502959 +#V-component of current +'502959' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502960 +#Precipitable water +'502960' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502961 +#Saturation deficit +'502961' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502962 +#Precipitation rate +'502962' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502963 +#Thunderstorm probability +'502963' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } + +#paramId: 502964 +#Convective precipitation (water) +'502964' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502965 +#Transient thermocline depth +'502965' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } + +#paramId: 502966 +#Main thermocline depth +'502966' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 502967 +#Main thermocline anomaly +'502967' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502968 +#Best lifted index (to 500 hPa) +'502968' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 502969 +#Soil moisture content +'502969' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 503011 +#Salinity +'503011' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 503012 +#Direction of ice drift +'503012' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503013 +#Speed of ice drift +'503013' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503014 +#U-component of ice drift +'503014' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503015 +#V-component of ice drift +'503015' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503016 +#Ice growth rate +'503016' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503017 +#Ice divergence +'503017' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503019 +#Secondary wave direction +'503019' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 503020 +#Net short-wave radiation flux (surface) +'503020' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 503021 +#Radiance (with respect to wave number) +'503021' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } + +#paramId: 503022 +#Radiance (with respect to wave length) +'503022' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } + +#paramId: 503023 +#Convective inhibition +'503023' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } + +#paramId: 503024 +#Wind mixing energy +'503024' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } + +#paramId: 503025 +#Soil Temperature +'503025' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 503028 +#Wilting point +'503028' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 503038 +#Snow phase change heat flux +'503038' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503039 +#Vapor pressure +'503039' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 503047 +#Land use class fraction +'503047' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 503048 +#Saturation of soil moisture +'503048' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'503049' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 227 ; + } + +#paramId: 503050 +#Radar precipitation rate +'503050' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 195 ; + } + +#paramId: 503052 +#Radar quality information +'503052' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 196 ; + } + +#paramId: 503053 +#Radar blacklist +'503053' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 197 ; + } + +#paramId: 503054 +#Height of radar beam above ground +'503054' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 198 ; + } + +#paramId: 503055 +#Specific humidity (diagnostic) +'503055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 211 ; + } + +#paramId: 503056 +#Specific cloud water content (diagnostic) +'503056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 212 ; + } + +#paramId: 503057 +#Specific cloud ice content (diagnostic) +'503057' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 213 ; + } + +#paramId: 503058 +#Total column integrated water vapour (diagnostic) +'503058' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 214 ; + } + +#paramId: 503059 +#Total column integrated cloud water (diagnostic) +'503059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 215 ; + } + +#paramId: 503060 +#Total column integrated cloud ice (diagnostic) +'503060' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 216 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'503061' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'503062' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'503063' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'503064' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503065 +#u-momentum flux due to SSO-effects +'503065' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 503066 +#v-momentum flux due to SSO-effects +'503066' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'503068' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503069 +#precipitation,BRD +'503069' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'503070' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503071 +#hail flag,BRD +'503071' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503072 +#snow_rate,BRD +'503072' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503073 +#snow_rate,qualified,BRD +'503073' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503074 +#Area weights for regular lon-lat grid +'503074' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 193 ; + } + +#paramId: 503075 +#Geometric height of the earths surface above mean sea level at vertex point (ICON) +'503075' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + numberOfGridInReference = 2 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'503076' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503078 +#Relative humidity over mixed phase +'503078' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 220 ; + } + +#paramId: 503079 +#Soil moisture index (multilayers) +'503079' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 503080 +#Land use class +'503080' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 503081 +#Water depth +'503081' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } + +#paramId: 503082 +#Friction velocity +'503082' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } + +#paramId: 503083 +#Coefficient of drag with waves +'503083' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503084 +#Normalized wave stress +'503084' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 503085 +#Inverse mean frequency of wind waves +'503085' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } + +#paramId: 503086 +#Mean zero-crossing period of wind waves +'503086' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 503087 +#Directional width of wind waves +'503087' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 503088 +#Inverse mean frequency of total swell +'503088' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503089 +#Inverse mean zero crossing period of total swell +'503089' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 503090 +#Directional width of total swell +'503090' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } + +#paramId: 503091 +#Goda peakedness parameter +'503091' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 45 ; + } + +#paramId: 503092 +#Spectral kurtosis +'503092' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 43 ; + } + +#paramId: 503093 +#Benjamin-Feir index +'503093' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 44 ; + } + +#paramId: 503094 +#Maximum individual wave height +'503094' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 503095 +#Maximum wave period +'503095' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 503096 +#Peak frequency (interpolated) +'503096' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } + +#paramId: 503097 +#Meansquare slope +'503097' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 503106 +#Hail mixing ratio +'503106' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 71 ; + } + +#paramId: 503107 +#Hail +'503107' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 72 ; + } + +#paramId: 503108 +#Hail precipitation rate +'503108' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + } + +#paramId: 503109 +#Reflectivity of cloud droplets +'503109' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 9 ; + } + +#paramId: 503110 +#Reflectivity of cloud ice +'503110' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 10 ; + } + +#paramId: 503111 +#Reflectivity of snow +'503111' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 11 ; + } + +#paramId: 503112 +#Reflectivity of rain +'503112' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 12 ; + } + +#paramId: 503113 +#Reflectivity of graupel +'503113' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 13 ; + } + +#paramId: 503114 +#Reflectivity of hail +'503114' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 14 ; + } + +#paramId: 503115 +#Specific number concentration of rain +'503115' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 228 ; + } + +#paramId: 503116 +#Number density of rain +'503116' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 229 ; + } + +#paramId: 503117 +#Specific number concentration of snow +'503117' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 217 ; + } + +#paramId: 503118 +#Specific number concentration of graupel +'503118' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 218 ; + } + +#paramId: 503119 +#Specific number concentration of hail +'503119' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 219 ; + } + +#paramId: 503120 +#Number density of snow +'503120' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 221 ; + } + +#paramId: 503121 +#Number density of graupel +'503121' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 222 ; + } + +#paramId: 503122 +#Number density of hail +'503122' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 223 ; + } + +#paramId: 503123 +#Mass density of rain +'503123' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 224 ; + } + +#paramId: 503124 +#Mass density of snow +'503124' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 225 ; + } + +#paramId: 503125 +#Mass density of graupel +'503125' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 226 ; + } + +#paramId: 503126 +#Mass density of cloud droplets +'503126' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 203 ; + } + +#paramId: 503127 +#Mass density of cloud ice +'503127' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 204 ; + } + +#paramId: 503128 +#Mass density of hail +'503128' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 227 ; + } + +#paramId: 503130 +#Hail precipitation rate, accumulation +'503130' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503132 +#Number density of cloud droplets +'503132' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 30 ; + } + +#paramId: 503133 +#Number density of cloud ice particles +'503133' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 31 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'503134' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'503135' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'503136' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503137 +#Eddy Dissipation Rate Total Col-Max. Lower FIR +'503137' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 228 ; + } + +#paramId: 503142 +#Lightning Potential Index +'503142' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + } + +#paramId: 503143 +#Rain drain from snowpack - accumulation +'503143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 230 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503145 +#2m absolute humidity +'503145' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503146 +#Height of -10 degree Celsius isotherm +'503146' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 503147 +# probability density function of EDP for turbulence greater well defined threshold and model grid box +'503147' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 229 ; + } + +#paramId: 503148 +#Adedokun 2 Index +'503148' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 503149 +#Downward direct short wave radiation flux at surface on horizontal plane (time average) +'503149' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503150 +#Gauss Boaga Coordinates West to East,East Sector +'503150' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 194 ; + } + +#paramId: 503151 +#Gauss Boaga Coordinates South to North,East Sector +'503151' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 195 ; + } + +#paramId: 503152 +#Gauss Boaga Coordinates West to East, West Sector +'503152' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 196 ; + } + +#paramId: 503153 +#Gauss Boaga Coordinates South to North, West Sector +'503153' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 197 ; + } + +#paramId: 503154 +#Bulk Richardson number +'503154' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 16 ; + } + +#paramId: 503155 +#Cape of mixed (mean) layer parcel, ascent up to 3 km +'503155' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 3000 ; + } + +#paramId: 503156 +#Ellrod and Knapp turbulence index1 +'503156' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 230 ; + } + +#paramId: 503157 +#Ellrod and Knapp turbulence index2 +'503157' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 231 ; + } + +#paramId: 503158 +#Deformation of horizontal wind field +'503158' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 29 ; + } + +#paramId: 503159 +#Divergence trend (scaled divergence tendency needed for CAT_DVI) +'503159' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 232 ; + } + +#paramId: 503160 +#Divergence modified turbulence index (Ellrod and Knox) +'503160' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 233 ; + } + +#paramId: 503161 +#Cloud ice ratio qi/(qc+qi) +'503161' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 231 ; + } + +#paramId: 503162 +#Percentage of convective precipitation (from total prec) +'503162' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 232 ; + } + +#paramId: 503163 +#Deep convection index +'503163' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503164 +#Wind direction in azimuth class +'503164' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 503165 +#Wind direction in azimuth class +'503165' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503166 +#Geostrophic wind direction +'503166' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 43 ; + } + +#paramId: 503167 +#Possible astronomical maximum of sunshine +'503167' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503168 +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) +'503168' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503169 +#Dewpoint depression +'503169' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 503170 +#2m dewpoint depression +'503170' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503171 +#Enthalpy +'503171' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } + +#paramId: 503172 +#2m Enthalpy +'503172' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503173 +#Geostrophic wind speed +'503173' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 44 ; + } + +#paramId: 503174 +#Downward short wave radiation flux at surface (time average) +'503174' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503175 +#Downward short wave radiation flux at surface on horizontal plane (time average) +'503175' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503176 +#Downward short wave radiation flux at surface on vertical surface facing east (time average) +'503176' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 202 ; + } + +#paramId: 503177 +#Downward short wave radiation flux at surface on vertical surface facing north (time average) +'503177' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 203 ; + } + +#paramId: 503178 +#Downward short wave radiation flux at surface on vertical surface facing south (time average) +'503178' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 204 ; + } + +#paramId: 503179 +#Downward short wave radiation flux at surface on vertical surface facing west (time average) +'503179' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 205 ; + } + +#paramId: 503180 +#Along-wind Lagrangian time scale (Hanna) +'503180' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 503181 +#Cross-wind Lagrangian time scale (Hanna) +'503181' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503182 +#Vertical Lagrangian time scale (Hanna) +'503182' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503183 +#Zonal Lagrangian time scale (direct) (Hanna) +'503183' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503184 +#Meridional Lagrangian time scale (direct) (Hanna) +'503184' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503185 +#Vertical Lagrangian time scale (direct) (Hanna) +'503185' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503186 +#Height of lifting condensation level of mixed (mean) layer parcel +'503186' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 5 ; + } + +#paramId: 503187 +#Height of level of free convection of mixed (mean) layer parcel +'503187' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 194 ; + } + +#paramId: 503188 +#Luminosity +'503188' = { + discipline = 215 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 503189 +#Downward long-wave radiation flux at surface based on T_2M (time average) +'503189' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503190 +#Downward long-wave radiation flux at surface based on T_G (time average) +'503190' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503191 +#Downward long-wave radiation flux at surface based on T_SO(0) (time average) +'503191' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503192 +#Humidity mixing ratio +'503192' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 503193 +#2m Humidity mixing ratio +'503193' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503194 +#Pressure difference between cloud base and cloud top +'503194' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503195 +#relative humidity over ice +'503195' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } + +#paramId: 503196 +#Gradient Richardson number +'503196' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 17 ; + } + +#paramId: 503197 +#Showalter index +'503197' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 13 ; + } + +#paramId: 503198 +#Along-wind velocity fluctuation (Hanna) +'503198' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503199 +#Cross-wind velocity fluctuation (Hanna) +'503199' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 503200 +#Vertical velocity fluctuation (Hanna) +'503200' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 503201 +#Zonal velocity fluctuation (Hanna) +'503201' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 503202 +#Meridional velocity fluctuation (Hanna) +'503202' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 503203 +#Vertical velocity fluctuation (Hanna) +'503203' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503204 +#Surface lifted index +'503204' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503205 +#Percentage of precipitation in snow (from total prec.) +'503205' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 233 ; + } + +#paramId: 503206 +#Thunderstorm index for Switzerland (night time) +'503206' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 503207 +#Thunderstorm index for Switzerland (day time) +'503207' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 503208 +#Swiss coordinate (south-north) +'503208' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 198 ; + } + +#paramId: 503209 +#Swiss coordinate (west-east) +'503209' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 199 ; + } + +#paramId: 503210 +#2m potential temperature +'503210' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503211 +#Dew point temperature +'503211' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 503212 +#2m equivalentTemperature +'503212' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503213 +#2m virtual potential temperature +'503213' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503214 +#Temperature at cloud top +'503214' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503215 +#Wet bulb temperature +'503215' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503216 +#2m wet bulb temperature +'503216' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503217 +#2m temperature, corrected in presence of snow +'503217' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503218 +#Universal thermal climate index without direct incident short wave radiation +'503218' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } + +#paramId: 503219 +#Universal thermal climate index with direct incident short wave radiation +'503219' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 503220 +#u-component of geostrophic wind +'503220' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 41 ; + } + +#paramId: 503221 +#v-component of geostrophic wind +'503221' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 42 ; + } + +#paramId: 503222 +#Relative geostrophic vorticity +'503222' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 26 ; + } + +#paramId: 503223 +#Relative geostrophic vorticity advection +'503223' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 27 ; + } + +#paramId: 503226 +#Wind divergence (3D) +'503226' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 28 ; + } + +#paramId: 503227 +#Mean vertical wind shear for specified layer or layer-mean vertical wind shear +'503227' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 201 ; + } + +#paramId: 503228 +#Norm of (vertical) wind shear vector between two levels +'503228' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 202 ; + } + +#paramId: 503229 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 +'503229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503230 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 +'503230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503231 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 +'503231' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503232 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 +'503232' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 4 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503233 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 +'503233' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 5 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503234 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 +'503234' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 6 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503235 +#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) +'503235' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503236 +#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) +'503236' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503237 +#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) +'503237' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503238 +#Modal prognostic specific number concentration of volcanic ash particles (fine mode) +'503238' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503239 +#Modal prognostic specific number concentration of volcanic ash particles (medium mode) +'503239' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503240 +#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) +'503240' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503241 +#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) +'503241' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503242 +#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) +'503242' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503243 +#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) +'503243' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503244 +#Modal prognostic specific number concentration of mineral dust particles (fine mode) +'503244' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503245 +#Modal prognostic specific number concentration of mineral dust particles (medium mode) +'503245' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503246 +#Modal prognostic specific number concentration of mineral dust particles (coarsemode) +'503246' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503247 +#Modal prognostic mass mixing ratio of sea salt particles (fine mode) +'503247' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503248 +#Modal prognostic mass mixing ratio of sea salt particles (medium mode) +'503248' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503249 +#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) +'503249' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503250 +#Modal prognostic specific number concentration of sea salt particles (fine mode) +'503250' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503251 +#Modal prognostic specific number concentration of sea salt particles (medium mode) +'503251' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503252 +#Modal prognostic specific number concentration of sea salt particles (coarse mode) +'503252' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503253 +#Cs137 - wet deposition +'503253' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30172 ; + } + +#paramId: 503254 +#Prognostic specific activity concentration of Iodine 131 aerosol +'503254' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30141 ; + } + +#paramId: 503255 +#Te132 - total (wet + dry) deposition +'503255' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30129 ; + } + +#paramId: 503256 +#Prognostic specific activity concentration of Zirconium 95 +'503256' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30079 ; + } + +#paramId: 503257 +#Prognostic specific activity concentration of Xenon 133 +'503257' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30161 ; + } + +#paramId: 503258 +#Prognostic specific activity concentration of Iodine 131 elementary gaseous +'503258' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30138 ; + } + +#paramId: 503259 +#Prognostic specific activity concentration of Iodine 131 organic bounded +'503259' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30139 ; + } + +#paramId: 503260 +#Prognostic specific activity concentration of Barium 140 +'503260' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30175 ; + } + +#paramId: 503261 +#Prognostic specific activity concentration of Ruthenium 103 +'503261' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30102 ; + } + +#paramId: 503262 +#Diagnostic total mass concentration of volcanic ash +'503262' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 0 ; + constituentType = 62025 ; + } + +#paramId: 503263 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 +'503263' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 46500 ; + constituentType = 62025 ; + } + +#paramId: 503265 +#Diagnostic total column of mass concentration of volcanic ash +'503265' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + constituentType = 62025 ; + } + +#paramId: 503266 +#Diagnostic height of model layer with maximal total mass concentration of volcanic ash +'503266' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 62 ; + constituentType = 62025 ; + } + +#paramId: 503267 +#Diagnostic volcanic ash optical depth +'503267' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62025 ; + } + +#paramId: 503268 +#Diagnostic mineral dust optical depth +'503268' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62001 ; + } + +#paramId: 503269 +#Diagnostic sea salt optical depth +'503269' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62008 ; + } + +#paramId: 503270 +#Diagnostic vmaximum activity concentration of radionuclides in a layer +'503270' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 15 ; + } + +#paramId: 503273 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 +'503273' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 46500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 24000 ; + constituentType = 62025 ; + } + +#paramId: 503274 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 +'503274' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 70000 ; + constituentType = 62025 ; + } + +#paramId: 503275 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 +'503275' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 24000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 9100 ; + constituentType = 62025 ; + } + +#paramId: 503276 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 +'503276' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 70000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 38500 ; + constituentType = 62025 ; + } + +#paramId: 503277 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 +'503277' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 38500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 20000 ; + constituentType = 62025 ; + } + +#paramId: 503278 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 +'503278' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 20000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10000 ; + constituentType = 62025 ; + } + +#paramId: 503279 +#Diagnostic maximum total mass concentration of volcanic ash in a layer +'503279' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + constituentType = 62025 ; + } + +#paramId: 503280 +#Aerosol optical depth +'503280' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + } + +#paramId: 503282 +#Diagnostic total column of activity concentration of radionuclides +'503282' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503283 +#Liquid water potential temperature variance +'503283' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 0 ; + } + +#paramId: 503284 +#Total water specific humidity variance +'503284' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 1 ; + } + +#paramId: 503285 +#Liquid water potential temperature - total water specific humidity covariance +'503285' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 2 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'503286' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'503287' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } + +#paramId: 503292 +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +'503292' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 234 ; + } + +#paramId: 503293 +#Large Scale Rain Difference +'503293' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503294 +#Large Scale Snowfall water Equivalent Difference +'503294' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503295 +#Convective Rain Difference +'503295' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503296 +#Convective Snowfall Water Equivalent Difference +'503296' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503299 +#Sky-view-factor +'503299' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 0 ; + } + +#paramId: 503300 +#Horizon angle - topography +'503300' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 1 ; + } + +#paramId: 503301 +#Slope aspect - topography +'503301' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 3 ; + } + +#paramId: 503302 +#Slope angle - topography +'503302' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 2 ; + } + +#paramId: 503303 +#Total precipitation rate +'503303' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } + +#paramId: 503304 +#Horizontal moisture convergence +'503304' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } + +#paramId: 503305 +#TOA downward solar radiation +'503305' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 503306 +#Surface upward thermal radiation +'503306' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503307 +#Surface upward thermal radiation +'503307' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503308 +#Specific mass of liquid water coating on hail +'503308' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 110 ; + } + +#paramId: 503309 +#Specific mass of liquid water coating on graupel +'503309' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 113 ; + } + +#paramId: 503310 +#Specific mass of liquid water coating on snow +'503310' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 116 ; + } + +#paramId: 503311 +#Specific number concentration of rain +'503311' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 100 ; + } + +#paramId: 503312 +#Number density of rain +'503312' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 104 ; + } + +#paramId: 503313 +#Specific number concentration of snow +'503313' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 101 ; + } + +#paramId: 503314 +#Specific number concentration of graupel +'503314' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 102 ; + } + +#paramId: 503315 +#Specific number concentration of hail +'503315' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 103 ; + } + +#paramId: 503316 +#Number density of snow +'503316' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 105 ; + } + +#paramId: 503317 +#Number density of graupel +'503317' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 106 ; + } + +#paramId: 503318 +#Number density of hail +'503318' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 107 ; + } + +#paramId: 503319 +#Mass density of rain +'503319' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 96 ; + } + +#paramId: 503320 +#Mass density of snow +'503320' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 97 ; + } + +#paramId: 503321 +#Mass density of graupel +'503321' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 98 ; + } + +#paramId: 503322 +#Mass density of cloud droplets +'503322' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 38 ; + } + +#paramId: 503323 +#Mass density of cloud ice +'503323' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 39 ; + } + +#paramId: 503324 +#Mass density of hail +'503324' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 99 ; + } + +#paramId: 503325 +#Lightning Potential Index +'503325' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 1 ; + } + +#paramId: 503326 +#Diagnostic total column of activity concentration of radionuclides +'503326' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503327 +#Base for given threshold of mass density for volcanic ash cloud +'503327' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62025 ; + } + +#paramId: 503328 +#Base for given threshold of mass density for mineral dust cloud +'503328' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62001 ; + } + +#paramId: 503330 +#Top for given threshold of mass density for volcanic ash cloud +'503330' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62025 ; + } + +#paramId: 503331 +#Top for given threshold of mass density for mineral dust cloud +'503331' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62001 ; + } + +#paramId: 503332 +#Top for given threshold of air concentration of radionuclides +'503332' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 24 ; + } + +#paramId: 503333 +#Emission rate of dust for mode 2 +'503333' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503334 +#Emission rate of dust for mode 3 +'503334' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503335 +#Emission rate of dust for mode 1 +'503335' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503336 +#Accumulated dust Emission for mode 2 +'503336' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503337 +#Accumulated dust Emission for mode 1 +'503337' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503338 +#Accumulated dust Emission for mode 3 +'503338' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503339 +#Threshold friction velocity +'503339' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 203 ; + } + +#paramId: 503340 +#Base for given threshold of air concentration of radionuclides +'503340' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 23 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'503341' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 15 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'503342' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'503343' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'503344' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 26315 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'503345' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'503346' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 8 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'503347' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'503348' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'503349' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503350 +#relative vorticity +'503350' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503351 +#mean radiation temperature of an environment assumed black body related to standing human +'503351' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 4 ; + } + +#paramId: 503352 +#2m Temperature, restricted to land +'503352' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503353 +#2m Dew Point Temperature, restricted to land +'503353' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503354 +#2m Relative Humidity, restricted to land +'503354' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503355 +#Maximum 10m dynamical gust +'503355' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503356 +#Maximum 10m convective gust +'503356' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503357 +#Maximum 10m wind speed without gust +'503357' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503358 +#Standard deviation of saturation deficit +'503358' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 234 ; + } + +#paramId: 503359 +#Evaporation of plants (integrated since "nightly reset") +'503359' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } + +#paramId: 503360 +#Birch (betula) pollen concentration +'503360' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62101 ; + } + +#paramId: 503362 +#Fraction of land occupied by birch (betula) +'503362' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503363 +#Number of birch (betula) pollen in the reservoir (previous timestep) +'503363' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62101 ; + } + +#paramId: 503364 +#Number of birch (betula) pollen released into the reservoir (new) +'503364' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62101 ; + } + +#paramId: 503365 +#Sum of released birch (betula) pollen into the reservoir (daily sum) +'503365' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62101 ; + } + +#paramId: 503366 +#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) +'503366' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62101 ; + } + +#paramId: 503367 +#Height correction for emission (decreasing emission with height) for birch (betula) +'503367' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503368 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) +'503368' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62101 ; + } + +#paramId: 503369 +#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen +'503369' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62101 ; + } + +#paramId: 503370 +#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) +'503370' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503371 +#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) +'503371' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503372 +#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) +'503372' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62101 ; + } + +#paramId: 503373 +#Length of birch (betula) pollen season +'503373' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62101 ; + } + +#paramId: 503374 +#Pollen number emission flux for birch (betula) +'503374' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62101 ; + } + +#paramId: 503375 +#Alder (alnus) pollen concentration +'503375' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62100 ; + } + +#paramId: 503376 +#Fraction of land occupied by alder (alnus) +'503376' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503377 +#Number of alder (alnus) pollen in the reservoir (previous timestep) +'503377' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62100 ; + } + +#paramId: 503378 +#Number of alder (alnus) pollen released into the reservoir (new) +'503378' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62100 ; + } + +#paramId: 503379 +#Sum of released alder (alnus) pollen into the reservoir (daily sum) +'503379' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62100 ; + } + +#paramId: 503380 +#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) +'503380' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62100 ; + } + +#paramId: 503381 +#Height correction for emission (decreasing emission with height) for alder (alnus) +'503381' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503382 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) +'503382' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62100 ; + } + +#paramId: 503383 +#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen +'503383' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62100 ; + } + +#paramId: 503384 +#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) +'503384' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503385 +#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) +'503385' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503386 +#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) +'503386' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62100 ; + } + +#paramId: 503387 +#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) +'503387' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62100 ; + } + +#paramId: 503388 +#Length of alder (alnus) pollen season +'503388' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62100 ; + } + +#paramId: 503389 +#Pollen number emission flux for alder (alnus) +'503389' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62100 ; + } + +#paramId: 503390 +#Grasses (poaceae) pollen concentration +'503390' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62300 ; + } + +#paramId: 503391 +#Fraction of land occupied by grasses (poaceae) +'503391' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503392 +#Number of grasses (poaceae) pollen in the reservoir (previous timestep) +'503392' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62300 ; + } + +#paramId: 503393 +#Number of grasses (poaceae) pollen released into the reservoir (new) +'503393' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62300 ; + } + +#paramId: 503394 +#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) +'503394' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62300 ; + } + +#paramId: 503395 +#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) +'503395' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62300 ; + } + +#paramId: 503396 +#Height correction for emission (decreasing emission with height) for grasses (poaceae) +'503396' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503397 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) +'503397' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62300 ; + } + +#paramId: 503398 +#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen +'503398' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62300 ; + } + +#paramId: 503399 +#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) +'503399' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503400 +#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) +'503400' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503401 +#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) +'503401' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62300 ; + } + +#paramId: 503402 +#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) +'503402' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62300 ; + } + +#paramId: 503403 +#Length of grasses (poaceae) pollen season +'503403' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62300 ; + } + +#paramId: 503404 +#Pollen number emission flux for grasses (poaceae) +'503404' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62300 ; + } + +#paramId: 503405 +#ragweed (ambrosia) pollen concentration +'503405' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62200 ; + } + +#paramId: 503406 +#Fraction of land occupied by ragweed (ambrosia) +'503406' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503407 +#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) +'503407' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62200 ; + } + +#paramId: 503408 +#Number of ragweed (ambrosia) pollen released into the reservoir (new) +'503408' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62200 ; + } + +#paramId: 503409 +#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) +'503409' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62200 ; + } + +#paramId: 503410 +#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) +'503410' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62200 ; + } + +#paramId: 503411 +#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) +'503411' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503412 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) +'503412' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62200 ; + } + +#paramId: 503413 +#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen +'503413' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62200 ; + } + +#paramId: 503414 +#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) +'503414' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503415 +#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) +'503415' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503416 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) +'503416' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62200 ; + } + +#paramId: 503417 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) +'503417' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62200 ; + } + +#paramId: 503418 +#Length of ragweed (ambrosia) pollen season +'503418' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62200 ; + } + +#paramId: 503419 +#Pollen number emission flux for ragweed (ambrosia) +'503419' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62200 ; + } + +#paramId: 503420 +#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) +'503420' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62101 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'503421' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'503422' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503423 +#Maximum horizontal moisture convergence track (over given time interval and column) +'503423' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503424 +#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. +'503424' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 235 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'503425' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } + +#paramId: 503426 +#Maximum snow height during contiguous accumulating snow period (coupled with snow age) +'503426' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 235 ; + } + +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'503427' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'503428' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'503431' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'503432' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'503433' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'503434' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'503435' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'503436' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'503437' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'503438' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'503439' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'503440' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'503441' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'503442' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'503443' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'503444' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'503445' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'503446' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'503447' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'503448' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'503449' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'503450' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'503451' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'503452' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'503453' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'503454' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'503455' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'503456' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'503457' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'503458' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'503459' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'503460' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'503461' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'503462' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'503463' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'503464' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'503465' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'503466' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'503467' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'503468' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'503469' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'503470' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'503471' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'503480' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'503481' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'503482' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'503483' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'503484' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'503485' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'503486' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'503487' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'503489' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'503490' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'503491' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'503492' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'503493' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'503494' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'503495' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'503496' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'503497' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'503499' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'503500' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'503501' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'503502' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'503503' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'503504' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'503505' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'503506' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'503507' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'503508' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'503509' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'503510' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'503511' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'503512' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'503513' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'503514' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'503515' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'503516' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'503517' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'503518' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'503519' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'503520' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'503522' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'503523' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'503524' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'503525' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'503526' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'503527' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'503528' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'503529' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'503530' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'503531' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'503532' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'503533' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'503534' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'503535' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'503536' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'503537' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'503538' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'503539' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'503542' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'503543' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'503544' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'503545' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'503546' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'503547' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'503548' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'503549' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'503550' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'503551' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'503552' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'503553' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'503554' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503555 +#Average hail diameter +'503555' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'503556' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'503557' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'503558' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'503559' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'503560' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'503561' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + diff --git a/eccodes/definitions/grib2/localConcepts/edzw/shortName.def b/eccodes/definitions/grib2/localConcepts/edzw/shortName.def new file mode 100755 index 00000000..a341a356 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/shortName.def @@ -0,0 +1,13809 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'PS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500001 +#Pressure +'P' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'PMSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'DPSDT' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'FIS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'FIF' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 105 ; + typeOfFirstFixedSurface = 105 ; + } + +#paramId: 500006 +#Geopotential +'FI' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'HSURF' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'HHL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'TO3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } + +#paramId: 500010 +#Temperature (G) +'T_G' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500011 +#2m Temperature +'T_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'T_2M_AV' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'T_2M_CL' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 9 ; + } + +#paramId: 500014 +#Temperature +'T' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'TMAX_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'TMIN_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'TD_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'TD_2M_AV' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'DBZ_MAX' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500020 +#Wave spectra (1) +'WVSP1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500021 +#Wave spectra (2) +'WVSP2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500022 +#Wave spectra (3) +'WVSP3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'DD_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'DD' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'SP_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'SP' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500027 +#U-Component of Wind +'U_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500029 +#V-Component of Wind +'V_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'OMEGA' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'W' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'QV_2M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'QV' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500036 +#2m Relative Humidity +'RELHUM_2M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'RELHUM' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'TQV' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } + +#paramId: 500039 +#Evaporation (s) +'AEVAP_S' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'TQI' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'TOT_PREC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'PREC_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'PREC_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'W_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } + +#paramId: 500045 +#Snow Depth +'H_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 500046 +#Total Cloud Cover +'CLCT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'CLC_CON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'TQC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'SNOW_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'SNOW_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'FR_LAND' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'Z0' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'ALB_RAD' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'ALBEDO_B' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'T_CL' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'T_CL_LM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'T_M' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'T_S' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'W_CL' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'W_G1' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'W_G2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500065 +#Plant cover +'PLCOV' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500066 +#Water Runoff +'RUNOFF_G' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'RUNOFF_S' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'FR_ICE' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'H_ICE' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'SWH' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500072 +#Direction of wind waves +'MDWW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500073 +#Significant height of wind waves +'SHWW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 500074 +#Mean period of wind waves +'MPWW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 500075 +#Direction of swell waves +'MDTS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500076 +#Significant height of swell waves +'SHTS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500077 +#Mean period of swell waves +'MPTS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'SOBS_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'ATHB_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'THBS_RAD' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'ASOB_T' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'SOBT_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'ATHB_T' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'THBT_RAD' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'ALHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'ASHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'AUMFL_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'AVMFL_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'APAB_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'PABS_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500098 +#Cloud cover +'CLC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'CLC_SGS' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'QC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'QI' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + } + +#paramId: 500102 +#Rain mixing ratio +'QR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } + +#paramId: 500103 +#Snow mixing ratio +'QS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } + +#paramId: 500104 +#Total column integrated rain +'TQR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } + +#paramId: 500105 +#Total column integrated snow +'TQS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } + +#paramId: 500106 +#Grauple +'QG' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } + +#paramId: 500107 +#Total column integrated grauple +'TQG' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'TWATER' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'HBAS_CON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'HTOP_CON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'HZEROCL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500132 +#Large scale rain rate +'PRR_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'PRS_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'RAIN_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500135 +#Convective rain rate +'PRR_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'PRS_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } + +#paramId: 500137 +#Convective rain +'RAIN_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'TOT_RAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'TOT_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'PRG_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'GRAU_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500147 +#Snow density +'RHO_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'TKE_CON' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'TKVM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'TKVH' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'TCM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'TCH' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 500163 +#mixed layer depth +'MH' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } + +#paramId: 500164 +#maximum Wind 10m +'VMAX_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'T_SO' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'W_SO' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'W_SO_ICE' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'W_I' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'T_SNOW' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'RSMIN' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'T_ICE' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500173 +#Base reflectivity +'DBZ_850' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'DBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'DBZ_CMAX' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'CAPE_CON' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } + +#paramId: 500185 +#Direction of combined wind waves and swell +'MWD' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 500187 +#Peak period of total swell +'PPTS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 500189 +#Peak period of wind waves +'PPWW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 500190 +#Peak wave period +'PP1D' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } + +#paramId: 500191 +#Mean period of combined wind waves and swell +'TM10' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500192 +#Inverse mean wave frequency +'TM01' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 500193 +#Mean zero-crossing wave period +'TM02' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500194 +#Wave directional width +'SPRD' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'SSO_STDH' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'SSO_GAMMA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'SSO_THETA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'SSO_SIGMA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } + +#paramId: 500206 +#Leaf area index +'LAI' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500207 +#root depth of vegetation +'ROOTDP' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'PLCOV_MX' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'PLCOV_MN' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500212 +#Max Leaf area index +'LAI_MX' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500213 +#Min Leaf area index +'LAI_MN' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'ORO_MOD' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500217 +#evergreen forest +'FOR_E' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 500218 +#deciduous forest +'FOR_D' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'NDVI' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'NDVI_MAX' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'AER_SO4' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62006 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'AER_SO412' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62006 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'AER_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62001 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'AER_DUST12' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62001 ; + } + +#paramId: 500227 +#Organic aerosol +'AER_ORG' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62010 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'AER_ORG12' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62010 ; + } + +#paramId: 500229 +#Black carbon aerosol +'AER_BC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62009 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'AER_BC12' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62009 ; + } + +#paramId: 500231 +#Sea salt aerosol +'AER_SS' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62008 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'AER_SS12' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62008 ; + } + +#paramId: 500236 +#geographical latitude +'RLAT' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } + +#paramId: 500237 +#geographical longitude +'RLON' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } + +#paramId: 500238 +#Friction velocity +'USTAR' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'O3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Ru-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30102 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Ru-103d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30102 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Ru-103w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30102 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Sr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30067 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Sr-90d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30067 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Sr-90w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30067 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'I-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30141 ; + } + +#paramId: 500250 +#I131a - dry deposition +'I-131ad' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30141 ; + } + +#paramId: 500251 +#I131a - wet deposition +'I-131aw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30141 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Cs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30172 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Cs-137d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30172 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Te-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30129 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Te-132d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30129 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Te-132w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30129 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Zr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30079 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Zr-95d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30079 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Zr-95w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30079 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Kr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30059 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Kr-85d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30059 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Kr-85w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30059 ; + } + +#paramId: 500264 +#TRACER - concentration +'Tr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30000 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'Tr-2d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30000 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'Tr-2w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30000 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Xe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30161 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Xe-133d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30161 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Xe-133w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30161 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'I-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30138 ; + } + +#paramId: 500271 +#I131g - dry deposition +'I-131gd' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30138 ; + } + +#paramId: 500272 +#I131g - wet deposition +'I-131gw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30138 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'I-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30139 ; + } + +#paramId: 500274 +#I131o - dry deposition +'I-131od' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30139 ; + } + +#paramId: 500275 +#I131o - wet deposition +'I-131ow' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30139 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Ba-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30175 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Ba-140d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30175 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Ba-140w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30175 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'VDIS_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'UVI_MAX_CL' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500286 +#Vertical speed shear +'W_SHAER' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } + +#paramId: 500287 +#storm relative helicity +'SRH' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'CCL_GND' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'WW' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'PTHETA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500302 +#KO index +'KO' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'THETAE' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500304 +#Ceiling +'CEILING' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'ICE_GRD' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'EFA-PS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'EIA-PS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'EFA-U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'EIA-U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'EFA-V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'EIA-V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'EFA-FI' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'EIA-FI' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'EFA-RH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'EIA-RH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'EFA-T' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'EIA-T' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'EFA-OM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'EIA-OM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'SYNME5_BT_CL' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'SYNME5_BT_CS' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'SYNME5_RAD_CL' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'SYNME5_RAD_CS' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'SYNME6_BT_CL' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'SYNME6_BT_CS' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'SYNME6_RAD_CL' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'SYNME6_RAD_CS' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'SYNME7_BT_CL_IR11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'SYNME7_BT_CL_WV6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'SYNME7_BT_CS_IR11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'SYNME7_BT_CS_WV6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'SYNME7_RAD_CL_IR11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'SYNME7_RAD_CL_WV6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'SYNME7_RAD_CS_IR11.5' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'SYNME7_RAD_CS_WV6.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_IR9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_WV6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'SYNMSG_BT_CL_WV7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_IR9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_WV6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'SYNMSG_BT_CS_WV7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_IR9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_WV6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'SYNMSG_RAD_CL_WV7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR10.8' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR12.1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR13.4' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR3.9' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR8.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_IR9.7' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_WV6.2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'SYNMSG_RAD_CS_WV7.3' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'T_2M_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'TMAX_2M_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'TMIN_2M_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'TD_2M_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'U_10M_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'V_10M_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'TOT_PREC_S' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'CLCT_S' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'CLCL_S' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'CLCM_S' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'CLCH_S' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'SNOW_GSP_S' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'T_S_S' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'VMAX_10M_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'TOT_PREC_C' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'SNOW_GSP_C' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'VMAX_10M_C' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500389 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'OBSMSG_ALB_HRV' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + } + +#paramId: 500390 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'OBSMSG_ALB_NIR1.6' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + } + +#paramId: 500391 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'OBSMSG_ALB_VIS0.6' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + } + +#paramId: 500392 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'OBSMSG_ALB_VIS0.8' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1250000 ; + } + +#paramId: 500393 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR10.8' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500394 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR12.0' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + } + +#paramId: 500395 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR13.4' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500396 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR3.9' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500397 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR8.7' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500398 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_IR9.7' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500399 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_WV6.2' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500400 +#Obser. Sat. Meteosat sec. generation brightness temperature +'OBSMSG_BT_WV7.3' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'TOT_PREC_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'ASOB_T' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'ATHB_T' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'ASOB_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'ATHB_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'UVI_MAX_CS' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500469 +#Total ozone +'TOT_O3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500474 +#wind chill factor +'WCF' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500475 +#Water temperature +'T_SEA' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500477 +#Absolute Vorticity +'ABSV' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'ASWDIFU_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500490 +#Water Fraction +'FR_LAKE' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500491 +#Lake depth +'DEPTH_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500492 +#Wind fetch +'FETCH_LK' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 33 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'GAMSO_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'DP_BS_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 164 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'T_BS_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 164 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'T_MNW_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'T_WML_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'T_BOT_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500499 +#Mixed-layer depth +'H_ML_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'C_T_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 166 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'T_B1_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 165 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'H_B1_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 165 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500539 +#cloud top height +'CL_TOP_HEIGHT' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 500543 +#vertical vorticity +'VORTIC_W' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 500544 +#Potential vorticity +'POT_VORTIC' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } + +#paramId: 500545 +#Density +'DEN' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 500546 +#Altimeter Settings +'ALTS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'PREC_CON_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500548 +#Soil moisture +'SM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 500549 +#Soil moisture +'SM' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } + +#paramId: 500568 +#Geopotential height +'GH' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 500569 +#Relative Divergenz +'RDIV' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'LNPS' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'T_S_L' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'W_G3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 7 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'W_G4' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 50 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 7 ; + } + +#paramId: 500584 +#Sunshine duration +'DURSUN' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500588 +#Snow melt +'SNOW_MELT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'ICAHT' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 500593 +#Global radiation flux +'GRAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 500594 +#exner pressure +'EXNER' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } + +#paramId: 500595 +#normal wind component +'VN' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 34 ; + } + +#paramId: 500596 +#tangential wind component +'VT' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 35 ; + } + +#paramId: 500597 +#virtual potential temperature +'THETA_V' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500598 +#Current Direction +'CURD' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500599 +#Current Speed +'CURS' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500642 +#Lapse rate +'LAPSE_RATE' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500779 +#Effective radius of cloud water +'RECLOUD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'RERAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'REICE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'RESNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'REGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'REHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'RECLOUD_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'REICE_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'ARRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'ARICE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'ARSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'ARGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'ARHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'ARICE_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'QV_S' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'ALB_DIF12' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'ALB_DIF' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } + +#paramId: 502309 +#center latitude +'CLAT' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502310 +#center longitude +'CLON' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502311 +#edge midpoint latitude +'ELAT' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502312 +#edge midpoint longitude +'ELON' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502313 +#vertex latitude +'VLAT' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502314 +#vertex longitude +'VLON' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502315 +#Number of cloud droplets per unit mass of air +'NCCLOUD' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 28 ; + } + +#paramId: 502316 +#Number of cloud ice particles per unit mass of air +'NCICE' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 29 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'LHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'SHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502319 +#Latent Heat Net Flux - accumulated _ surface +'ACCLHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502320 +#Sensible Heat Net Flux - accumulated _ surface +'ACCSHFL_S' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502321 +#Net short wave radiation flux - accumulated _ surface +'ACCSOB_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502322 +#Net long wave radiation flux - accumulated _ surface +'ACCTHB_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502323 +#Net long wave radiation flux - accumulated _ model top +'ACCTHB_T' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502327 +#Net short wave radiation flux - accumulated _ model top +'ACCSOB_T' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502328 +#Snow temperature - multi level +'T_SNOW_M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502329 +#Snow depth - multi level +'H_SNOW_M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502330 +#Snow density in - multi level +'RHO_SNOW_M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502331 +#Water equivalent of accumulated snoe depth in - multi level +'W_SNOW_M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502333 +#salinity +'SALT_LK' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 502334 +#Stream function +'STRF' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 502335 +#Velocity potential +'VPOT' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 502336 +#Skin temperature +'SKT' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502340 +#Snow cover +'SNOWC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } + +#paramId: 502341 +#Cloud Cover (0 - 400 hPa) +'CLCH' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 40000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502342 +#Cloud Cover (400 - 800 hPa) +'CLCM' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 80000 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 40000 ; + } + +#paramId: 502343 +#Cloud Cover (800 hPa - Soil) +'CLCL' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 80000 ; + } + +#paramId: 502348 +#Water Runoff (s) +'RUNOFF_S' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502349 +#Water Runoff +'RUNOFF_G' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 1 ; + } + +#paramId: 502397 +#Virtual Temperature +'VTMP' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502424 +#Vertical u-component shear +'VUCSH' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } + +#paramId: 502425 +#Vertical v-component shear +'VVCSH' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } + +#paramId: 502693 +#Potential temperature +'PT' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502700 +#Boundary layer dissipation +'BLD' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } + +#paramId: 502701 +#Sunshine duration +'SUND' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502702 +#Brightness temperature +'BTMP' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } + +#paramId: 502703 +#Heat index +'HEATX' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502705 +#Total column water +'TCW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } + +#paramId: 502706 +#Large scale precipitation (non-convective) +'NCPCP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502707 +#Snowfall rate water equivalent +'SRWEQ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502708 +#Convective snow +'SNOC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } + +#paramId: 502709 +#Large scale snow +'SNOL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } + +#paramId: 502710 +#Snow age +'SNOAG' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } + +#paramId: 502711 +#Absolute humidity +'ABSH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } + +#paramId: 502712 +#Precipitation type +'PTYPE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } + +#paramId: 502713 +#Integrated liquid water +'ILIQW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } + +#paramId: 502714 +#Condensate +'TCOND' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } + +#paramId: 502715 +#Ice water mixing ratio +'ICMR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } + +#paramId: 502717 +#Maximum relative humidity +'MAXRH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } + +#paramId: 502718 +#Maximum absolute humidity +'MAXAH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } + +#paramId: 502719 +#Total snowfall +'ASNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } + +#paramId: 502720 +#Precipitable water category +'PWCAT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } + +#paramId: 502721 +#Hail +'HAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } + +#paramId: 502722 +#Categorical rain +'CRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } + +#paramId: 502723 +#Categorical freezing rain +'CFRZR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } + +#paramId: 502724 +#Categorical ice pellets +'CICEP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } + +#paramId: 502725 +#Categorical snow +'CSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } + +#paramId: 502727 +#Percent frozen precipitation +'CPOFP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } + +#paramId: 502728 +#Potential evaporation +'PEVAP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } + +#paramId: 502729 +#Potential evaporation rate +'PEVPR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } + +#paramId: 502730 +#Rain fraction of total cloud water +'FRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } + +#paramId: 502731 +#Rime factor +'RIME' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } + +#paramId: 502732 +#Large scale water precipitation (non-convective) +'LSWP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } + +#paramId: 502733 +#Convective water precipitation +'CWP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } + +#paramId: 502734 +#Total water precipitation +'TWATP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } + +#paramId: 502735 +#Total snow precipitation +'TSNOWP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } + +#paramId: 502737 +#Snow Fall water equivalent +'SF' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } + +#paramId: 502738 +#Convective snowfall rate +'CSRATE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } + +#paramId: 502739 +#Large scale snowfall rate +'LSSRATE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } + +#paramId: 502740 +#Water equivalent of accumulated snow depth +'SDWE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502741 +#Freezing rain precipitation rate +'FPRATE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } + +#paramId: 502742 +#Ice pellets precipitation rate +'IPRATE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } + +#paramId: 502743 +#Maximum wind speed +'MAXGUST' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } + +#paramId: 502744 +#u-component of wind (gust) +'UGUST' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } + +#paramId: 502745 +#v-component of wind (gust) +'VGUST' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } + +#paramId: 502746 +#Horizontal momentum flux +'MFLX' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } + +#paramId: 502747 +#U-component storm motion +'USTM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } + +#paramId: 502748 +#V-component storm motion +'VSTM' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } + +#paramId: 502749 +#Thickness +'THICK' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502751 +#Minimum dew point depression +'MINDPD' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502752 +#Pressure altitude +'PRESALT' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502753 +#Density altitude +'DENALT' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502754 +#5-wave geopotential height +'5WAVH' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502755 +#Zonal flux of gravity wave stress +'U-GWD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502756 +#Meridional flux of gravity wave stress +'V-GWD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 502757 +#Planetary boundary layer height +'HPBL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } + +#paramId: 502758 +#5-wave geopotential height anomaly +'5WAVA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 502759 +#Net short-wave radiation flux (top of atmosphere) +'NSWRT' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502760 +#Downward short-wave radiation flux +'DSWRF' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } + +#paramId: 502761 +#Net short-wave radiation flux, clear sky +'NSWRFCS' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } + +#paramId: 502762 +#Downward UV radiation +'DWUVR' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } + +#paramId: 502763 +#Net long wave radiation flux (surface) +'NLWRS' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } + +#paramId: 502764 +#Net long wave radiation flux (top of atmosphere) +'NLWRT' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } + +#paramId: 502765 +#Downward long-wave radiation flux +'DLWRF' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } + +#paramId: 502766 +#Upward long-wave radiation flux +'ULWRF' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } + +#paramId: 502767 +#Net long-wave radiation flux, clear sky +'NLWRCS' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } + +#paramId: 502768 +#Cloud Ice +'CICE' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } + +#paramId: 502769 +#Cloud water +'CWAT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } + +#paramId: 502770 +#Cloud amount +'CDCA' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } + +#paramId: 502771 +#Cloud type +'CDCT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } + +#paramId: 502772 +#Thunderstorm maximum tops +'TMAXT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } + +#paramId: 502773 +#Thunderstorm coverage +'THUNC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } + +#paramId: 502774 +#Cloud base +'CDCB' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } + +#paramId: 502775 +#Cloud top +'CDCT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } + +#paramId: 502776 +#Cloud work function +'CWORK' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } + +#paramId: 502777 +#Convective cloud efficiency +'CUEFI' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } + +#paramId: 502778 +#Total condensate +'TCOND1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } + +#paramId: 502779 +#Total column-integrated cloud water +'TCOLW' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } + +#paramId: 502780 +#Total column-integrated cloud ice +'TCOLI' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } + +#paramId: 502781 +#Total column-integrated condensate +'TCOLC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } + +#paramId: 502782 +#Ice fraction of total condensate +'FICE' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } + +#paramId: 502783 +#Cloud ice mixing ratio +'CDCIMR' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } + +#paramId: 502785 +#K index +'KX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 502786 +#Total totals index +'TOTALX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } + +#paramId: 502787 +#Sweat index +'SX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } + +#paramId: 502788 +#Energy helicity index +'EHLX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } + +#paramId: 502789 +#Surface lifted index +'LFTX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } + +#paramId: 502790 +#Best (4-layer) lifted index +'4LFTX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } + +#paramId: 502791 +#Aerosol type +'AEROT' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } + +#paramId: 502792 +#Base spectrum width +'BSWID' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } + +#paramId: 502793 +#Base radial velocity +'BRVEL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } + +#paramId: 502794 +#Vertically-integrated liquid +'VERIL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } + +#paramId: 502795 +#Layer-maximum base reflectivity +'LMAXBR' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } + +#paramId: 502796 +#Precipitation +'PREC' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 502797 +#Air concentration of Caesium 137 +'ACCES' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } + +#paramId: 502798 +#Air concentration of Iodine 131 +'ACIOD' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } + +#paramId: 502799 +#Air concentration of radioactive pollutant +'ACRADP' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } + +#paramId: 502800 +#Ground deposition of Caesium 137 +'GDCES' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } + +#paramId: 502801 +#Ground deposition of Iodine 131 +'GDIOD' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } + +#paramId: 502802 +#Ground deposition of radioactive pollutant +'GDRADP' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } + +#paramId: 502843 +#Time-integrated air concentration of caesium pollutant +'TIACCP' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } + +#paramId: 502844 +#Time-integrated air concentration of iodine pollutant +'TIACIP' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } + +#paramId: 502845 +#Time-integrated air concentration of radioactive pollutant +'TIACRP' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } + +#paramId: 502846 +#Volcanic ash +'VOLASH' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } + +#paramId: 502847 +#Icing top +'ICIT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } + +#paramId: 502848 +#Icing base +'ICIB' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } + +#paramId: 502849 +#Turbulence top +'TURBT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } + +#paramId: 502850 +#Turbulence base +'TURBB' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } + +#paramId: 502851 +#Turbulence +'TURB' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } + +#paramId: 502852 +#Planetary boundary layer regime +'PBLREG' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } + +#paramId: 502853 +#Contrail intensity +'CONTI' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } + +#paramId: 502854 +#Contrail engine type +'CONTET' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } + +#paramId: 502855 +#Contrail top +'CONTT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } + +#paramId: 502856 +#Contrail base +'CONTB' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } + +#paramId: 502857 +#Maximum snow albedo +'MXALB' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } + +#paramId: 502858 +#Icing +'ICI' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } + +#paramId: 502859 +#Horizontal extent of cumulonimbus (CB) +'CBHEXT' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } + +#paramId: 502860 +#In-cloud turbulence +'ICT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } + +#paramId: 502861 +#Clear air turbulence (CAT) +'CAT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } + +#paramId: 502862 +#Supercooled large droplet probability (see Note 4) +'SLDP' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } + +#paramId: 502864 +#Seconds prior to initial reference time (defined in Section 1) +'TSEC' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502865 +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'FFLDG' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 502866 +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'FFLDRO' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502867 +#Remotely sensed snow cover +'RSSC' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502868 +#Elevation of snow covered terrain +'ESCT' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 502869 +#Snow water equivalent percent of normal +'SWEPON' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502870 +#Baseflow-groundwater runoff +'BGRUN' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502871 +#Storm surface runoff +'SSRUN' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502872 +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'CPPOP' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502873 +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'PPOSP' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502874 +#Probability of 0.01 inch of precipitation (POP) +'POP' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502875 +#Evapotranspiration +'EVAPT' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502876 +#Land use +'LANDU' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 502877 +#Volumetric soil moisture content +'SOILW' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502878 +#Ground heat flux +'GFLUX' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502879 +#Moisture availability +'MSTAV' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502880 +#Exchange coefficient +'SFEXC' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502881 +#Blackadar mixing length scale +'BMIXL' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502882 +#Canopy conductance +'CCOND' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 502883 +#Solar parameter in canopy conductance +'RCS' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 502885 +#Soil moisture parameter in canopy conductance +'RCSOL' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 502886 +#Humidity parameter in canopy conductance +'RCQ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 502887 +#Column-integrated soil water +'CISOILW' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 502888 +#Heat flux +'HFLUX' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 502889 +#Volumetric soil moisture +'VSW' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 502890 +#Volumetric wilting point +'VWILTM' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 502891 +#Upper layer soil temperature +'UPLST' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502892 +#Upper layer soil moisture +'UPLSM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } + +#paramId: 502893 +#Lower layer soil moisture +'LOWLSM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 502894 +#Bottom layer soil temperature +'BOTLST' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 502895 +#Liquid volumetric soil moisture (non-frozen) +'SOIL1' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 502896 +#Number of soil layers in root zone +'RLYRS' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } + +#paramId: 502897 +#Transpiration stress-onset (soil moisture) +'SMREF' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502898 +#Direct evaporation cease (soil moisture) +'SMDRY' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502899 +#Soil porosity +'POROS' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502900 +#Liquid volumetric soil moisture (non-frozen) +'LIQVSM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 502919 +#Volumetric transpiration stress-onset (soil moisture) +'VOLTSO' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 502920 +#Transpiration stress-onset (soil moisture) +'TRANSO' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502921 +#Volumetric direct evaporation cease (soil moisture) +'VOLDEC' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502922 +#Direct evaporation cease (soil moisture) +'DIREC' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502923 +#Soil porosity +'SOILP' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502924 +#Volumetric saturation of soil moisture +'VSOSM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502926 +#Estimated precipitation +'ESTP' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502927 +#Instantaneous rain rate +'IRRATE' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502928 +#Cloud top height quality indicator +'CTOPHQI' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502929 +#Estimated u component of wind +'ESTU' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 502930 +#Estimated v component of wind +'ESTV' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502931 +#Number of pixels used +'NPIXU' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } + +#paramId: 502932 +#Solar zenith angle +'SOLZA' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502933 +#Reflectance in 0.6 micron channel +'RFL06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502934 +#Reflectance in 0.8 micron channel +'RFL08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502935 +#Reflectance in 1.6 micron channel +'RFL16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 502936 +#Reflectance in 3.9 micron channel +'RFL39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502937 +#Atmospheric divergence +'ATMDIV' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502938 +#Primary wave direction +'DIRPW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502939 +#Primary wave mean period +'PERPW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502940 +#Secondary wave mean period +'PERSW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 502941 +#Deviation of sea level from mea +'DSLM' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502942 +#Seconds prior to initial reference time (defined in Section 1) +'TSEC' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502943 +#Standard deviation of height +'HSTDV' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502944 +#Maximum temperature +'TMAX' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502945 +#Minimum temperature +'TMIN' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502946 +#Visibility +'VIS' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 502947 +#Radar spectra (2) +'RDSP2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } + +#paramId: 502948 +#Radar spectra (3) +'RDSP3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } + +#paramId: 502949 +#Parcel lifted index (to 500 hPa) +'PLI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 502950 +#Temperature anomaly +'TA' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502951 +#Pressure anomaly +'PRESA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502952 +#Geopotential height anomaly +'GPA' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502953 +#Montgomery stream Function +'MNTSF' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 502954 +#Sigma coordinate vertical velocity +'SGCVV' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 502955 +#Absolute divergence +'ABSD' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 502958 +#U-component of current +'UCURR' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502959 +#V-component of current +'VCURR' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502960 +#Precipitable water +'PWAT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502961 +#Saturation deficit +'SATD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502962 +#Precipitation rate +'PRATE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502963 +#Thunderstorm probability +'TSTM' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } + +#paramId: 502964 +#Convective precipitation (water) +'ACPCP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502965 +#Transient thermocline depth +'TTHDP' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } + +#paramId: 502966 +#Main thermocline depth +'MTHD' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 502967 +#Main thermocline anomaly +'MTHA' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502968 +#Best lifted index (to 500 hPa) +'BLI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 502969 +#Soil moisture content +'SSW' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 503011 +#Salinity +'S' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 503012 +#Direction of ice drift +'DICED' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503013 +#Speed of ice drift +'SICED' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503014 +#U-component of ice drift +'UICE' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503015 +#V-component of ice drift +'VICE' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503016 +#Ice growth rate +'ICEG' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503017 +#Ice divergence +'ICED' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503019 +#Secondary wave direction +'DIRSW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 503020 +#Net short-wave radiation flux (surface) +'NSWRS' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 503021 +#Radiance (with respect to wave number) +'LWRAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } + +#paramId: 503022 +#Radiance (with respect to wave length) +'SWRAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } + +#paramId: 503023 +#Convective inhibition +'CIN' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } + +#paramId: 503024 +#Wind mixing energy +'WMIXE' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } + +#paramId: 503025 +#Soil Temperature +'ST' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 503028 +#Wilting point +'WILT' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 503038 +#Snow phase change heat flux +'SNOHF' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503039 +#Vapor pressure +'VAPP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 503047 +#Land use class fraction +'FR_LUC' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 503048 +#Saturation of soil moisture +'SATOSM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'SWDIFUS_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'UMFL_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'VMFL_S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503075 +#Geometric height of the earths surface above mean sea level at vertex point (ICON) +'HSURF_V' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + numberOfGridInReference = 2 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'AVDIS_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503080 +#Land use class +'LUC' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 503081 +#Water depth +'DPTH' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } + +#paramId: 503082 +#Friction velocity +'USTR' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } + +#paramId: 503083 +#Coefficient of drag with waves +'DRAG' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503084 +#Normalized wave stress +'STRS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 503085 +#Inverse mean frequency of wind waves +'TM1W' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } + +#paramId: 503086 +#Mean zero-crossing period of wind waves +'TM2W' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 503087 +#Directional width of wind waves +'SPRW' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 503088 +#Inverse mean frequency of total swell +'TM1S' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503089 +#Inverse mean zero crossing period of total swell +'TM2S' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 503090 +#Directional width of total swell +'SPRS' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } + +#paramId: 503091 +#Goda peakedness parameter +'GODA' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 45 ; + } + +#paramId: 503092 +#Spectral kurtosis +'SKUR' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 43 ; + } + +#paramId: 503093 +#Benjamin-Feir index +'BEFI' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 44 ; + } + +#paramId: 503094 +#Maximum individual wave height +'MXWH' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 503095 +#Maximum wave period +'MXWP' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 503097 +#Meansquare slope +'SQSL' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 503106 +#Hail mixing ratio +'QH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 71 ; + } + +#paramId: 503107 +#Hail +'TQH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 72 ; + } + +#paramId: 503108 +#Hail precipitation rate +'PRH_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + } + +#paramId: 503109 +#Reflectivity of cloud droplets +'DBZ_CLOUD' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 9 ; + } + +#paramId: 503110 +#Reflectivity of cloud ice +'DBZ_ICE' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 10 ; + } + +#paramId: 503111 +#Reflectivity of snow +'DBZ_SNOW' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 11 ; + } + +#paramId: 503112 +#Reflectivity of rain +'DBZ_RAIN' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 12 ; + } + +#paramId: 503113 +#Reflectivity of graupel +'DBZ_GRAUPEL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 13 ; + } + +#paramId: 503114 +#Reflectivity of hail +'DBZ_HAIL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 14 ; + } + +#paramId: 503130 +#Hail precipitation rate, accumulation +'HAIL_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503132 +#Number density of cloud droplets +'NDCLOUD' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 30 ; + } + +#paramId: 503133 +#Number density of cloud ice particles +'NDICE' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 31 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'THDS_RAD' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'ATHD_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'ACCTHD_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503145 +#2m absolute humidity +'ABSH_2M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503154 +#Bulk Richardson number +'BRN' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 16 ; + } + +#paramId: 503155 +#Cape of mixed (mean) layer parcel, ascent up to 3 km +'CAPE_3KM' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 3000 ; + } + +#paramId: 503166 +#Geostrophic wind direction +'DD_G' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 43 ; + } + +#paramId: 503169 +#Dewpoint depression +'D_TD' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 503170 +#2m dewpoint depression +'D_TD_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503173 +#Geostrophic wind speed +'SP_G' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 44 ; + } + +#paramId: 503174 +#Downward short wave radiation flux at surface (time average) +'ASOD_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503186 +#Height of lifting condensation level of mixed (mean) layer parcel +'LCL_ML' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 5 ; + } + +#paramId: 503192 +#Humidity mixing ratio +'MIXRAT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 503193 +#2m Humidity mixing ratio +'MIXRAT_2M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503195 +#relative humidity over ice +'RH_ICE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } + +#paramId: 503196 +#Gradient Richardson number +'RI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 17 ; + } + +#paramId: 503197 +#Showalter index +'SI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 13 ; + } + +#paramId: 503204 +#Surface lifted index +'SLI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503210 +#2m potential temperature +'PT_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503211 +#Dew point temperature +'TD' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 503212 +#2m equivalentTemperature +'THETAE_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503213 +#2m virtual potential temperature +'THETA_V_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503214 +#Temperature at cloud top +'TTOP_CON' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503215 +#Wet bulb temperature +'TW' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503216 +#2m wet bulb temperature +'TW_2M' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503219 +#Universal thermal climate index with direct incident short wave radiation +'UTCI_SUN' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 503220 +#u-component of geostrophic wind +'U_G' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 41 ; + } + +#paramId: 503221 +#v-component of geostrophic wind +'V_G' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 42 ; + } + +#paramId: 503229 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 +'ASH1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503230 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 +'ASH2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503231 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 +'ASH3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503232 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 +'ASH4' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 4 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503233 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 +'ASH5' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 5 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503234 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 +'ASH6' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 6 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503235 +#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) +'ASHA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503236 +#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) +'ASHB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503237 +#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) +'ASHC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503238 +#Modal prognostic specific number concentration of volcanic ash particles (fine mode) +'ASHA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503239 +#Modal prognostic specific number concentration of volcanic ash particles (medium mode) +'ASHB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503240 +#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) +'ASHC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503241 +#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) +'DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503242 +#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) +'DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503243 +#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) +'DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503244 +#Modal prognostic specific number concentration of mineral dust particles (fine mode) +'DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503245 +#Modal prognostic specific number concentration of mineral dust particles (medium mode) +'DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503246 +#Modal prognostic specific number concentration of mineral dust particles (coarsemode) +'DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503247 +#Modal prognostic mass mixing ratio of sea salt particles (fine mode) +'SEASA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503248 +#Modal prognostic mass mixing ratio of sea salt particles (medium mode) +'SEASB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503249 +#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) +'SEASC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503250 +#Modal prognostic specific number concentration of sea salt particles (fine mode) +'SEASA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503251 +#Modal prognostic specific number concentration of sea salt particles (medium mode) +'SEASB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503252 +#Modal prognostic specific number concentration of sea salt particles (coarse mode) +'SEASC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503253 +#Cs137 - wet deposition +'Cs-137w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30172 ; + } + +#paramId: 503254 +#Prognostic specific activity concentration of Iodine 131 aerosol +'I_131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30141 ; + } + +#paramId: 503255 +#Te132 - total (wet + dry) deposition +'Te-132t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30129 ; + } + +#paramId: 503256 +#Prognostic specific activity concentration of Zirconium 95 +'Zr_95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30079 ; + } + +#paramId: 503257 +#Prognostic specific activity concentration of Xenon 133 +'Xe_133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30161 ; + } + +#paramId: 503258 +#Prognostic specific activity concentration of Iodine 131 elementary gaseous +'I_131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30138 ; + } + +#paramId: 503259 +#Prognostic specific activity concentration of Iodine 131 organic bounded +'I_131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30139 ; + } + +#paramId: 503260 +#Prognostic specific activity concentration of Barium 140 +'Ba_140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30175 ; + } + +#paramId: 503261 +#Prognostic specific activity concentration of Ruthenium 103 +'Ru_103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30102 ; + } + +#paramId: 503262 +#Diagnostic total mass concentration of volcanic ash +'ASH_TOTAL_MC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 0 ; + constituentType = 62025 ; + } + +#paramId: 503263 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 +'ASH_MAX_TOTAL_MC_SFC_200' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 46500 ; + constituentType = 62025 ; + } + +#paramId: 503265 +#Diagnostic total column of mass concentration of volcanic ash +'ASH_TOTAL_MC_VI' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + constituentType = 62025 ; + } + +#paramId: 503266 +#Diagnostic height of model layer with maximal total mass concentration of volcanic ash +'ASH_HML_MAX' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 62 ; + constituentType = 62025 ; + } + +#paramId: 503267 +#Diagnostic volcanic ash optical depth +'AOD_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62025 ; + } + +#paramId: 503268 +#Diagnostic mineral dust optical depth +'AOD_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62001 ; + } + +#paramId: 503269 +#Diagnostic sea salt optical depth +'AOD_SEAS' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62008 ; + } + +#paramId: 503270 +#Diagnostic vmaximum activity concentration of radionuclides in a layer +'RADIONUC_MAX_AC_LAYER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 15 ; + } + +#paramId: 503273 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 +'ASH_MAX_TOTAL_MC_200_350' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 46500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 24000 ; + constituentType = 62025 ; + } + +#paramId: 503274 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 +'ASH_MAX_TOTAL_MC_SFC_100' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 70000 ; + constituentType = 62025 ; + } + +#paramId: 503275 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 +'ASH_MAX_TOTAL_MC_350_550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 24000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 9100 ; + constituentType = 62025 ; + } + +#paramId: 503276 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 +'ASH_MAX_TOTAL_MC_100_245' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 70000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 38500 ; + constituentType = 62025 ; + } + +#paramId: 503277 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 +'ASH_MAX_TOTAL_MC_245_390' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 38500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 20000 ; + constituentType = 62025 ; + } + +#paramId: 503278 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 +'ASH_MAX_TOTAL_MC_390_530' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 20000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10000 ; + constituentType = 62025 ; + } + +#paramId: 503279 +#Diagnostic maximum total mass concentration of volcanic ash in a layer +'ASH_MAX_TOTAL_MC_LAYER' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + constituentType = 62025 ; + } + +#paramId: 503280 +#Aerosol optical depth +'AEROSOL_OPTICAL_DEPTH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + } + +#paramId: 503293 +#Large Scale Rain Difference +'RAIN_GSP_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503294 +#Large Scale Snowfall water Equivalent Difference +'SNOW_GSP_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503295 +#Convective Rain Difference +'RAIN_CON_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503296 +#Convective Snowfall Water Equivalent Difference +'SNOW_CON_D' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503303 +#Total precipitation rate +'TOT_PR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } + +#paramId: 503304 +#Horizontal moisture convergence +'MCONV' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } + +#paramId: 503305 +#TOA downward solar radiation +'SODT_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 503306 +#Surface upward thermal radiation +'THUS_RAD' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503307 +#Surface upward thermal radiation +'ATHU_S' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503308 +#Specific mass of liquid water coating on hail +'QH_LIQ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 110 ; + } + +#paramId: 503309 +#Specific mass of liquid water coating on graupel +'QG_LIQ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 113 ; + } + +#paramId: 503310 +#Specific mass of liquid water coating on snow +'QS_LIQ' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 116 ; + } + +#paramId: 503311 +#Specific number concentration of rain +'NCRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 100 ; + } + +#paramId: 503312 +#Number density of rain +'NDRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 104 ; + } + +#paramId: 503313 +#Specific number concentration of snow +'NCSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 101 ; + } + +#paramId: 503314 +#Specific number concentration of graupel +'NCGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 102 ; + } + +#paramId: 503315 +#Specific number concentration of hail +'NCHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 103 ; + } + +#paramId: 503316 +#Number density of snow +'NDSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 105 ; + } + +#paramId: 503317 +#Number density of graupel +'NDGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 106 ; + } + +#paramId: 503318 +#Number density of hail +'NDHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 107 ; + } + +#paramId: 503319 +#Mass density of rain +'DENR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 96 ; + } + +#paramId: 503320 +#Mass density of snow +'DENS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 97 ; + } + +#paramId: 503321 +#Mass density of graupel +'DENG' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 98 ; + } + +#paramId: 503322 +#Mass density of cloud droplets +'DENC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 38 ; + } + +#paramId: 503323 +#Mass density of cloud ice +'DENI' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 39 ; + } + +#paramId: 503324 +#Mass density of hail +'DENH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 99 ; + } + +#paramId: 503326 +#Diagnostic total column of activity concentration of radionuclides +'RADIONUC_AC_VI' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503327 +#Base for given threshold of mass density for volcanic ash cloud +'HBAS_ASH_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62025 ; + } + +#paramId: 503328 +#Base for given threshold of mass density for mineral dust cloud +'HBAS_DUST_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62001 ; + } + +#paramId: 503330 +#Top for given threshold of mass density for volcanic ash cloud +'HTOP_ASH_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62025 ; + } + +#paramId: 503331 +#Top for given threshold of mass density for mineral dust cloud +'HTOP_DUST_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62001 ; + } + +#paramId: 503332 +#Top for given threshold of air concentration of radionuclides +'HTOP_RADIONUC_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 24 ; + } + +#paramId: 503333 +#Emission rate of dust for mode 2 +'EMISS_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503334 +#Emission rate of dust for mode 3 +'EMISS_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503335 +#Emission rate of dust for mode 1 +'EMISS_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503336 +#Accumulated dust Emission for mode 2 +'ACCEMISS_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503337 +#Accumulated dust Emission for mode 1 +'ACCEMISS_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503338 +#Accumulated dust Emission for mode 3 +'ACCEMISS_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503340 +#Base for given threshold of air concentration of radionuclides +'HBAS_RADIONUC_CLD' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 23 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'UH_MAX' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 15 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'TCOND10_MX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 26315 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'TCOND_MAX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'DBZCMP_OBS' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 8 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'DBZCMP_SIM' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'DBZ_CTMAX' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503350 +#relative vorticity +'RELV' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503352 +#2m Temperature, restricted to land +'T_2M_L' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503353 +#2m Dew Point Temperature, restricted to land +'TD_2M_L' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503354 +#2m Relative Humidity, restricted to land +'RELHUM_2M_L' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503357 +#Maximum 10m wind speed without gust +'VABSMX_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503360 +#Birch (betula) pollen concentration +'BETU' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62101 ; + } + +#paramId: 503362 +#Fraction of land occupied by birch (betula) +'BETUfr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503368 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) +'BETUrprec' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62101 ; + } + +#paramId: 503375 +#Alder (alnus) pollen concentration +'ALNU' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62100 ; + } + +#paramId: 503376 +#Fraction of land occupied by alder (alnus) +'ALNUfr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503382 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) +'ALNUrprec' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62100 ; + } + +#paramId: 503390 +#Grasses (poaceae) pollen concentration +'POAC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62300 ; + } + +#paramId: 503391 +#Fraction of land occupied by grasses (poaceae) +'POACfr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503397 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) +'POACrprec' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62300 ; + } + +#paramId: 503405 +#ragweed (ambrosia) pollen concentration +'AMBR' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62200 ; + } + +#paramId: 503406 +#Fraction of land occupied by ragweed (ambrosia) +'AMBRfr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503412 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) +'AMBRrprec' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62200 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'ECHOTOP' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'ECHOTOPinM' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503423 +#Maximum horizontal moisture convergence track (over given time interval and column) +'MCNV_CTMAX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'ACCDRYDEPO_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'ACCDRYDEPO_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'ACCDRYDEPO_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'ACCWETDEPO_GSP_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'ACCWETDEPO_GSP_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'ACCWETDEPO_GSP_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'ACCWETDEPO_CON_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'ACCWETDEPO_CON_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'ACCWETDEPO_CON_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'ACCSEDIM_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'ACCSEDIM_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'ACCSEDIM_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'SAT_BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'CEIL_BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'SAT_BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'CEIL_BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'T_2M_FILTBIAS' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Cs-137t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Cs_137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'ACs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'ACCCs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Kr_85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Kr-85t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'AKr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'ACCKr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Sr_90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'ASr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'ACCSr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Sr-90t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'I-131at' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'AI-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'ACCI-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'ACo-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'ACCCo-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Co_60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Co-60w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Co-60t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Ru-103t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'ARu-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'ACCRu-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Te_132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'ATe-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'ACCTe-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Zr-95t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'AZr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'ACCZr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'Tr-2t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Tr_2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'ATr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'ACCTr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'AXe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'ACCXe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Xe-133t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'I-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'I-131d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'AI-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'ACCI-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'I_131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'I-131w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'I-131t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'AI-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'ACCI-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'I-131gt' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'AI-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'ACCI-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'I-131ot' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Ba-140t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'ABa-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'ACCBa-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Ru-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Ru-106t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Ru_106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Ru-106d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Ru-106w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'ARu-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'ACCRu-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Co-60d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Co-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Kr-85mw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Kr-85mt' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Kr_85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Kr-85md' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'AKr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'ACCKr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Kr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'BETUsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'ALNUsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'POACsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'AMBRsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'LFD_TOT' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'LFD_TOT_AV' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'SOHR_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'THHR_RAD' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'ALHFL_BS' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'ALHFL_PL' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500097 +#Stomatal resistance +'RSTOM' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } + +#paramId: 500109 +#Vertical integral of divergence of total water content - accumulation +'TDIV_HUM' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500110 +#Sub-grid scale cloud water +'QC_RAD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } + +#paramId: 500111 +#Sub-grid scale cloud ice +'QI_RAD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } + +#paramId: 500115 +#Cloud base above MSL, shallow convection +'HBAS_SC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500116 +#Cloud top above MSL, shallow convection +'HTOP_SC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500117 +#Specific cloud liquid water content, convective cloud +'CLW_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } + +#paramId: 500120 +#Base index (vertical level) of main convective cloud +'BAS_CON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500121 +#Top index (vertical level) of main convective cloud +'TOP_CON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'DT_CON' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'DQV_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + } + +#paramId: 500124 +#Zonal wind tendency due to convection +'DU_CON' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + } + +#paramId: 500125 +#Meridional wind tendency due to convection +'DV_CON' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'HTOP_DC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'SNOWLMT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'DQC_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + } + +#paramId: 500130 +#Tendency of specific cloud ice content due to convection +'DQI_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'Q_SEDIM' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipitation +'DT_GSP' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'DQV_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + } + +#paramId: 500142 +#Tendency of specific cloud liquid water content due to grid scale precipitation +'DQC_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'FRESHSNW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } + +#paramId: 500144 +#Tendency of specific cloud ice content due to grid scale precipitation +'DQI_GSP' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + } + +#paramId: 500148 +#Pressure perturbation +'PP' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500149 +#Supercell detection index 1 (rot. up- and downdrafts) +'SDI_1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } + +#paramId: 500150 +#Supercell detection index 2 (only rot. updrafts) +'SDI_2' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'CAPE_MU' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'CIN_MU' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'CAPE_ML' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'CIN_ML' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'TKETENS' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } + +#paramId: 500157 +#Kinetic energy +'KE' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + } + +#paramId: 500176 +#Solution of 2-d Helmholtz equations - needed for restart +'DTTDIV' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 192 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'SOTR_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + } + +#paramId: 500178 +#Sum of contributions to evaporation +'EVATRA_SUM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500179 +#Total transpiration from all soil layers +'TRA_SUM' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500180 +#Total forcing at soil surface +'TOTFORCE_S' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500181 +#Residuum of soil moisture +'RESID_WSO' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500182 +#Mass flux at convective cloud base +'MFLX_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500184 +#Moisture convergence for Kuo-type closure +'QCVG_CON' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + } + +#paramId: 500195 +#Analysis error (standard deviation), geopotential (gpm) +'ANA_ERR_FI' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500196 +#Analysis error (standard deviation), u-comp. of wind +'ANA_ERR_U' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500197 +#Analysis error (standard deviation), v-comp. of wind +'ANA_ERR_V' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500198 +#Zonal wind tendency due to sub-grid scale oro. +'DU_SSO' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + } + +#paramId: 500199 +#Meridional wind tendency due to sub-grid scale oro. +'DV_SSO' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + } + +#paramId: 500204 +#Surface emissivity +'EMIS_RAD' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } + +#paramId: 500205 +#Soil type (1...9, local soilType.table) +'SOILTYP' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 500208 +#Height of ozone maximum (climatological) +'HMO3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + } + +#paramId: 500209 +#Vertically integrated ozone content (climatological) +'VIO3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + } + +#paramId: 500221 +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'NDVI_MRAT' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500222 +#Ratio of NDVI (normalized differential vegetation index) to annual maximum +'NDVIRATIO' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500233 +#Tendency of specific humidity +'DQVDT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + } + +#paramId: 500234 +#Water vapor flux +'QVSFLX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } + +#paramId: 500235 +#Coriolis parameter +'FC' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + } + +#paramId: 500239 +#Delay of the GPS signal through the (total) atmos. +'ZTD' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + } + +#paramId: 500240 +#Delay of the GPS signal through wet atmos. +'ZWD' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + } + +#paramId: 500241 +#Delay of the GPS signal through dry atmos. +'ZHD' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + } + +#paramId: 500279 +#U-momentum flux due to SSO-effects (mean over forecast time) +'AUSTR_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500280 +#U-momentum flux due to SSO-effects +'USTR_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500281 +#V-momentum flux due to SSO-effects (mean over forecast time) +'AVSTR_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500282 +#V-momentum flux due to SSO-effects +'VSTR_SSO' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'VABS' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 197 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) +'CL_TYP' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 194 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'CCL_NN' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 24 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'ADVORG' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 0 ; + } + +#paramId: 500294 +#Geostrophic thickness advection +'ADVOR' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 1 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'ADRTG' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 2 ; + } + +#paramId: 500296 +#Winddivergenz +'WDIV' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 3 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'QVN' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 4 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'IPV' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'UP' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 5 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'VP' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 6 ; + } + +#paramId: 500306 +#Modified cloud depth for media +'CLDEPTH' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + } + +#paramId: 500307 +#Modified cloud cover for media +'CLCT_MOD' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + } + +#paramId: 500322 +#RMS of difference "first guess - analysis" of kinetic energy +'EFA-KE' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500323 +#RMS of difference "initialized analysis - analysis" of kinetic energy +'EIA-KE' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'W_SKRR_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'U_SKRRH_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'W_SKRR_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 14 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'U_SKRRH_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'W_DRR_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'U_DRRER_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'E_DR_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 32 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'W_SFL_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 69 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'W_SF_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 70 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'U_SFSK_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 71 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'W_SFL_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 72 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'W_SF_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 74 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'U_SFSK_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'E_SF_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'W_WND_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 132 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'W_STM_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 134 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'W_STMSW_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 136 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'U_ORKAR_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 137 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'U_ORK_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 138 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'E_ORK_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 139 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'W_GLEIS_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 191 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'W_GEW_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'W_GEWSK_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'U_GEWSW_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'W_SVW_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 212 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'U_SVWSK_12' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 213 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'W_FR_01' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 232 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'W_FRSTR_06' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 236 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'UVI_CS_COR' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 195 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'UVI_B_CS' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 196 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'UVI_CL_COR' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 197 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'UVI_MAX_H' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500472 +#Type of convection (0..4) +'C_TYPE' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 201 ; + } + +#paramId: 500473 +#perceived temperature +'PT1M' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 1 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'SUL_PROB' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 3 ; + } + +#paramId: 500479 +#value of isolation of clothes +'CLO' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 2 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'ASWDIR_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'ASWDIFD_S' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500503 +#Icing Base (hft) - Icing Degree Composit +'PIDC_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Icing Degree Composit +'PIDC_MAX_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Icing Degree Composit +'PIDC_MAX_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500506 +#Icing Top (hft) - Icing Degree Composit +'PIDC_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'PIDC_VERT_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'PIDC_MAX_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500509 +#Icing Base (hft) - Icing Scenario Composit +'PISC_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'PISC_SIG_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'PISC_SIG_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500512 +#Icing Top (hft) - Icing Scenario Composit +'PISC_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'PISC_VERT_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'PISC_SIG_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500515 +#Icing Base (hft) - Icing Degree Composit +'DIDC_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Icing Degree Composit +'DIDC_MAX_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Icing Degree Composit +'DIDC_MAX_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500518 +#Icing Top (hft) - Icing Degree Composit +'DIDC_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'DIDC_VERT_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'DIDC_MAX_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500521 +#Icing Base (hft) - Icing Scenario Composit +'DISC_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'DISC_SIG_BASE_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'DISC_SIG_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500524 +#Icing Top (hft) - Icing Scenario Composit +'DISC_TOP_HFT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'DISC_VERT_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'DISC_SIG_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500527 +#Icing Degree Code (1=light,2=moderate,3=severe) +'PID_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500528 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'PIS_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500529 +#Icing Degree Code (1=light,2=moderate,3=severe) +'DID_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500530 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'DIS_CODE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'WW_0-9' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 209 ; + } + +#paramId: 500538 +#cloud type +'CL_TYPE_SAT' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500540 +#cloud top temperature +'CL_TOP_TEMP' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } + +#paramId: 500541 +#Relative vorticity, u-component +'VORTIC_U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 198 ; + } + +#paramId: 500542 +#Relative vorticity, v-component +'VORTIC_V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 199 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'PVP' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 23 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'VORG' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 7 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'FORCOMEGA' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 8 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'QVX' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 9 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'QVY' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 10 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'DIVGEO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 11 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'QVNGEO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 12 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'QVSGEO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 13 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'DIVQNGEO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 14 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'DIVQSGEO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 15 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'FRONTO' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 16 ; + } + +#paramId: 500562 +#Divergenz +'DIVQ' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 17 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'QVS' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 18 ; + } + +#paramId: 500564 +#Divergenz Qn +'DIVQN' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 19 ; + } + +#paramId: 500565 +#Divergenz Qs +'DIVQS' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 20 ; + } + +#paramId: 500566 +#Frontogenesis function +'FRONTOF' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 21 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'CATIX' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 22 ; + } + +#paramId: 500570 +#Dry convection top index +'TOP_DCON' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 202 ; + } + +#paramId: 500572 +#Tidal tendencies +'TIDAL' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'SST_IC' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500575 +#3 hour pressure change +'PPP' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500577 +#Variance of soil moisture content +'WVAR' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500578 +#Covariance of soil moisture content +'WCOV' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'EDP' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 216 ; + } + +#paramId: 500586 +#Ellrod Index +'ELD' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 217 ; + } + +#paramId: 500591 +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation +'RR_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 209 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500620 +#Prob Gewitter +'TS' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'TSX' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'TSXX' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500623 +#Prob Dauerregen +'RA25' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'RA40' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'RA70' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'BLSN6' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 7 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'BLSN8' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500628 +#Prob Glaette +'FZ' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 9 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'FZRA' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 10 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500630 +#Prob Glatteis +'FZRAX' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'FG' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 12 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500632 +#Prob Tauwetter +'TAU' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 13 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'TAUX' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 14 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500634 +#Wake-production of TKE due to sub-grid scale orography +'DTKE_SSO' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 220 ; + } + +#paramId: 500635 +#Shear-production of TKE due to separated horizontal shear modes +'DTKE_HSH' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 221 ; + } + +#paramId: 500636 +#Buoyancy-production of TKE due to sub-grid scale convection +'DTKE_CON' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 219 ; + } + +#paramId: 500637 +#Production of TKE +'DTKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 218 ; + } + +#paramId: 500638 +#Atmospheric resistance +'ATM_RSTC' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 200 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'HTOP_THERM' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 197 ; + } + +#paramId: 500640 +#Mass concentration of dust (minimum mode) +'VSOILA' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 33 ; + } + +#paramId: 500643 +#Mass concentration of dust (medium mode) +'VSOILB' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 34 ; + } + +#paramId: 500644 +#Mass concentration of dust (maximum mode) +'VSOILC' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 35 ; + } + +#paramId: 500645 +#Number concentration of dust (minimum mode) +'VSOILA0' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 72 ; + } + +#paramId: 500646 +#Number concentration of dust (medium mode) +'VSOILB0' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 73 ; + } + +#paramId: 500647 +#Number concentration of dust (maximum mode) +'VSOILC0' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 74 ; + } + +#paramId: 500648 +#Mass concentration of dust (sum of all modes) +'VSOILS' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 251 ; + } + +#paramId: 500649 +#Number concentration of dust (sum of all modes) +'VSOILS0' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'DUMMY_1' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'DUMMY_2' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'DUMMY_3' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'DUMMY_4' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'DUMMY_5' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'DUMMY_6' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'DUMMY_7' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'DUMMY_8' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'DUMMY_9' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'DUMMY_10' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'DUMMY_11' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'DUMMY_12' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'DUMMY_13' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'DUMMY_14' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'DUMMY_15' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'DUMMY_16' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'DUMMY_17' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'DUMMY_18' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'DUMMY_19' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'DUMMY_20' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'DUMMY_21' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'DUMMY_22' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'DUMMY_23' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'DUMMY_24' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'DUMMY_25' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'DUMMY_26' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'DUMMY_27' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'DUMMY_28' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'DUMMY_29' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'DUMMY_30' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'DUMMY_31' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'DUMMY_32' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'DUMMY_33' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'DUMMY_34' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'DUMMY_35' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'DUMMY_36' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'DUMMY_37' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'DUMMY_38' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'DUMMY_39' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'DUMMY_40' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'DUMMY_41' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'DUMMY_42' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'DUMMY_43' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'DUMMY_44' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'DUMMY_45' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'DUMMY_46' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'DUMMY_47' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'DUMMY_48' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'DUMMY_49' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'DUMMY_50' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'DUMMY_51' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'DUMMY_52' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'DUMMY_53' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'DUMMY_54' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'DUMMY_55' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'DUMMY_56' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'DUMMY_57' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'DUMMY_58' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'DUMMY_59' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'DUMMY_60' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'DUMMY_61' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'DUMMY_62' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'DUMMY_63' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'DUMMY_64' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'DUMMY_65' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'DUMMY_66' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'DUMMY_67' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'DUMMY_68' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'DUMMY_69' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'DUMMY_70' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'DUMMY_71' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'DUMMY_72' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'DUMMY_73' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'DUMMY_74' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'DUMMY_75' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'DUMMY_76' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'DUMMY_77' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'DUMMY_78' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'DUMMY_79' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'DUMMY_80' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'DUMMY_81' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'DUMMY_82' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'DUMMY_83' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'DUMMY_84' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'DUMMY_85' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'DUMMY_86' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'DUMMY_87' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'DUMMY_88' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'DUMMY_89' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'DUMMY_90' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'DUMMY_91' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'DUMMY_92' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'DUMMY_93' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'DUMMY_94' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'DUMMY_95' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'DUMMY_96' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'DUMMY_97' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'DUMMY_98' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'DUMMY_99' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'DUMMY_100' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'DUMMY_101' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'DUMMY_102' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'DUMMY_103' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'DUMMY_104' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'DUMMY_105' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'DUMMY_106' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'DUMMY_107' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'DUMMY_108' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'DUMMY_109' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'DUMMY_110' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'DUMMY_111' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'DUMMY_112' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'DUMMY_113' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'DUMMY_114' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'DUMMY_115' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'DUMMY_116' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'DUMMY_117' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'DUMMY_118' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'DUMMY_119' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'DUMMY_120' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'DUMMY_121' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'DUMMY_122' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'DUMMY_123' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'DUMMY_124' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'DUMMY_125' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'DUMMY_126' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'DUMMY_127' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'DUMMY_128' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'DUMMY_143' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'DUMMY_144' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'DUMMY_145' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'DUMMY_146' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'DUMMY_147' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'DUMMY_148' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'DUMMY_149' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'DUMMY_150' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'DUMMY_151' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'DUMMY_152' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'DUMMY_153' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'DUMMY_154' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'DUMMY_155' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'DUMMY_156' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'DUMMY_157' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'DUMMY_158' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'DUMMY_159' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'DUMMY_160' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'DUMMY_161' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'DUMMY_162' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'DUMMY_163' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'DUMMY_164' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'DUMMY_165' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'DUMMY_166' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'DUMMY_167' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'DUMMY_168' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'DUMMY_169' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'DUMMY_170' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'DUMMY_171' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'DUMMY_172' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'DUMMY_173' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'DUMMY_174' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'DUMMY_175' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'DUMMY_176' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'DUMMY_177' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'DUMMY_178' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'DUMMY_179' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'DUMMY_180' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'DUMMY_181' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'DUMMY_182' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'DUMMY_183' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'DUMMY_184' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'DUMMY_185' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'DUMMY_186' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'DUMMY_187' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'DUMMY_188' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'DUMMY_189' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'DUMMY_190' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'DUMMY_191' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'DUMMY_192' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'DUMMY_193' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'DUMMY_194' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'DUMMY_195' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'DUMMY_196' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'DUMMY_197' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'DUMMY_198' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'DUMMY_199' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'DUMMY_200' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'DUMMY_201' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'DUMMY_202' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'DUMMY_203' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'DUMMY_204' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'DUMMY_205' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'DUMMY_206' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'DUMMY_207' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'DUMMY_208' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'DUMMY_209' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'DUMMY_210' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'DUMMY_211' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'DUMMY_212' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'DUMMY_213' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'DUMMY_214' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'DUMMY_215' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'DUMMY_216' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'DUMMY_217' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'DUMMY_218' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'DUMMY_219' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'DUMMY_220' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'DUMMY_221' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'DUMMY_222' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'DUMMY_223' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'DUMMY_224' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'DUMMY_225' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'DUMMY_226' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'DUMMY_227' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'DUMMY_228' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'DUMMY_229' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'DUMMY_230' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'DUMMY_231' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'DUMMY_232' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'DUMMY_233' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'DUMMY_234' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'DUMMY_235' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'DUMMY_236' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'DUMMY_237' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'DUMMY_238' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'DUMMY_239' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'DUMMY_240' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'DUMMY_241' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'DUMMY_242' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'DUMMY_243' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'DUMMY_244' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'DUMMY_245' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'DUMMY_246' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'DUMMY_247' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'DUMMY_248' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'DUMMY_249' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'DUMMY_250' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'DUMMY_251' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'DUMMY_252' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'DUMMY_253' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'DUMMY_254' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 254 ; + } + +#paramId: 502332 +#Liquid water content in snow - multi level +'WLIQ_SNOW_M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 210 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux at surface +'SWDIRS_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502344 +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) +'ALB_UV12' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502345 +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) +'ALB_UV' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + } + +#paramId: 502346 +#Albedo - near infrared - time average (0.7 - 5.0 m-6) +'ALB_NI12' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502347 +#Albedo - near infrared (0.7 - 5.0 m-6) +'ALB_NI' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + } + +#paramId: 502352 +#Eddy Dissipation Rate Total Col-Max. Upper FIR +'EDP_MAX_UFIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 224 ; + } + +#paramId: 502353 +#Eddy Dissipation Rate Total Col-Max. Lower UIR +'EDP_MAX_LUIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 225 ; + } + +#paramId: 502354 +#Eddy Dissipation Rate Total Col-Max. Upper UIR +'EDP_MAX_UUIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 226 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'EDR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 227 ; + } + +#paramId: 503050 +#Radar precipitation rate +'RAD_PRECIP' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 195 ; + } + +#paramId: 503052 +#Radar quality information +'RAD_QUAL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 196 ; + } + +#paramId: 503053 +#Radar blacklist +'RAD_BL' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 197 ; + } + +#paramId: 503054 +#Height of radar beam above ground +'RAD_HEIGHT' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 198 ; + } + +#paramId: 503055 +#Specific humidity (diagnostic) +'QV_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 211 ; + } + +#paramId: 503056 +#Specific cloud water content (diagnostic) +'QC_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 212 ; + } + +#paramId: 503057 +#Specific cloud ice content (diagnostic) +'QI_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 213 ; + } + +#paramId: 503058 +#Total column integrated water vapour (diagnostic) +'TQV_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 214 ; + } + +#paramId: 503059 +#Total column integrated cloud water (diagnostic) +'TQC_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 215 ; + } + +#paramId: 503060 +#Total column integrated cloud ice (diagnostic) +'TQI_DIA' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 216 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'SWDIFDS_RAD' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'RADAR_RQ' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503069 +#precipitation,BRD +'RADAR_RS' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'RADAR_RE' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503071 +#hail flag,BRD +'RADAR_RH' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503072 +#snow_rate,BRD +'RADAR_FS' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503073 +#snow_rate,qualified,BRD +'RADAR_FQ' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503074 +#Area weights for regular lon-lat grid +'AW' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 193 ; + } + +#paramId: 503078 +#Relative humidity over mixed phase +'RH_MIX_EC' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 220 ; + } + +#paramId: 503079 +#Soil moisture index (multilayers) +'SMI' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 503096 +#Peak frequency (interpolated) +'PFRQ' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } + +#paramId: 503115 +#Specific number concentration of rain +'NCRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 228 ; + } + +#paramId: 503116 +#Number density of rain +'NDRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 229 ; + } + +#paramId: 503117 +#Specific number concentration of snow +'NCSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 217 ; + } + +#paramId: 503118 +#Specific number concentration of graupel +'NCGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 218 ; + } + +#paramId: 503119 +#Specific number concentration of hail +'NCHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 219 ; + } + +#paramId: 503120 +#Number density of snow +'NDSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 221 ; + } + +#paramId: 503121 +#Number density of graupel +'NDGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 222 ; + } + +#paramId: 503122 +#Number density of hail +'NDHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 223 ; + } + +#paramId: 503123 +#Mass density of rain +'DENR' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 224 ; + } + +#paramId: 503124 +#Mass density of snow +'DENS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 225 ; + } + +#paramId: 503125 +#Mass density of graupel +'DENG' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 226 ; + } + +#paramId: 503126 +#Mass density of cloud droplets +'DENC' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 203 ; + } + +#paramId: 503127 +#Mass density of cloud ice +'DENI' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 204 ; + } + +#paramId: 503128 +#Mass density of hail +'DENH' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 227 ; + } + +#paramId: 503137 +#Eddy Dissipation Rate Total Col-Max. Lower FIR +'EDP_MAX_LFIR' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 228 ; + } + +#paramId: 503142 +#Lightning Potential Index +'LPI' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + } + +#paramId: 503143 +#Rain drain from snowpack - accumulation +'RD_SNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 230 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503146 +#Height of -10 degree Celsius isotherm +'HMIN10CL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 503147 +# probability density function of EDP for turbulence greater well defined threshold and model grid box +'EDPP' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 229 ; + } + +#paramId: 503148 +#Adedokun 2 Index +'ADEDO2' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 503149 +#Downward direct short wave radiation flux at surface on horizontal plane (time average) +'ASWDIR_SH' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503150 +#Gauss Boaga Coordinates West to East,East Sector +'BOAGAE_WE' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 194 ; + } + +#paramId: 503151 +#Gauss Boaga Coordinates South to North,East Sector +'BOAGAE_SN' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 195 ; + } + +#paramId: 503152 +#Gauss Boaga Coordinates West to East, West Sector +'BOAGAW_WE' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 196 ; + } + +#paramId: 503153 +#Gauss Boaga Coordinates South to North, West Sector +'BOAGAW_SN' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 197 ; + } + +#paramId: 503156 +#Ellrod and Knapp turbulence index1 +'CAT_TI1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 230 ; + } + +#paramId: 503157 +#Ellrod and Knapp turbulence index2 +'CAT_TI2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 231 ; + } + +#paramId: 503158 +#Deformation of horizontal wind field +'WDEF_H' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 29 ; + } + +#paramId: 503159 +#Divergence trend (scaled divergence tendency needed for CAT_DVI) +'CAT_DVT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 232 ; + } + +#paramId: 503160 +#Divergence modified turbulence index (Ellrod and Knox) +'CAT_DTI' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 233 ; + } + +#paramId: 503161 +#Cloud ice ratio qi/(qc+qi) +'CLI_RATIO' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 231 ; + } + +#paramId: 503162 +#Percentage of convective precipitation (from total prec) +'CONV_PERCENT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 232 ; + } + +#paramId: 503163 +#Deep convection index +'DCI' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503164 +#Wind direction in azimuth class +'DDCLASS' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 503165 +#Wind direction in azimuth class +'DDCLASS_10M' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503167 +#Possible astronomical maximum of sunshine +'DURSUN_M' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503168 +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) +'DURSUN_R' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503171 +#Enthalpy +'ENTH' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } + +#paramId: 503172 +#2m Enthalpy +'ENTH_2M' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503175 +#Downward short wave radiation flux at surface on horizontal plane (time average) +'ASOD_SH' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503176 +#Downward short wave radiation flux at surface on vertical surface facing east (time average) +'ASOD_SvE' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 202 ; + } + +#paramId: 503177 +#Downward short wave radiation flux at surface on vertical surface facing north (time average) +'ASOD_SvN' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 203 ; + } + +#paramId: 503178 +#Downward short wave radiation flux at surface on vertical surface facing south (time average) +'ASOD_SvS' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 204 ; + } + +#paramId: 503179 +#Downward short wave radiation flux at surface on vertical surface facing west (time average) +'ASOD_SvW' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 205 ; + } + +#paramId: 503180 +#Along-wind Lagrangian time scale (Hanna) +'LAGTIMEU' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 503181 +#Cross-wind Lagrangian time scale (Hanna) +'LAGTIMEV' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503182 +#Vertical Lagrangian time scale (Hanna) +'LAGTIMEW' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503183 +#Zonal Lagrangian time scale (direct) (Hanna) +'LAGTIMEX' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503184 +#Meridional Lagrangian time scale (direct) (Hanna) +'LAGTIMEY' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503185 +#Vertical Lagrangian time scale (direct) (Hanna) +'LAGTIMEZ' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503187 +#Height of level of free convection of mixed (mean) layer parcel +'LFC_ML' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 194 ; + } + +#paramId: 503188 +#Luminosity +'LUM' = { + discipline = 215 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 503189 +#Downward long-wave radiation flux at surface based on T_2M (time average) +'ATHD_S_T2M' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503190 +#Downward long-wave radiation flux at surface based on T_G (time average) +'ATHD_S_TG' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503191 +#Downward long-wave radiation flux at surface based on T_SO(0) (time average) +'ATHD_S_TS' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503194 +#Pressure difference between cloud base and cloud top +'PDIFF_CON' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503198 +#Along-wind velocity fluctuation (Hanna) +'SIGMAU' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503199 +#Cross-wind velocity fluctuation (Hanna) +'SIGMAV' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 503200 +#Vertical velocity fluctuation (Hanna) +'SIGMAW' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 503201 +#Zonal velocity fluctuation (Hanna) +'SIGMAX' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 503202 +#Meridional velocity fluctuation (Hanna) +'SIGMAY' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 503203 +#Vertical velocity fluctuation (Hanna) +'SIGMAZ' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503205 +#Percentage of precipitation in snow (from total prec.) +'SNOW_PERCENT' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 233 ; + } + +#paramId: 503206 +#Thunderstorm index for Switzerland (night time) +'SWISS00' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 503207 +#Thunderstorm index for Switzerland (day time) +'SWISS12' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 503208 +#Swiss coordinate (south-north) +'SWISS_SN' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 198 ; + } + +#paramId: 503209 +#Swiss coordinate (west-east) +'SWISS_WE' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 199 ; + } + +#paramId: 503217 +#2m temperature, corrected in presence of snow +'T_2M_SNOWC' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503218 +#Universal thermal climate index without direct incident short wave radiation +'UTCI_SHADOW' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } + +#paramId: 503222 +#Relative geostrophic vorticity +'RELV_G' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 26 ; + } + +#paramId: 503223 +#Relative geostrophic vorticity advection +'RELV_ADV_G' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 27 ; + } + +#paramId: 503226 +#Wind divergence (3D) +'WDIV_3D' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 28 ; + } + +#paramId: 503227 +#Mean vertical wind shear for specified layer or layer-mean vertical wind shear +'WSHEAR_INT' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 201 ; + } + +#paramId: 503228 +#Norm of (vertical) wind shear vector between two levels +'WSHEAR_DIFF' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 202 ; + } + +#paramId: 503282 +#Diagnostic total column of activity concentration of radionuclides +'RADIONUC_AC_VI' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503283 +#Liquid water potential temperature variance +'THLTHLCOV' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 0 ; + } + +#paramId: 503284 +#Total water specific humidity variance +'QTQTCOV' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 1 ; + } + +#paramId: 503285 +#Liquid water potential temperature - total water specific humidity covariance +'THLQTCOV' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 2 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'FR_PAVED' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'AHF' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } + +#paramId: 503292 +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +'ALB_SEAICE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 234 ; + } + +#paramId: 503299 +#Sky-view-factor +'SKYVIEW' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 0 ; + } + +#paramId: 503300 +#Horizon angle - topography +'HORIZON' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 1 ; + } + +#paramId: 503301 +#Slope aspect - topography +'SLO_ASP' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 3 ; + } + +#paramId: 503302 +#Slope angle - topography +'SLO_ANG' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 2 ; + } + +#paramId: 503339 +#Threshold friction velocity +'USTAR_THRES' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 203 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'VORW_CTMAX' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'W_CTMAX' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'LPI_MAX' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503351 +#mean radiation temperature of an environment assumed black body related to standing human +'T_MRT' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 4 ; + } + +#paramId: 503355 +#Maximum 10m dynamical gust +'VGUST_DYN_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503356 +#Maximum 10m convective gust +'VGUST_CON_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503358 +#Standard deviation of saturation deficit +'RCLD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 234 ; + } + +#paramId: 503359 +#Evaporation of plants (integrated since "nightly reset") +'EVAP_PL' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } + +#paramId: 503363 +#Number of birch (betula) pollen in the reservoir (previous timestep) +'BETUreso' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62101 ; + } + +#paramId: 503364 +#Number of birch (betula) pollen released into the reservoir (new) +'BETUresn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62101 ; + } + +#paramId: 503365 +#Sum of released birch (betula) pollen into the reservoir (daily sum) +'BETUress' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62101 ; + } + +#paramId: 503366 +#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) +'BETUsdes' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62101 ; + } + +#paramId: 503367 +#Height correction for emission (decreasing emission with height) for birch (betula) +'BETUhcem' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503369 +#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen +'BETUctsum' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62101 ; + } + +#paramId: 503370 +#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) +'BETUtthrs' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503371 +#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) +'BETUtthre' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503372 +#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) +'BETUsaisa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62101 ; + } + +#paramId: 503373 +#Length of birch (betula) pollen season +'BETUsaisl' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62101 ; + } + +#paramId: 503374 +#Pollen number emission flux for birch (betula) +'BETUfe' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62101 ; + } + +#paramId: 503377 +#Number of alder (alnus) pollen in the reservoir (previous timestep) +'ALNUreso' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62100 ; + } + +#paramId: 503378 +#Number of alder (alnus) pollen released into the reservoir (new) +'ALNUresn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62100 ; + } + +#paramId: 503379 +#Sum of released alder (alnus) pollen into the reservoir (daily sum) +'ALNUress' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62100 ; + } + +#paramId: 503380 +#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) +'ALNUsdes' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62100 ; + } + +#paramId: 503381 +#Height correction for emission (decreasing emission with height) for alder (alnus) +'ALNUhcem' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503383 +#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen +'ALNUctsum' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62100 ; + } + +#paramId: 503384 +#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) +'ALNUtthrs' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503385 +#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) +'ALNUtthre' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503386 +#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) +'ALNUsaisn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62100 ; + } + +#paramId: 503387 +#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) +'ALNUsaisa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62100 ; + } + +#paramId: 503388 +#Length of alder (alnus) pollen season +'ALNUsaisl' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62100 ; + } + +#paramId: 503389 +#Pollen number emission flux for alder (alnus) +'ALNUfe' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62100 ; + } + +#paramId: 503392 +#Number of grasses (poaceae) pollen in the reservoir (previous timestep) +'POACreso' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62300 ; + } + +#paramId: 503393 +#Number of grasses (poaceae) pollen released into the reservoir (new) +'POACresn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62300 ; + } + +#paramId: 503394 +#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) +'POACress' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62300 ; + } + +#paramId: 503395 +#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) +'POACsdes' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62300 ; + } + +#paramId: 503396 +#Height correction for emission (decreasing emission with height) for grasses (poaceae) +'POAChcem' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503398 +#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen +'POACctsum' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62300 ; + } + +#paramId: 503399 +#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) +'POACtthrs' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503400 +#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) +'POACtthre' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503401 +#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) +'POACsaisn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62300 ; + } + +#paramId: 503402 +#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) +'POACsaisa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62300 ; + } + +#paramId: 503403 +#Length of grasses (poaceae) pollen season +'POACsaisl' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62300 ; + } + +#paramId: 503404 +#Pollen number emission flux for grasses (poaceae) +'POACfe' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62300 ; + } + +#paramId: 503407 +#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) +'AMBRreso' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62200 ; + } + +#paramId: 503408 +#Number of ragweed (ambrosia) pollen released into the reservoir (new) +'AMBRresn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62200 ; + } + +#paramId: 503409 +#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) +'AMBRress' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62200 ; + } + +#paramId: 503410 +#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) +'AMBRsdes' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62200 ; + } + +#paramId: 503411 +#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) +'AMBRhcem' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503413 +#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen +'AMBRctsum' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62200 ; + } + +#paramId: 503414 +#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) +'AMBRtthrs' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503415 +#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) +'AMBRtthre' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503416 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) +'AMBRsaisn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62200 ; + } + +#paramId: 503417 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) +'AMBRsaisa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62200 ; + } + +#paramId: 503418 +#Length of ragweed (ambrosia) pollen season +'AMBRsaisl' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62200 ; + } + +#paramId: 503419 +#Pollen number emission flux for ragweed (ambrosia) +'AMBRfe' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62200 ; + } + +#paramId: 503420 +#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) +'BETUsaisn' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62101 ; + } + +#paramId: 503424 +#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. +'RAPA_SPPT' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 235 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'SKC' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } + +#paramId: 503426 +#Maximum snow height during contiguous accumulating snow period (coupled with snow age) +'HSNOW_MAX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 235 ; + } + +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'WSHEAR_U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'WSHEAR_V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'ACCWETDEPO_RAIN_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'ACCWETDEPO_RAIN_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'ACCWETDEPO_RAIN_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'ACCDRYDEPO_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'ACCDRYDEPO_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'ACCDRYDEPO_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'ACCWETDEPO_GSP_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'ACCWETDEPO_GSP_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'ACCWETDEPO_GSP_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'ACCWETDEPO_RAIN_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'ACCWETDEPO_RAIN_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'ACCWETDEPO_RAIN_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'ACCSEDIM_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'ACCSEDIM_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'ACCSEDIM_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'ACCWETDEPO_CON_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'ACCWETDEPO_CON_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'ACCWETDEPO_CON_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'SWISS_LV95_SN' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'SWISS_LV95_WE' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'DHAIL_AV' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'DHAIL_SD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'DHAIL_MX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'W_UP_DUR' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'W_UP_MASK' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/eccodes/definitions/grib2/localConcepts/edzw/units.def b/eccodes/definitions/grib2/localConcepts/edzw/units.def new file mode 100755 index 00000000..54b9c993 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/edzw/units.def @@ -0,0 +1,13809 @@ +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 +#paramId: 500000 +#Pressure (S) (not reduced) +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500001 +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500002 +#Pressure Reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 500003 +#Pressure Tendency (S) +'Pa s-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500004 +#Geopotential (S) +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500005 +#Geopotential (full lev) +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 105 ; + typeOfFirstFixedSurface = 105 ; + } + +#paramId: 500006 +#Geopotential +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 500007 +#Geometric Height of the earths surface above sea level +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500008 +#Geometric Height of the layer limits above sea level(NN) +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + } + +#paramId: 500009 +#Total Column Integrated Ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } + +#paramId: 500010 +#Temperature (G) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500011 +#2m Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500012 +#2m Temperature (AV) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500013 +#Climat. temperature, 2m Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 9 ; + } + +#paramId: 500014 +#Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500015 +#Max 2m Temperature (i) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500016 +#Min 2m Temperature (i) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500017 +#2m Dew Point Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500018 +#2m Dew Point Temperature (AV) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500019 +#Radar spectra (1) +'Numeric' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500020 +#Wave spectra (1) +'Numeric' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500021 +#Wave spectra (2) +'Numeric' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500022 +#Wave spectra (3) +'Numeric' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 500023 +#Wind Direction (DD_10M) +'degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500024 +#Wind Direction (DD) +'degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500025 +#Wind speed (SP_10M) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500026 +#Wind speed (SP) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500027 +#U-Component of Wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500028 +#U-Component of Wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500029 +#V-Component of Wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500030 +#V-Component of Wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 500031 +#Vertical Velocity (Pressure) ( omega=dp/dt ) +'Pa s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500032 +#Vertical Velocity (Geometric) (w) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 500034 +#Specific Humidity (2m) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500035 +#Specific Humidity +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500036 +#2m Relative Humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 500037 +#Relative Humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500038 +#Total column integrated water vapour +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } + +#paramId: 500039 +#Evaporation (s) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500040 +#Total Column-Integrated Cloud Ice +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + } + +#paramId: 500041 +#Total Precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500042 +#Large-Scale Precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500043 +#Convective Precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500044 +#Snow depth water equivalent +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } + +#paramId: 500045 +#Snow Depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 500046 +#Total Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } + +#paramId: 500047 +#Convective Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } + +#paramId: 500048 +#Cloud Cover (800 hPa - Soil) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + } + +#paramId: 500049 +#Cloud Cover (400 - 800 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + } + +#paramId: 500050 +#Cloud Cover (0 - 400 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500051 +#Total Column-Integrated Cloud Water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + } + +#paramId: 500052 +#Convective Snowfall water equivalent (s) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500053 +#Large-Scale snowfall - water equivalent (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500054 +#Land Cover (1=land, 0=sea) +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 500055 +#Surface Roughness length Surface Roughness +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 500056 +#Albedo (in short-wave) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } + +#paramId: 500057 +#Albedo (in short-wave, average) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500058 +#Soil Temperature ( 36 cm depth, vv=0h) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 36 ; + } + +#paramId: 500059 +#Soil Temperature (41 cm depth) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 41 ; + } + +#paramId: 500060 +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 9 ; + } + +#paramId: 500061 +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500062 +#Column-integrated Soil Moisture +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 190 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + } + +#paramId: 500063 +#Column-integrated Soil Moisture (1) 0 -10 cm +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500064 +#Column-integrated Soil Moisture (2) 10-100cm +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 100 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500065 +#Plant cover +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500066 +#Water Runoff +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500068 +#Water Runoff (s) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500069 +#Sea Ice Cover ( 0= free, 1=cover) +'Proportion' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 500070 +#Sea Ice Thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 500071 +#Significant height of combined wind waves and swell +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500072 +#Direction of wind waves +'degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 500073 +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 500074 +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 500075 +#Direction of swell waves +'degree coming from' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500076 +#Significant height of swell waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500077 +#Mean period of swell waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 500078 +#Net short wave radiation flux (at the surface) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500079 +#Net short wave radiation flux (at the surface) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500080 +#Net long wave radiation flux (m) (at the surface) +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500081 +#Net long wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500082 +#Net short wave radiation flux (on the model top) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500083 +#Net short wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500084 +#Net long wave radiation flux (m) (on the model top) +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500085 +#Net long wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 500086 +#Latent Heat Net Flux (m) +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500087 +#Sensible Heat Net Flux (m) +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500088 +#Momentum Flux, U-Component (m) +'N m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500089 +#Momentum Flux, V-Component (m) +'N m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500090 +#Photosynthetically active radiation (m) (at the surface) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500091 +#Photosynthetically active radiation +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500098 +#Cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } + +#paramId: 500099 +#Non-Convective Cloud Cover, grid scale +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } + +#paramId: 500100 +#Cloud Mixing Ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } + +#paramId: 500101 +#Cloud Ice Mixing Ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 82 ; + } + +#paramId: 500102 +#Rain mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } + +#paramId: 500103 +#Snow mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } + +#paramId: 500104 +#Total column integrated rain +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } + +#paramId: 500105 +#Total column integrated snow +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } + +#paramId: 500106 +#Grauple +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } + +#paramId: 500107 +#Total column integrated grauple +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + } + +#paramId: 500108 +#Total Column integrated water (all components incl. precipitation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 78 ; + } + +#paramId: 500118 +#Height of Convective Cloud Base above msl +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500119 +#Height of Convective Cloud Top above msl +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500127 +#Height of 0 degree Celsius isotherm above msl +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500132 +#Large scale rain rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + } + +#paramId: 500133 +#Large scale snowfall rate water equivalent +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } + +#paramId: 500134 +#Large scale rain (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500135 +#Convective rain rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + } + +#paramId: 500136 +#Convective snowfall rate water equivalent +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } + +#paramId: 500137 +#Convective rain +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500138 +#rain amount, grid-scale plus convective +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500139 +#snow amount, grid-scale plus convective +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500145 +#Graupel (snow pellets) precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + } + +#paramId: 500146 +#Graupel (snow pellets) precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500147 +#Snow density +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } + +#paramId: 500155 +#Convective turbulent kinetic enery +'J kg-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 24 ; + } + +#paramId: 500158 +#Turbulent Kinetic Energy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } + +#paramId: 500159 +#Turbulent diffusioncoefficient for momentum +'m2 s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 31 ; + } + +#paramId: 500160 +#Turbulent diffusion coefficient for heat (and moisture) +'m2 s-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 500161 +#Turbulent transfer coefficient for impulse +'Numeric' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } + +#paramId: 500162 +#Turbulent transfer coefficient for heat (and Moisture) +'Numeric' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 500163 +#mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } + +#paramId: 500164 +#maximum Wind 10m +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 500166 +#Soil Temperature (multilayer model) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500167 +#Column-integrated Soil Moisture (multilayers) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500168 +#soil ice content (multilayers) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500169 +#Plant Canopy Surface Water +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500170 +#Snow temperature (top of snow) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 500171 +#Minimal Stomatal Resistance +'s m-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 500172 +#Sea Ice Temperature +'K' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 500173 +#Base reflectivity +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500174 +#Base reflectivity +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } + +#paramId: 500175 +#Base reflectivity (cmax) +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500183 +#Convective Available Potential Energy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } + +#paramId: 500185 +#Direction of combined wind waves and swell +'degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 500187 +#Peak period of total swell +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 500189 +#Peak period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 500190 +#Peak wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } + +#paramId: 500191 +#Mean period of combined wind waves and swell +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500192 +#Inverse mean wave frequency +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 500193 +#Mean zero-crossing wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500194 +#Wave directional width +'degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + } + +#paramId: 500200 +#Standard deviation of sub-grid scale orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } + +#paramId: 500201 +#Anisotropy of sub-gridscale orography +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } + +#paramId: 500202 +#Angle of sub-gridscale orography +'rad' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } + +#paramId: 500203 +#Slope of sub-gridscale orography +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } + +#paramId: 500206 +#Leaf area index +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } + +#paramId: 500207 +#root depth of vegetation +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 500210 +#Plant covering degree in the vegetation phase +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500211 +#Plant covering degree in the quiescent phas +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500212 +#Max Leaf area index +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500213 +#Min Leaf area index +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 3 ; + } + +#paramId: 500214 +#Orographie + Land-Meer-Verteilung +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 500217 +#evergreen forest +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 500218 +#deciduous forest +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 500219 +#normalized differential vegetation index +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500220 +#normalized differential vegetation index (NDVI) +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500223 +#Total sulfate aerosol +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62006 ; + } + +#paramId: 500224 +#Total sulfate aerosol (12M) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62006 ; + } + +#paramId: 500225 +#Total soil dust aerosol (climatology) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62001 ; + } + +#paramId: 500226 +#Total soil dust aerosol (climatology,12M) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62001 ; + } + +#paramId: 500227 +#Organic aerosol +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62010 ; + } + +#paramId: 500228 +#Organic aerosol (12M) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62010 ; + } + +#paramId: 500229 +#Black carbon aerosol +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62009 ; + } + +#paramId: 500230 +#Black carbon aerosol (12M) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62009 ; + } + +#paramId: 500231 +#Sea salt aerosol +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + constituentType = 62008 ; + } + +#paramId: 500232 +#Sea salt aerosol (12M) +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 62008 ; + } + +#paramId: 500236 +#geographical latitude +'deg N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } + +#paramId: 500237 +#geographical longitude +'deg E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } + +#paramId: 500238 +#Friction velocity +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } + +#paramId: 500242 +#Ozone Mixing Ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } + +#paramId: 500243 +#Air concentration of Ruthenium 103 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30102 ; + } + +#paramId: 500244 +#Ru103 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30102 ; + } + +#paramId: 500245 +#Ru103 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30102 ; + } + +#paramId: 500246 +#Air concentration of Strontium 90 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30067 ; + } + +#paramId: 500247 +#Sr90 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30067 ; + } + +#paramId: 500248 +#Sr90 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30067 ; + } + +#paramId: 500249 +#Air concentration of Iodine 131 aerosol +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30141 ; + } + +#paramId: 500250 +#I131a - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30141 ; + } + +#paramId: 500251 +#I131a - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30141 ; + } + +#paramId: 500252 +#Air concentration of Caesium 137 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30172 ; + } + +#paramId: 500253 +#Cs137 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30172 ; + } + +#paramId: 500255 +#Air concentration of Tellurium 132 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30129 ; + } + +#paramId: 500256 +#Te132 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30129 ; + } + +#paramId: 500257 +#Te132 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30129 ; + } + +#paramId: 500258 +#Air concentration of Zirconium 95 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30079 ; + } + +#paramId: 500259 +#Zr95 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30079 ; + } + +#paramId: 500260 +#Zr95 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30079 ; + } + +#paramId: 500261 +#Air concentration of Krypton 85 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30059 ; + } + +#paramId: 500262 +#Kr85 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30059 ; + } + +#paramId: 500263 +#Kr85 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30059 ; + } + +#paramId: 500264 +#TRACER - concentration +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30000 ; + } + +#paramId: 500265 +#TRACER - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30000 ; + } + +#paramId: 500266 +#TRACER - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30000 ; + } + +#paramId: 500267 +#Air concentration of Xenon 133 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30161 ; + } + +#paramId: 500268 +#Xe133 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30161 ; + } + +#paramId: 500269 +#Xe133 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30161 ; + } + +#paramId: 500270 +#Air concentration of Iodine 131 elementary gaseous +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30138 ; + } + +#paramId: 500271 +#I131g - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30138 ; + } + +#paramId: 500272 +#I131g - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30138 ; + } + +#paramId: 500273 +#Air concentration of Iodine 131 organic bounded +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30139 ; + } + +#paramId: 500274 +#I131o - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30139 ; + } + +#paramId: 500275 +#I131o - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30139 ; + } + +#paramId: 500276 +#Air concentration of Barium 140 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30175 ; + } + +#paramId: 500277 +#Ba140 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30175 ; + } + +#paramId: 500278 +#Ba140 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30175 ; + } + +#paramId: 500284 +#Gravity wave dissipation (vertical integral) +'W m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } + +#paramId: 500285 +#UV Index, clouded sky, maximum +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500286 +#Vertical speed shear +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } + +#paramId: 500287 +#storm relative helicity +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } + +#paramId: 500290 +#Hoehe der Konvektionsuntergrenze ueber Grund +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500292 +#weather interpretation (WMO) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 25 ; + } + +#paramId: 500301 +#Druck einer isentropen Flaeche +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500302 +#KO index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } + +#paramId: 500303 +#Aequivalentpotentielle Temperatur +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 500304 +#Ceiling +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } + +#paramId: 500305 +#Icing Grade (1=LGT,2=MOD,3=SEV) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } + +#paramId: 500308 +#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500309 +#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500310 +#Monthly Mean of RMS of difference FG-AN of u-component of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500311 +#Monthly Mean of RMS of difference IA-AN of u-component of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500312 +#Monthly Mean of RMS of difference FG-AN of v-component of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500313 +#Monthly Mean of RMS of difference IA-AN of v-component of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500314 +#Monthly Mean of RMS of difference FG-AN of geopotential +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500315 +#Monthly Mean of RMS of difference IA-AN of geopotential +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500316 +#Monthly Mean of RMS of difference FG-AN of relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500317 +#Monthly Mean of RMS of difference IA-AN of relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500318 +#Monthly Mean of RMS of difference FG-AN of temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500319 +#Monthly Mean of RMS of difference IA-AN of temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500320 +#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) +'Pa s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500321 +#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) +'Pa s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500324 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500325 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500326 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500327 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 52 ; + instrumentType = 205 ; + } + +#paramId: 500328 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500329 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500330 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500331 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 53 ; + instrumentType = 205 ; + } + +#paramId: 500332 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500333 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500334 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500335 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500336 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500337 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500338 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 86956 ; + } + +#paramId: 500339 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 331 ; + satelliteNumber = 54 ; + instrumentType = 205 ; + scaledValueOfCentralWaveNumber = 156250 ; + } + +#paramId: 500340 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500341 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500342 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500343 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500344 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500345 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500346 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500347 +#Synth. Sat. brightness temperature cloudy +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500348 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500349 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500350 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500351 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500352 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500353 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500354 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500355 +#Synth. Sat. brightness temperature clear sky +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500356 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500357 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500358 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500359 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500360 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500361 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500362 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500363 +#Synth. Sat. radiance cloudy +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500364 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500365 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 82644 ; + } + +#paramId: 500366 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500367 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500368 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500369 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500370 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500371 +#Synth. Sat. radiance clear sky +'W m sr m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500372 +#smoothed forecast, temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500373 +#smoothed forecast, maximum temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500374 +#smoothed forecast, minimum temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500375 +#smoothed forecast, dew point temp. +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500376 +#smoothed forecast, u comp. of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500377 +#smoothed forecast, v comp. of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500378 +#smoothed forecast, total precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500379 +#smoothed forecast, total cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500380 +#smoothed forecast, cloud cover low +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 800 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500381 +#smoothed forecast, cloud cover medium +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 400 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500382 +#smoothed forecast, cloud cover high +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500383 +#smoothed forecast, large-scale snowfall +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500384 +#smoothed forecast, soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500385 +#smoothed forecast, wind speed (gust) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; + } + +#paramId: 500386 +#calibrated forecast, total precipitation (Accumulation) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500387 +#calibrated forecast, large-scale snowfall +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500388 +#calibrated forecast, wind speed (gust) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 198 ; + } + +#paramId: 500389 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 2000000 ; + } + +#paramId: 500390 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 625000 ; + } + +#paramId: 500391 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1666666 ; + } + +#paramId: 500392 +#Obser. Sat. Meteosat sec. generation Albedo (scaled) +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 1250000 ; + } + +#paramId: 500393 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 92592 ; + } + +#paramId: 500394 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 83333 ; + } + +#paramId: 500395 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 74626 ; + } + +#paramId: 500396 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 256410 ; + } + +#paramId: 500397 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 114942 ; + } + +#paramId: 500398 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 103092 ; + } + +#paramId: 500399 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 161290 ; + } + +#paramId: 500400 +#Obser. Sat. Meteosat sec. generation brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + instrumentType = 207 ; + scaledValueOfCentralWaveNumber = 136986 ; + } + +#paramId: 500401 +#Total Precipitation Difference +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500419 +#Net short wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500420 +#Net long wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 8 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500421 +#Net short wave radiation flux (at the surface) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500422 +#Net long wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfGeneratingProcess = 1 ; + } + +#paramId: 500468 +#UV Index, clear sky, maximum +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500469 +#Total ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500474 +#wind chill factor +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 500475 +#Water temperature +'K' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } + +#paramId: 500477 +#Absolute Vorticity +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 500482 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500490 +#Water Fraction +'Proportion' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 500491 +#Lake depth +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500492 +#Wind fetch +'m' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 33 ; + } + +#paramId: 500493 +#Attenuation coefficient of water with respect to solar radiation +'m-1' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500494 +#Depth of thermally active layer of bottom sediment +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 164 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500495 +#Temperature at the lower boundary of the thermally active layer of bottom sediment +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 164 ; + } + +#paramId: 500496 +#Mean temperature of the water column +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500497 +#Mixed-layer temperature +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500498 +#Bottom temperature (temperature at the water-bottom sediment interface) +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500499 +#Mixed-layer depth +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 166 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500500 +#Shape factor with respect to the temperature profile in the thermocline +'Numeric' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + typeOfSecondFixedSurface = 162 ; + typeOfFirstFixedSurface = 166 ; + } + +#paramId: 500501 +#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 165 ; + } + +#paramId: 500502 +#Sediment thickness of the upper layer of bottom sediments +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfSecondFixedSurface = 165 ; + typeOfFirstFixedSurface = 162 ; + } + +#paramId: 500539 +#cloud top height +'m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 500543 +#vertical vorticity +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 500544 +#Potential vorticity +'K m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } + +#paramId: 500545 +#Density +'kg m-3' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 500546 +#Altimeter Settings +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 500547 +#Convective Precipitation (difference) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 500548 +#Soil moisture +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 500549 +#Soil moisture +'kg m-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } + +#paramId: 500568 +#Geopotential height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 500569 +#Relative Divergenz +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } + +#paramId: 500574 +#Logarithm of Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } + +#paramId: 500579 +#Soil Temperature (layer) +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500580 +#Soil Moisture Content (0-7 cm) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 7 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 500581 +#Soil Moisture Content (7-50 cm) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 2 ; + scaledValueOfSecondFixedSurface = 50 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 7 ; + } + +#paramId: 500584 +#Sunshine duration +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500588 +#Snow melt +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500590 +#ICAO Standard Atmosphere reference height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 500593 +#Global radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 500594 +#exner pressure +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } + +#paramId: 500595 +#normal wind component +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 34 ; + } + +#paramId: 500596 +#tangential wind component +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 35 ; + } + +#paramId: 500597 +#virtual potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 500598 +#Current Direction +'degree true' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 500599 +#Current Speed +'m s-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 500642 +#Lapse rate +'K m-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 500779 +#Effective radius of cloud water +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + +#paramId: 500905 +#Specific Humidity (S) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502307 +#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502308 +#Albedo - diffusive solar (0.3 - 5.0 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } + +#paramId: 502309 +#center latitude +'deg N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502310 +#center longitude +'deg E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 1 ; + } + +#paramId: 502311 +#edge midpoint latitude +'deg N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502312 +#edge midpoint longitude +'deg E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 3 ; + } + +#paramId: 502313 +#vertex latitude +'deg N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502314 +#vertex longitude +'deg E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + numberOfGridInReference = 2 ; + } + +#paramId: 502315 +#Number of cloud droplets per unit mass of air +'kg-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 28 ; + } + +#paramId: 502316 +#Number of cloud ice particles per unit mass of air +'kg-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 29 ; + } + +#paramId: 502317 +#Latent Heat Net Flux - instant - at surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502318 +#Sensible Heat Net Flux - instant - at surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502319 +#Latent Heat Net Flux - accumulated _ surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502320 +#Sensible Heat Net Flux - accumulated _ surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502321 +#Net short wave radiation flux - accumulated _ surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502322 +#Net long wave radiation flux - accumulated _ surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502323 +#Net long wave radiation flux - accumulated _ model top +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502327 +#Net short wave radiation flux - accumulated _ model top +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 502328 +#Snow temperature - multi level +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502329 +#Snow depth - multi level +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502330 +#Snow density in - multi level +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502331 +#Water equivalent of accumulated snoe depth in - multi level +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502333 +#salinity +'kg kg-1' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 502334 +#Stream function +'m2 s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 502335 +#Velocity potential +'m2 s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 502336 +#Skin temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502340 +#Snow cover +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } + +#paramId: 502341 +#Cloud Cover (0 - 400 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 40000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502342 +#Cloud Cover (400 - 800 hPa) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfSecondFixedSurface = 80000 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 40000 ; + } + +#paramId: 502343 +#Cloud Cover (800 hPa - Soil) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 80000 ; + } + +#paramId: 502348 +#Water Runoff (s) +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 502349 +#Water Runoff +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 1 ; + } + +#paramId: 502397 +#Virtual Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502424 +#Vertical u-component shear +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } + +#paramId: 502425 +#Vertical v-component shear +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } + +#paramId: 502693 +#Potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502700 +#Boundary layer dissipation +'W m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } + +#paramId: 502701 +#Sunshine duration +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502702 +#Brightness temperature +'K' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } + +#paramId: 502703 +#Heat index +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502705 +#Total column water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } + +#paramId: 502706 +#Large scale precipitation (non-convective) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502707 +#Snowfall rate water equivalent +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502708 +#Convective snow +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } + +#paramId: 502709 +#Large scale snow +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } + +#paramId: 502710 +#Snow age +'d' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } + +#paramId: 502711 +#Absolute humidity +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } + +#paramId: 502712 +#Precipitation type +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } + +#paramId: 502713 +#Integrated liquid water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } + +#paramId: 502714 +#Condensate +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } + +#paramId: 502715 +#Ice water mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } + +#paramId: 502717 +#Maximum relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } + +#paramId: 502718 +#Maximum absolute humidity +'kg kg-1m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } + +#paramId: 502719 +#Total snowfall +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } + +#paramId: 502720 +#Precipitable water category +'code table (4.2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } + +#paramId: 502721 +#Hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } + +#paramId: 502722 +#Categorical rain +'Code table 4.2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } + +#paramId: 502723 +#Categorical freezing rain +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } + +#paramId: 502724 +#Categorical ice pellets +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } + +#paramId: 502725 +#Categorical snow +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } + +#paramId: 502727 +#Percent frozen precipitation +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } + +#paramId: 502728 +#Potential evaporation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } + +#paramId: 502729 +#Potential evaporation rate +'W m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } + +#paramId: 502730 +#Rain fraction of total cloud water +'proportion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } + +#paramId: 502731 +#Rime factor +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } + +#paramId: 502732 +#Large scale water precipitation (non-convective) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } + +#paramId: 502733 +#Convective water precipitation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } + +#paramId: 502734 +#Total water precipitation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } + +#paramId: 502735 +#Total snow precipitation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } + +#paramId: 502737 +#Snow Fall water equivalent +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } + +#paramId: 502738 +#Convective snowfall rate +' m s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } + +#paramId: 502739 +#Large scale snowfall rate +'m s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } + +#paramId: 502740 +#Water equivalent of accumulated snow depth +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502741 +#Freezing rain precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } + +#paramId: 502742 +#Ice pellets precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } + +#paramId: 502743 +#Maximum wind speed +'ms-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } + +#paramId: 502744 +#u-component of wind (gust) +'ms-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } + +#paramId: 502745 +#v-component of wind (gust) +'ms-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } + +#paramId: 502746 +#Horizontal momentum flux +'N m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } + +#paramId: 502747 +#U-component storm motion +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } + +#paramId: 502748 +#V-component storm motion +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } + +#paramId: 502749 +#Thickness +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502751 +#Minimum dew point depression +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502752 +#Pressure altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502753 +#Density altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502754 +#5-wave geopotential height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502755 +#Zonal flux of gravity wave stress +'N m-2 ' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502756 +#Meridional flux of gravity wave stress +'N m-2 ' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 502757 +#Planetary boundary layer height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } + +#paramId: 502758 +#5-wave geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } + +#paramId: 502759 +#Net short-wave radiation flux (top of atmosphere) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502760 +#Downward short-wave radiation flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } + +#paramId: 502761 +#Net short-wave radiation flux, clear sky +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } + +#paramId: 502762 +#Downward UV radiation +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } + +#paramId: 502763 +#Net long wave radiation flux (surface) +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } + +#paramId: 502764 +#Net long wave radiation flux (top of atmosphere) +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } + +#paramId: 502765 +#Downward long-wave radiation flux +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } + +#paramId: 502766 +#Upward long-wave radiation flux +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } + +#paramId: 502767 +#Net long-wave radiation flux, clear sky +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } + +#paramId: 502768 +#Cloud Ice +'kg m-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } + +#paramId: 502769 +#Cloud water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } + +#paramId: 502770 +#Cloud amount +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } + +#paramId: 502771 +#Cloud type +'code table (4.2)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } + +#paramId: 502772 +#Thunderstorm maximum tops +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } + +#paramId: 502773 +#Thunderstorm coverage +'code table (4.2 )' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } + +#paramId: 502774 +#Cloud base +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } + +#paramId: 502775 +#Cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } + +#paramId: 502776 +#Cloud work function +'J kg-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } + +#paramId: 502777 +#Convective cloud efficiency +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } + +#paramId: 502778 +#Total condensate +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } + +#paramId: 502779 +#Total column-integrated cloud water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } + +#paramId: 502780 +#Total column-integrated cloud ice +'kg m-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } + +#paramId: 502781 +#Total column-integrated condensate +'kg m-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } + +#paramId: 502782 +#Ice fraction of total condensate +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } + +#paramId: 502783 +#Cloud ice mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } + +#paramId: 502785 +#K index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 502786 +#Total totals index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } + +#paramId: 502787 +#Sweat index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } + +#paramId: 502788 +#Energy helicity index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } + +#paramId: 502789 +#Surface lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } + +#paramId: 502790 +#Best (4-layer) lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } + +#paramId: 502791 +#Aerosol type +'code table (4.2)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } + +#paramId: 502792 +#Base spectrum width +'m s-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } + +#paramId: 502793 +#Base radial velocity +'m s-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } + +#paramId: 502794 +#Vertically-integrated liquid +'kg m-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } + +#paramId: 502795 +#Layer-maximum base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } + +#paramId: 502796 +#Precipitation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 502797 +#Air concentration of Caesium 137 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } + +#paramId: 502798 +#Air concentration of Iodine 131 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } + +#paramId: 502799 +#Air concentration of radioactive pollutant +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } + +#paramId: 502800 +#Ground deposition of Caesium 137 +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } + +#paramId: 502801 +#Ground deposition of Iodine 131 +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } + +#paramId: 502802 +#Ground deposition of radioactive pollutant +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } + +#paramId: 502843 +#Time-integrated air concentration of caesium pollutant +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } + +#paramId: 502844 +#Time-integrated air concentration of iodine pollutant +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } + +#paramId: 502845 +#Time-integrated air concentration of radioactive pollutant +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } + +#paramId: 502846 +#Volcanic ash +'table (4.2 Volc.ash)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } + +#paramId: 502847 +#Icing top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } + +#paramId: 502848 +#Icing base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } + +#paramId: 502849 +#Turbulence top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } + +#paramId: 502850 +#Turbulence base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } + +#paramId: 502851 +#Turbulence +'table (4.2 Turb.)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } + +#paramId: 502852 +#Planetary boundary layer regime +'table (4.2 P.b.l.r.)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } + +#paramId: 502853 +#Contrail intensity +'table (4.2 C. i.)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } + +#paramId: 502854 +#Contrail engine type +'table (4.2 C.e.t.)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } + +#paramId: 502855 +#Contrail top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } + +#paramId: 502856 +#Contrail base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } + +#paramId: 502857 +#Maximum snow albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } + +#paramId: 502858 +#Icing +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } + +#paramId: 502859 +#Horizontal extent of cumulonimbus (CB) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } + +#paramId: 502860 +#In-cloud turbulence +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } + +#paramId: 502861 +#Clear air turbulence (CAT) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } + +#paramId: 502862 +#Supercooled large droplet probability (see Note 4) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } + +#paramId: 502864 +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502865 +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'kg m-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } + +#paramId: 502866 +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'kg m-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } + +#paramId: 502867 +#Remotely sensed snow cover +'table 4.2 R.s.s.c.' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 502868 +#Elevation of snow covered terrain +'table 4.2 E.e.s.c.t.' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 502869 +#Snow water equivalent percent of normal +'%' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502870 +#Baseflow-groundwater runoff +'kg m-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502871 +#Storm surface runoff +'kg m-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502872 +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'kg m-2' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502873 +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502874 +#Probability of 0.01 inch of precipitation (POP) +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502875 +#Evapotranspiration +'kg-2 s-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 502876 +#Land use +'table (4.2 Land use)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } + +#paramId: 502877 +#Volumetric soil moisture content +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502878 +#Ground heat flux +'W m-2 ' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502879 +#Moisture availability +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502880 +#Exchange coefficient +'kg m-2 s-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 502881 +#Blackadar mixing length scale +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } + +#paramId: 502882 +#Canopy conductance +'m s-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } + +#paramId: 502883 +#Solar parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } + +#paramId: 502885 +#Soil moisture parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 502886 +#Humidity parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 502887 +#Column-integrated soil water +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 502888 +#Heat flux +'W m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 502889 +#Volumetric soil moisture +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } + +#paramId: 502890 +#Volumetric wilting point +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 502891 +#Upper layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502892 +#Upper layer soil moisture +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } + +#paramId: 502893 +#Lower layer soil moisture +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } + +#paramId: 502894 +#Bottom layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } + +#paramId: 502895 +#Liquid volumetric soil moisture (non-frozen) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } + +#paramId: 502896 +#Number of soil layers in root zone +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } + +#paramId: 502897 +#Transpiration stress-onset (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502898 +#Direct evaporation cease (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502899 +#Soil porosity +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502900 +#Liquid volumetric soil moisture (non-frozen) +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } + +#paramId: 502919 +#Volumetric transpiration stress-onset (soil moisture) +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } + +#paramId: 502920 +#Transpiration stress-onset (soil moisture) +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } + +#paramId: 502921 +#Volumetric direct evaporation cease (soil moisture) +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } + +#paramId: 502922 +#Direct evaporation cease (soil moisture) +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } + +#paramId: 502923 +#Soil porosity +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } + +#paramId: 502924 +#Volumetric saturation of soil moisture +'m3 m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } + +#paramId: 502926 +#Estimated precipitation +'kg m-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } + +#paramId: 502927 +#Instantaneous rain rate +'kg m-2 s-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } + +#paramId: 502928 +#Cloud top height quality indicator +'table 4.21C.t.h.q.i.' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502929 +#Estimated u component of wind +'m s-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 502930 +#Estimated v component of wind +'m s-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502931 +#Number of pixels used +'Numeric' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } + +#paramId: 502932 +#Solar zenith angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502933 +#Reflectance in 0.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } + +#paramId: 502934 +#Reflectance in 0.8 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502935 +#Reflectance in 1.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } + +#paramId: 502936 +#Reflectance in 3.9 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } + +#paramId: 502937 +#Atmospheric divergence +'s-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } + +#paramId: 502938 +#Primary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } + +#paramId: 502939 +#Primary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } + +#paramId: 502940 +#Secondary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } + +#paramId: 502941 +#Deviation of sea level from mea +'m' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } + +#paramId: 502942 +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } + +#paramId: 502943 +#Standard deviation of height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } + +#paramId: 502944 +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } + +#paramId: 502945 +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } + +#paramId: 502946 +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 502947 +#Radar spectra (2) +'DBZ_MAX' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } + +#paramId: 502948 +#Radar spectra (3) +'DBZ_MAX' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } + +#paramId: 502949 +#Parcel lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 502950 +#Temperature anomaly +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } + +#paramId: 502951 +#Pressure anomaly +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } + +#paramId: 502952 +#Geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } + +#paramId: 502953 +#Montgomery stream Function +'m2 s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 502954 +#Sigma coordinate vertical velocity +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 502955 +#Absolute divergence +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 502958 +#U-component of current +'m s-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 502959 +#V-component of current +'m s-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502960 +#Precipitable water +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } + +#paramId: 502961 +#Saturation deficit +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } + +#paramId: 502962 +#Precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } + +#paramId: 502963 +#Thunderstorm probability +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } + +#paramId: 502964 +#Convective precipitation (water) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } + +#paramId: 502965 +#Transient thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } + +#paramId: 502966 +#Main thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 502967 +#Main thermocline anomaly +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } + +#paramId: 502968 +#Best lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 502969 +#Soil moisture content +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } + +#paramId: 503011 +#Salinity +'kg kg-1' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } + +#paramId: 503012 +#Direction of ice drift +'Degree true' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503013 +#Speed of ice drift +'m s-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503014 +#U-component of ice drift +'m s-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503015 +#V-component of ice drift +'m s-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503016 +#Ice growth rate +'m s-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503017 +#Ice divergence +'s-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503019 +#Secondary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } + +#paramId: 503020 +#Net short-wave radiation flux (surface) +'J m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } + +#paramId: 503021 +#Radiance (with respect to wave number) +'W m-1 s-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } + +#paramId: 503022 +#Radiance (with respect to wave length) +'W m-1 s-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } + +#paramId: 503023 +#Convective inhibition +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } + +#paramId: 503024 +#Wind mixing energy +'J' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } + +#paramId: 503025 +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } + +#paramId: 503028 +#Wilting point +'kg m-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } + +#paramId: 503038 +#Snow phase change heat flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503039 +#Vapor pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } + +#paramId: 503047 +#Land use class fraction +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 36 ; + } + +#paramId: 503048 +#Saturation of soil moisture +'kg m-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } + +#paramId: 503062 +#Upward diffusive short wave radiation flux at surface ( mean over forecast time) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503063 +#Momentum Flux, U-Component (m) +'N m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503064 +#Momentum Flux, V-Component (m) +'N m-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503075 +#Geometric height of the earths surface above mean sea level at vertex point (ICON) +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + numberOfGridInReference = 2 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503076 +#Gravity wave dissipation +'W m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503080 +#Land use class +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 35 ; + } + +#paramId: 503081 +#Water depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } + +#paramId: 503082 +#Friction velocity +'m s-1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } + +#paramId: 503083 +#Coefficient of drag with waves +'Numeric' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } + +#paramId: 503084 +#Normalized wave stress +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } + +#paramId: 503085 +#Inverse mean frequency of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } + +#paramId: 503086 +#Mean zero-crossing period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 29 ; + } + +#paramId: 503087 +#Directional width of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 32 ; + } + +#paramId: 503088 +#Inverse mean frequency of total swell +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503089 +#Inverse mean zero crossing period of total swell +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + } + +#paramId: 503090 +#Directional width of total swell +'degree' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } + +#paramId: 503091 +#Goda peakedness parameter +'s-1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 45 ; + } + +#paramId: 503092 +#Spectral kurtosis +'' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 43 ; + } + +#paramId: 503093 +#Benjamin-Feir index +'' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 44 ; + } + +#paramId: 503094 +#Maximum individual wave height +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } + +#paramId: 503095 +#Maximum wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } + +#paramId: 503097 +#Meansquare slope +'' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } + +#paramId: 503106 +#Hail mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 71 ; + } + +#paramId: 503107 +#Hail +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 72 ; + } + +#paramId: 503108 +#Hail precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + } + +#paramId: 503109 +#Reflectivity of cloud droplets +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 9 ; + } + +#paramId: 503110 +#Reflectivity of cloud ice +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 10 ; + } + +#paramId: 503111 +#Reflectivity of snow +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 11 ; + } + +#paramId: 503112 +#Reflectivity of rain +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 12 ; + } + +#paramId: 503113 +#Reflectivity of graupel +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 13 ; + } + +#paramId: 503114 +#Reflectivity of hail +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 14 ; + } + +#paramId: 503130 +#Hail precipitation rate, accumulation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 73 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503132 +#Number density of cloud droplets +'m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 30 ; + } + +#paramId: 503133 +#Number density of cloud ice particles +'m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 31 ; + } + +#paramId: 503134 +#Downward long-wave radiation flux +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503135 +#Downward long-wave radiation flux avg +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503136 +#Downward long-wave radiation flux accum +'W m-2 ' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503145 +#2m absolute humidity +'M' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503154 +#Bulk Richardson number +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 16 ; + } + +#paramId: 503155 +#Cape of mixed (mean) layer parcel, ascent up to 3 km +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 3000 ; + } + +#paramId: 503166 +#Geostrophic wind direction +'' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 43 ; + } + +#paramId: 503169 +#Dewpoint depression +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } + +#paramId: 503170 +#2m dewpoint depression +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503173 +#Geostrophic wind speed +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 44 ; + } + +#paramId: 503174 +#Downward short wave radiation flux at surface (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503186 +#Height of lifting condensation level of mixed (mean) layer parcel +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 5 ; + } + +#paramId: 503192 +#Humidity mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } + +#paramId: 503193 +#2m Humidity mixing ratio +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503195 +#relative humidity over ice +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } + +#paramId: 503196 +#Gradient Richardson number +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 17 ; + } + +#paramId: 503197 +#Showalter index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 13 ; + } + +#paramId: 503204 +#Surface lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503210 +#2m potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503211 +#Dew point temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } + +#paramId: 503212 +#2m equivalentTemperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503213 +#2m virtual potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503214 +#Temperature at cloud top +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503215 +#Wet bulb temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } + +#paramId: 503216 +#2m wet bulb temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503219 +#Universal thermal climate index with direct incident short wave radiation +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } + +#paramId: 503220 +#u-component of geostrophic wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 41 ; + } + +#paramId: 503221 +#v-component of geostrophic wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 42 ; + } + +#paramId: 503229 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503230 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503231 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503232 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 4 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503233 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 5 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503234 +#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 6 ; + typeOfDistributionFunction = 1 ; + } + +#paramId: 503235 +#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503236 +#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503237 +#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503238 +#Modal prognostic specific number concentration of volcanic ash particles (fine mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503239 +#Modal prognostic specific number concentration of volcanic ash particles (medium mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503240 +#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62025 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503241 +#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503242 +#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503243 +#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503244 +#Modal prognostic specific number concentration of mineral dust particles (fine mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503245 +#Modal prognostic specific number concentration of mineral dust particles (medium mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503246 +#Modal prognostic specific number concentration of mineral dust particles (coarsemode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503247 +#Modal prognostic mass mixing ratio of sea salt particles (fine mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503248 +#Modal prognostic mass mixing ratio of sea salt particles (medium mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503249 +#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503250 +#Modal prognostic specific number concentration of sea salt particles (fine mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 1 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503251 +#Modal prognostic specific number concentration of sea salt particles (medium mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 2 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503252 +#Modal prognostic specific number concentration of sea salt particles (coarse mode) +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62008 ; + modeNumber = 3 ; + typeOfDistributionFunction = 7 ; + } + +#paramId: 503253 +#Cs137 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30172 ; + } + +#paramId: 503254 +#Prognostic specific activity concentration of Iodine 131 aerosol +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30141 ; + } + +#paramId: 503255 +#Te132 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30129 ; + } + +#paramId: 503256 +#Prognostic specific activity concentration of Zirconium 95 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30079 ; + } + +#paramId: 503257 +#Prognostic specific activity concentration of Xenon 133 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30161 ; + } + +#paramId: 503258 +#Prognostic specific activity concentration of Iodine 131 elementary gaseous +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30138 ; + } + +#paramId: 503259 +#Prognostic specific activity concentration of Iodine 131 organic bounded +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30139 ; + } + +#paramId: 503260 +#Prognostic specific activity concentration of Barium 140 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30175 ; + } + +#paramId: 503261 +#Prognostic specific activity concentration of Ruthenium 103 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30102 ; + } + +#paramId: 503262 +#Diagnostic total mass concentration of volcanic ash +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 0 ; + constituentType = 62025 ; + } + +#paramId: 503263 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 46500 ; + constituentType = 62025 ; + } + +#paramId: 503265 +#Diagnostic total column of mass concentration of volcanic ash +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 10 ; + constituentType = 62025 ; + } + +#paramId: 503266 +#Diagnostic height of model layer with maximal total mass concentration of volcanic ash +'m' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 62 ; + constituentType = 62025 ; + } + +#paramId: 503267 +#Diagnostic volcanic ash optical depth +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62025 ; + } + +#paramId: 503268 +#Diagnostic mineral dust optical depth +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62001 ; + } + +#paramId: 503269 +#Diagnostic sea salt optical depth +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + aerosolType = 62008 ; + } + +#paramId: 503270 +#Diagnostic vmaximum activity concentration of radionuclides in a layer +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 15 ; + } + +#paramId: 503273 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 46500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 24000 ; + constituentType = 62025 ; + } + +#paramId: 503274 +#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 101325 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 70000 ; + constituentType = 62025 ; + } + +#paramId: 503275 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 24000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 9100 ; + constituentType = 62025 ; + } + +#paramId: 503276 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 70000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 38500 ; + constituentType = 62025 ; + } + +#paramId: 503277 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 38500 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 20000 ; + constituentType = 62025 ; + } + +#paramId: 503278 +#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + typeOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 20000 ; + typeOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10000 ; + constituentType = 62025 ; + } + +#paramId: 503279 +#Diagnostic maximum total mass concentration of volcanic ash in a layer +'kg m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 61 ; + constituentType = 62025 ; + } + +#paramId: 503280 +#Aerosol optical depth +'Numeric' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + } + +#paramId: 503293 +#Large Scale Rain Difference +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503294 +#Large Scale Snowfall water Equivalent Difference +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503295 +#Convective Rain Difference +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 76 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503296 +#Convective Snowfall Water Equivalent Difference +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + typeOfStatisticalProcessing = 4 ; + } + +#paramId: 503303 +#Total precipitation rate +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } + +#paramId: 503304 +#Horizontal moisture convergence +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } + +#paramId: 503305 +#TOA downward solar radiation +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 8 ; + } + +#paramId: 503306 +#Surface upward thermal radiation +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503307 +#Surface upward thermal radiation +'W m-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503308 +#Specific mass of liquid water coating on hail +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 110 ; + } + +#paramId: 503309 +#Specific mass of liquid water coating on graupel +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 113 ; + } + +#paramId: 503310 +#Specific mass of liquid water coating on snow +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 116 ; + } + +#paramId: 503311 +#Specific number concentration of rain +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 100 ; + } + +#paramId: 503312 +#Number density of rain +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 104 ; + } + +#paramId: 503313 +#Specific number concentration of snow +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 101 ; + } + +#paramId: 503314 +#Specific number concentration of graupel +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 102 ; + } + +#paramId: 503315 +#Specific number concentration of hail +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 103 ; + } + +#paramId: 503316 +#Number density of snow +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 105 ; + } + +#paramId: 503317 +#Number density of graupel +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 106 ; + } + +#paramId: 503318 +#Number density of hail +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 107 ; + } + +#paramId: 503319 +#Mass density of rain +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 96 ; + } + +#paramId: 503320 +#Mass density of snow +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 97 ; + } + +#paramId: 503321 +#Mass density of graupel +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 98 ; + } + +#paramId: 503322 +#Mass density of cloud droplets +'kg m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 38 ; + } + +#paramId: 503323 +#Mass density of cloud ice +'kg m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 39 ; + } + +#paramId: 503324 +#Mass density of hail +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 99 ; + } + +#paramId: 503326 +#Diagnostic total column of activity concentration of radionuclides +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503327 +#Base for given threshold of mass density for volcanic ash cloud +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62025 ; + } + +#paramId: 503328 +#Base for given threshold of mass density for mineral dust cloud +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 21 ; + constituentType = 62001 ; + } + +#paramId: 503330 +#Top for given threshold of mass density for volcanic ash cloud +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62025 ; + } + +#paramId: 503331 +#Top for given threshold of mass density for mineral dust cloud +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 22 ; + constituentType = 62001 ; + } + +#paramId: 503332 +#Top for given threshold of air concentration of radionuclides +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 24 ; + } + +#paramId: 503333 +#Emission rate of dust for mode 2 +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503334 +#Emission rate of dust for mode 3 +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503335 +#Emission rate of dust for mode 1 +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503336 +#Accumulated dust Emission for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503337 +#Accumulated dust Emission for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503338 +#Accumulated dust Emission for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503340 +#Base for given threshold of air concentration of radionuclides +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 23 ; + } + +#paramId: 503341 +#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) +'m2 s-2' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 15 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503344 +#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 26315 ; + } + +#paramId: 503345 +#Maximum total-column integrated condensed water (over given time interval) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 81 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503346 +#Composite reflectivity - observation +'dBZ' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 8 ; + } + +#paramId: 503347 +#Composite reflectivity - forecast (simulation) +'dBZ' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } + +#paramId: 503349 +#Maximum reflectivity track (over given time interval and entire atmosphere) +'dBZ' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503350 +#relative vorticity +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503352 +#2m Temperature, restricted to land +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503353 +#2m Dew Point Temperature, restricted to land +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503354 +#2m Relative Humidity, restricted to land +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 181 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503357 +#Maximum 10m wind speed without gust +'ms-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503360 +#Birch (betula) pollen concentration +'m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62101 ; + } + +#paramId: 503362 +#Fraction of land occupied by birch (betula) +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503368 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) +'kgm-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62101 ; + } + +#paramId: 503375 +#Alder (alnus) pollen concentration +'m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62100 ; + } + +#paramId: 503376 +#Fraction of land occupied by alder (alnus) +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503382 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) +'kgm-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62100 ; + } + +#paramId: 503390 +#Grasses (poaceae) pollen concentration +'m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62300 ; + } + +#paramId: 503391 +#Fraction of land occupied by grasses (poaceae) +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503397 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) +'kgm-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62300 ; + } + +#paramId: 503405 +#ragweed (ambrosia) pollen concentration +'m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 59 ; + constituentType = 62200 ; + } + +#paramId: 503406 +#Fraction of land occupied by ragweed (ambrosia) +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503412 +#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) +'kgm-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + constituentType = 62200 ; + } + +#paramId: 503421 +#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503422 +#Echotop-height: largest height where radar reflectivity above a threshold is present +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 25 ; + } + +#paramId: 503423 +#Maximum horizontal moisture convergence track (over given time interval and column) +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'km-2 day-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'km-2 day-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500092 +#Solar radiation heating rate +'K s-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + } + +#paramId: 500093 +#Thermal radiation heating rate +'K s-1' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + } + +#paramId: 500094 +#Latent heat flux from bare soil +'W m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500095 +#Latent heat flux from plants +'W m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 500097 +#Stomatal resistance +'s m-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } + +#paramId: 500109 +#Vertical integral of divergence of total water content - accumulation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500110 +#Sub-grid scale cloud water +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } + +#paramId: 500111 +#Sub-grid scale cloud ice +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } + +#paramId: 500115 +#Cloud base above MSL, shallow convection +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500116 +#Cloud top above MSL, shallow convection +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500117 +#Specific cloud liquid water content, convective cloud +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } + +#paramId: 500120 +#Base index (vertical level) of main convective cloud +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500121 +#Top index (vertical level) of main convective cloud +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500122 +#Temperature tendency due to convection +'K s-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500123 +#Specific humidity tendency due to convection +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + } + +#paramId: 500124 +#Zonal wind tendency due to convection +'m s-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + } + +#paramId: 500125 +#Meridional wind tendency due to convection +'m s-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + } + +#paramId: 500126 +#Height of top of dry convection above MSL +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 500128 +#Height of snow fall limit above MSL +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 4 ; + } + +#paramId: 500129 +#Tendency of specific cloud liquid water content due to convection +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + } + +#paramId: 500130 +#Tendency of specific cloud ice content due to convection +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + } + +#paramId: 500131 +#Specific content of precipitation particles (needed for water loading) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + } + +#paramId: 500140 +#Temperature tendency due to grid scale precipitation +'K s-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } + +#paramId: 500141 +#Specific humidity tendency due to grid scale precipitation +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + } + +#paramId: 500142 +#Tendency of specific cloud liquid water content due to grid scale precipitation +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + } + +#paramId: 500143 +#Fresh snow factor (weighting function for albedo indicating freshness of snow) +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } + +#paramId: 500144 +#Tendency of specific cloud ice content due to grid scale precipitation +'kg kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + } + +#paramId: 500148 +#Pressure perturbation +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500149 +#Supercell detection index 1 (rot. up- and downdrafts) +'s-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } + +#paramId: 500150 +#Supercell detection index 2 (only rot. updrafts) +'s-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } + +#paramId: 500151 +#Convective Available Potential Energy, most unstable +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500152 +#Convective Inhibition, most unstable +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 193 ; + } + +#paramId: 500153 +#Convective Available Potential Energy, mean layer +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500154 +#Convective Inhibition, mean layer +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 192 ; + } + +#paramId: 500156 +#Tendency of turbulent kinetic energy +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } + +#paramId: 500157 +#Kinetic energy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + } + +#paramId: 500176 +#Solution of 2-d Helmholtz equations - needed for restart +'Numeric' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 192 ; + } + +#paramId: 500177 +#Effective transmissivity of solar radiation +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + } + +#paramId: 500178 +#Sum of contributions to evaporation +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500179 +#Total transpiration from all soil layers +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500180 +#Total forcing at soil surface +'W m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500181 +#Residuum of soil moisture +'kg m-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500182 +#Mass flux at convective cloud base +'kg m-2 s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500184 +#Moisture convergence for Kuo-type closure +'s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + } + +#paramId: 500195 +#Analysis error (standard deviation), geopotential (gpm) +'gpm' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500196 +#Analysis error (standard deviation), u-comp. of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500197 +#Analysis error (standard deviation), v-comp. of wind +'m s-1' = { + discipline = 0 ; + parameterCategory = 194 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 7 ; + } + +#paramId: 500198 +#Zonal wind tendency due to sub-grid scale oro. +'m s-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + } + +#paramId: 500199 +#Meridional wind tendency due to sub-grid scale oro. +'m s-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + } + +#paramId: 500204 +#Surface emissivity +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } + +#paramId: 500205 +#Soil type (1...9, local soilType.table) +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 500208 +#Height of ozone maximum (climatological) +'Pa' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + } + +#paramId: 500209 +#Vertically integrated ozone content (climatological) +'Pa(O3)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + } + +#paramId: 500221 +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500222 +#Ratio of NDVI (normalized differential vegetation index) to annual maximum +'Numeric' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500233 +#Tendency of specific humidity +'s-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + } + +#paramId: 500234 +#Water vapor flux +'s-1 m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } + +#paramId: 500235 +#Coriolis parameter +'s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + } + +#paramId: 500239 +#Delay of the GPS signal through the (total) atmos. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 192 ; + } + +#paramId: 500240 +#Delay of the GPS signal through wet atmos. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 193 ; + } + +#paramId: 500241 +#Delay of the GPS signal through dry atmos. +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 194 ; + } + +#paramId: 500279 +#U-momentum flux due to SSO-effects (mean over forecast time) +'N m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500280 +#U-momentum flux due to SSO-effects +'N m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } + +#paramId: 500281 +#V-momentum flux due to SSO-effects (mean over forecast time) +'N m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 500282 +#V-momentum flux due to SSO-effects +'N m-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } + +#paramId: 500288 +#Absolute vorticity advection +'s-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 197 ; + } + +#paramId: 500289 +#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 194 ; + } + +#paramId: 500291 +#Hoehe der Konvektionsuntergrenze ueber nn +'m' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 24 ; + typeOfSecondFixedSurface = 101 ; + typeOfFirstFixedSurface = 2 ; + } + +#paramId: 500293 +#geostrophische Vorticityadvektion +'s-2' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 0 ; + } + +#paramId: 500294 +#Geostrophic thickness advection +'m3 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 1 ; + } + +#paramId: 500295 +#Schichtdickenadvektion +'m3 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 2 ; + } + +#paramId: 500296 +#Winddivergenz +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 3 ; + } + +#paramId: 500297 +#Q-Vektor senkrecht zu den Isothermen +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 4 ; + } + +#paramId: 500298 +#Isentrope potentielle Vorticity +'K m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 107 ; + } + +#paramId: 500299 +#Wind X-Komponente auf isentropen Flaechen +'m s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 5 ; + } + +#paramId: 500300 +#Wind Y-Komponente auf isentropen Flaechen +'m s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 6 ; + } + +#paramId: 500306 +#Modified cloud depth for media +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + } + +#paramId: 500307 +#Modified cloud cover for media +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + } + +#paramId: 500322 +#RMS of difference "first guess - analysis" of kinetic energy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 201 ; + } + +#paramId: 500323 +#RMS of difference "initialized analysis - analysis" of kinetic energy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; + } + +#paramId: 500437 +#Probability of 1h total precipitation >= 10mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500438 +#Probability of 1h total precipitation >= 25mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500439 +#Probability of 6h total precipitation >= 20mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 14 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500440 +#Probability of 6h total precipitation >= 35mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 17 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500441 +#Probability of 12h total precipitation >= 25mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500442 +#Probability of 12h total precipitation >= 40mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500443 +#Probability of 12h total precipitation >= 70mm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 32 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500444 +#Probability of 6h accumulated snow >=0.5cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 69 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500445 +#Probability of 6h accumulated snow >= 5cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 70 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500446 +#Probability of 6h accumulated snow >= 10cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 71 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500447 +#Probability of 12h accumulated snow >=0.5cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 72 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500448 +#Probability of 12h accumulated snow >= 10cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 74 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500449 +#Probability of 12h accumulated snow >= 15cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 75 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500450 +#Probability of 12h accumulated snow >= 25cm +'kg m2' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 77 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500451 +#Probability of 1h maximum wind gust speed >= 14m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 132 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500452 +#Probability of 1h maximum wind gust speed >= 18m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 134 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500453 +#Probability of 1h maximum wind gust speed >= 25m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 136 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500454 +#Probability of 1h maximum wind gust speed >= 29m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 137 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500455 +#Probability of 1h maximum wind gust speed >= 33m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 138 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500456 +#Probability of 1h maximum wind gust speed >= 39m/s +'m s-1' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 139 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500457 +#Probability of black ice during 1h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 191 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500458 +#Probability of thunderstorm during 1h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500459 +#Probability of heavy thunderstorm during 1h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500460 +#Probability of severe thunderstorm during 1h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500461 +#Probability of snowdrift during 12h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 212 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500462 +#Probability of strong snowdrift during 12h +'Numeric' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 213 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500463 +#Probability of temperature < 0 deg C during 1h +'K' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 232 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500464 +#Probability of temperature <= -10 deg C during 6h +'K' = { + discipline = 0 ; + parameterCategory = 195 ; + parameterNumber = 236 ; + typeOfStatisticalProcessing = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500465 +#UV Index, clear sky; corrected for albedo, aerosol and altitude +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 195 ; + } + +#paramId: 500466 +#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 196 ; + } + +#paramId: 500467 +#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 197 ; + } + +#paramId: 500471 +#Time of maximum of UV Index, clouded +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 500472 +#Type of convection (0..4) +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 201 ; + } + +#paramId: 500473 +#perceived temperature +'K' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 1 ; + } + +#paramId: 500478 +#probability to perceive sultriness +'Numeric' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 3 ; + } + +#paramId: 500479 +#value of isolation of clothes +'Numeric' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 2 ; + } + +#paramId: 500480 +#Downward direct short wave radiation flux at surface (mean over forecast time) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500481 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 500503 +#Icing Base (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500504 +#Icing Max Base (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500505 +#Icing Max Top (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500506 +#Icing Top (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500507 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500508 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500509 +#Icing Base (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500510 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500511 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500512 +#Icing Top (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500513 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500514 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500515 +#Icing Base (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500516 +#Icing Max Base (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500517 +#Icing Max Top (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500518 +#Icing Top (hft) - Icing Degree Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500519 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500520 +#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500521 +#Icing Base (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500522 +#Icing Signifikant Base (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500523 +#Icing Signifikant Top (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500524 +#Icing Top (hft) - Icing Scenario Composit +'hft' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500525 +#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500526 +#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500527 +#Icing Degree Code (1=light,2=moderate,3=severe) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500528 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 2 ; + } + +#paramId: 500529 +#Icing Degree Code (1=light,2=moderate,3=severe) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500530 +#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + typeOfGeneratingProcess = 0 ; + } + +#paramId: 500531 +#current weather (symbol number: 0..9) +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 209 ; + } + +#paramId: 500538 +#cloud type +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500540 +#cloud top temperature +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } + +#paramId: 500541 +#Relative vorticity, u-component +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 198 ; + } + +#paramId: 500542 +#Relative vorticity, v-component +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 199 ; + } + +#paramId: 500550 +#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) +'K m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 23 ; + } + +#paramId: 500551 +#geostrophische Vorticity +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 7 ; + } + +#paramId: 500552 +#Forcing rechte Seite Omegagleichung +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 8 ; + } + +#paramId: 500553 +#Q-Vektor X-Komponente (geostrophisch) +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 9 ; + } + +#paramId: 500554 +#Q-Vektor Y-Komponente (geostrophisch) +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 10 ; + } + +#paramId: 500555 +#Divergenz Q (geostrophisch) +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 11 ; + } + +#paramId: 500556 +#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 12 ; + } + +#paramId: 500557 +#Q-Vektor parallel zu d. Isothermen (geostrophisch) +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 13 ; + } + +#paramId: 500558 +#Divergenz Qn geostrophisch +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 14 ; + } + +#paramId: 500559 +#Divergenz Qs geostrophisch +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 15 ; + } + +#paramId: 500560 +#Frontogenesefunktion +'K2 m-2 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 16 ; + } + +#paramId: 500562 +#Divergenz +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 17 ; + } + +#paramId: 500563 +#Q-Vektor parallel zu den Isothermen +'m2 kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 18 ; + } + +#paramId: 500564 +#Divergenz Qn +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 19 ; + } + +#paramId: 500565 +#Divergenz Qs +'m kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 20 ; + } + +#paramId: 500566 +#Frontogenesis function +'Km kg-1 s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 21 ; + } + +#paramId: 500567 +#Clear Air Turbulence Index +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 22 ; + } + +#paramId: 500570 +#Dry convection top index +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 202 ; + } + +#paramId: 500572 +#Tidal tendencies +'s2 m-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } + +#paramId: 500573 +#Sea surface temperature interpolated in time in C +'C' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } + +#paramId: 500575 +#3 hour pressure change +'Pa-3h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } + +#paramId: 500577 +#Variance of soil moisture content +'kg2 m-4' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500578 +#Covariance of soil moisture content +'kg2 m-4' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 6 ; + } + +#paramId: 500585 +#Eddy Dissipation Rate +'m2/3 s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 216 ; + } + +#paramId: 500586 +#Ellrod Index +'10-7 s-2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 217 ; + } + +#paramId: 500591 +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 209 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 500620 +#Prob Gewitter +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 1 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500621 +#Prob Starkes Gewitter +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500622 +#Prob Schweres Gewitter +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 3 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500623 +#Prob Dauerregen +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 4 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500624 +#Prob Ergiebiger Dauerregen +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 5 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500625 +#Prob Extrem ergiebiger Dauerregen +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 6 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500626 +#Prob Schneeverwehung +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 7 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500627 +#Prob Starke Schneeverwehung +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 8 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500628 +#Prob Glaette +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 9 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500629 +#Prob oertlich Glatteis +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 10 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500630 +#Prob Glatteis +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 11 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500631 +#Prob Nebel (ueberoertl. Sichtweite < 150 m) +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 12 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500632 +#Prob Tauwetter +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 13 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500633 +#Prob Starkes Tauwetter +'Numeric' = { + discipline = 0 ; + parameterCategory = 196 ; + parameterNumber = 14 ; + typeOfGeneratingProcess = 5 ; + } + +#paramId: 500634 +#Wake-production of TKE due to sub-grid scale orography +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 220 ; + } + +#paramId: 500635 +#Shear-production of TKE due to separated horizontal shear modes +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 221 ; + } + +#paramId: 500636 +#Buoyancy-production of TKE due to sub-grid scale convection +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 219 ; + } + +#paramId: 500637 +#Production of TKE +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 218 ; + } + +#paramId: 500638 +#Atmospheric resistance +'s m-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 200 ; + } + +#paramId: 500639 +#Height of thermals above MSL +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 197 ; + } + +#paramId: 500640 +#Mass concentration of dust (minimum mode) +'kg m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 33 ; + } + +#paramId: 500643 +#Mass concentration of dust (medium mode) +'kg m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 34 ; + } + +#paramId: 500644 +#Mass concentration of dust (maximum mode) +'kg m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 35 ; + } + +#paramId: 500645 +#Number concentration of dust (minimum mode) +'m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 72 ; + } + +#paramId: 500646 +#Number concentration of dust (medium mode) +'m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 73 ; + } + +#paramId: 500647 +#Number concentration of dust (maximum mode) +'m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 74 ; + } + +#paramId: 500648 +#Mass concentration of dust (sum of all modes) +'kg m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 251 ; + } + +#paramId: 500649 +#Number concentration of dust (sum of all modes) +'m-3' = { + discipline = 0 ; + parameterCategory = 197 ; + parameterNumber = 252 ; + } + +#paramId: 500650 +#DUMMY_1 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 1 ; + } + +#paramId: 500651 +#DUMMY_2 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 2 ; + } + +#paramId: 500652 +#DUMMY_3 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 3 ; + } + +#paramId: 500654 +#DUMMY_4 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 4 ; + } + +#paramId: 500655 +#DUMMY_5 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 5 ; + } + +#paramId: 500656 +#DUMMY_6 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 6 ; + } + +#paramId: 500657 +#DUMMY_7 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 7 ; + } + +#paramId: 500658 +#DUMMY_8 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 8 ; + } + +#paramId: 500659 +#DUMMY_9 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 9 ; + } + +#paramId: 500660 +#DUMMY_10 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 10 ; + } + +#paramId: 500661 +#DUMMY_11 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 11 ; + } + +#paramId: 500662 +#DUMMY_12 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 12 ; + } + +#paramId: 500663 +#DUMMY_13 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 13 ; + } + +#paramId: 500664 +#DUMMY_14 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 14 ; + } + +#paramId: 500665 +#DUMMY_15 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 15 ; + } + +#paramId: 500666 +#DUMMY_16 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 16 ; + } + +#paramId: 500667 +#DUMMY_17 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 17 ; + } + +#paramId: 500668 +#DUMMY_18 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 18 ; + } + +#paramId: 500669 +#DUMMY_19 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 19 ; + } + +#paramId: 500670 +#DUMMY_20 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 20 ; + } + +#paramId: 500671 +#DUMMY_21 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 21 ; + } + +#paramId: 500672 +#DUMMY_22 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 22 ; + } + +#paramId: 500673 +#DUMMY_23 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 23 ; + } + +#paramId: 500674 +#DUMMY_24 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 24 ; + } + +#paramId: 500675 +#DUMMY_25 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 25 ; + } + +#paramId: 500676 +#DUMMY_26 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 26 ; + } + +#paramId: 500677 +#DUMMY_27 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 27 ; + } + +#paramId: 500678 +#DUMMY_28 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 28 ; + } + +#paramId: 500679 +#DUMMY_29 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 29 ; + } + +#paramId: 500680 +#DUMMY_30 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 30 ; + } + +#paramId: 500681 +#DUMMY_31 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 31 ; + } + +#paramId: 500682 +#DUMMY_32 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 32 ; + } + +#paramId: 500683 +#DUMMY_33 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 33 ; + } + +#paramId: 500684 +#DUMMY_34 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 34 ; + } + +#paramId: 500685 +#DUMMY_35 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 35 ; + } + +#paramId: 500686 +#DUMMY_36 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 36 ; + } + +#paramId: 500687 +#DUMMY_37 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 37 ; + } + +#paramId: 500688 +#DUMMY_38 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 38 ; + } + +#paramId: 500689 +#DUMMY_39 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 39 ; + } + +#paramId: 500690 +#DUMMY_40 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 40 ; + } + +#paramId: 500691 +#DUMMY_41 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 41 ; + } + +#paramId: 500692 +#DUMMY_42 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 42 ; + } + +#paramId: 500693 +#DUMMY_43 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 43 ; + } + +#paramId: 500694 +#DUMMY_44 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 44 ; + } + +#paramId: 500695 +#DUMMY_45 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 45 ; + } + +#paramId: 500696 +#DUMMY_46 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 46 ; + } + +#paramId: 500697 +#DUMMY_47 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 47 ; + } + +#paramId: 500698 +#DUMMY_48 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 48 ; + } + +#paramId: 500699 +#DUMMY_49 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 49 ; + } + +#paramId: 500700 +#DUMMY_50 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 50 ; + } + +#paramId: 500701 +#DUMMY_51 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 51 ; + } + +#paramId: 500702 +#DUMMY_52 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 52 ; + } + +#paramId: 500703 +#DUMMY_53 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 53 ; + } + +#paramId: 500704 +#DUMMY_54 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 54 ; + } + +#paramId: 500705 +#DUMMY_55 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 55 ; + } + +#paramId: 500706 +#DUMMY_56 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 56 ; + } + +#paramId: 500707 +#DUMMY_57 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 57 ; + } + +#paramId: 500708 +#DUMMY_58 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 58 ; + } + +#paramId: 500709 +#DUMMY_59 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 59 ; + } + +#paramId: 500710 +#DUMMY_60 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 60 ; + } + +#paramId: 500711 +#DUMMY_61 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 61 ; + } + +#paramId: 500712 +#DUMMY_62 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 62 ; + } + +#paramId: 500713 +#DUMMY_63 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 63 ; + } + +#paramId: 500714 +#DUMMY_64 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 64 ; + } + +#paramId: 500715 +#DUMMY_65 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 65 ; + } + +#paramId: 500716 +#DUMMY_66 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 66 ; + } + +#paramId: 500717 +#DUMMY_67 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 67 ; + } + +#paramId: 500718 +#DUMMY_68 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 68 ; + } + +#paramId: 500719 +#DUMMY_69 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 69 ; + } + +#paramId: 500720 +#DUMMY_70 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 70 ; + } + +#paramId: 500721 +#DUMMY_71 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 71 ; + } + +#paramId: 500722 +#DUMMY_72 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 72 ; + } + +#paramId: 500723 +#DUMMY_73 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 73 ; + } + +#paramId: 500724 +#DUMMY_74 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 74 ; + } + +#paramId: 500725 +#DUMMY_75 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 75 ; + } + +#paramId: 500726 +#DUMMY_76 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 76 ; + } + +#paramId: 500727 +#DUMMY_77 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 77 ; + } + +#paramId: 500728 +#DUMMY_78 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 78 ; + } + +#paramId: 500729 +#DUMMY_79 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 79 ; + } + +#paramId: 500730 +#DUMMY_80 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 80 ; + } + +#paramId: 500731 +#DUMMY_81 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 81 ; + } + +#paramId: 500732 +#DUMMY_82 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 82 ; + } + +#paramId: 500733 +#DUMMY_83 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 83 ; + } + +#paramId: 500734 +#DUMMY_84 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 84 ; + } + +#paramId: 500735 +#DUMMY_85 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 85 ; + } + +#paramId: 500736 +#DUMMY_86 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 86 ; + } + +#paramId: 500737 +#DUMMY_87 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 87 ; + } + +#paramId: 500738 +#DUMMY_88 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 88 ; + } + +#paramId: 500739 +#DUMMY_89 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 89 ; + } + +#paramId: 500740 +#DUMMY_90 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 90 ; + } + +#paramId: 500741 +#DUMMY_91 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 91 ; + } + +#paramId: 500742 +#DUMMY_92 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 92 ; + } + +#paramId: 500743 +#DUMMY_93 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 93 ; + } + +#paramId: 500744 +#DUMMY_94 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 94 ; + } + +#paramId: 500745 +#DUMMY_95 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 95 ; + } + +#paramId: 500746 +#DUMMY_96 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 96 ; + } + +#paramId: 500747 +#DUMMY_97 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 97 ; + } + +#paramId: 500748 +#DUMMY_98 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 98 ; + } + +#paramId: 500749 +#DUMMY_99 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 99 ; + } + +#paramId: 500750 +#DUMMY_100 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 100 ; + } + +#paramId: 500751 +#DUMMY_101 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 101 ; + } + +#paramId: 500752 +#DUMMY_102 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 102 ; + } + +#paramId: 500753 +#DUMMY_103 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 103 ; + } + +#paramId: 500754 +#DUMMY_104 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 104 ; + } + +#paramId: 500755 +#DUMMY_105 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 105 ; + } + +#paramId: 500756 +#DUMMY_106 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 106 ; + } + +#paramId: 500757 +#DUMMY_107 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 107 ; + } + +#paramId: 500758 +#DUMMY_108 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 108 ; + } + +#paramId: 500759 +#DUMMY_109 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 109 ; + } + +#paramId: 500760 +#DUMMY_110 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 110 ; + } + +#paramId: 500761 +#DUMMY_111 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 111 ; + } + +#paramId: 500762 +#DUMMY_112 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 112 ; + } + +#paramId: 500763 +#DUMMY_113 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 113 ; + } + +#paramId: 500764 +#DUMMY_114 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 114 ; + } + +#paramId: 500765 +#DUMMY_115 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 115 ; + } + +#paramId: 500766 +#DUMMY_116 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 116 ; + } + +#paramId: 500767 +#DUMMY_117 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 117 ; + } + +#paramId: 500768 +#DUMMY_118 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 118 ; + } + +#paramId: 500769 +#DUMMY_119 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 119 ; + } + +#paramId: 500770 +#DUMMY_120 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 120 ; + } + +#paramId: 500771 +#DUMMY_121 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 121 ; + } + +#paramId: 500772 +#DUMMY_122 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 122 ; + } + +#paramId: 500773 +#DUMMY_123 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 123 ; + } + +#paramId: 500774 +#DUMMY_124 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 124 ; + } + +#paramId: 500775 +#DUMMY_125 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 125 ; + } + +#paramId: 500776 +#DUMMY_126 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 126 ; + } + +#paramId: 500777 +#DUMMY_127 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 127 ; + } + +#paramId: 500778 +#DUMMY_128 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 128 ; + } + +#paramId: 500793 +#DUMMY_143 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 143 ; + } + +#paramId: 500794 +#DUMMY_144 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 144 ; + } + +#paramId: 500795 +#DUMMY_145 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 145 ; + } + +#paramId: 500796 +#DUMMY_146 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 146 ; + } + +#paramId: 500797 +#DUMMY_147 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 147 ; + } + +#paramId: 500798 +#DUMMY_148 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 148 ; + } + +#paramId: 500799 +#DUMMY_149 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 149 ; + } + +#paramId: 500800 +#DUMMY_150 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 150 ; + } + +#paramId: 500801 +#DUMMY_151 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 151 ; + } + +#paramId: 500802 +#DUMMY_152 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 152 ; + } + +#paramId: 500803 +#DUMMY_153 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 153 ; + } + +#paramId: 500804 +#DUMMY_154 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 154 ; + } + +#paramId: 500805 +#DUMMY_155 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 155 ; + } + +#paramId: 500806 +#DUMMY_156 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 156 ; + } + +#paramId: 500807 +#DUMMY_157 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 157 ; + } + +#paramId: 500808 +#DUMMY_158 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 158 ; + } + +#paramId: 500809 +#DUMMY_159 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 159 ; + } + +#paramId: 500810 +#DUMMY_160 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 160 ; + } + +#paramId: 500811 +#DUMMY_161 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 161 ; + } + +#paramId: 500812 +#DUMMY_162 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 162 ; + } + +#paramId: 500813 +#DUMMY_163 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 163 ; + } + +#paramId: 500814 +#DUMMY_164 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 164 ; + } + +#paramId: 500815 +#DUMMY_165 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 165 ; + } + +#paramId: 500816 +#DUMMY_166 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 166 ; + } + +#paramId: 500817 +#DUMMY_167 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 167 ; + } + +#paramId: 500818 +#DUMMY_168 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 168 ; + } + +#paramId: 500819 +#DUMMY_169 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 169 ; + } + +#paramId: 500820 +#DUMMY_170 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 170 ; + } + +#paramId: 500821 +#DUMMY_171 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 171 ; + } + +#paramId: 500822 +#DUMMY_172 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 172 ; + } + +#paramId: 500823 +#DUMMY_173 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 173 ; + } + +#paramId: 500824 +#DUMMY_174 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 174 ; + } + +#paramId: 500825 +#DUMMY_175 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 175 ; + } + +#paramId: 500826 +#DUMMY_176 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 176 ; + } + +#paramId: 500827 +#DUMMY_177 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 177 ; + } + +#paramId: 500828 +#DUMMY_178 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 178 ; + } + +#paramId: 500829 +#DUMMY_179 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 179 ; + } + +#paramId: 500830 +#DUMMY_180 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 180 ; + } + +#paramId: 500831 +#DUMMY_181 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 181 ; + } + +#paramId: 500832 +#DUMMY_182 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 182 ; + } + +#paramId: 500833 +#DUMMY_183 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 183 ; + } + +#paramId: 500834 +#DUMMY_184 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 184 ; + } + +#paramId: 500835 +#DUMMY_185 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 185 ; + } + +#paramId: 500836 +#DUMMY_186 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 186 ; + } + +#paramId: 500837 +#DUMMY_187 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 187 ; + } + +#paramId: 500838 +#DUMMY_188 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 188 ; + } + +#paramId: 500839 +#DUMMY_189 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 189 ; + } + +#paramId: 500840 +#DUMMY_190 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 190 ; + } + +#paramId: 500841 +#DUMMY_191 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 191 ; + } + +#paramId: 500842 +#DUMMY_192 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 192 ; + } + +#paramId: 500843 +#DUMMY_193 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 193 ; + } + +#paramId: 500844 +#DUMMY_194 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 194 ; + } + +#paramId: 500845 +#DUMMY_195 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 195 ; + } + +#paramId: 500846 +#DUMMY_196 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 196 ; + } + +#paramId: 500847 +#DUMMY_197 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 197 ; + } + +#paramId: 500848 +#DUMMY_198 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 198 ; + } + +#paramId: 500849 +#DUMMY_199 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 199 ; + } + +#paramId: 500850 +#DUMMY_200 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 200 ; + } + +#paramId: 500851 +#DUMMY_201 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 201 ; + } + +#paramId: 500852 +#DUMMY_202 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 202 ; + } + +#paramId: 500853 +#DUMMY_203 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 203 ; + } + +#paramId: 500854 +#DUMMY_204 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 204 ; + } + +#paramId: 500855 +#DUMMY_205 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 205 ; + } + +#paramId: 500856 +#DUMMY_206 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 206 ; + } + +#paramId: 500857 +#DUMMY_207 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 207 ; + } + +#paramId: 500858 +#DUMMY_208 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 208 ; + } + +#paramId: 500859 +#DUMMY_209 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 209 ; + } + +#paramId: 500860 +#DUMMY_210 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 210 ; + } + +#paramId: 500861 +#DUMMY_211 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 211 ; + } + +#paramId: 500862 +#DUMMY_212 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 212 ; + } + +#paramId: 500863 +#DUMMY_213 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 213 ; + } + +#paramId: 500864 +#DUMMY_214 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 214 ; + } + +#paramId: 500865 +#DUMMY_215 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 215 ; + } + +#paramId: 500866 +#DUMMY_216 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 216 ; + } + +#paramId: 500867 +#DUMMY_217 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 217 ; + } + +#paramId: 500868 +#DUMMY_218 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 218 ; + } + +#paramId: 500869 +#DUMMY_219 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 219 ; + } + +#paramId: 500870 +#DUMMY_220 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 220 ; + } + +#paramId: 500871 +#DUMMY_221 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 221 ; + } + +#paramId: 500872 +#DUMMY_222 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 222 ; + } + +#paramId: 500873 +#DUMMY_223 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 223 ; + } + +#paramId: 500874 +#DUMMY_224 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 224 ; + } + +#paramId: 500875 +#DUMMY_225 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 225 ; + } + +#paramId: 500876 +#DUMMY_226 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 226 ; + } + +#paramId: 500877 +#DUMMY_227 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 227 ; + } + +#paramId: 500878 +#DUMMY_228 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 228 ; + } + +#paramId: 500879 +#DUMMY_229 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 229 ; + } + +#paramId: 500880 +#DUMMY_230 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 230 ; + } + +#paramId: 500881 +#DUMMY_231 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 231 ; + } + +#paramId: 500882 +#DUMMY_232 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 232 ; + } + +#paramId: 500883 +#DUMMY_233 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 233 ; + } + +#paramId: 500884 +#DUMMY_234 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 234 ; + } + +#paramId: 500885 +#DUMMY_235 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 235 ; + } + +#paramId: 500886 +#DUMMY_236 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 236 ; + } + +#paramId: 500887 +#DUMMY_237 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 237 ; + } + +#paramId: 500888 +#DUMMY_238 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 238 ; + } + +#paramId: 500889 +#DUMMY_239 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 239 ; + } + +#paramId: 500890 +#DUMMY_240 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 240 ; + } + +#paramId: 500891 +#DUMMY_241 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 241 ; + } + +#paramId: 500892 +#DUMMY_242 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 242 ; + } + +#paramId: 500893 +#DUMMY_243 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 243 ; + } + +#paramId: 500894 +#DUMMY_244 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 244 ; + } + +#paramId: 500895 +#DUMMY_245 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 245 ; + } + +#paramId: 500896 +#DUMMY_246 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 246 ; + } + +#paramId: 500897 +#DUMMY_247 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 247 ; + } + +#paramId: 500898 +#DUMMY_248 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 248 ; + } + +#paramId: 500899 +#DUMMY_249 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 249 ; + } + +#paramId: 500900 +#DUMMY_250 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 250 ; + } + +#paramId: 500901 +#DUMMY_251 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 251 ; + } + +#paramId: 500902 +#DUMMY_252 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 252 ; + } + +#paramId: 500903 +#DUMMY_253 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 253 ; + } + +#paramId: 500904 +#DUMMY_254 +'' = { + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 254 ; + } + +#paramId: 502332 +#Liquid water content in snow - multi level +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 210 ; + typeOfFirstFixedSurface = 114 ; + } + +#paramId: 502339 +#Downward direct short wave radiation flux at surface +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 502344 +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502345 +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 222 ; + } + +#paramId: 502346 +#Albedo - near infrared - time average (0.7 - 5.0 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 502347 +#Albedo - near infrared (0.7 - 5.0 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 223 ; + } + +#paramId: 502352 +#Eddy Dissipation Rate Total Col-Max. Upper FIR +'m2/3 s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 224 ; + } + +#paramId: 502353 +#Eddy Dissipation Rate Total Col-Max. Lower UIR +'m2/3 s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 225 ; + } + +#paramId: 502354 +#Eddy Dissipation Rate Total Col-Max. Upper UIR +'m2/3 s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 226 ; + } + +#paramId: 503049 +#Eddy dissipitation rate of TKE +'m2 s-3' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 227 ; + } + +#paramId: 503050 +#Radar precipitation rate +'kg m-2 h-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 195 ; + } + +#paramId: 503052 +#Radar quality information +'Proportion' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 196 ; + } + +#paramId: 503053 +#Radar blacklist +'Numeric' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 197 ; + } + +#paramId: 503054 +#Height of radar beam above ground +'m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 198 ; + } + +#paramId: 503055 +#Specific humidity (diagnostic) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 211 ; + } + +#paramId: 503056 +#Specific cloud water content (diagnostic) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 212 ; + } + +#paramId: 503057 +#Specific cloud ice content (diagnostic) +'kg kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 213 ; + } + +#paramId: 503058 +#Total column integrated water vapour (diagnostic) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 214 ; + } + +#paramId: 503059 +#Total column integrated cloud water (diagnostic) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 215 ; + } + +#paramId: 503060 +#Total column integrated cloud ice (diagnostic) +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 216 ; + } + +#paramId: 503061 +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503068 +#precipitation, qualified,BRD +'kg m-2' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503069 +#precipitation,BRD +'kg m-2' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503070 +#precipitation phase,BRD +'Numeric' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 194 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503071 +#hail flag,BRD +'Numeric' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 195 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503072 +#snow_rate,BRD +'0.01 m' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 196 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503073 +#snow_rate,qualified,BRD +'0.01 m' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 197 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503074 +#Area weights for regular lon-lat grid +'Numeric' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 193 ; + } + +#paramId: 503078 +#Relative humidity over mixed phase +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 220 ; + } + +#paramId: 503079 +#Soil moisture index (multilayers) +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } + +#paramId: 503096 +#Peak frequency (interpolated) +'Hz' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } + +#paramId: 503115 +#Specific number concentration of rain +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 228 ; + } + +#paramId: 503116 +#Number density of rain +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 229 ; + } + +#paramId: 503117 +#Specific number concentration of snow +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 217 ; + } + +#paramId: 503118 +#Specific number concentration of graupel +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 218 ; + } + +#paramId: 503119 +#Specific number concentration of hail +'kg-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 219 ; + } + +#paramId: 503120 +#Number density of snow +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 221 ; + } + +#paramId: 503121 +#Number density of graupel +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 222 ; + } + +#paramId: 503122 +#Number density of hail +'m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 223 ; + } + +#paramId: 503123 +#Mass density of rain +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 224 ; + } + +#paramId: 503124 +#Mass density of snow +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 225 ; + } + +#paramId: 503125 +#Mass density of graupel +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 226 ; + } + +#paramId: 503126 +#Mass density of cloud droplets +'kg m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 203 ; + } + +#paramId: 503127 +#Mass density of cloud ice +'kg m-3' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 204 ; + } + +#paramId: 503128 +#Mass density of hail +'kg m-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 227 ; + } + +#paramId: 503137 +#Eddy Dissipation Rate Total Col-Max. Lower FIR +'m2/3 s-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 228 ; + } + +#paramId: 503142 +#Lightning Potential Index +'J kg-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + } + +#paramId: 503143 +#Rain drain from snowpack - accumulation +'kg m-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 230 ; + typeOfStatisticalProcessing = 1 ; + } + +#paramId: 503146 +#Height of -10 degree Celsius isotherm +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } + +#paramId: 503147 +# probability density function of EDP for turbulence greater well defined threshold and model grid box +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 229 ; + } + +#paramId: 503148 +#Adedokun 2 Index +'K' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } + +#paramId: 503149 +#Downward direct short wave radiation flux at surface on horizontal plane (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503150 +#Gauss Boaga Coordinates West to East,East Sector +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 194 ; + } + +#paramId: 503151 +#Gauss Boaga Coordinates South to North,East Sector +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 195 ; + } + +#paramId: 503152 +#Gauss Boaga Coordinates West to East, West Sector +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 196 ; + } + +#paramId: 503153 +#Gauss Boaga Coordinates South to North, West Sector +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 197 ; + } + +#paramId: 503156 +#Ellrod and Knapp turbulence index1 +'s-2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 230 ; + } + +#paramId: 503157 +#Ellrod and Knapp turbulence index2 +'s-2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 231 ; + } + +#paramId: 503158 +#Deformation of horizontal wind field +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 29 ; + } + +#paramId: 503159 +#Divergence trend (scaled divergence tendency needed for CAT_DVI) +'s-2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 232 ; + } + +#paramId: 503160 +#Divergence modified turbulence index (Ellrod and Knox) +'s-2' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 233 ; + } + +#paramId: 503161 +#Cloud ice ratio qi/(qc+qi) +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 231 ; + } + +#paramId: 503162 +#Percentage of convective precipitation (from total prec) +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 232 ; + } + +#paramId: 503163 +#Deep convection index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503164 +#Wind direction in azimuth class +'Numeric' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } + +#paramId: 503165 +#Wind direction in azimuth class +'Numeric' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503167 +#Possible astronomical maximum of sunshine +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 11 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503168 +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 206 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503171 +#Enthalpy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } + +#paramId: 503172 +#2m Enthalpy +'J kg-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503175 +#Downward short wave radiation flux at surface on horizontal plane (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 201 ; + } + +#paramId: 503176 +#Downward short wave radiation flux at surface on vertical surface facing east (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 202 ; + } + +#paramId: 503177 +#Downward short wave radiation flux at surface on vertical surface facing north (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 203 ; + } + +#paramId: 503178 +#Downward short wave radiation flux at surface on vertical surface facing south (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 204 ; + } + +#paramId: 503179 +#Downward short wave radiation flux at surface on vertical surface facing west (time average) +'W m-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 205 ; + } + +#paramId: 503180 +#Along-wind Lagrangian time scale (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } + +#paramId: 503181 +#Cross-wind Lagrangian time scale (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } + +#paramId: 503182 +#Vertical Lagrangian time scale (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } + +#paramId: 503183 +#Zonal Lagrangian time scale (direct) (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } + +#paramId: 503184 +#Meridional Lagrangian time scale (direct) (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } + +#paramId: 503185 +#Vertical Lagrangian time scale (direct) (Hanna) +'s' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } + +#paramId: 503187 +#Height of level of free convection of mixed (mean) layer parcel +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 192 ; + typeOfFirstFixedSurface = 194 ; + } + +#paramId: 503188 +#Luminosity +'klux' = { + discipline = 215 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } + +#paramId: 503189 +#Downward long-wave radiation flux at surface based on T_2M (time average) +'W m-2 ' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503190 +#Downward long-wave radiation flux at surface based on T_G (time average) +'W m-2 ' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503191 +#Downward long-wave radiation flux at surface based on T_SO(0) (time average) +'W m-2 ' = { + discipline = 215 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503194 +#Pressure difference between cloud base and cloud top +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + typeOfSecondFixedSurface = 2 ; + typeOfFirstFixedSurface = 3 ; + } + +#paramId: 503198 +#Along-wind velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } + +#paramId: 503199 +#Cross-wind velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } + +#paramId: 503200 +#Vertical velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } + +#paramId: 503201 +#Zonal velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } + +#paramId: 503202 +#Meridional velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } + +#paramId: 503203 +#Vertical velocity fluctuation (Hanna) +'m s-1' = { + discipline = 215 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } + +#paramId: 503205 +#Percentage of precipitation in snow (from total prec.) +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 233 ; + } + +#paramId: 503206 +#Thunderstorm index for Switzerland (night time) +'K' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } + +#paramId: 503207 +#Thunderstorm index for Switzerland (day time) +'K' = { + discipline = 215 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } + +#paramId: 503208 +#Swiss coordinate (south-north) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 198 ; + } + +#paramId: 503209 +#Swiss coordinate (west-east) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 199 ; + } + +#paramId: 503217 +#2m temperature, corrected in presence of snow +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } + +#paramId: 503218 +#Universal thermal climate index without direct incident short wave radiation +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } + +#paramId: 503222 +#Relative geostrophic vorticity +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 26 ; + } + +#paramId: 503223 +#Relative geostrophic vorticity advection +'s-2' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 27 ; + } + +#paramId: 503226 +#Wind divergence (3D) +'s-1' = { + discipline = 0 ; + parameterCategory = 193 ; + parameterNumber = 28 ; + } + +#paramId: 503227 +#Mean vertical wind shear for specified layer or layer-mean vertical wind shear +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 201 ; + } + +#paramId: 503228 +#Norm of (vertical) wind shear vector between two levels +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 202 ; + } + +#paramId: 503282 +#Diagnostic total column of activity concentration of radionuclides +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 10 ; + } + +#paramId: 503283 +#Liquid water potential temperature variance +'K2' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 0 ; + } + +#paramId: 503284 +#Total water specific humidity variance +'kg2 kg-2' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 1 ; + } + +#paramId: 503285 +#Liquid water potential temperature - total water specific humidity covariance +'K kg kg-1' = { + discipline = 0 ; + parameterCategory = 198 ; + parameterNumber = 2 ; + } + +#paramId: 503286 +#Impervious (paved or sealed) surface fraction +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } + +#paramId: 503287 +#Antropogenic heat flux (e.g. urban heating, traffic) +'W m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } + +#paramId: 503292 +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 234 ; + } + +#paramId: 503299 +#Sky-view-factor +'Numeric' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 0 ; + } + +#paramId: 503300 +#Horizon angle - topography +'Numeric' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 1 ; + } + +#paramId: 503301 +#Slope aspect - topography +'Numeric' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 3 ; + } + +#paramId: 503302 +#Slope angle - topography +'Numeric' = { + discipline = 0 ; + parameterCategory = 199 ; + parameterNumber = 2 ; + } + +#paramId: 503339 +#Threshold friction velocity +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 203 ; + } + +#paramId: 503342 +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503343 +#Maximum updraft track (over given time interval and column) +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503348 +#Maximum of Lightning Potential Index (over given time interval) +'J kg-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503351 +#mean radiation temperature of an environment assumed black body related to standing human +'K' = { + discipline = 0 ; + parameterCategory = 192 ; + parameterNumber = 4 ; + } + +#paramId: 503355 +#Maximum 10m dynamical gust +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503356 +#Maximum 10m convective gust +'ms-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + +#paramId: 503358 +#Standard deviation of saturation deficit +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 234 ; + } + +#paramId: 503359 +#Evaporation of plants (integrated since "nightly reset") +'kg m-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } + +#paramId: 503363 +#Number of birch (betula) pollen in the reservoir (previous timestep) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62101 ; + } + +#paramId: 503364 +#Number of birch (betula) pollen released into the reservoir (new) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62101 ; + } + +#paramId: 503365 +#Sum of released birch (betula) pollen into the reservoir (daily sum) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62101 ; + } + +#paramId: 503366 +#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62101 ; + } + +#paramId: 503367 +#Height correction for emission (decreasing emission with height) for birch (betula) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503369 +#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62101 ; + } + +#paramId: 503370 +#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503371 +#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62101 ; + } + +#paramId: 503372 +#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62101 ; + } + +#paramId: 503373 +#Length of birch (betula) pollen season +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62101 ; + } + +#paramId: 503374 +#Pollen number emission flux for birch (betula) +'m-2s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62101 ; + } + +#paramId: 503377 +#Number of alder (alnus) pollen in the reservoir (previous timestep) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62100 ; + } + +#paramId: 503378 +#Number of alder (alnus) pollen released into the reservoir (new) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62100 ; + } + +#paramId: 503379 +#Sum of released alder (alnus) pollen into the reservoir (daily sum) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62100 ; + } + +#paramId: 503380 +#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62100 ; + } + +#paramId: 503381 +#Height correction for emission (decreasing emission with height) for alder (alnus) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503383 +#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62100 ; + } + +#paramId: 503384 +#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503385 +#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62100 ; + } + +#paramId: 503386 +#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62100 ; + } + +#paramId: 503387 +#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62100 ; + } + +#paramId: 503388 +#Length of alder (alnus) pollen season +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62100 ; + } + +#paramId: 503389 +#Pollen number emission flux for alder (alnus) +'m-2s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62100 ; + } + +#paramId: 503392 +#Number of grasses (poaceae) pollen in the reservoir (previous timestep) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62300 ; + } + +#paramId: 503393 +#Number of grasses (poaceae) pollen released into the reservoir (new) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62300 ; + } + +#paramId: 503394 +#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62300 ; + } + +#paramId: 503395 +#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62300 ; + } + +#paramId: 503396 +#Height correction for emission (decreasing emission with height) for grasses (poaceae) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503398 +#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62300 ; + } + +#paramId: 503399 +#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503400 +#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62300 ; + } + +#paramId: 503401 +#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62300 ; + } + +#paramId: 503402 +#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62300 ; + } + +#paramId: 503403 +#Length of grasses (poaceae) pollen season +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62300 ; + } + +#paramId: 503404 +#Pollen number emission flux for grasses (poaceae) +'m-2s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62300 ; + } + +#paramId: 503407 +#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + constituentType = 62200 ; + } + +#paramId: 503408 +#Number of ragweed (ambrosia) pollen released into the reservoir (new) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + constituentType = 62200 ; + } + +#paramId: 503409 +#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + typeOfStatisticalProcessing = 11 ; + constituentType = 62200 ; + } + +#paramId: 503410 +#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + constituentType = 62200 ; + } + +#paramId: 503411 +#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) +'0-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 195 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503413 +#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 196 ; + constituentType = 62200 ; + } + +#paramId: 503414 +#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503415 +#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) +'deg C' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + typeOfGeneratingProcess = 9 ; + constituentType = 62200 ; + } + +#paramId: 503416 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62200 ; + } + +#paramId: 503417 +#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 200 ; + constituentType = 62200 ; + } + +#paramId: 503418 +#Length of ragweed (ambrosia) pollen season +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + constituentType = 62200 ; + } + +#paramId: 503419 +#Pollen number emission flux for ragweed (ambrosia) +'m-2s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + constituentType = 62200 ; + } + +#paramId: 503420 +#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) +'d' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + constituentType = 62101 ; + } + +#paramId: 503424 +#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. +'Numeric' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 235 ; + } + +#paramId: 503425 +#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) +'W m-2 K-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } + +#paramId: 503426 +#Maximum snow height during contiguous accumulating snow period (coupled with snow age) +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 235 ; + } + +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/eccodes/definitions/grib2/localConcepts/efkl/name.def b/eccodes/definitions/grib2/localConcepts/efkl/name.def new file mode 100644 index 00000000..a1c619b3 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/efkl/name.def @@ -0,0 +1,157 @@ +# Automatically generted. Do not edit. +# NWP latent heat net flux +'NWP latent heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +# NWP sensible heat net flux +'NWP sensible heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +# NWP Boundary layer height +'NWP Boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +# MO_length_inv +'MO_length_inv' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } +# mixing velocity scale "Kz_1m" at surface +'mixing velocity scale "Kz_1m" at surface' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } +# Convective velocity scale +'Convective velocity scale' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + } +# Temperature scale T_star +'Temperature scale T_star' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } +# Humidity scale h_star +'Humidity scale h_star' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 196 ; + } +# Scavenging coefficient +'Scavenging coefficient' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 197 ; + } +# Dry deposition number flux +'Dry deposition number flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + } +# Dry deposition molar flux +'Dry deposition molar flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + } +# Dry deposition radioactive flux +'Dry deposition radioactive flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + } +# Wet deposition Number Flux +'Wet deposition Number Flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + } +# Wet deposition Molar Flux +'Wet deposition Molar Flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + } +# Wet deposition Radioactive Flux +'Wet deposition Radioactive Flux' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + } +# Column integrated mass concentration +'Column integrated mass concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + } +# Column integrated number concentration +'Column integrated number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + } +# Column integrated molar concentration +'Column integrated molar concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + } +# Column integrated radioactive concentration +'Column integrated radioactive concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + } +# Radioactive concentration +'Radioactive concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 210 ; + } +# Ready to fly pollen +'Ready to fly pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 220 ; + } +# Ready to fly allergen +'Ready to fly allergen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 221 ; + } +# Heatsum for pollen +'Heatsum for pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 222 ; + } +# Pollen left fraction +'Pollen left fraction' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 223 ; + } +# Pollen total per m2 +'Pollen total per m2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 224 ; + } +# Climate correction for total pollen +'Climate correction for total pollen' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 225 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/efkl/paramId.def b/eccodes/definitions/grib2/localConcepts/efkl/paramId.def new file mode 100644 index 00000000..937b05f8 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/efkl/paramId.def @@ -0,0 +1,157 @@ +# Automatically generted. Do not edit. +# NWP latent heat net flux +'86000193' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +# NWP sensible heat net flux +'86000194' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +# NWP Boundary layer height +'86003192' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +# MO_length_inv +'86007192' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } +# mixing velocity scale "Kz_1m" at surface +'86007193' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } +# Convective velocity scale +'86007194' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + } +# Temperature scale T_star +'86007195' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } +# Humidity scale h_star +'86007196' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 196 ; + } +# Scavenging coefficient +'86007197' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 197 ; + } +# Dry deposition number flux +'86020192' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + } +# Dry deposition molar flux +'86020193' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + } +# Dry deposition radioactive flux +'86020194' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + } +# Wet deposition Number Flux +'86020197' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + } +# Wet deposition Molar Flux +'86020198' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + } +# Wet deposition Radioactive Flux +'86020199' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + } +# Column integrated mass concentration +'86020201' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + } +# Column integrated number concentration +'86020202' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + } +# Column integrated molar concentration +'86020203' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + } +# Column integrated radioactive concentration +'86020204' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + } +# Radioactive concentration +'86020210' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 210 ; + } +# Ready to fly pollen +'86020220' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 220 ; + } +# Ready to fly allergen +'86020221' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 221 ; + } +# Heatsum for pollen +'86020222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 222 ; + } +# Pollen left fraction +'86020223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 223 ; + } +# Pollen total per m2 +'86020224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 224 ; + } +# Climate correction for total pollen +'86020225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 225 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/efkl/shortName.def b/eccodes/definitions/grib2/localConcepts/efkl/shortName.def new file mode 100644 index 00000000..f78fcf88 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/efkl/shortName.def @@ -0,0 +1,157 @@ +# Automatically generted. Do not edit. +# NWP latent heat net flux +'nwplhf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +# NWP sensible heat net flux +'nwpshf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +# NWP Boundary layer height +'nwp_blh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +# MO_length_inv +'MO_len_inv' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } +# mixing velocity scale "Kz_1m" at surface +'Kz_1m' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } +# Convective velocity scale +'cnv_vel_scale' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + } +# Temperature scale T_star +'turb_temp' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } +# Humidity scale h_star +'humid_scale' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 196 ; + } +# Scavenging coefficient +'scav_coef' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 197 ; + } +# Dry deposition number flux +'ddnumf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + } +# Dry deposition molar flux +'ddmolf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + } +# Dry deposition radioactive flux +'ddradf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + } +# Wet deposition Number Flux +'wdnumf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + } +# Wet deposition Molar Flux +'wdmolf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + } +# Wet deposition Radioactive Flux +'wdradf' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + } +# Column integrated mass concentration +'cimassconc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + } +# Column integrated number concentration +'cinumconc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + } +# Column integrated molar concentration +'cimolconc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + } +# Column integrated radioactive concentration +'ciradconc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + } +# Radioactive concentration +'radconc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 210 ; + } +# Ready to fly pollen +'poll_rdy2fly' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 220 ; + } +# Ready to fly allergen +'alrg_rdy2fly' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 221 ; + } +# Heatsum for pollen +'heatsum' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 222 ; + } +# Pollen left fraction +'poll_left' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 223 ; + } +# Pollen total per m2 +'poll_tot_m2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 224 ; + } +# Climate correction for total pollen +'pollen_corr' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 225 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/efkl/units.def b/eccodes/definitions/grib2/localConcepts/efkl/units.def new file mode 100644 index 00000000..1501987f --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/efkl/units.def @@ -0,0 +1,157 @@ +# Automatically generted. Do not edit. +# NWP latent heat net flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +# NWP sensible heat net flux +'W m-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +# NWP Boundary layer height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +# MO_length_inv +'m-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } +# mixing velocity scale "Kz_1m" at surface +'m s-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } +# Convective velocity scale +'m s-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + } +# Temperature scale T_star +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } +# Humidity scale h_star +'kg m-3' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 196 ; + } +# Scavenging coefficient +'s-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 197 ; + } +# Dry deposition number flux +'m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + } +# Dry deposition molar flux +'mol m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + } +# Dry deposition radioactive flux +'bq m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 194 ; + } +# Wet deposition Number Flux +'m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 197 ; + } +# Wet deposition Molar Flux +'mol m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 198 ; + } +# Wet deposition Radioactive Flux +'bq m-2 s-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 199 ; + } +# Column integrated mass concentration +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 201 ; + } +# Column integrated number concentration +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 202 ; + } +# Column integrated molar concentration +'mol m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + } +# Column integrated radioactive concentration +'bq m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + } +# Radioactive concentration +'bq m-3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 210 ; + } +# Ready to fly pollen +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 220 ; + } +# Ready to fly allergen +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 221 ; + } +# Heatsum for pollen +'degreeday' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 222 ; + } +# Pollen left fraction +'' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 223 ; + } +# Pollen total per m2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 224 ; + } +# Climate correction for total pollen +'' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 225 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def b/eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def new file mode 100644 index 00000000..99a9945e --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def @@ -0,0 +1,84 @@ +# Automatically generated by ./create_def.pl, do not edit +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#2 metre temperature +'t2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre dewpoint temperature +'d2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'r2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre specific humidity +'sh2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/egrr/name.def b/eccodes/definitions/grib2/localConcepts/egrr/name.def new file mode 100644 index 00000000..f1ce0156 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/egrr/name.def @@ -0,0 +1,84 @@ +# Automatically generated by ./create_def.pl, do not edit +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#2 metre temperature +'2 metre temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'Surface air relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre specific humidity +'2 metre specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/egrr/paramId.def b/eccodes/definitions/grib2/localConcepts/egrr/paramId.def new file mode 100644 index 00000000..561ef862 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/egrr/paramId.def @@ -0,0 +1,84 @@ +# Automatically generated by ./create_def.pl, do not edit +#Maximum temperature at 2 metres since previous post-processing +'201' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 15 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + typeOfStatisticalProcessing = 3 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#2 metre temperature +'167' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'260242' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre specific humidity +'174096' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/egrr/shortName.def b/eccodes/definitions/grib2/localConcepts/egrr/shortName.def new file mode 100644 index 00000000..3a824a00 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/egrr/shortName.def @@ -0,0 +1,84 @@ +# Automatically generated by ./create_def.pl, do not edit +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#2 metre temperature +'2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'2r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#2 metre specific humidity +'2sh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/egrr/units.def b/eccodes/definitions/grib2/localConcepts/egrr/units.def new file mode 100644 index 00000000..8e1c3f3a --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/egrr/units.def @@ -0,0 +1,84 @@ +# Automatically generated by ./create_def.pl, do not edit +#Maximum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#2 metre temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/name.def b/eccodes/definitions/grib2/localConcepts/ekmi/name.def new file mode 100644 index 00000000..5a1dc47d --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ekmi/name.def @@ -0,0 +1,17 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Convective inhibition +'Convective inhibition' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective available potential energy +'Convective available potential energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/paramId.def b/eccodes/definitions/grib2/localConcepts/ekmi/paramId.def new file mode 100644 index 00000000..ea6f83d5 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ekmi/paramId.def @@ -0,0 +1,17 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Convective inhibition +'94001224' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective available potential energy +'94001225' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/shortName.def b/eccodes/definitions/grib2/localConcepts/ekmi/shortName.def new file mode 100644 index 00000000..793c3a4d --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ekmi/shortName.def @@ -0,0 +1,17 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Convective inhibition +'cin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective available potential energy +'cape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/units.def b/eccodes/definitions/grib2/localConcepts/ekmi/units.def new file mode 100644 index 00000000..e927afa7 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/ekmi/units.def @@ -0,0 +1,17 @@ +#Provided by Henrik Feddersen (Danish Meteorological Institute) +#Convective inhibition +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Convective available potential energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/eswi/name.def b/eccodes/definitions/grib2/localConcepts/eswi/name.def new file mode 100644 index 00000000..2eb5df99 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/eswi/name.def @@ -0,0 +1,3000 @@ +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pressure tendency' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Potential vorticity +'Potential vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geopotential +'Geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geopotential height +'Geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Geometric height +'Geometric height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'Standard deviation of height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Total ozone +'Total ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Temperature +'Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Virtual temperature +'Virtual temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Potential temperature +'Potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'Dew point temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Dew point depression (or deficit) +'Dew point depression (or deficit)' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Lapse rate +'Lapse rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar Spectra (1) +'Radar Spectra (1)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar Spectra (2) +'Radar Spectra (2)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar Spectra (3) +'Radar Spectra (3)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'Temperature anomaly' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pressure anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave Spectra (1) +'Wave Spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave Spectra (2) +'Wave Spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave Spectra (3) +'Wave Spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'Wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#u-component of wind +'u-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#v-component of wind +'v-component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Stream function +'Stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'Velocity potential' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'Montgomery stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coord. vertical velocity +'Sigma coord. vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Pressure Vertical velocity +'Pressure Vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Geometric Vertical velocity +'Geometric Vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Absolute vorticity +'Absolute vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'Absolute divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Relative vorticity +'Relative vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Relative divergence +'Relative divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#Direction of current +'Direction of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of current +'Speed of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#u-component of current +'u-component of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#v-component of current +'v-component of current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'Specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Humidity mixing ratio +'Humidity mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Precipitable water +'Precipitable water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Vapour pressure +'Vapour pressure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Saturation deficit +'Saturation deficit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Evaporation +'Evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Cloud Ice +'Cloud Ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Precipitation rate +'Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total precipitation +'Total precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Large scale precipitation +'Large scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Snowfall rate water equivalent +'Snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Water equiv. of accum. snow depth +'Water equiv. of accum. snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Snow depth +'Snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'Main thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'Convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud water +'Cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Convective snow +'Convective snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'Large scale snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Water Temperature +'Water Temperature' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'Land-sea mask (1=land 0=sea) (see note)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Deviation of sea level from mean +'Deviation of sea level from mean' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Surface roughness +'Surface roughness' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Albedo +'Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Soil temperature +'Soil temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil moisture content +'Soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Vegetation +'Vegetation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Salinity +'Salinity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'Density' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Water run off +'Water run off' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'Ice cover (ice=1 no ice=0)(see note)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Ice thickness +'Ice thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Direction of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'Speed of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#u-component of ice drift +'u-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#v-component of ice drift +'v-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'Ice growth rate' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'Ice divergence' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'Snow melt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'Direction of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Direction of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'Primary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'Primary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'Secondary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Net short wave radiation flux (surface) +'Net short wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (surface) +'Net long wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net short wave radiation flux (top of atmos.) +'Net short wave radiation flux (top of atmos.)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Net long wave radiation flux (top of atmos.) +'Net long wave radiation flux (top of atmos.)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Long wave radiation flux +'Long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + } +#Short wave radiation flux +'Short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Global radiation flux +'Global radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Brightness temperature +'Brightness temperature' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Latent heat net flux +'Latent heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'Sensible heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Momentum flux, u component +'Momentum flux, u component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'Momentum flux, v component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Wind mixing energy +'Wind mixing energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#Maximum wind +'Maximum wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Integrated cloud condensate +'Integrated cloud condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Snow depth, cold snow +'Snow depth, cold snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Slope fraction +'Slope fraction' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Snow density +'Snow density' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Soil type +'Soil type' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Convective inhibation +'Convective inhibation' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } +#CAPE +'CAPE' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } +#Friction velocity +'Friction velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Wind gust +'Wind gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +# SO2/SO2 +'SO2/SO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 8 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'SO4(2-)/SO4(2-) (sulphate)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 22 ; + } +# DMS/DMS +'DMS/DMS' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10500 ; + } +# NH42SO4/(NH4)2SO4 +'NH42SO4/(NH4)2SO4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63006 ; + } +# SULFATE/SULFATE +'SULFATE/SULFATE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63008 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'SOX_S/All oxidised sulphur compounds (as sulphur)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63005 ; + } +# NO +'NO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 11 ; + } +# NO2/NO2 +'NO2/NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 5 ; + } +# HNO3/HNO3 +'HNO3/HNO3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 17 ; + } +# NH4NO3/NH4NO3 +'NH4NO3/NH4NO3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63007 ; + } +# NITRATE/NITRATE +'NITRATE/NITRATE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63009 ; + } +# NOX/NOX as NO2 +'NOX/NOX as NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63001 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'NOX_N/NO2+NO (NOx) as nitrogen' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60003 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'NOY_N/All oxidised N-compounds (as nitrogen)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60004 ; + } +# NH3/NH3 +'NH3/NH3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 9 ; + } +# NH4(+1)/NH4 +'NH4(+1)/NH4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'NHX_N/All reduced nitrogen (as nitrogen)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63004 ; + } +# O3 +'O3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 0 ; + } +# H2O2/H2O2 +'H2O2/H2O2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 19 ; + } +# OH/OH +'OH/OH' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10000 ; + } +# CO/CO +'CO/CO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 4 ; + } +# CO2/CO2 +'CO2/CO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 3 ; + } +# CH4/CH4 +'CH4/CH4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 2 ; + } +# OC/Organic carbon (particles) +'OC/Organic carbon (particles)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63013 ; + } +# EC/Elementary carbon (particles) +'EC/Elementary carbon (particles)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63012 ; + } +# Rn222/Rn222 +'Rn222/Rn222' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 23 ; + } +# NACL +'NACL' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62008 ; + } +# PMFINE +'PMFINE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PMCOARSE/Coarse particles +'PMCOARSE/Coarse particles' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# DUST/Dust (particles) +'DUST/Dust (particles)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62001 ; + } +# PNUMBER/Number concentration +'PNUMBER/Number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63017 ; + } +# PMASS/Particle mass conc +'PMASS/Particle mass conc' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63018 ; + } +# PM10/PM10 particles +'PM10/PM10 particles' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# PSOX/Particulate sulfate +'PSOX/Particulate sulfate' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63014 ; + } +# PNOX/Particulate nitrate +'PNOX/Particulate nitrate' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63015 ; + } +# PNHX/Particulate ammonium +'PNHX/Particulate ammonium' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63016 ; + } +# SOA/Secondary Organic Aerosol +'SOA/Secondary Organic Aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62012 ; + } +# PM2.5/PM2.5 particles +'PM2.5/PM2.5 particles' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PM/Total particulate matter +'PM/Total particulate matter' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62000 ; + } +# VIS/Visibility [m] +'VIS/Visibility [m]' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Wind gusts +'Wind gusts' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'Medium cloud cove' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud base of significant clouds +'Cloud base of significant clouds' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top of significant clouds +'Cloud top of significant clouds' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Heat index +'Heat index' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'Wind chill factor' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Snow phase change heat flux +'Snow phase change heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Skin temperature +'Skin temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } +#Snow age +'Snow age' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'Absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'Precipitation type' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'Integrated liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'Condensate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'Cloud mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'Ice water mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'Rain mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'Snow mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'Horizontal moisture convergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Precipitable water category +'Precipitable water category' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'Hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel +'Graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'Categorical rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'Categorical freezing rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'Categorical ice pellets' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'Categorical snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'Convective precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'Horizontal moisture divergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'Percent frozen precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'Potential evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'Snow cover' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability thunderstorm +'Probability thunderstorm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'Convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'Medium cloud cove' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#cloud mask +'cloud mask' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Wind gust +'Wind gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Precipitation intensity total +'Precipitation intensity total' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Precipitation intensity snow +'Precipitation intensity snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'Upward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'Net short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'Downward UV radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'UV index (under clear sky)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'UV index' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'Net long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud amount +'Cloud amount' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'Cloud type' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'Thunderstorm maximum tops' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'Thunderstorm coverage' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'Cloud base' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'Cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'Ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'Non-convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'Cloud work function' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Convective cloud efficiency' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'Total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'Total column-integrated cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'Total column-integrated cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'Total column-integrated condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Ice fraction of total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Cloud ice mixing ratio +'Cloud ice mixing ratio' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Sunshine' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulunimbus (CB) +'Horizontal extent of cumulunimbus (CB)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#Fraction of cloud cover +'Fraction of cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#Sunshine duration +'Sunshine duration' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + } +#K index +'K index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'KO index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'Total totals index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Sweat index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'Storm relative helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Energy helicity index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'Best (4-layer) lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Richardson number +'Richardson number' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 12 ; + } +#Aerosol type +'Aerosol type' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Ozone mixing ratio +'Ozone mixing ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Total column integrated ozone +'Total column integrated ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'Base spectrum width' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'Base radial velocity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically integrated liquid +'Vertically integrated liquid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'Layer-maximum base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation (radar) +'Precipitation (radar)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Equivalent radar reflectivity factor for rain +'Equivalent radar reflectivity factor for rain' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 0 ; + } +#Equivalent radar reflectivity factor for snow +'Equivalent radar reflectivity factor for snow' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 1 ; + } +#Equivalent radar reflectivity factor for paramterized convection +'Equivalent radar reflectivity factor for paramterized convection' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 2 ; + } +#Echo top (radar) +'Echo top (radar)' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 3 ; + } +#Reflectivity (radar) +'Reflectivity (radar)' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 4 ; + } +#Composite reflectivity (radar) +'Composite reflectivity (radar)' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } +#Icing top +'Icing top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'Icing base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'Turbulence top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'Turbulence base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'Turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Planetary boundary-layer regime +'Planetary boundary-layer regime' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'Contrail intensity' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'Contrail engine type' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'Contrail top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'Contrail base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Snow free albedo +'Snow free albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'In-cloud turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'Clear air turbulence (CAT)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability +'Supercooled large droplet probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'Arbitrary text string' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in section1) (meteorology) +'Seconds prior to initial reference time (defined in section1) (meteorology)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Current east +'Current east' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Current north +'Current north' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Turbulent Kintetic Energy +'Turbulent Kintetic Energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Potential temperature +'Potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'Wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Stream function +'Stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'Velocity potential' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'Montgomery stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Direction of horizontal current +'Direction of horizontal current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of horizontal current +'Speed of horizontal current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#U-comp of Current +'U-comp of Current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-comp of Current +'V-comp of Current' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'Specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Snow Depth +'Snow Depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'Main thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Water temperature +'Water temperature' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Density +'Density' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice Cover +'Ice Cover' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Total ice thickness +'Total ice thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Direction of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'Speed of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Ice growth rate +'Ice growth rate' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Ice divergence +'Ice divergence' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Significant wave height +'Significant wave height' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of Wind Waves +'Direction of Wind Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Sign Height Wind Waves +'Sign Height Wind Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean Period Wind Waves +'Mean Period Wind Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of Swell Waves +'Direction of Swell Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Sign Height Swell Waves +'Sign Height Swell Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean Period Swell Waves +'Mean Period Swell Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'Primary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'Primary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'Secondary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Mean period of waves +'Mean period of waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean direction of Waves +'Mean direction of Waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Flash flood guidance +'Flash flood guidance' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff +'Flash flood runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely-sensed snow cover +'Remotely-sensed snow cover' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow-covered terrain +'Elevation of snow-covered terrain' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent per cent of normal +'Snow water equivalent per cent of normal' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'Baseflow-groundwater runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'Storm surface runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional per cent precipitation amount fractile for an overall period +'Conditional per cent precipitation amount fractile for an overall period' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Per cent precipitation in a sub-period of an overall period +'Per cent precipitation in a sub-period of an overall period' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability if 0.01 inch of precipitation +'Probability if 0.01 inch of precipitation' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Seconds prior to initial reference time (defined in section1) (oceonography) +'Seconds prior to initial reference time (defined in section1) (oceonography)' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Meridional overturning stream function +'Meridional overturning stream function' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Turbulent Kinetic Energy +'Turbulent Kinetic Energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#C2H6/Ethane +'C2H6/Ethane' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10008 ; + } +#NC4H10/N-butane +'NC4H10/N-butane' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10016 ; + } +#C2H4/Ethene +'C2H4/Ethene' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10009 ; + } +#C3H6/Propene +'C3H6/Propene' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10015 ; + } +#OXYLENE/O-xylene +'OXYLENE/O-xylene' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10023 ; + } +#HCHO/Formalydehyde +'HCHO/Formalydehyde' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 7 ; + } +#C5H8/Isoprene +'C5H8/Isoprene' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10017 ; + } +#C2H5OH/Ethanol +'C2H5OH/Ethanol' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10011 ; + } +#CH3OH/Metanol +'CH3OH/Metanol' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10004 ; + } +#NMVOC_C/Total NMVOC as C +'NMVOC_C/Total NMVOC as C' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60013 ; + } +#PAN/Peroxy acetyl nitrate +'PAN/Peroxy acetyl nitrate' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63011 ; + } +#NO3/Nitrate radical +'NO3/Nitrate radical' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 13 ; + } +#N2O5/Dinitrogen pentoxide +'N2O5/Dinitrogen pentoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 15 ; + } +#HO2NO2/HO2NO2 +'HO2NO2/HO2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 18 ; + } +#HONO +'HONO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 16 ; + } +#HO2/Hydroperhydroxyl radical +'HO2/Hydroperhydroxyl radical' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 14 ; + } +#H2/Molecular hydrogen +'H2/Molecular hydrogen' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 20 ; + } +#O/Oxygen atomic ground state (3P) +'O/Oxygen atomic ground state (3P)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 12 ; + } +#CH3O2/Methyl peroxy radical +'CH3O2/Methyl peroxy radical' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10001 ; + } +#CH3O2H/Methyl hydroperoxide +'CH3O2H/Methyl hydroperoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10002 ; + } +#C2H5OOH/Ethyl hydroperoxide +'C2H5OOH/Ethyl hydroperoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10012 ; + } +#BENZENE +'BENZENE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10021 ; + } +#TOLUENE +'TOLUENE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10022 ; + } +#HCN/Vaetecyanid +'HCN/Vaetecyanid' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10006 ; + } +#Volcanic ash +'Volcanic ash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Aerosol optical thickness at 0.635 micro-m +'Aerosol optical thickness at 0.635 micro-m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 micro-m +'Aerosol optical thickness at 0.810 micro-m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 micro-m +'Aerosol optical thickness at 1.640 micro-m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'Angstrom coefficient' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rain factor +'Rain factor' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Total water precipitation +'Total water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'Total snow precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water) +'Total column water (Vertically integrated total water)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Large scale precipitation rate +'Large scale precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'Total snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 62 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'Rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'Snow precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'Freezing rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'Ice pellets precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Specific rain water content +'Specific rain water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'Specific snow water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#u-component of wind (gust) +'u-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'v-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'Vertical speed shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'Horizontal momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#u-component storm motion +'u-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#v-component storm motion +'v-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Drag coefficient' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Eta coordinate vertical velocity +'Eta coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Altimeter setting +'Altimeter setting' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'Thickness' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'Pressure altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'Density altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5-wave geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'Planetary boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-gridscale orography +'Standard deviation of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Natural logarithm of pressure in Pa +'Natural logarithm of pressure in Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Specific humidity +'Specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Precipitable water +'Precipitable water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Snow depth +'Snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Evapotranspiration +'Evapotranspiration' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'Model terrain height' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'Land use' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Moisture availability +'Moisture availability' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'Exchange coefficient' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'Plant canopy surface water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'Blackadar mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'Canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'Minimal stomatal resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Solar parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Temperature parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Humidity parameter in canopy conductance +'Humidity parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Soil moisture parameter in canopy conductance +'Soil moisture parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Soil moisture +'Soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Column-integrated soil water +'Column-integrated soil water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'Heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Wilting point +'Wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } +#Volumetric wilting point +'Volumetric wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Number of soil layers in root zone +'Number of soil layers in root zone' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'Volumetric transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'Volumetric direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'Volumetric saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'Saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Scaled radiance +'Scaled radiance' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Scaled albedo' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Scaled brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Scaled precipitable water' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Scaled lifted index' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Scaled cloud top pressure' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Scaled skin temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Cloud mask' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Pixel scene type' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Fire detection indicator' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Estimated precipitation +'Estimated precipitation' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instananeous rain rate +'Instananeous rain rate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'Cloud top height' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Cloud top height quality indicator' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'Estimated u component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'Estimated v component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixel used +'Number of pixel used' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Solar zenith angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Relative azimuth angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'Reflectance in 0.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'Reflectance in 0.8 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'Reflectance in 1.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'Reflectance in 3.9 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'Atmospheric divergence' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Wind speed (space) +'Wind speed (space)' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/eswi/paramId.def b/eccodes/definitions/grib2/localConcepts/eswi/paramId.def new file mode 100644 index 00000000..b801e576 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/eswi/paramId.def @@ -0,0 +1,3000 @@ +#Pressure +'82001001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'82001002' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Pressure tendency +'82001003' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Potential vorticity +'82001004' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#ICAO Standard Atmosphere reference height +'82001005' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geopotential +'82001006' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geopotential height +'82001007' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Geometric height +'82001008' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'82001009' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Total ozone +'82001010' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Temperature +'82001011' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Virtual temperature +'82001012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Potential temperature +'82001013' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pseudo-adiabatic potential temperature +'82001014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Maximum temperature +'82001015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'82001016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'82001017' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Dew point depression (or deficit) +'82001018' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Lapse rate +'82001019' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'82001020' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar Spectra (1) +'82001021' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar Spectra (2) +'82001022' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar Spectra (3) +'82001023' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'82001024' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'82001025' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'82001026' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'82001027' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave Spectra (1) +'82001028' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave Spectra (2) +'82001029' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave Spectra (3) +'82001030' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'82001031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'82001032' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#u-component of wind +'82001033' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#v-component of wind +'82001034' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Stream function +'82001035' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'82001036' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'82001037' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coord. vertical velocity +'82001038' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Pressure Vertical velocity +'82001039' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Geometric Vertical velocity +'82001040' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Absolute vorticity +'82001041' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'82001042' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Relative vorticity +'82001043' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Relative divergence +'82001044' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Vertical u-component shear +'82001045' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'82001046' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#Direction of current +'82001047' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of current +'82001048' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#u-component of current +'82001049' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#v-component of current +'82001050' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'82001051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Relative humidity +'82001052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Humidity mixing ratio +'82001053' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Precipitable water +'82001054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Vapour pressure +'82001055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Saturation deficit +'82001056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Evaporation +'82001057' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Cloud Ice +'82001058' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Precipitation rate +'82001059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'82001060' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total precipitation +'82001061' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Large scale precipitation +'82001062' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Convective precipitation +'82001063' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Snowfall rate water equivalent +'82001064' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Water equiv. of accum. snow depth +'82001065' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Snow depth +'82001066' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'82001067' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'82001068' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'82001069' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'82001070' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total cloud cover +'82001071' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'82001072' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'82001073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'82001074' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'82001075' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud water +'82001076' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Best lifted index (to 500 hPa) +'82001077' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Convective snow +'82001078' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'82001079' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Water Temperature +'82001080' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'82001081' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Deviation of sea level from mean +'82001082' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Surface roughness +'82001083' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Albedo +'82001084' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Soil temperature +'82001085' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil moisture content +'82001086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Vegetation +'82001087' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Salinity +'82001088' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'82001089' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Water run off +'82001090' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'82001091' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Ice thickness +'82001092' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'82001093' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'82001094' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#u-component of ice drift +'82001095' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#v-component of ice drift +'82001096' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'82001097' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'82001098' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'82001099' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of combined wind waves and swell +'82001100' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'82001101' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'82001102' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'82001103' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'82001104' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'82001105' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'82001106' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'82001107' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'82001108' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'82001109' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'82001110' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Net short wave radiation flux (surface) +'82001111' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (surface) +'82001112' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net short wave radiation flux (top of atmos.) +'82001113' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Net long wave radiation flux (top of atmos.) +'82001114' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Long wave radiation flux +'82001115' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + } +#Short wave radiation flux +'82001116' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Global radiation flux +'82001117' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Brightness temperature +'82001118' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#Radiance (with respect to wave number) +'82001119' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'82001120' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Latent heat net flux +'82001121' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'82001122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Boundary layer dissipation +'82001123' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Momentum flux, u component +'82001124' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'82001125' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Wind mixing energy +'82001126' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#Maximum wind +'82001135' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Integrated cloud condensate +'82001137' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Snow depth, cold snow +'82001138' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Slope fraction +'82001160' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Snow albedo +'82001190' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Snow density +'82001191' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Soil type +'82001195' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Turbulent Kinetic Energy +'82001200' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Convective inhibation +'82001224' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } +#CAPE +'82001225' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } +#Friction velocity +'82001227' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Wind gust +'82001228' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +# SO2/SO2 +'82128001' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 8 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'82128002' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 22 ; + } +# DMS/DMS +'82128003' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10500 ; + } +# NH42SO4/(NH4)2SO4 +'82128008' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63006 ; + } +# SULFATE/SULFATE +'82128009' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63008 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'82128029' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63005 ; + } +# NO +'82128030' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 11 ; + } +# NO2/NO2 +'82128031' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 5 ; + } +# HNO3/HNO3 +'82128032' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 17 ; + } +# NH4NO3/NH4NO3 +'82128034' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63007 ; + } +# NITRATE/NITRATE +'82128035' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63009 ; + } +# NOX/NOX as NO2 +'82128044' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63001 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'82128047' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60003 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'82128048' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60004 ; + } +# NH3/NH3 +'82128050' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 9 ; + } +# NH4(+1)/NH4 +'82128051' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'82128059' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63004 ; + } +# O3 +'82128060' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 0 ; + } +# H2O2/H2O2 +'82128061' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 19 ; + } +# OH/OH +'82128062' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10000 ; + } +# CO/CO +'82128071' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 4 ; + } +# CO2/CO2 +'82128072' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 3 ; + } +# CH4/CH4 +'82128073' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 2 ; + } +# OC/Organic carbon (particles) +'82128074' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63013 ; + } +# EC/Elementary carbon (particles) +'82128075' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63012 ; + } +# Rn222/Rn222 +'82128093' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 23 ; + } +# NACL +'82128120' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62008 ; + } +# PMFINE +'82128160' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PMCOARSE/Coarse particles +'82128161' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# DUST/Dust (particles) +'82128162' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62001 ; + } +# PNUMBER/Number concentration +'82128163' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63017 ; + } +# PMASS/Particle mass conc +'82128166' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63018 ; + } +# PM10/PM10 particles +'82128167' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# PSOX/Particulate sulfate +'82128168' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63014 ; + } +# PNOX/Particulate nitrate +'82128169' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63015 ; + } +# PNHX/Particulate ammonium +'82128170' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63016 ; + } +# SOA/Secondary Organic Aerosol +'82128173' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62012 ; + } +# PM2.5/PM2.5 particles +'82128174' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PM/Total particulate matter +'82128175' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62000 ; + } +# VIS/Visibility [m] +'82128215' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'82129001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Maximum temperature +'82129015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'82129016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Visibility +'82129020' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Wind gusts +'82129032' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Relative humidity +'82129052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total cloud cover +'82129071' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'82129073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'82129074' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'82129075' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud base of significant clouds +'82129078' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top of significant clouds +'82129079' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Virtual potential temperature +'82129128' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Heat index +'82129129' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'82129130' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Snow phase change heat flux +'82129131' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Skin temperature +'82129132' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } +#Snow age +'82129133' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'82129134' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'82129135' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'82129136' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'82129137' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'82129138' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'82129139' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'82129140' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'82129141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'82129142' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Precipitable water category +'82129143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'82129144' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel +'82129150' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'82129151' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'82129152' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'82129153' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'82129154' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'82129155' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'82129156' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'82129157' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'82129158' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'82129159' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'82129160' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Pressure reduced to MSL +'82130001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Visibility +'82130020' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Relative humidity +'82130052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability thunderstorm +'82130060' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total cloud cover +'82130071' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'82130072' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'82130073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'82130074' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'82130075' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#cloud mask +'82130077' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Wind gust +'82130131' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Precipitation intensity total +'82130140' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Precipitation intensity snow +'82130141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Downward short-wave radiation flux +'82130150' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'82130151' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'82130152' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'82130153' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'82130154' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'82130155' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'82130156' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'82130157' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Downward long-wave radiation flux +'82130158' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'82130159' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'82130160' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'82130161' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud amount +'82130162' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'82130163' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'82130164' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'82130165' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'82130166' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'82130167' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'82130168' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'82130169' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'82130170' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'82130171' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'82130172' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'82130173' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'82130174' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'82130175' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'82130176' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud cover +'82130177' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Cloud ice mixing ratio +'82130178' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'82130179' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulunimbus (CB) +'82130180' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#Fraction of cloud cover +'82130181' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#Sunshine duration +'82130182' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + } +#K index +'82130183' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'82130184' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'82130185' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'82130186' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'82130187' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'82130188' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'82130189' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'82130190' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Richardson number +'82130191' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 12 ; + } +#Aerosol type +'82130192' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Ozone mixing ratio +'82130193' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Total column integrated ozone +'82130194' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'82130200' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'82130201' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'82130202' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically integrated liquid +'82130203' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'82130204' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation (radar) +'82130205' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Equivalent radar reflectivity factor for rain +'82130206' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 0 ; + } +#Equivalent radar reflectivity factor for snow +'82130207' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 1 ; + } +#Equivalent radar reflectivity factor for paramterized convection +'82130208' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 2 ; + } +#Echo top (radar) +'82130209' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 3 ; + } +#Reflectivity (radar) +'82130210' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 4 ; + } +#Composite reflectivity (radar) +'82130211' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } +#Icing top +'82130215' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'82130216' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'82130217' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'82130218' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'82130219' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'82130220' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Planetary boundary-layer regime +'82130221' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'82130222' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'82130223' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'82130224' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'82130225' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Snow free albedo +'82130226' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'82130227' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'82130228' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'82130229' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability +'82130230' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'82130235' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in section1) (meteorology) +'82130236' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Current east +'82131049' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Current north +'82131050' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Turbulent Kintetic Energy +'82131251' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Pressure reduced to MSL +'82133001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Potential temperature +'82133013' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wave spectra (1) +'82133028' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'82133029' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'82133030' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'82133031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'82133032' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Stream function +'82133035' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'82133036' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'82133037' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Direction of horizontal current +'82133047' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of horizontal current +'82133048' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#U-comp of Current +'82133049' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-comp of Current +'82133050' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'82133051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Snow Depth +'82133066' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'82133067' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'82133068' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'82133069' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'82133070' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total Cloud Cover +'82133071' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Water temperature +'82133080' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Density +'82133089' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice Cover +'82133091' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Total ice thickness +'82133092' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'82133093' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'82133094' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Ice growth rate +'82133097' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Ice divergence +'82133098' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Significant wave height +'82133100' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of Wind Waves +'82133101' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Sign Height Wind Waves +'82133102' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean Period Wind Waves +'82133103' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of Swell Waves +'82133104' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Sign Height Swell Waves +'82133105' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean Period Swell Waves +'82133106' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'82133107' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'82133108' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'82133109' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'82133110' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Mean period of waves +'82133111' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean direction of Waves +'82133112' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Flash flood guidance +'82133170' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff +'82133171' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely-sensed snow cover +'82133172' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow-covered terrain +'82133173' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent per cent of normal +'82133174' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'82133175' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'82133176' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional per cent precipitation amount fractile for an overall period +'82133180' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Per cent precipitation in a sub-period of an overall period +'82133181' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability if 0.01 inch of precipitation +'82133182' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Seconds prior to initial reference time (defined in section1) (oceonography) +'82133190' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Meridional overturning stream function +'82133191' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Turbulent Kinetic Energy +'82133200' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#C2H6/Ethane +'82134001' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10008 ; + } +#NC4H10/N-butane +'82134002' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10016 ; + } +#C2H4/Ethene +'82134003' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10009 ; + } +#C3H6/Propene +'82134004' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10015 ; + } +#OXYLENE/O-xylene +'82134005' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10023 ; + } +#HCHO/Formalydehyde +'82134006' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 7 ; + } +#C5H8/Isoprene +'82134011' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10017 ; + } +#C2H5OH/Ethanol +'82134012' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10011 ; + } +#CH3OH/Metanol +'82134013' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10004 ; + } +#NMVOC_C/Total NMVOC as C +'82134019' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60013 ; + } +#PAN/Peroxy acetyl nitrate +'82134021' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63011 ; + } +#NO3/Nitrate radical +'82134022' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 13 ; + } +#N2O5/Dinitrogen pentoxide +'82134023' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 15 ; + } +#HO2NO2/HO2NO2 +'82134026' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 18 ; + } +#HONO +'82134029' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 16 ; + } +#HO2/Hydroperhydroxyl radical +'82134031' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 14 ; + } +#H2/Molecular hydrogen +'82134032' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 20 ; + } +#O/Oxygen atomic ground state (3P) +'82134033' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 12 ; + } +#CH3O2/Methyl peroxy radical +'82134041' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10001 ; + } +#CH3O2H/Methyl hydroperoxide +'82134042' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10002 ; + } +#C2H5OOH/Ethyl hydroperoxide +'82134054' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10012 ; + } +#BENZENE +'82134070' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10021 ; + } +#TOLUENE +'82134092' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10022 ; + } +#HCN/Vaetecyanid +'82134111' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10006 ; + } +#Volcanic ash +'82134128' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Aerosol optical thickness at 0.635 micro-m +'82135180' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 micro-m +'82135181' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 micro-m +'82135182' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'82135183' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain fraction of total cloud water +'82135208' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rain factor +'82135209' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'82135210' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'82135211' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Total water precipitation +'82135212' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'82135213' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water) +'82135214' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Large scale precipitation rate +'82135215' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'82135216' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'82135217' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'82135218' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'82135219' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'82135220' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Snow depth water equivalent +'82135221' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow evaporation +'82135222' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 62 ; + } +#Total column integrated water vapour +'82135223' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'82135224' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'82135225' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'82135226' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'82135227' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Specific cloud liquid water content +'82135228' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'82135229' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Specific rain water content +'82135230' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'82135231' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#u-component of wind (gust) +'82135232' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'82135233' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'82135234' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'82135235' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#u-component storm motion +'82135236' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#v-component storm motion +'82135237' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'82135238' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Eta coordinate vertical velocity +'82135239' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Altimeter setting +'82135240' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'82135241' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'82135242' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'82135243' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'82135244' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'82135245' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'82135246' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'82135247' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'82135248' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-gridscale orography +'82135249' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Angle of sub-gridscale orography +'82135250' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } +#Slope of sub-gridscale orography +'82135251' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Gravity wave dissipation +'82135252' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Anisotropy of sub-gridscale orography +'82135253' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Natural logarithm of pressure in Pa +'82135254' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Pressure +'82136001' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Specific humidity +'82136051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Precipitable water +'82136054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Snow depth +'82136066' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Total cloud cover +'82136071' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'82136073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Evapotranspiration +'82136128' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'82136129' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'82136130' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'82136131' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Moisture availability +'82136132' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'82136133' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'82136134' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'82136135' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'82136136' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'82136137' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'82136138' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'82136139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Humidity parameter in canopy conductance +'82136140' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Soil moisture parameter in canopy conductance +'82136141' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Soil moisture +'82136142' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Column-integrated soil water +'82136143' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'82136144' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'82136145' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Wilting point +'82136146' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } +#Volumetric wilting point +'82136147' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Number of soil layers in root zone +'82136148' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Liquid volumetric soil moisture (non-frozen) +'82136149' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'82136150' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'82136151' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'82136152' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'82136153' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'82136154' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'82136155' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'82136156' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Scaled radiance +'82136180' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'82136181' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'82136182' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'82136183' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'82136184' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'82136185' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'82136186' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'82136187' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'82136188' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'82136189' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Estimated precipitation +'82136190' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instananeous rain rate +'82136191' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'82136192' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'82136193' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'82136194' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'82136195' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixel used +'82136196' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'82136197' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'82136198' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'82136199' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'82136200' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'82136201' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'82136202' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'82136210' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Wind speed (space) +'82136211' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/eswi/shortName.def b/eccodes/definitions/grib2/localConcepts/eswi/shortName.def new file mode 100644 index 00000000..20b83669 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/eswi/shortName.def @@ -0,0 +1,3000 @@ +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Pressure tendency +'ptend' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Potential vorticity +'pv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geopotential +'z' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geopotential height +'gh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Geometric height +'h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'hstdv' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Total ozone +'tozne' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Virtual temperature +'vtmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'dpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Dew point depression (or deficit) +'dptd' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Lapse rate +'lapr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar Spectra (1) +'rdsp1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar Spectra (2) +'rdsp2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar Spectra (3) +'rdsp3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'ta' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'presa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave Spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave Spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave Spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#u-component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#v-component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coord. vertical velocity +'sgcvv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Pressure Vertical velocity +'omega' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Geometric Vertical velocity +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Absolute vorticity +'absv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'absd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Relative vorticity +'vo' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Relative divergence +'d' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Vertical u-component shear +'vusch' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'vvsch' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#Direction of current +'dirc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of current +'spc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#u-component of current +'ucurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#v-component of current +'vcurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Humidity mixing ratio +'mixr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Vapour pressure +'vp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Saturation deficit +'satd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Evaporation +'e' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Cloud Ice +'cice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Precipitation rate +'prate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Large scale precipitation +'lsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Convective precipitation +'acpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Snowfall rate water equivalent +'srweq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Water equiv. of accum. snow depth +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Snow depth +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total cloud cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'ccc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud water +'cwat' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Convective snow +'csf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'lsf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Water Temperature +'wtmp' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'lsm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Deviation of sea level from mean +'dslm' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Surface roughness +'sr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Albedo +'al' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Soil temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil moisture content +'ssw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Vegetation +'veg' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Salinity +'s' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Water run off +'watr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'icec' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#u-component of ice drift +'uice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#v-component of ice drift +'vice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'snom' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'mdww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'prwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Net short wave radiation flux (surface) +'nswrs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net short wave radiation flux (top of atmos.) +'nswrt' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Net long wave radiation flux (top of atmos.) +'nlwrt' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Long wave radiation flux +'lwavr' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + } +#Short wave radiation flux +'swavr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Global radiation flux +'grad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Brightness temperature +'btmp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'swrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Latent heat net flux +'lhtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'shtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Boundary layer dissipation +'bld' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Momentum flux, u component +'uflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'vflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Wind mixing energy +'wmixe' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#Maximum wind +'maxgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Integrated cloud condensate +'icc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Snow depth, cold snow +'sd_cold' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Slope fraction +'slfr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Snow albedo +'asn' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Snow density +'dsn' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Soil type +'slt' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Turbulent Kinetic Energy +'TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Convective inhibation +'ci' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } +#CAPE +'CAPE' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } +#Friction velocity +'vfr' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Wind gust +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +# SO2/SO2 +' SO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 8 ; + } +# SO4(2-)/SO4(2-) (sulphate) +' SO4(2-)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 22 ; + } +# DMS/DMS +' DMS' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10500 ; + } +# NH42SO4/(NH4)2SO4 +' NH42SO4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63006 ; + } +# SULFATE/SULFATE +' SFT' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63008 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +' SOX_S' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63005 ; + } +# NO +' NO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 11 ; + } +# NO2/NO2 +' NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 5 ; + } +# HNO3/HNO3 +' HNO3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 17 ; + } +# NH4NO3/NH4NO3 +' NH4NO3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63007 ; + } +# NITRATE/NITRATE +' NITRATE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63009 ; + } +# NOX/NOX as NO2 +' NOX' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63001 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +' NOX_N' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60003 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +' NOY_N' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60004 ; + } +# NH3/NH3 +' NH3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 9 ; + } +# NH4(+1)/NH4 +' NH4(+1)' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +' NHX_N' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63004 ; + } +# O3 +' O3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 0 ; + } +# H2O2/H2O2 +' H2O2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 19 ; + } +# OH/OH +' OH' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10000 ; + } +# CO/CO +' CO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 4 ; + } +# CO2/CO2 +' CO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 3 ; + } +# CH4/CH4 +' CH4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 2 ; + } +# OC/Organic carbon (particles) +' OC' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63013 ; + } +# EC/Elementary carbon (particles) +' EC' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63012 ; + } +# Rn222/Rn222 +' Rn222' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 23 ; + } +# NACL +' NACL' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62008 ; + } +# PMFINE +' PMFINE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PMCOARSE/Coarse particles +' PMCOARSE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# DUST/Dust (particles) +' DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62001 ; + } +# PNUMBER/Number concentration +' PNUMBER' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63017 ; + } +# PMASS/Particle mass conc +' PMASS' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63018 ; + } +# PM10/PM10 particles +' PM10' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# PSOX/Particulate sulfate +' PSOX' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63014 ; + } +# PNOX/Particulate nitrate +' PNOX' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63015 ; + } +# PNHX/Particulate ammonium +' PNHX' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63016 ; + } +# SOA/Secondary Organic Aerosol +' SOA' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62012 ; + } +# PM2.5/PM2.5 particles +' PM2.5' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PM/Total particulate matter +' PM' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62000 ; + } +# VIS/Visibility [m] +' VIS' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Wind gusts +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total cloud cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud base of significant clouds +'cbsig' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top of significant clouds +'ctsig' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Virtual potential temperature +'vpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Heat index +'hindx' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'wcf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Snow phase change heat flux +'snohf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Skin temperature +'skt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } +#Snow age +'snag' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'absh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'ptype' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'iliqw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'clwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'icmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'rwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'snmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Precipitable water category +'pwcat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel +'grle' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'crain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'cfrzr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'cicep' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'csnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'cprat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'cpofp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'pev' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'pevpr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'snowc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Pressure reduced to MSL +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability thunderstorm +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total cloud cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'ccc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#cloud mask +'cm' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Wind gust +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Precipitation intensity total +'pit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Precipitation intensity snow +'pis' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Downward short-wave radiation flux +'dswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'uswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'nswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'photar' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'nswrfcs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'dwuvr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'uviucs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'uvi' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'nlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'nlwrfcs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud amount +'cdca' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'tmaxt' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'thunc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'cdcb' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'ceil' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'cdlyr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'cwork' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'cuefi' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'tcolw' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'tcoli' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'tcolc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'fice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud cover +'cc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Cloud ice mixing ratio +'cdcimr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'suns' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulunimbus (CB) +'cbext' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#Fraction of cloud cover +'fracc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#Sunshine duration +'sund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + } +#K index +'kx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'kox' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'totalx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'sx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'hlcy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'ehlx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'4lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Richardson number +'ri' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 12 ; + } +#Aerosol type +'aerot' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Ozone mixing ratio +'o3mx' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Total column integrated ozone +'tcioz' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'bswid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'bref' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'brvel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically integrated liquid +'veril' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'lmaxbr' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation (radar) +'prrad' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Equivalent radar reflectivity factor for rain +'eqrrra' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 0 ; + } +#Equivalent radar reflectivity factor for snow +'eqrrsn' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 1 ; + } +#Equivalent radar reflectivity factor for paramterized convection +'eqrfpc' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 2 ; + } +#Echo top (radar) +'ectop_rad' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 3 ; + } +#Reflectivity (radar) +'refl_rad' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 4 ; + } +#Composite reflectivity (radar) +'corefl_rad' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } +#Icing top +'icit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'icib' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'ici' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'turbt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'turbb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'turb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Planetary boundary-layer regime +'pblr' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'conti' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'contet' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'contt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'contb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Snow free albedo +'snfalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'ici_prop' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'icturb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'cat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability +'scld_prob' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'text' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in section1) (meteorology) +'secpref' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Current east +'ecurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Current north +'ncurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Turbulent Kintetic Energy +'TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Pressure reduced to MSL +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Direction of horizontal current +'dirhcur' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of horizontal current +'spdhcur' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#U-comp of Current +'ucur' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-comp of Current +'vcur' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Snow Depth +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total Cloud Cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Water temperature +'wtmp' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice Cover +'icec' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Total ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Significant wave height +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of Wind Waves +'wvdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Sign Height Wind Waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean Period Wind Waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of Swell Waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Sign Height Swell Waves +'shps' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean Period Swell Waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'dirpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Mean period of waves +'mpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean direction of Waves +'wadir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Flash flood guidance +'ffldg' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff +'ffldro' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely-sensed snow cover +'rssc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow-covered terrain +'esct' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent per cent of normal +'swepon' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'bgrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'ssrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional per cent precipitation amount fractile for an overall period +'cppop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Per cent precipitation in a sub-period of an overall period +'pposp' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability if 0.01 inch of precipitation +'pop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Seconds prior to initial reference time (defined in section1) (oceonography) +'tsec' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Meridional overturning stream function +'mosf' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Turbulent Kinetic Energy +'TKE' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#C2H6/Ethane +'C2H6' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10008 ; + } +#NC4H10/N-butane +'NC4H10' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10016 ; + } +#C2H4/Ethene +'C2H4' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10009 ; + } +#C3H6/Propene +'C3H6' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10015 ; + } +#OXYLENE/O-xylene +'OXYLENE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10023 ; + } +#HCHO/Formalydehyde +'HCHO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 7 ; + } +#C5H8/Isoprene +'C5H8' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10017 ; + } +#C2H5OH/Ethanol +'C2H5OH' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10011 ; + } +#CH3OH/Metanol +'CH3OH' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10004 ; + } +#NMVOC_C/Total NMVOC as C +'NMVOC_C' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60013 ; + } +#PAN/Peroxy acetyl nitrate +'PAN' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63011 ; + } +#NO3/Nitrate radical +'NO3' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 13 ; + } +#N2O5/Dinitrogen pentoxide +'N2O5' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 15 ; + } +#HO2NO2/HO2NO2 +'HO2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 18 ; + } +#HONO +'HONO' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 16 ; + } +#HO2/Hydroperhydroxyl radical +'HO2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 14 ; + } +#H2/Molecular hydrogen +'H2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 20 ; + } +#O/Oxygen atomic ground state (3P) +'O' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 12 ; + } +#CH3O2/Methyl peroxy radical +'CH3O2' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10001 ; + } +#CH3O2H/Methyl hydroperoxide +'CH3O2H' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10002 ; + } +#C2H5OOH/Ethyl hydroperoxide +'C2H5OOH' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10012 ; + } +#BENZENE +'BENZENE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10021 ; + } +#TOLUENE +'TOLUENE' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10022 ; + } +#HCN/Vaetecyanid +'HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10006 ; + } +#Volcanic ash +'va' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Aerosol optical thickness at 0.635 micro-m +'AOD-635' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 micro-m +'AOD-810' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 micro-m +'AOD-1640' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'Ang' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain fraction of total cloud water +'fra' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rain factor +'facra' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'tqr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tqs' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Total water precipitation +'twatp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'tsnowp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water) +'tcw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Large scale precipitation rate +'lsprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'prs_gsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'tsrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'csrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'lssrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Snow depth water equivalent +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow evaporation +'se' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 62 ; + } +#Total column integrated water vapour +'tciwv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'rprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'sprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'fprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'iprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Specific cloud liquid water content +'clwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'ciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Specific rain water content +'crwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'cswc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#u-component of wind (gust) +'ugust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'vgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'vwsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'mflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#u-component storm motion +'ustm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#v-component storm motion +'vstm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'cd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Eta coordinate vertical velocity +'eta' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Altimeter setting +'alts' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'thick' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'presalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'denalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5wavh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'u-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'v-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'hbpl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5wava' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-gridscale orography +'stdsgor' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Angle of sub-gridscale orography +'angsgor' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } +#Slope of sub-gridscale orography +'slsgor' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Natural logarithm of pressure in Pa +'nlpres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Snow depth +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Total cloud cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Evapotranspiration +'evapt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'z' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'lu' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Moisture availability +'mstav' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'sfexc' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'w_i' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'bmixl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'ccond' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'prs_min' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'rcs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'rct' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Humidity parameter in canopy conductance +'rcq' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Soil moisture parameter in canopy conductance +'rcsol' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Soil moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Column-integrated soil water +'w_cl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'hflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'vsw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Wilting point +'wilt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } +#Volumetric wilting point +'vwiltm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Number of soil layers in root zone +'rlyrs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Liquid volumetric soil moisture (non-frozen) +'liqvsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'voltso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'transo' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'voldec' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'direc' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'soilp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'vsosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'satosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Scaled radiance +'rad_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'al_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'btmp_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'pwat_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'li_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'pctp_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'skt_sc' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'cmsk' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'pst' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'fde' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Estimated precipitation +'estp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instananeous rain rate +'irrate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'ctoph' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'ctophqi' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'estu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'estv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixel used +'npixu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'solza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'raza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'rf06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'rf08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'rf16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'rf39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'atmdiv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Wind speed (space) +'ws_sp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/eswi/units.def b/eccodes/definitions/grib2/localConcepts/eswi/units.def new file mode 100644 index 00000000..57205211 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/eswi/units.def @@ -0,0 +1,3000 @@ +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pa/s' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Potential vorticity +'K*m2 / kg / s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geopotential +'m2/s2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Geopotential height +'Gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Geometric height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Total ozone +'Dobson' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Virtual temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Dew point depression (or deficit) +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Lapse rate +'K/m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar Spectra (1) +'-' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar Spectra (2) +'-' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar Spectra (3) +'-' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'Gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave Spectra (1) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave Spectra (2) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave Spectra (3) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'Deg. true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#u-component of wind +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#v-component of wind +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Stream function +'m2/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'m2/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'m2/s2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coord. vertical velocity +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Pressure Vertical velocity +'Pa/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Geometric Vertical velocity +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Absolute vorticity +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Relative vorticity +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Relative divergence +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Vertical u-component shear +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#Direction of current +'Deg. true' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of current +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#u-component of current +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#v-component of current +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Humidity mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Precipitable water +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Vapour pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Saturation deficit +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Evaporation +'m of water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Cloud Ice +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total precipitation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Large scale precipitation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Convective precipitation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Snowfall rate water equivalent +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Water equiv. of accum. snow depth +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Snow depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud water +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Best lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Convective snow +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Water Temperature +'K' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Land-sea mask (1=land 0=sea) (see note) +'Fraction' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Deviation of sea level from mean +'m' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Surface roughness +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil moisture content +'kg/m2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Vegetation +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Salinity +'kg/kg' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'kg/m3' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Water run off +'kg/m2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Ice cover (ice=1 no ice=0)(see note) +'Fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Ice thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'deg. true' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#u-component of ice drift +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#v-component of ice drift +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'1/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of combined wind waves and swell +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of wind waves +'deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Net short wave radiation flux (surface) +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (surface) +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net short wave radiation flux (top of atmos.) +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Net long wave radiation flux (top of atmos.) +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Long wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 2 ; + } +#Short wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Global radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Brightness temperature +'K' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#Radiance (with respect to wave number) +'W/m/sr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'W/m3/sr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Latent heat net flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Boundary layer dissipation +'W/m2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Momentum flux, u component +'N/m2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'N/m2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Wind mixing energy +'J' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#Maximum wind +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Integrated cloud condensate +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Snow depth, cold snow +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Slope fraction +'Fraction' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Snow albedo +'Fraction' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Snow density +'?' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Soil type +'code' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Turbulent Kinetic Energy +'J/kg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Convective inhibation +'J/kg' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + } +#CAPE +'J/kg' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } +#Friction velocity +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Wind gust +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +# SO2/SO2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 8 ; + } +# SO4(2-)/SO4(2-) (sulphate) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 22 ; + } +# DMS/DMS +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10500 ; + } +# NH42SO4/(NH4)2SO4 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63006 ; + } +# SULFATE/SULFATE +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63008 ; + } +# SOX_S/All oxidised sulphur compounds (as sulphur) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63005 ; + } +# NO +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 11 ; + } +# NO2/NO2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 5 ; + } +# HNO3/HNO3 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 17 ; + } +# NH4NO3/NH4NO3 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63007 ; + } +# NITRATE/NITRATE +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63009 ; + } +# NOX/NOX as NO2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63001 ; + } +# NOX_N/NO2+NO (NOx) as nitrogen +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60003 ; + } +# NOY_N/All oxidised N-compounds (as nitrogen) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60004 ; + } +# NH3/NH3 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 9 ; + } +# NH4(+1)/NH4 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10 ; + } +# NHX_N/All reduced nitrogen (as nitrogen) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63004 ; + } +# O3 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 0 ; + } +# H2O2/H2O2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 19 ; + } +# OH/OH +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10000 ; + } +# CO/CO +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 4 ; + } +# CO2/CO2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 3 ; + } +# CH4/CH4 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 2 ; + } +# OC/Organic carbon (particles) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63013 ; + } +# EC/Elementary carbon (particles) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63012 ; + } +# Rn222/Rn222 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 23 ; + } +# NACL +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62008 ; + } +# PMFINE +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PMCOARSE/Coarse particles +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# DUST/Dust (particles) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62001 ; + } +# PNUMBER/Number concentration +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63017 ; + } +# PMASS/Particle mass conc +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63018 ; + } +# PM10/PM10 particles +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40008 ; + } +# PSOX/Particulate sulfate +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63014 ; + } +# PNOX/Particulate nitrate +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63015 ; + } +# PNHX/Particulate ammonium +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63016 ; + } +# SOA/Secondary Organic Aerosol +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62012 ; + } +# PM2.5/PM2.5 particles +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 40009 ; + } +# PM/Total particulate matter +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 62000 ; + } +# VIS/Visibility [m] +' m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Wind gusts +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Total cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Cloud base of significant clouds +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top of significant clouds +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Virtual potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Heat index +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Snow phase change heat flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Skin temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + } +#Snow age +'day' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'kg/m3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'kg/kg/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Precipitable water category +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'code' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'kg/kg/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'W/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability thunderstorm +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Total cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Convective cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 2 ; + } +#Low cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cove +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#cloud mask +'fraction' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Wind gust +'M/S' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#Precipitation intensity total +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Precipitation intensity snow +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Downward short-wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'W/m2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Downward long-wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'W/m2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud amount +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'Code' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'Code' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'J/kg' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'kg/kg' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'kg/m2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Cloud ice mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulunimbus (CB) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#Fraction of cloud cover +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#Sunshine duration +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 33 ; + } +#K index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'J/kg' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Richardson number +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 12 ; + } +#Aerosol type +'Code' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Ozone mixing ratio +'kg/kg' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Total column integrated ozone +'Dobson' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'m/s' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'m/s' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically integrated liquid +'kg/m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation (radar) +'kg/m' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Equivalent radar reflectivity factor for rain +'mm6/m3' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 0 ; + } +#Equivalent radar reflectivity factor for snow +'mm6/m3' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 1 ; + } +#Equivalent radar reflectivity factor for paramterized convection +'mm6/m3' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 2 ; + } +#Echo top (radar) +'m' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 3 ; + } +#Reflectivity (radar) +'dB' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 4 ; + } +#Composite reflectivity (radar) +'dB' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 5 ; + } +#Icing top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Planetary boundary-layer regime +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Snow free albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'CCITTIA5' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in section1) (meteorology) +'s' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Current east +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Current north +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Turbulent Kintetic Energy +'J/kg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wave spectra (1) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'-' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind direction +'Deg true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Wind speed +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Stream function +'m2/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'m2/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Montgomery stream function +'m2/s2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Direction of horizontal current +'Deg true' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Speed of horizontal current +'m/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#U-comp of Current +'cm/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-comp of Current +'cm/s' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Specific humidity +'g/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Snow Depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Total Cloud Cover +'Fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Water temperature +'K' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Density +'kg/m3' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice Cover +'Fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Total ice thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Deg true' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Ice growth rate +'m/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Ice divergence +'1/s' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Significant wave height +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Direction of Wind Waves +'Deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Sign Height Wind Waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean Period Wind Waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of Swell Waves +'Deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Sign Height Swell Waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean Period Swell Waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Primary wave direction +'Deg true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave direction +'Deg true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Secondary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Mean period of waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean direction of Waves +'Deg. true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Flash flood guidance +'kg/m2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff +'kg/m2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely-sensed snow cover +'Code' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow-covered terrain +'Code' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent per cent of normal +'%' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'kg/m2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'kg/m2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional per cent precipitation amount fractile for an overall period +'kg/m2' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Per cent precipitation in a sub-period of an overall period +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability if 0.01 inch of precipitation +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Seconds prior to initial reference time (defined in section1) (oceonography) +'s' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Meridional overturning stream function +'m3/s' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Turbulent Kinetic Energy +'J/kg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#C2H6/Ethane +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10008 ; + } +#NC4H10/N-butane +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10016 ; + } +#C2H4/Ethene +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10009 ; + } +#C3H6/Propene +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10015 ; + } +#OXYLENE/O-xylene +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10023 ; + } +#HCHO/Formalydehyde +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 7 ; + } +#C5H8/Isoprene +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10017 ; + } +#C2H5OH/Ethanol +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10011 ; + } +#CH3OH/Metanol +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10004 ; + } +#NMVOC_C/Total NMVOC as C +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 60013 ; + } +#PAN/Peroxy acetyl nitrate +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 63011 ; + } +#NO3/Nitrate radical +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 13 ; + } +#N2O5/Dinitrogen pentoxide +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 15 ; + } +#HO2NO2/HO2NO2 +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 18 ; + } +#HONO +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 16 ; + } +#HO2/Hydroperhydroxyl radical +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 14 ; + } +#H2/Molecular hydrogen +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 20 ; + } +#O/Oxygen atomic ground state (3P) +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 12 ; + } +#CH3O2/Methyl peroxy radical +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10001 ; + } +#CH3O2H/Methyl hydroperoxide +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10002 ; + } +#C2H5OOH/Ethyl hydroperoxide +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10012 ; + } +#BENZENE +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10021 ; + } +#TOLUENE +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10022 ; + } +#HCN/Vaetecyanid +'-' = { + discipline = 0 ; + parameterCategory = 20 ; + atmosphericChemicalConsituentType = 10006 ; + } +#Volcanic ash +'Code' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Aerosol optical thickness at 0.635 micro-m +'1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 micro-m +'1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 micro-m +'1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain fraction of total cloud water +'Proportion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rain factor +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Total water precipitation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water) +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Large scale precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'m/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'m/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'m/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Snow depth water equivalent +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow evaporation +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 62 ; + } +#Total column integrated water vapour +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'kg/m2/s' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Specific cloud liquid water content +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Specific rain water content +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#u-component of wind (gust) +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'N/m2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#u-component storm motion +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#v-component storm motion +'m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Numeric' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Eta coordinate vertical velocity +'1/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Altimeter setting +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'N/m2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'N/m2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-gridscale orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Angle of sub-gridscale orography +'rad' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 21 ; + } +#Slope of sub-gridscale orography +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 22 ; + } +#Gravity wave dissipation +'W/m2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Anisotropy of sub-gridscale orography +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Natural logarithm of pressure in Pa +'Numeric' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Specific humidity +'kg/kg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Precipitable water +'kg/m2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Snow depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Total cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + } +#Low cloud cover +'fraction' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Evapotranspiration +'1/kg2/s' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'Code' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Moisture availability +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'kg/m2/s' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'kg/m2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'m/s' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'s/m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Humidity parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Soil moisture parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Soil moisture +'kg/m3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Column-integrated soil water +'kg/m2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'W/m2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'m3/m3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Wilting point +'kg/m3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + } +#Volumetric wilting point +'m3/m3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Number of soil layers in root zone +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Liquid volumetric soil moisture (non-frozen) +'m3/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'m3/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'kg/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'m3/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'kg/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'m3/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'kg/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'kg/m3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Scaled radiance +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Code' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Code' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Code' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Estimated precipitation +'kg/m2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instananeous rain rate +'kg/m2/s' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Code' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'m/s' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'m/s' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixel used +'Numeric' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'1/s' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Wind speed (space) +'m/s' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } diff --git a/eccodes/definitions/grib2/localConcepts/kwbc/name.def b/eccodes/definitions/grib2/localConcepts/kwbc/name.def new file mode 100644 index 00000000..aa975903 --- /dev/null +++ b/eccodes/definitions/grib2/localConcepts/kwbc/name.def @@ -0,0 +1,1651 @@ +# Automatically generated by ./create_def.pl, do not edit +#Convective available potential energy +'Convective available potential energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + } +#Snow phase change heat flux +'Snow phase change heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#Condensate +'Condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 195 ; + } +#Horizontal moisture convergence +'Horizontal moisture convergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 197 ; + } +#Categorical rain +'Categorical rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } +#Categorical freezing rain +'Categorical freezing rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } +#Categorical ice pellets +'Categorical ice pellets' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } +#Categorical snow +'Categorical snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } +#Convective precipitation rate +'Convective precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 196 ; + } +#Percent frozen precipitation +'Percent frozen precipitation' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 199 ; + } +#Potential evaporation rate +'Potential evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 200 ; + } +#Snow cover +'Snow cover' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 201 ; + } +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 202 ; + } +#Rime factor +'Rime factor' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 203 ; + } +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 204 ; + } +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 205 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'Water equivalent of accumulated snow depth (deprecated)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Vertical speed shear +'Vertical speed shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 192 ; + } +#Horizontal momentum flux +'Horizontal momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 193 ; + } +#U-component storm motion +'U-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 194 ; + } +#V-component storm motion +'V-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 195 ; + } +#Drag coefficient +'Drag coefficient' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 196 ; + } +#Frictional velocity +'Frictional velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 197 ; + } +#5-wave geopotential height +'5-wave geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Planetary boundary layer height +'Planetary boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + } +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 192 ; + } +#Upward short-wave radiation flux +'Upward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 193 ; + } +#UV index +'UV index ' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 196 ; + } +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 192 ; + } +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 193 ; + } +#Non-convective cloud cover +'Non-convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 192 ; + } +#Cloud work function +'Cloud work function' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 193 ; + } +#Convective cloud efficiency +'Convective cloud efficiency' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 194 ; + } +#Total column-integrated cloud water +'Total column-integrated cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 196 ; + } +#Total column-integrated cloud ice +'Total column-integrated cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 197 ; + } +#Total column-integrated condensate +'Total column-integrated condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 198 ; + } +#Ice fraction of total condensate +'Ice fraction of total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 199 ; + } +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 192 ; + } +#Best (4-layer) lifted index +'Best (4-layer) lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 193 ; + } +#Ozone mixing ratio +'Ozone mixing ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 192 ; + } +#Maximum snow albedo +'Maximum snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 192 ; + } +#Snow free albedo +'Snow free albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 193 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 194 ; + } +#Baseflow-groundwater runoff +'Baseflow-groundwater runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#Storm surface runoff +'Storm surface runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#Ground heat flux +'Ground heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#Moisture availability +'Moisture availability' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#Exchange coefficient +'Exchange coefficient' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Plant canopy surface water +'Plant canopy surface water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Blackadar mixing length scale +'Blackadar mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Canopy conductance +'Canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Minimal stomatal resistance +'Minimal stomatal resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } +#Solar parameter in canopy conductance +'Solar parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 202 ; + } +#Temperature parameter in canopy conductance +'Temperature parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 203 ; + } +#Soil moisture parameter in canopy conductance +'Soil moisture parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 205 ; + } +#Humidity parameter in canopy conductance +'Humidity parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 204 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#Number of soil layers in root zone +'Number of soil layers in root zone' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 196 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 197 ; + } +#Temperature tendency by all radiation +'Temperature tendency by all radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 193 ; + } +#Relative Error Variance +'Relative Error Variance' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 194 ; + } +#Large Scale Condensate Heating rate +'Large Scale Condensate Heating rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 195 ; + } +#Deep Convective Heating rate +'Deep Convective Heating rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 196 ; + } +#Total Downward Heat Flux at Surface +'Total Downward Heat Flux at Surface' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 197 ; + } +#Temperature Tendency By All Physics +'Temperature Tendency By All Physics' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Temperature Tendency By Non-radiation Physics +'Temperature Tendency By Non-radiation Physics' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 199 ; + } +#Standard Dev. of IR Temp. over 1x1 deg. area +'Standard Dev. of IR Temp. over 1x1 deg. area' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } +#Shallow Convective Heating rate +'Shallow Convective Heating rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } +#Vertical Diffusion Heating rate +'Vertical Diffusion Heating rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 202 ; + } +#Potential temperature at top of viscous sublayer +'Potential temperature at top of viscous sublayer' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 203 ; + } +#Tropical Cyclone Heat Potential +'Tropical Cyclone Heat Potential' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 204 ; + } +#Minimum Relative Humidity +'Minimum Relative Humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 198 ; + } +#Total Icing Potential Diagnostic +'Total Icing Potential Diagnostic' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 206 ; + } +#Number concentration for ice particles +'Number concentration for ice particles' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 207 ; + } +#Snow temperature +'Snow temperature' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 208 ; + } +#Total column-integrated supercooled liquid water +'Total column-integrated supercooled liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 209 ; + } +#Total column-integrated melting ice +'Total column-integrated melting ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 210 ; + } +#Evaporation - Precipitation +'Evaporation - Precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 211 ; + } +#Sublimation (evaporation from snow) +'Sublimation (evaporation from snow)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 212 ; + } +#Deep Convective Moistening Rate +'Deep Convective Moistening Rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 213 ; + } +#Shallow Convective Moistening Rate +'Shallow Convective Moistening Rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 214 ; + } +#Vertical Diffusion Moistening Rate +'Vertical Diffusion Moistening Rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 215 ; + } +#Condensation Pressure of Parcali Lifted From Indicate Surface +'Condensation Pressure of Parcali Lifted From Indicate Surface' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 216 ; + } +#Large scale moistening rate +'Large scale moistening rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 217 ; + } +#Specific humidity at top of viscous sublayer +'Specific humidity at top of viscous sublayer' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 218 ; + } +#Maximum specific humidity at 2m +'Maximum specific humidity at 2m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 219 ; + } +#Minimum specific humidity at 2m +'Minimum specific humidity at 2m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 220 ; + } +#Liquid precipitation (rainfall) +'Liquid precipitation (rainfall)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 221 ; + } +#Snow temperature, depth-avg +'Snow temperature, depth-avg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 222 ; + } +#Total precipitation (nearest grid point) +'Total precipitation (nearest grid point)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 223 ; + } +#Convective precipitation (nearest grid point) +'Convective precipitation (nearest grid point)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 224 ; + } +#Freezing Rain +'Freezing Rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 225 ; + } +#Latitude of U Wind Component of Velocity +'Latitude of U Wind Component of Velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 198 ; + } +#Longitude of U Wind Component of Velocity +'Longitude of U Wind Component of Velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 199 ; + } +#Latitude of V Wind Component of Velocity +'Latitude of V Wind Component of Velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 200 ; + } +#Longitude of V Wind Component of Velocity +'Longitude of V Wind Component of Velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 201 ; + } +#Latitude of Presure Point +'Latitude of Presure Point' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 202 ; + } +#Longitude of Presure Point +'Longitude of Presure Point' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 203 ; + } +#Vertical Eddy Diffusivity Heat exchange +'Vertical Eddy Diffusivity Heat exchange' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + } +#Covariance between Meridional and Zonal Components of the wind. +'Covariance between Meridional and Zonal Components of the wind.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 205 ; + } +#Covariance between Temperature and Zonal Components of the wind. +'Covariance between Temperature and Zonal Components of the wind.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 206 ; + } +#Covariance between Temperature and Meridional Components of the wind. +'Covariance between Temperature and Meridional Components of the wind.' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 207 ; + } +#Vertical Diffusion Zonal Acceleration +'Vertical Diffusion Zonal Acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } +#Vertical Diffusion Meridional Acceleration +'Vertical Diffusion Meridional Acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } +#Gravity wave drag zonal acceleration +'Gravity wave drag zonal acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } +#Gravity wave drag meridional acceleration +'Gravity wave drag meridional acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } +#Convective zonal momentum mixing acceleration +'Convective zonal momentum mixing acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 212 ; + } +#Convective meridional momentum mixing acceleration +'Convective meridional momentum mixing acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 213 ; + } +#Tendency of vertical velocity +'Tendency of vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 214 ; + } +#Omega (Dp/Dt) divide by density +'Omega (Dp/Dt) divide by density' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 215 ; + } +#Convective Gravity wave drag zonal acceleration +'Convective Gravity wave drag zonal acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 216 ; + } +#Convective Gravity wave drag meridional acceleration +'Convective Gravity wave drag meridional acceleration' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 217 ; + } +#Velocity Point Model Surface +'Velocity Point Model Surface' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 218 ; + } +#Potential Vorticity (Mass-Weighted) +'Potential Vorticity (Mass-Weighted)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 219 ; + } +#MSLP (Eta model reduction) +'MSLP (Eta model reduction)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#MSLP (MAPS System Reduction) +'MSLP (MAPS System Reduction)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + } +#3-hr pressure tendency (Std. Atmos. Reduction) +'3-hr pressure tendency (Std. Atmos. Reduction)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } +#Pressure of level from which parcel was lifted +'Pressure of level from which parcel was lifted' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + } +#X-gradient of Log Pressure +'X-gradient of Log Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 201 ; + } +#Y-gradient of Log Pressure +'Y-gradient of Log Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 202 ; + } +#X-gradient of Height +'X-gradient of Height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 203 ; + } +#Y-gradient of Height +'Y-gradient of Height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 204 ; + } +#Layer Thickness +'Layer Thickness' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 205 ; + } +#Natural Log of Surface Pressure +'Natural Log of Surface Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 206 ; + } +#Convective updraft mass flux +'Convective updraft mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 207 ; + } +#Convective downdraft mass flux +'Convective downdraft mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 208 ; + } +#Convective detrainment mass flux +'Convective detrainment mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 209 ; + } +#Mass Point Model Surface +'Mass Point Model Surface' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 210 ; + } +#Geopotential Height (nearest grid point) +'Geopotential Height (nearest grid point)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 211 ; + } +#Pressure (nearest grid point) +'Pressure (nearest grid point)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 212 ; + } +#UV-B downward solar flux +'UV-B downward solar flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 194 ; + } +#Clear sky UV-B downward solar flux +'Clear sky UV-B downward solar flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 195 ; + } +#Clear Sky Downward Solar Flux +'Clear Sky Downward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 196 ; + } +#Solar Radiative Heating Rate +'Solar Radiative Heating Rate' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 197 ; + } +#Clear Sky Upward Solar Flux +'Clear Sky Upward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 198 ; + } +#Cloud Forcing Net Solar Flux +'Cloud Forcing Net Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 199 ; + } +#Visible Beam Downward Solar Flux +'Visible Beam Downward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 200 ; + } +#Visible Diffuse Downward Solar Flux +'Visible Diffuse Downward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 201 ; + } +#Near IR Beam Downward Solar Flux +'Near IR Beam Downward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 202 ; + } +#Near IR Diffuse Downward Solar Flux +'Near IR Diffuse Downward Solar Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 203 ; + } +#Downward Total radiation Flux +'Downward Total radiation Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 204 ; + } +#Upward Total radiation Flux +'Upward Total radiation Flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 205 ; + } +#Long-Wave Radiative Heating Rate +'Long-Wave Radiative Heating Rate' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 194 ; + } +#Clear Sky Upward Long Wave Flux +'Clear Sky Upward Long Wave Flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 195 ; + } +#Clear Sky Downward Long Wave Flux +'Clear Sky Downward Long Wave Flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 196 ; + } +#Cloud Forcing Net Long Wave Flux +'Cloud Forcing Net Long Wave Flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 197 ; + } +#Convective Cloud Mass Flux +'Convective Cloud Mass Flux' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 200 ; + } +#Richardson Number +'Richardson Number' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 194 ; + } +#Convective Weather Detection Index +'Convective Weather Detection Index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 195 ; + } +#Updraft Helicity +'Updraft Helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 197 ; + } +#Leaf Area Index +'Leaf Area Index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 198 ; + } +#Particulate matter (coarse) +'Particulate matter (coarse)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 192 ; + } +#Particulate matter (fine) +'Particulate matter (fine)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 193 ; + } +#Particulate matter (fine) +'Particulate matter (fine)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 194 ; + } +#Integrated column particulate matter (fine) +'Integrated column particulate matter (fine)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 195 ; + } +#Ozone Concentration (PPB) +'Ozone Concentration (PPB)' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 193 ; + } +#Categorical Ozone Concentration +'Categorical Ozone Concentration' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 194 ; + } +#Ozone vertical diffusion +'Ozone vertical diffusion' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 195 ; + } +#Ozone production +'Ozone production' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 196 ; + } +#Ozone tendency +'Ozone tendency' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 197 ; + } +#Ozone production from temperature term +'Ozone production from temperature term' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 198 ; + } +#Ozone production from col ozone term +'Ozone production from col ozone term' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 199 ; + } +#Derived radar reflectivity backscatter from rain +'Derived radar reflectivity backscatter from rain' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 192 ; + } +#Derived radar reflectivity backscatter from ice +'Derived radar reflectivity backscatter from ice' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 193 ; + } +#Derived radar reflectivity backscatter from parameterized convection +'Derived radar reflectivity backscatter from parameterized convection' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 194 ; + } +#Derived radar reflectivity +'Derived radar reflectivity' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 195 ; + } +#Maximum/Composite radar reflectivity +'Maximum/Composite radar reflectivity' = { + discipline = 0 ; + parameterCategory = 16 ; + parameterNumber = 196 ; + } +#Lightning +'Lightning' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 192 ; + } +#Slight risk convective outlook +'Slight risk convective outlook' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 194 ; + } +#Moderate risk convective outlook +'Moderate risk convective outlook' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 195 ; + } +#High risk convective outlook +'High risk convective outlook' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 196 ; + } +#Tornado probability +'Tornado probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 197 ; + } +#Hail probability +'Hail probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 198 ; + } +#Wind probability +'Wind probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 199 ; + } +#Significant Tornado probability +'Significant Tornado probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 200 ; + } +#Significant Hail probability +'Significant Hail probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 201 ; + } +#Significant Wind probability +'Significant Wind probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 202 ; + } +#Categorical Thunderstorm (1-yes, 0-no) +'Categorical Thunderstorm (1-yes, 0-no)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 203 ; + } +#Number of mixed layers next to surface +'Number of mixed layers next to surface' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 204 ; + } +#Flight Category +'Flight Category' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 205 ; + } +#Confidence - Ceiling +'Confidence - Ceiling' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 206 ; + } +#Confidence - Visibility +'Confidence - Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 207 ; + } +#Confidence - Flight Category +'Confidence - Flight Category' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 208 ; + } +#Low-Level aviation interest +'Low-Level aviation interest' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 209 ; + } +#High-Level aviation interest +'High-Level aviation interest' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 210 ; + } +#Visible, Black Sky Albedo +'Visible, Black Sky Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 211 ; + } +#Visible, White Sky Albedo +'Visible, White Sky Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 212 ; + } +#Near IR, Black Sky Albedo +'Near IR, Black Sky Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 213 ; + } +#Near IR, White Sky Albedo +'Near IR, White Sky Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 214 ; + } +#Total Probability of Severe Thunderstorms (Days 2,3) +'Total Probability of Severe Thunderstorms (Days 2,3)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 215 ; + } +#Total Probability of Extreme Severe Thunderstorms (Days 2,3) +'Total Probability of Extreme Severe Thunderstorms (Days 2,3)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 216 ; + } +#Supercooled Large Droplet (SLD) Potential +'Supercooled Large Droplet (SLD) Potential' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 217 ; + } +#Radiative emissivity +'Radiative emissivity' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 218 ; + } +#Turbulence Potential Forecast Index +'Turbulence Potential Forecast Index' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 219 ; + } +#Volcanic Ash Forecast Transport and Dispersion +'Volcanic Ash Forecast Transport and Dispersion' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 232 ; + } +#Latitude (-90 to +90) +'Latitude (-90 to +90)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 192 ; + } +#East Longitude (0 - 360) +'East Longitude (0 - 360)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 193 ; + } +#Model Layer number (From bottom up) +'Model Layer number (From bottom up)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 195 ; + } +#Latitude (nearest neighbor) (-90 to +90) +'Latitude (nearest neighbor) (-90 to +90)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 196 ; + } +#East Longitude (nearest neighbor) (0 - 360) +'East Longitude (nearest neighbor) (0 - 360)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 197 ; + } +#Probability of Freezing Precipitation +'Probability of Freezing Precipitation' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } +#Probability of precipitation exceeding flash flood guidance values +'Probability of precipitation exceeding flash flood guidance values' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } +#Probability of Wetting Rain, exceeding in 0.10 in a given time period +'Probability of Wetting Rain, exceeding in 0.10 in a given time period' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } +#Vegetation Type +'Vegetation Type' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 198 ; + } +#Wilting Point +'Wilting Point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 201 ; + } +#Rate of water dropping from canopy to ground +'Rate of water dropping from canopy to ground' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 206 ; + } +#Ice-free water surface +'Ice-free water surface' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 207 ; + } +#Surface exchange coefficients for T and Q divided by delta z +'Surface exchange coefficients for T and Q divided by delta z' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 208 ; + } +#Surface exchange coefficients for U and V divided by delta z +'Surface exchange coefficients for U and V divided by delta z' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 209 ; + } +#Vegetation canopy temperature +'Vegetation canopy temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 210 ; + } +#Surface water storage +'Surface water storage' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 211 ; + } +#Liquid soil moisture content (non-frozen) +'Liquid soil moisture content (non-frozen)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 212 ; + } +#Open water evaporation (standing water) +'Open water evaporation (standing water)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 213 ; + } +#Groundwater recharge +'Groundwater recharge' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 214 ; + } +#Flood plain recharge +'Flood plain recharge' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 215 ; + } +#Roughness length for heat +'Roughness length for heat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 216 ; + } +#Normalized Difference Vegetation Index +'Normalized Difference Vegetation Index' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 217 ; + } +#Land-sea coverage (nearest neighbor) [land=1,sea=0] +'Land-sea coverage (nearest neighbor) [land=1,sea=0]' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 218 ; + } +#Asymptotic mixing length scale +'Asymptotic mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 219 ; + } +#Water vapor added by precip assimilation +'Water vapor added by precip assimilation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 220 ; + } +#Water condensate added by precip assimilation +'Water condensate added by precip assimilation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 221 ; + } +#Water Vapor Flux Convergance (Vertical Int) +'Water Vapor Flux Convergance (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 222 ; + } +#Water Condensate Flux Convergance (Vertical Int) +'Water Condensate Flux Convergance (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 223 ; + } +#Water Vapor Zonal Flux (Vertical Int) +'Water Vapor Zonal Flux (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 224 ; + } +#Water Vapor Meridional Flux (Vertical Int) +'Water Vapor Meridional Flux (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 225 ; + } +#Water Condensate Zonal Flux (Vertical Int) +'Water Condensate Zonal Flux (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 226 ; + } +#Water Condensate Meridional Flux (Vertical Int) +'Water Condensate Meridional Flux (Vertical Int)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 227 ; + } +#Aerodynamic conductance +'Aerodynamic conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 228 ; + } +#Canopy water evaporation +'Canopy water evaporation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 229 ; + } +#Transpiration +'Transpiration' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 230 ; + } +#Surface Slope Type +'Surface Slope Type' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#Direct evaporation from bare soil +'Direct evaporation from bare soil' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 198 ; + } +#Land Surface Precipitation Accumulation +'Land Surface Precipitation Accumulation' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 199 ; + } +#Bare soil surface skin temperature +'Bare soil surface skin temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 200 ; + } +#Average surface skin temperature +'Average surface skin temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 201 ; + } +#Effective radiative skin temperature +'Effective radiative skin temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 202 ; + } +#Field Capacity +'Field Capacity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 203 ; + } +#Scatterometer Estimated U Wind Component +'Scatterometer Estimated U Wind Component' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } +#Scatterometer Estimated V Wind Component +'Scatterometer Estimated V Wind Component' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } +#Wave Steepness +'Wave Steepness' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 192 ; + } +#Ocean Mixed Layer U Velocity +'Ocean Mixed Layer U Velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + } +#Ocean Mixed Layer V Velocity +'Ocean Mixed Layer V Velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 193 ; + } +#Barotropic U velocity +'Barotropic U velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 194 ; + } +#Barotropic V velocity +'Barotropic V velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 195 ; + } +#Storm Surge +'Storm Surge' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 192 ; + } +#Extra Tropical Storm Surge +'Extra Tropical Storm Surge' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 193 ; + } +#Ocean Surface Elevation Relative to Geoid +'Ocean Surface Elevation Relative to Geoid' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 194 ; + } +#Sea Surface Height Relative to Geoid +'Sea Surface Height Relative to Geoid' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 195 ; + } +#Ocean Mixed Layer Potential Density (Reference 2000m)
+# created: 14 Feb 2014 +# modified: +# +######################### + +constant g1conceptsMasterDir="grib1" : hidden; +constant g1conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; + + +alias ls.dataType = marsType; + +if (localDefinitionNumber == 83 ) { + + concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.sort (unknown,"sortConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.landtype (unknown,"landTypeConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + +} + diff --git a/eccodes/definitions/grib2/mars_labeling.82.def b/eccodes/definitions/grib2/mars_labeling.82.def new file mode 100644 index 00000000..65661577 --- /dev/null +++ b/eccodes/definitions/grib2/mars_labeling.82.def @@ -0,0 +1,48 @@ +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +######################### + +constant conceptsMasterMarsDir="mars" : hidden; +constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; + +########################## +# # +# Base MARS keywors # +# # +########################## + +alias mars.class = marsClass; +alias mars.type = marsType; +alias mars.stream = marsStream; +alias mars.model = marsModel; +alias mars.expver = experimentVersionNumber; +alias mars.domain = globalDomain; + +######################### +# # +# local section 82 # +# # +######################### + +### nothing needed here... + +######################### +# # +# local section 83 # +# # +######################### + +if ( localDefinitionNumber == 83 ) { + + alias mars.sort = matchSort; + alias mars.timerepres = matchTimeRepres; + alias mars.landtype = matchLandType; + alias mars.aerosolbinnumber = matchAerosolBinNumber; + + concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); + alias mars.aerosolpacking = matchAerosolPacking; + +} + diff --git a/eccodes/definitions/grib2/mars_labeling.def b/eccodes/definitions/grib2/mars_labeling.def new file mode 100644 index 00000000..6905210c --- /dev/null +++ b/eccodes/definitions/grib2/mars_labeling.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- ECMWF. + +codetable[2] marsClass "mars/class.table" = "od" : dump,string_type,lowercase; +codetable[2] marsType "mars/type.table" = "an" : dump,string_type,no_fail,lowercase; +codetable[2] marsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; +ksec1expver[4] experimentVersionNumber = "0001" : dump; + +meta class g2_mars_labeling(0,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +meta type g2_mars_labeling(1,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +meta stream g2_mars_labeling(2,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +alias ls.dataType = marsType; + +alias mars.class = class; +alias mars.type = type; +alias mars.stream = stream; +alias mars.expver = experimentVersionNumber; + +alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions/grib2/meta.def b/eccodes/definitions/grib2/meta.def new file mode 100644 index 00000000..baa49b8f --- /dev/null +++ b/eccodes/definitions/grib2/meta.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +label "_Empty file"; + +#meta area g1area(latitudeOfFirstGridPoint,longitudeOfFirstGridPoint,latitudeOfLastGridPoint,longitudeOfLastGridPoint,angleMultiplier,angleDivisor); diff --git a/eccodes/definitions/grib2/modelName.def b/eccodes/definitions/grib2/modelName.def new file mode 100644 index 00000000..25b89c3d --- /dev/null +++ b/eccodes/definitions/grib2/modelName.def @@ -0,0 +1,43 @@ +# modelName: Contribution from Daniel Lee @ DWD + +# COSMO +# general definition +'cosmo' = { originatingCentre=250; } +'cosmo' = { subCentre=250; } + +# definitions for ARPA-SIMC +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=36; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=139; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=144; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=148; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=31; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=32; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=34; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=38; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=42; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=46; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=131; } +# definitions for Moscow +'cosmo_ru' = { originatingCentre=76; + generatingProcessIdentifier=135; } +'cosmo_ru-eps' = { originatingCentre=76; + generatingProcessIdentifier=235;} + +# definitions for Athens +'cosmo-greece' = { originatingCentre=96;} +# definitions for Warsaw / Poland +'cosmo-poland' = { originatingCentre=220;} +# definitions for Romania +'cosmo-romania' = { originatingCentre=242;} + diff --git a/eccodes/definitions/grib2/name.def b/eccodes/definitions/grib2/name.def new file mode 100644 index 00000000..e808c10a --- /dev/null +++ b/eccodes/definitions/grib2/name.def @@ -0,0 +1,4140 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'Total precipitation of at least 1 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 1 ; + } +#Total precipitation of at least 5 mm +'Total precipitation of at least 5 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 5 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 40 mm +'Total precipitation of at least 40 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 40 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 60 mm +'Total precipitation of at least 60 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 60 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 80 mm +'Total precipitation of at least 80 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 80 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 100 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 150 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 200 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 3 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = -2 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 31 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 45 ; + } +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'Snow density' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'Sea surface temperature' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'Soil type' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Specific rain water content +'Specific rain water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'Specific snow water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'Eta-coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Total column cloud liquid water +'Total column cloud liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Total column cloud ice water +'Total column cloud ice water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net solar radiation +'Top net solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Ozone mass mixing ratio +'Ozone mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'Fraction of cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'large scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'Snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Total precipitation of at least 25 mm +'Total precipitation of at least 25 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 50 mm +'Total precipitation of at least 50 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 50 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind gust of at least 10 m/s +'10 metre wind gust of at least 10 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 103 ; + } +#Probability of temperature standardized anomaly greater than 1 standard deviation +'Probability of temperature standardized anomaly greater than 1 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + } +#Probability of temperature standardized anomaly greater than 1.5 standard deviation +'Probability of temperature standardized anomaly greater than 1.5 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 1 ; + scaledValueOfLowerLimit = 15 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + } +#Probability of temperature standardized anomaly greater than 2 standard deviation +'Probability of temperature standardized anomaly greater than 2 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 2 ; + } +#Probability of temperature standardized anomaly less than -1 standard deviation +'Probability of temperature standardized anomaly less than -1 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + probabilityType = 0 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = -1 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly less than -1.5 standard deviation +'Probability of temperature standardized anomaly less than -1.5 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 1 ; + scaledValueOfLowerLimit = -15 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 0 ; + } +#Probability of temperature standardized anomaly less than -2 standard deviation +'Probability of temperature standardized anomaly less than -2 standard deviation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = -2 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 0 ; + typeOfStatisticalProcessing = 10 ; + } +#Mean sea water potential temperature in the upper 300 m +'Mean sea water potential temperature in the upper 300 m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Mean sea water temperature in the upper 300 m +'Mean sea water temperature in the upper 300 m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Sea surface practical salinity +'Sea surface practical salinity' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + scaledValueOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#2 metre specific humidity +'2 metre specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ammonium aerosol mass mixing ratio +'Ammonium aerosol mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Nitrate aerosol optical depth at 550 nm +'Nitrate aerosol optical depth at 550 nm' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62004 ; + typeOfSizeInterval = 255 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 55 ; + } +#Ammonium aerosol optical depth at 550 nm +'Ammonium aerosol optical depth at 550 nm' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62003 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + } +#Ammonium aerosol mass mixing ratio +'Ammonium aerosol mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Dry deposition of ammonium aerosol +'Dry deposition of ammonium aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Sedimentation of ammonium aerosol +'Sedimentation of ammonium aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'Wet deposition of ammonium aerosol by large-scale precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'Wet deposition of ammonium aerosol by convective precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of ammonium aerosol +'Vertically integrated mass of ammonium aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#-10 degrees C isothermal level (atm) +'-10 degrees C isothermal level (atm)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 26315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#0 degrees C isothermal level (atm) +'0 degrees C isothermal level (atm)' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 27315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'Relative humidity with respect to water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'Relative humidity with respect to ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'Fraction of stratiform precipitation cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'Fraction of convective precipitation cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Maximum CAPE in the last 6 hours +'Maximum CAPE in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Maximum CAPES in the last 6 hours +'Maximum CAPES in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 19 ; + lengthOfTimeRange = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity with respect to water +'2 metre relative humidity with respect to water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Liquid water content in snow pack +'Liquid water content in snow pack' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Height of convective cloud top +'Height of convective cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Instantaneous total lightning flash density +'Instantaneous total lightning flash density' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged total lightning flash density in the last hour +'Averaged total lightning flash density in the last hour' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + } +#Instantaneous cloud-to-ground lightning flash density +'Instantaneous cloud-to-ground lightning flash density' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'Averaged cloud-to-ground lightning flash density in the last hour' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + } +#Unbalanced component of specific humidity +'Unbalanced component of specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'Unbalanced component of specific cloud liquid water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'Unbalanced component of specific cloud ice water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Averaged total lightning flash density in the last 3 hours +'Averaged total lightning flash density in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; + } +#Averaged total lightning flash density in the last 6 hours +'Averaged total lightning flash density in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil moisture top 20 cm +'Soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil moisture top 100 cm +'Soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'Soil temperature top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Soil temperature top 100 cm +'Soil temperature top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'Water runoff and drainage' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mixed-layer CAPE in the lowest 50 hPa +'Mixed-layer CAPE in the lowest 50 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'Mixed-layer CIN in the lowest 50 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'Mixed-layer CAPE in the lowest 100 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'Mixed-layer CIN in the lowest 100 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'Most-unstable CAPE' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Most-unstable CIN +'Most-unstable CIN' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'Departure level of the most unstable parcel expressed as Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#200 metre U wind component +'200 metre U wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#200 metre V wind component +'200 metre V wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#200 metre wind speed +'200 metre wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#100 metre wind speed +'100 metre wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mean temperature tendency due to short-wave radiation +'Mean temperature tendency due to short-wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'Mean temperature tendency due to long-wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'Mean temperature tendency due to short-wave radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'Mean temperature tendency due to long-wave radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'Mean temperature tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'Mean specific humidity tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'Mean eastward wind tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'Mean northward wind tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'Mean updraught mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'Mean downdraught mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'Mean updraught detrainment rate' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'Mean downdraught detrainment rate' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'Mean total precipitation flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'Mean turbulent diffusion coefficient for heat' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Time integral of rain flux +'Time integral of rain flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface eastward momentum flux +'Time integral of surface eastward momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface northward momentum flux +'Time integral of surface northward momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Cross sectional area of flow in channel +'Cross sectional area of flow in channel' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'Side flow into river channel' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'Discharge from rivers or streams' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'River storage of water' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'Floodplain storage of water' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'Water fraction' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'Days since last observation' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'Frost index' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'Depth of water on soil surface' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'Upstream accumulated precipitation' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'Upstream accumulated snow melt' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean discharge in the last 6 hours +'Mean discharge in the last 6 hours' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean discharge in the last 24 hours +'Mean discharge in the last 24 hours' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth at elevation bands +'Snow depth at elevation bands' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'Groundwater upper storage' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'Groundwater lower storage' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Latitude +'Latitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Longitude +'Longitude' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } +#Latitude on T grid +'Latitude on T grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Longitude on T grid +'Longitude on T grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Latitude on U grid +'Latitude on U grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Longitude on U grid +'Longitude on U grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Latitude on V grid +'Latitude on V grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Longitude on V grid +'Longitude on V grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Latitude on W grid +'Latitude on W grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Longitude on W grid +'Longitude on W grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Latitude on F grid +'Latitude on F grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Longitude on F grid +'Longitude on F grid' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Total column graupel +'Total column graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity +'2 metre relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Apparent temperature +'Apparent temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'Haines Index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'Evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'Evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'10 metre wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Direct short wave radiation flux +'Direct short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'Diffuse short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'Time-integrated surface direct short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation in the last 6 hours +'Evaporation in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + is_uerra = 0 ; + } +#Evaporation in the last 24 hours +'Evaporation in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + is_uerra = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 24 ; + } +#Total precipitation in the last 6 hours +'Total precipitation in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + is_efas = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation in the last 24 hours +'Total precipitation in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + is_efas = 1 ; + lengthOfTimeRange = 24 ; + } +#Fraction of snow cover +'Fraction of snow cover' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 121 ; + } +#Clear air turbulence (CAT) +'Clear air turbulence (CAT)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 29 ; + } +#Mountain wave turbulence (eddy dissipation rate) +'Mountain wave turbulence (eddy dissipation rate)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 28 ; + } +#Soil temperature +'Soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'Downward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'Upward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'Downward long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'Soil heat flux' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'Percolation rate' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'Soil depth' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'Accumulated surface downward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'Accumulated surface upward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'Accumulated surface downward long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Percolation +'Percolation' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'Cloudy brightness temperature' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'Clear-sky brightness temperature' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'Scaled radiance' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Scaled albedo' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Scaled brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Scaled precipitable water' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Scaled lifted index' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Scaled cloud top pressure' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Scaled skin temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Cloud mask' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Pixel scene type' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Fire detection indicator' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Forest fire weather index +'Forest fire weather index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Fine fuel moisture code +'Fine fuel moisture code' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Duff moisture code +'Duff moisture code' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Drought code +'Drought code' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Initial fire spread index +'Initial fire spread index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Fire buildup index +'Fire buildup index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Fire daily severity rating +'Fire daily severity rating' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Cloudy radiance (with respect to wave number) +'Cloudy radiance (with respect to wave number)' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'Clear-sky radiance (with respect to wave number)' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'Wind speed' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'Aerosol optical thickness at 0.635 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'Aerosol optical thickness at 0.810 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'Aerosol optical thickness at 1.640 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'Angstrom coefficient' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Keetch-Byram drought index +'Keetch-Byram drought index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'Drought factor (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'Rate of spread (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'Fire danger index (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } +#Universal thermal climate index +'Universal thermal climate index' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Mean radiant temperature +'Mean radiant temperature' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Fraction of Malaria cases +'Fraction of Malaria cases' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Malaria circumsporozoite protein ratio +'Malaria circumsporozoite protein ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Plasmodium falciparum entomological inoculation rate +'Plasmodium falciparum entomological inoculation rate' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Human bite rate by anopheles vectors +'Human bite rate by anopheles vectors' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Malaria immunity ratio +'Malaria immunity ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Falciparum parasite ratio +'Falciparum parasite ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Detectable falciparum parasite ratio (after day 10) +'Detectable falciparum parasite ratio (after day 10)' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Anopheles vector to host ratio +'Anopheles vector to host ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Anopheles vector density +'Anopheles vector density' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Fraction of malarial vector reproductive habitat +'Fraction of malarial vector reproductive habitat' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Population density +'Population density' = { + discipline = 20 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Virtual temperature +'Virtual temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'Wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Mean zero-crossing wave period +'Mean zero-crossing wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'Mean wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Peak wave period +'Peak wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Mean wave period +'Mean wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Eastward sea water velocity +'Eastward sea water velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'Northward sea water velocity' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'Sea surface height' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'Depth of 20C isotherm' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 20 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#Average salinity in the upper 300m +'Average salinity in the upper 300m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 21 ; + typeOfSecondFixedSurface = 160 ; + typeOfFirstFixedSurface = 160 ; + scaledValueOfSecondFixedSurface = 300 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Surface runoff +'Surface runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Sea-ice thickness +'Sea-ice thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre U wind component +'100 metre U wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre V wind component +'100 metre V wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total precipitation of at least 10 mm +'Total precipitation of at least 10 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 20 mm +'Total precipitation of at least 20 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Stream function +'Stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'Velocity potential' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'Potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'Convective available potential energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'Geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'U component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'V component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'Specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'Surface pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'Total column water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'Divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'Geopotential Height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'10 metre U wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'10 metre V wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'2 metre temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'Surface roughness' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'Sunshine duration' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'Brightness temperature' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Skin temperature +'Skin temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'Latent heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'Sensible heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'Heat index' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'Wind chill factor' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'Minimum dew point depression' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'Snow phase change heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'Vapor pressure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'Large scale precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'Snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'Convective snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'Large scale snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'Snow age' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'Absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'Precipitation type' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'Integrated liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'Condensate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'Cloud mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'Ice water mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'Rain mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'Snow mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'Horizontal moisture convergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'Maximum relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'Maximum absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'Total snowfall' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'Precipitable water category' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'Hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'Graupel (snow pellets)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'Categorical rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'Categorical freezing rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'Categorical ice pellets' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'Categorical snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'Convective precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'Horizontal moisture divergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'Percent frozen precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'Potential evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'Snow cover' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'Rime factor' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'Large scale water precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'Convective water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'Total water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'Total snow precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'Total column water (Vertically integrated total water (vapour + cloud water/ice))' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'Total precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'Total snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'Large scale precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'Total snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'Water equivalent of accumulated snow depth (deprecated)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'Rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'Snow precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'Freezing rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'Ice pellets precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'Momentum flux, u component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'Momentum flux, v component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'Maximum wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'Wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'u-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'v-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'Vertical speed shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'Horizontal momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'U-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'V-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Drag coefficient' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'Frictional velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'Geometric height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'Altimeter setting' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'Thickness' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'Pressure altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'Density altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5-wave geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'Planetary boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'Net short-wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'Upward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'Net short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'Downward UV radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'UV index (under clear sky)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'UV index ' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'Net long wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'Net long wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'Net long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'Cloud Ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'Cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'Cloud amount' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'Cloud type' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'Thunderstorm maximum tops' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'Thunderstorm coverage' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'Cloud base' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'Cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'Ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'Non-convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'Cloud work function' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Convective cloud efficiency' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'Total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'Total column-integrated cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'Total column-integrated cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'Total column-integrated condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Ice fraction of total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'Cloud ice mixing ratio' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Sunshine' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'Horizontal extent of cumulonimbus (CB)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'K index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'KO index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'Total totals index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Sweat index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'Storm relative helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Energy helicity index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'Best (4-layer) lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'Aerosol type' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'Total ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'Total column integrated ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'Base spectrum width' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'Base radial velocity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'Vertically-integrated liquid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'Layer-maximum base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'Precipitation' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'Air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'Air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'Air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'Ground deposition of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'Ground deposition of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'Ground deposition of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'Time-integrated air concentration of caesium pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'Time-integrated air concentration of iodine pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'Time-integrated air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'Volcanic ash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'Icing top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'Icing base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'Turbulence top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'Turbulence base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'Turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'Turbulent kinetic energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'Planetary boundary layer regime' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'Contrail intensity' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'Contrail engine type' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'Contrail top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'Contrail base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'Maximum snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'Snow free albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'In-cloud turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Relative clear air turbulence (RCAT) +'Relative clear air turbulence (RCAT)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'Supercooled large droplet probability (see Note 4)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'Arbitrary text string' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'Remotely sensed snow cover' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'Elevation of snow covered terrain' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'Snow water equivalent percent of normal' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'Baseflow-groundwater runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'Storm surface runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'Probability of 0.01 inch of precipitation (POP)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'Land cover (1=land, 0=sea)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'Vegetation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'Water runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'Evapotranspiration' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'Model terrain height' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'Land use' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'Ground heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'Moisture availability' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'Exchange coefficient' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'Plant canopy surface water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'Blackadar mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'Canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'Minimal stomatal resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Solar parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Temperature parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'Soil moisture parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'Humidity parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'Column-integrated soil water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'Heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'Volumetric wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'Upper layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'Upper layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'Lower layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'Bottom layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'Number of soil layers in root zone' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'Volumetric transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'Volumetric direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'Volumetric saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'Saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'Estimated precipitation' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'Instantaneous rain rate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'Cloud top height' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Cloud top height quality indicator' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'Estimated u component of wind ' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'Estimated v component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'Number of pixels used' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Solar zenith angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Relative azimuth angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'Reflectance in 0.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'Reflectance in 0.8 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'Reflectance in 1.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'Reflectance in 3.9 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'Atmospheric divergence' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'Direction of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'Primary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'Primary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'Current direction' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'Current speed' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'Geometric vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'Ice temperature' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'Deviation of sea level from mean' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pressure tendency' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'Geometrical height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'Standard deviation of height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'Dew point temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'Lapse rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'Temperature anomaly' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pressure anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'Absolute vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'Absolute divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'U-component of current ' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'V-component of current ' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'Precipitable water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'Saturation deficit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'Main thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'Soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'Salinity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'Density' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'Ice thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Direction of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'Speed of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'U-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'V-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'Ice growth rate' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'Ice divergence' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'Snow melt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Direction of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'Secondary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'Global radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'Wind mixing energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre wind gust of at least 15 m/s +'10 metre wind gust of at least 15 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 15 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#10 metre wind gust of at least 20 m/s +'10 metre wind gust of at least 20 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 20 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + } +#Convective inhibition +'Convective inhibition' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'Orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'Field capacity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'Wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Total Precipitation +'Total Precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib2/paramId.def b/eccodes/definitions/grib2/paramId.def new file mode 100644 index 00000000..f5b50c9f --- /dev/null +++ b/eccodes/definitions/grib2/paramId.def @@ -0,0 +1,4140 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'131060' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 5 mm +'131061' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 5 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 40 mm +'131082' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 40 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 60 mm +'131083' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 80 mm +'131084' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 80 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 100 mm +'131085' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 150 mm +'131086' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; + probabilityType = 3 ; + } +#Total precipitation of at least 200 mm +'131087' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 300 mm +'131088' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 3 ; + scaleFactorOfLowerLimit = -2 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Wind speed +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Wind speed +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + } +#Wind speed +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#Unbalanced component of temperature +'21' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 31 ; + } +#Unbalanced component of divergence +'23' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 45 ; + } +#Sea ice area fraction +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'33' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'34' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'43' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'49' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Specific rain water content +'75' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'76' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'77' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Total column cloud liquid water +'78' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Total column cloud ice water +'79' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Surface solar radiation downwards +'169' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface thermal radiation downwards +'175' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net solar radiation +'178' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'180' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'181' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + } +#Ozone mass mixing ratio +'203' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'210' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'211' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'238' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Specific cloud liquid water content +'246' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'247' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'248' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'3062' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'3066' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'3073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'3074' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'3075' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Total precipitation of at least 25 mm +'131098' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 25 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 50 mm +'131099' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 50 ; + probabilityType = 3 ; + } +#10 metre wind gust of at least 10 m/s +'131100' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 10 ; + } +#Probability of temperature standardized anomaly greater than 1 standard deviation +'133093' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly greater than 1.5 standard deviation +'133094' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 15 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 1 ; + } +#Probability of temperature standardized anomaly greater than 2 standard deviation +'133095' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 2 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly less than -1 standard deviation +'133096' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -1 ; + } +#Probability of temperature standardized anomaly less than -1.5 standard deviation +'133097' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -15 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 1 ; + } +#Probability of temperature standardized anomaly less than -2 standard deviation +'133098' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -2 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 0 ; + } +#Mean sea water potential temperature in the upper 300 m +'151126' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Mean sea water temperature in the upper 300 m +'151127' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Sea surface practical salinity +'151219' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'151225' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfSecondFixedSurface = 255 ; + scaleFactorOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 169 ; + scaledValueOfFirstFixedSurface = 1 ; + } +#2 metre specific humidity +'174096' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ammonium aerosol mass mixing ratio +'210249' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Nitrate aerosol optical depth at 550 nm +'210250' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfSizeInterval = 255 ; + aerosolType = 62004 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + } +#Ammonium aerosol optical depth at 550 nm +'210251' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 62003 ; + is_aerosol_optical = 1 ; + } +#Ammonium aerosol mass mixing ratio +'211249' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Dry deposition of ammonium aerosol +'215206' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Sedimentation of ammonium aerosol +'215207' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'215208' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'215209' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of ammonium aerosol +'215211' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#-10 degrees C isothermal level (atm) +'228020' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 26315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#0 degrees C isothermal level (atm) +'228024' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 27315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Relative humidity with respect to water +'228030' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'228031' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'228032' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'228033' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'228034' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Maximum CAPE in the last 6 hours +'228035' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + } +#Maximum CAPES in the last 6 hours +'228036' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 19 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#2 metre relative humidity with respect to water +'228037' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Liquid water content in snow pack +'228038' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Height of convective cloud top +'228046' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Instantaneous total lightning flash density +'228050' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last hour +'228051' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Instantaneous cloud-to-ground lightning flash density +'228052' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'228053' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 1 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Unbalanced component of specific humidity +'228054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'228055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'228056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Averaged total lightning flash density in the last 3 hours +'228057' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last 6 hours +'228058' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'228059' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'228060' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Soil moisture top 20 cm +'228086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil moisture top 100 cm +'228087' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil temperature top 20 cm +'228095' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil temperature top 100 cm +'228096' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Convective precipitation +'228143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'228205' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mixed-layer CAPE in the lowest 50 hPa +'228231' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'228232' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'228233' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'228234' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'228235' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Most-unstable CIN +'228236' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'228237' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#200 metre U wind component +'228239' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#200 metre V wind component +'228240' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#200 metre wind speed +'228241' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#100 metre wind speed +'228249' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + } +#Mean temperature tendency due to short-wave radiation +'235001' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'235002' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'235003' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'235004' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'235005' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'235006' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'235007' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'235008' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'235009' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'235010' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'235011' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'235012' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'235013' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'235014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Time integral of rain flux +'235015' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface eastward momentum flux +'235017' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface northward momentum flux +'235018' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Cross sectional area of flow in channel +'240011' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'240012' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'240013' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'240014' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'240015' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'240016' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'240017' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'240018' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'240020' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'240021' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'240022' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean discharge in the last 6 hours +'240023' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Mean discharge in the last 24 hours +'240024' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Snow depth at elevation bands +'240026' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'240028' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'240029' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Latitude +'250001' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Longitude +'250002' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } +#Latitude on T grid +'250003' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Longitude on T grid +'250004' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Latitude on U grid +'250005' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Longitude on U grid +'250006' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Latitude on V grid +'250007' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Longitude on V grid +'250008' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Latitude on W grid +'250009' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Longitude on W grid +'250010' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Latitude on F grid +'250011' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Longitude on F grid +'250012' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Total column graupel +'260001' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity +'260242' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'260255' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'260256' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'260257' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'260258' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'260259' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#10 metre wind direction +'260260' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'260262' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'260263' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'260264' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Evaporation in the last 6 hours +'260265' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Evaporation in the last 24 hours +'260266' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + is_uerra = 0 ; + } +#Total precipitation in the last 6 hours +'260267' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + is_efas = 1 ; + } +#Total precipitation in the last 24 hours +'260268' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + is_efas = 1 ; + } +#Fraction of snow cover +'260289' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 121 ; + } +#Clear air turbulence (CAT) +'260290' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 29 ; + } +#Mountain wave turbulence (eddy dissipation rate) +'260291' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 28 ; + } +#Soil temperature +'260360' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'260361' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'260362' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'260363' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'260364' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'260365' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'260367' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'260423' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'260427' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'260428' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'260430' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 177 ; + typeOfStatisticalProcessing = 1 ; + } +#Cloudy brightness temperature +'260510' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'260511' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'260530' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'260531' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'260532' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'260533' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'260534' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'260535' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'260536' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'260537' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'260538' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'260539' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Forest fire weather index +'260540' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Fine fuel moisture code +'260541' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Duff moisture code +'260542' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Drought code +'260543' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Initial fire spread index +'260544' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Fire buildup index +'260545' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Fire daily severity rating +'260546' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Cloudy radiance (with respect to wave number) +'260550' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'260551' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'260552' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'260553' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'260554' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'260555' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'260556' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Keetch-Byram drought index +'260557' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'260558' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'260559' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'260560' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260561' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260562' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260563' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260564' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } +#Universal thermal climate index +'261001' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Mean radiant temperature +'261002' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Fraction of Malaria cases +'261003' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Malaria circumsporozoite protein ratio +'261004' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Plasmodium falciparum entomological inoculation rate +'261005' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Human bite rate by anopheles vectors +'261006' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Malaria immunity ratio +'261007' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Falciparum parasite ratio +'261008' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Detectable falciparum parasite ratio (after day 10) +'261009' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Anopheles vector to host ratio +'261010' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Anopheles vector density +'261011' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Fraction of malarial vector reproductive habitat +'261012' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Population density +'261013' = { + discipline = 20 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Virtual temperature +'300012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'3012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'3031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Mean zero-crossing wave period +'140221' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Significant height of combined wind waves and swell +'140229' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'140230' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Peak wave period +'140231' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Mean wave period +'140232' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Eastward sea water velocity +'151131' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'151132' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'151145' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'151163' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 20 ; + typeOfSecondFixedSurface = 255 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 29315 ; + } +#Average salinity in the upper 300m +'151175' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 21 ; + typeOfSecondFixedSurface = 160 ; + typeOfFirstFixedSurface = 160 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Surface runoff +'174008' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Sea-ice thickness +'174098' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre U wind component +'228246' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + } +#100 metre V wind component +'228247' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total precipitation of at least 10 mm +'131062' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 20 mm +'131063' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + } +#Stream function +'1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pressure +'54' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'59' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'60' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'129' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'130' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'131' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'132' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'133' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'134' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'135' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'136' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'138' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'145' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'146' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'147' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'151' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'155' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'156' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'157' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'165' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'166' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'167' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'172' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'173' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'176' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'177' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'179' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'189' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'194' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'207' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Skin temperature +'235' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'260002' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'260003' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'260004' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'260005' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'260006' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'260007' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'260008' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'260009' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'260010' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'260011' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'260012' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'260013' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'260014' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'260015' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'260016' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'260017' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'260018' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'260019' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'260020' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'260021' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'260022' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'260023' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'260024' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'260025' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'260026' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'260027' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'260028' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'260029' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'260030' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'260031' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'260032' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'260033' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'260034' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'260035' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'260036' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'260037' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'260038' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'260039' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'260040' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'260041' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'260042' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'260043' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'260044' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'260045' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'260046' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'260047' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'260048' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'260049' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'260050' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'260051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'260052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'260053' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'260054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'260055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'260056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'260057' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'260058' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'260059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'260060' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'260061' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'260062' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'260063' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'260064' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'260065' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'260066' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'260067' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'260068' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'260069' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'260070' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'260071' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'260072' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'260073' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'260074' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'260075' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'260076' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'260077' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'260078' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'260079' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'260080' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'260081' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'260082' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'260083' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'260084' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'260085' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'260086' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'260087' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'260088' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'260089' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'260090' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'260091' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'260092' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'260093' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'260094' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'260095' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'260096' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'260097' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'260098' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'260099' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'260100' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'260101' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'260102' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'260103' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'260104' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'260105' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'260106' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'260107' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'260108' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'260109' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'260110' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'260111' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'260112' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'260113' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'260114' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'260115' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'260116' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'260117' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'260118' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'260119' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'260120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'260121' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'260122' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'260123' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'260124' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'260125' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'260126' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'260127' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'260128' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'260129' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'260130' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'260132' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'260133' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'260134' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'260135' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'260136' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'260137' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'260138' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'260139' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'260140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'260141' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'260142' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'260143' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'260144' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'260145' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'260146' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'260147' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'260148' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'260149' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'260150' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'260151' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'260152' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'260153' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'260154' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'260155' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'260156' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'260157' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'260158' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'260159' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'260160' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'260161' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'260162' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'260163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'260164' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Relative clear air turbulence (RCAT) +'260165' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'260166' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'260167' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'260168' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'260169' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'260170' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'260171' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'260172' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'260173' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'260174' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'260175' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'260176' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'260177' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'260178' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'260179' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'260180' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'260181' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'260182' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'260183' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'260184' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'260185' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'260186' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'260187' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'260188' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'260189' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'260190' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'260191' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'260192' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'260193' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'260194' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'260195' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'260196' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'260197' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'260198' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'260199' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'260200' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'260201' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'260202' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'260203' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'260204' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'260205' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'260206' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'260207' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'260208' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'260209' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'260210' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'260211' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'260212' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'260213' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'260214' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'260215' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'260216' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'260217' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'260218' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'260219' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'260220' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'260221' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'260222' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'260223' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'260224' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'260225' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'260226' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'260227' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'260228' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'260229' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'260230' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'260231' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'260232' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'260233' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'260234' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'260235' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'260236' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'260237' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'260238' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'260239' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'260240' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'260241' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'260509' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'3003' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'3008' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'3009' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'3015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'3016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'3017' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'3019' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'3020' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'3021' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'3022' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'3023' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'3025' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'3026' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'3027' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'3028' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'3029' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'3030' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'3037' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'3038' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'3041' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'3042' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'3045' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'3046' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'3049' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'3050' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'3054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'3056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'3059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'3060' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'3063' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'3067' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'3068' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'3069' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'3070' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'3086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'3088' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'3089' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'3092' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'3093' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'3094' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'3095' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'3096' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'3097' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'3098' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'3099' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'3102' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'3103' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'3104' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'3105' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'3106' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'3109' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'3117' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'3119' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'3120' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'3126' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre wind gust of at least 15 m/s +'131070' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre wind gust of at least 20 m/s +'131071' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + } +#Convective inhibition +'228001' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'228002' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'228141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Fall water equivalent +'228144' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'228164' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Field capacity +'228170' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wilting point +'228171' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'228228' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib2/parameters.def b/eccodes/definitions/grib2/parameters.def new file mode 100644 index 00000000..63290256 --- /dev/null +++ b/eccodes/definitions/grib2/parameters.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +transient dummyc=0: hidden; + + +concept paramIdLegacyECMF(defaultParameter,"paramId.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy,hidden; +concept paramIdECMF (paramIdLegacyECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy; +concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type; + +concept shortNameLegacyECMF(defaultShortName,"shortName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; +concept shortNameECMF (shortNameLegacyECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; +concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1): no_copy,dump; + +concept unitsLegacyECMF(defaultName,"units.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,hidden; +concept unitsECMF (unitsLegacyECMF,"units.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; +concept units (unitsECMF,"units.def",conceptsDir2,conceptsDir1): no_copy; + +concept nameLegacyECMF(defaultName,"name.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; +concept nameECMF(nameLegacyECMF,"name.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; +concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1): no_copy,dump; + +concept cfNameLegacyECMF(defaultShortName,"cfName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; +concept cfNameECMF(cfNameLegacyECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; +concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : no_copy,dump; + +concept cfVarNameLegacyECMF(defaultShortName,"cfVarName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; +concept cfVarNameECMF (cfVarNameLegacyECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; +concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1): no_copy,dump; + +# modelName: Contribution from Daniel Lee @ DWD +concept modelName (defaultName,"modelName.def",conceptsDir2,conceptsDir1): no_copy,dump,read_only; + +template_nofail names "grib2/products_[productionStatusOfProcessedData].def"; + +meta ifsParam ifs_param(paramId,type); diff --git a/eccodes/definitions/grib2/products_0.def b/eccodes/definitions/grib2/products_0.def new file mode 100644 index 00000000..1f924193 --- /dev/null +++ b/eccodes/definitions/grib2/products_0.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Operational products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; diff --git a/eccodes/definitions/grib2/products_1.def b/eccodes/definitions/grib2/products_1.def new file mode 100644 index 00000000..bcf4b6d5 --- /dev/null +++ b/eccodes/definitions/grib2/products_1.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Operationl test products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; diff --git a/eccodes/definitions/grib2/products_10.def b/eccodes/definitions/grib2/products_10.def new file mode 100644 index 00000000..bafd04a6 --- /dev/null +++ b/eccodes/definitions/grib2/products_10.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Copernicus regional reanalysis (CARRA/CERRA) +constant marsExpver = 'prod'; +include "grib2/products_crra.def" diff --git a/eccodes/definitions/grib2/products_11.def b/eccodes/definitions/grib2/products_11.def new file mode 100644 index 00000000..6084a0b3 --- /dev/null +++ b/eccodes/definitions/grib2/products_11.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Copernicus regional reanalysis (CARRA/CERRA) +constant marsExpver = 'test'; +include "grib2/products_crra.def" diff --git a/eccodes/definitions/grib2/products_2.def b/eccodes/definitions/grib2/products_2.def new file mode 100644 index 00000000..9cc75a39 --- /dev/null +++ b/eccodes/definitions/grib2/products_2.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Research products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; diff --git a/eccodes/definitions/grib2/products_3.def b/eccodes/definitions/grib2/products_3.def new file mode 100644 index 00000000..1087302a --- /dev/null +++ b/eccodes/definitions/grib2/products_3.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Re-analysis products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; diff --git a/eccodes/definitions/grib2/products_4.def b/eccodes/definitions/grib2/products_4.def new file mode 100644 index 00000000..ea15b4f7 --- /dev/null +++ b/eccodes/definitions/grib2/products_4.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Tigge +constant marsExpver = 'prod'; +include "grib2/products_tigge.def" diff --git a/eccodes/definitions/grib2/products_5.def b/eccodes/definitions/grib2/products_5.def new file mode 100644 index 00000000..151b4e64 --- /dev/null +++ b/eccodes/definitions/grib2/products_5.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Tigge +constant marsExpver = 'test'; +include "grib2/products_tigge.def" diff --git a/eccodes/definitions/grib2/products_6.def b/eccodes/definitions/grib2/products_6.def new file mode 100644 index 00000000..28a608b9 --- /dev/null +++ b/eccodes/definitions/grib2/products_6.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# S2S +constant marsExpver = 'prod'; +include "grib2/products_s2s.def" diff --git a/eccodes/definitions/grib2/products_7.def b/eccodes/definitions/grib2/products_7.def new file mode 100644 index 00000000..c691c995 --- /dev/null +++ b/eccodes/definitions/grib2/products_7.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# S2S test +constant marsExpver = 'test'; +include "grib2/products_s2s.def" diff --git a/eccodes/definitions/grib2/products_8.def b/eccodes/definitions/grib2/products_8.def new file mode 100644 index 00000000..a1c28ffc --- /dev/null +++ b/eccodes/definitions/grib2/products_8.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Uncertainties in ensembles of regional re-analysis project (UERRA) +constant marsExpver = 'prod'; +include "grib2/products_uerra.def" diff --git a/eccodes/definitions/grib2/products_9.def b/eccodes/definitions/grib2/products_9.def new file mode 100644 index 00000000..3b2d3a4d --- /dev/null +++ b/eccodes/definitions/grib2/products_9.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Uncertainties in ensembles of regional re-analysis project test (UERRA) +constant marsExpver = 'test'; +include "grib2/products_uerra.def" diff --git a/eccodes/definitions/grib2/products_crra.def b/eccodes/definitions/grib2/products_crra.def new file mode 100644 index 00000000..4bf34192 --- /dev/null +++ b/eccodes/definitions/grib2/products_crra.def @@ -0,0 +1,108 @@ +# (C) Copyright 2005- ECMWF. + +# Copernicus regional reanalysis (CARRA/CERRA) +constant marsClass = 'rr'; + +alias tigge_short_name=shortName; +alias short_name=shortName; +alias parameter=paramId; +alias tigge_name=name; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +# Special UERRA rule for level type 103 'Specified height level above ground (m)' +if(typeOfFirstFixedSurface == 103) { + # only the parameters above 10m + if (level > 10) { + constant heightLevelName = 'hl'; + alias mars.levtype = heightLevelName; + # levelist was unaliased in template.4.horizontal.def so we must have it back + alias mars.levelist = level; + } +} +if(typeOfFirstFixedSurface == 118) { + constant levTypeName = 'ml'; + alias mars.levtype = levTypeName; +} + +# See GRIB-871 and ECC-854 +if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { + alias level = bottomLevel; +} + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.origin = centre; + +if (section2Used == 1) { + alias mars.origin = crraSuiteID; # origin is the suiteName + unalias mars.domain; + unalias mars.model; +} + +# See GRIB-911 re typeOfProcessedData values in UERRA +concept marsType { + + fc = { + typeOfProcessedData = 1; + } + "9" = { + typeOfProcessedData = 1; + } + + an = { + typeOfProcessedData = 0; + } + "2" = { + typeOfProcessedData = 0; + } + + # See ECC-456. Special rule for Swedish data + # oi is Optimal Interpolation + oi = { + centre = 82; + typeOfGeneratingProcess = 0; + generatingProcessIdentifier = 50; + } + "4" = { + centre = 82; + typeOfGeneratingProcess = 0; + generatingProcessIdentifier = 50; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +# Cannot use typeOfProcessedData for stream. See GRIB-911 +concept marsStream { + + oper = { + productDefinitionTemplateNumber = 8; + } + + oper = { + productDefinitionTemplateNumber = 0; + } + + enda = { + productDefinitionTemplateNumber = 11; + } + + enda = { + productDefinitionTemplateNumber = 1; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; diff --git a/eccodes/definitions/grib2/products_s2s.def b/eccodes/definitions/grib2/products_s2s.def new file mode 100644 index 00000000..48d09e58 --- /dev/null +++ b/eccodes/definitions/grib2/products_s2s.def @@ -0,0 +1,125 @@ +# (C) Copyright 2005- ECMWF. + +# S2S +constant marsClass = 's2'; +constant marsModel = 'glob'; +alias is_s2s = one; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.model = marsModel; + +# See GRIB-761. For Italy, subCentre 102 is ISAC-CNR +if (centre is "cnmc" && subCentre == 102) { + constant cnmc_isac = 'isac'; + alias mars.origin = cnmc_isac; +} else { + alias mars.origin = centre; +} + +unalias mars.domain; + +concept marsType { + + fc = { + typeOfProcessedData = 2; + } + "9" = { + typeOfProcessedData = 2; + } + + cf = { + typeOfProcessedData = 3; + } + "10" = { + typeOfProcessedData = 3; + } + + pf = { + typeOfProcessedData = 4; + } + "11" = { + typeOfProcessedData = 4; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +concept marsStream { + + oper = { + typeOfProcessedData = 0; + } + + oper = { + typeOfProcessedData = 2; + } + + enfo = { + typeOfProcessedData = 3; + } + + enfo = { + typeOfProcessedData = 4; + } + + enfo = { + typeOfProcessedData = 8; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; + +# Normally MARS step is endStep but for monthly means we want stepRange +if (stepType is "avg") { + alias mars.step = stepRange; +} + +if (isHindcast == 1) { + # S2S reforecasts + constant theHindcastMarsStream = "enfh"; + alias mars.stream = theHindcastMarsStream; + alias mars.hdate = dataDate; + alias mars.date = modelVersionDate; + alias mars.time = modelVersionTime; +} + +# ECC-891, ECC-1013 +concept is_ocean2d_param(zero) { + '1' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255; } + '1' = { discipline=10; typeOfFirstFixedSurface=20; scaleFactorOfFirstFixedSurface=2; scaledValueOfFirstFixedSurface=29315; typeOfSecondFixedSurface=255; } + '1' = { discipline=10; typeOfFirstFixedSurface=169; scaleFactorOfFirstFixedSurface=2; scaledValueOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } + '1' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=160; scaleFactorOfSecondFixedSurface=0; scaledValueOfSecondFixedSurface=300; } + '0' = { dummy=1; } +} : no_copy; +concept is_ocean3d_param(zero) { + '1' = { discipline=10; typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160; } + '0' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=160; scaleFactorOfSecondFixedSurface=0; scaledValueOfSecondFixedSurface=300; } + '0' = { dummy=1; } +}: no_copy; + +if (is_ocean2d_param) { + constant oceanLevName = 'o2d'; + alias mars.levtype = oceanLevName; + unalias mars.levelist; +} + +if (is_ocean3d_param) { + constant oceanLevName = 'o3d'; + alias mars.levtype = oceanLevName; + unalias mars.levelist; +} diff --git a/eccodes/definitions/grib2/products_tigge.def b/eccodes/definitions/grib2/products_tigge.def new file mode 100644 index 00000000..9a3a4ae8 --- /dev/null +++ b/eccodes/definitions/grib2/products_tigge.def @@ -0,0 +1,95 @@ +# (C) Copyright 2005- ECMWF. + +# Tigge +constant marsClass = 'ti'; +constant marsModel = 'glob'; +alias is_tigge = one; + +alias tigge_short_name=shortName; +alias short_name=shortName; +alias parameter=paramId; +alias tigge_name=name; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +if(levtype is "sfc") +{ + unalias mars.levelist; +} + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.model = marsModel; +alias mars.origin = centre; + +# Tigge-LAM rules +# productionStatusOfProcessedData == 4 +if (section2Used == 1) { + constant marsLamModel = 'lam'; + alias mars.model = marsLamModel; # model redefined. It is not 'glob' + alias mars.origin = tiggeSuiteID; # origin is the suiteName for Tigge-LAM + unalias mars.domain; # No mars domain needed +} + +concept marsType { + + fc = { + typeOfProcessedData = 2; + } + "9" = { + typeOfProcessedData = 2; + } + + cf = { + typeOfProcessedData = 3; + } + "10" = { + typeOfProcessedData = 3; + } + + pf = { + typeOfProcessedData = 4; + } + "11" = { + typeOfProcessedData = 4; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +concept marsStream { + + oper = { + typeOfProcessedData = 0; + } + + oper = { + typeOfProcessedData = 2; + } + + enfo = { + typeOfProcessedData = 3; + } + + enfo = { + typeOfProcessedData = 4; + } + + enfo = { + typeOfProcessedData = 8; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; diff --git a/eccodes/definitions/grib2/products_uerra.def b/eccodes/definitions/grib2/products_uerra.def new file mode 100644 index 00000000..3879ed2c --- /dev/null +++ b/eccodes/definitions/grib2/products_uerra.def @@ -0,0 +1,103 @@ +# (C) Copyright 2005- ECMWF. + +# Uncertainties in ensembles of regional re-analysis project (UERRA) +constant marsClass = 'ur'; + +alias tigge_short_name=shortName; +alias short_name=shortName; +alias parameter=paramId; +alias tigge_name=name; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +# Special UERRA rule for level type 103 'Specified height level above ground (m)' +if(typeOfFirstFixedSurface == 103) { + # only the parameters above 10m + if (level > 10) { + constant heightLevelName = 'hl'; + alias mars.levtype = heightLevelName; + # levelist was unaliased in template.4.horizontal.def so we must have it back + alias mars.levelist = level; + } +} +if(typeOfFirstFixedSurface == 118) { + constant levTypeName = 'ml'; + alias mars.levtype = levTypeName; +} + +# See GRIB-871 and ECC-854 +if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { + alias level = bottomLevel; + #alias mars.levelist = level; +} + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.origin = centre; + +# See GRIB-911 re typeOfProcessedData values in UERRA +concept marsType { + + fc = { + typeOfProcessedData = 1; + } + "9" = { + typeOfProcessedData = 1; + } + + an = { + typeOfProcessedData = 0; + } + "2" = { + typeOfProcessedData = 0; + } + + # See ECC-456. Special rule for Swedish data + # oi is Optimal Interpolation + oi = { + centre = 82; + typeOfGeneratingProcess = 0; + generatingProcessIdentifier = 50; + } + "4" = { + centre = 82; + typeOfGeneratingProcess = 0; + generatingProcessIdentifier = 50; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +# Cannot use typeOfProcessedData for stream. See GRIB-911 +concept marsStream { + + oper = { + productDefinitionTemplateNumber = 8; + } + + oper = { + productDefinitionTemplateNumber = 0; + } + + enda = { + productDefinitionTemplateNumber = 11; + } + + enda = { + productDefinitionTemplateNumber = 1; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; diff --git a/eccodes/definitions/grib2/rules.def b/eccodes/definitions/grib2/rules.def new file mode 100644 index 00000000..c1f74af5 --- /dev/null +++ b/eccodes/definitions/grib2/rules.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# Experimental stuff + +transient isAccumulation = 0 ; +transient isEPS = 0 ; + +when(isAccumulation and !isEPS) + set productDefinitionTemplateNumber = 8; + +when(isAccumulation and isEPS) + set productDefinitionTemplateNumber = 11; diff --git a/eccodes/definitions/grib2/section.0.def b/eccodes/definitions/grib2/section.0.def new file mode 100644 index 00000000..0268e173 --- /dev/null +++ b/eccodes/definitions/grib2/section.0.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- ECMWF. + +position offsetSection0; +constant section0Length=16; +ascii[4] identifier = "GRIB" : read_only; +unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; +codetable[1] discipline ('0.0.table',masterDir,localDir) : dump; +unsigned[1] editionNumber = 2 : edition_specific,dump; + +alias ls.edition = editionNumber; +section_length[8] totalLength; +position startOfHeaders; + +meta section0Pointer section_pointer(offsetSection0,section0Length,0); diff --git a/eccodes/definitions/grib2/section.1.def b/eccodes/definitions/grib2/section.1.def new file mode 100644 index 00000000..fd58c35f --- /dev/null +++ b/eccodes/definitions/grib2/section.1.def @@ -0,0 +1,147 @@ +# (C) Copyright 2005- ECMWF. + +position offsetSection1; +section_length[4] section1Length ; +meta section1Pointer section_pointer(offsetSection1,section1Length,1); + +unsigned[1] numberOfSection = 1 :read_only; + +codetable[2] centre 'common/c-11.table' : dump,string_type; +alias identificationOfOriginatingGeneratingCentre=centre; +meta centreDescription codetable_title(centre); + +alias parameter.centre=centre; +alias ls.centre=centre; +alias originatingCentre=centre; + +unsigned[2] subCentre : dump; + +_if (subCentre==98 ) { +alias centreForLocal=subCentre; +} else { +alias centreForLocal=centre; +} + +codetable[1] tablesVersion 'grib2/tables/1.0.table' = tablesVersionLatest : edition_specific; +alias gribMasterTablesVersionNumber=tablesVersion; + +transient masterDir="grib2/tables/[tablesVersion]"; +if (tablesVersion > tablesVersionLatest) { + transient masterDir="grib2/tables/[tablesVersionLatest]"; +} +when (tablesVersion!=255) { + set masterDir="grib2/tables/[tablesVersion]"; +} else { + set masterDir="grib2/tables/4"; +} + +codetable[1] localTablesVersion 'grib2/tables/local/[centreForLocal]/1.1.table' ; +alias versionNumberOfGribLocalTables=localTablesVersion; + +transient localDir=""; +if (localTablesVersion != 0 and localTablesVersion != 255) { + transient localDir="grib2/tables/local/[centre]/[localTablesVersion]"; +} + +# Significance of Reference Time +codetable[1] significanceOfReferenceTime ('1.2.table',masterDir,localDir) = 1 : dump; + +# Year +# (4 digits) +unsigned[2] year ; + +# Month +unsigned[1] month ; + +# Day +unsigned[1] day ; + +# Hour +unsigned[1] hour ; + +# Minute +unsigned[1] minute ; + +# Second +unsigned[1] second ; + +meta dataDate g2date(year,month,day) : dump; +alias mars.date = dataDate; +alias ls.date = dataDate; + +meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; + +meta dataTime time(hour,minute,second) : dump; +alias mars.time = dataTime; + +# Production status of processed data in this GRIB message +codetable[1] productionStatusOfProcessedData ('1.3.table',masterDir,localDir) : dump; + +# Type of processed data in this GRIB message +codetable[1] typeOfProcessedData ('1.4.table',masterDir,localDir) = 255 : dump,string_type,no_fail; + +alias ls.dataType=typeOfProcessedData; + +meta md5Section1 md5(offsetSection1,section1Length); + +meta selectStepTemplateInterval select_step_template(productDefinitionTemplateNumber,0); # 0 -> not instant +meta selectStepTemplateInstant select_step_template(productDefinitionTemplateNumber,1); # 1 -> instant + +transient stepTypeInternal="instant" : hidden,no_copy; + +concept stepType { + "instant" = {selectStepTemplateInstant=1; stepTypeInternal="instant";} + "avg" = {selectStepTemplateInterval=1; stepTypeInternal="avg";} + "avgd" = {selectStepTemplateInterval=1; stepTypeInternal="avgd";} + "accum" = {selectStepTemplateInterval=1; stepTypeInternal="accum";} + "max" = {selectStepTemplateInterval=1; stepTypeInternal="max";} + "min" = {selectStepTemplateInterval=1; stepTypeInternal="min";} + "diff" = {selectStepTemplateInterval=1; stepTypeInternal="diff";} + "sdiff" = {selectStepTemplateInterval=1; stepTypeInternal="sdiff";} + "rms" = {selectStepTemplateInterval=1; stepTypeInternal="rms";} + "sd" = {selectStepTemplateInterval=1; stepTypeInternal="sd";} + "cov" = {selectStepTemplateInterval=1; stepTypeInternal="cov";} + "ratio" = {selectStepTemplateInterval=1; stepTypeInternal="ratio";} + "stdanom" = {selectStepTemplateInterval=1; stepTypeInternal="stdanom";} + "sum" = {selectStepTemplateInterval=1; stepTypeInternal="sum";} +} + +# 0=atmospheric chemical constituents +# 1=atmospheric chemical constituents based on a distribution function +meta is_chemical g2_chemical(productDefinitionTemplateNumber, stepType, 0); +meta is_chemical_distfn g2_chemical(productDefinitionTemplateNumber, stepType, 1); + +# 0=aerosol +# 1=optical properties of aerosol +meta is_aerosol g2_aerosol(productDefinitionTemplateNumber, stepType, 0); +meta is_aerosol_optical g2_aerosol(productDefinitionTemplateNumber, stepType, 1); + +transient setCalendarId = 0 ; +transient deleteCalendarId = 0 ; +alias calendarIdPresent = zero; +if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { + alias calendarIdPresent = present; + codetable[2] calendarIdentificationTemplateNumber ('1.5.table',masterDir,localDir) : dump,string_type,no_fail; + template calendarIdentification "grib2/template.1.[calendarIdentificationTemplateNumber:l].def"; +} + +concept is_uerra(zero) { + '1' = {productionStatusOfProcessedData=10;} + '1' = {productionStatusOfProcessedData=11;} + '1' = {productionStatusOfProcessedData=9;} + '1' = {productionStatusOfProcessedData=8;} + '0' = {dummy=1;} +} + +constant conceptsMasterDir="grib2" : hidden; +constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; +constant conceptsLocalDirECMF="grib2/localConcepts/ecmf" : hidden; + +# ECC-806: Local concepts precedence order +if (preferLocalConcepts) { + constant conceptsDir1 = conceptsMasterDir : hidden; + constant conceptsDir2 = conceptsLocalDirAll : hidden; +} else { + constant conceptsDir1 = conceptsLocalDirAll : hidden; + constant conceptsDir2 = conceptsMasterDir : hidden; +} diff --git a/eccodes/definitions/grib2/section.2.def b/eccodes/definitions/grib2/section.2.def new file mode 100644 index 00000000..f4d4f8dd --- /dev/null +++ b/eccodes/definitions/grib2/section.2.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- ECMWF. + +position offsetSection2; +section_length[4] section2Length ; + +meta section2Pointer section_pointer(offsetSection2,section2Length,2); +unsigned[1] numberOfSection = 2 :read_only; + +alias tiggeSuiteID = zero; + +# This is a workaround for TIGGE: allow creation of an 'empty' section 2 +# so we can create bit-identical grib 2 files for backward compatibility +transient addEmptySection2 = 0; + +if ( addEmptySection2 == 0 ) { + if ( grib2LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { + alias section2Used=one; + + if(productionStatusOfProcessedData == 4 || productionStatusOfProcessedData == 5) { + # This is TIGGE-LAM because of the productionStatusOfProcessedData and the non-empty section 2 + codetable[2] tiggeLocalVersion 'grib2/tiggeLocalVersion.table' = 1 : dump; + template tiggeSection "grib2/local.tigge.[tiggeLocalVersion:l].def"; + } + + if(productionStatusOfProcessedData == 10 || productionStatusOfProcessedData == 11) { + # crra = Copernicus Regional ReAnalysis + codetable[2] crraLocalVersion 'grib2/crraLocalVersion.table' = 1 : dump; + template crraSection "grib2/local.crra.[crraLocalVersion:l].def"; + } + + codetable[2] grib2LocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; + + if (grib2LocalSectionNumber!=0) { + template_nofail local "grib2/local.[centreForLocal:l].def"; + } else { + constant deleteLocalDefinition=1; + } + position offsetAfterCentreLocalSection; + } +} + +section_padding section2Padding : read_only; + + + diff --git a/eccodes/definitions/grib2/section.3.def b/eccodes/definitions/grib2/section.3.def new file mode 100644 index 00000000..1e88c592 --- /dev/null +++ b/eccodes/definitions/grib2/section.3.def @@ -0,0 +1,126 @@ +# (C) Copyright 2005- ECMWF. + +# START grib2::section +# SECTION 3, GRID DEFINITION SECTION +# Length of section in octets + +# For grib2 -> 1 +constant gridDescriptionSectionPresent = 1; +position offsetSection3; + +section_length[4] section3Length ; +meta section3Pointer section_pointer(offsetSection3,section3Length,3); + +# Number of section +unsigned[1] numberOfSection = 3 :read_only; + +# Source of grid definition +codetable[1] sourceOfGridDefinition ('3.0.table',masterDir,localDir) ; + +# Number of data points +unsigned[4] numberOfDataPoints : dump; +alias numberOfPoints=numberOfDataPoints; + +# Number of octets for optional list of numbers defining number of points +unsigned[1] numberOfOctectsForNumberOfPoints; + +# Interpretation of list of numbers defining number of points +codetable[1] interpretationOfNumberOfPoints ('3.11.table',masterDir,localDir) : dump; + +if(numberOfOctectsForNumberOfPoints == 0){ + transient PLPresent = 0 ; +}else{ + transient PLPresent = 1 ; +} + +codetable[2] gridDefinitionTemplateNumber ('3.1.table',masterDir,localDir) =0 : dump,edition_specific; +meta gridDefinitionDescription codetable_title(gridDefinitionTemplateNumber); + +alias isRotatedGrid=zero; + +template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; + +if(PLPresent){ + if(numberOfOctectsForNumberOfPoints == 1){ + unsigned[1] pl[Nj] : dump; + } + if(numberOfOctectsForNumberOfPoints == 2){ + unsigned[2] pl[Nj] : dump; + } + if(numberOfOctectsForNumberOfPoints == 3){ + unsigned[3] pl[Nj] : dump; + } + alias geography.pl=pl; +} + +when (PLPresent == 0) { + set numberOfOctectsForNumberOfPoints = 0; + set interpretationOfNumberOfPoints = 0; +} + +section_padding section3Padding : read_only; + +concept gridType { + "regular_ll" = { gridDefinitionTemplateNumber=0; PLPresent=0; } + "reduced_ll" = { gridDefinitionTemplateNumber=0; PLPresent=1; } + "rotated_ll" = { gridDefinitionTemplateNumber=1; PLPresent=0; } + "stretched_ll" = { gridDefinitionTemplateNumber=2; PLPresent=0; } + "stretched_rotated_ll" = { gridDefinitionTemplateNumber=3; PLPresent=0; } + "mercator" = { gridDefinitionTemplateNumber=10; PLPresent=0; } + "transverse_mercator" = { gridDefinitionTemplateNumber=12; PLPresent=0; } + "polar_stereographic" = { gridDefinitionTemplateNumber=20; PLPresent=0; } + "lambert" = { gridDefinitionTemplateNumber=30; PLPresent=0; } + "albers" = { gridDefinitionTemplateNumber=31; PLPresent=0; } + + "regular_gg" = { gridDefinitionTemplateNumber=40; PLPresent=0; } + "reduced_gg" = { gridDefinitionTemplateNumber=40; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } + + "rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } + "reduced_rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } + + "stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } + "reduced_stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } + + "stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } + "reduced_stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } + +# For consistency add the prefix regular_ +"regular_rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } # = rotated_gg +"regular_stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } # = stretched_gg +"regular_stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } # = stretched_rotated_gg + + "sh" = { gridDefinitionTemplateNumber=50; PLPresent=0;} + "rotated_sh" = { gridDefinitionTemplateNumber=51; PLPresent=0;} + "stretched_sh" = { gridDefinitionTemplateNumber=52; PLPresent=0;} + "stretched_rotated_sh" = { gridDefinitionTemplateNumber=53; PLPresent=0;} + "space_view" = { gridDefinitionTemplateNumber=90; PLPresent=0;} + "triangular_grid" = { gridDefinitionTemplateNumber=100;PLPresent=0;} + "unstructured_grid" = { gridDefinitionTemplateNumber=101;PLPresent=0;} + "equatorial_azimuthal_equidistant" = { gridDefinitionTemplateNumber=110; PLPresent=0;} + "azimuth_range" = { gridDefinitionTemplateNumber=120;PLPresent=0; } + "irregular_latlon" = { gridDefinitionTemplateNumber=130;PLPresent=0; } + "lambert_azimuthal_equal_area"= { gridDefinitionTemplateNumber=140;PLPresent=0; } + "cross_section" = { gridDefinitionTemplateNumber=1000;PLPresent=0; } + "Hovmoller" = { gridDefinitionTemplateNumber=1100;PLPresent=0; } + "time_section" = { gridDefinitionTemplateNumber=1200;PLPresent=0; } + "lambert_lam" = { gridDefinitionTemplateNumber=33; PLPresent=0; } + "mercator_lam" = { gridDefinitionTemplateNumber=13; PLPresent=0; } + "polar_stereographic_lam" = { gridDefinitionTemplateNumber=23; PLPresent=0; } + "lambert_bf" = { gridDefinitionTemplateNumber=63; PLPresent=0; } + "mercator_bf" = { gridDefinitionTemplateNumber=61; PLPresent=0; } + "polar_stereographic_bf" = { gridDefinitionTemplateNumber=62; PLPresent=0; } + "unknown" = {PLPresent=0;} + "unknown_PLPresent" = {PLPresent=1;} + "rotated_arakawa_none_staggered" = { gridDefinitionTemplateNumber=32679; PLPresent=0; } +} : dump; + +alias ls.gridType=gridType; +alias geography.gridType=gridType; +alias typeOfGrid=gridType; + +meta md5Section3 md5(offsetSection3,section3Length); +alias md5GridSection = md5Section3; + +meta projSourceString proj_string(gridType, 0): hidden; +meta projTargetString proj_string(gridType, 1): hidden; +alias projString = projTargetString : hidden; diff --git a/eccodes/definitions/grib2/section.4.def b/eccodes/definitions/grib2/section.4.def new file mode 100644 index 00000000..b98ac194 --- /dev/null +++ b/eccodes/definitions/grib2/section.4.def @@ -0,0 +1,78 @@ +# (C) Copyright 2005- ECMWF. + +transient timeRangeIndicator=0 : no_copy,hidden; + +position offsetSection4; +section_length[4] section4Length ; +meta section4Pointer section_pointer(offsetSection4,section4Length,4); + +unsigned[1] numberOfSection = 4:read_only; + +unsigned[2] NV : dump ; +alias numberOfVerticalCoordinateValues=NV ; +alias numberOfCoordinatesValues=NV; +# For table 4.5, code 150 Generalized vertical height coordinate +alias numberOfVerticalGridDescriptors=NV ; + +# Product Definition Template Number + +transient neitherPresent = 0; + +if (centre==7 || centre==46) { + alias disableGrib1LocalSection=one; +} + +codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; + +if (section2Used == 1) { + when (new()) { + set_nofail productDefinitionTemplateNumber=productDefinitionTemplateNumberInternal; + } +} +transient genVertHeightCoords = 0; +template productDefinition "grib2/template.4.[productDefinitionTemplateNumber:l].def" ; + +if (defined(marsStream) && defined(marsType)) { + template_nofail marsKeywords1 "mars/grib.[marsStream:s].[marsType:s].def"; +} + +template parameters "grib2/parameters.def"; + +# Detect if this is for Generalized vertical height coordinates +if (defined(typeOfFirstFixedSurface)) { + if (typeOfFirstFixedSurface == 150) { + transient genVertHeightCoords = 1; + transient PVPresent = 0; + } +} + +if (genVertHeightCoords) { + # Generalized vertical height coordinate case + ieeefloat nlev : dump ; + ieeefloat numberOfVGridUsed : dump; + byte[16] uuidOfVGrid : dump; + + alias numberOfVerticalCoordinateValues = nlev; + alias numberOfCoordinatesValues = nlev; + alias numberOfVerticalGridDescriptors = nlev; +} +else { + if (NV == 0){ + transient PVPresent = 0; + } else { + transient PVPresent = 1; + } + # See GRIB-547 + if (PVPresent || NV>0){ + ieeefloat pv[numberOfCoordinatesValues] : dump; + alias vertical.pv=pv; + } + + # GRIB-534: To easily remove vertical coordinates, set this key to 1 + concept_nofail deletePV(unknown) { + "1" = { PVPresent=0; NV=0; } + } + +} + +meta md5Section4 md5(offsetSection4,section4Length); diff --git a/eccodes/definitions/grib2/section.5.def b/eccodes/definitions/grib2/section.5.def new file mode 100644 index 00000000..ec77e10c --- /dev/null +++ b/eccodes/definitions/grib2/section.5.def @@ -0,0 +1,65 @@ +# (C) Copyright 2005- ECMWF. + +position offsetBSection5; + +# START grib2::section +# SECTION 5, DATA REPRESENTATION SECTION +# Length of section in octets + +# (nn) +position offsetSection5; +section_length[4] section5Length ; + +meta section5 section_pointer(offsetSection5,section5Length,5); + +# Number of section +unsigned[1] numberOfSection =5 : read_only; + +# Number of data points where one or more values are specified in Section 7 when a bit map is present, +# total number of data pints when a bit map is absent. +unsigned[4] numberOfValues : dump; +alias numberOfCodedValues=numberOfValues; +alias numberOfEffectiveValues=numberOfValues; + +# Data Representation Template Number +codetable[2] dataRepresentationTemplateNumber ('5.0.table',masterDir,localDir) : edition_specific; + +concept packingType (unknown) { +#set uses the last one +#get returns the first match + "grid_simple" = { dataRepresentationTemplateNumber = 0; } + "spectral_complex" = { dataRepresentationTemplateNumber = 51; spectralType=1; spectralMode=1; } + "spectral_simple" = { dataRepresentationTemplateNumber = 50; spectralType=1; spectralMode=1; } + "grid_simple_matrix" = { dataRepresentationTemplateNumber = 1; } + "grid_complex" = { dataRepresentationTemplateNumber = 2; } + "grid_complex_spatial_differencing" = { dataRepresentationTemplateNumber = 3; } + "grid_jpeg" = { dataRepresentationTemplateNumber = 40000; } + "grid_jpeg" = { dataRepresentationTemplateNumber = 40; } + "grid_png" = { dataRepresentationTemplateNumber = 40010; } + "grid_png" = { dataRepresentationTemplateNumber = 41; } + "grid_ccsds" = { dataRepresentationTemplateNumber = 42; } + "grid_ieee" = { dataRepresentationTemplateNumber = 4; } + "grid_second_order" = { dataRepresentationTemplateNumber = 50001; } + "grid_second_order" = { dataRepresentationTemplateNumber = 50002; } + "grid_second_order_boustrophedonic" = { dataRepresentationTemplateNumber = 50002; } + "grid_second_order_no_boustrophedonic" = { dataRepresentationTemplateNumber = 50001; } + "grid_second_order_row_by_row" = { dataRepresentationTemplateNumber = 50001; } + "grid_second_order_constant_width" = { dataRepresentationTemplateNumber = 50001; } + "grid_second_order_general_grib1" = { dataRepresentationTemplateNumber = 50001; } + "grid_second_order_no_SPD" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=0; } + "grid_second_order_SPD1" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=1; } + "grid_second_order_SPD2" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=2; } + "grid_second_order_SPD3" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=3; } + "spectral_ieee" = { dataRepresentationTemplateNumber=50000; } + "grid_simple_log_preprocessing" = { dataRepresentationTemplateNumber = 61; } + "bifourier_complex" = { dataRepresentationTemplateNumber = 53; spectralType=2; } +} : dump; + +template dataRepresentation "grib2/template.5.[dataRepresentationTemplateNumber:l].def"; + +alias ls.packingType=packingType; +alias dataRepresentation=packingType; +alias typeOfPacking=packingType; +transient representationMode=0 :hidden,no_copy; + +meta md5Section5 md5(offsetSection5,section5Length); diff --git a/eccodes/definitions/grib2/section.6.def b/eccodes/definitions/grib2/section.6.def new file mode 100644 index 00000000..3cf18d72 --- /dev/null +++ b/eccodes/definitions/grib2/section.6.def @@ -0,0 +1,63 @@ +# (C) Copyright 2005- ECMWF. + +# START grib2::section +# SECTION 6, BIT-MAP SECTION +# Length of section in octets +# (nn) +position offsetSection6; +position offsetBSection6; + +section_length[4] section6Length ; +meta section6 section_pointer(offsetSection6,section6Length,6); + +# Number of section +unsigned[1] numberOfSection = 6:read_only; + +# Bit-map indicator +codetable[1] bitMapIndicator ('6.0.table',masterDir,localDir) = 255 : dump; + +#transient bitmapPresent=1; +meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump; +transient missingValuesPresent = bitmapPresent : hidden, read_only; + +# Bitmap... +if(bitMapIndicator == 0) +{ + if(dataRepresentationTemplateNumber == 1) + { + if(matrixBitmapsPresent == 1) + { + meta primaryBitmap g2bitmap( tableReference, + missingValue, + offsetBSection6, + section6Length, + numberOfDataMatrices) : read_only; + } + else + { + meta geography.bitmap g2bitmap( tableReference, + missingValue, + offsetBSection6, + section6Length, + numberOfDataPoints) : read_only; + } + } + else + { + meta geography.bitmap g2bitmap( tableReference, + missingValue, + offsetBSection6, + section6Length, + numberOfDataPoints) : read_only; + } +} + +if(bitMapIndicator == 255) +{ + # No bitmap is used but some complex packing schemes embed the missing values in the data section + if (dataRepresentationTemplateNumber == 2 || dataRepresentationTemplateNumber == 3) { + transient missingValuesPresent = (missingValueManagementUsed != 0) : read_only; + } +} + +meta md5Section6 md5(offsetSection6,section6Length); diff --git a/eccodes/definitions/grib2/section.7.def b/eccodes/definitions/grib2/section.7.def new file mode 100644 index 00000000..f83c9480 --- /dev/null +++ b/eccodes/definitions/grib2/section.7.def @@ -0,0 +1,41 @@ +# (C) Copyright 2005- ECMWF. + +# START grib2::section +# SECTION 7, DATA SECTION +# Length of section in octets +# (nn) + +position offsetSection7; + +section_length[4] section7Length ; +meta section7 section_pointer(offsetSection7,section7Length,7); + +# Number of section +unsigned[1] numberOfSection = 7:read_only; + +# Octets 6-nn : Data in a format described by Data Template 7.x, where x is the Data Representation +# Template number given in octets 10-11 of Section 5 +position offsetBeforeData; +#if (changed(dataRepresentationTemplateNumber)) { + template dataValues "grib2/template.7.[dataRepresentationTemplateNumber:l].def"; +#} + +meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; +meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; +alias setDecimalPrecision=changeDecimalPrecision; + +meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; + +meta getNumberOfValues size(values) : edition_specific,dump ; + +meta scaleValuesBy scale_values(values,missingValue) : edition_specific; +meta offsetValuesBy offset_values(values,missingValue) : edition_specific; + +concept productType(unknown) { + "obstat" = {grib2LocalSectionPresent=1; centre=98; grib2LocalSectionNumber=500;productDefinitionTemplateNumber=2000;} +} + +position offsetAfterData; +meta md5Section7 md5(offsetSection7,section7Length); +alias md5DataSection = md5Section7; + diff --git a/eccodes/definitions/grib2/section.8.def b/eccodes/definitions/grib2/section.8.def new file mode 100644 index 00000000..e8f6ae1f --- /dev/null +++ b/eccodes/definitions/grib2/section.8.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +constant section8Length=4; +position offsetSection8; +ascii[4] '7777' = "7777" : read_only; +meta section8Pointer section_pointer(offsetSection8,section8Length,8); + diff --git a/eccodes/definitions/grib2/sections.def b/eccodes/definitions/grib2/sections.def new file mode 100644 index 00000000..e3e3f47b --- /dev/null +++ b/eccodes/definitions/grib2/sections.def @@ -0,0 +1,66 @@ +# (C) Copyright 2005- ECMWF. + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 1 or new() ){ + position sectionPosition; + template section_1 "grib2/section.1.def"; +} + +lookup[1] sectionNumber(4); + +transient grib2LocalSectionPresent=0; +alias section2Used=zero; +alias setLocalDefinition=grib2LocalSectionPresent; +transient deleteLocalDefinition=0; + +if( (sectionNumber == 2 or grib2LocalSectionPresent>0) and deleteLocalDefinition == 0 ){ + position sectionPosition; + template section_2 "grib2/section.2.def"; +} +alias localUsePresent=section2Used; + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 3 or new() ){ + position sectionPosition; + template section_3 "grib2/section.3.def"; +} + + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 4 or new() ){ + position sectionPosition; + template section_4 "grib2/section.4.def"; +} + +# Used to mark end of headers. Can be accessed with grib_get_offset() +position endOfHeadersMarker; + +meta lengthOfHeaders evaluate( endOfHeadersMarker-startOfHeaders); +meta md5Headers md5(startOfHeaders,lengthOfHeaders); + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 5 or new() ){ + position sectionPosition; + template section_5 "grib2/section.5.def"; +} + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 6 or new() ){ + position sectionPosition; + template section_6 "grib2/section.6.def"; +} + +lookup[1] sectionNumber(4) ; + +if(sectionNumber == 7 or new() ){ + position sectionPosition; + template section_7 "grib2/section.7.def"; +} + + +#template metas "grib2/meta.def"; diff --git a/eccodes/definitions/grib2/shortName.def b/eccodes/definitions/grib2/shortName.def new file mode 100644 index 00000000..fd3db074 --- /dev/null +++ b/eccodes/definitions/grib2/shortName.def @@ -0,0 +1,4140 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 5 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 40 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 80 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 150 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 200 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 3 ; + scaleFactorOfLowerLimit = -2 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 200 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 31 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 45 ; + } +#Sea ice area fraction +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'rsn' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'sst' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'slt' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'10fg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#Specific rain water content +'crwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'cswc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Total column cloud liquid water +'tclw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Total column cloud ice water +'tciw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Surface solar radiation downwards +'ssrd' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'strd' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net solar radiation +'tsr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'ewss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'nsss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Ozone mass mixing ratio +'o3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'tsn' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Specific cloud liquid water content +'clwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'ciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'cc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'lsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth +'sde' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Total precipitation of at least 25 mm +'tpg25' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 25 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 50 mm +'tpg50' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 50 ; + } +#10 metre wind gust of at least 10 m/s +'10fgg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Probability of temperature standardized anomaly greater than 1 standard deviation +'ptsa_gt_1stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 1 ; + probabilityType = 3 ; + } +#Probability of temperature standardized anomaly greater than 1.5 standard deviation +'ptsa_gt_1p5stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 15 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly greater than 2 standard deviation +'ptsa_gt_2stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 2 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + } +#Probability of temperature standardized anomaly less than -1 standard deviation +'ptsa_lt_1stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -1 ; + probabilityType = 0 ; + } +#Probability of temperature standardized anomaly less than -1.5 standard deviation +'ptsa_lt_1p5stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -15 ; + } +#Probability of temperature standardized anomaly less than -2 standard deviation +'ptsa_lt_2stdev' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -2 ; + probabilityType = 0 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + } +#Mean sea water potential temperature in the upper 300 m +'mswpt300m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Mean sea water temperature in the upper 300 m +'mswt300m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Sea surface practical salinity +'sos' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'mlotst010' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 169 ; + } +#2 metre specific humidity +'2sh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Nitrate aerosol optical depth at 550 nm +'niaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 62004 ; + } +#Ammonium aerosol optical depth at 550 nm +'amaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + typeOfSizeInterval = 255 ; + aerosolType = 62003 ; + is_aerosol_optical = 1 ; + } +#Ammonium aerosol mass mixing ratio +'aermr18diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Dry deposition of ammonium aerosol +'aerddpam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Sedimentation of ammonium aerosol +'aersdmam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'aerwdlam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'aerwdcam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Vertically integrated mass of ammonium aerosol +'aermssam' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + aerosolType = 62003 ; + } +#-10 degrees C isothermal level (atm) +'degm10l' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 26315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#0 degrees C isothermal level (atm) +'deg0l' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 27315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'rhw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'rhi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'asn' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'fspc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'fcpc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Maximum CAPE in the last 6 hours +'mxcape6' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Maximum CAPES in the last 6 hours +'mxcapes6' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 19 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + } +#2 metre relative humidity with respect to water +'2rhw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Liquid water content in snow pack +'lwcs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Height of convective cloud top +'hcct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Instantaneous total lightning flash density +'litoti' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged total lightning flash density in the last hour +'litota1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + } +#Instantaneous cloud-to-ground lightning flash density +'licgi' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'licga1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Unbalanced component of specific humidity +'ucq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'ucclwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'ucciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Averaged total lightning flash density in the last 3 hours +'litota3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged total lightning flash density in the last 6 hours +'litota6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'licga3' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'licga6' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'st20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 100 cm +'st100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Water runoff and drainage +'ro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mixed-layer CAPE in the lowest 50 hPa +'mlcape50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'mlcin50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'mlcape100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'mlcin100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'mucape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Most-unstable CIN +'mucin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'mudlp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#200 metre U wind component +'200u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + typeOfFirstFixedSurface = 103 ; + } +#200 metre V wind component +'200v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#200 metre wind speed +'200si' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#100 metre wind speed +'100si' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mean temperature tendency due to short-wave radiation +'mttswr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'mttlwr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'mttswrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'mttlwrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'mttpm' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'mqtpm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'mutpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'mvtpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'mumf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'mdmf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'mudr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'mddr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'mtpf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'mtdch' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Time integral of rain flux +'tirf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface eastward momentum flux +'tisemf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface northward momentum flux +'tisnmf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Cross sectional area of flow in channel +'chcross' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'chside' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'dis' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'rivsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'fldsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'fldfrc' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'dslr' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'frost' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'woss' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'tpups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'smups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean discharge in the last 6 hours +'dis06' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean discharge in the last 24 hours +'dis24' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 24 ; + } +#Snow depth at elevation bands +'sd_elev' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'gwus' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'gwls' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Latitude +'lat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Longitude +'lon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } +#Latitude on T grid +'tlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Longitude on T grid +'tlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Latitude on U grid +'ulat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Longitude on U grid +'ulon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Latitude on V grid +'vlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Longitude on V grid +'vlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Latitude on W grid +'wlat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Longitude on W grid +'wlon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Latitude on F grid +'flat' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Longitude on F grid +'flon' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Total column graupel +'tcolg' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity +'2r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'aptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'hindex' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'ccl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'evarate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'10wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'dirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'difswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'tidirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation in the last 6 hours +'eva06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + is_uerra = 0 ; + } +#Evaporation in the last 24 hours +'eva24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + is_uerra = 0 ; + } +#Total precipitation in the last 6 hours +'tp06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + is_efas = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Total precipitation in the last 24 hours +'tp24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + is_efas = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Fraction of snow cover +'fscov' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 121 ; + } +#Clear air turbulence (CAT) +'cat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 29 ; + } +#Mountain wave turbulence (eddy dissipation rate) +'mwt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 28 ; + } +#Soil temperature +'sot' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'dswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'uswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'dlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'sohf' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'percr' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'sod' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'adswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'auswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'adlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'perc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'clbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'csbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Forest fire weather index +'fwinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Fine fuel moisture code +'ffmcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Duff moisture code +'dufmcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Drought code +'drtcode' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Initial fire spread index +'infsinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Fire buildup index +'fbupinx' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Fire daily severity rating +'fdsrte' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Cloudy radiance (with respect to wave number) +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Keetch-Byram drought index +'kbdi' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'drtmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'rosmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'fdimrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'scnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'buinfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'icnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'ercnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } +#Universal thermal climate index +'utci' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Mean radiant temperature +'mrt' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Fraction of Malaria cases +'mal_cases_frac' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Malaria circumsporozoite protein ratio +'mal_prot_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Plasmodium falciparum entomological inoculation rate +'mal_innoc_rate' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Human bite rate by anopheles vectors +'mal_hbite_rate' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Malaria immunity ratio +'mal_immun_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Falciparum parasite ratio +'mal_infect_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Detectable falciparum parasite ratio (after day 10) +'mal_infect_d10_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Anopheles vector to host ratio +'mal_host_ratio' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Anopheles vector density +'mal_vect_dens' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Fraction of malarial vector reproductive habitat +'mal_hab_frac' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Population density +'pop_dens' = { + discipline = 20 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Virtual temperature +'vtmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'vptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Mean zero-crossing wave period +'mp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'mwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Peak wave period +'pp1d' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Mean wave period +'mwp' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Eastward sea water velocity +'ocu' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'ocv' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'zos' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'t20d' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfSecondFixedSurface = 255 ; + typeOfFirstFixedSurface = 20 ; + scaleFactorOfFirstFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 29315 ; + } +#Average salinity in the upper 300m +'sav300' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 21 ; + typeOfSecondFixedSurface = 160 ; + typeOfFirstFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Surface runoff +'sro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Sea-ice thickness +'sithick' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre U wind component +'100u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre V wind component +'100v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'cape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'pv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'z' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'sp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'tcw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'vo' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'bld' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'sshf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'slhf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'d' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'10u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'10v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'lsm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'sr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'str' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'sund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'btmp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'10si' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Skin temperature +'skt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'lhtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'shtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'heatx' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'wcf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'mindpd' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'snohf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'vapp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'ncpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'srweq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'snoc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'snol' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'snoag' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'absh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'ptype' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'iliqw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'clwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'icmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'rwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'snmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'maxrh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'maxah' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'asnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'pwcat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'grle' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'crain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'cfrzr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'cicep' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'csnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'cprat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'mdiv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'cpofp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'pevap' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'pevpr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'snowc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'frain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'rime' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'tcolr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tcols' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'lswp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'cwp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'twatp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'tsnowp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'tcwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'tprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'tsrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'lsprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'lssrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'tsrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'csrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'lssrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'tciwv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'rprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'sprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'fprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'iprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'uflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'vflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'maxgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'ugust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'vgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'vwsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'mflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'ustm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'vstm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'cd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'fricv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'prmsl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'dist' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'alts' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'thick' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'presalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'denalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5wavh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'u-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'v-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'hpbl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5wava' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'sdsgso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'nswrt' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'dswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'uswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'nswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'photar' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'nswrfcs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'dwuvr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'uviucs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'uvi' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'nlwrt' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'nlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'nlwrcs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'cice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'cwat' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'cdca' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'tmaxt' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'thunc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'cdcb' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'ceil' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'cdlyr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'cwork' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'cuefi' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'tcolw' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'tcoli' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'tcolc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'fice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'cdcimr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'suns' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'kx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'kox' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'totalx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'sx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'hlcy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'ehlx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'4lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'aerot' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'tozne' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'tcioz' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'bswid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'bref' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'brvel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'veril' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'lmaxbr' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'prec' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'acces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'aciod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'acradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'gdces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'gdiod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'gdradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'tiaccp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'tiacip' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'tiacrp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'volash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'icit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'icib' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'ici' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'turbt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'turbb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'turb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'tke' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'pblreg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'conti' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'contet' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'contt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'contb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'mxsalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'snfalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Relative clear air turbulence (RCAT) +'rcat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'var190m0' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'ffldg' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'ffldro' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'rssc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'esct' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'swepon' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'bgrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'ssrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'cppop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'pposp' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'pop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'land' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'veg' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'watr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'evapt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'mterh' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'landu' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'gflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'mstav' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'sfexc' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'cnwat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'bmixl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'ccond' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'rsmin' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'rcs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'rct' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'rcsol' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'rcq' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'cisoilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'hflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'vsw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'vwiltm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'uplst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'uplsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'lowlsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'botlst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'soill' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'rlyrs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'smref' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'smdry' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'poros' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'liqvsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'voltso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'transo' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'voldec' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'direc' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'soilp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'vsosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'satosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'estp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'irrate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'ctoph' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'ctophqi' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'estu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'estv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'npixu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'solza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'raza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'rfl06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'rfl08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'rfl16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'rfl39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'atmdiv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'wvdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'dirpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'dirc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'spc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'wz' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'ist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'dslm' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'al' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'ptend' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'hstdv' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'dpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'lapr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'rdsp1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'rdsp2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'rdsp3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'ta' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'presa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'absv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'absd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'vucsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'vvcsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'ucurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'vcurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'satd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'prate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'acpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'ssw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'s' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'uice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'vice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'snom' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'grad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'swrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'wmixe' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre wind gust of at least 15 m/s +'10fgg15' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + } +#10 metre wind gust of at least 20 m/s +'10fgg20' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Convective inhibition +'cin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'orog' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Fall water equivalent +'sf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'cap' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'wilt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; +} diff --git a/eccodes/definitions/grib2/tables/0.0.table b/eccodes/definitions/grib2/tables/0.0.table new file mode 100644 index 00000000..415784e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0.0.table @@ -0,0 +1,11 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +20 20 Health and socioeconomic impacts +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/0.0.table b/eccodes/definitions/grib2/tables/0/0.0.table new file mode 100644 index 00000000..0dd70a18 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/0.0.table @@ -0,0 +1,6 @@ +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +10 10 Oceanographic products +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/1.0.table b/eccodes/definitions/grib2/tables/0/1.0.table new file mode 100644 index 00000000..3c5223d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/1.0.table @@ -0,0 +1,5 @@ +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/0/1.1.table b/eccodes/definitions/grib2/tables/0/1.1.table new file mode 100644 index 00000000..a3c2fdc7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/1.1.table @@ -0,0 +1,2 @@ +0 0 Local tables not used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/1.2.table b/eccodes/definitions/grib2/tables/0/1.2.table new file mode 100644 index 00000000..a4e2cc41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/1.2.table @@ -0,0 +1,5 @@ +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/1.3.table b/eccodes/definitions/grib2/tables/0/1.3.table new file mode 100644 index 00000000..ce83b495 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/1.3.table @@ -0,0 +1,7 @@ +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/1.4.table b/eccodes/definitions/grib2/tables/0/1.4.table new file mode 100644 index 00000000..a712f07a --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/1.4.table @@ -0,0 +1,10 @@ +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.0.table b/eccodes/definitions/grib2/tables/0/3.0.table new file mode 100644 index 00000000..be8be120 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.0.table @@ -0,0 +1,3 @@ +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/0/3.1.table b/eccodes/definitions/grib2/tables/0/3.1.table new file mode 100644 index 00000000..f81f9f05 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.1.table @@ -0,0 +1,26 @@ +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +10 10 Mercator +20 20 Polar stereographic can be south or north +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +90 90 Space view perspective orthographic +100 100 Triangular grid based on an icosahedron +110 110 Equatorial azimuthal equidistant projection +120 120 Azimuth-range projection +130 130 Irregular latitude/longitude grid +140 140 Lambert azimuthal equal area projection +1000 1000 Cross-section grid, with points equally spaced on the horizontal +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +1200 1200 Time section grid +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.10.table b/eccodes/definitions/grib2/tables/0/3.10.table new file mode 100644 index 00000000..6b635d90 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.10.table @@ -0,0 +1,6 @@ +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/0/3.11.table b/eccodes/definitions/grib2/tables/0/3.11.table new file mode 100644 index 00000000..16e6f46b --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.11.table @@ -0,0 +1,4 @@ +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.15.table b/eccodes/definitions/grib2/tables/0/3.15.table new file mode 100644 index 00000000..f3792c00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.15.table @@ -0,0 +1,16 @@ +20 20 Temperature K +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate +112 112 Geopotential height gpm +160 160 Depth below sea level m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.2.table b/eccodes/definitions/grib2/tables/0/3.2.table new file mode 100644 index 00000000..58a33e56 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.2.table @@ -0,0 +1,8 @@ +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.20.table b/eccodes/definitions/grib2/tables/0/3.20.table new file mode 100644 index 00000000..25995dcc --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.20.table @@ -0,0 +1,3 @@ +0 0 Rhumb +1 1 Great circle +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.21.table b/eccodes/definitions/grib2/tables/0/3.21.table new file mode 100644 index 00000000..1b9b7d68 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.21.table @@ -0,0 +1,4 @@ +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.3.table b/eccodes/definitions/grib2/tables/0/3.3.table new file mode 100644 index 00000000..90202ecd --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.3.table @@ -0,0 +1,6 @@ +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/0/3.4.table b/eccodes/definitions/grib2/tables/0/3.4.table new file mode 100644 index 00000000..b93252d8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.4.table @@ -0,0 +1,8 @@ +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/0/3.5.table b/eccodes/definitions/grib2/tables/0/3.5.table new file mode 100644 index 00000000..07c9a5f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.5.table @@ -0,0 +1,4 @@ +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/0/3.6.table b/eccodes/definitions/grib2/tables/0/3.6.table new file mode 100644 index 00000000..c0b792e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.6.table @@ -0,0 +1 @@ +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/0/3.7.table b/eccodes/definitions/grib2/tables/0/3.7.table new file mode 100644 index 00000000..579f4bab --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.7.table @@ -0,0 +1,3 @@ +0 0 Reserved +1 1 The complex numbers Fnm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/3.8.table b/eccodes/definitions/grib2/tables/0/3.8.table new file mode 100644 index 00000000..d9c89cf3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.8.table @@ -0,0 +1,5 @@ +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/3.9.table b/eccodes/definitions/grib2/tables/0/3.9.table new file mode 100644 index 00000000..83441c0a --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/3.9.table @@ -0,0 +1,2 @@ +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/0/4.0.table b/eccodes/definitions/grib2/tables/0/4.0.table new file mode 100644 index 00000000..862f03e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.0.table @@ -0,0 +1,37 @@ +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.1.0.table b/eccodes/definitions/grib2/tables/0/4.1.0.table new file mode 100644 index 00000000..dd5c30af --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.0.table @@ -0,0 +1,26 @@ +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +190 190 CCITT IA5 string +191 191 Miscellaneous +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.1.1.table b/eccodes/definitions/grib2/tables/0/4.1.1.table new file mode 100644 index 00000000..9b3222b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.1.table @@ -0,0 +1,5 @@ +0 0 Hydrology basic products +1 1 Hydrology probabilities +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.1.10.table b/eccodes/definitions/grib2/tables/0/4.1.10.table new file mode 100644 index 00000000..9472c5f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.10.table @@ -0,0 +1,8 @@ +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.1.2.table b/eccodes/definitions/grib2/tables/0/4.1.2.table new file mode 100644 index 00000000..3fbf491b --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.2.table @@ -0,0 +1,7 @@ +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.1.3.table b/eccodes/definitions/grib2/tables/0/4.1.3.table new file mode 100644 index 00000000..aad18460 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.3.table @@ -0,0 +1,5 @@ +0 0 Image format products +1 1 Quantitative products +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.1.table b/eccodes/definitions/grib2/tables/0/4.1.table new file mode 100644 index 00000000..4c665904 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.1.table @@ -0,0 +1,4 @@ +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.10.table b/eccodes/definitions/grib2/tables/0/4.10.table new file mode 100644 index 00000000..3a4280b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.10.table @@ -0,0 +1,12 @@ + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/0/4.11.table b/eccodes/definitions/grib2/tables/0/4.11.table new file mode 100644 index 00000000..e5aeec8b --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.11.table @@ -0,0 +1,6 @@ +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.12.table b/eccodes/definitions/grib2/tables/0/4.12.table new file mode 100644 index 00000000..ccc846d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.12.table @@ -0,0 +1,68 @@ + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.13.table b/eccodes/definitions/grib2/tables/0/4.13.table new file mode 100644 index 00000000..875d21bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.13.table @@ -0,0 +1,66 @@ +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.14.table b/eccodes/definitions/grib2/tables/0/4.14.table new file mode 100644 index 00000000..f43e9812 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.14.table @@ -0,0 +1,67 @@ + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.15.table b/eccodes/definitions/grib2/tables/0/4.15.table new file mode 100644 index 00000000..659d0703 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.15.table @@ -0,0 +1,67 @@ + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.151.table b/eccodes/definitions/grib2/tables/0/4.151.table new file mode 100644 index 00000000..be56a229 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.151.table @@ -0,0 +1,69 @@ + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.0.table b/eccodes/definitions/grib2/tables/0/4.2.0.0.table new file mode 100644 index 00000000..f935dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.0.table @@ -0,0 +1,20 @@ +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.1.table b/eccodes/definitions/grib2/tables/0/4.2.0.1.table new file mode 100644 index 00000000..823e1d32 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.1.table @@ -0,0 +1,63 @@ +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +69 69 Specific cloud liquid water content (kg kg-1) +70 70 Specific cloud ice water content (kg kg-1) +71 71 Specific rain water content (kg kg-1) +72 72 Specific snow water content (kg kg-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.13.table b/eccodes/definitions/grib2/tables/0/4.2.0.13.table new file mode 100644 index 00000000..567dce2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.13.table @@ -0,0 +1,3 @@ +0 0 Aerosol type (Code table 4.205) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.14.table b/eccodes/definitions/grib2/tables/0/4.2.0.14.table new file mode 100644 index 00000000..ad1f023f --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.14.table @@ -0,0 +1,4 @@ +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.15.table b/eccodes/definitions/grib2/tables/0/4.2.0.15.table new file mode 100644 index 00000000..2e48bedc --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.15.table @@ -0,0 +1,11 @@ +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.18.table b/eccodes/definitions/grib2/tables/0/4.2.0.18.table new file mode 100644 index 00000000..156a65d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.18.table @@ -0,0 +1,11 @@ +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.19.table b/eccodes/definitions/grib2/tables/0/4.2.0.19.table new file mode 100644 index 00000000..7c495a60 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.19.table @@ -0,0 +1,21 @@ +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.190.table b/eccodes/definitions/grib2/tables/0/4.2.0.190.table new file mode 100644 index 00000000..181e9bb5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.190.table @@ -0,0 +1,3 @@ +0 0 Arbitrary text string (CCITTIA5) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.191.table b/eccodes/definitions/grib2/tables/0/4.2.0.191.table new file mode 100644 index 00000000..592810f9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.191.table @@ -0,0 +1,3 @@ +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.2.table b/eccodes/definitions/grib2/tables/0/4.2.0.2.table new file mode 100644 index 00000000..ac23abf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.2.table @@ -0,0 +1,32 @@ +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.20.table b/eccodes/definitions/grib2/tables/0/4.2.0.20.table new file mode 100644 index 00000000..2a66a0fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.20.table @@ -0,0 +1,22 @@ +0 0 Mass density (concentration) kg m-3 +1 1 Column-integrated mass density (see Note1) kg m-2 +2 2 Mass mixing ratio (mass fraction in air) kg kg-1 +3 3 Atmosphere emission mass flux kg m-2 s-1 +4 4 Atmosphere net production mass flux kg m-2 s-1 +5 5 Atmosphere net production and emission mass flux kg m-2 s-1 +6 6 Surface dry deposition mass flux kg m-2 s-1 +7 7 Surface wet deposition mass flux kg m-2 s-1 +8 8 Atmosphere re-emission mass flux kg m-2 s-1 +50 50 Amount in atmosphere mol +51 51 Concentration in air mol m-3 +52 52 Volume mixing ratio (fraction in air) mol mol-1 +53 53 Chemical gross production rate of concentration mol m-3 s-1 +54 54 Chemical gross destruction rate of concentration mol m-3 s-1 +55 55 Surface flux mol m-2 s-1 +56 56 Changes of amount in atmosphere (see Note 1) mol s-1 +57 57 Total yearly average burden of the atmosphere mol +58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 +100 100 Surface area density (aerosol) m-1 +101 101 Atmosphere optical thickness m +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.3.table b/eccodes/definitions/grib2/tables/0/4.2.0.3.table new file mode 100644 index 00000000..af5504ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.3.table @@ -0,0 +1,22 @@ + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) + 255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.4.table b/eccodes/definitions/grib2/tables/0/4.2.0.4.table new file mode 100644 index 00000000..fc42fba6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.4.table @@ -0,0 +1,11 @@ +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.5.table b/eccodes/definitions/grib2/tables/0/4.2.0.5.table new file mode 100644 index 00000000..94d7b971 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.5.table @@ -0,0 +1,8 @@ +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.6.table b/eccodes/definitions/grib2/tables/0/4.2.0.6.table new file mode 100644 index 00000000..504fc679 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.6.table @@ -0,0 +1,27 @@ +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.7.table b/eccodes/definitions/grib2/tables/0/4.2.0.7.table new file mode 100644 index 00000000..3e2ce318 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.0.7.table @@ -0,0 +1,15 @@ +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.1.0.table b/eccodes/definitions/grib2/tables/0/4.2.1.0.table new file mode 100644 index 00000000..3147f8c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.1.0.table @@ -0,0 +1,8 @@ +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.1.1.table b/eccodes/definitions/grib2/tables/0/4.2.1.1.table new file mode 100644 index 00000000..a86c29c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.1.1.table @@ -0,0 +1,5 @@ +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.0.table b/eccodes/definitions/grib2/tables/0/4.2.10.0.table new file mode 100644 index 00000000..98a0fedf --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.10.0.table @@ -0,0 +1,17 @@ +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.1.table b/eccodes/definitions/grib2/tables/0/4.2.10.1.table new file mode 100644 index 00000000..8c92ae82 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.10.1.table @@ -0,0 +1,5 @@ +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.2.table b/eccodes/definitions/grib2/tables/0/4.2.10.2.table new file mode 100644 index 00000000..7297632c --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.10.2.table @@ -0,0 +1,9 @@ +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.3.table b/eccodes/definitions/grib2/tables/0/4.2.10.3.table new file mode 100644 index 00000000..9e805aef --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.10.3.table @@ -0,0 +1,3 @@ +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.4.table b/eccodes/definitions/grib2/tables/0/4.2.10.4.table new file mode 100644 index 00000000..20a604c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.10.4.table @@ -0,0 +1,6 @@ +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.2.0.table b/eccodes/definitions/grib2/tables/0/4.2.2.0.table new file mode 100644 index 00000000..5678022f --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.2.0.table @@ -0,0 +1,26 @@ +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.2.3.table b/eccodes/definitions/grib2/tables/0/4.2.2.3.table new file mode 100644 index 00000000..6d993394 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.2.3.table @@ -0,0 +1,13 @@ +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.3.0.table b/eccodes/definitions/grib2/tables/0/4.2.3.0.table new file mode 100644 index 00000000..7e9e74e6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.3.0.table @@ -0,0 +1,11 @@ +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.2.3.1.table b/eccodes/definitions/grib2/tables/0/4.2.3.1.table new file mode 100644 index 00000000..e01f2211 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.2.3.1.table @@ -0,0 +1,8 @@ +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/0/4.201.table b/eccodes/definitions/grib2/tables/0/4.201.table new file mode 100644 index 00000000..7ee3a703 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.201.table @@ -0,0 +1,70 @@ + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.202.table b/eccodes/definitions/grib2/tables/0/4.202.table new file mode 100644 index 00000000..cee4c9e6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.202.table @@ -0,0 +1,65 @@ + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.203.table b/eccodes/definitions/grib2/tables/0/4.203.table new file mode 100644 index 00000000..1f8dbef6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.203.table @@ -0,0 +1,23 @@ +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.204.table b/eccodes/definitions/grib2/tables/0/4.204.table new file mode 100644 index 00000000..6ff5c353 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.204.table @@ -0,0 +1,70 @@ + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.205.table b/eccodes/definitions/grib2/tables/0/4.205.table new file mode 100644 index 00000000..7594bc0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.205.table @@ -0,0 +1,67 @@ + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.206.table b/eccodes/definitions/grib2/tables/0/4.206.table new file mode 100644 index 00000000..40463d37 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.206.table @@ -0,0 +1,67 @@ + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.207.table b/eccodes/definitions/grib2/tables/0/4.207.table new file mode 100644 index 00000000..46c8c808 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.207.table @@ -0,0 +1,69 @@ + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.208.table b/eccodes/definitions/grib2/tables/0/4.208.table new file mode 100644 index 00000000..34fc6708 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.208.table @@ -0,0 +1,70 @@ + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.209.table b/eccodes/definitions/grib2/tables/0/4.209.table new file mode 100644 index 00000000..2700f882 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.209.table @@ -0,0 +1,69 @@ + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.210.table b/eccodes/definitions/grib2/tables/0/4.210.table new file mode 100644 index 00000000..00ab2b2d --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.210.table @@ -0,0 +1,67 @@ + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.211.table b/eccodes/definitions/grib2/tables/0/4.211.table new file mode 100644 index 00000000..810d3de8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.211.table @@ -0,0 +1,68 @@ + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.212.table b/eccodes/definitions/grib2/tables/0/4.212.table new file mode 100644 index 00000000..30d8335c --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.212.table @@ -0,0 +1,78 @@ + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.213.table b/eccodes/definitions/grib2/tables/0/4.213.table new file mode 100644 index 00000000..110a1315 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.213.table @@ -0,0 +1,76 @@ + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.215.table b/eccodes/definitions/grib2/tables/0/4.215.table new file mode 100644 index 00000000..2fdcf441 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.215.table @@ -0,0 +1,9 @@ + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.216.table b/eccodes/definitions/grib2/tables/0/4.216.table new file mode 100644 index 00000000..b63683ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.216.table @@ -0,0 +1,2 @@ +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.217.table b/eccodes/definitions/grib2/tables/0/4.217.table new file mode 100644 index 00000000..5fe12699 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.217.table @@ -0,0 +1,69 @@ + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.220.table b/eccodes/definitions/grib2/tables/0/4.220.table new file mode 100644 index 00000000..b2621696 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.220.table @@ -0,0 +1,67 @@ + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.221.table b/eccodes/definitions/grib2/tables/0/4.221.table new file mode 100644 index 00000000..41718eb0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.221.table @@ -0,0 +1,67 @@ + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.230.table b/eccodes/definitions/grib2/tables/0/4.230.table new file mode 100644 index 00000000..245febe5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.230.table @@ -0,0 +1,114 @@ +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen +60005 60005 Total inorganic chlorine +60006 60006 Total inorganic bromine +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped Alkanes +60010 60010 Lumped Alkenes +60011 60011 Lumped Aromatic Compounds +60012 60012 Lumped Terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.3.table b/eccodes/definitions/grib2/tables/0/4.3.table new file mode 100644 index 00000000..cac7ebbb --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.3.table @@ -0,0 +1,10 @@ +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.4.table b/eccodes/definitions/grib2/tables/0/4.4.table new file mode 100644 index 00000000..4f9f0cdc --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.4.table @@ -0,0 +1,13 @@ +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.5.table b/eccodes/definitions/grib2/tables/0/4.5.table new file mode 100644 index 00000000..72dc1ad1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.5.table @@ -0,0 +1,26 @@ +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +20 20 Isothermal level (K) +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 105 Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 ml Eta level +117 117 Mixed layer depth (m) +160 160 Depth below sea level (m) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.6.table b/eccodes/definitions/grib2/tables/0/4.6.table new file mode 100644 index 00000000..a9efd5a7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.6.table @@ -0,0 +1,6 @@ + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.7.table b/eccodes/definitions/grib2/tables/0/4.7.table new file mode 100644 index 00000000..2f295c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.7.table @@ -0,0 +1,72 @@ + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.8.table b/eccodes/definitions/grib2/tables/0/4.8.table new file mode 100644 index 00000000..5f1e971d --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.8.table @@ -0,0 +1,67 @@ + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.9.table b/eccodes/definitions/grib2/tables/0/4.9.table new file mode 100644 index 00000000..7ae967e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.9.table @@ -0,0 +1,70 @@ + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/4.91.table b/eccodes/definitions/grib2/tables/0/4.91.table new file mode 100644 index 00000000..498e3fe1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/4.91.table @@ -0,0 +1,77 @@ + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/0/5.0.table b/eccodes/definitions/grib2/tables/0/5.0.table new file mode 100644 index 00000000..cb7fd164 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.0.table @@ -0,0 +1,14 @@ +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib2/tables/0/5.1.table b/eccodes/definitions/grib2/tables/0/5.1.table new file mode 100644 index 00000000..d0e6c2f3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.1.table @@ -0,0 +1,3 @@ +0 0 Floating point +1 1 Integer +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.2.table b/eccodes/definitions/grib2/tables/0/5.2.table new file mode 100644 index 00000000..d04bee53 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.2.table @@ -0,0 +1,4 @@ +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.3.table b/eccodes/definitions/grib2/tables/0/5.3.table new file mode 100644 index 00000000..1d020711 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.3.table @@ -0,0 +1,4 @@ +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.4.table b/eccodes/definitions/grib2/tables/0/5.4.table new file mode 100644 index 00000000..72d090e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.4.table @@ -0,0 +1,3 @@ +0 0 Row by row splitting +1 1 General group splitting +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.40.table b/eccodes/definitions/grib2/tables/0/5.40.table new file mode 100644 index 00000000..1a43b2d6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.40.table @@ -0,0 +1,3 @@ +0 0 Lossless +1 1 Lossy +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.40000.table b/eccodes/definitions/grib2/tables/0/5.40000.table new file mode 100644 index 00000000..1a43b2d6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.40000.table @@ -0,0 +1,3 @@ +0 0 Lossless +1 1 Lossy +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.5.table b/eccodes/definitions/grib2/tables/0/5.5.table new file mode 100644 index 00000000..5533ee98 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.5.table @@ -0,0 +1,5 @@ + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.6.table b/eccodes/definitions/grib2/tables/0/5.6.table new file mode 100644 index 00000000..fedae4eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.6.table @@ -0,0 +1,67 @@ + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.7.table b/eccodes/definitions/grib2/tables/0/5.7.table new file mode 100644 index 00000000..c21dde20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.7.table @@ -0,0 +1,5 @@ + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.8.table b/eccodes/definitions/grib2/tables/0/5.8.table new file mode 100644 index 00000000..5819a2b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.8.table @@ -0,0 +1,2 @@ +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/5.9.table b/eccodes/definitions/grib2/tables/0/5.9.table new file mode 100644 index 00000000..0dab162b --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/5.9.table @@ -0,0 +1,3 @@ +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/0/6.0.table b/eccodes/definitions/grib2/tables/0/6.0.table new file mode 100644 index 00000000..1eeac956 --- /dev/null +++ b/eccodes/definitions/grib2/tables/0/6.0.table @@ -0,0 +1,5 @@ + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/1.0.table b/eccodes/definitions/grib2/tables/1.0.table new file mode 100644 index 00000000..789ef85f --- /dev/null +++ b/eccodes/definitions/grib2/tables/1.0.table @@ -0,0 +1,30 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +25 25 Version implemented on 6 May 2020 +26 26 Version implemented on 16 November 2020 +# 27-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/1/0.0.table b/eccodes/definitions/grib2/tables/1/0.0.table new file mode 100644 index 00000000..0dd70a18 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/0.0.table @@ -0,0 +1,6 @@ +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +10 10 Oceanographic products +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/1.0.table b/eccodes/definitions/grib2/tables/1/1.0.table new file mode 100644 index 00000000..3c5223d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/1.0.table @@ -0,0 +1,5 @@ +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/1/1.1.table b/eccodes/definitions/grib2/tables/1/1.1.table new file mode 100644 index 00000000..a3c2fdc7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/1.1.table @@ -0,0 +1,2 @@ +0 0 Local tables not used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/1.2.table b/eccodes/definitions/grib2/tables/1/1.2.table new file mode 100644 index 00000000..a4e2cc41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/1.2.table @@ -0,0 +1,5 @@ +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/1.3.table b/eccodes/definitions/grib2/tables/1/1.3.table new file mode 100644 index 00000000..ce83b495 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/1.3.table @@ -0,0 +1,7 @@ +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/1.4.table b/eccodes/definitions/grib2/tables/1/1.4.table new file mode 100644 index 00000000..a712f07a --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/1.4.table @@ -0,0 +1,10 @@ +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.0.table b/eccodes/definitions/grib2/tables/1/3.0.table new file mode 100644 index 00000000..be8be120 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.0.table @@ -0,0 +1,3 @@ +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/1/3.1.table b/eccodes/definitions/grib2/tables/1/3.1.table new file mode 100644 index 00000000..f81f9f05 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.1.table @@ -0,0 +1,26 @@ +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +10 10 Mercator +20 20 Polar stereographic can be south or north +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +90 90 Space view perspective orthographic +100 100 Triangular grid based on an icosahedron +110 110 Equatorial azimuthal equidistant projection +120 120 Azimuth-range projection +130 130 Irregular latitude/longitude grid +140 140 Lambert azimuthal equal area projection +1000 1000 Cross-section grid, with points equally spaced on the horizontal +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +1200 1200 Time section grid +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.10.table b/eccodes/definitions/grib2/tables/1/3.10.table new file mode 100644 index 00000000..6b635d90 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.10.table @@ -0,0 +1,6 @@ +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/1/3.11.table b/eccodes/definitions/grib2/tables/1/3.11.table new file mode 100644 index 00000000..16e6f46b --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.11.table @@ -0,0 +1,4 @@ +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.15.table b/eccodes/definitions/grib2/tables/1/3.15.table new file mode 100644 index 00000000..f4c6b2a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.15.table @@ -0,0 +1,16 @@ +20 20 Temperature K +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +160 160 Depth below sea level m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.2.table b/eccodes/definitions/grib2/tables/1/3.2.table new file mode 100644 index 00000000..58a33e56 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.2.table @@ -0,0 +1,8 @@ +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.20.table b/eccodes/definitions/grib2/tables/1/3.20.table new file mode 100644 index 00000000..25995dcc --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.20.table @@ -0,0 +1,3 @@ +0 0 Rhumb +1 1 Great circle +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.21.table b/eccodes/definitions/grib2/tables/1/3.21.table new file mode 100644 index 00000000..1b9b7d68 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.21.table @@ -0,0 +1,4 @@ +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.3.table b/eccodes/definitions/grib2/tables/1/3.3.table new file mode 100644 index 00000000..90202ecd --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.3.table @@ -0,0 +1,6 @@ +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/1/3.4.table b/eccodes/definitions/grib2/tables/1/3.4.table new file mode 100644 index 00000000..b93252d8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.4.table @@ -0,0 +1,8 @@ +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/1/3.5.table b/eccodes/definitions/grib2/tables/1/3.5.table new file mode 100644 index 00000000..07c9a5f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.5.table @@ -0,0 +1,4 @@ +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/1/3.6.table b/eccodes/definitions/grib2/tables/1/3.6.table new file mode 100644 index 00000000..c0b792e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.6.table @@ -0,0 +1 @@ +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/1/3.7.table b/eccodes/definitions/grib2/tables/1/3.7.table new file mode 100644 index 00000000..579f4bab --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.7.table @@ -0,0 +1,3 @@ +0 0 Reserved +1 1 The complex numbers Fnm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/3.8.table b/eccodes/definitions/grib2/tables/1/3.8.table new file mode 100644 index 00000000..d9c89cf3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.8.table @@ -0,0 +1,5 @@ +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/3.9.table b/eccodes/definitions/grib2/tables/1/3.9.table new file mode 100644 index 00000000..83441c0a --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/3.9.table @@ -0,0 +1,2 @@ +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/1/4.0.table b/eccodes/definitions/grib2/tables/1/4.0.table new file mode 100644 index 00000000..862f03e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.0.table @@ -0,0 +1,37 @@ +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.1.0.table b/eccodes/definitions/grib2/tables/1/4.1.0.table new file mode 100644 index 00000000..dd5c30af --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.0.table @@ -0,0 +1,26 @@ +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +190 190 CCITT IA5 string +191 191 Miscellaneous +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.1.1.table b/eccodes/definitions/grib2/tables/1/4.1.1.table new file mode 100644 index 00000000..9b3222b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.1.table @@ -0,0 +1,5 @@ +0 0 Hydrology basic products +1 1 Hydrology probabilities +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.1.10.table b/eccodes/definitions/grib2/tables/1/4.1.10.table new file mode 100644 index 00000000..9472c5f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.10.table @@ -0,0 +1,8 @@ +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.1.2.table b/eccodes/definitions/grib2/tables/1/4.1.2.table new file mode 100644 index 00000000..3fbf491b --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.2.table @@ -0,0 +1,7 @@ +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.1.3.table b/eccodes/definitions/grib2/tables/1/4.1.3.table new file mode 100644 index 00000000..aad18460 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.3.table @@ -0,0 +1,5 @@ +0 0 Image format products +1 1 Quantitative products +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.1.table b/eccodes/definitions/grib2/tables/1/4.1.table new file mode 100644 index 00000000..4c665904 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.1.table @@ -0,0 +1,4 @@ +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.10.table b/eccodes/definitions/grib2/tables/1/4.10.table new file mode 100644 index 00000000..3a4280b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.10.table @@ -0,0 +1,12 @@ + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/1/4.11.table b/eccodes/definitions/grib2/tables/1/4.11.table new file mode 100644 index 00000000..e4f6514b --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.11.table @@ -0,0 +1,7 @@ + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.12.table b/eccodes/definitions/grib2/tables/1/4.12.table new file mode 100644 index 00000000..ccc846d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.12.table @@ -0,0 +1,68 @@ + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.13.table b/eccodes/definitions/grib2/tables/1/4.13.table new file mode 100644 index 00000000..6a5cad1a --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.13.table @@ -0,0 +1,67 @@ + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.14.table b/eccodes/definitions/grib2/tables/1/4.14.table new file mode 100644 index 00000000..f43e9812 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.14.table @@ -0,0 +1,67 @@ + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.15.table b/eccodes/definitions/grib2/tables/1/4.15.table new file mode 100644 index 00000000..659d0703 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.15.table @@ -0,0 +1,67 @@ + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.151.table b/eccodes/definitions/grib2/tables/1/4.151.table new file mode 100644 index 00000000..be56a229 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.151.table @@ -0,0 +1,69 @@ + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.0.table b/eccodes/definitions/grib2/tables/1/4.2.0.0.table new file mode 100644 index 00000000..f935dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.0.table @@ -0,0 +1,20 @@ +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.1.table b/eccodes/definitions/grib2/tables/1/4.2.0.1.table new file mode 100644 index 00000000..f760821b --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.1.table @@ -0,0 +1,59 @@ +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.13.table b/eccodes/definitions/grib2/tables/1/4.2.0.13.table new file mode 100644 index 00000000..567dce2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.13.table @@ -0,0 +1,3 @@ +0 0 Aerosol type (Code table 4.205) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.14.table b/eccodes/definitions/grib2/tables/1/4.2.0.14.table new file mode 100644 index 00000000..ad1f023f --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.14.table @@ -0,0 +1,4 @@ +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.15.table b/eccodes/definitions/grib2/tables/1/4.2.0.15.table new file mode 100644 index 00000000..2e48bedc --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.15.table @@ -0,0 +1,11 @@ +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.18.table b/eccodes/definitions/grib2/tables/1/4.2.0.18.table new file mode 100644 index 00000000..156a65d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.18.table @@ -0,0 +1,11 @@ +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.19.table b/eccodes/definitions/grib2/tables/1/4.2.0.19.table new file mode 100644 index 00000000..7c495a60 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.19.table @@ -0,0 +1,21 @@ +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.190.table b/eccodes/definitions/grib2/tables/1/4.2.0.190.table new file mode 100644 index 00000000..181e9bb5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.190.table @@ -0,0 +1,3 @@ +0 0 Arbitrary text string (CCITTIA5) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.191.table b/eccodes/definitions/grib2/tables/1/4.2.0.191.table new file mode 100644 index 00000000..592810f9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.191.table @@ -0,0 +1,3 @@ +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.2.table b/eccodes/definitions/grib2/tables/1/4.2.0.2.table new file mode 100644 index 00000000..ac23abf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.2.table @@ -0,0 +1,32 @@ +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.20.table b/eccodes/definitions/grib2/tables/1/4.2.0.20.table new file mode 100644 index 00000000..4e5938bb --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.20.table @@ -0,0 +1,11 @@ +0 0 Mass density (concentration) kg.m-3 +1 1 Total column (integrated mass density) kg.m-2 +2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 +3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 +4 4 Surface dry deposition mass flux kg.m-2.s-1 +5 5 Surface wet deposition mass flux kg.m-2.s-1 +6 6 Atmosphere emission mass flux kg.m-2.s-1 +7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 +8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 +9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.3.table b/eccodes/definitions/grib2/tables/1/4.2.0.3.table new file mode 100644 index 00000000..af5504ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.3.table @@ -0,0 +1,22 @@ + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) + 255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.4.table b/eccodes/definitions/grib2/tables/1/4.2.0.4.table new file mode 100644 index 00000000..fc42fba6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.4.table @@ -0,0 +1,11 @@ +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.5.table b/eccodes/definitions/grib2/tables/1/4.2.0.5.table new file mode 100644 index 00000000..94d7b971 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.5.table @@ -0,0 +1,8 @@ +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.6.table b/eccodes/definitions/grib2/tables/1/4.2.0.6.table new file mode 100644 index 00000000..504fc679 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.6.table @@ -0,0 +1,27 @@ +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.7.table b/eccodes/definitions/grib2/tables/1/4.2.0.7.table new file mode 100644 index 00000000..3e2ce318 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.0.7.table @@ -0,0 +1,15 @@ +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.1.0.table b/eccodes/definitions/grib2/tables/1/4.2.1.0.table new file mode 100644 index 00000000..3147f8c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.1.0.table @@ -0,0 +1,8 @@ +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.1.1.table b/eccodes/definitions/grib2/tables/1/4.2.1.1.table new file mode 100644 index 00000000..a86c29c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.1.1.table @@ -0,0 +1,5 @@ +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.0.table b/eccodes/definitions/grib2/tables/1/4.2.10.0.table new file mode 100644 index 00000000..98a0fedf --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.10.0.table @@ -0,0 +1,17 @@ +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.1.table b/eccodes/definitions/grib2/tables/1/4.2.10.1.table new file mode 100644 index 00000000..8c92ae82 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.10.1.table @@ -0,0 +1,5 @@ +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.2.table b/eccodes/definitions/grib2/tables/1/4.2.10.2.table new file mode 100644 index 00000000..7297632c --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.10.2.table @@ -0,0 +1,9 @@ +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.3.table b/eccodes/definitions/grib2/tables/1/4.2.10.3.table new file mode 100644 index 00000000..9e805aef --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.10.3.table @@ -0,0 +1,3 @@ +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.4.table b/eccodes/definitions/grib2/tables/1/4.2.10.4.table new file mode 100644 index 00000000..20a604c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.10.4.table @@ -0,0 +1,6 @@ +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.2.0.table b/eccodes/definitions/grib2/tables/1/4.2.2.0.table new file mode 100644 index 00000000..5678022f --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.2.0.table @@ -0,0 +1,26 @@ +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.2.3.table b/eccodes/definitions/grib2/tables/1/4.2.2.3.table new file mode 100644 index 00000000..6d993394 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.2.3.table @@ -0,0 +1,13 @@ +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.3.0.table b/eccodes/definitions/grib2/tables/1/4.2.3.0.table new file mode 100644 index 00000000..7e9e74e6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.3.0.table @@ -0,0 +1,11 @@ +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.2.3.1.table b/eccodes/definitions/grib2/tables/1/4.2.3.1.table new file mode 100644 index 00000000..e01f2211 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.2.3.1.table @@ -0,0 +1,8 @@ +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/1/4.201.table b/eccodes/definitions/grib2/tables/1/4.201.table new file mode 100644 index 00000000..7ee3a703 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.201.table @@ -0,0 +1,70 @@ + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.202.table b/eccodes/definitions/grib2/tables/1/4.202.table new file mode 100644 index 00000000..cee4c9e6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.202.table @@ -0,0 +1,65 @@ + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.203.table b/eccodes/definitions/grib2/tables/1/4.203.table new file mode 100644 index 00000000..1f8dbef6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.203.table @@ -0,0 +1,23 @@ +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.204.table b/eccodes/definitions/grib2/tables/1/4.204.table new file mode 100644 index 00000000..6ff5c353 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.204.table @@ -0,0 +1,70 @@ + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.205.table b/eccodes/definitions/grib2/tables/1/4.205.table new file mode 100644 index 00000000..7594bc0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.205.table @@ -0,0 +1,67 @@ + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.206.table b/eccodes/definitions/grib2/tables/1/4.206.table new file mode 100644 index 00000000..40463d37 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.206.table @@ -0,0 +1,67 @@ + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.207.table b/eccodes/definitions/grib2/tables/1/4.207.table new file mode 100644 index 00000000..46c8c808 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.207.table @@ -0,0 +1,69 @@ + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.208.table b/eccodes/definitions/grib2/tables/1/4.208.table new file mode 100644 index 00000000..34fc6708 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.208.table @@ -0,0 +1,70 @@ + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.209.table b/eccodes/definitions/grib2/tables/1/4.209.table new file mode 100644 index 00000000..2700f882 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.209.table @@ -0,0 +1,69 @@ + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.210.table b/eccodes/definitions/grib2/tables/1/4.210.table new file mode 100644 index 00000000..00ab2b2d --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.210.table @@ -0,0 +1,67 @@ + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.211.table b/eccodes/definitions/grib2/tables/1/4.211.table new file mode 100644 index 00000000..810d3de8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.211.table @@ -0,0 +1,68 @@ + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.212.table b/eccodes/definitions/grib2/tables/1/4.212.table new file mode 100644 index 00000000..30d8335c --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.212.table @@ -0,0 +1,78 @@ + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.213.table b/eccodes/definitions/grib2/tables/1/4.213.table new file mode 100644 index 00000000..110a1315 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.213.table @@ -0,0 +1,76 @@ + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.215.table b/eccodes/definitions/grib2/tables/1/4.215.table new file mode 100644 index 00000000..2fdcf441 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.215.table @@ -0,0 +1,9 @@ + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.216.table b/eccodes/definitions/grib2/tables/1/4.216.table new file mode 100644 index 00000000..b63683ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.216.table @@ -0,0 +1,2 @@ +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.217.table b/eccodes/definitions/grib2/tables/1/4.217.table new file mode 100644 index 00000000..5fe12699 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.217.table @@ -0,0 +1,69 @@ + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.220.table b/eccodes/definitions/grib2/tables/1/4.220.table new file mode 100644 index 00000000..b2621696 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.220.table @@ -0,0 +1,67 @@ + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.221.table b/eccodes/definitions/grib2/tables/1/4.221.table new file mode 100644 index 00000000..41718eb0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.221.table @@ -0,0 +1,67 @@ + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.230.table b/eccodes/definitions/grib2/tables/1/4.230.table new file mode 100644 index 00000000..696ffe3e --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.230.table @@ -0,0 +1,43 @@ +0 0 Air +1 1 Ozone +2 2 Water vapour +3 3 Methane +4 4 Carbon dioxide +5 5 Carbon monoxide +6 6 Nitrogen dioxide +7 7 Nitrous oxide +8 8 Nitrogen monoxide +9 9 Formaldehyde +10 10 Sulphur dioxide +11 11 Nitric acid +12 12 All nitrogen oxides (NOy) expressed as nitrogen +13 13 Peroxyacetyl nitrate +14 14 Hydroxyl radical +15 15 Ammonia +16 16 Ammonium +17 17 Radon +18 18 Dimethyl sulphide +19 19 Hexachlorocyclohexane +20 20 Alpha hexachlorocyclohexane +21 21 Elemental mercury +22 22 Divalent mercury +23 23 Hexachlorobiphenyl +24 24 NOx expressed as nitrogen +25 25 Non-methane volatile organic compounds expressed as carbon +26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon +27 27 Biogenic non-methane volatile organic compounds expressed as carbon +40000 40000 Sulphate dry aerosol +40001 40001 Black carbon dry aerosol +40002 40002 Particulate organic matter dry aerosol +40003 40003 Primary particulate organic matter dry aerosol +40004 40004 Secondary particulate organic matter dry aerosol +40005 40005 Sea salt dry aerosol +40006 40006 Dust dry aerosol +40007 40007 Mercury dry aerosol +40008 40008 PM10 aerosol +40009 40009 PM2P5 aerosol +40010 40010 PM1 aerosol +40011 40011 Nitrate dry aerosol +40012 40012 Ammonium dry aerosol +40013 40013 Water in ambient aerosol +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.3.table b/eccodes/definitions/grib2/tables/1/4.3.table new file mode 100644 index 00000000..cac7ebbb --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.3.table @@ -0,0 +1,10 @@ +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.4.table b/eccodes/definitions/grib2/tables/1/4.4.table new file mode 100644 index 00000000..4f9f0cdc --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.4.table @@ -0,0 +1,13 @@ +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.5.table b/eccodes/definitions/grib2/tables/1/4.5.table new file mode 100644 index 00000000..d4e95087 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.5.table @@ -0,0 +1,26 @@ +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +20 20 Isothermal level (K) +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +117 117 Mixed layer depth (m) +160 160 Depth below sea level (m) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.6.table b/eccodes/definitions/grib2/tables/1/4.6.table new file mode 100644 index 00000000..a9efd5a7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.6.table @@ -0,0 +1,6 @@ + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.7.table b/eccodes/definitions/grib2/tables/1/4.7.table new file mode 100644 index 00000000..2f295c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.7.table @@ -0,0 +1,72 @@ + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.8.table b/eccodes/definitions/grib2/tables/1/4.8.table new file mode 100644 index 00000000..5f1e971d --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.8.table @@ -0,0 +1,67 @@ + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.9.table b/eccodes/definitions/grib2/tables/1/4.9.table new file mode 100644 index 00000000..7ae967e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.9.table @@ -0,0 +1,70 @@ + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/4.91.table b/eccodes/definitions/grib2/tables/1/4.91.table new file mode 100644 index 00000000..498e3fe1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/4.91.table @@ -0,0 +1,77 @@ + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/1/5.0.table b/eccodes/definitions/grib2/tables/1/5.0.table new file mode 100644 index 00000000..cb7fd164 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.0.table @@ -0,0 +1,14 @@ +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib2/tables/1/5.1.table b/eccodes/definitions/grib2/tables/1/5.1.table new file mode 100644 index 00000000..d0e6c2f3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.1.table @@ -0,0 +1,3 @@ +0 0 Floating point +1 1 Integer +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.2.table b/eccodes/definitions/grib2/tables/1/5.2.table new file mode 100644 index 00000000..d04bee53 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.2.table @@ -0,0 +1,4 @@ +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.3.table b/eccodes/definitions/grib2/tables/1/5.3.table new file mode 100644 index 00000000..1d020711 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.3.table @@ -0,0 +1,4 @@ +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.4.table b/eccodes/definitions/grib2/tables/1/5.4.table new file mode 100644 index 00000000..72d090e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.4.table @@ -0,0 +1,3 @@ +0 0 Row by row splitting +1 1 General group splitting +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.40.table b/eccodes/definitions/grib2/tables/1/5.40.table new file mode 100644 index 00000000..1a43b2d6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.40.table @@ -0,0 +1,3 @@ +0 0 Lossless +1 1 Lossy +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.40000.table b/eccodes/definitions/grib2/tables/1/5.40000.table new file mode 100644 index 00000000..1a43b2d6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.40000.table @@ -0,0 +1,3 @@ +0 0 Lossless +1 1 Lossy +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.5.table b/eccodes/definitions/grib2/tables/1/5.5.table new file mode 100644 index 00000000..5533ee98 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.5.table @@ -0,0 +1,5 @@ + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.6.table b/eccodes/definitions/grib2/tables/1/5.6.table new file mode 100644 index 00000000..fedae4eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.6.table @@ -0,0 +1,67 @@ + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.7.table b/eccodes/definitions/grib2/tables/1/5.7.table new file mode 100644 index 00000000..c21dde20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.7.table @@ -0,0 +1,5 @@ + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.8.table b/eccodes/definitions/grib2/tables/1/5.8.table new file mode 100644 index 00000000..5819a2b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.8.table @@ -0,0 +1,2 @@ +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/5.9.table b/eccodes/definitions/grib2/tables/1/5.9.table new file mode 100644 index 00000000..0dab162b --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/5.9.table @@ -0,0 +1,3 @@ +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/1/6.0.table b/eccodes/definitions/grib2/tables/1/6.0.table new file mode 100644 index 00000000..1eeac956 --- /dev/null +++ b/eccodes/definitions/grib2/tables/1/6.0.table @@ -0,0 +1,5 @@ + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/10/0.0.table b/eccodes/definitions/grib2/tables/10/0.0.table new file mode 100644 index 00000000..1d3a90b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/0.0.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/1.0.table b/eccodes/definitions/grib2/tables/10/1.0.table new file mode 100644 index 00000000..babcdd77 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/1.0.table @@ -0,0 +1,15 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Pre-operational to be implemented by next amendment +# 12-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/10/1.1.table b/eccodes/definitions/grib2/tables/10/1.1.table new file mode 100644 index 00000000..91ef6624 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/1.1.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/1.2.table b/eccodes/definitions/grib2/tables/10/1.2.table new file mode 100644 index 00000000..d90ad010 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/1.2.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/1.3.table b/eccodes/definitions/grib2/tables/10/1.3.table new file mode 100644 index 00000000..35cd6a63 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/1.3.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/1.4.table b/eccodes/definitions/grib2/tables/10/1.4.table new file mode 100644 index 00000000..d11a335a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/1.4.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/10/3.0.table b/eccodes/definitions/grib2/tables/10/3.0.table new file mode 100644 index 00000000..4baed0aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.0.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/10/3.1.table b/eccodes/definitions/grib2/tables/10/3.1.table new file mode 100644 index 00000000..a246b979 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.10.table b/eccodes/definitions/grib2/tables/10/3.10.table new file mode 100644 index 00000000..23c1cdd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.10.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/10/3.11.table b/eccodes/definitions/grib2/tables/10/3.11.table new file mode 100644 index 00000000..560318d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.11.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.15.table b/eccodes/definitions/grib2/tables/10/3.15.table new file mode 100644 index 00000000..2394a293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.2.table b/eccodes/definitions/grib2/tables/10/3.2.table new file mode 100644 index 00000000..1a3d03bb --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the OSGB 1936 Datum, using the Airy_1830 Spheroid, the Greenwich meridian as 0 longitude, the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.20.table b/eccodes/definitions/grib2/tables/10/3.20.table new file mode 100644 index 00000000..3f7ab4cc --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.20.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.21.table b/eccodes/definitions/grib2/tables/10/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.3.table b/eccodes/definitions/grib2/tables/10/3.3.table new file mode 100644 index 00000000..5167ed6b --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.3.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/10/3.4.table b/eccodes/definitions/grib2/tables/10/3.4.table new file mode 100644 index 00000000..63c8adaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.4.table @@ -0,0 +1,10 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/10/3.5.table b/eccodes/definitions/grib2/tables/10/3.5.table new file mode 100644 index 00000000..8ccf0f13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.5.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/10/3.6.table b/eccodes/definitions/grib2/tables/10/3.6.table new file mode 100644 index 00000000..3099e6bb --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 See separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/10/3.7.table b/eccodes/definitions/grib2/tables/10/3.7.table new file mode 100644 index 00000000..e2dc660d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm. See separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.8.table b/eccodes/definitions/grib2/tables/10/3.8.table new file mode 100644 index 00000000..4e811917 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.8.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/3.9.table b/eccodes/definitions/grib2/tables/10/3.9.table new file mode 100644 index 00000000..f35b7ca5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/3.9.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/10/4.0.table b/eccodes/definitions/grib2/tables/10/4.0.table new file mode 100644 index 00000000..5f405bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.0.table @@ -0,0 +1,53 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +# 33-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.1.0.table b/eccodes/definitions/grib2/tables/10/4.1.0.table new file mode 100644 index 00000000..36110886 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.0.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.1.1.table b/eccodes/definitions/grib2/tables/10/4.1.1.table new file mode 100644 index 00000000..29f1dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.1.10.table b/eccodes/definitions/grib2/tables/10/4.1.10.table new file mode 100644 index 00000000..9c8c92b1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.10.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.1.192.table b/eccodes/definitions/grib2/tables/10/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/10/4.1.2.table b/eccodes/definitions/grib2/tables/10/4.1.2.table new file mode 100644 index 00000000..b90201c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.2.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.1.3.table b/eccodes/definitions/grib2/tables/10/4.1.3.table new file mode 100644 index 00000000..fe1d8ae5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.3.table @@ -0,0 +1,8 @@ +# Code table 4.1 - Parameter category by product discipline. Product discipline 3 - Space products +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/10/4.1.table b/eccodes/definitions/grib2/tables/10/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.10.table b/eccodes/definitions/grib2/tables/10/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/10/4.11.table b/eccodes/definitions/grib2/tables/10/4.11.table new file mode 100644 index 00000000..1257d1b0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.11.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.12.table b/eccodes/definitions/grib2/tables/10/4.12.table new file mode 100644 index 00000000..e06a3be5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.12.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.13.table b/eccodes/definitions/grib2/tables/10/4.13.table new file mode 100644 index 00000000..107ace60 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.13.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.14.table b/eccodes/definitions/grib2/tables/10/4.14.table new file mode 100644 index 00000000..24a22892 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.14.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.15.table b/eccodes/definitions/grib2/tables/10/4.15.table new file mode 100644 index 00000000..97cdcd2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.15.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.151.table b/eccodes/definitions/grib2/tables/10/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.192.table b/eccodes/definitions/grib2/tables/10/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.0.table b/eccodes/definitions/grib2/tables/10/4.2.0.0.table new file mode 100644 index 00000000..debc0a6f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.0.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew-point temperature (K) +7 7 Dew-point depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew-point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.1.table b/eccodes/definitions/grib2/tables/10/4.2.0.1.table new file mode 100644 index 00000000..b95e8699 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.1.table @@ -0,0 +1,95 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 1: moisture +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.13.table b/eccodes/definitions/grib2/tables/10/4.2.0.13.table new file mode 100644 index 00000000..b9979f0d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.13.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.14.table b/eccodes/definitions/grib2/tables/10/4.2.0.14.table new file mode 100644 index 00000000..4a2a4e12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.14.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.15.table b/eccodes/definitions/grib2/tables/10/4.2.0.15.table new file mode 100644 index 00000000..895892f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.15.table @@ -0,0 +1,19 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically-integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.16.table b/eccodes/definitions/grib2/tables/10/4.2.0.16.table new file mode 100644 index 00000000..39215ab2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.16.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.18.table b/eccodes/definitions/grib2/tables/10/4.2.0.18.table new file mode 100644 index 00000000..30060fd2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.18.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.19.table b/eccodes/definitions/grib2/tables/10/4.2.0.19.table new file mode 100644 index 00000000..2aa34464 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.190.table b/eccodes/definitions/grib2/tables/10/4.2.0.190.table new file mode 100644 index 00000000..39fb5574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.190.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.191.table b/eccodes/definitions/grib2/tables/10/4.2.0.191.table new file mode 100644 index 00000000..81230c0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.191.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.2.table b/eccodes/definitions/grib2/tables/10/4.2.0.2.table new file mode 100644 index 00000000..a3b08a8f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.2.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 2: momentum +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.20.table b/eccodes/definitions/grib2/tables/10/4.2.0.20.table new file mode 100644 index 00000000..cc2dbcc5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.20.table @@ -0,0 +1,42 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.3.table b/eccodes/definitions/grib2/tables/10/4.2.0.3.table new file mode 100644 index 00000000..f718c6ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.3.table @@ -0,0 +1,31 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.4.table b/eccodes/definitions/grib2/tables/10/4.2.0.4.table new file mode 100644 index 00000000..fea4cafc --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.4.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.5.table b/eccodes/definitions/grib2/tables/10/4.2.0.5.table new file mode 100644 index 00000000..b0c93dd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.5.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.6.table b/eccodes/definitions/grib2/tables/10/4.2.0.6.table new file mode 100644 index 00000000..fd4b2301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.6.table @@ -0,0 +1,40 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long wave effective total cloudiness (Numeric) +35 35 Surface short wave effective total cloudiness (Numeric) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.7.table b/eccodes/definitions/grib2/tables/10/4.2.0.7.table new file mode 100644 index 00000000..7a7d2008 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.0.7.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.0.table b/eccodes/definitions/grib2/tables/10/4.2.1.0.table new file mode 100644 index 00000000..bf1e3e93 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.1.0.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.1.table b/eccodes/definitions/grib2/tables/10/4.2.1.1.table new file mode 100644 index 00000000..cb5117dc --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.2.table b/eccodes/definitions/grib2/tables/10/4.2.1.2.table new file mode 100644 index 00000000..2c70c6bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (m-1) +12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.0.table b/eccodes/definitions/grib2/tables/10/4.2.10.0.table new file mode 100644 index 00000000..a620c36b --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 10 - Oceanographic products, parameter category 0: waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m s-1) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m s-1) +22 22 v-component surface Stokes drift (m s-1) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10 metre neutral wind speed over waves (m s-1) +41 41 10 metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (s-1) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.1.table b/eccodes/definitions/grib2/tables/10/4.2.10.1.table new file mode 100644 index 00000000..ae52b0c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.1.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.191.table b/eccodes/definitions/grib2/tables/10/4.2.10.191.table new file mode 100644 index 00000000..14085ac9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.191.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.2.table b/eccodes/definitions/grib2/tables/10/4.2.10.2.table new file mode 100644 index 00000000..a6d9dd0c --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.3.table b/eccodes/definitions/grib2/tables/10/4.2.10.3.table new file mode 100644 index 00000000..112af09d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.3.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.4.table b/eccodes/definitions/grib2/tables/10/4.2.10.4.table new file mode 100644 index 00000000..d80a3278 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.10.4.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (m-1) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.0.table b/eccodes/definitions/grib2/tables/10/4.2.2.0.table new file mode 100644 index 00000000..9a426a5c --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.2.0.table @@ -0,0 +1,37 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 0: vegetation/biomass +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +# 33-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.3.table b/eccodes/definitions/grib2/tables/10/4.2.2.3.table new file mode 100644 index 00000000..e985e41a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.2.3.table @@ -0,0 +1,27 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 3: soil products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.4.table b/eccodes/definitions/grib2/tables/10/4.2.2.4.table new file mode 100644 index 00000000..a5f0a3c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.2.4.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 4: fire weather products +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.3.0.table b/eccodes/definitions/grib2/tables/10/4.2.3.0.table new file mode 100644 index 00000000..254e56bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.3.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.2.3.1.table b/eccodes/definitions/grib2/tables/10/4.2.3.1.table new file mode 100644 index 00000000..176ac35f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 3 - Space products, parameter category 1: quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.201.table b/eccodes/definitions/grib2/tables/10/4.201.table new file mode 100644 index 00000000..ebb698b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.201.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.202.table b/eccodes/definitions/grib2/tables/10/4.202.table new file mode 100644 index 00000000..943c03f6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.202.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.203.table b/eccodes/definitions/grib2/tables/10/4.203.table new file mode 100644 index 00000000..9736c1ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.203.table @@ -0,0 +1,26 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.204.table b/eccodes/definitions/grib2/tables/10/4.204.table new file mode 100644 index 00000000..51d1cecc --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.204.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.205.table b/eccodes/definitions/grib2/tables/10/4.205.table new file mode 100644 index 00000000..8d425ab9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.205.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.206.table b/eccodes/definitions/grib2/tables/10/4.206.table new file mode 100644 index 00000000..0be7fd4f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.206.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.207.table b/eccodes/definitions/grib2/tables/10/4.207.table new file mode 100644 index 00000000..fde9eb47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.207.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.208.table b/eccodes/definitions/grib2/tables/10/4.208.table new file mode 100644 index 00000000..196becaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.208.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.209.table b/eccodes/definitions/grib2/tables/10/4.209.table new file mode 100644 index 00000000..351c0f43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.209.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Stable +2 2 Mechanically-driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.210.table b/eccodes/definitions/grib2/tables/10/4.210.table new file mode 100644 index 00000000..1c00b8c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.210.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.211.table b/eccodes/definitions/grib2/tables/10/4.211.table new file mode 100644 index 00000000..66ef656f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.211.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.212.table b/eccodes/definitions/grib2/tables/10/4.212.table new file mode 100644 index 00000000..c59bd24e --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.212.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.213.table b/eccodes/definitions/grib2/tables/10/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.215.table b/eccodes/definitions/grib2/tables/10/4.215.table new file mode 100644 index 00000000..46088821 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.215.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.216.table b/eccodes/definitions/grib2/tables/10/4.216.table new file mode 100644 index 00000000..4d9a70f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.217.table b/eccodes/definitions/grib2/tables/10/4.217.table new file mode 100644 index 00000000..51a263a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.217.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.218.table b/eccodes/definitions/grib2/tables/10/4.218.table new file mode 100644 index 00000000..d4b2ab84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.218.table @@ -0,0 +1,38 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.219.table b/eccodes/definitions/grib2/tables/10/4.219.table new file mode 100644 index 00000000..f10ce468 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.219.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.220.table b/eccodes/definitions/grib2/tables/10/4.220.table new file mode 100644 index 00000000..9c957eb0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.220.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.221.table b/eccodes/definitions/grib2/tables/10/4.221.table new file mode 100644 index 00000000..5466929c --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.221.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.222.table b/eccodes/definitions/grib2/tables/10/4.222.table new file mode 100644 index 00000000..c54194e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.222.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.223.table b/eccodes/definitions/grib2/tables/10/4.223.table new file mode 100644 index 00000000..b6a9be13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing value diff --git a/eccodes/definitions/grib2/tables/10/4.224.table b/eccodes/definitions/grib2/tables/10/4.224.table new file mode 100644 index 00000000..af846f84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.224.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.225.table b/eccodes/definitions/grib2/tables/10/4.225.table new file mode 100644 index 00000000..68a43d85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/10/4.227.table b/eccodes/definitions/grib2/tables/10/4.227.table new file mode 100644 index 00000000..6a98d49d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.230.table b/eccodes/definitions/grib2/tables/10/4.230.table new file mode 100644 index 00000000..1b2c9300 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.230.table @@ -0,0 +1,407 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.233.table b/eccodes/definitions/grib2/tables/10/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.234.table b/eccodes/definitions/grib2/tables/10/4.234.table new file mode 100644 index 00000000..bdf7cf0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.234.table @@ -0,0 +1,21 @@ +# Canopy Cover Fraction (to be used as partitioned parameter) +1 1 Crops Mixed Farming +2 2 Short Grass +3 3 Evergreen Needleleaf Trees +4 4 Deciduous Needleleaf Trees +5 5 Deciduous Broadleaf Trees +6 6 Evergreen Broadleaf Trees +7 7 Tall Grass +8 8 Desert +9 9 Tundra +10 10 Irrigated Crops +11 11 Semidesert +12 12 Ice Caps and Glaciers +13 13 Bogs and Marshes +14 14 Inland Water +15 15 Ocean +16 16 Evergreen Shrubs +17 17 Deciduous Shrubs +18 18 Mixed Forest +19 19 Interrupted Forest +20 20 Water and Land Mixtures diff --git a/eccodes/definitions/grib2/tables/10/4.235.table b/eccodes/definitions/grib2/tables/10/4.235.table new file mode 100644 index 00000000..e18bbfbb --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.235.table @@ -0,0 +1,8 @@ +# Soil texture fraction +1 1 coarse +2 2 medium +3 3 medium-fine +4 4 fine +5 5 very-fine +6 6 organic +7 7 tropical-organic diff --git a/eccodes/definitions/grib2/tables/10/4.3.table b/eccodes/definitions/grib2/tables/10/4.3.table new file mode 100644 index 00000000..68e2cc83 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.3.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.4.table b/eccodes/definitions/grib2/tables/10/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.5.table b/eccodes/definitions/grib2/tables/10/4.5.table new file mode 100644 index 00000000..5d45cc50 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.5.table @@ -0,0 +1,49 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +# 167-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.6.table b/eccodes/definitions/grib2/tables/10/4.6.table new file mode 100644 index 00000000..54f2993c --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.6.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.7.table b/eccodes/definitions/grib2/tables/10/4.7.table new file mode 100644 index 00000000..23e0d457 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.7.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.8.table b/eccodes/definitions/grib2/tables/10/4.8.table new file mode 100644 index 00000000..37a6cf76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.8.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.9.table b/eccodes/definitions/grib2/tables/10/4.9.table new file mode 100644 index 00000000..19e64a3d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.9.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/4.91.table b/eccodes/definitions/grib2/tables/10/4.91.table new file mode 100644 index 00000000..97b1c70a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/10/5.0.table b/eccodes/definitions/grib2/tables/10/5.0.table new file mode 100644 index 00000000..44482726 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +#42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +#52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.1.table b/eccodes/definitions/grib2/tables/10/5.1.table new file mode 100644 index 00000000..100d4106 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.1.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.2.table b/eccodes/definitions/grib2/tables/10/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.3.table b/eccodes/definitions/grib2/tables/10/5.3.table new file mode 100644 index 00000000..705fa652 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.3.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.4.table b/eccodes/definitions/grib2/tables/10/5.4.table new file mode 100644 index 00000000..8133367a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.4.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.40.table b/eccodes/definitions/grib2/tables/10/5.40.table new file mode 100644 index 00000000..0d56ad0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.40.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.40000.table b/eccodes/definitions/grib2/tables/10/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.5.table b/eccodes/definitions/grib2/tables/10/5.5.table new file mode 100644 index 00000000..5d625dbd --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.5.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.50002.table b/eccodes/definitions/grib2/tables/10/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/10/5.6.table b/eccodes/definitions/grib2/tables/10/5.6.table new file mode 100644 index 00000000..5838e994 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.6.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.7.table b/eccodes/definitions/grib2/tables/10/5.7.table new file mode 100644 index 00000000..b93aa813 --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.7.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.8.table b/eccodes/definitions/grib2/tables/10/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/5.9.table b/eccodes/definitions/grib2/tables/10/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/10/6.0.table b/eccodes/definitions/grib2/tables/10/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/10/stepType.table b/eccodes/definitions/grib2/tables/10/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/10/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/11/0.0.table b/eccodes/definitions/grib2/tables/11/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/1.0.table b/eccodes/definitions/grib2/tables/11/1.0.table new file mode 100644 index 00000000..babcdd77 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/1.0.table @@ -0,0 +1,15 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Pre-operational to be implemented by next amendment +# 12-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/11/1.1.table b/eccodes/definitions/grib2/tables/11/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/1.2.table b/eccodes/definitions/grib2/tables/11/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/1.3.table b/eccodes/definitions/grib2/tables/11/1.3.table new file mode 100644 index 00000000..e8c38878 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/1.3.table @@ -0,0 +1,12 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 Sub-seasonal to seasonal prediction project (S2S) +7 7 Sub-seasonal to seasonal prediction project test (S2S) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/1.4.table b/eccodes/definitions/grib2/tables/11/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/11/3.0.table b/eccodes/definitions/grib2/tables/11/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/11/3.1.table b/eccodes/definitions/grib2/tables/11/3.1.table new file mode 100644 index 00000000..a246b979 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.10.table b/eccodes/definitions/grib2/tables/11/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/11/3.11.table b/eccodes/definitions/grib2/tables/11/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.15.table b/eccodes/definitions/grib2/tables/11/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.2.table b/eccodes/definitions/grib2/tables/11/3.2.table new file mode 100644 index 00000000..a2107f6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.20.table b/eccodes/definitions/grib2/tables/11/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.21.table b/eccodes/definitions/grib2/tables/11/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.3.table b/eccodes/definitions/grib2/tables/11/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/11/3.4.table b/eccodes/definitions/grib2/tables/11/3.4.table new file mode 100644 index 00000000..63c8adaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.4.table @@ -0,0 +1,10 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/11/3.5.table b/eccodes/definitions/grib2/tables/11/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/11/3.6.table b/eccodes/definitions/grib2/tables/11/3.6.table new file mode 100644 index 00000000..3099e6bb --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 See separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/11/3.7.table b/eccodes/definitions/grib2/tables/11/3.7.table new file mode 100644 index 00000000..e2dc660d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm. See separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.8.table b/eccodes/definitions/grib2/tables/11/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/3.9.table b/eccodes/definitions/grib2/tables/11/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/11/4.0.table b/eccodes/definitions/grib2/tables/11/4.0.table new file mode 100644 index 00000000..1c1fe09a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.0.table @@ -0,0 +1,59 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +60 60 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 55-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.1.0.table b/eccodes/definitions/grib2/tables/11/4.1.0.table new file mode 100644 index 00000000..36110886 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.0.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.1.1.table b/eccodes/definitions/grib2/tables/11/4.1.1.table new file mode 100644 index 00000000..29f1dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.1.10.table b/eccodes/definitions/grib2/tables/11/4.1.10.table new file mode 100644 index 00000000..9c8c92b1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.10.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.1.192.table b/eccodes/definitions/grib2/tables/11/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/11/4.1.2.table b/eccodes/definitions/grib2/tables/11/4.1.2.table new file mode 100644 index 00000000..b90201c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.2.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.1.3.table b/eccodes/definitions/grib2/tables/11/4.1.3.table new file mode 100644 index 00000000..fe1d8ae5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.1.3.table @@ -0,0 +1,8 @@ +# Code table 4.1 - Parameter category by product discipline. Product discipline 3 - Space products +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/11/4.10.table b/eccodes/definitions/grib2/tables/11/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/11/4.11.table b/eccodes/definitions/grib2/tables/11/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.12.table b/eccodes/definitions/grib2/tables/11/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.13.table b/eccodes/definitions/grib2/tables/11/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.14.table b/eccodes/definitions/grib2/tables/11/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.15.table b/eccodes/definitions/grib2/tables/11/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.192.table b/eccodes/definitions/grib2/tables/11/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.0.table b/eccodes/definitions/grib2/tables/11/4.2.0.0.table new file mode 100644 index 00000000..f7784cc3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.0.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.1.table b/eccodes/definitions/grib2/tables/11/4.2.0.1.table new file mode 100644 index 00000000..827ba1dc --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.1.table @@ -0,0 +1,95 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 1: moisture +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.13.table b/eccodes/definitions/grib2/tables/11/4.2.0.13.table new file mode 100644 index 00000000..b9979f0d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.13.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.14.table b/eccodes/definitions/grib2/tables/11/4.2.0.14.table new file mode 100644 index 00000000..4a2a4e12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.14.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.15.table b/eccodes/definitions/grib2/tables/11/4.2.0.15.table new file mode 100644 index 00000000..9a178ceb --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.15.table @@ -0,0 +1,19 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.16.table b/eccodes/definitions/grib2/tables/11/4.2.0.16.table new file mode 100644 index 00000000..39215ab2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.16.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.18.table b/eccodes/definitions/grib2/tables/11/4.2.0.18.table new file mode 100644 index 00000000..82fd13da --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.18.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.19.table b/eccodes/definitions/grib2/tables/11/4.2.0.19.table new file mode 100644 index 00000000..2aa34464 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.190.table b/eccodes/definitions/grib2/tables/11/4.2.0.190.table new file mode 100644 index 00000000..39fb5574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.190.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.191.table b/eccodes/definitions/grib2/tables/11/4.2.0.191.table new file mode 100644 index 00000000..81230c0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.191.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.2.table b/eccodes/definitions/grib2/tables/11/4.2.0.2.table new file mode 100644 index 00000000..d587f84e --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.2.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 2: momentum +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m s-1) +35 35 Tangential wind component (m s-1) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.20.table b/eccodes/definitions/grib2/tables/11/4.2.0.20.table new file mode 100644 index 00000000..22cea606 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.20.table @@ -0,0 +1,42 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.3.table b/eccodes/definitions/grib2/tables/11/4.2.0.3.table new file mode 100644 index 00000000..f718c6ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.3.table @@ -0,0 +1,31 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.4.table b/eccodes/definitions/grib2/tables/11/4.2.0.4.table new file mode 100644 index 00000000..fea4cafc --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.4.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.5.table b/eccodes/definitions/grib2/tables/11/4.2.0.5.table new file mode 100644 index 00000000..b0c93dd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.5.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.6.table b/eccodes/definitions/grib2/tables/11/4.2.0.6.table new file mode 100644 index 00000000..a06f4292 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.6.table @@ -0,0 +1,40 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.7.table b/eccodes/definitions/grib2/tables/11/4.2.0.7.table new file mode 100644 index 00000000..7a7d2008 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.0.7.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.0.table b/eccodes/definitions/grib2/tables/11/4.2.1.0.table new file mode 100644 index 00000000..bf1e3e93 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.1.0.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.1.table b/eccodes/definitions/grib2/tables/11/4.2.1.1.table new file mode 100644 index 00000000..cb5117dc --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.2.table b/eccodes/definitions/grib2/tables/11/4.2.1.2.table new file mode 100644 index 00000000..2c70c6bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (m-1) +12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.0.table b/eccodes/definitions/grib2/tables/11/4.2.10.0.table new file mode 100644 index 00000000..b820364f --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 10 - Oceanographic products, parameter category 0: waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m s-1) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m s-1) +22 22 v-component surface Stokes drift (m s-1) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m s-1) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (s-1) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.1.table b/eccodes/definitions/grib2/tables/11/4.2.10.1.table new file mode 100644 index 00000000..ae52b0c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.1.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.191.table b/eccodes/definitions/grib2/tables/11/4.2.10.191.table new file mode 100644 index 00000000..14085ac9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.191.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.2.table b/eccodes/definitions/grib2/tables/11/4.2.10.2.table new file mode 100644 index 00000000..a6d9dd0c --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.3.table b/eccodes/definitions/grib2/tables/11/4.2.10.3.table new file mode 100644 index 00000000..112af09d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.3.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.4.table b/eccodes/definitions/grib2/tables/11/4.2.10.4.table new file mode 100644 index 00000000..d80a3278 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.10.4.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (m-1) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.0.table b/eccodes/definitions/grib2/tables/11/4.2.2.0.table new file mode 100644 index 00000000..9a426a5c --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.2.0.table @@ -0,0 +1,37 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 0: vegetation/biomass +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +# 33-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.3.table b/eccodes/definitions/grib2/tables/11/4.2.2.3.table new file mode 100644 index 00000000..e985e41a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.2.3.table @@ -0,0 +1,27 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 3: soil products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.4.table b/eccodes/definitions/grib2/tables/11/4.2.2.4.table new file mode 100644 index 00000000..a5f0a3c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.2.4.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 4: fire weather products +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.3.0.table b/eccodes/definitions/grib2/tables/11/4.2.3.0.table new file mode 100644 index 00000000..254e56bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.3.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.2.3.1.table b/eccodes/definitions/grib2/tables/11/4.2.3.1.table new file mode 100644 index 00000000..176ac35f --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 3 - Space products, parameter category 1: quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.201.table b/eccodes/definitions/grib2/tables/11/4.201.table new file mode 100644 index 00000000..dc3926b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.201.table @@ -0,0 +1,10 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.202.table b/eccodes/definitions/grib2/tables/11/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.203.table b/eccodes/definitions/grib2/tables/11/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.204.table b/eccodes/definitions/grib2/tables/11/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.205.table b/eccodes/definitions/grib2/tables/11/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.206.table b/eccodes/definitions/grib2/tables/11/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.207.table b/eccodes/definitions/grib2/tables/11/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.208.table b/eccodes/definitions/grib2/tables/11/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.209.table b/eccodes/definitions/grib2/tables/11/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.210.table b/eccodes/definitions/grib2/tables/11/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.211.table b/eccodes/definitions/grib2/tables/11/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.212.table b/eccodes/definitions/grib2/tables/11/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.213.table b/eccodes/definitions/grib2/tables/11/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.215.table b/eccodes/definitions/grib2/tables/11/4.215.table new file mode 100644 index 00000000..88fda8b8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely-sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.216.table b/eccodes/definitions/grib2/tables/11/4.216.table new file mode 100644 index 00000000..4d9a70f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.217.table b/eccodes/definitions/grib2/tables/11/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.218.table b/eccodes/definitions/grib2/tables/11/4.218.table new file mode 100644 index 00000000..6940a0e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.218.table @@ -0,0 +1,38 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.219.table b/eccodes/definitions/grib2/tables/11/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.220.table b/eccodes/definitions/grib2/tables/11/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.221.table b/eccodes/definitions/grib2/tables/11/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.222.table b/eccodes/definitions/grib2/tables/11/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.223.table b/eccodes/definitions/grib2/tables/11/4.223.table new file mode 100644 index 00000000..e54719f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing value diff --git a/eccodes/definitions/grib2/tables/11/4.224.table b/eccodes/definitions/grib2/tables/11/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.225.table b/eccodes/definitions/grib2/tables/11/4.225.table new file mode 100644 index 00000000..68a43d85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/11/4.227.table b/eccodes/definitions/grib2/tables/11/4.227.table new file mode 100644 index 00000000..6a98d49d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.230.table b/eccodes/definitions/grib2/tables/11/4.230.table new file mode 100644 index 00000000..1b2c9300 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.230.table @@ -0,0 +1,407 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.233.table b/eccodes/definitions/grib2/tables/11/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.234.table b/eccodes/definitions/grib2/tables/11/4.234.table new file mode 100644 index 00000000..78d8fff1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.234.table @@ -0,0 +1,21 @@ +# Canopy Cover Fraction (to be used as partitioned parameter) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/11/4.236.table b/eccodes/definitions/grib2/tables/11/4.236.table new file mode 100644 index 00000000..741b00f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.236.table @@ -0,0 +1,9 @@ +#Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic + diff --git a/eccodes/definitions/grib2/tables/11/4.3.table b/eccodes/definitions/grib2/tables/11/4.3.table new file mode 100644 index 00000000..8f7d20be --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.3.table @@ -0,0 +1,16 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.4.table b/eccodes/definitions/grib2/tables/11/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.5.table b/eccodes/definitions/grib2/tables/11/4.5.table new file mode 100644 index 00000000..5d45cc50 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.5.table @@ -0,0 +1,49 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +# 167-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.6.table b/eccodes/definitions/grib2/tables/11/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.7.table b/eccodes/definitions/grib2/tables/11/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.8.table b/eccodes/definitions/grib2/tables/11/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.9.table b/eccodes/definitions/grib2/tables/11/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/4.91.table b/eccodes/definitions/grib2/tables/11/4.91.table new file mode 100644 index 00000000..97b1c70a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/11/5.0.table b/eccodes/definitions/grib2/tables/11/5.0.table new file mode 100644 index 00000000..44482726 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +#42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +#52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.1.table b/eccodes/definitions/grib2/tables/11/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.2.table b/eccodes/definitions/grib2/tables/11/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.3.table b/eccodes/definitions/grib2/tables/11/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.4.table b/eccodes/definitions/grib2/tables/11/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.40.table b/eccodes/definitions/grib2/tables/11/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.40000.table b/eccodes/definitions/grib2/tables/11/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.5.table b/eccodes/definitions/grib2/tables/11/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.50002.table b/eccodes/definitions/grib2/tables/11/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/11/5.6.table b/eccodes/definitions/grib2/tables/11/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.7.table b/eccodes/definitions/grib2/tables/11/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.8.table b/eccodes/definitions/grib2/tables/11/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/5.9.table b/eccodes/definitions/grib2/tables/11/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/11/6.0.table b/eccodes/definitions/grib2/tables/11/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/11/stepType.table b/eccodes/definitions/grib2/tables/11/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/11/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/12/0.0.table b/eccodes/definitions/grib2/tables/12/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.0.table b/eccodes/definitions/grib2/tables/12/1.0.table new file mode 100644 index 00000000..84ec1988 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.0.table @@ -0,0 +1,17 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Pre-operational to be implemented by next amendment +# 14-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.1.table b/eccodes/definitions/grib2/tables/12/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.2.table b/eccodes/definitions/grib2/tables/12/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.3.table b/eccodes/definitions/grib2/tables/12/1.3.table new file mode 100644 index 00000000..e8c38878 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.3.table @@ -0,0 +1,12 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 Sub-seasonal to seasonal prediction project (S2S) +7 7 Sub-seasonal to seasonal prediction project test (S2S) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.4.table b/eccodes/definitions/grib2/tables/12/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/12/1.5.table b/eccodes/definitions/grib2/tables/12/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/1.6.table b/eccodes/definitions/grib2/tables/12/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.0.table b/eccodes/definitions/grib2/tables/12/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/12/3.1.table b/eccodes/definitions/grib2/tables/12/3.1.table new file mode 100644 index 00000000..a246b979 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.10.table b/eccodes/definitions/grib2/tables/12/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/12/3.11.table b/eccodes/definitions/grib2/tables/12/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.15.table b/eccodes/definitions/grib2/tables/12/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.2.table b/eccodes/definitions/grib2/tables/12/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.20.table b/eccodes/definitions/grib2/tables/12/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.21.table b/eccodes/definitions/grib2/tables/12/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.3.table b/eccodes/definitions/grib2/tables/12/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/12/3.4.table b/eccodes/definitions/grib2/tables/12/3.4.table new file mode 100644 index 00000000..63c8adaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.4.table @@ -0,0 +1,10 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/12/3.5.table b/eccodes/definitions/grib2/tables/12/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/12/3.6.table b/eccodes/definitions/grib2/tables/12/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/12/3.7.table b/eccodes/definitions/grib2/tables/12/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.8.table b/eccodes/definitions/grib2/tables/12/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/3.9.table b/eccodes/definitions/grib2/tables/12/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/12/4.0.table b/eccodes/definitions/grib2/tables/12/4.0.table new file mode 100644 index 00000000..b77e3f32 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.0.table @@ -0,0 +1,61 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +60 60 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 55-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.1.0.table b/eccodes/definitions/grib2/tables/12/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.1.1.table b/eccodes/definitions/grib2/tables/12/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.1.10.table b/eccodes/definitions/grib2/tables/12/4.1.10.table new file mode 100644 index 00000000..b97dcd35 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.1.192.table b/eccodes/definitions/grib2/tables/12/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/12/4.1.2.table b/eccodes/definitions/grib2/tables/12/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.1.3.table b/eccodes/definitions/grib2/tables/12/4.1.3.table new file mode 100644 index 00000000..5096a166 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.1.3.table @@ -0,0 +1,6 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.10.table b/eccodes/definitions/grib2/tables/12/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/12/4.11.table b/eccodes/definitions/grib2/tables/12/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.12.table b/eccodes/definitions/grib2/tables/12/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.13.table b/eccodes/definitions/grib2/tables/12/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.14.table b/eccodes/definitions/grib2/tables/12/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.15.table b/eccodes/definitions/grib2/tables/12/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.192.table b/eccodes/definitions/grib2/tables/12/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.0.table b/eccodes/definitions/grib2/tables/12/4.2.0.0.table new file mode 100644 index 00000000..ce91fe42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.0.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.1.table b/eccodes/definitions/grib2/tables/12/4.2.0.1.table new file mode 100644 index 00000000..d1d1704d --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.1.table @@ -0,0 +1,95 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.13.table b/eccodes/definitions/grib2/tables/12/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.14.table b/eccodes/definitions/grib2/tables/12/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.15.table b/eccodes/definitions/grib2/tables/12/4.2.0.15.table new file mode 100644 index 00000000..d74fa723 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.15.table @@ -0,0 +1,19 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.16.table b/eccodes/definitions/grib2/tables/12/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.18.table b/eccodes/definitions/grib2/tables/12/4.2.0.18.table new file mode 100644 index 00000000..18c41aa4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.18.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.19.table b/eccodes/definitions/grib2/tables/12/4.2.0.19.table new file mode 100644 index 00000000..75101bd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.190.table b/eccodes/definitions/grib2/tables/12/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.191.table b/eccodes/definitions/grib2/tables/12/4.2.0.191.table new file mode 100644 index 00000000..1f949f14 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.191.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.2.table b/eccodes/definitions/grib2/tables/12/4.2.0.2.table new file mode 100644 index 00000000..84882e8b --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.2.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m s-1) +35 35 Tangential wind component (m s-1) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.20.table b/eccodes/definitions/grib2/tables/12/4.2.0.20.table new file mode 100644 index 00000000..ac97b0b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.20.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.3.table b/eccodes/definitions/grib2/tables/12/4.2.0.3.table new file mode 100644 index 00000000..9a88e002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.3.table @@ -0,0 +1,31 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.4.table b/eccodes/definitions/grib2/tables/12/4.2.0.4.table new file mode 100644 index 00000000..dbfcbddb --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.4.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.5.table b/eccodes/definitions/grib2/tables/12/4.2.0.5.table new file mode 100644 index 00000000..f1c04650 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.5.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.6.table b/eccodes/definitions/grib2/tables/12/4.2.0.6.table new file mode 100644 index 00000000..9ee97b73 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.6.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.7.table b/eccodes/definitions/grib2/tables/12/4.2.0.7.table new file mode 100644 index 00000000..db47d011 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.0.7.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.0.table b/eccodes/definitions/grib2/tables/12/4.2.1.0.table new file mode 100644 index 00000000..e93f0a33 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.1.0.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.1.table b/eccodes/definitions/grib2/tables/12/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.2.table b/eccodes/definitions/grib2/tables/12/4.2.1.2.table new file mode 100644 index 00000000..2d08d44f --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (m-1) +12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.0.table b/eccodes/definitions/grib2/tables/12/4.2.10.0.table new file mode 100644 index 00000000..761b6395 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m s-1) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m s-1) +22 22 v-component surface Stokes drift (m s-1) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m s-1) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (s-1) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.1.table b/eccodes/definitions/grib2/tables/12/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.191.table b/eccodes/definitions/grib2/tables/12/4.2.10.191.table new file mode 100644 index 00000000..18e56f93 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.191.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.2.table b/eccodes/definitions/grib2/tables/12/4.2.10.2.table new file mode 100644 index 00000000..6f066442 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.3.table b/eccodes/definitions/grib2/tables/12/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.4.table b/eccodes/definitions/grib2/tables/12/4.2.10.4.table new file mode 100644 index 00000000..450320ca --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (m-1) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.0.table b/eccodes/definitions/grib2/tables/12/4.2.2.0.table new file mode 100644 index 00000000..95b696a3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.2.0.table @@ -0,0 +1,37 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +# 33-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.3.table b/eccodes/definitions/grib2/tables/12/4.2.2.3.table new file mode 100644 index 00000000..2f629107 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.2.3.table @@ -0,0 +1,27 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.4.table b/eccodes/definitions/grib2/tables/12/4.2.2.4.table new file mode 100644 index 00000000..cf91e8b7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.2.4.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.3.0.table b/eccodes/definitions/grib2/tables/12/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.2.3.1.table b/eccodes/definitions/grib2/tables/12/4.2.3.1.table new file mode 100644 index 00000000..0c0fc8d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.201.table b/eccodes/definitions/grib2/tables/12/4.201.table new file mode 100644 index 00000000..2510f2ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.202.table b/eccodes/definitions/grib2/tables/12/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.203.table b/eccodes/definitions/grib2/tables/12/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.204.table b/eccodes/definitions/grib2/tables/12/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.205.table b/eccodes/definitions/grib2/tables/12/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.206.table b/eccodes/definitions/grib2/tables/12/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.207.table b/eccodes/definitions/grib2/tables/12/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.208.table b/eccodes/definitions/grib2/tables/12/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.209.table b/eccodes/definitions/grib2/tables/12/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.210.table b/eccodes/definitions/grib2/tables/12/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.211.table b/eccodes/definitions/grib2/tables/12/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.212.table b/eccodes/definitions/grib2/tables/12/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.213.table b/eccodes/definitions/grib2/tables/12/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.215.table b/eccodes/definitions/grib2/tables/12/4.215.table new file mode 100644 index 00000000..88fda8b8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely-sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.216.table b/eccodes/definitions/grib2/tables/12/4.216.table new file mode 100644 index 00000000..4d9a70f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.217.table b/eccodes/definitions/grib2/tables/12/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.218.table b/eccodes/definitions/grib2/tables/12/4.218.table new file mode 100644 index 00000000..6940a0e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.218.table @@ -0,0 +1,38 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.219.table b/eccodes/definitions/grib2/tables/12/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.220.table b/eccodes/definitions/grib2/tables/12/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.221.table b/eccodes/definitions/grib2/tables/12/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.222.table b/eccodes/definitions/grib2/tables/12/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.223.table b/eccodes/definitions/grib2/tables/12/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.224.table b/eccodes/definitions/grib2/tables/12/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.225.table b/eccodes/definitions/grib2/tables/12/4.225.table new file mode 100644 index 00000000..68a43d85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/12/4.227.table b/eccodes/definitions/grib2/tables/12/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/12/4.230.table b/eccodes/definitions/grib2/tables/12/4.230.table new file mode 100644 index 00000000..b35a9002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.230.table @@ -0,0 +1,413 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62019 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.233.table b/eccodes/definitions/grib2/tables/12/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.234.table b/eccodes/definitions/grib2/tables/12/4.234.table new file mode 100644 index 00000000..9844a91d --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/12/4.236.table b/eccodes/definitions/grib2/tables/12/4.236.table new file mode 100644 index 00000000..08c7f8d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/12/4.3.table b/eccodes/definitions/grib2/tables/12/4.3.table new file mode 100644 index 00000000..8f7d20be --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.3.table @@ -0,0 +1,16 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.4.table b/eccodes/definitions/grib2/tables/12/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.5.table b/eccodes/definitions/grib2/tables/12/4.5.table new file mode 100644 index 00000000..5d45cc50 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.5.table @@ -0,0 +1,49 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +# 167-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.6.table b/eccodes/definitions/grib2/tables/12/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.7.table b/eccodes/definitions/grib2/tables/12/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.8.table b/eccodes/definitions/grib2/tables/12/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.9.table b/eccodes/definitions/grib2/tables/12/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/4.91.table b/eccodes/definitions/grib2/tables/12/4.91.table new file mode 100644 index 00000000..97b1c70a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/12/5.0.table b/eccodes/definitions/grib2/tables/12/5.0.table new file mode 100644 index 00000000..8ce7bb24 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.1.table b/eccodes/definitions/grib2/tables/12/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.2.table b/eccodes/definitions/grib2/tables/12/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.3.table b/eccodes/definitions/grib2/tables/12/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.4.table b/eccodes/definitions/grib2/tables/12/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.40.table b/eccodes/definitions/grib2/tables/12/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.40000.table b/eccodes/definitions/grib2/tables/12/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.5.table b/eccodes/definitions/grib2/tables/12/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.50002.table b/eccodes/definitions/grib2/tables/12/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/12/5.6.table b/eccodes/definitions/grib2/tables/12/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.7.table b/eccodes/definitions/grib2/tables/12/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.8.table b/eccodes/definitions/grib2/tables/12/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/5.9.table b/eccodes/definitions/grib2/tables/12/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/12/6.0.table b/eccodes/definitions/grib2/tables/12/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/12/stepType.table b/eccodes/definitions/grib2/tables/12/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/12/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/13/0.0.table b/eccodes/definitions/grib2/tables/13/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.0.table b/eccodes/definitions/grib2/tables/13/1.0.table new file mode 100644 index 00000000..dfca4d4c --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.0.table @@ -0,0 +1,18 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Pre-operational to be implemented by next amendment +# 15-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.1.table b/eccodes/definitions/grib2/tables/13/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.2.table b/eccodes/definitions/grib2/tables/13/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.3.table b/eccodes/definitions/grib2/tables/13/1.3.table new file mode 100644 index 00000000..9b37611b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.3.table @@ -0,0 +1,12 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.4.table b/eccodes/definitions/grib2/tables/13/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/13/1.5.table b/eccodes/definitions/grib2/tables/13/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/1.6.table b/eccodes/definitions/grib2/tables/13/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.0.table b/eccodes/definitions/grib2/tables/13/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/13/3.1.table b/eccodes/definitions/grib2/tables/13/3.1.table new file mode 100644 index 00000000..a246b979 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.10.table b/eccodes/definitions/grib2/tables/13/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/13/3.11.table b/eccodes/definitions/grib2/tables/13/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.15.table b/eccodes/definitions/grib2/tables/13/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.2.table b/eccodes/definitions/grib2/tables/13/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.20.table b/eccodes/definitions/grib2/tables/13/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.21.table b/eccodes/definitions/grib2/tables/13/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.3.table b/eccodes/definitions/grib2/tables/13/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/13/3.4.table b/eccodes/definitions/grib2/tables/13/3.4.table new file mode 100644 index 00000000..63c8adaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.4.table @@ -0,0 +1,10 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/13/3.5.table b/eccodes/definitions/grib2/tables/13/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/13/3.6.table b/eccodes/definitions/grib2/tables/13/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/13/3.7.table b/eccodes/definitions/grib2/tables/13/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.8.table b/eccodes/definitions/grib2/tables/13/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/3.9.table b/eccodes/definitions/grib2/tables/13/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/13/4.0.table b/eccodes/definitions/grib2/tables/13/4.0.table new file mode 100644 index 00000000..89cf92c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.0.table @@ -0,0 +1,62 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +# 55-59 Reserved +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 62-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.1.0.table b/eccodes/definitions/grib2/tables/13/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.1.1.table b/eccodes/definitions/grib2/tables/13/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.1.10.table b/eccodes/definitions/grib2/tables/13/4.1.10.table new file mode 100644 index 00000000..b97dcd35 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.1.192.table b/eccodes/definitions/grib2/tables/13/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/13/4.1.2.table b/eccodes/definitions/grib2/tables/13/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.1.3.table b/eccodes/definitions/grib2/tables/13/4.1.3.table new file mode 100644 index 00000000..5096a166 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.1.3.table @@ -0,0 +1,6 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.10.table b/eccodes/definitions/grib2/tables/13/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/13/4.11.table b/eccodes/definitions/grib2/tables/13/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.12.table b/eccodes/definitions/grib2/tables/13/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.13.table b/eccodes/definitions/grib2/tables/13/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.14.table b/eccodes/definitions/grib2/tables/13/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.15.table b/eccodes/definitions/grib2/tables/13/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.192.table b/eccodes/definitions/grib2/tables/13/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.0.table b/eccodes/definitions/grib2/tables/13/4.2.0.0.table new file mode 100644 index 00000000..6de8a23c --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.0.table @@ -0,0 +1,26 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.1.table b/eccodes/definitions/grib2/tables/13/4.2.0.1.table new file mode 100644 index 00000000..d1d1704d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.1.table @@ -0,0 +1,95 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.13.table b/eccodes/definitions/grib2/tables/13/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.14.table b/eccodes/definitions/grib2/tables/13/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.15.table b/eccodes/definitions/grib2/tables/13/4.2.0.15.table new file mode 100644 index 00000000..d74fa723 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.15.table @@ -0,0 +1,19 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.16.table b/eccodes/definitions/grib2/tables/13/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.17.table b/eccodes/definitions/grib2/tables/13/4.2.0.17.table new file mode 100644 index 00000000..d481c02d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.17.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.18.table b/eccodes/definitions/grib2/tables/13/4.2.0.18.table new file mode 100644 index 00000000..18c41aa4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.18.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.19.table b/eccodes/definitions/grib2/tables/13/4.2.0.19.table new file mode 100644 index 00000000..75101bd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.190.table b/eccodes/definitions/grib2/tables/13/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.191.table b/eccodes/definitions/grib2/tables/13/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.2.table b/eccodes/definitions/grib2/tables/13/4.2.0.2.table new file mode 100644 index 00000000..c83b0730 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.2.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.20.table b/eccodes/definitions/grib2/tables/13/4.2.0.20.table new file mode 100644 index 00000000..9584f7c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.20.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.3.table b/eccodes/definitions/grib2/tables/13/4.2.0.3.table new file mode 100644 index 00000000..9a88e002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.3.table @@ -0,0 +1,31 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.4.table b/eccodes/definitions/grib2/tables/13/4.2.0.4.table new file mode 100644 index 00000000..dbfcbddb --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.4.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.5.table b/eccodes/definitions/grib2/tables/13/4.2.0.5.table new file mode 100644 index 00000000..f1c04650 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.5.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.6.table b/eccodes/definitions/grib2/tables/13/4.2.0.6.table new file mode 100644 index 00000000..9ee97b73 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.6.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.7.table b/eccodes/definitions/grib2/tables/13/4.2.0.7.table new file mode 100644 index 00000000..db47d011 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.0.7.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.0.table b/eccodes/definitions/grib2/tables/13/4.2.1.0.table new file mode 100644 index 00000000..cf56b08e --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.1.0.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.1.table b/eccodes/definitions/grib2/tables/13/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.2.table b/eccodes/definitions/grib2/tables/13/4.2.1.2.table new file mode 100644 index 00000000..8daf51ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.0.table b/eccodes/definitions/grib2/tables/13/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.1.table b/eccodes/definitions/grib2/tables/13/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.191.table b/eccodes/definitions/grib2/tables/13/4.2.10.191.table new file mode 100644 index 00000000..dc0e23d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.2.table b/eccodes/definitions/grib2/tables/13/4.2.10.2.table new file mode 100644 index 00000000..157a9af6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.3.table b/eccodes/definitions/grib2/tables/13/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.4.table b/eccodes/definitions/grib2/tables/13/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.0.table b/eccodes/definitions/grib2/tables/13/4.2.2.0.table new file mode 100644 index 00000000..93135b85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.2.0.table @@ -0,0 +1,39 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +# 35-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.3.table b/eccodes/definitions/grib2/tables/13/4.2.2.3.table new file mode 100644 index 00000000..2f629107 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.2.3.table @@ -0,0 +1,27 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.4.table b/eccodes/definitions/grib2/tables/13/4.2.2.4.table new file mode 100644 index 00000000..d4ede2f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.2.4.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.3.0.table b/eccodes/definitions/grib2/tables/13/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.2.3.1.table b/eccodes/definitions/grib2/tables/13/4.2.3.1.table new file mode 100644 index 00000000..0c0fc8d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.201.table b/eccodes/definitions/grib2/tables/13/4.201.table new file mode 100644 index 00000000..2510f2ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.202.table b/eccodes/definitions/grib2/tables/13/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.203.table b/eccodes/definitions/grib2/tables/13/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.204.table b/eccodes/definitions/grib2/tables/13/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.205.table b/eccodes/definitions/grib2/tables/13/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.206.table b/eccodes/definitions/grib2/tables/13/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.207.table b/eccodes/definitions/grib2/tables/13/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.208.table b/eccodes/definitions/grib2/tables/13/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.209.table b/eccodes/definitions/grib2/tables/13/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.210.table b/eccodes/definitions/grib2/tables/13/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.211.table b/eccodes/definitions/grib2/tables/13/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.212.table b/eccodes/definitions/grib2/tables/13/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.213.table b/eccodes/definitions/grib2/tables/13/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.215.table b/eccodes/definitions/grib2/tables/13/4.215.table new file mode 100644 index 00000000..88fda8b8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely-sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.216.table b/eccodes/definitions/grib2/tables/13/4.216.table new file mode 100644 index 00000000..4d9a70f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.217.table b/eccodes/definitions/grib2/tables/13/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.218.table b/eccodes/definitions/grib2/tables/13/4.218.table new file mode 100644 index 00000000..6940a0e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.218.table @@ -0,0 +1,38 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.219.table b/eccodes/definitions/grib2/tables/13/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.220.table b/eccodes/definitions/grib2/tables/13/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.221.table b/eccodes/definitions/grib2/tables/13/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.222.table b/eccodes/definitions/grib2/tables/13/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.223.table b/eccodes/definitions/grib2/tables/13/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.224.table b/eccodes/definitions/grib2/tables/13/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.225.table b/eccodes/definitions/grib2/tables/13/4.225.table new file mode 100644 index 00000000..68a43d85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/13/4.227.table b/eccodes/definitions/grib2/tables/13/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/13/4.230.table b/eccodes/definitions/grib2/tables/13/4.230.table new file mode 100644 index 00000000..b35a9002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.230.table @@ -0,0 +1,413 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62019 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.233.table b/eccodes/definitions/grib2/tables/13/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.234.table b/eccodes/definitions/grib2/tables/13/4.234.table new file mode 100644 index 00000000..9844a91d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/13/4.236.table b/eccodes/definitions/grib2/tables/13/4.236.table new file mode 100644 index 00000000..08c7f8d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/13/4.3.table b/eccodes/definitions/grib2/tables/13/4.3.table new file mode 100644 index 00000000..1a9d59dd --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.3.table @@ -0,0 +1,18 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.4.table b/eccodes/definitions/grib2/tables/13/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.5.table b/eccodes/definitions/grib2/tables/13/4.5.table new file mode 100644 index 00000000..ee26c48d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.5.table @@ -0,0 +1,50 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +167 167 Bottom of root zone +# 168-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.6.table b/eccodes/definitions/grib2/tables/13/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.7.table b/eccodes/definitions/grib2/tables/13/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.8.table b/eccodes/definitions/grib2/tables/13/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.9.table b/eccodes/definitions/grib2/tables/13/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/4.91.table b/eccodes/definitions/grib2/tables/13/4.91.table new file mode 100644 index 00000000..97b1c70a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/13/5.0.table b/eccodes/definitions/grib2/tables/13/5.0.table new file mode 100644 index 00000000..8ce7bb24 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.1.table b/eccodes/definitions/grib2/tables/13/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.2.table b/eccodes/definitions/grib2/tables/13/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.3.table b/eccodes/definitions/grib2/tables/13/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.4.table b/eccodes/definitions/grib2/tables/13/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.40.table b/eccodes/definitions/grib2/tables/13/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.40000.table b/eccodes/definitions/grib2/tables/13/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.5.table b/eccodes/definitions/grib2/tables/13/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.50002.table b/eccodes/definitions/grib2/tables/13/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/13/5.6.table b/eccodes/definitions/grib2/tables/13/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.7.table b/eccodes/definitions/grib2/tables/13/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.8.table b/eccodes/definitions/grib2/tables/13/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/5.9.table b/eccodes/definitions/grib2/tables/13/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/13/6.0.table b/eccodes/definitions/grib2/tables/13/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/13/stepType.table b/eccodes/definitions/grib2/tables/13/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/13/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/14/0.0.table b/eccodes/definitions/grib2/tables/14/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.0.table b/eccodes/definitions/grib2/tables/14/1.0.table new file mode 100644 index 00000000..4dafc79f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.0.table @@ -0,0 +1,19 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Pre-operational to be implemented by next amendment +# 16-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.1.table b/eccodes/definitions/grib2/tables/14/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.2.table b/eccodes/definitions/grib2/tables/14/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.3.table b/eccodes/definitions/grib2/tables/14/1.3.table new file mode 100644 index 00000000..ea01c001 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in ensembles of regional re-analysis project (UERRA) +9 9 Uncertainties in ensembles of regional re-analysis project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.4.table b/eccodes/definitions/grib2/tables/14/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/14/1.5.table b/eccodes/definitions/grib2/tables/14/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/1.6.table b/eccodes/definitions/grib2/tables/14/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.0.table b/eccodes/definitions/grib2/tables/14/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/14/3.1.table b/eccodes/definitions/grib2/tables/14/3.1.table new file mode 100644 index 00000000..a246b979 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.10.table b/eccodes/definitions/grib2/tables/14/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/14/3.11.table b/eccodes/definitions/grib2/tables/14/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.15.table b/eccodes/definitions/grib2/tables/14/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.2.table b/eccodes/definitions/grib2/tables/14/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.20.table b/eccodes/definitions/grib2/tables/14/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.21.table b/eccodes/definitions/grib2/tables/14/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.3.table b/eccodes/definitions/grib2/tables/14/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/14/3.4.table b/eccodes/definitions/grib2/tables/14/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/14/3.5.table b/eccodes/definitions/grib2/tables/14/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/14/3.6.table b/eccodes/definitions/grib2/tables/14/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/14/3.7.table b/eccodes/definitions/grib2/tables/14/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.8.table b/eccodes/definitions/grib2/tables/14/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/3.9.table b/eccodes/definitions/grib2/tables/14/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/14/4.0.table b/eccodes/definitions/grib2/tables/14/4.0.table new file mode 100644 index 00000000..b24b6fb1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.0.table @@ -0,0 +1,62 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +# 55-59 Reserved +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 62-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.1.0.table b/eccodes/definitions/grib2/tables/14/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.1.1.table b/eccodes/definitions/grib2/tables/14/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.1.10.table b/eccodes/definitions/grib2/tables/14/4.1.10.table new file mode 100644 index 00000000..b97dcd35 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.1.192.table b/eccodes/definitions/grib2/tables/14/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/14/4.1.2.table b/eccodes/definitions/grib2/tables/14/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.1.3.table b/eccodes/definitions/grib2/tables/14/4.1.3.table new file mode 100644 index 00000000..5096a166 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.1.3.table @@ -0,0 +1,6 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.10.table b/eccodes/definitions/grib2/tables/14/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/14/4.11.table b/eccodes/definitions/grib2/tables/14/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.12.table b/eccodes/definitions/grib2/tables/14/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.13.table b/eccodes/definitions/grib2/tables/14/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.14.table b/eccodes/definitions/grib2/tables/14/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.15.table b/eccodes/definitions/grib2/tables/14/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.192.table b/eccodes/definitions/grib2/tables/14/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.0.table b/eccodes/definitions/grib2/tables/14/4.2.0.0.table new file mode 100644 index 00000000..41e5291a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.0.table @@ -0,0 +1,26 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.1.table b/eccodes/definitions/grib2/tables/14/4.2.0.1.table new file mode 100644 index 00000000..4c624e74 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.1.table @@ -0,0 +1,97 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +# 95-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.13.table b/eccodes/definitions/grib2/tables/14/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.14.table b/eccodes/definitions/grib2/tables/14/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.15.table b/eccodes/definitions/grib2/tables/14/4.2.0.15.table new file mode 100644 index 00000000..d74fa723 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.15.table @@ -0,0 +1,19 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.16.table b/eccodes/definitions/grib2/tables/14/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.17.table b/eccodes/definitions/grib2/tables/14/4.2.0.17.table new file mode 100644 index 00000000..d481c02d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.17.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.18.table b/eccodes/definitions/grib2/tables/14/4.2.0.18.table new file mode 100644 index 00000000..18c41aa4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.18.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.19.table b/eccodes/definitions/grib2/tables/14/4.2.0.19.table new file mode 100644 index 00000000..75101bd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.190.table b/eccodes/definitions/grib2/tables/14/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.191.table b/eccodes/definitions/grib2/tables/14/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.2.table b/eccodes/definitions/grib2/tables/14/4.2.0.2.table new file mode 100644 index 00000000..c83b0730 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.2.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.20.table b/eccodes/definitions/grib2/tables/14/4.2.0.20.table new file mode 100644 index 00000000..9584f7c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.20.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.3.table b/eccodes/definitions/grib2/tables/14/4.2.0.3.table new file mode 100644 index 00000000..9a88e002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.3.table @@ -0,0 +1,31 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.4.table b/eccodes/definitions/grib2/tables/14/4.2.0.4.table new file mode 100644 index 00000000..dbfcbddb --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.4.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.5.table b/eccodes/definitions/grib2/tables/14/4.2.0.5.table new file mode 100644 index 00000000..f1c04650 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.5.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.6.table b/eccodes/definitions/grib2/tables/14/4.2.0.6.table new file mode 100644 index 00000000..70215274 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.6.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +# 38-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.7.table b/eccodes/definitions/grib2/tables/14/4.2.0.7.table new file mode 100644 index 00000000..db47d011 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.0.7.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.0.table b/eccodes/definitions/grib2/tables/14/4.2.1.0.table new file mode 100644 index 00000000..cf56b08e --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.1.0.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.1.table b/eccodes/definitions/grib2/tables/14/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.2.table b/eccodes/definitions/grib2/tables/14/4.2.1.2.table new file mode 100644 index 00000000..8daf51ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.0.table b/eccodes/definitions/grib2/tables/14/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.1.table b/eccodes/definitions/grib2/tables/14/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.191.table b/eccodes/definitions/grib2/tables/14/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.2.table b/eccodes/definitions/grib2/tables/14/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.3.table b/eccodes/definitions/grib2/tables/14/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.4.table b/eccodes/definitions/grib2/tables/14/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.0.table b/eccodes/definitions/grib2/tables/14/4.2.2.0.table new file mode 100644 index 00000000..1853aa0f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.2.0.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +# 38-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.3.table b/eccodes/definitions/grib2/tables/14/4.2.2.3.table new file mode 100644 index 00000000..2f629107 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.2.3.table @@ -0,0 +1,27 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.4.table b/eccodes/definitions/grib2/tables/14/4.2.2.4.table new file mode 100644 index 00000000..d4ede2f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.2.4.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.3.0.table b/eccodes/definitions/grib2/tables/14/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.2.3.1.table b/eccodes/definitions/grib2/tables/14/4.2.3.1.table new file mode 100644 index 00000000..0c0fc8d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.201.table b/eccodes/definitions/grib2/tables/14/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.202.table b/eccodes/definitions/grib2/tables/14/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.203.table b/eccodes/definitions/grib2/tables/14/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.204.table b/eccodes/definitions/grib2/tables/14/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.205.table b/eccodes/definitions/grib2/tables/14/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.206.table b/eccodes/definitions/grib2/tables/14/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.207.table b/eccodes/definitions/grib2/tables/14/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.208.table b/eccodes/definitions/grib2/tables/14/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.209.table b/eccodes/definitions/grib2/tables/14/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.210.table b/eccodes/definitions/grib2/tables/14/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.211.table b/eccodes/definitions/grib2/tables/14/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.212.table b/eccodes/definitions/grib2/tables/14/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.213.table b/eccodes/definitions/grib2/tables/14/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.215.table b/eccodes/definitions/grib2/tables/14/4.215.table new file mode 100644 index 00000000..88fda8b8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely-sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.216.table b/eccodes/definitions/grib2/tables/14/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.217.table b/eccodes/definitions/grib2/tables/14/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.218.table b/eccodes/definitions/grib2/tables/14/4.218.table new file mode 100644 index 00000000..6940a0e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.218.table @@ -0,0 +1,38 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.219.table b/eccodes/definitions/grib2/tables/14/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.220.table b/eccodes/definitions/grib2/tables/14/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.221.table b/eccodes/definitions/grib2/tables/14/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.222.table b/eccodes/definitions/grib2/tables/14/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.223.table b/eccodes/definitions/grib2/tables/14/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.224.table b/eccodes/definitions/grib2/tables/14/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.225.table b/eccodes/definitions/grib2/tables/14/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/14/4.227.table b/eccodes/definitions/grib2/tables/14/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/14/4.230.table b/eccodes/definitions/grib2/tables/14/4.230.table new file mode 100644 index 00000000..654de4d9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.230.table @@ -0,0 +1,412 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +10500 10500 Dimethyl sulphide +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.233.table b/eccodes/definitions/grib2/tables/14/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.234.table b/eccodes/definitions/grib2/tables/14/4.234.table new file mode 100644 index 00000000..9844a91d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/14/4.236.table b/eccodes/definitions/grib2/tables/14/4.236.table new file mode 100644 index 00000000..08c7f8d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/14/4.241.table b/eccodes/definitions/grib2/tables/14/4.241.table new file mode 100644 index 00000000..21b8b207 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow-covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.242.table b/eccodes/definitions/grib2/tables/14/4.242.table new file mode 100644 index 00000000..012655df --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GLOBCOVER GCV2009 +2 2 Land use classes according to European Commission - Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.243.table b/eccodes/definitions/grib2/tables/14/4.243.table new file mode 100644 index 00000000..9f047be3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Fresh water flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rain fed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/14/4.3.table b/eccodes/definitions/grib2/tables/14/4.3.table new file mode 100644 index 00000000..f423af2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.3.table @@ -0,0 +1,20 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.4.table b/eccodes/definitions/grib2/tables/14/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.5.table b/eccodes/definitions/grib2/tables/14/4.5.table new file mode 100644 index 00000000..541268ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.5.table @@ -0,0 +1,50 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +167 167 Bottom of root zone +# 168-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.6.table b/eccodes/definitions/grib2/tables/14/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.7.table b/eccodes/definitions/grib2/tables/14/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.8.table b/eccodes/definitions/grib2/tables/14/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.9.table b/eccodes/definitions/grib2/tables/14/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/4.91.table b/eccodes/definitions/grib2/tables/14/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/14/5.0.table b/eccodes/definitions/grib2/tables/14/5.0.table new file mode 100644 index 00000000..cd61837a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.1.table b/eccodes/definitions/grib2/tables/14/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.2.table b/eccodes/definitions/grib2/tables/14/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.3.table b/eccodes/definitions/grib2/tables/14/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.4.table b/eccodes/definitions/grib2/tables/14/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.40.table b/eccodes/definitions/grib2/tables/14/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.40000.table b/eccodes/definitions/grib2/tables/14/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.5.table b/eccodes/definitions/grib2/tables/14/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.50002.table b/eccodes/definitions/grib2/tables/14/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/14/5.6.table b/eccodes/definitions/grib2/tables/14/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.7.table b/eccodes/definitions/grib2/tables/14/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.8.table b/eccodes/definitions/grib2/tables/14/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/5.9.table b/eccodes/definitions/grib2/tables/14/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/14/6.0.table b/eccodes/definitions/grib2/tables/14/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/14/stepType.table b/eccodes/definitions/grib2/tables/14/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/14/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/15/0.0.table b/eccodes/definitions/grib2/tables/15/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.0.table b/eccodes/definitions/grib2/tables/15/1.0.table new file mode 100644 index 00000000..1d1bde1d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.0.table @@ -0,0 +1,20 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Pre-operational to be implemented by next amendment +# 17-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.1.table b/eccodes/definitions/grib2/tables/15/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.2.table b/eccodes/definitions/grib2/tables/15/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.3.table b/eccodes/definitions/grib2/tables/15/1.3.table new file mode 100644 index 00000000..6f061bf4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in ensembles of regional reanalysis project (UERRA) +9 9 Uncertainties in ensembles of regional reanalysis project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.4.table b/eccodes/definitions/grib2/tables/15/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/15/1.5.table b/eccodes/definitions/grib2/tables/15/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/1.6.table b/eccodes/definitions/grib2/tables/15/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.0.table b/eccodes/definitions/grib2/tables/15/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/15/3.1.table b/eccodes/definitions/grib2/tables/15/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.10.table b/eccodes/definitions/grib2/tables/15/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/15/3.11.table b/eccodes/definitions/grib2/tables/15/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.15.table b/eccodes/definitions/grib2/tables/15/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.2.table b/eccodes/definitions/grib2/tables/15/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.20.table b/eccodes/definitions/grib2/tables/15/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.21.table b/eccodes/definitions/grib2/tables/15/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.3.table b/eccodes/definitions/grib2/tables/15/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/15/3.4.table b/eccodes/definitions/grib2/tables/15/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/15/3.5.table b/eccodes/definitions/grib2/tables/15/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/15/3.6.table b/eccodes/definitions/grib2/tables/15/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/15/3.7.table b/eccodes/definitions/grib2/tables/15/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.8.table b/eccodes/definitions/grib2/tables/15/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/3.9.table b/eccodes/definitions/grib2/tables/15/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/15/4.0.table b/eccodes/definitions/grib2/tables/15/4.0.table new file mode 100644 index 00000000..b4eff076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.0.table @@ -0,0 +1,64 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +# 55-56 Reserved +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +# 58-59 Reserved +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 62-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.1.0.table b/eccodes/definitions/grib2/tables/15/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.1.1.table b/eccodes/definitions/grib2/tables/15/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.1.10.table b/eccodes/definitions/grib2/tables/15/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.1.192.table b/eccodes/definitions/grib2/tables/15/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/15/4.1.2.table b/eccodes/definitions/grib2/tables/15/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.1.3.table b/eccodes/definitions/grib2/tables/15/4.1.3.table new file mode 100644 index 00000000..5096a166 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.1.3.table @@ -0,0 +1,6 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.10.table b/eccodes/definitions/grib2/tables/15/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/15/4.11.table b/eccodes/definitions/grib2/tables/15/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.12.table b/eccodes/definitions/grib2/tables/15/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.13.table b/eccodes/definitions/grib2/tables/15/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.14.table b/eccodes/definitions/grib2/tables/15/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.15.table b/eccodes/definitions/grib2/tables/15/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.192.table b/eccodes/definitions/grib2/tables/15/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.0.table b/eccodes/definitions/grib2/tables/15/4.2.0.0.table new file mode 100644 index 00000000..41e5291a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.0.table @@ -0,0 +1,26 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.1.table b/eccodes/definitions/grib2/tables/15/4.2.0.1.table new file mode 100644 index 00000000..f2fdd302 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.1.table @@ -0,0 +1,110 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentratoin of rain (kg-1) +101 101 Specific number concentratoin of sonw (kg-1) +102 102 Specific number concentratoin of graupel (kg-1) +103 103 Specific number concentratoin of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +# 108-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.13.table b/eccodes/definitions/grib2/tables/15/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.14.table b/eccodes/definitions/grib2/tables/15/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.15.table b/eccodes/definitions/grib2/tables/15/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.16.table b/eccodes/definitions/grib2/tables/15/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.17.table b/eccodes/definitions/grib2/tables/15/4.2.0.17.table new file mode 100644 index 00000000..d481c02d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.17.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.18.table b/eccodes/definitions/grib2/tables/15/4.2.0.18.table new file mode 100644 index 00000000..18c41aa4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.18.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.19.table b/eccodes/definitions/grib2/tables/15/4.2.0.19.table new file mode 100644 index 00000000..75101bd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.19.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.190.table b/eccodes/definitions/grib2/tables/15/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.191.table b/eccodes/definitions/grib2/tables/15/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.2.table b/eccodes/definitions/grib2/tables/15/4.2.0.2.table new file mode 100644 index 00000000..c83b0730 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.2.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.20.table b/eccodes/definitions/grib2/tables/15/4.2.0.20.table new file mode 100644 index 00000000..9584f7c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.20.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.3.table b/eccodes/definitions/grib2/tables/15/4.2.0.3.table new file mode 100644 index 00000000..9a88e002 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.3.table @@ -0,0 +1,31 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.4.table b/eccodes/definitions/grib2/tables/15/4.2.0.4.table new file mode 100644 index 00000000..dbfcbddb --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.4.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.5.table b/eccodes/definitions/grib2/tables/15/4.2.0.5.table new file mode 100644 index 00000000..932a12fb --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.5.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.6.table b/eccodes/definitions/grib2/tables/15/4.2.0.6.table new file mode 100644 index 00000000..e28d8e4d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.6.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.7.table b/eccodes/definitions/grib2/tables/15/4.2.0.7.table new file mode 100644 index 00000000..db47d011 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.0.7.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.0.table b/eccodes/definitions/grib2/tables/15/4.2.1.0.table new file mode 100644 index 00000000..cf56b08e --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.1.0.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.1.table b/eccodes/definitions/grib2/tables/15/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.2.table b/eccodes/definitions/grib2/tables/15/4.2.1.2.table new file mode 100644 index 00000000..8daf51ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.1.2.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.0.table b/eccodes/definitions/grib2/tables/15/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.1.table b/eccodes/definitions/grib2/tables/15/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.191.table b/eccodes/definitions/grib2/tables/15/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.2.table b/eccodes/definitions/grib2/tables/15/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.3.table b/eccodes/definitions/grib2/tables/15/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.4.table b/eccodes/definitions/grib2/tables/15/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.0.table b/eccodes/definitions/grib2/tables/15/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.3.table b/eccodes/definitions/grib2/tables/15/4.2.2.3.table new file mode 100644 index 00000000..08ac880f --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.2.3.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.4.table b/eccodes/definitions/grib2/tables/15/4.2.2.4.table new file mode 100644 index 00000000..d4ede2f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.2.4.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.5.table b/eccodes/definitions/grib2/tables/15/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/15/4.2.3.0.table b/eccodes/definitions/grib2/tables/15/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.2.3.1.table b/eccodes/definitions/grib2/tables/15/4.2.3.1.table new file mode 100644 index 00000000..0bda5306 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.2.3.1.table @@ -0,0 +1,28 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.201.table b/eccodes/definitions/grib2/tables/15/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.202.table b/eccodes/definitions/grib2/tables/15/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.203.table b/eccodes/definitions/grib2/tables/15/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.204.table b/eccodes/definitions/grib2/tables/15/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.205.table b/eccodes/definitions/grib2/tables/15/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.206.table b/eccodes/definitions/grib2/tables/15/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.207.table b/eccodes/definitions/grib2/tables/15/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.208.table b/eccodes/definitions/grib2/tables/15/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.209.table b/eccodes/definitions/grib2/tables/15/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.210.table b/eccodes/definitions/grib2/tables/15/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.211.table b/eccodes/definitions/grib2/tables/15/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.212.table b/eccodes/definitions/grib2/tables/15/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.213.table b/eccodes/definitions/grib2/tables/15/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.215.table b/eccodes/definitions/grib2/tables/15/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.216.table b/eccodes/definitions/grib2/tables/15/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.217.table b/eccodes/definitions/grib2/tables/15/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.218.table b/eccodes/definitions/grib2/tables/15/4.218.table new file mode 100644 index 00000000..bfca92f9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.218.table @@ -0,0 +1,38 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.219.table b/eccodes/definitions/grib2/tables/15/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.220.table b/eccodes/definitions/grib2/tables/15/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.221.table b/eccodes/definitions/grib2/tables/15/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.222.table b/eccodes/definitions/grib2/tables/15/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.223.table b/eccodes/definitions/grib2/tables/15/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.224.table b/eccodes/definitions/grib2/tables/15/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.225.table b/eccodes/definitions/grib2/tables/15/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/15/4.227.table b/eccodes/definitions/grib2/tables/15/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/15/4.230.table b/eccodes/definitions/grib2/tables/15/4.230.table new file mode 100644 index 00000000..a7ce00d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.230.table @@ -0,0 +1,414 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.233.table b/eccodes/definitions/grib2/tables/15/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.234.table b/eccodes/definitions/grib2/tables/15/4.234.table new file mode 100644 index 00000000..9844a91d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/15/4.236.table b/eccodes/definitions/grib2/tables/15/4.236.table new file mode 100644 index 00000000..08c7f8d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/15/4.240.table b/eccodes/definitions/grib2/tables/15/4.240.table new file mode 100644 index 00000000..f8bcdf7b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.240.table @@ -0,0 +1,12 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl(p1) in meter +2 2 Delta functions with spatially variable concentration and fixed masses Ml(p1) in kg +3 3 Gaussian (Normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (Normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +# 8-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.241.table b/eccodes/definitions/grib2/tables/15/4.241.table new file mode 100644 index 00000000..c0bd3e99 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.242.table b/eccodes/definitions/grib2/tables/15/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/15/4.243.table b/eccodes/definitions/grib2/tables/15/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/15/4.3.table b/eccodes/definitions/grib2/tables/15/4.3.table new file mode 100644 index 00000000..f423af2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.3.table @@ -0,0 +1,20 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.4.table b/eccodes/definitions/grib2/tables/15/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.5.table b/eccodes/definitions/grib2/tables/15/4.5.table new file mode 100644 index 00000000..8a184f4f --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.5.table @@ -0,0 +1,63 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +167 167 Bottom of root zone +# 168-173 Reserved +# 168-169 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +178 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.6.table b/eccodes/definitions/grib2/tables/15/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.7.table b/eccodes/definitions/grib2/tables/15/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.8.table b/eccodes/definitions/grib2/tables/15/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.9.table b/eccodes/definitions/grib2/tables/15/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/4.91.table b/eccodes/definitions/grib2/tables/15/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/15/5.0.table b/eccodes/definitions/grib2/tables/15/5.0.table new file mode 100644 index 00000000..cd61837a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.1.table b/eccodes/definitions/grib2/tables/15/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.2.table b/eccodes/definitions/grib2/tables/15/5.2.table new file mode 100644 index 00000000..7a4500ec --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.3.table b/eccodes/definitions/grib2/tables/15/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.4.table b/eccodes/definitions/grib2/tables/15/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.40.table b/eccodes/definitions/grib2/tables/15/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.40000.table b/eccodes/definitions/grib2/tables/15/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.5.table b/eccodes/definitions/grib2/tables/15/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.50002.table b/eccodes/definitions/grib2/tables/15/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/15/5.6.table b/eccodes/definitions/grib2/tables/15/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/5.7.table b/eccodes/definitions/grib2/tables/15/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/15/6.0.table b/eccodes/definitions/grib2/tables/15/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/15/stepType.table b/eccodes/definitions/grib2/tables/15/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/15/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/16/0.0.table b/eccodes/definitions/grib2/tables/16/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.0.table b/eccodes/definitions/grib2/tables/16/1.0.table new file mode 100644 index 00000000..acb61be1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.0.table @@ -0,0 +1,21 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Pre-operational to be implemented by next amendment +# 18-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.1.table b/eccodes/definitions/grib2/tables/16/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.2.table b/eccodes/definitions/grib2/tables/16/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.3.table b/eccodes/definitions/grib2/tables/16/1.3.table new file mode 100644 index 00000000..6f061bf4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in ensembles of regional reanalysis project (UERRA) +9 9 Uncertainties in ensembles of regional reanalysis project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.4.table b/eccodes/definitions/grib2/tables/16/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/16/1.5.table b/eccodes/definitions/grib2/tables/16/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/1.6.table b/eccodes/definitions/grib2/tables/16/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.0.table b/eccodes/definitions/grib2/tables/16/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/16/3.1.table b/eccodes/definitions/grib2/tables/16/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.10.table b/eccodes/definitions/grib2/tables/16/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/16/3.11.table b/eccodes/definitions/grib2/tables/16/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.15.table b/eccodes/definitions/grib2/tables/16/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.2.table b/eccodes/definitions/grib2/tables/16/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.20.table b/eccodes/definitions/grib2/tables/16/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.21.table b/eccodes/definitions/grib2/tables/16/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.3.table b/eccodes/definitions/grib2/tables/16/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/16/3.4.table b/eccodes/definitions/grib2/tables/16/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/16/3.5.table b/eccodes/definitions/grib2/tables/16/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/16/3.6.table b/eccodes/definitions/grib2/tables/16/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/16/3.7.table b/eccodes/definitions/grib2/tables/16/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.8.table b/eccodes/definitions/grib2/tables/16/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/3.9.table b/eccodes/definitions/grib2/tables/16/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/16/4.0.table b/eccodes/definitions/grib2/tables/16/4.0.table new file mode 100644 index 00000000..05bf2433 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.0.table @@ -0,0 +1,65 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +# 58-59 Reserved +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.1.0.table b/eccodes/definitions/grib2/tables/16/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.1.1.table b/eccodes/definitions/grib2/tables/16/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.1.10.table b/eccodes/definitions/grib2/tables/16/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.1.192.table b/eccodes/definitions/grib2/tables/16/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/16/4.1.2.table b/eccodes/definitions/grib2/tables/16/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.1.3.table b/eccodes/definitions/grib2/tables/16/4.1.3.table new file mode 100644 index 00000000..d2baa136 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rules conditions +4 4 Volcanic ash +5 5 Sea surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.10.table b/eccodes/definitions/grib2/tables/16/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/16/4.11.table b/eccodes/definitions/grib2/tables/16/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.12.table b/eccodes/definitions/grib2/tables/16/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.13.table b/eccodes/definitions/grib2/tables/16/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.14.table b/eccodes/definitions/grib2/tables/16/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.15.table b/eccodes/definitions/grib2/tables/16/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.192.table b/eccodes/definitions/grib2/tables/16/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.0.table b/eccodes/definitions/grib2/tables/16/4.2.0.0.table new file mode 100644 index 00000000..cfadd2d0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.0.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterizations (K s-1) +27 27 Wet bulb temperature (K) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.1.table b/eccodes/definitions/grib2/tables/16/4.2.0.1.table new file mode 100644 index 00000000..775cfe54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.1.table @@ -0,0 +1,111 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterizations (kg kg-1 s-1) +# 109-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.13.table b/eccodes/definitions/grib2/tables/16/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.14.table b/eccodes/definitions/grib2/tables/16/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.15.table b/eccodes/definitions/grib2/tables/16/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.16.table b/eccodes/definitions/grib2/tables/16/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.17.table b/eccodes/definitions/grib2/tables/16/4.2.0.17.table new file mode 100644 index 00000000..d481c02d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.17.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.18.table b/eccodes/definitions/grib2/tables/16/4.2.0.18.table new file mode 100644 index 00000000..18c41aa4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.18.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.19.table b/eccodes/definitions/grib2/tables/16/4.2.0.19.table new file mode 100644 index 00000000..ec2b9823 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.19.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.190.table b/eccodes/definitions/grib2/tables/16/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.191.table b/eccodes/definitions/grib2/tables/16/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.2.table b/eccodes/definitions/grib2/tables/16/4.2.0.2.table new file mode 100644 index 00000000..46b0774a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.2.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterizations (m s-2) +40 40 Northward wind tendency due to parameterizations (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +# 45-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.20.table b/eccodes/definitions/grib2/tables/16/4.2.0.20.table new file mode 100644 index 00000000..9584f7c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.20.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.3.table b/eccodes/definitions/grib2/tables/16/4.2.0.3.table new file mode 100644 index 00000000..c7c6359d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.3.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.4.table b/eccodes/definitions/grib2/tables/16/4.2.0.4.table new file mode 100644 index 00000000..bd37ea3f --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.4.table @@ -0,0 +1,22 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short wave radiation flux (W m-2) +14 14 Diffuse short wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.5.table b/eccodes/definitions/grib2/tables/16/4.2.0.5.table new file mode 100644 index 00000000..932a12fb --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.5.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.6.table b/eccodes/definitions/grib2/tables/16/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.7.table b/eccodes/definitions/grib2/tables/16/4.2.0.7.table new file mode 100644 index 00000000..23a1a82d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.0.7.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.0.table b/eccodes/definitions/grib2/tables/16/4.2.1.0.table new file mode 100644 index 00000000..74c95f57 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.1.0.table @@ -0,0 +1,20 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.1.table b/eccodes/definitions/grib2/tables/16/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.2.table b/eccodes/definitions/grib2/tables/16/4.2.1.2.table new file mode 100644 index 00000000..02979ecb --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.0.table b/eccodes/definitions/grib2/tables/16/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.1.table b/eccodes/definitions/grib2/tables/16/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.191.table b/eccodes/definitions/grib2/tables/16/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.2.table b/eccodes/definitions/grib2/tables/16/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.3.table b/eccodes/definitions/grib2/tables/16/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.4.table b/eccodes/definitions/grib2/tables/16/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.0.table b/eccodes/definitions/grib2/tables/16/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.3.table b/eccodes/definitions/grib2/tables/16/4.2.2.3.table new file mode 100644 index 00000000..dff2f795 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.2.3.table @@ -0,0 +1,30 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +# 26-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.4.table b/eccodes/definitions/grib2/tables/16/4.2.2.4.table new file mode 100644 index 00000000..b9383fe1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Fire weather index (Canadian forest service) (Numeric) +6 6 Fine fuel moisture code (Canadian forest service) (Numeric) +7 7 Duff moisture code (Canadian forest service) (Numeric) +8 8 Drought code (Canadian forest service) (Numeric) +9 9 Initial fire spread index (Canadian forest service) (Numeric) +10 10 Fire build up index (Canadian forest service) (Numeric) +11 11 Fire daily severity rating (Canadian forest service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.5.table b/eccodes/definitions/grib2/tables/16/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.0.table b/eccodes/definitions/grib2/tables/16/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.1.table b/eccodes/definitions/grib2/tables/16/4.2.3.1.table new file mode 100644 index 00000000..75911ee3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (Numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (Numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.2.table b/eccodes/definitions/grib2/tables/16/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.3.table b/eccodes/definitions/grib2/tables/16/4.2.3.3.table new file mode 100644 index 00000000..064cfa1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rules conditions (%) +1 1 Probability of encountering low instrument flight rules conditions (%) +2 2 Probability of encountering instrument flight rules conditions (%) diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.4.table b/eccodes/definitions/grib2/tables/16/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.5.table b/eccodes/definitions/grib2/tables/16/4.2.3.5.table new file mode 100644 index 00000000..e9cfe124 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea surface temperature (K) +1 1 Skin sea surface temperature (K) +2 2 Sub-skin sea surface temperature (K) +3 3 Foundation sea surface temperature (K) +4 4 Estimated bias between sea surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.6.table b/eccodes/definitions/grib2/tables/16/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/16/4.201.table b/eccodes/definitions/grib2/tables/16/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.202.table b/eccodes/definitions/grib2/tables/16/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.203.table b/eccodes/definitions/grib2/tables/16/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.204.table b/eccodes/definitions/grib2/tables/16/4.204.table new file mode 100644 index 00000000..91bcf181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.205.table b/eccodes/definitions/grib2/tables/16/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.206.table b/eccodes/definitions/grib2/tables/16/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.207.table b/eccodes/definitions/grib2/tables/16/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.208.table b/eccodes/definitions/grib2/tables/16/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.209.table b/eccodes/definitions/grib2/tables/16/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.210.table b/eccodes/definitions/grib2/tables/16/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.211.table b/eccodes/definitions/grib2/tables/16/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.212.table b/eccodes/definitions/grib2/tables/16/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.213.table b/eccodes/definitions/grib2/tables/16/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.215.table b/eccodes/definitions/grib2/tables/16/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.216.table b/eccodes/definitions/grib2/tables/16/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.217.table b/eccodes/definitions/grib2/tables/16/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.218.table b/eccodes/definitions/grib2/tables/16/4.218.table new file mode 100644 index 00000000..c585bed9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multi-layered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.219.table b/eccodes/definitions/grib2/tables/16/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.220.table b/eccodes/definitions/grib2/tables/16/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.221.table b/eccodes/definitions/grib2/tables/16/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.222.table b/eccodes/definitions/grib2/tables/16/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.223.table b/eccodes/definitions/grib2/tables/16/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.224.table b/eccodes/definitions/grib2/tables/16/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.225.table b/eccodes/definitions/grib2/tables/16/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/16/4.227.table b/eccodes/definitions/grib2/tables/16/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/16/4.230.table b/eccodes/definitions/grib2/tables/16/4.230.table new file mode 100644 index 00000000..a7ce00d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.230.table @@ -0,0 +1,414 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.233.table b/eccodes/definitions/grib2/tables/16/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.234.table b/eccodes/definitions/grib2/tables/16/4.234.table new file mode 100644 index 00000000..9844a91d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/16/4.236.table b/eccodes/definitions/grib2/tables/16/4.236.table new file mode 100644 index 00000000..08c7f8d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/16/4.240.table b/eccodes/definitions/grib2/tables/16/4.240.table new file mode 100644 index 00000000..c12ebbb7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.240.table @@ -0,0 +1,12 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in meter +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (Normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (Normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +# 8-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/16/4.241.table b/eccodes/definitions/grib2/tables/16/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/16/4.242.table b/eccodes/definitions/grib2/tables/16/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/16/4.243.table b/eccodes/definitions/grib2/tables/16/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/16/4.3.table b/eccodes/definitions/grib2/tables/16/4.3.table new file mode 100644 index 00000000..f205ea0c --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.3.table @@ -0,0 +1,22 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +# 18-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.4.table b/eccodes/definitions/grib2/tables/16/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.5.table b/eccodes/definitions/grib2/tables/16/4.5.table new file mode 100644 index 00000000..9cabf1f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.5.table @@ -0,0 +1,62 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +178 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.6.table b/eccodes/definitions/grib2/tables/16/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.7.table b/eccodes/definitions/grib2/tables/16/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.8.table b/eccodes/definitions/grib2/tables/16/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.9.table b/eccodes/definitions/grib2/tables/16/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/4.91.table b/eccodes/definitions/grib2/tables/16/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/16/5.0.table b/eccodes/definitions/grib2/tables/16/5.0.table new file mode 100644 index 00000000..cd61837a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.1.table b/eccodes/definitions/grib2/tables/16/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.2.table b/eccodes/definitions/grib2/tables/16/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.3.table b/eccodes/definitions/grib2/tables/16/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.4.table b/eccodes/definitions/grib2/tables/16/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.40.table b/eccodes/definitions/grib2/tables/16/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.40000.table b/eccodes/definitions/grib2/tables/16/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.5.table b/eccodes/definitions/grib2/tables/16/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.50002.table b/eccodes/definitions/grib2/tables/16/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/16/5.6.table b/eccodes/definitions/grib2/tables/16/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/5.7.table b/eccodes/definitions/grib2/tables/16/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/16/6.0.table b/eccodes/definitions/grib2/tables/16/6.0.table new file mode 100644 index 00000000..f539b26d --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/16/stepType.table b/eccodes/definitions/grib2/tables/16/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/16/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/17/0.0.table b/eccodes/definitions/grib2/tables/17/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.0.table b/eccodes/definitions/grib2/tables/17/1.0.table new file mode 100644 index 00000000..d1134399 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.0.table @@ -0,0 +1,22 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Pre-operational to be implemented by next amendment +# 19-254 Future versions +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.1.table b/eccodes/definitions/grib2/tables/17/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.2.table b/eccodes/definitions/grib2/tables/17/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.3.table b/eccodes/definitions/grib2/tables/17/1.3.table new file mode 100644 index 00000000..0c95269d --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.4.table b/eccodes/definitions/grib2/tables/17/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/17/1.5.table b/eccodes/definitions/grib2/tables/17/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/1.6.table b/eccodes/definitions/grib2/tables/17/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.0.table b/eccodes/definitions/grib2/tables/17/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/17/3.1.table b/eccodes/definitions/grib2/tables/17/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.10.table b/eccodes/definitions/grib2/tables/17/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/17/3.11.table b/eccodes/definitions/grib2/tables/17/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.15.table b/eccodes/definitions/grib2/tables/17/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.2.table b/eccodes/definitions/grib2/tables/17/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.20.table b/eccodes/definitions/grib2/tables/17/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.21.table b/eccodes/definitions/grib2/tables/17/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.3.table b/eccodes/definitions/grib2/tables/17/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/17/3.4.table b/eccodes/definitions/grib2/tables/17/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/17/3.5.table b/eccodes/definitions/grib2/tables/17/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/17/3.6.table b/eccodes/definitions/grib2/tables/17/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/17/3.7.table b/eccodes/definitions/grib2/tables/17/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.8.table b/eccodes/definitions/grib2/tables/17/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/3.9.table b/eccodes/definitions/grib2/tables/17/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/17/4.0.table b/eccodes/definitions/grib2/tables/17/4.0.table new file mode 100644 index 00000000..802eca6b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.0.table @@ -0,0 +1,65 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 49-50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +52 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +# 58-59 Reserved +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.1.0.table b/eccodes/definitions/grib2/tables/17/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.1.1.table b/eccodes/definitions/grib2/tables/17/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.1.10.table b/eccodes/definitions/grib2/tables/17/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.1.192.table b/eccodes/definitions/grib2/tables/17/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/17/4.1.2.table b/eccodes/definitions/grib2/tables/17/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.1.3.table b/eccodes/definitions/grib2/tables/17/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.10.table b/eccodes/definitions/grib2/tables/17/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/17/4.11.table b/eccodes/definitions/grib2/tables/17/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.12.table b/eccodes/definitions/grib2/tables/17/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.13.table b/eccodes/definitions/grib2/tables/17/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.14.table b/eccodes/definitions/grib2/tables/17/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.15.table b/eccodes/definitions/grib2/tables/17/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.192.table b/eccodes/definitions/grib2/tables/17/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.0.table b/eccodes/definitions/grib2/tables/17/4.2.0.0.table new file mode 100644 index 00000000..f24b8832 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.0.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.1.table b/eccodes/definitions/grib2/tables/17/4.2.0.1.table new file mode 100644 index 00000000..70001f74 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.1.table @@ -0,0 +1,120 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +# 118-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.13.table b/eccodes/definitions/grib2/tables/17/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.14.table b/eccodes/definitions/grib2/tables/17/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.15.table b/eccodes/definitions/grib2/tables/17/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.16.table b/eccodes/definitions/grib2/tables/17/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.17.table b/eccodes/definitions/grib2/tables/17/4.2.0.17.table new file mode 100644 index 00000000..a6799631 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.17.table @@ -0,0 +1,3 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.18.table b/eccodes/definitions/grib2/tables/17/4.2.0.18.table new file mode 100644 index 00000000..9ae3539c --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.18.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.19.table b/eccodes/definitions/grib2/tables/17/4.2.0.19.table new file mode 100644 index 00000000..8705082c --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.19.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of Eddy dissipation parameter in layer (m2/3 s-1) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.190.table b/eccodes/definitions/grib2/tables/17/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.191.table b/eccodes/definitions/grib2/tables/17/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.2.table b/eccodes/definitions/grib2/tables/17/4.2.0.2.table new file mode 100644 index 00000000..8ebc7512 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.2.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +# 45-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.20.table b/eccodes/definitions/grib2/tables/17/4.2.0.20.table new file mode 100644 index 00000000..983539bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.20.table @@ -0,0 +1,46 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +# 63-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.3.table b/eccodes/definitions/grib2/tables/17/4.2.0.3.table new file mode 100644 index 00000000..c7c6359d --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.3.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.4.table b/eccodes/definitions/grib2/tables/17/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.5.table b/eccodes/definitions/grib2/tables/17/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.6.table b/eccodes/definitions/grib2/tables/17/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.7.table b/eccodes/definitions/grib2/tables/17/4.2.0.7.table new file mode 100644 index 00000000..6d0d87a4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.0.7.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.0.table b/eccodes/definitions/grib2/tables/17/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.1.table b/eccodes/definitions/grib2/tables/17/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.2.table b/eccodes/definitions/grib2/tables/17/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.0.table b/eccodes/definitions/grib2/tables/17/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.1.table b/eccodes/definitions/grib2/tables/17/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.191.table b/eccodes/definitions/grib2/tables/17/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.2.table b/eccodes/definitions/grib2/tables/17/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.3.table b/eccodes/definitions/grib2/tables/17/4.2.10.3.table new file mode 100644 index 00000000..f951bbe7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.3.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.4.table b/eccodes/definitions/grib2/tables/17/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.0.table b/eccodes/definitions/grib2/tables/17/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.3.table b/eccodes/definitions/grib2/tables/17/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.4.table b/eccodes/definitions/grib2/tables/17/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.5.table b/eccodes/definitions/grib2/tables/17/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.0.table b/eccodes/definitions/grib2/tables/17/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.1.table b/eccodes/definitions/grib2/tables/17/4.2.3.1.table new file mode 100644 index 00000000..8e0793fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (Numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (Numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.2.table b/eccodes/definitions/grib2/tables/17/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.3.table b/eccodes/definitions/grib2/tables/17/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.4.table b/eccodes/definitions/grib2/tables/17/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.5.table b/eccodes/definitions/grib2/tables/17/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.6.table b/eccodes/definitions/grib2/tables/17/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/17/4.201.table b/eccodes/definitions/grib2/tables/17/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.202.table b/eccodes/definitions/grib2/tables/17/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.203.table b/eccodes/definitions/grib2/tables/17/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.204.table b/eccodes/definitions/grib2/tables/17/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.205.table b/eccodes/definitions/grib2/tables/17/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.206.table b/eccodes/definitions/grib2/tables/17/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.207.table b/eccodes/definitions/grib2/tables/17/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.208.table b/eccodes/definitions/grib2/tables/17/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.209.table b/eccodes/definitions/grib2/tables/17/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.210.table b/eccodes/definitions/grib2/tables/17/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.211.table b/eccodes/definitions/grib2/tables/17/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.212.table b/eccodes/definitions/grib2/tables/17/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.213.table b/eccodes/definitions/grib2/tables/17/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.215.table b/eccodes/definitions/grib2/tables/17/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.216.table b/eccodes/definitions/grib2/tables/17/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.217.table b/eccodes/definitions/grib2/tables/17/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.218.table b/eccodes/definitions/grib2/tables/17/4.218.table new file mode 100644 index 00000000..7e3a6957 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.219.table b/eccodes/definitions/grib2/tables/17/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.220.table b/eccodes/definitions/grib2/tables/17/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.221.table b/eccodes/definitions/grib2/tables/17/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.222.table b/eccodes/definitions/grib2/tables/17/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.223.table b/eccodes/definitions/grib2/tables/17/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.224.table b/eccodes/definitions/grib2/tables/17/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.225.table b/eccodes/definitions/grib2/tables/17/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/17/4.227.table b/eccodes/definitions/grib2/tables/17/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/17/4.230.table b/eccodes/definitions/grib2/tables/17/4.230.table new file mode 100644 index 00000000..a7ce00d3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.230.table @@ -0,0 +1,414 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.233.table b/eccodes/definitions/grib2/tables/17/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.234.table b/eccodes/definitions/grib2/tables/17/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/17/4.236.table b/eccodes/definitions/grib2/tables/17/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/17/4.240.table b/eccodes/definitions/grib2/tables/17/4.240.table new file mode 100644 index 00000000..ca335fea --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.240.table @@ -0,0 +1,12 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +# 8-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/17/4.241.table b/eccodes/definitions/grib2/tables/17/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/17/4.242.table b/eccodes/definitions/grib2/tables/17/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/17/4.243.table b/eccodes/definitions/grib2/tables/17/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/17/4.3.table b/eccodes/definitions/grib2/tables/17/4.3.table new file mode 100644 index 00000000..f205ea0c --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.3.table @@ -0,0 +1,22 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +# 18-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.4.table b/eccodes/definitions/grib2/tables/17/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.5.table b/eccodes/definitions/grib2/tables/17/4.5.table new file mode 100644 index 00000000..2e2695aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.5.table @@ -0,0 +1,67 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +# 115-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.6.table b/eccodes/definitions/grib2/tables/17/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.7.table b/eccodes/definitions/grib2/tables/17/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.8.table b/eccodes/definitions/grib2/tables/17/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.9.table b/eccodes/definitions/grib2/tables/17/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/4.91.table b/eccodes/definitions/grib2/tables/17/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/17/5.0.table b/eccodes/definitions/grib2/tables/17/5.0.table new file mode 100644 index 00000000..cd61837a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.0.table @@ -0,0 +1,24 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +# 42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.1.table b/eccodes/definitions/grib2/tables/17/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.2.table b/eccodes/definitions/grib2/tables/17/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.3.table b/eccodes/definitions/grib2/tables/17/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.4.table b/eccodes/definitions/grib2/tables/17/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.40.table b/eccodes/definitions/grib2/tables/17/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.40000.table b/eccodes/definitions/grib2/tables/17/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.5.table b/eccodes/definitions/grib2/tables/17/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.50002.table b/eccodes/definitions/grib2/tables/17/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/17/5.6.table b/eccodes/definitions/grib2/tables/17/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/5.7.table b/eccodes/definitions/grib2/tables/17/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/17/6.0.table b/eccodes/definitions/grib2/tables/17/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/17/stepType.table b/eccodes/definitions/grib2/tables/17/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/17/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/18/0.0.table b/eccodes/definitions/grib2/tables/18/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/1.0.table b/eccodes/definitions/grib2/tables/18/1.0.table new file mode 100644 index 00000000..8829485d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.0.table @@ -0,0 +1,23 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Pre-operational to be implemented by next amendment +# 20-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/18/1.1.table b/eccodes/definitions/grib2/tables/18/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/1.2.table b/eccodes/definitions/grib2/tables/18/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/1.3.table b/eccodes/definitions/grib2/tables/18/1.3.table new file mode 100644 index 00000000..0c95269d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/1.4.table b/eccodes/definitions/grib2/tables/18/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/18/1.5.table b/eccodes/definitions/grib2/tables/18/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/1.6.table b/eccodes/definitions/grib2/tables/18/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.0.table b/eccodes/definitions/grib2/tables/18/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/18/3.1.table b/eccodes/definitions/grib2/tables/18/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.10.table b/eccodes/definitions/grib2/tables/18/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/18/3.11.table b/eccodes/definitions/grib2/tables/18/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.15.table b/eccodes/definitions/grib2/tables/18/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.2.table b/eccodes/definitions/grib2/tables/18/3.2.table new file mode 100644 index 00000000..9238dc2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.20.table b/eccodes/definitions/grib2/tables/18/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.21.table b/eccodes/definitions/grib2/tables/18/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.3.table b/eccodes/definitions/grib2/tables/18/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/18/3.4.table b/eccodes/definitions/grib2/tables/18/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/18/3.5.table b/eccodes/definitions/grib2/tables/18/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/18/3.6.table b/eccodes/definitions/grib2/tables/18/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/18/3.7.table b/eccodes/definitions/grib2/tables/18/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.8.table b/eccodes/definitions/grib2/tables/18/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/3.9.table b/eccodes/definitions/grib2/tables/18/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/18/4.0.table b/eccodes/definitions/grib2/tables/18/4.0.table new file mode 100644 index 00000000..5ad2ed89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.0.table @@ -0,0 +1,72 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.1.0.table b/eccodes/definitions/grib2/tables/18/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.1.1.table b/eccodes/definitions/grib2/tables/18/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.1.10.table b/eccodes/definitions/grib2/tables/18/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.1.192.table b/eccodes/definitions/grib2/tables/18/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/18/4.1.2.table b/eccodes/definitions/grib2/tables/18/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.1.3.table b/eccodes/definitions/grib2/tables/18/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.10.table b/eccodes/definitions/grib2/tables/18/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/18/4.11.table b/eccodes/definitions/grib2/tables/18/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.12.table b/eccodes/definitions/grib2/tables/18/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.13.table b/eccodes/definitions/grib2/tables/18/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.14.table b/eccodes/definitions/grib2/tables/18/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.15.table b/eccodes/definitions/grib2/tables/18/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.192.table b/eccodes/definitions/grib2/tables/18/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.0.table b/eccodes/definitions/grib2/tables/18/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.1.table b/eccodes/definitions/grib2/tables/18/4.2.0.1.table new file mode 100644 index 00000000..c38d6a05 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.1.table @@ -0,0 +1,123 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +# 121-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.13.table b/eccodes/definitions/grib2/tables/18/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.14.table b/eccodes/definitions/grib2/tables/18/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.15.table b/eccodes/definitions/grib2/tables/18/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.16.table b/eccodes/definitions/grib2/tables/18/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.17.table b/eccodes/definitions/grib2/tables/18/4.2.0.17.table new file mode 100644 index 00000000..a6799631 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.17.table @@ -0,0 +1,3 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.18.table b/eccodes/definitions/grib2/tables/18/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.19.table b/eccodes/definitions/grib2/tables/18/4.2.0.19.table new file mode 100644 index 00000000..8705082c --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.19.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of Eddy dissipation parameter in layer (m2/3 s-1) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.190.table b/eccodes/definitions/grib2/tables/18/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.191.table b/eccodes/definitions/grib2/tables/18/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.2.table b/eccodes/definitions/grib2/tables/18/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.20.table b/eccodes/definitions/grib2/tables/18/4.2.0.20.table new file mode 100644 index 00000000..efc427a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.20.table @@ -0,0 +1,47 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +# 64-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.3.table b/eccodes/definitions/grib2/tables/18/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.4.table b/eccodes/definitions/grib2/tables/18/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.5.table b/eccodes/definitions/grib2/tables/18/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.6.table b/eccodes/definitions/grib2/tables/18/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.7.table b/eccodes/definitions/grib2/tables/18/4.2.0.7.table new file mode 100644 index 00000000..6d0d87a4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.0.7.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.0.table b/eccodes/definitions/grib2/tables/18/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.1.table b/eccodes/definitions/grib2/tables/18/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.2.table b/eccodes/definitions/grib2/tables/18/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.0.table b/eccodes/definitions/grib2/tables/18/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.1.table b/eccodes/definitions/grib2/tables/18/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.191.table b/eccodes/definitions/grib2/tables/18/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.2.table b/eccodes/definitions/grib2/tables/18/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.3.table b/eccodes/definitions/grib2/tables/18/4.2.10.3.table new file mode 100644 index 00000000..de7afd61 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.4.table b/eccodes/definitions/grib2/tables/18/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.0.table b/eccodes/definitions/grib2/tables/18/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.3.table b/eccodes/definitions/grib2/tables/18/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.4.table b/eccodes/definitions/grib2/tables/18/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.5.table b/eccodes/definitions/grib2/tables/18/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.0.table b/eccodes/definitions/grib2/tables/18/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.1.table b/eccodes/definitions/grib2/tables/18/4.2.3.1.table new file mode 100644 index 00000000..8e0793fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (Numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (Numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.2.table b/eccodes/definitions/grib2/tables/18/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.3.table b/eccodes/definitions/grib2/tables/18/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.4.table b/eccodes/definitions/grib2/tables/18/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.5.table b/eccodes/definitions/grib2/tables/18/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.6.table b/eccodes/definitions/grib2/tables/18/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/18/4.201.table b/eccodes/definitions/grib2/tables/18/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.202.table b/eccodes/definitions/grib2/tables/18/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.203.table b/eccodes/definitions/grib2/tables/18/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.204.table b/eccodes/definitions/grib2/tables/18/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.205.table b/eccodes/definitions/grib2/tables/18/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.206.table b/eccodes/definitions/grib2/tables/18/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.207.table b/eccodes/definitions/grib2/tables/18/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.208.table b/eccodes/definitions/grib2/tables/18/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.209.table b/eccodes/definitions/grib2/tables/18/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.210.table b/eccodes/definitions/grib2/tables/18/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.211.table b/eccodes/definitions/grib2/tables/18/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.212.table b/eccodes/definitions/grib2/tables/18/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.213.table b/eccodes/definitions/grib2/tables/18/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.215.table b/eccodes/definitions/grib2/tables/18/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.216.table b/eccodes/definitions/grib2/tables/18/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.217.table b/eccodes/definitions/grib2/tables/18/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.218.table b/eccodes/definitions/grib2/tables/18/4.218.table new file mode 100644 index 00000000..7e3a6957 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.219.table b/eccodes/definitions/grib2/tables/18/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.220.table b/eccodes/definitions/grib2/tables/18/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.221.table b/eccodes/definitions/grib2/tables/18/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.222.table b/eccodes/definitions/grib2/tables/18/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.223.table b/eccodes/definitions/grib2/tables/18/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.224.table b/eccodes/definitions/grib2/tables/18/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.225.table b/eccodes/definitions/grib2/tables/18/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/18/4.227.table b/eccodes/definitions/grib2/tables/18/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/18/4.230.table b/eccodes/definitions/grib2/tables/18/4.230.table new file mode 100644 index 00000000..d2e91fad --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.230.table @@ -0,0 +1,437 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +62300 62300 Poaceae (Grass family) pollen +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.233.table b/eccodes/definitions/grib2/tables/18/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.234.table b/eccodes/definitions/grib2/tables/18/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/18/4.236.table b/eccodes/definitions/grib2/tables/18/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/18/4.240.table b/eccodes/definitions/grib2/tables/18/4.240.table new file mode 100644 index 00000000..7313e6ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.240.table @@ -0,0 +1,12 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +# 8-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/18/4.241.table b/eccodes/definitions/grib2/tables/18/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/18/4.242.table b/eccodes/definitions/grib2/tables/18/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/18/4.243.table b/eccodes/definitions/grib2/tables/18/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/18/4.3.table b/eccodes/definitions/grib2/tables/18/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.4.table b/eccodes/definitions/grib2/tables/18/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.5.table b/eccodes/definitions/grib2/tables/18/4.5.table new file mode 100644 index 00000000..c14343e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.6.table b/eccodes/definitions/grib2/tables/18/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.7.table b/eccodes/definitions/grib2/tables/18/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.8.table b/eccodes/definitions/grib2/tables/18/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.9.table b/eccodes/definitions/grib2/tables/18/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/4.91.table b/eccodes/definitions/grib2/tables/18/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/18/5.0.table b/eccodes/definitions/grib2/tables/18/5.0.table new file mode 100644 index 00000000..1d4c5e5d --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.0.table @@ -0,0 +1,25 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.1.table b/eccodes/definitions/grib2/tables/18/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.2.table b/eccodes/definitions/grib2/tables/18/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.3.table b/eccodes/definitions/grib2/tables/18/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.4.table b/eccodes/definitions/grib2/tables/18/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.40.table b/eccodes/definitions/grib2/tables/18/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.40000.table b/eccodes/definitions/grib2/tables/18/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.5.table b/eccodes/definitions/grib2/tables/18/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.50002.table b/eccodes/definitions/grib2/tables/18/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/18/5.6.table b/eccodes/definitions/grib2/tables/18/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/5.7.table b/eccodes/definitions/grib2/tables/18/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/18/6.0.table b/eccodes/definitions/grib2/tables/18/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/18/stepType.table b/eccodes/definitions/grib2/tables/18/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/18/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/19/0.0.table b/eccodes/definitions/grib2/tables/19/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/1.0.table b/eccodes/definitions/grib2/tables/19/1.0.table new file mode 100644 index 00000000..bd54828e --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.0.table @@ -0,0 +1,24 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Pre-operational to be implemented by next amendment +# 21-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/19/1.1.table b/eccodes/definitions/grib2/tables/19/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/1.2.table b/eccodes/definitions/grib2/tables/19/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/1.3.table b/eccodes/definitions/grib2/tables/19/1.3.table new file mode 100644 index 00000000..0c95269d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/1.4.table b/eccodes/definitions/grib2/tables/19/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/19/1.5.table b/eccodes/definitions/grib2/tables/19/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/1.6.table b/eccodes/definitions/grib2/tables/19/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.0.table b/eccodes/definitions/grib2/tables/19/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/19/3.1.table b/eccodes/definitions/grib2/tables/19/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.10.table b/eccodes/definitions/grib2/tables/19/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/19/3.11.table b/eccodes/definitions/grib2/tables/19/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.15.table b/eccodes/definitions/grib2/tables/19/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.2.table b/eccodes/definitions/grib2/tables/19/3.2.table new file mode 100644 index 00000000..1b5c8241 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.20.table b/eccodes/definitions/grib2/tables/19/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.21.table b/eccodes/definitions/grib2/tables/19/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.3.table b/eccodes/definitions/grib2/tables/19/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/19/3.4.table b/eccodes/definitions/grib2/tables/19/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/19/3.5.table b/eccodes/definitions/grib2/tables/19/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/19/3.6.table b/eccodes/definitions/grib2/tables/19/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/19/3.7.table b/eccodes/definitions/grib2/tables/19/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.8.table b/eccodes/definitions/grib2/tables/19/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/3.9.table b/eccodes/definitions/grib2/tables/19/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/19/4.0.table b/eccodes/definitions/grib2/tables/19/4.0.table new file mode 100644 index 00000000..906bf12d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.0.table @@ -0,0 +1,75 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.1.0.table b/eccodes/definitions/grib2/tables/19/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.1.1.table b/eccodes/definitions/grib2/tables/19/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.1.10.table b/eccodes/definitions/grib2/tables/19/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.1.192.table b/eccodes/definitions/grib2/tables/19/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/19/4.1.2.table b/eccodes/definitions/grib2/tables/19/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.1.3.table b/eccodes/definitions/grib2/tables/19/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.10.table b/eccodes/definitions/grib2/tables/19/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/19/4.11.table b/eccodes/definitions/grib2/tables/19/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.12.table b/eccodes/definitions/grib2/tables/19/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.13.table b/eccodes/definitions/grib2/tables/19/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.14.table b/eccodes/definitions/grib2/tables/19/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.15.table b/eccodes/definitions/grib2/tables/19/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.192.table b/eccodes/definitions/grib2/tables/19/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.0.table b/eccodes/definitions/grib2/tables/19/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.1.table b/eccodes/definitions/grib2/tables/19/4.2.0.1.table new file mode 100644 index 00000000..c38d6a05 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.1.table @@ -0,0 +1,123 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +# 121-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.13.table b/eccodes/definitions/grib2/tables/19/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.14.table b/eccodes/definitions/grib2/tables/19/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.15.table b/eccodes/definitions/grib2/tables/19/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.16.table b/eccodes/definitions/grib2/tables/19/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.17.table b/eccodes/definitions/grib2/tables/19/4.2.0.17.table new file mode 100644 index 00000000..a6799631 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.17.table @@ -0,0 +1,3 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.18.table b/eccodes/definitions/grib2/tables/19/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.19.table b/eccodes/definitions/grib2/tables/19/4.2.0.19.table new file mode 100644 index 00000000..1d7b4da9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.19.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.190.table b/eccodes/definitions/grib2/tables/19/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.191.table b/eccodes/definitions/grib2/tables/19/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.2.table b/eccodes/definitions/grib2/tables/19/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.20.table b/eccodes/definitions/grib2/tables/19/4.2.0.20.table new file mode 100644 index 00000000..3278506d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.20.table @@ -0,0 +1,47 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +# 64-99 Reserved +100 100 Surface area density (aerosol) (m-1) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.3.table b/eccodes/definitions/grib2/tables/19/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.4.table b/eccodes/definitions/grib2/tables/19/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.5.table b/eccodes/definitions/grib2/tables/19/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.6.table b/eccodes/definitions/grib2/tables/19/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.7.table b/eccodes/definitions/grib2/tables/19/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.0.table b/eccodes/definitions/grib2/tables/19/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.1.table b/eccodes/definitions/grib2/tables/19/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.2.table b/eccodes/definitions/grib2/tables/19/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.0.table b/eccodes/definitions/grib2/tables/19/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.1.table b/eccodes/definitions/grib2/tables/19/4.2.10.1.table new file mode 100644 index 00000000..5959bfa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.191.table b/eccodes/definitions/grib2/tables/19/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.2.table b/eccodes/definitions/grib2/tables/19/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.3.table b/eccodes/definitions/grib2/tables/19/4.2.10.3.table new file mode 100644 index 00000000..de7afd61 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.4.table b/eccodes/definitions/grib2/tables/19/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.0.table b/eccodes/definitions/grib2/tables/19/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.3.table b/eccodes/definitions/grib2/tables/19/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.4.table b/eccodes/definitions/grib2/tables/19/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.5.table b/eccodes/definitions/grib2/tables/19/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.0.table b/eccodes/definitions/grib2/tables/19/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.1.table b/eccodes/definitions/grib2/tables/19/4.2.3.1.table new file mode 100644 index 00000000..8e0793fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (Numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (Numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.2.table b/eccodes/definitions/grib2/tables/19/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.3.table b/eccodes/definitions/grib2/tables/19/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.4.table b/eccodes/definitions/grib2/tables/19/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.5.table b/eccodes/definitions/grib2/tables/19/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.6.table b/eccodes/definitions/grib2/tables/19/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/19/4.201.table b/eccodes/definitions/grib2/tables/19/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.202.table b/eccodes/definitions/grib2/tables/19/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.203.table b/eccodes/definitions/grib2/tables/19/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.204.table b/eccodes/definitions/grib2/tables/19/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.205.table b/eccodes/definitions/grib2/tables/19/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.206.table b/eccodes/definitions/grib2/tables/19/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.207.table b/eccodes/definitions/grib2/tables/19/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.208.table b/eccodes/definitions/grib2/tables/19/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.209.table b/eccodes/definitions/grib2/tables/19/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.210.table b/eccodes/definitions/grib2/tables/19/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.211.table b/eccodes/definitions/grib2/tables/19/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.212.table b/eccodes/definitions/grib2/tables/19/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.213.table b/eccodes/definitions/grib2/tables/19/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.215.table b/eccodes/definitions/grib2/tables/19/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.216.table b/eccodes/definitions/grib2/tables/19/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.217.table b/eccodes/definitions/grib2/tables/19/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.218.table b/eccodes/definitions/grib2/tables/19/4.218.table new file mode 100644 index 00000000..7e3a6957 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.219.table b/eccodes/definitions/grib2/tables/19/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.220.table b/eccodes/definitions/grib2/tables/19/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.221.table b/eccodes/definitions/grib2/tables/19/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.222.table b/eccodes/definitions/grib2/tables/19/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.223.table b/eccodes/definitions/grib2/tables/19/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.224.table b/eccodes/definitions/grib2/tables/19/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.225.table b/eccodes/definitions/grib2/tables/19/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/19/4.227.table b/eccodes/definitions/grib2/tables/19/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/19/4.230.table b/eccodes/definitions/grib2/tables/19/4.230.table new file mode 100644 index 00000000..d2e91fad --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.230.table @@ -0,0 +1,437 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +62300 62300 Poaceae (Grass family) pollen +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.233.table b/eccodes/definitions/grib2/tables/19/4.233.table new file mode 100644 index 00000000..d63f673b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.234.table b/eccodes/definitions/grib2/tables/19/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/19/4.236.table b/eccodes/definitions/grib2/tables/19/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/19/4.240.table b/eccodes/definitions/grib2/tables/19/4.240.table new file mode 100644 index 00000000..35e36321 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type no. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/19/4.241.table b/eccodes/definitions/grib2/tables/19/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/19/4.242.table b/eccodes/definitions/grib2/tables/19/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/19/4.243.table b/eccodes/definitions/grib2/tables/19/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/19/4.3.table b/eccodes/definitions/grib2/tables/19/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.4.table b/eccodes/definitions/grib2/tables/19/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.5.table b/eccodes/definitions/grib2/tables/19/4.5.table new file mode 100644 index 00000000..c14343e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.6.table b/eccodes/definitions/grib2/tables/19/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.7.table b/eccodes/definitions/grib2/tables/19/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.8.table b/eccodes/definitions/grib2/tables/19/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.9.table b/eccodes/definitions/grib2/tables/19/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/4.91.table b/eccodes/definitions/grib2/tables/19/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/19/5.0.table b/eccodes/definitions/grib2/tables/19/5.0.table new file mode 100644 index 00000000..1d4c5e5d --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.0.table @@ -0,0 +1,25 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.1.table b/eccodes/definitions/grib2/tables/19/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.2.table b/eccodes/definitions/grib2/tables/19/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.3.table b/eccodes/definitions/grib2/tables/19/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.4.table b/eccodes/definitions/grib2/tables/19/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.40.table b/eccodes/definitions/grib2/tables/19/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.40000.table b/eccodes/definitions/grib2/tables/19/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.5.table b/eccodes/definitions/grib2/tables/19/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.50002.table b/eccodes/definitions/grib2/tables/19/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/19/5.6.table b/eccodes/definitions/grib2/tables/19/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/5.7.table b/eccodes/definitions/grib2/tables/19/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/19/6.0.table b/eccodes/definitions/grib2/tables/19/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/19/stepType.table b/eccodes/definitions/grib2/tables/19/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/19/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/2/0.0.table b/eccodes/definitions/grib2/tables/2/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/1.0.table b/eccodes/definitions/grib2/tables/2/1.0.table new file mode 100644 index 00000000..a34f44ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/1.0.table @@ -0,0 +1,7 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +# 4-254 Future operational version numbers +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/2/1.1.table b/eccodes/definitions/grib2/tables/2/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/1.2.table b/eccodes/definitions/grib2/tables/2/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/1.3.table b/eccodes/definitions/grib2/tables/2/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/1.4.table b/eccodes/definitions/grib2/tables/2/1.4.table new file mode 100644 index 00000000..ac21f5c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.0.table b/eccodes/definitions/grib2/tables/2/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/2/3.1.table b/eccodes/definitions/grib2/tables/2/3.1.table new file mode 100644 index 00000000..235fb8bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic can be south or north +# 21-29 Reserved +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.10.table b/eccodes/definitions/grib2/tables/2/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/2/3.11.table b/eccodes/definitions/grib2/tables/2/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.15.table b/eccodes/definitions/grib2/tables/2/3.15.table new file mode 100644 index 00000000..d4f7e0ed --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.15.table @@ -0,0 +1,17 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +20 20 Temperature K +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +160 160 Depth below sea level m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.2.table b/eccodes/definitions/grib2/tables/2/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.20.table b/eccodes/definitions/grib2/tables/2/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.21.table b/eccodes/definitions/grib2/tables/2/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.3.table b/eccodes/definitions/grib2/tables/2/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/2/3.4.table b/eccodes/definitions/grib2/tables/2/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/2/3.5.table b/eccodes/definitions/grib2/tables/2/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/2/3.6.table b/eccodes/definitions/grib2/tables/2/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/2/3.7.table b/eccodes/definitions/grib2/tables/2/3.7.table new file mode 100644 index 00000000..fa8fe356 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.7.table @@ -0,0 +1,4 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/3.8.table b/eccodes/definitions/grib2/tables/2/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/3.9.table b/eccodes/definitions/grib2/tables/2/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/2/4.0.table b/eccodes/definitions/grib2/tables/2/4.0.table new file mode 100644 index 00000000..759512a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.0.table @@ -0,0 +1,38 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.1.0.table b/eccodes/definitions/grib2/tables/2/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.1.1.table b/eccodes/definitions/grib2/tables/2/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.1.10.table b/eccodes/definitions/grib2/tables/2/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.1.2.table b/eccodes/definitions/grib2/tables/2/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.1.3.table b/eccodes/definitions/grib2/tables/2/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.1.table b/eccodes/definitions/grib2/tables/2/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.10.table b/eccodes/definitions/grib2/tables/2/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/2/4.11.table b/eccodes/definitions/grib2/tables/2/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.12.table b/eccodes/definitions/grib2/tables/2/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.13.table b/eccodes/definitions/grib2/tables/2/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.14.table b/eccodes/definitions/grib2/tables/2/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.15.table b/eccodes/definitions/grib2/tables/2/4.15.table new file mode 100644 index 00000000..49b0b2d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.15.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.15, Type of auxiliary information + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.151.table b/eccodes/definitions/grib2/tables/2/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.0.table b/eccodes/definitions/grib2/tables/2/4.2.0.0.table new file mode 100644 index 00000000..0386b8cd --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.0.table @@ -0,0 +1,23 @@ +# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +#17-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.1.table b/eccodes/definitions/grib2/tables/2/4.2.0.1.table new file mode 100644 index 00000000..154f2d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.1.table @@ -0,0 +1,62 @@ +# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +#47-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.13.table b/eccodes/definitions/grib2/tables/2/4.2.0.13.table new file mode 100644 index 00000000..8fc3425a --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.13.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.14.table b/eccodes/definitions/grib2/tables/2/4.2.0.14.table new file mode 100644 index 00000000..309c40d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.14.table @@ -0,0 +1,7 @@ +# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.15.table b/eccodes/definitions/grib2/tables/2/4.2.0.15.table new file mode 100644 index 00000000..bb419178 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.15.table @@ -0,0 +1,14 @@ +# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.18.table b/eccodes/definitions/grib2/tables/2/4.2.0.18.table new file mode 100644 index 00000000..5c0fd6e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.18.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.19.table b/eccodes/definitions/grib2/tables/2/4.2.0.19.table new file mode 100644 index 00000000..369c3f65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.19.table @@ -0,0 +1,24 @@ +# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +# 19-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.190.table b/eccodes/definitions/grib2/tables/2/4.2.0.190.table new file mode 100644 index 00000000..b1f47bc0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.190.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string +0 0 Arbitrary text string (CCITTIA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.191.table b/eccodes/definitions/grib2/tables/2/4.2.0.191.table new file mode 100644 index 00000000..affb98f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.191.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.2.table b/eccodes/definitions/grib2/tables/2/4.2.0.2.table new file mode 100644 index 00000000..1ec94510 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.2.table @@ -0,0 +1,35 @@ +# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.20.table b/eccodes/definitions/grib2/tables/2/4.2.0.20.table new file mode 100644 index 00000000..4e7f45db --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.20.table @@ -0,0 +1,13 @@ +0 0 Mass density (concentration) kg.m-3 +1 1 Total column (integrated mass density) kg.m-2 +2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 +3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 +4 4 Surface dry deposition mass flux kg.m-2.s-1 +5 5 Surface wet deposition mass flux kg.m-2.s-1 +6 6 Atmosphere emission mass flux kg.m-2.s-1 +7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 +8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 +9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 +#10-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.3.table b/eccodes/definitions/grib2/tables/2/4.2.0.3.table new file mode 100644 index 00000000..5c7e8151 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.3.table @@ -0,0 +1,25 @@ +# Product Discipline 0: Meteorological products, Parameter Category 3: Mass + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) +# 20-191 Reserved +# 192-254 Reserved for local use + 255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.4.table b/eccodes/definitions/grib2/tables/2/4.2.0.4.table new file mode 100644 index 00000000..815c184a --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.4.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.5.table b/eccodes/definitions/grib2/tables/2/4.2.0.5.table new file mode 100644 index 00000000..1b57fa30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.5.table @@ -0,0 +1,11 @@ +# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.6.table b/eccodes/definitions/grib2/tables/2/4.2.0.6.table new file mode 100644 index 00000000..05cf72f5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.6.table @@ -0,0 +1,30 @@ +# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.7.table b/eccodes/definitions/grib2/tables/2/4.2.0.7.table new file mode 100644 index 00000000..78374fde --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.0.7.table @@ -0,0 +1,18 @@ +# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +#13-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.1.0.table b/eccodes/definitions/grib2/tables/2/4.2.1.0.table new file mode 100644 index 00000000..828c869d --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.1.0.table @@ -0,0 +1,9 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.1.1.table b/eccodes/definitions/grib2/tables/2/4.2.1.1.table new file mode 100644 index 00000000..b7342ef2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.1.1.table @@ -0,0 +1,8 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.0.table b/eccodes/definitions/grib2/tables/2/4.2.10.0.table new file mode 100644 index 00000000..479e26d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.10.0.table @@ -0,0 +1,20 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.1.table b/eccodes/definitions/grib2/tables/2/4.2.10.1.table new file mode 100644 index 00000000..df18f31d --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.10.1.table @@ -0,0 +1,8 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.2.table b/eccodes/definitions/grib2/tables/2/4.2.10.2.table new file mode 100644 index 00000000..cb73da46 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.10.2.table @@ -0,0 +1,12 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +# 8-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.3.table b/eccodes/definitions/grib2/tables/2/4.2.10.3.table new file mode 100644 index 00000000..a14ae22e --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.10.3.table @@ -0,0 +1,6 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.4.table b/eccodes/definitions/grib2/tables/2/4.2.10.4.table new file mode 100644 index 00000000..a24c3c8c --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.10.4.table @@ -0,0 +1,9 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.2.0.table b/eccodes/definitions/grib2/tables/2/4.2.2.0.table new file mode 100644 index 00000000..fdc8ce0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.2.0.table @@ -0,0 +1,29 @@ +# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +# 23-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.2.3.table b/eccodes/definitions/grib2/tables/2/4.2.2.3.table new file mode 100644 index 00000000..d6376fec --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.2.3.table @@ -0,0 +1,16 @@ +# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +# 11-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.3.0.table b/eccodes/definitions/grib2/tables/2/4.2.3.0.table new file mode 100644 index 00000000..94456638 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.3.0.table @@ -0,0 +1,14 @@ +# Product discipline 3: Space products, Parameter Category 0: Image format products +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.2.3.1.table b/eccodes/definitions/grib2/tables/2/4.2.3.1.table new file mode 100644 index 00000000..60d6e842 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.2.3.1.table @@ -0,0 +1,11 @@ +# Product Discipline 3: Space products, Parameter Category 1: Quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +# 6-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/2/4.201.table b/eccodes/definitions/grib2/tables/2/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.202.table b/eccodes/definitions/grib2/tables/2/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.203.table b/eccodes/definitions/grib2/tables/2/4.203.table new file mode 100644 index 00000000..057f4091 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.203.table @@ -0,0 +1,25 @@ +# CODE TABLE 4.203, Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.204.table b/eccodes/definitions/grib2/tables/2/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.205.table b/eccodes/definitions/grib2/tables/2/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.206.table b/eccodes/definitions/grib2/tables/2/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.207.table b/eccodes/definitions/grib2/tables/2/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.208.table b/eccodes/definitions/grib2/tables/2/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.209.table b/eccodes/definitions/grib2/tables/2/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.210.table b/eccodes/definitions/grib2/tables/2/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.211.table b/eccodes/definitions/grib2/tables/2/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.212.table b/eccodes/definitions/grib2/tables/2/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.213.table b/eccodes/definitions/grib2/tables/2/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.215.table b/eccodes/definitions/grib2/tables/2/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.216.table b/eccodes/definitions/grib2/tables/2/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.217.table b/eccodes/definitions/grib2/tables/2/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.220.table b/eccodes/definitions/grib2/tables/2/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.221.table b/eccodes/definitions/grib2/tables/2/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.230.table b/eccodes/definitions/grib2/tables/2/4.230.table new file mode 100644 index 00000000..23e819b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.230.table @@ -0,0 +1,47 @@ +#Code figure Code figure Meaning +0 0 Air +1 1 Ozone +2 2 Water vapour +3 3 Methane +4 4 Carbon dioxide +5 5 Carbon monoxide +6 6 Nitrogen dioxide +7 7 Nitrous oxide +8 8 Nitrogen monoxide +9 9 Formaldehyde +10 10 Sulphur dioxide +11 11 Nitric acid +12 12 All nitrogen oxides (NOy) expressed as nitrogen +13 13 Peroxyacetyl nitrate +14 14 Hydroxyl radical +15 15 Ammonia +16 16 Ammonium +17 17 Radon +18 18 Dimethyl sulphide +19 19 Hexachlorocyclohexane +20 20 Alpha hexachlorocyclohexane +21 21 Elemental mercury +22 22 Divalent mercury +23 23 Hexachlorobiphenyl +24 24 NOx expressed as nitrogen +25 25 Non-methane volatile organic compounds expressed as carbon +26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon +27 27 Biogenic non-methane volatile organic compounds expressed as carbon +#28-39999 28-39999 Reserved +40000 40000 Sulphate dry aerosol +40001 40001 Black carbon dry aerosol +40002 40002 Particulate organic matter dry aerosol +40003 40003 Primary particulate organic matter dry aerosol +40004 40004 Secondary particulate organic matter dry aerosol +40005 40005 Sea salt dry aerosol +40006 40006 Dust dry aerosol +40007 40007 Mercury dry aerosol +40008 40008 PM10 aerosol +40009 40009 PM2P5 aerosol +40010 40010 PM1 aerosol +40011 40011 Nitrate dry aerosol +40012 40012 Ammonium dry aerosol +40013 40013 Water in ambient aerosol +#40014-63999 40014-63999 Reserved +#64000-65534 64000-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.3.table b/eccodes/definitions/grib2/tables/2/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.4.table b/eccodes/definitions/grib2/tables/2/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.5.table b/eccodes/definitions/grib2/tables/2/4.5.table new file mode 100644 index 00000000..89c5fb17 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.5.table @@ -0,0 +1,33 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.6.table b/eccodes/definitions/grib2/tables/2/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.7.table b/eccodes/definitions/grib2/tables/2/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.8.table b/eccodes/definitions/grib2/tables/2/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.9.table b/eccodes/definitions/grib2/tables/2/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/4.91.table b/eccodes/definitions/grib2/tables/2/4.91.table new file mode 100644 index 00000000..122779d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/2/5.0.table b/eccodes/definitions/grib2/tables/2/5.0.table new file mode 100644 index 00000000..0cf3752c --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.0.table @@ -0,0 +1,16 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib2/tables/2/5.1.table b/eccodes/definitions/grib2/tables/2/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.2.table b/eccodes/definitions/grib2/tables/2/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.3.table b/eccodes/definitions/grib2/tables/2/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.4.table b/eccodes/definitions/grib2/tables/2/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.40.table b/eccodes/definitions/grib2/tables/2/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.40000.table b/eccodes/definitions/grib2/tables/2/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.5.table b/eccodes/definitions/grib2/tables/2/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.6.table b/eccodes/definitions/grib2/tables/2/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.7.table b/eccodes/definitions/grib2/tables/2/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.8.table b/eccodes/definitions/grib2/tables/2/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/5.9.table b/eccodes/definitions/grib2/tables/2/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/2/6.0.table b/eccodes/definitions/grib2/tables/2/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/2/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/20/0.0.table b/eccodes/definitions/grib2/tables/20/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/1.0.table b/eccodes/definitions/grib2/tables/20/1.0.table new file mode 100644 index 00000000..9d3669bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.0.table @@ -0,0 +1,25 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Pre-operational to be implemented by next amendment +# 22-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/20/1.1.table b/eccodes/definitions/grib2/tables/20/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/1.2.table b/eccodes/definitions/grib2/tables/20/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/1.3.table b/eccodes/definitions/grib2/tables/20/1.3.table new file mode 100644 index 00000000..0c95269d --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/1.4.table b/eccodes/definitions/grib2/tables/20/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/20/1.5.table b/eccodes/definitions/grib2/tables/20/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/1.6.table b/eccodes/definitions/grib2/tables/20/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.0.table b/eccodes/definitions/grib2/tables/20/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/20/3.1.table b/eccodes/definitions/grib2/tables/20/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.10.table b/eccodes/definitions/grib2/tables/20/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/20/3.11.table b/eccodes/definitions/grib2/tables/20/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.15.table b/eccodes/definitions/grib2/tables/20/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.2.table b/eccodes/definitions/grib2/tables/20/3.2.table new file mode 100644 index 00000000..1b5c8241 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.20.table b/eccodes/definitions/grib2/tables/20/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.21.table b/eccodes/definitions/grib2/tables/20/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.3.table b/eccodes/definitions/grib2/tables/20/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/20/3.4.table b/eccodes/definitions/grib2/tables/20/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/20/3.5.table b/eccodes/definitions/grib2/tables/20/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/20/3.6.table b/eccodes/definitions/grib2/tables/20/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/20/3.7.table b/eccodes/definitions/grib2/tables/20/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.8.table b/eccodes/definitions/grib2/tables/20/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/3.9.table b/eccodes/definitions/grib2/tables/20/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/20/4.0.table b/eccodes/definitions/grib2/tables/20/4.0.table new file mode 100644 index 00000000..b45e7338 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.0.table @@ -0,0 +1,75 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +# 35-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.1.0.table b/eccodes/definitions/grib2/tables/20/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.1.1.table b/eccodes/definitions/grib2/tables/20/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.1.10.table b/eccodes/definitions/grib2/tables/20/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.1.192.table b/eccodes/definitions/grib2/tables/20/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/20/4.1.2.table b/eccodes/definitions/grib2/tables/20/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.1.3.table b/eccodes/definitions/grib2/tables/20/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.10.table b/eccodes/definitions/grib2/tables/20/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/20/4.11.table b/eccodes/definitions/grib2/tables/20/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.12.table b/eccodes/definitions/grib2/tables/20/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.13.table b/eccodes/definitions/grib2/tables/20/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.14.table b/eccodes/definitions/grib2/tables/20/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.15.table b/eccodes/definitions/grib2/tables/20/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.192.table b/eccodes/definitions/grib2/tables/20/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.0.table b/eccodes/definitions/grib2/tables/20/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.1.table b/eccodes/definitions/grib2/tables/20/4.2.0.1.table new file mode 100644 index 00000000..541deaca --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.1.table @@ -0,0 +1,126 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.13.table b/eccodes/definitions/grib2/tables/20/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.14.table b/eccodes/definitions/grib2/tables/20/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.15.table b/eccodes/definitions/grib2/tables/20/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.16.table b/eccodes/definitions/grib2/tables/20/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.17.table b/eccodes/definitions/grib2/tables/20/4.2.0.17.table new file mode 100644 index 00000000..a6799631 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.17.table @@ -0,0 +1,3 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.18.table b/eccodes/definitions/grib2/tables/20/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.19.table b/eccodes/definitions/grib2/tables/20/4.2.0.19.table new file mode 100644 index 00000000..d28010f2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.19.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.190.table b/eccodes/definitions/grib2/tables/20/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.191.table b/eccodes/definitions/grib2/tables/20/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.2.table b/eccodes/definitions/grib2/tables/20/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.20.table b/eccodes/definitions/grib2/tables/20/4.2.0.20.table new file mode 100644 index 00000000..efc427a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.20.table @@ -0,0 +1,47 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +# 64-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.3.table b/eccodes/definitions/grib2/tables/20/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.4.table b/eccodes/definitions/grib2/tables/20/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.5.table b/eccodes/definitions/grib2/tables/20/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.6.table b/eccodes/definitions/grib2/tables/20/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.7.table b/eccodes/definitions/grib2/tables/20/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.0.table b/eccodes/definitions/grib2/tables/20/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.1.table b/eccodes/definitions/grib2/tables/20/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.2.table b/eccodes/definitions/grib2/tables/20/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.0.table b/eccodes/definitions/grib2/tables/20/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.1.table b/eccodes/definitions/grib2/tables/20/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.191.table b/eccodes/definitions/grib2/tables/20/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.2.table b/eccodes/definitions/grib2/tables/20/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.3.table b/eccodes/definitions/grib2/tables/20/4.2.10.3.table new file mode 100644 index 00000000..de7afd61 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.4.table b/eccodes/definitions/grib2/tables/20/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.0.table b/eccodes/definitions/grib2/tables/20/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.3.table b/eccodes/definitions/grib2/tables/20/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.4.table b/eccodes/definitions/grib2/tables/20/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.5.table b/eccodes/definitions/grib2/tables/20/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.0.table b/eccodes/definitions/grib2/tables/20/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.1.table b/eccodes/definitions/grib2/tables/20/4.2.3.1.table new file mode 100644 index 00000000..8e0793fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (Numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (Numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.2.table b/eccodes/definitions/grib2/tables/20/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.3.table b/eccodes/definitions/grib2/tables/20/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.4.table b/eccodes/definitions/grib2/tables/20/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.5.table b/eccodes/definitions/grib2/tables/20/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.6.table b/eccodes/definitions/grib2/tables/20/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/20/4.201.table b/eccodes/definitions/grib2/tables/20/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.202.table b/eccodes/definitions/grib2/tables/20/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.203.table b/eccodes/definitions/grib2/tables/20/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.204.table b/eccodes/definitions/grib2/tables/20/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.205.table b/eccodes/definitions/grib2/tables/20/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.206.table b/eccodes/definitions/grib2/tables/20/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.207.table b/eccodes/definitions/grib2/tables/20/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.208.table b/eccodes/definitions/grib2/tables/20/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.209.table b/eccodes/definitions/grib2/tables/20/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.210.table b/eccodes/definitions/grib2/tables/20/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.211.table b/eccodes/definitions/grib2/tables/20/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.212.table b/eccodes/definitions/grib2/tables/20/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.213.table b/eccodes/definitions/grib2/tables/20/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.215.table b/eccodes/definitions/grib2/tables/20/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.216.table b/eccodes/definitions/grib2/tables/20/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.217.table b/eccodes/definitions/grib2/tables/20/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.218.table b/eccodes/definitions/grib2/tables/20/4.218.table new file mode 100644 index 00000000..7e3a6957 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.219.table b/eccodes/definitions/grib2/tables/20/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.220.table b/eccodes/definitions/grib2/tables/20/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.221.table b/eccodes/definitions/grib2/tables/20/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.222.table b/eccodes/definitions/grib2/tables/20/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.223.table b/eccodes/definitions/grib2/tables/20/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.224.table b/eccodes/definitions/grib2/tables/20/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.225.table b/eccodes/definitions/grib2/tables/20/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/20/4.227.table b/eccodes/definitions/grib2/tables/20/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/20/4.230.table b/eccodes/definitions/grib2/tables/20/4.230.table new file mode 100644 index 00000000..272731d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.230.table @@ -0,0 +1,449 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +#39-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +#60018-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027-62099 Reserved +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (Grass family) pollen +# 62301-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.233.table b/eccodes/definitions/grib2/tables/20/4.233.table new file mode 100644 index 00000000..cbbf537b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.233.table @@ -0,0 +1,2 @@ +# Code table 4.233 - Aerosol type +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.234.table b/eccodes/definitions/grib2/tables/20/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/20/4.236.table b/eccodes/definitions/grib2/tables/20/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/20/4.240.table b/eccodes/definitions/grib2/tables/20/4.240.table new file mode 100644 index 00000000..35e36321 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type no. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/20/4.241.table b/eccodes/definitions/grib2/tables/20/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/20/4.242.table b/eccodes/definitions/grib2/tables/20/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/20/4.243.table b/eccodes/definitions/grib2/tables/20/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/20/4.3.table b/eccodes/definitions/grib2/tables/20/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.4.table b/eccodes/definitions/grib2/tables/20/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.5.table b/eccodes/definitions/grib2/tables/20/4.5.table new file mode 100644 index 00000000..c14343e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.6.table b/eccodes/definitions/grib2/tables/20/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.7.table b/eccodes/definitions/grib2/tables/20/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.8.table b/eccodes/definitions/grib2/tables/20/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.9.table b/eccodes/definitions/grib2/tables/20/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/4.91.table b/eccodes/definitions/grib2/tables/20/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/20/5.0.table b/eccodes/definitions/grib2/tables/20/5.0.table new file mode 100644 index 00000000..1d4c5e5d --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.0.table @@ -0,0 +1,25 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.1.table b/eccodes/definitions/grib2/tables/20/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.2.table b/eccodes/definitions/grib2/tables/20/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.3.table b/eccodes/definitions/grib2/tables/20/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.4.table b/eccodes/definitions/grib2/tables/20/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.40.table b/eccodes/definitions/grib2/tables/20/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.40000.table b/eccodes/definitions/grib2/tables/20/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.5.table b/eccodes/definitions/grib2/tables/20/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.50002.table b/eccodes/definitions/grib2/tables/20/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/20/5.6.table b/eccodes/definitions/grib2/tables/20/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/5.7.table b/eccodes/definitions/grib2/tables/20/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/20/6.0.table b/eccodes/definitions/grib2/tables/20/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/20/stepType.table b/eccodes/definitions/grib2/tables/20/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/20/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/21/0.0.table b/eccodes/definitions/grib2/tables/21/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/1.0.table b/eccodes/definitions/grib2/tables/21/1.0.table new file mode 100644 index 00000000..7c1ff3aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.0.table @@ -0,0 +1,26 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Pre-operational to be implemented by next amendment +# 23-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/21/1.1.table b/eccodes/definitions/grib2/tables/21/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/1.2.table b/eccodes/definitions/grib2/tables/21/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/1.3.table b/eccodes/definitions/grib2/tables/21/1.3.table new file mode 100644 index 00000000..0c95269d --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.3.table @@ -0,0 +1,14 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/1.4.table b/eccodes/definitions/grib2/tables/21/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/21/1.5.table b/eccodes/definitions/grib2/tables/21/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/1.6.table b/eccodes/definitions/grib2/tables/21/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.0.table b/eccodes/definitions/grib2/tables/21/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/21/3.1.table b/eccodes/definitions/grib2/tables/21/3.1.table new file mode 100644 index 00000000..aa8d9877 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.1.table @@ -0,0 +1,47 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +12 12 Transverse Mercator +# 13-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.10.table b/eccodes/definitions/grib2/tables/21/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/21/3.11.table b/eccodes/definitions/grib2/tables/21/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.15.table b/eccodes/definitions/grib2/tables/21/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.2.table b/eccodes/definitions/grib2/tables/21/3.2.table new file mode 100644 index 00000000..1b5c8241 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.20.table b/eccodes/definitions/grib2/tables/21/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.21.table b/eccodes/definitions/grib2/tables/21/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.3.table b/eccodes/definitions/grib2/tables/21/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/21/3.4.table b/eccodes/definitions/grib2/tables/21/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/21/3.5.table b/eccodes/definitions/grib2/tables/21/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/21/3.6.table b/eccodes/definitions/grib2/tables/21/3.6.table new file mode 100644 index 00000000..d381959d --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.6.table @@ -0,0 +1,2 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file diff --git a/eccodes/definitions/grib2/tables/21/3.7.table b/eccodes/definitions/grib2/tables/21/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.8.table b/eccodes/definitions/grib2/tables/21/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/3.9.table b/eccodes/definitions/grib2/tables/21/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/21/4.0.table b/eccodes/definitions/grib2/tables/21/4.0.table new file mode 100644 index 00000000..4f288691 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.0.table @@ -0,0 +1,88 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval + +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink +78 78 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink + +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink + +# 74-90 Reserved + +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.1.0.table b/eccodes/definitions/grib2/tables/21/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.1.1.table b/eccodes/definitions/grib2/tables/21/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.1.10.table b/eccodes/definitions/grib2/tables/21/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.1.192.table b/eccodes/definitions/grib2/tables/21/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/21/4.1.2.table b/eccodes/definitions/grib2/tables/21/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.1.3.table b/eccodes/definitions/grib2/tables/21/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.10.table b/eccodes/definitions/grib2/tables/21/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/21/4.11.table b/eccodes/definitions/grib2/tables/21/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.12.table b/eccodes/definitions/grib2/tables/21/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.13.table b/eccodes/definitions/grib2/tables/21/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.14.table b/eccodes/definitions/grib2/tables/21/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.15.table b/eccodes/definitions/grib2/tables/21/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.16.table b/eccodes/definitions/grib2/tables/21/4.16.table new file mode 100644 index 00000000..de025080 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.16.table @@ -0,0 +1,9 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.192.table b/eccodes/definitions/grib2/tables/21/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.0.table b/eccodes/definitions/grib2/tables/21/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.1.table b/eccodes/definitions/grib2/tables/21/4.2.0.1.table new file mode 100644 index 00000000..541deaca --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.1.table @@ -0,0 +1,126 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.13.table b/eccodes/definitions/grib2/tables/21/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.14.table b/eccodes/definitions/grib2/tables/21/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.15.table b/eccodes/definitions/grib2/tables/21/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.16.table b/eccodes/definitions/grib2/tables/21/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.17.table b/eccodes/definitions/grib2/tables/21/4.2.0.17.table new file mode 100644 index 00000000..a6799631 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.17.table @@ -0,0 +1,3 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.18.table b/eccodes/definitions/grib2/tables/21/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.19.table b/eccodes/definitions/grib2/tables/21/4.2.0.19.table new file mode 100644 index 00000000..d28010f2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.19.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.190.table b/eccodes/definitions/grib2/tables/21/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.191.table b/eccodes/definitions/grib2/tables/21/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.2.table b/eccodes/definitions/grib2/tables/21/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.20.table b/eccodes/definitions/grib2/tables/21/4.2.0.20.table new file mode 100644 index 00000000..efc427a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.20.table @@ -0,0 +1,47 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +# 64-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.3.table b/eccodes/definitions/grib2/tables/21/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.4.table b/eccodes/definitions/grib2/tables/21/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.5.table b/eccodes/definitions/grib2/tables/21/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.6.table b/eccodes/definitions/grib2/tables/21/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.7.table b/eccodes/definitions/grib2/tables/21/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.0.table b/eccodes/definitions/grib2/tables/21/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.1.table b/eccodes/definitions/grib2/tables/21/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.2.table b/eccodes/definitions/grib2/tables/21/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.0.table b/eccodes/definitions/grib2/tables/21/4.2.10.0.table new file mode 100644 index 00000000..095f51bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.0.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.1.table b/eccodes/definitions/grib2/tables/21/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.191.table b/eccodes/definitions/grib2/tables/21/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.2.table b/eccodes/definitions/grib2/tables/21/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.3.table b/eccodes/definitions/grib2/tables/21/4.2.10.3.table new file mode 100644 index 00000000..de7afd61 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.4.table b/eccodes/definitions/grib2/tables/21/4.2.10.4.table new file mode 100644 index 00000000..54774f1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.10.4.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.0.table b/eccodes/definitions/grib2/tables/21/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.3.table b/eccodes/definitions/grib2/tables/21/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.4.table b/eccodes/definitions/grib2/tables/21/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.5.table b/eccodes/definitions/grib2/tables/21/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.0.table b/eccodes/definitions/grib2/tables/21/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.1.table b/eccodes/definitions/grib2/tables/21/4.2.3.1.table new file mode 100644 index 00000000..9fdeb038 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.1.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.2.table b/eccodes/definitions/grib2/tables/21/4.2.3.2.table new file mode 100644 index 00000000..191f352e --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.2.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.3.table b/eccodes/definitions/grib2/tables/21/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.4.table b/eccodes/definitions/grib2/tables/21/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.5.table b/eccodes/definitions/grib2/tables/21/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.6.table b/eccodes/definitions/grib2/tables/21/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/21/4.201.table b/eccodes/definitions/grib2/tables/21/4.201.table new file mode 100644 index 00000000..47f1b486 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.201.table @@ -0,0 +1,15 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.202.table b/eccodes/definitions/grib2/tables/21/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.203.table b/eccodes/definitions/grib2/tables/21/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.204.table b/eccodes/definitions/grib2/tables/21/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.205.table b/eccodes/definitions/grib2/tables/21/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.206.table b/eccodes/definitions/grib2/tables/21/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.207.table b/eccodes/definitions/grib2/tables/21/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.208.table b/eccodes/definitions/grib2/tables/21/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.209.table b/eccodes/definitions/grib2/tables/21/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.210.table b/eccodes/definitions/grib2/tables/21/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.211.table b/eccodes/definitions/grib2/tables/21/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.212.table b/eccodes/definitions/grib2/tables/21/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.213.table b/eccodes/definitions/grib2/tables/21/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.215.table b/eccodes/definitions/grib2/tables/21/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.216.table b/eccodes/definitions/grib2/tables/21/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.217.table b/eccodes/definitions/grib2/tables/21/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.218.table b/eccodes/definitions/grib2/tables/21/4.218.table new file mode 100644 index 00000000..7e3a6957 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.218.table @@ -0,0 +1,44 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/Stratus +102 102 Low cloud/Stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/Nimbostratus +105 105 Medium cloud/Altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/Cumulus +108 108 High cloud/Cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.219.table b/eccodes/definitions/grib2/tables/21/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.220.table b/eccodes/definitions/grib2/tables/21/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.221.table b/eccodes/definitions/grib2/tables/21/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.222.table b/eccodes/definitions/grib2/tables/21/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.223.table b/eccodes/definitions/grib2/tables/21/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.224.table b/eccodes/definitions/grib2/tables/21/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.225.table b/eccodes/definitions/grib2/tables/21/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/21/4.227.table b/eccodes/definitions/grib2/tables/21/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/21/4.230.table b/eccodes/definitions/grib2/tables/21/4.230.table new file mode 100644 index 00000000..dfc1ffc3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.230.table @@ -0,0 +1,449 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4 +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +#39-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +#60018-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027-62099 Reserved +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (Grass family) pollen +# 62301-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.233.table b/eccodes/definitions/grib2/tables/21/4.233.table new file mode 100644 index 00000000..1d3021ef --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.233.table @@ -0,0 +1,449 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +#39-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +#60018-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027-62099 Reserved +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (Grass family) pollen +# 62301-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.234.table b/eccodes/definitions/grib2/tables/21/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/21/4.236.table b/eccodes/definitions/grib2/tables/21/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/21/4.238.table b/eccodes/definitions/grib2/tables/21/4.238.table new file mode 100644 index 00000000..367d6866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.238.table @@ -0,0 +1,16 @@ +# Code table 4.238 - source, sink or chemical/physical process +0 0 Reserved +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +# 12-191 Reserved +# 192-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.240.table b/eccodes/definitions/grib2/tables/21/4.240.table new file mode 100644 index 00000000..bf12cbf5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/21/4.241.table b/eccodes/definitions/grib2/tables/21/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/21/4.242.table b/eccodes/definitions/grib2/tables/21/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/21/4.243.table b/eccodes/definitions/grib2/tables/21/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/21/4.244.table b/eccodes/definitions/grib2/tables/21/4.244.table new file mode 100644 index 00000000..40534ee0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.3.table b/eccodes/definitions/grib2/tables/21/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.4.table b/eccodes/definitions/grib2/tables/21/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.5.table b/eccodes/definitions/grib2/tables/21/4.5.table new file mode 100644 index 00000000..c14343e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.6.table b/eccodes/definitions/grib2/tables/21/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.7.table b/eccodes/definitions/grib2/tables/21/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.8.table b/eccodes/definitions/grib2/tables/21/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.9.table b/eccodes/definitions/grib2/tables/21/4.9.table new file mode 100644 index 00000000..5878b5ad --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.9.table @@ -0,0 +1,9 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/4.91.table b/eccodes/definitions/grib2/tables/21/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/21/5.0.table b/eccodes/definitions/grib2/tables/21/5.0.table new file mode 100644 index 00000000..1d4c5e5d --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.0.table @@ -0,0 +1,25 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.1.table b/eccodes/definitions/grib2/tables/21/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.2.table b/eccodes/definitions/grib2/tables/21/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.3.table b/eccodes/definitions/grib2/tables/21/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.4.table b/eccodes/definitions/grib2/tables/21/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.40.table b/eccodes/definitions/grib2/tables/21/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.40000.table b/eccodes/definitions/grib2/tables/21/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.5.table b/eccodes/definitions/grib2/tables/21/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.50002.table b/eccodes/definitions/grib2/tables/21/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/21/5.6.table b/eccodes/definitions/grib2/tables/21/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/5.7.table b/eccodes/definitions/grib2/tables/21/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/21/6.0.table b/eccodes/definitions/grib2/tables/21/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/21/stepType.table b/eccodes/definitions/grib2/tables/21/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/21/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/22/1.4.table b/eccodes/definitions/grib2/tables/22/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/22/3.15.table b/eccodes/definitions/grib2/tables/22/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/22/4.10.table b/eccodes/definitions/grib2/tables/22/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/22/4.230.table b/eccodes/definitions/grib2/tables/22/4.230.table new file mode 100644 index 00000000..dfc1ffc3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/4.230.table @@ -0,0 +1,449 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4 +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +#39-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +60017 60017 NOx expressed as nitrogen dioxide (NO2) +#60018-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027-62099 Reserved +62100 62100 Alnus (Alder) pollen +62101 62101 Betula (Birch) pollen +62102 62102 Castanea (Chestnut) pollen +62103 62103 Carpinus (Hornbeam) pollen +62104 62104 Corylus (Hazel) pollen +62105 62105 Fagus (Beech) pollen +62106 62106 Fraxinus (Ash) pollen +62107 62107 Pinus (Pine) pollen +62108 62108 Platanus (Plane) pollen +62109 62109 Populus (Cottonwood, Poplar) pollen +62110 62110 Quercus (Oak) pollen +62111 62111 Salix (Willow) pollen +62112 62112 Taxus (Yew) pollen +62113 62113 Tilia (Lime, Linden) pollen +62114 62114 Ulmus (Elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen +62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen +62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen +62203 62203 Plantago (Plantain) pollen +62204 62204 Rumex (Dock, Sorrel) pollen +62205 62205 Urtica (Nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (Grass family) pollen +# 62301-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/22/4.4.table b/eccodes/definitions/grib2/tables/22/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/22/4.5.table b/eccodes/definitions/grib2/tables/22/4.5.table new file mode 100644 index 00000000..c14343e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/22/4.91.table b/eccodes/definitions/grib2/tables/22/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/22/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/23/0.0.table b/eccodes/definitions/grib2/tables/23/0.0.table new file mode 100644 index 00000000..b24c5056 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/1.0.table b/eccodes/definitions/grib2/tables/23/1.0.table new file mode 100644 index 00000000..c871ea8f --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.0.table @@ -0,0 +1,27 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +# 24-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/23/1.1.table b/eccodes/definitions/grib2/tables/23/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/1.2.table b/eccodes/definitions/grib2/tables/23/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/1.3.table b/eccodes/definitions/grib2/tables/23/1.3.table new file mode 100644 index 00000000..dd7e6813 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/1.4.table b/eccodes/definitions/grib2/tables/23/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/23/1.5.table b/eccodes/definitions/grib2/tables/23/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/1.6.table b/eccodes/definitions/grib2/tables/23/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.0.table b/eccodes/definitions/grib2/tables/23/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/23/3.1.table b/eccodes/definitions/grib2/tables/23/3.1.table new file mode 100644 index 00000000..ed68c514 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.10.table b/eccodes/definitions/grib2/tables/23/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/23/3.11.table b/eccodes/definitions/grib2/tables/23/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.15.table b/eccodes/definitions/grib2/tables/23/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.2.table b/eccodes/definitions/grib2/tables/23/3.2.table new file mode 100644 index 00000000..1b5c8241 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.20.table b/eccodes/definitions/grib2/tables/23/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.21.table b/eccodes/definitions/grib2/tables/23/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.25.table b/eccodes/definitions/grib2/tables/23/3.25.table new file mode 100644 index 00000000..de1bc74e --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.3.table b/eccodes/definitions/grib2/tables/23/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/23/3.4.table b/eccodes/definitions/grib2/tables/23/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/23/3.5.table b/eccodes/definitions/grib2/tables/23/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/23/3.6.table b/eccodes/definitions/grib2/tables/23/3.6.table new file mode 100644 index 00000000..dc7d107a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/eccodes/definitions/grib2/tables/23/3.7.table b/eccodes/definitions/grib2/tables/23/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.8.table b/eccodes/definitions/grib2/tables/23/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/3.9.table b/eccodes/definitions/grib2/tables/23/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/23/4.0.table b/eccodes/definitions/grib2/tables/23/4.0.table new file mode 100644 index 00000000..72f395b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.0.table @@ -0,0 +1,75 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.1.0.table b/eccodes/definitions/grib2/tables/23/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.1.1.table b/eccodes/definitions/grib2/tables/23/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.1.10.table b/eccodes/definitions/grib2/tables/23/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.1.192.table b/eccodes/definitions/grib2/tables/23/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/23/4.1.2.table b/eccodes/definitions/grib2/tables/23/4.1.2.table new file mode 100644 index 00000000..5b488fe9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.1.3.table b/eccodes/definitions/grib2/tables/23/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.10.table b/eccodes/definitions/grib2/tables/23/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/23/4.11.table b/eccodes/definitions/grib2/tables/23/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.12.table b/eccodes/definitions/grib2/tables/23/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.13.table b/eccodes/definitions/grib2/tables/23/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.14.table b/eccodes/definitions/grib2/tables/23/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.15.table b/eccodes/definitions/grib2/tables/23/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.16.table b/eccodes/definitions/grib2/tables/23/4.16.table new file mode 100644 index 00000000..de025080 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.16.table @@ -0,0 +1,9 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.192.table b/eccodes/definitions/grib2/tables/23/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.0.table b/eccodes/definitions/grib2/tables/23/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.1.table b/eccodes/definitions/grib2/tables/23/4.2.0.1.table new file mode 100644 index 00000000..0c01ce89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.1.table @@ -0,0 +1,126 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.13.table b/eccodes/definitions/grib2/tables/23/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.14.table b/eccodes/definitions/grib2/tables/23/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.15.table b/eccodes/definitions/grib2/tables/23/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.16.table b/eccodes/definitions/grib2/tables/23/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.17.table b/eccodes/definitions/grib2/tables/23/4.2.0.17.table new file mode 100644 index 00000000..ce1867ac --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.18.table b/eccodes/definitions/grib2/tables/23/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.19.table b/eccodes/definitions/grib2/tables/23/4.2.0.19.table new file mode 100644 index 00000000..d28010f2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.19.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.190.table b/eccodes/definitions/grib2/tables/23/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.191.table b/eccodes/definitions/grib2/tables/23/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.2.table b/eccodes/definitions/grib2/tables/23/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.20.table b/eccodes/definitions/grib2/tables/23/4.2.0.20.table new file mode 100644 index 00000000..9e6ac3c0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.20.table @@ -0,0 +1,62 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +# 76-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.3.table b/eccodes/definitions/grib2/tables/23/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.4.table b/eccodes/definitions/grib2/tables/23/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.5.table b/eccodes/definitions/grib2/tables/23/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.6.table b/eccodes/definitions/grib2/tables/23/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.7.table b/eccodes/definitions/grib2/tables/23/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.0.table b/eccodes/definitions/grib2/tables/23/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.1.table b/eccodes/definitions/grib2/tables/23/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.2.table b/eccodes/definitions/grib2/tables/23/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.0.table b/eccodes/definitions/grib2/tables/23/4.2.10.0.table new file mode 100644 index 00000000..6a60ba8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.0.table @@ -0,0 +1,70 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +# 56-191 Reserved +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.1.table b/eccodes/definitions/grib2/tables/23/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.191.table b/eccodes/definitions/grib2/tables/23/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.2.table b/eccodes/definitions/grib2/tables/23/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.3.table b/eccodes/definitions/grib2/tables/23/4.2.10.3.table new file mode 100644 index 00000000..de7afd61 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.4.table b/eccodes/definitions/grib2/tables/23/4.2.10.4.table new file mode 100644 index 00000000..69ba0cc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.0.table b/eccodes/definitions/grib2/tables/23/4.2.2.0.table new file mode 100644 index 00000000..81548840 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.3.table b/eccodes/definitions/grib2/tables/23/4.2.2.3.table new file mode 100644 index 00000000..690fab42 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.4.table b/eccodes/definitions/grib2/tables/23/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.5.table b/eccodes/definitions/grib2/tables/23/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.0.table b/eccodes/definitions/grib2/tables/23/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.1.table b/eccodes/definitions/grib2/tables/23/4.2.3.1.table new file mode 100644 index 00000000..7d4364f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.2.table b/eccodes/definitions/grib2/tables/23/4.2.3.2.table new file mode 100644 index 00000000..6316ab39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.3.table b/eccodes/definitions/grib2/tables/23/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.4.table b/eccodes/definitions/grib2/tables/23/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.5.table b/eccodes/definitions/grib2/tables/23/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.6.table b/eccodes/definitions/grib2/tables/23/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/23/4.201.table b/eccodes/definitions/grib2/tables/23/4.201.table new file mode 100644 index 00000000..44943d5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.202.table b/eccodes/definitions/grib2/tables/23/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.203.table b/eccodes/definitions/grib2/tables/23/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.204.table b/eccodes/definitions/grib2/tables/23/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.205.table b/eccodes/definitions/grib2/tables/23/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.206.table b/eccodes/definitions/grib2/tables/23/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.207.table b/eccodes/definitions/grib2/tables/23/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.208.table b/eccodes/definitions/grib2/tables/23/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.209.table b/eccodes/definitions/grib2/tables/23/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.210.table b/eccodes/definitions/grib2/tables/23/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.211.table b/eccodes/definitions/grib2/tables/23/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.212.table b/eccodes/definitions/grib2/tables/23/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.213.table b/eccodes/definitions/grib2/tables/23/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.215.table b/eccodes/definitions/grib2/tables/23/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.216.table b/eccodes/definitions/grib2/tables/23/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.217.table b/eccodes/definitions/grib2/tables/23/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.218.table b/eccodes/definitions/grib2/tables/23/4.218.table new file mode 100644 index 00000000..fcd06c34 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.219.table b/eccodes/definitions/grib2/tables/23/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.220.table b/eccodes/definitions/grib2/tables/23/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.221.table b/eccodes/definitions/grib2/tables/23/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.222.table b/eccodes/definitions/grib2/tables/23/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.223.table b/eccodes/definitions/grib2/tables/23/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.224.table b/eccodes/definitions/grib2/tables/23/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.225.table b/eccodes/definitions/grib2/tables/23/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/23/4.227.table b/eccodes/definitions/grib2/tables/23/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/23/4.230.table b/eccodes/definitions/grib2/tables/23/4.230.table new file mode 100644 index 00000000..94f24dc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.230.table @@ -0,0 +1,511 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4 +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 3000-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(D) +40003 40003 Triplet ground state oxygen atom O(P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 6230-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.233.table b/eccodes/definitions/grib2/tables/23/4.233.table new file mode 100644 index 00000000..6c30833a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.233.table @@ -0,0 +1,511 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4 +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +#10502-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#3000-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +#30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(D) +40003 40003 Triplet ground state oxygen atom O(P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +#62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +#62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +#62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +#62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +#6230-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.234.table b/eccodes/definitions/grib2/tables/23/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/23/4.236.table b/eccodes/definitions/grib2/tables/23/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/23/4.240.table b/eccodes/definitions/grib2/tables/23/4.240.table new file mode 100644 index 00000000..f48c086e --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/23/4.241.table b/eccodes/definitions/grib2/tables/23/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/23/4.242.table b/eccodes/definitions/grib2/tables/23/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/23/4.243.table b/eccodes/definitions/grib2/tables/23/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/23/4.244.table b/eccodes/definitions/grib2/tables/23/4.244.table new file mode 100644 index 00000000..40534ee0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.3.table b/eccodes/definitions/grib2/tables/23/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.4.table b/eccodes/definitions/grib2/tables/23/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.5.table b/eccodes/definitions/grib2/tables/23/4.5.table new file mode 100644 index 00000000..9bd1b899 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.5.table @@ -0,0 +1,73 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.6.table b/eccodes/definitions/grib2/tables/23/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.7.table b/eccodes/definitions/grib2/tables/23/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.8.table b/eccodes/definitions/grib2/tables/23/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.9.table b/eccodes/definitions/grib2/tables/23/4.9.table new file mode 100644 index 00000000..9f74599c --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/4.91.table b/eccodes/definitions/grib2/tables/23/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/23/5.0.table b/eccodes/definitions/grib2/tables/23/5.0.table new file mode 100644 index 00000000..27a9fbc9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.0.table @@ -0,0 +1,27 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.1.table b/eccodes/definitions/grib2/tables/23/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.2.table b/eccodes/definitions/grib2/tables/23/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.25.table b/eccodes/definitions/grib2/tables/23/5.25.table new file mode 100644 index 00000000..1b45f28a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.26.table b/eccodes/definitions/grib2/tables/23/5.26.table new file mode 100644 index 00000000..9e91ebf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.3.table b/eccodes/definitions/grib2/tables/23/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.4.table b/eccodes/definitions/grib2/tables/23/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.40.table b/eccodes/definitions/grib2/tables/23/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.40000.table b/eccodes/definitions/grib2/tables/23/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.5.table b/eccodes/definitions/grib2/tables/23/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.50002.table b/eccodes/definitions/grib2/tables/23/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/23/5.6.table b/eccodes/definitions/grib2/tables/23/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/5.7.table b/eccodes/definitions/grib2/tables/23/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/23/6.0.table b/eccodes/definitions/grib2/tables/23/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/23/stepType.table b/eccodes/definitions/grib2/tables/23/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/23/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/24/0.0.table b/eccodes/definitions/grib2/tables/24/0.0.table new file mode 100644 index 00000000..48569a54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/0.0.table @@ -0,0 +1,11 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/1.0.table b/eccodes/definitions/grib2/tables/24/1.0.table new file mode 100644 index 00000000..e2fa20ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.0.table @@ -0,0 +1,28 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +# 25-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/24/1.1.table b/eccodes/definitions/grib2/tables/24/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/1.2.table b/eccodes/definitions/grib2/tables/24/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/1.3.table b/eccodes/definitions/grib2/tables/24/1.3.table new file mode 100644 index 00000000..a5bd99e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/1.4.table b/eccodes/definitions/grib2/tables/24/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/24/1.5.table b/eccodes/definitions/grib2/tables/24/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/1.6.table b/eccodes/definitions/grib2/tables/24/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.0.table b/eccodes/definitions/grib2/tables/24/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/24/3.1.table b/eccodes/definitions/grib2/tables/24/3.1.table new file mode 100644 index 00000000..ed68c514 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.10.table b/eccodes/definitions/grib2/tables/24/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/24/3.11.table b/eccodes/definitions/grib2/tables/24/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.15.table b/eccodes/definitions/grib2/tables/24/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.2.table b/eccodes/definitions/grib2/tables/24/3.2.table new file mode 100644 index 00000000..1b5c8241 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.20.table b/eccodes/definitions/grib2/tables/24/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.21.table b/eccodes/definitions/grib2/tables/24/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.25.table b/eccodes/definitions/grib2/tables/24/3.25.table new file mode 100644 index 00000000..de1bc74e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.3.table b/eccodes/definitions/grib2/tables/24/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/24/3.4.table b/eccodes/definitions/grib2/tables/24/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/24/3.5.table b/eccodes/definitions/grib2/tables/24/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/24/3.6.table b/eccodes/definitions/grib2/tables/24/3.6.table new file mode 100644 index 00000000..dc7d107a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/eccodes/definitions/grib2/tables/24/3.7.table b/eccodes/definitions/grib2/tables/24/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.8.table b/eccodes/definitions/grib2/tables/24/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/3.9.table b/eccodes/definitions/grib2/tables/24/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/24/4.0.table b/eccodes/definitions/grib2/tables/24/4.0.table new file mode 100644 index 00000000..0ea0af4e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.0.table @@ -0,0 +1,86 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink +# 84-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.1.0.table b/eccodes/definitions/grib2/tables/24/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.1.1.table b/eccodes/definitions/grib2/tables/24/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.1.10.table b/eccodes/definitions/grib2/tables/24/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.1.192.table b/eccodes/definitions/grib2/tables/24/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/24/4.1.2.table b/eccodes/definitions/grib2/tables/24/4.1.2.table new file mode 100644 index 00000000..60e2452d --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.1.3.table b/eccodes/definitions/grib2/tables/24/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.10.table b/eccodes/definitions/grib2/tables/24/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/24/4.11.table b/eccodes/definitions/grib2/tables/24/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.12.table b/eccodes/definitions/grib2/tables/24/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.13.table b/eccodes/definitions/grib2/tables/24/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.14.table b/eccodes/definitions/grib2/tables/24/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.15.table b/eccodes/definitions/grib2/tables/24/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.16.table b/eccodes/definitions/grib2/tables/24/4.16.table new file mode 100644 index 00000000..de025080 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.16.table @@ -0,0 +1,9 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.192.table b/eccodes/definitions/grib2/tables/24/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.0.table b/eccodes/definitions/grib2/tables/24/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.1.table b/eccodes/definitions/grib2/tables/24/4.2.0.1.table new file mode 100644 index 00000000..ef6d2ed7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.1.table @@ -0,0 +1,141 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-128 Reserved +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +# 143-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.13.table b/eccodes/definitions/grib2/tables/24/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.14.table b/eccodes/definitions/grib2/tables/24/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.15.table b/eccodes/definitions/grib2/tables/24/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.16.table b/eccodes/definitions/grib2/tables/24/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.17.table b/eccodes/definitions/grib2/tables/24/4.2.0.17.table new file mode 100644 index 00000000..ce1867ac --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.18.table b/eccodes/definitions/grib2/tables/24/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.19.table b/eccodes/definitions/grib2/tables/24/4.2.0.19.table new file mode 100644 index 00000000..d2a1b8d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.19.table @@ -0,0 +1,41 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls (Code table 4.222) +# 37-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.190.table b/eccodes/definitions/grib2/tables/24/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.191.table b/eccodes/definitions/grib2/tables/24/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.2.table b/eccodes/definitions/grib2/tables/24/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.20.table b/eccodes/definitions/grib2/tables/24/4.2.0.20.table new file mode 100644 index 00000000..04273276 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.3.table b/eccodes/definitions/grib2/tables/24/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.4.table b/eccodes/definitions/grib2/tables/24/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.5.table b/eccodes/definitions/grib2/tables/24/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.6.table b/eccodes/definitions/grib2/tables/24/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.7.table b/eccodes/definitions/grib2/tables/24/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.0.table b/eccodes/definitions/grib2/tables/24/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.1.table b/eccodes/definitions/grib2/tables/24/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.2.table b/eccodes/definitions/grib2/tables/24/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.0.table b/eccodes/definitions/grib2/tables/24/4.2.10.0.table new file mode 100644 index 00000000..53c9d242 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.1.table b/eccodes/definitions/grib2/tables/24/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.191.table b/eccodes/definitions/grib2/tables/24/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.2.table b/eccodes/definitions/grib2/tables/24/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.3.table b/eccodes/definitions/grib2/tables/24/4.2.10.3.table new file mode 100644 index 00000000..9f9492f0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.4.table b/eccodes/definitions/grib2/tables/24/4.2.10.4.table new file mode 100644 index 00000000..69ba0cc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.0.table b/eccodes/definitions/grib2/tables/24/4.2.2.0.table new file mode 100644 index 00000000..849c2f1e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.3.table b/eccodes/definitions/grib2/tables/24/4.2.2.3.table new file mode 100644 index 00000000..8f53f402 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.4.table b/eccodes/definitions/grib2/tables/24/4.2.2.4.table new file mode 100644 index 00000000..bb54fac2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.5.table b/eccodes/definitions/grib2/tables/24/4.2.2.5.table new file mode 100644 index 00000000..10fb6895 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.0.table b/eccodes/definitions/grib2/tables/24/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.1.table b/eccodes/definitions/grib2/tables/24/4.2.3.1.table new file mode 100644 index 00000000..7d4364f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.2.table b/eccodes/definitions/grib2/tables/24/4.2.3.2.table new file mode 100644 index 00000000..6316ab39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.3.table b/eccodes/definitions/grib2/tables/24/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.4.table b/eccodes/definitions/grib2/tables/24/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.5.table b/eccodes/definitions/grib2/tables/24/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.6.table b/eccodes/definitions/grib2/tables/24/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/24/4.201.table b/eccodes/definitions/grib2/tables/24/4.201.table new file mode 100644 index 00000000..44943d5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.202.table b/eccodes/definitions/grib2/tables/24/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.203.table b/eccodes/definitions/grib2/tables/24/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.204.table b/eccodes/definitions/grib2/tables/24/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.205.table b/eccodes/definitions/grib2/tables/24/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.206.table b/eccodes/definitions/grib2/tables/24/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.207.table b/eccodes/definitions/grib2/tables/24/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.208.table b/eccodes/definitions/grib2/tables/24/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.209.table b/eccodes/definitions/grib2/tables/24/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.210.table b/eccodes/definitions/grib2/tables/24/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.211.table b/eccodes/definitions/grib2/tables/24/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.212.table b/eccodes/definitions/grib2/tables/24/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.213.table b/eccodes/definitions/grib2/tables/24/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.215.table b/eccodes/definitions/grib2/tables/24/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.216.table b/eccodes/definitions/grib2/tables/24/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.217.table b/eccodes/definitions/grib2/tables/24/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.218.table b/eccodes/definitions/grib2/tables/24/4.218.table new file mode 100644 index 00000000..fcd06c34 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.219.table b/eccodes/definitions/grib2/tables/24/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.220.table b/eccodes/definitions/grib2/tables/24/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.221.table b/eccodes/definitions/grib2/tables/24/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.222.table b/eccodes/definitions/grib2/tables/24/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.223.table b/eccodes/definitions/grib2/tables/24/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.224.table b/eccodes/definitions/grib2/tables/24/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.225.table b/eccodes/definitions/grib2/tables/24/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/24/4.227.table b/eccodes/definitions/grib2/tables/24/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/24/4.230.table b/eccodes/definitions/grib2/tables/24/4.230.table new file mode 100644 index 00000000..147ff974 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.230.table @@ -0,0 +1,512 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.233.table b/eccodes/definitions/grib2/tables/24/4.233.table new file mode 100644 index 00000000..051d603a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.233.table @@ -0,0 +1,512 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.234.table b/eccodes/definitions/grib2/tables/24/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/24/4.236.table b/eccodes/definitions/grib2/tables/24/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/24/4.238.table b/eccodes/definitions/grib2/tables/24/4.238.table new file mode 100644 index 00000000..6dfaf828 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.238.table @@ -0,0 +1,16 @@ +# Code table 4.238 - Source or sink +0 0 Reserved +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.240.table b/eccodes/definitions/grib2/tables/24/4.240.table new file mode 100644 index 00000000..f48c086e --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/24/4.241.table b/eccodes/definitions/grib2/tables/24/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/24/4.242.table b/eccodes/definitions/grib2/tables/24/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/24/4.243.table b/eccodes/definitions/grib2/tables/24/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/24/4.244.table b/eccodes/definitions/grib2/tables/24/4.244.table new file mode 100644 index 00000000..40534ee0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.3.table b/eccodes/definitions/grib2/tables/24/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.4.table b/eccodes/definitions/grib2/tables/24/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.5.table b/eccodes/definitions/grib2/tables/24/4.5.table new file mode 100644 index 00000000..97795d3c --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.5.table @@ -0,0 +1,76 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.6.table b/eccodes/definitions/grib2/tables/24/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.7.table b/eccodes/definitions/grib2/tables/24/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.8.table b/eccodes/definitions/grib2/tables/24/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.9.table b/eccodes/definitions/grib2/tables/24/4.9.table new file mode 100644 index 00000000..9f74599c --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/4.91.table b/eccodes/definitions/grib2/tables/24/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/24/5.0.table b/eccodes/definitions/grib2/tables/24/5.0.table new file mode 100644 index 00000000..27a9fbc9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.0.table @@ -0,0 +1,27 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.1.table b/eccodes/definitions/grib2/tables/24/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.2.table b/eccodes/definitions/grib2/tables/24/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.25.table b/eccodes/definitions/grib2/tables/24/5.25.table new file mode 100644 index 00000000..1b45f28a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.26.table b/eccodes/definitions/grib2/tables/24/5.26.table new file mode 100644 index 00000000..9e91ebf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.3.table b/eccodes/definitions/grib2/tables/24/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.4.table b/eccodes/definitions/grib2/tables/24/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.40.table b/eccodes/definitions/grib2/tables/24/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.40000.table b/eccodes/definitions/grib2/tables/24/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.5.table b/eccodes/definitions/grib2/tables/24/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.50002.table b/eccodes/definitions/grib2/tables/24/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/24/5.6.table b/eccodes/definitions/grib2/tables/24/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/5.7.table b/eccodes/definitions/grib2/tables/24/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/24/6.0.table b/eccodes/definitions/grib2/tables/24/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/24/stepType.table b/eccodes/definitions/grib2/tables/24/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/24/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/25/0.0.table b/eccodes/definitions/grib2/tables/25/0.0.table new file mode 100644 index 00000000..a3097cd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/0.0.table @@ -0,0 +1,13 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-19 Reserved +20 20 Health and socioeconomic impacts +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/1.0.table b/eccodes/definitions/grib2/tables/25/1.0.table new file mode 100644 index 00000000..a6e370f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.0.table @@ -0,0 +1,29 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +25 25 Version implemented on 6 May 2020 +# 26-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/25/1.1.table b/eccodes/definitions/grib2/tables/25/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/1.2.table b/eccodes/definitions/grib2/tables/25/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/1.3.table b/eccodes/definitions/grib2/tables/25/1.3.table new file mode 100644 index 00000000..a5bd99e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/1.4.table b/eccodes/definitions/grib2/tables/25/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/25/1.5.table b/eccodes/definitions/grib2/tables/25/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/1.6.table b/eccodes/definitions/grib2/tables/25/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.0.table b/eccodes/definitions/grib2/tables/25/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/25/3.1.table b/eccodes/definitions/grib2/tables/25/3.1.table new file mode 100644 index 00000000..ed68c514 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.10.table b/eccodes/definitions/grib2/tables/25/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/25/3.11.table b/eccodes/definitions/grib2/tables/25/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.15.table b/eccodes/definitions/grib2/tables/25/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.2.table b/eccodes/definitions/grib2/tables/25/3.2.table new file mode 100644 index 00000000..4ad56569 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.2.table @@ -0,0 +1,16 @@ +# Code table 3.2 - Shape of the reference system +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 +11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.20.table b/eccodes/definitions/grib2/tables/25/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.21.table b/eccodes/definitions/grib2/tables/25/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.25.table b/eccodes/definitions/grib2/tables/25/3.25.table new file mode 100644 index 00000000..de1bc74e --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.3.table b/eccodes/definitions/grib2/tables/25/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/25/3.4.table b/eccodes/definitions/grib2/tables/25/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/25/3.5.table b/eccodes/definitions/grib2/tables/25/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/25/3.6.table b/eccodes/definitions/grib2/tables/25/3.6.table new file mode 100644 index 00000000..dc7d107a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/eccodes/definitions/grib2/tables/25/3.7.table b/eccodes/definitions/grib2/tables/25/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.8.table b/eccodes/definitions/grib2/tables/25/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/3.9.table b/eccodes/definitions/grib2/tables/25/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/25/4.0.table b/eccodes/definitions/grib2/tables/25/4.0.table new file mode 100644 index 00000000..3b12b1a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.0.table @@ -0,0 +1,86 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink +# 84-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.0.table b/eccodes/definitions/grib2/tables/25/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.1.table b/eccodes/definitions/grib2/tables/25/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.10.table b/eccodes/definitions/grib2/tables/25/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.192.table b/eccodes/definitions/grib2/tables/25/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/25/4.1.2.table b/eccodes/definitions/grib2/tables/25/4.1.2.table new file mode 100644 index 00000000..60e2452d --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.20.table b/eccodes/definitions/grib2/tables/25/4.1.20.table new file mode 100644 index 00000000..afad6c81 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.20.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Health indicators +1 1 Epidemiology +2 2 Socioeconomic indicators +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.3.table b/eccodes/definitions/grib2/tables/25/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.1.4.table b/eccodes/definitions/grib2/tables/25/4.1.4.table new file mode 100644 index 00000000..4d3e1cf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.1.4.table @@ -0,0 +1,15 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Momentum +2 2 Charged particle mass and number +3 3 Electric and magnetic fields +4 4 Energetic particles +5 5 Waves +6 6 Solar electromagnetic emissions +7 7 Terrestrial electromagnetic emissions +8 8 Imagery +9 9 Ion-neutral coupling +10 10 Space weather indices +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.10.table b/eccodes/definitions/grib2/tables/25/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/25/4.11.table b/eccodes/definitions/grib2/tables/25/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.12.table b/eccodes/definitions/grib2/tables/25/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.13.table b/eccodes/definitions/grib2/tables/25/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.14.table b/eccodes/definitions/grib2/tables/25/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.15.table b/eccodes/definitions/grib2/tables/25/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.16.table b/eccodes/definitions/grib2/tables/25/4.16.table new file mode 100644 index 00000000..de025080 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.16.table @@ -0,0 +1,9 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.192.table b/eccodes/definitions/grib2/tables/25/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.0.table b/eccodes/definitions/grib2/tables/25/4.2.0.0.table new file mode 100644 index 00000000..7201a866 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.1.table b/eccodes/definitions/grib2/tables/25/4.2.0.1.table new file mode 100644 index 00000000..ef6d2ed7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.1.table @@ -0,0 +1,141 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-128 Reserved +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +# 143-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.13.table b/eccodes/definitions/grib2/tables/25/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.14.table b/eccodes/definitions/grib2/tables/25/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.15.table b/eccodes/definitions/grib2/tables/25/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.16.table b/eccodes/definitions/grib2/tables/25/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.17.table b/eccodes/definitions/grib2/tables/25/4.2.0.17.table new file mode 100644 index 00000000..ce1867ac --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.18.table b/eccodes/definitions/grib2/tables/25/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.19.table b/eccodes/definitions/grib2/tables/25/4.2.0.19.table new file mode 100644 index 00000000..a99dc5d6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.19.table @@ -0,0 +1,42 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls (Code table 4.222) +37 37 Icing severity (Code table 4.228) +# 38-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.190.table b/eccodes/definitions/grib2/tables/25/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.191.table b/eccodes/definitions/grib2/tables/25/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.2.table b/eccodes/definitions/grib2/tables/25/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.20.table b/eccodes/definitions/grib2/tables/25/4.2.0.20.table new file mode 100644 index 00000000..04273276 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.3.table b/eccodes/definitions/grib2/tables/25/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.4.table b/eccodes/definitions/grib2/tables/25/4.2.0.4.table new file mode 100644 index 00000000..0a5ded2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.5.table b/eccodes/definitions/grib2/tables/25/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.6.table b/eccodes/definitions/grib2/tables/25/4.2.0.6.table new file mode 100644 index 00000000..4cec0c8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.7.table b/eccodes/definitions/grib2/tables/25/4.2.0.7.table new file mode 100644 index 00000000..aff6a651 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.0.table b/eccodes/definitions/grib2/tables/25/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.1.table b/eccodes/definitions/grib2/tables/25/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.2.table b/eccodes/definitions/grib2/tables/25/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.0.table b/eccodes/definitions/grib2/tables/25/4.2.10.0.table new file mode 100644 index 00000000..53c9d242 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.1.table b/eccodes/definitions/grib2/tables/25/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.191.table b/eccodes/definitions/grib2/tables/25/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.2.table b/eccodes/definitions/grib2/tables/25/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.3.table b/eccodes/definitions/grib2/tables/25/4.2.10.3.table new file mode 100644 index 00000000..9f9492f0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.4.table b/eccodes/definitions/grib2/tables/25/4.2.10.4.table new file mode 100644 index 00000000..69ba0cc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.0.table b/eccodes/definitions/grib2/tables/25/4.2.2.0.table new file mode 100644 index 00000000..849c2f1e --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.3.table b/eccodes/definitions/grib2/tables/25/4.2.2.3.table new file mode 100644 index 00000000..fcb3ebd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.2.3.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +28 28 Snow temperature (K) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.4.table b/eccodes/definitions/grib2/tables/25/4.2.2.4.table new file mode 100644 index 00000000..64ce5835 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) +8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.5.table b/eccodes/definitions/grib2/tables/25/4.2.2.5.table new file mode 100644 index 00000000..a5a71dcd --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.2.5.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Glacier cover (Proportion) +1 1 Glacier temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.0.table b/eccodes/definitions/grib2/tables/25/4.2.20.0.table new file mode 100644 index 00000000..9cd93638 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.20.0.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Universal thermal climate index (K) +1 1 Mean radiant temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.1.table b/eccodes/definitions/grib2/tables/25/4.2.20.1.table new file mode 100644 index 00000000..bdddca5f --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.20.1.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Malaria cases (Fraction) +1 1 Malaria circumsporozoite protein rate (Fraction) +2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) +3 3 Human bite rate by anopheles vectors (Bites per day per person) +4 4 Malaria immunity (Fraction) +5 5 Falciparum parasite rates (Fraction) +6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) +7 7 Anopheles vector to host ratio (Fraction) +8 8 Anopheles vector number (Number m-2) +9 9 Fraction of malarial vector reproductive habitat (Fraction) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.2.table b/eccodes/definitions/grib2/tables/25/4.2.20.2.table new file mode 100644 index 00000000..0804bcaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.20.2.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Population density (Person m-2) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.0.table b/eccodes/definitions/grib2/tables/25/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.1.table b/eccodes/definitions/grib2/tables/25/4.2.3.1.table new file mode 100644 index 00000000..7d4364f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.2.table b/eccodes/definitions/grib2/tables/25/4.2.3.2.table new file mode 100644 index 00000000..6316ab39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.3.table b/eccodes/definitions/grib2/tables/25/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.4.table b/eccodes/definitions/grib2/tables/25/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.5.table b/eccodes/definitions/grib2/tables/25/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.6.table b/eccodes/definitions/grib2/tables/25/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.0.table b/eccodes/definitions/grib2/tables/25/4.2.4.0.table new file mode 100644 index 00000000..0b35aba2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Electron temperature (K) +2 2 Proton temperature (K) +3 3 Ion temperature (K) +4 4 Parallel temperature (K) +5 5 Perpendicular temperature (K) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.1.table b/eccodes/definitions/grib2/tables/25/4.2.4.1.table new file mode 100644 index 00000000..abd58440 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Velocity magnitude (speed) (m s-1) +1 1 1st vector component of velocity (coordinate system dependent) (m s-1) +2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) +3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.10.table b/eccodes/definitions/grib2/tables/25/4.2.4.10.table new file mode 100644 index 00000000..420d2b43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.10.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scintillation index (sigma phi) (rad) +1 1 Scintillation index S4 (Numeric) +2 2 Rate of Change of TEC Index (ROTI) (TECU/min) +3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) +4 4 Along Arc TEC Rate (AATR) (TECU/min) +5 5 Kp (Numeric) +6 6 Equatorial disturbance storm time index (Dst) (nT) +7 7 Auroral Electrojet (AE) (nT) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.2.table b/eccodes/definitions/grib2/tables/25/4.2.4.2.table new file mode 100644 index 00000000..8dd05fcd --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.2.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Particle number density (m-3) +1 1 Electron density (m-3) +2 2 Proton density (m-3) +3 3 Ion density (m-3) +4 4 Vertical total electron content (TECU) +5 5 HF absorption frequency (Hz) +6 6 HF absorption (dB) +7 7 Spread F (m) +8 8 h’ (m) +9 9 Critical frequency (Hz) +10 10 Maximal usable frequency (MUF) (Hz) +11 11 Peak height (hm) (m) +12 12 Peak density (Nm) (m-3) +13 13 Equivalent slab thickness (tau) (km) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.3.table b/eccodes/definitions/grib2/tables/25/4.2.4.3.table new file mode 100644 index 00000000..a46f4a40 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.3.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Magnetic field magnitude (T) +1 1 1st vector component of magnetic field (T) +2 2 2nd vector component of magnetic field (T) +3 3 3rd vector component of magnetic field (T) +4 4 Electric field magnitude (V m-1) +5 5 1st vector component of electric field (V m-1) +6 6 2nd vector component of electric field (V m-1) +7 7 3rd vector component of electric field (V m-1) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.4.table b/eccodes/definitions/grib2/tables/25/4.2.4.4.table new file mode 100644 index 00000000..b71abeb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.4.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Proton flux (differential) ((m2 s sr eV)-1) +1 1 Proton flux (integral) ((m2 s sr )-1) +2 2 Electron flux (differential) ((m2 s sr eV)-1) +3 3 Electron flux (integral) ((m2 s sr)-1) +4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) +5 5 Heavy ion flux (integral) ((m2 s sr)-1) +6 6 Cosmic ray neutron flux (/h) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.5.table b/eccodes/definitions/grib2/tables/25/4.2.4.5.table new file mode 100644 index 00000000..014ea22f --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.5.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Amplitude (dB) +1 1 Phase (rad) +2 2 Frequency (Hz) +3 3 Wave length (m) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.6.table b/eccodes/definitions/grib2/tables/25/4.2.4.6.table new file mode 100644 index 00000000..67f551f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.6.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Integrated solar irradiance (W m-2) +1 1 Solar X-ray flux (XRS long) (W m-2) +2 2 Solar X-ray flux (XRS short) (W m-2) +3 3 Solar EUV irradiance (W m-2) +4 4 Solar spectral irradiance (W m-2 nm-1) +5 5 F10.7 (W m-2 Hz-1) +6 6 Solar radio emissions (W m-2 Hz-1) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.7.table b/eccodes/definitions/grib2/tables/25/4.2.4.7.table new file mode 100644 index 00000000..9b93bcff --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.7.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Limb intensity (J m-2 s-1) +1 1 Disk intensity (J m-2 s-1) +2 2 Disk intensity day (J m-2 s-1) +3 3 Disk intensity night (J m-2 s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.8.table b/eccodes/definitions/grib2/tables/25/4.2.4.8.table new file mode 100644 index 00000000..358b91ca --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.8.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 X-ray radiance (W sr-1 m-2) +1 1 EUV radiance (W sr-1 m-2) +2 2 H-alpha radiance (W sr-1 m-2) +3 3 White light radiance (W sr-1 m-2) +4 4 CaII-K radiance (W sr-1 m-2) +5 5 White light coronagraph radiance (W sr-1 m-2) +6 6 Heliospheric radiance (W sr-1 m-2) +7 7 Thematic mask (Numeric) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.9.table b/eccodes/definitions/grib2/tables/25/4.2.4.9.table new file mode 100644 index 00000000..e96c81ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.2.4.9.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pedersen conductivity (S m-1) +1 1 Hall conductivity (S m-1) +2 2 Parallel conductivity (S m-1) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.201.table b/eccodes/definitions/grib2/tables/25/4.201.table new file mode 100644 index 00000000..44943d5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.202.table b/eccodes/definitions/grib2/tables/25/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.203.table b/eccodes/definitions/grib2/tables/25/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.204.table b/eccodes/definitions/grib2/tables/25/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.205.table b/eccodes/definitions/grib2/tables/25/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.206.table b/eccodes/definitions/grib2/tables/25/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.207.table b/eccodes/definitions/grib2/tables/25/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.208.table b/eccodes/definitions/grib2/tables/25/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.209.table b/eccodes/definitions/grib2/tables/25/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.210.table b/eccodes/definitions/grib2/tables/25/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.211.table b/eccodes/definitions/grib2/tables/25/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.212.table b/eccodes/definitions/grib2/tables/25/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.213.table b/eccodes/definitions/grib2/tables/25/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.215.table b/eccodes/definitions/grib2/tables/25/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.216.table b/eccodes/definitions/grib2/tables/25/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.217.table b/eccodes/definitions/grib2/tables/25/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.218.table b/eccodes/definitions/grib2/tables/25/4.218.table new file mode 100644 index 00000000..fcd06c34 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.219.table b/eccodes/definitions/grib2/tables/25/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.220.table b/eccodes/definitions/grib2/tables/25/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.221.table b/eccodes/definitions/grib2/tables/25/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.222.table b/eccodes/definitions/grib2/tables/25/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.223.table b/eccodes/definitions/grib2/tables/25/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.224.table b/eccodes/definitions/grib2/tables/25/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.225.table b/eccodes/definitions/grib2/tables/25/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.227.table b/eccodes/definitions/grib2/tables/25/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.228.table b/eccodes/definitions/grib2/tables/25/4.228.table new file mode 100644 index 00000000..559ae916 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.228.table @@ -0,0 +1,8 @@ +# Code table 4.228 - Icing severity +0 0 None +1 1 Trace +2 2 Light +3 3 Moderate +4 4 Severe +# 5-254 Reserved +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.230.table b/eccodes/definitions/grib2/tables/25/4.230.table new file mode 100644 index 00000000..147ff974 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.230.table @@ -0,0 +1,512 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.233.table b/eccodes/definitions/grib2/tables/25/4.233.table new file mode 100644 index 00000000..051d603a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.233.table @@ -0,0 +1,512 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.234.table b/eccodes/definitions/grib2/tables/25/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/25/4.236.table b/eccodes/definitions/grib2/tables/25/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/25/4.238.table b/eccodes/definitions/grib2/tables/25/4.238.table new file mode 100644 index 00000000..6dfaf828 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.238.table @@ -0,0 +1,16 @@ +# Code table 4.238 - Source or sink +0 0 Reserved +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.240.table b/eccodes/definitions/grib2/tables/25/4.240.table new file mode 100644 index 00000000..4daef3d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.241.table b/eccodes/definitions/grib2/tables/25/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.242.table b/eccodes/definitions/grib2/tables/25/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/25/4.243.table b/eccodes/definitions/grib2/tables/25/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/25/4.244.table b/eccodes/definitions/grib2/tables/25/4.244.table new file mode 100644 index 00000000..40534ee0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.3.table b/eccodes/definitions/grib2/tables/25/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.4.table b/eccodes/definitions/grib2/tables/25/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.5.table b/eccodes/definitions/grib2/tables/25/4.5.table new file mode 100644 index 00000000..bf8473c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.5.table @@ -0,0 +1,84 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 sol Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.6.table b/eccodes/definitions/grib2/tables/25/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.7.table b/eccodes/definitions/grib2/tables/25/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.8.table b/eccodes/definitions/grib2/tables/25/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.9.table b/eccodes/definitions/grib2/tables/25/4.9.table new file mode 100644 index 00000000..9f74599c --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/4.91.table b/eccodes/definitions/grib2/tables/25/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/25/5.0.table b/eccodes/definitions/grib2/tables/25/5.0.table new file mode 100644 index 00000000..74af6d38 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.0.table @@ -0,0 +1,27 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG packing +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.1.table b/eccodes/definitions/grib2/tables/25/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.2.table b/eccodes/definitions/grib2/tables/25/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.25.table b/eccodes/definitions/grib2/tables/25/5.25.table new file mode 100644 index 00000000..1b45f28a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.26.table b/eccodes/definitions/grib2/tables/25/5.26.table new file mode 100644 index 00000000..9e91ebf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.3.table b/eccodes/definitions/grib2/tables/25/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.4.table b/eccodes/definitions/grib2/tables/25/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.40.table b/eccodes/definitions/grib2/tables/25/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.40000.table b/eccodes/definitions/grib2/tables/25/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.5.table b/eccodes/definitions/grib2/tables/25/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.50002.table b/eccodes/definitions/grib2/tables/25/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/25/5.6.table b/eccodes/definitions/grib2/tables/25/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/5.7.table b/eccodes/definitions/grib2/tables/25/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/25/6.0.table b/eccodes/definitions/grib2/tables/25/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/25/stepType.table b/eccodes/definitions/grib2/tables/25/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/25/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/26/0.0.table b/eccodes/definitions/grib2/tables/26/0.0.table new file mode 100644 index 00000000..71ac57ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/0.0.table @@ -0,0 +1,13 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-19 Reserved +20 20 Health and socioeconomic impacts +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/1.0.table b/eccodes/definitions/grib2/tables/26/1.0.table new file mode 100644 index 00000000..789ef85f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.0.table @@ -0,0 +1,30 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +25 25 Version implemented on 6 May 2020 +26 26 Version implemented on 16 November 2020 +# 27-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/26/1.1.table b/eccodes/definitions/grib2/tables/26/1.1.table new file mode 100644 index 00000000..d50f8fd7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/1.2.table b/eccodes/definitions/grib2/tables/26/1.2.table new file mode 100644 index 00000000..934b7045 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/1.3.table b/eccodes/definitions/grib2/tables/26/1.3.table new file mode 100644 index 00000000..dc138ef1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/1.4.table b/eccodes/definitions/grib2/tables/26/1.4.table new file mode 100644 index 00000000..03203d87 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/26/1.5.table b/eccodes/definitions/grib2/tables/26/1.5.table new file mode 100644 index 00000000..b2cf9f08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/1.6.table b/eccodes/definitions/grib2/tables/26/1.6.table new file mode 100644 index 00000000..5db92199 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.0.table b/eccodes/definitions/grib2/tables/26/3.0.table new file mode 100644 index 00000000..45187b80 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/26/3.1.table b/eccodes/definitions/grib2/tables/26/3.1.table new file mode 100644 index 00000000..ed68c514 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.10.table b/eccodes/definitions/grib2/tables/26/3.10.table new file mode 100644 index 00000000..afa8843a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/26/3.11.table b/eccodes/definitions/grib2/tables/26/3.11.table new file mode 100644 index 00000000..e516a2ab --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.15.table b/eccodes/definitions/grib2/tables/26/3.15.table new file mode 100644 index 00000000..331217eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.2.table b/eccodes/definitions/grib2/tables/26/3.2.table new file mode 100644 index 00000000..03cfbafa --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.2.table @@ -0,0 +1,16 @@ +# Code table 3.2 - Shape of the reference system +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 +11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.20.table b/eccodes/definitions/grib2/tables/26/3.20.table new file mode 100644 index 00000000..efbf08d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.21.table b/eccodes/definitions/grib2/tables/26/3.21.table new file mode 100644 index 00000000..88dbb901 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.25.table b/eccodes/definitions/grib2/tables/26/3.25.table new file mode 100644 index 00000000..de1bc74e --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.3.table b/eccodes/definitions/grib2/tables/26/3.3.table new file mode 100644 index 00000000..5dd7c700 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/26/3.4.table b/eccodes/definitions/grib2/tables/26/3.4.table new file mode 100644 index 00000000..897b813d --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib2/tables/26/3.5.table b/eccodes/definitions/grib2/tables/26/3.5.table new file mode 100644 index 00000000..eabdde89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/26/3.6.table b/eccodes/definitions/grib2/tables/26/3.6.table new file mode 100644 index 00000000..dc7d107a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/eccodes/definitions/grib2/tables/26/3.7.table b/eccodes/definitions/grib2/tables/26/3.7.table new file mode 100644 index 00000000..0a7d6efd --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.8.table b/eccodes/definitions/grib2/tables/26/3.8.table new file mode 100644 index 00000000..844e7423 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/3.9.table b/eccodes/definitions/grib2/tables/26/3.9.table new file mode 100644 index 00000000..fd730bc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/26/4.0.table b/eccodes/definitions/grib2/tables/26/4.0.table new file mode 100644 index 00000000..03f30748 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.0.table @@ -0,0 +1,84 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +84 84 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +# 86-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.0.table b/eccodes/definitions/grib2/tables/26/4.1.0.table new file mode 100644 index 00000000..04cfd780 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.1.table b/eccodes/definitions/grib2/tables/26/4.1.1.table new file mode 100644 index 00000000..7b22b6fe --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.10.table b/eccodes/definitions/grib2/tables/26/4.1.10.table new file mode 100644 index 00000000..a9b20eb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.192.table b/eccodes/definitions/grib2/tables/26/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/26/4.1.2.table b/eccodes/definitions/grib2/tables/26/4.1.2.table new file mode 100644 index 00000000..60e2452d --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.20.table b/eccodes/definitions/grib2/tables/26/4.1.20.table new file mode 100644 index 00000000..afad6c81 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.20.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Health indicators +1 1 Epidemiology +2 2 Socioeconomic indicators +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.3.table b/eccodes/definitions/grib2/tables/26/4.1.3.table new file mode 100644 index 00000000..7bf60d4a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.1.4.table b/eccodes/definitions/grib2/tables/26/4.1.4.table new file mode 100644 index 00000000..4d3e1cf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.1.4.table @@ -0,0 +1,15 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Momentum +2 2 Charged particle mass and number +3 3 Electric and magnetic fields +4 4 Energetic particles +5 5 Waves +6 6 Solar electromagnetic emissions +7 7 Terrestrial electromagnetic emissions +8 8 Imagery +9 9 Ion-neutral coupling +10 10 Space weather indices +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.10.table b/eccodes/definitions/grib2/tables/26/4.10.table new file mode 100644 index 00000000..1a92baaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/26/4.11.table b/eccodes/definitions/grib2/tables/26/4.11.table new file mode 100644 index 00000000..7f404c84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.12.table b/eccodes/definitions/grib2/tables/26/4.12.table new file mode 100644 index 00000000..03fd89b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.13.table b/eccodes/definitions/grib2/tables/26/4.13.table new file mode 100644 index 00000000..c92854ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.14.table b/eccodes/definitions/grib2/tables/26/4.14.table new file mode 100644 index 00000000..a88cb93f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.15.table b/eccodes/definitions/grib2/tables/26/4.15.table new file mode 100644 index 00000000..2e5f3dea --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.16.table b/eccodes/definitions/grib2/tables/26/4.16.table new file mode 100644 index 00000000..a18c63f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.16.table @@ -0,0 +1,10 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +5 5 Probability +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.192.table b/eccodes/definitions/grib2/tables/26/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.0.table b/eccodes/definitions/grib2/tables/26/4.2.0.0.table new file mode 100644 index 00000000..f361355b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.0.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +30 30 Latent heat net flux due to evaporation (W m-2) +31 31 Latent heat net flux due to sublimation (W m-2) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.1.table b/eccodes/definitions/grib2/tables/26/4.2.0.1.table new file mode 100644 index 00000000..58d32d86 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.1.table @@ -0,0 +1,150 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +122 122 Precipitation intensity index (Code table 4.247) +123 123 Dominant precipitation type (Code table 4.201) +124 124 Presence of showers (Code table 4.222) +125 125 Presence of blowing snow (Code table 4.222) +126 126 Presence of blizzard (Code table 4.222) +127 127 Ice pellets (non water equivalent) precipitation rate (m/s) +128 128 Total solid precipitation rate (kg m-2 s-1) +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +143 143 Potential evaporation rate (kg m–2 s–1) +144 144 specific rain water content (convective) (kg kg-1) +145 145 specific snow water content (convective) (kg kg-1) +# 146-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.13.table b/eccodes/definitions/grib2/tables/26/4.2.0.13.table new file mode 100644 index 00000000..5086101a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.14.table b/eccodes/definitions/grib2/tables/26/4.2.0.14.table new file mode 100644 index 00000000..21588473 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.15.table b/eccodes/definitions/grib2/tables/26/4.2.0.15.table new file mode 100644 index 00000000..dfbc4d12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.16.table b/eccodes/definitions/grib2/tables/26/4.2.0.16.table new file mode 100644 index 00000000..0c240a85 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.17.table b/eccodes/definitions/grib2/tables/26/4.2.0.17.table new file mode 100644 index 00000000..ce1867ac --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.18.table b/eccodes/definitions/grib2/tables/26/4.2.0.18.table new file mode 100644 index 00000000..9d106f41 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.19.table b/eccodes/definitions/grib2/tables/26/4.2.0.19.table new file mode 100644 index 00000000..3ffe0c12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.19.table @@ -0,0 +1,45 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls (Code table 4.222) +37 37 Icing severity (Code table 4.228) +38 38 Sky transparency index (Code Table 4.214) +39 39 Seeing index (Code Table 4.214) +40 40 Snow level (m) +# 41-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.190.table b/eccodes/definitions/grib2/tables/26/4.2.0.190.table new file mode 100644 index 00000000..de621a92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.191.table b/eccodes/definitions/grib2/tables/26/4.2.0.191.table new file mode 100644 index 00000000..e3bba0eb --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.2.table b/eccodes/definitions/grib2/tables/26/4.2.0.2.table new file mode 100644 index 00000000..5446262e --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.20.table b/eccodes/definitions/grib2/tables/26/4.2.0.20.table new file mode 100644 index 00000000..04273276 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.3.table b/eccodes/definitions/grib2/tables/26/4.2.0.3.table new file mode 100644 index 00000000..34941dca --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.4.table b/eccodes/definitions/grib2/tables/26/4.2.0.4.table new file mode 100644 index 00000000..d56ee2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.4.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +54 54 Direct normal short-wave radiation flux (W m-2) +# 55-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.5.table b/eccodes/definitions/grib2/tables/26/4.2.0.5.table new file mode 100644 index 00000000..4550220b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.6.table b/eccodes/definitions/grib2/tables/26/4.2.0.6.table new file mode 100644 index 00000000..ce331de7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.6.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +50 50 Fog (%) +# 51-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.7.table b/eccodes/definitions/grib2/tables/26/4.2.0.7.table new file mode 100644 index 00000000..04d7f393 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.0.7.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +20 20 Thunderstorm intensity index (Code table 4.246) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.0.table b/eccodes/definitions/grib2/tables/26/4.2.1.0.table new file mode 100644 index 00000000..bcd849c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.1.table b/eccodes/definitions/grib2/tables/26/4.2.1.1.table new file mode 100644 index 00000000..b488eb0b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.2.table b/eccodes/definitions/grib2/tables/26/4.2.1.2.table new file mode 100644 index 00000000..ec9b11d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.0.table b/eccodes/definitions/grib2/tables/26/4.2.10.0.table new file mode 100644 index 00000000..de15555c --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Mean direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.1.table b/eccodes/definitions/grib2/tables/26/4.2.10.1.table new file mode 100644 index 00000000..00a084e3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.191.table b/eccodes/definitions/grib2/tables/26/4.2.10.191.table new file mode 100644 index 00000000..524929e7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.2.table b/eccodes/definitions/grib2/tables/26/4.2.10.2.table new file mode 100644 index 00000000..6797062a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.3.table b/eccodes/definitions/grib2/tables/26/4.2.10.3.table new file mode 100644 index 00000000..9f9492f0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.4.table b/eccodes/definitions/grib2/tables/26/4.2.10.4.table new file mode 100644 index 00000000..69ba0cc6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.0.table b/eccodes/definitions/grib2/tables/26/4.2.2.0.table new file mode 100644 index 00000000..849c2f1e --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.3.table b/eccodes/definitions/grib2/tables/26/4.2.2.3.table new file mode 100644 index 00000000..b7740089 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.2.3.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +28 28 Snow temperature (K) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.4.table b/eccodes/definitions/grib2/tables/26/4.2.2.4.table new file mode 100644 index 00000000..14c317ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.2.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) +8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) +12 12 Keetch-Byram drought index (Numeric) +13 13 Drought factor (as defined by the Australian forest service ) (Numeric) +14 14 Rate of spread (as defined by the Australian forest service ) (m/s) +15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) +16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) +19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.5.table b/eccodes/definitions/grib2/tables/26/4.2.2.5.table new file mode 100644 index 00000000..122f0aa2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.2.5.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Glacier cover (Proportion) +1 1 Glacier temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.0.table b/eccodes/definitions/grib2/tables/26/4.2.20.0.table new file mode 100644 index 00000000..9cd93638 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.20.0.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Universal thermal climate index (K) +1 1 Mean radiant temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.1.table b/eccodes/definitions/grib2/tables/26/4.2.20.1.table new file mode 100644 index 00000000..bdddca5f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.20.1.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Malaria cases (Fraction) +1 1 Malaria circumsporozoite protein rate (Fraction) +2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) +3 3 Human bite rate by anopheles vectors (Bites per day per person) +4 4 Malaria immunity (Fraction) +5 5 Falciparum parasite rates (Fraction) +6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) +7 7 Anopheles vector to host ratio (Fraction) +8 8 Anopheles vector number (Number m-2) +9 9 Fraction of malarial vector reproductive habitat (Fraction) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.2.table b/eccodes/definitions/grib2/tables/26/4.2.20.2.table new file mode 100644 index 00000000..0804bcaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.20.2.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Population density (Person m-2) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.0.table b/eccodes/definitions/grib2/tables/26/4.2.3.0.table new file mode 100644 index 00000000..c0ffa29f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.1.table b/eccodes/definitions/grib2/tables/26/4.2.3.1.table new file mode 100644 index 00000000..7d4364f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.2.table b/eccodes/definitions/grib2/tables/26/4.2.3.2.table new file mode 100644 index 00000000..6316ab39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.3.table b/eccodes/definitions/grib2/tables/26/4.2.3.3.table new file mode 100644 index 00000000..cb5c4b6e --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.4.table b/eccodes/definitions/grib2/tables/26/4.2.3.4.table new file mode 100644 index 00000000..f86d2d65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.5.table b/eccodes/definitions/grib2/tables/26/4.2.3.5.table new file mode 100644 index 00000000..92a050db --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.6.table b/eccodes/definitions/grib2/tables/26/4.2.3.6.table new file mode 100644 index 00000000..471beed5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.0.table b/eccodes/definitions/grib2/tables/26/4.2.4.0.table new file mode 100644 index 00000000..0b35aba2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Electron temperature (K) +2 2 Proton temperature (K) +3 3 Ion temperature (K) +4 4 Parallel temperature (K) +5 5 Perpendicular temperature (K) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.1.table b/eccodes/definitions/grib2/tables/26/4.2.4.1.table new file mode 100644 index 00000000..abd58440 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Velocity magnitude (speed) (m s-1) +1 1 1st vector component of velocity (coordinate system dependent) (m s-1) +2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) +3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.10.table b/eccodes/definitions/grib2/tables/26/4.2.4.10.table new file mode 100644 index 00000000..420d2b43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.10.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scintillation index (sigma phi) (rad) +1 1 Scintillation index S4 (Numeric) +2 2 Rate of Change of TEC Index (ROTI) (TECU/min) +3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) +4 4 Along Arc TEC Rate (AATR) (TECU/min) +5 5 Kp (Numeric) +6 6 Equatorial disturbance storm time index (Dst) (nT) +7 7 Auroral Electrojet (AE) (nT) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.2.table b/eccodes/definitions/grib2/tables/26/4.2.4.2.table new file mode 100644 index 00000000..8dd05fcd --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.2.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Particle number density (m-3) +1 1 Electron density (m-3) +2 2 Proton density (m-3) +3 3 Ion density (m-3) +4 4 Vertical total electron content (TECU) +5 5 HF absorption frequency (Hz) +6 6 HF absorption (dB) +7 7 Spread F (m) +8 8 h’ (m) +9 9 Critical frequency (Hz) +10 10 Maximal usable frequency (MUF) (Hz) +11 11 Peak height (hm) (m) +12 12 Peak density (Nm) (m-3) +13 13 Equivalent slab thickness (tau) (km) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.3.table b/eccodes/definitions/grib2/tables/26/4.2.4.3.table new file mode 100644 index 00000000..a46f4a40 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.3.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Magnetic field magnitude (T) +1 1 1st vector component of magnetic field (T) +2 2 2nd vector component of magnetic field (T) +3 3 3rd vector component of magnetic field (T) +4 4 Electric field magnitude (V m-1) +5 5 1st vector component of electric field (V m-1) +6 6 2nd vector component of electric field (V m-1) +7 7 3rd vector component of electric field (V m-1) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.4.table b/eccodes/definitions/grib2/tables/26/4.2.4.4.table new file mode 100644 index 00000000..b71abeb9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.4.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Proton flux (differential) ((m2 s sr eV)-1) +1 1 Proton flux (integral) ((m2 s sr )-1) +2 2 Electron flux (differential) ((m2 s sr eV)-1) +3 3 Electron flux (integral) ((m2 s sr)-1) +4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) +5 5 Heavy ion flux (integral) ((m2 s sr)-1) +6 6 Cosmic ray neutron flux (/h) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.5.table b/eccodes/definitions/grib2/tables/26/4.2.4.5.table new file mode 100644 index 00000000..014ea22f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.5.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Amplitude (dB) +1 1 Phase (rad) +2 2 Frequency (Hz) +3 3 Wave length (m) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.6.table b/eccodes/definitions/grib2/tables/26/4.2.4.6.table new file mode 100644 index 00000000..67f551f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.6.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Integrated solar irradiance (W m-2) +1 1 Solar X-ray flux (XRS long) (W m-2) +2 2 Solar X-ray flux (XRS short) (W m-2) +3 3 Solar EUV irradiance (W m-2) +4 4 Solar spectral irradiance (W m-2 nm-1) +5 5 F10.7 (W m-2 Hz-1) +6 6 Solar radio emissions (W m-2 Hz-1) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.7.table b/eccodes/definitions/grib2/tables/26/4.2.4.7.table new file mode 100644 index 00000000..9b93bcff --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.7.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Limb intensity (J m-2 s-1) +1 1 Disk intensity (J m-2 s-1) +2 2 Disk intensity day (J m-2 s-1) +3 3 Disk intensity night (J m-2 s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.8.table b/eccodes/definitions/grib2/tables/26/4.2.4.8.table new file mode 100644 index 00000000..358b91ca --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.8.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 X-ray radiance (W sr-1 m-2) +1 1 EUV radiance (W sr-1 m-2) +2 2 H-alpha radiance (W sr-1 m-2) +3 3 White light radiance (W sr-1 m-2) +4 4 CaII-K radiance (W sr-1 m-2) +5 5 White light coronagraph radiance (W sr-1 m-2) +6 6 Heliospheric radiance (W sr-1 m-2) +7 7 Thematic mask (Numeric) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.9.table b/eccodes/definitions/grib2/tables/26/4.2.4.9.table new file mode 100644 index 00000000..e96c81ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.2.4.9.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pedersen conductivity (S m-1) +1 1 Hall conductivity (S m-1) +2 2 Parallel conductivity (S m-1) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.201.table b/eccodes/definitions/grib2/tables/26/4.201.table new file mode 100644 index 00000000..44943d5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.202.table b/eccodes/definitions/grib2/tables/26/4.202.table new file mode 100644 index 00000000..438502ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.203.table b/eccodes/definitions/grib2/tables/26/4.203.table new file mode 100644 index 00000000..8a9aedf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.204.table b/eccodes/definitions/grib2/tables/26/4.204.table new file mode 100644 index 00000000..48137293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.205.table b/eccodes/definitions/grib2/tables/26/4.205.table new file mode 100644 index 00000000..5b4484df --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.206.table b/eccodes/definitions/grib2/tables/26/4.206.table new file mode 100644 index 00000000..02c3dfdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.207.table b/eccodes/definitions/grib2/tables/26/4.207.table new file mode 100644 index 00000000..8ddb2e04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.208.table b/eccodes/definitions/grib2/tables/26/4.208.table new file mode 100644 index 00000000..b83685a1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.209.table b/eccodes/definitions/grib2/tables/26/4.209.table new file mode 100644 index 00000000..cb761707 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.210.table b/eccodes/definitions/grib2/tables/26/4.210.table new file mode 100644 index 00000000..524a6ca7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.211.table b/eccodes/definitions/grib2/tables/26/4.211.table new file mode 100644 index 00000000..098eb2d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.212.table b/eccodes/definitions/grib2/tables/26/4.212.table new file mode 100644 index 00000000..1a085b88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.213.table b/eccodes/definitions/grib2/tables/26/4.213.table new file mode 100644 index 00000000..c65784a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.214.table b/eccodes/definitions/grib2/tables/26/4.214.table new file mode 100644 index 00000000..b08860ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.214.table @@ -0,0 +1,11 @@ +# Code table 4.214 - Environmental Factor Qualifier +0 0 Worst +1 1 Very poor +2 2 Poor +3 3 Average +4 4 Good +5 5 Excellent +# 6-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.215.table b/eccodes/definitions/grib2/tables/26/4.215.table new file mode 100644 index 00000000..034db72b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.216.table b/eccodes/definitions/grib2/tables/26/4.216.table new file mode 100644 index 00000000..5d1460ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.217.table b/eccodes/definitions/grib2/tables/26/4.217.table new file mode 100644 index 00000000..a4452182 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.218.table b/eccodes/definitions/grib2/tables/26/4.218.table new file mode 100644 index 00000000..fcd06c34 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.219.table b/eccodes/definitions/grib2/tables/26/4.219.table new file mode 100644 index 00000000..86df0522 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.220.table b/eccodes/definitions/grib2/tables/26/4.220.table new file mode 100644 index 00000000..93e841f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.221.table b/eccodes/definitions/grib2/tables/26/4.221.table new file mode 100644 index 00000000..8448533d --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.222.table b/eccodes/definitions/grib2/tables/26/4.222.table new file mode 100644 index 00000000..57f11301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.223.table b/eccodes/definitions/grib2/tables/26/4.223.table new file mode 100644 index 00000000..f0deb076 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.224.table b/eccodes/definitions/grib2/tables/26/4.224.table new file mode 100644 index 00000000..e87cde4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.225.table b/eccodes/definitions/grib2/tables/26/4.225.table new file mode 100644 index 00000000..9dc37408 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.227.table b/eccodes/definitions/grib2/tables/26/4.227.table new file mode 100644 index 00000000..27c76553 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.228.table b/eccodes/definitions/grib2/tables/26/4.228.table new file mode 100644 index 00000000..559ae916 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.228.table @@ -0,0 +1,8 @@ +# Code table 4.228 - Icing severity +0 0 None +1 1 Trace +2 2 Light +3 3 Moderate +4 4 Severe +# 5-254 Reserved +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.230.table b/eccodes/definitions/grib2/tables/26/4.230.table new file mode 100644 index 00000000..ebeec9e6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.230.table @@ -0,0 +1,527 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.233.table b/eccodes/definitions/grib2/tables/26/4.233.table new file mode 100644 index 00000000..7d8c2ec2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.233.table @@ -0,0 +1,527 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.234.table b/eccodes/definitions/grib2/tables/26/4.234.table new file mode 100644 index 00000000..816541ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/eccodes/definitions/grib2/tables/26/4.236.table b/eccodes/definitions/grib2/tables/26/4.236.table new file mode 100644 index 00000000..fbe093ce --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/eccodes/definitions/grib2/tables/26/4.238.table b/eccodes/definitions/grib2/tables/26/4.238.table new file mode 100644 index 00000000..be5be3a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.238.table @@ -0,0 +1,32 @@ +# Code table 4.238 - Source or sink +0 0 Other +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +12 12 Elevated anthropogenic sources +13 13 Surface anthropogenic sources +14 14 Agriculture livestock +15 15 Agriculture soils +16 16 Agriculture waste burning +17 17 Agriculture (all) +18 18 Residential, commercial and other combustion +19 19 Power generation +20 20 Super power stations +21 21 Fugitives +22 22 Industrial process +23 23 Solvents +24 24 Ships +25 25 Wastes (solid and water) +26 26 Road transportation +27 27 Off-road transportation +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.240.table b/eccodes/definitions/grib2/tables/26/4.240.table new file mode 100644 index 00000000..4daef3d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.241.table b/eccodes/definitions/grib2/tables/26/4.241.table new file mode 100644 index 00000000..a037b4ba --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.242.table b/eccodes/definitions/grib2/tables/26/4.242.table new file mode 100644 index 00000000..083f88c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/26/4.243.table b/eccodes/definitions/grib2/tables/26/4.243.table new file mode 100644 index 00000000..b3905331 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/eccodes/definitions/grib2/tables/26/4.244.table b/eccodes/definitions/grib2/tables/26/4.244.table new file mode 100644 index 00000000..40534ee0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.246.table b/eccodes/definitions/grib2/tables/26/4.246.table new file mode 100644 index 00000000..ab22dbe1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.246.table @@ -0,0 +1,7 @@ +# Code table 4.246 - Thunderstorm intensity +0 0 No thunderstorm occurence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.247.table b/eccodes/definitions/grib2/tables/26/4.247.table new file mode 100644 index 00000000..cd7fc90b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.247.table @@ -0,0 +1,7 @@ +# Code table 4.247 - Precipitation intensity +0 0 No precipitation occurrence +1 1 Light precipitation +2 2 Moderate precipitation +3 3 Heavy precipitation +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.3.table b/eccodes/definitions/grib2/tables/26/4.3.table new file mode 100644 index 00000000..8ba9e08a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.4.table b/eccodes/definitions/grib2/tables/26/4.4.table new file mode 100644 index 00000000..7087ebdd --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.5.table b/eccodes/definitions/grib2/tables/26/4.5.table new file mode 100644 index 00000000..3a9861bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.5.table @@ -0,0 +1,86 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +17 sfc Departure level of the most unstable parcel of air (MUDL) +18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) +# 19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 sol Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.6.table b/eccodes/definitions/grib2/tables/26/4.6.table new file mode 100644 index 00000000..b2dfeb49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.7.table b/eccodes/definitions/grib2/tables/26/4.7.table new file mode 100644 index 00000000..e0de0e1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.8.table b/eccodes/definitions/grib2/tables/26/4.8.table new file mode 100644 index 00000000..ad883039 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.9.table b/eccodes/definitions/grib2/tables/26/4.9.table new file mode 100644 index 00000000..9f74599c --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/4.91.table b/eccodes/definitions/grib2/tables/26/4.91.table new file mode 100644 index 00000000..44cf25f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/26/5.0.table b/eccodes/definitions/grib2/tables/26/5.0.table new file mode 100644 index 00000000..27b1a89f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.0.table @@ -0,0 +1,22 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.1.table b/eccodes/definitions/grib2/tables/26/5.1.table new file mode 100644 index 00000000..854330c7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.2.table b/eccodes/definitions/grib2/tables/26/5.2.table new file mode 100644 index 00000000..40586a13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.25.table b/eccodes/definitions/grib2/tables/26/5.25.table new file mode 100644 index 00000000..1b45f28a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.26.table b/eccodes/definitions/grib2/tables/26/5.26.table new file mode 100644 index 00000000..9e91ebf2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.3.table b/eccodes/definitions/grib2/tables/26/5.3.table new file mode 100644 index 00000000..c3b7b30f --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.4.table b/eccodes/definitions/grib2/tables/26/5.4.table new file mode 100644 index 00000000..8121c181 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.40.table b/eccodes/definitions/grib2/tables/26/5.40.table new file mode 100644 index 00000000..b9bad2c3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.5.table b/eccodes/definitions/grib2/tables/26/5.5.table new file mode 100644 index 00000000..3ef3eb07 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.6.table b/eccodes/definitions/grib2/tables/26/5.6.table new file mode 100644 index 00000000..6d517787 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/5.7.table b/eccodes/definitions/grib2/tables/26/5.7.table new file mode 100644 index 00000000..5ab78005 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/26/6.0.table b/eccodes/definitions/grib2/tables/26/6.0.table new file mode 100644 index 00000000..2a29aa28 --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/26/stepType.table b/eccodes/definitions/grib2/tables/26/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/26/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/3/0.0.table b/eccodes/definitions/grib2/tables/3/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/1.0.table b/eccodes/definitions/grib2/tables/3/1.0.table new file mode 100644 index 00000000..a34f44ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/1.0.table @@ -0,0 +1,7 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +# 4-254 Future operational version numbers +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/3/1.1.table b/eccodes/definitions/grib2/tables/3/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/1.2.table b/eccodes/definitions/grib2/tables/3/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/1.3.table b/eccodes/definitions/grib2/tables/3/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/1.4.table b/eccodes/definitions/grib2/tables/3/1.4.table new file mode 100644 index 00000000..ac21f5c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.0.table b/eccodes/definitions/grib2/tables/3/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/3/3.1.table b/eccodes/definitions/grib2/tables/3/3.1.table new file mode 100644 index 00000000..235fb8bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic can be south or north +# 21-29 Reserved +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.10.table b/eccodes/definitions/grib2/tables/3/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/3/3.11.table b/eccodes/definitions/grib2/tables/3/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.15.table b/eccodes/definitions/grib2/tables/3/3.15.table new file mode 100644 index 00000000..d4f7e0ed --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.15.table @@ -0,0 +1,17 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +20 20 Temperature K +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +160 160 Depth below sea level m +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.2.table b/eccodes/definitions/grib2/tables/3/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.20.table b/eccodes/definitions/grib2/tables/3/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.21.table b/eccodes/definitions/grib2/tables/3/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.3.table b/eccodes/definitions/grib2/tables/3/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/3/3.4.table b/eccodes/definitions/grib2/tables/3/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/3/3.5.table b/eccodes/definitions/grib2/tables/3/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/3/3.6.table b/eccodes/definitions/grib2/tables/3/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/3/3.7.table b/eccodes/definitions/grib2/tables/3/3.7.table new file mode 100644 index 00000000..b57c480a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.7.table @@ -0,0 +1,5 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/3.8.table b/eccodes/definitions/grib2/tables/3/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/3.9.table b/eccodes/definitions/grib2/tables/3/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/3/4.0.table b/eccodes/definitions/grib2/tables/3/4.0.table new file mode 100644 index 00000000..759512a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.0.table @@ -0,0 +1,38 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.1.0.table b/eccodes/definitions/grib2/tables/3/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.1.1.table b/eccodes/definitions/grib2/tables/3/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.1.10.table b/eccodes/definitions/grib2/tables/3/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.1.2.table b/eccodes/definitions/grib2/tables/3/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.1.3.table b/eccodes/definitions/grib2/tables/3/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.1.table b/eccodes/definitions/grib2/tables/3/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.10.table b/eccodes/definitions/grib2/tables/3/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/3/4.11.table b/eccodes/definitions/grib2/tables/3/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.12.table b/eccodes/definitions/grib2/tables/3/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.13.table b/eccodes/definitions/grib2/tables/3/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.14.table b/eccodes/definitions/grib2/tables/3/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.15.table b/eccodes/definitions/grib2/tables/3/4.15.table new file mode 100644 index 00000000..49b0b2d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.15.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.15, Type of auxiliary information + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.151.table b/eccodes/definitions/grib2/tables/3/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.0.table b/eccodes/definitions/grib2/tables/3/4.2.0.0.table new file mode 100644 index 00000000..0386b8cd --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.0.table @@ -0,0 +1,23 @@ +# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +#17-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.1.table b/eccodes/definitions/grib2/tables/3/4.2.0.1.table new file mode 100644 index 00000000..154f2d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.1.table @@ -0,0 +1,62 @@ +# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +#47-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.13.table b/eccodes/definitions/grib2/tables/3/4.2.0.13.table new file mode 100644 index 00000000..8fc3425a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.13.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.14.table b/eccodes/definitions/grib2/tables/3/4.2.0.14.table new file mode 100644 index 00000000..309c40d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.14.table @@ -0,0 +1,7 @@ +# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.15.table b/eccodes/definitions/grib2/tables/3/4.2.0.15.table new file mode 100644 index 00000000..bb419178 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.15.table @@ -0,0 +1,14 @@ +# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.18.table b/eccodes/definitions/grib2/tables/3/4.2.0.18.table new file mode 100644 index 00000000..5c0fd6e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.18.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.19.table b/eccodes/definitions/grib2/tables/3/4.2.0.19.table new file mode 100644 index 00000000..369c3f65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.19.table @@ -0,0 +1,24 @@ +# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +# 19-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.190.table b/eccodes/definitions/grib2/tables/3/4.2.0.190.table new file mode 100644 index 00000000..b1f47bc0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.190.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string +0 0 Arbitrary text string (CCITTIA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.191.table b/eccodes/definitions/grib2/tables/3/4.2.0.191.table new file mode 100644 index 00000000..affb98f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.191.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.2.table b/eccodes/definitions/grib2/tables/3/4.2.0.2.table new file mode 100644 index 00000000..1ec94510 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.2.table @@ -0,0 +1,35 @@ +# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.20.table b/eccodes/definitions/grib2/tables/3/4.2.0.20.table new file mode 100644 index 00000000..4e7f45db --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.20.table @@ -0,0 +1,13 @@ +0 0 Mass density (concentration) kg.m-3 +1 1 Total column (integrated mass density) kg.m-2 +2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 +3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 +4 4 Surface dry deposition mass flux kg.m-2.s-1 +5 5 Surface wet deposition mass flux kg.m-2.s-1 +6 6 Atmosphere emission mass flux kg.m-2.s-1 +7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 +8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 +9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 +#10-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.3.table b/eccodes/definitions/grib2/tables/3/4.2.0.3.table new file mode 100644 index 00000000..5c7e8151 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.3.table @@ -0,0 +1,25 @@ +# Product Discipline 0: Meteorological products, Parameter Category 3: Mass + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) +# 20-191 Reserved +# 192-254 Reserved for local use + 255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.4.table b/eccodes/definitions/grib2/tables/3/4.2.0.4.table new file mode 100644 index 00000000..815c184a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.4.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.5.table b/eccodes/definitions/grib2/tables/3/4.2.0.5.table new file mode 100644 index 00000000..1b57fa30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.5.table @@ -0,0 +1,11 @@ +# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.6.table b/eccodes/definitions/grib2/tables/3/4.2.0.6.table new file mode 100644 index 00000000..05cf72f5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.6.table @@ -0,0 +1,30 @@ +# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.7.table b/eccodes/definitions/grib2/tables/3/4.2.0.7.table new file mode 100644 index 00000000..78374fde --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.0.7.table @@ -0,0 +1,18 @@ +# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +#13-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.1.0.table b/eccodes/definitions/grib2/tables/3/4.2.1.0.table new file mode 100644 index 00000000..828c869d --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.1.0.table @@ -0,0 +1,9 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.1.1.table b/eccodes/definitions/grib2/tables/3/4.2.1.1.table new file mode 100644 index 00000000..b7342ef2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.1.1.table @@ -0,0 +1,8 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.0.table b/eccodes/definitions/grib2/tables/3/4.2.10.0.table new file mode 100644 index 00000000..479e26d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.10.0.table @@ -0,0 +1,20 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.1.table b/eccodes/definitions/grib2/tables/3/4.2.10.1.table new file mode 100644 index 00000000..df18f31d --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.10.1.table @@ -0,0 +1,8 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.2.table b/eccodes/definitions/grib2/tables/3/4.2.10.2.table new file mode 100644 index 00000000..cb73da46 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.10.2.table @@ -0,0 +1,12 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +# 8-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.3.table b/eccodes/definitions/grib2/tables/3/4.2.10.3.table new file mode 100644 index 00000000..a14ae22e --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.10.3.table @@ -0,0 +1,6 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.4.table b/eccodes/definitions/grib2/tables/3/4.2.10.4.table new file mode 100644 index 00000000..a24c3c8c --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.10.4.table @@ -0,0 +1,9 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.2.0.table b/eccodes/definitions/grib2/tables/3/4.2.2.0.table new file mode 100644 index 00000000..fdc8ce0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.2.0.table @@ -0,0 +1,29 @@ +# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +# 23-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.2.3.table b/eccodes/definitions/grib2/tables/3/4.2.2.3.table new file mode 100644 index 00000000..d6376fec --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.2.3.table @@ -0,0 +1,16 @@ +# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +# 11-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.3.0.table b/eccodes/definitions/grib2/tables/3/4.2.3.0.table new file mode 100644 index 00000000..94456638 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.3.0.table @@ -0,0 +1,14 @@ +# Product discipline 3: Space products, Parameter Category 0: Image format products +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.2.3.1.table b/eccodes/definitions/grib2/tables/3/4.2.3.1.table new file mode 100644 index 00000000..60d6e842 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.2.3.1.table @@ -0,0 +1,11 @@ +# Product Discipline 3: Space products, Parameter Category 1: Quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +# 6-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/3/4.201.table b/eccodes/definitions/grib2/tables/3/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.202.table b/eccodes/definitions/grib2/tables/3/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.203.table b/eccodes/definitions/grib2/tables/3/4.203.table new file mode 100644 index 00000000..a5b02a88 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.203.table @@ -0,0 +1,26 @@ +# CODE TABLE 4.203, Cloud type + +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.204.table b/eccodes/definitions/grib2/tables/3/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.205.table b/eccodes/definitions/grib2/tables/3/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.206.table b/eccodes/definitions/grib2/tables/3/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.207.table b/eccodes/definitions/grib2/tables/3/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.208.table b/eccodes/definitions/grib2/tables/3/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.209.table b/eccodes/definitions/grib2/tables/3/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.210.table b/eccodes/definitions/grib2/tables/3/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.211.table b/eccodes/definitions/grib2/tables/3/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.212.table b/eccodes/definitions/grib2/tables/3/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.213.table b/eccodes/definitions/grib2/tables/3/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.215.table b/eccodes/definitions/grib2/tables/3/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.216.table b/eccodes/definitions/grib2/tables/3/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.217.table b/eccodes/definitions/grib2/tables/3/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.220.table b/eccodes/definitions/grib2/tables/3/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.221.table b/eccodes/definitions/grib2/tables/3/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.230.table b/eccodes/definitions/grib2/tables/3/4.230.table new file mode 100644 index 00000000..23e819b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.230.table @@ -0,0 +1,47 @@ +#Code figure Code figure Meaning +0 0 Air +1 1 Ozone +2 2 Water vapour +3 3 Methane +4 4 Carbon dioxide +5 5 Carbon monoxide +6 6 Nitrogen dioxide +7 7 Nitrous oxide +8 8 Nitrogen monoxide +9 9 Formaldehyde +10 10 Sulphur dioxide +11 11 Nitric acid +12 12 All nitrogen oxides (NOy) expressed as nitrogen +13 13 Peroxyacetyl nitrate +14 14 Hydroxyl radical +15 15 Ammonia +16 16 Ammonium +17 17 Radon +18 18 Dimethyl sulphide +19 19 Hexachlorocyclohexane +20 20 Alpha hexachlorocyclohexane +21 21 Elemental mercury +22 22 Divalent mercury +23 23 Hexachlorobiphenyl +24 24 NOx expressed as nitrogen +25 25 Non-methane volatile organic compounds expressed as carbon +26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon +27 27 Biogenic non-methane volatile organic compounds expressed as carbon +#28-39999 28-39999 Reserved +40000 40000 Sulphate dry aerosol +40001 40001 Black carbon dry aerosol +40002 40002 Particulate organic matter dry aerosol +40003 40003 Primary particulate organic matter dry aerosol +40004 40004 Secondary particulate organic matter dry aerosol +40005 40005 Sea salt dry aerosol +40006 40006 Dust dry aerosol +40007 40007 Mercury dry aerosol +40008 40008 PM10 aerosol +40009 40009 PM2P5 aerosol +40010 40010 PM1 aerosol +40011 40011 Nitrate dry aerosol +40012 40012 Ammonium dry aerosol +40013 40013 Water in ambient aerosol +#40014-63999 40014-63999 Reserved +#64000-65534 64000-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.3.table b/eccodes/definitions/grib2/tables/3/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.4.table b/eccodes/definitions/grib2/tables/3/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.5.table b/eccodes/definitions/grib2/tables/3/4.5.table new file mode 100644 index 00000000..89c5fb17 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.5.table @@ -0,0 +1,33 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.6.table b/eccodes/definitions/grib2/tables/3/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.7.table b/eccodes/definitions/grib2/tables/3/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.8.table b/eccodes/definitions/grib2/tables/3/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.9.table b/eccodes/definitions/grib2/tables/3/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/4.91.table b/eccodes/definitions/grib2/tables/3/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/3/5.0.table b/eccodes/definitions/grib2/tables/3/5.0.table new file mode 100644 index 00000000..0cf3752c --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.0.table @@ -0,0 +1,16 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib2/tables/3/5.1.table b/eccodes/definitions/grib2/tables/3/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.2.table b/eccodes/definitions/grib2/tables/3/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.3.table b/eccodes/definitions/grib2/tables/3/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.4.table b/eccodes/definitions/grib2/tables/3/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.40.table b/eccodes/definitions/grib2/tables/3/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.40000.table b/eccodes/definitions/grib2/tables/3/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.5.table b/eccodes/definitions/grib2/tables/3/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.50002.table b/eccodes/definitions/grib2/tables/3/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/3/5.6.table b/eccodes/definitions/grib2/tables/3/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.7.table b/eccodes/definitions/grib2/tables/3/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.8.table b/eccodes/definitions/grib2/tables/3/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/5.9.table b/eccodes/definitions/grib2/tables/3/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/3/6.0.table b/eccodes/definitions/grib2/tables/3/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/3/stepType.table b/eccodes/definitions/grib2/tables/3/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/3/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/4/0.0.table b/eccodes/definitions/grib2/tables/4/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/1.0.table b/eccodes/definitions/grib2/tables/4/1.0.table new file mode 100644 index 00000000..a34f44ee --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/1.0.table @@ -0,0 +1,7 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +# 4-254 Future operational version numbers +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/4/1.1.table b/eccodes/definitions/grib2/tables/4/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/1.2.table b/eccodes/definitions/grib2/tables/4/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/1.3.table b/eccodes/definitions/grib2/tables/4/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/1.4.table b/eccodes/definitions/grib2/tables/4/1.4.table new file mode 100644 index 00000000..ac21f5c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.0.table b/eccodes/definitions/grib2/tables/4/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/4/3.1.table b/eccodes/definitions/grib2/tables/4/3.1.table new file mode 100644 index 00000000..a989a78a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic (can be south or north) +# 21-29 Reserved +30 30 Lambert Conformal (can be secant or tangent, conical or bipolar) +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.10.table b/eccodes/definitions/grib2/tables/4/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/4/3.11.table b/eccodes/definitions/grib2/tables/4/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.15.table b/eccodes/definitions/grib2/tables/4/3.15.table new file mode 100644 index 00000000..6a035be5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.15.table @@ -0,0 +1,22 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature K +# 21-99 Reserved +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +# 113-159 Reserved +160 160 Depth below sea level m +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.2.table b/eccodes/definitions/grib2/tables/4/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.20.table b/eccodes/definitions/grib2/tables/4/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.21.table b/eccodes/definitions/grib2/tables/4/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.3.table b/eccodes/definitions/grib2/tables/4/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/4/3.4.table b/eccodes/definitions/grib2/tables/4/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/4/3.5.table b/eccodes/definitions/grib2/tables/4/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/4/3.6.table b/eccodes/definitions/grib2/tables/4/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/4/3.7.table b/eccodes/definitions/grib2/tables/4/3.7.table new file mode 100644 index 00000000..b57c480a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.7.table @@ -0,0 +1,5 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/3.8.table b/eccodes/definitions/grib2/tables/4/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/3.9.table b/eccodes/definitions/grib2/tables/4/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/4/4.0.table b/eccodes/definitions/grib2/tables/4/4.0.table new file mode 100644 index 00000000..c24b5f2c --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.0.table @@ -0,0 +1,39 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval diff --git a/eccodes/definitions/grib2/tables/4/4.1.0.table b/eccodes/definitions/grib2/tables/4/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.1.table b/eccodes/definitions/grib2/tables/4/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.10.table b/eccodes/definitions/grib2/tables/4/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.192.table b/eccodes/definitions/grib2/tables/4/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.2.table b/eccodes/definitions/grib2/tables/4/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.3.table b/eccodes/definitions/grib2/tables/4/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.1.table b/eccodes/definitions/grib2/tables/4/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.10.table b/eccodes/definitions/grib2/tables/4/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/4/4.11.table b/eccodes/definitions/grib2/tables/4/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.12.table b/eccodes/definitions/grib2/tables/4/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.13.table b/eccodes/definitions/grib2/tables/4/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.14.table b/eccodes/definitions/grib2/tables/4/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.15.table b/eccodes/definitions/grib2/tables/4/4.15.table new file mode 100644 index 00000000..49b0b2d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.15.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.15, Type of auxiliary information + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.151.table b/eccodes/definitions/grib2/tables/4/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.0.table b/eccodes/definitions/grib2/tables/4/4.2.0.0.table new file mode 100644 index 00000000..0386b8cd --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.0.table @@ -0,0 +1,23 @@ +# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +#17-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.1.table b/eccodes/definitions/grib2/tables/4/4.2.0.1.table new file mode 100644 index 00000000..6012e4be --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.1.table @@ -0,0 +1,62 @@ +# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +#47-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.13.table b/eccodes/definitions/grib2/tables/4/4.2.0.13.table new file mode 100644 index 00000000..8fc3425a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.13.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.14.table b/eccodes/definitions/grib2/tables/4/4.2.0.14.table new file mode 100644 index 00000000..309c40d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.14.table @@ -0,0 +1,7 @@ +# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.15.table b/eccodes/definitions/grib2/tables/4/4.2.0.15.table new file mode 100644 index 00000000..bb419178 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.15.table @@ -0,0 +1,14 @@ +# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.18.table b/eccodes/definitions/grib2/tables/4/4.2.0.18.table new file mode 100644 index 00000000..5c0fd6e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.18.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.19.table b/eccodes/definitions/grib2/tables/4/4.2.0.19.table new file mode 100644 index 00000000..369c3f65 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.19.table @@ -0,0 +1,24 @@ +# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +# 19-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.190.table b/eccodes/definitions/grib2/tables/4/4.2.0.190.table new file mode 100644 index 00000000..b1f47bc0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.190.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string +0 0 Arbitrary text string (CCITTIA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.191.table b/eccodes/definitions/grib2/tables/4/4.2.0.191.table new file mode 100644 index 00000000..affb98f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.191.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.2.table b/eccodes/definitions/grib2/tables/4/4.2.0.2.table new file mode 100644 index 00000000..1ec94510 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.2.table @@ -0,0 +1,35 @@ +# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.20.table b/eccodes/definitions/grib2/tables/4/4.2.0.20.table new file mode 100644 index 00000000..b72d5fe5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.20.table @@ -0,0 +1,13 @@ +0 0 Mass density (concentration) (kg.m-3) +1 1 Total column (integrated mass density) (kg.m-2) +2 2 Volume mixing ratio (mole fraction in air) (mole.mole-1) +3 3 Mass mixing ratio (mass fraction in air) (kg.kg-1) +4 4 Surface dry deposition mass flux (kg.m-2.s-1) +5 5 Surface wet deposition mass flux (kg.m-2.s-1) +6 6 Atmosphere emission mass flux (kg.m-2.s-1) +7 7 Chemical gross production rate of mole concentration (mole.m-3.s-1) +8 8 Chemical gross destruction rate of mole concentration (mole.m-3.s-1) +9 9 Surface dry deposition mass flux into stomata (kg.m-2.s-1) +#10-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.3.table b/eccodes/definitions/grib2/tables/4/4.2.0.3.table new file mode 100644 index 00000000..5c7e8151 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.3.table @@ -0,0 +1,25 @@ +# Product Discipline 0: Meteorological products, Parameter Category 3: Mass + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) +# 20-191 Reserved +# 192-254 Reserved for local use + 255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.4.table b/eccodes/definitions/grib2/tables/4/4.2.0.4.table new file mode 100644 index 00000000..815c184a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.4.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.5.table b/eccodes/definitions/grib2/tables/4/4.2.0.5.table new file mode 100644 index 00000000..1b57fa30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.5.table @@ -0,0 +1,11 @@ +# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.6.table b/eccodes/definitions/grib2/tables/4/4.2.0.6.table new file mode 100644 index 00000000..05cf72f5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.6.table @@ -0,0 +1,30 @@ +# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.7.table b/eccodes/definitions/grib2/tables/4/4.2.0.7.table new file mode 100644 index 00000000..78374fde --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.0.7.table @@ -0,0 +1,18 @@ +# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +#13-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.1.0.table b/eccodes/definitions/grib2/tables/4/4.2.1.0.table new file mode 100644 index 00000000..1e867e1c --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.1.0.table @@ -0,0 +1,11 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.1.1.table b/eccodes/definitions/grib2/tables/4/4.2.1.1.table new file mode 100644 index 00000000..b7342ef2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.1.1.table @@ -0,0 +1,8 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.0.table b/eccodes/definitions/grib2/tables/4/4.2.10.0.table new file mode 100644 index 00000000..479e26d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.10.0.table @@ -0,0 +1,20 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.1.table b/eccodes/definitions/grib2/tables/4/4.2.10.1.table new file mode 100644 index 00000000..df18f31d --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.10.1.table @@ -0,0 +1,8 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.2.table b/eccodes/definitions/grib2/tables/4/4.2.10.2.table new file mode 100644 index 00000000..cb73da46 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.10.2.table @@ -0,0 +1,12 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +# 8-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.3.table b/eccodes/definitions/grib2/tables/4/4.2.10.3.table new file mode 100644 index 00000000..a14ae22e --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.10.3.table @@ -0,0 +1,6 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.4.table b/eccodes/definitions/grib2/tables/4/4.2.10.4.table new file mode 100644 index 00000000..a24c3c8c --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.10.4.table @@ -0,0 +1,9 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.0.table b/eccodes/definitions/grib2/tables/4/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.1.table b/eccodes/definitions/grib2/tables/4/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.10.table b/eccodes/definitions/grib2/tables/4/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.100.table b/eccodes/definitions/grib2/tables/4/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.101.table b/eccodes/definitions/grib2/tables/4/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.102.table b/eccodes/definitions/grib2/tables/4/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.103.table b/eccodes/definitions/grib2/tables/4/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.104.table b/eccodes/definitions/grib2/tables/4/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.105.table b/eccodes/definitions/grib2/tables/4/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.106.table b/eccodes/definitions/grib2/tables/4/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.107.table b/eccodes/definitions/grib2/tables/4/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.108.table b/eccodes/definitions/grib2/tables/4/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.109.table b/eccodes/definitions/grib2/tables/4/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.11.table b/eccodes/definitions/grib2/tables/4/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.110.table b/eccodes/definitions/grib2/tables/4/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.111.table b/eccodes/definitions/grib2/tables/4/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.112.table b/eccodes/definitions/grib2/tables/4/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.113.table b/eccodes/definitions/grib2/tables/4/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.114.table b/eccodes/definitions/grib2/tables/4/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.115.table b/eccodes/definitions/grib2/tables/4/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.116.table b/eccodes/definitions/grib2/tables/4/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.117.table b/eccodes/definitions/grib2/tables/4/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.118.table b/eccodes/definitions/grib2/tables/4/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.119.table b/eccodes/definitions/grib2/tables/4/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.12.table b/eccodes/definitions/grib2/tables/4/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.120.table b/eccodes/definitions/grib2/tables/4/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.121.table b/eccodes/definitions/grib2/tables/4/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.122.table b/eccodes/definitions/grib2/tables/4/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.123.table b/eccodes/definitions/grib2/tables/4/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.124.table b/eccodes/definitions/grib2/tables/4/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.125.table b/eccodes/definitions/grib2/tables/4/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.126.table b/eccodes/definitions/grib2/tables/4/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.127.table b/eccodes/definitions/grib2/tables/4/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.128.table b/eccodes/definitions/grib2/tables/4/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.129.table b/eccodes/definitions/grib2/tables/4/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.13.table b/eccodes/definitions/grib2/tables/4/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.130.table b/eccodes/definitions/grib2/tables/4/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.131.table b/eccodes/definitions/grib2/tables/4/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.132.table b/eccodes/definitions/grib2/tables/4/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.133.table b/eccodes/definitions/grib2/tables/4/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.134.table b/eccodes/definitions/grib2/tables/4/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.135.table b/eccodes/definitions/grib2/tables/4/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.136.table b/eccodes/definitions/grib2/tables/4/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.137.table b/eccodes/definitions/grib2/tables/4/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.138.table b/eccodes/definitions/grib2/tables/4/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.139.table b/eccodes/definitions/grib2/tables/4/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.14.table b/eccodes/definitions/grib2/tables/4/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.140.table b/eccodes/definitions/grib2/tables/4/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.141.table b/eccodes/definitions/grib2/tables/4/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.142.table b/eccodes/definitions/grib2/tables/4/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.143.table b/eccodes/definitions/grib2/tables/4/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.144.table b/eccodes/definitions/grib2/tables/4/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.145.table b/eccodes/definitions/grib2/tables/4/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.146.table b/eccodes/definitions/grib2/tables/4/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.147.table b/eccodes/definitions/grib2/tables/4/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.148.table b/eccodes/definitions/grib2/tables/4/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.149.table b/eccodes/definitions/grib2/tables/4/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.15.table b/eccodes/definitions/grib2/tables/4/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.150.table b/eccodes/definitions/grib2/tables/4/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.151.table b/eccodes/definitions/grib2/tables/4/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.152.table b/eccodes/definitions/grib2/tables/4/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.153.table b/eccodes/definitions/grib2/tables/4/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.154.table b/eccodes/definitions/grib2/tables/4/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.155.table b/eccodes/definitions/grib2/tables/4/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.156.table b/eccodes/definitions/grib2/tables/4/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.157.table b/eccodes/definitions/grib2/tables/4/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.158.table b/eccodes/definitions/grib2/tables/4/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.159.table b/eccodes/definitions/grib2/tables/4/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.16.table b/eccodes/definitions/grib2/tables/4/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.160.table b/eccodes/definitions/grib2/tables/4/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.161.table b/eccodes/definitions/grib2/tables/4/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.162.table b/eccodes/definitions/grib2/tables/4/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.163.table b/eccodes/definitions/grib2/tables/4/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.164.table b/eccodes/definitions/grib2/tables/4/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.165.table b/eccodes/definitions/grib2/tables/4/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.166.table b/eccodes/definitions/grib2/tables/4/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.167.table b/eccodes/definitions/grib2/tables/4/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.168.table b/eccodes/definitions/grib2/tables/4/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.169.table b/eccodes/definitions/grib2/tables/4/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.17.table b/eccodes/definitions/grib2/tables/4/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.170.table b/eccodes/definitions/grib2/tables/4/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.171.table b/eccodes/definitions/grib2/tables/4/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.172.table b/eccodes/definitions/grib2/tables/4/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.173.table b/eccodes/definitions/grib2/tables/4/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.174.table b/eccodes/definitions/grib2/tables/4/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.175.table b/eccodes/definitions/grib2/tables/4/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.176.table b/eccodes/definitions/grib2/tables/4/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.177.table b/eccodes/definitions/grib2/tables/4/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.178.table b/eccodes/definitions/grib2/tables/4/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.179.table b/eccodes/definitions/grib2/tables/4/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.18.table b/eccodes/definitions/grib2/tables/4/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.180.table b/eccodes/definitions/grib2/tables/4/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.181.table b/eccodes/definitions/grib2/tables/4/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.182.table b/eccodes/definitions/grib2/tables/4/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.183.table b/eccodes/definitions/grib2/tables/4/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.184.table b/eccodes/definitions/grib2/tables/4/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.185.table b/eccodes/definitions/grib2/tables/4/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.186.table b/eccodes/definitions/grib2/tables/4/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.187.table b/eccodes/definitions/grib2/tables/4/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.188.table b/eccodes/definitions/grib2/tables/4/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.189.table b/eccodes/definitions/grib2/tables/4/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.19.table b/eccodes/definitions/grib2/tables/4/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.190.table b/eccodes/definitions/grib2/tables/4/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.191.table b/eccodes/definitions/grib2/tables/4/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.192.table b/eccodes/definitions/grib2/tables/4/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.193.table b/eccodes/definitions/grib2/tables/4/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.194.table b/eccodes/definitions/grib2/tables/4/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.195.table b/eccodes/definitions/grib2/tables/4/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.196.table b/eccodes/definitions/grib2/tables/4/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.197.table b/eccodes/definitions/grib2/tables/4/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.198.table b/eccodes/definitions/grib2/tables/4/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.199.table b/eccodes/definitions/grib2/tables/4/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.2.table b/eccodes/definitions/grib2/tables/4/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.20.table b/eccodes/definitions/grib2/tables/4/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.200.table b/eccodes/definitions/grib2/tables/4/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.201.table b/eccodes/definitions/grib2/tables/4/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.202.table b/eccodes/definitions/grib2/tables/4/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.203.table b/eccodes/definitions/grib2/tables/4/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.204.table b/eccodes/definitions/grib2/tables/4/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.205.table b/eccodes/definitions/grib2/tables/4/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.206.table b/eccodes/definitions/grib2/tables/4/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.207.table b/eccodes/definitions/grib2/tables/4/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.208.table b/eccodes/definitions/grib2/tables/4/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.209.table b/eccodes/definitions/grib2/tables/4/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.21.table b/eccodes/definitions/grib2/tables/4/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.210.table b/eccodes/definitions/grib2/tables/4/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.211.table b/eccodes/definitions/grib2/tables/4/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.212.table b/eccodes/definitions/grib2/tables/4/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.213.table b/eccodes/definitions/grib2/tables/4/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.214.table b/eccodes/definitions/grib2/tables/4/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.215.table b/eccodes/definitions/grib2/tables/4/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.216.table b/eccodes/definitions/grib2/tables/4/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.217.table b/eccodes/definitions/grib2/tables/4/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.218.table b/eccodes/definitions/grib2/tables/4/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.219.table b/eccodes/definitions/grib2/tables/4/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.22.table b/eccodes/definitions/grib2/tables/4/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.220.table b/eccodes/definitions/grib2/tables/4/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.221.table b/eccodes/definitions/grib2/tables/4/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.222.table b/eccodes/definitions/grib2/tables/4/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.223.table b/eccodes/definitions/grib2/tables/4/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.224.table b/eccodes/definitions/grib2/tables/4/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.225.table b/eccodes/definitions/grib2/tables/4/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.226.table b/eccodes/definitions/grib2/tables/4/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.227.table b/eccodes/definitions/grib2/tables/4/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.228.table b/eccodes/definitions/grib2/tables/4/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.229.table b/eccodes/definitions/grib2/tables/4/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.23.table b/eccodes/definitions/grib2/tables/4/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.230.table b/eccodes/definitions/grib2/tables/4/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.231.table b/eccodes/definitions/grib2/tables/4/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.232.table b/eccodes/definitions/grib2/tables/4/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.233.table b/eccodes/definitions/grib2/tables/4/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.234.table b/eccodes/definitions/grib2/tables/4/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.235.table b/eccodes/definitions/grib2/tables/4/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.236.table b/eccodes/definitions/grib2/tables/4/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.237.table b/eccodes/definitions/grib2/tables/4/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.238.table b/eccodes/definitions/grib2/tables/4/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.239.table b/eccodes/definitions/grib2/tables/4/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.24.table b/eccodes/definitions/grib2/tables/4/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.240.table b/eccodes/definitions/grib2/tables/4/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.241.table b/eccodes/definitions/grib2/tables/4/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.242.table b/eccodes/definitions/grib2/tables/4/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.243.table b/eccodes/definitions/grib2/tables/4/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.244.table b/eccodes/definitions/grib2/tables/4/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.245.table b/eccodes/definitions/grib2/tables/4/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.246.table b/eccodes/definitions/grib2/tables/4/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.247.table b/eccodes/definitions/grib2/tables/4/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.248.table b/eccodes/definitions/grib2/tables/4/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.249.table b/eccodes/definitions/grib2/tables/4/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.25.table b/eccodes/definitions/grib2/tables/4/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.250.table b/eccodes/definitions/grib2/tables/4/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.251.table b/eccodes/definitions/grib2/tables/4/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.252.table b/eccodes/definitions/grib2/tables/4/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.253.table b/eccodes/definitions/grib2/tables/4/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.254.table b/eccodes/definitions/grib2/tables/4/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.255.table b/eccodes/definitions/grib2/tables/4/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.26.table b/eccodes/definitions/grib2/tables/4/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.27.table b/eccodes/definitions/grib2/tables/4/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.28.table b/eccodes/definitions/grib2/tables/4/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.29.table b/eccodes/definitions/grib2/tables/4/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.3.table b/eccodes/definitions/grib2/tables/4/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.30.table b/eccodes/definitions/grib2/tables/4/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.31.table b/eccodes/definitions/grib2/tables/4/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.32.table b/eccodes/definitions/grib2/tables/4/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.33.table b/eccodes/definitions/grib2/tables/4/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.34.table b/eccodes/definitions/grib2/tables/4/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.35.table b/eccodes/definitions/grib2/tables/4/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.36.table b/eccodes/definitions/grib2/tables/4/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.37.table b/eccodes/definitions/grib2/tables/4/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.38.table b/eccodes/definitions/grib2/tables/4/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.39.table b/eccodes/definitions/grib2/tables/4/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.4.table b/eccodes/definitions/grib2/tables/4/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.40.table b/eccodes/definitions/grib2/tables/4/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.41.table b/eccodes/definitions/grib2/tables/4/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.42.table b/eccodes/definitions/grib2/tables/4/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.43.table b/eccodes/definitions/grib2/tables/4/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.44.table b/eccodes/definitions/grib2/tables/4/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.45.table b/eccodes/definitions/grib2/tables/4/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.46.table b/eccodes/definitions/grib2/tables/4/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.47.table b/eccodes/definitions/grib2/tables/4/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.48.table b/eccodes/definitions/grib2/tables/4/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.49.table b/eccodes/definitions/grib2/tables/4/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.5.table b/eccodes/definitions/grib2/tables/4/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.50.table b/eccodes/definitions/grib2/tables/4/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.51.table b/eccodes/definitions/grib2/tables/4/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.52.table b/eccodes/definitions/grib2/tables/4/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.53.table b/eccodes/definitions/grib2/tables/4/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.54.table b/eccodes/definitions/grib2/tables/4/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.55.table b/eccodes/definitions/grib2/tables/4/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.56.table b/eccodes/definitions/grib2/tables/4/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.57.table b/eccodes/definitions/grib2/tables/4/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.58.table b/eccodes/definitions/grib2/tables/4/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.59.table b/eccodes/definitions/grib2/tables/4/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.6.table b/eccodes/definitions/grib2/tables/4/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.60.table b/eccodes/definitions/grib2/tables/4/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.61.table b/eccodes/definitions/grib2/tables/4/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.62.table b/eccodes/definitions/grib2/tables/4/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.63.table b/eccodes/definitions/grib2/tables/4/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.64.table b/eccodes/definitions/grib2/tables/4/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.65.table b/eccodes/definitions/grib2/tables/4/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.66.table b/eccodes/definitions/grib2/tables/4/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.67.table b/eccodes/definitions/grib2/tables/4/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.68.table b/eccodes/definitions/grib2/tables/4/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.69.table b/eccodes/definitions/grib2/tables/4/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.7.table b/eccodes/definitions/grib2/tables/4/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.70.table b/eccodes/definitions/grib2/tables/4/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.71.table b/eccodes/definitions/grib2/tables/4/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.72.table b/eccodes/definitions/grib2/tables/4/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.73.table b/eccodes/definitions/grib2/tables/4/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.74.table b/eccodes/definitions/grib2/tables/4/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.75.table b/eccodes/definitions/grib2/tables/4/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.76.table b/eccodes/definitions/grib2/tables/4/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.77.table b/eccodes/definitions/grib2/tables/4/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.78.table b/eccodes/definitions/grib2/tables/4/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.79.table b/eccodes/definitions/grib2/tables/4/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.8.table b/eccodes/definitions/grib2/tables/4/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.80.table b/eccodes/definitions/grib2/tables/4/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.81.table b/eccodes/definitions/grib2/tables/4/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.82.table b/eccodes/definitions/grib2/tables/4/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.83.table b/eccodes/definitions/grib2/tables/4/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.84.table b/eccodes/definitions/grib2/tables/4/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.85.table b/eccodes/definitions/grib2/tables/4/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.86.table b/eccodes/definitions/grib2/tables/4/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.87.table b/eccodes/definitions/grib2/tables/4/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.88.table b/eccodes/definitions/grib2/tables/4/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.89.table b/eccodes/definitions/grib2/tables/4/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.9.table b/eccodes/definitions/grib2/tables/4/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.90.table b/eccodes/definitions/grib2/tables/4/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.91.table b/eccodes/definitions/grib2/tables/4/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.92.table b/eccodes/definitions/grib2/tables/4/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.93.table b/eccodes/definitions/grib2/tables/4/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.94.table b/eccodes/definitions/grib2/tables/4/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.95.table b/eccodes/definitions/grib2/tables/4/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.96.table b/eccodes/definitions/grib2/tables/4/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.97.table b/eccodes/definitions/grib2/tables/4/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.98.table b/eccodes/definitions/grib2/tables/4/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.99.table b/eccodes/definitions/grib2/tables/4/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/4/4.2.2.0.table b/eccodes/definitions/grib2/tables/4/4.2.2.0.table new file mode 100644 index 00000000..67ad39b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.2.0.table @@ -0,0 +1,29 @@ +# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +# 23-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.2.3.table b/eccodes/definitions/grib2/tables/4/4.2.2.3.table new file mode 100644 index 00000000..d6376fec --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.2.3.table @@ -0,0 +1,16 @@ +# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +# 11-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.3.0.table b/eccodes/definitions/grib2/tables/4/4.2.3.0.table new file mode 100644 index 00000000..94456638 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.3.0.table @@ -0,0 +1,14 @@ +# Product discipline 3: Space products, Parameter Category 0: Image format products +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.2.3.1.table b/eccodes/definitions/grib2/tables/4/4.2.3.1.table new file mode 100644 index 00000000..60d6e842 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.2.3.1.table @@ -0,0 +1,11 @@ +# Product Discipline 3: Space products, Parameter Category 1: Quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +# 6-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/4/4.201.table b/eccodes/definitions/grib2/tables/4/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.202.table b/eccodes/definitions/grib2/tables/4/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.203.table b/eccodes/definitions/grib2/tables/4/4.203.table new file mode 100644 index 00000000..d2ad10b0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.203.table @@ -0,0 +1,88 @@ +# CODE TABLE 4.203, Cloud type + +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.204.table b/eccodes/definitions/grib2/tables/4/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.205.table b/eccodes/definitions/grib2/tables/4/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.206.table b/eccodes/definitions/grib2/tables/4/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.207.table b/eccodes/definitions/grib2/tables/4/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.208.table b/eccodes/definitions/grib2/tables/4/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.209.table b/eccodes/definitions/grib2/tables/4/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.210.table b/eccodes/definitions/grib2/tables/4/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.211.table b/eccodes/definitions/grib2/tables/4/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.212.table b/eccodes/definitions/grib2/tables/4/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.213.table b/eccodes/definitions/grib2/tables/4/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.215.table b/eccodes/definitions/grib2/tables/4/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.216.table b/eccodes/definitions/grib2/tables/4/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.217.table b/eccodes/definitions/grib2/tables/4/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.220.table b/eccodes/definitions/grib2/tables/4/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.221.table b/eccodes/definitions/grib2/tables/4/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.230.table b/eccodes/definitions/grib2/tables/4/4.230.table new file mode 100644 index 00000000..638358ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.230.table @@ -0,0 +1,47 @@ +#Code figure Code figure Meaning +0 air Air +1 ozone Ozone +2 water Water vapour +3 methane Methane +4 carbonDioxide Carbon dioxide +5 carbonMonoxide Carbon monoxide +6 nitrogenDioxide Nitrogen dioxide +7 nitrousOxide Nitrous oxide +8 8 Nitrogen monoxide +9 9 Formaldehyde +10 10 Sulphur dioxide +11 11 Nitric acid +12 noy All nitrogen oxides (NOy) expressed as nitrogen +13 13 Peroxyacetyl nitrate +14 14 Hydroxyl radical +15 15 Ammonia +16 16 Ammonium +17 17 Radon +18 18 Dimethyl sulphide +19 hexachlorocyclohexane Hexachlorocyclohexane +20 20 Alpha hexachlorocyclohexane +21 21 Elemental mercury +22 22 Divalent mercury +23 23 Hexachlorobiphenyl +24 nox NOx expressed as nitrogen +25 nmvoc Non-methane volatile organic compounds expressed as carbon +26 anmvoc Anthropogenic non-methane volatile organic compounds expressed as carbon +27 bnmvoc Biogenic non-methane volatile organic compounds expressed as carbon +#28-39999 28-39999 Reserved +40000 40000 Sulphate dry aerosol +40001 40001 Black carbon dry aerosol +40002 40002 Particulate organic matter dry aerosol +40003 40003 Primary particulate organic matter dry aerosol +40004 40004 Secondary particulate organic matter dry aerosol +40005 40005 Sea salt dry aerosol +40006 40006 Dust dry aerosol +40007 40007 Mercury dry aerosol +40008 40008 PM10 aerosol +40009 40009 PM2P5 aerosol +40010 40010 PM1 aerosol +40011 40011 Nitrate dry aerosol +40012 40012 Ammonium dry aerosol +40013 40013 Water in ambient aerosol +#40014-63999 40014-63999 Reserved +#64000-65534 64000-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.3.table b/eccodes/definitions/grib2/tables/4/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.4.table b/eccodes/definitions/grib2/tables/4/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.5.table b/eccodes/definitions/grib2/tables/4/4.5.table new file mode 100644 index 00000000..89c5fb17 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.5.table @@ -0,0 +1,33 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.6.table b/eccodes/definitions/grib2/tables/4/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.7.table b/eccodes/definitions/grib2/tables/4/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.8.table b/eccodes/definitions/grib2/tables/4/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.9.table b/eccodes/definitions/grib2/tables/4/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/4.91.table b/eccodes/definitions/grib2/tables/4/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/4/5.0.table b/eccodes/definitions/grib2/tables/4/5.0.table new file mode 100644 index 00000000..0cf3752c --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.0.table @@ -0,0 +1,16 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib2/tables/4/5.1.table b/eccodes/definitions/grib2/tables/4/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.2.table b/eccodes/definitions/grib2/tables/4/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.3.table b/eccodes/definitions/grib2/tables/4/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.4.table b/eccodes/definitions/grib2/tables/4/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.40.table b/eccodes/definitions/grib2/tables/4/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.40000.table b/eccodes/definitions/grib2/tables/4/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.5.table b/eccodes/definitions/grib2/tables/4/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.50002.table b/eccodes/definitions/grib2/tables/4/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/4/5.6.table b/eccodes/definitions/grib2/tables/4/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.7.table b/eccodes/definitions/grib2/tables/4/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.8.table b/eccodes/definitions/grib2/tables/4/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/5.9.table b/eccodes/definitions/grib2/tables/4/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/4/6.0.table b/eccodes/definitions/grib2/tables/4/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/4/stepType.table b/eccodes/definitions/grib2/tables/4/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/4/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/5/0.0.table b/eccodes/definitions/grib2/tables/5/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/1.0.table b/eccodes/definitions/grib2/tables/5/1.0.table new file mode 100644 index 00000000..e1a71a03 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/1.0.table @@ -0,0 +1,10 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Pre-operational to be implemented by next amendment +# 7-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/5/1.1.table b/eccodes/definitions/grib2/tables/5/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/1.2.table b/eccodes/definitions/grib2/tables/5/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/1.3.table b/eccodes/definitions/grib2/tables/5/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/1.4.table b/eccodes/definitions/grib2/tables/5/1.4.table new file mode 100644 index 00000000..8166b776 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/5/3.0.table b/eccodes/definitions/grib2/tables/5/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/5/3.1.table b/eccodes/definitions/grib2/tables/5/3.1.table new file mode 100644 index 00000000..a989a78a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic (can be south or north) +# 21-29 Reserved +30 30 Lambert Conformal (can be secant or tangent, conical or bipolar) +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.10.table b/eccodes/definitions/grib2/tables/5/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/5/3.11.table b/eccodes/definitions/grib2/tables/5/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.15.table b/eccodes/definitions/grib2/tables/5/3.15.table new file mode 100644 index 00000000..6a035be5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.15.table @@ -0,0 +1,22 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature K +# 21-99 Reserved +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +# 113-159 Reserved +160 160 Depth below sea level m +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.2.table b/eccodes/definitions/grib2/tables/5/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.20.table b/eccodes/definitions/grib2/tables/5/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.21.table b/eccodes/definitions/grib2/tables/5/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.3.table b/eccodes/definitions/grib2/tables/5/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/5/3.4.table b/eccodes/definitions/grib2/tables/5/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/5/3.5.table b/eccodes/definitions/grib2/tables/5/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/5/3.6.table b/eccodes/definitions/grib2/tables/5/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/5/3.7.table b/eccodes/definitions/grib2/tables/5/3.7.table new file mode 100644 index 00000000..b57c480a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.7.table @@ -0,0 +1,5 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/3.8.table b/eccodes/definitions/grib2/tables/5/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/5/3.9.table b/eccodes/definitions/grib2/tables/5/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/5/4.0.table b/eccodes/definitions/grib2/tables/5/4.0.table new file mode 100644 index 00000000..1fbcea16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.0.table @@ -0,0 +1,41 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval + +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.1.0.table b/eccodes/definitions/grib2/tables/5/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.1.table b/eccodes/definitions/grib2/tables/5/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.10.table b/eccodes/definitions/grib2/tables/5/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.192.table b/eccodes/definitions/grib2/tables/5/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.2.table b/eccodes/definitions/grib2/tables/5/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.3.table b/eccodes/definitions/grib2/tables/5/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/5/4.1.table b/eccodes/definitions/grib2/tables/5/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.10.table b/eccodes/definitions/grib2/tables/5/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/5/4.11.table b/eccodes/definitions/grib2/tables/5/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.12.table b/eccodes/definitions/grib2/tables/5/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.13.table b/eccodes/definitions/grib2/tables/5/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.14.table b/eccodes/definitions/grib2/tables/5/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.15.table b/eccodes/definitions/grib2/tables/5/4.15.table new file mode 100644 index 00000000..50412802 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.15.table @@ -0,0 +1,10 @@ +0 0 Data is calculated directly from the source grid with no interpolation (see note 1) +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) +#7-191 Reserved +#192-254 Reserved for Local Use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.151.table b/eccodes/definitions/grib2/tables/5/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.192.table b/eccodes/definitions/grib2/tables/5/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.0.table b/eccodes/definitions/grib2/tables/5/4.2.0.0.table new file mode 100644 index 00000000..bf1638d8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.0.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.1.table b/eccodes/definitions/grib2/tables/5/4.2.0.1.table new file mode 100644 index 00000000..c7954575 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.1.table @@ -0,0 +1,71 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved (-) +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.13.table b/eccodes/definitions/grib2/tables/5/4.2.0.13.table new file mode 100644 index 00000000..8aaeeb30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.13.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (code table (4.205) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.14.table b/eccodes/definitions/grib2/tables/5/4.2.0.14.table new file mode 100644 index 00000000..230b0bb6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.14.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +2 2 Total column integrated ozone (Dobson) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.15.table b/eccodes/definitions/grib2/tables/5/4.2.0.15.table new file mode 100644 index 00000000..796fc2a8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.15.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.18.table b/eccodes/definitions/grib2/tables/5/4.2.0.18.table new file mode 100644 index 00000000..643188fd --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.18.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.19.table b/eccodes/definitions/grib2/tables/5/4.2.0.19.table new file mode 100644 index 00000000..21200f05 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.19.table @@ -0,0 +1,26 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (code table (4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (code table (4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (code table (4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (code table (4.209) +13 13 Contrail intensity (code table (4.210) +14 14 Contrail engine type (code table (4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (see Note 4) (%) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.190.table b/eccodes/definitions/grib2/tables/5/4.2.0.190.table new file mode 100644 index 00000000..378f9705 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.190.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITTIA5) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.191.table b/eccodes/definitions/grib2/tables/5/4.2.0.191.table new file mode 100644 index 00000000..27ad3815 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.191.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.2.table b/eccodes/definitions/grib2/tables/5/4.2.0.2.table new file mode 100644 index 00000000..cf930adf --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.2.table @@ -0,0 +1,33 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.20.table b/eccodes/definitions/grib2/tables/5/4.2.0.20.table new file mode 100644 index 00000000..4d762c38 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.20.table @@ -0,0 +1,26 @@ +0 0 Mass density (concentration) kg m-3 +1 1 Column-integrated mass density (see Note1) kg m-2 +2 2 Mass mixing ratio (mass fraction in air) kg kg-1 +3 3 Atmosphere emission mass flux kg m-2 s-1 +4 4 Atmosphere net production mass flux kg m-2 s-1 +5 5 Atmosphere net production and emission mass flux kg m-2 s-1 +6 6 Surface dry deposition mass flux kg m-2 s-1 +7 7 Surface wet deposition mass flux kg m-2 s-1 +8 8 Atmosphere re-emission mass flux kg m-2 s-1 +#9-49 9-49 Reserved +50 50 Amount in atmosphere mol +51 51 Concentration in air mol m-3 +52 52 Volume mixing ratio (fraction in air) mol mol-1 +53 53 Chemical gross production rate of concentration mol m-3 s-1 +54 54 Chemical gross destruction rate of concentration mol m-3 s-1 +55 55 Surface flux mol m-2 s-1 +56 56 Changes of amount in atmosphere (see Note 1) mol s-1 +57 57 Total yearly average burden of the atmosphere mol +58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 +#59-99 59-99 Reserved +100 100 Surface area density (aerosol) m-1 +101 101 Atmosphere optical thickness m +#102-191 102-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.3.table b/eccodes/definitions/grib2/tables/5/4.2.0.3.table new file mode 100644 index 00000000..fa4f99f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.3.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa s-1) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (Wm-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.4.table b/eccodes/definitions/grib2/tables/5/4.2.0.4.table new file mode 100644 index 00000000..365fd98a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.4.table @@ -0,0 +1,17 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.5.table b/eccodes/definitions/grib2/tables/5/4.2.0.5.table new file mode 100644 index 00000000..71932574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.5.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.6.table b/eccodes/definitions/grib2/tables/5/4.2.0.6.table new file mode 100644 index 00000000..e0edd344 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.6.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (code table (4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (code table (4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.7.table b/eccodes/definitions/grib2/tables/5/4.2.0.7.table new file mode 100644 index 00000000..34b082d9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.0.7.table @@ -0,0 +1,15 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.1.0.table b/eccodes/definitions/grib2/tables/5/4.2.1.0.table new file mode 100644 index 00000000..babfba39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.1.0.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (code table 4.215) +3 3 Elevation of snow covered terrain (code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.1.1.table b/eccodes/definitions/grib2/tables/5/4.2.1.1.table new file mode 100644 index 00000000..56bf798d --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.1.1.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.0.table b/eccodes/definitions/grib2/tables/5/4.2.10.0.table new file mode 100644 index 00000000..a8d4a5bf --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.0.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.1.table b/eccodes/definitions/grib2/tables/5/4.2.10.1.table new file mode 100644 index 00000000..d5514d76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.1.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.191.table b/eccodes/definitions/grib2/tables/5/4.2.10.191.table new file mode 100644 index 00000000..fa81adaf --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.191.table @@ -0,0 +1 @@ +# empty file diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.2.table b/eccodes/definitions/grib2/tables/5/4.2.10.2.table new file mode 100644 index 00000000..ff6e22bf --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.2.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +8 8 Ice temperature (K) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.3.table b/eccodes/definitions/grib2/tables/5/4.2.10.3.table new file mode 100644 index 00000000..949e0507 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.3.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.4.table b/eccodes/definitions/grib2/tables/5/4.2.10.4.table new file mode 100644 index 00000000..3158142d --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.10.4.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.0.table b/eccodes/definitions/grib2/tables/5/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.1.table b/eccodes/definitions/grib2/tables/5/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.10.table b/eccodes/definitions/grib2/tables/5/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.100.table b/eccodes/definitions/grib2/tables/5/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.101.table b/eccodes/definitions/grib2/tables/5/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.102.table b/eccodes/definitions/grib2/tables/5/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.103.table b/eccodes/definitions/grib2/tables/5/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.104.table b/eccodes/definitions/grib2/tables/5/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.105.table b/eccodes/definitions/grib2/tables/5/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.106.table b/eccodes/definitions/grib2/tables/5/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.107.table b/eccodes/definitions/grib2/tables/5/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.108.table b/eccodes/definitions/grib2/tables/5/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.109.table b/eccodes/definitions/grib2/tables/5/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.11.table b/eccodes/definitions/grib2/tables/5/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.110.table b/eccodes/definitions/grib2/tables/5/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.111.table b/eccodes/definitions/grib2/tables/5/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.112.table b/eccodes/definitions/grib2/tables/5/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.113.table b/eccodes/definitions/grib2/tables/5/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.114.table b/eccodes/definitions/grib2/tables/5/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.115.table b/eccodes/definitions/grib2/tables/5/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.116.table b/eccodes/definitions/grib2/tables/5/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.117.table b/eccodes/definitions/grib2/tables/5/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.118.table b/eccodes/definitions/grib2/tables/5/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.119.table b/eccodes/definitions/grib2/tables/5/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.12.table b/eccodes/definitions/grib2/tables/5/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.120.table b/eccodes/definitions/grib2/tables/5/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.121.table b/eccodes/definitions/grib2/tables/5/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.122.table b/eccodes/definitions/grib2/tables/5/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.123.table b/eccodes/definitions/grib2/tables/5/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.124.table b/eccodes/definitions/grib2/tables/5/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.125.table b/eccodes/definitions/grib2/tables/5/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.126.table b/eccodes/definitions/grib2/tables/5/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.127.table b/eccodes/definitions/grib2/tables/5/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.128.table b/eccodes/definitions/grib2/tables/5/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.129.table b/eccodes/definitions/grib2/tables/5/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.13.table b/eccodes/definitions/grib2/tables/5/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.130.table b/eccodes/definitions/grib2/tables/5/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.131.table b/eccodes/definitions/grib2/tables/5/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.132.table b/eccodes/definitions/grib2/tables/5/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.133.table b/eccodes/definitions/grib2/tables/5/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.134.table b/eccodes/definitions/grib2/tables/5/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.135.table b/eccodes/definitions/grib2/tables/5/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.136.table b/eccodes/definitions/grib2/tables/5/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.137.table b/eccodes/definitions/grib2/tables/5/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.138.table b/eccodes/definitions/grib2/tables/5/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.139.table b/eccodes/definitions/grib2/tables/5/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.14.table b/eccodes/definitions/grib2/tables/5/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.140.table b/eccodes/definitions/grib2/tables/5/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.141.table b/eccodes/definitions/grib2/tables/5/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.142.table b/eccodes/definitions/grib2/tables/5/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.143.table b/eccodes/definitions/grib2/tables/5/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.144.table b/eccodes/definitions/grib2/tables/5/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.145.table b/eccodes/definitions/grib2/tables/5/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.146.table b/eccodes/definitions/grib2/tables/5/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.147.table b/eccodes/definitions/grib2/tables/5/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.148.table b/eccodes/definitions/grib2/tables/5/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.149.table b/eccodes/definitions/grib2/tables/5/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.15.table b/eccodes/definitions/grib2/tables/5/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.150.table b/eccodes/definitions/grib2/tables/5/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.151.table b/eccodes/definitions/grib2/tables/5/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.152.table b/eccodes/definitions/grib2/tables/5/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.153.table b/eccodes/definitions/grib2/tables/5/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.154.table b/eccodes/definitions/grib2/tables/5/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.155.table b/eccodes/definitions/grib2/tables/5/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.156.table b/eccodes/definitions/grib2/tables/5/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.157.table b/eccodes/definitions/grib2/tables/5/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.158.table b/eccodes/definitions/grib2/tables/5/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.159.table b/eccodes/definitions/grib2/tables/5/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.16.table b/eccodes/definitions/grib2/tables/5/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.160.table b/eccodes/definitions/grib2/tables/5/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.161.table b/eccodes/definitions/grib2/tables/5/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.162.table b/eccodes/definitions/grib2/tables/5/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.163.table b/eccodes/definitions/grib2/tables/5/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.164.table b/eccodes/definitions/grib2/tables/5/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.165.table b/eccodes/definitions/grib2/tables/5/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.166.table b/eccodes/definitions/grib2/tables/5/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.167.table b/eccodes/definitions/grib2/tables/5/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.168.table b/eccodes/definitions/grib2/tables/5/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.169.table b/eccodes/definitions/grib2/tables/5/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.17.table b/eccodes/definitions/grib2/tables/5/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.170.table b/eccodes/definitions/grib2/tables/5/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.171.table b/eccodes/definitions/grib2/tables/5/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.172.table b/eccodes/definitions/grib2/tables/5/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.173.table b/eccodes/definitions/grib2/tables/5/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.174.table b/eccodes/definitions/grib2/tables/5/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.175.table b/eccodes/definitions/grib2/tables/5/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.176.table b/eccodes/definitions/grib2/tables/5/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.177.table b/eccodes/definitions/grib2/tables/5/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.178.table b/eccodes/definitions/grib2/tables/5/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.179.table b/eccodes/definitions/grib2/tables/5/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.18.table b/eccodes/definitions/grib2/tables/5/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.180.table b/eccodes/definitions/grib2/tables/5/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.181.table b/eccodes/definitions/grib2/tables/5/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.182.table b/eccodes/definitions/grib2/tables/5/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.183.table b/eccodes/definitions/grib2/tables/5/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.184.table b/eccodes/definitions/grib2/tables/5/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.185.table b/eccodes/definitions/grib2/tables/5/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.186.table b/eccodes/definitions/grib2/tables/5/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.187.table b/eccodes/definitions/grib2/tables/5/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.188.table b/eccodes/definitions/grib2/tables/5/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.189.table b/eccodes/definitions/grib2/tables/5/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.19.table b/eccodes/definitions/grib2/tables/5/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.190.table b/eccodes/definitions/grib2/tables/5/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.191.table b/eccodes/definitions/grib2/tables/5/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.192.table b/eccodes/definitions/grib2/tables/5/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.193.table b/eccodes/definitions/grib2/tables/5/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.194.table b/eccodes/definitions/grib2/tables/5/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.195.table b/eccodes/definitions/grib2/tables/5/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.196.table b/eccodes/definitions/grib2/tables/5/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.197.table b/eccodes/definitions/grib2/tables/5/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.198.table b/eccodes/definitions/grib2/tables/5/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.199.table b/eccodes/definitions/grib2/tables/5/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.2.table b/eccodes/definitions/grib2/tables/5/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.20.table b/eccodes/definitions/grib2/tables/5/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.200.table b/eccodes/definitions/grib2/tables/5/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.201.table b/eccodes/definitions/grib2/tables/5/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.202.table b/eccodes/definitions/grib2/tables/5/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.203.table b/eccodes/definitions/grib2/tables/5/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.204.table b/eccodes/definitions/grib2/tables/5/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.205.table b/eccodes/definitions/grib2/tables/5/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.206.table b/eccodes/definitions/grib2/tables/5/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.207.table b/eccodes/definitions/grib2/tables/5/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.208.table b/eccodes/definitions/grib2/tables/5/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.209.table b/eccodes/definitions/grib2/tables/5/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.21.table b/eccodes/definitions/grib2/tables/5/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.210.table b/eccodes/definitions/grib2/tables/5/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.211.table b/eccodes/definitions/grib2/tables/5/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.212.table b/eccodes/definitions/grib2/tables/5/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.213.table b/eccodes/definitions/grib2/tables/5/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.214.table b/eccodes/definitions/grib2/tables/5/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.215.table b/eccodes/definitions/grib2/tables/5/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.216.table b/eccodes/definitions/grib2/tables/5/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.217.table b/eccodes/definitions/grib2/tables/5/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.218.table b/eccodes/definitions/grib2/tables/5/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.219.table b/eccodes/definitions/grib2/tables/5/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.22.table b/eccodes/definitions/grib2/tables/5/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.220.table b/eccodes/definitions/grib2/tables/5/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.221.table b/eccodes/definitions/grib2/tables/5/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.222.table b/eccodes/definitions/grib2/tables/5/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.223.table b/eccodes/definitions/grib2/tables/5/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.224.table b/eccodes/definitions/grib2/tables/5/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.225.table b/eccodes/definitions/grib2/tables/5/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.226.table b/eccodes/definitions/grib2/tables/5/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.227.table b/eccodes/definitions/grib2/tables/5/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.228.table b/eccodes/definitions/grib2/tables/5/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.229.table b/eccodes/definitions/grib2/tables/5/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.23.table b/eccodes/definitions/grib2/tables/5/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.230.table b/eccodes/definitions/grib2/tables/5/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.231.table b/eccodes/definitions/grib2/tables/5/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.232.table b/eccodes/definitions/grib2/tables/5/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.233.table b/eccodes/definitions/grib2/tables/5/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.234.table b/eccodes/definitions/grib2/tables/5/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.235.table b/eccodes/definitions/grib2/tables/5/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.236.table b/eccodes/definitions/grib2/tables/5/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.237.table b/eccodes/definitions/grib2/tables/5/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.238.table b/eccodes/definitions/grib2/tables/5/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.239.table b/eccodes/definitions/grib2/tables/5/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.24.table b/eccodes/definitions/grib2/tables/5/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.240.table b/eccodes/definitions/grib2/tables/5/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.241.table b/eccodes/definitions/grib2/tables/5/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.242.table b/eccodes/definitions/grib2/tables/5/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.243.table b/eccodes/definitions/grib2/tables/5/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.244.table b/eccodes/definitions/grib2/tables/5/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.245.table b/eccodes/definitions/grib2/tables/5/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.246.table b/eccodes/definitions/grib2/tables/5/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.247.table b/eccodes/definitions/grib2/tables/5/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.248.table b/eccodes/definitions/grib2/tables/5/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.249.table b/eccodes/definitions/grib2/tables/5/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.25.table b/eccodes/definitions/grib2/tables/5/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.250.table b/eccodes/definitions/grib2/tables/5/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.251.table b/eccodes/definitions/grib2/tables/5/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.252.table b/eccodes/definitions/grib2/tables/5/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.253.table b/eccodes/definitions/grib2/tables/5/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.254.table b/eccodes/definitions/grib2/tables/5/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.255.table b/eccodes/definitions/grib2/tables/5/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.26.table b/eccodes/definitions/grib2/tables/5/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.27.table b/eccodes/definitions/grib2/tables/5/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.28.table b/eccodes/definitions/grib2/tables/5/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.29.table b/eccodes/definitions/grib2/tables/5/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.3.table b/eccodes/definitions/grib2/tables/5/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.30.table b/eccodes/definitions/grib2/tables/5/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.31.table b/eccodes/definitions/grib2/tables/5/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.32.table b/eccodes/definitions/grib2/tables/5/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.33.table b/eccodes/definitions/grib2/tables/5/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.34.table b/eccodes/definitions/grib2/tables/5/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.35.table b/eccodes/definitions/grib2/tables/5/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.36.table b/eccodes/definitions/grib2/tables/5/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.37.table b/eccodes/definitions/grib2/tables/5/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.38.table b/eccodes/definitions/grib2/tables/5/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.39.table b/eccodes/definitions/grib2/tables/5/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.4.table b/eccodes/definitions/grib2/tables/5/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.40.table b/eccodes/definitions/grib2/tables/5/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.41.table b/eccodes/definitions/grib2/tables/5/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.42.table b/eccodes/definitions/grib2/tables/5/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.43.table b/eccodes/definitions/grib2/tables/5/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.44.table b/eccodes/definitions/grib2/tables/5/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.45.table b/eccodes/definitions/grib2/tables/5/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.46.table b/eccodes/definitions/grib2/tables/5/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.47.table b/eccodes/definitions/grib2/tables/5/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.48.table b/eccodes/definitions/grib2/tables/5/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.49.table b/eccodes/definitions/grib2/tables/5/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.5.table b/eccodes/definitions/grib2/tables/5/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.50.table b/eccodes/definitions/grib2/tables/5/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.51.table b/eccodes/definitions/grib2/tables/5/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.52.table b/eccodes/definitions/grib2/tables/5/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.53.table b/eccodes/definitions/grib2/tables/5/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.54.table b/eccodes/definitions/grib2/tables/5/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.55.table b/eccodes/definitions/grib2/tables/5/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.56.table b/eccodes/definitions/grib2/tables/5/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.57.table b/eccodes/definitions/grib2/tables/5/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.58.table b/eccodes/definitions/grib2/tables/5/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.59.table b/eccodes/definitions/grib2/tables/5/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.6.table b/eccodes/definitions/grib2/tables/5/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.60.table b/eccodes/definitions/grib2/tables/5/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.61.table b/eccodes/definitions/grib2/tables/5/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.62.table b/eccodes/definitions/grib2/tables/5/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.63.table b/eccodes/definitions/grib2/tables/5/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.64.table b/eccodes/definitions/grib2/tables/5/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.65.table b/eccodes/definitions/grib2/tables/5/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.66.table b/eccodes/definitions/grib2/tables/5/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.67.table b/eccodes/definitions/grib2/tables/5/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.68.table b/eccodes/definitions/grib2/tables/5/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.69.table b/eccodes/definitions/grib2/tables/5/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.7.table b/eccodes/definitions/grib2/tables/5/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.70.table b/eccodes/definitions/grib2/tables/5/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.71.table b/eccodes/definitions/grib2/tables/5/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.72.table b/eccodes/definitions/grib2/tables/5/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.73.table b/eccodes/definitions/grib2/tables/5/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.74.table b/eccodes/definitions/grib2/tables/5/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.75.table b/eccodes/definitions/grib2/tables/5/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.76.table b/eccodes/definitions/grib2/tables/5/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.77.table b/eccodes/definitions/grib2/tables/5/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.78.table b/eccodes/definitions/grib2/tables/5/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.79.table b/eccodes/definitions/grib2/tables/5/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.8.table b/eccodes/definitions/grib2/tables/5/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.80.table b/eccodes/definitions/grib2/tables/5/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.81.table b/eccodes/definitions/grib2/tables/5/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.82.table b/eccodes/definitions/grib2/tables/5/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.83.table b/eccodes/definitions/grib2/tables/5/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.84.table b/eccodes/definitions/grib2/tables/5/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.85.table b/eccodes/definitions/grib2/tables/5/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.86.table b/eccodes/definitions/grib2/tables/5/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.87.table b/eccodes/definitions/grib2/tables/5/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.88.table b/eccodes/definitions/grib2/tables/5/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.89.table b/eccodes/definitions/grib2/tables/5/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.9.table b/eccodes/definitions/grib2/tables/5/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.90.table b/eccodes/definitions/grib2/tables/5/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.91.table b/eccodes/definitions/grib2/tables/5/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.92.table b/eccodes/definitions/grib2/tables/5/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.93.table b/eccodes/definitions/grib2/tables/5/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.94.table b/eccodes/definitions/grib2/tables/5/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.95.table b/eccodes/definitions/grib2/tables/5/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.96.table b/eccodes/definitions/grib2/tables/5/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.97.table b/eccodes/definitions/grib2/tables/5/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.98.table b/eccodes/definitions/grib2/tables/5/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.99.table b/eccodes/definitions/grib2/tables/5/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.2.0.table b/eccodes/definitions/grib2/tables/5/4.2.2.0.table new file mode 100644 index 00000000..8541d6bb --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.2.0.table @@ -0,0 +1,30 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Land cover (1=land, 0=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (code table (4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.2.3.table b/eccodes/definitions/grib2/tables/5/4.2.2.3.table new file mode 100644 index 00000000..dce6558d --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.2.3.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Soil type (code table (4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.3.0.table b/eccodes/definitions/grib2/tables/5/4.2.3.0.table new file mode 100644 index 00000000..9d2ea212 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.3.0.table @@ -0,0 +1,12 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.2.3.1.table b/eccodes/definitions/grib2/tables/5/4.2.3.1.table new file mode 100644 index 00000000..f598bea8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.2.3.1.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +6 6 Number of pixels used (Numeric) +7 7 Solar zenith angle (Degree) +8 8 Relative azimuth angle (Degree) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/5/4.201.table b/eccodes/definitions/grib2/tables/5/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.202.table b/eccodes/definitions/grib2/tables/5/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.203.table b/eccodes/definitions/grib2/tables/5/4.203.table new file mode 100644 index 00000000..057f4091 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.203.table @@ -0,0 +1,25 @@ +# CODE TABLE 4.203, Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.204.table b/eccodes/definitions/grib2/tables/5/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.205.table b/eccodes/definitions/grib2/tables/5/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.206.table b/eccodes/definitions/grib2/tables/5/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.207.table b/eccodes/definitions/grib2/tables/5/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.208.table b/eccodes/definitions/grib2/tables/5/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.209.table b/eccodes/definitions/grib2/tables/5/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.210.table b/eccodes/definitions/grib2/tables/5/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.211.table b/eccodes/definitions/grib2/tables/5/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.212.table b/eccodes/definitions/grib2/tables/5/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.213.table b/eccodes/definitions/grib2/tables/5/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.215.table b/eccodes/definitions/grib2/tables/5/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.216.table b/eccodes/definitions/grib2/tables/5/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.217.table b/eccodes/definitions/grib2/tables/5/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.218.table b/eccodes/definitions/grib2/tables/5/4.218.table new file mode 100644 index 00000000..6c436dfc --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.218.table @@ -0,0 +1,35 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.219.table b/eccodes/definitions/grib2/tables/5/4.219.table new file mode 100644 index 00000000..ead9d6b7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.219.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.220.table b/eccodes/definitions/grib2/tables/5/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.221.table b/eccodes/definitions/grib2/tables/5/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.222.table b/eccodes/definitions/grib2/tables/5/4.222.table new file mode 100644 index 00000000..a4790257 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.222.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.223.table b/eccodes/definitions/grib2/tables/5/4.223.table new file mode 100644 index 00000000..d7205dc9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.230.table b/eccodes/definitions/grib2/tables/5/4.230.table new file mode 100644 index 00000000..7bcbe304 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.230.table @@ -0,0 +1,117 @@ +#Code figure Code figure Meaning +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) +10500 10500 Dimethyl sulphide +#10501-20000 10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen +60005 60005 Total inorganic chlorine +60006 60006 Total inorganic bromine +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped Alkanes +60010 60010 Lumped Alkenes +60011 60011 Lumped Aromatic Compounds +60012 60012 Lumped Terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.3.table b/eccodes/definitions/grib2/tables/5/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.4.table b/eccodes/definitions/grib2/tables/5/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.5.table b/eccodes/definitions/grib2/tables/5/4.5.table new file mode 100644 index 00000000..0df986b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.5.table @@ -0,0 +1,38 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.6.table b/eccodes/definitions/grib2/tables/5/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.7.table b/eccodes/definitions/grib2/tables/5/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.8.table b/eccodes/definitions/grib2/tables/5/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.9.table b/eccodes/definitions/grib2/tables/5/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/4.91.table b/eccodes/definitions/grib2/tables/5/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/5/5.0.table b/eccodes/definitions/grib2/tables/5/5.0.table new file mode 100644 index 00000000..62cc4a47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.0.table @@ -0,0 +1,19 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing diff --git a/eccodes/definitions/grib2/tables/5/5.1.table b/eccodes/definitions/grib2/tables/5/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.2.table b/eccodes/definitions/grib2/tables/5/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.3.table b/eccodes/definitions/grib2/tables/5/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.4.table b/eccodes/definitions/grib2/tables/5/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.40.table b/eccodes/definitions/grib2/tables/5/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.40000.table b/eccodes/definitions/grib2/tables/5/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.5.table b/eccodes/definitions/grib2/tables/5/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.50002.table b/eccodes/definitions/grib2/tables/5/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/5/5.6.table b/eccodes/definitions/grib2/tables/5/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.7.table b/eccodes/definitions/grib2/tables/5/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.8.table b/eccodes/definitions/grib2/tables/5/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/5.9.table b/eccodes/definitions/grib2/tables/5/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/5/6.0.table b/eccodes/definitions/grib2/tables/5/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/5/stepType.table b/eccodes/definitions/grib2/tables/5/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/5/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/6/0.0.table b/eccodes/definitions/grib2/tables/6/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/1.0.table b/eccodes/definitions/grib2/tables/6/1.0.table new file mode 100644 index 00000000..54a50efa --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/1.0.table @@ -0,0 +1,12 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Pre-operational to be implemented by next amendment +# 8-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. + diff --git a/eccodes/definitions/grib2/tables/6/1.1.table b/eccodes/definitions/grib2/tables/6/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/1.2.table b/eccodes/definitions/grib2/tables/6/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/1.3.table b/eccodes/definitions/grib2/tables/6/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/1.4.table b/eccodes/definitions/grib2/tables/6/1.4.table new file mode 100644 index 00000000..8166b776 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/6/3.0.table b/eccodes/definitions/grib2/tables/6/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/6/3.1.table b/eccodes/definitions/grib2/tables/6/3.1.table new file mode 100644 index 00000000..235fb8bd --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic can be south or north +# 21-29 Reserved +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.10.table b/eccodes/definitions/grib2/tables/6/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib2/tables/6/3.11.table b/eccodes/definitions/grib2/tables/6/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.15.table b/eccodes/definitions/grib2/tables/6/3.15.table new file mode 100644 index 00000000..b3adaeb3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.15.table @@ -0,0 +1,21 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +20 20 Temperature K +# 21-99 Reserved +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +# 113-159 Reserved +160 160 Depth below sea level m +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.2.table b/eccodes/definitions/grib2/tables/6/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.20.table b/eccodes/definitions/grib2/tables/6/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.21.table b/eccodes/definitions/grib2/tables/6/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.3.table b/eccodes/definitions/grib2/tables/6/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib2/tables/6/3.4.table b/eccodes/definitions/grib2/tables/6/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib2/tables/6/3.5.table b/eccodes/definitions/grib2/tables/6/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib2/tables/6/3.6.table b/eccodes/definitions/grib2/tables/6/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/6/3.7.table b/eccodes/definitions/grib2/tables/6/3.7.table new file mode 100644 index 00000000..5937ea14 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.7.table @@ -0,0 +1,4 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/3.8.table b/eccodes/definitions/grib2/tables/6/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/6/3.9.table b/eccodes/definitions/grib2/tables/6/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib2/tables/6/4.0.table b/eccodes/definitions/grib2/tables/6/4.0.table new file mode 100644 index 00000000..e7e441f4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.0.table @@ -0,0 +1,43 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +#16-19 Reserved +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval + +65335 65535 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.1.0.table b/eccodes/definitions/grib2/tables/6/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.1.table b/eccodes/definitions/grib2/tables/6/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.10.table b/eccodes/definitions/grib2/tables/6/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.192.table b/eccodes/definitions/grib2/tables/6/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.2.table b/eccodes/definitions/grib2/tables/6/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.3.table b/eccodes/definitions/grib2/tables/6/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/6/4.1.table b/eccodes/definitions/grib2/tables/6/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.10.table b/eccodes/definitions/grib2/tables/6/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/6/4.11.table b/eccodes/definitions/grib2/tables/6/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.12.table b/eccodes/definitions/grib2/tables/6/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.13.table b/eccodes/definitions/grib2/tables/6/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.14.table b/eccodes/definitions/grib2/tables/6/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.15.table b/eccodes/definitions/grib2/tables/6/4.15.table new file mode 100644 index 00000000..50412802 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.15.table @@ -0,0 +1,10 @@ +0 0 Data is calculated directly from the source grid with no interpolation (see note 1) +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) +#7-191 Reserved +#192-254 Reserved for Local Use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.151.table b/eccodes/definitions/grib2/tables/6/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.192.table b/eccodes/definitions/grib2/tables/6/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.0.table b/eccodes/definitions/grib2/tables/6/4.2.0.0.table new file mode 100644 index 00000000..98fc9552 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.0.table @@ -0,0 +1,23 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) - validation (K) +19 19 Turbulent transfer coefficient for heat - validation (Numeric) +20 20 Turbulent diffusion coefficient for heat - validation (m2 s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.1.table b/eccodes/definitions/grib2/tables/6/4.2.0.1.table new file mode 100644 index 00000000..936d53fb --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.1.table @@ -0,0 +1,89 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age day (-) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved (-) +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water - validation (kg m-2) +70 70 Total column integrated cloud ice - validation (kg m-2) +71 71 Hail mixing ratio - validation (kg kg-1) +72 72 Total column integrated hail - validation (kg m-2) +73 73 Hail precipitation rate - validation (kg m-2 s-1) +74 74 Total column integrated graupel - validation (kg m-2) +75 75 Graupel (snow pellets) precipitation rate - validation (kg m-2 s-1) +76 76 Convective rain rate - validation (kg m-2 s-1) +77 77 Large scale rain rate - validation (kg m-2 s-1) +78 78 Total column integrated water (all components incl. precipitation) - validation (kg m-2) +79 79 Evaporation rate - validation (kg m-2 s-1) +80 80 Total Condensate - validation (kg kg-1) +81 81 Total Column-Integrated Condensate - validation (kg m-2) +82 82 Cloud Ice Mixing-Ratio - validation (kg kg-1) +83 83 Specific cloud liquid water content (kg kg-1) +84 84 Specific cloud ice water content (kg kg-1) +85 85 Specific rain water content (kg kg-1) +86 86 Specific snow water content (kg kg-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.13.table b/eccodes/definitions/grib2/tables/6/4.2.0.13.table new file mode 100644 index 00000000..8aaeeb30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.13.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (code table (4.205) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.14.table b/eccodes/definitions/grib2/tables/6/4.2.0.14.table new file mode 100644 index 00000000..230b0bb6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.14.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +2 2 Total column integrated ozone (Dobson) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.15.table b/eccodes/definitions/grib2/tables/6/4.2.0.15.table new file mode 100644 index 00000000..51ea2499 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.15.table @@ -0,0 +1,17 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets - validation (dB) +10 10 Reflectivity of cloud ice - validation (dB) +11 11 Reflectivity of snow - validation (dB) +12 12 Reflectivity of rain - validation (dB) +13 13 Reflectivity of graupel - validation (dB) +14 14 Reflectivity of hail - validation (dB) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.16.table b/eccodes/definitions/grib2/tables/6/4.2.0.16.table new file mode 100644 index 00000000..0b8fbd46 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.16.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.18.table b/eccodes/definitions/grib2/tables/6/4.2.0.18.table new file mode 100644 index 00000000..4497f31d --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.18.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.19.table b/eccodes/definitions/grib2/tables/6/4.2.0.19.table new file mode 100644 index 00000000..a1ae140e --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.19.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (code table (4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (code table (4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (code table (4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (code table (4.209) +13 13 Contrail intensity (code table (4.210) +14 14 Contrail engine type (code table (4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (see Note 4) (%) +24 24 Convective turbulent kinetic energy - validation (J kg-1) +25 25 Weather Interpretation ww (WMO) - validation (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.190.table b/eccodes/definitions/grib2/tables/6/4.2.0.190.table new file mode 100644 index 00000000..378f9705 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.190.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITTIA5) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.191.table b/eccodes/definitions/grib2/tables/6/4.2.0.191.table new file mode 100644 index 00000000..feef9300 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.191.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude - validation (deg N) +2 2 Geographical longitude - validation (deg E) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.2.table b/eccodes/definitions/grib2/tables/6/4.2.0.2.table new file mode 100644 index 00000000..efc60025 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.2.table @@ -0,0 +1,35 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +31 31 Turbulent diffusion coefficient for momentum (m2 s-1) +32 32 eta coordinate vertical velocity (s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.20.table b/eccodes/definitions/grib2/tables/6/4.2.0.20.table new file mode 100644 index 00000000..e2846656 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.20.table @@ -0,0 +1,22 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (see Note 1) (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg kg-1) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol mol-1) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (see Note 1) (mol s-1) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (see Note 1) (mol s-1) +100 100 Surface area density (aerosol) (m-1) +101 101 Atmosphere optical thickness (m) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.3.table b/eccodes/definitions/grib2/tables/6/4.2.0.3.table new file mode 100644 index 00000000..31f31d2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.3.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa s-1) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (Wm-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.4.table b/eccodes/definitions/grib2/tables/6/4.2.0.4.table new file mode 100644 index 00000000..365fd98a --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.4.table @@ -0,0 +1,17 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.5.table b/eccodes/definitions/grib2/tables/6/4.2.0.5.table new file mode 100644 index 00000000..71932574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.5.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.6.table b/eccodes/definitions/grib2/tables/6/4.2.0.6.table new file mode 100644 index 00000000..ca5688e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.6.table @@ -0,0 +1,36 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (code table (4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (code table (4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base - validation (m) +27 27 Height of convective cloud top - validation (m) +28 28 Number concentration of cloud droplets - validation (kg-1) +29 29 Number concentration of cloud ice - validation (kg-1) +30 30 Number density of cloud droplets - validation (m-3) +31 31 Number density of cloud ice - validation (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.7.table b/eccodes/definitions/grib2/tables/6/4.2.0.7.table new file mode 100644 index 00000000..7370541f --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.0.7.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index - validation (K) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.1.0.table b/eccodes/definitions/grib2/tables/6/4.2.1.0.table new file mode 100644 index 00000000..babfba39 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.1.0.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (code table 4.215) +3 3 Elevation of snow covered terrain (code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.1.1.table b/eccodes/definitions/grib2/tables/6/4.2.1.1.table new file mode 100644 index 00000000..56bf798d --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.1.1.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.0.table b/eccodes/definitions/grib2/tables/6/4.2.10.0.table new file mode 100644 index 00000000..b40fa431 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.0.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (Degree true) +15 15 Mean period of combined wind waves and swell (s) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.1.table b/eccodes/definitions/grib2/tables/6/4.2.10.1.table new file mode 100644 index 00000000..d5514d76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.1.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.191.table b/eccodes/definitions/grib2/tables/6/4.2.10.191.table new file mode 100644 index 00000000..72cf1ce9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.191.table @@ -0,0 +1,6 @@ +# Product discipline 10 - Oceanographic products, parameter category 191: miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3 s-1) +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.2.table b/eccodes/definitions/grib2/tables/6/4.2.10.2.table new file mode 100644 index 00000000..ff6e22bf --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.2.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +8 8 Ice temperature (K) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.3.table b/eccodes/definitions/grib2/tables/6/4.2.10.3.table new file mode 100644 index 00000000..949e0507 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.3.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.4.table b/eccodes/definitions/grib2/tables/6/4.2.10.4.table new file mode 100644 index 00000000..3158142d --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.10.4.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.0.table b/eccodes/definitions/grib2/tables/6/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.1.table b/eccodes/definitions/grib2/tables/6/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.10.table b/eccodes/definitions/grib2/tables/6/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.100.table b/eccodes/definitions/grib2/tables/6/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.101.table b/eccodes/definitions/grib2/tables/6/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.102.table b/eccodes/definitions/grib2/tables/6/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.103.table b/eccodes/definitions/grib2/tables/6/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.104.table b/eccodes/definitions/grib2/tables/6/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.105.table b/eccodes/definitions/grib2/tables/6/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.106.table b/eccodes/definitions/grib2/tables/6/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.107.table b/eccodes/definitions/grib2/tables/6/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.108.table b/eccodes/definitions/grib2/tables/6/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.109.table b/eccodes/definitions/grib2/tables/6/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.11.table b/eccodes/definitions/grib2/tables/6/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.110.table b/eccodes/definitions/grib2/tables/6/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.111.table b/eccodes/definitions/grib2/tables/6/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.112.table b/eccodes/definitions/grib2/tables/6/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.113.table b/eccodes/definitions/grib2/tables/6/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.114.table b/eccodes/definitions/grib2/tables/6/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.115.table b/eccodes/definitions/grib2/tables/6/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.116.table b/eccodes/definitions/grib2/tables/6/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.117.table b/eccodes/definitions/grib2/tables/6/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.118.table b/eccodes/definitions/grib2/tables/6/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.119.table b/eccodes/definitions/grib2/tables/6/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.12.table b/eccodes/definitions/grib2/tables/6/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.120.table b/eccodes/definitions/grib2/tables/6/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.121.table b/eccodes/definitions/grib2/tables/6/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.122.table b/eccodes/definitions/grib2/tables/6/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.123.table b/eccodes/definitions/grib2/tables/6/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.124.table b/eccodes/definitions/grib2/tables/6/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.125.table b/eccodes/definitions/grib2/tables/6/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.126.table b/eccodes/definitions/grib2/tables/6/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.127.table b/eccodes/definitions/grib2/tables/6/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.128.table b/eccodes/definitions/grib2/tables/6/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.129.table b/eccodes/definitions/grib2/tables/6/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.13.table b/eccodes/definitions/grib2/tables/6/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.130.table b/eccodes/definitions/grib2/tables/6/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.131.table b/eccodes/definitions/grib2/tables/6/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.132.table b/eccodes/definitions/grib2/tables/6/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.133.table b/eccodes/definitions/grib2/tables/6/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.134.table b/eccodes/definitions/grib2/tables/6/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.135.table b/eccodes/definitions/grib2/tables/6/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.136.table b/eccodes/definitions/grib2/tables/6/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.137.table b/eccodes/definitions/grib2/tables/6/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.138.table b/eccodes/definitions/grib2/tables/6/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.139.table b/eccodes/definitions/grib2/tables/6/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.14.table b/eccodes/definitions/grib2/tables/6/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.140.table b/eccodes/definitions/grib2/tables/6/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.141.table b/eccodes/definitions/grib2/tables/6/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.142.table b/eccodes/definitions/grib2/tables/6/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.143.table b/eccodes/definitions/grib2/tables/6/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.144.table b/eccodes/definitions/grib2/tables/6/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.145.table b/eccodes/definitions/grib2/tables/6/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.146.table b/eccodes/definitions/grib2/tables/6/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.147.table b/eccodes/definitions/grib2/tables/6/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.148.table b/eccodes/definitions/grib2/tables/6/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.149.table b/eccodes/definitions/grib2/tables/6/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.15.table b/eccodes/definitions/grib2/tables/6/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.150.table b/eccodes/definitions/grib2/tables/6/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.151.table b/eccodes/definitions/grib2/tables/6/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.152.table b/eccodes/definitions/grib2/tables/6/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.153.table b/eccodes/definitions/grib2/tables/6/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.154.table b/eccodes/definitions/grib2/tables/6/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.155.table b/eccodes/definitions/grib2/tables/6/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.156.table b/eccodes/definitions/grib2/tables/6/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.157.table b/eccodes/definitions/grib2/tables/6/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.158.table b/eccodes/definitions/grib2/tables/6/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.159.table b/eccodes/definitions/grib2/tables/6/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.16.table b/eccodes/definitions/grib2/tables/6/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.160.table b/eccodes/definitions/grib2/tables/6/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.161.table b/eccodes/definitions/grib2/tables/6/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.162.table b/eccodes/definitions/grib2/tables/6/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.163.table b/eccodes/definitions/grib2/tables/6/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.164.table b/eccodes/definitions/grib2/tables/6/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.165.table b/eccodes/definitions/grib2/tables/6/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.166.table b/eccodes/definitions/grib2/tables/6/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.167.table b/eccodes/definitions/grib2/tables/6/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.168.table b/eccodes/definitions/grib2/tables/6/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.169.table b/eccodes/definitions/grib2/tables/6/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.17.table b/eccodes/definitions/grib2/tables/6/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.170.table b/eccodes/definitions/grib2/tables/6/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.171.table b/eccodes/definitions/grib2/tables/6/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.172.table b/eccodes/definitions/grib2/tables/6/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.173.table b/eccodes/definitions/grib2/tables/6/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.174.table b/eccodes/definitions/grib2/tables/6/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.175.table b/eccodes/definitions/grib2/tables/6/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.176.table b/eccodes/definitions/grib2/tables/6/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.177.table b/eccodes/definitions/grib2/tables/6/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.178.table b/eccodes/definitions/grib2/tables/6/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.179.table b/eccodes/definitions/grib2/tables/6/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.18.table b/eccodes/definitions/grib2/tables/6/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.180.table b/eccodes/definitions/grib2/tables/6/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.181.table b/eccodes/definitions/grib2/tables/6/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.182.table b/eccodes/definitions/grib2/tables/6/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.183.table b/eccodes/definitions/grib2/tables/6/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.184.table b/eccodes/definitions/grib2/tables/6/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.185.table b/eccodes/definitions/grib2/tables/6/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.186.table b/eccodes/definitions/grib2/tables/6/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.187.table b/eccodes/definitions/grib2/tables/6/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.188.table b/eccodes/definitions/grib2/tables/6/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.189.table b/eccodes/definitions/grib2/tables/6/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.19.table b/eccodes/definitions/grib2/tables/6/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.190.table b/eccodes/definitions/grib2/tables/6/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.191.table b/eccodes/definitions/grib2/tables/6/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.192.table b/eccodes/definitions/grib2/tables/6/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.193.table b/eccodes/definitions/grib2/tables/6/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.194.table b/eccodes/definitions/grib2/tables/6/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.195.table b/eccodes/definitions/grib2/tables/6/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.196.table b/eccodes/definitions/grib2/tables/6/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.197.table b/eccodes/definitions/grib2/tables/6/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.198.table b/eccodes/definitions/grib2/tables/6/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.199.table b/eccodes/definitions/grib2/tables/6/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.2.table b/eccodes/definitions/grib2/tables/6/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.20.table b/eccodes/definitions/grib2/tables/6/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.200.table b/eccodes/definitions/grib2/tables/6/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.201.table b/eccodes/definitions/grib2/tables/6/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.202.table b/eccodes/definitions/grib2/tables/6/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.203.table b/eccodes/definitions/grib2/tables/6/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.204.table b/eccodes/definitions/grib2/tables/6/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.205.table b/eccodes/definitions/grib2/tables/6/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.206.table b/eccodes/definitions/grib2/tables/6/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.207.table b/eccodes/definitions/grib2/tables/6/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.208.table b/eccodes/definitions/grib2/tables/6/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.209.table b/eccodes/definitions/grib2/tables/6/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.21.table b/eccodes/definitions/grib2/tables/6/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.210.table b/eccodes/definitions/grib2/tables/6/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.211.table b/eccodes/definitions/grib2/tables/6/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.212.table b/eccodes/definitions/grib2/tables/6/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.213.table b/eccodes/definitions/grib2/tables/6/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.214.table b/eccodes/definitions/grib2/tables/6/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.215.table b/eccodes/definitions/grib2/tables/6/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.216.table b/eccodes/definitions/grib2/tables/6/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.217.table b/eccodes/definitions/grib2/tables/6/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.218.table b/eccodes/definitions/grib2/tables/6/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.219.table b/eccodes/definitions/grib2/tables/6/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.22.table b/eccodes/definitions/grib2/tables/6/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.220.table b/eccodes/definitions/grib2/tables/6/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.221.table b/eccodes/definitions/grib2/tables/6/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.222.table b/eccodes/definitions/grib2/tables/6/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.223.table b/eccodes/definitions/grib2/tables/6/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.224.table b/eccodes/definitions/grib2/tables/6/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.225.table b/eccodes/definitions/grib2/tables/6/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.226.table b/eccodes/definitions/grib2/tables/6/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.227.table b/eccodes/definitions/grib2/tables/6/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.228.table b/eccodes/definitions/grib2/tables/6/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.229.table b/eccodes/definitions/grib2/tables/6/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.23.table b/eccodes/definitions/grib2/tables/6/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.230.table b/eccodes/definitions/grib2/tables/6/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.231.table b/eccodes/definitions/grib2/tables/6/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.232.table b/eccodes/definitions/grib2/tables/6/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.233.table b/eccodes/definitions/grib2/tables/6/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.234.table b/eccodes/definitions/grib2/tables/6/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.235.table b/eccodes/definitions/grib2/tables/6/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.236.table b/eccodes/definitions/grib2/tables/6/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.237.table b/eccodes/definitions/grib2/tables/6/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.238.table b/eccodes/definitions/grib2/tables/6/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.239.table b/eccodes/definitions/grib2/tables/6/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.24.table b/eccodes/definitions/grib2/tables/6/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.240.table b/eccodes/definitions/grib2/tables/6/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.241.table b/eccodes/definitions/grib2/tables/6/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.242.table b/eccodes/definitions/grib2/tables/6/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.243.table b/eccodes/definitions/grib2/tables/6/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.244.table b/eccodes/definitions/grib2/tables/6/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.245.table b/eccodes/definitions/grib2/tables/6/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.246.table b/eccodes/definitions/grib2/tables/6/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.247.table b/eccodes/definitions/grib2/tables/6/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.248.table b/eccodes/definitions/grib2/tables/6/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.249.table b/eccodes/definitions/grib2/tables/6/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.25.table b/eccodes/definitions/grib2/tables/6/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.250.table b/eccodes/definitions/grib2/tables/6/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.251.table b/eccodes/definitions/grib2/tables/6/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.252.table b/eccodes/definitions/grib2/tables/6/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.253.table b/eccodes/definitions/grib2/tables/6/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.254.table b/eccodes/definitions/grib2/tables/6/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.255.table b/eccodes/definitions/grib2/tables/6/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.26.table b/eccodes/definitions/grib2/tables/6/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.27.table b/eccodes/definitions/grib2/tables/6/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.28.table b/eccodes/definitions/grib2/tables/6/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.29.table b/eccodes/definitions/grib2/tables/6/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.3.table b/eccodes/definitions/grib2/tables/6/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.30.table b/eccodes/definitions/grib2/tables/6/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.31.table b/eccodes/definitions/grib2/tables/6/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.32.table b/eccodes/definitions/grib2/tables/6/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.33.table b/eccodes/definitions/grib2/tables/6/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.34.table b/eccodes/definitions/grib2/tables/6/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.35.table b/eccodes/definitions/grib2/tables/6/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.36.table b/eccodes/definitions/grib2/tables/6/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.37.table b/eccodes/definitions/grib2/tables/6/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.38.table b/eccodes/definitions/grib2/tables/6/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.39.table b/eccodes/definitions/grib2/tables/6/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.4.table b/eccodes/definitions/grib2/tables/6/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.40.table b/eccodes/definitions/grib2/tables/6/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.41.table b/eccodes/definitions/grib2/tables/6/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.42.table b/eccodes/definitions/grib2/tables/6/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.43.table b/eccodes/definitions/grib2/tables/6/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.44.table b/eccodes/definitions/grib2/tables/6/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.45.table b/eccodes/definitions/grib2/tables/6/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.46.table b/eccodes/definitions/grib2/tables/6/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.47.table b/eccodes/definitions/grib2/tables/6/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.48.table b/eccodes/definitions/grib2/tables/6/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.49.table b/eccodes/definitions/grib2/tables/6/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.5.table b/eccodes/definitions/grib2/tables/6/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.50.table b/eccodes/definitions/grib2/tables/6/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.51.table b/eccodes/definitions/grib2/tables/6/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.52.table b/eccodes/definitions/grib2/tables/6/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.53.table b/eccodes/definitions/grib2/tables/6/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.54.table b/eccodes/definitions/grib2/tables/6/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.55.table b/eccodes/definitions/grib2/tables/6/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.56.table b/eccodes/definitions/grib2/tables/6/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.57.table b/eccodes/definitions/grib2/tables/6/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.58.table b/eccodes/definitions/grib2/tables/6/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.59.table b/eccodes/definitions/grib2/tables/6/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.6.table b/eccodes/definitions/grib2/tables/6/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.60.table b/eccodes/definitions/grib2/tables/6/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.61.table b/eccodes/definitions/grib2/tables/6/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.62.table b/eccodes/definitions/grib2/tables/6/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.63.table b/eccodes/definitions/grib2/tables/6/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.64.table b/eccodes/definitions/grib2/tables/6/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.65.table b/eccodes/definitions/grib2/tables/6/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.66.table b/eccodes/definitions/grib2/tables/6/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.67.table b/eccodes/definitions/grib2/tables/6/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.68.table b/eccodes/definitions/grib2/tables/6/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.69.table b/eccodes/definitions/grib2/tables/6/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.7.table b/eccodes/definitions/grib2/tables/6/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.70.table b/eccodes/definitions/grib2/tables/6/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.71.table b/eccodes/definitions/grib2/tables/6/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.72.table b/eccodes/definitions/grib2/tables/6/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.73.table b/eccodes/definitions/grib2/tables/6/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.74.table b/eccodes/definitions/grib2/tables/6/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.75.table b/eccodes/definitions/grib2/tables/6/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.76.table b/eccodes/definitions/grib2/tables/6/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.77.table b/eccodes/definitions/grib2/tables/6/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.78.table b/eccodes/definitions/grib2/tables/6/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.79.table b/eccodes/definitions/grib2/tables/6/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.8.table b/eccodes/definitions/grib2/tables/6/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.80.table b/eccodes/definitions/grib2/tables/6/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.81.table b/eccodes/definitions/grib2/tables/6/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.82.table b/eccodes/definitions/grib2/tables/6/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.83.table b/eccodes/definitions/grib2/tables/6/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.84.table b/eccodes/definitions/grib2/tables/6/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.85.table b/eccodes/definitions/grib2/tables/6/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.86.table b/eccodes/definitions/grib2/tables/6/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.87.table b/eccodes/definitions/grib2/tables/6/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.88.table b/eccodes/definitions/grib2/tables/6/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.89.table b/eccodes/definitions/grib2/tables/6/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.9.table b/eccodes/definitions/grib2/tables/6/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.90.table b/eccodes/definitions/grib2/tables/6/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.91.table b/eccodes/definitions/grib2/tables/6/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.92.table b/eccodes/definitions/grib2/tables/6/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.93.table b/eccodes/definitions/grib2/tables/6/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.94.table b/eccodes/definitions/grib2/tables/6/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.95.table b/eccodes/definitions/grib2/tables/6/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.96.table b/eccodes/definitions/grib2/tables/6/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.97.table b/eccodes/definitions/grib2/tables/6/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.98.table b/eccodes/definitions/grib2/tables/6/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.99.table b/eccodes/definitions/grib2/tables/6/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.0.table b/eccodes/definitions/grib2/tables/6/4.2.2.0.table new file mode 100644 index 00000000..f7fa333f --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.2.0.table @@ -0,0 +1,35 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Land cover (1=land, 0=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (code table (4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index - validation (Numeric) +29 29 Evergreen forest - validation (Numeric) +30 30 Deciduous forest - validation (Numeric) +31 31 Normalized differential vegetation index (NDVI) - validation (Numeric) +32 32 Root depth of vegetation - validation (M) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.3.table b/eccodes/definitions/grib2/tables/6/4.2.2.3.table new file mode 100644 index 00000000..c46c49d9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.2.3.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Soil type (code table (4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil Temperature - validation (K) +19 19 Soil moisture - validation (kg m-3) +20 20 Column-integrated soil moisture - validation (kg m-2) +21 21 Soil ice - validation (kg m-3) +22 22 Column-integrated soil ice - validation (kg m-2) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.4.table b/eccodes/definitions/grib2/tables/6/4.2.2.4.table new file mode 100644 index 00000000..3731ee40 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.2.4.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Fire Outlook Critical Risk Area (%) +1 1 Fire Outlook Extreme Critical Risk Area (%) +2 2 Fire Outlook Dry Lightning Area (%) diff --git a/eccodes/definitions/grib2/tables/6/4.2.3.0.table b/eccodes/definitions/grib2/tables/6/4.2.3.0.table new file mode 100644 index 00000000..9d2ea212 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.3.0.table @@ -0,0 +1,12 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.2.3.1.table b/eccodes/definitions/grib2/tables/6/4.2.3.1.table new file mode 100644 index 00000000..f9860e67 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.2.3.1.table @@ -0,0 +1,21 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +6 6 Number of pixels used (Numeric) +7 7 Solar zenith angle (Degree) +8 8 Relative azimuth angle (Degree) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (s-1) +19 19 Wind speed (m s-1) +20 20 Aerosol optical thickness at 0.635 um (-) +21 21 Aerosol optical thickness at 0.810 um (-) +22 22 Aerosol optical thickness at 1.640 um (-) +23 23 Angstrom coefficient (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/6/4.201.table b/eccodes/definitions/grib2/tables/6/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.202.table b/eccodes/definitions/grib2/tables/6/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.203.table b/eccodes/definitions/grib2/tables/6/4.203.table new file mode 100644 index 00000000..057f4091 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.203.table @@ -0,0 +1,25 @@ +# CODE TABLE 4.203, Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.204.table b/eccodes/definitions/grib2/tables/6/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.205.table b/eccodes/definitions/grib2/tables/6/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.206.table b/eccodes/definitions/grib2/tables/6/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.207.table b/eccodes/definitions/grib2/tables/6/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.208.table b/eccodes/definitions/grib2/tables/6/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.209.table b/eccodes/definitions/grib2/tables/6/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.210.table b/eccodes/definitions/grib2/tables/6/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.211.table b/eccodes/definitions/grib2/tables/6/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.212.table b/eccodes/definitions/grib2/tables/6/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.213.table b/eccodes/definitions/grib2/tables/6/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.215.table b/eccodes/definitions/grib2/tables/6/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.216.table b/eccodes/definitions/grib2/tables/6/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.217.table b/eccodes/definitions/grib2/tables/6/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.218.table b/eccodes/definitions/grib2/tables/6/4.218.table new file mode 100644 index 00000000..6c436dfc --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.218.table @@ -0,0 +1,35 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.219.table b/eccodes/definitions/grib2/tables/6/4.219.table new file mode 100644 index 00000000..ead9d6b7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.219.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.220.table b/eccodes/definitions/grib2/tables/6/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.221.table b/eccodes/definitions/grib2/tables/6/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.222.table b/eccodes/definitions/grib2/tables/6/4.222.table new file mode 100644 index 00000000..a4790257 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.222.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.223.table b/eccodes/definitions/grib2/tables/6/4.223.table new file mode 100644 index 00000000..d7205dc9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.230.table b/eccodes/definitions/grib2/tables/6/4.230.table new file mode 100644 index 00000000..7bcbe304 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.230.table @@ -0,0 +1,117 @@ +#Code figure Code figure Meaning +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) +10500 10500 Dimethyl sulphide +#10501-20000 10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen +60005 60005 Total inorganic chlorine +60006 60006 Total inorganic bromine +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped Alkanes +60010 60010 Lumped Alkenes +60011 60011 Lumped Aromatic Compounds +60012 60012 Lumped Terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.3.table b/eccodes/definitions/grib2/tables/6/4.3.table new file mode 100644 index 00000000..47bccd26 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.3.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.4.table b/eccodes/definitions/grib2/tables/6/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.5.table b/eccodes/definitions/grib2/tables/6/4.5.table new file mode 100644 index 00000000..a475587a --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.5.table @@ -0,0 +1,38 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.6.table b/eccodes/definitions/grib2/tables/6/4.6.table new file mode 100644 index 00000000..300113b0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.6.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.7.table b/eccodes/definitions/grib2/tables/6/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.8.table b/eccodes/definitions/grib2/tables/6/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.9.table b/eccodes/definitions/grib2/tables/6/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/4.91.table b/eccodes/definitions/grib2/tables/6/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/6/5.0.table b/eccodes/definitions/grib2/tables/6/5.0.table new file mode 100644 index 00000000..62cc4a47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.0.table @@ -0,0 +1,19 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing diff --git a/eccodes/definitions/grib2/tables/6/5.1.table b/eccodes/definitions/grib2/tables/6/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.2.table b/eccodes/definitions/grib2/tables/6/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.3.table b/eccodes/definitions/grib2/tables/6/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.4.table b/eccodes/definitions/grib2/tables/6/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.40.table b/eccodes/definitions/grib2/tables/6/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.40000.table b/eccodes/definitions/grib2/tables/6/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.5.table b/eccodes/definitions/grib2/tables/6/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.50002.table b/eccodes/definitions/grib2/tables/6/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/6/5.6.table b/eccodes/definitions/grib2/tables/6/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.7.table b/eccodes/definitions/grib2/tables/6/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.8.table b/eccodes/definitions/grib2/tables/6/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/5.9.table b/eccodes/definitions/grib2/tables/6/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/6/6.0.table b/eccodes/definitions/grib2/tables/6/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/6/stepType.table b/eccodes/definitions/grib2/tables/6/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/6/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/7/0.0.table b/eccodes/definitions/grib2/tables/7/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/1.0.table b/eccodes/definitions/grib2/tables/7/1.0.table new file mode 100644 index 00000000..7ccb0e2a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/1.0.table @@ -0,0 +1,12 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Pre-operational to be implemented by next amendment +# 9-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/7/1.1.table b/eccodes/definitions/grib2/tables/7/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/1.2.table b/eccodes/definitions/grib2/tables/7/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/1.3.table b/eccodes/definitions/grib2/tables/7/1.3.table new file mode 100644 index 00000000..14667f9b --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/1.4.table b/eccodes/definitions/grib2/tables/7/1.4.table new file mode 100644 index 00000000..997bfda9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/7/3.0.table b/eccodes/definitions/grib2/tables/7/3.0.table new file mode 100644 index 00000000..b01b00c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/7/3.1.table b/eccodes/definitions/grib2/tables/7/3.1.table new file mode 100644 index 00000000..ee641239 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.10.table b/eccodes/definitions/grib2/tables/7/3.10.table new file mode 100644 index 00000000..e4a446b9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.10.table @@ -0,0 +1,8 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/7/3.11.table b/eccodes/definitions/grib2/tables/7/3.11.table new file mode 100644 index 00000000..b82a94f2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.11.table @@ -0,0 +1,7 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.15.table b/eccodes/definitions/grib2/tables/7/3.15.table new file mode 100644 index 00000000..337bdce9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.15.table @@ -0,0 +1,17 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +20 20 Temperature (K) +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (see Note 1) (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height (gpm) +160 160 Depth below sea level (m) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.2.table b/eccodes/definitions/grib2/tables/7/3.2.table new file mode 100644 index 00000000..522e8731 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.2.table @@ -0,0 +1,13 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +# 9-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.20.table b/eccodes/definitions/grib2/tables/7/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.21.table b/eccodes/definitions/grib2/tables/7/3.21.table new file mode 100644 index 00000000..46030353 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.3.table b/eccodes/definitions/grib2/tables/7/3.3.table new file mode 100644 index 00000000..e662b20f --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.3.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/7/3.4.table b/eccodes/definitions/grib2/tables/7/3.4.table new file mode 100644 index 00000000..72e3343b --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.4.table @@ -0,0 +1,10 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/7/3.5.table b/eccodes/definitions/grib2/tables/7/3.5.table new file mode 100644 index 00000000..72adfd74 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/7/3.6.table b/eccodes/definitions/grib2/tables/7/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/7/3.7.table b/eccodes/definitions/grib2/tables/7/3.7.table new file mode 100644 index 00000000..5937ea14 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.7.table @@ -0,0 +1,4 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/3.8.table b/eccodes/definitions/grib2/tables/7/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib2/tables/7/3.9.table b/eccodes/definitions/grib2/tables/7/3.9.table new file mode 100644 index 00000000..5edac03a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/3.9.table @@ -0,0 +1,4 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/7/4.0.table b/eccodes/definitions/grib2/tables/7/4.0.table new file mode 100644 index 00000000..97223a78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.0.table @@ -0,0 +1,53 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +#16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +#33-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +#52-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +#92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +#1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +#1102-32767 Reserved +#32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.1.0.table b/eccodes/definitions/grib2/tables/7/4.1.0.table new file mode 100644 index 00000000..65d69469 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.0.table @@ -0,0 +1,28 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.1.1.table b/eccodes/definitions/grib2/tables/7/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/7/4.1.10.table b/eccodes/definitions/grib2/tables/7/4.1.10.table new file mode 100644 index 00000000..9c1bfc31 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.10.table @@ -0,0 +1,11 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.1.192.table b/eccodes/definitions/grib2/tables/7/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/7/4.1.2.table b/eccodes/definitions/grib2/tables/7/4.1.2.table new file mode 100644 index 00000000..34e0423b --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.2.table @@ -0,0 +1,9 @@ +#Discipline 2: Land Surface Products +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.1.3.table b/eccodes/definitions/grib2/tables/7/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/7/4.1.table b/eccodes/definitions/grib2/tables/7/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.10.table b/eccodes/definitions/grib2/tables/7/4.10.table new file mode 100644 index 00000000..e25f8caf --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +# 10-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/7/4.11.table b/eccodes/definitions/grib2/tables/7/4.11.table new file mode 100644 index 00000000..30b90be0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.11.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.11, Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.12.table b/eccodes/definitions/grib2/tables/7/4.12.table new file mode 100644 index 00000000..3c9d086c --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.13.table b/eccodes/definitions/grib2/tables/7/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.14.table b/eccodes/definitions/grib2/tables/7/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.15.table b/eccodes/definitions/grib2/tables/7/4.15.table new file mode 100644 index 00000000..50412802 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.15.table @@ -0,0 +1,10 @@ +0 0 Data is calculated directly from the source grid with no interpolation (see note 1) +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) +#7-191 Reserved +#192-254 Reserved for Local Use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.151.table b/eccodes/definitions/grib2/tables/7/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.192.table b/eccodes/definitions/grib2/tables/7/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.0.table b/eccodes/definitions/grib2/tables/7/4.2.0.0.table new file mode 100644 index 00000000..6ed6b944 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.0.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) - validation (K) +19 19 Turbulent transfer coefficient for heat - validation (Numeric) +20 20 Turbulent diffusion coefficient for heat - validation (m2 s-1) +#21-191 21-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.1.table b/eccodes/definitions/grib2/tables/7/4.2.0.1.table new file mode 100644 index 00000000..95e016a2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.1.table @@ -0,0 +1,91 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age day (-) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved (-) +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio - validation (kg kg-1) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate - validation (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate - validation (kg m-2 s-1) +76 76 Convective rain rate - validation (kg m-2 s-1) +77 77 Large scale rain rate - validation (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate - validation (kg m-2 s-1) +80 80 Total Condensate - validation (kg kg-1) +81 81 Total Column-Integrated Condensate - validation (kg m-2) +82 82 Cloud Ice Mixing-Ratio - validation (kg kg-1) +83 83 Specific cloud liquid water content (kg kg-1) +84 84 Specific cloud ice water content (kg kg-1) +85 85 Specific rain water content (kg kg-1) +86 86 Specific snow water content (kg kg-1) +#87-191 87-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.13.table b/eccodes/definitions/grib2/tables/7/4.2.0.13.table new file mode 100644 index 00000000..58f38e3d --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.13.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (code table (4.205) +#1-191 1-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.14.table b/eccodes/definitions/grib2/tables/7/4.2.0.14.table new file mode 100644 index 00000000..23cae2c4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.14.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +2 2 Total column integrated ozone (Dobson) +#3-191 3-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.15.table b/eccodes/definitions/grib2/tables/7/4.2.0.15.table new file mode 100644 index 00000000..a42e5b7d --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.15.table @@ -0,0 +1,19 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets - validation (dB) +10 10 Reflectivity of cloud ice - validation (dB) +11 11 Reflectivity of snow - validation (dB) +12 12 Reflectivity of rain - validation (dB) +13 13 Reflectivity of graupel - validation (dB) +14 14 Reflectivity of hail - validation (dB) +#15-191 15-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.16.table b/eccodes/definitions/grib2/tables/7/4.2.0.16.table new file mode 100644 index 00000000..e8a9d2be --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.16.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +#6-191 6-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.18.table b/eccodes/definitions/grib2/tables/7/4.2.0.18.table new file mode 100644 index 00000000..e6b3ab04 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.18.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +#14-191 9-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.19.table b/eccodes/definitions/grib2/tables/7/4.2.0.19.table new file mode 100644 index 00000000..46cb8515 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.19.table @@ -0,0 +1,31 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (code table (4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (code table (4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (code table (4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (code table (4.209) +13 13 Contrail intensity (code table (4.210) +14 14 Contrail engine type (code table (4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (see Note 4) (%) +24 24 Convective turbulent kinetic energy - validation (J kg-1) +25 25 Weather Interpretation ww (WMO) - validation +26 26 Convective outlook (code table (4.224) +#27-191 26-191 Reserved +#192-254 192-254 Reserved for local use (-) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.190.table b/eccodes/definitions/grib2/tables/7/4.2.0.190.table new file mode 100644 index 00000000..faa27c53 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.190.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITTIA5) +#1-191 1-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.191.table b/eccodes/definitions/grib2/tables/7/4.2.0.191.table new file mode 100644 index 00000000..6c40c61c --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.191.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude - validation (deg N) +2 2 Geographical longitude - validation (deg E) +#3-191 3-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.2.table b/eccodes/definitions/grib2/tables/7/4.2.0.2.table new file mode 100644 index 00000000..8380d516 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.2.table @@ -0,0 +1,37 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wind direction (from which blowing) (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity (pressure) (Pa s-1) +9 9 Vertical velocity (geometric) (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed (gust) (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +31 31 Turbulent diffusion coefficient for momentum (m2 s-1) +32 32 eta coordinate vertical velocity (s-1) +#33-191 33-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.20.table b/eccodes/definitions/grib2/tables/7/4.2.0.20.table new file mode 100644 index 00000000..ca418946 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.20.table @@ -0,0 +1,26 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (see Note 1) (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg kg-1) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +#9-49 9-49 Reserved (-) +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol mol-1) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (see Note 1) (mol s-1) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (see Note 1) (mol s-1) +#59-99 59-99 Reserved (-) +100 100 Surface area density (aerosol) (m-1) +101 101 Atmosphere optical thickness (m) +#102-191 102-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.3.table b/eccodes/definitions/grib2/tables/7/4.2.0.3.table new file mode 100644 index 00000000..ade05293 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.3.table @@ -0,0 +1,30 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa s-1) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (Wm-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +#26-191 26-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.4.table b/eccodes/definitions/grib2/tables/7/4.2.0.4.table new file mode 100644 index 00000000..d22ce42d --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.4.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +#13-49 13-49 Reserved (-) +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +#52-191 52-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.5.table b/eccodes/definitions/grib2/tables/7/4.2.0.5.table new file mode 100644 index 00000000..6128eb9c --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.5.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +#7-191 7-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.6.table b/eccodes/definitions/grib2/tables/7/4.2.0.6.table new file mode 100644 index 00000000..b7f10a43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.6.table @@ -0,0 +1,39 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (code table (4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (code table (4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base - validation (m) +#26-31 26-31 Reserved (-) +27 27 Height of convective cloud top - validation (m) +28 28 Number concentration of cloud droplets - validation (kg-1) +29 29 Number concentration of cloud ice - validation (kg-1) +30 30 Number density of cloud droplets - validation (m-3) +31 31 Number density of cloud ice - validation (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +#34-191 34-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.7.table b/eccodes/definitions/grib2/tables/7/4.2.0.7.table new file mode 100644 index 00000000..bced218f --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.0.7.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index - validation (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +#16-191 14-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.1.0.table b/eccodes/definitions/grib2/tables/7/4.2.1.0.table new file mode 100644 index 00000000..277ecf6d --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.1.0.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (code table 4.215) +3 3 Elevation of snow covered terrain (code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +#7-191 7-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.1.1.table b/eccodes/definitions/grib2/tables/7/4.2.1.1.table new file mode 100644 index 00000000..979e9455 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +#3-191 3-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.0.table b/eccodes/definitions/grib2/tables/7/4.2.10.0.table new file mode 100644 index 00000000..7671a7a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.0.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (Degree true) +15 15 Mean period of combined wind waves and swell (s) +#16-191 16-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.1.table b/eccodes/definitions/grib2/tables/7/4.2.10.1.table new file mode 100644 index 00000000..cc238fbb --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.1.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +#4-191 4-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.191.table b/eccodes/definitions/grib2/tables/7/4.2.10.191.table new file mode 100644 index 00000000..72cf1ce9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.191.table @@ -0,0 +1,6 @@ +# Product discipline 10 - Oceanographic products, parameter category 191: miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3 s-1) +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.2.table b/eccodes/definitions/grib2/tables/7/4.2.10.2.table new file mode 100644 index 00000000..bf3dd9f1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +#10-191 9-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.3.table b/eccodes/definitions/grib2/tables/7/4.2.10.3.table new file mode 100644 index 00000000..62b2a8e8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.3.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +#2-191 2-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.4.table b/eccodes/definitions/grib2/tables/7/4.2.10.4.table new file mode 100644 index 00000000..a0d465e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.10.4.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +#7-191 4-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.0.table b/eccodes/definitions/grib2/tables/7/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.1.table b/eccodes/definitions/grib2/tables/7/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.10.table b/eccodes/definitions/grib2/tables/7/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.100.table b/eccodes/definitions/grib2/tables/7/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.101.table b/eccodes/definitions/grib2/tables/7/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.102.table b/eccodes/definitions/grib2/tables/7/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.103.table b/eccodes/definitions/grib2/tables/7/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.104.table b/eccodes/definitions/grib2/tables/7/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.105.table b/eccodes/definitions/grib2/tables/7/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.106.table b/eccodes/definitions/grib2/tables/7/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.107.table b/eccodes/definitions/grib2/tables/7/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.108.table b/eccodes/definitions/grib2/tables/7/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.109.table b/eccodes/definitions/grib2/tables/7/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.11.table b/eccodes/definitions/grib2/tables/7/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.110.table b/eccodes/definitions/grib2/tables/7/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.111.table b/eccodes/definitions/grib2/tables/7/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.112.table b/eccodes/definitions/grib2/tables/7/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.113.table b/eccodes/definitions/grib2/tables/7/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.114.table b/eccodes/definitions/grib2/tables/7/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.115.table b/eccodes/definitions/grib2/tables/7/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.116.table b/eccodes/definitions/grib2/tables/7/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.117.table b/eccodes/definitions/grib2/tables/7/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.118.table b/eccodes/definitions/grib2/tables/7/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.119.table b/eccodes/definitions/grib2/tables/7/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.12.table b/eccodes/definitions/grib2/tables/7/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.120.table b/eccodes/definitions/grib2/tables/7/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.121.table b/eccodes/definitions/grib2/tables/7/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.122.table b/eccodes/definitions/grib2/tables/7/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.123.table b/eccodes/definitions/grib2/tables/7/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.124.table b/eccodes/definitions/grib2/tables/7/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.125.table b/eccodes/definitions/grib2/tables/7/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.126.table b/eccodes/definitions/grib2/tables/7/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.127.table b/eccodes/definitions/grib2/tables/7/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.128.table b/eccodes/definitions/grib2/tables/7/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.129.table b/eccodes/definitions/grib2/tables/7/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.13.table b/eccodes/definitions/grib2/tables/7/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.130.table b/eccodes/definitions/grib2/tables/7/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.131.table b/eccodes/definitions/grib2/tables/7/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.132.table b/eccodes/definitions/grib2/tables/7/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.133.table b/eccodes/definitions/grib2/tables/7/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.134.table b/eccodes/definitions/grib2/tables/7/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.135.table b/eccodes/definitions/grib2/tables/7/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.136.table b/eccodes/definitions/grib2/tables/7/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.137.table b/eccodes/definitions/grib2/tables/7/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.138.table b/eccodes/definitions/grib2/tables/7/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.139.table b/eccodes/definitions/grib2/tables/7/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.14.table b/eccodes/definitions/grib2/tables/7/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.140.table b/eccodes/definitions/grib2/tables/7/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.141.table b/eccodes/definitions/grib2/tables/7/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.142.table b/eccodes/definitions/grib2/tables/7/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.143.table b/eccodes/definitions/grib2/tables/7/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.144.table b/eccodes/definitions/grib2/tables/7/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.145.table b/eccodes/definitions/grib2/tables/7/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.146.table b/eccodes/definitions/grib2/tables/7/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.147.table b/eccodes/definitions/grib2/tables/7/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.148.table b/eccodes/definitions/grib2/tables/7/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.149.table b/eccodes/definitions/grib2/tables/7/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.15.table b/eccodes/definitions/grib2/tables/7/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.150.table b/eccodes/definitions/grib2/tables/7/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.151.table b/eccodes/definitions/grib2/tables/7/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.152.table b/eccodes/definitions/grib2/tables/7/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.153.table b/eccodes/definitions/grib2/tables/7/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.154.table b/eccodes/definitions/grib2/tables/7/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.155.table b/eccodes/definitions/grib2/tables/7/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.156.table b/eccodes/definitions/grib2/tables/7/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.157.table b/eccodes/definitions/grib2/tables/7/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.158.table b/eccodes/definitions/grib2/tables/7/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.159.table b/eccodes/definitions/grib2/tables/7/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.16.table b/eccodes/definitions/grib2/tables/7/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.160.table b/eccodes/definitions/grib2/tables/7/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.161.table b/eccodes/definitions/grib2/tables/7/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.162.table b/eccodes/definitions/grib2/tables/7/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.163.table b/eccodes/definitions/grib2/tables/7/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.164.table b/eccodes/definitions/grib2/tables/7/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.165.table b/eccodes/definitions/grib2/tables/7/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.166.table b/eccodes/definitions/grib2/tables/7/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.167.table b/eccodes/definitions/grib2/tables/7/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.168.table b/eccodes/definitions/grib2/tables/7/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.169.table b/eccodes/definitions/grib2/tables/7/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.17.table b/eccodes/definitions/grib2/tables/7/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.170.table b/eccodes/definitions/grib2/tables/7/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.171.table b/eccodes/definitions/grib2/tables/7/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.172.table b/eccodes/definitions/grib2/tables/7/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.173.table b/eccodes/definitions/grib2/tables/7/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.174.table b/eccodes/definitions/grib2/tables/7/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.175.table b/eccodes/definitions/grib2/tables/7/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.176.table b/eccodes/definitions/grib2/tables/7/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.177.table b/eccodes/definitions/grib2/tables/7/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.178.table b/eccodes/definitions/grib2/tables/7/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.179.table b/eccodes/definitions/grib2/tables/7/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.18.table b/eccodes/definitions/grib2/tables/7/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.180.table b/eccodes/definitions/grib2/tables/7/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.181.table b/eccodes/definitions/grib2/tables/7/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.182.table b/eccodes/definitions/grib2/tables/7/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.183.table b/eccodes/definitions/grib2/tables/7/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.184.table b/eccodes/definitions/grib2/tables/7/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.185.table b/eccodes/definitions/grib2/tables/7/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.186.table b/eccodes/definitions/grib2/tables/7/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.187.table b/eccodes/definitions/grib2/tables/7/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.188.table b/eccodes/definitions/grib2/tables/7/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.189.table b/eccodes/definitions/grib2/tables/7/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.19.table b/eccodes/definitions/grib2/tables/7/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.190.table b/eccodes/definitions/grib2/tables/7/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.191.table b/eccodes/definitions/grib2/tables/7/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.192.table b/eccodes/definitions/grib2/tables/7/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.193.table b/eccodes/definitions/grib2/tables/7/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.194.table b/eccodes/definitions/grib2/tables/7/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.195.table b/eccodes/definitions/grib2/tables/7/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.196.table b/eccodes/definitions/grib2/tables/7/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.197.table b/eccodes/definitions/grib2/tables/7/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.198.table b/eccodes/definitions/grib2/tables/7/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.199.table b/eccodes/definitions/grib2/tables/7/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.2.table b/eccodes/definitions/grib2/tables/7/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.20.table b/eccodes/definitions/grib2/tables/7/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.200.table b/eccodes/definitions/grib2/tables/7/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.201.table b/eccodes/definitions/grib2/tables/7/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.202.table b/eccodes/definitions/grib2/tables/7/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.203.table b/eccodes/definitions/grib2/tables/7/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.204.table b/eccodes/definitions/grib2/tables/7/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.205.table b/eccodes/definitions/grib2/tables/7/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.206.table b/eccodes/definitions/grib2/tables/7/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.207.table b/eccodes/definitions/grib2/tables/7/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.208.table b/eccodes/definitions/grib2/tables/7/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.209.table b/eccodes/definitions/grib2/tables/7/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.21.table b/eccodes/definitions/grib2/tables/7/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.210.table b/eccodes/definitions/grib2/tables/7/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.211.table b/eccodes/definitions/grib2/tables/7/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.212.table b/eccodes/definitions/grib2/tables/7/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.213.table b/eccodes/definitions/grib2/tables/7/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.214.table b/eccodes/definitions/grib2/tables/7/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.215.table b/eccodes/definitions/grib2/tables/7/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.216.table b/eccodes/definitions/grib2/tables/7/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.217.table b/eccodes/definitions/grib2/tables/7/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.218.table b/eccodes/definitions/grib2/tables/7/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.219.table b/eccodes/definitions/grib2/tables/7/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.22.table b/eccodes/definitions/grib2/tables/7/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.220.table b/eccodes/definitions/grib2/tables/7/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.221.table b/eccodes/definitions/grib2/tables/7/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.222.table b/eccodes/definitions/grib2/tables/7/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.223.table b/eccodes/definitions/grib2/tables/7/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.224.table b/eccodes/definitions/grib2/tables/7/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.225.table b/eccodes/definitions/grib2/tables/7/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.226.table b/eccodes/definitions/grib2/tables/7/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.227.table b/eccodes/definitions/grib2/tables/7/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.228.table b/eccodes/definitions/grib2/tables/7/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.229.table b/eccodes/definitions/grib2/tables/7/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.23.table b/eccodes/definitions/grib2/tables/7/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.230.table b/eccodes/definitions/grib2/tables/7/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.231.table b/eccodes/definitions/grib2/tables/7/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.232.table b/eccodes/definitions/grib2/tables/7/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.233.table b/eccodes/definitions/grib2/tables/7/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.234.table b/eccodes/definitions/grib2/tables/7/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.235.table b/eccodes/definitions/grib2/tables/7/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.236.table b/eccodes/definitions/grib2/tables/7/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.237.table b/eccodes/definitions/grib2/tables/7/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.238.table b/eccodes/definitions/grib2/tables/7/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.239.table b/eccodes/definitions/grib2/tables/7/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.24.table b/eccodes/definitions/grib2/tables/7/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.240.table b/eccodes/definitions/grib2/tables/7/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.241.table b/eccodes/definitions/grib2/tables/7/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.242.table b/eccodes/definitions/grib2/tables/7/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.243.table b/eccodes/definitions/grib2/tables/7/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.244.table b/eccodes/definitions/grib2/tables/7/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.245.table b/eccodes/definitions/grib2/tables/7/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.246.table b/eccodes/definitions/grib2/tables/7/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.247.table b/eccodes/definitions/grib2/tables/7/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.248.table b/eccodes/definitions/grib2/tables/7/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.249.table b/eccodes/definitions/grib2/tables/7/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.25.table b/eccodes/definitions/grib2/tables/7/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.250.table b/eccodes/definitions/grib2/tables/7/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.251.table b/eccodes/definitions/grib2/tables/7/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.252.table b/eccodes/definitions/grib2/tables/7/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.253.table b/eccodes/definitions/grib2/tables/7/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.254.table b/eccodes/definitions/grib2/tables/7/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.255.table b/eccodes/definitions/grib2/tables/7/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.26.table b/eccodes/definitions/grib2/tables/7/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.27.table b/eccodes/definitions/grib2/tables/7/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.28.table b/eccodes/definitions/grib2/tables/7/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.29.table b/eccodes/definitions/grib2/tables/7/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.3.table b/eccodes/definitions/grib2/tables/7/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.30.table b/eccodes/definitions/grib2/tables/7/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.31.table b/eccodes/definitions/grib2/tables/7/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.32.table b/eccodes/definitions/grib2/tables/7/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.33.table b/eccodes/definitions/grib2/tables/7/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.34.table b/eccodes/definitions/grib2/tables/7/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.35.table b/eccodes/definitions/grib2/tables/7/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.36.table b/eccodes/definitions/grib2/tables/7/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.37.table b/eccodes/definitions/grib2/tables/7/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.38.table b/eccodes/definitions/grib2/tables/7/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.39.table b/eccodes/definitions/grib2/tables/7/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.4.table b/eccodes/definitions/grib2/tables/7/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.40.table b/eccodes/definitions/grib2/tables/7/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.41.table b/eccodes/definitions/grib2/tables/7/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.42.table b/eccodes/definitions/grib2/tables/7/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.43.table b/eccodes/definitions/grib2/tables/7/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.44.table b/eccodes/definitions/grib2/tables/7/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.45.table b/eccodes/definitions/grib2/tables/7/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.46.table b/eccodes/definitions/grib2/tables/7/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.47.table b/eccodes/definitions/grib2/tables/7/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.48.table b/eccodes/definitions/grib2/tables/7/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.49.table b/eccodes/definitions/grib2/tables/7/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.5.table b/eccodes/definitions/grib2/tables/7/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.50.table b/eccodes/definitions/grib2/tables/7/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.51.table b/eccodes/definitions/grib2/tables/7/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.52.table b/eccodes/definitions/grib2/tables/7/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.53.table b/eccodes/definitions/grib2/tables/7/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.54.table b/eccodes/definitions/grib2/tables/7/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.55.table b/eccodes/definitions/grib2/tables/7/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.56.table b/eccodes/definitions/grib2/tables/7/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.57.table b/eccodes/definitions/grib2/tables/7/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.58.table b/eccodes/definitions/grib2/tables/7/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.59.table b/eccodes/definitions/grib2/tables/7/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.6.table b/eccodes/definitions/grib2/tables/7/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.60.table b/eccodes/definitions/grib2/tables/7/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.61.table b/eccodes/definitions/grib2/tables/7/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.62.table b/eccodes/definitions/grib2/tables/7/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.63.table b/eccodes/definitions/grib2/tables/7/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.64.table b/eccodes/definitions/grib2/tables/7/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.65.table b/eccodes/definitions/grib2/tables/7/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.66.table b/eccodes/definitions/grib2/tables/7/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.67.table b/eccodes/definitions/grib2/tables/7/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.68.table b/eccodes/definitions/grib2/tables/7/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.69.table b/eccodes/definitions/grib2/tables/7/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.7.table b/eccodes/definitions/grib2/tables/7/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.70.table b/eccodes/definitions/grib2/tables/7/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.71.table b/eccodes/definitions/grib2/tables/7/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.72.table b/eccodes/definitions/grib2/tables/7/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.73.table b/eccodes/definitions/grib2/tables/7/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.74.table b/eccodes/definitions/grib2/tables/7/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.75.table b/eccodes/definitions/grib2/tables/7/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.76.table b/eccodes/definitions/grib2/tables/7/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.77.table b/eccodes/definitions/grib2/tables/7/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.78.table b/eccodes/definitions/grib2/tables/7/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.79.table b/eccodes/definitions/grib2/tables/7/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.8.table b/eccodes/definitions/grib2/tables/7/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.80.table b/eccodes/definitions/grib2/tables/7/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.81.table b/eccodes/definitions/grib2/tables/7/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.82.table b/eccodes/definitions/grib2/tables/7/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.83.table b/eccodes/definitions/grib2/tables/7/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.84.table b/eccodes/definitions/grib2/tables/7/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.85.table b/eccodes/definitions/grib2/tables/7/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.86.table b/eccodes/definitions/grib2/tables/7/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.87.table b/eccodes/definitions/grib2/tables/7/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.88.table b/eccodes/definitions/grib2/tables/7/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.89.table b/eccodes/definitions/grib2/tables/7/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.9.table b/eccodes/definitions/grib2/tables/7/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.90.table b/eccodes/definitions/grib2/tables/7/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.91.table b/eccodes/definitions/grib2/tables/7/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.92.table b/eccodes/definitions/grib2/tables/7/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.93.table b/eccodes/definitions/grib2/tables/7/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.94.table b/eccodes/definitions/grib2/tables/7/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.95.table b/eccodes/definitions/grib2/tables/7/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.96.table b/eccodes/definitions/grib2/tables/7/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.97.table b/eccodes/definitions/grib2/tables/7/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.98.table b/eccodes/definitions/grib2/tables/7/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.99.table b/eccodes/definitions/grib2/tables/7/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.0.table b/eccodes/definitions/grib2/tables/7/4.2.2.0.table new file mode 100644 index 00000000..948baa63 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.2.0.table @@ -0,0 +1,37 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Land cover (1=land, 0=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (code table (4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index - validation (Numeric) +29 29 Evergreen forest - validation (Numeric) +30 30 Deciduous forest - validation (Numeric) +31 31 Normalized differential vegetation index (NDVI) - validation (Numeric) +32 32 Root depth of vegetation - validation (M) +#33-191 33-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.3.table b/eccodes/definitions/grib2/tables/7/4.2.2.3.table new file mode 100644 index 00000000..8f377590 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.2.3.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Soil type (code table (4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil Temperature - validation (K) +19 19 Soil moisture - validation (kg m-3) +20 20 Column-integrated soil moisture - validation (kg m-2) +21 21 Soil ice - validation (kg m-3) +22 22 Column-integrated soil ice - validation (kg m-2) +#23-191 23-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.4.table b/eccodes/definitions/grib2/tables/7/4.2.2.4.table new file mode 100644 index 00000000..db102b02 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.2.4.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Fire outlook (code table (4.224) +1 1 Fire outlook due to dry thunderstorm (code table (4.224) diff --git a/eccodes/definitions/grib2/tables/7/4.2.3.0.table b/eccodes/definitions/grib2/tables/7/4.2.3.0.table new file mode 100644 index 00000000..119edb30 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.3.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +#10-191 10-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.2.3.1.table b/eccodes/definitions/grib2/tables/7/4.2.3.1.table new file mode 100644 index 00000000..d0a16c12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.2.3.1.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +6 6 Number of pixels used (Numeric) +7 7 Solar zenith angle (Degree) +8 8 Relative azimuth angle (Degree) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (s-1) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved (-) +19 19 Wind speed (m s-1) +20 20 Aerosol optical thickness at 0.635 um (-) +21 21 Aerosol optical thickness at 0.810 um (-) +22 22 Aerosol optical thickness at 1.640 um (-) +23 23 Angstrom coefficient (-) +#24-191 24-191 Reserved (-) +#192-254 192-254 Reserved for local use (-) +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/7/4.201.table b/eccodes/definitions/grib2/tables/7/4.201.table new file mode 100644 index 00000000..39e5033c --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.201.table @@ -0,0 +1,72 @@ +# CODE TABLE 4.201, Precipitation Type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +# 6-191 Reserved +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.202.table b/eccodes/definitions/grib2/tables/7/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.203.table b/eccodes/definitions/grib2/tables/7/4.203.table new file mode 100644 index 00000000..057f4091 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.203.table @@ -0,0 +1,25 @@ +# CODE TABLE 4.203, Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.204.table b/eccodes/definitions/grib2/tables/7/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.205.table b/eccodes/definitions/grib2/tables/7/4.205.table new file mode 100644 index 00000000..e7a0208f --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Presence of aerosol + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.206.table b/eccodes/definitions/grib2/tables/7/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.207.table b/eccodes/definitions/grib2/tables/7/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.208.table b/eccodes/definitions/grib2/tables/7/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.209.table b/eccodes/definitions/grib2/tables/7/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.210.table b/eccodes/definitions/grib2/tables/7/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.211.table b/eccodes/definitions/grib2/tables/7/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.212.table b/eccodes/definitions/grib2/tables/7/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.213.table b/eccodes/definitions/grib2/tables/7/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.215.table b/eccodes/definitions/grib2/tables/7/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.216.table b/eccodes/definitions/grib2/tables/7/4.216.table new file mode 100644 index 00000000..a1e12c20 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.216.table @@ -0,0 +1,3 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.217.table b/eccodes/definitions/grib2/tables/7/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.218.table b/eccodes/definitions/grib2/tables/7/4.218.table new file mode 100644 index 00000000..6c436dfc --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.218.table @@ -0,0 +1,35 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.219.table b/eccodes/definitions/grib2/tables/7/4.219.table new file mode 100644 index 00000000..ead9d6b7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.219.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.220.table b/eccodes/definitions/grib2/tables/7/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.221.table b/eccodes/definitions/grib2/tables/7/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.222.table b/eccodes/definitions/grib2/tables/7/4.222.table new file mode 100644 index 00000000..a4790257 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.222.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.223.table b/eccodes/definitions/grib2/tables/7/4.223.table new file mode 100644 index 00000000..d7205dc9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.224.table b/eccodes/definitions/grib2/tables/7/4.224.table new file mode 100644 index 00000000..4128aea6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.224.table @@ -0,0 +1,18 @@ +# CODE TABLE 4.224, Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +#9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +#12-13 Reserved +14 14 Critical risk area +#15-17 Reserved +18 18 Extremely critical risk area +#19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.230.table b/eccodes/definitions/grib2/tables/7/4.230.table new file mode 100644 index 00000000..7bcbe304 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.230.table @@ -0,0 +1,117 @@ +#Code figure Code figure Meaning +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) +10500 10500 Dimethyl sulphide +#10501-20000 10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen +60005 60005 Total inorganic chlorine +60006 60006 Total inorganic bromine +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped Alkanes +60010 60010 Lumped Alkenes +60011 60011 Lumped Aromatic Compounds +60012 60012 Lumped Terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.3.table b/eccodes/definitions/grib2/tables/7/4.3.table new file mode 100644 index 00000000..47bccd26 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.3.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.4.table b/eccodes/definitions/grib2/tables/7/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.5.table b/eccodes/definitions/grib2/tables/7/4.5.table new file mode 100644 index 00000000..a475587a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.5.table @@ -0,0 +1,38 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.6.table b/eccodes/definitions/grib2/tables/7/4.6.table new file mode 100644 index 00000000..1e89185f --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.6.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.7.table b/eccodes/definitions/grib2/tables/7/4.7.table new file mode 100644 index 00000000..d034c11e --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.7.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.8.table b/eccodes/definitions/grib2/tables/7/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.9.table b/eccodes/definitions/grib2/tables/7/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/4.91.table b/eccodes/definitions/grib2/tables/7/4.91.table new file mode 100644 index 00000000..16152a1b --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/4.91.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.91 Type of Interval + +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/7/5.0.table b/eccodes/definitions/grib2/tables/7/5.0.table new file mode 100644 index 00000000..62cc4a47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.0.table @@ -0,0 +1,19 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing diff --git a/eccodes/definitions/grib2/tables/7/5.1.table b/eccodes/definitions/grib2/tables/7/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.2.table b/eccodes/definitions/grib2/tables/7/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.3.table b/eccodes/definitions/grib2/tables/7/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.4.table b/eccodes/definitions/grib2/tables/7/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.40.table b/eccodes/definitions/grib2/tables/7/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.40000.table b/eccodes/definitions/grib2/tables/7/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.5.table b/eccodes/definitions/grib2/tables/7/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.50002.table b/eccodes/definitions/grib2/tables/7/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/7/5.6.table b/eccodes/definitions/grib2/tables/7/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.7.table b/eccodes/definitions/grib2/tables/7/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.8.table b/eccodes/definitions/grib2/tables/7/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/5.9.table b/eccodes/definitions/grib2/tables/7/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/7/6.0.table b/eccodes/definitions/grib2/tables/7/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/7/stepType.table b/eccodes/definitions/grib2/tables/7/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/7/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/8/0.0.table b/eccodes/definitions/grib2/tables/8/0.0.table new file mode 100644 index 00000000..1d3a90b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/0.0.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/1.0.table b/eccodes/definitions/grib2/tables/8/1.0.table new file mode 100644 index 00000000..dc3fcebf --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/1.0.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Pre-operational to be implemented by next amendment +# 10-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/8/1.1.table b/eccodes/definitions/grib2/tables/8/1.1.table new file mode 100644 index 00000000..91ef6624 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/1.1.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/1.2.table b/eccodes/definitions/grib2/tables/8/1.2.table new file mode 100644 index 00000000..d90ad010 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/1.2.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/1.3.table b/eccodes/definitions/grib2/tables/8/1.3.table new file mode 100644 index 00000000..35cd6a63 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/1.3.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/1.4.table b/eccodes/definitions/grib2/tables/8/1.4.table new file mode 100644 index 00000000..d11a335a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/1.4.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/8/3.0.table b/eccodes/definitions/grib2/tables/8/3.0.table new file mode 100644 index 00000000..4baed0aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.0.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/8/3.1.table b/eccodes/definitions/grib2/tables/8/3.1.table new file mode 100644 index 00000000..ee641239 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.10.table b/eccodes/definitions/grib2/tables/8/3.10.table new file mode 100644 index 00000000..23c1cdd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.10.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/8/3.11.table b/eccodes/definitions/grib2/tables/8/3.11.table new file mode 100644 index 00000000..560318d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.11.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.15.table b/eccodes/definitions/grib2/tables/8/3.15.table new file mode 100644 index 00000000..55ca1688 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.15.table @@ -0,0 +1,22 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +# 113-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.2.table b/eccodes/definitions/grib2/tables/8/3.2.table new file mode 100644 index 00000000..3d7a4f1f --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.2.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.20.table b/eccodes/definitions/grib2/tables/8/3.20.table new file mode 100644 index 00000000..3f7ab4cc --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.20.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.21.table b/eccodes/definitions/grib2/tables/8/3.21.table new file mode 100644 index 00000000..b0c77d13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.21.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.3.table b/eccodes/definitions/grib2/tables/8/3.3.table new file mode 100644 index 00000000..5167ed6b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.3.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/8/3.4.table b/eccodes/definitions/grib2/tables/8/3.4.table new file mode 100644 index 00000000..6253896b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.4.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/8/3.5.table b/eccodes/definitions/grib2/tables/8/3.5.table new file mode 100644 index 00000000..8ccf0f13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.5.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/8/3.6.table b/eccodes/definitions/grib2/tables/8/3.6.table new file mode 100644 index 00000000..9a2c239c --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.6.table @@ -0,0 +1,2 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/8/3.7.table b/eccodes/definitions/grib2/tables/8/3.7.table new file mode 100644 index 00000000..41bba832 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.7.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m>=0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.8.table b/eccodes/definitions/grib2/tables/8/3.8.table new file mode 100644 index 00000000..4e811917 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.8.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/3.9.table b/eccodes/definitions/grib2/tables/8/3.9.table new file mode 100644 index 00000000..f35b7ca5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/3.9.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/8/4.0.table b/eccodes/definitions/grib2/tables/8/4.0.table new file mode 100644 index 00000000..faa4f59d --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.0.table @@ -0,0 +1,53 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +# 33-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.1.0.table b/eccodes/definitions/grib2/tables/8/4.1.0.table new file mode 100644 index 00000000..36110886 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.0.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.1.1.table b/eccodes/definitions/grib2/tables/8/4.1.1.table new file mode 100644 index 00000000..29f1dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.1.10.table b/eccodes/definitions/grib2/tables/8/4.1.10.table new file mode 100644 index 00000000..9c8c92b1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.10.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.1.192.table b/eccodes/definitions/grib2/tables/8/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/8/4.1.2.table b/eccodes/definitions/grib2/tables/8/4.1.2.table new file mode 100644 index 00000000..b90201c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.2.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.1.3.table b/eccodes/definitions/grib2/tables/8/4.1.3.table new file mode 100644 index 00000000..3c947b13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.3.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/8/4.1.table b/eccodes/definitions/grib2/tables/8/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.10.table b/eccodes/definitions/grib2/tables/8/4.10.table new file mode 100644 index 00000000..0e517087 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.10.table @@ -0,0 +1,15 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +# 11-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/8/4.11.table b/eccodes/definitions/grib2/tables/8/4.11.table new file mode 100644 index 00000000..1257d1b0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.11.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.12.table b/eccodes/definitions/grib2/tables/8/4.12.table new file mode 100644 index 00000000..e06a3be5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.12.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.13.table b/eccodes/definitions/grib2/tables/8/4.13.table new file mode 100644 index 00000000..107ace60 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.13.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.14.table b/eccodes/definitions/grib2/tables/8/4.14.table new file mode 100644 index 00000000..24a22892 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.14.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.15.table b/eccodes/definitions/grib2/tables/8/4.15.table new file mode 100644 index 00000000..97cdcd2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.15.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.151.table b/eccodes/definitions/grib2/tables/8/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.192.table b/eccodes/definitions/grib2/tables/8/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.0.table b/eccodes/definitions/grib2/tables/8/4.2.0.0.table new file mode 100644 index 00000000..debc0a6f --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.0.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew-point temperature (K) +7 7 Dew-point depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew-point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.1.table b/eccodes/definitions/grib2/tables/8/4.2.0.1.table new file mode 100644 index 00000000..1922792a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.1.table @@ -0,0 +1,95 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total Condensate (kg/kg) +81 81 Total Column-Integrated Condensate (kg m-2) +82 82 Cloud Ice Mixing-Ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rain water content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.13.table b/eccodes/definitions/grib2/tables/8/4.2.0.13.table new file mode 100644 index 00000000..b9979f0d --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.13.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.14.table b/eccodes/definitions/grib2/tables/8/4.2.0.14.table new file mode 100644 index 00000000..4a2a4e12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.14.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.15.table b/eccodes/definitions/grib2/tables/8/4.2.0.15.table new file mode 100644 index 00000000..a7fa034b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.15.table @@ -0,0 +1,19 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically-integrated liquid (kg/m) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.16.table b/eccodes/definitions/grib2/tables/8/4.2.0.16.table new file mode 100644 index 00000000..39215ab2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.16.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.18.table b/eccodes/definitions/grib2/tables/8/4.2.0.18.table new file mode 100644 index 00000000..30060fd2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.18.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.19.table b/eccodes/definitions/grib2/tables/8/4.2.0.19.table new file mode 100644 index 00000000..1bbbd424 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.19.table @@ -0,0 +1,31 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather Interpretation ww (WMO) (-) +26 26 Convective outlook (Code table 4.224) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.190.table b/eccodes/definitions/grib2/tables/8/4.2.0.190.table new file mode 100644 index 00000000..39fb5574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.190.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.191.table b/eccodes/definitions/grib2/tables/8/4.2.0.191.table new file mode 100644 index 00000000..81230c0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.191.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.2.table b/eccodes/definitions/grib2/tables/8/4.2.0.2.table new file mode 100644 index 00000000..58428f66 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.2.table @@ -0,0 +1,38 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +# 34-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.20.table b/eccodes/definitions/grib2/tables/8/4.2.0.20.table new file mode 100644 index 00000000..d0ef4b3a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.20.table @@ -0,0 +1,42 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Atmosphere optical thickness (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.3.table b/eccodes/definitions/grib2/tables/8/4.2.0.3.table new file mode 100644 index 00000000..b337cbd0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.3.table @@ -0,0 +1,30 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +# 26-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.4.table b/eccodes/definitions/grib2/tables/8/4.2.0.4.table new file mode 100644 index 00000000..fea4cafc --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.4.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.5.table b/eccodes/definitions/grib2/tables/8/4.2.0.5.table new file mode 100644 index 00000000..aae853bf --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.5.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.6.table b/eccodes/definitions/grib2/tables/8/4.2.0.6.table new file mode 100644 index 00000000..462727d0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.6.table @@ -0,0 +1,38 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number concentration of cloud droplets (/kg) +29 29 Number concentration of cloud ice (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +# 34-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.7.table b/eccodes/definitions/grib2/tables/8/4.2.0.7.table new file mode 100644 index 00000000..7a7d2008 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.0.7.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.0.table b/eccodes/definitions/grib2/tables/8/4.2.1.0.table new file mode 100644 index 00000000..bf1e3e93 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.1.0.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.1.table b/eccodes/definitions/grib2/tables/8/4.2.1.1.table new file mode 100644 index 00000000..cb5117dc --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.2.table b/eccodes/definitions/grib2/tables/8/4.2.1.2.table new file mode 100644 index 00000000..499991d5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.1.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar attenuation coefficient of water with respect to solar radiation (m-1) +12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.0.table b/eccodes/definitions/grib2/tables/8/4.2.10.0.table new file mode 100644 index 00000000..eb9d1fa6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.0.table @@ -0,0 +1,53 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) (deg) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) (deg) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) (deg) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) (deg) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) (deg) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m s-1) +18 18 Wave stress (N m-2) +19 19 Normalised wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m s-1) +22 22 v-component surface Stokes drift (m s-1) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of the wind waves (s) +27 27 Inverse mean frequency of the total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of the wind waves (s) +30 30 Mean zero-crossing period of the total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of the wind waves (-) +33 33 Directional width of the total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of the wind waves (s) +36 36 Peak period of the total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10 metre neutral wind speed over waves (m s-1) +41 41 10 metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (s-1) +46 46 2-dim spectral energy density (m2 s) +47 47 Frequency spectral energy density (m2 s) +48 48 Directional spectral energy density +# 49-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.1.table b/eccodes/definitions/grib2/tables/8/4.2.10.1.table new file mode 100644 index 00000000..5a33bac5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.1.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (degree true) (deg) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.191.table b/eccodes/definitions/grib2/tables/8/4.2.10.191.table new file mode 100644 index 00000000..14085ac9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.191.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.2.table b/eccodes/definitions/grib2/tables/8/4.2.10.2.table new file mode 100644 index 00000000..a69b2622 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) (deg) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.3.table b/eccodes/definitions/grib2/tables/8/4.2.10.3.table new file mode 100644 index 00000000..112af09d --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.3.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.4.table b/eccodes/definitions/grib2/tables/8/4.2.10.4.table new file mode 100644 index 00000000..d80a3278 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.10.4.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (m-1) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.0.table b/eccodes/definitions/grib2/tables/8/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.1.table b/eccodes/definitions/grib2/tables/8/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.10.table b/eccodes/definitions/grib2/tables/8/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.100.table b/eccodes/definitions/grib2/tables/8/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.101.table b/eccodes/definitions/grib2/tables/8/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.102.table b/eccodes/definitions/grib2/tables/8/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.103.table b/eccodes/definitions/grib2/tables/8/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.104.table b/eccodes/definitions/grib2/tables/8/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.105.table b/eccodes/definitions/grib2/tables/8/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.106.table b/eccodes/definitions/grib2/tables/8/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.107.table b/eccodes/definitions/grib2/tables/8/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.108.table b/eccodes/definitions/grib2/tables/8/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.109.table b/eccodes/definitions/grib2/tables/8/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.11.table b/eccodes/definitions/grib2/tables/8/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.110.table b/eccodes/definitions/grib2/tables/8/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.111.table b/eccodes/definitions/grib2/tables/8/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.112.table b/eccodes/definitions/grib2/tables/8/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.113.table b/eccodes/definitions/grib2/tables/8/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.114.table b/eccodes/definitions/grib2/tables/8/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.115.table b/eccodes/definitions/grib2/tables/8/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.116.table b/eccodes/definitions/grib2/tables/8/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.117.table b/eccodes/definitions/grib2/tables/8/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.118.table b/eccodes/definitions/grib2/tables/8/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.119.table b/eccodes/definitions/grib2/tables/8/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.12.table b/eccodes/definitions/grib2/tables/8/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.120.table b/eccodes/definitions/grib2/tables/8/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.121.table b/eccodes/definitions/grib2/tables/8/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.122.table b/eccodes/definitions/grib2/tables/8/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.123.table b/eccodes/definitions/grib2/tables/8/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.124.table b/eccodes/definitions/grib2/tables/8/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.125.table b/eccodes/definitions/grib2/tables/8/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.126.table b/eccodes/definitions/grib2/tables/8/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.127.table b/eccodes/definitions/grib2/tables/8/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.128.table b/eccodes/definitions/grib2/tables/8/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.129.table b/eccodes/definitions/grib2/tables/8/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.13.table b/eccodes/definitions/grib2/tables/8/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.130.table b/eccodes/definitions/grib2/tables/8/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.131.table b/eccodes/definitions/grib2/tables/8/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.132.table b/eccodes/definitions/grib2/tables/8/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.133.table b/eccodes/definitions/grib2/tables/8/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.134.table b/eccodes/definitions/grib2/tables/8/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.135.table b/eccodes/definitions/grib2/tables/8/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.136.table b/eccodes/definitions/grib2/tables/8/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.137.table b/eccodes/definitions/grib2/tables/8/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.138.table b/eccodes/definitions/grib2/tables/8/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.139.table b/eccodes/definitions/grib2/tables/8/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.14.table b/eccodes/definitions/grib2/tables/8/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.140.table b/eccodes/definitions/grib2/tables/8/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.141.table b/eccodes/definitions/grib2/tables/8/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.142.table b/eccodes/definitions/grib2/tables/8/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.143.table b/eccodes/definitions/grib2/tables/8/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.144.table b/eccodes/definitions/grib2/tables/8/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.145.table b/eccodes/definitions/grib2/tables/8/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.146.table b/eccodes/definitions/grib2/tables/8/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.147.table b/eccodes/definitions/grib2/tables/8/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.148.table b/eccodes/definitions/grib2/tables/8/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.149.table b/eccodes/definitions/grib2/tables/8/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.15.table b/eccodes/definitions/grib2/tables/8/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.150.table b/eccodes/definitions/grib2/tables/8/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.151.table b/eccodes/definitions/grib2/tables/8/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.152.table b/eccodes/definitions/grib2/tables/8/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.153.table b/eccodes/definitions/grib2/tables/8/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.154.table b/eccodes/definitions/grib2/tables/8/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.155.table b/eccodes/definitions/grib2/tables/8/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.156.table b/eccodes/definitions/grib2/tables/8/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.157.table b/eccodes/definitions/grib2/tables/8/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.158.table b/eccodes/definitions/grib2/tables/8/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.159.table b/eccodes/definitions/grib2/tables/8/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.16.table b/eccodes/definitions/grib2/tables/8/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.160.table b/eccodes/definitions/grib2/tables/8/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.161.table b/eccodes/definitions/grib2/tables/8/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.162.table b/eccodes/definitions/grib2/tables/8/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.163.table b/eccodes/definitions/grib2/tables/8/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.164.table b/eccodes/definitions/grib2/tables/8/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.165.table b/eccodes/definitions/grib2/tables/8/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.166.table b/eccodes/definitions/grib2/tables/8/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.167.table b/eccodes/definitions/grib2/tables/8/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.168.table b/eccodes/definitions/grib2/tables/8/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.169.table b/eccodes/definitions/grib2/tables/8/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.17.table b/eccodes/definitions/grib2/tables/8/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.170.table b/eccodes/definitions/grib2/tables/8/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.171.table b/eccodes/definitions/grib2/tables/8/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.172.table b/eccodes/definitions/grib2/tables/8/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.173.table b/eccodes/definitions/grib2/tables/8/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.174.table b/eccodes/definitions/grib2/tables/8/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.175.table b/eccodes/definitions/grib2/tables/8/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.176.table b/eccodes/definitions/grib2/tables/8/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.177.table b/eccodes/definitions/grib2/tables/8/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.178.table b/eccodes/definitions/grib2/tables/8/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.179.table b/eccodes/definitions/grib2/tables/8/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.18.table b/eccodes/definitions/grib2/tables/8/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.180.table b/eccodes/definitions/grib2/tables/8/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.181.table b/eccodes/definitions/grib2/tables/8/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.182.table b/eccodes/definitions/grib2/tables/8/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.183.table b/eccodes/definitions/grib2/tables/8/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.184.table b/eccodes/definitions/grib2/tables/8/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.185.table b/eccodes/definitions/grib2/tables/8/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.186.table b/eccodes/definitions/grib2/tables/8/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.187.table b/eccodes/definitions/grib2/tables/8/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.188.table b/eccodes/definitions/grib2/tables/8/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.189.table b/eccodes/definitions/grib2/tables/8/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.19.table b/eccodes/definitions/grib2/tables/8/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.190.table b/eccodes/definitions/grib2/tables/8/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.191.table b/eccodes/definitions/grib2/tables/8/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.192.table b/eccodes/definitions/grib2/tables/8/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.193.table b/eccodes/definitions/grib2/tables/8/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.194.table b/eccodes/definitions/grib2/tables/8/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.195.table b/eccodes/definitions/grib2/tables/8/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.196.table b/eccodes/definitions/grib2/tables/8/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.197.table b/eccodes/definitions/grib2/tables/8/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.198.table b/eccodes/definitions/grib2/tables/8/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.199.table b/eccodes/definitions/grib2/tables/8/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.2.table b/eccodes/definitions/grib2/tables/8/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.20.table b/eccodes/definitions/grib2/tables/8/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.200.table b/eccodes/definitions/grib2/tables/8/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.201.table b/eccodes/definitions/grib2/tables/8/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.202.table b/eccodes/definitions/grib2/tables/8/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.203.table b/eccodes/definitions/grib2/tables/8/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.204.table b/eccodes/definitions/grib2/tables/8/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.205.table b/eccodes/definitions/grib2/tables/8/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.206.table b/eccodes/definitions/grib2/tables/8/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.207.table b/eccodes/definitions/grib2/tables/8/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.208.table b/eccodes/definitions/grib2/tables/8/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.209.table b/eccodes/definitions/grib2/tables/8/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.21.table b/eccodes/definitions/grib2/tables/8/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.210.table b/eccodes/definitions/grib2/tables/8/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.211.table b/eccodes/definitions/grib2/tables/8/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.212.table b/eccodes/definitions/grib2/tables/8/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.213.table b/eccodes/definitions/grib2/tables/8/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.214.table b/eccodes/definitions/grib2/tables/8/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.215.table b/eccodes/definitions/grib2/tables/8/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.216.table b/eccodes/definitions/grib2/tables/8/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.217.table b/eccodes/definitions/grib2/tables/8/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.218.table b/eccodes/definitions/grib2/tables/8/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.219.table b/eccodes/definitions/grib2/tables/8/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.22.table b/eccodes/definitions/grib2/tables/8/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.220.table b/eccodes/definitions/grib2/tables/8/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.221.table b/eccodes/definitions/grib2/tables/8/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.222.table b/eccodes/definitions/grib2/tables/8/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.223.table b/eccodes/definitions/grib2/tables/8/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.224.table b/eccodes/definitions/grib2/tables/8/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.225.table b/eccodes/definitions/grib2/tables/8/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.226.table b/eccodes/definitions/grib2/tables/8/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.227.table b/eccodes/definitions/grib2/tables/8/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.228.table b/eccodes/definitions/grib2/tables/8/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.229.table b/eccodes/definitions/grib2/tables/8/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.23.table b/eccodes/definitions/grib2/tables/8/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.230.table b/eccodes/definitions/grib2/tables/8/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.231.table b/eccodes/definitions/grib2/tables/8/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.232.table b/eccodes/definitions/grib2/tables/8/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.233.table b/eccodes/definitions/grib2/tables/8/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.234.table b/eccodes/definitions/grib2/tables/8/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.235.table b/eccodes/definitions/grib2/tables/8/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.236.table b/eccodes/definitions/grib2/tables/8/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.237.table b/eccodes/definitions/grib2/tables/8/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.238.table b/eccodes/definitions/grib2/tables/8/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.239.table b/eccodes/definitions/grib2/tables/8/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.24.table b/eccodes/definitions/grib2/tables/8/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.240.table b/eccodes/definitions/grib2/tables/8/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.241.table b/eccodes/definitions/grib2/tables/8/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.242.table b/eccodes/definitions/grib2/tables/8/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.243.table b/eccodes/definitions/grib2/tables/8/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.244.table b/eccodes/definitions/grib2/tables/8/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.245.table b/eccodes/definitions/grib2/tables/8/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.246.table b/eccodes/definitions/grib2/tables/8/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.247.table b/eccodes/definitions/grib2/tables/8/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.248.table b/eccodes/definitions/grib2/tables/8/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.249.table b/eccodes/definitions/grib2/tables/8/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.25.table b/eccodes/definitions/grib2/tables/8/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.250.table b/eccodes/definitions/grib2/tables/8/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.251.table b/eccodes/definitions/grib2/tables/8/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.252.table b/eccodes/definitions/grib2/tables/8/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.253.table b/eccodes/definitions/grib2/tables/8/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.254.table b/eccodes/definitions/grib2/tables/8/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.255.table b/eccodes/definitions/grib2/tables/8/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.26.table b/eccodes/definitions/grib2/tables/8/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.27.table b/eccodes/definitions/grib2/tables/8/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.28.table b/eccodes/definitions/grib2/tables/8/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.29.table b/eccodes/definitions/grib2/tables/8/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.3.table b/eccodes/definitions/grib2/tables/8/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.30.table b/eccodes/definitions/grib2/tables/8/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.31.table b/eccodes/definitions/grib2/tables/8/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.32.table b/eccodes/definitions/grib2/tables/8/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.33.table b/eccodes/definitions/grib2/tables/8/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.34.table b/eccodes/definitions/grib2/tables/8/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.35.table b/eccodes/definitions/grib2/tables/8/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.36.table b/eccodes/definitions/grib2/tables/8/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.37.table b/eccodes/definitions/grib2/tables/8/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.38.table b/eccodes/definitions/grib2/tables/8/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.39.table b/eccodes/definitions/grib2/tables/8/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.4.table b/eccodes/definitions/grib2/tables/8/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.40.table b/eccodes/definitions/grib2/tables/8/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.41.table b/eccodes/definitions/grib2/tables/8/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.42.table b/eccodes/definitions/grib2/tables/8/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.43.table b/eccodes/definitions/grib2/tables/8/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.44.table b/eccodes/definitions/grib2/tables/8/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.45.table b/eccodes/definitions/grib2/tables/8/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.46.table b/eccodes/definitions/grib2/tables/8/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.47.table b/eccodes/definitions/grib2/tables/8/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.48.table b/eccodes/definitions/grib2/tables/8/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.49.table b/eccodes/definitions/grib2/tables/8/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.5.table b/eccodes/definitions/grib2/tables/8/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.50.table b/eccodes/definitions/grib2/tables/8/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.51.table b/eccodes/definitions/grib2/tables/8/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.52.table b/eccodes/definitions/grib2/tables/8/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.53.table b/eccodes/definitions/grib2/tables/8/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.54.table b/eccodes/definitions/grib2/tables/8/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.55.table b/eccodes/definitions/grib2/tables/8/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.56.table b/eccodes/definitions/grib2/tables/8/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.57.table b/eccodes/definitions/grib2/tables/8/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.58.table b/eccodes/definitions/grib2/tables/8/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.59.table b/eccodes/definitions/grib2/tables/8/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.6.table b/eccodes/definitions/grib2/tables/8/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.60.table b/eccodes/definitions/grib2/tables/8/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.61.table b/eccodes/definitions/grib2/tables/8/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.62.table b/eccodes/definitions/grib2/tables/8/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.63.table b/eccodes/definitions/grib2/tables/8/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.64.table b/eccodes/definitions/grib2/tables/8/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.65.table b/eccodes/definitions/grib2/tables/8/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.66.table b/eccodes/definitions/grib2/tables/8/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.67.table b/eccodes/definitions/grib2/tables/8/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.68.table b/eccodes/definitions/grib2/tables/8/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.69.table b/eccodes/definitions/grib2/tables/8/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.7.table b/eccodes/definitions/grib2/tables/8/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.70.table b/eccodes/definitions/grib2/tables/8/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.71.table b/eccodes/definitions/grib2/tables/8/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.72.table b/eccodes/definitions/grib2/tables/8/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.73.table b/eccodes/definitions/grib2/tables/8/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.74.table b/eccodes/definitions/grib2/tables/8/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.75.table b/eccodes/definitions/grib2/tables/8/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.76.table b/eccodes/definitions/grib2/tables/8/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.77.table b/eccodes/definitions/grib2/tables/8/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.78.table b/eccodes/definitions/grib2/tables/8/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.79.table b/eccodes/definitions/grib2/tables/8/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.8.table b/eccodes/definitions/grib2/tables/8/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.80.table b/eccodes/definitions/grib2/tables/8/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.81.table b/eccodes/definitions/grib2/tables/8/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.82.table b/eccodes/definitions/grib2/tables/8/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.83.table b/eccodes/definitions/grib2/tables/8/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.84.table b/eccodes/definitions/grib2/tables/8/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.85.table b/eccodes/definitions/grib2/tables/8/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.86.table b/eccodes/definitions/grib2/tables/8/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.87.table b/eccodes/definitions/grib2/tables/8/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.88.table b/eccodes/definitions/grib2/tables/8/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.89.table b/eccodes/definitions/grib2/tables/8/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.9.table b/eccodes/definitions/grib2/tables/8/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.90.table b/eccodes/definitions/grib2/tables/8/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.91.table b/eccodes/definitions/grib2/tables/8/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.92.table b/eccodes/definitions/grib2/tables/8/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.93.table b/eccodes/definitions/grib2/tables/8/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.94.table b/eccodes/definitions/grib2/tables/8/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.95.table b/eccodes/definitions/grib2/tables/8/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.96.table b/eccodes/definitions/grib2/tables/8/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.97.table b/eccodes/definitions/grib2/tables/8/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.98.table b/eccodes/definitions/grib2/tables/8/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.99.table b/eccodes/definitions/grib2/tables/8/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.0.table b/eccodes/definitions/grib2/tables/8/4.2.2.0.table new file mode 100644 index 00000000..b440b942 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.2.0.table @@ -0,0 +1,37 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest (Numeric) +30 30 Deciduous forest (Numeric) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +# 33-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.3.table b/eccodes/definitions/grib2/tables/8/4.2.2.3.table new file mode 100644 index 00000000..80113a4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.2.3.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil Temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.4.table b/eccodes/definitions/grib2/tables/8/4.2.2.4.table new file mode 100644 index 00000000..9731abe8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.2.4.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) diff --git a/eccodes/definitions/grib2/tables/8/4.2.3.0.table b/eccodes/definitions/grib2/tables/8/4.2.3.0.table new file mode 100644 index 00000000..254e56bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.3.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.2.3.1.table b/eccodes/definitions/grib2/tables/8/4.2.3.1.table new file mode 100644 index 00000000..16eee69c --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.2.3.1.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.201.table b/eccodes/definitions/grib2/tables/8/4.201.table new file mode 100644 index 00000000..ebb698b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.201.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.202.table b/eccodes/definitions/grib2/tables/8/4.202.table new file mode 100644 index 00000000..943c03f6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.202.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.203.table b/eccodes/definitions/grib2/tables/8/4.203.table new file mode 100644 index 00000000..fce5a15b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.203.table @@ -0,0 +1,25 @@ +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.204.table b/eccodes/definitions/grib2/tables/8/4.204.table new file mode 100644 index 00000000..51d1cecc --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.204.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.205.table b/eccodes/definitions/grib2/tables/8/4.205.table new file mode 100644 index 00000000..8d425ab9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.205.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.206.table b/eccodes/definitions/grib2/tables/8/4.206.table new file mode 100644 index 00000000..0be7fd4f --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.206.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.207.table b/eccodes/definitions/grib2/tables/8/4.207.table new file mode 100644 index 00000000..fde9eb47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.207.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.208.table b/eccodes/definitions/grib2/tables/8/4.208.table new file mode 100644 index 00000000..196becaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.208.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.209.table b/eccodes/definitions/grib2/tables/8/4.209.table new file mode 100644 index 00000000..351c0f43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.209.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Stable +2 2 Mechanically-driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.210.table b/eccodes/definitions/grib2/tables/8/4.210.table new file mode 100644 index 00000000..1c00b8c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.210.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.211.table b/eccodes/definitions/grib2/tables/8/4.211.table new file mode 100644 index 00000000..66ef656f --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.211.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.212.table b/eccodes/definitions/grib2/tables/8/4.212.table new file mode 100644 index 00000000..c59bd24e --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.212.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.213.table b/eccodes/definitions/grib2/tables/8/4.213.table new file mode 100644 index 00000000..0f5de010 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.213.table @@ -0,0 +1,21 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +12 12 Loam +13 13 Peat +14 14 Rock +15 15 Ice +16 16 Water +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.215.table b/eccodes/definitions/grib2/tables/8/4.215.table new file mode 100644 index 00000000..46088821 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.215.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.216.table b/eccodes/definitions/grib2/tables/8/4.216.table new file mode 100644 index 00000000..cc62ca5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.216.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.217.table b/eccodes/definitions/grib2/tables/8/4.217.table new file mode 100644 index 00000000..51a263a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.217.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.218.table b/eccodes/definitions/grib2/tables/8/4.218.table new file mode 100644 index 00000000..d4b2ab84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.218.table @@ -0,0 +1,38 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.219.table b/eccodes/definitions/grib2/tables/8/4.219.table new file mode 100644 index 00000000..f10ce468 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.219.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.220.table b/eccodes/definitions/grib2/tables/8/4.220.table new file mode 100644 index 00000000..9c957eb0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.220.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.221.table b/eccodes/definitions/grib2/tables/8/4.221.table new file mode 100644 index 00000000..5466929c --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.221.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.222.table b/eccodes/definitions/grib2/tables/8/4.222.table new file mode 100644 index 00000000..c54194e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.222.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.223.table b/eccodes/definitions/grib2/tables/8/4.223.table new file mode 100644 index 00000000..b6a9be13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing value diff --git a/eccodes/definitions/grib2/tables/8/4.224.table b/eccodes/definitions/grib2/tables/8/4.224.table new file mode 100644 index 00000000..af846f84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.224.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.230.table b/eccodes/definitions/grib2/tables/8/4.230.table new file mode 100644 index 00000000..afd1ab8d --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.230.table @@ -0,0 +1,415 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +#38-9999 Reserved +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +#60017-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.233.table b/eccodes/definitions/grib2/tables/8/4.233.table new file mode 100644 index 00000000..c5e8f2b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.233.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.3.table b/eccodes/definitions/grib2/tables/8/4.3.table new file mode 100644 index 00000000..68e2cc83 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.3.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.4.table b/eccodes/definitions/grib2/tables/8/4.4.table new file mode 100644 index 00000000..df5272d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.4.table @@ -0,0 +1,17 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.5.table b/eccodes/definitions/grib2/tables/8/4.5.table new file mode 100644 index 00000000..91aabb83 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.5.table @@ -0,0 +1,48 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid coordinate +# 114-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level m +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +# 167-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.6.table b/eccodes/definitions/grib2/tables/8/4.6.table new file mode 100644 index 00000000..54f2993c --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.6.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.7.table b/eccodes/definitions/grib2/tables/8/4.7.table new file mode 100644 index 00000000..23e0d457 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.7.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.8.table b/eccodes/definitions/grib2/tables/8/4.8.table new file mode 100644 index 00000000..37a6cf76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.8.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.9.table b/eccodes/definitions/grib2/tables/8/4.9.table new file mode 100644 index 00000000..19e64a3d --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.9.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/4.91.table b/eccodes/definitions/grib2/tables/8/4.91.table new file mode 100644 index 00000000..05c4579b --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/4.91.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit. +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/8/5.0.table b/eccodes/definitions/grib2/tables/8/5.0.table new file mode 100644 index 00000000..c7995a96 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.0.table @@ -0,0 +1,24 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +#42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +#52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.1.table b/eccodes/definitions/grib2/tables/8/5.1.table new file mode 100644 index 00000000..100d4106 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.1.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.2.table b/eccodes/definitions/grib2/tables/8/5.2.table new file mode 100644 index 00000000..4d0808be --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.2.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.3.table b/eccodes/definitions/grib2/tables/8/5.3.table new file mode 100644 index 00000000..705fa652 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.3.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.4.table b/eccodes/definitions/grib2/tables/8/5.4.table new file mode 100644 index 00000000..8133367a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.4.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.40.table b/eccodes/definitions/grib2/tables/8/5.40.table new file mode 100644 index 00000000..0d56ad0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.40.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.40000.table b/eccodes/definitions/grib2/tables/8/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.5.table b/eccodes/definitions/grib2/tables/8/5.5.table new file mode 100644 index 00000000..5d625dbd --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.5.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.50002.table b/eccodes/definitions/grib2/tables/8/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/8/5.6.table b/eccodes/definitions/grib2/tables/8/5.6.table new file mode 100644 index 00000000..5838e994 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.6.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.7.table b/eccodes/definitions/grib2/tables/8/5.7.table new file mode 100644 index 00000000..b93aa813 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.7.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.8.table b/eccodes/definitions/grib2/tables/8/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/5.9.table b/eccodes/definitions/grib2/tables/8/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/8/6.0.table b/eccodes/definitions/grib2/tables/8/6.0.table new file mode 100644 index 00000000..aecdc6e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/6.0.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/8/stepType.table b/eccodes/definitions/grib2/tables/8/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/8/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/9/0.0.table b/eccodes/definitions/grib2/tables/9/0.0.table new file mode 100644 index 00000000..1d3a90b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/0.0.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/1.0.table b/eccodes/definitions/grib2/tables/9/1.0.table new file mode 100644 index 00000000..045af30c --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/1.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Pre-operational to be implemented by next amendment +# 11-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib2/tables/9/1.1.table b/eccodes/definitions/grib2/tables/9/1.1.table new file mode 100644 index 00000000..91ef6624 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/1.1.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/1.2.table b/eccodes/definitions/grib2/tables/9/1.2.table new file mode 100644 index 00000000..d90ad010 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/1.2.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/1.3.table b/eccodes/definitions/grib2/tables/9/1.3.table new file mode 100644 index 00000000..35cd6a63 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/1.3.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/1.4.table b/eccodes/definitions/grib2/tables/9/1.4.table new file mode 100644 index 00000000..d11a335a --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/1.4.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/9/3.0.table b/eccodes/definitions/grib2/tables/9/3.0.table new file mode 100644 index 00000000..4baed0aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.0.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib2/tables/9/3.1.table b/eccodes/definitions/grib2/tables/9/3.1.table new file mode 100644 index 00000000..ee641239 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.10.table b/eccodes/definitions/grib2/tables/9/3.10.table new file mode 100644 index 00000000..23c1cdd3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.10.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/eccodes/definitions/grib2/tables/9/3.11.table b/eccodes/definitions/grib2/tables/9/3.11.table new file mode 100644 index 00000000..560318d1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.11.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.15.table b/eccodes/definitions/grib2/tables/9/3.15.table new file mode 100644 index 00000000..94f6c8e0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.15.table @@ -0,0 +1,23 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.2.table b/eccodes/definitions/grib2/tables/9/3.2.table new file mode 100644 index 00000000..3d7a4f1f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.2.table @@ -0,0 +1,13 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.20.table b/eccodes/definitions/grib2/tables/9/3.20.table new file mode 100644 index 00000000..3f7ab4cc --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.20.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.21.table b/eccodes/definitions/grib2/tables/9/3.21.table new file mode 100644 index 00000000..b0c77d13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.21.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.3.table b/eccodes/definitions/grib2/tables/9/3.3.table new file mode 100644 index 00000000..5167ed6b --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.3.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib2/tables/9/3.4.table b/eccodes/definitions/grib2/tables/9/3.4.table new file mode 100644 index 00000000..6253896b --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.4.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +# 5-8 Reserved diff --git a/eccodes/definitions/grib2/tables/9/3.5.table b/eccodes/definitions/grib2/tables/9/3.5.table new file mode 100644 index 00000000..8ccf0f13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.5.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions/grib2/tables/9/3.6.table b/eccodes/definitions/grib2/tables/9/3.6.table new file mode 100644 index 00000000..9a2c239c --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.6.table @@ -0,0 +1,2 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib2/tables/9/3.7.table b/eccodes/definitions/grib2/tables/9/3.7.table new file mode 100644 index 00000000..65693989 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.7.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m>=0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.8.table b/eccodes/definitions/grib2/tables/9/3.8.table new file mode 100644 index 00000000..4e811917 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.8.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/3.9.table b/eccodes/definitions/grib2/tables/9/3.9.table new file mode 100644 index 00000000..f35b7ca5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/3.9.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/eccodes/definitions/grib2/tables/9/4.0.table b/eccodes/definitions/grib2/tables/9/4.0.table new file mode 100644 index 00000000..faa4f59d --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.0.table @@ -0,0 +1,53 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +# 33-39 Reserved +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.1.0.table b/eccodes/definitions/grib2/tables/9/4.1.0.table new file mode 100644 index 00000000..36110886 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.0.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.1.1.table b/eccodes/definitions/grib2/tables/9/4.1.1.table new file mode 100644 index 00000000..29f1dec7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.1.10.table b/eccodes/definitions/grib2/tables/9/4.1.10.table new file mode 100644 index 00000000..9c8c92b1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.10.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Sub-surface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.1.192.table b/eccodes/definitions/grib2/tables/9/4.1.192.table new file mode 100644 index 00000000..c428acab --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/9/4.1.2.table b/eccodes/definitions/grib2/tables/9/4.1.2.table new file mode 100644 index 00000000..b90201c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.2.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.1.3.table b/eccodes/definitions/grib2/tables/9/4.1.3.table new file mode 100644 index 00000000..3c947b13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.3.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib2/tables/9/4.1.table b/eccodes/definitions/grib2/tables/9/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.10.table b/eccodes/definitions/grib2/tables/9/4.10.table new file mode 100644 index 00000000..0e517087 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.10.table @@ -0,0 +1,15 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +# 11-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/9/4.11.table b/eccodes/definitions/grib2/tables/9/4.11.table new file mode 100644 index 00000000..1257d1b0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.11.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.12.table b/eccodes/definitions/grib2/tables/9/4.12.table new file mode 100644 index 00000000..e06a3be5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.12.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.13.table b/eccodes/definitions/grib2/tables/9/4.13.table new file mode 100644 index 00000000..107ace60 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.13.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.14.table b/eccodes/definitions/grib2/tables/9/4.14.table new file mode 100644 index 00000000..24a22892 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.14.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.15.table b/eccodes/definitions/grib2/tables/9/4.15.table new file mode 100644 index 00000000..97cdcd2e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.15.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.151.table b/eccodes/definitions/grib2/tables/9/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.192.table b/eccodes/definitions/grib2/tables/9/4.192.table new file mode 100644 index 00000000..e1fd9159 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.0.table b/eccodes/definitions/grib2/tables/9/4.2.0.0.table new file mode 100644 index 00000000..debc0a6f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.0.table @@ -0,0 +1,25 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew-point temperature (K) +7 7 Dew-point depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew-point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.1.table b/eccodes/definitions/grib2/tables/9/4.2.0.1.table new file mode 100644 index 00000000..1922792a --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.1.table @@ -0,0 +1,95 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total Condensate (kg/kg) +81 81 Total Column-Integrated Condensate (kg m-2) +82 82 Cloud Ice Mixing-Ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rain water content (kg/kg) +86 86 Specific snow water content (kg/kg) +# 87-89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +# 93-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.13.table b/eccodes/definitions/grib2/tables/9/4.2.0.13.table new file mode 100644 index 00000000..b9979f0d --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.13.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.14.table b/eccodes/definitions/grib2/tables/9/4.2.0.14.table new file mode 100644 index 00000000..4a2a4e12 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.14.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.15.table b/eccodes/definitions/grib2/tables/9/4.2.0.15.table new file mode 100644 index 00000000..895892f8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.15.table @@ -0,0 +1,19 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically-integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.16.table b/eccodes/definitions/grib2/tables/9/4.2.0.16.table new file mode 100644 index 00000000..39215ab2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.16.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.18.table b/eccodes/definitions/grib2/tables/9/4.2.0.18.table new file mode 100644 index 00000000..30060fd2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.18.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.19.table b/eccodes/definitions/grib2/tables/9/4.2.0.19.table new file mode 100644 index 00000000..5831b567 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.19.table @@ -0,0 +1,32 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.190.table b/eccodes/definitions/grib2/tables/9/4.2.0.190.table new file mode 100644 index 00000000..39fb5574 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.190.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.191.table b/eccodes/definitions/grib2/tables/9/4.2.0.191.table new file mode 100644 index 00000000..81230c0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.191.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.2.table b/eccodes/definitions/grib2/tables/9/4.2.0.2.table new file mode 100644 index 00000000..e8b59a99 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.2.table @@ -0,0 +1,40 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.20.table b/eccodes/definitions/grib2/tables/9/4.2.0.20.table new file mode 100644 index 00000000..cc2dbcc5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.20.table @@ -0,0 +1,42 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +# 60-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (m-1) +106 106 Aerosol absorption coefficient (m-1) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (m-1) +110 110 Aerosol lidar extinction from the ground (m-1) +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.3.table b/eccodes/definitions/grib2/tables/9/4.2.0.3.table new file mode 100644 index 00000000..f718c6ea --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.3.table @@ -0,0 +1,31 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +# 27-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.4.table b/eccodes/definitions/grib2/tables/9/4.2.0.4.table new file mode 100644 index 00000000..fea4cafc --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.4.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +# 13-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +# 52-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.5.table b/eccodes/definitions/grib2/tables/9/4.2.0.5.table new file mode 100644 index 00000000..aae853bf --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.5.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.6.table b/eccodes/definitions/grib2/tables/9/4.2.0.6.table new file mode 100644 index 00000000..fd4b2301 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.6.table @@ -0,0 +1,40 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long wave effective total cloudiness (Numeric) +35 35 Surface short wave effective total cloudiness (Numeric) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.7.table b/eccodes/definitions/grib2/tables/9/4.2.0.7.table new file mode 100644 index 00000000..7a7d2008 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.0.7.table @@ -0,0 +1,20 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraft helicity (m2 s-2) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.0.table b/eccodes/definitions/grib2/tables/9/4.2.1.0.table new file mode 100644 index 00000000..bf1e3e93 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.1.0.table @@ -0,0 +1,11 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.1.table b/eccodes/definitions/grib2/tables/9/4.2.1.1.table new file mode 100644 index 00000000..cb5117dc --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.1.1.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.2.table b/eccodes/definitions/grib2/tables/9/4.2.1.2.table new file mode 100644 index 00000000..c53a175f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.1.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (m-1) +12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.0.table b/eccodes/definitions/grib2/tables/9/4.2.10.0.table new file mode 100644 index 00000000..d4321d95 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.0.table @@ -0,0 +1,50 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) (deg) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) (deg) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) (deg) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) (deg) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) (deg) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m s-1) +18 18 Wave stress (N m-2) +19 19 Normalised wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m s-1) +22 22 v-component surface Stokes drift (m s-1) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of the wind waves (s) +27 27 Inverse mean frequency of the total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of the wind waves (s) +30 30 Mean zero-crossing period of the total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of the wind waves (-) +33 33 Directional width of the total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of the wind waves (s) +36 36 Peak period of the total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10 metre neutral wind speed over waves (m s-1) +41 41 10 metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (s-1) +# 46-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.1.table b/eccodes/definitions/grib2/tables/9/4.2.10.1.table new file mode 100644 index 00000000..5a33bac5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.1.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Current direction (degree true) (deg) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.191.table b/eccodes/definitions/grib2/tables/9/4.2.10.191.table new file mode 100644 index 00000000..14085ac9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.191.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.2.table b/eccodes/definitions/grib2/tables/9/4.2.10.2.table new file mode 100644 index 00000000..a69b2622 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.2.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) (deg) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Ice internal pressure (Pa m) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.3.table b/eccodes/definitions/grib2/tables/9/4.2.10.3.table new file mode 100644 index 00000000..112af09d --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.3.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.4.table b/eccodes/definitions/grib2/tables/9/4.2.10.4.table new file mode 100644 index 00000000..d80a3278 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.10.4.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2 s-1) +5 5 Ocean vertical salt diffusivity (m2 s-1) +6 6 Ocean vertical momentum diffusivity (m2 s-1) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (m-1) +14 14 Water depth (m) +15 15 Water temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.0.table b/eccodes/definitions/grib2/tables/9/4.2.192.0.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.0.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.1.table b/eccodes/definitions/grib2/tables/9/4.2.192.1.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.1.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.10.table b/eccodes/definitions/grib2/tables/9/4.2.192.10.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.10.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.100.table b/eccodes/definitions/grib2/tables/9/4.2.192.100.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.100.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.101.table b/eccodes/definitions/grib2/tables/9/4.2.192.101.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.101.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.102.table b/eccodes/definitions/grib2/tables/9/4.2.192.102.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.102.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.103.table b/eccodes/definitions/grib2/tables/9/4.2.192.103.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.103.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.104.table b/eccodes/definitions/grib2/tables/9/4.2.192.104.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.104.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.105.table b/eccodes/definitions/grib2/tables/9/4.2.192.105.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.105.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.106.table b/eccodes/definitions/grib2/tables/9/4.2.192.106.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.106.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.107.table b/eccodes/definitions/grib2/tables/9/4.2.192.107.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.107.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.108.table b/eccodes/definitions/grib2/tables/9/4.2.192.108.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.108.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.109.table b/eccodes/definitions/grib2/tables/9/4.2.192.109.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.109.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.11.table b/eccodes/definitions/grib2/tables/9/4.2.192.11.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.11.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.110.table b/eccodes/definitions/grib2/tables/9/4.2.192.110.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.110.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.111.table b/eccodes/definitions/grib2/tables/9/4.2.192.111.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.111.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.112.table b/eccodes/definitions/grib2/tables/9/4.2.192.112.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.112.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.113.table b/eccodes/definitions/grib2/tables/9/4.2.192.113.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.113.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.114.table b/eccodes/definitions/grib2/tables/9/4.2.192.114.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.114.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.115.table b/eccodes/definitions/grib2/tables/9/4.2.192.115.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.115.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.116.table b/eccodes/definitions/grib2/tables/9/4.2.192.116.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.116.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.117.table b/eccodes/definitions/grib2/tables/9/4.2.192.117.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.117.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.118.table b/eccodes/definitions/grib2/tables/9/4.2.192.118.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.118.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.119.table b/eccodes/definitions/grib2/tables/9/4.2.192.119.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.119.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.12.table b/eccodes/definitions/grib2/tables/9/4.2.192.12.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.12.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.120.table b/eccodes/definitions/grib2/tables/9/4.2.192.120.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.120.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.121.table b/eccodes/definitions/grib2/tables/9/4.2.192.121.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.121.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.122.table b/eccodes/definitions/grib2/tables/9/4.2.192.122.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.122.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.123.table b/eccodes/definitions/grib2/tables/9/4.2.192.123.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.123.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.124.table b/eccodes/definitions/grib2/tables/9/4.2.192.124.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.124.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.125.table b/eccodes/definitions/grib2/tables/9/4.2.192.125.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.125.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.126.table b/eccodes/definitions/grib2/tables/9/4.2.192.126.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.126.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.127.table b/eccodes/definitions/grib2/tables/9/4.2.192.127.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.127.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.128.table b/eccodes/definitions/grib2/tables/9/4.2.192.128.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.128.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.129.table b/eccodes/definitions/grib2/tables/9/4.2.192.129.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.129.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.13.table b/eccodes/definitions/grib2/tables/9/4.2.192.13.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.13.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.130.table b/eccodes/definitions/grib2/tables/9/4.2.192.130.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.130.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.131.table b/eccodes/definitions/grib2/tables/9/4.2.192.131.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.131.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.132.table b/eccodes/definitions/grib2/tables/9/4.2.192.132.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.132.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.133.table b/eccodes/definitions/grib2/tables/9/4.2.192.133.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.133.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.134.table b/eccodes/definitions/grib2/tables/9/4.2.192.134.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.134.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.135.table b/eccodes/definitions/grib2/tables/9/4.2.192.135.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.135.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.136.table b/eccodes/definitions/grib2/tables/9/4.2.192.136.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.136.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.137.table b/eccodes/definitions/grib2/tables/9/4.2.192.137.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.137.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.138.table b/eccodes/definitions/grib2/tables/9/4.2.192.138.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.138.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.139.table b/eccodes/definitions/grib2/tables/9/4.2.192.139.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.139.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.14.table b/eccodes/definitions/grib2/tables/9/4.2.192.14.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.14.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.140.table b/eccodes/definitions/grib2/tables/9/4.2.192.140.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.140.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.141.table b/eccodes/definitions/grib2/tables/9/4.2.192.141.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.141.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.142.table b/eccodes/definitions/grib2/tables/9/4.2.192.142.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.142.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.143.table b/eccodes/definitions/grib2/tables/9/4.2.192.143.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.143.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.144.table b/eccodes/definitions/grib2/tables/9/4.2.192.144.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.144.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.145.table b/eccodes/definitions/grib2/tables/9/4.2.192.145.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.145.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.146.table b/eccodes/definitions/grib2/tables/9/4.2.192.146.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.146.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.147.table b/eccodes/definitions/grib2/tables/9/4.2.192.147.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.147.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.148.table b/eccodes/definitions/grib2/tables/9/4.2.192.148.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.148.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.149.table b/eccodes/definitions/grib2/tables/9/4.2.192.149.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.149.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.15.table b/eccodes/definitions/grib2/tables/9/4.2.192.15.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.15.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.150.table b/eccodes/definitions/grib2/tables/9/4.2.192.150.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.150.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.151.table b/eccodes/definitions/grib2/tables/9/4.2.192.151.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.151.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.152.table b/eccodes/definitions/grib2/tables/9/4.2.192.152.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.152.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.153.table b/eccodes/definitions/grib2/tables/9/4.2.192.153.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.153.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.154.table b/eccodes/definitions/grib2/tables/9/4.2.192.154.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.154.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.155.table b/eccodes/definitions/grib2/tables/9/4.2.192.155.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.155.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.156.table b/eccodes/definitions/grib2/tables/9/4.2.192.156.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.156.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.157.table b/eccodes/definitions/grib2/tables/9/4.2.192.157.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.157.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.158.table b/eccodes/definitions/grib2/tables/9/4.2.192.158.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.158.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.159.table b/eccodes/definitions/grib2/tables/9/4.2.192.159.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.159.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.16.table b/eccodes/definitions/grib2/tables/9/4.2.192.16.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.16.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.160.table b/eccodes/definitions/grib2/tables/9/4.2.192.160.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.160.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.161.table b/eccodes/definitions/grib2/tables/9/4.2.192.161.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.161.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.162.table b/eccodes/definitions/grib2/tables/9/4.2.192.162.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.162.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.163.table b/eccodes/definitions/grib2/tables/9/4.2.192.163.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.163.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.164.table b/eccodes/definitions/grib2/tables/9/4.2.192.164.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.164.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.165.table b/eccodes/definitions/grib2/tables/9/4.2.192.165.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.165.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.166.table b/eccodes/definitions/grib2/tables/9/4.2.192.166.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.166.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.167.table b/eccodes/definitions/grib2/tables/9/4.2.192.167.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.167.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.168.table b/eccodes/definitions/grib2/tables/9/4.2.192.168.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.168.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.169.table b/eccodes/definitions/grib2/tables/9/4.2.192.169.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.169.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.17.table b/eccodes/definitions/grib2/tables/9/4.2.192.17.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.17.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.170.table b/eccodes/definitions/grib2/tables/9/4.2.192.170.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.170.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.171.table b/eccodes/definitions/grib2/tables/9/4.2.192.171.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.171.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.172.table b/eccodes/definitions/grib2/tables/9/4.2.192.172.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.172.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.173.table b/eccodes/definitions/grib2/tables/9/4.2.192.173.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.173.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.174.table b/eccodes/definitions/grib2/tables/9/4.2.192.174.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.174.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.175.table b/eccodes/definitions/grib2/tables/9/4.2.192.175.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.175.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.176.table b/eccodes/definitions/grib2/tables/9/4.2.192.176.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.176.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.177.table b/eccodes/definitions/grib2/tables/9/4.2.192.177.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.177.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.178.table b/eccodes/definitions/grib2/tables/9/4.2.192.178.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.178.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.179.table b/eccodes/definitions/grib2/tables/9/4.2.192.179.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.179.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.18.table b/eccodes/definitions/grib2/tables/9/4.2.192.18.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.18.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.180.table b/eccodes/definitions/grib2/tables/9/4.2.192.180.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.180.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.181.table b/eccodes/definitions/grib2/tables/9/4.2.192.181.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.181.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.182.table b/eccodes/definitions/grib2/tables/9/4.2.192.182.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.182.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.183.table b/eccodes/definitions/grib2/tables/9/4.2.192.183.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.183.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.184.table b/eccodes/definitions/grib2/tables/9/4.2.192.184.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.184.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.185.table b/eccodes/definitions/grib2/tables/9/4.2.192.185.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.185.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.186.table b/eccodes/definitions/grib2/tables/9/4.2.192.186.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.186.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.187.table b/eccodes/definitions/grib2/tables/9/4.2.192.187.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.187.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.188.table b/eccodes/definitions/grib2/tables/9/4.2.192.188.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.188.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.189.table b/eccodes/definitions/grib2/tables/9/4.2.192.189.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.189.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.19.table b/eccodes/definitions/grib2/tables/9/4.2.192.19.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.19.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.190.table b/eccodes/definitions/grib2/tables/9/4.2.192.190.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.190.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.191.table b/eccodes/definitions/grib2/tables/9/4.2.192.191.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.191.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.192.table b/eccodes/definitions/grib2/tables/9/4.2.192.192.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.192.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.193.table b/eccodes/definitions/grib2/tables/9/4.2.192.193.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.193.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.194.table b/eccodes/definitions/grib2/tables/9/4.2.192.194.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.194.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.195.table b/eccodes/definitions/grib2/tables/9/4.2.192.195.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.195.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.196.table b/eccodes/definitions/grib2/tables/9/4.2.192.196.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.196.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.197.table b/eccodes/definitions/grib2/tables/9/4.2.192.197.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.197.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.198.table b/eccodes/definitions/grib2/tables/9/4.2.192.198.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.198.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.199.table b/eccodes/definitions/grib2/tables/9/4.2.192.199.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.199.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.2.table b/eccodes/definitions/grib2/tables/9/4.2.192.2.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.2.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.20.table b/eccodes/definitions/grib2/tables/9/4.2.192.20.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.20.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.200.table b/eccodes/definitions/grib2/tables/9/4.2.192.200.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.200.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.201.table b/eccodes/definitions/grib2/tables/9/4.2.192.201.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.201.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.202.table b/eccodes/definitions/grib2/tables/9/4.2.192.202.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.202.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.203.table b/eccodes/definitions/grib2/tables/9/4.2.192.203.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.203.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.204.table b/eccodes/definitions/grib2/tables/9/4.2.192.204.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.204.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.205.table b/eccodes/definitions/grib2/tables/9/4.2.192.205.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.205.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.206.table b/eccodes/definitions/grib2/tables/9/4.2.192.206.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.206.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.207.table b/eccodes/definitions/grib2/tables/9/4.2.192.207.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.207.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.208.table b/eccodes/definitions/grib2/tables/9/4.2.192.208.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.208.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.209.table b/eccodes/definitions/grib2/tables/9/4.2.192.209.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.209.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.21.table b/eccodes/definitions/grib2/tables/9/4.2.192.21.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.21.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.210.table b/eccodes/definitions/grib2/tables/9/4.2.192.210.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.210.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.211.table b/eccodes/definitions/grib2/tables/9/4.2.192.211.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.211.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.212.table b/eccodes/definitions/grib2/tables/9/4.2.192.212.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.212.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.213.table b/eccodes/definitions/grib2/tables/9/4.2.192.213.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.213.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.214.table b/eccodes/definitions/grib2/tables/9/4.2.192.214.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.214.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.215.table b/eccodes/definitions/grib2/tables/9/4.2.192.215.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.215.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.216.table b/eccodes/definitions/grib2/tables/9/4.2.192.216.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.216.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.217.table b/eccodes/definitions/grib2/tables/9/4.2.192.217.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.217.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.218.table b/eccodes/definitions/grib2/tables/9/4.2.192.218.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.218.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.219.table b/eccodes/definitions/grib2/tables/9/4.2.192.219.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.219.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.22.table b/eccodes/definitions/grib2/tables/9/4.2.192.22.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.22.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.220.table b/eccodes/definitions/grib2/tables/9/4.2.192.220.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.220.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.221.table b/eccodes/definitions/grib2/tables/9/4.2.192.221.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.221.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.222.table b/eccodes/definitions/grib2/tables/9/4.2.192.222.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.222.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.223.table b/eccodes/definitions/grib2/tables/9/4.2.192.223.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.223.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.224.table b/eccodes/definitions/grib2/tables/9/4.2.192.224.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.224.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.225.table b/eccodes/definitions/grib2/tables/9/4.2.192.225.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.225.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.226.table b/eccodes/definitions/grib2/tables/9/4.2.192.226.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.226.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.227.table b/eccodes/definitions/grib2/tables/9/4.2.192.227.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.227.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.228.table b/eccodes/definitions/grib2/tables/9/4.2.192.228.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.228.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.229.table b/eccodes/definitions/grib2/tables/9/4.2.192.229.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.229.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.23.table b/eccodes/definitions/grib2/tables/9/4.2.192.23.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.23.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.230.table b/eccodes/definitions/grib2/tables/9/4.2.192.230.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.230.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.231.table b/eccodes/definitions/grib2/tables/9/4.2.192.231.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.231.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.232.table b/eccodes/definitions/grib2/tables/9/4.2.192.232.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.232.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.233.table b/eccodes/definitions/grib2/tables/9/4.2.192.233.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.233.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.234.table b/eccodes/definitions/grib2/tables/9/4.2.192.234.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.234.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.235.table b/eccodes/definitions/grib2/tables/9/4.2.192.235.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.235.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.236.table b/eccodes/definitions/grib2/tables/9/4.2.192.236.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.236.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.237.table b/eccodes/definitions/grib2/tables/9/4.2.192.237.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.237.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.238.table b/eccodes/definitions/grib2/tables/9/4.2.192.238.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.238.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.239.table b/eccodes/definitions/grib2/tables/9/4.2.192.239.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.239.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.24.table b/eccodes/definitions/grib2/tables/9/4.2.192.24.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.24.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.240.table b/eccodes/definitions/grib2/tables/9/4.2.192.240.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.240.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.241.table b/eccodes/definitions/grib2/tables/9/4.2.192.241.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.241.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.242.table b/eccodes/definitions/grib2/tables/9/4.2.192.242.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.242.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.243.table b/eccodes/definitions/grib2/tables/9/4.2.192.243.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.243.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.244.table b/eccodes/definitions/grib2/tables/9/4.2.192.244.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.244.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.245.table b/eccodes/definitions/grib2/tables/9/4.2.192.245.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.245.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.246.table b/eccodes/definitions/grib2/tables/9/4.2.192.246.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.246.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.247.table b/eccodes/definitions/grib2/tables/9/4.2.192.247.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.247.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.248.table b/eccodes/definitions/grib2/tables/9/4.2.192.248.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.248.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.249.table b/eccodes/definitions/grib2/tables/9/4.2.192.249.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.249.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.25.table b/eccodes/definitions/grib2/tables/9/4.2.192.25.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.25.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.250.table b/eccodes/definitions/grib2/tables/9/4.2.192.250.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.250.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.251.table b/eccodes/definitions/grib2/tables/9/4.2.192.251.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.251.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.252.table b/eccodes/definitions/grib2/tables/9/4.2.192.252.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.252.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.253.table b/eccodes/definitions/grib2/tables/9/4.2.192.253.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.253.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.254.table b/eccodes/definitions/grib2/tables/9/4.2.192.254.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.254.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.255.table b/eccodes/definitions/grib2/tables/9/4.2.192.255.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.255.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.26.table b/eccodes/definitions/grib2/tables/9/4.2.192.26.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.26.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.27.table b/eccodes/definitions/grib2/tables/9/4.2.192.27.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.27.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.28.table b/eccodes/definitions/grib2/tables/9/4.2.192.28.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.28.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.29.table b/eccodes/definitions/grib2/tables/9/4.2.192.29.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.29.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.3.table b/eccodes/definitions/grib2/tables/9/4.2.192.3.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.3.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.30.table b/eccodes/definitions/grib2/tables/9/4.2.192.30.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.30.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.31.table b/eccodes/definitions/grib2/tables/9/4.2.192.31.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.31.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.32.table b/eccodes/definitions/grib2/tables/9/4.2.192.32.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.32.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.33.table b/eccodes/definitions/grib2/tables/9/4.2.192.33.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.33.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.34.table b/eccodes/definitions/grib2/tables/9/4.2.192.34.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.34.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.35.table b/eccodes/definitions/grib2/tables/9/4.2.192.35.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.35.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.36.table b/eccodes/definitions/grib2/tables/9/4.2.192.36.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.36.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.37.table b/eccodes/definitions/grib2/tables/9/4.2.192.37.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.37.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.38.table b/eccodes/definitions/grib2/tables/9/4.2.192.38.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.38.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.39.table b/eccodes/definitions/grib2/tables/9/4.2.192.39.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.39.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.4.table b/eccodes/definitions/grib2/tables/9/4.2.192.4.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.4.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.40.table b/eccodes/definitions/grib2/tables/9/4.2.192.40.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.40.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.41.table b/eccodes/definitions/grib2/tables/9/4.2.192.41.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.41.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.42.table b/eccodes/definitions/grib2/tables/9/4.2.192.42.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.42.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.43.table b/eccodes/definitions/grib2/tables/9/4.2.192.43.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.43.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.44.table b/eccodes/definitions/grib2/tables/9/4.2.192.44.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.44.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.45.table b/eccodes/definitions/grib2/tables/9/4.2.192.45.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.45.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.46.table b/eccodes/definitions/grib2/tables/9/4.2.192.46.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.46.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.47.table b/eccodes/definitions/grib2/tables/9/4.2.192.47.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.47.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.48.table b/eccodes/definitions/grib2/tables/9/4.2.192.48.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.48.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.49.table b/eccodes/definitions/grib2/tables/9/4.2.192.49.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.49.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.5.table b/eccodes/definitions/grib2/tables/9/4.2.192.5.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.5.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.50.table b/eccodes/definitions/grib2/tables/9/4.2.192.50.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.50.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.51.table b/eccodes/definitions/grib2/tables/9/4.2.192.51.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.51.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.52.table b/eccodes/definitions/grib2/tables/9/4.2.192.52.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.52.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.53.table b/eccodes/definitions/grib2/tables/9/4.2.192.53.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.53.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.54.table b/eccodes/definitions/grib2/tables/9/4.2.192.54.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.54.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.55.table b/eccodes/definitions/grib2/tables/9/4.2.192.55.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.55.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.56.table b/eccodes/definitions/grib2/tables/9/4.2.192.56.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.56.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.57.table b/eccodes/definitions/grib2/tables/9/4.2.192.57.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.57.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.58.table b/eccodes/definitions/grib2/tables/9/4.2.192.58.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.58.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.59.table b/eccodes/definitions/grib2/tables/9/4.2.192.59.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.59.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.6.table b/eccodes/definitions/grib2/tables/9/4.2.192.6.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.6.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.60.table b/eccodes/definitions/grib2/tables/9/4.2.192.60.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.60.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.61.table b/eccodes/definitions/grib2/tables/9/4.2.192.61.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.61.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.62.table b/eccodes/definitions/grib2/tables/9/4.2.192.62.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.62.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.63.table b/eccodes/definitions/grib2/tables/9/4.2.192.63.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.63.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.64.table b/eccodes/definitions/grib2/tables/9/4.2.192.64.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.64.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.65.table b/eccodes/definitions/grib2/tables/9/4.2.192.65.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.65.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.66.table b/eccodes/definitions/grib2/tables/9/4.2.192.66.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.66.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.67.table b/eccodes/definitions/grib2/tables/9/4.2.192.67.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.67.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.68.table b/eccodes/definitions/grib2/tables/9/4.2.192.68.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.68.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.69.table b/eccodes/definitions/grib2/tables/9/4.2.192.69.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.69.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.7.table b/eccodes/definitions/grib2/tables/9/4.2.192.7.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.7.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.70.table b/eccodes/definitions/grib2/tables/9/4.2.192.70.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.70.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.71.table b/eccodes/definitions/grib2/tables/9/4.2.192.71.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.71.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.72.table b/eccodes/definitions/grib2/tables/9/4.2.192.72.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.72.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.73.table b/eccodes/definitions/grib2/tables/9/4.2.192.73.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.73.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.74.table b/eccodes/definitions/grib2/tables/9/4.2.192.74.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.74.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.75.table b/eccodes/definitions/grib2/tables/9/4.2.192.75.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.75.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.76.table b/eccodes/definitions/grib2/tables/9/4.2.192.76.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.76.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.77.table b/eccodes/definitions/grib2/tables/9/4.2.192.77.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.77.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.78.table b/eccodes/definitions/grib2/tables/9/4.2.192.78.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.78.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.79.table b/eccodes/definitions/grib2/tables/9/4.2.192.79.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.79.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.8.table b/eccodes/definitions/grib2/tables/9/4.2.192.8.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.8.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.80.table b/eccodes/definitions/grib2/tables/9/4.2.192.80.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.80.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.81.table b/eccodes/definitions/grib2/tables/9/4.2.192.81.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.81.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.82.table b/eccodes/definitions/grib2/tables/9/4.2.192.82.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.82.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.83.table b/eccodes/definitions/grib2/tables/9/4.2.192.83.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.83.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.84.table b/eccodes/definitions/grib2/tables/9/4.2.192.84.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.84.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.85.table b/eccodes/definitions/grib2/tables/9/4.2.192.85.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.85.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.86.table b/eccodes/definitions/grib2/tables/9/4.2.192.86.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.86.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.87.table b/eccodes/definitions/grib2/tables/9/4.2.192.87.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.87.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.88.table b/eccodes/definitions/grib2/tables/9/4.2.192.88.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.88.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.89.table b/eccodes/definitions/grib2/tables/9/4.2.192.89.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.89.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.9.table b/eccodes/definitions/grib2/tables/9/4.2.192.9.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.9.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.90.table b/eccodes/definitions/grib2/tables/9/4.2.192.90.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.90.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.91.table b/eccodes/definitions/grib2/tables/9/4.2.192.91.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.91.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.92.table b/eccodes/definitions/grib2/tables/9/4.2.192.92.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.92.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.93.table b/eccodes/definitions/grib2/tables/9/4.2.192.93.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.93.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.94.table b/eccodes/definitions/grib2/tables/9/4.2.192.94.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.94.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.95.table b/eccodes/definitions/grib2/tables/9/4.2.192.95.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.95.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.96.table b/eccodes/definitions/grib2/tables/9/4.2.192.96.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.96.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.97.table b/eccodes/definitions/grib2/tables/9/4.2.192.97.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.97.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.98.table b/eccodes/definitions/grib2/tables/9/4.2.192.98.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.98.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.99.table b/eccodes/definitions/grib2/tables/9/4.2.192.99.table new file mode 100644 index 00000000..c37fd8f7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.192.99.table @@ -0,0 +1,2 @@ +# ECMWF local parameters +255 255 Missing (-) diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.0.table b/eccodes/definitions/grib2/tables/9/4.2.2.0.table new file mode 100644 index 00000000..ed4a8509 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.2.0.table @@ -0,0 +1,37 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +# 33-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.3.table b/eccodes/definitions/grib2/tables/9/4.2.2.3.table new file mode 100644 index 00000000..80113a4b --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.2.3.table @@ -0,0 +1,27 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil Temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.4.table b/eccodes/definitions/grib2/tables/9/4.2.2.4.table new file mode 100644 index 00000000..24f2bfba --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.2.4.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines Index (Numeric) +3 3 Fire burned area (%) +# 4-191 Reserved + diff --git a/eccodes/definitions/grib2/tables/9/4.2.3.0.table b/eccodes/definitions/grib2/tables/9/4.2.3.0.table new file mode 100644 index 00000000..254e56bc --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.3.0.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.2.3.1.table b/eccodes/definitions/grib2/tables/9/4.2.3.1.table new file mode 100644 index 00000000..16eee69c --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.2.3.1.table @@ -0,0 +1,28 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m/s) +5 5 Estimated v component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.201.table b/eccodes/definitions/grib2/tables/9/4.201.table new file mode 100644 index 00000000..ebb698b3 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.201.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.202.table b/eccodes/definitions/grib2/tables/9/4.202.table new file mode 100644 index 00000000..943c03f6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.202.table @@ -0,0 +1,4 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.203.table b/eccodes/definitions/grib2/tables/9/4.203.table new file mode 100644 index 00000000..fce5a15b --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.203.table @@ -0,0 +1,25 @@ +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.204.table b/eccodes/definitions/grib2/tables/9/4.204.table new file mode 100644 index 00000000..51d1cecc --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.204.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (16-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.205.table b/eccodes/definitions/grib2/tables/9/4.205.table new file mode 100644 index 00000000..8d425ab9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.205.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.206.table b/eccodes/definitions/grib2/tables/9/4.206.table new file mode 100644 index 00000000..0be7fd4f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.206.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.207.table b/eccodes/definitions/grib2/tables/9/4.207.table new file mode 100644 index 00000000..fde9eb47 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.207.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.208.table b/eccodes/definitions/grib2/tables/9/4.208.table new file mode 100644 index 00000000..196becaa --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.208.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.209.table b/eccodes/definitions/grib2/tables/9/4.209.table new file mode 100644 index 00000000..351c0f43 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.209.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Stable +2 2 Mechanically-driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.210.table b/eccodes/definitions/grib2/tables/9/4.210.table new file mode 100644 index 00000000..1c00b8c6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.210.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.211.table b/eccodes/definitions/grib2/tables/9/4.211.table new file mode 100644 index 00000000..66ef656f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.211.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.212.table b/eccodes/definitions/grib2/tables/9/4.212.table new file mode 100644 index 00000000..c59bd24e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.212.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.213.table b/eccodes/definitions/grib2/tables/9/4.213.table new file mode 100644 index 00000000..0f5de010 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.213.table @@ -0,0 +1,21 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +12 12 Loam +13 13 Peat +14 14 Rock +15 15 Ice +16 16 Water +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.215.table b/eccodes/definitions/grib2/tables/9/4.215.table new file mode 100644 index 00000000..46088821 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.215.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.216.table b/eccodes/definitions/grib2/tables/9/4.216.table new file mode 100644 index 00000000..cc62ca5e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.216.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.217.table b/eccodes/definitions/grib2/tables/9/4.217.table new file mode 100644 index 00000000..51a263a9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.217.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.218.table b/eccodes/definitions/grib2/tables/9/4.218.table new file mode 100644 index 00000000..d4b2ab84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.218.table @@ -0,0 +1,38 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation / crops +15 15 Permanent snow / ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +# 19-96 Reserved +97 97 Snow / ice on land +98 98 Snow / ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud / fog / Stratus +102 102 Low cloud / Stratocumulus +103 103 Low cloud / unknown type +104 104 Medium cloud / Nimbostratus +105 105 Medium cloud / Altostratus +106 106 Medium cloud / unknown type +107 107 High cloud / Cumulus +108 108 High cloud / Cirrus +109 109 High cloud / unknown +110 110 Unknown cloud type +# 111-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.219.table b/eccodes/definitions/grib2/tables/9/4.219.table new file mode 100644 index 00000000..f10ce468 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.219.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.220.table b/eccodes/definitions/grib2/tables/9/4.220.table new file mode 100644 index 00000000..9c957eb0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.220.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.221.table b/eccodes/definitions/grib2/tables/9/4.221.table new file mode 100644 index 00000000..5466929c --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.221.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.222.table b/eccodes/definitions/grib2/tables/9/4.222.table new file mode 100644 index 00000000..c54194e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.222.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.223.table b/eccodes/definitions/grib2/tables/9/4.223.table new file mode 100644 index 00000000..b6a9be13 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.223.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing value diff --git a/eccodes/definitions/grib2/tables/9/4.224.table b/eccodes/definitions/grib2/tables/9/4.224.table new file mode 100644 index 00000000..af846f84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.224.table @@ -0,0 +1,18 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.227.table b/eccodes/definitions/grib2/tables/9/4.227.table new file mode 100644 index 00000000..56fa0e75 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.227.table @@ -0,0 +1,10 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.230.table b/eccodes/definitions/grib2/tables/9/4.230.table new file mode 100644 index 00000000..afd1ab8d --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.230.table @@ -0,0 +1,415 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +#38-9999 Reserved +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10500 10500 Dimethyl sulphide +#10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +#20022-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#30001-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulfur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +#30295-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +#60017-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019-65534 Reserved +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.233.table b/eccodes/definitions/grib2/tables/9/4.233.table new file mode 100644 index 00000000..c5e8f2b4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.233.table @@ -0,0 +1,3 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +# (See Common Code table C-14) +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.234.table b/eccodes/definitions/grib2/tables/9/4.234.table new file mode 100644 index 00000000..bdf7cf0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.234.table @@ -0,0 +1,21 @@ +# Canopy Cover Fraction (to be used as partitioned parameter) +1 1 Crops Mixed Farming +2 2 Short Grass +3 3 Evergreen Needleleaf Trees +4 4 Deciduous Needleleaf Trees +5 5 Deciduous Broadleaf Trees +6 6 Evergreen Broadleaf Trees +7 7 Tall Grass +8 8 Desert +9 9 Tundra +10 10 Irrigated Crops +11 11 Semidesert +12 12 Ice Caps and Glaciers +13 13 Bogs and Marshes +14 14 Inland Water +15 15 Ocean +16 16 Evergreen Shrubs +17 17 Deciduous Shrubs +18 18 Mixed Forest +19 19 Interrupted Forest +20 20 Water and Land Mixtures diff --git a/eccodes/definitions/grib2/tables/9/4.235.table b/eccodes/definitions/grib2/tables/9/4.235.table new file mode 100644 index 00000000..e18bbfbb --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.235.table @@ -0,0 +1,8 @@ +# Soil texture fraction +1 1 coarse +2 2 medium +3 3 medium-fine +4 4 fine +5 5 very-fine +6 6 organic +7 7 tropical-organic diff --git a/eccodes/definitions/grib2/tables/9/4.3.table b/eccodes/definitions/grib2/tables/9/4.3.table new file mode 100644 index 00000000..68e2cc83 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.3.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.4.table b/eccodes/definitions/grib2/tables/9/4.4.table new file mode 100644 index 00000000..df5272d2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.4.table @@ -0,0 +1,17 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.5.table b/eccodes/definitions/grib2/tables/9/4.5.table new file mode 100644 index 00000000..1f17bae8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.5.table @@ -0,0 +1,48 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0 degree C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +10 10 Entire atmosphere +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +# 13-19 Reserved +20 20 Isothermal level (K) +# 21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +112 112 Reserved +113 113 Logarithmic hybrid level +# 114-116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level +119 hpl Hybrid pressure level +# 120-149 Reserved +150 150 Generalized vertical height coordinate +# 151-159 Reserved +160 160 Depth below sea level m +161 161 Depth below water surface (m) +162 162 Lake or river bottom +163 163 Bottom of sediment layer +164 164 Bottom of thermally active sediment layer +165 165 Bottom of sediment layer penetrated by thermal wave +166 166 Mixing layer +# 167-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.6.table b/eccodes/definitions/grib2/tables/9/4.6.table new file mode 100644 index 00000000..54f2993c --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.6.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.7.table b/eccodes/definitions/grib2/tables/9/4.7.table new file mode 100644 index 00000000..23e0d457 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.7.table @@ -0,0 +1,14 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.8.table b/eccodes/definitions/grib2/tables/9/4.8.table new file mode 100644 index 00000000..37a6cf76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.8.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.9.table b/eccodes/definitions/grib2/tables/9/4.9.table new file mode 100644 index 00000000..19e64a3d --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.9.table @@ -0,0 +1,9 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/4.91.table b/eccodes/definitions/grib2/tables/9/4.91.table new file mode 100644 index 00000000..05c4579b --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/4.91.table @@ -0,0 +1,16 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit. +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib2/tables/9/5.0.table b/eccodes/definitions/grib2/tables/9/5.0.table new file mode 100644 index 00000000..c7995a96 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.0.table @@ -0,0 +1,24 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +6 6 Grid point data - simple packing with pre-processing +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +#42-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +#52-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.1.table b/eccodes/definitions/grib2/tables/9/5.1.table new file mode 100644 index 00000000..100d4106 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.1.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.2.table b/eccodes/definitions/grib2/tables/9/5.2.table new file mode 100644 index 00000000..4d0808be --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.2.table @@ -0,0 +1,8 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.3.table b/eccodes/definitions/grib2/tables/9/5.3.table new file mode 100644 index 00000000..705fa652 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.3.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.4.table b/eccodes/definitions/grib2/tables/9/5.4.table new file mode 100644 index 00000000..8133367a --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.4.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.40.table b/eccodes/definitions/grib2/tables/9/5.40.table new file mode 100644 index 00000000..0d56ad0e --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.40.table @@ -0,0 +1,5 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.40000.table b/eccodes/definitions/grib2/tables/9/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.5.table b/eccodes/definitions/grib2/tables/9/5.5.table new file mode 100644 index 00000000..5d625dbd --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.5.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.50002.table b/eccodes/definitions/grib2/tables/9/5.50002.table new file mode 100644 index 00000000..10c243cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/eccodes/definitions/grib2/tables/9/5.6.table b/eccodes/definitions/grib2/tables/9/5.6.table new file mode 100644 index 00000000..5838e994 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.6.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.7.table b/eccodes/definitions/grib2/tables/9/5.7.table new file mode 100644 index 00000000..b93aa813 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.7.table @@ -0,0 +1,7 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.8.table b/eccodes/definitions/grib2/tables/9/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/5.9.table b/eccodes/definitions/grib2/tables/9/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/9/6.0.table b/eccodes/definitions/grib2/tables/9/6.0.table new file mode 100644 index 00000000..aecdc6e5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/6.0.table @@ -0,0 +1,6 @@ +# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib2/tables/9/stepType.table b/eccodes/definitions/grib2/tables/9/stepType.table new file mode 100644 index 00000000..4ec73e7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/9/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1.1.table b/eccodes/definitions/grib2/tables/local/ecmf/1.1.table new file mode 100644 index 00000000..648fc7f9 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/1.1.table @@ -0,0 +1,6 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +1 1 ECMWF local tables version 1 +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table b/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table new file mode 100644 index 00000000..30b94d7a --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table @@ -0,0 +1,3 @@ +# Code table 4.2 - discipline=0 category=20 for ECMWF +192 192 Source/gain (kg m-2 s-1) +193 193 Negative Fixer (kg m-2 s-1) diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table b/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table new file mode 100644 index 00000000..ce920325 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - discipline=2 category=0 for ECMWF +192 192 Carbon Dioxide Net Ecosystem Exchange +193 193 Carbon Dioxide Gross Primary Production +194 194 Carbon Dioxide Ecosystem Respiration +195 195 Flux of Carbon Dioxide Net Ecosystem Exchange +196 196 Flux of Carbon Dioxide Ecosystem Respiration +197 197 Flux of Carbon Dioxide Gross Primary Production +198 198 GPP coefficient from Biogenic Flux Adjustment System +199 199 Rec coefficient from Biogenic Flux Adjustment System +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table b/eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table new file mode 100644 index 00000000..047fd259 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table @@ -0,0 +1,4 @@ +# Code table 4.230 - Atmospheric chemical constituent type for ECMWF + +63000 63000 Some chemical + diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table b/eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table new file mode 100644 index 00000000..9deeecdf --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table @@ -0,0 +1,3 @@ +# Code table 4.233 - Aerosol type for ECMWF +65533 65533 Nitrate Coarse Mode +65534 65534 Nitrate Fine Mode diff --git a/eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table b/eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table new file mode 100644 index 00000000..a0f9c973 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table @@ -0,0 +1,4 @@ +# CODE TABLE 1.2, Significance of Reference Time +191 191 funny reference time +#4-191 Reserved +#192-254 Reserved for local use diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table new file mode 100644 index 00000000..92a1b782 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table @@ -0,0 +1,2 @@ +#Code Table obstat.1.0: Monitoring Statistics Outputs types +1 obstat Monitoring statistics diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table new file mode 100644 index 00000000..347e17f6 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table @@ -0,0 +1,42 @@ +#Code Table obstat.10.0: Data selection criteria +1 Active Active data +2 All All data +3 Non_Active Not Active data +4 Best_Active Best active wind +5 Used Used data +6 VarQC_Rej VarQC rejected data +7 Blacklisted Blacklisted data +8 Failed Failed data +9 Passed_FgCheck Data that passed FG check +10 Non_Rejected All non rejected data +11 VarBC_Passive VarBC passive channels +12 Failed_FG_Non_Black Data failed FG check but not blacklisted +13 Failed_FG_VarQC_Rej Data failed FG check and VARQC rejected +#14-19 Reserved for additional standard IFS flags +20 QI_LE_20 AMVs with QI <= 20 +21 QI_LE_66 AMVs with 20 < QI <=65 +22 QI_GE_65 AMVs with QI > 65 +23 QI_GE_80 AMVs with QI > 80 +24 QI_GE_90 AMVs with QI > 90 +#25-29 Reserved for additional AMVs flags +30 Clear_LE_70%WV_80%IR CSR data with clear fraction < 70 % (WV) and < 80 % (IR) +31 Clear_GE_70%WV_80%IR CSR data with clear fraction >= 70 % (WV) and >= 80 % (IR) +32 Clear_100% CSR data completely clear (according to IR window channel) +33 Clear_GE_40%WV CSR data with clear fraction >= 40 % (WV) +34 Clear_GE_70%WV CSR data with clear fraction >= 70 % (WV) +35 Clear_100%WV CSR data completely clear (according to WV channel) +#36-39 Reserved for additional CSR flags +40 Clear Clear +41 Used_Clear Used clear data +42 Used_Cloudy_Rainy Used cloudy and rainy data +43 All_Cloudy_Rainy All cloudy and rainy data +44 Used_ObsCld_FGClr Used Obs cloudy and FG clear +45 Used_ObsClr_FGCld Used Obs clear and FG cloudy +#44-49 Reserved for additional radiances flags +50 Good_ozone Good ozone data +51 Daytime Day time data +52 Nighttime Night time data +#53-69 Reserved for additional ozone, trace gases and Aerosol flags +#70-79 Reserved for GPSRO flags +#80-89 Reserved for scatterometer flags +#33-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table new file mode 100644 index 00000000..2d82ce7e --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table @@ -0,0 +1,4 @@ +#Code Table obstat.11.0: Scan position definition +0 0 Explicit scan position (table 11.1) +1 1 Scan position interval (table 11.2) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table new file mode 100644 index 00000000..e3aea161 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table @@ -0,0 +1,13 @@ +#Code Table obstat.2.0: Observation types +1 Synop Synop +2 Airep Airep +3 Satob Satob +4 Dribu Dribu +5 Temp Temp +6 Pilot Pilot +7 Satem Satem +8 Paob Paob +9 Scatterometer Scatterometer +10 GPSRO Limb +13 Radar Radar +#14-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table new file mode 100644 index 00000000..60b907f5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table @@ -0,0 +1,52 @@ +#Code Table obstat.3.0: Observation code types +2 RADAR RADAR 1 +8 SCATTEROMETER1 SCATTEROMETER 1 +11 Manual_land Manual land station +14 Automatic_land Automatic land station +21 Ship Ship +22 Ship Ship abbreviated +23 Shred Shred +24 Automatic_ship Automatic Ship +32 Land LAND +33 Ship SHIP +34 Profilers WIND PROFILERS +35 Land LAND +36 Ship SHIP +37 Mobile MOBILE +39 Land_Racob LAND ROCOB +40 Ship_Racob SHIP ROCOB +41 Codar Codar +63 Bathy BATHY +64 Tesac TESAC +86 SATEM_GTS SATEM VIA GTS +88 Satob Satob +89 High-Res_VIS_wind High-resolution VIS wind +90 AMV AMV +122 SCATTEROMETER2 SCATTEROMETER 2 +139 SCATTEROMETER3 SCATTEROMETER 3 +141 Aircraft Aircraft +142 Simulated Simulated +144 Amdar Amdar +145 Acars Acars +160 ERS_AS_DRIBU ERS as DRIBU +165 DRIBU DRIBU +135 DROP DROP +137 SIMULATED SIMULATED +180 PAOB PAOB +184 High_Res_Sim_SATEM HIGH RESOLUTION SIMULATED SATEM +185 High_Res_Sim_DWLTOVS HIGH RESOLUTION SIMULATED DWL TOVS +186 High_Res_Sat HIGH RESOLUTION SATTELITE REPORT +188 SST SST +200 GTS_BUFR_SATEM GTS BUFR 250 KM SATEM +201 GTS_BUFR_CLR_Rad GTS BUFR SATEM CLEAR RADIANCE +202 GTS_BUFR_DATEM_RETR GTS BUFR SATEM RETRIEVED PROFILES AND CLEAR RADIANCES +206 OZONE RETRIEVED OZONE (TOTAL & PROFILES) +210 L1C_RADIANCES LEVEL 1C CALIBRATED RADIANCES +211 RTOVS_CLR_RAD RTOVS CLEAR RADIANCES AND RETRIEVED +212 TOVS_CLEAR_RAD TOVS CLEAR RADIANCES AND RETRIEVED +215 AllSky_MWRAD SSMI/AMSRE/SSMIS/TMI +241 COLBA Colba +250 GPSRO GPS RADIO OCCULTATION +251 LIMB LIMB RADIANCES +300 SCATTEROMETER4 SCATTEROMETER 4 +301 SCATTEROMETER5 SCATTEROMETER 5 diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table new file mode 100644 index 00000000..a342b56d --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table @@ -0,0 +1,82 @@ +#Code Table obstat.4.0: List of meteorological satellites +1 ERS-1 ERS 1 +2 ERS-2 ERS 2 +3 METOP-B METOP-B +4 METOP-A METOP-A +41 CHAMP CHAMP +42 TERRA-SAR-X TERRA-SAR-X +46 SMOS SMOS +54 METEOSAT-7 METEOSAT 7 +55 METEOSAT-8 METEOSAT 8 +56 METEOSAT-9 METEOSAT 9 +57 METEOSAT-10 METEOSAT 10 +58 METEOSAT-1 METEOSAT 1 +59 METEOSAT-2 METEOSAT 2 +60 ENVISAT ENVISAT +70 METEOSAT-11 METEOSAT-11 +122 GCOM-W1 GCOM-W1 +140 GOSAT GOSAT +171 MTSAT-1R MTSAT-1R +172 MTSAT-2 MTSAT-2 +200 NOAA-8 NOAA-8 +201 NOAA-9 NOAA-9 +202 NOAA-10 NOAA-10 +203 NOAA-11 NOAA-11 +204 NOAA-12 NOAA-12 +205 NOAA-14 NOAA 14 +206 NOAA-15 NOAA 15 +207 NOAA-16 NOAA 16 +208 NOAA-17 NOAA 17 +209 NOAA-18 NOAA 18 +222 AQUA AQUA +223 NOAA-19 NOAA 19 +224 NPP NPP +240 DMSP-7 DMSP-7 +241 DMSP-8 DMSP-8 +242 DMSP-9 DMSP-9 +243 DMSP-10 DMSP-10 +244 DMSP-11 DMSP-11 +246 DMSP-13 DMSP-13 +246 DMSP-13 DMSP 13 +247 DMSP-14 DMSP 14 +248 DMSP-15 DMSP 15 +249 DMSP-16 DMSP 16 +253 GOES-9 GOES 9 +254 GOES-10 GOES 10 +255 GEOS-11 GOES 11 +256 GEOS-12 GOES 12 +257 GEOS-13 GOES 13 +258 GEOS-14 GOES 14 +259 GEOS-15 GOES 15 +260 JASON-1 JASON-1 +261 JASON-2 JASON-2 +281 QUIKSCAT QUIKSCAT +282 TRMM TRMM +283 CORIOLIS CORIOLIS +285 DMSP17 DMSP 17 +286 DMSP18 DMSP 18 +421 OCEANSAT-2 OCEANSAT-2 +500 FY-1C FY-1C +501 FY-1D FY-1D +510 FY-2 FY-2 +512 FY-2B FY-2B +513 FY-2C FY-2C +514 FY-2D FY-2D +515 FY-2E FY-2E +520 FY-3A FY-3A +521 FY-3B FY-3B +722 GRACE-A GRACE-A +706 NOAA-6 NOAA-6 +707 NOAA-7 NOAA-7 +708 TIROS-N TIROS-N +740 COSMIC-1 COSMIC-1 +741 COSMIC-2 COSMIC-2 +742 COSMIC-3 COSMIC-3 +743 COSMIC-4 COSMIC-4 +744 COSMIC-5 COSMIC-5 +745 COSMIC-6 COSMIC-6 +783 TERRA TERRA +784 AQUA AQUA +785 AURA AURA +786 C-NOFS C-NOFS +820 SAC-C SAC-C diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table new file mode 100644 index 00000000..71a9a0e8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table @@ -0,0 +1,53 @@ +#Code Table obstat.5.0: List of satellite instruments +0 HIRS HIRS +1 MSU MSU +2 SSU SSU +3 AMSUA AMSUA +4 AMSUB AMSUB +6 SSM/I SSM/I +9 TMI TMI +10 SSMI/S SSMI/S +11 AIRS AIRS +15 MHS MHS +16 IASI IASI +17 AMSRE AMSR-E +19 ATMS ATMS +20 MVIRI MVIRI +21 SEVIRI SEVIRI +22 GOES GOES Imager +24 MTSAT-1R MTSAT-1R imager +27 CrIS CrIS +30 WINDSAT WINDSAT +40 MWTS MWTS +41 MWHS MWHS +63 AMSR2 AMSR2 +102 GPSRO GPSRO +172 GOMOS GOMOS +174 MERIS MERIS +175 SCIAMACHY SCIAMACHY +202 GRAS GRAS +207 SEVIRI_O3 SEVIRI O3 +220 GOME-2 GOME-2 +387 MLS MLS +394 OMI OMI +516 TANSO TANSO +624 SBUV-2 SBUV-2 +2000 AMV_WV_CLOUDY AMV WV cloudy +2001 AMV_IR AMV IR +2002 AMV_VIS AMV VIS +2003 AMV_WVMIX AMV WVMIX +2005 AMV_WV_Clear AMV Water Vapor clear +2100 AMV_WV_6.2_cloudy AMV WV 6.2 cloudy +2101 AMV_IR_ch1 AMV IR ch1 +2102 AMV_VIS_ch1 AMV VIS ch1 +2105 AMV_WV_6.2_clear AMV WV_6.2 clear +2200 AMV_WV_7.3_cloudy AMV WV 7.3 cloudy +2201 AMV_IR_ch2 AMV IR ch2 +2202 AMV_VIS-2 AMV VIS-2 +2205 AMV_WV_7.3_clear AMV WV 7.3 clear +2300 AMV_WV_cloudy_ch3 AMV WV cloudy ch 3 +2301 AMV_IR-10 AMV IR-10 +2305 AMV_WV_clear_Ch3 AMV WV clear Ch3 +2350 QUIKSCAT QUIKSCAT +2150 SCAT SCAT +2190 ASCAT ASCAT diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table new file mode 100644 index 00000000..2bb1fa92 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.6.0: List of data streams +0 Normal_delivery Normal delivery +1 EARS EARS +2 PAC-RARS PAC-RARS +3 DB_MODIS DB MODIS winds +#4-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table new file mode 100644 index 00000000..fcd1c2e0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.7.0: Vertical coordinate types +1 1 Channel +2 2 Pressure level +3 3 Pressure layer +4 4 Surface +#5-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table new file mode 100644 index 00000000..42bba148 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.8.0: List Mask types +1 Land Land +2 Sea Sea +3 Sea-ice Sea-ice +4 All_surfaces All surface types combined +#5-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table new file mode 100644 index 00000000..bed03c02 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table @@ -0,0 +1,52 @@ +#Code Table obstat.9.0: Observation diagnostics +1 count data count +2 obs Average of observed values +3 obs_stdv Standard deviation of observed values +4 fgdep Average of first guess departure +5 fgdep_stdv Standard deviation of first guess departure +6 andep Average of analysis departure +7 andep_stdv Standard deviation of analysis departure +8 obs_error Average of observation standard error +9 obs_error_stdv Standard deviation of observation standard error +10 bkg_error Average of background standard error +11 bkg_error_stdv Standard deviation of background standard error +12 lr_andep1 Average of low resolution analysis departure update 1 +13 lr_andep1_stdv Standard deviation of low resolution analysis departure update 1 +14 hr_fgdep2 Average of high resolution background departure update 2 +15 hr_fgdep2_stdv Standard deviation of high resolution background departure update 2 +16 lr_andep2 Average of low resolution analysis departure update 2 +17 lr_andep2_stdv Standard deviation of low resolution analysis departure update 2 +18 bcor Average of Bias correction +19 bcor_stdv Standard deviation of bias correction +20 vbcor average of Variational bias correction +21 vbcor_stdv Standard deviation of variational bias correction +22 fgdep_nbcor Average of background departure without bias correction +23 fgdep_nbcor_stdv Standard deviation of background departure without bias correction +24 windspeed Average of wind speed +25 windspeed_stdv Standard deviation of wind speed +26 norm_andep Average of normalised analysis fit +27 norm_andep_stdv Standard deviation of normalised analysis fit +28 norm_fgdep Average of normalised background fit +29 norm_fgdep_stdv Standard deviation of normalised background fit +30 fso Average of forecast sensitivity to observations +31 fso_stdv stdv of forecast sensitivity to observations +32 norm_obs Average of normalised observation +33 norm_obs_stdv stdv of normalised observation +34 anso Average of analyse sensitivity to observations +35 anso_stdv stdv of analyse sensitivity to observations +40 fcst_dep1 Average of forecast departure for step 1 +41 fcst_dep1_stdv Standard deviation of forecast departure for step 1 +42 fcst_dep2 Average of forecast departure for step 2 +43 fcst_dep2_stdv Standard deviation of forecast departure for step 2 +44 norm_fcst_dep1 Average of normalised forecast departure for step 1 +45 norm_fcst_dep1_stdv Standard deviation of normalised forecast departure for step 1 +46 norm_fcst_dep2 Average of normalised forecast departure for step 2 +47 norm_fcst_dep2_stdv Standard deviation of normalised forecast departure for step 2 +60 far_rate False alarm rate +62 miss_rate Miss rate +64 hit_rate hit rate +66 corr_nul correct nuls +68 est_fg_err Estimated variance of the first guess error +70 edafgspr EDA first guess variance +72 edaanspr EDA Analysis variance +#36-255 Reserved diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table new file mode 100644 index 00000000..75ccf290 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table @@ -0,0 +1,185 @@ +#Code Table obstat.reporttype: List of Report types +1 TIROS-N TIROS-N +2 NOAA-6/HIRS NOAA-6/HIRS +3 NOAA-7/HIRS NOAA-7/HIRS +4 NOAA-8/HIRS NOAA-8/HIRS +5 NOAA-9/HIRS NOAA-9/HIRS +6 NOAA-10/HIRS NOAA-10/HIRS +7 NOAA-11/HIRS NOAA-11/HIRS +8 NOAA-12/HIRS NOAA-12/HIRS +9 NOAA-14/HIRS NOAA-14/HIRS +10 NOAA-15/HIRS NOAA-15/HIRS +11 NOAA-16/HIRS NOAA-16/HIRS +12 NOAA-17/HIRS NOAA-17/HIRS +13 NOAA-18/HIRS NOAA-18/HIRS +14 NOAA-19/HIRS NOAA-19/HIRS +15 METOP-A/HIRS METOP-A/HIRS +1001 NOAA-15/AMSUA NOAA-15/AMSUA +1002 NOAA-16/AMSUA NOAA-16/AMSUA +1003 NOAA-17/AMSUA NOAA-17/AMSUA +1004 NOAA-18/AMSUA NOAA-18/AMSUA +1005 NOAA-19/AMSUA NOAA-19/AMSUA +1006 NOAA-19/AMSUA NOAA-19/AMSUA +1007 METOP-A/AMSUA METOP-A/AMSUA +1008 AQUA/AMSUA AQUA/AMSUA +2001 NOAA-15/AMSUB NOAA-15/AMSUB +2002 NOAA-16/AMSUB NOAA-16/AMSUB +2003 NOAA-17/AMSUB NOAA-17/AMSUB +2004 NOAA-18/AMSUB NOAA-18/AMSUB +2005 NOAA-18/AMSUB NOAA-18/AMSUB +3001 NOAA-19/MHS NOAA-19/MHS +3002 METOP-A/MHS METOP-A/MHS +4001 GOES-5/IMAGER GOES-5/IMAGER +4002 GOES-8/IMAGER GOES-8/IMAGER +4003 GOES-9/IMAGER GOES-9/IMAGER +4004 GOES-10/IMAGER GOES-10/IMAGER +4005 GOES-11/IMAGER GOES-11/IMAGER +4006 GOES-12/IMAGER GOES-12/IMAGER +4007 METEOSAT-7/MVIRI METEOSAT-7/MVIRI +4008 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI +4009 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI +4010 MTSAT-1R/IMAGER MTSAT-1R/IMAGER +5001 ERS-2/GOME ERS-2/GOME +5002 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI +5003 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI +5004 AURA/MLS AURA/MLS +5005 AURA/OMI AURA/OMI +5006 NOAA-9/SBUV NOAA-9/SBUV +5007 NOAA-11/SBUV NOAA-11/SBUV +5008 NOAA-14/SBUV NOAA-14/SBUV +5009 NOAA-16/SBUV NOAA-16/SBUV +5010 NOAA-17/SBUV NOAA-17/SBUV +5011 NOAA-18/SBUV NOAA-18/SBUV +5012 NOAA-19/SBUV NOAA-19/SBUV +5013 METOP-A/GOME-2 METOP-A/GOME-2 +5014 ENVISAT/SCIAMACHY ENVISAT/SCIAMACHY +5015 ENVISAT/GOMOS ENVISAT/GOMOS +5016 ENVISAT/MIPAS ENVISAT/MIPAS +5017 Metror-3/TOMS Metror-3/TOMS +5018 Nimbus-7/TOMS Nimbus-7/TOMS +6001 ENVISAT/GOMOS ENVISAT/GOMOS +6002 ENVISAT/MERIS ENVISAT/MERIS +7001 METOP-A/GRAS METOP-A/GRAS +7002 CHAMP CHAMP +7003 GRACE-A GRACE-A +7004 COSMIC-1 COSMIC-1 +7005 COSMIC-2 COSMIC-2 +7006 COSMIC-3 COSMIC-3 +7007 COSMIC-4 COSMIC-4 +7008 COSMIC-5 COSMIC-5 +7009 COSMIC-6 COSMIC-6 +8001 METEOSAT-2/AMV METEOSAT-2/AMV +8002 METEOSAT-3/AMV METEOSAT-3/AMV +8003 METEOSAT-4/AMV METEOSAT-4/AMV +8014 METEOSAT-5/AMV METEOSAT-5/AMV +8005 METEOSAT-6/AMV METEOSAT-6/AMV +8006 METEOSAT-7/AMV METEOSAT-7/AMV +8007 METEOSAT-8/AMV METEOSAT-8/AMV +8008 METEOSAT-9/AMV METEOSAT-9/AMV +8009 GMS-5/AMV GMS-5/AMV +8010 MTSAT-1R/AMV MTSAT-1R/AMV +8011 GOES-9/WV GOES-9/WV +8012 GOES-10/AMV GOES-10/AMV +8013 GOES-11/AMV GOES-11/AMV +8014 GOES-12/AMV GOES-12/AMV +8015 NOAA-15/AVHRR NOAA-15/AVHRR +8016 NOAA-16/AVHRR NOAA-16/AVHRR +8017 NOAA-17/AVHRR NOAA-17/AVHRR +8018 NOAA-18/AVHRR NOAA-18/AVHRR +8019 NOAA-19/AVHRR NOAA-19/AVHRR +8020 TERRA/MODIS TERRA/MODIS +8021 AQUA/MODIS AQUA/MODIS +8022 FY-2C/IR FY-2C/IR +9001 ERS/SCATT ERS/SCATT +9002 ERS/SCATT ERS/SCATT +9003 ERS-2/SCATT ERS-2/SCATT +9004 QuickSCAT/SeaWind QuickSCAT/SeaWind +9005 METOP-A/ASCAT METOP-A/ASCAT +10001 DSMP-7/SSMI DSMP-7/SSMI +10002 DSMP-8/SSMI DSMP-8/SSMI +10003 DSMP-9/SSMI DSMP-9/SSMI +10004 DSMP-10/SSMI DSMP-10/SSMI +10005 DSMP-11/SSMI DSMP-11/SSMI +10006 DSMP-13/SSMI DSMP-13/SSMI +10007 DSMP-14/SSMI DSMP-14/SSMI +10008 DSMP-15/SSMI DSMP-15/SSMI +10009 DSMP-8/SSMI DSMP-8/SSMI +10010 DSMP-9/SSMI DSMP-9/SSMI +10011 DSMP-10/SSMI DSMP-10/SSMI +10012 DSMP-11/SSMI DSMP-11/SSMI +10013 DSMP-13/SSMI DSMP-13/SSMI +10014 DSMP-14/SSMI DSMP-14/SSMI +10015 DSMP-15/SSMI DSMP-15/SSMI +11001 METOP-A/IASI METOP-A/IASI +12001 AQUA/AIRS AQUA/AIRS +13001 DMSP-16/SSMIS DMSP-16/SSMIS +14001 TRMM/TMI TRMM/TMI +15001 AQUA/AMSRE AQUA/AMSRE +16001 Automatic-Land Automatic-Land +16002 Manual-Land Manual-Land +16003 Abbreviated-SYNOP Abbreviated-SYNOP +16004 METAR METAR +16005 DRIBU DRIBU +16006 Automatic-SHIP Automatic-SHIP +16007 Reduced-SHIP Reduced-SHIP +16008 SHIP SHIP +16009 Abbreviated-SHIP Abbreviated-SHIP +16010 DRIBU-BATHY DRIBU-BATHY +16011 DRIBU-TESAC DRIBU-TESAC +16012 Ground-Based-GPS Ground-Based-GPS +16013 Land-PILOT Land-PILOT +16014 PILOT-SHIP PILOT-SHIP +16015 American-WindProfilers American-WindProfilers +16016 American-WindProfilers American-WindProfilers +16017 European-WindProfilers European-WindProfilers +16018 Japanese-WindProfilers Japanese-WindProfilers +16019 TEMP-SHIP TEMP-SHIP +16020 DROP-Sonde DROP-Sonde +16021 Mobile-TEMP Mobile-TEMP +16022 Land-TEMP Land-TEMP +16023 ROCOB-TEMP ROCOB-TEMP +16024 SHIP-ROCOB SHIP-ROCOB +16025 European-WindProfilers European-WindProfilers +16026 AIREP AIREP +16027 CODAR CODAR +16028 COLBA COLBA +16029 AMDAR AMDAR +16030 ACARS ACARS +16031 PAOB PAOB +16032 PAOB PAOB +16033 SATOB_Temperature SATOB_Temperature +16034 SATOB_Wind SATOB_Wind +16035 SATOB_Temperature SATOB_Temperature +16036 SATOB_Temperature SATOB_Temperature +16037 SATEM_500km SATEM_500km +16038 SATEM_500km SATEM_500km +16039 SATEM_500km SATEM_500km +16040 SATEM_500km SATEM_500km +16041 SATEM_250km SATEM_250km +16042 SATEM_250km SATEM_250km +16043 SATEM_250km SATEM_250km +16044 SATEM_250km SATEM_250km +17001 Automatic_Land Automatic_Land +17002 Manual_Land Manual_Land +17003 Abbreviated_SYNOP Abbreviated_SYNOP +17004 METAR METAR +17005 DRIBU DRIBU +17006 Automatic_SHIP Automatic_SHIP +17007 Reduced_SHIP Reduced_SHIP +17008 SHIP SHIP +17009 Abbreviated-SHIP Abbreviated-SHIP +17010 DRIBU-BATHY DRIBU-BATHY +17011 DRIBU-TESAC DRIBU-TESAC +17012 Ground-Based_GPS Ground-Based_GPS +17013 Land-PILOT Land-PILOT +17014 PILOT-SHIP PILOT-SHIP +17015 American-Wind American-Wind +17016 American-Wind American-Wind +17017 European-Wind European-Wind +17018 Japanese-Wind Japanese-Wind +17019 TEMP-SHIP TEMP-SHIP +17020 DROP-Sonde DROP-Sonde +17021 Mobile-TEMP Mobile-TEMP +17022 Land-TEMP Land-TEMP +17023 ROCOB-TEMP ROCOB-TEMP +17024 SHIP-ROCOB SHIP-ROCOB diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table b/eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table new file mode 100644 index 00000000..cb80dc4e --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table @@ -0,0 +1,31 @@ +#Code Table obstat.4.0: List of variable number +110 P Pressure (Pa) + 1 Z Geopotential height (m) + 57 Z Geopotential height (m) + 3 U zonal component of wind (m/s) + 4 V meridional component of wind (m/s) + 41 10mU 10 m zonal component of wind (m/s) + 42 10mV 10 m meridional component of wind (m/s) +125 Amb_10mU 10 m zonal ambiguous component of wind (m/s) +124 Amb_10mV 10 m meridional ambiguous component of wind (m/s) +111 DD wind direction (DD) degree +112 FF wind speed (FF) m/s + 2 T Temperature (K) + 39 T2m 2m temperature (K) + 59 DewPT Dew point temperature (K) +119 BT Brightness temperature (K) + 7 SHU specific humidity (Kg/kg) + 9 PWC precipitable water content (Kg/m2) + 58 RH 2m relative humidity (%) +123 LWC liquid water content (Kg/m2) +206 Ozone integrated ozone density (O3) DU +128 Path_delay Atmospheric path delay +162 Bending_Angle Bending Angle (Alpha) Radians +174 Aerosol Aerosol +181 NO2 Nitrogen dioxide (NO2) +182 SO2 Sulphur dioxide (SO2) +183 CO Carbon monoxide (CO) +184 HCHO Formaldehyde (HCHO) +185 GO3 GEMS ozone (GO3) +186 CO2 Carbone dioxide (CO2) +188 CH4 Methane (CH4) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1.1.table b/eccodes/definitions/grib2/tables/local/edzw/1.1.table new file mode 100644 index 00000000..2f004eb8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1.1.table @@ -0,0 +1,5 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +1 1 DWD local entries from the current Master table are used +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/1.4.table b/eccodes/definitions/grib2/tables/local/edzw/1/1.4.table new file mode 100644 index 00000000..ae252b89 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/1.4.table @@ -0,0 +1,2 @@ +# Code table 1.4 - Type of data +192 pa perturbed analysis diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.0.table new file mode 100644 index 00000000..0281910a --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.0.table @@ -0,0 +1,10 @@ +# Code table 4.0 - Product definition template number +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +40055 40055 tiles parameters at a horizontal level or in a horizontal layer at a point in time +40056 40056 tiles Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for ........... parameters +40455 40455 ???tiles parameters at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +65535 65535 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table new file mode 100644 index 00000000..ab283d46 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table @@ -0,0 +1,12 @@ +#Discipline 0: Meteorological products +#Category Description +# 192-254 Reserved for local use +192 192 Medical meteorological products +193 193 Diagnostic meteorological products +194 194 Analyse error products +195 195 Probabilities from deterministic local-model +196 196 Probabilities from WarnMOS +197 197 Mineral dust +198 198 Covariance +254 254 DUMMIES for testing +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.11.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.11.table new file mode 100644 index 00000000..0b6c0225 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.11.table @@ -0,0 +1,4 @@ +# Code table 4.11 - Type of time intervals +#dieser Eintrag muesste eigentlich 192 lauten!?!?! +#13 13 Fields of atmosphere from analysis (P1=0) # DWD only # +# 192-254 Reserved for local use diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table new file mode 100644 index 00000000..7b8c7981 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table @@ -0,0 +1,5 @@ +# This file is automatically generated, don't edit! +192 192 Temperature tendency due to convection(K s-1) +193 193 Temperature tendency due to grid scale precipitation (K s-1) +194 194 Universal thermal climate index without direct incident short wave radiation(K) +195 195 Temperature, corrected in presence of snow (K) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table new file mode 100644 index 00000000..1005b637 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table @@ -0,0 +1,46 @@ +# This file is automatically generated, don't edit! +192 192 Vertical integral of divergence of total water content (rate) (kg m-2 s-1) +193 193 Sub-grid scale cloud water (kg kg-1) +194 194 Sub-grid scale cloud ice (kg kg-1) +195 195 Specific cloud liquid water content, convective cloud (kg kg-1) +196 196 Specific content of precipitation particles (needed for water loading)(kg kg-1) +197 197 Specific humidity tendency due to convection (kg kg-1 s-1) +198 198 Tendency of specific cloud liquid water content due to convection (kg kg-1 s-1) +199 199 Tendency of specific cloud ice content due to convection (kg kg-1 s-1) +200 200 Specific humidity tendency due to grid scale precipitation(kg kg-1 s-1) +201 201 Tendency of specific cloud liquid water content due to grid scale precipitation (kg kg-1 s-1) +202 202 Tendency of specific cloud ice content due to grid scale precipitation (kg kg-1 s-1) +203 203 Fresh snow factor (weighting function for albedo indicating freshness of snow)(Numeric) +204 204 Height of snow fall limit (m) +205 205 Convective vertical mass flux (kg m-2 s-1) +206 206 Moisture convergence for Kuo-type closure (s-1) +207 207 Tendency of specific humidity (s-1) +208 208 Water vapor flux (s-1 m-2) +209 209 Niederschlagsdargebot: potential water supply from snowpack (rain and snow melt, rate) (kg m-2 s-1) +210 210 Liquid water content in snow (kg m-2) +211 211 Specific humidity (diagnostic)(kg kg-1) +212 212 Specific cloud water content (diagnostic)(kg kg-1) +213 213 Specific cloud ice content (diagnostic)(kg kg-1) +214 214 Total column integrated water vapour (diagnostic)(kg m-2) +215 215 Total column integrated cloud water (diagnostic)(kg m-2) +216 216 Total column integrated cloud ice (diagnostic)(kg m-2) +217 217 Specific number concentration of snow(kg-1) +218 218 Specific number concentration of graupel(kg-1) +219 219 Specific number concentration of hail(kg-1) +220 220 Relative humidity over mixed phase (%) +221 221 Number density of snow(m-3) +222 222 Number density of graupel(m-3) +223 223 Number density of hail(m-3) +224 224 Mass density of rain(kg m-3) +225 225 Mass density of snow(kg m-3) +226 226 Mass density of graupel(kg m-3) +227 227 Mass density of hail(kg m-3) +228 228 Specific number concentration of rain(kg-1) +229 229 Number density of rain(m-3) +230 230 Rain drain from snowpack (rate) (kg m-2 s-1) +231 231 Cloud ice ratio qi/(qc+qi)(%) +232 232 Percentage of convective precipitation (from total prec)(%) +233 233 Percentage of precipitation in snow (from total prec.)(%) +234 234 Standard deviation of saturation deficit(Numeric) +235 235 Maximum snow height during contiguous accumulating snow period (coupled with snow age)(m) +238 238 Hail diameter (mm) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table new file mode 100644 index 00000000..70ec761c --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table @@ -0,0 +1,6 @@ +192 192 Total sulfate aerosol (1) +193 193 Total soil dust aerosol (1) +194 194 Organic aerosol (1) +195 195 Black carbon aerosol (1) +196 196 Sea salt aerosol (1) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table new file mode 100644 index 00000000..3380a9e2 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table @@ -0,0 +1,3 @@ +# This file is automatically generated, don't edit! +192 192 Height of ozone maximum (climatological) (Pa) +193 193 Vertically integrated ozone content (climatological) (Pa(O3)) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table new file mode 100644 index 00000000..a80a93e1 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table @@ -0,0 +1,8 @@ +# This file is automatically generated, don't edit! +192 192 Delay of the GPS signal through the (total) atmos. (m) +193 193 Delay of the GPS signal through wet atmos. (m) +194 194 Delay of the GPS signal through dry atmos. (m) +195 195 Radar precipitation rate (kg m-2 h-1) +196 196 Radar quality information (Proportion) +197 197 Radar blacklist (Numeric) +198 198 Height of radar beam above ground (m) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table new file mode 100644 index 00000000..6a7bce6c --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table @@ -0,0 +1,7 @@ +# This file is automatically generated, don't edit! +192 192 precipitation, qualified,BRD(kg m-2) +193 193 precipitation,BRD(kg m-2) +194 194 precipitation phase,BRD(Numeric) +195 195 hail flag,BRD(Numeric) +196 196 snow_rate,BRD(0.01 m) +197 197 snow_rate,qualified,BRD(0.01 m) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table new file mode 100644 index 00000000..f2b51a03 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 Lightning potential index (J kg-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table new file mode 100644 index 00000000..e5c04699 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 Diagnostic activity concentration of radionuclides (Bq m-3) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table new file mode 100644 index 00000000..27dcb9b5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table @@ -0,0 +1,39 @@ +# This file is automatically generated, don't edit! +192 192 Tendency of turbulent kinetic energy(m2 s-3) +193 193 Coriolis parameter(s-1) +194 194 Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab)(Numeric) +195 195 Icing Base (hft) - Icing Degree Composit(hft) +196 196 Icing Max Base (hft) - Icing Degree Composit(hft) +197 197 Icing Max Top (hft) - Icing Degree Composit(hft) +198 198 Icing Top (hft) - Icing Degree Composit(hft) +199 199 Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit(Numeric) +200 200 Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit(Numeric) +201 201 Icing Base (hft) - Icing Scenario Composit(hft) +202 202 Icing Signifikant Base (hft) - Icing Scenario Composit(hft) +203 203 Icing Signifikant Top (hft) - Icing Scenario Composit(hft) +204 204 Icing Top (hft) - Icing Scenario Composit(hft) +205 205 Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit(Numeric) +206 206 Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit(Numeric) +207 207 Icing Degree Code (1=light,2=moderate,3=severe)(Numeric) +208 208 Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)(Numeric) +209 209 current weather (symbol number: 0..9)(Numeric) +216 216 Eddy Dissipation Rate(m2/3 s-1) +217 217 Ellrod Index(10-7 s-2) +218 218 Production of TKE (m2 s-3) +219 219 Buoyancy-production of TKE due to sub-grid scale convection (m2 s-3) +220 220 Wake-production of TKE due to sub-grid scale orography (m2 s-3) +221 221 Shear-production of TKE due to separated horizontal shear modes (m2 s-3) +222 222 Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) (%) +223 223 Albedo - near infrared (0.7 - 5.0 m-6) (%) +224 224 Eddy Dissipation Rate Total Col-Max. Upper FIR (< FL245)(m2/3 s-1) +225 225 Eddy Dissipation Rate Total Col-Max. Lower UIR (= 10mm(kg m2) +3 3 Probability of 1h total precipitation >= 25mm(kg m2) +14 14 Probability of 6h total precipitation >= 20mm(kg m2) +17 17 Probability of 6h total precipitation >= 35mm(kg m2) +26 26 Probability of 12h total precipitation >= 25mm(kg m2) +29 29 Probability of 12h total precipitation >= 40mm(kg m2) +32 32 Probability of 12h total precipitation >= 70mm(kg m2) +69 69 Probability of 6h accumulated snow >=0.5cm(kg m2) +70 70 Probability of 6h accumulated snow >= 5cm(kg m2) +71 71 Probability of 6h accumulated snow >= 10cm(kg m2) +72 72 Probability of 12h accumulated snow >=0.5cm(kg m2) +74 74 Probability of 12h accumulated snow >= 10cm(kg m2) +75 75 Probability of 12h accumulated snow >= 15cm(kg m2) +77 77 Probability of 12h accumulated snow >= 25cm(kg m2) +132 132 Probability of 1h maximum wind gust speed >= 14m/s(m s-1) +134 134 Probability of 1h maximum wind gust speed >= 18m/s(m s-1) +136 136 Probability of 1h maximum wind gust speed >= 25m/s(m s-1) +137 137 Probability of 1h maximum wind gust speed >= 29m/s(m s-1) +138 138 Probability of 1h maximum wind gust speed >= 33m/s(m s-1) +139 139 Probability of 1h maximum wind gust speed >= 39m/s(m s-1) +191 191 Probability of black ice during 1h(Numeric) +197 197 Probability of thunderstorm during 1h(Numeric) +198 198 Probability of heavy thunderstorm during 1h(Numeric) +199 199 Probability of severe thunderstorm during 1h(Numeric) +212 212 Probability of snowdrift during 12h(Numeric) +213 213 Probability of strong snowdrift during 12h(Numeric) +232 232 Probability of temperature < 0 deg C during 1h(K) +236 236 Probability of temperature <= -10 deg C during 6h(K) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table new file mode 100644 index 00000000..02d7ea10 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table @@ -0,0 +1,15 @@ +# This file is automatically generated, don't edit! +1 1 Prob Gewitter(Numeric) +2 2 Prob Starkes Gewitter(Numeric) +3 3 Prob Schweres Gewitter(Numeric) +4 4 Prob Dauerregen(Numeric) +5 5 Prob Ergiebiger Dauerregen(Numeric) +6 6 Prob Extrem ergiebiger Dauerregen(Numeric) +7 7 Prob Schneeverwehung(Numeric) +8 8 Prob Starke Schneeverwehung(Numeric) +9 9 Prob Glaette(Numeric) +10 10 Prob oertlich Glatteis(Numeric) +11 11 Prob Glatteis(Numeric) +12 12 Prob Nebel (ueberoertl. Sichtweite < 150 m)(Numeric) +13 13 Prob Tauwetter(Numeric) +14 14 Prob Starkes Tauwetter(Numeric) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table new file mode 100644 index 00000000..2aec356a --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table @@ -0,0 +1,9 @@ +# This file is automatically generated, don't edit! +33 33 Mass concentration of dust (minimum mode) (kg m-3) +34 34 Mass concentration of dust (medium mode) (kg m-3) +35 35 Mass concentration of dust (maximum mode) (kg m-3) +72 72 Number concentration of dust (minimum mode) (m-3) +73 73 Number concentration of dust (medium mode) (m-3) +74 74 Number concentration of dust (maximum mode) (m-3) +251 251 Mass concentration of dust (sum of all modes) (kg m-3) +252 252 Number concentration of dust (sum of all modes) (m-3) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table new file mode 100644 index 00000000..4a4a4558 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table @@ -0,0 +1,4 @@ +# This file is automatically generated, don't edit! +0 0 Liquid water potential temperature variance(K2) +1 1 Total water specific humidity variance(kg2 kg-2) +2 2 Liquid water potential temperature - total water specific humidity covariance(K kg kg-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table new file mode 100644 index 00000000..b82c9b6d --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table @@ -0,0 +1,5 @@ +# This file is automatically generated, don't edit! +0 0 Sky-view-factor(Numeric) +1 1 Horizon angle - topography(Numeric) +2 2 Slope angle - topography(Numeric) +3 3 Slope aspect - topography(Numeric) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table new file mode 100644 index 00000000..4fb548fd --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table @@ -0,0 +1,21 @@ +# This file is automatically generated, don't edit! +192 192 Zonal wind tendency due to convection (m s-2) +193 193 Meridional wind tendency due to convection (m s-2) +194 194 Zonal wind tendency due to sub-grid scale oro. (m s-2) +195 195 Meridional wind tendency due to sub-grid scale oro. (m s-2) +196 196 Kinetic energy (J kg-1) +197 197 Absolute vorticity advection(s-2) +198 198 Relative vorticity, u-component (s-1) +199 199 Relative vorticity, v-component (s-1) +200 200 Atmospheric resistance(s m-1) +201 201 Mean vertical wind shear for specified layer or layer-mean vertical wind shear(s-1) +202 202 Norm of (vertical) wind shear vector between two levels(m s-1) +203 203 Threshold friction velocity(m s-1) +204 204 Dynamical gust(m s-1) +205 205 Convective gust(m s-1) +206 206 Maximum rotation amplitude (positive or negative) over given column (s-1) +207 207 Maximum updraft track over given column (m s-1) +208 208 U-component of (vertical) wind shear vector between two levels (m s-1) +209 209 V-component of (vertical) wind shear vector between two levels (m s-1) +210 210 Updraft duration(s) +211 211 Updraft mask(Numeric) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table new file mode 100644 index 00000000..be9d530d --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table @@ -0,0 +1,19 @@ +# This file is automatically generated, don't edit! +192 192 Number of pollen in the reservoir (previous timestep) (m-2) +193 193 Number of pollen released into the reservoir (new) (m-2) +194 194 State of the pollen season (eq. zero before and after season, the higher, the more plants are flowering) (0-1) +195 195 Height correction for pollen emission (decreasing emission with height) (0-1) +196 196 Cumulated weighted 2m temperature sum of daily values for pollen (deg C) +197 197 Cumulated 2m temperature sum threshold for the start of pollen season (climatological) (deg C) +198 198 Cumulated 2m temperature sum threshold for the end of pollen season (climatological) (deg C) +199 199 Number of days since the start of pollen season (if present day is in the season: zero outside season) (d) +200 200 Number of days since the start of pollen season (if present day is outside the season: length of current season) (d) +201 201 Length of pollen season (d) +202 202 Pollen number emission flux (m-2 s-1) +203 203 Wet deposition mass flux if rain reaches the surface (kg m-2 s-1) +204 204 Surface dry deposition of number concentration (m-2 s-1) +205 205 Wet deposition by grid scale precipitation of number concentration (m-2 s-1) +206 206 Wet deposition by convective precipitation of number concentration (m-2 s-1) +207 207 Wet deposition of number concentration if rain reaches the surface (m-2 s-1) +208 208 Sedimentation of number concentration (m-2 s-1) +209 209 Aerosol backscatter (not attenuated) for given wavelength (m-1 sr-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table new file mode 100644 index 00000000..67375817 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table @@ -0,0 +1,255 @@ +# This file is automatically generated, don't edit! +1 1 DUMMY_1() +2 2 DUMMY_2() +3 3 DUMMY_3() +4 4 DUMMY_4() +5 5 DUMMY_5() +6 6 DUMMY_6() +7 7 DUMMY_7() +8 8 DUMMY_8() +9 9 DUMMY_9() +10 10 DUMMY_10() +11 11 DUMMY_11() +12 12 DUMMY_12() +13 13 DUMMY_13() +14 14 DUMMY_14() +15 15 DUMMY_15() +16 16 DUMMY_16() +17 17 DUMMY_17() +18 18 DUMMY_18() +19 19 DUMMY_19() +20 20 DUMMY_20() +21 21 DUMMY_21() +22 22 DUMMY_22() +23 23 DUMMY_23() +24 24 DUMMY_24() +25 25 DUMMY_25() +26 26 DUMMY_26() +27 27 DUMMY_27() +28 28 DUMMY_28() +29 29 DUMMY_29() +30 30 DUMMY_30() +31 31 DUMMY_31() +32 32 DUMMY_32() +33 33 DUMMY_33() +34 34 DUMMY_34() +35 35 DUMMY_35() +36 36 DUMMY_36() +37 37 DUMMY_37() +38 38 DUMMY_38() +39 39 DUMMY_39() +40 40 DUMMY_40() +41 41 DUMMY_41() +42 42 DUMMY_42() +43 43 DUMMY_43() +44 44 DUMMY_44() +45 45 DUMMY_45() +46 46 DUMMY_46() +47 47 DUMMY_47() +48 48 DUMMY_48() +49 49 DUMMY_49() +50 50 DUMMY_50() +51 51 DUMMY_51() +52 52 DUMMY_52() +53 53 DUMMY_53() +54 54 DUMMY_54() +55 55 DUMMY_55() +56 56 DUMMY_56() +57 57 DUMMY_57() +58 58 DUMMY_58() +59 59 DUMMY_59() +60 60 DUMMY_60() +61 61 DUMMY_61() +62 62 DUMMY_62() +63 63 DUMMY_63() +64 64 DUMMY_64() +65 65 DUMMY_65() +66 66 DUMMY_66() +67 67 DUMMY_67() +68 68 DUMMY_68() +69 69 DUMMY_69() +70 70 DUMMY_70() +71 71 DUMMY_71() +72 72 DUMMY_72() +73 73 DUMMY_73() +74 74 DUMMY_74() +75 75 DUMMY_75() +76 76 DUMMY_76() +77 77 DUMMY_77() +78 78 DUMMY_78() +79 79 DUMMY_79() +80 80 DUMMY_80() +81 81 DUMMY_81() +82 82 DUMMY_82() +83 83 DUMMY_83() +84 84 DUMMY_84() +85 85 DUMMY_85() +86 86 DUMMY_86() +87 87 DUMMY_87() +88 88 DUMMY_88() +89 89 DUMMY_89() +90 90 DUMMY_90() +91 91 DUMMY_91() +92 92 DUMMY_92() +93 93 DUMMY_93() +94 94 DUMMY_94() +95 95 DUMMY_95() +96 96 DUMMY_96() +97 97 DUMMY_97() +98 98 DUMMY_98() +99 99 DUMMY_99() +100 100 DUMMY_100() +101 101 DUMMY_101() +102 102 DUMMY_102() +103 103 DUMMY_103() +104 104 DUMMY_104() +105 105 DUMMY_105() +106 106 DUMMY_106() +107 107 DUMMY_107() +108 108 DUMMY_108() +109 109 DUMMY_109() +110 110 DUMMY_110() +111 111 DUMMY_111() +112 112 DUMMY_112() +113 113 DUMMY_113() +114 114 DUMMY_114() +115 115 DUMMY_115() +116 116 DUMMY_116() +117 117 DUMMY_117() +118 118 DUMMY_118() +119 119 DUMMY_119() +120 120 DUMMY_120() +121 121 DUMMY_121() +122 122 DUMMY_122() +123 123 DUMMY_123() +124 124 DUMMY_124() +125 125 DUMMY_125() +126 126 DUMMY_126() +127 127 DUMMY_127() +128 128 DUMMY_128() +129 129 DUMMY_129() +130 130 DUMMY_130() +131 131 DUMMY_131() +132 132 DUMMY_132() +133 133 DUMMY_133() +134 134 DUMMY_134() +135 135 DUMMY_135() +136 136 DUMMY_136() +137 137 DUMMY_137() +138 138 DUMMY_138() +139 139 DUMMY_139() +140 140 DUMMY_140() +141 141 DUMMY_141() +142 142 DUMMY_142() +143 143 DUMMY_143() +144 144 DUMMY_144() +145 145 DUMMY_145() +146 146 DUMMY_146() +147 147 DUMMY_147() +148 148 DUMMY_148() +149 149 DUMMY_149() +150 150 DUMMY_150() +151 151 DUMMY_151() +152 152 DUMMY_152() +153 153 DUMMY_153() +154 154 DUMMY_154() +155 155 DUMMY_155() +156 156 DUMMY_156() +157 157 DUMMY_157() +158 158 DUMMY_158() +159 159 DUMMY_159() +160 160 DUMMY_160() +161 161 DUMMY_161() +162 162 DUMMY_162() +163 163 DUMMY_163() +164 164 DUMMY_164() +165 165 DUMMY_165() +166 166 DUMMY_166() +167 167 DUMMY_167() +168 168 DUMMY_168() +169 169 DUMMY_169() +170 170 DUMMY_170() +171 171 DUMMY_171() +172 172 DUMMY_172() +173 173 DUMMY_173() +174 174 DUMMY_174() +175 175 DUMMY_175() +176 176 DUMMY_176() +177 177 DUMMY_177() +178 178 DUMMY_178() +179 179 DUMMY_179() +180 180 DUMMY_180() +181 181 DUMMY_181() +182 182 DUMMY_182() +183 183 DUMMY_183() +184 184 DUMMY_184() +185 185 DUMMY_185() +186 186 DUMMY_186() +187 187 DUMMY_187() +188 188 DUMMY_188() +189 189 DUMMY_189() +190 190 DUMMY_190() +191 191 DUMMY_191() +192 192 DUMMY_192() +193 193 DUMMY_193() +194 194 DUMMY_194() +195 195 DUMMY_195() +196 196 DUMMY_196() +197 197 DUMMY_197() +198 198 DUMMY_198() +199 199 DUMMY_199() +200 200 DUMMY_200() +201 201 DUMMY_201() +202 202 DUMMY_202() +203 203 DUMMY_203() +204 204 DUMMY_204() +205 205 DUMMY_205() +206 206 DUMMY_206() +207 207 DUMMY_207() +208 208 DUMMY_208() +209 209 DUMMY_209() +210 210 DUMMY_210() +211 211 DUMMY_211() +212 212 DUMMY_212() +213 213 DUMMY_213() +214 214 DUMMY_214() +215 215 DUMMY_215() +216 216 DUMMY_216() +217 217 DUMMY_217() +218 218 DUMMY_218() +219 219 DUMMY_219() +220 220 DUMMY_220() +221 221 DUMMY_221() +222 222 DUMMY_222() +223 223 DUMMY_223() +224 224 DUMMY_224() +225 225 DUMMY_225() +226 226 DUMMY_226() +227 227 DUMMY_227() +228 228 DUMMY_228() +229 229 DUMMY_229() +230 230 DUMMY_230() +231 231 DUMMY_231() +232 232 DUMMY_232() +233 233 DUMMY_233() +234 234 DUMMY_234() +235 235 DUMMY_235() +236 236 DUMMY_236() +237 237 DUMMY_237() +238 238 DUMMY_238() +239 239 DUMMY_239() +240 240 DUMMY_240() +241 241 DUMMY_241() +242 242 DUMMY_242() +243 243 DUMMY_243() +244 244 DUMMY_244() +245 245 DUMMY_245() +246 246 DUMMY_246() +247 247 DUMMY_247() +248 248 DUMMY_248() +249 249 DUMMY_249() +250 250 DUMMY_250() +251 251 DUMMY_251() +252 252 DUMMY_252() +253 253 DUMMY_253() +254 254 DUMMY_254() diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table new file mode 100644 index 00000000..7ff056e8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table @@ -0,0 +1,7 @@ +# This file is automatically generated, don't edit! +192 192 Pressure perturbation(Pa) +193 193 U-momentum flux due to SSO-effects (N m-2) +194 194 V-momentum flux due to SSO-effects (N m-2) +195 195 3 hour pressure change(Pa-3h) +196 196 Height of -10 degree Celsius isotherm(m) +197 197 Pressure difference between two specific levels (Pa) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table new file mode 100644 index 00000000..7dd308f0 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table @@ -0,0 +1,9 @@ +# This file is automatically generated, don't edit! +192 192 Solar radiation heating rate(K s-1) +193 193 Effective transmissivity of solar radiation (Numeric) +194 194 Time of maximum of UV Index, clouded(Numeric) +195 195 UV Index, clear sky; corrected for albedo, aerosol and altitude(Numeric) +196 196 Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol(Numeric) +197 197 UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds(Numeric) +198 198 Downward direct short wave radiation flux(W m-2) +199 199 Downward diffusive short wave radiation flux(W m-2) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table new file mode 100644 index 00000000..e045bb4c --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 Thermal radiation heating rate(K s-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table new file mode 100644 index 00000000..7ad7ab5f --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table @@ -0,0 +1,15 @@ +# This file is automatically generated, don't edit! +192 192 Shallow convection cloud base (m) +193 193 Shallow convection cloud top (m) +194 194 Base index (vertical level) of main convective cloud (Numeric) +195 195 Top index (vertical level) of main convective cloud (Numeric) +196 196 Height of top of dry convection (m) +197 197 Height of thermals above MSL(m) +198 198 Modified cloud depth for media (Numeric) +199 199 Modified cloud cover for media (Numeric) +201 201 Type of convection (0..4) (Numeric) +202 202 Dry convection top index (Numeric) +203 203 Mass density of cloud droplets(kg m-3) +204 204 Mass density of cloud ice(kg m-3) +205 205 Possible astronomical sunshine duration (s) +206 206 Relative duration of sunshine (DURSUN * 100 / DURSUN_M)(%) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table new file mode 100644 index 00000000..d794f96a --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table @@ -0,0 +1,5 @@ +# This file is automatically generated, don't edit! +192 192 Supercell detection index 1 (rot. up- and downdrafts) (s-1) +193 193 Supercell detection index 2 (only rot. updrafts) (s-1) +194 194 Deep convection index(K) +195 195 Enthalpy (J kg-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table new file mode 100644 index 00000000..a6590ff8 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 Tidal tendencies (s2 m-2) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table new file mode 100644 index 00000000..1c2750ca --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table @@ -0,0 +1,11 @@ +# This file is automatically generated, don't edit! +193 193 wind sea period (s) +194 194 swell period (s) +195 195 total wave peak period (s) +196 196 total wave mean period (s) +197 197 total Tm1 period (s) +198 198 total Tm2 period (s) +199 199 total directional spread (degree true) +200 200 friction velocity (m s**-1) +201 201 Peak frequency (interpolated)(Hz) +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table new file mode 100644 index 00000000..c0acae70 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 Sea surface temperature interpolated in time in C(C) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table new file mode 100644 index 00000000..ded9f6cb --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table @@ -0,0 +1,9 @@ +# This file is automatically generated, don't edit! +192 192 Ratio of NDVI (normalized differential vegetation index) to annual maximum (Numeric) +193 193 Latent heat flux from bare soil(W m-2) +194 194 Latent heat flux from plants(W m-2) +195 195 Stomatal resistance (s m-1) +196 196 Impervious (paved or sealed) surface fraction(Proportion) +197 197 Antropogenic heat flux (e.g. urban heating, traffic)(W m-2) +198 198 Evaporation of plants (integrated since "nightly reset") (kg m-2) +199 199 skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)(W m-2 K-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table new file mode 100644 index 00000000..2ad91b4d --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table @@ -0,0 +1,10 @@ +# This file is automatically generated, don't edit! +192 192 Sum of contributions to evaporation (kg m-2) +193 193 Total transpiration from all soil layers (kg m-2) +194 194 Total forcing at soil surface (W m-2) +195 195 Residuum of soil moisture (kg m-2) +196 196 Soil type (1...9, local soilType.table) (Numeric) +197 197 Variance of soil moisture content (kg2 m-4) +198 198 Covariance of soil moisture content (kg2 m-4) +199 199 Surface emissivity (Numeric) +200 200 Soil moisture index (multilayers) (Numeric) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table new file mode 100644 index 00000000..0532073d --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +0 0 Luminosity(klux) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table new file mode 100644 index 00000000..b32d0212 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table @@ -0,0 +1,14 @@ +# This file is automatically generated, don't edit! +0 0 Wind direction in azimuth class (Numeric) +1 1 Along-wind Lagrangian time scale (Hanna) (s) +2 2 Cross-wind Lagrangian time scale (Hanna) (s) +3 3 Vertical Lagrangian time scale (Hanna) (s) +4 4 Zonal Lagrangian time scale (direct) (Hanna) (s) +5 5 Meridional Lagrangian time scale (direct) (Hanna) (s) +6 6 Vertical Lagrangian time scale (direct) (Hanna) (s) +7 7 Along-wind velocity fluctuation (Hanna)(m s-1) +8 8 Cross-wind velocity fluctuation (Hanna)(m s-1) +9 9 Vertical velocity fluctuation (Hanna)(m s-1) +10 10 Zonal velocity fluctuation (Hanna)(m s-1) +11 11 Meridional velocity fluctuation (Hanna)(m s-1) +12 12 Vertical velocity fluctuation (Hanna)(m s-1) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table new file mode 100644 index 00000000..1cff0f7c --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table @@ -0,0 +1,4 @@ +# This file is automatically generated, dont edit! +1 1 Downward long-wave radiation flux at surface based on T_2M(W m-2 ) +2 2 Downward long-wave radiation flux at surface based on T_G(W m-2 ) +3 3 Downward long-wave radiation flux at surface based on T_SO(0)(W m-2 ) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table new file mode 100644 index 00000000..defa7a08 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table @@ -0,0 +1,4 @@ +# This file is automatically generated, don't edit! +0 0 Adedokun 2 Index(K) +1 1 Thunderstorm index for Switzerland (night time)(K) +2 2 Thunderstorm index for Switzerland (day time)(K) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table new file mode 100644 index 00000000..a4f385d4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 cloud type(Numeric) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table new file mode 100644 index 00000000..2f5e29c5 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table @@ -0,0 +1,2 @@ +# This file is automatically generated, don't edit! +192 192 cloud top temperature(K) diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.3.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.3.table new file mode 100644 index 00000000..d845e448 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.3.table @@ -0,0 +1,17 @@ +192 192 bias corrected ensemble forecast +193 193 calibrated forecast +194 194 calibrated ensemble f. +195 195 interpolated analysis/forecast +196 196 invariant data +197 197 smoothed forecast +198 198 smoothed and calibrated forecast +199 199 probability forecast derived by neighbourhood method +201 201 diff. analysis - first guess +200 200 diff. init. analysis - analysis* +202 202 nudging +203 203 nudgecast +204 204 product derived by statistical model +205 205 deterministic forecast on ensemble mean(DOM) +206 206 time filtered bias +220 220 postprocessing +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.5.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.5.table new file mode 100644 index 00000000..c545958e --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.5.table @@ -0,0 +1,14 @@ +#im Vorgriff auf eine offizielle WMO-Regelung +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) +192 ML ML start level of mixed layer parcel(CAPE/CIN) +193 MU MU start level of most unstable parcel(CAPE/CIN) +194 LFC Level of free convection +#195-198 reserved +199 radarElevComposite radarElevComposite radarElevComposite +#200 reserved +201 hor Surface: horizontal plane +202 vE Surface: vertical plane facing east +203 vN Surface: vertical plane facing north +204 vS Surface: vertical plane facing south +205 vW Surface: vertical plane facing west +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.6.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.6.table new file mode 100644 index 00000000..5c561556 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.6.table @@ -0,0 +1,3 @@ +# Code table 4.6 - Type of ensemble forecast (DWD-local) +192 other other types of ensemble forecasts +255 255 missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.7.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.7.table new file mode 100644 index 00000000..c0ac0ce7 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.7.table @@ -0,0 +1,64 @@ +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.9.table b/eccodes/definitions/grib2/tables/local/edzw/1/4.9.table new file mode 100644 index 00000000..2f6e8b84 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/4.9.table @@ -0,0 +1,64 @@ +192 192 categorical event probability (local use entry to be proposed for WMO) +193 193 Reserved for local use +194 194 Reserved for local use +195 195 highest member index with event above lower limit +196 196 highest member index with event below upper limit +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table b/eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table new file mode 100644 index 00000000..dbbe65aa --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table @@ -0,0 +1,42 @@ +0 0 main run +1 1 pre-assimilation +2 2 assimilation +3 3 test +4 4 onscreen analysis +5 5 WarnMOS +100 100 Blauthermik +101 SSO SSO - wake - production of TKE due to sub grid scale orography +102 HSH HSH - shear - production of TKE due to separated horizontal shear modes +103 CON CON - buoyancy - production of TKE due to sub grid scale convection +128 A Modell-Bezug +129 B Modell-Bezug +130 AB Modell-Bezug +131 C Modell-Bezug +132 AC Modell-Bezug +133 BC Modell-Bezug +134 ABC Modell-Bezug +135 D Modell-Bezug +136 AD Modell-Bezug +137 BD Modell-Bezug +138 ABD Modell-Bezug +139 CD Modell-Bezug +140 ACD Modell-Bezug +141 BCD Modell-Bezug +142 ABCD Modell-Bezug +143 E Modell-Bezug +144 AE Modell-Bezug +145 BE Modell-Bezug +146 ABE Modell-Bezug +147 CE Modell-Bezug +148 ACE Modell-Bezug +149 BCE Modell-Bezug +150 ABCE Modell-Bezug +151 DE Modell-Bezug +152 ADE Modell-Bezug +153 BDE Modell-Bezug +154 ABDE Modell-Bezug +155 CDE Modell-Bezug +156 ACDE Modell-Bezug +157 BCDE Modell-Bezug +158 ABCDE Modell-Bezug +255 NIL missing diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table b/eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table new file mode 100644 index 00000000..209928e4 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table @@ -0,0 +1,113 @@ +001 icXgl icXgl (ICON global,icogl or icrgl or icigl) +002 icXeu icXeu (ICON europe,icoeu or icreu or icieu) +003 icXde icXde (ICON germany, icode or icrde or icide) +004 dwd dwd (reserved ICON DWD) +005 dwd dwd (reserved ICON DWD) +006 dwd dwd (reserved ICON DWD) +007 dwd dwd (reserved ICON DWD) +008 dwd dwd (reserved ICON DWD) +009 dwd dwd (reserved ICON DWD) +010 dwd dwd (reserved ICON DWD) +011 icXla icXla (ICON LAM) +012 icXln icXln (ICON LAM nest) +013 icXls icXls (ICON LAM sub-nest) +014 dwd dwd (reserved ICON DWD) +015 dwd dwd (reserved ICON DWD) +016 dwd dwd (reserved ICON DWD) +017 dwd dwd (reserved ICON DWD) +018 dwd dwd (reserved ICON DWD) +019 dwd dwd (reserved ICON DWD) +020 icX1b icX1b (ICON Bw 1) +021 bw bw (reserved ICON Bw) +022 bw bw (reserved ICON Bw) +023 bw bw (reserved ICON Bw) +024 bw bw (reserved ICON Bw) +025 an2mo an2mo (old name: AN2MO) +026 icrerr icrerr (ICON analysis error) +027 dwd dwd (reserved ICON analysis error) +033 analy analy (old name: ANALY) +034 034 034 (old name: WAMIT) +036 ecpeps_fc ecpeps_fc (old name: GPEPS) +037 noagm_fc noagm_fc (old name: KWGFS) +038 noaa_gf05 noaa_gf05 (old name: KWGF5) +044 b106_fc b106_fc (old name: B106V) +049 s106_fc s106_fc (old name: S106V) +053 an1mo an1mo (old name: AN1MO) +058 em3_an em3_an (old name: EM3AN) +059 em3_fc em3_fc (old name: EM3MO) +061 ecgm_fc ecgm_fc (old name: ECMFM) +064 064 064 (old name: KWBCM) +065 mfrgm_fc mfrgm_fc (old name: LFPWM) +068 noasice1_fc noasice1_fc (old name: KWB01) +069 ecgsm_fc ecgsm_fc (old name: SGGLO) +074 b106_an b106_an (old name: B106A) +075 ecmsm_fc ecmsm_fc (old name: SGMED) +079 s106_an s106_an (old name: S106A) +080 ecle_fcprob ecle_fcprob (old name: ECENS) +081 normw normw (old name: NORMW) +084 norm3 norm3 (old name: NORM3) +085 085 085 (old name: SGNAT) +086 086 086 (old name: SGESH) +087 087 087 (old name: SGBAL) +088 dm3_fcmean dm3_fcmean (old name: MOMI3) +094 p106_an p106_an (old name: P106A) +111 dm3_an dm3_an (old name: DM3AN) +112 dm3_fc dm3_fc (old name: DM3MO) +115 dm4_an dm4_an (old name: DM4AN) +116 dm4_fc dm4_fc (old name: DM4MO) +121 ukmgmp_fc ukmgmp_fc (old name: WAFTF) +122 ukmgmpt_fc ukmgmpt_fc (old name: WAFSZ) +123 noasice2_fc noasice2_fc (old name: KWB02) +124 noasice3_fc noasice3_fc (old name: KWB03) +126 noasice4_fc noasice4_fc (old name: KWB04) +127 ukmlm_fcnat ukmlm_fcnat (old name: NAEGR) +131 c1_an c1_an (old name: LM1AN) +132 c1_fc c1_fc (old name: LM1MO) +134 c2_an c2_an (old name: LM2AN) +135 c2_fc c2_fc (old name: LM2MO) +137 c3_an c3_an (old name: LM3AN) +138 c3_fc c3_fc (old name: LM3MO) +139 cd2 cd2 +140 ecgm_diag_fc05 ecgm_diag_fc05 (old name: keiner) +141 i032_an i032_an (old name: I032A) +143 i048_an i048_an (old name: I048A) +145 i064_an i064_an (old name: I064A) +147 i096_an i096_an (old name: I096A) +148 i096_fc i096_fc (old name: I096F) +149 i128_an i128_an (old name: I128A) +150 i128_fc i128_fc (old name: I128F) +157 r096_an r096_an (old name: R096A) +159 r128_an r128_an (old name: R128A) +160 r128_fc r128_fc (old name: R128F) +173 i192_an i192_an (old name: I192A) +174 i192_fc i192_fc (old name: I192F) +175 i256_an i256_an (old name: I256A) +176 i256_fc i256_fc (old name: I256F) +185 r192_an r192_an (old name: R192A) +186 r192_fc r192_fc (old name: R192F) +187 r256_an r256_an (old name: R256A) +188 r256_fc r256_fc (old name: R256F) +194 r128_anerr r128_anerr (old name: E128A) +195 r192_anerr r192_anerr (old name: E192A) +196 r256_anerr r256_anerr (old name: E256A) +197 gsm_fc gsm_fc (old name: SGGM0) +198 msm_fc msm_fc (old name: SGGM1) +199 gsm_fc025 gsm_fc025 (old name: SGGM2) +201 lsm_fc lsm_fc (old name: SGLM0) +202 202 202 (old name: SGLM1) +205 bshsice_fc bshsice_fc (old name: SGBSH) +206 i384_an i384_an (old name: I384A) +207 i384_fc i384_fc (old name: I384F) +208 r384_an r384_an (old name: R384A) +209 r384_fc r384_fc (old name: R384F) +210 r384_anerr r384_anerr (old name: E384A) +211 ukmgm_fcnat ukmgm_fcnat (old name: EGMES) +212 mfrlm_fcnat mfrlm_fcnat (old name: LFMES) +213 c4_fc c4_fc (old name: LM4MO) +214 c4_an c4_an (old name: LM4AN) +215 c5e_fc c5e_fc (old name: LM5MO) +216 c5e_an c5e_an (old name: LM5AN) +217 c6e_fc c6e_fc (old name: LM6MO) +218 c6e_an c6e_an (old name: LM6AN) +219 c7e_fc c7e_fc (old name:LM7MO,LEPS) +225 225 225 (old name: SGBS1) diff --git a/eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table b/eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table new file mode 100644 index 00000000..3a7c1435 --- /dev/null +++ b/eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table @@ -0,0 +1,89 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +# See ECC-469 +200 200 Entire atmosphere (considered as a single layer) +204 204 Highest tropospheric freezing level +211 211 Boundary layer cloud layer +212 212 Low cloud bottom level +213 213 Low cloud top level +214 214 Low cloud layer +220 220 Planetary boundary layer +222 222 Middle cloud bottom level +223 223 Middle cloud top level +224 224 Middle cloud layer +232 232 High cloud bottom level +233 233 High cloud top level +234 234 High cloud layer +242 242 Convective cloud bottom level +243 243 Convective cloud top level +244 244 Convective cloud layer +255 255 Missing diff --git a/eccodes/definitions/grib2/template.1.0.def b/eccodes/definitions/grib2/template.1.0.def new file mode 100644 index 00000000..0f8f3227 --- /dev/null +++ b/eccodes/definitions/grib2/template.1.0.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 1.0, Calendar Definition + +include "grib2/template.1.calendar.def"; diff --git a/eccodes/definitions/grib2/template.1.1.def b/eccodes/definitions/grib2/template.1.1.def new file mode 100644 index 00000000..7fcf51f5 --- /dev/null +++ b/eccodes/definitions/grib2/template.1.1.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 1.1, Paleontological Offset + +include "grib2/template.1.offset.def"; diff --git a/eccodes/definitions/grib2/template.1.2.def b/eccodes/definitions/grib2/template.1.2.def new file mode 100644 index 00000000..3d5c0e3b --- /dev/null +++ b/eccodes/definitions/grib2/template.1.2.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 1.2, Calendar Definition and Paleontological Offset + +include "grib2/template.1.calendar.def"; +include "grib2/template.1.offset.def"; diff --git a/eccodes/definitions/grib2/template.1.calendar.def b/eccodes/definitions/grib2/template.1.calendar.def new file mode 100644 index 00000000..8d55bc3f --- /dev/null +++ b/eccodes/definitions/grib2/template.1.calendar.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +# Type of Calendar (see Code Table 1.6) +codetable[1] typeOfCalendar ('1.6.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; diff --git a/eccodes/definitions/grib2/template.1.offset.def b/eccodes/definitions/grib2/template.1.offset.def new file mode 100644 index 00000000..3f967e1a --- /dev/null +++ b/eccodes/definitions/grib2/template.1.offset.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Number of tens of thousands of years of offset +signed[2] numberOfTensOfThousandsOfYearsOfOffset = missing() : can_be_missing,dump,no_copy,edition_specific; +alias paleontologicalOffset=numberOfTensOfThousandsOfYearsOfOffset ; diff --git a/eccodes/definitions/grib2/template.3.0.def b/eccodes/definitions/grib2/template.3.0.def new file mode 100644 index 00000000..11b5f0b0 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.0.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.0, Latitude/longitude (or equidistant cylindrical, or Plate Carree) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; diff --git a/eccodes/definitions/grib2/template.3.1.def b/eccodes/definitions/grib2/template.3.1.def new file mode 100644 index 00000000..73357306 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.1.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.1, Rotated Latitude/longitude (or equidistant cylindrical, or Plate Carree) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.10.def b/eccodes/definitions/grib2/template.3.10.def new file mode 100644 index 00000000..818c43c0 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.10.def @@ -0,0 +1,85 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.10, Mercator +include "grib2/template.3.shape_of_the_earth.def"; + +unsigned[4] Ni : dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; +alias numberOfPointsAlongXAxis = Ni; +alias geography.Ni=Ni; + +unsigned[4] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj; +alias numberOfPointsAlongYAxis = Nj; +alias geography.Nj=Nj; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint: edition_specific,no_copy ; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# Lo1 - longitude of first grid point +signed[4] longitudeOfFirstGridPoint : edition_specific,no_copy; +alias Lo1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +include "grib2/template.3.resolution_flags.def"; + +# LaD - Latitude(s) at which the Mercator projection intersects the Earth +# (Latitude(s) where Di and Dj are specified) +signed[4] LaD : edition_specific,no_copy; +meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific,no_copy; +alias La2 = latitudeOfLastGridPoint; +meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# Lo2 - longitude of last grid point +signed[4] longitudeOfLastGridPoint: edition_specific,no_copy ; +alias Lo2 = longitudeOfLastGridPoint; +meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +include "grib2/template.3.scanning_mode.def"; + +# Orientation of the grid, angle between i direction on the map and the equator +# NOTE 1: Limited to the range of 0 to 90 degrees; if the angle of orientation of the grid is neither 0 nor 90 degrees, +# Di and Dj must be equal to each other +unsigned[4] orientationOfTheGrid : dump ; +meta geography.orientationOfTheGridInDegrees + scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; + +# Di - longitudinal direction grid length +# NOTE 2: Grid lengths are in units of 10**-3 m, at the latitude specified by LaD +unsigned[4] Di : edition_specific,no_copy; +alias longitudinalDirectionGridLength = Di; +meta geography.DiInMetres scale(Di,oneConstant,thousand,truncateDegrees) : dump; +alias DxInMetres = DiInMetres; + +# Dj - latitudinal direction grid length +# NOTE 2: Grid lengths are in units of 10**-3 m, at the latitude specified by LaD +unsigned[4] Dj : edition_specific,no_copy ; +alias latitudinalDirectionGridLength = Dj; +meta geography.DjInMetres scale(Dj,oneConstant,thousand,truncateDegrees) : dump; +alias DyInMetres = DjInMetres; + +iterator mercator(numberOfPoints,missingValue,values, + radius,Ni,Nj, + latitudeOfFirstGridPointInDegrees, longitudeOfFirstGridPointInDegrees, + LaDInDegrees, + latitudeOfLastGridPointInDegrees, longitudeOfLastGridPointInDegrees, + orientationOfTheGridInDegrees, + DiInMetres,DjInMetres, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest mercator(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.100.def b/eccodes/definitions/grib2/template.3.100.def new file mode 100644 index 00000000..89b16340 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.100.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.100, Triangular grid based on an icosahedron (see Attachment I.2-GRIB-Att.) + +# n2 - exponent of 2 for the number of intervals on main triangle sides +unsigned[1] n2 : dump ; + +# n3 - exponent of 3 for the number of intervals on main triangle sides +unsigned[1] n3 : dump ; + +# Ni - number of intervals on main triangle sides of the icosahedron +unsigned[2] Ni : dump ; + +# nd - Number of diamonds +unsigned[1] nd : dump ; +alias numberOfDiamonds=nd; + +# Latitude of the pole point of the icosahedron on the sphere +signed[4] latitudeOfThePolePoint : dump ; +meta geography.latitudeOfThePolePointInDegrees scale(latitudeOfThePolePoint,one,grib2divider,truncateDegrees) : dump; + +# Longitude of the pole point of the icosahedron on the sphere +unsigned[4] longitudeOfThePolePoint : dump ; +meta geography.longitudeOfThePolePointInDegrees g2lon(longitudeOfThePolePoint); + +# Longitude of the centre line of the first diamond of the icosahedron on the sphere +unsigned[4] longitudeOfFirstDiamondCentreLine : dump ; +meta geography.longitudeOfFirstDiamondCentreLineInDegrees g2lon(longitudeOfFirstDiamondCentreLine); + +# Grid point position +codetable[1] gridPointPosition ('3.8.table',masterDir,localDir); + +# Numbering order of diamonds +flags[1] numberingOrderOfDiamonds 'grib2/tables/[tablesVersion]/3.9.table'; + +# Scanning mode for one diamond +flags[1] scanningModeForOneDiamond 'grib2/tables/[tablesVersion]/3.10.table'; + +# nt - total number of grid points +unsigned[4] totalNumberOfGridPoints : dump ; + +alias nt = totalNumberOfGridPoints; + diff --git a/eccodes/definitions/grib2/template.3.1000.def b/eccodes/definitions/grib2/template.3.1000.def new file mode 100644 index 00000000..590151dd --- /dev/null +++ b/eccodes/definitions/grib2/template.3.1000.def @@ -0,0 +1,55 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.1000, Cross-section grid, with points equally spaced on the horizontal + +include "grib2/template.3.shape_of_the_earth.def"; + + +# Number of horizontal points +unsigned[4] numberOfHorizontalPoints : dump ; + +# Basic angle of the initial production domain +unsigned[4] basicAngleOfTheInitialProductionDomain = 0; + +# Subdivisions of basic angle used to define extreme longitudes and latitudes +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing;; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific ; + +alias La1 = latitudeOfFirstGridPoint; +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; + +alias Lo1 = longitudeOfFirstGridPoint; + +include "grib2/template.3.scanning_mode.def"; + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific; + +alias La2 = latitudeOfLastGridPoint; +# Lo2 - longitude of last grid point +unsigned[4] longitudeOfLastGridPoint: edition_specific ; + +alias Lo2 = longitudeOfLastGridPoint; +# Type of horizontal line +codetable[1] typeOfHorizontalLine ('3.20.table',masterDir,localDir) : dump ; + +# Number of vertical points +unsigned[2] numberOfVerticalPoints : dump ; + +# Physical meaning of vertical coordinate +codetable[1] meaningOfVerticalCoordinate ('3.15.table',masterDir,localDir) : dump ; + +# Vertical dimension coordinate values definition +codetable[1] verticalCoordinate ('3.21.table',masterDir,localDir) : dump ; + +# NC - Number of coefficients or values used to specify vertical coordinates +unsigned[2] NC : dump ; + +# Octets 67-(66+NC*4) : Coefficients to define vertical dimension coordinate values in functional form, or the explicit coordinate values +# (IEEE 32-bit floating-point values) +# ???? coefficients_to_define_vertical_dimension_coordinate_values_in_functional_form_or_the_explicit_coordinate_values + + diff --git a/eccodes/definitions/grib2/template.3.101.def b/eccodes/definitions/grib2/template.3.101.def new file mode 100644 index 00000000..6c37f39d --- /dev/null +++ b/eccodes/definitions/grib2/template.3.101.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.101, General Unstructured Grid + +codetable[1] shapeOfTheEarth ('3.2.table',masterDir,localDir) : dump; + +unsigned[3] numberOfGridUsed : dump; + +unsigned[1] numberOfGridInReference : dump; + +# UUID of horizontal grid +byte[16] uuidOfHGrid : dump; + +template_nofail unstructuredGrid "grib2/localConcepts/[centre:s]/unstructuredGrid.def"; diff --git a/eccodes/definitions/grib2/template.3.110.def b/eccodes/definitions/grib2/template.3.110.def new file mode 100644 index 00000000..5d63071d --- /dev/null +++ b/eccodes/definitions/grib2/template.3.110.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.110, Equatorial azimuthal equidistant projection +include "grib2/template.3.shape_of_the_earth.def"; + +# Nx - number of points along X-axis +unsigned[4] numberOfPointsAlongXAxis : dump ; + +alias Nx = numberOfPointsAlongXAxis; +# Ny - number of points along Y-axis +unsigned[4] numberOfPointsAlongYAxis : dump ; + +alias Ny = numberOfPointsAlongYAxis; +# La1 - latitude of tangency point +# (centre of grid) +signed[4] latitudeOfTangencyPoint : dump ; + +alias La1 = latitudeOfTangencyPoint; +# Lo1 - longitude of tangency point +unsigned[4] longitudeOfTangencyPoint : dump ; + +alias Lo1 = longitudeOfTangencyPoint; +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; + +# Dx - X-direction grid length in units of 10 -3 m as measured at the point of the axis +unsigned[4] Dx : dump ; + +# Dy - Y-direction grid length in units of 10 -3 m as measured at the point of the axis +unsigned[4] Dy : dump ; + +# Projection centre flag +unsigned[1] projectionCentreFlag : dump ; + +include "grib2/template.3.scanning_mode.def"; diff --git a/eccodes/definitions/grib2/template.3.1100.def b/eccodes/definitions/grib2/template.3.1100.def new file mode 100644 index 00000000..2996da7d --- /dev/null +++ b/eccodes/definitions/grib2/template.3.1100.def @@ -0,0 +1,75 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.1100, Hovmoller diagram grid with points equally spaced on the horizontal +include "grib2/template.3.shape_of_the_earth.def"; + +# Number of horizontal points +unsigned[5] numberOfHorizontalPoints : dump ; + +# Basic angle of the initial production domain +unsigned[4] basicAngleOfTheInitialProductionDomain = 0 : dump ; + +# Subdivisions of basic angle used to define extreme longitudes and latitudes +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing,dump; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific,dump; + +alias La1 =latitudeOfFirstGridPoint; +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific,dump; + +alias Lo1 =longitudeOfFirstGridPoint; + +include "grib2/template.3.scanning_mode.def"; + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific,dump; + +alias La2 = latitudeOfLastGridPoint; +# Lo2 - longitude of last grid point +unsigned[4] longitudeOfLastGridPoint : edition_specific,dump ; + +alias Lo2 = longitudeOfLastGridPoint; +# Type of horizontal line +codetable[1] typeOfHorizontalLine ('3.20.table',masterDir,localDir) : dump; + +# NT - Number of time steps +unsigned[4] numberOfTimeSteps : dump; + +alias NT = numberOfTimeSteps; +# Unit of offset from reference time +codetable[1] unitOfOffsetFromReferenceTime ('4.4.table',masterDir,localDir) : dump; + +# Offset from reference of first time +# (negative value when first bit set) +unsigned[4] offsetFromReferenceOfFirstTime ; + +# Type of time increment +codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) : dump; + +# Unit of time increment +codetable[1] unitOfTimeIncrement ('4.4.table',masterDir,localDir) : dump; + +# Time increment +# (negative value when first bit set) +unsigned[4] timeIncrement : dump ; + +# Year +unsigned[2] year : dump; + +# Month +unsigned[1] month : dump; + +# Day +unsigned[1] day : dump; + +# Hour +unsigned[1] hour : dump; + +# Minute +unsigned[1] minute : dump; + +# Second +unsigned[1] second : dump; + diff --git a/eccodes/definitions/grib2/template.3.12.def b/eccodes/definitions/grib2/template.3.12.def new file mode 100644 index 00000000..e2b5bcb1 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.12.def @@ -0,0 +1,71 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.12, Transverse Mercator + +include "grib2/template.3.shape_of_the_earth.def"; + +unsigned[4] Ni : dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; +alias geography.Ni=Ni; + +unsigned[4] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj ; +alias geography.Nj=Nj; + +# LaR - geographic latitude of reference point +signed[4] latitudeOfReferencePoint: edition_specific,no_copy ; +alias LaR = latitudeOfReferencePoint; +meta geography.latitudeOfReferencePointInDegrees scale(latitudeOfReferencePoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# LoR - geographic longitude of reference point +signed[4] longitudeOfReferencePoint : edition_specific,no_copy; +alias LoR = longitudeOfReferencePoint; +meta geography.longitudeOfReferencePointInDegrees scale(longitudeOfReferencePoint,oneConstant,grib2divider,truncateDegrees) : dump; + +include "grib2/template.3.resolution_flags.def"; + +# m - scale factor at reference point ratio of distance on map to distance on spheroid +# (IEEE 32-bit floating-point values) +ieeefloat scaleFactorAtReferencePoint : edition_specific,no_copy; +alias m = scaleFactorAtReferencePoint; +alias geography.m=m; + +# XR - false easting, i-direction coordinate of reference point in units of 10-2 m +signed[4] XR : edition_specific,no_copy; +alias falseEasting = XR; +meta geography.XRInMetres scale(XR,one,hundred) : dump; + +# YR - false northing, j-direction coordinate of reference point in units of 10-2 m +signed[4] YR : edition_specific,no_copy ; +alias falseNorthing = YR; +meta geography.YRInMetres scale(YR,one,hundred) : dump; + +include "grib2/template.3.scanning_mode.def"; + +# Di - i-direction increment length in units of 10-2 m +unsigned[4] Di : edition_specific,no_copy; +alias iDirectionIncrementGridLength = Di; +meta geography.DiInMetres scale(Di,oneConstant,hundred,truncateDegrees) : dump; + +# Dj - j-direction increment length in units of 10-2 m +unsigned[4] Dj : edition_specific,no_copy; +alias jDirectionIncrementGridLength = Dj; +meta geography.DjInMetres scale(Dj,oneConstant,hundred,truncateDegrees) : dump; + +# x1 - i-direction coordinate of the first grid point in units of 10-2 m +signed[4] X1 : no_copy; +meta geography.X1InGridLengths scale(X1,one,hundred) : dump; + +# y1 - j-direction coordinate of the first grid point in units of 10-2 m +signed[4] Y1 : no_copy; +meta geography.Y1InGridLengths scale(Y1,one,hundred) : dump; + +# x2 - i-direction coordinate of the last grid point in units of 10-2 m +signed[4] X2 : no_copy; +meta geography.X2InGridLengths scale(X2,one,hundred) : dump; + +# y2 - j-direction coordinate of the last grid point in units of 10-2 m +signed[4] Y2 : no_copy; +meta geography.Y2InGridLengths scale(Y2,one,hundred) : dump; diff --git a/eccodes/definitions/grib2/template.3.120.def b/eccodes/definitions/grib2/template.3.120.def new file mode 100644 index 00000000..49daa975 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.120.def @@ -0,0 +1,44 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.120, Azimuth-range projection +# Nb - number of data bins along radials (A data bin is a data point representing the volume centred on it) +unsigned[4] numberOfDataBinsAlongRadials ; +alias Nb = numberOfDataBinsAlongRadials; + +# Nr - number of radials +unsigned[4] numberOfRadials ; +alias Nr = numberOfRadials; + +# La1 - latitude of centre point +signed[4] latitudeOfCentrePoint ; +alias La1 = latitudeOfCentrePoint; +meta geography.latitudeOfCentrePointInDegrees + scale(latitudeOfCentrePoint,one,grib2divider,truncateDegrees) : dump; +alias La1InDegrees=latitudeOfCentrePointInDegrees; + +# Lo1 - longitude of centre point +unsigned[4] longitudeOfCentrePoint ; +alias Lo1 = longitudeOfCentrePoint; +meta geography.longitudeOfCentrePointInDegrees + scale(longitudeOfCentrePoint,one,grib2divider,truncateDegrees) : dump; +alias Lo1InDegrees=longitudeOfCentrePointInDegrees; + +# Dx - spacing of bins along radials +unsigned[4] spacingOfBinsAlongRadials ; +alias Dx = spacingOfBinsAlongRadials; + +# Dstart - offset from origin to inner bound +unsigned[4] offsetFromOriginToInnerBound ; +alias Dstart = offsetFromOriginToInnerBound; + +include "grib2/template.3.scanning_mode.def"; + +# Octets 40-(39+4Nr) : For each of Nr radials: +radials list(numberOfRadials){ + # Azi - starting azimuth, degrees x 10 (degrees as north) + signed[2] startingAzimuth; + alias Azi = startingAzimuth; + # Adelta - azimuthal width, degrees x 100 (+ clockwise, - counterclockwise) + signed[2] azimuthalWidth; + alias Adelta = azimuthalWidth; +} diff --git a/eccodes/definitions/grib2/template.3.1200.def b/eccodes/definitions/grib2/template.3.1200.def new file mode 100644 index 00000000..5429c32f --- /dev/null +++ b/eccodes/definitions/grib2/template.3.1200.def @@ -0,0 +1,57 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.1200, Time section grid +# NT - Number of time steps +unsigned[4] numberOfTimeSteps : dump; + +alias NT = numberOfTimeSteps; +# Unit of offset from reference time +codetable[1] unitOfOffsetFromReferenceTime ('4.4.table',masterDir,localDir) : dump; + +# Offset from reference of first time +# (negative value when first bit set) +unsigned[4] offsetFromReferenceOfFirstTime : dump; + +# Type of time increment +codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) : dump; + +# Unit of time increment +codetable[1] unitOfTimeIncrement ('4.4.table',masterDir,localDir) : dump; + +# Time increment +# (negative value when first bit set) +unsigned[4] timeIncrement : dump; + +# Year +unsigned[2] year : dump; + +# Month +unsigned[1] month : dump; + +# Day +unsigned[1] day : dump; + +# Hour +unsigned[1] hour : dump; + +# Minute +unsigned[1] minute : dump; + +# Second +unsigned[1] second : dump; + +# Number of vertical points +unsigned[2] numberOfVerticalPoints : dump; + +# Physical meaning of vertical coordinate +codetable[1] physicalMeaningOfVerticalCoordinate ('3.15.table',masterDir,localDir) : dump; + +# Vertical dimension coordinate values definition +codetable[1] verticalCoordinate ('3.21.table',masterDir,localDir) : dump; + +# NC - Number of coefficients or values used to specify vertical coordinates +unsigned[2] NC : dump; + +# Octets 43-(42+NC*4) : Coefficients to define vertical dimension coordinate values in functional form, or the explicit coordinate values +# (IEEE 32-bit floating-point values) +# ???? coefficients_to_define_vertical_dimension; diff --git a/eccodes/definitions/grib2/template.3.13.def b/eccodes/definitions/grib2/template.3.13.def new file mode 100644 index 00000000..1fe8f8c4 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.13.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.13 Mercator with modelling subdomains definition +include "grib2/template.3.10.def" +include "grib2/template.3.lam.def" diff --git a/eccodes/definitions/grib2/template.3.130.def b/eccodes/definitions/grib2/template.3.130.def new file mode 100644 index 00000000..3e1d831c --- /dev/null +++ b/eccodes/definitions/grib2/template.3.130.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.130, Irregular Latitude/longitude grid + +include "grib2/template.3.shape_of_the_earth.def"; + +points list(numberOfDataPoints) { + signed[4] latitude; + signed[4] longitude; +} diff --git a/eccodes/definitions/grib2/template.3.140.def b/eccodes/definitions/grib2/template.3.140.def new file mode 100644 index 00000000..094e624b --- /dev/null +++ b/eccodes/definitions/grib2/template.3.140.def @@ -0,0 +1,70 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.140, Lambert azimuthal equal area projection +include "grib2/template.3.shape_of_the_earth.def"; + +# Nx - number of points along X-axis +unsigned[4] numberOfPointsAlongXAxis : dump ; +alias Nx = numberOfPointsAlongXAxis; +alias Ni = Nx; + +# Ny - number of points along Y-axis +unsigned[4] numberOfPointsAlongYAxis : dump ; +alias Ny = numberOfPointsAlongYAxis; +alias Nj = Ny; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint: edition_specific ; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint + ,one,grib2divider,truncateDegrees) : dump; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor): no_copy; + +# Lo1 - longitude of first grid point +signed[4] longitudeOfFirstGridPoint: edition_specific ; +alias La1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint + ,one,grib2divider,truncateDegrees) : dump; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; + +signed[4] standardParallelInMicrodegrees : dump; +alias standardParallel=standardParallelInMicrodegrees; +meta geography.standardParallelInDegrees scale(standardParallelInMicrodegrees,one,grib2divider,truncateDegrees) : dump; + +signed[4] centralLongitudeInMicrodegrees : dump; +alias centralLongitude=centralLongitudeInMicrodegrees; +meta geography.centralLongitudeInDegrees scale(centralLongitudeInMicrodegrees,one,grib2divider,truncateDegrees) : dump; + +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; + +# Dx - X-direction grid length in millimetres +unsigned[4] xDirectionGridLengthInMillimetres : dump ; +alias Dx = xDirectionGridLengthInMillimetres ; +meta geography.xDirectionGridLengthInMetres scale(xDirectionGridLengthInMillimetres,one,thousand,truncateDegrees): dump; +alias DxInMetres = xDirectionGridLengthInMetres; + +# Dy - Y-direction grid length in millimetres +unsigned[4] yDirectionGridLengthInMillimetres : dump ; +alias Dy = yDirectionGridLengthInMillimetres ; +meta geography.yDirectionGridLengthInMetres scale(yDirectionGridLengthInMillimetres,one,thousand,truncateDegrees): dump; +alias DyInMetres = yDirectionGridLengthInMetres; + +include "grib2/template.3.scanning_mode.def"; + +iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, + radius,Nx,Ny, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + standardParallel,centralLongitude, + Dx,Dy, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest lambert_azimuthal_equal_area(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.2.def b/eccodes/definitions/grib2/template.3.2.def new file mode 100644 index 00000000..5ef4ef74 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.2.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.2, Stretched Latitude/longitude (or equidistant cylindrical, or Plate Carree) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; +include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions/grib2/template.3.20.def b/eccodes/definitions/grib2/template.3.20.def new file mode 100644 index 00000000..fb16d1bf --- /dev/null +++ b/eccodes/definitions/grib2/template.3.20.def @@ -0,0 +1,83 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.20, Polar stereographic projection +include "grib2/template.3.shape_of_the_earth.def"; +transient oneThousand=1000; + +# Nx - number of points along X-axis +unsigned[4] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +# Ny - number of points along Y-axis +unsigned[4] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific ; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; + +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : edition_specific; +alias latitudeWhereDxAndDyAreSpecified=LaD; +meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; +alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; + +# LoV - orientation of the grid +# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) +# along which latitude increases as the y-coordinate increases +signed[4] orientationOfTheGrid : edition_specific; +alias LoV = orientationOfTheGrid ; +meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; + +# Dx - X-direction grid length +# Grid length is in units of 10-3 m at the latitude specified by LaD +unsigned[4] Dx : edition_specific; +meta geography.DxInMetres scale(Dx,one,thousand,truncateDegrees) : dump; +alias xDirectionGridLength=Dx; + +# Dy - Y-direction grid length +# Grid length is in units of 10-3 m at the latitude specified by LaD +unsigned[4] Dy : edition_specific; +meta geography.DyInMetres scale(Dy,one,thousand,truncateDegrees) : dump; +alias yDirectionGridLength=Dy; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +# If bit 1 is 0, then the North Pole is on the projection plane +# If bit 1 is 1, then the South Pole is on the projection plane +flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 + +include "grib2/template.3.scanning_mode.def"; + +iterator polar_stereographic(numberOfPoints,missingValue,values, + radius,Nx,Ny, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + southPoleOnProjectionPlane, + orientationOfTheGridInDegrees, + LaDInDegrees, + DxInMetres,DyInMetres, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest polar_stereographic(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.23.def b/eccodes/definitions/grib2/template.3.23.def new file mode 100644 index 00000000..9a1087a7 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.23.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.23 Polar stereographic with modelling subdomains definition +include "grib2/template.3.20.def" +include "grib2/template.3.lam.def" diff --git a/eccodes/definitions/grib2/template.3.3.def b/eccodes/definitions/grib2/template.3.3.def new file mode 100644 index 00000000..908695d1 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.3.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.3, Stretched and Rotated Latitude/longitude (or equidistant cylindrical, or Plate Carree) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; +include "grib2/template.3.rotation.def"; +include "grib2/template.3.stretching.def"; + diff --git a/eccodes/definitions/grib2/template.3.30.def b/eccodes/definitions/grib2/template.3.30.def new file mode 100644 index 00000000..10b0392c --- /dev/null +++ b/eccodes/definitions/grib2/template.3.30.def @@ -0,0 +1,96 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.30, Lambert conformal +include "grib2/template.3.shape_of_the_earth.def"; + +unsigned[4] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +unsigned[4] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees + scale(latitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; +alias La1InDegrees=latitudeOfFirstGridPointInDegrees; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPointInDegrees,oneConstant): no_copy; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +alias Lo1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees + scale(longitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; +alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,oneConstant) : no_copy; + +include "grib2/template.3.resolution_flags.def"; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : edition_specific ; +alias latitudeWhereDxAndDyAreSpecified=LaD; +meta geography.LaDInDegrees scale(LaD,one,grib2divider,truncateDegrees) : dump; + +# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases +unsigned[4] LoV : edition_specific; +meta geography.LoVInDegrees scale(LoV,one,grib2divider,truncateDegrees) : dump; + +# Dx - X-direction grid length (in units of millimetres) +unsigned[4] Dx : edition_specific ; +alias xDirectionGridLength=Dx; +alias Di = Dx; +meta geography.DxInMetres scale(Dx,one,thousand) : dump; + +# Dy - Y-direction grid length (in units of millimetres) +unsigned[4] Dy : edition_specific ; +alias yDirectionGridLength=Dy ; +alias Dj = Dy; +meta geography.DyInMetres scale(Dy,one,thousand) : dump; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; + +include "grib2/template.3.scanning_mode.def"; + +# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere +signed[4] Latin1 : edition_specific; +alias FirstLatitude=Latin1; +meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; + +# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere +signed[4] Latin2 : dump; +alias SecondLatitude=Latin2; +meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; + +# Latitude of the southern pole of projection +signed[4] latitudeOfSouthernPole : edition_specific; +alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole,one,grib2divider,truncateDegrees) : dump; + +# Longitude of the southern pole of projection +unsigned[4] longitudeOfSouthernPole : edition_specific; +alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; +meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole,oneConstant,grib2divider,truncateDegrees) : dump; + +iterator lambert_conformal(numberOfPoints,missingValue,values, + radius,Nx,Ny, + LoVInDegrees,LaDInDegrees, + Latin1InDegrees,Latin2InDegrees, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + DxInMetres,DyInMetres, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest lambert_conformal(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.31.def b/eccodes/definitions/grib2/template.3.31.def new file mode 100644 index 00000000..1b408693 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.31.def @@ -0,0 +1,62 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.31, Albers equal area +include "grib2/template.3.shape_of_the_earth.def"; + +# Nx - number of points along the X-axis +unsigned[4] Nx : dump; +alias numberOfPointsAlongTheXAxis=Nx; +alias geography.Nx=Nx; + +# Ny - number of points along the Y-axis +unsigned[4] Ny : dump; +alias numberOfPointsAlongTheYAxis=Ny; +alias geography.Ny=Ny; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific,dump; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific,dump; +alias Lo1 = longitudeOfFirstGridPoint; + +include "grib2/template.3.resolution_flags.def"; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : dump; +alias latitudeWhereDxAndDyAreSpecified=LaD ; + +# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases +unsigned[4] LoV : dump; + +# Dx - X-direction grid length +unsigned[4] xDirectionGridLength : dump; +alias Dx = xDirectionGridLength; + +# Dy - Y-direction grid length +unsigned[4] yDirectionGridLength : dump; +alias Dy = yDirectionGridLength; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; +include "grib2/template.3.scanning_mode.def"; + +# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere +signed[4] Latin1 :edition_specific; +meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; + +# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere +unsigned[4] Latin2 : edition_specific; +meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; + +# Latitude of the southern pole of projection +signed[4] latitudeOfTheSouthernPoleOfProjection : edition_specific ; +alias latitudeOfSouthernPole=latitudeOfTheSouthernPoleOfProjection; +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfTheSouthernPoleOfProjection ,one,grib2divider,truncateDegrees) : dump; + + +# Longitude of the southern pole of projection +unsigned[4] longitudeOfTheSouthernPoleOfProjection :edition_specific; +alias longitudeOfSouthernPole=longitudeOfTheSouthernPoleOfProjection; +meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfTheSouthernPoleOfProjection,oneConstant,grib2divider,truncateDegrees) : dump; diff --git a/eccodes/definitions/grib2/template.3.32769.def b/eccodes/definitions/grib2/template.3.32769.def new file mode 100644 index 00000000..9fca2730 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.32769.def @@ -0,0 +1,5 @@ +# TEMPLATE 3.32769, Rotated Latitude/longitude (Arakawa Non-E Staggered) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.33.def b/eccodes/definitions/grib2/template.3.33.def new file mode 100644 index 00000000..5c9dd93e --- /dev/null +++ b/eccodes/definitions/grib2/template.3.33.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.33, Lambert conformal with modelling subdomains definition +include "grib2/template.3.30.def" +include "grib2/template.3.lam.def" diff --git a/eccodes/definitions/grib2/template.3.4.def b/eccodes/definitions/grib2/template.3.4.def new file mode 100644 index 00000000..1a3cca40 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.4.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.4, Variable resolution latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon_vares.def"; diff --git a/eccodes/definitions/grib2/template.3.40.def b/eccodes/definitions/grib2/template.3.40.def new file mode 100644 index 00000000..4cc651ed --- /dev/null +++ b/eccodes/definitions/grib2/template.3.40.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.40, Gaussian latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.gaussian.def"; diff --git a/eccodes/definitions/grib2/template.3.41.def b/eccodes/definitions/grib2/template.3.41.def new file mode 100644 index 00000000..03534c22 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.41.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.41, Rotated Gaussian latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.gaussian.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.42.def b/eccodes/definitions/grib2/template.3.42.def new file mode 100644 index 00000000..192fd676 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.42.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.42, Stretched Gaussian latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.gaussian.def"; +include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions/grib2/template.3.43.def b/eccodes/definitions/grib2/template.3.43.def new file mode 100644 index 00000000..b1301137 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.43.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.43, Stretched and rotated Gaussian latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.gaussian.def"; +include "grib2/template.3.rotation.def"; +include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions/grib2/template.3.5.def b/eccodes/definitions/grib2/template.3.5.def new file mode 100644 index 00000000..d364d792 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.5.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.5, Variable resolution rotated latitude/longitude + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon_vares.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.50.def b/eccodes/definitions/grib2/template.3.50.def new file mode 100644 index 00000000..6d869799 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.50.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.50, Spherical harmonic coefficients + +include "grib2/template.3.spherical_harmonics.def"; diff --git a/eccodes/definitions/grib2/template.3.51.def b/eccodes/definitions/grib2/template.3.51.def new file mode 100644 index 00000000..cd385a04 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.51.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.51, Rotated spherical harmonic coefficients + +include "grib2/template.3.spherical_harmonics.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.52.def b/eccodes/definitions/grib2/template.3.52.def new file mode 100644 index 00000000..5b471bd0 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.52.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.52, Stretched spherical harmonic coefficients + +include "grib2/template.3.spherical_harmonics.def"; +include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions/grib2/template.3.53.def b/eccodes/definitions/grib2/template.3.53.def new file mode 100644 index 00000000..7ad16945 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.53.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.53, Stretched and rotated spherical harmonic coefficients + +include "grib2/template.3.spherical_harmonics.def"; +include "grib2/template.3.rotation.def"; +include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions/grib2/template.3.61.def b/eccodes/definitions/grib2/template.3.61.def new file mode 100644 index 00000000..0a9044ec --- /dev/null +++ b/eccodes/definitions/grib2/template.3.61.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.61, Bi-Fourier coefficients on Mercator projection +# Spectral Mercator with modelling subdomains definition + +transient biFourierMakeTemplate = 0; + +include "grib2/template.3.bf.def" + +include "grib2/template.3.shape_of_the_earth.def"; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint: edition_specific,no_copy ; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# Lo1 - longitude of first grid point +signed[4] longitudeOfFirstGridPoint : edition_specific,no_copy; +alias Lo1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# LaD - Latitude(s) at which the Mercator projection intersects the Earth +# (Latitude(s) where Di and Dj are specified) +signed[4] LaD : edition_specific,no_copy; +meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific,no_copy; +alias La2 = latitudeOfLastGridPoint; +meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# Lo2 - longitude of last grid point +signed[4] longitudeOfLastGridPoint: edition_specific,no_copy ; +alias Lo2 = longitudeOfLastGridPoint; +meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; + +# Orientation of the grid, angle between i direction on the map and the equator +# NOTE 1: Limited to the range of 0 to 90 degrees; if the angle of orientation of the grid is neither 0 nor 90 degrees, +# Di and Dj must be equal to each other +unsigned[4] orientationOfTheGrid : dump ; +meta geography.orientationOfTheGridInDegrees + scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; + diff --git a/eccodes/definitions/grib2/template.3.62.def b/eccodes/definitions/grib2/template.3.62.def new file mode 100644 index 00000000..83e2690b --- /dev/null +++ b/eccodes/definitions/grib2/template.3.62.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.62, Bi-Fourier coefficients on polar stereographic projection +# Spectral polar stereographic with modelling subdomains definition + +transient biFourierMakeTemplate = 0; + +include "grib2/template.3.bf.def" + +include "grib2/template.3.shape_of_the_earth.def"; + +transient oneThousand=1000; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific ; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; + +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : edition_specific; +alias latitudeWhereDxAndDyAreSpecified=LaD; +meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; +alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; + +# LoV - orientation of the grid +# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) +# along which latitude increases as the y-coordinate increases +signed[4] orientationOfTheGrid : edition_specific; +alias LoV = orientationOfTheGrid ; +meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +# If bit 1 is 0, then the North Pole is on the projection plane +# If bit 1 is 1, then the South Pole is on the projection plane +flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 diff --git a/eccodes/definitions/grib2/template.3.63.def b/eccodes/definitions/grib2/template.3.63.def new file mode 100644 index 00000000..a9c90ce7 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.63.def @@ -0,0 +1,57 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.63, BiFourier coefficients on lambert projection + +transient biFourierMakeTemplate = 0; + +include "grib2/template.3.bf.def" + +include "grib2/template.3.shape_of_the_earth.def"; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees + scale(latitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; +alias La1InDegrees=latitudeOfFirstGridPointInDegrees; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPointInDegrees,oneConstant): no_copy; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +alias Lo1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees + scale(longitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; +alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,oneConstant) : no_copy; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : edition_specific ; +alias latitudeWhereDxAndDyAreSpecified=LaD; +meta geography.LaDInDegrees scale(LaD,one,grib2divider,truncateDegrees) : dump; + +# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases +unsigned[4] LoV : edition_specific; +meta geography.LoVInDegrees scale(LoV,one,grib2divider,truncateDegrees) : dump; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; + +# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere +signed[4] Latin1 : edition_specific; +alias FirstLatitude=Latin1; +meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; + +# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere +signed[4] Latin2 : dump; +alias SecondLatitude=Latin2; +meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; + +# Latitude of the southern pole of projection +signed[4] latitudeOfSouthernPole : edition_specific; +alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole ,one,grib2divider,truncateDegrees) : dump; + +# Longitude of the southern pole of projection +unsigned[4] longitudeOfSouthernPole : edition_specific; +alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; +meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole,oneConstant,grib2divider,truncateDegrees) : dump; diff --git a/eccodes/definitions/grib2/template.3.90.def b/eccodes/definitions/grib2/template.3.90.def new file mode 100644 index 00000000..7d51b21d --- /dev/null +++ b/eccodes/definitions/grib2/template.3.90.def @@ -0,0 +1,90 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.90, Space view perspective or orthographic +include "grib2/template.3.shape_of_the_earth.def"; + +unsigned[4] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +unsigned[4] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +# Lap - latitude of sub-satellite point +signed[4] latitudeOfSubSatellitePoint ; + +# Lop - longitude of sub-satellite point +signed[4] longitudeOfSubSatellitePoint ; + +meta geography.latitudeOfSubSatellitePointInDegrees scale(latitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; +meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; + +include "grib2/template.3.resolution_flags.def"; + +# dx - apparent diameter of Earth in grid lengths, in X-direction +unsigned[4] dx : dump; +alias geography.dx=dx; + +# dy - apparent diameter of Earth in grid lengths, in Y-direction +unsigned[4] dy : dump; +alias geography.dy=dy; + +# Xp - X-coordinate of sub-satellite point +# (in units of 10^-3 grid length expressed as an integer) +unsigned[4] Xp : no_copy; +meta geography.XpInGridLengths scale(Xp,one,thousand) : dump; +alias xCoordinateOfSubSatellitePoint=XpInGridLengths; + +# Yp - Y-coordinate of sub-satellite point +# (in units of 10^-3 grid length expressed as an integer) +unsigned[4] Yp : no_copy; +meta geography.YpInGridLengths scale(Yp,one,thousand) : dump; +alias yCoordinateOfSubSatellitePoint=YpInGridLengths; + +include "grib2/template.3.scanning_mode.def"; + +# Orientation of the grid; i.e. the angle between the increasing Y-axis and the meridian +# of the sub-satellite point in the direction of increasing latitude +signed[4] orientationOfTheGrid : edition_specific; +meta geography.orientationOfTheGridInDegrees + scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; + +# Nr - altitude of the camera from the Earth's centre, measured in units of the Earth's +# (equatorial) radius multiplied by a scale factor of 10^6 +unsigned[4] Nr : edition_specific,can_be_missing,no_copy; +alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = Nr; +meta geography.NrInRadiusOfEarth scale(Nr,oneConstant,oneMillionConstant,truncateDegrees) : dump; + +# Xo - X-coordinate of origin of sector image +unsigned[4] Xo : dump; +alias xCoordinateOfOriginOfSectorImage=Xo; +alias geography.Xo=Xo; + +# Yo - Y-coordinate of origin of sector image +unsigned[4] Yo : dump; +alias yCoordinateOfOriginOfSectorImage=Yo; +alias geography.Yo=Yo; + +iterator space_view(numberOfPoints, missingValue, values, radius, + earthIsOblate, + earthMajorAxis, earthMinorAxis, + Nx, Ny, + latitudeOfSubSatellitePointInDegrees, + longitudeOfSubSatellitePointInDegrees, + dx, dy, XpInGridLengths, YpInGridLengths, + orientationOfTheGridInDegrees, + NrInRadiusOfEarth, Xo, Yo, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest space_view(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.bf.def b/eccodes/definitions/grib2/template.3.bf.def new file mode 100644 index 00000000..a2c12db0 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.bf.def @@ -0,0 +1,31 @@ +label "BiFourier coefficients"; +constant biFourierCoefficients=1; + +codetable[1] spectralType ('3.6.table',masterDir,localDir) = 2 : no_copy; +alias spectralDataRepresentationType=spectralType; + +unsigned[4] biFourierResolutionParameterN : dump; + +unsigned[4] biFourierResolutionParameterM : dump; + +codetable[1] biFourierTruncationType ('3.25.table',masterDir,localDir) : dump; + +# Lx - Full domain length in X-direction. Size in metres of the domain along x-axis +unsigned[8] Lx; +alias geography.LxInMetres = Lx; +# Lux - Useful domain length in X-direction. Size in metres of model forecast subdomain along x-axis +unsigned[8] Lux; +alias geography.LuxInMetres=Lux; +# Lcx - Coupling domain width in X-direction. Width in metres of coupling area within forecast domain along x-axis +unsigned[8] Lcx; +alias geography.LcxInMetres=Lcx; + +# Ly - Full domain length in Y-direction +unsigned[8] Ly; +alias geography.LyInMetres=Ly; +# Luy - Useful domain length in Y-direction +unsigned[8] Luy; +alias geography.LuyInMetres=Luy; +# Lcy - Coupling domain width in Y-direction +unsigned[8] Lcy; +alias geography.LcyInMetres=Lcy; diff --git a/eccodes/definitions/grib2/template.3.gaussian.def b/eccodes/definitions/grib2/template.3.gaussian.def new file mode 100755 index 00000000..b4139965 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.gaussian.def @@ -0,0 +1,91 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.3.grid.def"; + +# Di - i direction increment +unsigned[4] iDirectionIncrement : can_be_missing; +alias Di = iDirectionIncrement; + +# N - number of parallels between a pole and the equator +unsigned[4] N : dump; +alias numberOfParallelsBetweenAPoleAndTheEquator=N ; +alias geography.N=N; + +include "grib2/template.3.scanning_mode.def"; + +modify Ni : can_be_missing,dump; + +meta g2grid g2grid( + latitudeOfFirstGridPoint, + longitudeOfFirstGridPoint, + latitudeOfLastGridPoint, + longitudeOfLastGridPoint, + iDirectionIncrement, + null, + basicAngleOfTheInitialProductionDomain, + subdivisionsOfBasicAngle + ); + +meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; +meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; +meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; +meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; +meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4,iDirectionIncrementGiven) : can_be_missing,dump; + +meta global global_gaussian(N,Ni,iDirectionIncrement, + latitudeOfFirstGridPoint, + longitudeOfFirstGridPoint, + latitudeOfLastGridPoint, + longitudeOfLastGridPoint, + PLPresent, pl, + basicAngleOfTheInitialProductionDomain, + subdivisionsOfBasicAngle) = 0 : dump; + +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; + +if(missing(Ni) && PLPresent == 1){ + iterator gaussian_reduced(numberOfPoints,missingValue,values, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, + N,pl,Nj); + nearest reduced(values,radius,Nj,pl); + + #meta sumPlArray sum(pl); + #meta dataGlobal evaluate( sumPlArray == (numberOfValues+numberOfMissing) ); +} else { + iterator gaussian(numberOfPoints,missingValue,values, + longitudeFirstInDegrees,DiInDegrees , + Ni,Nj,iScansNegatively, + latitudeFirstInDegrees, latitudeLastInDegrees, + N,jScansPositively); + nearest regular(values,radius,Ni,Nj); +} +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); + +meta isOctahedral octahedral_gaussian(N, Ni, PLPresent, pl) = 0 : no_copy,dump; + +meta gaussianGridName gaussian_grid_name(N, Ni, isOctahedral); +alias gridName=gaussianGridName; + + +# For sub-areas +# Uses new algorithm for counting. No support for legacy mode +meta numberOfDataPointsExpected number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,zero) : dump; + +meta legacyGaussSubarea evaluate(numberOfDataPoints != numberOfDataPointsExpected); diff --git a/eccodes/definitions/grib2/template.3.grid.def b/eccodes/definitions/grib2/template.3.grid.def new file mode 100644 index 00000000..f0d586de --- /dev/null +++ b/eccodes/definitions/grib2/template.3.grid.def @@ -0,0 +1,58 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[4] Ni : can_be_missing,dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; + +unsigned[4] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj; + +alias geography.Ni=Ni; +alias geography.Nj=Nj; + +# Basic angle of the initial production domain +unsigned[4] basicAngleOfTheInitialProductionDomain = 0; +transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; +transient angleMultiplier = 1; +transient mAngleMultiplier = 1000000; +when (basicAngleOfTheInitialProductionDomain == 0) { + set angleMultiplier = 1; + set mAngleMultiplier = 1000000; +} else { + set angleMultiplier = basicAngleOfTheInitialProductionDomain; + set mAngleMultiplier = mBasicAngle; +} + +# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; + +transient angleDivisor = 1000000; +when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { + set angleDivisor = 1000000; +} else { + set angleDivisor = subdivisionsOfBasicAngle; +} + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific ; +alias La1 = latitudeOfFirstGridPoint; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; + +# Lo1 - longitude of first grid point + +signed[4] longitudeOfFirstGridPoint ; +alias Lo1 = longitudeOfFirstGridPoint; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; + +include "grib2/template.3.resolution_flags.def" + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific; +alias La2 = latitudeOfLastGridPoint; +#meta latitudeOfLastGridPointInMicrodegrees times(latitudeOfLastGridPoint,mAngleMultiplier,angleDivisor) : no_copy; + +# Lo2 - longitude of last grid point +signed[4] longitudeOfLastGridPoint : edition_specific ; +alias Lo2 = longitudeOfLastGridPoint; +#meta longitudeOfLastGridPointInMicrodegrees times(longitudeOfLastGridPoint,mAngleMultiplier,angleDivisor) : no_copy; diff --git a/eccodes/definitions/grib2/template.3.lam.def b/eccodes/definitions/grib2/template.3.lam.def new file mode 100644 index 00000000..d00aed6a --- /dev/null +++ b/eccodes/definitions/grib2/template.3.lam.def @@ -0,0 +1,12 @@ +# modelling subdomains definition +unsigned[4] Nux : dump; +alias numberOfUsefulPointsAlongXAxis = Nux; + +unsigned[4] Ncx : dump; +alias numberOfPointsAlongXAxisInCouplingArea = Ncx; + +unsigned[4] Nuy : dump; +alias numberOfUsefulPointsAlongYAxis = Nuy; + +unsigned[4] Ncy : dump; +alias numberOfPointsAlongYAxisInCouplingArea = Ncy; diff --git a/eccodes/definitions/grib2/template.3.latlon.def b/eccodes/definitions/grib2/template.3.latlon.def new file mode 100755 index 00000000..cc3b8cc5 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.latlon.def @@ -0,0 +1,77 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.3.grid.def"; + +# Di - i direction increment + +unsigned[4] iDirectionIncrement : can_be_missing,edition_specific; +alias Di = iDirectionIncrement; +alias Dx = iDirectionIncrement; + +# Dj - j direction increment + +unsigned[4] jDirectionIncrement : can_be_missing,edition_specific; +alias Dj = jDirectionIncrement; +alias Dy = jDirectionIncrement; + +include "grib2/template.3.scanning_mode.def"; + +meta g2grid g2grid( + latitudeOfFirstGridPoint, + longitudeOfFirstGridPoint, + latitudeOfLastGridPoint, + longitudeOfLastGridPoint, + iDirectionIncrement, + jDirectionIncrement, + basicAngleOfTheInitialProductionDomain, + subdivisionsOfBasicAngle + ); + +meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; +meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; +meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; +meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; + +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; + +meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4, + iDirectionIncrementGiven) : can_be_missing,dump; + +meta geography.jDirectionIncrementInDegrees g2latlon(g2grid,5, + jDirectionIncrementGiven) : can_be_missing,dump; + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; +alias DxInDegrees = iDirectionIncrementInDegrees; +alias DjInDegrees = jDirectionIncrementInDegrees; +alias DyInDegrees = jDirectionIncrementInDegrees; + +_if ( missing(Ni) && PLPresent == 1 ) { + iterator latlon_reduced(numberOfPoints,missingValue,values, + latitudeFirstInDegrees,longitudeFirstInDegrees, + latitudeLastInDegrees,longitudeLastInDegrees, + Nj,DjInDegrees,pl); + nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); +} else { + transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 + iterator latlon(numberOfPoints,missingValue,values, + longitudeFirstInDegrees,DiInDegrees , + Ni,Nj,iScansNegatively, + latitudeFirstInDegrees, DjInDegrees, + jScansPositively, jPointsAreConsecutive, + isRotatedGrid, angleOfRotation, + latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); + nearest regular(values,radius,Ni,Nj); +} +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib2/template.3.latlon_vares.def b/eccodes/definitions/grib2/template.3.latlon_vares.def new file mode 100755 index 00000000..b3ef7656 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.latlon_vares.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[4] Ni : can_be_missing,dump; +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; + +unsigned[4] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj; + +alias geography.Ni=Ni; +alias geography.Nj=Nj; + +# Basic angle of the initial production domain +unsigned[4] basicAngleOfTheInitialProductionDomain = 0; +transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; +transient angleMultiplier = 1; +transient mAngleMultiplier = 1000000; +when (basicAngleOfTheInitialProductionDomain == 0) { + set angleMultiplier = 1; + set mAngleMultiplier = 1000000; +} else { + set angleMultiplier = basicAngleOfTheInitialProductionDomain; + set mAngleMultiplier = mBasicAngle; +} + +# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; + +transient angleDivisor = 1000000; +when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { + set angleDivisor = 1000000; +} else { + set angleDivisor = subdivisionsOfBasicAngle; +} + +include "grib2/template.3.resolution_flags.def" + +include "grib2/template.3.scanning_mode.def"; + +longitudesList list(Ni) { + unsigned[4] longitudes; +} + +latitudesList list(Nj) { + signed[4] latitudes; +} diff --git a/eccodes/definitions/grib2/template.3.resolution_flags.def b/eccodes/definitions/grib2/template.3.resolution_flags.def new file mode 100644 index 00000000..01c65f76 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.resolution_flags.def @@ -0,0 +1,38 @@ +# (C) Copyright 2005- ECMWF. + +# Resolution and component flags +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; + +# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 +# (most significant to least significant) + +flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; +flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); +flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); +flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); +flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; +flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; + +concept ijDirectionIncrementGiven { + '1' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 0; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 0; + } +} + +alias DiGiven=iDirectionIncrementGiven; +alias DjGiven=jDirectionIncrementGiven; diff --git a/eccodes/definitions/grib2/template.3.rotation.def b/eccodes/definitions/grib2/template.3.rotation.def new file mode 100755 index 00000000..f797170a --- /dev/null +++ b/eccodes/definitions/grib2/template.3.rotation.def @@ -0,0 +1,21 @@ +# (C) Copyright 2005- ECMWF. + +# Latitude of the southern pole of projection +signed[4] latitudeOfSouthernPole : no_copy; +alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; + +# Longitude of the southern pole of projection +unsigned[4] longitudeOfSouthernPole : no_copy; +alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; + +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole + ,one,grib2divider,truncateDegrees) : dump; +meta geography.longitudeOfSouthernPoleInDegrees g2lon(longitudeOfSouthernPole) : dump; + +# Angle of rotation of projection +ieeefloat angleOfRotation : dump,edition_specific ; +alias geography.angleOfRotationInDegrees=angleOfRotation; + +alias angleOfRotationOfProjection=angleOfRotation; + +alias isRotatedGrid=one; diff --git a/eccodes/definitions/grib2/template.3.scanning_mode.def b/eccodes/definitions/grib2/template.3.scanning_mode.def new file mode 100644 index 00000000..d74d83c7 --- /dev/null +++ b/eccodes/definitions/grib2/template.3.scanning_mode.def @@ -0,0 +1,38 @@ +# (C) Copyright 2005- ECMWF. + +flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; + +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +flagbit iScansNegatively(scanningMode,7) : dump; # WMO bit 1 +flagbit jScansPositively(scanningMode,6) : dump; # WMO bit 2 +flagbit jPointsAreConsecutive(scanningMode,5) : dump; +flagbit alternativeRowScanning(scanningMode,4) = 0 : edition_specific,dump; + +if (jPointsAreConsecutive) { + alias numberOfRows=Ni; + alias numberOfColumns=Nj; +} else { + alias numberOfRows=Nj; + alias numberOfColumns=Ni; +} + +alias geography.iScansNegatively=iScansNegatively; +alias geography.jScansPositively=jScansPositively; +alias geography.jPointsAreConsecutive=jPointsAreConsecutive; + +transient iScansPositively = !iScansNegatively : constraint; + +flagbit scanningMode5(scanningMode,3) = 0: read_only; +flagbit scanningMode6(scanningMode,2) = 0: read_only; +flagbit scanningMode7(scanningMode,1) = 0: read_only; +flagbit scanningMode8(scanningMode,0) = 0: read_only; + +meta swapScanningX change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + xFirst,xLast,x) : edition_specific,hidden,no_copy; +alias swapScanningLon = swapScanningX; + +meta swapScanningY change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + yFirst,yLast,y) : edition_specific,hidden,no_copy; +alias swapScanningLat = swapScanningY; diff --git a/eccodes/definitions/grib2/template.3.shape_of_the_earth.def b/eccodes/definitions/grib2/template.3.shape_of_the_earth.def new file mode 100755 index 00000000..2ff2dcdf --- /dev/null +++ b/eccodes/definitions/grib2/template.3.shape_of_the_earth.def @@ -0,0 +1,106 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] shapeOfTheEarth ('3.2.table',masterDir,localDir) : dump; + +# Scale factor of radius of spherical earth +unsigned[1] scaleFactorOfRadiusOfSphericalEarth = missing() : can_be_missing, edition_specific; + +# Scaled value of radius of spherical earth (in metres) +unsigned[4] scaledValueOfRadiusOfSphericalEarth = missing(): can_be_missing, edition_specific; + +# Scale factor of major axis of oblate spheroid earth +unsigned[1] scaleFactorOfEarthMajorAxis = missing(): can_be_missing, edition_specific; +alias scaleFactorOfMajorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMajorAxis; + +# Scaled value of major axis of oblate spheroid earth +unsigned[4] scaledValueOfEarthMajorAxis = missing(): can_be_missing, edition_specific; +alias scaledValueOfMajorAxisOfOblateSpheroidEarth=scaledValueOfEarthMajorAxis; + +# Scale factor of minor axis of oblate spheroid earth +unsigned[1] scaleFactorOfEarthMinorAxis = missing(): can_be_missing, edition_specific; +alias scaleFactorOfMinorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMinorAxis ; + +# Scaled value of minor axis of oblate spheroid earth +unsigned[4] scaledValueOfEarthMinorAxis = missing(): can_be_missing, edition_specific; +alias scaledValueOfMinorAxisOfOblateSpheroidEarth=scaledValueOfEarthMinorAxis; + +alias earthIsOblate=one; + +_if (shapeOfTheEarth == 0) { + transient radius=6367470; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} +_if (shapeOfTheEarth == 1){ + meta radius from_scale_factor_scaled_value( + scaleFactorOfRadiusOfSphericalEarth, + scaledValueOfRadiusOfSphericalEarth); + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} +_if (shapeOfTheEarth == 6){ + transient radius=6371229; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} + +_if (shapeOfTheEarth == 8){ + transient radius=6371200; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} + + +# Oblate spheroid cases +_if (shapeOfTheEarth == 2){ + # IAU in 1965 + transient earthMajorAxis = 6378160.0; + transient earthMinorAxis = 6356775.0; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 3){ + # Major and minor axes specified (in km) by data producer + meta earthMajorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); + meta earthMinorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); + + # ECC-979 + # The 'scale' accessor works with integers so rounds its first argument + # which is not what we want because the inputs are doubles with decimal + # expansions. So use the trick of dividing by 0.001 to multiply by 1000 + # + # meta earthMajorAxisInMetres scale(earthMajorAxis, thousand, one, zero); + # meta earthMinorAxisInMetres scale(earthMinorAxis, thousand, one, zero); + meta earthMajorAxisInMetres divdouble(earthMajorAxis, 0.001); + meta earthMinorAxisInMetres divdouble(earthMinorAxis, 0.001); +} +_if (shapeOfTheEarth == 7){ + # Major and minor axes specified (in m) by data producer + meta earthMajorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); + meta earthMinorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 4 || shapeOfTheEarth == 5){ + # 4 -> IAG-GRS80 model + # 5 -> WGS84 + transient earthMajorAxis = 6378137.0; + transient earthMinorAxis = 6356752.314; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 9){ + # Airy 1830 + transient earthMajorAxis = 6377563.396; + transient earthMinorAxis = 6356256.909; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} diff --git a/eccodes/definitions/grib2/template.3.spherical_harmonics.def b/eccodes/definitions/grib2/template.3.spherical_harmonics.def new file mode 100755 index 00000000..79be41bb --- /dev/null +++ b/eccodes/definitions/grib2/template.3.spherical_harmonics.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- ECMWF. + +constant sphericalHarmonics=1; + +# constant dataRepresentationType = 50; + +# J - pentagonal resolution parameter +unsigned[4] J : dump; +alias pentagonalResolutionParameterJ=J ; +alias geography.J=J; + +# K - pentagonal resolution parameter +unsigned[4] K : dump; +alias pentagonalResolutionParameterK=K; +alias geography.K=K; + +# M - pentagonal resolution parameter +unsigned[4] M : dump; +alias pentagonalResolutionParameterM = M ; +alias geography.M=M; + +# Representation type indicating the method used to define the norm +codetable[1] spectralType ('3.6.table',masterDir,localDir) = 1 : no_copy; +alias spectralDataRepresentationType=spectralType; + +# Representation mode indicating the order of the coefficients +codetable[1] spectralMode ('3.7.table',masterDir,localDir) = 1 : no_copy; +alias spectralDataRepresentationMode=spectralMode; diff --git a/eccodes/definitions/grib2/template.3.stretching.def b/eccodes/definitions/grib2/template.3.stretching.def new file mode 100755 index 00000000..11c0b12c --- /dev/null +++ b/eccodes/definitions/grib2/template.3.stretching.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Latitude of the pole of stretching +signed[4] latitudeOfThePoleOfStretching : edition_specific,no_copy; + +# Longitude of the pole of stretching +signed[4] longitudeOfThePoleOfStretching : edition_specific,no_copy; + +meta geography.latitudeOfStretchingPoleInDegrees + scale(latitudeOfThePoleOfStretching,oneConstant,grib2divider,truncateDegrees) : dump; +meta geography.longitudeOfStretchingPoleInDegrees + scale(longitudeOfThePoleOfStretching,oneConstant,grib2divider,truncateDegrees) : dump; + +# Stretching factor +unsigned[4] stretchingFactorScaled : edition_specific,no_copy; + +meta geography.stretchingFactor + scale(stretchingFactorScaled,oneConstant,grib2divider) : dump; + diff --git a/eccodes/definitions/grib2/template.4.0.def b/eccodes/definitions/grib2/template.4.0.def new file mode 100644 index 00000000..a1a94830 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.0.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.0, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions/grib2/template.4.1.def b/eccodes/definitions/grib2/template.4.1.def new file mode 100644 index 00000000..24372d2f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.10.def b/eccodes/definitions/grib2/template.4.10.def new file mode 100644 index 00000000..1840943e --- /dev/null +++ b/eccodes/definitions/grib2/template.4.10.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.10, Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.percentile.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.1000.def b/eccodes/definitions/grib2/template.4.1000.def new file mode 100644 index 00000000..a2b57262 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1000.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1000, Cross section of analysis and forecast at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; diff --git a/eccodes/definitions/grib2/template.4.1001.def b/eccodes/definitions/grib2/template.4.1001.def new file mode 100644 index 00000000..c0b81a6d --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1001.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1001, Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.1002.def b/eccodes/definitions/grib2/template.4.1002.def new file mode 100644 index 00000000..63d0c0e1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1002.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1002, Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude + +include "grib2/template.4.parameter.def" + +# Horizontal dimension processed +codetable[1] horizontalDimensionProcessed ('4.220.table',masterDir,localDir) : dump; + +# Treatment of missing data (e.g. below ground) +codetable[1] treatmentOfMissingData ('4.221.table',masterDir,localDir) : dump; + +# Type of statistical processing +codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : dump; +#alias typeOfStatisticalProcessing=stepType; + +# Start of range +unsigned[4] startOfRange : dump; + +# End of range +unsigned[4] endOfRange : dump; + +# Number of values +unsigned[2] numberOfDataValues : read_only,dump; diff --git a/eccodes/definitions/grib2/template.4.11.def b/eccodes/definitions/grib2/template.4.11.def new file mode 100644 index 00000000..1506df9f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.11.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.11, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.1100.def b/eccodes/definitions/grib2/template.4.1100.def new file mode 100644 index 00000000..c65c42cd --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1100.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions/grib2/template.4.1101.def b/eccodes/definitions/grib2/template.4.1101.def new file mode 100644 index 00000000..e5739f88 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.1101.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.12.def b/eccodes/definitions/grib2/template.4.12.def new file mode 100644 index 00000000..70aa465a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.12.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.12, Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.13.def b/eccodes/definitions/grib2/template.4.13.def new file mode 100644 index 00000000..4de62804 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.13.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.13, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" +include "grib2/template.4.rectangular_cluster.def" +include "grib2/template.4.statistical.def" + +ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { + unsigned[1] ensembleForecastNumbers : dump; +} + diff --git a/eccodes/definitions/grib2/template.4.14.def b/eccodes/definitions/grib2/template.4.14.def new file mode 100644 index 00000000..8ba50edd --- /dev/null +++ b/eccodes/definitions/grib2/template.4.14.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.14, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" +include "grib2/template.4.circular_cluster.def" +include "grib2/template.4.statistical.def" + +ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { + unsigned[1] ensembleForecastNumbers : dump; +} diff --git a/eccodes/definitions/grib2/template.4.15.def b/eccodes/definitions/grib2/template.4.15.def new file mode 100644 index 00000000..d58a2485 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.15.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.15, Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; +codetable[1] statisticalProcess 'grib2/tables/[tablesVersion]/4.10.table'; +codetable[1] spatialProcessing 'grib2/tables/[tablesVersion]/4.15.table'; +unsigned[1] numberOfPointsUsed; + diff --git a/eccodes/definitions/grib2/template.4.2.def b/eccodes/definitions/grib2/template.4.2.def new file mode 100644 index 00000000..27b00c32 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.2.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.2, Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; +include "grib2/template.4.derived.def"; diff --git a/eccodes/definitions/grib2/template.4.20.def b/eccodes/definitions/grib2/template.4.20.def new file mode 100644 index 00000000..86cc2e8e --- /dev/null +++ b/eccodes/definitions/grib2/template.4.20.def @@ -0,0 +1,64 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.20, Radar product +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Number of radar sites used +unsigned[1] numberOfRadarSitesUsed : dump; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Site latitude (in 10-6 degree) +unsigned[4] siteLatitude : dump; + +# Site longitude (in 10-6 degree) +unsigned[4] siteLongitude : dump; + +# Site elevation (meters) +unsigned[2] siteElevation : dump; + +# Site ID (alphanumeric) +unsigned[4] siteId : dump; + +# Site ID (numeric) +unsigned[2] siteId : dump; + +# Operating mode +codetable[1] operatingMode ('4.12.table',masterDir,localDir) : dump; + +# Reflectivity calibration constant (tenths of dB) +unsigned[1] reflectivityCalibrationConstant : dump; + +# Quality control indicator +codetable[1] qualityControlIndicator ('4.13.table',masterDir,localDir) : dump; + +# Clutter filter indicator +codetable[1] clutterFilterIndicator ('4.14.table',masterDir,localDir) : dump; + +# Constant antenna elevation angle (tenths of degree true) +unsigned[1] constantAntennaElevationAngle : dump; + +# Accumulation interval (minutes) +unsigned[2] accumulationInterval : dump; + +# Reference reflectivity for echo top (dB) +unsigned[1] referenceReflectivityForEchoTop : dump; + +# Range bin spacing (meters) +unsigned[3] rangeBinSpacing : dump; + +# Radial angular spacing (tenths of degree true) +unsigned[2] radialAngularSpacing : dump; diff --git a/eccodes/definitions/grib2/template.4.2000.def b/eccodes/definitions/grib2/template.4.2000.def new file mode 100644 index 00000000..922c1d3c --- /dev/null +++ b/eccodes/definitions/grib2/template.4.2000.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +# test template +label "_test template"; diff --git a/eccodes/definitions/grib2/template.4.254.def b/eccodes/definitions/grib2/template.4.254.def new file mode 100644 index 00000000..94de021c --- /dev/null +++ b/eccodes/definitions/grib2/template.4.254.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.254, CCITT IA5 character string + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Number of characters +unsigned[4] numberOfCharacters : dump; diff --git a/eccodes/definitions/grib2/template.4.3.def b/eccodes/definitions/grib2/template.4.3.def new file mode 100644 index 00000000..cdc92884 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.3.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.3, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" +include "grib2/template.4.rectangular_cluster.def" + +ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { + unsigned[1] ensembleForecastNumbers : dump; +} diff --git a/eccodes/definitions/grib2/template.4.30.def b/eccodes/definitions/grib2/template.4.30.def new file mode 100644 index 00000000..948437ec --- /dev/null +++ b/eccodes/definitions/grib2/template.4.30.def @@ -0,0 +1,27 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +# TEMPLATE 4.30, Satellite Product + +# Note: This template is deprecated. Template 4.31 should be used instead. + +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; +codetable[1] typeOfGeneratingProcess 'grib2/tables/[tablesVersion]/4.3.table' : dump; +unsigned[1] observationGeneratingProcessIdentifier : dump; +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +if (new() || section4Length>14) { + listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries; + unsigned[2] satelliteNumber; + unsigned[1] instrumentType; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : can_be_missing ; + } +} diff --git a/eccodes/definitions/grib2/template.4.31.def b/eccodes/definitions/grib2/template.4.31.def new file mode 100644 index 00000000..006d6ed4 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.31.def @@ -0,0 +1,27 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +# TEMPLATE 4.31, Satellite Product +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Observation generating process identifier (defined by originating centre) +unsigned[1] observationGeneratingProcessIdentifier : dump; +alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; +} diff --git a/eccodes/definitions/grib2/template.4.311.def b/eccodes/definitions/grib2/template.4.311.def new file mode 100644 index 00000000..ab4a284f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.311.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +# TEMPLATE 4.311, Satellite Product Auxiliary Information +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Observation generating process identifier (defined by originating centre) +unsigned[1] observationGeneratingProcessIdentifier : dump; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +codetable[1] typeOfAuxiliaryInformation ('4.15.table',masterDir,localDir) : dump; + +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; +} diff --git a/eccodes/definitions/grib2/template.4.32.def b/eccodes/definitions/grib2/template.4.32.def new file mode 100644 index 00000000..f3d29828 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.32.def @@ -0,0 +1,25 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +# TEMPLATE 4.32, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; + +# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask +constant typeOfLevel="surface"; +constant levelType="surface"; +constant level=0; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; +} diff --git a/eccodes/definitions/grib2/template.4.33.def b/eccodes/definitions/grib2/template.4.33.def new file mode 100644 index 00000000..9abe54ba --- /dev/null +++ b/eccodes/definitions/grib2/template.4.33.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.33, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data + +include "grib2/template.4.32.def" +include "grib2/template.4.eps.def" + +alias instrument = instrumentType; +alias ident = satelliteNumber; + diff --git a/eccodes/definitions/grib2/template.4.34.def b/eccodes/definitions/grib2/template.4.34.def new file mode 100644 index 00000000..a523031e --- /dev/null +++ b/eccodes/definitions/grib2/template.4.34.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.34, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data + +include "grib2/template.4.32.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" + +alias instrument = instrumentType; +alias ident = satelliteNumber; + diff --git a/eccodes/definitions/grib2/template.4.35.def b/eccodes/definitions/grib2/template.4.35.def new file mode 100644 index 00000000..0f6fef80 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.35.def @@ -0,0 +1,30 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +# TEMPLATE 4.35, satellite product with or without associated quality values + +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Observation generating process identifier (defined by originating centre) +unsigned[1] observationGeneratingProcessIdentifier : dump; +alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; + +codetable[1] qualityValueAssociatedWithParameter('4.16.table',masterDir,localDir) : dump; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; +} diff --git a/eccodes/definitions/grib2/template.4.4.def b/eccodes/definitions/grib2/template.4.4.def new file mode 100644 index 00000000..4b84053a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.4.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.4, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" +include "grib2/template.4.circular_cluster.def" + +ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { + unsigned[1] ensembleForecastNumbers : dump; +} diff --git a/eccodes/definitions/grib2/template.4.40.def b/eccodes/definitions/grib2/template.4.40.def new file mode 100644 index 00000000..88d6f561 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.40.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.40, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents + +include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions/grib2/template.4.40033.def b/eccodes/definitions/grib2/template.4.40033.def new file mode 100644 index 00000000..c5a1421a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.40033.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# +# This is deprecated and only included for backward compatibility, use template 4.33 +# +include "grib2/template.4.33.def" diff --git a/eccodes/definitions/grib2/template.4.40034.def b/eccodes/definitions/grib2/template.4.40034.def new file mode 100644 index 00000000..3c0fed44 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.40034.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# +# This is deprecated and only included for backward compatibility, use template 4.34 +# +include "grib2/template.4.34.def" diff --git a/eccodes/definitions/grib2/template.4.41.def b/eccodes/definitions/grib2/template.4.41.def new file mode 100644 index 00000000..f3fccee3 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.41.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.41, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents + +include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.42.def b/eccodes/definitions/grib2/template.4.42.def new file mode 100644 index 00000000..fc2f42a8 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.42.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.42, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents + +include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.43.def b/eccodes/definitions/grib2/template.4.43.def new file mode 100644 index 00000000..a514a0dd --- /dev/null +++ b/eccodes/definitions/grib2/template.4.43.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.43, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents + +include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.44.def b/eccodes/definitions/grib2/template.4.44.def new file mode 100644 index 00000000..22dd46ab --- /dev/null +++ b/eccodes/definitions/grib2/template.4.44.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.44, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +# It is recommended not to use this template. PDT 4.48 should be used instead with optical wave length range set to missing + +# GRIB-530: Special case for aerosol thanks to WMO error +include "grib2/template.4.parameter_aerosol_44.def" + +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" + diff --git a/eccodes/definitions/grib2/template.4.45.def b/eccodes/definitions/grib2/template.4.45.def new file mode 100644 index 00000000..1820766c --- /dev/null +++ b/eccodes/definitions/grib2/template.4.45.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.45, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol + +include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.46.def b/eccodes/definitions/grib2/template.4.46.def new file mode 100644 index 00000000..84425887 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.46.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.46, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol + +include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.47.def b/eccodes/definitions/grib2/template.4.47.def new file mode 100644 index 00000000..05a081a2 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.47.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.47, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# Note: This template is deprecated. Template 4.85 should be used instead. + +include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.48.def b/eccodes/definitions/grib2/template.4.48.def new file mode 100644 index 00000000..6768145b --- /dev/null +++ b/eccodes/definitions/grib2/template.4.48.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.48, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol + +include "grib2/template.4.parameter_aerosol_optical.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions/grib2/template.4.49.def b/eccodes/definitions/grib2/template.4.49.def new file mode 100644 index 00000000..7c4ea91a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.49.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.49, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol + +include "grib2/template.4.parameter_aerosol_optical.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.5.def b/eccodes/definitions/grib2/template.4.5.def new file mode 100644 index 00000000..a0cba2d1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.5.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.5, Probability forecasts at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.probability.def" diff --git a/eccodes/definitions/grib2/template.4.51.def b/eccodes/definitions/grib2/template.4.51.def new file mode 100644 index 00000000..d495993d --- /dev/null +++ b/eccodes/definitions/grib2/template.4.51.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.51, Categorical forecasts at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.categorical.def" diff --git a/eccodes/definitions/grib2/template.4.53.def b/eccodes/definitions/grib2/template.4.53.def new file mode 100644 index 00000000..eb1b3228 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.53.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.53, Partitioned parameters at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter_partition.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; +constant cat="cat"; +alias mars.levtype=cat; +alias mars.levelist=partitionNumber; diff --git a/eccodes/definitions/grib2/template.4.54.def b/eccodes/definitions/grib2/template.4.54.def new file mode 100644 index 00000000..b0acf794 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.54.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.54, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters + +include "grib2/template.4.53.def" +include "grib2/template.4.eps.def" + +constant cat="cat"; +alias mars.levtype=cat; +alias mars.levelist=partitionNumber; diff --git a/eccodes/definitions/grib2/template.4.55.def b/eccodes/definitions/grib2/template.4.55.def new file mode 100644 index 00000000..8a7010bb --- /dev/null +++ b/eccodes/definitions/grib2/template.4.55.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.55, Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time + +include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions/grib2/template.4.56.def b/eccodes/definitions/grib2/template.4.56.def new file mode 100644 index 00000000..b2bd148a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.56.def @@ -0,0 +1,18 @@ +# TEMPLATE 4.56, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters +# Note: This template is deprecated. Template 4.59 should be used instead. + +include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.horizontal.def" + +# Note: This template is missing the entry: +# Type of ensemble forecast +# which is present in all other templates with EPS info! Mistake by WMO? + +# So we cannot include the eps template due to this missing entry! +# include "grib2/template.4.eps.def" +# Have to manually define the keys +unsigned[1] perturbationNumber : dump; +alias number=perturbationNumber; + +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions/grib2/template.4.57.def b/eccodes/definitions/grib2/template.4.57.def new file mode 100644 index 00000000..939c0e5f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.57.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.57, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function + +include "grib2/template.4.parameter_chemical_distribution.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions/grib2/template.4.58.def b/eccodes/definitions/grib2/template.4.58.def new file mode 100644 index 00000000..380f2572 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.58.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.58, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function + +include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.59.def b/eccodes/definitions/grib2/template.4.59.def new file mode 100644 index 00000000..5cddfb29 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.59.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.59, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters + +# Use this instead of template 4.56 + +include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.6.def b/eccodes/definitions/grib2/template.4.6.def new file mode 100644 index 00000000..f173b2cf --- /dev/null +++ b/eccodes/definitions/grib2/template.4.6.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.6, Percentile forecasts at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.percentile.def" diff --git a/eccodes/definitions/grib2/template.4.60.def b/eccodes/definitions/grib2/template.4.60.def new file mode 100644 index 00000000..53773a2a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.60.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.60, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.reforecast.def" diff --git a/eccodes/definitions/grib2/template.4.61.def b/eccodes/definitions/grib2/template.4.61.def new file mode 100644 index 00000000..ef868371 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.61.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.61, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.reforecast.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.67.def b/eccodes/definitions/grib2/template.4.67.def new file mode 100644 index 00000000..462d3ea6 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.67.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.67, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function + +include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.68.def b/eccodes/definitions/grib2/template.4.68.def new file mode 100644 index 00000000..9fa3a3d2 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.68.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.68, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function + +include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.7.def b/eccodes/definitions/grib2/template.4.7.def new file mode 100644 index 00000000..fa6f007c --- /dev/null +++ b/eccodes/definitions/grib2/template.4.7.def @@ -0,0 +1,2 @@ +# Note: This template is deprecated. Template 4.0 should be used instead. +include "grib2/template.4.0.def" diff --git a/eccodes/definitions/grib2/template.4.70.def b/eccodes/definitions/grib2/template.4.70.def new file mode 100644 index 00000000..d98aacf9 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.70.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# EFAS: Analysis or forecast at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter_postproc.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions/grib2/template.4.71.def b/eccodes/definitions/grib2/template.4.71.def new file mode 100644 index 00000000..31b5da5f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.71.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.72.def b/eccodes/definitions/grib2/template.4.72.def new file mode 100644 index 00000000..3c773b45 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.72.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# EFAS: Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.73.def b/eccodes/definitions/grib2/template.4.73.def new file mode 100644 index 00000000..5cfd284a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.73.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.76.def b/eccodes/definitions/grib2/template.4.76.def new file mode 100644 index 00000000..7de36ca7 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.76.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.76, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink +include "grib2/template.4.parameter_chemical_source.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions/grib2/template.4.77.def b/eccodes/definitions/grib2/template.4.77.def new file mode 100644 index 00000000..61b91b98 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.77.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.77, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink +include "grib2/template.4.parameter_chemical_source.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.78.def b/eccodes/definitions/grib2/template.4.78.def new file mode 100644 index 00000000..582d30e1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.78.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.78, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +include "grib2/template.4.parameter_chemical_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.79.def b/eccodes/definitions/grib2/template.4.79.def new file mode 100644 index 00000000..f77ce879 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.79.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.79, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink +include "grib2/template.4.parameter_chemical_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.8.def b/eccodes/definitions/grib2/template.4.8.def new file mode 100644 index 00000000..ce39303d --- /dev/null +++ b/eccodes/definitions/grib2/template.4.8.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.8, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.80.def b/eccodes/definitions/grib2/template.4.80.def new file mode 100644 index 00000000..4e332576 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.80.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.80, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink + +include "grib2/template.4.parameter_aerosol_optical_source.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions/grib2/template.4.81.def b/eccodes/definitions/grib2/template.4.81.def new file mode 100644 index 00000000..a758d4be --- /dev/null +++ b/eccodes/definitions/grib2/template.4.81.def @@ -0,0 +1,15 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.81, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink + +include "grib2/template.4.parameter_aerosol_optical_source.def"; +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def"; +include "grib2/template.4.eps.def" diff --git a/eccodes/definitions/grib2/template.4.82.def b/eccodes/definitions/grib2/template.4.82.def new file mode 100644 index 00000000..6e64bbd7 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.82.def @@ -0,0 +1,14 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.82, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink + +include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.83.def b/eccodes/definitions/grib2/template.4.83.def new file mode 100644 index 00000000..37254991 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.83.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.83, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval with source/sink +# Note: This template is deprecated. Template 4.84 should be used instead. + +include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.84.def b/eccodes/definitions/grib2/template.4.84.def new file mode 100644 index 00000000..1463d22a --- /dev/null +++ b/eccodes/definitions/grib2/template.4.84.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.84, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.85.def b/eccodes/definitions/grib2/template.4.85.def new file mode 100644 index 00000000..0a41b323 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.85.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.85, individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.9.def b/eccodes/definitions/grib2/template.4.9.def new file mode 100644 index 00000000..11fffc68 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.9.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.9, Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.probability.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.91.def b/eccodes/definitions/grib2/template.4.91.def new file mode 100644 index 00000000..5824fd97 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.91.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.91, Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.categorical.def" +include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions/grib2/template.4.categorical.def b/eccodes/definitions/grib2/template.4.categorical.def new file mode 100755 index 00000000..561f28b1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.categorical.def @@ -0,0 +1,21 @@ +# (C) Copyright 2005- ECMWF. + +# Total number of forecast probabilities +unsigned[1] numberOfCategories : dump; + +# categories +categories list(numberOfCategories) { + codetable[1] categoryType ('4.91.table',masterDir,localDir): dump; + unsigned[1] codeFigure : dump; + # Scale factor of lower limit + unsigned[1] scaleFactorOfLowerLimit : can_be_missing,dump ; + + # Scaled value of lower limit + unsigned[4] scaledValueOfLowerLimit : can_be_missing,dump ; + + # Scale factor of upper limit + unsigned[1] scaleFactorOfUpperLimit : can_be_missing,dump; + + # Scaled value of upper limit + unsigned[4] scaledValueOfUpperLimit : can_be_missing,dump; +} diff --git a/eccodes/definitions/grib2/template.4.circular_cluster.def b/eccodes/definitions/grib2/template.4.circular_cluster.def new file mode 100755 index 00000000..7db25279 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.circular_cluster.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- ECMWF. + +# 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; diff --git a/eccodes/definitions/grib2/template.4.derived.def b/eccodes/definitions/grib2/template.4.derived.def new file mode 100755 index 00000000..429f57b9 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.derived.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# Derived forecast +codetable[1] derivedForecast ('4.7.table',masterDir,localDir) : dump; + +# Number of forecasts in ensemble +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions/grib2/template.4.eps.def b/eccodes/definitions/grib2/template.4.eps.def new file mode 100644 index 00000000..bda5c6b2 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.eps.def @@ -0,0 +1,25 @@ +# (C) Copyright 2005- ECMWF. + +# Type of ensemble forecast +codetable[1] typeOfEnsembleForecast ('4.6.table',masterDir,localDir) = 255 : dump; + +# Perturbation number +unsigned[1] perturbationNumber : dump; +alias number=perturbationNumber; + +# Number of forecasts in ensemble +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; + +# Rules for TIGGE, S2S, UERRA and CRRA +if (productionStatusOfProcessedData == 4 || + productionStatusOfProcessedData == 5 || + productionStatusOfProcessedData == 6 || + productionStatusOfProcessedData == 7 || + productionStatusOfProcessedData == 8 || + productionStatusOfProcessedData == 9 || + productionStatusOfProcessedData == 10|| + productionStatusOfProcessedData == 11) +{ + alias mars.number=perturbationNumber; +} diff --git a/eccodes/definitions/grib2/template.4.horizontal.def b/eccodes/definitions/grib2/template.4.horizontal.def new file mode 100755 index 00000000..071ae07b --- /dev/null +++ b/eccodes/definitions/grib2/template.4.horizontal.def @@ -0,0 +1,89 @@ +# (C) Copyright 2005- ECMWF. + +# Type of first fixed surface +codetable[1] typeOfFirstFixedSurface ('4.5.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; +meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; +meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; + +# Scale factor of first fixed surface +signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of first fixed surface +unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Type of second fixed surface +codetable[1] typeOfSecondFixedSurface ('4.5.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; +meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; +meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; + +# Scale factor of second fixed surface +signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of second fixed surface +unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +transient pressureUnits="hPa"; + +concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsDir2,conceptsDir1); + +alias levelType=typeOfFirstFixedSurface; + +if (typeOfSecondFixedSurface == 255) { + # Only one surface + meta level g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + transient bottomLevel=level; # Do not use alias (see GRIB-725) + transient topLevel=level; +} else { + # Two surfaces + meta topLevel g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + meta bottomLevel g2level(typeOfSecondFixedSurface, + scaleFactorOfSecondFixedSurface, + scaledValueOfSecondFixedSurface, + pressureUnits) :dump; + alias level=topLevel; # (see GRIB-725) + +} +alias ls.level=level; +alias vertical.level=level; +alias vertical.bottomLevel=bottomLevel; +alias vertical.topLevel=topLevel; + +alias extraDim=zero; +if (defined(extraDimensionPresent)) { + if (extraDimensionPresent) { + alias extraDim=one; + } +} +if (extraDim) { + alias mars.levelist = dimension; + alias mars.levtype = dimensionType; +} else { + # See GRIB-74 why we store the pressureUnits in a transient + transient tempPressureUnits=pressureUnits; + if (!(typeOfLevel is "surface")) { + if (tempPressureUnits is "Pa") { + meta marsLevel scale(level,one,hundred) : read_only; + alias mars.levelist=marsLevel; + } else { + alias mars.levelist = level; + } + } + alias mars.levtype = typeOfFirstFixedSurface; + # GRIB-372: levelist alias does not pertain to surface parameters + if (levtype is "sfc") { + unalias mars.levelist; + } +} + +# See ECC-854 +if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { + alias mars.levelist = bottomLevel; +} + +alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions/grib2/template.4.parameter.def b/eccodes/definitions/grib2/template.4.parameter.def new file mode 100644 index 00000000..b74a8bd4 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter.def @@ -0,0 +1,38 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +# (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol.def b/eccodes/definitions/grib2/template.4.parameter_aerosol.def new file mode 100644 index 00000000..d5a59c67 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_aerosol.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_44.def b/eccodes/definitions/grib2/template.4.parameter_aerosol_44.def new file mode 100644 index 00000000..7218bd19 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_aerosol_44.def @@ -0,0 +1,66 @@ +# (C) Copyright 2005- ECMWF. + +# GRIB-530: This template is to be used by template.4.44.def ONLY + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +# (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 +# See GRIB-530: We have to make a special case for the error in WMO spec +if ( new() || (section4Length - 4*NV == 45) ) +{ + # Use the WMO standard 2 octets for the following cases: + # Newly created messages + # Existing gribs which have 45 bytes before the pv array + # The 45 bytes = length of product def template 4.44 + unsigned[2] forecastTime : dump; +} +else +{ + # This is for existing gribs which were written with 4 octets (GRIB-29: supports negative forecast time) + signed[4] forecastTime : dump; +} + diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def b/eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def new file mode 100644 index 00000000..ebe73ec6 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def @@ -0,0 +1,57 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Aerosol type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +# Size in metres +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; + +codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; + +# Wavelengths in metres +signed[1] scaleFactorOfFirstWavelength : dump; +signed[4] scaledValueOfFirstWavelength : dump; +signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; +signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def b/eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def new file mode 100644 index 00000000..d18f12ed --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def @@ -0,0 +1,60 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Aerosol type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; + +# Source, sink or chemical/physical process (Code table 4.238) +codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +# Size in metres +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; + +codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; + +# Wavelengths in metres +signed[1] scaleFactorOfFirstWavelength : dump; +signed[4] scaledValueOfFirstWavelength : dump; +signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; +signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_source.def b/eccodes/definitions/grib2/template.4.parameter_aerosol_source.def new file mode 100644 index 00000000..107d0829 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_aerosol_source.def @@ -0,0 +1,50 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; + +# Source, sink or chemical/physical process (Code table 4.238) +codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical.def b/eccodes/definitions/grib2/template.4.parameter_chemical.def new file mode 100644 index 00000000..6b29f159 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_chemical.def @@ -0,0 +1,40 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by indicatorOfUnitOfTimeRange +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def b/eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def new file mode 100644 index 00000000..203b468d --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def @@ -0,0 +1,59 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); + +# Number of mode(N) of distribution +unsigned[2] numberOfModeOfDistribution : dump; + +# Mode number (l) +unsigned[2] modeNumber : dump; + +# Type of distribution function +codetable[2] typeOfDistributionFunction ('4.240.table',masterDir,localDir) : dump; + +# Number of following function parameters (Np), defined by type given in octet 18-19 +unsigned[1] numberOfDistributionFunctionParameters : dump; +alias NP = numberOfDistributionFunctionParameters; + +listOfDistributionFunctionParameter list(numberOfDistributionFunctionParameters) { + signed[1] scaleFactorOfDistributionFunctionParameter = missing() : can_be_missing,dump; + unsigned[4] scaledValueOfDistributionFunctionParameter = missing() : can_be_missing,dump; +} + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical_source.def b/eccodes/definitions/grib2/template.4.parameter_chemical_source.def new file mode 100644 index 00000000..3b78cf33 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_chemical_source.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Atmospheric chemical or physical constitutent type +codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); + +# Source, sink or chemical/physical process (Code table 4.238) +codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by indicatorOfUnitOfTimeRange +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_partition.def b/eccodes/definitions/grib2/template.4.parameter_partition.def new file mode 100644 index 00000000..8c4252a2 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_partition.def @@ -0,0 +1,44 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; +unsigned[1] partitionTable : dump; +unsigned[1] numberOfPartitions=1 :dump; +partitions list(numberOfPartitions) { + unsigned[2] partitionItems ; +} + +codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_postproc.def b/eccodes/definitions/grib2/template.4.parameter_postproc.def new file mode 100644 index 00000000..d20c8800 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_postproc.def @@ -0,0 +1,46 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the +# original GRIB message used as input of the post-processing +unsigned[2] inputProcessIdentifier : dump,edition_specific; +# The input originating centre shall have the value of the 'originating centre' of the original GRIB message +# used as input of the post-processing +codetable[2] inputOriginatingCentre 'common/c-11.table' : dump,edition_specific,string_type; +# This identifies which post-processing technique was used. This is defined by the originating centre +unsigned[1] typeOfPostProcessing : dump,edition_specific; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by indicatorOfUnitOfTimeRange +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.parameter_tile.def b/eccodes/definitions/grib2/template.4.parameter_tile.def new file mode 100644 index 00000000..2002f212 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.parameter_tile.def @@ -0,0 +1,51 @@ +# (C) Copyright 2005- ECMWF. + +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; + +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +# Tile specifications +codetable[1] tileClassification ('4.242.table',masterDir,localDir) : dump; +unsigned[1] totalNumberOfTileAttributePairs=1 : dump; +unsigned[1] numberOfUsedSpatialTiles=1 : dump; +unsigned[1] tileIndex : dump; +unsigned[1] numberOfUsedTileAttributes=1 : dump; +codetable[1] attributeOfTile ('4.241.table',masterDir,localDir) : dump; +alias NT=totalNumberOfTileAttributePairs; +alias NUT=numberOfUsedSpatialTiles; +alias ITN=tileIndex; +alias NAT=numberOfUsedTileAttributes; + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier +# (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + + +# Analysis or forecast generating processes identifier +# (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by octet 24 +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib2/template.4.percentile.def b/eccodes/definitions/grib2/template.4.percentile.def new file mode 100755 index 00000000..5f720cce --- /dev/null +++ b/eccodes/definitions/grib2/template.4.percentile.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Percentile value +# (from 100% to 0%) +unsigned[1] percentileValue : dump; diff --git a/eccodes/definitions/grib2/template.4.point_in_time.def b/eccodes/definitions/grib2/template.4.point_in_time.def new file mode 100644 index 00000000..f2e8606f --- /dev/null +++ b/eccodes/definitions/grib2/template.4.point_in_time.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- ECMWF. + +meta startStep step_in_units(forecastTime,indicatorOfUnitOfTimeRange,stepUnits): no_copy; +meta endStep g2end_step(startStep,stepUnits) : no_copy; + +alias step=startStep; +alias marsStep=startStep; + +alias mars.step=startStep; + +alias marsStartStep = startStep; +alias marsEndStep = endStep; + +meta stepRange g2step_range(startStep): dump; +alias ls.stepRange=stepRange; +concept stepTypeInternal { + "instant" = {dummy=1;} +} +meta stepHumanReadable step_human_readable(stepUnits, stepRange): hidden,no_copy; + +alias time.stepType=stepType; +alias time.stepRange=stepRange; +alias time.stepUnits=stepUnits; +alias time.dataDate=dataDate; +alias time.dataTime=dataTime; +alias time.startStep=startStep; +alias time.endStep=endStep; + +meta time.validityDate validity_date(dataDate,dataTime,step,stepUnits) : no_copy; +meta time.validityTime validity_time(dataDate,dataTime,step,stepUnits) : no_copy; + diff --git a/eccodes/definitions/grib2/template.4.probability.def b/eccodes/definitions/grib2/template.4.probability.def new file mode 100755 index 00000000..deb033b1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.probability.def @@ -0,0 +1,30 @@ +# (C) Copyright 2005- ECMWF. + +# Forecast probability number +unsigned[1] forecastProbabilityNumber : dump; + +# Total number of forecast probabilities +unsigned[1] totalNumberOfForecastProbabilities : dump; + +# Probability type +codetable[1] probabilityType ('4.9.table',masterDir,localDir) : dump; +meta probabilityTypeName codetable_title(probabilityType): read_only; + +# Scale factor of lower limit +signed[1] scaleFactorOfLowerLimit : can_be_missing,dump ; + +# Scaled value of lower limit +signed[4] scaledValueOfLowerLimit : can_be_missing,dump ; + +meta lowerLimit from_scale_factor_scaled_value( + scaleFactorOfLowerLimit, scaledValueOfLowerLimit): can_be_missing; + + +# Scale factor of upper limit +signed[1] scaleFactorOfUpperLimit : can_be_missing,dump; + +# Scaled value of upper limit +signed[4] scaledValueOfUpperLimit : can_be_missing,dump; + +meta upperLimit from_scale_factor_scaled_value( + scaleFactorOfUpperLimit, scaledValueOfUpperLimit): can_be_missing; diff --git a/eccodes/definitions/grib2/template.4.rectangular_cluster.def b/eccodes/definitions/grib2/template.4.rectangular_cluster.def new file mode 100755 index 00000000..4d120865 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.rectangular_cluster.def @@ -0,0 +1,50 @@ +# (C) Copyright 2005- ECMWF. + +# 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 ; + + diff --git a/eccodes/definitions/grib2/template.4.reforecast.def b/eccodes/definitions/grib2/template.4.reforecast.def new file mode 100644 index 00000000..53bdf435 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.reforecast.def @@ -0,0 +1,14 @@ +# The Model Version Date +# This is the date when the reforecast is produced with a particular version of the model + +unsigned[2] YearOfModelVersion = 0: edition_specific; +unsigned[1] MonthOfModelVersion = 0: edition_specific; +unsigned[1] DayOfModelVersion = 0: edition_specific; +unsigned[1] HourOfModelVersion = 0: edition_specific; +unsigned[1] MinuteOfModelVersion = 0: edition_specific; +unsigned[1] SecondOfModelVersion = 0: edition_specific; + +meta modelVersionDate g2date(YearOfModelVersion,MonthOfModelVersion,DayOfModelVersion) : dump; +meta modelVersionTime time(HourOfModelVersion, MinuteOfModelVersion, SecondOfModelVersion) : dump; + +constant isHindcast = 1; diff --git a/eccodes/definitions/grib2/template.4.statistical.def b/eccodes/definitions/grib2/template.4.statistical.def new file mode 100644 index 00000000..e4be03e1 --- /dev/null +++ b/eccodes/definitions/grib2/template.4.statistical.def @@ -0,0 +1,123 @@ +# (C) Copyright 2005- ECMWF. + +# Year of end of overall time interval +unsigned[2] yearOfEndOfOverallTimeInterval =0 : edition_specific; + +# Month of end of overall time interval +unsigned[1] monthOfEndOfOverallTimeInterval =0 : edition_specific; + +# Day of end of overall time interval +unsigned[1] dayOfEndOfOverallTimeInterval =0 : edition_specific; + +# Hour of end of overall time interval +unsigned[1] hourOfEndOfOverallTimeInterval =0 : edition_specific; + +# Minute of end of overall time interval +unsigned[1] minuteOfEndOfOverallTimeInterval =0 : edition_specific; + +# Second of end of overall time interval +unsigned[1] secondOfEndOfOverallTimeInterval =0 : edition_specific; + +# n - number of time range specifications describing the time intervals used to calculate the statistically-processed field +unsigned[1] numberOfTimeRange = 1 : edition_specific; +alias n = numberOfTimeRange; + +# Total number of data values missing in statistical process +unsigned[4] numberOfMissingInStatisticalProcess = 0 : edition_specific; +alias totalNumberOfDataValuesMissingInStatisticalProcess=numberOfMissingInStatisticalProcess; + +statisticalProcessesList list(numberOfTimeRange) +{ + # Statistical process used to calculate the processed field from the field at each time increment during the time range + codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : edition_specific; + + # Type of time increment between successive fields used in the statistical processing + codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) = 2 : edition_specific; + alias typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing=typeOfTimeIncrement; + + # Indicator of unit of time for time range over which statistical processing is done + codetable[1] indicatorOfUnitForTimeRange ('4.4.table',masterDir,localDir) =1 ; + + # Length of the time range over which statistical processing is done, in units defined by the previous octet + unsigned[4] lengthOfTimeRange=0 ; + + # Indicator of unit of time for the increment between the successive fields used + codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ; + + # Time increment between successive fields, in units defined by the previous octet + unsigned[4] timeIncrement=0 ; + alias timeIncrementBetweenSuccessiveFields=timeIncrement; + +} + +# See GRIB-488. We only support maximum of 2 time ranges +if (numberOfTimeRange == 1 || numberOfTimeRange == 2) { + concept stepTypeInternal { + "instant" = {typeOfStatisticalProcessing=255;} + "avg" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=2;} + "avg" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=3;} + "avgd" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=1;} + "accum" = {typeOfStatisticalProcessing=1;typeOfTimeIncrement=2;} + "max" = {typeOfStatisticalProcessing=2;} + "min" = {typeOfStatisticalProcessing=3;} + "diff" = {typeOfStatisticalProcessing=4;} # end-start + "rms" = {typeOfStatisticalProcessing=5;} + "sd" = {typeOfStatisticalProcessing=6;} + "cov" = {typeOfStatisticalProcessing=7;} + "sdiff" = {typeOfStatisticalProcessing=8;} # start-end + "ratio" = {typeOfStatisticalProcessing=9;} + "stdanom" = {typeOfStatisticalProcessing=10;} + "sum" = {typeOfStatisticalProcessing=11;} + } + meta startStep step_in_units(forecastTime,indicatorOfUnitOfTimeRange,stepUnits, + indicatorOfUnitForTimeRange,lengthOfTimeRange) : no_copy; + meta endStep g2end_step( + startStep, + stepUnits, + + year, + month, + day, + hour, + minute, + second, + + yearOfEndOfOverallTimeInterval, + monthOfEndOfOverallTimeInterval, + dayOfEndOfOverallTimeInterval, + hourOfEndOfOverallTimeInterval, + minuteOfEndOfOverallTimeInterval, + secondOfEndOfOverallTimeInterval, + + indicatorOfUnitForTimeRange, + lengthOfTimeRange, + typeOfTimeIncrement, + numberOfTimeRange + ) : dump,no_copy; + + meta stepRange g2step_range(startStep,endStep): dump; +} else { + constant stepType = "multiple steps"; + constant stepTypeInternal = "multiple steps"; + constant endStep = "unavailable"; + constant startStep = "unavailable"; + constant stepRange = "unavailable"; +} + +#meta marsStep mars_step(stepRange,stepType) : edition_specific; + +alias ls.stepRange=stepRange; +alias mars.step=endStep; + +alias time.stepType=stepType; +alias time.stepRange=stepRange; +alias time.stepUnits=stepUnits; +alias time.dataDate=dataDate; +alias time.dataTime=dataTime; +alias time.startStep=startStep; +alias time.endStep=endStep; + +meta time.validityDate validity_date(date,dataTime,step,stepUnits,yearOfEndOfOverallTimeInterval, + monthOfEndOfOverallTimeInterval,dayOfEndOfOverallTimeInterval) : no_copy; +meta time.validityTime validity_time(date,dataTime,step,stepUnits,hourOfEndOfOverallTimeInterval, + minuteOfEndOfOverallTimeInterval) : no_copy; diff --git a/eccodes/definitions/grib2/template.5.0.def b/eccodes/definitions/grib2/template.5.0.def new file mode 100644 index 00000000..9ec20b0e --- /dev/null +++ b/eccodes/definitions/grib2/template.5.0.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.0, Grid point data - simple packing + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; + diff --git a/eccodes/definitions/grib2/template.5.1.def b/eccodes/definitions/grib2/template.5.1.def new file mode 100644 index 00000000..0db50611 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.1.def @@ -0,0 +1,77 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.1, Matrix values at grid point -simple packing + +include "grib2/template.5.packing.def"; + +unsigned[1] matrixBitmapsPresent ; +# same as in edition 1 +alias secondaryBitmapPresent=matrixBitmapsPresent; + +# Number of data values encoded in Section 7 +unsigned[4] numberOfCodedValues ; + +# NR - first dimension +# (rows) +unsigned[2] firstDimension ; + +alias NR = firstDimension; +# NC - second dimension +# (columns) +unsigned[2] secondDimension ; + +alias NC = secondDimension; +# First dimension coordinate value definition +# (Code Table 5.2) +unsigned[1] firstDimensionCoordinateValueDefinition ; + +# NC1 - number of coefficients or values used to specify first dimension coordinate function +unsigned[1] NC1 : dump ; +alias numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction=NC1; + +# Second dimension coordinate value definition +# (Code Table 5.2) +unsigned[1] secondDimensionCoordinateValueDefinition ; + +# NC2 - number of coefficients or values used to specify second dimension coordinate function +unsigned[1] NC2 : dump ; +alias numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction = NC2; + +# First dimension physical significance +# (Code Table 5.3) +unsigned[1] firstDimensionPhysicalSignificance ; + +# Second dimension physical significance +# (Code Table 5.3) +unsigned[1] secondDimensionPhysicalSignificance ; + +ieeefloat coefsFirst[NC1]; # TODO: find proper names +ieeefloat coefsSecond[NC2];# TODO: find proper names + +alias data.coefsFirst = coefsFirst; +alias data.coefsSecond=coefsSecond; + +if(matrixBitmapsPresent == 1) +{ + + constant datumSize = NC*NR; + constant secondaryBitmapsCount = numberOfValues + 0; # + constant secondaryBitmapsSize = secondaryBitmapsCount/8; + + transient numberOfDataMatrices = numberOfDataPoints/datumSize; + + position offsetBBitmap; + meta secondaryBitmaps g2bitmap( + dummy, + missingValue, + offsetBSection5, + section5Length, + numberOfCodedValues , + dummy) : read_only + ; + + meta bitmap data_g2secondary_bitmap(primaryBitmap, + secondaryBitmaps, + missingValue,datumSize,numberOfDataPoints) : read_only; + +} diff --git a/eccodes/definitions/grib2/template.5.2.def b/eccodes/definitions/grib2/template.5.2.def new file mode 100644 index 00000000..03e74a29 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.2.def @@ -0,0 +1,44 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.2, Grid point data - complex packing + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; + +# Group splitting method used +codetable[1] groupSplittingMethodUsed ('5.4.table',masterDir,localDir); + +# Missing value management used +codetable[1] missingValueManagementUsed ('5.5.table',masterDir,localDir); + +# Primary missing value substitute +unsigned[4] primaryMissingValueSubstitute ; + +# Secondary missing value substitute +unsigned[4] secondaryMissingValueSubstitute ; + +# NG - Number of groups of data values into which field is split +unsigned[4] numberOfGroupsOfDataValues ; + +alias NG = numberOfGroupsOfDataValues; +# Reference for group widths +unsigned[1] referenceForGroupWidths ; + +# Number of bits used for the group widths +# (after the reference value in octet 36 has been removed) +unsigned[1] numberOfBitsUsedForTheGroupWidths ; + +# Reference for group lengths +unsigned[4] referenceForGroupLengths ; + +# Length increment for the group lengths +unsigned[1] lengthIncrementForTheGroupLengths ; + +# True length of last group +unsigned[4] trueLengthOfLastGroup ; + +# Number of bits used for the scaled group lengths +# (after subtraction of the reference value given in octets 38-41 and division +# by the length increment given in octet 42) +unsigned[1] numberOfBitsForScaledGroupLengths ; +alias numberOfBitsUsedForTheScaledGroupLengths=numberOfBitsForScaledGroupLengths; diff --git a/eccodes/definitions/grib2/template.5.3.def b/eccodes/definitions/grib2/template.5.3.def new file mode 100644 index 00000000..c2d00ef4 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.3.def @@ -0,0 +1,51 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.3, Grid point data - complex packing and spatial differencing + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; + +# Group splitting method used +codetable[1] groupSplittingMethodUsed ('5.4.table',masterDir,localDir); + +# Missing value management used +codetable[1] missingValueManagementUsed ('5.5.table',masterDir,localDir); + +# Primary missing value substitute +unsigned[4] primaryMissingValueSubstitute ; + +# Secondary missing value substitute +unsigned[4] secondaryMissingValueSubstitute ; + +# NG - Number of groups of data values into which field is split +unsigned[4] numberOfGroupsOfDataValues ; + +alias NG = numberOfGroupsOfDataValues; +# Reference for group widths +unsigned[1] referenceForGroupWidths ; + +# Number of bits used for the group widths +# (after the reference value in octet 36 has been removed) +unsigned[1] numberOfBitsUsedForTheGroupWidths ; + +# Reference for group lengths +unsigned[4] referenceForGroupLengths ; + +# Length increment for the group lengths +unsigned[1] lengthIncrementForTheGroupLengths ; + +# True length of last group +unsigned[4] trueLengthOfLastGroup ; + +# Number of bits used for the scaled group lengths +# (after subtraction of the reference value given in octets 38-41 and division +# by the length increment given in octet 42) +unsigned[1] numberOfBitsForScaledGroupLengths ; +alias numberOfBitsUsedForTheScaledGroupLengths=numberOfBitsForScaledGroupLengths; + +# Order of spatial differencing +codetable[1] orderOfSpatialDifferencing ('5.6.table',masterDir,localDir); + +# Number of octets required in the Data Section to specify extra descriptors needed for spatial differencing +# (octets 6-ww in Data Template 7.3) +unsigned[1] numberOfOctetsExtraDescriptors ; diff --git a/eccodes/definitions/grib2/template.5.4.def b/eccodes/definitions/grib2/template.5.4.def new file mode 100644 index 00000000..1413d60e --- /dev/null +++ b/eccodes/definitions/grib2/template.5.4.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.4, Grid point data - IEEE packing +# added for conversion from other packing +transient bitsPerValue=0 : hidden; +transient referenceValue=0 : hidden; +transient binaryScaleFactor=0 : hidden; +transient decimalScaleFactor=0 : hidden; +alias numberOfBits = bitsPerValue; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +codetable[1] precision ('5.7.table',masterDir,localDir) = 1 : edition_specific; diff --git a/eccodes/definitions/grib2/template.5.40.def b/eccodes/definitions/grib2/template.5.40.def new file mode 100644 index 00000000..8340a0b3 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.40.def @@ -0,0 +1,15 @@ +# (C) Copyright 2005- ECMWF. + +#Data Representation Template 5.40: Grid point data - JPEG 2000 Code Stream Format + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; + +# Octet 22 : Type of Compression used. (see Code Table 5.40) + +codetable[1] typeOfCompressionUsed ('5.40.table',masterDir,localDir) ; + +# Octets 23 Target compression ratio, M:1 (with respect to the bit-depth specified in octet 20), +# when octet 22 indicates Lossy Compression. Otherwise, set to missing. (see Note 3) + +unsigned[1] targetCompressionRatio = 255; diff --git a/eccodes/definitions/grib2/template.5.40000.def b/eccodes/definitions/grib2/template.5.40000.def new file mode 100644 index 00000000..7fd4303a --- /dev/null +++ b/eccodes/definitions/grib2/template.5.40000.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.5.40.def" diff --git a/eccodes/definitions/grib2/template.5.40010.def b/eccodes/definitions/grib2/template.5.40010.def new file mode 100644 index 00000000..a761bf1d --- /dev/null +++ b/eccodes/definitions/grib2/template.5.40010.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.5.41.def" diff --git a/eccodes/definitions/grib2/template.5.41.def b/eccodes/definitions/grib2/template.5.41.def new file mode 100644 index 00000000..af95ab4d --- /dev/null +++ b/eccodes/definitions/grib2/template.5.41.def @@ -0,0 +1,6 @@ +# (C) Copyright 2005- ECMWF. + +# Grid point data - PNG Code Stream Format SAME AS 5.40010 !!!!!! + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; diff --git a/eccodes/definitions/grib2/template.5.42.def b/eccodes/definitions/grib2/template.5.42.def new file mode 100644 index 00000000..50fcc080 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.42.def @@ -0,0 +1,25 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.42, Grid point and spectral data - CCSDS recommended lossless compression + +include "grib2/template.5.packing.def"; +include "grib2/template.5.original_values.def"; + +unsigned[1] ccsdsFlags : dump; +alias ccsdsCompressionOptionsMask=ccsdsFlags; + +flagbit AEC_DATA_SIGNED_OPTION_MASK(ccsdsFlags,0) = 0; + +# AEC_DATA_3BYTE_OPTION_MASK was switched on in order to allow data stored +# with 17 <=bitsPerValue<= 24 to be stored in 3 rather than 4 bytes. +# This eliminates discretization errors that were occuring when it was off. +flagbit AEC_DATA_3BYTE_OPTION_MASK(ccsdsFlags,1) = 1; + +flagbit AEC_DATA_MSB_OPTION_MASK(ccsdsFlags,2) = 1; +flagbit AEC_DATA_PREPROCESS_OPTION_MASK(ccsdsFlags,3) = 1; +flagbit AEC_RESTRICTED_OPTION_MASK(ccsdsFlags,4) = 0; +flagbit AEC_PAD_RSI_OPTION_MASK(ccsdsFlags,5) = 0; + +unsigned[1] ccsdsBlockSize = 32 : dump; +unsigned[2] ccsdsRsi = 128 : dump; +alias referenceSampleInterval=ccsdsRsi; diff --git a/eccodes/definitions/grib2/template.5.50.def b/eccodes/definitions/grib2/template.5.50.def new file mode 100644 index 00000000..065d65c5 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.50.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.50, Spectral data - simple packing +include "grib2/template.5.packing.def"; + +# Real part of (0,0) +ieeefloat realPartOf00 ; diff --git a/eccodes/definitions/grib2/template.5.50000.def b/eccodes/definitions/grib2/template.5.50000.def new file mode 100644 index 00000000..46427b61 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.50000.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.51, Spherical harmonics data - complex packing + +include "grib2/template.5.packing.def"; + +if (gribex_mode_on()) { + transient computeLaplacianOperator=0 : hidden; +} else { + transient computeLaplacianOperator=1 : hidden; +} + +meta _numberOfValues spectral_truncation(J,K,M,numberOfValues): read_only; + +constant laplacianScalingFactorUnset = -2147483647; +signed[4] laplacianScalingFactor : edition_specific ; + +meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; +meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); + +transient JS= 20 ; +transient KS=20 ; +transient MS=20 ; +transient subSetJ=0 ; +transient subSetK=0 ; +transient subSetM=0 ; + +unsigned[4] TS ; + +meta _TS spectral_truncation(J,K,M,TS) : read_only,hidden; + +# This is read_only until we support other values +codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 2 : dump; + +alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions/grib2/template.5.50001.def b/eccodes/definitions/grib2/template.5.50001.def new file mode 100755 index 00000000..1e8eed33 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.50001.def @@ -0,0 +1,27 @@ +# (C) Copyright 2005- ECMWF. + +ieeefloat referenceValue : no_copy; +meta referenceValueError reference_value_error(referenceValue,ieee); + +signed[2] binaryScaleFactor : no_copy; + +signed[2] decimalScaleFactor :no_copy; + +# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error +transient optimizeScaleFactor = 0; + +unsigned[1] bitsPerValue ; +if (bitsPerValue) { + unsigned[1] widthOfFirstOrderValues :no_copy ; + + unsigned [4] numberOfGroups : no_copy; + unsigned [4] numberOfSecondOrderPackedValues : no_copy; + unsigned [1] widthOfWidths : no_copy; + unsigned [1] widthOfLengths : no_copy; + unsigned [1] orderOfSPD = 2 : no_copy ; + + if (orderOfSPD) { + unsigned[1] widthOfSPD ; + meta SPD spd(widthOfSPD,orderOfSPD) : read_only; + } +} diff --git a/eccodes/definitions/grib2/template.5.50002.def b/eccodes/definitions/grib2/template.5.50002.def new file mode 100755 index 00000000..dd687a02 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.50002.def @@ -0,0 +1,29 @@ +# (C) Copyright 2005- ECMWF. + +ieeefloat referenceValue : no_copy; +meta referenceValueError reference_value_error(referenceValue,ieee); + +signed[2] binaryScaleFactor : no_copy; + +signed[2] decimalScaleFactor :no_copy; + +# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error +transient optimizeScaleFactor = 0; + +unsigned[1] bitsPerValue ; +unsigned[1] widthOfFirstOrderValues :no_copy ; + +unsigned [4] numberOfGroups : no_copy; +unsigned [4] numberOfSecondOrderPackedValues : no_copy; +unsigned [1] widthOfWidths : no_copy; +unsigned [1] widthOfLengths : no_copy; +flags [1] secondOrderFlags "grib2/tables/[tablesVersion]/5.50002.table" = 0; +unsigned [1] orderOfSPD = 2 : no_copy ; + +flagbit boustrophedonicOrdering(secondOrderFlags,7) = 0; +alias boustrophedonic=boustrophedonicOrdering; + +if (orderOfSPD) { + unsigned[1] widthOfSPD ; + meta SPD spd(widthOfSPD,orderOfSPD) : read_only; +} diff --git a/eccodes/definitions/grib2/template.5.51.def b/eccodes/definitions/grib2/template.5.51.def new file mode 100644 index 00000000..747976a8 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.51.def @@ -0,0 +1,36 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.51, Spherical harmonics data - complex packing + +include "grib2/template.5.packing.def"; + +if (gribex_mode_on()) { + transient computeLaplacianOperator=0 : hidden; +} else { + transient computeLaplacianOperator=1 : hidden; +} + +meta _numberOfValues spectral_truncation(J,K,M,numberOfValues): read_only; + +constant laplacianScalingFactorUnset = -2147483647; +signed[4] laplacianScalingFactor : edition_specific ; + +meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; +meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); + +unsigned[2] JS ; +unsigned[2] KS ; +unsigned[2] MS ; + +alias subSetJ=JS ; +alias subSetK=KS ; +alias subSetM=MS ; + +unsigned[4] TS ; + +meta _TS spectral_truncation(JS,KS,MS,TS) : read_only,hidden; + +# This is read_only until we support other values +codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 1 : dump; + +alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions/grib2/template.5.53.def b/eccodes/definitions/grib2/template.5.53.def new file mode 100644 index 00000000..9c52a851 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.53.def @@ -0,0 +1,26 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 5.53, BiFourier coefficients data - complex packing +# Spectral data for limited area models \u2013 complex packing + +include "grib2/template.5.packing.def"; + +transient computeLaplacianOperator=1 : hidden; + +codetable[1] biFourierSubTruncationType ('5.25.table',masterDir,localDir) : dump; +codetable[1] biFourierPackingModeForAxes ('5.26.table',masterDir,localDir) = 0 : dump; + +constant laplacianScalingFactorUnset = -2147483647; +signed[4] laplacianScalingFactor : edition_specific ; # units of 10^-6 + +meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; +meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); + +unsigned[2] biFourierResolutionSubSetParameterN : dump ; # NS +unsigned[2] biFourierResolutionSubSetParameterM : dump ; # MS +unsigned[4] totalNumberOfValuesInUnpackedSubset = 0 : dump; # TS + +# This is read_only until we support other values +codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 1 : dump; + +alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions/grib2/template.5.6.def b/eccodes/definitions/grib2/template.5.6.def new file mode 100644 index 00000000..5214f812 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.6.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# Grid point data - Simple packing with preprocessing + +include "grib2/template.5.packing.def"; + +codetable[1] typeOfPreProcessing ('5.9.table',masterDir,localDir) :edition_specific; +ieeefloat preProcessingParameter : read_only; diff --git a/eccodes/definitions/grib2/template.5.61.def b/eccodes/definitions/grib2/template.5.61.def new file mode 100644 index 00000000..3565ebea --- /dev/null +++ b/eccodes/definitions/grib2/template.5.61.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# Grid point data - Simple packing with logarithmic preprocessing +constant typeOfPreProcessing=1; + +include "grib2/template.5.packing.def"; + +ieeefloat preProcessingParameter : read_only; diff --git a/eccodes/definitions/grib2/template.5.original_values.def b/eccodes/definitions/grib2/template.5.original_values.def new file mode 100644 index 00000000..9b891473 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.original_values.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +# Type of original field values +codetable[1] typeOfOriginalFieldValues ('5.1.table',masterDir,localDir) = 0; # Default set to floating diff --git a/eccodes/definitions/grib2/template.5.packing.def b/eccodes/definitions/grib2/template.5.packing.def new file mode 100755 index 00000000..63c48719 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.packing.def @@ -0,0 +1,23 @@ +# (C) Copyright 2005- ECMWF. + +# Reference value (R) +# The copy_ok means that the value is copied when changing the representation +# e.g. from jpeg to simple packing. +ieeefloat referenceValue : read_only, copy_ok; +meta referenceValueError reference_value_error(referenceValue,ieee); + + +# Binary scale factor (E) +signed[2] binaryScaleFactor : read_only, copy_ok; + +# Decimal scale factor (D) +signed[2] decimalScaleFactor ; + +# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error +transient optimizeScaleFactor = 0; + + +# Number of bits used for each packed value for simple packing, or for each group reference value for complex packing or spatial differencing +unsigned[1] bitsPerValue; +alias numberOfBits = bitsPerValue; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; diff --git a/eccodes/definitions/grib2/template.5.second_order.def b/eccodes/definitions/grib2/template.5.second_order.def new file mode 100644 index 00000000..f7a31a20 --- /dev/null +++ b/eccodes/definitions/grib2/template.5.second_order.def @@ -0,0 +1,21 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] groupSplitting ('5.4.table',masterDir,localDir) = 1 ; #default general + +codetable[1] missingValueManagement ('5.5.table',masterDir,localDir) = 0; #default as grib1 + +unsigned[4] primaryMissingValue ; + +unsigned[4] secondaryMissingValue ; + +unsigned[4] numberOfGroups ; +alias NG = numberOfGroups; + +unsigned[1] referenceOfWidths ; +unsigned[1] widthOfWidths ; + +unsigned[4] referenceOfLengths ; +unsigned[1] incrementOfLengths ; + +unsigned[4] trueLengthOfLastGroup ; +unsigned[1] widthOfLengths ; diff --git a/eccodes/definitions/grib2/template.7.0.def b/eccodes/definitions/grib2/template.7.0.def new file mode 100644 index 00000000..d23d33b6 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.0.def @@ -0,0 +1,34 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.0, Grid point data - simple packing +# Octets 6-nn : Binary data values - binary string, with each +# (scaled) + +meta codedValues data_g2simple_packing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor +): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +alias data.packedValues=codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.1.def b/eccodes/definitions/grib2/template.7.1.def new file mode 100644 index 00000000..f4b2c305 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.1.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.1, Matrix values at grid point -simple packing +# Octets 6-nn : Binary data values - binary string, with each +# (scaled) +# ???? data_values__binary_string_with_each + +meta codedValues data_g2simple_packing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.2.def b/eccodes/definitions/grib2/template.7.2.def new file mode 100644 index 00000000..df506d9e --- /dev/null +++ b/eccodes/definitions/grib2/template.7.2.def @@ -0,0 +1,49 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.2, Grid point data - complex packing +# Octets 6-xx : NG group reference values +# (XI in the decoding formula) + +position offsetBeforeData; + +constant orderOfSpatialDifferencing = 0; +constant numberOfOctetsExtraDescriptors = 0; + +meta codedValues data_g22order_packing( + section7Length, + offsetBeforeData, + offsetSection7, + + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + + typeOfOriginalFieldValues , + groupSplittingMethodUsed, + missingValueManagementUsed , + primaryMissingValueSubstitute , + secondaryMissingValueSubstitute , + numberOfGroupsOfDataValues , + referenceForGroupWidths , + numberOfBitsUsedForTheGroupWidths , + referenceForGroupLengths , + lengthIncrementForTheGroupLengths, + trueLengthOfLastGroup , + numberOfBitsForScaledGroupLengths, + orderOfSpatialDifferencing, + numberOfOctetsExtraDescriptors + +): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.3.def b/eccodes/definitions/grib2/template.7.3.def new file mode 100644 index 00000000..470e0ca6 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.3.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.3, Grid point data - complex packing and spatial differencing +# Octets 6-ww : First value(s) of original +# (undifferenced) +# ???? first_value_s_of_original + +position offsetBeforeData; + +meta codedValues data_g22order_packing( + section7Length, + offsetBeforeData, + offsetSection7, + + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + + typeOfOriginalFieldValues , + groupSplittingMethodUsed, + missingValueManagementUsed , + primaryMissingValueSubstitute , + secondaryMissingValueSubstitute , + numberOfGroupsOfDataValues , + referenceForGroupWidths , + numberOfBitsUsedForTheGroupWidths , + referenceForGroupLengths , + lengthIncrementForTheGroupLengths, + trueLengthOfLastGroup , + numberOfBitsForScaledGroupLengths, + orderOfSpatialDifferencing, + numberOfOctetsExtraDescriptors + +): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues=codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.4.def b/eccodes/definitions/grib2/template.7.4.def new file mode 100644 index 00000000..fda92a0c --- /dev/null +++ b/eccodes/definitions/grib2/template.7.4.def @@ -0,0 +1,25 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.4, Grid point data - simple packing +# Octets 6-nn : Binary data values - binary string, with each +# (scaled) +# ???? data_values__binary_string_with_each + +meta codedValues data_raw_packing( + section7Length, + offsetBeforeData, + offsetSection7, + numberOfValues, + precision + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.40.def b/eccodes/definitions/grib2/template.7.40.def new file mode 100644 index 00000000..d5b93c0d --- /dev/null +++ b/eccodes/definitions/grib2/template.7.40.def @@ -0,0 +1,51 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.40, Grid point data - jpeg2000 +# Octets 6-xx : NG group reference values +# (XI in the decoding formula) +# ???? ng_group_reference_values + +meta codedValues data_jpeg2000_packing( + + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + #numberOfValues, + #referenceValue, + #binaryScaleFactor, + #decimalScaleFactor, + #bitsPerValue, + + # For encoding + + typeOfCompressionUsed, + targetCompressionRatio, + Nx, + Ny, + interpretationOfNumberOfPoints, + numberOfDataPoints, + scanningMode + + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.40000.def b/eccodes/definitions/grib2/template.7.40000.def new file mode 100644 index 00000000..33d9b4b8 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.40000.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.7.40.def" diff --git a/eccodes/definitions/grib2/template.7.40010.def b/eccodes/definitions/grib2/template.7.40010.def new file mode 100644 index 00000000..96e332cd --- /dev/null +++ b/eccodes/definitions/grib2/template.7.40010.def @@ -0,0 +1,3 @@ +# (C) Copyright 2005- ECMWF. + +include "grib2/template.7.41.def" diff --git a/eccodes/definitions/grib2/template.7.41.def b/eccodes/definitions/grib2/template.7.41.def new file mode 100644 index 00000000..bd59ee35 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.41.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.41, Grid point data - png +meta codedValues data_png_packing( + section7Length, + offsetBeforeData, + offsetSection7, + numberOfValues, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + bitsPerValue, + + # For encoding + Nx, + Ny, + + interpretationOfNumberOfPoints, + numberOfDataPoints, + scanningMode + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.42.def b/eccodes/definitions/grib2/template.7.42.def new file mode 100644 index 00000000..ff68e066 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.42.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.42, Grid point data - CCSDS +meta codedValues data_ccsds_packing( + section7Length, + offsetBeforeData, + offsetSection7, + numberOfValues, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + bitsPerValue, + + numberOfDataPoints, + + ccsdsFlags, + ccsdsBlockSize, + ccsdsRsi + + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +# See ECC-711 +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.50.def b/eccodes/definitions/grib2/template.7.50.def new file mode 100644 index 00000000..ce7f790a --- /dev/null +++ b/eccodes/definitions/grib2/template.7.50.def @@ -0,0 +1,40 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.50, Spectral data - simple packing +# Octets 6-nn : Binary data values - binary string, with each +# (scaled) + +transient numberOfValues = ( J + 1 ) * ( J + 2 ) : no_copy ; +transient numberOfPackedValues = numberOfValues - 1 : no_copy; + +transient numberOfValues = ( J + 1 ) * ( J + 2 ) : no_copy ; +transient numberOfPackedValues = numberOfValues - 1 : no_copy; + + meta codedValues data_g2simple_packing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfPackedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor + ) : read_only; + + meta values data_g2shsimple_packing( + codedValues, + realPartOf00, + numberOfValues + ) ; + + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +alias x.packedValues = values; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib2/template.7.50000.def b/eccodes/definitions/grib2/template.7.50000.def new file mode 100644 index 00000000..d1584d69 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.50000.def @@ -0,0 +1,109 @@ +# (C) Copyright 2005- ECMWF. + +constant GRIBEXShBugPresent = 0; +constant sphericalHarmonics = 1; +constant complexPacking = 1; + +meta codedValues data_g2complex_packing( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + J, + K, + M, + + J, + J, + J, + + numberOfValues + ): read_only; + + meta data.packedValues data_sh_packed( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + J, + K, + M, + + J, + J, + J + ) : read_only; + + meta data.unpackedValues data_sh_unpacked( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + J, + K, + M, + + J, + K, + M + ) : read_only; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib2/template.7.50001.def b/eccodes/definitions/grib2/template.7.50001.def new file mode 100644 index 00000000..178f3633 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.50001.def @@ -0,0 +1,100 @@ +# (C) Copyright 2005- ECMWF. + +if (bitsPerValue) { + meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; + meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; + meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; + meta countOfGroupLengths sum(groupLengths); +} +transient halfByte=0; + +position offsetBeforeData; + +if(bitmapPresent) { + meta codedValues data_g1second_order_general_extended_packing( + #simple_packing args + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + numberOfGroups, + numberOfSecondOrderPackedValues, + keyNotPresent, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ): read_only; + alias data.packedValues = codedValues; + + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; +} else { + meta values data_g1second_order_general_extended_packing( + #simple_packing args + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + numberOfGroups, + numberOfSecondOrderPackedValues, + keyNotPresent, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ) : dump; + alias codedValues=values; + alias data.packedValues = values; +} + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.50002.def b/eccodes/definitions/grib2/template.7.50002.def new file mode 100644 index 00000000..c29b6137 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.50002.def @@ -0,0 +1,148 @@ +# (C) Copyright 2005- ECMWF. + +meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; +meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; +meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; +meta countOfGroupLengths sum(groupLengths); +transient halfByte=0; + +position offsetBeforeData; + +if(bitmapPresent) { + meta codedValues data_g1second_order_general_extended_packing( + #simple_packing args + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + numberOfGroups, + numberOfSecondOrderPackedValues, + keyNotPresent, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ): read_only; + alias data.packedValues = codedValues; + + if (boustrophedonicOrdering) { + meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; + meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + } else { + meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; + } + +} else { + if (boustrophedonicOrdering) { + meta codedValues data_g1second_order_general_extended_packing( + #simple_packing args + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + numberOfGroups, + numberOfSecondOrderPackedValues, + keyNotPresent, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ) : dump; + + meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; + + } else { + meta values data_g1second_order_general_extended_packing( + #simple_packing args + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + #g1second_order_row_by_row args + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + numberOfGroups, + numberOfSecondOrderPackedValues, + keyNotPresent, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + + ) : dump; + alias codedValues=values; + } + alias data.packedValues = values; +} + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.51.def b/eccodes/definitions/grib2/template.7.51.def new file mode 100644 index 00000000..04522eb6 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.51.def @@ -0,0 +1,114 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.51, Spherical harmonics - complex packing +# Octets 6-(5+I*TS) : Data values from the unpacked subset +# (IEEE floating-point values on I octets) +# ???? data_values_from_the_unpacked_subset + +constant GRIBEXShBugPresent = 0; +constant sphericalHarmonics = 1; +constant complexPacking = 1; + +meta codedValues data_g2complex_packing( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM, + + numberOfValues + ): read_only; + + meta data.packedValues data_sh_packed( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + + meta data.unpackedValues data_sh_unpacked( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + + GRIBEXShBugPresent, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + subSetJ, + subSetK, + subSetM, + + pentagonalResolutionParameterJ, + pentagonalResolutionParameterK, + pentagonalResolutionParameterM + ) : read_only; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions/grib2/template.7.53.def b/eccodes/definitions/grib2/template.7.53.def new file mode 100644 index 00000000..ad4642bb --- /dev/null +++ b/eccodes/definitions/grib2/template.7.53.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.53, BiFourier coefficients - complex packing +# Spectral data for limited area models \u2013 complex packing + +constant biFourierCoefficients = 1; +constant complexPacking = 1; + +meta codedValues data_g2bifourier_packing( + section7Length, + offsetBeforeData, + offsetSection7, + + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + unpackedSubsetPrecision, + + laplacianOperatorIsSet, + laplacianOperator, + + biFourierTruncationType, + biFourierResolutionSubSetParameterN, + biFourierResolutionSubSetParameterM, + + biFourierResolutionParameterN, + biFourierResolutionParameterM, + biFourierSubTruncationType, + biFourierPackingModeForAxes, + biFourierMakeTemplate, + totalNumberOfValuesInUnpackedSubset, + + numberOfValues + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; diff --git a/eccodes/definitions/grib2/template.7.6.def b/eccodes/definitions/grib2/template.7.6.def new file mode 100644 index 00000000..ef5c7101 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.6.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.6, Grid point data - simple packing with preprocessing +# Octets 6-nn : Binary data values - binary string, with each (scaled) + +meta codedValues data_g2simple_packing_with_preprocessing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + typeOfPreProcessing, + preProcessingParameter + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.61.def b/eccodes/definitions/grib2/template.7.61.def new file mode 100644 index 00000000..ef5c7101 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.61.def @@ -0,0 +1,32 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.6, Grid point data - simple packing with preprocessing +# Octets 6-nn : Binary data values - binary string, with each (scaled) + +meta codedValues data_g2simple_packing_with_preprocessing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor, + typeOfPreProcessing, + preProcessingParameter + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.7.second_order.def b/eccodes/definitions/grib2/template.7.second_order.def new file mode 100644 index 00000000..2e179670 --- /dev/null +++ b/eccodes/definitions/grib2/template.7.second_order.def @@ -0,0 +1,56 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 7.2, Grid point data - complex packing + +position offsetBeforeData; + +constant orderOfSpatialDifferencing = 0; +constant numberOfOctetsExtraDescriptors = 0; + +meta codedValues data_g2second_order_packing( + section7Length, + offsetBeforeData, + offsetSection7, + unitsFactor, + unitsBias, + changingPrecision, + numberOfCodedValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + #g2second_order_packing + halfByte, + packingType, + grid_ieee, + precision, + widthOfFirstOrderValues, + firstOrderValues, + N1, + N2, + numberOfGroups, + codedNumberOfGroups, + numberOfSecondOrderPackedValues, + extraValues, + groupWidths, + widthOfWidths, + groupLengths, + widthOfLengths, + NL, + SPD, + widthOfSPD, + orderOfSPD, + numberOfPoints + +): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib2/template.second_order.def b/eccodes/definitions/grib2/template.second_order.def new file mode 100644 index 00000000..f9bf1abc --- /dev/null +++ b/eccodes/definitions/grib2/template.second_order.def @@ -0,0 +1 @@ +#TODO diff --git a/eccodes/definitions/grib2/tiggeLocalVersion.table b/eccodes/definitions/grib2/tiggeLocalVersion.table new file mode 100644 index 00000000..c5bbcd23 --- /dev/null +++ b/eccodes/definitions/grib2/tiggeLocalVersion.table @@ -0,0 +1 @@ +1 TIGGE-LAM TIGGE LAM diff --git a/eccodes/definitions/grib2/tigge_name.def b/eccodes/definitions/grib2/tigge_name.def new file mode 100644 index 00000000..76fbb84b --- /dev/null +++ b/eccodes/definitions/grib2/tigge_name.def @@ -0,0 +1,45 @@ +# Automatically generated by ./tigge_def.pl, do not edit + + '10_meter_u_velocity' = { parameter = 165; } + '10_meter_v_velocity' = { parameter = 166; } + '10_metre_wind_gust_of_at_least_15_m/s' = { parameter = 131070; } + '10_metre_wind_gust_of_at_least_25_m/s' = { parameter = 131071; } + 'convective_available_potential_energy' = { parameter = 59; } + 'convective_inhibition' = { parameter = 228001; } + 'field_capacity' = { parameter = 228170; } + 'geopotential_height' = { parameter = 156; } + 'land_sea_mask' = { parameter = 172; } + 'maximum_wind_gust' = { parameter = 49; } + 'mean_sea_level_pressure' = { parameter = 151; } + 'orography' = { parameter = 228002; } + 'potential_temperature' = { parameter = 3; } + 'potential_vorticity' = { parameter = 60; } + 'sea_surface_temperature_anomaly' = { parameter = 171034; } + 'skin_temperature' = { parameter = 235; } + 'snow_depth_water_equivalent' = { parameter = 228141; } + 'snow_fall_water_equivalent' = { parameter = 228144; } + 'soil_moisture' = { parameter = 228039; } + 'soil_temperature' = { parameter = 228139; } + 'specific_humidity' = { parameter = 133; } + 'sunshine_duration' = { parameter = 189; } + 'surface_air_dew_point_temperature' = { parameter = 168; } + 'surface_air_maximum_temperature' = { parameter = 121; } + 'surface_air_minimum_temperature' = { parameter = 122; } + 'surface_air_temperature' = { parameter = 167; } + 'surface_pressure' = { parameter = 134; } + 'temperature' = { parameter = 130; } + 'time_integrated_outgoing_long_wave_radiation' = { parameter = 179; } + 'time_integrated_surface_latent_heat_flux' = { parameter = 147; } + 'time_integrated_surface_net_solar_radiation' = { parameter = 176; } + 'time_integrated_surface_net_thermal_radiation' = { parameter = 177; } + 'time_integrated_surface_sensible_heat_flux' = { parameter = 146; } + 'total_cloud_cover' = { parameter = 228164; } + 'total_column_water' = { parameter = 136; } + 'total_precipitation' = { parameter = 228228; } + 'total_precipitation_of_at_least_10_mm' = { parameter = 131062; } + 'total_precipitation_of_at_least_20_mm' = { parameter = 131063; } + 'u_velocity' = { parameter = 131; } + 'v_velocity' = { parameter = 132; } + 'wilting_point' = { parameter = 228171; } + 'default' = { parameter = 99999; } + diff --git a/eccodes/definitions/grib2/tigge_parameter.def b/eccodes/definitions/grib2/tigge_parameter.def new file mode 100644 index 00000000..3ded0bb1 --- /dev/null +++ b/eccodes/definitions/grib2/tigge_parameter.def @@ -0,0 +1,395 @@ +# Automatically generated by ./tigge_def.pl, do not edit + +# 10_meter_u_velocity +'165' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; +} + +# 10_meter_v_velocity +'166' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 3; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; +} + +# 10_metre_wind_gust_of_at_least_15_m/s +'131070' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + productDefinitionTemplateNumber = 9; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + scaledValueOfLowerLimit = 15; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; +} + +# 10_metre_wind_gust_of_at_least_25_m/s +'131071' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + productDefinitionTemplateNumber = 9; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + scaledValueOfLowerLimit = 25; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; +} + +# convective_available_potential_energy +'59' = { + discipline = 0; + parameterCategory = 7; + parameterNumber = 6; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; +} + +# convective_inhibition +'228001' = { + discipline = 0; + parameterCategory = 7; + parameterNumber = 7; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; +} + +# field_capacity +'228170' = { + discipline = 2; + parameterCategory = 3; + parameterNumber = 12; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; +} + +# geopotential_height +'156' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 5; + typeOfFirstFixedSurface = 100; +} + +# land_sea_mask +'172' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 1; +} + +# maximum_wind_gust +'49' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; +} + +# mean_sea_level_pressure +'151' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 0; + typeOfFirstFixedSurface = 101; +} + +# orography +'228002' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 5; + typeOfFirstFixedSurface = 1; +} + +# potential_temperature +'3' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 6; + scaledValueOfFirstFixedSurface = 2; + typeOfFirstFixedSurface = 109; +} + +# potential_vorticity +'60' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 14; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 320; + typeOfFirstFixedSurface = 107; +} + +# sea_surface_temperature_anomaly +'171034' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 9; + typeOfFirstFixedSurface = 1; +} + +# skin_temperature +'235' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 17; + typeOfFirstFixedSurface = 1; +} + +# snow_depth_water_equivalent +'228141' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 60; + typeOfFirstFixedSurface = 1; +} + +# snow_fall_water_equivalent +'228144' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 53; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# soil_moisture +'228039' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 22; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; +} + +# soil_temperature +'228139' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; +} + +# specific_humidity +'133' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 0; + typeOfFirstFixedSurface = 100; +} + +# sunshine_duration +'189' = { + discipline = 0; + parameterCategory = 6; + parameterNumber = 24; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# surface_air_dew_point_temperature +'168' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 6; + typeOfFirstFixedSurface = 103; +} + +# surface_air_maximum_temperature +'121' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; +} + +# surface_air_minimum_temperature +'122' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 3; +} + +# surface_air_temperature +'167' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; +} + +# surface_pressure +'134' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 0; + typeOfFirstFixedSurface = 1; +} + +# temperature +'130' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 100; +} + +# time_integrated_outgoing_long_wave_radiation +'179' = { + discipline = 0; + parameterCategory = 5; + parameterNumber = 5; + typeOfFirstFixedSurface = 8; + typeOfStatisticalProcessing = 1; +} + +# time_integrated_surface_latent_heat_flux +'147' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 10; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# time_integrated_surface_net_solar_radiation +'176' = { + discipline = 0; + parameterCategory = 4; + parameterNumber = 9; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# time_integrated_surface_net_thermal_radiation +'177' = { + discipline = 0; + parameterCategory = 5; + parameterNumber = 5; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# time_integrated_surface_sensible_heat_flux +'146' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 11; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# total_cloud_cover +'228164' = { + discipline = 0; + parameterCategory = 6; + parameterNumber = 1; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; +} + +# total_column_water +'136' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 51; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; +} + +# total_precipitation +'228228' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# total_precipitation_of_at_least_10_mm +'131062' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + productDefinitionTemplateNumber = 9; + scaledValueOfLowerLimit = 10; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# total_precipitation_of_at_least_20_mm +'131063' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + productDefinitionTemplateNumber = 9; + scaledValueOfLowerLimit = 20; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; +} + +# u_velocity +'131' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 2; +} + +# unknown +'default' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; +} + +# v_velocity +'132' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 3; +} + +# wilting_point +'228171' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 26; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; +} diff --git a/eccodes/definitions/grib2/tigge_short_name.def b/eccodes/definitions/grib2/tigge_short_name.def new file mode 100644 index 00000000..42ef5c6e --- /dev/null +++ b/eccodes/definitions/grib2/tigge_short_name.def @@ -0,0 +1,44 @@ +# Automatically generated by ./tigge_def.pl, do not edit + + '10fgg25' = { parameter = 131071; } + '10fgg15' = { parameter = 131070; } + '10v' = { parameter = 166; } + '10u' = { parameter = 165; } + '10u' = { parameter = 49; } + 'ci' = { parameter = 228001; } + 'cap' = { parameter = 228170; } + 'cape' = { parameter = 59; } + 'gh' = { parameter = 156; } + 'lsm' = { parameter = 172; } + 'msl' = { parameter = 151; } + 'orog' = { parameter = 228002; } + 'sd' = { parameter = 228141; } + 'mx2t6' = { parameter = 121; } + '2d' = { parameter = 168; } + 'pv' = { parameter = 60; } + 'pt' = { parameter = 3; } + 'sf' = { parameter = 228144; } + 'skt' = { parameter = 235; } + 'sm' = { parameter = 228039; } + 'str' = { parameter = 177; } + 'sund' = { parameter = 189; } + 'mn2t6' = { parameter = 122; } + 'q' = { parameter = 133; } + 'ssta' = { parameter = 171034; } + '2t' = { parameter = 167; } + 'tcw' = { parameter = 136; } + 'slhf' = { parameter = 147; } + 'st' = { parameter = 228139; } + 'sshf' = { parameter = 146; } + 'sp' = { parameter = 134; } + 't' = { parameter = 130; } + 'tcc' = { parameter = 228164; } + 'ssr' = { parameter = 176; } + 'tpg10' = { parameter = 131062; } + 'tpg20' = { parameter = 131063; } + 'ttr' = { parameter = 179; } + 'tp' = { parameter = 228228; } + 'u' = { parameter = 131; } + 'v' = { parameter = 132; } + 'wilt' = { parameter = 228171; } + 'default' = { parameter = 99999; } diff --git a/eccodes/definitions/grib2/tigge_suiteName.table b/eccodes/definitions/grib2/tigge_suiteName.table new file mode 100644 index 00000000..09afac2c --- /dev/null +++ b/eccodes/definitions/grib2/tigge_suiteName.table @@ -0,0 +1,12 @@ +0 unknown unknown +1 mogreps-mo-eua Unified model based LAM-EPS run by UK Met Office +2 sreps-aemet-eua Multi model based LAM-EPS run by AEMET (Spain) +3 srnwppeps-dwd-eua Poor man's LAM-EPS run by DWD (Germany) +4 cosmoleps-arpasimc-eu COSMO model based LAM-EPS run by ARPA-SIM (Italy) +6 aladinlaef-zamg-eu ALADIN model based LAM-EPS run by ZAMG (Austria) +7 cosmodeeps-dwd-eu COSMO model based LAM-EPS run by DWD (Germany) +9 glameps-hirlamcons-eu ALADIN and HIRLAM models based LAM-EPS run by HIRLAM and ALADIN consortium +10 aromeeps-mf-eu AROME model based LAM-EPS run by Meteo-France +11 hirlam-dmi-eu HIRLAM model based LAM-EPS run by DMI (Denmark) +12 aladinhuneps-omsz-eu ALADIN model based LAM-EPS run by OMSZ (Hungary) +13 pearp-mf-eu ARPEGE model based LAM-EPS run by Meteo-France diff --git a/eccodes/definitions/grib2/typeOfLevelConcept.def b/eccodes/definitions/grib2/typeOfLevelConcept.def new file mode 100644 index 00000000..550fe2d1 --- /dev/null +++ b/eccodes/definitions/grib2/typeOfLevelConcept.def @@ -0,0 +1,49 @@ +# Concept typeOfLevel +'surface' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +'cloudBase' = {typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255;} +'cloudTop' = {typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255;} +'isothermZero' = {typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255;} +'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255;} +'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} +'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} +'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} +'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} +# Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name +'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} +'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} +'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa';} +'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} +'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} +'meanSea' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} +'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} +'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} +'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} +'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} +'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} +'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} +'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} +'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} +'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105;} +'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} +'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} +'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} +'thetaLayer' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=107;} +'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} +'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} +'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} +'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} +'soil' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} +'soilLayer' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} +# In the case of Generalized vertical height coordinates, NV must be 6 +'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} +'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} +'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} +'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} +'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} +'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} +'snow' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} +'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +'seaIce' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} +'seaIceLayer' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} +'mixedLayerDepth' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} diff --git a/eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def b/eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def new file mode 100644 index 00000000..4a36af70 --- /dev/null +++ b/eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def @@ -0,0 +1,5 @@ +'undefined' = { numberOfGridInReference = 0; } +'T grid' = { numberOfGridInReference = 1; } +'U grid' = { numberOfGridInReference = 2; } +'V grid' = { numberOfGridInReference = 3; } +'W grid' = { numberOfGridInReference = 4; } diff --git a/eccodes/definitions/grib2/units.def b/eccodes/definitions/grib2/units.def new file mode 100644 index 00000000..45c722ca --- /dev/null +++ b/eccodes/definitions/grib2/units.def @@ -0,0 +1,4140 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 1 ; + } +#Total precipitation of at least 5 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 5 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 40 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 40 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 60 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + scaledValueOfLowerLimit = 60 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 80 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 80 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 100 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 100 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 150 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 150 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 200 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 200 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation of at least 300 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 3 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = -2 ; + } +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Unbalanced component of temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 31 ; + } +#Unbalanced component of divergence +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 45 ; + } +#Sea ice area fraction +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'K' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'~' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Specific rain water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Total column cloud liquid water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 69 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Total column cloud ice water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 70 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Surface solar radiation downwards +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net solar radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Ozone mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Surface net solar radiation, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Temperature of snow layer +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } +#Specific cloud liquid water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'(0 - 1)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#Total precipitation of at least 25 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation of at least 50 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 50 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind gust of at least 10 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 103 ; + } +#Probability of temperature standardized anomaly greater than 1 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfLowerLimit = 1 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + } +#Probability of temperature standardized anomaly greater than 1.5 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 1 ; + scaledValueOfLowerLimit = 15 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + } +#Probability of temperature standardized anomaly greater than 2 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 2 ; + } +#Probability of temperature standardized anomaly less than -1 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + probabilityType = 0 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = -1 ; + productDefinitionTemplateNumber = 9 ; + } +#Probability of temperature standardized anomaly less than -1.5 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 10 ; + scaleFactorOfLowerLimit = 1 ; + scaledValueOfLowerLimit = -15 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 0 ; + } +#Probability of temperature standardized anomaly less than -2 standard deviation +'%' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = -2 ; + productDefinitionTemplateNumber = 9 ; + probabilityType = 0 ; + typeOfStatisticalProcessing = 10 ; + } +#Mean sea water potential temperature in the upper 300 m +'K' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Mean sea water temperature in the upper 300 m +'K' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Sea surface practical salinity +'psu' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + scaledValueOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#2 metre specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Ammonium aerosol mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Nitrate aerosol optical depth at 550 nm +'dimensionless' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62004 ; + typeOfSizeInterval = 255 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 55 ; + } +#Ammonium aerosol optical depth at 550 nm +'dimensionless' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62003 ; + scaleFactorOfFirstWavelength = 8 ; + is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + } +#Ammonium aerosol mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Dry deposition of ammonium aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Sedimentation of ammonium aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Wet deposition of ammonium aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Wet deposition of ammonium aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of ammonium aerosol +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#-10 degrees C isothermal level (atm) +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 26315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#0 degrees C isothermal level (atm) +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 20 ; + scaledValueOfFirstFixedSurface = 27315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Maximum CAPE in the last 6 hours +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Maximum CAPES in the last 6 hours +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 19 ; + lengthOfTimeRange = 6 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity with respect to water +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Liquid water content in snow pack +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } +#Height of convective cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Instantaneous total lightning flash density +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged total lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; + } +#Instantaneous cloud-to-ground lightning flash density +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Averaged cloud-to-ground lightning flash density in the last hour +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + lengthOfTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + } +#Unbalanced component of specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Averaged total lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; + } +#Averaged total lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + typeOfSecondFixedSurface = 8 ; + } +#Averaged cloud-to-ground lightning flash density in the last 3 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Averaged cloud-to-ground lightning flash density in the last 6 hours +'km**-2 day**-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 2 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil moisture top 20 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil moisture top 100 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Soil temperature top 100 cm +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } +#Convective precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mixed-layer CAPE in the lowest 50 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Most-unstable CIN +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#200 metre U wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#200 metre V wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#200 metre wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + } +#100 metre wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mean temperature tendency due to short-wave radiation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'m s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'m s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'kg m**-3 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'kg m**-3 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Time integral of rain flux +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface eastward momentum flux +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface northward momentum flux +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Cross sectional area of flow in channel +'m**2' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'m**3 s**-1 m**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'m**3 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'m**3' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'m**3' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'(0 - 1)' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'Integer' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Mean discharge in the last 6 hours +'m**3 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean discharge in the last 24 hours +'m**3 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth at elevation bands +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Latitude +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + } +#Longitude +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + } +#Latitude on T grid +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Longitude on T grid +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 1 ; + } +#Latitude on U grid +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Longitude on U grid +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 2 ; + } +#Latitude on V grid +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Longitude on V grid +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 3 ; + } +#Latitude on W grid +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Longitude on W grid +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 4 ; + } +#Latitude on F grid +'Degree N' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 1 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Longitude on F grid +'Degree E' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 2 ; + gridDefinitionTemplateNumber = 101 ; + numberOfGridInReference = 5 ; + } +#Total column graupel +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 74 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#2 metre relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Apparent temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'Degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Direct short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation in the last 6 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + lengthOfTimeRange = 6 ; + is_uerra = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Evaporation in the last 24 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 24 ; + is_uerra = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total precipitation in the last 6 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + is_efas = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total precipitation in the last 24 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + is_efas = 1 ; + lengthOfTimeRange = 24 ; + } +#Fraction of snow cover +'Proportion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 121 ; + } +#Clear air turbulence (CAT) +'m**2/3 s**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 29 ; + } +#Mountain wave turbulence (eddy dissipation rate) +'m**2/3 s**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 28 ; + } +#Soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'kg m**-2 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'m' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Percolation +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Code table 4.217' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Code table 4.218' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Code table 4.223' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Forest fire weather index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Fine fuel moisture code +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Duff moisture code +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Drought code +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Initial fire spread index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Fire buildup index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Fire daily severity rating +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Cloudy radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Keetch-Byram drought index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'m s**-1' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'%' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'J m**-2' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } +#Universal thermal climate index +'K' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Mean radiant temperature +'K' = { + discipline = 20 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Fraction of Malaria cases +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Malaria circumsporozoite protein ratio +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Plasmodium falciparum entomological inoculation rate +'Bites per day per person' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Human bite rate by anopheles vectors +'Bites per day per person' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Malaria immunity ratio +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Falciparum parasite ratio +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Detectable falciparum parasite ratio (after day 10) +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Anopheles vector to host ratio +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Anopheles vector density +'Number m**-2' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Fraction of malarial vector reproductive habitat +'Fraction' = { + discipline = 20 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Population density +'Person m**-2' = { + discipline = 20 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Virtual temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'Degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Mean zero-crossing wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 28 ; + } +#Significant height of combined wind waves and swell +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Peak wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Mean wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Eastward sea water velocity +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 160 ; + } +#Northward sea water velocity +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 160 ; + } +#Sea surface height +'m' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Depth of 20C isotherm +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 20 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#Average salinity in the upper 300m +'psu' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 21 ; + typeOfSecondFixedSurface = 160 ; + typeOfFirstFixedSurface = 160 ; + scaledValueOfSecondFixedSurface = 300 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 0 ; + } +#Surface runoff +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Sea-ice thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre U wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#100 metre V wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 100 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Total precipitation of at least 10 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 20 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Stream function +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'K' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Skin temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'day' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'code table (4.201)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'code table (4.202)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'W m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'Proportion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth (deprecated) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Numeric' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'code table (4.203)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'code table (4.204)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'code table (4.205)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'m s**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'kg m**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'code table (4.206)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'code table (4.207)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'code table (4.208)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'code table (4.209)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'code table (4.210)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'code table (4.211)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Relative clear air turbulence (RCAT) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'CCITTIA5' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'(code table 4.215)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'(code table 4.216)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'%' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'kg**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'code table (4.212)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'kg m**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'m s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'s m**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'kg m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'kg m**-2 s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Code table 4.219' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'Numeric' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'K' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'m' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'K m**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'kg kg**-1' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Degree true' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'J' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre wind gust of at least 15 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 15 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#10 metre wind gust of at least 20 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 20 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + } +#Convective inhibition +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Total Precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib2/unstructuredGridConcept.def b/eccodes/definitions/grib2/unstructuredGridConcept.def new file mode 100644 index 00000000..49b90fd9 --- /dev/null +++ b/eccodes/definitions/grib2/unstructuredGridConcept.def @@ -0,0 +1,5 @@ +'undefined' = { numberOfGridUsed = 0; } +'ORCA2' = { numberOfGridUsed = 1; } +'ORCA1' = { numberOfGridUsed = 2; } +'ORCA025' = { numberOfGridUsed = 3; } +'ORCA12' = { numberOfGridUsed = 4; } diff --git a/eccodes/definitions/grib2/unstructuredGridSubtype.def b/eccodes/definitions/grib2/unstructuredGridSubtype.def new file mode 100644 index 00000000..6c68ab7d --- /dev/null +++ b/eccodes/definitions/grib2/unstructuredGridSubtype.def @@ -0,0 +1 @@ +"unknown" = {dummy=0;} diff --git a/eccodes/definitions/grib2/unstructuredGridType.def b/eccodes/definitions/grib2/unstructuredGridType.def new file mode 100644 index 00000000..6c68ab7d --- /dev/null +++ b/eccodes/definitions/grib2/unstructuredGridType.def @@ -0,0 +1 @@ +"unknown" = {dummy=0;} diff --git a/eccodes/definitions/grib2/unstructuredGridUUID.def b/eccodes/definitions/grib2/unstructuredGridUUID.def new file mode 100644 index 00000000..6c68ab7d --- /dev/null +++ b/eccodes/definitions/grib2/unstructuredGridUUID.def @@ -0,0 +1 @@ +"unknown" = {dummy=0;} diff --git a/eccodes/definitions/grib3/boot.def b/eccodes/definitions/grib3/boot.def new file mode 100644 index 00000000..92a16c2c --- /dev/null +++ b/eccodes/definitions/grib3/boot.def @@ -0,0 +1,31 @@ +# (C) Copyright 2005- 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. +# + +constant one = 1 : hidden ; +constant million = 1000000 : hidden; +constant grib3divider = 1000000; +alias extraDimensionPresent=zero; +alias is_tigge = zero; +alias is_s2s = zero; +transient angleSubdivisions=grib3divider; # micro degrees + +meta gts_header gts_header() : no_copy,hidden,read_only; +meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; +meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; +meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; + +transient missingValue = 9999; +constant ieeeFloats = 1 : edition_specific; +constant isHindcast = 0; + +include "grib3/section.00.def"; #Indicator Section + +template core "grib3/sections.def"; + +template section_11 "grib3/section.11.def"; #End Section diff --git a/eccodes/definitions/grib3/centre.table b/eccodes/definitions/grib3/centre.table new file mode 100644 index 00000000..85cde3fc --- /dev/null +++ b/eccodes/definitions/grib3/centre.table @@ -0,0 +1,150 @@ +# COMMON CODE TABLE C-11: Originating/generating centres +0 0 WMO Secretariat +1 ammc Melbourne (WMC) +2 2 Melbourne (WMC) +4 rums Moscow (WMC) +5 5 Moscow (WMC) +7 kwbc US National Weather Service - NCEP (WMC) +8 8 US National Weather Service - NWSTG (WMC) +9 9 US National Weather Service - Other (WMC) +10 10 Cairo (RSMC/RAFC) +12 12 Dakar (RSMC/RAFC) +14 14 Nairobi (RSMC/RAFC) +16 16 Atananarivo (RSMC) +18 18 Tunis-Casablanca (RSMC) +20 20 Las Palmas (RAFC) +21 21 Algiers (RSMC) +22 22 Lagos (RSMC) +24 fapr Pretoria (RSMC) +26 26 Khabarovsk (RSMC) +28 28 New Delhi (RSMC/RAFC) +30 30 Novosibirsk (RSMC) +32 32 Tashkent (RSMC) +33 33 Jeddah (RSMC) +34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) +36 36 Bankok +37 37 Ulan Bator +38 babj Beijing (RSMC) +40 rksl Seoul +41 sabm Buenos Aires (RSMC/RAFC) +43 43 Brasilia (RSMC/RAFC) +45 45 Santiago +46 sbsj Brasilian Space Agency - INPE +51 51 Miami (RSMC/RAFC) +52 52 National Hurricane Center, Miami +53 53 Canadian Meteorological Service - Montreal (RSMC) +54 cwao Canadian Meteorological Service - Montreal (RSMC) +55 55 San Francisco +57 57 U.S. Air Force - Global Weather Center +58 fnmo US Navy - Fleet Numerical Oceanography Center +59 59 NOAA Forecast Systems Lab, Boulder CO +60 60 National Center for Atmospheric Research (NCAR), Boulder, CO +64 64 Honolulu +65 65 Darwin (RSMC) +67 67 Melbourne (RSMC) +69 nzkl Wellington (RSMC/RAFC) +74 egrr U.K. Met Office - Exeter +76 76 Moscow (RSMC/RAFC) +78 edzw Offenbach (RSMC) +80 cnmc Rome (RSMC) +82 eswi Norrkoping +84 lfpw French Weather Service - Toulouse +85 lfpw French Weather Service - Toulouse +86 efkl Helsinki +87 87 Belgrade +88 enmi Oslo +89 89 Prague +90 90 Episkopi +91 91 Ankara +92 92 Frankfurt/Main (RAFC) +93 93 London (WAFC) +94 ekmi Copenhagen +95 95 Rota +96 96 Athens +97 97 European Space Agency (ESA) +98 ecmf European Centre for Medium-Range Weather Forecasts +99 99 DeBilt, Netherlands +#100 to 109 Reserved for centres in Region I which are not in the list above +110 110 Hong-Kong +#111 to 133 Reserved for centres in Region II which are not in the list above +#134 to 153 Reserved for centres in Region I which are not listed above +#154 to 159 Reserved for centres in Region III which are not in the list above +160 160 US NOAA/NESDIS +# 161 to 185 Reserved for centres in Region IV which are not in the list above +# 186 to 198 Reserved for centres in Region I which are not listed above +# 199 to 209 Reserved for centres in Region V which are not in the list above +195 wiix Indonesia (NMC) +204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) +210 210 Frascati (ESA/ESRIN) +211 211 Lannion +212 212 Lisboa +213 213 Reykjavik +214 lemm INM +215 lssw Zurich +216 216 Service ARGOS Toulouse +217 217 Bratislava +218 habp Budapest +219 219 Ljubljana +220 220 Warsaw +221 221 Zagreb +222 222 Albania (NMC) +223 223 Armenia (NMC) +224 lowm Austria +227 ebum Belgium (NMC) +228 228 Bosnia and Herzegovina (NMC) +229 229 Bulgaria (NMC) +230 230 Cyprus (NMC) +231 231 Estonia (NMC) +232 232 Georgia (NMC) +233 eidb Dublin +234 234 Israel (NMC) +235 ingv INGV +239 crfc CERFAX +240 240 Malta (NMC) +241 241 Monaco +242 242 Romania (NMC) +244 vuwien VUWien +245 knmi KNMI +246 ifmk IfM-Kiel +247 hadc Hadley Centre +250 cosmo COnsortium for Small scale MOdelling (COSMO) +251 251 Meteorological Cooperation on Operational NWP (MetCoOp) +252 mpim Max Planck Institute for Meteorology (MPI-M) +254 eums EUMETSAT Operation Centre +255 consensus Consensus +256 256 Angola (NMC) +257 257 Benin (NMC) +258 258 Botswana (NMC) +259 259 Burkina Faso (NMC) +260 260 Burundi (NMC) +261 261 Cameroon (NMC) +262 262 Cabo Verde (NMC) +263 263 Central African Republic (NMC) +264 264 Chad (NMC) +265 265 Comoros (NMC) +266 266 Democratic Republic of the Congo (NMC) +267 267 Djibouti (NMC) +268 268 Eritrea (NMC) +269 269 Ethiopia (NMC) +270 270 Gabon (NMC) +271 271 Gambia (NMC) +272 272 Ghana (NMC) +273 273 Guinea (NMC) +274 274 Guinea-Bissau (NMC) +275 275 Lesotho (NMC) +276 276 Liberia (NMC) +277 277 Malawi (NMC) +278 278 Mali (NMC) +279 279 Mauritania (NMC) +280 280 Namibia (NMC) +281 281 Nigeria (NMC) +282 282 Rwanda (NMC) +283 283 Sao Tome and Principe (NMC) +284 284 Sierra Leone (NMC) +285 285 Somalia (NMC) +286 286 Sudan (NMC) +287 287 Swaziland (NMC) +288 288 Togo (NMC) +289 289 Zambia (NMC) + +65535 65535 Missing value diff --git a/eccodes/definitions/grib3/cfName.def b/eccodes/definitions/grib3/cfName.def new file mode 100644 index 00000000..6fc0e444 --- /dev/null +++ b/eccodes/definitions/grib3/cfName.def @@ -0,0 +1,162 @@ +# Automatically generated by ./create_param.pl, do not edit +#Geopotential +'geopotential' = { + discipline = 0 ; + parameterNumber = 4 ; + parameterCategory = 3 ; + } +#Temperature +'air_temperature' = { + discipline = 0 ; + parameterNumber = 0 ; + parameterCategory = 0 ; + } +#u-component of wind +'eastward_wind' = { + discipline = 0 ; + parameterNumber = 2 ; + parameterCategory = 2 ; + } +#v-component of wind +'northward_wind' = { + discipline = 0 ; + parameterNumber = 3 ; + parameterCategory = 2 ; + } +#Specific humidity +'specific_humidity' = { + discipline = 0 ; + parameterNumber = 0 ; + parameterCategory = 1 ; + } +#Surface pressure +'surface_air_pressure' = { + discipline = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 3 ; + } +#Vertical velocity (geometric) +'lagrangian_tendency_of_air_pressure' = { + discipline = 0 ; + parameterNumber = 8 ; + parameterCategory = 2 ; + } +#Relative vorticity +'atmosphere_relative_vorticity' = { + discipline = 0 ; + parameterNumber = 12 ; + parameterCategory = 2 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + discipline = 0 ; + parameterNumber = 20 ; + parameterCategory = 2 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + discipline = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 0 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + discipline = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 0 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + discipline = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + parameterCategory = 3 ; + } +#Relative divergence +'divergence_of_wind' = { + discipline = 0 ; + parameterNumber = 13 ; + parameterCategory = 2 ; + } +#Geopotential height +'geopotential_height' = { + discipline = 0 ; + parameterNumber = 5 ; + parameterCategory = 3 ; + } +#Relative humidity +'relative_humidity' = { + discipline = 0 ; + parameterNumber = 1 ; + parameterCategory = 1 ; + } +#Land-sea mask +'land_binary_mask' = { + discipline = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 0 ; + } +#Surface roughness +'surface_roughness_length' = { + discipline = 2 ; + parameterNumber = 1 ; + parameterCategory = 0 ; + } +#Surface solar radiation +'surface_net_upward_longwave_flux' = { + discipline = 0 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 4 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + discipline = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + parameterCategory = 5 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + discipline = 0 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 8 ; + parameterCategory = 5 ; + typeOfStatisticalProcessing = 1 ; +} +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; +} diff --git a/eccodes/definitions/grib3/cfVarName.def b/eccodes/definitions/grib3/cfVarName.def new file mode 100644 index 00000000..538cd031 --- /dev/null +++ b/eccodes/definitions/grib3/cfVarName.def @@ -0,0 +1,3009 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea-ice cover +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'rsn' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'sst' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'slt' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'fg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#Specific rain water content +'crwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'cswc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Surface solar radiation downwards +'ssrd' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'strd' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Eastward turbulent surface stress +'ewss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'nsss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Ozone mass mixing ratio +'o3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Specific cloud liquid water content +'clwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'ciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'cc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'lsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth +'sde' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'rhw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'rhi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'asn' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'fspc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'fcpc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Height of convective cloud top +'hcct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Unbalanced component of specific humidity +'ucq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'ucclwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'ucciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + } +#Soil temperature top 20 cm +'st20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 100 cm +'st100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Water runoff and drainage +'ro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mean temperature tendency due to short-wave radiation +'mttswr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'mttlwr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'mttswrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'mttlwrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'mttpm' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'mqtpm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'mutpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'mvtpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'mumf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'mdmf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'mudr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'mddr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'mtpf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'mtdch' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Cross sectional area of flow in channel +'chcross' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'chside' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'dis' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'rivsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'fldsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'fldfrc' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'dslr' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'frost' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'woss' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'tpups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'smups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Snow depth at elevation bands +'sd_elev' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'gwus' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'gwls' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Surface air relative humidity +'r2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'aptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'hindex' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'ccl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'evarate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'wdir10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'dirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'difswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'tidirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil temperature +'sot' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'dswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'uswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'dlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'sohf' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'percr' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'sod' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'adswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'auswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'adlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'perc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'clbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'csbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'p260530' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'p260531' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'p260532' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'p260533' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'p260534' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'p260535' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'p260536' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'p260537' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'p260538' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'p260539' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Cloudy radiance (with respect to wave number) +'p260550' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'p260551' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'p260552' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'p260553' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'p260554' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'p260555' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'p260556' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Virtual temperature +'vtmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'vptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'mwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Mean wave period +'mwp' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Surface runoff +'sro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'cape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'pv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'z' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'sp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'tcw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'vo' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'bld' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'sshf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'slhf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'d' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'u10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'v10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'t2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'d2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'lsm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'sr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'str' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'sund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'btmp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'si10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Skin temperature +'skt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'lhtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'shtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'heatx' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'wcf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'mindpd' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'snohf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'vapp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'ncpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'srweq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'snoc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'snol' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'snoag' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'absh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'ptype' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'iliqw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'clwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'icmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'rwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'snmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'maxrh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'maxah' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'asnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'pwcat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'grle' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'crain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'cfrzr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'cicep' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'csnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'cprat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'mdiv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'cpofp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'pevap' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'pevpr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'snowc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'frain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'rime' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'tcolr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tcols' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'lswp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'cwp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'twatp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'tsnowp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'tcwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'tprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'tsrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'lsprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'lssrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'tsrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'csrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'lssrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'tciwv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'rprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'sprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'fprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'iprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'uflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'vflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'maxgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'ugust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'vgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'vwsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'mflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'ustm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'vstm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'cd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'fricv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'prmsl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'dist' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'alts' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'thick' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'presalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'denalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'wavh5' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'p260081' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'p260082' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'hpbl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'p260084' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'sdsgso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'nswrt' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'dswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'uswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'nswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'photar' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'nswrfcs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'dwuvr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'uviucs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'uvi' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'nlwrt' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'nlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'nlwrcs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'cice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'cwat' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'cdca' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'tmaxt' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'thunc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'cdcb' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'ceil' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'cdlyr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'cwork' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'cuefi' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'tcolw' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'tcoli' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'tcolc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'fice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'cdcimr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'suns' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'p260120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'kx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'kox' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'totalx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'sx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'hlcy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'ehlx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'lftx4' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'aerot' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'tozne' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'tcioz' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'bswid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'bref' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'brvel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'veril' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'lmaxbr' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'prec' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'acces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'aciod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'acradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'gdces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'gdiod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'gdradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'tiaccp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'tiacip' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'tiacrp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'volash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'icit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'icib' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'ici' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'turbt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'turbb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'turb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'tke' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'pblreg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'conti' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'contet' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'contt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'contb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'mxsalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'snfalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'p260163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'p260164' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'cat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'p260166' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'var190m0' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'ffldg' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'ffldro' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'rssc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'esct' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'swepon' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'bgrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'ssrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'cppop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'pposp' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'pop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'land' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'veg' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'watr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'evapt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'mterh' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'landu' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'gflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'mstav' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'sfexc' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'cnwat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'bmixl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'ccond' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'rsmin' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'rcs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'rct' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'rcsol' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'rcq' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'cisoilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'hflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'vsw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'vwiltm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'uplst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'uplsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'lowlsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'botlst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'soill' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'rlyrs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'smref' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'smdry' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'poros' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'liqvsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'voltso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'transo' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'voldec' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'direc' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'soilp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'vsosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'satosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'estp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'irrate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'ctoph' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'ctophqi' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'estu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'estv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'npixu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'solza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'raza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'rfl06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'rfl08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'rfl16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'rfl39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'atmdiv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'wvdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'dirpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'dirc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'spc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'wz' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'ist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'dslm' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'al' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'ptend' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'hstdv' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'dpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'lapr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'rdsp1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'rdsp2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'rdsp3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'ta' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'presa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'absv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'absd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'vucsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'vvcsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'ucurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'vcurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'satd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'prate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'acpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'ssw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'s' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'uice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'vice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'snom' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'grad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'swrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'wmixe' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre Wind gust of at least 15 m/s +'fg10g15' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre Wind gust of at least 20 m/s +'fg10g20' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + } +#Convective inhibition +'cin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'orog' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow Fall water equivalent +'sf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Field capacity +'cap' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wilting point +'wilt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib3/dimension.0.table b/eccodes/definitions/grib3/dimension.0.table new file mode 100644 index 00000000..a53ef534 --- /dev/null +++ b/eccodes/definitions/grib3/dimension.0.table @@ -0,0 +1 @@ +# Vegetation fraction diff --git a/eccodes/definitions/grib3/dimensionTableNumber.table b/eccodes/definitions/grib3/dimensionTableNumber.table new file mode 100644 index 00000000..fcb28eee --- /dev/null +++ b/eccodes/definitions/grib3/dimensionTableNumber.table @@ -0,0 +1 @@ +0 vegetation vegetation diff --git a/eccodes/definitions/grib3/dimensionType.table b/eccodes/definitions/grib3/dimensionType.table new file mode 100644 index 00000000..a724b579 --- /dev/null +++ b/eccodes/definitions/grib3/dimensionType.table @@ -0,0 +1,2 @@ +0 layer layer +255 missing missing diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.82.table b/eccodes/definitions/grib3/grib2LocalSectionNumber.82.table new file mode 100644 index 00000000..923227c4 --- /dev/null +++ b/eccodes/definitions/grib3/grib2LocalSectionNumber.82.table @@ -0,0 +1,4 @@ +0 0 Empty local section +82 82 standard operational SMHI +83 83 MATCH data (standard operational SMHI + extra MATCH keywords) +255 255 MISSING diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.85.table b/eccodes/definitions/grib3/grib2LocalSectionNumber.85.table new file mode 100644 index 00000000..d0f5e6b6 --- /dev/null +++ b/eccodes/definitions/grib3/grib2LocalSectionNumber.85.table @@ -0,0 +1,3 @@ +0 0 Empty local section +1 1 FA section is present +255 255 MISSING diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.98.table b/eccodes/definitions/grib3/grib2LocalSectionNumber.98.table new file mode 100644 index 00000000..c26fccce --- /dev/null +++ b/eccodes/definitions/grib3/grib2LocalSectionNumber.98.table @@ -0,0 +1,21 @@ +0 0 Empty local section +1 1 MARS labelling +7 7 Sensitivity data +9 9 Singular vectors and ensemble perturbations +11 11 Supplementary data used by the analysis +14 14 Brightness temperature +15 15 Seasonal forecast data +16 16 Seasonal forecast monthly mean data +18 18 Multianalysis ensemble data +20 20 4D variational increments +21 21 Sensitive area predictions +24 24 Satellite Channel Data +25 25 4DVar model errors +26 26 MARS labelling or ensemble forecast data (with hindcast support) +28 28 COSMO local area EPS +30 30 Forecasting Systems with Variable Resolution +36 36 MARS labelling for long window 4DVar system +38 38 4D variational increments for long window 4DVar system +39 39 4DVar model errors for long window 4Dvar system +192 192 Multiple ECMWF local definitions +300 300 Multi-dimensional parameters diff --git a/eccodes/definitions/grib3/local.82.0.def b/eccodes/definitions/grib3/local.82.0.def new file mode 100644 index 00000000..ac8d1784 --- /dev/null +++ b/eccodes/definitions/grib3/local.82.0.def @@ -0,0 +1,28 @@ +######################### +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + +# +# This piece of definition is common to all SMHI definitions +# It is only accessed through "include" statement inside local.82.x.def +# + +codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; +codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; +codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; +ksec1expver[4] experimentVersionNumber = "0000" : dump; +# For now, Ensemble stuff is desactivated because it is not used yet +# instead we use a padding of 2 +#unsigned[1] perturbationNumber : dump; +#unsigned[1] numberOfForecastsInEnsemble : dump; +pad reservedNeedNotBePresent(2); +codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; + + + diff --git a/eccodes/definitions/grib3/local.82.82.def b/eccodes/definitions/grib3/local.82.82.def new file mode 100644 index 00000000..7cb9734c --- /dev/null +++ b/eccodes/definitions/grib3/local.82.82.def @@ -0,0 +1,16 @@ +######################### +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + +# base local definition +include "grib2/local.82.0.def"; + +unsigned[1] marsExperimentOffset = 0 : dump, long_type; + + diff --git a/eccodes/definitions/grib3/local.82.83.def b/eccodes/definitions/grib3/local.82.83.def new file mode 100644 index 00000000..2d7d37f6 --- /dev/null +++ b/eccodes/definitions/grib3/local.82.83.def @@ -0,0 +1,22 @@ +################################################# +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +################################# +### LOCAL SECTION DESCRIPTION ### +################################# + + +# base file: contains keywords always present +include "grib2/local.82.0.def"; + +# extra keywords specific to local definition 83 (MATCH) +codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; +codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; +codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; +codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; +unsigned[2] meanSize : dump; + + diff --git a/eccodes/definitions/grib3/local.82.def b/eccodes/definitions/grib3/local.82.def new file mode 100644 index 00000000..2e38242c --- /dev/null +++ b/eccodes/definitions/grib3/local.82.def @@ -0,0 +1,22 @@ +#local section ECMWF + +alias localDefinitionNumber=grib2LocalSectionNumber; +template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; + +##################### +### MARS LABELING ### +##################### + +template mars_labeling "grib2/mars_labeling.82.def"; +template_nofail marsKeywords "mars/eswi/grib2.[stream:s].[type:s].def"; + +################### +### LS LABELING ### +################### + +template ls_labeling "grib2/ls_labeling.82.def"; + + +position offsetAfterLocalSection; + + diff --git a/eccodes/definitions/grib3/local.85.0.def b/eccodes/definitions/grib3/local.85.0.def new file mode 100644 index 00000000..193a2b1b --- /dev/null +++ b/eccodes/definitions/grib3/local.85.0.def @@ -0,0 +1 @@ +label "empty section"; diff --git a/eccodes/definitions/grib3/local.85.1.def b/eccodes/definitions/grib3/local.85.1.def new file mode 100644 index 00000000..c85e4d3c --- /dev/null +++ b/eccodes/definitions/grib3/local.85.1.def @@ -0,0 +1,29 @@ +transient defaultFaFieldName = ""; +transient defaultFaLevelName = ""; +transient defaultFaModelName = ""; + +concept faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; +concept faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; + +# 0 = Accumulation or time range from last event +# 1 = Accumulation or time range from the start +transient LSTCUM = 0; + +# Scaling factor for levels +transient ZLMULT = 1.; +# Base value for levels +transient ZLBASE = 0.; + +# Name in FA +ascii[16] CLNOMA : dump; +# Encoding method +unsigned[8] INGRIB : dump; +# Spectral/grid-point +unsigned[8] LLCOSP : dump; +# Number of bits used to encode each value +unsigned[8] INBITS : dump; + +# FA scaling factor +signed[8] FMULTM = 1 : dump; +signed[8] FMULTE = 0 : dump; diff --git a/eccodes/definitions/grib3/local.85.2.def b/eccodes/definitions/grib3/local.85.2.def new file mode 100644 index 00000000..58fe1d88 --- /dev/null +++ b/eccodes/definitions/grib3/local.85.2.def @@ -0,0 +1,5 @@ +# Hollow grid-point fields used for AROME coupling + +include "grib2/local.85.1.def"; + +unsigned[8] ICPLSIZE : dump; diff --git a/eccodes/definitions/grib3/local.85.def b/eccodes/definitions/grib3/local.85.def new file mode 100644 index 00000000..c6607956 --- /dev/null +++ b/eccodes/definitions/grib3/local.85.def @@ -0,0 +1,3 @@ +alias localDefinitionNumber=grib2LocalSectionNumber; +template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; +position offsetAfterLocalSection; diff --git a/eccodes/definitions/grib3/local.98.0.def b/eccodes/definitions/grib3/local.98.0.def new file mode 100644 index 00000000..e67dcb3f --- /dev/null +++ b/eccodes/definitions/grib3/local.98.0.def @@ -0,0 +1,3 @@ +label "empty section"; + + diff --git a/eccodes/definitions/grib3/local.98.1.def b/eccodes/definitions/grib3/local.98.1.def new file mode 100644 index 00000000..4e4d2f9b --- /dev/null +++ b/eccodes/definitions/grib3/local.98.1.def @@ -0,0 +1,3 @@ +label "local 98.1"; + + diff --git a/eccodes/definitions/grib3/local.98.11.def b/eccodes/definitions/grib3/local.98.11.def new file mode 100644 index 00000000..7c91145a --- /dev/null +++ b/eccodes/definitions/grib3/local.98.11.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- 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. +# + +# Definition 11, Supplementary data used by the analysis + +unsigned[2] yearOfAnalysis = year : dump; +unsigned[1] monthOfAnalysis = month : dump; +unsigned[1] dayOfAnalysis = day : dump; +unsigned[1] hourOfAnalysis = hour : dump; +unsigned[1] minuteOfAnalysis = minute : dump; + +codetable[2] originatingCentreOfAnalysis 'grib1/0.table' = originatingCentre : dump,string_type; + +unsigned[2] subcentreOfAnalysis = subCentre : dump; + +constant secondsOfAnalysis = 0; + +meta dateOfAnalysis g2date(yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; +meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; + +alias date = dateOfAnalysis; +alias time = timeOfAnalysis; diff --git a/eccodes/definitions/grib3/local.98.14.def b/eccodes/definitions/grib3/local.98.14.def new file mode 100644 index 00000000..68a8514e --- /dev/null +++ b/eccodes/definitions/grib3/local.98.14.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# Definition 14, Brightness temperature + +unsigned[4] channelNumber : dump ; +alias mars.channel = channelNumber; diff --git a/eccodes/definitions/grib3/local.98.15.def b/eccodes/definitions/grib3/local.98.15.def new file mode 100644 index 00000000..ec0d6172 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.15.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- 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. +# + + +unsigned[2] systemNumber : dump ; +unsigned[2] methodNumber : dump ; +alias system=systemNumber; +alias method=methodNumber; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; + diff --git a/eccodes/definitions/grib3/local.98.16.def b/eccodes/definitions/grib3/local.98.16.def new file mode 100644 index 00000000..1b2da664 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.16.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- 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. +# + + +unsigned[2] systemNumber : dump ; +unsigned[2] methodNumber : dump ; + +alias local.systemNumber=systemNumber; +alias local.methodNumber=methodNumber; + diff --git a/eccodes/definitions/grib3/local.98.18.def b/eccodes/definitions/grib3/local.98.18.def new file mode 100644 index 00000000..786005b2 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.18.def @@ -0,0 +1,26 @@ +# (C) Copyright 2005- 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. +# + +codetable[1] dataOrigin "grib1/0.table" : dump; +alias mars.origin=dataOrigin; + +ascii[4] modelIdentifier : dump ; + +unsigned[1] consensusCount : dump ; + +consensus list(consensusCount) +{ + ascii[4] ccccIdentifiers : dump; +} + +alias local.dataOrigin=dataOrigin; +alias local.modelIdentifier=modelIdentifier; +alias local.consensusCount=consensusCount; + + diff --git a/eccodes/definitions/grib3/local.98.192.def b/eccodes/definitions/grib3/local.98.192.def new file mode 100644 index 00000000..6382bd8c --- /dev/null +++ b/eccodes/definitions/grib3/local.98.192.def @@ -0,0 +1,20 @@ +# (C) Copyright 2005- 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. +# + +# GRIB2 Local Definition 192: Multiple ECMWF local definitions + +unsigned[1] numberOfLocalDefinitions = 2 : dump; + +if (numberOfLocalDefinitions == 2 ) { + unsigned[1] subLocalDefinitionNumber1 = 1 : dump; + template subDefinitions1 "grib2/local.98.[subLocalDefinitionNumber1].def"; + + unsigned[1] subLocalDefinitionNumber2 = 24 : dump; + template subDefinitions2 "grib2/local.98.[subLocalDefinitionNumber2].def"; +} diff --git a/eccodes/definitions/grib3/local.98.20.def b/eccodes/definitions/grib3/local.98.20.def new file mode 100644 index 00000000..2df29e30 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.20.def @@ -0,0 +1,20 @@ +# (C) Copyright 2005- 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. +# + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; + +unsigned[1] totalNumberOfIterations : dump; +alias totalNumber=totalNumberOfIterations; + +alias iteration = iterationNumber; + +alias local.iterationNumber =iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; + diff --git a/eccodes/definitions/grib3/local.98.21.def b/eccodes/definitions/grib3/local.98.21.def new file mode 100644 index 00000000..2321c07b --- /dev/null +++ b/eccodes/definitions/grib3/local.98.21.def @@ -0,0 +1,42 @@ +# (C) Copyright 2005- 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. +# + +# Definition 21 - Sensitive area predictions + +unsigned[2] forecastOrSingularVectorNumber : dump; + +unsigned[2] numberOfIterations : dump; +unsigned[2] numberOfSingularVectorsComputed : dump; +unsigned[1] normAtInitialTime : dump; +unsigned[1] normAtFinalTime : dump; +unsigned[4] multiplicationFactorForLatLong : dump; +signed[4] northWestLatitudeOfVerficationArea : dump; +signed[4] northWestLongitudeOfVerficationArea : dump; +signed[4] southEastLatitudeOfVerficationArea : dump; +signed[4] southEastLongitudeOfVerficationArea : dump; +unsigned[4] accuracyMultipliedByFactor : dump; +unsigned[2] numberOfSingularVectorsEvolved : dump; + +# Ritz numbers: +signed[4] NINT_LOG10_RITZ : dump; +signed[4] NINT_RITZ_EXP : dump; + +unsigned[1] optimisationTime : dump; +alias mars.opttime = optimisationTime; + +unsigned[1] forecastLeadTime : dump; +alias mars.leadtime = forecastLeadTime; + +ascii[1] marsDomain : dump; +unsigned[2] methodNumber : dump; +unsigned[1] shapeOfVerificationArea : dump; + +# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); +alias mars.domain = marsDomain; + diff --git a/eccodes/definitions/grib3/local.98.24.def b/eccodes/definitions/grib3/local.98.24.def new file mode 100644 index 00000000..b3cd50d3 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.24.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- 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. +# + +unsigned[2] channelNumber : dump, can_be_missing; +alias mars.channel = channelNumber; diff --git a/eccodes/definitions/grib3/local.98.25.def b/eccodes/definitions/grib3/local.98.25.def new file mode 100644 index 00000000..7339ad9b --- /dev/null +++ b/eccodes/definitions/grib3/local.98.25.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +alias totalNumber=numberOfComponents; +unsigned[1] modelErrorType : dump; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; + diff --git a/eccodes/definitions/grib3/local.98.26.def b/eccodes/definitions/grib3/local.98.26.def new file mode 100644 index 00000000..6f7a3f70 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.26.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- 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. +# + +unsigned[4] referenceDate : dump ; +unsigned[4] climateDateFrom : dump; +unsigned[4] climateDateTo : dump ; + +alias local.referenceDate= referenceDate ; +alias local.climateDateFrom= climateDateFrom ; +alias local.climateDateTo= climateDateTo ; + + diff --git a/eccodes/definitions/grib3/local.98.28.def b/eccodes/definitions/grib3/local.98.28.def new file mode 100644 index 00000000..fa52aa68 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.28.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- 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. +# +# Definition 28 - COSMO local area EPS + +unsigned[4] baseDateEPS : dump; +unsigned[2] baseTimeEPS : dump; +unsigned[1] numberOfRepresentativeMember : dump; +unsigned[1] numberOfMembersInCluster : dump; +unsigned[1] totalInitialConditions : dump; + diff --git a/eccodes/definitions/grib3/local.98.30.def b/eccodes/definitions/grib3/local.98.30.def new file mode 100644 index 00000000..40a2e29f --- /dev/null +++ b/eccodes/definitions/grib3/local.98.30.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- 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. +# + +unsigned[1] oceanAtmosphereCoupling : dump; + +unsigned[4] legBaseDate : dump ; +unsigned[2] legBaseTime : dump ; +unsigned[1] legNumber : dump ; +unsigned[4] referenceDate : dump ; +unsigned[4] climateDateFrom : dump ; +unsigned[4] climateDateTo : dump; + +alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; +alias local.legBaseDate=legBaseDate ; +alias local.legBaseTime=legBaseTime ; +alias local.legNumber=legNumber ; +alias local.referenceDate=referenceDate ; +alias local.climateDateFrom=climateDateFrom ; +alias local.climateDateTo=climateDateTo; + +alias mars._leg_number = legNumber; + diff --git a/eccodes/definitions/grib3/local.98.300.def b/eccodes/definitions/grib3/local.98.300.def new file mode 100644 index 00000000..c4d1f9b6 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.300.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# Definition 300 - Multi-dimensional parameters + +codetable[1] dimensionType "grib2/dimensionType.table"=0; + +# The n-th dimension (out of total number of dimensions) +unsigned[2] dimensionNumber; +alias dimension=dimensionNumber; + +# Total number of dimensions +unsigned[2] totalNumberOfdimensions; + +alias extraDimensionPresent=one; + diff --git a/eccodes/definitions/grib3/local.98.36.def b/eccodes/definitions/grib3/local.98.36.def new file mode 100644 index 00000000..cd148bdc --- /dev/null +++ b/eccodes/definitions/grib3/local.98.36.def @@ -0,0 +1,17 @@ +# (C) Copyright 2005- 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. +# + +# Definition 36 - MARS labelling for long window 4Dvar system (inspired by local def 1) + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; + +alias anoffset=offsetToEndOf4DvarWindow; + diff --git a/eccodes/definitions/grib3/local.98.38.def b/eccodes/definitions/grib3/local.98.38.def new file mode 100644 index 00000000..e912bdb4 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.38.def @@ -0,0 +1,28 @@ +# (C) Copyright 2005- 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. +# + +# Definition 38 - 4D variational increments for long window 4Dvar system (inspired by local def 20) + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; + +unsigned[1] totalNumberOfIterations : dump; +alias totalNumber=totalNumberOfIterations; + +alias iteration = iterationNumber; + +alias local.iterationNumber =iterationNumber; +alias local.totalNumberOfIterations=totalNumberOfIterations; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; + +alias anoffset=offsetToEndOf4DvarWindow; + diff --git a/eccodes/definitions/grib3/local.98.39.def b/eccodes/definitions/grib3/local.98.39.def new file mode 100644 index 00000000..9be03b61 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.39.def @@ -0,0 +1,26 @@ +# (C) Copyright 2005- 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. +# + +# Definition 39 - 4DVar model errors for long window 4Dvar system (inspired by local def 25) + +unsigned[1] componentIndex : dump; +alias mars.number=componentIndex; +unsigned[1] numberOfComponents : dump; +alias totalNumber=numberOfComponents; +unsigned[1] modelErrorType : dump; + +alias local.componentIndex=componentIndex; +alias local.numberOfComponents=numberOfComponents; +alias local.modelErrorType=modelErrorType; + +# Hours +unsigned[2] offsetToEndOf4DvarWindow : dump; +unsigned[2] lengthOf4DvarWindow : dump; +alias anoffset=offsetToEndOf4DvarWindow; + diff --git a/eccodes/definitions/grib3/local.98.500.def b/eccodes/definitions/grib3/local.98.500.def new file mode 100755 index 00000000..3fa593b5 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.500.def @@ -0,0 +1,53 @@ +# mars labeling + +# Year +# (4 digits) +#unsigned[2] year ; + +# Month +#unsigned[1] month ; + +# Day +#unsigned[1] day ; + +# Hour +#unsigned[1] hour ; + +# Minute +#unsigned[1] minute ; + +# Second +#unsigned[1] second ; + +#meta dataDate g2date(year,month,day) : dump; +#alias mars.date=dataDate; + +#meta dataTime time(hour,minute,second) : dump; +#alias mars.time = dataTime; + +codetable[2] observationType "grib2/tables/local/ecmf/obstat.2.0.table"; + +codetable[2] codeType "grib2/tables/local/ecmf/obstat.3.0.table"; + +codetable[2] varno "grib2/tables/local/ecmf/obstat.varno.table"; + +codetable[2] reportType "grib2/tables/local/ecmf/obstat.reporttype.table"; + +unsigned[1] phase; + +codetable[2] platform "grib2/tables/local/ecmf/obstat.4.0.table"; + +codetable[2] instrument "grib2/tables/local/ecmf/obstat.5.0.table"; + +codetable[2] dataStream "grib2/tables/local/ecmf/obstat.6.0.table"; + +# include "grib2/template.4.horizontal.def" + +codetable[2] observationDiagnostic "grib2/tables/local/ecmf/obstat.9.0.table"; + +codetable[2] dataSelection "grib2/tables/local/ecmf/obstat.10.0.table"; + +unsigned[2] scanPosition; + +codetable[1] mask "grib2/tables/local/ecmf/obstat.8.0.table"; + diff --git a/eccodes/definitions/grib3/local.98.7.def b/eccodes/definitions/grib3/local.98.7.def new file mode 100644 index 00000000..e321ef80 --- /dev/null +++ b/eccodes/definitions/grib3/local.98.7.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- 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. +# + +unsigned[1] iterationNumber : dump; +alias number=iterationNumber; +unsigned[1] numberOfForecastsInEnsemble : dump; +alias totalNumber=numberOfForecastsInEnsemble; +unsigned[1] sensitiveAreaDomain : dump; +unsigned[1] diagnosticNumber : dump; + +alias local.iterationNumber=iterationNumber; +alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; +alias local.sensitiveAreaDomain=sensitiveAreaDomain; +alias local.diagnosticNumber=diagnosticNumber; + +alias iteration = iterationNumber; +alias diagnostic = diagnosticNumber; + diff --git a/eccodes/definitions/grib3/local.98.9.def b/eccodes/definitions/grib3/local.98.9.def new file mode 100644 index 00000000..0a288c2e --- /dev/null +++ b/eccodes/definitions/grib3/local.98.9.def @@ -0,0 +1,47 @@ +# (C) Copyright 2005- 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. +# + + +unsigned[2] forecastOrSingularVectorNumber : dump; + +constant perturbedType = 60; + +if(type != perturbedType) +{ + unsigned[2] numberOfIterations : dump; + unsigned[2] numberOfSingularVectorsComputed : dump; + unsigned[1] normAtInitialTime : dump ; + unsigned[1] normAtFinalTime : dump ; + unsigned[4] multiplicationFactorForLatLong : dump; + signed[4] northWestLatitudeOfLPOArea : dump ; + signed[4] northWestLongitudeOfLPOArea : dump; + signed[4] southEastLatitudeOfLPOArea : dump; + signed[4] southEastLongitudeOfLPOArea : dump; + unsigned[4] accuracyMultipliedByFactor : dump; + unsigned[2] numberOfSingularVectorsEvolved : dump; + # Ritz numbers: + signed[4] NINT_LOG10_RITZ : dump ; + signed[4] NINT_RITZ_EXP : dump ; + + alias local.numberOfIterations= numberOfIterations; + alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; + alias local.normAtInitialTime= normAtInitialTime ; + alias local.normAtFinalTime= normAtFinalTime ; + alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; + alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; + alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; + alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; + alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; + alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; + alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; +# Ritz numbers: + alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; + alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; +} + diff --git a/eccodes/definitions/grib3/local.98.def b/eccodes/definitions/grib3/local.98.def new file mode 100644 index 00000000..1de5ff9b --- /dev/null +++ b/eccodes/definitions/grib3/local.98.def @@ -0,0 +1,33 @@ +#local section ECMWF + +template mars_labeling "grib2/mars_labeling.def"; +transient productDefinitionTemplateNumberInternal=-1; + +meta localDefinitionNumber local_definition(grib2LocalSectionNumber, + productDefinitionTemplateNumber, + productDefinitionTemplateNumberInternal, + type, + stream, + class, + eps, + stepType, + derivedForecast); + +meta eps g2_eps(productDefinitionTemplateNumber, + type, + stream, + stepType, + derivedForecast); + +template localSection "grib2/local.98.[grib2LocalSectionNumber:l].def"; +position offsetAfterLocalSection; +transient addExtraLocalSection=0; +transient deleteExtraLocalSection=0; +#transient extraLocalSectionPresent=section2Length - offsetAfterLocalSection + offsetSection2 ; +meta extraLocalSectionPresent evaluate (section2Length - offsetAfterLocalSection + offsetSection2 > 0 ); +if ( ( extraLocalSectionPresent || addExtraLocalSection ) && ! deleteExtraLocalSection) { + # extra local section present + codetable[2] extraLocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; + template localSection "grib2/local.98.[extraLocalSectionNumber:l].def"; +} + diff --git a/eccodes/definitions/grib3/local.tigge.1.def b/eccodes/definitions/grib3/local.tigge.1.def new file mode 100644 index 00000000..65b23701 --- /dev/null +++ b/eccodes/definitions/grib3/local.tigge.1.def @@ -0,0 +1,5 @@ +# tigge LAM labeling + +codetable[2] suiteName "grib2/tigge_suiteName.table" : dump; +alias tiggeSuiteID = suiteName; + diff --git a/eccodes/definitions/grib3/local/1098/2.1.table b/eccodes/definitions/grib3/local/1098/2.1.table new file mode 100644 index 00000000..d8d1c0d0 --- /dev/null +++ b/eccodes/definitions/grib3/local/1098/2.1.table @@ -0,0 +1 @@ +0 model Model info diff --git a/eccodes/definitions/grib3/local/1098/centres.table b/eccodes/definitions/grib3/local/1098/centres.table new file mode 100644 index 00000000..2f0d02a3 --- /dev/null +++ b/eccodes/definitions/grib3/local/1098/centres.table @@ -0,0 +1,12 @@ +0 eggr UK Met Office - UK +1 aemet AEMET- Spain HIRLAM +2 arpasim ARPA-SIM - Italy COSMO +3 metno Met.NO +4 zamg ZAMG / Austria +5 dwd DWD - Germany SRNWP +6 dnmi DNMI/Univ Oslo - Norway HIRLAM ALADIN +7 meteofrance Meteo-France / France +8 dmi DMI +9 hungary Hungary +10 czech Czech Republic +11 croatia Croatia diff --git a/eccodes/definitions/grib3/local/1098/models.table b/eccodes/definitions/grib3/local/1098/models.table new file mode 100644 index 00000000..70e03f70 --- /dev/null +++ b/eccodes/definitions/grib3/local/1098/models.table @@ -0,0 +1,13 @@ +0 0 MOGREPS +1 1 SREPS +2 2 SRNWP PEPS +3 3 COSMO-LEPS +4 4 NORLAMEPS +5 5 ALADIN LAEF +6 6 COSMO DE EPS +7 7 COSMO-SREPS +8 8 GLAMEPS +9 9 PEARCE +10 10 DMI - HIRLAM +11 11 OMSZ ALADIN EPS + diff --git a/eccodes/definitions/grib3/local/1098/template.2.0.def b/eccodes/definitions/grib3/local/1098/template.2.0.def new file mode 100644 index 00000000..68e64f33 --- /dev/null +++ b/eccodes/definitions/grib3/local/1098/template.2.0.def @@ -0,0 +1,19 @@ +codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; +codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; +concept tiggeLAMName { + "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} + "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} + "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} + "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} + "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} + "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} + "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} + "COSMO-SREPS-BO-EU" = {tiggeCentre=2;tiggeModel=7;} + "GLAMEPS" = {tiggeCentre=6;tiggeModel=8;} + "PEARCE" = {tiggeCentre=7;tiggeModel=9;} + "DMI- HIRLAM" = {tiggeCentre=8;tiggeModel=10;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=9;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} +} + diff --git a/eccodes/definitions/grib3/local/1098/template.2.0.def~ b/eccodes/definitions/grib3/local/1098/template.2.0.def~ new file mode 100644 index 00000000..b8781760 --- /dev/null +++ b/eccodes/definitions/grib3/local/1098/template.2.0.def~ @@ -0,0 +1,19 @@ +codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; +codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; +concept tiggeLAMName { + "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} + "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} + "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} + "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} + "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} + "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} + "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} + "COSMO-SREPS-BO-EU" = {tiggeCentre=6;tiggeModel=7;} + "GLAMEPS" = {tiggeCentre=7;tiggeModel=8;} + "PEARCE" = {tiggeCentre=8;tiggeModel=9;} + "DMI- HIRLAM" = {tiggeCentre=9;tiggeModel=10;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} + "OMSZ- ALADIN-EPS" = {tiggeCentre=12;tiggeModel=11;} +} + diff --git a/eccodes/definitions/grib3/local/2.0.table b/eccodes/definitions/grib3/local/2.0.table new file mode 100644 index 00000000..91bdf6d3 --- /dev/null +++ b/eccodes/definitions/grib3/local/2.0.table @@ -0,0 +1,96 @@ +# Code table 2.0: Identification of centres for local section 2 +0 0 Absent +1 ammc Melbourne (WMC) +2 2 Melbourne (WMC) +4 rums Moscow (WMC) +5 5 Moscow (WMC) +7 kwbc US National Weather Service - NCEP (WMC) +8 8 US National Weather Service - NWSTG (WMC) +9 9 US National Weather Service - Other (WMC) +10 10 Cairo (RSMC/RAFC) +12 12 Dakar (RSMC/RAFC) +14 14 Nairobi (RSMC/RAFC) +16 16 Atananarivo (RSMC) +18 18 Tunis-Casablanca (RSMC) +20 20 Las Palmas (RAFC) +21 21 Algiers (RSMC) +22 22 Lagos (RSMC) +24 fapr Pretoria (RSMC) +26 26 Khabarovsk (RSMC) +28 28 New Delhi (RSMC/RAFC) +30 30 Novosibirsk (RSMC) +32 32 Tashkent (RSMC) +33 33 Jeddah (RSMC) +34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) +36 36 Bankok +37 37 Ulan Bator +38 babj Beijing (RSMC) +40 rksl Seoul +41 sabm Buenos Aires (RSMC/RAFC) +43 43 Brasilia (RSMC/RAFC) +45 45 Santiago +46 sbsj Brasilian Space Agency - INPE +51 51 Miami (RSMC/RAFC) +52 52 National Hurricane Center, Miami +53 53 Canadian Meteorological Service - Montreal (RSMC) +54 cwao Canadian Meteorological Service - Montreal (RSMC) +55 55 San Francisco +57 57 U.S. Air Force - Global Weather Center +58 fnmo US Navy - Fleet Numerical Oceanography Center +59 59 NOAA Forecast Systems Lab, Boulder CO +60 60 National Center for Atmospheric Research (NCAR), Boulder, CO +64 64 Honolulu +65 65 Darwin (RSMC) +67 67 Melbourne (RSMC) +69 nzkl Wellington (RSMC/RAFC) +74 egrr U.K. Met Office - Exeter +76 76 Moscow (RSMC/RAFC) +78 edzw Offenbach (RSMC) +80 cnmc Rome (RSMC) +82 eswi Norrkoping +84 lfpw French Weather Service - Toulouse +85 lfpw French Weather Service - Toulouse +86 86 Helsinki +87 87 Belgrade +88 enmi Oslo +89 89 Prague +90 90 Episkopi +91 91 Ankara +92 92 Frankfurt/Main (RAFC) +93 93 London (WAFC) +94 ekmi Copenhagen +95 95 Rota +96 96 Athens +97 97 European Space Agency (ESA) +98 ecmf European Centre for Medium-Range Weather Forecasts +99 99 DeBilt, Netherlands +#100 to 109 Reserved for centres in Region I which are not in the list above +110 110 Hong-Kong +#111 to 133 Reserved for centres in Region II which are not in the list above +#134 to 153 Reserved for centres in Region I which are not listed above +#154 to 159 Reserved for centres in Region III which are not in the list above +160 160 US NOAA/NESDIS +# 161 to 185 Reserved for centres in Region IV which are not in the list above +# 186 to 198 Reserved for centres in Region I which are not listed above +# 199 to 209 Reserved for centres in Region V which are not in the list above +195 wiix Indonesia (NMC) +204 204 National Institute of Water and Atmospheric Research (NIWA - New Zealand) +210 210 Frascati (ESA/ESRIN) +211 211 Lannion +212 212 Lisboa +213 213 Reykjavik +214 lemm INM +215 lssw Zurich +216 216 Service ARGOS Toulouse +218 habp Budapest +224 lowm Austria +227 ebum Belgium (NMC) +233 eidb Dublin +235 ingv INGV +239 crfc CERFAX +246 ifmk IfM-Kiel +247 hadc Hadley Centre +250 cosmo COnsortium for Small scale MOdelling (COSMO) +251 251 Meteorological Cooperation on Operational NWP (MetCoOp) +254 eums EUMETSAT Operation Centre +1098 tigge TIGGE CENTRES diff --git a/eccodes/definitions/grib3/local/edzw/2.0.3.table b/eccodes/definitions/grib3/local/edzw/2.0.3.table new file mode 100755 index 00000000..efa3bd13 --- /dev/null +++ b/eccodes/definitions/grib3/local/edzw/2.0.3.table @@ -0,0 +1,130 @@ +1 p P Pressure Pa +2 msl MSL Mean sea level pressure Pa +3 3 None Pressure tendency Pa s**-1 +4 pv PV Potential vorticity K m**2 kg**-1 s**-1 +5 5 None ICAO Standard Atmosphere reference height m +6 z Z Geopotential m**2 s**-2 +7 gh GH Geopotential height gpm +8 h H Geometrical height m +9 9 None Standard deviation of height m +10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) +11 t T Temperature K +12 12 None Virtual temperature K +13 13 None Potential temperature K +14 14 None Pseudo-adiabatic potential temperature K +15 15 None Maximum temperature K +16 16 None Minimum temperature K +17 17 None Dew-point temperature K +18 18 None Dew-point depression (or deficit) K +19 19 None Lapse rate K s**-1 +20 20 None Visibility m +21 21 None Radar spectra (1) - +22 22 None Radar spectra (2) - +23 23 None Radar spectra (3) - +24 24 None Parcel lifted index (to 500 hPa) K +25 25 None Temperature anomaly K +26 26 None Pressure anomaly Pa +27 27 None Geopotential height anomaly gpm +28 28 None Wave spectra (1) - +29 29 None Wave spectra (2) - +30 30 None Wave spectra (3) - +31 31 None Wind direction Degree true +32 32 None Wind speed m s**-1 +33 u U U-component of wind m s**-1 +34 v V V-component of wind m s**-1 +35 35 None Stream Function m**2 s**-1 +36 36 None Velocity Potential m**2 s**-1 +37 37 None Montgomery stream Function m**2 s**-1 +38 38 None Sigma coordinate vertical velocity s**-1 +39 w W Vertical velocity Pa s**-1 +40 40 None Vertical velocity m s**-1 +41 41 None Absolute vorticity s**-1 +42 42 None Absolute divergence s**-1 +43 vo VO Relative vorticity s**-1 +44 d D Relative divergence s**-1 +45 45 None Vertical u-component shear s**-1 +46 46 None Vertical v-component shear s**-1 +47 47 None Direction of current Degree true +48 48 None Speed of current m s**-1 +49 49 None U-component of current m s**-1 +50 50 None V-component of current m s**-1 +51 q Q Specific humidity kg kg**-1 +52 r R Relative humidity % +53 53 None Humidity mixing ratio kg m**-2 +54 54 None Precipitable water kg m**-2 +55 55 None Vapour pressure Pa +56 56 None Saturation deficit Pa +57 e E Evaporation kg m**-2 +58 ciwc CIWC Cloud ice kg m**-2 +59 59 None Precipitation rate kg m**-2 s**-1 +60 60 None Thunderstorm probability % +61 tp TP Total precipitation kg m**-2 +62 62 LSP Large scale precipitation kg m**-2 +63 63 None Convective precipitation (water) kg m**-2 +64 64 None Snow fall rate water equivalent kg m**-2 s**-1 +65 sf SF Water equivalentof accumulated snow depth kg m**-2 +66 sd SD Snow depth m (of water equivalent) +67 67 None Mixed layer depth m +68 68 None Transient thermocline depth m +69 69 None Main thermocline depth m +70 70 None Main thermocline anomaly m +71 tcc TCC Total cloud cover % +72 ccc CCC Convective cloud cover % +73 lcc LCC Low cloud cover % +74 mcc MCC Medium cloud cover % +75 hcc HCC High cloud cover % +76 clwc CLWC Cloud liquid water content kg kg**-1 +77 77 None Best lifted index (to 500 hPa) K +78 csf CSF Convective snow-fall kg m**-2 +79 lsf LSF Large scale snow-fall kg m**-2 +80 80 None Water temperature K +81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) +82 82 None Deviation of sea-level from mean m +83 sr SR Surface roughness m +84 al AL Albedo - +85 st ST Surface temperature of soil K +86 ssw SSW Soil moisture content kg m**-2 +87 veg VEG Percentage of vegetation % +88 88 None Salinity kg kg**-1 +89 89 None Density kg m**-3 +90 ro RO Water run-off kg m**-2 +91 91 None Ice cover (1=land, 0=sea) (0 - 1) +92 92 None Ice thickness m +93 93 None Direction of ice drift Degree true +94 94 None Speed of ice drift m s*-1 +95 95 None U-component of ice drift m s**-1 +96 96 None V-component of ice drift m s**-1 +97 97 None Ice growth rate m s**-1 +98 98 None Ice divergence s**-1 +99 99 None Snow melt kg m**-2 +100 swh SWH Signific.height,combined wind waves+swell m +101 mdww MDWW Mean direction of wind waves Degree true +102 shww SHWW Significant height of wind waves m +103 mpww MPWW Mean period of wind waves s +104 104 None Direction of swell waves Degree true +105 105 None Significant height of swell waves m +106 106 None Mean period of swell waves s +107 mdps MDPS Mean direction of primary swell Degree true +108 mpps MPPS Mean period of primary swell s +109 109 None Secondary wave direction Degree true +110 110 None Secondary wave period s +111 111 None Net short-wave radiation flux (surface) W m**-2 +112 112 None Net long-wave radiation flux (surface) W m**-2 +113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 +114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 +115 115 None Long-wave radiation flux W m**-2 +116 116 None Short-wave radiation flux W m**-2 +117 117 None Global radiation flux W m**-2 +118 118 None Brightness temperature K +119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 +120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 +121 slhf SLHF (surface) Latent heat flux W m**-2 +122 sshf SSHF (surface) Sensible heat flux W m**-2 +123 bld BLD Boundary layer dissipation W m**-2 +124 124 None Momentum flux, u-component N m**-2 +125 125 None Momentum flux, v-component N m**-2 +126 126 None Wind mixing energy J +127 127 None Image data - +148 lsm LSM LandSeaMask +160 160 Unknown +255 - - Indicates a missing value - diff --git a/eccodes/definitions/grib3/local/edzw/3.table b/eccodes/definitions/grib3/local/edzw/3.table new file mode 100755 index 00000000..7c4cc88b --- /dev/null +++ b/eccodes/definitions/grib3/local/edzw/3.table @@ -0,0 +1,51 @@ +# CODE TABLE 3 Fixed levels or layers for wich the data are included +0 0 Reserved +1 G Surface (of the Earth, which includes sea surface) +2 CB Cloud base level +3 CT Cloud top level +4 IZ 0 deg (C) isotherm level +5 AC Adiabatic condensation level (parcel lifted from surface) +6 WM Maximum wind speed level +7 TP Tropopause level +8 AU Nominal top of atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level Temperature in 1/100 K +# 21-99 Reserved +100 P Isobaric level pressure in hectoPascals (hPa) (2 octets) +101 PI Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) +102 MSL Mean sea level 0 0 +103 HMSL Fixed height level height above mean sea level (MSL) in meters +104 HMSLI Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) +105 HG Fixed height above ground height in meters (2 octets) +106 HGI Layer between two height levels above ground - height of top, height of bottom (hm) +107 SIG Sigma level sigma value in 1/10000 (2 octets) +108 SIGI Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 +109 H Hybrid level level number (2 octets) +110 HI Layer between two hybrid levels level number of top level number of bottom +111 B Depth below land surface centimeters (2 octets) +112 S Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) +113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) +114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K +115 115 Level at specified pressure difference from ground to level hPa (2 octets) +116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa +117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 +# 118 Reserved +119 119 ETA level: ETA value in 1/10000 (2 octets) +120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 +121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa +# 122-124 Reserved +125 125 Height level above ground (high precision) centimeters (2 octets) +# 126-127 Reserved +128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma +# 129-140 Reserved +141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa +# 142-159 Reserved +160 dp Depth below sea level meters (2 octets) +# 161-199Reserved +200 R Entire atmosphere considered as a single layer 0 (2 octets) +201 201 Entire ocean considered as a single layer 0 (2 octets) +210 pl Isobaric surface (Pa) (ECMWF extension) +211 wv Ocean wave level (ECMWF extension) +212 oml Ocean mixed layer (ECMWF extension) +222 SYN Synthetic Satellite Images (DWD extension) diff --git a/eccodes/definitions/grib3/local/edzw/5.table b/eccodes/definitions/grib3/local/edzw/5.table new file mode 100755 index 00000000..7f7c99d4 --- /dev/null +++ b/eccodes/definitions/grib3/local/edzw/5.table @@ -0,0 +1,24 @@ +# CODE TABLE 5 Time Range Indicator +0 0 Forecast product valid at reference time + P1 (P1>0) +1 1 Initialized analysis product for reference time (P1=0). +2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 +3 3 Average (reference time + P1 to reference time + P2) +4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 +5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 +6 6 Average (reference time - P1 to reference time - P2) +7 7 Average (reference time - P1 to reference time + P2) +10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 +11 11 local use: Initialized forecast (P1 > 0) for IDFI +13 13 local use: Fields from analyses valid at reference time for P1 = 0 +14 14 local use: IFS forecast interpolated to GME triangular grid +51 51 Climatological Mean Value: +113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. +115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. +116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. +117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. +118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. +119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 +123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. +124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. +125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table new file mode 100755 index 00000000..f2ecd9af --- /dev/null +++ b/eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table @@ -0,0 +1,86 @@ +025 AN2MO AN2MO +033 ANALY ANALY +034 WAMIT WAMIT +036 GPEPS GPEPS +037 KWGFS KWGFS +038 KWGF5 KWGF5 +044 B106V B106V +049 S106V S106V +053 AN1MO AN1MO +058 EM3AN EM3AN +059 EM3MO EM3MO +061 ECMFM ECMFM +064 KWBCM KWBCM +065 LFPWM LFPWM +068 KWB01 KWB01 +069 SGGLO SGGLO +074 B106A B106A +075 SGMED SGMED +079 S106A S106A +080 ECENS ECENS +081 NORMW NORMW +084 NORM3 NORM3 +085 SGNAT SGNAT +086 SGESH SGESH +087 SGBAL SGBAL +088 MOMI3 MOMI3 +094 P106A P106A +111 DM3AN DM3AN +112 DM3MO DM3MO +115 DM4AN DM4AN +116 DM4MO DM4MO +121 WAFTF WAFTF +122 WAFSZ WAFSZ +123 KWB02 KWB02 +124 KWB03 KWB03 +126 KWB04 KWB04 +127 NAEGR NAEGR +131 LM1AN LM1AN +132 LM1MO LM1MO +134 LM2AN LM2AN +135 LM2MO LM2MO +137 LM3AN LM3AN +138 LM3MO LM3MO +140 ecgm_diag_fc05 ecgm_diag_fc05 +141 I032A I032A +143 I048A I048A +145 I064A I064A +147 I096A I096A +148 I096F I096F +149 I128A I128A +150 I128F I128F +157 R096A R096A +159 R128A R128A +160 R128F R128F +173 I192A I192A +174 I192F I192F +175 I256A I256A +176 I256F I256F +185 R192A R192A +186 R192F R192F +187 R256A R256A +188 R256F R256F +194 E128A E128A +195 E192A E192A +196 E256A E256A +197 SGGM0 SGGM0 +198 SGGM1 SGGM1 +199 SGGM2 SGGM2 +201 SGLM0 SGLM0 +202 SGLM1 SGLM1 +205 SGBSH SGBSH +206 I384A I384A +207 I384F I384F +208 R384A R384A +209 R384F R384F +210 E384A E384A +211 EGMES EGMES +212 LFMES LFMES +213 LM4MO LM4MO +214 LM4AN LM4AN +215 LM5MO LM5MO +216 LM5AN LM5AN +217 LM6MO LM6MO +218 LM6AN LM6AN +219 LM7MO LM7MO +225 SGBS1 SGBS1 diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/cfName.def b/eccodes/definitions/grib3/localConcepts/ecmf/cfName.def new file mode 100644 index 00000000..1487e839 --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/cfName.def @@ -0,0 +1,147 @@ +# Automatically generated by ./create_param.pl, do not edit +#Geopotential +'geopotential' = { + discipline = 0 ; + parameterNumber = 4 ; + parameterCategory = 3 ; + } +#Relative vorticity +'atmosphere_relative_vorticity' = { + discipline = 0 ; + parameterNumber = 12 ; + parameterCategory = 2 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + discipline = 0 ; + parameterNumber = 11 ; + parameterCategory = 1 ; + unitsFactor = 1000 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + discipline = 0 ; + parameterNumber = 10 ; + parameterCategory = 1 ; + unitsFactor = 1000 ; + } +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { + discipline = 0 ; + parameterNumber = 20 ; + parameterCategory = 2 ; + } +#Relative divergence +'divergence_of_wind' = { + discipline = 0 ; + parameterNumber = 13 ; + parameterCategory = 2 ; + } +#Relative humidity +'relative_humidity' = { + discipline = 0 ; + parameterNumber = 1 ; + parameterCategory = 1 ; + } +#Surface roughness +'surface_roughness_length' = { + discipline = 2 ; + parameterNumber = 1 ; + parameterCategory = 0 ; +} +#Total column water vapour +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'surface_temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Large-scale precipitation +'lwe_thickness_of_stratiform_precipitation_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Total cloud cover +'cloud_area_fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Albedo +'surface_albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#Temperature of snow layer +'temperature_in_surface_snow' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def b/eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def new file mode 100644 index 00000000..b8a0f375 --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def @@ -0,0 +1,17509 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } +#Equivalent potential temperature +'eqpt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'ssfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'scfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'udvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'vdvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'urtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'vrtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'uvcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'cl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'cvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'cvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'tvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'tvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'asn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'istl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'es' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'smlt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'sdur' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'lspf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Montgomery potential +'mont' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'obct' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'sktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column liquid water +'tclw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column ice water +'tciw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'p10fg6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'emis' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'vite' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'at' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'bv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'tcwv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'stl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'swl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + unitsFactor = 1000 ; + } +#Large-scale precipitation +'lsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'sf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'chnk' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'snr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'tnr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'lnsp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'swhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'lwhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'tsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'blh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'sdor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'tcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'stl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'al' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'e' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'stl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'swl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'ccc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'lcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'mcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'hcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'lgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'src' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'veg' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'paw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'ro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'tco3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation +'tisr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'ie' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'asq' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'stl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'swl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'csf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'lsf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'fal' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'fsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'aiw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'ice' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'strfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'ptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'cldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'asndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'rsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'sltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'esdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'smltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'sdurdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'fgdiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'montdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'presdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'capediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'obctdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'p63.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'p64.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'p65.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'p66.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'p67.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'p70.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'p71.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'p78.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'p79.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'fg6diff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'p125.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'bvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'zdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'qdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'spdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'tcwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'sddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'chnkdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'ghdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'rdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'udiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'vdiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'difft2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'srdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'aldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'ediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'hccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'rodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'tco3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'sidiff10' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'tpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'sktdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'faldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'ccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'icediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'p193.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'utendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'ttendr' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'ua100' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'va100' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdms' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'p55.210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Particulate matter d < 1 um +'pm1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Mean altitude of maximum injection +'mami' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'apt' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Altitude of plume bottom +'apb' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'p55.211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'alediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'aptdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Experimental product +'p1.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'p2.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'p3.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'p4.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'p5.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'p6.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'p7.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'p8.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'p9.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'p10.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'p11.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'p12.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'p13.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'p14.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'p15.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'p16.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'p17.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'p18.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'p19.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'p20.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'p21.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'p22.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'p23.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'p24.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'p25.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'p26.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'p27.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'p28.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'p29.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'p30.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'p31.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'p32.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'p33.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'p34.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'p35.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'p36.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'p37.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'p38.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'p39.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'p40.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'p41.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'p42.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'p43.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'p44.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'p45.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'p46.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'p47.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'p48.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'p49.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'p50.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'p51.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'p52.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'p53.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'p54.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'p55.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'p57.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'p58.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'p59.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'p60.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'p61.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'p62.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'p63.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'p64.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'p65.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'p66.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'p67.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'p68.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'p69.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'p70.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'p71.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'p72.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'p73.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'p74.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'p75.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'p76.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'p77.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'p78.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'p79.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'p121.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'p122.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'p123.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'p124.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'p125.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'p126.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'p127.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'p128.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'p129.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'p130.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'p131.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'p132.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'p133.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'p134.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'p135.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'p136.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'p137.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'p138.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'p139.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'p140.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'p141.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'p142.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'p143.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'p144.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'p145.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'p146.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'p147.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'p148.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'p149.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'p150.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'p151.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'p152.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'p153.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'p154.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'p155.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'p156.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'p157.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'p158.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'p159.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'p160.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'p161.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'p162.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'p163.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'p164.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'p165.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'p166.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'p167.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'p168.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'p169.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'p170.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'p171.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'p172.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'p173.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'p174.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'p175.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'p176.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'p177.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'p178.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'p179.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'p180.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'p181.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'p182.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'p183.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'p184.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'p185.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'p186.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'p187.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'p188.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'p189.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'p190.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'p191.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'p192.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'p193.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'p194.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'p195.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'p196.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'p197.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'p198.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'p199.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'p200.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'p201.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'p202.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'p203.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'p204.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'p205.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'p206.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'p207.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'p208.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'p209.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'p210.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'p211.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'p212.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'p213.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'p214.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'p215.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'p216.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'p217.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'p218.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'p219.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'p220.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'p221.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'p222.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'p223.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'p224.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'p225.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'p226.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'p227.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'p228.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'p229.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'p230.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'p231.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'p232.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'p233.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'p234.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'p235.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'p236.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'p237.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'p238.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'p239.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'p240.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'p241.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'p242.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'p243.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'p244.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'p245.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'p246.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'p247.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'p248.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'p249.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'p250.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'p251.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'p252.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'p253.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'p254.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'p255.212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +# Cosine of solar zenith angle +'uvcossza' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +# UV biologically effective dose +'uvbed' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +# UV biologically effective dose clear-sky +'uvbedcs' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +# Profile of optical thickness at 340 nm +'aot340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +# Source/gain of sulphate aerosol +'aersrcsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +# Dry deposition of sulphate aerosol +'aerddpsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +# Sedimentation of sulphate aerosol +'aersdmsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +# Negative fixer of sulphate aerosol +'aerngtsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'aermsssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +# Sulphate aerosol optical depth +'aerodsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Assimetry factor at 340 nm +'assimetry340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Assimetry factor at 355 nm +'assimetry355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Assimetry factor at 380 nm +'assimetry380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Assimetry factor at 400 nm +'assimetry400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Assimetry factor at 440 nm +'assimetry440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Assimetry factor at 469 nm +'assimetry469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Assimetry factor at 500 nm +'assimetry500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Assimetry factor at 532 nm +'assimetry532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Assimetry factor at 550 nm +'assimetry550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Assimetry factor at 645 nm +'assimetry645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Assimetry factor at 670 nm +'assimetry670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Assimetry factor at 800 nm +'assimetry800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Assimetry factor at 858 nm +'assimetry858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Assimetry factor at 865 nm +'assimetry865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Assimetry factor at 1020 nm +'assimetry1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Assimetry factor at 1064 nm +'assimetry1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Assimetry factor at 1240 nm +'assimetry1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Assimetry factor at 1640 nm +'assimetry1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Assimetry factor at 2130 nm +'assimetry2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Experimental product +'p1.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'p2.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'p3.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'p4.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'p5.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'p6.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'p7.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'p8.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'p9.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'p10.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'p11.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'p12.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'p13.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'p14.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'p15.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'p16.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'p17.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'p18.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'p19.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'p20.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'p21.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'p22.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'p23.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'p24.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'p25.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'p26.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'p27.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'p28.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'p29.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'p30.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'p31.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'p32.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'p33.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'p34.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'p35.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'p36.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'p37.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'p38.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'p39.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'p40.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'p41.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'p42.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'p43.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'p44.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'p45.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'p46.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'p47.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'p48.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'p49.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'p50.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'p51.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'p52.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'p53.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'p54.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'p55.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'p56.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'p57.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'p58.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'p59.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'p60.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'p61.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'p62.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'p63.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'p64.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'p65.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'p66.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'p67.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'p68.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'p69.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'p70.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'p71.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'p72.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'p73.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'p74.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'p75.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'p76.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'p77.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'p78.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'p79.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'p121.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'p122.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'p123.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'p124.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'p125.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'p126.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'p127.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'p128.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'p129.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'p130.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'p131.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'p132.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'p133.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'p134.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'p135.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'p136.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'p137.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'p138.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'p139.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'p140.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'p141.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'p142.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'p143.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'p144.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'p145.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'p146.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'p147.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'p148.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'p149.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'p150.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'p151.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'p152.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'p153.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'p154.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'p155.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'p156.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'p157.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'p158.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'p159.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'p160.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'p161.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'p162.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'p163.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'p164.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'p165.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'p166.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'p167.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'p168.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'p169.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'p170.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'p171.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'p172.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'p173.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'p174.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'p175.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'p176.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'p177.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'p178.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'p179.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'p180.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'p181.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'p182.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'p183.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'p184.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'p185.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'p186.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'p187.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'p188.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'p189.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'p190.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'p191.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'p192.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'p193.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'p194.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'p195.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'p196.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'p197.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'p198.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'p199.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'p200.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'p201.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'p202.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'p203.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'p204.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'p205.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'p206.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'p207.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'p208.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'p209.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'p210.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'p211.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'p212.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'p213.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'p214.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'p215.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'p216.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'p217.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'p218.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'p219.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'p220.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'p221.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'p222.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'p223.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'p224.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'p225.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'p226.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'p227.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'p228.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'p229.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'p230.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'p231.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'p232.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'p233.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'p234.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'p235.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'p236.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'p237.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'p238.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'p239.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'p240.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'p241.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'p242.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'p243.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'p244.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'p245.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'p246.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'p247.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'p248.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'p249.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'p250.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'p251.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'p252.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'p253.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'p254.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'p255.216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'hno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'par' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'c2h4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'ole' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'ald2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'rooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'onit' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'c5h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'dms' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'nh4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'msa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'o3s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'pb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'ho2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'ho2no2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'ror' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'rxpar' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'xo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'nh2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'psc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'ch3oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'hcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'mcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'c2h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'c2h5oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'c3h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'c3h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'c10h16' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'ispd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'no3_a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'ch3coch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'aco2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'hypropo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'tc_ch4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'tc_par' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'tc_c2h4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'tc_ole' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'tc_rooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'tc_nh3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'tc_so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'tc_nh4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'tc_pb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'tc_ror' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'tc_nh2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'tc_c2h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'tc_c3h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'tc_c3h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'tc_aco2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Ozone emissions +'e_go3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'e_ch4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'e_par' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'e_c2h4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'e_ole' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'e_rooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'e_nh3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'e_so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'e_nh4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'e_ra' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'e_pb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'e_ror' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'e_nh2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'e_c2h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'e_c3h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'e_c3h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'e_aco2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'cbh' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Zero degree level +'deg0l' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Horizontal visibility +'hvis' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + } +#10 metre wind gust in the last 3 hours +'fg310' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'swi1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of Zero Deg Wet Bulb Temperature +'hwbt0' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of One Deg Wet Bulb Temperature +'hwbt1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Total column rain water +'tcrw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'tcsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'ccf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'stf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'swv' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'ist' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'tccsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#100 metre wind speed +'si100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Irrigation fraction +'irrfr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'pev' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'irr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'tcclw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'strfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'p24.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'p25.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'clgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'asngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'rsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'sltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'fggrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'presgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'obctgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'p63.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'p64.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'p65.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'p66.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'p67.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'p68.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'p69.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'p70.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'p71.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'p78.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'p79.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'p80.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'p81.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'p82.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'p83.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'p84.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'p85.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'p86.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'p87.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'p88.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'p89.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'p90.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'p91.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'p92.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'p93.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'p94.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'p95.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'p96.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'p97.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'p98.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'p99.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'p100.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'p101.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'p102.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'p103.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'p104.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'p105.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'p106.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'p107.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'p108.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'p109.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'p110.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'p111.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'p112.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'p113.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'p114.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'p115.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'p116.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'p117.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'p118.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'p119.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'p120.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'fg6grd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'p125.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'bvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'zgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'qgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'spgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'tcwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'sdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'chnkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'ghgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'rgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'ugrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'vgrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'grd2t' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'grd2d' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'srgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'algrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'egrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'rogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'sigrd10' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'icegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'tsru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'ttru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'clw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'cf' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'mvv' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'t2ag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'t2ag1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'t2ag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'t2alm1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'t2alm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'saip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'whip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'g10p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'capep' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'sp10g10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'sp10g15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre Wind gust of at least 25 m/s +'fg10g25' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre temperature less than 273.15 K +'t2l273' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + probabilityType = 3 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 4 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'zp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'tap' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'tccp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'sp10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'t2p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'tpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'swhp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'mwpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'p255.131' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'t2plm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'t2plm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'t2pl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'t2pl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'t2pl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'t2pg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'t2pg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'t2pg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'t2pg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'t2pg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'sp10g10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'sp10g15' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'sp10g20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'sp10g35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'sp10g50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'gp10g20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'gp10g35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'gp10g50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'gp10g75' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'gp10g100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'hmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'wmb' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean wave period based on second moment +'mp2' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'wdw' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak period of 1D spectra +'pp1d' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'cdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'mdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'shts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'mdts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'mpts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'sdhs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'mdwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'msqs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'wind' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'awh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'arrc' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'dwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'d2sp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'d2fd' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'bfi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'wsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.140' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'ocs' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'ocpd' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'ocu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'ocv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'ocw' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'uv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'ut' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'vt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'uu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'vv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'p144.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'p145.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'p146.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'p147.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'p148.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'p153.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'p155.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'p168.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'p169.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'p170.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'p172.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'p173.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'p180.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'p181.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'p182.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'p183.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'p255.150' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'p128.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Salinity +'s' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Ocean current zonal component +'ocu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Ocean current meridional component +'ocv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Ocean current vertical component +'ocw' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'vvs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'vdf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'dep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sigma-theta +'sth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'uv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'ut' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'vt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'uu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'vv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Sea level previous timestep +'sl_1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Barotropic stream function +'bsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'sh' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'crl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'p152.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#U stress +'tax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#V stress +'tay' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'asr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'pme' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'shf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'hfc' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#20 degrees isotherm depth +'d20' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'umax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'smax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'pti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'ptae' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'bpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'apt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'ptbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'as' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'sali' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'sale' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'bsal' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'salbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'fgbt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'fgbs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'bpa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'fgbp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'pta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'p255.151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'fgrea10' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'pwcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Snow depth +'sdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 141 ; + } +#Large-scale precipitation +'lsprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'sfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'ghrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'rrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'ewssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'nsssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'erea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'srcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'vegrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'rorea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'vurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'vvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'wurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'csfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'lsfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'ccrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'falrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'wsrea10' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'moflrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'p249.160' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'hsdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'p51.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'vima' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'vit' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'viwv' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'vilw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'viiw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'vioz' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'vike' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'vithe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'vipie' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'vipile' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'vitoe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'viec' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'vimae' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'viman' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'vikee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'viken' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'vithen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'vige' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'vign' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'vitoee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'vitoen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'vioze' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'viozn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'vimad' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'viked' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'vithed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'viwvd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'vigd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'vitoed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'viozd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'srta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'trta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'srtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'trtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'umfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'dmfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'udra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'ddra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'tpfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'tdcha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'ttpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'qtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'utpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'vtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'p206.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'p207.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'p208.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'p209.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'p210.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'p211.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'p212.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'p213.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'p214.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'p215.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'p216.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'p217.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'p218.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'p219.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'p220.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'p221.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'p222.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'p223.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'p224.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'p225.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'p226.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'p227.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'p229.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'p230.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'p231.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'p232.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'p233.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'p255.162' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'tsw' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'strfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'vpota' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'pta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'cla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'asna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'rsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'slta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'esa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'smlta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'sdura' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'fga10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'monta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'pva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'obcta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'p126.171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'bva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'za' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'qa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'spa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'tcwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'voa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'sda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'chnka' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'snra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'tnra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'gha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'ra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'blha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'ua10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'va10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'t2a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'d2a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'sra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'ala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'ea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'hcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'roa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'ua10' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'sia' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'tpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'skta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'fala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'cca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'iaa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'p255.171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'esrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'p45.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'p48.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'p50.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'p142.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) +'p144.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux +'p146.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Surface latent heat flux +'p147.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Surface net radiation +'p149.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Short-wave heating rate +'p153.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'p154.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards +'p169.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards +'p175.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Surface solar radiation +'p176.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Surface thermal radiation +'p177.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Top solar radiation +'p178.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Top thermal radiation +'p179.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress +'p180.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress +'p181.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'erate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Sunshine duration +'p189.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'p195.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'p196.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Runoff +'p205.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'p208.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'p209.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'p210.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'p211.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation +'p212.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Total precipitation +'tprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'p239.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'p240.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'p255.172' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'p44.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'p45.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'p48.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'p50.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'p142.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'p143.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'p145.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'p146.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'p147.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'p149.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'p153.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'p154.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomaly +'p169.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomaly +'p175.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomaly +'p176.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomaly +'p177.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomaly +'p178.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomaly +'p179.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'p180.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'p181.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'p182.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'p195.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'p196.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'p197.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomaly +'p205.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'p208.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'p209.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'p210.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'p211.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'p212.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'p239.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'p240.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'p255.173' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'p6.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'p31.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'p34.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'p39.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'p40.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'p41.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'p42.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'p49.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'p83.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'p85.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'p86.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'p87.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'p88.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'p89.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'p90.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'p94.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'p95.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Sea-ice thickness +'sit' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Liquid water potential temperature +'p99.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'p110.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'p111.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'p139.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'p167.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'p168.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'p170.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'p175.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'p183.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'p236.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'p255.174' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'p6.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'p31.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'p34.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'p39.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'p40.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'p41.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'p42.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'p49.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'p55.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'p83.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'p85.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'p86.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'p87.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'p88.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'p89.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'p90.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'p110.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'p111.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'p139.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'p164.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'p167.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'p168.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'p170.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'p175.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'p183.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'p201.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'p202.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'p236.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'p255.175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'tsw' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'str' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Snow depth +'sdsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Field capacity +'cap' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'wiltsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'sr' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'tsm' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'ddiff2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'p1.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'p2.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'p3.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'p4.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'p6.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'p7.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'p8.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'p9.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'p10.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'p11.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'p12.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'p15.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'p16.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'p17.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'clc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'p30.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'qc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'p32.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'p34.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'p35.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'p36.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'p37.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'p38.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'twater' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'p42.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'p51.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'p52.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'p53.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'p54.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'p55.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'p56.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'p60.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'p61.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'p62.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'p63.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'p64.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'p65.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'p66.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'p67.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'p70.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'p71.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'bas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'top_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'dt_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'p76.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'p77.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'p80.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'p81.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'p83.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'pp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'p150.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'w_i' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'t_snow' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'t_ice' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'cape_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'p255.201' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; +} +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdep' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerlts' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'aerscc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'nox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'ra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'aersccdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'ch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'oafirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'radiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcradiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'tpoc' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'zust' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'meantcc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'dctb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'tplb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'tplt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'sts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'msls' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'t2s' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'tps' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'ust' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'vst' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#100 metre U wind component +'u100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'v100' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/name.def b/eccodes/definitions/grib3/localConcepts/ecmf/name.def new file mode 100644 index 00000000..3141ac53 --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/name.def @@ -0,0 +1,17509 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'Total precipitation of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } +#Total precipitation of at least 5 mm +'Total precipitation of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } +#Total precipitation of at least 40 mm +'Total precipitation of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } +#Total precipitation of at least 60 mm +'Total precipitation of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } +#Total precipitation of at least 80 mm +'Total precipitation of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } +#Total precipitation of at least 100 mm +'Total precipitation of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'Total precipitation of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'Total precipitation of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'Total precipitation of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } +#Equivalent potential temperature +'Equivalent potential temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'Saturated equivalent potential temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'Soil sand fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'Soil clay fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'Surface runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'U component of divergent wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'V component of divergent wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'U component of rotational wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'V component of rotational wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'UV visible albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'UV visible albedo for diffuse radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'Near IR albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'Near IR albedo for diffuse radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'Clear sky surface UV' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'Clear sky surface photosynthetically active radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'Unbalanced component of temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'Unbalanced component of logarithm of surface pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'Unbalanced component of divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'Lake cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'Low vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'High vegetation cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'Type of low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'Type of high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'Ice temperature layer 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'Ice temperature layer 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'Ice temperature layer 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'Ice temperature layer 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'Snowmelt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'Solar duration' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'Direct solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'Maximum temperature at 2 metres in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 24 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'Minimum temperature at 2 metres in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Montgomery potential +'Montgomery potential' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'Mean temperature at 2 metres in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'Mean 2 metre dewpoint temperature in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'Downward UV radiation at the surface' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'Photosynthetically active radiation at the surface' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'Observation count' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'Instantaneous surface solar radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'Instantaneous surface thermal radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'Standard deviation of filtered subgrid orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column liquid water +'Total column liquid water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column ice water +'Total column ice water' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'10 metre wind gust in the last 6 hours' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'Surface emissivity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'Atmospheric tide' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'Budget values' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'Total column water vapour' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'Soil temperature level 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'Snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + unitsFactor = 1000 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'Snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'Charnock' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'Surface net radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'Top net radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'Logarithm of surface pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'Tendency of surface pressure' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'Boundary layer height' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'Standard deviation of orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'Anisotropy of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'Angle of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'Slope of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'Total cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'Soil temperature level 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'Albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'Top net solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'Soil temperature level 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'Convective cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'East-West component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'North-South component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'North-West/South-East component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'North-East/South-West component of sub-gridscale orographic variance' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'Eastward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'Northward gravity wave surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'Vegetation fraction' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'Variance of sub-gridscale orography' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'Precipitation analysis weights' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'Total column ozone' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation +'TOA incident solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'Vertically integrated moisture divergence' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'Diabatic heating large-scale condensation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'East-West gravity wave drag tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'North-South gravity wave drag tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'Convective tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'Convective tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'Tendency due to removal of negative humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'Total precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'Instantaneous eastward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'Instantaneous northward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'Instantaneous surface sensible heat flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'Instantaneous moisture flux' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'Apparent surface humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'Logarithm of surface roughness length for heat' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'Soil temperature level 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'Soil wetness level 4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'Large-scale snowfall' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'Accumulated cloud fraction tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'Accumulated liquid water tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'Forecast surface roughness' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'Forecast logarithm of surface roughness for heat' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'Accumulated ice water tendency' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'Ice age' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'Stream function difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'Velocity potential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'Potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'Equivalent potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'Saturated equivalent potential temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'U component of divergent wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'V component of divergent wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'U component of rotational wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'V component of rotational wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'Unbalanced component of temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'Unbalanced component of logarithm of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'Unbalanced component of divergence difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'Lake cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'Low vegetation cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'High vegetation cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'Type of low vegetation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'Type of high vegetation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'Sea-ice cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'Snow albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'Snow density difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'Sea surface temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'Ice surface temperature layer 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'Ice surface temperature layer 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'Ice surface temperature layer 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'Ice surface temperature layer 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'Volumetric soil water layer 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'Volumetric soil water layer 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'Volumetric soil water layer 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'Volumetric soil water layer 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'Soil type difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'Snow evaporation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'Snowmelt difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'Solar duration difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'Direct solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'Magnitude of turbulent surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'10 metre wind gust difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'Large-scale precipitation fraction difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'Maximum 2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'Minimum 2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'Montgomery potential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'Pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'Mean 2 metre temperature in the last 24 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'Downward UV radiation at the surface difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'Photosynthetically active radiation at the surface difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'Convective available potential energy difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'Potential vorticity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'Total precipitation from observations difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'Observation count difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'Total column ice water' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'Maximum temperature at 2 metres difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'Minimum temperature at 2 metres difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10 metre wind gust in the last 6 hours difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'Atmospheric tide difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'Budget values difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'Geopotential difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'Temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'U component of wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'V component of wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'Specific humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'Surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'Vertical velocity (pressure) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'Total column water difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'Total column water vapour difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'Vorticity (relative) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'Soil temperature level 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'Soil wetness level 1 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'Snow depth difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'Stratiform precipitation (Large-scale precipitation) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'Convective precipitation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'Snowfall (convective + stratiform) difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'Boundary layer dissipation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'Surface sensible heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'Surface latent heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'Charnock difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'Surface net radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'Top net radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'Mean sea level pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'Logarithm of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'Short-wave heating rate difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'Long-wave heating rate difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'Divergence difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'Height difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'Relative humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'Tendency of surface pressure difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'Boundary layer height difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'Standard deviation of orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'Anisotropy of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'Angle of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'Slope of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'Total cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'10 metre U wind component difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'10 metre V wind component difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'2 metre temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'Surface solar radiation downwards difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'Soil temperature level 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'Soil wetness level 2 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'Land-sea mask difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'Surface roughness difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'Albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'Surface thermal radiation downwards difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'Surface net solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'Surface net thermal radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'Top net solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'Top net thermal radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'East-West surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'North-South surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'Evaporation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'Soil temperature level 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'Soil wetness level 3 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'Convective cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'Low cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'Medium cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'High cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'Sunshine duration difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'East-West component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'North-South component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'North-West/South-East component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'North-East/South-West component of sub-gridscale orographic variance difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'Brightness temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'Longitudinal component of gravity wave stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'Meridional component of gravity wave stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'Gravity wave dissipation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'Skin reservoir content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'Vegetation fraction difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'Variance of sub-gridscale orography difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'Maximum temperature at 2 metres since previous post-processing difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'Minimum temperature at 2 metres since previous post-processing difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'Ozone mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'Precipitation analysis weights difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'Runoff difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'Total column ozone difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'10 metre wind speed difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'Top net solar radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'Top net thermal radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'Surface net solar radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'Surface net thermal radiation, clear sky difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'TOA incident solar radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'Diabatic heating by radiation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'Diabatic heating by vertical diffusion difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'Diabatic heating by cumulus convection difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'Diabatic heating large-scale condensation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'Vertical diffusion of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'Vertical diffusion of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'East-West gravity wave drag tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'North-South gravity wave drag tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'Convective tendency of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'Convective tendency of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'Vertical diffusion of humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'Humidity tendency by cumulus convection difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'Humidity tendency by large-scale condensation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'Change from removal of negative humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'Total precipitation difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'Instantaneous X surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'Instantaneous Y surface stress difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'Instantaneous surface heat flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'Instantaneous moisture flux difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'Apparent surface humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'Logarithm of surface roughness length for heat difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'Soil temperature level 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'Soil wetness level 4 difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'Temperature of snow layer difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'Convective snowfall difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'Large scale snowfall difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'Accumulated cloud fraction tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'Accumulated liquid water tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'Forecast albedo difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'Forecast surface roughness difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'Forecast logarithm of surface roughness for heat difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'Specific cloud liquid water content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'Specific cloud ice water content difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'Cloud cover difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'Accumulated ice water tendency difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'Ice age difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'Adiabatic tendency of temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'Adiabatic tendency of humidity difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'Adiabatic tendency of zonal wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'Adiabatic tendency of meridional wind difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'Reserved' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'U-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'V-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'T-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'q-tendency from dynamics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'T-tendency from radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'U-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'V-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'T-tendency from turbulent diffusion + subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'q-tendency from turbulent diffusion' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'U-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'V-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'T-tendency from subgrid orography' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'U-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'V-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'T-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'q-tendency from convection (deep+shallow)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'Liquid Precipitation flux from convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'Ice Precipitation flux from convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'T-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'q-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'ql-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qi-tendency from cloud scheme' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'Liquid Precip flux from cloud scheme (stratiform)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'Ice Precip flux from cloud scheme (stratiform)' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'U-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'V-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'T-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'q-tendency from shallow convection' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'100 metre U wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'100 metre V wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'Maximum temperature at 2 metres in the last 6 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'Minimum temperature at 2 metres in the last 6 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'Volcanic ash aerosol mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'Volcanic sulphate aerosol mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'Volcanic SO2 precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'Mixing ration of organic carbon aerosol, nucleation mode' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'Monoterpene precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'Secondary organic precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Particulate matter d < 1 um +'Particulate matter d < 1 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'Particulate matter d < 2.5 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'Particulate matter d < 10 um' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'Wildfire viewing angle of observation' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Mean altitude of maximum injection +'Mean altitude of maximum injection' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'UV visible albedo for direct radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'UV visible albedo for direct radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'UV visible albedo for direct radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'Near IR albedo for direct radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'Near IR albedo for direct radiation, volumetric component' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'Near IR albedo for direct radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'UV visible albedo for diffuse radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'UV visible albedo for diffuse radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'UV visible albedo for diffuse radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'Near IR albedo for diffuse radiation, isotropic component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'Near IR albedo for diffuse radiation, volumetric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'Near IR albedo for diffuse radiation, geometric component ' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'Total aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'Total aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'Total aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'Total aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'Total aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'Total aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'Total aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'Total aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'Total aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'Total aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'Total aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'Total aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'Total aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'Total aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Altitude of plume bottom +'Altitude of plume bottom' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'Volcanic sulphate aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'Volcanic ash optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'Profile of total aerosol dry extinction coefficient' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'Profile of total aerosol dry absorption coefficient' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Aerosol type 13 mass mixing ratio +'Aerosol type 13 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'Aerosol type 14 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'Aerosol type 15 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'SO4 aerosol precursor mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'DMS surface emission' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'Altitude of emitter' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'Altitude of plume top' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'Random pattern 1 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'Random pattern 2 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'Random pattern 3 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'Random pattern 4 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'Random pattern 5 for sppt' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +# Cosine of solar zenith angle +' Cosine of solar zenith angle' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +# UV biologically effective dose +' UV biologically effective dose' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +# UV biologically effective dose clear-sky +' UV biologically effective dose clear-sky' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +' Total surface UV spectral flux (280-285 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +' Total surface UV spectral flux (285-290 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +' Total surface UV spectral flux (290-295 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +' Total surface UV spectral flux (295-300 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +' Total surface UV spectral flux (300-305 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +' Total surface UV spectral flux (305-310 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +' Total surface UV spectral flux (310-315 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +' Total surface UV spectral flux (315-320 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +' Total surface UV spectral flux (320-325 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +' Total surface UV spectral flux (325-330 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +' Total surface UV spectral flux (330-335 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +' Total surface UV spectral flux (335-340 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +' Total surface UV spectral flux (340-345 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +' Total surface UV spectral flux (345-350 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +' Total surface UV spectral flux (350-355 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +' Total surface UV spectral flux (355-360 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +' Total surface UV spectral flux (360-365 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +' Total surface UV spectral flux (365-370 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +' Total surface UV spectral flux (370-375 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +' Total surface UV spectral flux (375-380 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +' Total surface UV spectral flux (380-385 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +' Total surface UV spectral flux (385-390 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +' Total surface UV spectral flux (390-395 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +' Total surface UV spectral flux (395-400 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +' Clear-sky surface UV spectral flux (280-285 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +' Clear-sky surface UV spectral flux (285-290 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +' Clear-sky surface UV spectral flux (290-295 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +' Clear-sky surface UV spectral flux (295-300 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +' Clear-sky surface UV spectral flux (300-305 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +' Clear-sky surface UV spectral flux (305-310 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +' Clear-sky surface UV spectral flux (310-315 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +' Clear-sky surface UV spectral flux (315-320 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +' Clear-sky surface UV spectral flux (320-325 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +' Clear-sky surface UV spectral flux (325-330 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +' Clear-sky surface UV spectral flux (330-335 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +' Clear-sky surface UV spectral flux (335-340 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +' Clear-sky surface UV spectral flux (340-345 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +' Clear-sky surface UV spectral flux (345-350 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +' Clear-sky surface UV spectral flux (350-355 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +' Clear-sky surface UV spectral flux (355-360 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +' Clear-sky surface UV spectral flux (360-365 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +' Clear-sky surface UV spectral flux (365-370 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +' Clear-sky surface UV spectral flux (370-375 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +' Clear-sky surface UV spectral flux (375-380 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +' Clear-sky surface UV spectral flux (380-385 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +' Clear-sky surface UV spectral flux (385-390 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +' Clear-sky surface UV spectral flux (390-395 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +' Clear-sky surface UV spectral flux (395-400 nm)' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +# Profile of optical thickness at 340 nm +' Profile of optical thickness at 340 nm' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +' Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +' Source/gain of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +' Source/gain of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +' Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +' Dry deposition of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +' Dry deposition of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +' Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +' Sedimentation of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +' Sedimentation of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +' Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +' Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +' Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +' Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +' Negative fixer of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +' Negative fixer of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +' Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +' Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +' Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +' Sea salt aerosol (0.03 - 0.5 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +' Sea salt aerosol (0.5 - 5 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +' Sea salt aerosol (5 - 20 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +' Source/gain of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +' Source/gain of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +' Source/gain of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +' Dry deposition of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +' Dry deposition of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +' Dry deposition of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +' Sedimentation of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +' Sedimentation of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +' Sedimentation of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +' Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +' Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +' Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +' Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +' Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +' Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +' Negative fixer of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +' Negative fixer of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +' Negative fixer of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +' Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +' Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +' Vertically integrated mass of dust aerosol (9 - 20 um)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +' Dust aerosol (0.03 - 0.55 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +' Dust aerosol (0.55 - 9 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +' Dust aerosol (9 - 20 um) optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +' Source/gain of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +' Source/gain of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +' Dry deposition of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +' Dry deposition of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +' Sedimentation of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +' Sedimentation of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +' Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +' Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +' Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +' Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +' Negative fixer of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +' Negative fixer of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +' Vertically integrated mass of hydrophobic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +' Vertically integrated mass of hydrophilic organic matter aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +' Hydrophobic organic matter aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +' Hydrophilic organic matter aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +' Source/gain of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +' Source/gain of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +' Dry deposition of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +' Dry deposition of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +' Sedimentation of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +' Sedimentation of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +' Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +' Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +' Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +' Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +' Negative fixer of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +' Negative fixer of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +' Vertically integrated mass of hydrophobic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +' Vertically integrated mass of hydrophilic black carbon aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +' Hydrophobic black carbon aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +' Hydrophilic black carbon aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +# Source/gain of sulphate aerosol +' Source/gain of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +# Dry deposition of sulphate aerosol +' Dry deposition of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +# Sedimentation of sulphate aerosol +' Sedimentation of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +' Wet deposition of sulphate aerosol by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +' Wet deposition of sulphate aerosol by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +# Negative fixer of sulphate aerosol +' Negative fixer of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +# Vertically integrated mass of sulphate aerosol +' Vertically integrated mass of sulphate aerosol' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +# Sulphate aerosol optical depth +' Sulphate aerosol optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'Accumulated total aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'Effective (snow effect included) UV visible albedo for direct radiation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'10 metre wind speed dust emission potential' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'10 metre wind gustiness dust emission potential' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'Total aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'Total absorption aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'Total absorption aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'Total absorption aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'Total absorption aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'Total absorption aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'Total absorption aerosol optical depth at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'Total absorption aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'Total absorption aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'Total absorption aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'Total absorption aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'Total absorption aerosol optical depth at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'Total absorption aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'Total absorption aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'Total absorption aerosol optical depth at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'Total absorption aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'Total absorption aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'Total absorption aerosol optical depth at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'Total absorption aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'Single scattering albedo at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'Single scattering albedo at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'Single scattering albedo at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'Single scattering albedo at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'Single scattering albedo at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'Single scattering albedo at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'Single scattering albedo at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'Single scattering albedo at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'Single scattering albedo at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'Single scattering albedo at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'Single scattering albedo at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'Single scattering albedo at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'Single scattering albedo at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'Single scattering albedo at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'Single scattering albedo at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'Single scattering albedo at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'Single scattering albedo at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'Single scattering albedo at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Assimetry factor at 340 nm +'Assimetry factor at 340 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Assimetry factor at 355 nm +'Assimetry factor at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Assimetry factor at 380 nm +'Assimetry factor at 380 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Assimetry factor at 400 nm +'Assimetry factor at 400 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Assimetry factor at 440 nm +'Assimetry factor at 440 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Assimetry factor at 469 nm +'Assimetry factor at 469 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Assimetry factor at 500 nm +'Assimetry factor at 500 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Assimetry factor at 532 nm +'Assimetry factor at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Assimetry factor at 550 nm +'Assimetry factor at 550 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Assimetry factor at 645 nm +'Assimetry factor at 645 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Assimetry factor at 670 nm +'Assimetry factor at 670 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Assimetry factor at 800 nm +'Assimetry factor at 800 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Assimetry factor at 858 nm +'Assimetry factor at 858 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Assimetry factor at 865 nm +'Assimetry factor at 865 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Assimetry factor at 1020 nm +'Assimetry factor at 1020 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Assimetry factor at 1064 nm +'Assimetry factor at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Assimetry factor at 1240 nm +'Assimetry factor at 1240 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Assimetry factor at 1640 nm +'Assimetry factor at 1640 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'Source/gain of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'Dry deposition of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'Sedimentation of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'Wet deposition of sulphur dioxide by large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'Wet deposition of sulphur dioxide by convective precipitation' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'Negative fixer of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'Vertically integrated mass of sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'Sulphur dioxide optical depth' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'Total absorption aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'Single scattering albedo at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Assimetry factor at 2130 nm +'Assimetry factor at 2130 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'Aerosol extinction coefficient at 355 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'Aerosol extinction coefficient at 532 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'Aerosol extinction coefficient at 1064 nm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'Aerosol backscatter coefficient at 355 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'Aerosol backscatter coefficient at 532 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'Aerosol backscatter coefficient at 1064 nm (from ground)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'Hydrogen peroxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane +'Methane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'Nitric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'Methyl peroxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'Paraffins' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'Ethene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'Olefins' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'Aldehydes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'Peroxyacetyl nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'Peroxides' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'Organic nitrates' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'Isoprene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'Dimethyl sulfide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'Ammonia' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'Sulfate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'Ammonium' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'Methane sulfonic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'Methyl glyoxal' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'Stratospheric ozone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'Lead' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'Nitrogen monoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'Hydroperoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'Methylperoxy radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'Hydroxyl radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'Nitrate radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'Dinitrogen pentoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'Pernitric acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'Peroxy acetyl radical' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'Organic ethers' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'PAR budget corrector' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'NO to NO2 operator' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'NO to alkyl nitrate operator' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'Amine' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'Polar stratospheric cloud' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'Methanol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'Formic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'Methacrylic acid' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'Ethane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'Ethanol' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'Propane' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'Propene' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'Terpenes' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'Methacrolein MVK' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'Nitrate' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'Acetone' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'Acetone product' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'IC3H7O2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'HYPROPO2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'Nitrogen oxides Transp' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Total column hydrogen peroxide +'Total column hydrogen peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'Total column methane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'Total column nitric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'Total column methyl peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'Total column paraffins' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'Total column ethene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'Total column olefins' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'Total column aldehydes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'Total column peroxyacetyl nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'Total column peroxides' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'Total column organic nitrates' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'Total column isoprene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'Total column dimethyl sulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'Total column ammonia' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'Total column sulfate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'Total column ammonium' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'Total column methane sulfonic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'Total column methyl glyoxal' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'Total column stratospheric ozone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'Total column lead' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'Total column nitrogen monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'Total column hydroperoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'Total column methylperoxy radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'Total column hydroxyl radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'Total column nitrate radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'Total column dinitrogen pentoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'Total column pernitric acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'Total column peroxy acetyl radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'Total column organic ethers' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'Total column PAR budget corrector' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'Total column NO to NO2 operator' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'Total column NO to alkyl nitrate operator' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'Total column amine' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'Total column polar stratospheric cloud' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'Total column methanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'Total column formic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'Total column methacrylic acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'Total column ethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'Total column ethanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'Total column propane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'Total column propene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'Total column terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'Total column methacrolein MVK' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'Total column nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'Total column acetone' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'Total column acetone product' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'Total column IC3H7O2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'Total column HYPROPO2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'Total column nitrogen oxides Transp' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Ozone emissions +'Ozone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'Nitrogen oxides emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'Hydrogen peroxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'Methane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'Carbon monoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'Nitric acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'Methyl peroxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'Formaldehyde emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'Paraffins emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'Ethene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'Olefins emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'Aldehydes emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'Peroxyacetyl nitrate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'Peroxides emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'Organic nitrates emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'Isoprene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'Sulfur dioxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'Dimethyl sulfide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'Ammonia emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'Sulfate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'Ammonium emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'Methane sulfonic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'Methyl glyoxal emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'Stratospheric ozone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'Radon emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'Lead emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'Nitrogen monoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'Hydroperoxy radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'Methylperoxy radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'Hydroxyl radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'Nitrogen dioxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'Nitrate radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'Dinitrogen pentoxide emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'Pernitric acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'Peroxy acetyl radical emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'Organic ethers emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'PAR budget corrector emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'NO to NO2 operator emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'NO to alkyl nitrate operator emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'Amine emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'Polar stratospheric cloud emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'Methanol emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'Formic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'Methacrylic acid emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'Ethane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'Ethanol emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'Propane emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'Propene emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'Terpenes emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'Methacrolein MVK emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'Nitrate emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'Acetone emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'Acetone product emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'IC3H7O2 emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'HYPROPO2 emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'Nitrogen oxides Transp emissions' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Ozone deposition velocity +'Ozone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'Nitrogen oxides deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'Hydrogen peroxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'Methane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'Carbon monoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'Nitric acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'Methyl peroxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'Formaldehyde deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'Paraffins deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'Ethene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'Olefins deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'Aldehydes deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'Peroxyacetyl nitrate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'Peroxides deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'Organic nitrates deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'Isoprene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'Sulfur dioxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'Dimethyl sulfide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'Ammonia deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'Sulfate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'Ammonium deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'Methane sulfonic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'Methyl glyoxal deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'Stratospheric ozone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'Radon deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'Lead deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'Nitrogen monoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'Hydroperoxy radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'Methylperoxy radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'Hydroxyl radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'Nitrogen dioxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'Nitrate radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'Dinitrogen pentoxide deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'Pernitric acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'Peroxy acetyl radical deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'Organic ethers deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'PAR budget corrector deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'NO to NO2 operator deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'NO to alkyl nitrate operator deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'Amine deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'Polar stratospheric cloud deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'Methanol deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'Formic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'Methacrylic acid deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'Ethane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'Ethanol deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'Propane deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'Propene deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'Terpenes deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'Methacrolein MVK deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'Nitrate deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'Acetone deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'Acetone product deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'IC3H7O2 deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'HYPROPO2 deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'Nitrogen oxides Transp deposition velocity' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Total sky direct solar radiation at surface +'Total sky direct solar radiation at surface' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'Clear-sky direct solar radiation at surface' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'Cloud base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Zero degree level +'Zero degree level' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Horizontal visibility +'Horizontal visibility' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'Maximum temperature at 2 metres in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'Minimum temperature at 2 metres in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'Soil wetness index in layer 1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'Soil wetness index in layer 2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'Soil wetness index in layer 3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'Soil wetness index in layer 4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of Zero Deg Wet Bulb Temperature +'Height of Zero Deg Wet Bulb Temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of One Deg Wet Bulb Temperature +'Height of One Deg Wet Bulb Temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Total column rain water +'Total column rain water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'Total column snow water' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'Canopy cover fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'Soil texture fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'Ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface solar radiation downward clear-sky +'Surface solar radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'Surface thermal radiation downward clear-sky' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'Surface short wave-effective total cloudiness' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#100 metre wind speed +'100 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Irrigation fraction +'Irrigation fraction' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'Irrigation' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'Surface long wave-effective total cloudiness' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'Stream function gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'Velocity potential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'Potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'Equivalent potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'Saturated equivalent potential temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'U component of divergent wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'V component of divergent wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'U component of rotational wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'V component of rotational wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'Unbalanced component of temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'Unbalanced component of logarithm of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'Unbalanced component of divergence gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'Reserved for future unbalanced components' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'Lake cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'Low vegetation cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'High vegetation cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'Type of low vegetation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'Type of high vegetation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'Sea-ice cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'Snow albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'Snow density gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'Sea surface temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'Ice surface temperature layer 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'Ice surface temperature layer 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'Ice surface temperature layer 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'Ice surface temperature layer 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'Volumetric soil water layer 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'Volumetric soil water layer 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'Volumetric soil water layer 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'Volumetric soil water layer 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'Soil type gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'Snow evaporation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'Snowmelt gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'Solar duration gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'Direct solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'Magnitude of turbulent surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'10 metre wind gust gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'Large-scale precipitation fraction gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'Maximum 2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'Minimum 2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'Montgomery potential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'Pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'Mean 2 metre temperature in the last 24 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'Downward UV radiation at the surface gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'Photosynthetically active radiation at the surface gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'Convective available potential energy gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'Potential vorticity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'Total precipitation from observations gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'Observation count gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'Start time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'Finish time for skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'Skin temperature difference' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'Leaf area index, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'Leaf area index, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'Minimum stomatal resistance, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'Minimum stomatal resistance, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'Biome cover, low vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'Biome cover, high vegetation' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'Total column liquid water' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'Total column ice water' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'Experimental product' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'Maximum temperature at 2 metres gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'Minimum temperature at 2 metres gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10 metre wind gust in the last 6 hours gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'Vertically integrated total energy' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'Atmospheric tide gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'Budget values gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'Geopotential gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'Temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'U component of wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'V component of wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'Specific humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'Surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'vertical velocity (pressure) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'Total column water gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'Total column water vapour gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'Vorticity (relative) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'Soil temperature level 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'Soil wetness level 1 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'Snow depth gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'Stratiform precipitation (Large-scale precipitation) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'Convective precipitation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'Snowfall (convective + stratiform) gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'Boundary layer dissipation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'Surface sensible heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'Surface latent heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'Charnock gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'Surface net radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'Top net radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'Mean sea level pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'Logarithm of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'Short-wave heating rate gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'Long-wave heating rate gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'Divergence gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'Height gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'Relative humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'Tendency of surface pressure gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'Boundary layer height gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'Standard deviation of orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'Anisotropy of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'Angle of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'Slope of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'Total cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'10 metre U wind component gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'10 metre V wind component gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'2 metre temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'2 metre dewpoint temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'Surface solar radiation downwards gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'Soil temperature level 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'Soil wetness level 2 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'Land-sea mask gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'Surface roughness gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'Albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'Surface thermal radiation downwards gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'Surface net solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'Surface net thermal radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'Top net solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'Top net thermal radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'East-West surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'North-South surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'Evaporation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'Soil temperature level 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'Soil wetness level 3 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'Convective cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'Low cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'Medium cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'High cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'Sunshine duration gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'East-West component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'North-South component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'North-West/South-East component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'North-East/South-West component of sub-gridscale orographic variance gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'Brightness temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'Longitudinal component of gravity wave stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'Meridional component of gravity wave stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'Gravity wave dissipation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'Skin reservoir content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'Vegetation fraction gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'Variance of sub-gridscale orography gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'Maximum temperature at 2 metres since previous post-processing gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'Minimum temperature at 2 metres since previous post-processing gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'Ozone mass mixing ratio gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'Precipitation analysis weights gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'Runoff gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'Total column ozone gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'10 metre wind speed gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'Top net solar radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'Top net thermal radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'Surface net solar radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'Surface net thermal radiation, clear sky gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'TOA incident solar radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'Diabatic heating by radiation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'Diabatic heating by vertical diffusion gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'Diabatic heating by cumulus convection gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'Diabatic heating large-scale condensation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'Vertical diffusion of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'Vertical diffusion of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'East-West gravity wave drag tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'North-South gravity wave drag tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'Convective tendency of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'Convective tendency of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'Vertical diffusion of humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'Humidity tendency by cumulus convection gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'Humidity tendency by large-scale condensation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'Change from removal of negative humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'Total precipitation gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'Instantaneous X surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'Instantaneous Y surface stress gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'Instantaneous surface heat flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'Instantaneous moisture flux gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'Apparent surface humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'Logarithm of surface roughness length for heat gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'Skin temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'Soil temperature level 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'Soil wetness level 4 gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'Temperature of snow layer gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'Convective snowfall gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'Large scale snowfall gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'Accumulated cloud fraction tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'Accumulated liquid water tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'Forecast albedo gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'Forecast surface roughness gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'Forecast logarithm of surface roughness for heat gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'Specific cloud liquid water content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'Specific cloud ice water content gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'Cloud cover gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'Accumulated ice water tendency gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'Ice age gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'Adiabatic tendency of temperature gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'Adiabatic tendency of humidity gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'Adiabatic tendency of zonal wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'Adiabatic tendency of meridional wind gradient' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'Top solar radiation upward' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'Top thermal radiation upward' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'Top solar radiation upward, clear sky' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'Top thermal radiation upward, clear sky' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'Cloud liquid water' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'Cloud fraction' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'Diabatic heating by radiation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'Diabatic heating by vertical diffusion' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'Diabatic heating by cumulus convection' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'Diabatic heating by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'Vertical diffusion of zonal wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'Vertical diffusion of meridional wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'East-West gravity wave drag' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'North-South gravity wave drag' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'Vertical diffusion of humidity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'Humidity tendency by cumulus convection' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'Humidity tendency by large-scale condensation' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'Adiabatic tendency of temperature' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'Adiabatic tendency of humidity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'Adiabatic tendency of zonal wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'Adiabatic tendency of meridional wind' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'Mean vertical velocity' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'2m temperature anomaly of at least +2K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'2m temperature anomaly of at least +1K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'2m temperature anomaly of at least 0K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'2m temperature anomaly of at most -1K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'2m temperature anomaly of at most -2K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'Total precipitation anomaly of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'Total precipitation anomaly of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'Total precipitation anomaly of at least 0 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'Surface temperature anomaly of at least 0K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'Mean sea level pressure anomaly of at least 0 Pa' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'Height of 0 degree isotherm probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'Height of snowfall limit probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'Showalter index probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'Whiting index probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'Temperature anomaly less than -2 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'Temperature anomaly of at least +2 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'Temperature anomaly less than -8 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'Temperature anomaly less than -4 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'Temperature anomaly greater than +4 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'Temperature anomaly greater than +8 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'10 metre wind gust probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'Convective available potential energy probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'Total precipitation less than 0.1 mm' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'Total precipitation rate less than 1 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'Total precipitation rate of at least 3 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'Total precipitation rate of at least 5 mm/day' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10 metre Wind speed of at least 10 m/s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10 metre Wind speed of at least 15 m/s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre Wind gust of at least 25 m/s +'10 metre Wind gust of at least 25 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre temperature less than 273.15 K +'2 metre temperature less than 273.15 K' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'Significant wave height of at least 2 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 2 ; + } +#Significant wave height of at least 4 m +'Significant wave height of at least 4 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 4 ; + probabilityType = 3 ; + } +#Significant wave height of at least 6 m +'Significant wave height of at least 6 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 6 ; + } +#Significant wave height of at least 8 m +'Significant wave height of at least 8 m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 8 ; + } +#Mean wave period of at least 8 s +'Mean wave period of at least 8 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'Mean wave period of at least 10 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'Mean wave period of at least 12 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'Mean wave period of at least 15 s' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'Geopotential probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'Temperature anomaly probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'Soil temperature level 1 probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'Snowfall (convective + stratiform) probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'Mean sea level pressure probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'Total cloud cover probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'10 metre speed probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'Maximum 2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'Minimum 2 metre temperature probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'Total precipitation probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'Significant wave height probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'Mean wave period probability' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'2m temperature probability less than -10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'2m temperature probability less than -5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'2m temperature probability less than 0 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'2m temperature probability less than 5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'2m temperature probability less than 10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'2m temperature probability greater than 25 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'2m temperature probability greater than 30 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'2m temperature probability greater than 35 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'2m temperature probability greater than 40 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'2m temperature probability greater than 45 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'Minimum 2 metre temperature probability less than -10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'Minimum 2 metre temperature probability less than -5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'Minimum 2 metre temperature probability less than 0 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'Minimum 2 metre temperature probability less than 5 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'Minimum 2 metre temperature probability less than 10 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'Maximum 2 metre temperature probability greater than 25 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'Maximum 2 metre temperature probability greater than 30 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'Maximum 2 metre temperature probability greater than 35 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'Maximum 2 metre temperature probability greater than 40 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'Maximum 2 metre temperature probability greater than 45 C' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10 metre wind speed probability of at least 10 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10 metre wind speed probability of at least 15 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10 metre wind speed probability of at least 20 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10 metre wind speed probability of at least 35 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10 metre wind speed probability of at least 50 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10 metre wind gust probability of at least 20 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10 metre wind gust probability of at least 35 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10 metre wind gust probability of at least 50 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10 metre wind gust probability of at least 75 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10 metre wind gust probability of at least 100 m/s' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'Total precipitation probability of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'Total precipitation probability of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'Total precipitation probability of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'Total precipitation probability of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'Total precipitation probability of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'Total precipitation probability of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'Total precipitation probability of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'Total precipitation probability of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'Total precipitation probability of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'Total precipitation probability of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'Total precipitation probability of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'Snowfall probability of at least 1 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'Snowfall probability of at least 5 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'Snowfall probability of at least 10 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'Snowfall probability of at least 20 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'Snowfall probability of at least 40 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'Snowfall probability of at least 60 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'Snowfall probability of at least 80 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'Snowfall probability of at least 100 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'Snowfall probability of at least 150 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'Snowfall probability of at least 200 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'Snowfall probability of at least 300 mm' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'Total Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'Total Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'Total Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'Total Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'Total Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'Total Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'Total Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'Total Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'Total Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'Total Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'High Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'High Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'High Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'High Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'High Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'High Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'High Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'High Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'High Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'High Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'Medium Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'Medium Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'Medium Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'Medium Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'Medium Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'Medium Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'Medium Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'Medium Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'Medium Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'Medium Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'Low Cloud Cover probability greater than 10%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'Low Cloud Cover probability greater than 20%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'Low Cloud Cover probability greater than 30%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'Low Cloud Cover probability greater than 40%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'Low Cloud Cover probability greater than 50%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'Low Cloud Cover probability greater than 60%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'Low Cloud Cover probability greater than 70%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'Low Cloud Cover probability greater than 80%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'Low Cloud Cover probability greater than 90%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'Low Cloud Cover probability greater than 99%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'Maximum of significant wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'Period corresponding to maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'Maximum individual wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'Model bathymetry' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'Mean wave period based on first moment' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean wave period based on second moment +'Mean wave period based on second moment' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'Wave spectral directional width' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'Mean wave period based on first moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'Mean wave period based on second moment for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'Wave spectral directional width for wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'Mean wave period based on first moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'Mean wave period based on second moment for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'Wave spectral directional width for swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak period of 1D spectra +'Peak period of 1D spectra' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'Coefficient of drag with waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'Mean direction of wind waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'Significant height of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'Mean direction of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'Mean period of total swell' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'Standard deviation wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'Mean wind direction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'Standard deviation of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'Mean square slope of waves' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'Altimeter wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'Altimeter corrected wave height' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'Altimeter range relative correction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'10 metre wind direction' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'2D wave spectra (multiple)' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'2D wave spectra (single)' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'Wave spectral kurtosis' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'Benjamin-Feir index' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'Wave spectral peakedness' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'Ocean salinity' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'Ocean potential density' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'Ocean U wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'Ocean V wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'Ocean W wind component' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'Richardson number' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'U*V product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'U*T product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'V*T product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'U*U product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'V*V product' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'UV - U~V~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'UT - U~T~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'VT - V~T~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'UU - U~U~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'VV - V~V~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'Sea level' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'Barotropic stream function' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'Depth' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'U stress' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'V stress' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'Net surface heat flux' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'Surface solar radiation' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'P-E' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'Heat flux correction' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'Observed sea surface temperature' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'Observed heat flux' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'In situ Temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Ocean potential temperature +'Ocean potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Salinity +'Salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Ocean current zonal component +'Ocean current zonal component' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Ocean current meridional component +'Ocean current meridional component' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Ocean current vertical component +'Ocean current vertical component' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'Modulus of strain rate tensor' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'Vertical viscosity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'Vertical diffusivity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'Bottom level Depth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sigma-theta +'Sigma-theta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'Richardson number' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'UV product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'UT product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'VT product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'UU product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'VV product' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level +'Sea level' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Sea level previous timestep +'Sea level previous timestep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Barotropic stream function +'Barotropic stream function' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'Bottom Pressure (equivalent height)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'Steric height' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'Curl of Wind Stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'Divergence of wind stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#U stress +'U stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#V stress +'V stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'Turbulent kinetic energy input' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'Net surface heat flux' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'Absorbed solar radiation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'Precipitation - evaporation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'Specified sea surface temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'Specified surface heat flux' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'Diagnosed sea surface temperature error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'Heat flux correction' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#20 degrees isotherm depth +'20 degrees isotherm depth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average potential temperature in the upper 300m +'Average potential temperature in the upper 300m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'Vertically integrated zonal velocity (previous time step)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'Vertically Integrated meridional velocity (previous time step)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'Vertically integrated zonal volume transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'Vertically integrated meridional volume transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'Vertically integrated zonal heat transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'Vertically integrated meridional heat transport' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'U velocity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'Depth of the velocity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'Salinity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'Depth of salinity maximum' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Average salinity in the upper 300m +'Average salinity in the upper 300m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Layer Thickness at scalar points +'Layer Thickness at scalar points' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'Layer Thickness at vector points' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'Potential temperature increment' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'Potential temperature analysis error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'Background potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'Analysed potential temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'Potential temperature background error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'Analysed salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'Salinity increment' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'Estimated Bias in Temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'Estimated Bias in Salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'Zonal Velocity increment (from balance operator)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'Meridional Velocity increment (from balance operator)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'Salinity increment (from salinity data)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'Salinity analysis error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'Background Salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'Salinity background error' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'Estimated temperature bias from assimilation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'Estimated salinity bias from assimilation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'Temperature increment from relaxation term' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'Salinity increment from relaxation term' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Bias in the zonal pressure gradient (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Bias in the meridional pressure gradient (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'Estimated temperature bias from relaxation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'Estimated salinity bias from relaxation' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'First guess bias in temperature' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'First guess bias in salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'Applied bias in pressure' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'FG bias in pressure' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'Bias in temperature(applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'Bias in salinity (applied)' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'10 metre wind gust during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'vertical velocity (pressure)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'Precipitable water content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'Soil wetness level 1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Snow depth +'Snow depth' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 141 ; + } +#Large-scale precipitation +'Large-scale precipitation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'Snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'Height' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'East-West surface stress' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'Soil wetness level 3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'Skin reservoir content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'Percentage of vegetation' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'Maximum temperature at 2 metres during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'Minimum temperature at 2 metres during averaging time' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'Standard deviation of geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'Covariance of temperature and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'Standard deviation of temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'Covariance of specific humidity and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'Covariance of specific humidity and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'Standard deviation of specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'Covariance of U component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'Covariance of U component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'Covariance of U component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'Standard deviation of U velocity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'Covariance of V component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'Covariance of V component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'Covariance of V component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'Covariance of V component and U component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'Standard deviation of V component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'Covariance of W component and geopotential' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'Covariance of W component and temperature' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'Covariance of W component and specific humidity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'Covariance of W component and U component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'Covariance of W component and V component' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'Standard deviation of vertical velocity' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'Instantaneous surface heat flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'Cloud liquid water content' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'Forecast albedo' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'Momentum flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'Gravity wave dissipation flux' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'Heaviside beta function' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'Surface geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'Vertical integral of mass of atmosphere' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'Vertical integral of temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'Vertical integral of water vapour' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'Vertical integral of cloud liquid water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'Vertical integral of cloud frozen water' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'Vertical integral of ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'Vertical integral of kinetic energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'Vertical integral of thermal energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'Vertical integral of potential+internal energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'Vertical integral of potential+internal+latent energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'Vertical integral of total energy' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'Vertical integral of energy conversion' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'Vertical integral of eastward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'Vertical integral of northward mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'Vertical integral of eastward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'Vertical integral of northward kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'Vertical integral of eastward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'Vertical integral of northward heat flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'Vertical integral of eastward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'Vertical integral of northward water vapour flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'Vertical integral of eastward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'Vertical integral of northward geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'Vertical integral of eastward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'Vertical integral of northward total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'Vertical integral of eastward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'Vertical integral of northward ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'Vertical integral of divergence of mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'Vertical integral of divergence of kinetic energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'Vertical integral of divergence of thermal energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'Vertical integral of divergence of moisture flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'Vertical integral of divergence of geopotential flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'Vertical integral of divergence of total energy flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'Vertical integral of divergence of ozone flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'Tendency of short wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'Tendency of long wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'Tendency of clear sky short wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'Tendency of clear sky long wave radiation' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'Updraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'Downdraught mass flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'Updraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'Downdraught detrainment rate' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'Total precipitation flux' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'Turbulent diffusion coefficient for heat' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'Tendency of temperature due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'Tendency of specific humidity due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'Tendency of u component due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'Tendency of v component due to physics' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'Variance of geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'Covariance of geopotential/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'Variance of temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'Covariance of geopotential/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'Covariance of temperature/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'Variance of specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'Covariance of u component/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'Covariance of u component/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'Covariance of u component/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'Variance of u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'Covariance of v component/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'Covariance of v component/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'Covariance of v component/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'Covariance of v component/u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'Variance of v component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'Covariance of omega/geopotential' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'Covariance of omega/temperature' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'Covariance of omega/specific humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'Covariance of omega/u component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'Covariance of omega/v component' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'Variance of omega' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'Variance of surface pressure' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'Variance of relative humidity' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'Covariance of u component/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'Covariance of v component/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'Covariance of omega/ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'Variance of ozone' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'Soil wetness level 2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'Stream function anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'Velocity potential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'Potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'Equivalent potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'Saturated equivalent potential temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'U component of divergent wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'V component of divergent wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'U component of rotational wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'V component of rotational wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'Unbalanced component of temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'Unbalanced component of logarithm of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'Unbalanced component of divergence anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'Lake cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'Low vegetation cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'High vegetation cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'Type of low vegetation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'Type of high vegetation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'Sea-ice cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'Snow albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'Snow density anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'Sea surface temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'Ice surface temperature anomaly layer 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'Ice surface temperature anomaly layer 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'Ice surface temperature anomaly layer 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'Ice surface temperature anomaly layer 4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'Volumetric soil water anomaly layer 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'Volumetric soil water anomaly layer 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'Volumetric soil water anomaly layer 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'Volumetric soil water anomaly layer 4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'Soil type anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'Solar duration anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'Direct solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'10 metre wind gust anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'Maximum 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'Minimum 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'Montgomery potential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'Pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'Mean 2 metre temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'Downward UV radiation at the surface anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'Photosynthetically active radiation at the surface anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'Convective available potential energy anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'Potential vorticity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'Total precipitation from observations anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'Observation count anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'Start time for skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'Finish time for skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'Skin temperature difference anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'Total column liquid water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'Total column ice water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'Vertically integrated total energy anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Generic parameter for sensitive area prediction' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'Atmospheric tide anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'Budget values anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'Geopotential anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'Temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'U component of wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'V component of wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'Specific humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'Surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'Vertical velocity (pressure) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'Total column water anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'Total column water vapour anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'Relative vorticity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'Soil temperature anomaly level 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'Soil wetness anomaly level 1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'Snow depth anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'Snowfall (convective + stratiform) anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'Charnock anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'Top net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'Mean sea level pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'Logarithm of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'Relative divergence anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'Height anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'Relative humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'Tendency of surface pressure anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'Boundary layer height anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'Standard deviation of orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'Anisotropy of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'Angle of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'Slope of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'Total cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'10 metre U wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'10 metre V wind component anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'2 metre temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'2 metre dewpoint temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'Soil temperature anomaly level 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'Soil wetness anomaly level 2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'Surface roughness anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'Albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'Surface net solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'Surface net thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'Top net solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'Top net thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'Soil temperature anomaly level 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'Soil wetness anomaly level 3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'Convective cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'Low cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'Medium cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'High cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'Sunshine duration anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'East-West component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'North-South component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'North-West/South-East component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'North-East/South-West component of sub-gridscale orographic variance anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'Brightness temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'Skin reservoir content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'Vegetation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'Variance of sub-gridscale orography anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'Maximum temperature at 2 metres anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'Minimum temperature at 2 metres anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'Ozone mass mixing ratio anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'Precipitation analysis weights anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'Runoff anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'Total column ozone anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'10 metre wind speed anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'Top net solar radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'Top net thermal radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'Surface net solar radiation clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'Diabatic heating by radiation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'Diabatic heating by vertical diffusion anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'Diabatic heating by cumulus convection anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'Diabatic heating by large-scale condensation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'Vertical diffusion of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'Vertical diffusion of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'East-West gravity wave drag tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'North-South gravity wave drag tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'Convective tendency of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'Convective tendency of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'Vertical diffusion of humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'Humidity tendency by cumulus convection anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'Humidity tendency by large-scale condensation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'Change from removal of negative humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'Total precipitation anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'Instantaneous X surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'Instantaneous Y surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'Instantaneous surface heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'Instantaneous moisture flux anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'Apparent surface humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'Logarithm of surface roughness length for heat anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'Skin temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'Soil temperature level 4 anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'Soil wetness level 4 anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'Temperature of snow layer anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'Accumulated cloud fraction tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'Accumulated liquid water tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'Forecast albedo anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'Forecast surface roughness anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'Forecast logarithm of surface roughness for heat anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'Cloud liquid water content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'Cloud ice water content anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'Cloud cover anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'Accumulated ice water tendency anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'Ice age anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'Adiabatic tendency of temperature anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'Adiabatic tendency of humidity anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'Adiabatic tendency of zonal wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'Adiabatic tendency of meridional wind anomaly' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'Snow evaporation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'Snowmelt' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'Magnitude of turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'Large-scale precipitation fraction' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'Stratiform precipitation (Large-scale precipitation)' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) +'Snowfall (convective + stratiform)' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Surface net radiation +'Surface net radiation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Short-wave heating rate +'Short-wave heating rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'Long-wave heating rate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Surface solar radiation +'Surface solar radiation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Surface thermal radiation +'Surface thermal radiation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Top solar radiation +'Top solar radiation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Top thermal radiation +'Top thermal radiation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress +'East-West surface stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress +'North-South surface stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'Evaporation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Sunshine duration +'Sunshine duration' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'Longitudinal component of gravity wave stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'Meridional component of gravity wave stress' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'Gravity wave dissipation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Runoff +'Runoff' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'Top net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'Top net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'Surface net solar radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'Surface net thermal radiation, clear sky' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation +'Solar insolation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Total precipitation +'Total precipitation' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'Convective snowfall' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'Large scale snowfall' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'Snow evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'Snowmelt anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'Magnitude of turbulent surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'Large-scale precipitation fraction anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'Stratiform precipitation (Large-scale precipitation) anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'Convective precipitation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'Snowfall (convective + stratiform) anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'Boundary layer dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'Surface sensible heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'Surface latent heat flux anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'Surface net radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'Short-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'Long-wave heating rate anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomaly +'Surface solar radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomaly +'Surface thermal radiation downwards anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomaly +'Surface solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomaly +'Surface thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomaly +'Top solar radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomaly +'Top thermal radiation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'East-West surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'North-South surface stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'Evaporation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'Sunshine duration anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'Longitudinal component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'Meridional component of gravity wave stress anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'Gravity wave dissipation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomaly +'Runoff anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'Top net solar radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'Top net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'Surface net solar radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'Surface net thermal radiation, clear sky anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'Solar insolation anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'Total precipitation anomalous rate of accumulation' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'Convective snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'Large scale snowfall anomaly' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'Sub-surface runoff' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'10 metre wind gust in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'Mean sea surface temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'1.5m specific humidity' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Sea-ice thickness +'Sea-ice thickness' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Liquid water potential temperature +'Liquid water potential temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'Fraction of sea-ice in sea' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'Open-sea surface temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'Volumetric soil water layer 1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'Volumetric soil water layer 2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'Volumetric soil water layer 3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'Volumetric soil water layer 4' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'10m wind gust in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'1.5m temperature - mean in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'Net primary productivity' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'10m U wind over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'10m V wind over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'1.5m temperature over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'1.5m dewpoint temperature over land' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'Top incoming solar radiation' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'Top outgoing solar radiation' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'Ocean ice concentration' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'Ocean mean ice depth' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'Soil temperature layer 1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'Average potential temperature in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'1.5m temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'1.5m dewpoint temperature' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'Soil temperature layer 2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'Average salinity in upper 293.4m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'Soil temperature layer 3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'1.5m temperature - maximum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'1.5m temperature - minimum in the last 24 hours' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'Soil temperature layer 4' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'Total soil wetness' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'Top net solar radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Snow depth +'Snow depth' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Field capacity +'Field capacity' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'Wilting point' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'Roughness length' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'Total soil moisture' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'2 metre dewpoint temperature difference' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'downward shortwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'upward shortwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'downward longwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'upward longwave radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'downwd photosynthetic active radiant flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'net shortwave flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'net longwave flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'total net radiative flux density' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'downw shortw radiant flux density, cloudfree part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'upw shortw radiant flux density, cloudy part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'downw longw radiant flux density, cloudfree part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'upw longw radiant flux density, cloudy part' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'shortwave radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'longwave radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'total radiative heating rate' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'soil heat flux, surface' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'soil heat flux, bottom of layer' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'fractional cloud cover' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'cloud cover, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'specific cloud water content' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'cloud water content, grid scale, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'specific cloud ice content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'cloud ice content, grid scale, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'specific rainwater content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'specific snow content, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'specific rainwater content, gs, vert. integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'specific snow content, gs, vert. integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'total column water' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'vert. integral of divergence of tot. water content' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'cloud covers CH_CM_CL (000...888)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'cloud cover CH (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'cloud cover CM (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'cloud cover CL (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'total cloud cover (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'fog (0..8)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'fog' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'cloud cover, convective cirrus' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'specific cloud water content, convective clouds' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'cloud water content, conv clouds, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'specific cloud ice content, convective clouds' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'cloud ice content, conv clouds, vert integrated' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'convective mass flux' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'Updraft velocity, convection' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'entrainment parameter, convection' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'cloud base, convective clouds (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'cloud top, convective clouds (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'convective layers (00...77) (BKE)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'KO-index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'convection base index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'convection top index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'convective temperature tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'convective tendency of specific humidity' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'convective tendency of total heat' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'convective tendency of total water' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'convective momentum tendency (X-component)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'convective momentum tendency (Y-component)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'convective vorticity tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'convective divergence tendency' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'top of dry convection (above msl)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'dry convection top index' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'height of 0 degree Celsius isotherm above msl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'height of snow-fall limit' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'spec. content of precip. particles' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'surface precipitation rate, rain, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'surface precipitation rate, snow, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'surface precipitation amount, rain, grid scale' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'surface precipitation rate, rain, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'surface precipitation rate, snow, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'surface precipitation amount, rain, convective' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'deviation of pressure from reference value' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'coefficient of horizontal diffusion' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'Maximum wind velocity' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'water content of interception store' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'snow temperature' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'ice surface temperature' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'convective available potential energy' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'Indicates a missing value' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; +} +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'SO2 precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'Soil clay content' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'Methane' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#Total column Methane +'Total column Methane' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'Number of positive FRP pixels per grid cell' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'Radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'Total column Radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'Sulphate Aerosol Mixing Ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'Aerosol type 12 mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'Aerosol type 1 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'Aerosol type 2 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'Aerosol type 3 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'Aerosol type 4 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'Aerosol type 5 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'Aerosol type 6 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'Aerosol type 7 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'Aerosol type 8 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'Aerosol type 9 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'Aerosol type 10 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'Aerosol type 11 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'Aerosol type 12 source/gain accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'Aerosol type 1 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'Aerosol type 2 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'Aerosol type 3 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'Aerosol type 4 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'Aerosol type 5 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'Aerosol type 6 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'Aerosol type 7 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'Aerosol type 8 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'Aerosol type 9 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'Aerosol type 10 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'Aerosol type 11 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'Aerosol type 12 sink/loss accumulated' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'Aerosol precursor mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'Aerosol small mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'Aerosol large mode mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'Aerosol precursor optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'Aerosol small mode optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'Aerosol large mode optical depth' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'Dust emission potential' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'Lifting threshold speed' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'Soil clay content' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'Methane' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'Total column Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'Total column Methane' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'Total column Nitrous oxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'Ocean flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'Natural biosphere flux of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'Anthropogenic emissions of Carbon Dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'Methane Surface Fluxes' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'Methane loss rate due to radical hydroxyl (OH)' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'Wildfire overall flux of burnt Carbon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'Wildfire fraction of C4 plants' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'Wildfire vegetation map index' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'Wildfire Combustion Completeness' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'Wildfire Fuel Load: Carbon per unit area' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'Wildfire fraction of area observed' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'Wildfire observed area' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'Wildfire radiative power' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'Wildfire combustion rate' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'Total column Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'Total column Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'Total column Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'Total column Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'Total Column Nitrogen Oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'Reactive tracer 1 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'Total column GRG tracer 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'Reactive tracer 2 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'Total column GRG tracer 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'Reactive tracer 3 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'Total column GRG tracer 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'Reactive tracer 4 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'Total column GRG tracer 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'Reactive tracer 5 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'Total column GRG tracer 5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'Reactive tracer 6 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'Total column GRG tracer 6' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'Reactive tracer 7 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'Total column GRG tracer 7' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'Reactive tracer 8 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'Total column GRG tracer 8' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'Reactive tracer 9 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'Total column GRG tracer 9' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'Reactive tracer 10 mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'Total column GRG tracer 10' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'Surface flux Nitrogen oxides' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'Surface flux Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'Surface flux Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'Surface flux Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'Surface flux Formaldehyde' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'Surface flux GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'Surface flux reactive tracer 1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'Surface flux reactive tracer 2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'Surface flux reactive tracer 3' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'Surface flux reactive tracer 4' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'Surface flux reactive tracer 5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'Surface flux reactive tracer 6' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'Surface flux reactive tracer 7' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'Surface flux reactive tracer 8' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'Surface flux reactive tracer 9' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'Surface flux reactive tracer 10' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'Radon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'Total column Radon' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'Total column Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'Anthropogenic Emissions of Sulphur Hexafluoride' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'GEMS Total column ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'Total Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'Sea Salt Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'Dust Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'Organic Matter Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'Black Carbon Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'Sulphate Aerosol Optical Depth at 550nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'Total Aerosol Optical Depth at 469nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'Total Aerosol Optical Depth at 670nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'Total Aerosol Optical Depth at 865nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'Total Aerosol Optical Depth at 1240nm' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'Total precipitation observation count' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'Friction velocity' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'Mean temperature at 2 metres' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'Mean of 10 metre wind speed' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'Mean total cloud cover' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'Lake depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'Lake shape factor' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'Lake ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'Lake ice depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'Minimum vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'Mean vertical gradient of refractivity inside trapping layer' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'Duct base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'Trapping layer base height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'Trapping layer top height' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'Neutral wind at 10 m u-component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'Neutral wind at 10 m v-component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'Surface temperature significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'Mean sea level pressure significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'2 metre temperature significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'Total precipitation significance' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'U-component stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'V-component stokes drift' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire radiative power maximum +'Wildfire radiative power maximum' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'V-tendency from non-orographic wave drag' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'U-tendency from non-orographic wave drag' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#100 metre U wind component +'100 metre U wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'100 metre V wind component' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ASCAT first soil moisture CDF matching parameter' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ASCAT second soil moisture CDF matching parameter' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/paramId.def b/eccodes/definitions/grib3/localConcepts/ecmf/paramId.def new file mode 100644 index 00000000..7ff7d1cd --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/paramId.def @@ -0,0 +1,17509 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'131060' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } +#Total precipitation of at least 5 mm +'131061' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } +#Total precipitation of at least 40 mm +'131082' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } +#Total precipitation of at least 60 mm +'131083' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } +#Total precipitation of at least 80 mm +'131084' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } +#Total precipitation of at least 100 mm +'131085' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'131086' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'131087' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'131088' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } +#Equivalent potential temperature +'4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'5' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'7' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'8' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'9' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'11' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'12' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'13' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'14' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'15' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'16' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'17' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'18' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'19' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'20' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'21' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'22' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'23' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'25' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'26' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'27' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'28' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'29' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'30' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'32' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'35' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'36' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'37' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'38' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'39' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'40' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'41' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'42' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'44' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'45' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'46' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'47' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'48' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'50' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'51' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 24 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'52' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Montgomery potential +'53' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'55' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'56' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'57' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'58' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'62' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'63' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'64' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'65' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'66' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'67' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'68' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'69' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'70' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'71' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'72' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'73' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'74' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column liquid water +'78' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column ice water +'79' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Experimental product +'80' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'81' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'82' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'83' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'84' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'85' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'86' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'87' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'88' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'89' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'90' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'91' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'92' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'93' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'94' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'95' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'96' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'97' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'98' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'99' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'100' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'101' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'102' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'103' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'104' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'105' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'106' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'107' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'108' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'109' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'110' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'111' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'112' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'113' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'114' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'115' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'116' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'117' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'118' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'119' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'120' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'123' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'124' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'125' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'126' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'127' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'128' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'137' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'139' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'140' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + unitsFactor = 1000 ; + } +#Large-scale precipitation +'142' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'144' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'148' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'149' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'150' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'152' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'153' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'154' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'158' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'159' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'160' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'161' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'162' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'163' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'164' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'170' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'171' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'174' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'178' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'182' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'183' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'184' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'185' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'186' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'187' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'188' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'190' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'191' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'192' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'193' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'195' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'196' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'197' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'198' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'199' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'200' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'204' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'205' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'206' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'208' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'209' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'210' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'211' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation +'212' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'213' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'214' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'215' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'216' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'217' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'218' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'219' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'220' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'221' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'222' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'223' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'224' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'225' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'226' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'227' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'228' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'229' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'230' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'231' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'232' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'233' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'234' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'236' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'237' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Temperature of snow layer +'238' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'239' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'240' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'241' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'242' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'243' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'244' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'245' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'249' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'250' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'251' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'252' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'253' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'254' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'200001' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'200002' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'200003' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'200004' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'200005' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'200011' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'200012' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'200013' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'200014' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'200021' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'200022' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'200023' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'200024' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'200025' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'200026' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'200027' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'200028' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'200029' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'200030' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'200031' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'200032' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'200033' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'200034' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'200035' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'200036' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'200037' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'200038' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'200039' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'200040' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'200041' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'200042' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'200043' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'200044' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'200045' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'200046' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'200047' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'200048' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'200049' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'200050' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'200051' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'200052' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'200053' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'200054' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'200055' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'200056' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'200057' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'200058' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'200059' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'200060' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'200061' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'200062' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'200063' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'200064' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'200065' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'200066' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'200067' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'200068' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'200069' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'200070' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'200071' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'200078' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'200079' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'200080' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'200081' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'200082' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'200083' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'200084' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'200085' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'200086' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'200087' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'200088' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'200089' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'200090' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'200091' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'200092' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'200093' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'200094' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'200095' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'200096' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'200097' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'200098' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'200099' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'200100' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'200101' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'200102' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'200103' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'200104' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'200105' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'200106' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'200107' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'200108' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'200109' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'200110' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'200111' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'200112' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'200113' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'200114' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'200115' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'200116' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'200117' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'200118' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'200119' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'200120' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'200121' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'200122' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'200123' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'200125' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'200126' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'200127' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'200128' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'200129' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'200130' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'200131' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'200132' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'200133' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'200134' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'200135' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'200136' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'200137' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'200138' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'200139' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'200140' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'200141' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'200142' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'200143' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'200144' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'200145' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'200146' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'200147' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'200148' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'200149' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'200150' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'200151' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'200152' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'200153' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'200154' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'200155' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'200156' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'200157' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'200158' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'200159' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'200160' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'200161' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'200162' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'200163' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'200164' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'200165' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'200166' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'200167' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'200169' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'200170' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'200171' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'200172' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'200173' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'200174' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'200175' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'200176' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'200177' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'200178' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'200179' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'200180' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'200181' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'200182' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'200183' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'200184' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'200185' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'200186' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'200187' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'200188' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'200189' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'200190' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'200191' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'200192' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'200193' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'200194' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'200195' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'200196' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'200197' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'200198' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'200199' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'200200' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'200201' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'200202' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'200203' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'200204' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'200205' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'200206' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'200207' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'200208' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'200209' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'200210' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'200211' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'200212' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'200214' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'200215' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'200216' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'200217' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'200218' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'200219' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'200220' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'200221' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'200222' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'200223' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'200224' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'200225' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'200226' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'200227' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'200228' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'200229' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'200230' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'200231' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'200232' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'200233' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'200234' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'200235' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'200236' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'200237' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'200238' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'200239' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'200240' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'200241' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'200242' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'200243' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'200244' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'200245' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'200246' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'200247' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'200248' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'200249' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'200250' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'200251' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'200252' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'200253' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'200254' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'200255' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'151193' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'162114' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'162115' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'162116' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'162117' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'162118' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'162119' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'162120' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'162121' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'162122' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'162123' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'162124' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'162125' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'162126' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'162127' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'162128' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'162129' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'162130' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'162131' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'162132' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'162133' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'162134' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'162135' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'162136' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'162137' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'162138' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'162139' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'162140' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'162141' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'171006' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'171007' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'171121' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'171122' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'210013' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'210014' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'210015' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'210028' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'210029' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'210030' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'210043' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'210044' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'210045' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'210055' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'210056' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'210057' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'210058' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'210059' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Particulate matter d < 1 um +'210072' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'210073' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'210074' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'210079' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Mean altitude of maximum injection +'210119' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'210120' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'210186' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'210187' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'210188' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'210189' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'210190' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'210191' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'210192' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'210193' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'210194' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'210195' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'210196' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'210197' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'210217' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'210218' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'210219' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'210220' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'210221' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'210222' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'210223' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'210224' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'210225' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'210226' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'210227' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'210228' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'210229' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'210230' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Altitude of plume bottom +'210242' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'210243' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'210244' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'210245' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'210246' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Aerosol type 13 mass mixing ratio +'211013' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'211014' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'211015' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'211028' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'211029' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'211030' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'211043' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'211044' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'211045' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'211055' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'211056' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'211119' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'211120' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Experimental product +'212001' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'212002' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'212003' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'212004' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'212005' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'212006' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'212007' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'212008' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'212009' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'212010' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'212011' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'212012' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'212013' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'212014' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'212015' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'212016' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'212017' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'212018' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'212019' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'212020' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'212021' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'212022' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'212023' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'212024' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'212025' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'212026' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'212027' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'212028' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'212029' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'212030' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'212031' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'212032' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'212033' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'212034' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'212035' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'212036' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'212037' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'212038' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'212039' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'212040' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'212041' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'212042' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'212043' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'212044' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'212045' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'212046' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'212047' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'212048' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'212049' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'212050' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'212051' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'212052' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'212053' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'212054' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'212055' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'212056' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'212057' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'212058' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'212059' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'212060' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'212061' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'212062' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'212063' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'212064' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'212065' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'212066' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'212067' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'212068' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'212069' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'212070' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'212071' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'212072' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'212073' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'212074' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'212075' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'212076' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'212077' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'212078' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'212079' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'212080' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'212081' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'212082' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'212083' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'212084' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'212085' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'212086' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'212087' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'212088' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'212089' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'212090' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'212091' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'212092' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'212093' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'212094' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'212095' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'212096' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'212097' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'212098' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'212099' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'212100' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'212101' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'212102' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'212103' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'212104' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'212105' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'212106' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'212107' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'212108' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'212109' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'212110' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'212111' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'212112' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'212113' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'212114' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'212115' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'212116' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'212117' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'212118' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'212119' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'212120' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'212121' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'212122' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'212123' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'212124' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'212125' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'212126' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'212127' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'212128' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'212129' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'212130' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'212131' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'212132' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'212133' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'212134' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'212135' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'212136' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'212137' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'212138' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'212139' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'212140' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'212141' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'212142' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'212143' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'212144' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'212145' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'212146' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'212147' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'212148' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'212149' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'212150' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'212151' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'212152' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'212153' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'212154' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'212155' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'212156' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'212157' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'212158' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'212159' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'212160' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'212161' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'212162' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'212163' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'212164' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'212165' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'212166' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'212167' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'212168' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'212169' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'212170' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'212171' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'212172' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'212173' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'212174' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'212175' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'212176' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'212177' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'212178' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'212179' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'212180' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'212181' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'212182' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'212183' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'212184' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'212185' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'212186' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'212187' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'212188' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'212189' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'212190' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'212191' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'212192' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'212193' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'212194' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'212195' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'212196' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'212197' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'212198' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'212199' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'212200' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'212201' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'212202' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'212203' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'212204' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'212205' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'212206' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'212207' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'212208' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'212209' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'212210' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'212211' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'212212' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'212213' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'212214' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'212215' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'212216' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'212217' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'212218' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'212219' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'212220' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'212221' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'212222' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'212223' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'212224' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'212225' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'212226' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'212227' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'212228' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'212229' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'212230' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'212231' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'212232' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'212233' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'212234' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'212235' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'212236' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'212237' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'212238' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'212239' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'212240' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'212241' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'212242' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'212243' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'212244' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'212245' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'212246' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'212247' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'212248' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'212249' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'212250' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'212251' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'212252' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'212253' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'212254' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'212255' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'213001' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'213002' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'213003' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'213004' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'213005' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +# Cosine of solar zenith angle +'214001' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +# UV biologically effective dose +'214002' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +# UV biologically effective dose clear-sky +'214003' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'214004' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'214005' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'214006' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'214007' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'214008' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'214009' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'214010' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'214011' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'214012' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'214013' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'214014' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'214015' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'214016' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'214017' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'214018' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'214019' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'214020' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'214021' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'214022' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'214023' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'214024' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'214025' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'214026' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'214027' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'214028' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'214029' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'214030' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'214031' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'214032' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'214033' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'214034' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'214035' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'214036' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'214037' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'214038' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'214039' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'214040' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'214041' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'214042' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'214043' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'214044' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'214045' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'214046' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'214047' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'214048' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'214049' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'214050' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'214051' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +# Profile of optical thickness at 340 nm +'214052' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'215001' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'215002' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'215003' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'215004' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'215005' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'215006' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'215007' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'215008' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'215009' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'215010' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'215011' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'215012' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'215013' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'215014' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'215015' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'215016' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'215017' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'215018' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'215019' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'215020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'215021' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'215022' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'215023' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'215024' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'215025' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'215026' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'215027' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'215028' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'215029' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'215030' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'215031' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'215032' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'215033' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'215034' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'215035' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'215036' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'215037' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'215038' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'215039' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'215040' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'215041' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'215042' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'215043' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'215044' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'215045' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'215046' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'215047' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'215048' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'215049' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'215050' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'215051' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'215052' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'215053' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'215054' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'215055' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'215056' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'215057' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'215058' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'215059' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'215060' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'215061' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'215062' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'215063' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'215064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'215065' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'215066' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'215067' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'215068' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'215069' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'215070' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'215071' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'215072' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'215073' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'215074' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'215075' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'215076' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'215077' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'215078' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'215079' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'215080' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +# Source/gain of sulphate aerosol +'215081' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +# Dry deposition of sulphate aerosol +'215082' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +# Sedimentation of sulphate aerosol +'215083' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'215084' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'215085' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +# Negative fixer of sulphate aerosol +'215086' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'215087' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +# Sulphate aerosol optical depth +'215088' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'215089' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'215090' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'215091' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'215092' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'215093' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'215094' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'215095' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'215096' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'215097' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'215098' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'215099' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'215100' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'215101' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'215102' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'215103' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'215104' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'215105' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'215106' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'215107' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'215108' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'215109' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'215110' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'215111' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'215112' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'215113' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'215114' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'215115' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'215116' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'215117' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'215118' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'215119' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'215120' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'215121' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'215122' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'215123' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'215124' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'215125' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'215126' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'215127' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'215128' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'215129' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'215130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'215131' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'215132' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'215133' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'215134' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'215135' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'215136' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'215137' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'215138' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'215139' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'215140' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'215141' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'215142' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'215143' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'215144' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'215145' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'215146' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'215147' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'215148' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'215149' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Assimetry factor at 340 nm +'215150' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Assimetry factor at 355 nm +'215151' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Assimetry factor at 380 nm +'215152' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Assimetry factor at 400 nm +'215153' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Assimetry factor at 440 nm +'215154' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Assimetry factor at 469 nm +'215155' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Assimetry factor at 500 nm +'215156' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Assimetry factor at 532 nm +'215157' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Assimetry factor at 550 nm +'215158' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Assimetry factor at 645 nm +'215159' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Assimetry factor at 670 nm +'215160' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Assimetry factor at 800 nm +'215161' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Assimetry factor at 858 nm +'215162' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Assimetry factor at 865 nm +'215163' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Assimetry factor at 1020 nm +'215164' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Assimetry factor at 1064 nm +'215165' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Assimetry factor at 1240 nm +'215166' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Assimetry factor at 1640 nm +'215167' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'215168' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'215169' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'215170' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'215171' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'215172' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'215173' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'215174' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'215175' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'215176' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'215177' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'215178' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Assimetry factor at 2130 nm +'215179' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'215180' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'215181' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'215182' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'215183' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'215184' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'215185' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'215186' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'215187' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'215188' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Experimental product +'216001' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'216002' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'216003' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'216004' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'216005' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'216006' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'216007' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'216008' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'216009' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'216010' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'216011' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'216012' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'216013' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'216014' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'216015' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'216016' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'216017' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'216018' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'216019' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'216020' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'216021' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'216022' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'216023' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'216024' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'216025' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'216026' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'216027' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'216028' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'216029' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'216030' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'216031' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'216032' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'216033' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'216034' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'216035' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'216036' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'216037' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'216038' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'216039' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'216040' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'216041' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'216042' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'216043' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'216044' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'216045' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'216046' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'216047' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'216048' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'216049' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'216050' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'216051' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'216052' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'216053' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'216054' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'216055' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'216056' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'216057' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'216058' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'216059' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'216060' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'216061' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'216062' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'216063' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'216064' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'216065' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'216066' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'216067' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'216068' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'216069' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'216070' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'216071' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'216072' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'216073' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'216074' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'216075' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'216076' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'216077' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'216078' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'216079' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'216080' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'216081' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'216082' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'216083' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'216084' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'216085' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'216086' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'216087' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'216088' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'216089' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'216090' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'216091' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'216092' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'216093' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'216094' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'216095' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'216096' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'216097' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'216098' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'216099' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'216100' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'216101' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'216102' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'216103' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'216104' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'216105' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'216106' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'216107' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'216108' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'216109' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'216110' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'216111' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'216112' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'216113' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'216114' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'216115' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'216116' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'216117' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'216118' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'216119' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'216120' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'216121' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'216122' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'216123' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'216124' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'216125' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'216126' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'216127' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'216128' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'216129' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'216130' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'216131' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'216132' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'216133' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'216134' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'216135' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'216136' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'216137' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'216138' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'216139' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'216140' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'216141' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'216142' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'216143' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'216144' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'216145' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'216146' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'216147' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'216148' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'216149' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'216150' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'216151' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'216152' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'216153' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'216154' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'216155' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'216156' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'216157' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'216158' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'216159' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'216160' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'216161' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'216162' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'216163' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'216164' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'216165' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'216166' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'216167' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'216168' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'216169' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'216170' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'216171' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'216172' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'216173' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'216174' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'216175' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'216176' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'216177' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'216178' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'216179' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'216180' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'216181' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'216182' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'216183' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'216184' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'216185' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'216186' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'216187' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'216188' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'216189' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'216190' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'216191' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'216192' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'216193' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'216194' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'216195' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'216196' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'216197' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'216198' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'216199' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'216200' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'216201' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'216202' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'216203' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'216204' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'216205' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'216206' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'216207' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'216208' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'216209' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'216210' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'216211' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'216212' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'216213' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'216214' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'216215' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'216216' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'216217' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'216218' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'216219' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'216220' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'216221' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'216222' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'216223' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'216224' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'216225' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'216226' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'216227' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'216228' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'216229' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'216230' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'216231' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'216232' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'216233' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'216234' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'216235' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'216236' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'216237' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'216238' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'216239' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'216240' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'216241' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'216242' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'216243' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'216244' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'216245' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'216246' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'216247' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'216248' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'216249' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'216250' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'216251' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'216252' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'216253' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'216254' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'216255' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'217003' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane +'217004' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'217006' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'217007' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'217009' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'217010' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'217011' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'217012' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'217013' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'217014' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'217015' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'217016' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'217018' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'217019' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'217020' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'217021' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'217022' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'217023' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'217024' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'217026' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'217027' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'217028' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'217029' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'217030' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'217032' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'217033' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'217034' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'217035' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'217036' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'217037' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'217038' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'217039' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'217040' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'217041' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'217042' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'217043' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'217044' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'217045' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'217046' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'217047' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'217048' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'217049' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'217050' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'217051' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'217052' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'217053' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'217054' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'217055' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'217056' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Total column hydrogen peroxide +'218003' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'218004' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'218006' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'218007' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'218009' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'218010' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'218011' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'218012' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'218013' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'218014' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'218015' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'218016' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'218018' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'218019' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'218020' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'218021' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'218022' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'218023' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'218024' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'218026' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'218027' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'218028' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'218029' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'218030' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'218032' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'218033' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'218034' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'218035' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'218036' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'218037' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'218038' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'218039' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'218040' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'218041' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'218042' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'218043' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'218044' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'218045' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'218046' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'218047' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'218048' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'218049' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'218050' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'218051' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'218052' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'218053' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'218054' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'218055' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'218056' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Ozone emissions +'219001' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'219002' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'219003' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'219004' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'219005' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'219006' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'219007' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'219008' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'219009' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'219010' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'219011' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'219012' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'219013' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'219014' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'219015' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'219016' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'219017' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'219018' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'219019' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'219020' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'219021' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'219022' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'219023' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'219024' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'219025' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'219026' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'219027' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'219028' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'219029' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'219030' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'219031' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'219032' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'219033' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'219034' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'219035' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'219036' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'219037' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'219038' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'219039' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'219040' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'219041' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'219042' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'219043' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'219044' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'219045' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'219046' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'219047' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'219048' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'219049' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'219050' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'219051' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'219052' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'219053' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'219054' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'219055' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'219056' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Ozone deposition velocity +'221001' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'221002' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'221003' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'221004' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'221005' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'221006' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'221007' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'221008' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'221009' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'221010' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'221011' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'221012' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'221013' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'221014' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'221015' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'221016' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'221017' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'221018' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'221019' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'221020' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'221021' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'221022' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'221023' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'221024' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'221025' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'221026' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'221027' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'221028' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'221029' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'221030' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'221031' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'221032' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'221033' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'221034' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'221035' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'221036' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'221037' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'221038' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'221039' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'221040' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'221041' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'221042' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'221043' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'221044' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'221045' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'221046' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'221047' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'221048' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'221049' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'221050' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'221051' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'221052' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'221053' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'221054' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'221055' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'221056' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Total sky direct solar radiation at surface +'228021' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'228022' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'228023' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Zero degree level +'228024' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Horizontal visibility +'228025' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'228026' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'228027' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'228040' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'228041' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'228042' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'228043' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of Zero Deg Wet Bulb Temperature +'228047' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of One Deg Wet Bulb Temperature +'228048' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Total column rain water +'228089' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'228090' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'228091' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'228092' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'228093' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'228094' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface solar radiation downward clear-sky +'228129' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'228130' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'228248' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#100 metre wind speed +'228249' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Irrigation fraction +'228250' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'228251' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'228252' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'228255' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'129001' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'129002' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'129003' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'129004' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'129005' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'129011' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'129012' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'129013' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'129014' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'129021' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'129022' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'129023' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'129024' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'129025' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'129026' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'129027' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'129028' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'129029' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'129030' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'129031' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'129032' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'129033' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'129034' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'129035' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'129036' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'129037' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'129038' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'129039' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'129040' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'129041' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'129042' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'129043' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'129044' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'129045' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'129046' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'129047' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'129048' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'129049' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'129050' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'129051' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'129052' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'129053' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'129054' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'129055' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'129056' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'129057' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'129058' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'129059' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'129060' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'129061' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'129062' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'129063' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'129064' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'129065' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'129066' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'129067' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'129068' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'129069' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'129070' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'129071' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'129078' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'129079' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'129080' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'129081' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'129082' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'129083' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'129084' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'129085' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'129086' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'129087' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'129088' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'129089' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'129090' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'129091' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'129092' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'129093' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'129094' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'129095' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'129096' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'129097' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'129098' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'129099' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'129100' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'129101' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'129102' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'129103' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'129104' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'129105' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'129106' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'129107' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'129108' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'129109' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'129110' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'129111' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'129112' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'129113' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'129114' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'129115' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'129116' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'129117' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'129118' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'129119' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'129120' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'129121' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'129122' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'129123' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'129125' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'129126' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'129127' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'129128' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'129129' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'129130' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'129131' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'129132' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'129133' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'129134' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'129135' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'129136' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'129137' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'129138' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'129139' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'129140' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'129141' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'129142' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'129143' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'129144' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'129145' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'129146' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'129147' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'129148' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'129149' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'129150' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'129151' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'129152' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'129153' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'129154' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'129155' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'129156' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'129157' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'129158' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'129159' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'129160' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'129161' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'129162' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'129163' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'129164' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'129165' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'129166' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'129167' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'129168' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'129169' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'129170' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'129171' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'129172' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'129173' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'129174' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'129175' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'129176' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'129177' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'129178' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'129179' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'129180' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'129181' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'129182' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'129183' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'129184' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'129185' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'129186' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'129187' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'129188' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'129189' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'129190' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'129191' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'129192' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'129193' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'129194' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'129195' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'129196' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'129197' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'129198' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'129199' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'129200' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'129201' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'129202' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'129203' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'129204' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'129205' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'129206' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'129207' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'129208' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'129209' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'129210' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'129211' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'129212' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'129214' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'129215' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'129216' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'129217' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'129218' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'129219' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'129220' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'129221' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'129222' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'129223' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'129224' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'129225' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'129226' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'129227' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'129228' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'129229' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'129230' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'129231' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'129232' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'129233' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'129234' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'129235' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'129236' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'129237' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'129238' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'129239' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'129240' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'129241' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'129242' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'129243' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'129244' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'129245' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'129246' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'129247' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'129248' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'129249' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'129250' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'129251' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'129252' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'129253' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'129254' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'129255' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'130208' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'130209' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'130210' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'130211' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'130212' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'130213' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'130214' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'130215' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'130216' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'130217' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'130218' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'130219' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'130220' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'130221' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'130224' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'130225' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'130226' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'130228' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'130229' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'130230' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'130231' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'130232' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'131001' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'131002' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'131003' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'131004' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'131005' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'131006' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'131007' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'131008' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'131009' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'131010' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'131015' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'131016' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'131017' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'131018' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'131020' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'131021' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'131022' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'131023' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'131024' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'131025' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'131049' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'131059' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'131064' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'131065' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'131066' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'131067' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'131068' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'131069' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre Wind gust of at least 25 m/s +'131072' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#2 metre temperature less than 273.15 K +'131073' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'131074' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + } +#Significant wave height of at least 4 m +'131075' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 4 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + } +#Significant wave height of at least 6 m +'131076' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 6 ; + } +#Significant wave height of at least 8 m +'131077' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'131078' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'131079' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'131080' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'131081' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'131129' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'131130' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'131139' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'131144' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'131151' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'131164' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'131165' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'131167' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'131201' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'131202' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'131228' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'131229' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'131232' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'131255' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'133001' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'133002' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'133003' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'133004' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'133005' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'133006' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'133007' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'133008' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'133009' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'133010' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'133011' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'133012' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'133013' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'133014' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'133015' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'133016' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'133017' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'133018' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'133019' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'133020' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'133021' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'133022' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'133023' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'133024' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'133025' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'133026' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'133027' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'133028' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'133029' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'133030' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'133031' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'133032' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'133033' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'133034' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'133035' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'133036' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'133037' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'133038' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'133039' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'133040' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'133041' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'133042' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'133043' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'133044' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'133045' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'133046' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'133047' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'133048' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'133049' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'133050' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'133051' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'133052' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'133053' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'133054' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'133055' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'133056' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'133057' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'133058' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'133059' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'133060' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'133061' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'133062' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'133063' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'133064' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'133065' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'133066' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'133067' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'133068' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'133069' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'133070' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'133071' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'133072' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'133073' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'133074' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'133075' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'133076' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'133077' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'133078' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'133079' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'133080' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'133081' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'133082' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'133083' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'133084' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'133085' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'133086' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'133087' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'133088' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'133089' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'133090' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'133091' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'133092' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'140200' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'140217' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'140218' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'140219' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'140220' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean wave period based on second moment +'140221' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'140222' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'140223' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'140224' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'140225' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'140226' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'140227' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'140228' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak period of 1D spectra +'140231' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'140233' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'140234' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'140235' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'140236' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'140237' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'140238' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'140239' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'140240' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'140241' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'140242' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'140243' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'140244' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'140245' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'140246' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'140247' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'140248' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'140249' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'140250' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'140251' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'140252' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'140253' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'140254' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'140255' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'150129' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'150130' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'150131' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'150133' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'150134' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'150135' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'150137' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'150139' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'150140' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'150141' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'150142' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'150143' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'150144' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'150145' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'150146' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'150147' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'150148' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'150152' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'150153' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'150154' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'150155' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'150168' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'150169' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'150170' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'150171' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'150172' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'150173' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'150180' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'150181' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'150182' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'150183' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'150255' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'151128' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Ocean potential temperature +'151129' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Salinity +'151130' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Ocean current zonal component +'151131' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Ocean current meridional component +'151132' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Ocean current vertical component +'151133' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'151134' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'151135' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'151136' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'151137' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sigma-theta +'151138' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'151139' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'151140' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'151141' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'151142' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'151143' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'151144' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level +'151145' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Sea level previous timestep +'151146' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Barotropic stream function +'151147' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'151148' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'151149' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'151150' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'151151' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'151152' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#U stress +'151153' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#V stress +'151154' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'151155' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'151156' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'151157' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'151158' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'151159' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'151160' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'151161' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'151162' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#20 degrees isotherm depth +'151163' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average potential temperature in the upper 300m +'151164' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'151165' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'151166' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'151167' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'151168' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'151169' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'151170' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'151171' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'151172' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'151173' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'151174' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Average salinity in the upper 300m +'151175' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Layer Thickness at scalar points +'151176' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'151177' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'151178' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'151179' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'151180' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'151181' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'151182' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'151183' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'151184' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'151185' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'151186' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'151187' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'151188' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'151190' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'151191' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'151192' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'151194' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'151199' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'151200' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'151201' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'151202' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'151203' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'151204' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'151205' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'151206' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'151207' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'151208' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'151209' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'151210' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'151211' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'151212' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'151255' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'160049' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'160135' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'160137' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'160140' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Snow depth +'160141' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 141 ; + } +#Large-scale precipitation +'160142' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'160143' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'160144' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'160156' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'160157' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'160171' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'160180' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'160181' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'160182' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'160184' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'160198' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'160199' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'160201' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'160202' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'160205' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'160206' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'160207' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'160208' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'160209' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'160210' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'160211' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'160212' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'160213' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'160214' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'160215' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'160216' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'160217' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'160218' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'160219' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'160220' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'160221' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'160222' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'160223' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'160224' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'160225' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'160226' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'160231' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'160239' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'160240' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'160241' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'160242' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'160243' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'160246' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'160247' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'160249' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'160254' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'162051' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'162053' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'162054' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'162055' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'162056' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'162057' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'162058' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'162059' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'162060' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'162061' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'162062' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'162063' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'162064' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'162065' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'162066' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'162067' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'162068' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'162069' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'162070' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'162071' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'162072' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'162073' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'162074' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'162075' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'162076' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'162077' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'162078' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'162081' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'162082' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'162083' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'162084' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'162085' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'162086' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'162087' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'162100' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'162101' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'162102' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'162103' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'162104' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'162105' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'162106' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'162107' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'162108' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'162109' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'162110' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'162111' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'162112' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'162113' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'162206' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'162207' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'162208' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'162209' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'162210' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'162211' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'162212' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'162213' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'162214' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'162215' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'162216' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'162217' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'162218' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'162219' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'162220' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'162221' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'162222' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'162223' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'162224' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'162225' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'162226' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'162227' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'162229' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'162230' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'162231' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'162232' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'162233' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'162255' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'170149' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'170171' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'170179' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'171001' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'171002' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'171003' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'171004' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'171005' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'171011' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'171012' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'171013' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'171014' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'171021' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'171022' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'171023' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'171026' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'171027' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'171028' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'171029' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'171030' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'171031' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'171032' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'171033' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'171034' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'171035' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'171036' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'171037' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'171038' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'171039' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'171040' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'171041' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'171042' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'171043' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'171044' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'171045' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'171046' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'171047' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'171048' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'171049' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'171050' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'171051' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'171052' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'171053' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'171054' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'171055' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'171056' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'171057' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'171058' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'171059' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'171060' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'171061' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'171062' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'171063' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'171064' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'171065' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'171078' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'171079' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'171125' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'171126' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'171127' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'171128' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'171129' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'171130' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'171131' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'171132' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'171133' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'171134' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'171135' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'171136' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'171137' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'171138' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'171139' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'171140' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'171141' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'171142' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'171143' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'171144' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'171145' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'171146' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'171147' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'171148' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'171149' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'171150' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'171151' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'171152' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'171153' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'171154' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'171155' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'171156' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'171157' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'171158' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'171159' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'171160' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'171161' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'171162' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'171163' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'171164' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'171165' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'171166' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'171167' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'171168' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'171169' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'171170' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'171171' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'171173' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'171174' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'171175' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'171176' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'171177' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'171178' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'171179' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'171180' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'171181' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'171182' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'171183' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'171184' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'171185' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'171186' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'171187' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'171188' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'171189' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'171190' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'171191' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'171192' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'171193' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'171194' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'171195' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'171196' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'171197' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'171198' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'171199' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'171200' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'171201' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'171202' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'171203' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'171204' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'171205' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'171206' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'171207' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'171208' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'171209' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'171210' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'171211' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'171212' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'171214' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'171215' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'171216' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'171217' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'171218' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'171219' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'171220' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'171221' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'171222' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'171223' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'171224' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'171225' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'171226' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'171227' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'171228' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'171229' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'171230' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'171231' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'171232' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'171233' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'171234' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'171235' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'171236' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'171237' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'171238' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'171239' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'171240' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'171241' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'171242' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'171243' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'171244' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'171245' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'171246' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'171247' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'171248' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'171249' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'171250' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'171251' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'171252' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'171253' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'171254' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'171255' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'172044' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'172045' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'172048' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'172050' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'172142' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Convective precipitation +'172143' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) +'172144' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'172145' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux +'172146' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Surface latent heat flux +'172147' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Surface net radiation +'172149' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Short-wave heating rate +'172153' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'172154' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards +'172169' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards +'172175' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Surface solar radiation +'172176' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Surface thermal radiation +'172177' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Top solar radiation +'172178' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Top thermal radiation +'172179' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress +'172180' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress +'172181' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'172182' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Sunshine duration +'172189' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'172195' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'172196' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'172197' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Runoff +'172205' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'172208' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'172209' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'172210' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'172211' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation +'172212' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Total precipitation +'172228' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'172239' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'172240' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'172255' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'173044' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'173045' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'173048' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'173050' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'173142' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'173143' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'173144' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'173145' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'173146' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'173147' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'173149' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'173153' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'173154' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomaly +'173169' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomaly +'173175' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomaly +'173176' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomaly +'173177' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomaly +'173178' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomaly +'173179' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'173180' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'173181' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'173182' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'173189' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'173195' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'173196' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'173197' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomaly +'173205' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'173208' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'173209' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'173210' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'173211' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'173212' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'173228' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'173239' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'173240' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'173255' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'174006' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'174009' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'174031' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'174034' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'174039' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'174040' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'174041' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'174042' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'174049' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'174055' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'174083' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'174085' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'174086' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'174087' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'174088' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'174089' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'174090' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'174094' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'174095' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Sea-ice thickness +'174098' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Liquid water potential temperature +'174099' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'174110' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'174111' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'174139' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'174164' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'174167' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'174168' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'174170' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'174175' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'174183' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'174201' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'174202' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'174236' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'174255' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'175006' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'175031' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'175034' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'175039' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'175040' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'175041' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'175042' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'175049' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'175055' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'175083' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'175085' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'175086' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'175087' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'175088' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'175089' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'175090' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'175110' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'175111' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'175139' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'175164' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'175167' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'175168' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'175170' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'175175' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'175183' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'175201' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'175202' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'175236' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'175255' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'180149' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'180176' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'180177' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'180178' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'180179' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Snow depth +'190141' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Field capacity +'190170' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'190171' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'190173' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'190229' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'200168' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'201001' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'201002' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'201003' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'201004' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'201005' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'201006' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'201007' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'201008' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'201009' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'201010' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'201011' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'201012' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'201013' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'201014' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'201015' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'201016' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'201017' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'201029' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'201030' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'201031' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'201032' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'201033' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'201034' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'201035' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'201036' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'201037' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'201038' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'201041' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'201042' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'201050' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'201051' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'201052' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'201053' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'201054' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'201055' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'201056' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'201060' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'201061' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'201062' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'201063' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'201064' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'201065' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'201066' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'201067' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'201068' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'201069' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'201070' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'201071' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'201072' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'201073' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'201074' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'201075' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'201076' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'201077' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'201078' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'201079' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'201080' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'201081' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'201082' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'201083' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'201084' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'201085' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'201099' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'201100' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'201101' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'201102' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'201111' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'201112' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'201113' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'201139' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'201150' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'201187' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'201200' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'201203' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'201215' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'201241' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'201255' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'210001' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'210002' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'210003' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'210004' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'210005' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'210006' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'210007' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'210008' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'210009' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'210010' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'210011' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'210012' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'210016' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'210017' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'210018' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'210019' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'210020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'210021' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'210022' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'210023' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'210024' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'210025' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'210026' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'210027' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'210031' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'210032' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'210033' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'210034' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'210035' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'210036' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'210037' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'210038' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'210039' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'210040' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'210041' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'210042' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'210046' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'210047' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'210048' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'210049' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'210050' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'210051' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'210052' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'210053' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'210054' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'210061' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'210062' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'210063' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'210064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#Total column Methane +'210065' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'210066' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'210067' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'210068' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'210069' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'210070' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'210071' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'210092' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'210093' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'210094' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'210095' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'210096' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'210097' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'210098' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'210099' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'210100' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'210121' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'210122' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'210123' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'210124' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'210125' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'210126' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'210127' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'210128' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'210129' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'210130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'210131' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'210132' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'210133' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'210134' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'210135' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'210136' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'210137' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'210138' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'210139' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'210140' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'210141' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'210142' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'210143' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'210144' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'210145' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'210146' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'210147' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'210148' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'210149' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'210150' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'210151' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'210152' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'210153' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'210154' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'210155' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'210156' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'210157' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'210158' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'210159' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'210160' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'210161' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'210162' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'210163' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'210164' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'210165' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'210166' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'210181' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'210182' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'210183' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'210184' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'210185' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'210203' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'210206' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'210207' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'210208' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'210209' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'210210' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'210211' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'210212' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'210213' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'210214' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'210215' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'210216' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'211001' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'211002' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'211003' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'211004' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'211005' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'211006' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'211007' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'211008' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'211009' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'211010' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'211011' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'211012' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'211016' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'211017' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'211018' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'211019' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'211020' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'211021' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'211022' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'211023' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'211024' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'211025' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'211026' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'211027' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'211031' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'211032' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'211033' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'211034' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'211035' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'211036' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'211037' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'211038' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'211039' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'211040' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'211041' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'211042' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'211046' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'211047' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'211048' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'211049' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'211050' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'211051' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'211052' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'211053' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'211054' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'211061' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'211062' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'211063' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'211064' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'211065' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'211066' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'211067' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'211068' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'211069' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'211070' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'211071' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'211092' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'211093' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'211094' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'211095' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'211096' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'211097' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'211098' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'211099' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'211100' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'211121' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'211122' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'211123' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'211124' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'211125' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'211126' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'211127' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'211128' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'211129' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'211130' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'211131' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'211132' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'211133' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'211134' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'211135' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'211136' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'211137' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'211138' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'211139' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'211140' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'211141' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'211142' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'211143' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'211144' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'211145' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'211146' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'211147' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'211148' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'211149' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'211150' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'211151' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'211152' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'211153' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'211154' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'211155' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'211156' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'211157' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'211158' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'211159' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'211160' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'211161' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'211162' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'211163' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'211164' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'211165' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'211166' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'211181' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'211182' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'211183' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'211184' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'211185' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'211203' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'211206' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'211207' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'211208' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'211209' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'211210' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'211211' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'211212' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'211213' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'211214' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'211215' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'211216' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'220228' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'228003' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'228004' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'228005' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'228006' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'228007' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'228008' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'228009' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'228010' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'228011' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'228012' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'228013' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'228014' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'228015' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'228016' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'228017' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'228018' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'228019' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'228131' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'228132' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'234139' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'234151' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'234167' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'234228' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'140215' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'140216' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'210101' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire radiative power maximum +'211101' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'228134' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'228136' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#100 metre U wind component +'228246' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'228247' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'228253' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'228254' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/shortName.def b/eccodes/definitions/grib3/localConcepts/ecmf/shortName.def new file mode 100644 index 00000000..1d420461 --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/shortName.def @@ -0,0 +1,17509 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'tpg1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } +#Total precipitation of at least 5 mm +'tpg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } +#Total precipitation of at least 40 mm +'tpg40' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } +#Total precipitation of at least 60 mm +'tpg60' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } +#Total precipitation of at least 80 mm +'tpg80' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } +#Total precipitation of at least 100 mm +'tpg100' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'tpg150' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'tpg200' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'tpg300' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } +#Equivalent potential temperature +'eqpt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'sept' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'ssfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'scfr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'udvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'vdvw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'urtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'vrtw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'aluvp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'aluvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'alnip' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'alnid' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'uvcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'parcs' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'uctp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'ucln' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'ucdv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'cl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'cvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'cvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'tvl' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'tvh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'asn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'istl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'istl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'istl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'istl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'swvl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'swvl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'swvl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'swvl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'es' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'smlt' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'sdur' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'magss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'lspf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'mx2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'mn2t24' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Montgomery potential +'mont' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'mean2t24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'mn2d24' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'uvb' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'par' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'obct' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'stsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'ftsktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'sktd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'lai_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'lai_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'msr_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'msr_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'bc_lv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'bc_hv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'issrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'istrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'sdfor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column liquid water +'tclw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column ice water +'tciw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'10fg6' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'emis' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'vite' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'at' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'bv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'tcwv' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'stl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'swl1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + unitsFactor = 1000 ; + } +#Large-scale precipitation +'lsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'sf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'chnk' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'snr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'tnr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'lnsp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'swhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'lwhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'tsp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'blh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'sdor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'isor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'anor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'slor' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'tcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'stl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'al' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'e' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'stl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'swl3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'ccc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'lcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'mcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'hcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'ewov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'nsov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'nwov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'neov' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'lgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'mgws' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'src' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'veg' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'vso' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'paw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'ro' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'tco3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'tsrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'ttrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'ssrc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'strc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation +'tisr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'vimd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'ewgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'nsgd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'ctzw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'ctmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'crnh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'iews' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'inss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'ishf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'ie' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'asq' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'lsrh' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'stl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'swl4' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'csf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'lsf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'acf' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'alw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'fal' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'fsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'flsr' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'aiw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'ice' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'atte' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'athe' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'atze' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'atmw' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'strfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'vpotdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'ptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'eqptdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'septdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'udvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'vdvwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'urtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'vrtwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'uctpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'uclndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'ucdvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'cldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'cvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'cvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'tvldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'tvhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'sicdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'asndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'rsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'sstdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'istl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'istl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'istl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'istl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'swvl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'swvl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'swvl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'swvl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'sltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'esdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'smltdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'sdurdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'dsrpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'magssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'10fgdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'lspfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'mx2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'mn2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'montdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'presdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'mean2t24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'mn2d24diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'uvbdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'pardiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'capediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'pvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'tpodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'obctdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'mx2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'mn2t6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'10fg6diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'atdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'bvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'zdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'qdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'spdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'wdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'tcwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'tcwvdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'vodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'stl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'swl1diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'sddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'lspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'cpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'sfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'blddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'sshfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'slhfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'chnkdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'snrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'tnrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'msldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'lnspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'swhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'lwhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'ghdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'rdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'tspdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'blhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'sdordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'isordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'anordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'slordiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'tccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'10udiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'10vdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'ssrddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'stl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'swl2diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'lsmdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'srdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'aldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'strddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'ssrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'strdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'tsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'ttrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'ewssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'nsssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'ediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'stl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'swl3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'cccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'lccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'mccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'hccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'sunddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'ewovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'nsovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'nwovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'neovdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'btmpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'lgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'mgwsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'gwddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'srcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'vegdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'vsodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'mx2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'mn2tdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'o3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'pawdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'rodiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'tco3diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'10sidiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'tsrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'ttrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'ssrcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'strcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'tisrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'dhrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'dhvddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'dhccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'dhlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'vdzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'vdmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'ewgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'nsgddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'ctzwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'ctmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'vdhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'htccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'htlcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'crnhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'tpdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'iewsdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'inssdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'ishfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'iediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'asqdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'lsrhdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'sktdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'stl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'swl4diff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'tsndiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'csfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'lsfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'acfdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'alwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'faldiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'fsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'flsrdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'clwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'ciwcdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'ccdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'aiwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'icediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'attediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'athediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'atzediff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'atmwdiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'utendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'vtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'ttendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'qtendd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'ttendr' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'utendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'vtendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'ttendts' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'qtendt' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'utends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'vtends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'ttends' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'utendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'vtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'ttendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'qtendcds' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'lpc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'ipc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'ttendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'qtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'qltendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'qitendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'lpcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'ipcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'utendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'vtendcs' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'ttendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'qtendsc' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'100ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'100va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'mx2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'mn2t6a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'aermr13' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'aermr14' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'aermr15' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdms' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'ocnuc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'monot' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'soapr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Particulate matter d < 1 um +'pm1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'pm2p5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'pm10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'vafire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Mean altitude of maximum injection +'mami' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'apt' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'aluvpi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'aluvpv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'aluvpg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'alnipi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'alnipv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'alnipg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'aluvdi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'aluvdv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'aluvdg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'alnidi' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'alnidv' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'alnidg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'aod340' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'aod355' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'aod380' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'aod400' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'aod440' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'aod500' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'aod532' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'aod645' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'aod800' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'aod858' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'aod1020' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'aod1064' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'aod1640' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'aod2130' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Altitude of plume bottom +'apb' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'vsuaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'vashaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'taedec550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'taedab550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Aerosol type 13 mass mixing ratio +'aermr13diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'aermr14diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'aermr15diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'aerpr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'aerwv01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'aerwv02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'emdmsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'aerwv03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'aerwv04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'alediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'aptdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'sppt1' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'sppt2' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'sppt3' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'sppt4' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'sppt5' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +# Cosine of solar zenith angle +'uvcossza' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +# UV biologically effective dose +'uvbed' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +# UV biologically effective dose clear-sky +'uvbedcs' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'uvsflxt280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'uvsflxt285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'uvsflxt290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'uvsflxt295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'uvsflxt300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'uvsflxt305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'uvsflxt310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'uvsflxt315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'uvsflxt320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'uvsflxt325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'uvsflxt330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'uvsflxt335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'uvsflxt340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'uvsflxt345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'uvsflxt350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'uvsflxt355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'uvsflxt360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'uvsflxt365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'uvsflxt370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'uvsflxt375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'uvsflxt380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'uvsflxt385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'uvsflxt390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'uvsflxt395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'uvsflxcs280285' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'uvsflxcs285290' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'uvsflxcs290295' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'uvsflxcs295300' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'uvsflxcs300305' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'uvsflxcs305310' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'uvsflxcs310315' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'uvsflxcs315320' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'uvsflxcs320325' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'uvsflxcs325330' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'uvsflxcs330335' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'uvsflxcs335340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'uvsflxcs340345' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'uvsflxcs345350' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'uvsflxcs350355' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'uvsflxcs355360' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'uvsflxcs360365' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'uvsflxcs365370' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'uvsflxcs370375' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'uvsflxcs375380' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'uvsflxcs380385' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'uvsflxcs385390' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'uvsflxcs390395' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'uvsflxcs395400' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +# Profile of optical thickness at 340 nm +'aot340' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'aersrcsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'aersrcssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'aersrcssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'aerddpsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'aerddpssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'aerddpssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'aersdmsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'aersdmssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'aersdmssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'aerwdlssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'aerwdlsssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'aerwdlsssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'aerwdccsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'aerwdccssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'aerwdccssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'aerngtsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'aerngtssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'aerngtssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'aermsssss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'aermssssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'aermssssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'aerodsss' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'aerodssm' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'aerodssl' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'aersrcdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'aersrcdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'aersrcdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'aerddpdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'aerddpdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'aerddpdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'aersdmdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'aersdmdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'aersdmdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'aerwdlsdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'aerwdlsdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'aerwdlsdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'aerwdccdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'aerwdccdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'aerwdccdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'aerngtdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'aerngtdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'aerngtdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'aermssdus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'aermssdum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'aermssdul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'aeroddus' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'aeroddum' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'aeroddul' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'aersrcomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'aersrcomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'aerddpomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'aerddpomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'aersdmomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'aersdmomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'aerwdlsomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'aerwdlsomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'aerwdccomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'aerwdccomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'aerngtomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'aerngtomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'aermssomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'aermssomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'aerodomhphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'aerodomhphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'aersrcbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'aersrcbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'aerddpbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'aerddpbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'aersdmbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'aersdmbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'aerwdlsbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'aerwdlsbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'aerwdccbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'aerwdccbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'aerngtbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'aerngtbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'aermssbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'aermssbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'aerodbchphob' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'aerodbchphil' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +# Source/gain of sulphate aerosol +'aersrcsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +# Dry deposition of sulphate aerosol +'aerddpsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +# Sedimentation of sulphate aerosol +'aersdmsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'aerwdlssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'aerwdccsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +# Negative fixer of sulphate aerosol +'aerngtsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'aermsssu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +# Sulphate aerosol optical depth +'aerodsu' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'accaod550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'aluvpsn' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'aerdep10si' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'aerdep10fg' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'aot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'naot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'aaot532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'aodabs340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'aodabs355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'aodabs380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'aodabs400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'aodabs440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'aodabs469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'aodabs500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'aodabs532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'aodabs550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'aodabs645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'aodabs670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'aodabs800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'aodabs858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'aodabs865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'aodabs1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'aodabs1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'aodabs1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'aodabs1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'aodfm340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'aodfm355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'aodfm380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'aodfm400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'aodfm440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'aodfm469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'aodfm500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'aodfm532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'aodfm550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'aodfm645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'aodfm670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'aodfm800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'aodfm858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'aodfm865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'aodfm1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'aodfm1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'aodfm1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'aodfm1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'ssa340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'ssa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'ssa380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'ssa400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'ssa440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'ssa469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'ssa500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'ssa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'ssa550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'ssa645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'ssa670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'ssa800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'ssa858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'ssa865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'ssa1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'ssa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'ssa1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'ssa1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Assimetry factor at 340 nm +'assimetry340' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Assimetry factor at 355 nm +'assimetry355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Assimetry factor at 380 nm +'assimetry380' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Assimetry factor at 400 nm +'assimetry400' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Assimetry factor at 440 nm +'assimetry440' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Assimetry factor at 469 nm +'assimetry469' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Assimetry factor at 500 nm +'assimetry500' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Assimetry factor at 532 nm +'assimetry532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Assimetry factor at 550 nm +'assimetry550' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Assimetry factor at 645 nm +'assimetry645' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Assimetry factor at 670 nm +'assimetry670' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Assimetry factor at 800 nm +'assimetry800' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Assimetry factor at 858 nm +'assimetry858' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Assimetry factor at 865 nm +'assimetry865' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Assimetry factor at 1020 nm +'assimetry1020' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Assimetry factor at 1064 nm +'assimetry1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Assimetry factor at 1240 nm +'assimetry1240' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Assimetry factor at 1640 nm +'assimetry1640' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'aersrcso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'aerddpso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'aersdmso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'aerwdlsso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'aerwdccso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'aerngtso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'aermssso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'aerodso2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'aodabs2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'aodfm2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'ssa2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Assimetry factor at 2130 nm +'assimetry2130' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'aerext355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'aerext532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'aerext1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'aerbackscattoa355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'aerbackscattoa532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'aerbackscattoa1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'aerbackscatgnd355' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'aerbackscatgnd532' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'aerbackscatgnd1064' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'h2o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'hno3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'ch3ooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'par' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'c2h4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'ole' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'ald2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'pan' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'rooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'onit' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'c5h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'dms' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'so4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'nh4' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'msa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'ch3cocho' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'o3s' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'pb' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'ho2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'ch3o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'no3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'n2o5' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'ho2no2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'c2o3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'ror' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'rxpar' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'xo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'xo2n' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'nh2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'psc' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'ch3oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'hcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'mcooh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'c2h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'c2h5oh' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'c3h8' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'c3h6' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'c10h16' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'ispd' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'no3_a' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'ch3coch3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'aco2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'ic3h7o2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'hypropo2' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'noxa' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Total column hydrogen peroxide +'tc_h2o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'tc_ch4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'tc_hno3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'tc_ch3ooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'tc_par' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'tc_c2h4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'tc_ole' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'tc_ald2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'tc_pan' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'tc_rooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'tc_onit' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'tc_c5h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'tc_dms' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'tc_nh3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'tc_so4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'tc_nh4' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'tc_msa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'tc_ch3cocho' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'tc_o3s' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'tc_pb' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'tc_no' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'tc_ho2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'tc_ch3o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'tc_oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'tc_no3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'tc_n2o5' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'tc_ho2no2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'tc_c2o3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'tc_ror' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'tc_rxpar' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'tc_xo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'tc_xo2n' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'tc_nh2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'tc_psc' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'tc_ch3oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'tc_hcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'tc_mcooh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'tc_c2h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'tc_c2h5oh' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'tc_c3h8' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'tc_c3h6' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'tc_c10h16' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'tc_ispd' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'tc_no3_a' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'tc_ch3coch3' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'tc_aco2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'tc_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'tc_hypropo2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'tc_noxa' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Ozone emissions +'e_go3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'e_nox' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'e_h2o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'e_ch4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'e_co' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'e_hno3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'e_ch3ooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'e_hcho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'e_par' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'e_c2h4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'e_ole' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'e_ald2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'e_pan' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'e_rooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'e_onit' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'e_c5h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'e_so2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'e_dms' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'e_nh3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'e_so4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'e_nh4' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'e_msa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'e_ch3cocho' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'e_o3s' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'e_ra' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'e_pb' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'e_no' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'e_ho2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'e_ch3o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'e_oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'e_no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'e_no3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'e_n2o5' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'e_ho2no2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'e_c2o3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'e_ror' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'e_rxpar' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'e_xo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'e_xo2n' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'e_nh2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'e_psc' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'e_ch3oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'e_hcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'e_mcooh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'e_c2h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'e_c2h5oh' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'e_c3h8' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'e_c3h6' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'e_c10h16' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'e_ispd' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'e_no3_a' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'e_ch3coch3' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'e_aco2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'e_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'e_hypropo2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'e_noxa' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Ozone deposition velocity +'dv_go3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'dv_nox' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'dv_h2o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'dv_ch4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'dv_co' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'dv_hno3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'dv_ch3ooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'dv_hcho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'dv_par' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'dv_c2h4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'dv_ole' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'dv_ald2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'dv_pan' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'dv_rooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'dv_onit' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'dv_c5h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'dv_so2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'dv_dms' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'dv_nh3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'dv_so4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'dv_nh4' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'dv_msa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'dv_ch3cocho' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'dv_o3s' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'dv_ra' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'dv_pb' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'dv_no' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'dv_ho2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'dv_ch3o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'dv_oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'dv_no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'dv_no3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'dv_n2o5' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'dv_ho2no2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'dv_c2o3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'dv_ror' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'dv_rxpar' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'dv_xo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'dv_xo2n' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'dv_nh2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'dv_psc' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'dv_ch3oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'dv_hcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'dv_mcooh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'dv_c2h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'dv_c2h5oh' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'dv_c3h8' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'dv_c3h6' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'dv_c10h16' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'dv_ispd' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'dv_no3_a' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'dv_ch3coch3' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'dv_aco2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'dv_ic3h7o2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'dv_hypropo2' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'dv_noxa' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Total sky direct solar radiation at surface +'fdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'cdir' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'cbh' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Zero degree level +'deg0l' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Horizontal visibility +'hvis' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'mx2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'mn2t3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'swi1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'swi2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'swi3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'swi4' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of Zero Deg Wet Bulb Temperature +'hwbt0' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of One Deg Wet Bulb Temperature +'hwbt1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Total column rain water +'tcrw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'tcsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'ccf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'stf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'swv' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'ist' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface solar radiation downward clear-sky +'ssrdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'strdc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'tccsw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#100 metre wind speed +'100si' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Irrigation fraction +'irrfr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'pev' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'irr' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'tcclw' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'strfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'vpotgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'ptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'eqptgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'septgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'udvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'vdvwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'urtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'vrtwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'uctpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'uclngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'ucdvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'clgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'cvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'cvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'tvlgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'tvhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'sicgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'asngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'rsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'sstkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'istl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'istl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'istl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'istl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'swvl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'swvl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'swvl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'swvl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'sltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'esgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'smltgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'sdurgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'dsrpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'magssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'10fggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'lspfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'mx2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'mn2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'montgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'presgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'mean2t24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'mn2d24grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'uvbgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'pargrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'capegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'pvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'tpogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'obctgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'mx2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'mn2t6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'10fg6grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'atgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'bvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'zgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'qgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'spgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'wgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'tcwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'tcwvgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'vogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'stl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'swl1grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'sdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'lspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'cpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'sfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'bldgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'sshfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'slhfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'chnkgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'snrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'tnrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'mslgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'lnspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'swhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'lwhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'ghgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'rgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'tspgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'blhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'sdorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'isorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'anorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'slorgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'tccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'10ugrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'10vgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'2dgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'ssrdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'stl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'swl2grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'lsmgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'srgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'algrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'strdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'ssrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'strgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'tsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'ttrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'ewssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'nsssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'egrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'stl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'swl3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'cccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'lccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'mccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'hccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'sundgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'ewovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'nsovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'nwovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'neovgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'btmpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'lgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'mgwsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'gwdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'srcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'veggrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'vsogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'mx2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'mn2tgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'o3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'pawgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'rogrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'tco3grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'10sigrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'tsrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'ttrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'ssrcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'strcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'tisrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'dhrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'dhvdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'dhccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'dhlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'vdzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'vdmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'ewgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'nsgdgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'ctzwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'ctmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'vdhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'htccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'htlcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'crnhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'tpgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'iewsgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'inssgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'ishfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'iegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'asqgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'lsrhgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'sktgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'stl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'swl4grd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'tsngrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'csfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'lsfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'acfgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'alwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'falgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'fsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'flsrgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'clwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'ciwcgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'ccgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'aiwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'icegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'attegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'athegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'atzegrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'atmwgrd' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'tsru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'ttru' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'tsuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'ttuc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'clw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'cf' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'dhr' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'dhvd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'dhcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'dhlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'vdzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'vdmw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'ewgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'nsgd' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'vdh' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'htcc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'htlc' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'att' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'ath' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'atzw' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'atmwax' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'mvv' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'2tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'2tag1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'2tag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'2talm1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'2talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'tpag20' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'tpag10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'tpag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'stag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'mslag0' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'h0dip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'hslp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'saip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'whip' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'talm2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'tag2' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'talm8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'talm4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'tag4' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'tag8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'10gp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'capep' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'tpl01' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'tprl1' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'tprg3' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'tprg5' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'10spg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'10spg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre Wind gust of at least 25 m/s +'10fgg25' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfFirstFixedSurface = 10 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; + typeOfFirstFixedSurface = 103 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre temperature less than 273.15 K +'2tl273' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'swhg2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + probabilityType = 3 ; + } +#Significant wave height of at least 4 m +'swhg4' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 4 ; + } +#Significant wave height of at least 6 m +'swhg6' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + scaledValueOfLowerLimit = 6 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + } +#Significant wave height of at least 8 m +'swhg8' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 8 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + } +#Mean wave period of at least 8 s +'mwpg8' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'mwpg10' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'mwpg12' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'mwpg15' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'zp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'tap' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'stl1p' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'sfp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'mslpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'tccp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'10sp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'mx2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'mn2tp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'tpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'swhp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'mwpp' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'mn2tplm10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'mn2tplm5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'mn2tpl0' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'mn2tpl5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'mn2tpl10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'mx2tpg25' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'mx2tpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'mx2tpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'mx2tpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'mx2tpg45' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'10spg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'10spg15' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'10spg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'10spg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'10spg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'10gpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'10gpg35' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'10gpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'10gpg75' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'10gpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'tppg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'tppg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'tppg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'tppg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'tppg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'tppg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'tppg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'tppg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'tppg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'tppg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'tppg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'sfpg1' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'sfpg5' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'sfpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'sfpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'sfpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'sfpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'sfpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'sfpg100' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'sfpg150' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'sfpg200' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'sfpg300' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'tccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'tccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'tccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'tccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'tccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'tccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'tccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'tccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'tccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'tccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'hccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'hccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'hccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'hccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'hccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'hccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'hccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'hccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'hccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'hccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'mccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'mccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'mccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'mccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'mccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'mccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'mccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'mccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'mccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'mccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'lccpg10' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'lccpg20' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'lccpg30' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'lccpg40' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'lccpg50' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'lccpg60' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'lccpg70' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'lccpg80' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'lccpg90' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'lccpg99' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'maxswh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'tmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'hmax' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'wmb' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'mp1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean wave period based on second moment +'mp2' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'wdw' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'p1ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'p2ww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dwww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'p1ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'p2ps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dwps' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak period of 1D spectra +'pp1d' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'cdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'mdww' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'shts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'mdts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'mpts' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'sdhs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'mu10' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'mdwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'sdu' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'msqs' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'wind' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'awh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'acwh' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'arrc' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'dwi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'2dsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'2dfd' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'wsk' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'bfi' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'wsp' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'ocs' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'ocpd' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'ocu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'ocv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'ocw' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'uv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'ut' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'vt' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'uu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'vv' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Ocean potential temperature +'ocpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Salinity +'s' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Ocean current zonal component +'ocu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Ocean current meridional component +'ocv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Ocean current vertical component +'ocw' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'mst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'vvs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'vdf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'dep' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sigma-theta +'sth' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'rn' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'uv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'ut' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'vt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'uu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'vv' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level +'sl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Sea level previous timestep +'sl_1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Barotropic stream function +'bsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'mld' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'btp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'sh' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'crl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#U stress +'tax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#V stress +'tay' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'tki' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'nsf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'asr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'pme' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'shf' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'dte' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'hfc' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#20 degrees isotherm depth +'20d' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average potential temperature in the upper 300m +'tav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'uba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'vba1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'ztr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'mtr' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'zht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'mht' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'umax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'dumax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'smax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'dsmax' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Average salinity in the upper 300m +'sav300' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Layer Thickness at scalar points +'ldp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'ldu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'pti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'ptae' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'bpt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'apt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'ptbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'as' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'sali' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'ebt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'ebs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'uvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'vvi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'subi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'sale' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'bsal' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'salbe' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'ebta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'ebsa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'lti' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'lsi' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'bzpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'bmpga' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'ebtl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'ebsl' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'fgbt' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'fgbs' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'bpa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'fgbp' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'pta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'10fgrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'wrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'pwcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'swl1rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Snow depth +'sdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 141 ; + } +#Large-scale precipitation +'lsprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'sfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'ghrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'rrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'swl2rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'ewssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'nsssrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'erea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'swl3rea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'srcrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'vegrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'mx2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'mn2trea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'rorea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'zzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'tzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'ttrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'qzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'qtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'qqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'uzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'utrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'uqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'uurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'vzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'vtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'vqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'vurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'vvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'wzrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'wtrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'wqrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'wurea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'wvrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'wwrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'ishfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'csfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'lsfrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'clwcerrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'ccrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'falrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'10wsrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'moflrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'~' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'hsdrea' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'vima' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'vit' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'viwv' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'vilw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'viiw' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'vioz' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'vike' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'vithe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'vipie' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'vipile' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'vitoe' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'viec' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'vimae' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'viman' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'vikee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'viken' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'vithee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'vithen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'viwve' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'viwvn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'vige' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'vign' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'vitoee' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'vitoen' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'vioze' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'viozn' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'vimad' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'viked' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'vithed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'viwvd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'vigd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'vitoed' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'viozd' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'srta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'trta' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'srtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'trtca' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'umfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'dmfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'udra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'ddra' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'tpfa' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'tdcha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'ttpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'qtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'utpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'vtpha' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'tsw' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'swl2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'strfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'vpota' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'pta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'epta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'septa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'udwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'vdwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'urwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'vrwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'uctpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'uclna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'ucdva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'cla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'cvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'cvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'tvla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'tvha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'sica' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'asna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'rsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'ssta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'istal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'istal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'istal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'istal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'swval1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'swval2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'swval3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'swval4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'slta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'esa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'smlta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'sdura' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'dsrpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'magssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'10fga' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'lspfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'mx2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'monta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'mn2t24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'mn2d24a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'uvba' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'para' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'capea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'pva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'tpoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'obcta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'stsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'ftsktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'sktda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'tclwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'tciwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'vitea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'ata' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'bva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'za' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'qa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'spa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'wa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'tcwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'tcwva' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'voa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'stal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'swal1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'sda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'cpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'sfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'blda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'sshfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'slhfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'chnka' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'snra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'tnra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'msla' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'lspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'swhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'lwhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'gha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'ra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'tspa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'blha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'sdora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'isora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'anora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'slora' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'tcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'10ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'10va' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'2da' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'ssrda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'stal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'swal2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'sra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'ala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'strda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'ssra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'stra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'tsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'ttra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'eqssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'nsssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'ea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'stal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'swal3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'ccca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'lcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'mcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'hcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'sunda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'ewova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'nsova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'nwova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'neova' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'btmpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'lgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'mgwsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'gwda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'srca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'vfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'vsoa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'mx2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'mn2ta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'o3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'pawa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'roa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'tco3a' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'10ua' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'tsrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'ttrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'ssrca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'strca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'sia' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'dhra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'dhvda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'dhcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'dhlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'vdzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'vdmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'ewgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'nsgda' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'ctzwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'ctmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'vdha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'htcca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'htlca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'crnha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'tpa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'iewsa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'inssa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'ishfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'iea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'asqa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'lsrha' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'skta' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'stal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'swal4' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'tsna' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'csfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'lsfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'acfa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'alwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'fala' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'fsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'flsra' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'clwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'ciwca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'cca' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'aiwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'iaa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'attea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'athea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'atzea' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'atmwa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'esrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Convective precipitation +'cprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'bldrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Surface latent heat flux +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Surface net radiation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Short-wave heating rate +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Surface solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Surface thermal radiation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Top solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Top thermal radiation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'erate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Sunshine duration +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'gwdrate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Runoff +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Total precipitation +'tprate' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'sfara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'sundara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'tpara' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'ssro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Sea-ice thickness +'sit' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Liquid water potential temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'tsw' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'str' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'tsr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Snow depth +'sdsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Field capacity +'cap' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'wiltsien' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'sr' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'tsm' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'2ddiff' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'apab_s' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'sohr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'thhr_rad' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'clc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'qc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'qi' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'twater' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'ch_cm_cl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'hbas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'htop_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'bas_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'top_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'dt_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'dqv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'du_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'dv_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'htop_dc' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'hzerocl' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'snowlmt' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'qrs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'prr_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'prs_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'rain_gsp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'prr_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'prs_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'rain_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'pp' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'vmax_10m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'w_i' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'t_snow' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'t_ice' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'cape_con' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'aermr12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodpr' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsm' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdep' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerlts' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'aerscc' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'ch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2o' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2of' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4f' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'nofrp' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tcco' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'nox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnox' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhcho' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'ra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcra' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apf' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'aermr01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'aermr02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'aermr03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'aermr04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'aermr05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'aermr06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'aermr07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'aermr08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'aermr09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'aermr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'aermr11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'aermr12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'aergn01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'aergn02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'aergn03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'aergn04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'aergn05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'aergn06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'aergn07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'aergn08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'aergn09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'aergn10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'aergn11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'aergn12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'aerls01diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'aerls02diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'aerls03diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'aerls04diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'aerls05diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'aerls06diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'aerls07diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'aerls08diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'aerls09diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'aerls10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'aerls11diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'aerls12diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'aerprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'aersmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'aerlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'aodprdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'aodsmdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'aodlgdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'aerdepdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'aerltsdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'aersccdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'co2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'ch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'n2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'tcco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'tcch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'tcn2odiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'co2ofdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'co2nbfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'co2apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'ch4fdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'kch4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'cfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'c4ffirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'vegfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'ccfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'flfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'offirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'oafirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'frpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'crfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'hchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'tcno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'tcso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'tccodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'tchchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'noxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'tcnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'grg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'tcgrg1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'grg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'tcgrg2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'grg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'tcgrg3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'grg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'tcgrg4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'grg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'tcgrg5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'grg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'tcgrg6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'grg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'tcgrg7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'grg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'tcgrg8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'grg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'tcgrg9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'grg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'tcgrg10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'sfnoxdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'sfno2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'sfso2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'sfco2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'sfhchodiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'sfgo3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'sfgr1diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'sfgr2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'sfgr3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'sfgr4diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'sfgr5diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'sfgr6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'sfgr7diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'sfgr8diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'sfgr9diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'sfgr10diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'radiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'sf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'tcradiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'tcsf6diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'sf6apfdiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'gtco3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'aod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'ssaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'duaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'omaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'bcaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'suaod550diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'aod469diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'aod670diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'aod865diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'aod1240diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'tpoc' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'zust' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'mean2t' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'mean10ws' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'meantcc' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'dndzn' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'dndza' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'dctb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'tplb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'tplt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'u10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'v10n' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'sts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'msls' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'2ts' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'tps' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'ust' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'vst' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'maxfrpfire' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire radiative power maximum +'maxfrpfirediff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'vtnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'utnowd' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#100 metre U wind component +'100u' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'100v' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'ascat_sm_cdfa' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'ascat_sm_cdfb' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/units.def b/eccodes/definitions/grib3/localConcepts/ecmf/units.def new file mode 100644 index 00000000..25665b33 --- /dev/null +++ b/eccodes/definitions/grib3/localConcepts/ecmf/units.def @@ -0,0 +1,17509 @@ +# Automatically generated by ./create_def.pl, do not edit +#Total precipitation of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 60 ; + } +#Total precipitation of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 61 ; + } +#Total precipitation of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 82 ; + } +#Total precipitation of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 83 ; + } +#Total precipitation of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 84 ; + } +#Total precipitation of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 85 ; + } +#Total precipitation of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 86 ; + } +#Total precipitation of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 87 ; + } +#Total precipitation of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 88 ; + } +#Equivalent potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 5 ; + } +#Soil sand fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 6 ; + } +#Soil clay fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 7 ; + } +#Surface runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 8 ; + } +#Sub-surface runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 9 ; + } +#U component of divergent wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 11 ; + } +#V component of divergent wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 12 ; + } +#U component of rotational wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 13 ; + } +#V component of rotational wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 14 ; + } +#UV visible albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 15 ; + } +#UV visible albedo for diffuse radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 16 ; + } +#Near IR albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 17 ; + } +#Near IR albedo for diffuse radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 18 ; + } +#Clear sky surface UV +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 19 ; + } +#Clear sky surface photosynthetically active radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 20 ; + } +#Unbalanced component of temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence +'s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 25 ; + } +#Lake cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 26 ; + } +#Low vegetation cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 27 ; + } +#High vegetation cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 28 ; + } +#Type of low vegetation +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 29 ; + } +#Type of high vegetation +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 30 ; + } +#Snow albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 32 ; + } +#Ice temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 35 ; + } +#Ice temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 36 ; + } +#Ice temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 37 ; + } +#Ice temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 42 ; + } +#Snow evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 44 ; + } +#Snowmelt +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 45 ; + } +#Solar duration +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 46 ; + } +#Direct solar radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 50 ; + } +#Maximum temperature at 2 metres in the last 24 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 24 ; + } +#Minimum temperature at 2 metres in the last 24 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Montgomery potential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 53 ; + } +#Mean temperature at 2 metres in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 58 ; + } +#Observation count +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 71 ; + } +#Instantaneous surface solar radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 72 ; + } +#Instantaneous surface thermal radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 73 ; + } +#Standard deviation of filtered subgrid orography +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 74 ; + } +#Total column liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 78 ; + } +#Total column ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 120 ; + } +#10 metre wind gust in the last 6 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 123 ; + } +#Surface emissivity +'dimensionless' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 124 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 126 ; + } +#Atmospheric tide +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 127 ; + } +#Budget values +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 128 ; + } +#Total column water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 137 ; + } +#Soil temperature level 1 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 140 ; + } +#Snow depth +'m of water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + unitsFactor = 1000 ; + } +#Large-scale precipitation +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 142 ; + } +#Convective precipitation +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + unitsFactor = 1000 ; + } +#Snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 144 ; + } +#Charnock +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 148 ; + } +#Surface net radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 149 ; + } +#Top net radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 150 ; + } +#Logarithm of surface pressure +'~' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + typeOfFirstFixedSurface = 105 ; + } +#Short-wave heating rate +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 154 ; + } +#Tendency of surface pressure +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 158 ; + } +#Boundary layer height +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 159 ; + } +#Standard deviation of orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography +'radians' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 163 ; + } +#Total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 164 ; + } +#Soil temperature level 2 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 171 ; + } +#Albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 174 ; + } +#Top net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 178 ; + } +#Evaporation +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 184 ; + } +#Convective cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 185 ; + } +#Low cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 186 ; + } +#Medium cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 187 ; + } +#High cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 188 ; + } +#East-West component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 193 ; + } +#Eastward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 195 ; + } +#Northward gravity wave surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 197 ; + } +#Skin reservoir content +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 198 ; + } +#Vegetation fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography +'m**2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 200 ; + } +#Precipitation analysis weights +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 204 ; + } +#Runoff +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 205 ; + } +#Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } +#Top net solar radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 212 ; + } +#Vertically integrated moisture divergence +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 226 ; + } +#Tendency due to removal of negative humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 227 ; + } +#Total precipitation +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + unitsFactor = 1000 ; + } +#Instantaneous eastward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 229 ; + } +#Instantaneous northward turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 230 ; + } +#Instantaneous surface sensible heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 232 ; + } +#Apparent surface humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 234 ; + } +#Soil temperature level 4 +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 237 ; + } +#Temperature of snow layer +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; + } +#Convective snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 239 ; + } +#Large-scale snowfall +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 242 ; + } +#Forecast albedo +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 243 ; + } +#Forecast surface roughness +'m' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat +'~' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 245 ; + } +#Accumulated ice water tendency +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 249 ; + } +#Ice age +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind +'m s**-1' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 254 ; + } +#Stream function difference +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 1 ; + } +#Velocity potential difference +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 2 ; + } +#Potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 5 ; + } +#U component of divergent wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 11 ; + } +#V component of divergent wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 12 ; + } +#U component of rotational wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 13 ; + } +#V component of rotational wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 25 ; + } +#Lake cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 26 ; + } +#Low vegetation cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 27 ; + } +#High vegetation cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 28 ; + } +#Type of low vegetation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 29 ; + } +#Type of high vegetation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 30 ; + } +#Sea-ice cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 31 ; + } +#Snow albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 32 ; + } +#Snow density difference +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 33 ; + } +#Sea surface temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 difference +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 42 ; + } +#Soil type difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 43 ; + } +#Snow evaporation difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 44 ; + } +#Snowmelt difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 45 ; + } +#Solar duration difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 46 ; + } +#Direct solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 48 ; + } +#10 metre wind gust difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 52 ; + } +#Montgomery potential difference +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 53 ; + } +#Pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 58 ; + } +#Convective available potential energy difference +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 59 ; + } +#Potential vorticity difference +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 60 ; + } +#Total precipitation from observations difference +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 61 ; + } +#Observation count difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 71 ; + } +#Total column liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 78 ; + } +#Total column ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 126 ; + } +#Atmospheric tide difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 127 ; + } +#Budget values difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 128 ; + } +#Geopotential difference +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 129 ; + } +#Temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 130 ; + } +#U component of wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 131 ; + } +#V component of wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 132 ; + } +#Specific humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 133 ; + } +#Surface pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) difference +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 135 ; + } +#Total column water difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 136 ; + } +#Total column water vapour difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 137 ; + } +#Vorticity (relative) difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 140 ; + } +#Snow depth difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 142 ; + } +#Convective precipitation difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 146 ; + } +#Surface latent heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 147 ; + } +#Charnock difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 148 ; + } +#Surface net radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 149 ; + } +#Top net radiation difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 150 ; + } +#Mean sea level pressure difference +'Pa' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 152 ; + } +#Short-wave heating rate difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 153 ; + } +#Long-wave heating rate difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 154 ; + } +#Divergence difference +'s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 155 ; + } +#Height difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 156 ; + } +#Relative humidity difference +'%' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure difference +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 158 ; + } +#Boundary layer height difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 159 ; + } +#Standard deviation of orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography difference +'radians' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 163 ; + } +#Total cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 164 ; + } +#10 metre U wind component difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 165 ; + } +#10 metre V wind component difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 166 ; + } +#2 metre temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 167 ; + } +#Surface solar radiation downwards difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 171 ; + } +#Land-sea mask difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 172 ; + } +#Surface roughness difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 173 ; + } +#Albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 175 ; + } +#Surface net solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 177 ; + } +#Top net solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 178 ; + } +#Top net thermal radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 179 ; + } +#East-West surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 180 ; + } +#North-South surface stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 181 ; + } +#Evaporation difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 184 ; + } +#Convective cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 185 ; + } +#Low cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 186 ; + } +#Medium cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 187 ; + } +#High cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 188 ; + } +#Sunshine duration difference +'s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 193 ; + } +#Brightness temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress difference +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 197 ; + } +#Skin reservoir content difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 198 ; + } +#Vegetation fraction difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography difference +'m**2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 204 ; + } +#Runoff difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 205 ; + } +#Total column ozone difference +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 206 ; + } +#10 metre wind speed difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 227 ; + } +#Total precipitation difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress difference +'N m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress difference +'N m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux difference +'J m**-2' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux difference +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 232 ; + } +#Apparent surface humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 234 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 237 ; + } +#Temperature of snow layer difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 238 ; + } +#Convective snowfall difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 239 ; + } +#Large scale snowfall difference +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 242 ; + } +#Forecast albedo difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 243 ; + } +#Forecast surface roughness difference +'m' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat difference +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 247 ; + } +#Cloud cover difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency difference +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 249 ; + } +#Ice age difference +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity difference +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind difference +'m s**-1' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 255 ; + } +#Reserved +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 193 ; + } +#U-tendency from dynamics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 114 ; + } +#V-tendency from dynamics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 115 ; + } +#T-tendency from dynamics +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 116 ; + } +#q-tendency from dynamics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 117 ; + } +#T-tendency from radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 118 ; + } +#U-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 119 ; + } +#V-tendency from turbulent diffusion + subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 120 ; + } +#T-tendency from turbulent diffusion + subgrid orography +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 121 ; + } +#q-tendency from turbulent diffusion +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 122 ; + } +#U-tendency from subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 123 ; + } +#V-tendency from subgrid orography +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 124 ; + } +#T-tendency from subgrid orography +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 125 ; + } +#U-tendency from convection (deep+shallow) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 126 ; + } +#V-tendency from convection (deep+shallow) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 127 ; + } +#T-tendency from convection (deep+shallow) +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 128 ; + } +#q-tendency from convection (deep+shallow) +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 129 ; + } +#Liquid Precipitation flux from convection +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 130 ; + } +#Ice Precipitation flux from convection +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 131 ; + } +#T-tendency from cloud scheme +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 132 ; + } +#q-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 133 ; + } +#ql-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 134 ; + } +#qi-tendency from cloud scheme +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 135 ; + } +#Liquid Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 136 ; + } +#Ice Precip flux from cloud scheme (stratiform) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 137 ; + } +#U-tendency from shallow convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 138 ; + } +#V-tendency from shallow convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 139 ; + } +#T-tendency from shallow convection +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 140 ; + } +#q-tendency from shallow convection +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 141 ; + } +#100 metre U wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 6 ; + } +#100 metre V wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 7 ; + } +#Maximum temperature at 2 metres in the last 6 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres in the last 6 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 122 ; + } +#Volcanic ash aerosol mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 13 ; + } +#Volcanic sulphate aerosol mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 14 ; + } +#Volcanic SO2 precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 56 ; + } +#Mixing ration of organic carbon aerosol, nucleation mode +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 57 ; + } +#Monoterpene precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 58 ; + } +#Secondary organic precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 59 ; + } +#Particulate matter d < 1 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Wildfire viewing angle of observation +'deg' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 79 ; + } +#Mean altitude of maximum injection +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 120 ; + } +#UV visible albedo for direct radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 186 ; + } +#UV visible albedo for direct radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 187 ; + } +#UV visible albedo for direct radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 188 ; + } +#Near IR albedo for direct radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 189 ; + } +#Near IR albedo for direct radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 190 ; + } +#Near IR albedo for direct radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 191 ; + } +#UV visible albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 192 ; + } +#UV visible albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 193 ; + } +#UV visible albedo for diffuse radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 194 ; + } +#Near IR albedo for diffuse radiation, isotropic component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 195 ; + } +#Near IR albedo for diffuse radiation, volumetric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 196 ; + } +#Near IR albedo for diffuse radiation, geometric component +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 197 ; + } +#Total aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 217 ; + } +#Total aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 218 ; + } +#Total aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 219 ; + } +#Total aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 220 ; + } +#Total aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 221 ; + } +#Total aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 222 ; + } +#Total aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 223 ; + } +#Total aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 224 ; + } +#Total aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 225 ; + } +#Total aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 226 ; + } +#Total aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 227 ; + } +#Total aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 228 ; + } +#Total aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 229 ; + } +#Total aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 230 ; + } +#Altitude of plume bottom +'m' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 242 ; + } +#Volcanic sulphate aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 243 ; + } +#Volcanic ash optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 244 ; + } +#Profile of total aerosol dry extinction coefficient +'m**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 245 ; + } +#Profile of total aerosol dry absorption coefficient +'m**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 246 ; + } +#Aerosol type 13 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 13 ; + } +#Aerosol type 14 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 14 ; + } +#Aerosol type 15 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 15 ; + } +#SO4 aerosol precursor mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 28 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 1 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 29 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 30 ; + } +#DMS surface emission +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 43 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 3 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 44 ; + } +#Water vapour mixing ratio for hydrophilic aerosols in mode 4 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 56 ; + } +#Altitude of emitter +'m' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 119 ; + } +#Altitude of plume top +'m' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 212 ; + parameterNumber = 255 ; + } +#Random pattern 1 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 1 ; + } +#Random pattern 2 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 2 ; + } +#Random pattern 3 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 3 ; + } +#Random pattern 4 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 4 ; + } +#Random pattern 5 for sppt +'dimensionless' = { + discipline = 192 ; + parameterCategory = 213 ; + parameterNumber = 5 ; + } +# Cosine of solar zenith angle +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 1 ; + } +# UV biologically effective dose +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 2 ; + } +# UV biologically effective dose clear-sky +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 3 ; + } +# Total surface UV spectral flux (280-285 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 4 ; + } +# Total surface UV spectral flux (285-290 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 5 ; + } +# Total surface UV spectral flux (290-295 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 6 ; + } +# Total surface UV spectral flux (295-300 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 7 ; + } +# Total surface UV spectral flux (300-305 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 8 ; + } +# Total surface UV spectral flux (305-310 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 9 ; + } +# Total surface UV spectral flux (310-315 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 10 ; + } +# Total surface UV spectral flux (315-320 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 11 ; + } +# Total surface UV spectral flux (320-325 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 12 ; + } +# Total surface UV spectral flux (325-330 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 13 ; + } +# Total surface UV spectral flux (330-335 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 14 ; + } +# Total surface UV spectral flux (335-340 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 15 ; + } +# Total surface UV spectral flux (340-345 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 16 ; + } +# Total surface UV spectral flux (345-350 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 17 ; + } +# Total surface UV spectral flux (350-355 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 18 ; + } +# Total surface UV spectral flux (355-360 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 19 ; + } +# Total surface UV spectral flux (360-365 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 20 ; + } +# Total surface UV spectral flux (365-370 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 21 ; + } +# Total surface UV spectral flux (370-375 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 22 ; + } +# Total surface UV spectral flux (375-380 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 23 ; + } +# Total surface UV spectral flux (380-385 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 24 ; + } +# Total surface UV spectral flux (385-390 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 25 ; + } +# Total surface UV spectral flux (390-395 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 26 ; + } +# Total surface UV spectral flux (395-400 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 27 ; + } +# Clear-sky surface UV spectral flux (280-285 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 28 ; + } +# Clear-sky surface UV spectral flux (285-290 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 29 ; + } +# Clear-sky surface UV spectral flux (290-295 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 30 ; + } +# Clear-sky surface UV spectral flux (295-300 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 31 ; + } +# Clear-sky surface UV spectral flux (300-305 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 32 ; + } +# Clear-sky surface UV spectral flux (305-310 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 33 ; + } +# Clear-sky surface UV spectral flux (310-315 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 34 ; + } +# Clear-sky surface UV spectral flux (315-320 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 35 ; + } +# Clear-sky surface UV spectral flux (320-325 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 36 ; + } +# Clear-sky surface UV spectral flux (325-330 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 37 ; + } +# Clear-sky surface UV spectral flux (330-335 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 38 ; + } +# Clear-sky surface UV spectral flux (335-340 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 39 ; + } +# Clear-sky surface UV spectral flux (340-345 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 40 ; + } +# Clear-sky surface UV spectral flux (345-350 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 41 ; + } +# Clear-sky surface UV spectral flux (350-355 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 42 ; + } +# Clear-sky surface UV spectral flux (355-360 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 43 ; + } +# Clear-sky surface UV spectral flux (360-365 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 44 ; + } +# Clear-sky surface UV spectral flux (365-370 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 45 ; + } +# Clear-sky surface UV spectral flux (370-375 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 46 ; + } +# Clear-sky surface UV spectral flux (375-380 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 47 ; + } +# Clear-sky surface UV spectral flux (380-385 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 48 ; + } +# Clear-sky surface UV spectral flux (385-390 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 49 ; + } +# Clear-sky surface UV spectral flux (390-395 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 50 ; + } +# Clear-sky surface UV spectral flux (395-400 nm) +'W m**-2' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 51 ; + } +# Profile of optical thickness at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 214 ; + parameterNumber = 52 ; + } +# Source/gain of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 1 ; + } +# Source/gain of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 2 ; + } +# Source/gain of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 3 ; + } +# Dry deposition of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 4 ; + } +# Dry deposition of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 5 ; + } +# Dry deposition of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 6 ; + } +# Sedimentation of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 7 ; + } +# Sedimentation of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 8 ; + } +# Sedimentation of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 9 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 10 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 11 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 12 ; + } +# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 13 ; + } +# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 14 ; + } +# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 15 ; + } +# Negative fixer of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 16 ; + } +# Negative fixer of sea salt aerosol (0.5 - 5 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 17 ; + } +# Negative fixer of sea salt aerosol (5 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 18 ; + } +# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 19 ; + } +# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 20 ; + } +# Vertically integrated mass of sea salt aerosol (5 - 20 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 21 ; + } +# Sea salt aerosol (0.03 - 0.5 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 22 ; + } +# Sea salt aerosol (0.5 - 5 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 23 ; + } +# Sea salt aerosol (5 - 20 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 24 ; + } +# Source/gain of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 25 ; + } +# Source/gain of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 26 ; + } +# Source/gain of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 27 ; + } +# Dry deposition of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 28 ; + } +# Dry deposition of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 29 ; + } +# Dry deposition of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 30 ; + } +# Sedimentation of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 31 ; + } +# Sedimentation of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 32 ; + } +# Sedimentation of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 33 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 34 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 35 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 36 ; + } +# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 37 ; + } +# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 38 ; + } +# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 39 ; + } +# Negative fixer of dust aerosol (0.03 - 0.55 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 40 ; + } +# Negative fixer of dust aerosol (0.55 - 9 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 41 ; + } +# Negative fixer of dust aerosol (9 - 20 um) +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 42 ; + } +# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 43 ; + } +# Vertically integrated mass of dust aerosol (0.55 - 9 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 44 ; + } +# Vertically integrated mass of dust aerosol (9 - 20 um) +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 45 ; + } +# Dust aerosol (0.03 - 0.55 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 46 ; + } +# Dust aerosol (0.55 - 9 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 47 ; + } +# Dust aerosol (9 - 20 um) optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 48 ; + } +# Source/gain of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 49 ; + } +# Source/gain of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 50 ; + } +# Dry deposition of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 51 ; + } +# Dry deposition of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 52 ; + } +# Sedimentation of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 53 ; + } +# Sedimentation of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 54 ; + } +# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 55 ; + } +# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 56 ; + } +# Wet deposition of hydrophobic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 57 ; + } +# Wet deposition of hydrophilic organic matter aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 58 ; + } +# Negative fixer of hydrophobic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 59 ; + } +# Negative fixer of hydrophilic organic matter aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 60 ; + } +# Vertically integrated mass of hydrophobic organic matter aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 61 ; + } +# Vertically integrated mass of hydrophilic organic matter aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 62 ; + } +# Hydrophobic organic matter aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 63 ; + } +# Hydrophilic organic matter aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 64 ; + } +# Source/gain of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 65 ; + } +# Source/gain of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 66 ; + } +# Dry deposition of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 67 ; + } +# Dry deposition of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 68 ; + } +# Sedimentation of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 69 ; + } +# Sedimentation of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 70 ; + } +# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 71 ; + } +# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 72 ; + } +# Wet deposition of hydrophobic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 73 ; + } +# Wet deposition of hydrophilic black carbon aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 74 ; + } +# Negative fixer of hydrophobic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 75 ; + } +# Negative fixer of hydrophilic black carbon aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 76 ; + } +# Vertically integrated mass of hydrophobic black carbon aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 77 ; + } +# Vertically integrated mass of hydrophilic black carbon aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 78 ; + } +# Hydrophobic black carbon aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 79 ; + } +# Hydrophilic black carbon aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 80 ; + } +# Source/gain of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 81 ; + } +# Dry deposition of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 82 ; + } +# Sedimentation of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 83 ; + } +# Wet deposition of sulphate aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 84 ; + } +# Wet deposition of sulphate aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 85 ; + } +# Negative fixer of sulphate aerosol +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 86 ; + } +# Vertically integrated mass of sulphate aerosol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 87 ; + } +# Sulphate aerosol optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 88 ; + } +#Accumulated total aerosol optical depth at 550 nm +'s' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 89 ; + } +#Effective (snow effect included) UV visible albedo for direct radiation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 90 ; + } +#10 metre wind speed dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 91 ; + } +#10 metre wind gustiness dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 92 ; + } +#Total aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 93 ; + } +#Natural (sea-salt and dust) aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 94 ; + } +#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm +'dimensionless' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 95 ; + } +#Total absorption aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 96 ; + } +#Total absorption aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 97 ; + } +#Total absorption aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 98 ; + } +#Total absorption aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 99 ; + } +#Total absorption aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 100 ; + } +#Total absorption aerosol optical depth at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 101 ; + } +#Total absorption aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 102 ; + } +#Total absorption aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 103 ; + } +#Total absorption aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 104 ; + } +#Total absorption aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 105 ; + } +#Total absorption aerosol optical depth at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 106 ; + } +#Total absorption aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 107 ; + } +#Total absorption aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 108 ; + } +#Total absorption aerosol optical depth at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 109 ; + } +#Total absorption aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 110 ; + } +#Total absorption aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 111 ; + } +#Total absorption aerosol optical depth at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 112 ; + } +#Total absorption aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 113 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 114 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 115 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 116 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 117 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 118 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 119 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 120 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 121 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 122 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 123 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 124 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 125 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 126 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 127 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 128 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 129 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 130 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 131 ; + } +#Single scattering albedo at 340 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 132 ; + } +#Single scattering albedo at 355 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 133 ; + } +#Single scattering albedo at 380 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 134 ; + } +#Single scattering albedo at 400 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 135 ; + } +#Single scattering albedo at 440 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 136 ; + } +#Single scattering albedo at 469 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 137 ; + } +#Single scattering albedo at 500 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 138 ; + } +#Single scattering albedo at 532 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 139 ; + } +#Single scattering albedo at 550 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 140 ; + } +#Single scattering albedo at 645 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 141 ; + } +#Single scattering albedo at 670 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 142 ; + } +#Single scattering albedo at 800 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 143 ; + } +#Single scattering albedo at 858 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 144 ; + } +#Single scattering albedo at 865 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 145 ; + } +#Single scattering albedo at 1020 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 146 ; + } +#Single scattering albedo at 1064 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 147 ; + } +#Single scattering albedo at 1240 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 148 ; + } +#Single scattering albedo at 1640 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 149 ; + } +#Assimetry factor at 340 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 150 ; + } +#Assimetry factor at 355 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 151 ; + } +#Assimetry factor at 380 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 152 ; + } +#Assimetry factor at 400 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 153 ; + } +#Assimetry factor at 440 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 154 ; + } +#Assimetry factor at 469 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 155 ; + } +#Assimetry factor at 500 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 156 ; + } +#Assimetry factor at 532 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 157 ; + } +#Assimetry factor at 550 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 158 ; + } +#Assimetry factor at 645 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 159 ; + } +#Assimetry factor at 670 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 160 ; + } +#Assimetry factor at 800 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 161 ; + } +#Assimetry factor at 858 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 162 ; + } +#Assimetry factor at 865 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 163 ; + } +#Assimetry factor at 1020 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 164 ; + } +#Assimetry factor at 1064 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 165 ; + } +#Assimetry factor at 1240 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 166 ; + } +#Assimetry factor at 1640 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 167 ; + } +#Source/gain of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 168 ; + } +#Dry deposition of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 169 ; + } +#Sedimentation of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 170 ; + } +#Wet deposition of sulphur dioxide by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 171 ; + } +#Wet deposition of sulphur dioxide by convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 172 ; + } +#Negative fixer of sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 173 ; + } +#Vertically integrated mass of sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 174 ; + } +#Sulphur dioxide optical depth +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 175 ; + } +#Total absorption aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 176 ; + } +#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 177 ; + } +#Single scattering albedo at 2130 nm +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 178 ; + } +#Assimetry factor at 2130 nm +'~' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 179 ; + } +#Aerosol extinction coefficient at 355 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 180 ; + } +#Aerosol extinction coefficient at 532 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 181 ; + } +#Aerosol extinction coefficient at 1064 nm +'m**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 182 ; + } +#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 183 ; + } +#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 184 ; + } +#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 185 ; + } +#Aerosol backscatter coefficient at 355 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 186 ; + } +#Aerosol backscatter coefficient at 532 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 187 ; + } +#Aerosol backscatter coefficient at 1064 nm (from ground) +'m**-1 sr**-1' = { + discipline = 192 ; + parameterCategory = 215 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 1 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 2 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 3 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 4 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 5 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 6 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 7 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 8 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 9 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 10 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 11 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 12 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 13 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 14 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 15 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 16 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 17 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 18 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 19 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 20 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 21 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 22 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 23 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 24 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 25 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 26 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 27 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 28 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 29 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 30 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 31 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 32 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 33 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 34 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 35 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 36 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 37 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 38 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 39 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 40 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 41 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 42 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 43 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 44 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 45 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 46 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 47 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 48 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 49 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 50 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 51 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 52 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 53 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 54 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 55 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 56 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 57 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 58 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 59 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 60 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 61 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 62 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 63 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 64 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 65 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 66 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 67 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 68 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 69 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 70 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 71 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 72 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 73 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 74 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 75 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 76 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 77 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 78 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 120 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 121 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 122 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 123 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 124 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 125 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 126 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 127 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 128 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 129 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 130 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 131 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 132 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 133 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 134 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 135 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 136 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 137 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 138 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 139 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 140 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 141 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 142 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 143 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 144 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 145 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 146 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 147 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 148 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 149 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 150 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 151 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 152 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 153 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 154 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 155 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 156 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 157 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 158 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 159 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 160 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 161 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 162 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 163 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 164 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 165 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 166 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 167 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 168 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 169 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 170 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 171 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 172 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 173 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 174 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 175 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 176 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 177 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 178 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 179 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 180 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 181 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 182 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 183 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 184 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 185 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 186 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 187 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 188 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 189 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 190 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 191 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 192 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 193 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 194 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 195 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 196 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 197 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 198 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 199 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 200 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 201 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 202 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 203 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 204 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 205 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 206 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 207 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 208 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 209 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 210 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 211 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 212 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 213 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 214 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 215 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 216 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 217 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 218 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 219 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 220 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 221 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 222 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 223 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 224 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 225 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 226 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 227 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 228 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 229 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 230 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 231 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 232 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 233 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 234 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 235 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 236 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 237 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 238 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 239 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 240 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 241 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 242 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 243 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 244 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 245 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 246 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 247 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 248 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 249 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 250 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 251 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 252 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 253 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 254 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 216 ; + parameterNumber = 255 ; + } +#Hydrogen peroxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Methyl peroxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 7 ; + } +#Paraffins +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 9 ; + } +#Ethene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Olefins +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 11 ; + } +#Aldehydes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Peroxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 14 ; + } +#Organic nitrates +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 15 ; + } +#Isoprene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Sulfate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 20 ; + } +#Ammonium +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 22 ; + } +#Methyl glyoxal +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 23 ; + } +#Stratospheric ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 24 ; + } +#Lead +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 28 ; + } +#Methylperoxy radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 29 ; + } +#Hydroxyl radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Pernitric acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 35 ; + } +#Organic ethers +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 36 ; + } +#PAR budget corrector +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 37 ; + } +#NO to NO2 operator +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 39 ; + } +#Amine +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 41 ; + } +#Methanol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Methacrylic acid +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 44 ; + } +#Ethane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Methacrolein MVK +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 50 ; + } +#Nitrate +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 51 ; + } +#Acetone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 52 ; + } +#Acetone product +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 53 ; + } +#IC3H7O2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 54 ; + } +#HYPROPO2 +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 56 ; + } +#Total column hydrogen peroxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column methyl peroxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 7 ; + } +#Total column paraffins +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 9 ; + } +#Total column ethene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column olefins +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 11 ; + } +#Total column aldehydes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 12 ; + } +#Total column peroxyacetyl nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column peroxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 14 ; + } +#Total column organic nitrates +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 15 ; + } +#Total column isoprene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column ammonium +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 21 ; + } +#Total column methane sulfonic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 22 ; + } +#Total column methyl glyoxal +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 23 ; + } +#Total column stratospheric ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 24 ; + } +#Total column lead +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 26 ; + } +#Total column nitrogen monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroperoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 28 ; + } +#Total column methylperoxy radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 29 ; + } +#Total column hydroxyl radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column pernitric acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 34 ; + } +#Total column peroxy acetyl radical +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 35 ; + } +#Total column organic ethers +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 36 ; + } +#Total column PAR budget corrector +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 37 ; + } +#Total column NO to NO2 operator +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 38 ; + } +#Total column NO to alkyl nitrate operator +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 39 ; + } +#Total column amine +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 40 ; + } +#Total column polar stratospheric cloud +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 41 ; + } +#Total column methanol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column methacrylic acid +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 44 ; + } +#Total column ethane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column methacrolein MVK +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 50 ; + } +#Total column nitrate +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 51 ; + } +#Total column acetone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 52 ; + } +#Total column acetone product +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 53 ; + } +#Total column IC3H7O2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 54 ; + } +#Total column HYPROPO2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 55 ; + } +#Total column nitrogen oxides Transp +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 56 ; + } +#Ozone emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 1 ; + } +#Nitrogen oxides emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 3 ; + } +#Methane emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 4 ; + } +#Carbon monoxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 5 ; + } +#Nitric acid emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 6 ; + } +#Methyl peroxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 7 ; + } +#Formaldehyde emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 8 ; + } +#Paraffins emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 9 ; + } +#Ethene emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 10 ; + } +#Olefins emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 11 ; + } +#Aldehydes emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 13 ; + } +#Peroxides emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 14 ; + } +#Organic nitrates emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 15 ; + } +#Isoprene emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 16 ; + } +#Sulfur dioxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 18 ; + } +#Ammonia emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 19 ; + } +#Sulfate emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 20 ; + } +#Ammonium emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 22 ; + } +#Methyl glyoxal emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 23 ; + } +#Stratospheric ozone emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 24 ; + } +#Radon emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 25 ; + } +#Lead emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 28 ; + } +#Methylperoxy radical emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 29 ; + } +#Hydroxyl radical emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 31 ; + } +#Nitrate radical emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 33 ; + } +#Pernitric acid emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 35 ; + } +#Organic ethers emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 36 ; + } +#PAR budget corrector emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 37 ; + } +#NO to NO2 operator emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 39 ; + } +#Amine emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 41 ; + } +#Methanol emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 42 ; + } +#Formic acid emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 43 ; + } +#Methacrylic acid emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 44 ; + } +#Ethane emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 45 ; + } +#Ethanol emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 46 ; + } +#Propane emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 47 ; + } +#Propene emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 48 ; + } +#Terpenes emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 49 ; + } +#Methacrolein MVK emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 50 ; + } +#Nitrate emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 51 ; + } +#Acetone emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 52 ; + } +#Acetone product emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 53 ; + } +#IC3H7O2 emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 54 ; + } +#HYPROPO2 emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp emissions +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 219 ; + parameterNumber = 56 ; + } +#Ozone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 1 ; + } +#Nitrogen oxides deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 2 ; + } +#Hydrogen peroxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 3 ; + } +#Methane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 4 ; + } +#Carbon monoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 5 ; + } +#Nitric acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 6 ; + } +#Methyl peroxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 7 ; + } +#Formaldehyde deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 8 ; + } +#Paraffins deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 9 ; + } +#Ethene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 10 ; + } +#Olefins deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 11 ; + } +#Aldehydes deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 12 ; + } +#Peroxyacetyl nitrate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 13 ; + } +#Peroxides deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 14 ; + } +#Organic nitrates deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 15 ; + } +#Isoprene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 16 ; + } +#Sulfur dioxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 17 ; + } +#Dimethyl sulfide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 18 ; + } +#Ammonia deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 19 ; + } +#Sulfate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 20 ; + } +#Ammonium deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 21 ; + } +#Methane sulfonic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 22 ; + } +#Methyl glyoxal deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 23 ; + } +#Stratospheric ozone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 24 ; + } +#Radon deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 25 ; + } +#Lead deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 26 ; + } +#Nitrogen monoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 27 ; + } +#Hydroperoxy radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 28 ; + } +#Methylperoxy radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 29 ; + } +#Hydroxyl radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 30 ; + } +#Nitrogen dioxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 31 ; + } +#Nitrate radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 33 ; + } +#Pernitric acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 34 ; + } +#Peroxy acetyl radical deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 35 ; + } +#Organic ethers deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 36 ; + } +#PAR budget corrector deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 37 ; + } +#NO to NO2 operator deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 38 ; + } +#NO to alkyl nitrate operator deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 39 ; + } +#Amine deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 40 ; + } +#Polar stratospheric cloud deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 41 ; + } +#Methanol deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 42 ; + } +#Formic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 43 ; + } +#Methacrylic acid deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 44 ; + } +#Ethane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 45 ; + } +#Ethanol deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 46 ; + } +#Propane deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 47 ; + } +#Propene deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 48 ; + } +#Terpenes deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 49 ; + } +#Methacrolein MVK deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 50 ; + } +#Nitrate deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 51 ; + } +#Acetone deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 52 ; + } +#Acetone product deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 53 ; + } +#IC3H7O2 deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 54 ; + } +#HYPROPO2 deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 55 ; + } +#Nitrogen oxides Transp deposition velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 221 ; + parameterNumber = 56 ; + } +#Total sky direct solar radiation at surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 21 ; + } +#Clear-sky direct solar radiation at surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 22 ; + } +#Cloud base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 23 ; + } +#Zero degree level +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 24 ; + } +#Horizontal visibility +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 25 ; + } +#Maximum temperature at 2 metres in the last 3 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres in the last 3 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 28 ; + } +#Soil wetness index in layer 1 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 40 ; + } +#Soil wetness index in layer 2 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 41 ; + } +#Soil wetness index in layer 3 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 42 ; + } +#Soil wetness index in layer 4 +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 43 ; + } +#Height of Zero Deg Wet Bulb Temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 47 ; + } +#Height of One Deg Wet Bulb Temperature +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 48 ; + } +#Total column rain water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 89 ; + } +#Total column snow water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 90 ; + } +#Canopy cover fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 91 ; + } +#Soil texture fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 92 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 93 ; + } +#Ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 94 ; + } +#Surface solar radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 129 ; + } +#Surface thermal radiation downward clear-sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 130 ; + } +#Surface short wave-effective total cloudiness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 248 ; + } +#100 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 249 ; + } +#Irrigation fraction +'Proportion' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 250 ; + } +#Potential evaporation +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 251 ; + } +#Irrigation +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 252 ; + } +#Surface long wave-effective total cloudiness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 255 ; + } +#Stream function gradient +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 1 ; + } +#Velocity potential gradient +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 2 ; + } +#Potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 5 ; + } +#U component of divergent wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 11 ; + } +#V component of divergent wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 12 ; + } +#U component of rotational wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 13 ; + } +#V component of rotational wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 23 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 24 ; + } +#Reserved for future unbalanced components +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 25 ; + } +#Lake cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 26 ; + } +#Low vegetation cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 27 ; + } +#High vegetation cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 28 ; + } +#Type of low vegetation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 29 ; + } +#Type of high vegetation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 30 ; + } +#Sea-ice cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 31 ; + } +#Snow albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 32 ; + } +#Snow density gradient +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 33 ; + } +#Sea surface temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 34 ; + } +#Ice surface temperature layer 1 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 35 ; + } +#Ice surface temperature layer 2 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 36 ; + } +#Ice surface temperature layer 3 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 37 ; + } +#Ice surface temperature layer 4 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 38 ; + } +#Volumetric soil water layer 1 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 gradient +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 42 ; + } +#Soil type gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 43 ; + } +#Snow evaporation gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 44 ; + } +#Snowmelt gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 45 ; + } +#Solar duration gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 46 ; + } +#Direct solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 48 ; + } +#10 metre wind gust gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 52 ; + } +#Montgomery potential gradient +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 53 ; + } +#Pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 58 ; + } +#Convective available potential energy gradient +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 59 ; + } +#Potential vorticity gradient +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 60 ; + } +#Total precipitation from observations gradient +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 61 ; + } +#Observation count gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 64 ; + } +#Skin temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 65 ; + } +#Leaf area index, low vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 66 ; + } +#Leaf area index, high vegetation +'m**2 m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 67 ; + } +#Minimum stomatal resistance, low vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 68 ; + } +#Minimum stomatal resistance, high vegetation +'s m**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 69 ; + } +#Biome cover, low vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 70 ; + } +#Biome cover, high vegetation +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 71 ; + } +#Total column liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 78 ; + } +#Total column ice water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 79 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 80 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 81 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 82 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 83 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 84 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 85 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 86 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 87 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 88 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 89 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 90 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 91 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 92 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 93 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 94 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 95 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 96 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 97 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 98 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 99 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 100 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 101 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 102 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 103 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 104 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 105 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 106 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 107 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 108 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 109 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 110 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 111 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 112 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 113 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 114 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 115 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 116 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 117 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 118 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 119 ; + } +#Experimental product +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 120 ; + } +#Maximum temperature at 2 metres gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 121 ; + } +#Minimum temperature at 2 metres gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 122 ; + } +#10 metre wind gust in the last 6 hours gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 123 ; + } +#Vertically integrated total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 126 ; + } +#Atmospheric tide gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 127 ; + } +#Budget values gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 128 ; + } +#Geopotential gradient +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 129 ; + } +#Temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 130 ; + } +#U component of wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 131 ; + } +#V component of wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 132 ; + } +#Specific humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 133 ; + } +#Surface pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 134 ; + } +#vertical velocity (pressure) gradient +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 135 ; + } +#Total column water gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 136 ; + } +#Total column water vapour gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 137 ; + } +#Vorticity (relative) gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 138 ; + } +#Soil temperature level 1 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 139 ; + } +#Soil wetness level 1 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 140 ; + } +#Snow depth gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 142 ; + } +#Convective precipitation gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 146 ; + } +#Surface latent heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 147 ; + } +#Charnock gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 148 ; + } +#Surface net radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 149 ; + } +#Top net radiation gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 150 ; + } +#Mean sea level pressure gradient +'Pa' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 152 ; + } +#Short-wave heating rate gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 153 ; + } +#Long-wave heating rate gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 154 ; + } +#Divergence gradient +'s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 155 ; + } +#Height gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 156 ; + } +#Relative humidity gradient +'%' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure gradient +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 158 ; + } +#Boundary layer height gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 159 ; + } +#Standard deviation of orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography gradient +'radians' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 163 ; + } +#Total cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 164 ; + } +#10 metre U wind component gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 165 ; + } +#10 metre V wind component gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 166 ; + } +#2 metre temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 169 ; + } +#Soil temperature level 2 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 170 ; + } +#Soil wetness level 2 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 171 ; + } +#Land-sea mask gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 172 ; + } +#Surface roughness gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 173 ; + } +#Albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 175 ; + } +#Surface net solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 177 ; + } +#Top net solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 178 ; + } +#Top net thermal radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 179 ; + } +#East-West surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 180 ; + } +#North-South surface stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 181 ; + } +#Evaporation gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 182 ; + } +#Soil temperature level 3 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 183 ; + } +#Soil wetness level 3 gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 184 ; + } +#Convective cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 185 ; + } +#Low cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 186 ; + } +#Medium cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 187 ; + } +#High cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 188 ; + } +#Sunshine duration gradient +'s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 193 ; + } +#Brightness temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress gradient +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 197 ; + } +#Skin reservoir content gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 198 ; + } +#Vegetation fraction gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography gradient +'m**2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres since previous post-processing gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres since previous post-processing gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 204 ; + } +#Runoff gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 205 ; + } +#Total column ozone gradient +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 206 ; + } +#10 metre wind speed gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 207 ; + } +#Top net solar radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 211 ; + } +#TOA incident solar radiation gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 216 ; + } +#Diabatic heating large-scale condensation gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 227 ; + } +#Total precipitation gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress gradient +'N m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress gradient +'N m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux gradient +'J m**-2' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux gradient +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 232 ; + } +#Apparent surface humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 234 ; + } +#Skin temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 237 ; + } +#Temperature of snow layer gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 238 ; + } +#Convective snowfall gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 239 ; + } +#Large scale snowfall gradient +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 242 ; + } +#Forecast albedo gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 243 ; + } +#Forecast surface roughness gradient +'m' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat gradient +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 245 ; + } +#Specific cloud liquid water content gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 246 ; + } +#Specific cloud ice water content gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 247 ; + } +#Cloud cover gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency gradient +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 249 ; + } +#Ice age gradient +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature gradient +'K' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity gradient +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind gradient +'m s**-1' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 129 ; + parameterNumber = 255 ; + } +#Top solar radiation upward +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 208 ; + } +#Top thermal radiation upward +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 209 ; + } +#Top solar radiation upward, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 210 ; + } +#Top thermal radiation upward, clear sky +'J m**-2' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 211 ; + } +#Cloud liquid water +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 212 ; + } +#Cloud fraction +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 213 ; + } +#Diabatic heating by radiation +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 221 ; + } +#Vertical diffusion of humidity +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 226 ; + } +#Adiabatic tendency of temperature +'K s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 228 ; + } +#Adiabatic tendency of humidity +'kg kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 229 ; + } +#Adiabatic tendency of zonal wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 230 ; + } +#Adiabatic tendency of meridional wind +'m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 231 ; + } +#Mean vertical velocity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 130 ; + parameterNumber = 232 ; + } +#2m temperature anomaly of at least +2K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 1 ; + } +#2m temperature anomaly of at least +1K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 2 ; + } +#2m temperature anomaly of at least 0K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 3 ; + } +#2m temperature anomaly of at most -1K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 4 ; + } +#2m temperature anomaly of at most -2K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 5 ; + } +#Total precipitation anomaly of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 6 ; + } +#Total precipitation anomaly of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 7 ; + } +#Total precipitation anomaly of at least 0 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 8 ; + } +#Surface temperature anomaly of at least 0K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 9 ; + } +#Mean sea level pressure anomaly of at least 0 Pa +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 10 ; + } +#Height of 0 degree isotherm probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 15 ; + } +#Height of snowfall limit probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 16 ; + } +#Showalter index probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 17 ; + } +#Whiting index probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 18 ; + } +#Temperature anomaly less than -2 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 20 ; + } +#Temperature anomaly of at least +2 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 21 ; + } +#Temperature anomaly less than -8 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 22 ; + } +#Temperature anomaly less than -4 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 23 ; + } +#Temperature anomaly greater than +4 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 24 ; + } +#Temperature anomaly greater than +8 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 49 ; + } +#Convective available potential energy probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 59 ; + } +#Total precipitation less than 0.1 mm +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 64 ; + } +#Total precipitation rate less than 1 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 65 ; + } +#Total precipitation rate of at least 3 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 66 ; + } +#Total precipitation rate of at least 5 mm/day +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 67 ; + } +#10 metre Wind speed of at least 10 m/s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 68 ; + } +#10 metre Wind speed of at least 15 m/s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 69 ; + } +#10 metre Wind gust of at least 25 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaledValueOfLowerLimit = 25 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#2 metre temperature less than 273.15 K +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 73 ; + } +#Significant wave height of at least 2 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 2 ; + } +#Significant wave height of at least 4 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 4 ; + probabilityType = 3 ; + } +#Significant wave height of at least 6 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + productDefinitionTemplateNumber = 5 ; + typeOfFirstFixedSurface = 101 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 6 ; + } +#Significant wave height of at least 8 m +'%' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 8 ; + } +#Mean wave period of at least 8 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 78 ; + } +#Mean wave period of at least 10 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 79 ; + } +#Mean wave period of at least 12 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 80 ; + } +#Mean wave period of at least 15 s +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 81 ; + } +#Geopotential probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 129 ; + } +#Temperature anomaly probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 130 ; + } +#Soil temperature level 1 probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 139 ; + } +#Snowfall (convective + stratiform) probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 144 ; + } +#Mean sea level pressure probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 151 ; + } +#Total cloud cover probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 164 ; + } +#10 metre speed probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 165 ; + } +#2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 167 ; + } +#Maximum 2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 201 ; + } +#Minimum 2 metre temperature probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 202 ; + } +#Total precipitation probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 228 ; + } +#Significant wave height probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 229 ; + } +#Mean wave period probability +'%' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 232 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 131 ; + parameterNumber = 255 ; + } +#2m temperature probability less than -10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 1 ; + } +#2m temperature probability less than -5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 2 ; + } +#2m temperature probability less than 0 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 3 ; + } +#2m temperature probability less than 5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 4 ; + } +#2m temperature probability less than 10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 5 ; + } +#2m temperature probability greater than 25 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 6 ; + } +#2m temperature probability greater than 30 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 7 ; + } +#2m temperature probability greater than 35 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 8 ; + } +#2m temperature probability greater than 40 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 9 ; + } +#2m temperature probability greater than 45 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 10 ; + } +#Minimum 2 metre temperature probability less than -10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 11 ; + } +#Minimum 2 metre temperature probability less than -5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 12 ; + } +#Minimum 2 metre temperature probability less than 0 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 13 ; + } +#Minimum 2 metre temperature probability less than 5 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 14 ; + } +#Minimum 2 metre temperature probability less than 10 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 15 ; + } +#Maximum 2 metre temperature probability greater than 25 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 16 ; + } +#Maximum 2 metre temperature probability greater than 30 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 17 ; + } +#Maximum 2 metre temperature probability greater than 35 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 18 ; + } +#Maximum 2 metre temperature probability greater than 40 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 19 ; + } +#Maximum 2 metre temperature probability greater than 45 C +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 20 ; + } +#10 metre wind speed probability of at least 10 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 21 ; + } +#10 metre wind speed probability of at least 15 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 22 ; + } +#10 metre wind speed probability of at least 20 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 23 ; + } +#10 metre wind speed probability of at least 35 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 24 ; + } +#10 metre wind speed probability of at least 50 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 25 ; + } +#10 metre wind gust probability of at least 20 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 26 ; + } +#10 metre wind gust probability of at least 35 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 27 ; + } +#10 metre wind gust probability of at least 50 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 28 ; + } +#10 metre wind gust probability of at least 75 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 29 ; + } +#10 metre wind gust probability of at least 100 m/s +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 30 ; + } +#Total precipitation probability of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 31 ; + } +#Total precipitation probability of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 32 ; + } +#Total precipitation probability of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 33 ; + } +#Total precipitation probability of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 34 ; + } +#Total precipitation probability of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 35 ; + } +#Total precipitation probability of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 36 ; + } +#Total precipitation probability of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 37 ; + } +#Total precipitation probability of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 38 ; + } +#Total precipitation probability of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 39 ; + } +#Total precipitation probability of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 40 ; + } +#Total precipitation probability of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 41 ; + } +#Snowfall probability of at least 1 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 42 ; + } +#Snowfall probability of at least 5 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 43 ; + } +#Snowfall probability of at least 10 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 44 ; + } +#Snowfall probability of at least 20 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 45 ; + } +#Snowfall probability of at least 40 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 46 ; + } +#Snowfall probability of at least 60 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 47 ; + } +#Snowfall probability of at least 80 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 48 ; + } +#Snowfall probability of at least 100 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 49 ; + } +#Snowfall probability of at least 150 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 50 ; + } +#Snowfall probability of at least 200 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 51 ; + } +#Snowfall probability of at least 300 mm +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 52 ; + } +#Total Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 53 ; + } +#Total Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 54 ; + } +#Total Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 55 ; + } +#Total Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 56 ; + } +#Total Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 57 ; + } +#Total Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 58 ; + } +#Total Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 59 ; + } +#Total Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 60 ; + } +#Total Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 61 ; + } +#Total Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 62 ; + } +#High Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 63 ; + } +#High Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 64 ; + } +#High Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 65 ; + } +#High Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 66 ; + } +#High Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 67 ; + } +#High Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 68 ; + } +#High Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 69 ; + } +#High Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 70 ; + } +#High Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 71 ; + } +#High Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 72 ; + } +#Medium Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 73 ; + } +#Medium Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 74 ; + } +#Medium Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 75 ; + } +#Medium Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 76 ; + } +#Medium Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 77 ; + } +#Medium Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 78 ; + } +#Medium Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 79 ; + } +#Medium Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 80 ; + } +#Medium Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 81 ; + } +#Medium Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 82 ; + } +#Low Cloud Cover probability greater than 10% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 83 ; + } +#Low Cloud Cover probability greater than 20% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 84 ; + } +#Low Cloud Cover probability greater than 30% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 85 ; + } +#Low Cloud Cover probability greater than 40% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 86 ; + } +#Low Cloud Cover probability greater than 50% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 87 ; + } +#Low Cloud Cover probability greater than 60% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 88 ; + } +#Low Cloud Cover probability greater than 70% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 89 ; + } +#Low Cloud Cover probability greater than 80% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 90 ; + } +#Low Cloud Cover probability greater than 90% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 91 ; + } +#Low Cloud Cover probability greater than 99% +'%' = { + discipline = 192 ; + parameterCategory = 133 ; + parameterNumber = 92 ; + } +#Maximum of significant wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 200 ; + } +#Period corresponding to maximum individual wave height +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 217 ; + } +#Maximum individual wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 218 ; + } +#Model bathymetry +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 219 ; + } +#Mean wave period based on first moment +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 220 ; + } +#Mean wave period based on second moment +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 221 ; + } +#Wave spectral directional width +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 222 ; + } +#Mean wave period based on first moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 223 ; + } +#Mean wave period based on second moment for wind waves +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 224 ; + } +#Wave spectral directional width for wind waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 225 ; + } +#Mean wave period based on first moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 226 ; + } +#Mean wave period based on second moment for swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 227 ; + } +#Wave spectral directional width for swell +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 228 ; + } +#Peak period of 1D spectra +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 231 ; + } +#Coefficient of drag with waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 233 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean direction of wind waves +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 235 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Significant height of total swell +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 237 ; + } +#Mean direction of total swell +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 238 ; + } +#Mean period of total swell +'s' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 239 ; + } +#Standard deviation wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 240 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 241 ; + } +#Mean wind direction +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 242 ; + } +#Standard deviation of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 243 ; + } +#Mean square slope of waves +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 244 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 245 ; + } +#Altimeter wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 246 ; + } +#Altimeter corrected wave height +'m' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 247 ; + } +#Altimeter range relative correction +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 248 ; + } +#10 metre wind direction +'degrees' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 249 ; + } +#2D wave spectra (multiple) +'m**2 s radian**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 250 ; + } +#2D wave spectra (single) +'m**2 s radian**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 251 ; + } +#Wave spectral kurtosis +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 252 ; + } +#Benjamin-Feir index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 253 ; + } +#Wave spectral peakedness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 255 ; + } +#Ocean potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 129 ; + } +#Ocean salinity +'psu' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 130 ; + } +#Ocean potential density +'kg m**-3 -1000' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 131 ; + } +#Ocean U wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 133 ; + } +#Ocean V wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 134 ; + } +#Ocean W wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 135 ; + } +#Richardson number +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 137 ; + } +#U*V product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 139 ; + } +#U*T product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 140 ; + } +#V*T product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 141 ; + } +#U*U product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 142 ; + } +#V*V product +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 143 ; + } +#UV - U~V~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 144 ; + } +#UT - U~T~ +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 145 ; + } +#VT - V~T~ +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 146 ; + } +#UU - U~U~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 147 ; + } +#VV - V~V~ +'m s**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 148 ; + } +#Sea level +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 152 ; + } +#Barotropic stream function +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 153 ; + } +#Mixed layer depth +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 154 ; + } +#Depth +'m' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 155 ; + } +#U stress +'Pa' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 168 ; + } +#V stress +'Pa' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 169 ; + } +#Turbulent kinetic energy input +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 170 ; + } +#Net surface heat flux +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 171 ; + } +#Surface solar radiation +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 172 ; + } +#P-E +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 173 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 180 ; + } +#Heat flux correction +'J m**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 181 ; + } +#Observed sea surface temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 182 ; + } +#Observed heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 183 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 150 ; + parameterNumber = 255 ; + } +#In situ Temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 128 ; + } +#Ocean potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 129 ; + } +#Salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Ocean current zonal component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 131 ; + } +#Ocean current meridional component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 132 ; + } +#Ocean current vertical component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Modulus of strain rate tensor +'s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 134 ; + } +#Vertical viscosity +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 135 ; + } +#Vertical diffusivity +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 136 ; + } +#Bottom level Depth +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 137 ; + } +#Sigma-theta +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } +#Richardson number +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 139 ; + } +#UV product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 140 ; + } +#UT product +'m s**-1 degC' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 141 ; + } +#VT product +'m s**-1 deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 142 ; + } +#UU product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 143 ; + } +#VV product +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 144 ; + } +#Sea level +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 145 ; + } +#Sea level previous timestep +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 146 ; + } +#Barotropic stream function +'m**3 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 147 ; + } +#Mixed layer depth +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 148 ; + } +#Bottom Pressure (equivalent height) +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 149 ; + } +#Steric height +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 150 ; + } +#Curl of Wind Stress +'N m**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 151 ; + } +#Divergence of wind stress +'Nm**-3' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 152 ; + } +#U stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#V stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } +#Turbulent kinetic energy input +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 155 ; + } +#Net surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 156 ; + } +#Absorbed solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 157 ; + } +#Precipitation - evaporation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 158 ; + } +#Specified sea surface temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 159 ; + } +#Specified surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 160 ; + } +#Diagnosed sea surface temperature error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 161 ; + } +#Heat flux correction +'J m**-2' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 162 ; + } +#20 degrees isotherm depth +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 163 ; + } +#Average potential temperature in the upper 300m +'degrees C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 164 ; + } +#Vertically integrated zonal velocity (previous time step) +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 165 ; + } +#Vertically Integrated meridional velocity (previous time step) +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 166 ; + } +#Vertically integrated zonal volume transport +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 167 ; + } +#Vertically integrated meridional volume transport +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 168 ; + } +#Vertically integrated zonal heat transport +'J m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 169 ; + } +#Vertically integrated meridional heat transport +'J m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 170 ; + } +#U velocity maximum +'m s**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 171 ; + } +#Depth of the velocity maximum +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 172 ; + } +#Salinity maximum +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 173 ; + } +#Depth of salinity maximum +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 174 ; + } +#Average salinity in the upper 300m +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 175 ; + } +#Layer Thickness at scalar points +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 176 ; + } +#Layer Thickness at vector points +'m' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 177 ; + } +#Potential temperature increment +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 178 ; + } +#Potential temperature analysis error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 179 ; + } +#Background potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 180 ; + } +#Analysed potential temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 181 ; + } +#Potential temperature background error +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 182 ; + } +#Analysed salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 183 ; + } +#Salinity increment +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 184 ; + } +#Estimated Bias in Temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 185 ; + } +#Estimated Bias in Salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 186 ; + } +#Zonal Velocity increment (from balance operator) +'m s**-1 per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 187 ; + } +#Meridional Velocity increment (from balance operator) +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 188 ; + } +#Salinity increment (from salinity data) +'psu per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 190 ; + } +#Salinity analysis error +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 191 ; + } +#Background Salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 192 ; + } +#Salinity background error +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 194 ; + } +#Estimated temperature bias from assimilation +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 199 ; + } +#Estimated salinity bias from assimilation +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 200 ; + } +#Temperature increment from relaxation term +'deg C per time step' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 201 ; + } +#Salinity increment from relaxation term +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 202 ; + } +#Bias in the zonal pressure gradient (applied) +'Pa m**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 203 ; + } +#Bias in the meridional pressure gradient (applied) +'Pa m**-1' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 204 ; + } +#Estimated temperature bias from relaxation +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 205 ; + } +#Estimated salinity bias from relaxation +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 206 ; + } +#First guess bias in temperature +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 207 ; + } +#First guess bias in salinity +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 208 ; + } +#Applied bias in pressure +'Pa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 209 ; + } +#FG bias in pressure +'Pa' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 210 ; + } +#Bias in temperature(applied) +'deg C' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 211 ; + } +#Bias in salinity (applied) +'psu' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 212 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 255 ; + } +#10 metre wind gust during averaging time +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 49 ; + } +#vertical velocity (pressure) +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 135 ; + } +#Precipitable water content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 137 ; + } +#Soil wetness level 1 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 140 ; + } +#Snow depth +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 141 ; + } +#Large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 142 ; + } +#Convective precipitation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 143 ; + } +#Snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 144 ; + } +#Height +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 156 ; + } +#Relative humidity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 157 ; + } +#Soil wetness level 2 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 171 ; + } +#East-West surface stress +'N m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 180 ; + } +#North-South surface stress +'N m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 181 ; + } +#Evaporation +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 182 ; + } +#Soil wetness level 3 +'m' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 184 ; + } +#Skin reservoir content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 198 ; + } +#Percentage of vegetation +'%' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 199 ; + } +#Maximum temperature at 2 metres during averaging time +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres during averaging time +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 202 ; + } +#Runoff +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 205 ; + } +#Standard deviation of geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 206 ; + } +#Covariance of temperature and geopotential +'K m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 207 ; + } +#Standard deviation of temperature +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 208 ; + } +#Covariance of specific humidity and geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 209 ; + } +#Covariance of specific humidity and temperature +'K' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 210 ; + } +#Standard deviation of specific humidity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 211 ; + } +#Covariance of U component and geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 212 ; + } +#Covariance of U component and temperature +'K m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 213 ; + } +#Covariance of U component and specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 214 ; + } +#Standard deviation of U velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 215 ; + } +#Covariance of V component and geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 216 ; + } +#Covariance of V component and temperature +'K m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 217 ; + } +#Covariance of V component and specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 218 ; + } +#Covariance of V component and U component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 219 ; + } +#Standard deviation of V component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 220 ; + } +#Covariance of W component and geopotential +'Pa m**2 s**-3' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 221 ; + } +#Covariance of W component and temperature +'K Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 222 ; + } +#Covariance of W component and specific humidity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 223 ; + } +#Covariance of W component and U component +'Pa m s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 224 ; + } +#Covariance of W component and V component +'Pa m s**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 225 ; + } +#Standard deviation of vertical velocity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 226 ; + } +#Instantaneous surface heat flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 231 ; + } +#Convective snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 240 ; + } +#Cloud liquid water content +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 241 ; + } +#Cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 242 ; + } +#Forecast albedo +'~' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 243 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 246 ; + } +#Momentum flux +'N m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 247 ; + } +#Gravity wave dissipation flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 249 ; + } +#Heaviside beta function +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 160 ; + parameterNumber = 254 ; + } +#Surface geopotential +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 51 ; + } +#Vertical integral of mass of atmosphere +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 53 ; + } +#Vertical integral of temperature +'K kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 54 ; + } +#Vertical integral of water vapour +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 55 ; + } +#Vertical integral of cloud liquid water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 56 ; + } +#Vertical integral of cloud frozen water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 57 ; + } +#Vertical integral of ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 58 ; + } +#Vertical integral of kinetic energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 59 ; + } +#Vertical integral of thermal energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 60 ; + } +#Vertical integral of potential+internal energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 61 ; + } +#Vertical integral of potential+internal+latent energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 62 ; + } +#Vertical integral of total energy +'J m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 63 ; + } +#Vertical integral of energy conversion +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 64 ; + } +#Vertical integral of eastward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 65 ; + } +#Vertical integral of northward mass flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 66 ; + } +#Vertical integral of eastward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 67 ; + } +#Vertical integral of northward kinetic energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 68 ; + } +#Vertical integral of eastward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 69 ; + } +#Vertical integral of northward heat flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 70 ; + } +#Vertical integral of eastward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 71 ; + } +#Vertical integral of northward water vapour flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 72 ; + } +#Vertical integral of eastward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 73 ; + } +#Vertical integral of northward geopotential flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 74 ; + } +#Vertical integral of eastward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 75 ; + } +#Vertical integral of northward total energy flux +'W m**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 76 ; + } +#Vertical integral of eastward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 77 ; + } +#Vertical integral of northward ozone flux +'kg m**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 78 ; + } +#Vertical integral of divergence of mass flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 81 ; + } +#Vertical integral of divergence of kinetic energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 82 ; + } +#Vertical integral of divergence of thermal energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 83 ; + } +#Vertical integral of divergence of moisture flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 84 ; + } +#Vertical integral of divergence of geopotential flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 85 ; + } +#Vertical integral of divergence of total energy flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 86 ; + } +#Vertical integral of divergence of ozone flux +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 87 ; + } +#Tendency of short wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 100 ; + } +#Tendency of long wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 101 ; + } +#Tendency of clear sky short wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 102 ; + } +#Tendency of clear sky long wave radiation +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 103 ; + } +#Updraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 104 ; + } +#Downdraught mass flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 105 ; + } +#Updraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 106 ; + } +#Downdraught detrainment rate +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 107 ; + } +#Total precipitation flux +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 108 ; + } +#Turbulent diffusion coefficient for heat +'m**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 109 ; + } +#Tendency of temperature due to physics +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 110 ; + } +#Tendency of specific humidity due to physics +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 111 ; + } +#Tendency of u component due to physics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 112 ; + } +#Tendency of v component due to physics +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 113 ; + } +#Variance of geopotential +'m**4 s**-4' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 206 ; + } +#Covariance of geopotential/temperature +'m**2 K s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 207 ; + } +#Variance of temperature +'K**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 208 ; + } +#Covariance of geopotential/specific humidity +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 209 ; + } +#Covariance of temperature/specific humidity +'K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 210 ; + } +#Variance of specific humidity +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 211 ; + } +#Covariance of u component/geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 212 ; + } +#Covariance of u component/temperature +'m s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 213 ; + } +#Covariance of u component/specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 214 ; + } +#Variance of u component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 215 ; + } +#Covariance of v component/geopotential +'m**3 s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 216 ; + } +#Covariance of v component/temperature +'m s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 217 ; + } +#Covariance of v component/specific humidity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 218 ; + } +#Covariance of v component/u component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 219 ; + } +#Variance of v component +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 220 ; + } +#Covariance of omega/geopotential +'m**2 Pa s**-3' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 221 ; + } +#Covariance of omega/temperature +'Pa s**-1 K' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 222 ; + } +#Covariance of omega/specific humidity +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 223 ; + } +#Covariance of omega/u component +'m Pa s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 224 ; + } +#Covariance of omega/v component +'m Pa s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 225 ; + } +#Variance of omega +'Pa**2 s**-2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 226 ; + } +#Variance of surface pressure +'Pa**2' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 227 ; + } +#Variance of relative humidity +'dimensionless' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 229 ; + } +#Covariance of u component/ozone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 230 ; + } +#Covariance of v component/ozone +'m s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 231 ; + } +#Covariance of omega/ozone +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 232 ; + } +#Variance of ozone +'dimensionless' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 233 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 162 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 149 ; + } +#Soil wetness level 2 +'m' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 171 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 170 ; + parameterNumber = 179 ; + } +#Stream function anomaly +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 1 ; + } +#Velocity potential anomaly +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 2 ; + } +#Potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 3 ; + } +#Equivalent potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 4 ; + } +#Saturated equivalent potential temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 5 ; + } +#U component of divergent wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 11 ; + } +#V component of divergent wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 12 ; + } +#U component of rotational wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 13 ; + } +#V component of rotational wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 14 ; + } +#Unbalanced component of temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 21 ; + } +#Unbalanced component of logarithm of surface pressure anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 22 ; + } +#Unbalanced component of divergence anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 23 ; + } +#Lake cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 26 ; + } +#Low vegetation cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 27 ; + } +#High vegetation cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 28 ; + } +#Type of low vegetation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 29 ; + } +#Type of high vegetation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 30 ; + } +#Sea-ice cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 31 ; + } +#Snow albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 32 ; + } +#Snow density anomaly +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 33 ; + } +#Sea surface temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 34 ; + } +#Ice surface temperature anomaly layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 35 ; + } +#Ice surface temperature anomaly layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 36 ; + } +#Ice surface temperature anomaly layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 37 ; + } +#Ice surface temperature anomaly layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 38 ; + } +#Volumetric soil water anomaly layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 39 ; + } +#Volumetric soil water anomaly layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 40 ; + } +#Volumetric soil water anomaly layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 41 ; + } +#Volumetric soil water anomaly layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 42 ; + } +#Soil type anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 43 ; + } +#Snow evaporation anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 45 ; + } +#Solar duration anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 46 ; + } +#Direct solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 47 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 48 ; + } +#10 metre wind gust anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 49 ; + } +#Large-scale precipitation fraction anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 50 ; + } +#Maximum 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 51 ; + } +#Minimum 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 52 ; + } +#Montgomery potential anomaly +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 53 ; + } +#Pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 54 ; + } +#Mean 2 metre temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 55 ; + } +#Mean 2 metre dewpoint temperature in the last 24 hours anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 56 ; + } +#Downward UV radiation at the surface anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 57 ; + } +#Photosynthetically active radiation at the surface anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 58 ; + } +#Convective available potential energy anomaly +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 59 ; + } +#Potential vorticity anomaly +'K m**2 kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 60 ; + } +#Total precipitation from observations anomaly +'Millimetres*100 + number of stations' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 61 ; + } +#Observation count anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 62 ; + } +#Start time for skin temperature difference anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 63 ; + } +#Finish time for skin temperature difference anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 64 ; + } +#Skin temperature difference anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 65 ; + } +#Total column liquid water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 78 ; + } +#Total column ice water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 79 ; + } +#Vertically integrated total energy anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 125 ; + } +#Generic parameter for sensitive area prediction +'Various' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 126 ; + } +#Atmospheric tide anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 127 ; + } +#Budget values anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 128 ; + } +#Geopotential anomaly +'m**2 s**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 129 ; + } +#Temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 130 ; + } +#U component of wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 131 ; + } +#V component of wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 132 ; + } +#Specific humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 133 ; + } +#Surface pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 134 ; + } +#Vertical velocity (pressure) anomaly +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 135 ; + } +#Total column water anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 136 ; + } +#Total column water vapour anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 137 ; + } +#Relative vorticity anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 138 ; + } +#Soil temperature anomaly level 1 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 139 ; + } +#Soil wetness anomaly level 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 140 ; + } +#Snow depth anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 141 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 147 ; + } +#Charnock anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 148 ; + } +#Surface net radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 149 ; + } +#Top net radiation anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 150 ; + } +#Mean sea level pressure anomaly +'Pa' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 151 ; + } +#Logarithm of surface pressure anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 152 ; + } +#Short-wave heating rate anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 154 ; + } +#Relative divergence anomaly +'s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 155 ; + } +#Height anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 156 ; + } +#Relative humidity anomaly +'%' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 157 ; + } +#Tendency of surface pressure anomaly +'Pa s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 158 ; + } +#Boundary layer height anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 159 ; + } +#Standard deviation of orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 160 ; + } +#Anisotropy of sub-gridscale orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 161 ; + } +#Angle of sub-gridscale orography anomaly +'radians' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 162 ; + } +#Slope of sub-gridscale orography anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 163 ; + } +#Total cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 164 ; + } +#10 metre U wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 165 ; + } +#10 metre V wind component anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 166 ; + } +#2 metre temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 167 ; + } +#2 metre dewpoint temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 168 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 169 ; + } +#Soil temperature anomaly level 2 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 170 ; + } +#Soil wetness anomaly level 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 171 ; + } +#Surface roughness anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 173 ; + } +#Albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 174 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 175 ; + } +#Surface net solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 177 ; + } +#Top net solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 178 ; + } +#Top net thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 182 ; + } +#Soil temperature anomaly level 3 +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 183 ; + } +#Soil wetness anomaly level 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 184 ; + } +#Convective cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 185 ; + } +#Low cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 186 ; + } +#Medium cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 187 ; + } +#High cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 188 ; + } +#Sunshine duration anomaly +'s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 189 ; + } +#East-West component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 190 ; + } +#North-South component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 191 ; + } +#North-West/South-East component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 192 ; + } +#North-East/South-West component of sub-gridscale orographic variance anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 193 ; + } +#Brightness temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 194 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 197 ; + } +#Skin reservoir content anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 198 ; + } +#Vegetation fraction anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 199 ; + } +#Variance of sub-gridscale orography anomaly +'m**2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 200 ; + } +#Maximum temperature at 2 metres anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 201 ; + } +#Minimum temperature at 2 metres anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 202 ; + } +#Ozone mass mixing ratio anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 203 ; + } +#Precipitation analysis weights anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 204 ; + } +#Runoff anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 205 ; + } +#Total column ozone anomaly +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 206 ; + } +#10 metre wind speed anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 207 ; + } +#Top net solar radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 208 ; + } +#Top net thermal radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 209 ; + } +#Surface net solar radiation clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 212 ; + } +#Diabatic heating by radiation anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 214 ; + } +#Diabatic heating by vertical diffusion anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 215 ; + } +#Diabatic heating by cumulus convection anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 216 ; + } +#Diabatic heating by large-scale condensation anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 217 ; + } +#Vertical diffusion of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 218 ; + } +#Vertical diffusion of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 219 ; + } +#East-West gravity wave drag tendency anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 220 ; + } +#North-South gravity wave drag tendency anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 221 ; + } +#Convective tendency of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 222 ; + } +#Convective tendency of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 223 ; + } +#Vertical diffusion of humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 224 ; + } +#Humidity tendency by cumulus convection anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 225 ; + } +#Humidity tendency by large-scale condensation anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 226 ; + } +#Change from removal of negative humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 227 ; + } +#Total precipitation anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 228 ; + } +#Instantaneous X surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 229 ; + } +#Instantaneous Y surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 230 ; + } +#Instantaneous surface heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 231 ; + } +#Instantaneous moisture flux anomaly +'kg m**-2 s' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 232 ; + } +#Apparent surface humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 233 ; + } +#Logarithm of surface roughness length for heat anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 234 ; + } +#Skin temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 235 ; + } +#Soil temperature level 4 anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 236 ; + } +#Soil wetness level 4 anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 237 ; + } +#Temperature of snow layer anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 238 ; + } +#Convective snowfall anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 240 ; + } +#Accumulated cloud fraction tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 241 ; + } +#Accumulated liquid water tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 242 ; + } +#Forecast albedo anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 243 ; + } +#Forecast surface roughness anomaly +'m' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 244 ; + } +#Forecast logarithm of surface roughness for heat anomaly +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 245 ; + } +#Cloud liquid water content anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 246 ; + } +#Cloud ice water content anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 247 ; + } +#Cloud cover anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 248 ; + } +#Accumulated ice water tendency anomaly +'(-1 to 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 249 ; + } +#Ice age anomaly +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 250 ; + } +#Adiabatic tendency of temperature anomaly +'K' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 251 ; + } +#Adiabatic tendency of humidity anomaly +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 252 ; + } +#Adiabatic tendency of zonal wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 253 ; + } +#Adiabatic tendency of meridional wind anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 254 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 171 ; + parameterNumber = 255 ; + } +#Snow evaporation +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 44 ; + } +#Snowmelt +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 142 ; + } +#Convective precipitation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 146 ; + } +#Surface latent heat flux +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 147 ; + } +#Surface net radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 149 ; + } +#Short-wave heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 153 ; + } +#Long-wave heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 175 ; + } +#Surface solar radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 176 ; + } +#Surface thermal radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 177 ; + } +#Top solar radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 178 ; + } +#Top thermal radiation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 179 ; + } +#East-West surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 180 ; + } +#North-South surface stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 181 ; + } +#Evaporation +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 182 ; + } +#Sunshine duration +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress +'N m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 197 ; + } +#Runoff +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 211 ; + } +#Solar insolation +'W m**-2' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 212 ; + } +#Total precipitation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 228 ; + } +#Convective snowfall +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 239 ; + } +#Large scale snowfall +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 172 ; + parameterNumber = 255 ; + } +#Snow evaporation anomaly +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 44 ; + } +#Snowmelt anomaly +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 45 ; + } +#Magnitude of turbulent surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 48 ; + } +#Large-scale precipitation fraction anomaly +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 50 ; + } +#Stratiform precipitation (Large-scale precipitation) anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 142 ; + } +#Convective precipitation anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 143 ; + } +#Snowfall (convective + stratiform) anomalous rate of accumulation +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 144 ; + } +#Boundary layer dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 145 ; + } +#Surface sensible heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 146 ; + } +#Surface latent heat flux anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 147 ; + } +#Surface net radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 149 ; + } +#Short-wave heating rate anomaly +'K s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 153 ; + } +#Long-wave heating rate anomaly +'K s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 154 ; + } +#Surface solar radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 169 ; + } +#Surface thermal radiation downwards anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 175 ; + } +#Surface solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 176 ; + } +#Surface thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 177 ; + } +#Top solar radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 178 ; + } +#Top thermal radiation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 179 ; + } +#East-West surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 180 ; + } +#North-South surface stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 181 ; + } +#Evaporation anomaly +'m of water s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 182 ; + } +#Sunshine duration anomalous rate of accumulation +'dimensionless' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 189 ; + } +#Longitudinal component of gravity wave stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 195 ; + } +#Meridional component of gravity wave stress anomaly +'N m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 196 ; + } +#Gravity wave dissipation anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 197 ; + } +#Runoff anomaly +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 205 ; + } +#Top net solar radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 208 ; + } +#Top net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 209 ; + } +#Surface net solar radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 210 ; + } +#Surface net thermal radiation, clear sky anomaly +'J m**-2' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 211 ; + } +#Solar insolation anomaly +'W m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 212 ; + } +#Total precipitation anomalous rate of accumulation +'m s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 228 ; + } +#Convective snowfall anomaly +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 239 ; + } +#Large scale snowfall anomaly +'m of water equivalent s**-1' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 240 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 173 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 6 ; + } +#Sub-surface runoff +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 9 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 42 ; + } +#10 metre wind gust in the last 24 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 83 ; + } +#10m U wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 85 ; + } +#10m V wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 90 ; + } +#Mean sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 94 ; + } +#1.5m specific humidity +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 95 ; + } +#Sea-ice thickness +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 98 ; + } +#Liquid water potential temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 99 ; + } +#Ocean ice concentration +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'m' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 164 ; + } +#1.5m temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 255 ; + } +#Total soil moisture +'m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 6 ; + } +#Fraction of sea-ice in sea +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 31 ; + } +#Open-sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 34 ; + } +#Volumetric soil water layer 1 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 39 ; + } +#Volumetric soil water layer 2 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 40 ; + } +#Volumetric soil water layer 3 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 41 ; + } +#Volumetric soil water layer 4 +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 42 ; + } +#10m wind gust in the last 24 hours +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 49 ; + } +#1.5m temperature - mean in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 55 ; + } +#Net primary productivity +'kg C m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 83 ; + } +#10m U wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 85 ; + } +#10m V wind over land +'m s**-1' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 86 ; + } +#1.5m temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 87 ; + } +#1.5m dewpoint temperature over land +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 88 ; + } +#Top incoming solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 89 ; + } +#Top outgoing solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 90 ; + } +#Ocean ice concentration +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 110 ; + } +#Ocean mean ice depth +'m' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 111 ; + } +#Soil temperature layer 1 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 139 ; + } +#Average potential temperature in upper 293.4m +'degrees C' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 164 ; + } +#1.5m temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 167 ; + } +#1.5m dewpoint temperature +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 168 ; + } +#Soil temperature layer 2 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 170 ; + } +#Average salinity in upper 293.4m +'psu' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 175 ; + } +#Soil temperature layer 3 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 183 ; + } +#1.5m temperature - maximum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 201 ; + } +#1.5m temperature - minimum in the last 24 hours +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 202 ; + } +#Soil temperature layer 4 +'K' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 236 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 175 ; + parameterNumber = 255 ; + } +#Total soil wetness +'m' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 149 ; + } +#Surface net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 176 ; + } +#Surface net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 177 ; + } +#Top net solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 178 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 180 ; + parameterNumber = 179 ; + } +#Snow depth +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 141 ; + } +#Field capacity +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 170 ; + } +#Wilting point +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 171 ; + } +#Roughness length +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 173 ; + } +#Total soil moisture +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 190 ; + parameterNumber = 229 ; + } +#2 metre dewpoint temperature difference +'K' = { + discipline = 192 ; + parameterCategory = 200 ; + parameterNumber = 168 ; + } +#downward shortwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 1 ; + } +#upward shortwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 2 ; + } +#downward longwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 3 ; + } +#upward longwave radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 4 ; + } +#downwd photosynthetic active radiant flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 5 ; + } +#net shortwave flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 6 ; + } +#net longwave flux +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 7 ; + } +#total net radiative flux density +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 8 ; + } +#downw shortw radiant flux density, cloudfree part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 9 ; + } +#upw shortw radiant flux density, cloudy part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 10 ; + } +#downw longw radiant flux density, cloudfree part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 11 ; + } +#upw longw radiant flux density, cloudy part +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 12 ; + } +#shortwave radiative heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 13 ; + } +#longwave radiative heating rate +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 14 ; + } +#total radiative heating rate +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 15 ; + } +#soil heat flux, surface +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 16 ; + } +#soil heat flux, bottom of layer +'J m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 17 ; + } +#fractional cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 29 ; + } +#cloud cover, grid scale +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 30 ; + } +#specific cloud water content +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 31 ; + } +#cloud water content, grid scale, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 32 ; + } +#specific cloud ice content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 33 ; + } +#cloud ice content, grid scale, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 34 ; + } +#specific rainwater content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 35 ; + } +#specific snow content, grid scale +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 36 ; + } +#specific rainwater content, gs, vert. integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 37 ; + } +#specific snow content, gs, vert. integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 38 ; + } +#total column water +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 41 ; + } +#vert. integral of divergence of tot. water content +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 42 ; + } +#cloud covers CH_CM_CL (000...888) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 50 ; + } +#cloud cover CH (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 51 ; + } +#cloud cover CM (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 52 ; + } +#cloud cover CL (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 53 ; + } +#total cloud cover (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 54 ; + } +#fog (0..8) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 55 ; + } +#fog +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 56 ; + } +#cloud cover, convective cirrus +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 60 ; + } +#specific cloud water content, convective clouds +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 61 ; + } +#cloud water content, conv clouds, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 62 ; + } +#specific cloud ice content, convective clouds +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 63 ; + } +#cloud ice content, conv clouds, vert integrated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 64 ; + } +#convective mass flux +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 65 ; + } +#Updraft velocity, convection +'m s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 66 ; + } +#entrainment parameter, convection +'m**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 67 ; + } +#cloud base, convective clouds (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 68 ; + } +#cloud top, convective clouds (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 69 ; + } +#convective layers (00...77) (BKE) +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 70 ; + } +#KO-index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 71 ; + } +#convection base index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 72 ; + } +#convection top index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 73 ; + } +#convective temperature tendency +'K s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 74 ; + } +#convective tendency of specific humidity +'s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 75 ; + } +#convective tendency of total heat +'J kg**-1 s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 76 ; + } +#convective tendency of total water +'s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 77 ; + } +#convective momentum tendency (X-component) +'m s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 78 ; + } +#convective momentum tendency (Y-component) +'m s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 79 ; + } +#convective vorticity tendency +'s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 80 ; + } +#convective divergence tendency +'s**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 81 ; + } +#top of dry convection (above msl) +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 82 ; + } +#dry convection top index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 83 ; + } +#height of 0 degree Celsius isotherm above msl +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 84 ; + } +#height of snow-fall limit +'m' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 85 ; + } +#spec. content of precip. particles +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 99 ; + } +#surface precipitation rate, rain, grid scale +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 100 ; + } +#surface precipitation rate, snow, grid scale +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 101 ; + } +#surface precipitation amount, rain, grid scale +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 102 ; + } +#surface precipitation rate, rain, convective +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 111 ; + } +#surface precipitation rate, snow, convective +'kg s**-1 m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 112 ; + } +#surface precipitation amount, rain, convective +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 113 ; + } +#deviation of pressure from reference value +'Pa' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 139 ; + } +#coefficient of horizontal diffusion +'m**2 s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 150 ; + } +#Maximum wind velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 187 ; + } +#water content of interception store +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 200 ; + } +#snow temperature +'K' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 203 ; + } +#ice surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 215 ; + } +#convective available potential energy +'J kg**-1' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 241 ; + } +#Indicates a missing value +'~' = { + discipline = 192 ; + parameterCategory = 201 ; + parameterNumber = 255 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 11 ; + } +#SO2 precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 53 ; + } +#Soil clay content +'%' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 64 ; + } +#Total column Methane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 97 ; + } +#Number of positive FRP pixels per grid cell +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 166 ; + } +#Radon +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 182 ; + } +#Total column Radon +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 216 ; + } +#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 1 ; + } +#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 2 ; + } +#Sea Salt Aerosol (5 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 3 ; + } +#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 4 ; + } +#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 5 ; + } +#Dust Aerosol (0.9 - 20 um) Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 6 ; + } +#Hydrophobic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 7 ; + } +#Hydrophilic Organic Matter Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 8 ; + } +#Hydrophobic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 9 ; + } +#Hydrophilic Black Carbon Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 10 ; + } +#Sulphate Aerosol Mixing Ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 11 ; + } +#Aerosol type 12 mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 12 ; + } +#Aerosol type 1 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 16 ; + } +#Aerosol type 2 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 17 ; + } +#Aerosol type 3 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 18 ; + } +#Aerosol type 4 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 19 ; + } +#Aerosol type 5 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 20 ; + } +#Aerosol type 6 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 21 ; + } +#Aerosol type 7 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 22 ; + } +#Aerosol type 8 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 23 ; + } +#Aerosol type 9 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 24 ; + } +#Aerosol type 10 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 25 ; + } +#Aerosol type 11 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 26 ; + } +#Aerosol type 12 source/gain accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 27 ; + } +#Aerosol type 1 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 31 ; + } +#Aerosol type 2 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 32 ; + } +#Aerosol type 3 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 33 ; + } +#Aerosol type 4 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 34 ; + } +#Aerosol type 5 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 35 ; + } +#Aerosol type 6 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 36 ; + } +#Aerosol type 7 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 37 ; + } +#Aerosol type 8 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 38 ; + } +#Aerosol type 9 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 39 ; + } +#Aerosol type 10 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 40 ; + } +#Aerosol type 11 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 41 ; + } +#Aerosol type 12 sink/loss accumulated +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 42 ; + } +#Aerosol precursor mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 46 ; + } +#Aerosol small mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 47 ; + } +#Aerosol large mode mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 48 ; + } +#Aerosol precursor optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 49 ; + } +#Aerosol small mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 50 ; + } +#Aerosol large mode optical depth +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 51 ; + } +#Dust emission potential +'kg s**2 m**-5' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 52 ; + } +#Lifting threshold speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 53 ; + } +#Soil clay content +'%' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 54 ; + } +#Carbon Dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 61 ; + } +#Methane +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 63 ; + } +#Total column Carbon Dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 64 ; + } +#Total column Methane +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 65 ; + } +#Total column Nitrous oxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 66 ; + } +#Ocean flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 67 ; + } +#Natural biosphere flux of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 68 ; + } +#Anthropogenic emissions of Carbon Dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 69 ; + } +#Methane Surface Fluxes +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 70 ; + } +#Methane loss rate due to radical hydroxyl (OH) +'s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 71 ; + } +#Wildfire overall flux of burnt Carbon +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 92 ; + } +#Wildfire fraction of C4 plants +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 93 ; + } +#Wildfire vegetation map index +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 94 ; + } +#Wildfire Combustion Completeness +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 95 ; + } +#Wildfire Fuel Load: Carbon per unit area +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 96 ; + } +#Wildfire fraction of area observed +'dimensionless' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 97 ; + } +#Wildfire observed area +'m**2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 98 ; + } +#Wildfire radiative power +'W m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 99 ; + } +#Wildfire combustion rate +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 100 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; + } +#Formaldehyde +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 128 ; + } +#Nitrogen Oxides +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 129 ; + } +#Total Column Nitrogen Oxides +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 130 ; + } +#Reactive tracer 1 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 131 ; + } +#Total column GRG tracer 1 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 132 ; + } +#Reactive tracer 2 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 133 ; + } +#Total column GRG tracer 2 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 134 ; + } +#Reactive tracer 3 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 135 ; + } +#Total column GRG tracer 3 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 136 ; + } +#Reactive tracer 4 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 137 ; + } +#Total column GRG tracer 4 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 138 ; + } +#Reactive tracer 5 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 139 ; + } +#Total column GRG tracer 5 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 140 ; + } +#Reactive tracer 6 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 141 ; + } +#Total column GRG tracer 6 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 142 ; + } +#Reactive tracer 7 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 143 ; + } +#Total column GRG tracer 7 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 144 ; + } +#Reactive tracer 8 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 145 ; + } +#Total column GRG tracer 8 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 146 ; + } +#Reactive tracer 9 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 147 ; + } +#Total column GRG tracer 9 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 148 ; + } +#Reactive tracer 10 mass mixing ratio +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 149 ; + } +#Total column GRG tracer 10 +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 150 ; + } +#Surface flux Nitrogen oxides +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 151 ; + } +#Surface flux Nitrogen dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 152 ; + } +#Surface flux Sulphur dioxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 153 ; + } +#Surface flux Carbon monoxide +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 154 ; + } +#Surface flux Formaldehyde +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 155 ; + } +#Surface flux GEMS Ozone +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 156 ; + } +#Surface flux reactive tracer 1 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 157 ; + } +#Surface flux reactive tracer 2 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 158 ; + } +#Surface flux reactive tracer 3 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 159 ; + } +#Surface flux reactive tracer 4 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 160 ; + } +#Surface flux reactive tracer 5 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 161 ; + } +#Surface flux reactive tracer 6 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 162 ; + } +#Surface flux reactive tracer 7 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 163 ; + } +#Surface flux reactive tracer 8 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 164 ; + } +#Surface flux reactive tracer 9 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 165 ; + } +#Surface flux reactive tracer 10 +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 166 ; + } +#Radon +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 181 ; + } +#Sulphur Hexafluoride +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 182 ; + } +#Total column Radon +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 183 ; + } +#Total column Sulphur Hexafluoride +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 184 ; + } +#Anthropogenic Emissions of Sulphur Hexafluoride +'kg m**-2 s**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 185 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 206 ; + } +#Total Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 207 ; + } +#Sea Salt Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 208 ; + } +#Dust Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 209 ; + } +#Organic Matter Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 210 ; + } +#Black Carbon Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 211 ; + } +#Sulphate Aerosol Optical Depth at 550nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 212 ; + } +#Total Aerosol Optical Depth at 469nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 213 ; + } +#Total Aerosol Optical Depth at 670nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 214 ; + } +#Total Aerosol Optical Depth at 865nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 215 ; + } +#Total Aerosol Optical Depth at 1240nm +'~' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 216 ; + } +#Total precipitation observation count +'dimensionless' = { + discipline = 192 ; + parameterCategory = 220 ; + parameterNumber = 228 ; + } +#Friction velocity +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 3 ; + } +#Mean temperature at 2 metres +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 4 ; + } +#Mean of 10 metre wind speed +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 5 ; + } +#Mean total cloud cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 6 ; + } +#Lake depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; + } +#Lake mix-layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; + } +#Lake mix-layer depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; + } +#Lake bottom temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; + } +#Lake total layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; + } +#Lake shape factor +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; + } +#Lake ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; + } +#Lake ice depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; + } +#Minimum vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 15 ; + } +#Mean vertical gradient of refractivity inside trapping layer +'m**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 16 ; + } +#Duct base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 17 ; + } +#Trapping layer base height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 18 ; + } +#Trapping layer top height +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 19 ; + } +#Neutral wind at 10 m u-component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 131 ; + } +#Neutral wind at 10 m v-component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 132 ; + } +#Surface temperature significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 139 ; + } +#Mean sea level pressure significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 151 ; + } +#2 metre temperature significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 167 ; + } +#Total precipitation significance +'%' = { + discipline = 192 ; + parameterCategory = 234 ; + parameterNumber = 228 ; + } +#U-component stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 215 ; + } +#V-component stokes drift +'m s**-1' = { + discipline = 192 ; + parameterCategory = 140 ; + parameterNumber = 216 ; + } +#Wildfire radiative power maximum +'W' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 101 ; + } +#Wildfire radiative power maximum +'W' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 101 ; + } +#V-tendency from non-orographic wave drag +'m s**-2' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 134 ; + } +#U-tendency from non-orographic wave drag +'m s**-2' = { + localTablesVersion = 228 ; + discipline = 0 ; + parameterCategory = 254 ; + parameterNumber = 136 ; + } +#100 metre U wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 246 ; + } +#100 metre V wind component +'m s**-1' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 247 ; + } +#ASCAT first soil moisture CDF matching parameter +'m**3 m**-3' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 253 ; + } +#ASCAT second soil moisture CDF matching parameter +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 254 ; +} diff --git a/eccodes/definitions/grib3/ls.def b/eccodes/definitions/grib3/ls.def new file mode 100644 index 00000000..139597f9 --- /dev/null +++ b/eccodes/definitions/grib3/ls.def @@ -0,0 +1,2 @@ + + diff --git a/eccodes/definitions/grib3/ls_labeling.82.def b/eccodes/definitions/grib3/ls_labeling.82.def new file mode 100644 index 00000000..93e89f46 --- /dev/null +++ b/eccodes/definitions/grib3/ls_labeling.82.def @@ -0,0 +1,23 @@ +######################### +# +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +######################### + +constant g1conceptsMasterDir="grib1" : hidden; +constant g1conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; + + +alias ls.dataType = marsType; + +if (localDefinitionNumber == 83 ) { + + concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.sort (unknown,"sortConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.landtype (unknown,"landTypeConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); + +} + diff --git a/eccodes/definitions/grib3/mars_labeling.82.def b/eccodes/definitions/grib3/mars_labeling.82.def new file mode 100644 index 00000000..65661577 --- /dev/null +++ b/eccodes/definitions/grib3/mars_labeling.82.def @@ -0,0 +1,48 @@ +# author: Sebastien Villaume +# created: 14 Feb 2014 +# modified: +# +######################### + +constant conceptsMasterMarsDir="mars" : hidden; +constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; + +########################## +# # +# Base MARS keywors # +# # +########################## + +alias mars.class = marsClass; +alias mars.type = marsType; +alias mars.stream = marsStream; +alias mars.model = marsModel; +alias mars.expver = experimentVersionNumber; +alias mars.domain = globalDomain; + +######################### +# # +# local section 82 # +# # +######################### + +### nothing needed here... + +######################### +# # +# local section 83 # +# # +######################### + +if ( localDefinitionNumber == 83 ) { + + alias mars.sort = matchSort; + alias mars.timerepres = matchTimeRepres; + alias mars.landtype = matchLandType; + alias mars.aerosolbinnumber = matchAerosolBinNumber; + + concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); + alias mars.aerosolpacking = matchAerosolPacking; + +} + diff --git a/eccodes/definitions/grib3/mars_labeling.def b/eccodes/definitions/grib3/mars_labeling.def new file mode 100644 index 00000000..f542ecb7 --- /dev/null +++ b/eccodes/definitions/grib3/mars_labeling.def @@ -0,0 +1,52 @@ +# (C) Copyright 2005- 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. +# + +codetable[2] marsClass "mars/class.table" = "od" : dump,string_type,lowercase; +codetable[2] marsType "mars/type.table" = "an" : dump,string_type,no_fail,lowercase; +codetable[2] marsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; +ksec1expver[4] experimentVersionNumber = "0001" : dump; + +meta class g2_mars_labeling(0,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +meta type g2_mars_labeling(1,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +meta stream g2_mars_labeling(2,marsClass, + marsType, + marsStream, + experimentVersionNumber, + typeOfProcessedData, + productDefinitionTemplateNumber, + stepType, + derivedForecast, + typeOfGeneratingProcess); + +alias ls.dataType = marsType; + +alias mars.class = class; +alias mars.type = type; +alias mars.stream = stream; +alias mars.expver = experimentVersionNumber; + +alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions/grib3/meta.def b/eccodes/definitions/grib3/meta.def new file mode 100644 index 00000000..eb3ab581 --- /dev/null +++ b/eccodes/definitions/grib3/meta.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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 "Empty file"; + +#meta area g1area(latitudeOfFirstGridPoint,longitudeOfFirstGridPoint,latitudeOfLastGridPoint,longitudeOfLastGridPoint,angleMultiplier,angleDivisor); diff --git a/eccodes/definitions/grib3/modelName.def b/eccodes/definitions/grib3/modelName.def new file mode 100644 index 00000000..25b89c3d --- /dev/null +++ b/eccodes/definitions/grib3/modelName.def @@ -0,0 +1,43 @@ +# modelName: Contribution from Daniel Lee @ DWD + +# COSMO +# general definition +'cosmo' = { originatingCentre=250; } +'cosmo' = { subCentre=250; } + +# definitions for ARPA-SIMC +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=36; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=139; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=144; } +'cosmo-i2' = { originatingCentre=200; + generatingProcessIdentifier=148; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=31; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=32; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=34; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=38; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=42; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=46; } +'cosmo-i7' = { originatingCentre=200; + generatingProcessIdentifier=131; } +# definitions for Moscow +'cosmo_ru' = { originatingCentre=76; + generatingProcessIdentifier=135; } +'cosmo_ru-eps' = { originatingCentre=76; + generatingProcessIdentifier=235;} + +# definitions for Athens +'cosmo-greece' = { originatingCentre=96;} +# definitions for Warsaw / Poland +'cosmo-poland' = { originatingCentre=220;} +# definitions for Romania +'cosmo-romania' = { originatingCentre=242;} + diff --git a/eccodes/definitions/grib3/name.def b/eccodes/definitions/grib3/name.def new file mode 100644 index 00000000..d0fed7ac --- /dev/null +++ b/eccodes/definitions/grib3/name.def @@ -0,0 +1,3009 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea-ice cover +'Sea-ice cover' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'Snow density' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'Sea surface temperature' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'Soil type' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Specific rain water content +'Specific rain water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'Specific snow water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'Eta-coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Ozone mass mixing ratio +'Ozone mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Specific cloud liquid water content +'Specific cloud liquid water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'Specific cloud ice water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'Fraction of cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'large scale precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'Snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'Low cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'Medium cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'High cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#10 metre wind gust in the last 3 hours +'10 metre wind gust in the last 3 hours' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'Relative humidity with respect to water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'Relative humidity with respect to ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'Snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'Fraction of stratiform precipitation cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'Fraction of convective precipitation cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Height of convective cloud top +'Height of convective cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Unbalanced component of specific humidity +'Unbalanced component of specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'Unbalanced component of specific cloud liquid water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'Unbalanced component of specific cloud ice water content' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Soil moisture top 20 cm +'Soil moisture top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil moisture top 100 cm +'Soil moisture top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'Soil temperature top 20 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Soil temperature top 100 cm +'Soil temperature top 100 cm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Convective precipitation +'Convective precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'Water runoff and drainage' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mean temperature tendency due to short-wave radiation +'Mean temperature tendency due to short-wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'Mean temperature tendency due to long-wave radiation' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'Mean temperature tendency due to short-wave radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'Mean temperature tendency due to long-wave radiation, clear sky' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'Mean temperature tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'Mean specific humidity tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'Mean eastward wind tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'Mean northward wind tendency due to parametrisations' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'Mean updraught mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'Mean downdraught mass flux' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'Mean updraught detrainment rate' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'Mean downdraught detrainment rate' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'Mean total precipitation flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'Mean turbulent diffusion coefficient for heat' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Cross sectional area of flow in channel +'Cross sectional area of flow in channel' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'Side flow into river channel' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'Discharge from rivers or streams' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'River storage of water' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'Floodplain storage of water' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'Water fraction' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'Days since last observation' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'Frost index' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'Depth of water on soil surface' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'Upstream accumulated precipitation' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'Upstream accumulated snow melt' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Snow depth at elevation bands +'Snow depth at elevation bands' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'Groundwater upper storage' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'Groundwater lower storage' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Surface air relative humidity +'Surface air relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Apparent temperature +'Apparent temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'Haines Index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'Cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'Evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'Evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'10 metre wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Direct short wave radiation flux +'Direct short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'Diffuse short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'Time-integrated surface direct short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil temperature +'Soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'Downward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'Upward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'Downward long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'Soil heat flux' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'Percolation rate' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'Soil depth' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'Accumulated surface downward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'Accumulated surface upward short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'Accumulated surface downward long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Percolation +'Percolation' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'Cloudy brightness temperature' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'Clear-sky brightness temperature' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'Scaled radiance' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Scaled albedo' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Scaled brightness temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Scaled precipitable water' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Scaled lifted index' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Scaled cloud top pressure' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Scaled skin temperature' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Cloud mask' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Pixel scene type' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Fire detection indicator' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Cloudy radiance (with respect to wave number) +'Cloudy radiance (with respect to wave number)' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'Clear-sky radiance (with respect to wave number)' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'Wind speed' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'Aerosol optical thickness at 0.635 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'Aerosol optical thickness at 0.810 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'Aerosol optical thickness at 1.640 um' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'Angstrom coefficient' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Virtual temperature +'Virtual temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'Virtual potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'Pseudo-adiabatic potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'Wind direction' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Significant height of combined wind waves and swell +'Significant height of combined wind waves and swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'Mean wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Mean wave period +'Mean wave period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Surface runoff +'Surface runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Total precipitation of at least 10 mm +'Total precipitation of at least 10 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 20 mm +'Total precipitation of at least 20 mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Stream function +'Stream function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'Velocity potential' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'Potential temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Pressure +'Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'Convective available potential energy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Potential vorticity +'Potential vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'Maximum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'Minimum temperature at 2 metres in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'Geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'Temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'U component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'V component of wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'Specific humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'Surface pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'Vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'Total column water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'Vorticity (relative)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'Boundary layer dissipation' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'Surface sensible heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'Surface latent heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'Mean sea level pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'Divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'Geopotential Height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'Relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'10 metre U wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'10 metre V wind component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'2 metre temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'Land-sea mask' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'Surface roughness' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'Surface net solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'Surface net thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'Top net thermal radiation' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'Sunshine duration' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'Brightness temperature' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'10 metre wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Skin temperature +'Skin temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'Latent heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'Sensible heat net flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'Heat index' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'Wind chill factor' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'Minimum dew point depression' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'Snow phase change heat flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'Vapor pressure' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'Large scale precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'Snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'Convective snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'Large scale snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'Snow age' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'Absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'Precipitation type' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'Integrated liquid water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'Condensate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'Cloud mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'Ice water mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'Rain mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'Snow mixing ratio' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'Horizontal moisture convergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'Maximum relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'Maximum absolute humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'Total snowfall' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'Precipitable water category' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'Hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'Graupel (snow pellets)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'Categorical rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'Categorical freezing rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'Categorical ice pellets' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'Categorical snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'Convective precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'Horizontal moisture divergence' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'Percent frozen precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'Potential evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'Potential evaporation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'Snow cover' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'Rain fraction of total cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'Rime factor' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'Total column integrated rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'Total column integrated snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'Large scale water precipitation (non-convective)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'Convective water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'Total water precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'Total snow precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'Total column water (Vertically integrated total water (vapour + cloud water/ice))' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'Total precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'Total snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'Large scale precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'Convective snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'Large scale snowfall rate water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'Total snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'Convective snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'Large scale snowfall rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth +'Water equivalent of accumulated snow depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'Total column integrated water vapour' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'Rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'Snow precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'Freezing rain precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'Ice pellets precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'Momentum flux, u component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'Momentum flux, v component' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'Maximum wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'Wind speed (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'u-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'v-component of wind (gust)' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'Vertical speed shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'Horizontal momentum flux' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'U-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'V-component storm motion' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Drag coefficient' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'Frictional velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'Pressure reduced to MSL' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'Geometric height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'Altimeter setting' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'Thickness' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'Pressure altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'Density altitude' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5-wave geopotential height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'Zonal flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'Meridional flux of gravity wave stress' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'Planetary boundary layer height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5-wave geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'Standard deviation of sub-grid scale orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'Net short-wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'Downward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'Upward short-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'Net short wave radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'Photosynthetically active radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'Net short-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'Downward UV radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'UV index (under clear sky)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'UV index ' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'Net long wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'Net long wave radiation flux (top of atmosphere)' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'Downward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'Upward long-wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'Net long wave radiation flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'Net long-wave radiation flux, clear sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'Cloud Ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'Cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'Cloud amount' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'Cloud type' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'Thunderstorm maximum tops' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'Thunderstorm coverage' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'Cloud base' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'Cloud top' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'Ceiling' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'Non-convective cloud cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'Cloud work function' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Convective cloud efficiency' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'Total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'Total column-integrated cloud water' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'Total column-integrated cloud ice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'Total column-integrated condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Ice fraction of total condensate' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'Cloud ice mixing ratio' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Sunshine' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'Horizontal extent of cumulonimbus (CB)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'K index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'KO index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'Total totals index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Sweat index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'Storm relative helicity' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Energy helicity index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'Surface lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'Best (4-layer) lifted index' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'Aerosol type' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'Total ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'Total column integrated ozone' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'Base spectrum width' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'Base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'Base radial velocity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'Vertically-integrated liquid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'Layer-maximum base reflectivity' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'Precipitation' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'Air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'Air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'Air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'Ground deposition of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'Ground deposition of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'Ground deposition of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'Time-integrated air concentration of caesium pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'Time-integrated air concentration of iodine pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'Time-integrated air concentration of radioactive pollutant' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'Volcanic ash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'Icing top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'Icing base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'Turbulence top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'Turbulence base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'Turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'Turbulent kinetic energy' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'Planetary boundary layer regime' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'Contrail intensity' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'Contrail engine type' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'Contrail top' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'Contrail base' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'Maximum snow albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'Snow free albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'Icing' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'In-cloud turbulence' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'Clear air turbulence (CAT)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'Supercooled large droplet probability (see Note 4)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'Arbitrary text string' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'Remotely sensed snow cover' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'Elevation of snow covered terrain' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'Snow water equivalent percent of normal' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'Baseflow-groundwater runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'Storm surface runoff' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'Probability of 0.01 inch of precipitation (POP)' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'Land cover (1=land, 0=sea)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'Vegetation' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'Water runoff' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'Evapotranspiration' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'Model terrain height' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'Land use' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Volumetric soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'Ground heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'Moisture availability' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'Exchange coefficient' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'Plant canopy surface water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'Blackadar mixing length scale' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'Canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'Minimal stomatal resistance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Solar parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Temperature parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'Soil moisture parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'Humidity parameter in canopy conductance' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'Column-integrated soil water' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'Heat flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'Volumetric soil moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'Volumetric wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'Upper layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'Upper layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'Lower layer soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'Bottom layer soil temperature' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'Number of soil layers in root zone' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Liquid volumetric soil moisture (non-frozen)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'Volumetric transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'Transpiration stress-onset (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'Volumetric direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'Direct evaporation cease (soil moisture)' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'Soil porosity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'Volumetric saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'Saturation of soil moisture' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'Estimated precipitation' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'Instantaneous rain rate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'Cloud top height' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Cloud top height quality indicator' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'Estimated u component of wind ' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'Estimated v component of wind' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'Number of pixels used' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Solar zenith angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Relative azimuth angle' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'Reflectance in 0.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'Reflectance in 0.8 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'Reflectance in 1.6 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'Reflectance in 3.9 micron channel' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'Atmospheric divergence' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'Direction of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'Primary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'Primary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'Secondary wave mean period' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'Current direction' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'Current speed' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'Geometric vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'Ice temperature' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'Deviation of sea level from mean' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'Seconds prior to initial reference time (defined in Section 1)' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'Albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pressure tendency' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'ICAO Standard Atmosphere reference height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'Geometrical height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'Standard deviation of height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'Maximum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'Minimum temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'Dew point temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'Lapse rate' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'Visibility' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'Radar spectra (1)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'Radar spectra (2)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'Radar spectra (3)' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'Parcel lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'Temperature anomaly' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pressure anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'Geopotential height anomaly' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'Wave spectra (1)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'Wave spectra (2)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'Wave spectra (3)' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'Montgomery stream Function' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'Sigma coordinate vertical velocity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'Absolute vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'Absolute divergence' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'Vertical u-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'Vertical v-component shear' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'U-component of current ' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'V-component of current ' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'Precipitable water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'Saturation deficit' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'Precipitation rate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'Thunderstorm probability' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'Convective precipitation (water)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'Mixed layer depth' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'Transient thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'Main thermocline depth' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'Main thermocline anomaly' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'Best lifted index (to 500 hPa)' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'Soil moisture content' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'Salinity' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'Density' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'Ice thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Direction of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'Speed of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'U-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'V-component of ice drift' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'Ice growth rate' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'Ice divergence' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'Snow melt' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'Significant height of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'Mean period of wind waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Direction of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'Significant height of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'Mean period of swell waves' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'Secondary wave direction' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'Net short-wave radiation flux (surface)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'Global radiation flux' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'Radiance (with respect to wave number)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'Radiance (with respect to wave length)' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'Wind mixing energy' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre Wind gust of at least 15 m/s +'10 metre Wind gust of at least 15 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 15 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#10 metre Wind gust of at least 20 m/s +'10 metre Wind gust of at least 20 m/s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 20 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + } +#Convective inhibition +'Convective inhibition' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'Orography' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'Snow depth water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow Fall water equivalent +'Snow Fall water equivalent' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'Total Cloud Cover' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'Field capacity' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'Wilting point' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Total Precipitation +'Total Precipitation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib3/paramId.def b/eccodes/definitions/grib3/paramId.def new file mode 100644 index 00000000..b9e3a7fa --- /dev/null +++ b/eccodes/definitions/grib3/paramId.def @@ -0,0 +1,3009 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea-ice cover +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'33' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'34' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'43' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'49' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Specific rain water content +'75' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'76' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'77' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Surface solar radiation downwards +'169' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface thermal radiation downwards +'175' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'180' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'181' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 3 ; + } +#Ozone mass mixing ratio +'203' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Specific cloud liquid water content +'246' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'247' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'248' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'3062' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'3066' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'3073' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'3074' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'3075' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#10 metre wind gust in the last 3 hours +'228028' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Relative humidity with respect to water +'228030' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'228031' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'228032' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'228033' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'228034' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Height of convective cloud top +'228046' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Unbalanced component of specific humidity +'228054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'228055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'228056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Soil moisture top 20 cm +'228086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil moisture top 100 cm +'228087' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil temperature top 20 cm +'228095' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil temperature top 100 cm +'228096' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Convective precipitation +'228143' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'228205' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mean temperature tendency due to short-wave radiation +'235001' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'235002' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'235003' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'235004' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'235005' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'235006' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'235007' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'235008' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'235009' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'235010' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'235011' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'235012' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'235013' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'235014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Cross sectional area of flow in channel +'240011' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'240012' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'240013' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'240014' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'240015' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'240016' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'240017' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'240018' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'240020' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'240021' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'240022' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Snow depth at elevation bands +'240026' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'240028' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'240029' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Surface air relative humidity +'260242' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'260255' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'260256' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'260257' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'260258' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'260259' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#10 metre wind direction +'260260' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'260262' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'260263' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'260264' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Soil temperature +'260360' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'260361' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'260362' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'260363' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'260364' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'260365' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'260367' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'260423' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'260427' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'260428' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'260430' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfFirstFixedSurface = 177 ; + typeOfStatisticalProcessing = 1 ; + } +#Cloudy brightness temperature +'260510' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'260511' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'260530' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'260531' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'260532' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'260533' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'260534' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'260535' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'260536' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'260537' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'260538' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'260539' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Cloudy radiance (with respect to wave number) +'260550' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'260551' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'260552' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'260553' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'260554' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'260555' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'260556' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Virtual temperature +'300012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'3012' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'3014' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'3031' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Significant height of combined wind waves and swell +'140229' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'140230' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Mean wave period +'140232' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Surface runoff +'174008' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Total precipitation of at least 10 mm +'131062' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Total precipitation of at least 20 mm +'131063' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + probabilityType = 3 ; + } +#Stream function +'1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'3' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind speed +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Pressure +'54' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'59' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'60' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'121' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'122' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'129' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'130' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'131' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'132' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'133' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'134' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'135' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'136' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'138' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'145' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'146' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'147' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'151' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'155' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'156' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'157' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'165' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'166' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'167' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'172' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'173' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'176' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'177' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'179' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'189' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'194' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'207' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Skin temperature +'235' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'260002' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'260003' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'260004' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'260005' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'260006' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'260007' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'260008' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'260009' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'260010' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'260011' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'260012' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'260013' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'260014' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'260015' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'260016' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'260017' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'260018' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'260019' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'260020' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'260021' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'260022' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'260023' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'260024' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'260025' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'260026' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'260027' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'260028' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'260029' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'260030' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'260031' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'260032' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'260033' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'260034' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'260035' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'260036' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'260037' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'260038' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'260039' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'260040' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'260041' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'260042' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'260043' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'260044' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'260045' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'260046' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'260047' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'260048' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'260049' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'260050' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'260051' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'260052' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'260053' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'260054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'260055' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth +'260056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'260057' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'260058' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'260059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'260060' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'260061' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'260062' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'260063' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'260064' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'260065' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'260066' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'260067' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'260068' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'260069' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'260070' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'260071' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'260072' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'260073' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'260074' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'260075' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'260076' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'260077' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'260078' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'260079' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'260080' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'260081' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'260082' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'260083' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'260084' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'260085' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'260086' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'260087' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'260088' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'260089' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'260090' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'260091' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'260092' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'260093' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'260094' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'260095' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'260096' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'260097' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'260098' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'260099' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'260100' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'260101' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'260102' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'260103' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'260104' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'260105' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'260106' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'260107' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'260108' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'260109' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'260110' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'260111' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'260112' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'260113' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'260114' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'260115' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'260116' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'260117' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'260118' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'260119' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'260120' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'260121' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'260122' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'260123' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'260124' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'260125' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'260126' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'260127' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'260128' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'260129' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'260130' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'260132' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'260133' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'260134' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'260135' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'260136' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'260137' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'260138' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'260139' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'260140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'260141' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'260142' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'260143' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'260144' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'260145' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'260146' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'260147' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'260148' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'260149' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'260150' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'260151' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'260152' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'260153' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'260154' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'260155' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'260156' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'260157' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'260158' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'260159' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'260160' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'260161' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'260162' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'260163' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'260164' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'260165' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'260166' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'260167' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'260168' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'260169' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'260170' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'260171' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'260172' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'260173' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'260174' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'260175' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'260176' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'260177' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'260178' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'260179' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'260180' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'260181' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'260182' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'260183' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'260184' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'260185' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'260186' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'260187' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'260188' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'260189' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'260190' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'260191' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'260192' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'260193' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'260194' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'260195' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'260196' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'260197' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'260198' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'260199' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'260200' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'260201' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'260202' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'260203' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'260204' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'260205' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'260206' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'260207' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'260208' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'260209' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'260210' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'260211' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'260212' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'260213' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'260214' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'260215' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'260216' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'260217' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'260218' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'260219' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'260220' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'260221' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'260222' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'260223' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'260224' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'260225' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'260226' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'260227' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'260228' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'260229' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'260230' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'260231' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'260232' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'260233' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'260234' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'260235' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'260236' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'260237' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'260238' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'260239' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'260240' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'260241' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'260509' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'3003' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'3005' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'3008' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'3009' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'3015' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'3016' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'3017' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'3019' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'3020' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'3021' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'3022' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'3023' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'3024' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'3025' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'3026' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'3027' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'3028' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'3029' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'3030' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'3037' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'3038' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'3041' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'3042' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'3045' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'3046' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'3049' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'3050' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'3054' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'3056' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'3059' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'3060' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'3063' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'3067' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'3068' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'3069' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'3070' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'3077' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'3086' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'3088' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'3089' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'3092' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'3093' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'3094' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'3095' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'3096' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'3097' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'3098' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'3099' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'3102' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'3103' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'3104' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'3105' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'3106' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'3109' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'3111' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'3117' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'3119' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'3120' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'3126' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre Wind gust of at least 15 m/s +'131070' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre Wind gust of at least 20 m/s +'131071' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 2 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + } +#Convective inhibition +'228001' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'228002' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'228141' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow Fall water equivalent +'228144' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Total Cloud Cover +'228164' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Field capacity +'228170' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Wilting point +'228171' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'228228' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/grib3/parameters.def b/eccodes/definitions/grib3/parameters.def new file mode 100644 index 00000000..e7cea2eb --- /dev/null +++ b/eccodes/definitions/grib3/parameters.def @@ -0,0 +1,38 @@ +# (C) Copyright 2005- 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. +# + +transient dummyc=0: hidden; +constant conceptsMasterDir="grib3" : hidden; +constant conceptsLocalDirAll="grib3/localConcepts/[centre:s]" : hidden; +constant conceptsLocalDirECMF="grib3/localConcepts/ecmf" : hidden; + +concept paramIdECMF (defaultParameter,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy; +concept paramId (paramIdECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirAll): long_type; + +concept shortNameECMF (defaultShortName,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; +concept ls.shortName (shortNameECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; + +concept unitsECMF (defaultName,"units.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy; +concept units (unitsECMF,"units.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; + +concept nameECMF (defaultName,"name.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; +concept name (nameECMF,"name.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; + +concept cfNameECMF (defaultShortName,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; +concept cfName (cfNameECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; + +concept cfVarNameECMF (defaultShortName,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; +concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; + +# modelName: Contribution from Daniel Lee @ DWD +concept modelName (defaultName,"modelName.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump,read_only; + +template_nofail names "grib3/products_[productionStatusOfProcessedData].def"; + +meta ifsParam ifs_param(paramId,type); diff --git a/eccodes/definitions/grib3/products_0.def b/eccodes/definitions/grib3/products_0.def new file mode 100644 index 00000000..4bf54ef1 --- /dev/null +++ b/eccodes/definitions/grib3/products_0.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- 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. +# + +# Operational products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; diff --git a/eccodes/definitions/grib3/products_1.def b/eccodes/definitions/grib3/products_1.def new file mode 100644 index 00000000..9688c57e --- /dev/null +++ b/eccodes/definitions/grib3/products_1.def @@ -0,0 +1,20 @@ +# (C) Copyright 2005- 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. +# + +# Operationl test products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + + diff --git a/eccodes/definitions/grib3/products_2.def b/eccodes/definitions/grib3/products_2.def new file mode 100644 index 00000000..65a7fcd9 --- /dev/null +++ b/eccodes/definitions/grib3/products_2.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# Research products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + diff --git a/eccodes/definitions/grib3/products_3.def b/eccodes/definitions/grib3/products_3.def new file mode 100644 index 00000000..bc11b637 --- /dev/null +++ b/eccodes/definitions/grib3/products_3.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# Re-analysis products + +alias parameter=paramId; +alias mars.param = paramId; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + diff --git a/eccodes/definitions/grib3/products_4.def b/eccodes/definitions/grib3/products_4.def new file mode 100644 index 00000000..3d5e1fa0 --- /dev/null +++ b/eccodes/definitions/grib3/products_4.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# Tigge +constant marsExpver = 'prod'; +include "grib2/products_tigge.def" diff --git a/eccodes/definitions/grib3/products_5.def b/eccodes/definitions/grib3/products_5.def new file mode 100644 index 00000000..19aa93a9 --- /dev/null +++ b/eccodes/definitions/grib3/products_5.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# Tigge +constant marsExpver = 'test'; +include "grib2/products_tigge.def" diff --git a/eccodes/definitions/grib3/products_6.def b/eccodes/definitions/grib3/products_6.def new file mode 100644 index 00000000..fe5c4d3b --- /dev/null +++ b/eccodes/definitions/grib3/products_6.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# S2S +constant marsExpver = 'prod'; +include "grib2/products_s2s.def" diff --git a/eccodes/definitions/grib3/products_7.def b/eccodes/definitions/grib3/products_7.def new file mode 100644 index 00000000..c9e281db --- /dev/null +++ b/eccodes/definitions/grib3/products_7.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# S2S test +constant marsExpver = 'test'; +include "grib2/products_s2s.def" diff --git a/eccodes/definitions/grib3/products_8.def b/eccodes/definitions/grib3/products_8.def new file mode 100644 index 00000000..f06ae4c7 --- /dev/null +++ b/eccodes/definitions/grib3/products_8.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# Uncertainties in ensembles of regional re-analysis project (UERRA) +constant marsExpver = 'prod'; +include "grib2/products_uerra.def" diff --git a/eccodes/definitions/grib3/products_9.def b/eccodes/definitions/grib3/products_9.def new file mode 100644 index 00000000..cf7911e9 --- /dev/null +++ b/eccodes/definitions/grib3/products_9.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- 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. +# + +# Uncertainties in ensembles of regional re-analysis project test (UERRA) +constant marsExpver = 'test'; +include "grib2/products_uerra.def" diff --git a/eccodes/definitions/grib3/products_s2s.def b/eccodes/definitions/grib3/products_s2s.def new file mode 100644 index 00000000..7d1dd772 --- /dev/null +++ b/eccodes/definitions/grib3/products_s2s.def @@ -0,0 +1,106 @@ +# (C) Copyright 2005- 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. +# + +# S2S +constant marsClass = 's2'; +constant marsModel = 'glob'; +alias is_s2s = one; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.model = marsModel; + +# See GRIB-761. For Italy, subCentre 102 is ISAC-CNR +if (centre is "cnmc" && subCentre == 102) { + constant cnmc_isac = 'isac'; + alias mars.origin = cnmc_isac; +} else { + alias mars.origin = centre; +} + +unalias mars.domain; + +concept marsType { + + fc = { + typeOfProcessedData = 2; + } + "9" = { + typeOfProcessedData = 2; + } + + cf = { + typeOfProcessedData = 3; + } + "10" = { + typeOfProcessedData = 3; + } + + pf = { + typeOfProcessedData = 4; + } + "11" = { + typeOfProcessedData = 4; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +concept marsStream { + + oper = { + typeOfProcessedData = 0; + } + + oper = { + typeOfProcessedData = 2; + } + + enfo = { + typeOfProcessedData = 3; + } + + enfo = { + typeOfProcessedData = 4; + } + + enfo = { + typeOfProcessedData = 8; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; + +# Normally MARS step is endStep but for monthly means we want stepRange +if (stepType is "avg") { + alias mars.step = stepRange; +} + +if (isHindcast == 1) { + # S2S reforecasts + constant theHindcastMarsStream = "enfh"; + alias mars.stream = theHindcastMarsStream; + alias mars.hdate = dataDate; + alias mars.date = modelVersionDate; + alias mars.time = modelVersionTime; +} diff --git a/eccodes/definitions/grib3/products_tigge.def b/eccodes/definitions/grib3/products_tigge.def new file mode 100644 index 00000000..bc102800 --- /dev/null +++ b/eccodes/definitions/grib3/products_tigge.def @@ -0,0 +1,102 @@ +# (C) Copyright 2005- 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. +# + +# Tigge +constant marsClass = 'ti'; +constant marsModel = 'glob'; +alias is_tigge = one; + +alias tigge_short_name=shortName; +alias short_name=shortName; +alias parameter=paramId; +alias tigge_name=name; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +if(levtype is "sfc") +{ + unalias mars.levelist; +} + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.model = marsModel; +alias mars.origin = centre; + +# Tigge-LAM rules +# productionStatusOfProcessedData == 4 +if (section2Used == 1) { + constant marsLamModel = 'lam'; + alias mars.model = marsLamModel; # model redefined. It is not 'glob' + alias mars.origin = tiggeSuiteID; # origin is the suiteName for Tigge-LAM + unalias mars.domain; # No mars domain needed +} + +concept marsType { + + fc = { + typeOfProcessedData = 2; + } + "9" = { + typeOfProcessedData = 2; + } + + cf = { + typeOfProcessedData = 3; + } + "10" = { + typeOfProcessedData = 3; + } + + pf = { + typeOfProcessedData = 4; + } + "11" = { + typeOfProcessedData = 4; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +concept marsStream { + + oper = { + typeOfProcessedData = 0; + } + + oper = { + typeOfProcessedData = 2; + } + + enfo = { + typeOfProcessedData = 3; + } + + enfo = { + typeOfProcessedData = 4; + } + + enfo = { + typeOfProcessedData = 8; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; diff --git a/eccodes/definitions/grib3/products_uerra.def b/eccodes/definitions/grib3/products_uerra.def new file mode 100644 index 00000000..82289f68 --- /dev/null +++ b/eccodes/definitions/grib3/products_uerra.def @@ -0,0 +1,92 @@ +# (C) Copyright 2005- 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. +# + +# Uncertainties in ensembles of regional re-analysis project (UERRA) +constant marsClass = 'ur'; + +alias tigge_short_name=shortName; +alias short_name=shortName; +alias parameter=paramId; +alias tigge_name=name; + +alias parameter.paramId=paramId; +alias parameter.shortName=shortName; +alias parameter.units=units; +alias parameter.name=name; + +# Special UERRA rule for level type 103 'Specified height level above ground (m)' +if(typeOfFirstFixedSurface == 103) { + # only the parameters above 10m + if (level > 10) { + constant heightLevelName = 'hl'; + alias mars.levtype = heightLevelName; + # levelist was unaliased in template.4.horizontal.def so we must have it back + alias mars.levelist = level; + } +} + +if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { + alias level = bottomLevel; + alias mars.levelist = level; +} + +alias mars.expver = marsExpver; +alias mars.class = marsClass; +alias mars.param = paramId; +alias mars.origin = centre; + +# See GRIB-911 re typeOfProcessedData values in UERRA +concept marsType { + + fc = { + typeOfProcessedData = 1; + } + "9" = { + typeOfProcessedData = 1; + } + + an = { + typeOfProcessedData = 0; + } + "2" = { + typeOfProcessedData = 0; + } + + "default" = { + dummyc = 0; + } +} + +# See GRIB-205 re no_copy +# Cannot use typeOfProcessedData for stream. See GRIB-911 +concept marsStream { + + oper = { + productDefinitionTemplateNumber = 8; + } + + oper = { + productDefinitionTemplateNumber = 0; + } + + enda = { + productDefinitionTemplateNumber = 11; + } + + enda = { + productDefinitionTemplateNumber = 1; + } + + "default" = { + dummyc = 0; + } +} : no_copy; + +alias mars.stream = marsStream; +alias mars.type = marsType; diff --git a/eccodes/definitions/grib3/rules.def b/eccodes/definitions/grib3/rules.def new file mode 100644 index 00000000..de8932e5 --- /dev/null +++ b/eccodes/definitions/grib3/rules.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# Experimental stuff + +transient isAccumulation = 0 ; +transient isEPS = 0 ; + +when(isAccumulation and !isEPS) + set productDefinitionTemplateNumber = 8; + +when(isAccumulation and isEPS) + set productDefinitionTemplateNumber = 11; diff --git a/eccodes/definitions/grib3/section.00.def b/eccodes/definitions/grib3/section.00.def new file mode 100644 index 00000000..bc68175b --- /dev/null +++ b/eccodes/definitions/grib3/section.00.def @@ -0,0 +1,26 @@ +# (C) Copyright 2005- 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. +# + +# Section 0 - Indicator Section + +position offsetSection0; +constant section0Length = 16; +ascii[4] identifier = "GRIB" : read_only; +unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; + +codetable[1] tablesVersion 'grib3/tables/0.0.table' = 1 : edition_specific; +alias gribMasterTablesVersionNumber=tablesVersion; + +unsigned[1] editionNumber = 3 : edition_specific,dump; +alias ls.edition = editionNumber; + +section_length[8] totalLength; +position startOfHeaders; # See later for endOfHeadersMarker + +meta section0Pointer section_pointer(offsetSection0,section0Length,0); diff --git a/eccodes/definitions/grib3/section.01.def b/eccodes/definitions/grib3/section.01.def new file mode 100644 index 00000000..5bde245b --- /dev/null +++ b/eccodes/definitions/grib3/section.01.def @@ -0,0 +1,103 @@ +# (C) Copyright 2005- 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. +# + +# Section 1 - Originator Section + +position offsetSection1; +section_length[4] section1Length ; +meta section1Pointer section_pointer(offsetSection1,section1Length,1); + +unsigned[1] numberOfSection = 1 :read_only; + +codetable[2] centre 'common/c-11.table' : dump,string_type; +alias identificationOfOriginatingGeneratingCentre=centre; +meta centreDescription codetable_title(centre); + +alias parameter.centre=centre; +alias ls.centre=centre; +alias originatingCentre=centre; + +unsigned[2] subCentre : dump; + +_if (subCentre==98 ) { + alias centreForLocal=subCentre; +} else { + alias centreForLocal=centre; +} + +#codetable[1] tablesVersion 'grib3/tables/1.0.table' = 1 : edition_specific; +#alias gribMasterTablesVersionNumber=tablesVersion; + +codetable[1] localTablesVersion 'grib3/tables/[tablesVersion]/1.0.table' ; +alias versionNumberOfGribLocalTables=localTablesVersion; +transient localDir=""; +if (localTablesVersion != 0) { + transient localDir="grib3/tables/local/[centre]/[localTablesVersion]"; +} + +transient masterDir="grib3/tables/[tablesVersion]"; +when (tablesVersion!=255) { + set masterDir="grib3/tables/[tablesVersion]"; +} else { + set masterDir="grib3/tables/1"; +} + +codetable[1] identificationOfProject 'grib3/tables/[tablesVersion]/1.1.table' = 255 : dump; + + +# Production status of processed data in this GRIB message +codetable[1] productionStatusOfProcessedData ('1.2.table',masterDir,localDir) : dump; +concept is_uerra(zero) { + '1' = {productionStatusOfProcessedData=9;} + '1' = {productionStatusOfProcessedData=8;} + '0' = {dummy=1;} +} + +unsigned[2] originatorLocalTemplateNumber = missing() : dump,edition_specific,can_be_missing; +unsigned[2] lengthOfOriginatorLocalTemplate = 0: dump,edition_specific; +template_nofail originatorLocalTemplate "grib3/template.1.originator.[originatorLocalTemplateNumber:i].def"; + + +unsigned[2] projectLocalTemplateNumber = missing() : dump,edition_specific,can_be_missing; +unsigned[2] lengthOfProjectLocalTemplate = 0: dump,edition_specific; +template_nofail projectLocalTemplate "grib3/template.1.project.[projectLocalTemplateNumber:i].def"; + +# Type of processed data in this GRIB message +#codetable[1] typeOfProcessedData ('1.4.table',masterDir,localDir) = 255 : dump,string_type,no_fail; +#alias ls.dataType=typeOfProcessedData; + +meta md5Section1 md5(offsetSection1,section1Length); + +#meta selectStepTemplateInterval select_step_template(productDefinitionTemplateNumber,0); # 0 -> not instant +#meta selectStepTemplateInstant select_step_template(productDefinitionTemplateNumber,1); # 1 -> instant + +#transient stepTypeInternal="instant" : hidden,no_copy; + +#concept stepType { +# "instant" = {selectStepTemplateInstant=1; stepTypeInternal="instant";} +# "avg" = {selectStepTemplateInterval=1; stepTypeInternal="avg";} +# "avgd" = {selectStepTemplateInterval=1; stepTypeInternal="avgd";} +# "accum" = {selectStepTemplateInterval=1; stepTypeInternal="accum";} +# "max" = {selectStepTemplateInterval=1; stepTypeInternal="max";} +# "min" = {selectStepTemplateInterval=1; stepTypeInternal="min";} +# "diff" = {selectStepTemplateInterval=1; stepTypeInternal="diff";} +# "rms" = {selectStepTemplateInterval=1; stepTypeInternal="rms";} +# "sd" = {selectStepTemplateInterval=1; stepTypeInternal="sd";} +# "cov" = {selectStepTemplateInterval=1; stepTypeInternal="cov";} +# "ratio" = {selectStepTemplateInterval=1; stepTypeInternal="ratio";} +#} + +#transient setCalendarId = 0 ; +#transient deleteCalendarId = 0 ; +#alias calendarIdPresent = zero; +#if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { +# alias calendarIdPresent = present; +# codetable[2] calendarIdentificationTemplateNumber ('1.5.table',masterDir,localDir) : dump,string_type,no_fail; +# template calendarIdentification "grib3/template.1.[calendarIdentificationTemplateNumber:i].def"; +#} diff --git a/eccodes/definitions/grib3/section.02.def b/eccodes/definitions/grib3/section.02.def new file mode 100644 index 00000000..78c33893 --- /dev/null +++ b/eccodes/definitions/grib3/section.02.def @@ -0,0 +1,65 @@ +# (C) Copyright 2005- 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. +# + +# Section 2 - Repetitions and Index Section + +position offsetSection2; +section_length[4] section2Length ; +meta section2Pointer section_pointer(offsetSection2,section2Length,2); +unsigned[1] numberOfSection = 2 :read_only; + +# Note 1: A message with only one field shall have the total number of repetitions and +# each of the number of distinct sections set to 1 +unsigned[2] totalNumberOfRepetitions = 1 : dump; + +# Note 2: Two repeated sections shall never be identical. +# If two sections are identical because they have the same content, one of the two shall be coded +# with only 7 bytes (empty section with reference) and the SUI shall be coded with the same value +# of the identical section to which this section refers. Each section will therefore have content +# in it or refer to another section of the same section number. In the latter case, it will be made +# only of 7 bytes comprising section length (4 bytes), number of section (1 byte) and +# Section Unique Identifier - SUI (2 bytes) +unsigned[2] numberOfDistinctSection3s = 1: dump; +unsigned[2] numberOfDistinctSection4s = 1: dump; +unsigned[2] numberOfDistinctSection5s = 1: dump; +unsigned[2] numberOfDistinctSection6s = 1: dump; +unsigned[2] numberOfDistinctSection7s = 1: dump; +unsigned[2] numberOfDistinctSection8s = 1: dump; +unsigned[2] numberOfDistinctSection9s = 1: dump; + +# Note 3: The inclusion of an Index template is optional. If index template is not present, +# the index template number shall be set to missing and the length of index template shall be set to 0 +unsigned[2] indexTemplateNumber = missing() : dump,can_be_missing; +unsigned[4] lengthOfIndexTemplate = 0: dump,edition_specific; +template_nofail indexTemplate "grib3/template.2.[indexTemplateNumber:i].def"; + +#if ( addEmptySection2 == 0 ) { +# if ( grib2LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { +# alias section2Used=one; +# +# if(productionStatusOfProcessedData == 4 || productionStatusOfProcessedData == 5) { +# # This is TIGGE-LAM because of the productionStatusOfProcessedData and the non-empty section 2 +# codetable[2] tiggeLocalVersion 'grib3/tiggeLocalVersion.table' = 1 : dump; +# template tiggeSection "grib3/local.tigge.[tiggeLocalVersion:l].def"; +# } +# +# codetable[2] grib2LocalSectionNumber 'grib3/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; +# +# if (grib2LocalSectionNumber!=0) { +# template_nofail local "grib3/local.[centreForLocal:l].def"; +# } else { +# constant deleteLocalDefinition=1; +# } +# position offsetAfterCentreLocalSection; +# } +#} + +#section_padding section2Padding : read_only; + +meta md5Section2 md5(offsetSection2,section2Length); diff --git a/eccodes/definitions/grib3/section.03.def b/eccodes/definitions/grib3/section.03.def new file mode 100644 index 00000000..16ddc6bc --- /dev/null +++ b/eccodes/definitions/grib3/section.03.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- 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. +# + +# Section 3 - Time Domain Section + +position offsetSection3; +section_length[4] section3Length ; +meta section3Pointer section_pointer(offsetSection3,section3Length,3); +unsigned[1] numberOfSection = 3 :read_only; + +unsigned[2] section3UniqueIdentifier; # SUI + +codetable[1] significanceOfReferenceDateAndTime ('3.0.table',masterDir,localDir) = 1 : dump; + +# The type of calendar used applies to the entire section including the Time Domain Template +codetable[1] typeOfCalendar ('3.1.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; + +# Year, month, day etc form the Reference date and time +# Note: year is SIGNED integer (according to Reg. 92.1.5) to represent large negative dates (BC). +# This was a requirement for the climate. +signed[4] year ; +unsigned[1] month ; +unsigned[1] day ; +unsigned[1] hour ; +unsigned[1] minute ; +unsigned[1] second ; + +meta dataDate g2date(year,month,day) : dump; +alias mars.date = dataDate; +alias ls.date = dataDate; +meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; +meta dataTime time(hour,minute,second) : dump; +alias mars.time = dataTime; + +codetable[2] timeDomainTemplateNumber ('3.2.table',masterDir,localDir) =0 : dump,edition_specific; +template timeDomainTemplate "grib3/template.3.[timeDomainTemplateNumber:l].def"; + +meta md5Section3 md5(offsetSection3,section3Length); +alias md5TimeDomainSection = md5Section3; diff --git a/eccodes/definitions/grib3/section.04.def b/eccodes/definitions/grib3/section.04.def new file mode 100644 index 00000000..fe8d0149 --- /dev/null +++ b/eccodes/definitions/grib3/section.04.def @@ -0,0 +1,33 @@ +# (C) Copyright 2005- 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. +# + +# Section 4 - Horizontal Domain Section + +position offsetSection4; +section_length[4] section4Length ; +meta section4Pointer section_pointer(offsetSection4,section4Length,4); +unsigned[1] numberOfSection = 4:read_only; + +unsigned[2] section4UniqueIdentifier; # SUI + +unsigned[4] numberOfPointsInDomain : dump; +alias numberOfPoints=numberOfPointsInDomain; +alias numberOfDataPoints=numberOfPointsInDomain; + +codetable[2] horizontalDomainTemplateNumber ('4.0.table',masterDir,localDir) =0 : dump,edition_specific; +template horizontalDomainTemplate "grib3/template.4.[horizontalDomainTemplateNumber:i].def"; + + +########################### +#if (defined(marsStream) && defined(marsType)) { +# template_nofail marsKeywords1 "mars/grib.[marsStream:s].[marsType:s].def"; +#} +#template parameters "grib3/parameters.def"; + +meta md5Section4 md5(offsetSection4,section4Length); diff --git a/eccodes/definitions/grib3/section.05.def b/eccodes/definitions/grib3/section.05.def new file mode 100644 index 00000000..1cd85ec8 --- /dev/null +++ b/eccodes/definitions/grib3/section.05.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# Section 5 - Vertical Domain Section + +position offsetSection5; +section_length[4] section5Length; +meta section5Pointer section_pointer(offsetSection5,section5Length,5); +unsigned[1] numberOfSection = 5: read_only; + +unsigned[2] section5UniqueIdentifier; # SUI + +codetable[2] verticalDomainTemplateNumber ('5.0.table',masterDir,localDir) =0 : dump,edition_specific; +template verticalDomainTemplate "grib3/template.5.[verticalDomainTemplateNumber:i].def"; + +meta md5Section5 md5(offsetSection5, section5Length); diff --git a/eccodes/definitions/grib3/section.06.def b/eccodes/definitions/grib3/section.06.def new file mode 100644 index 00000000..59db019e --- /dev/null +++ b/eccodes/definitions/grib3/section.06.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# Section 6 - Generating Process Section + +position offsetSection6; +section_length[4] section6Length; +meta section6Pointer section_pointer(offsetSection6,section6Length,6); +unsigned[1] numberOfSection = 6: read_only; + +unsigned[2] section6UniqueIdentifier; # SUI + +codetable[2] generatingProcessTemplateNumber ('6.0.table',masterDir,localDir) =0 : dump,edition_specific; +template generatingProcessTemplate "grib3/template.6.[generatingProcessTemplateNumber:i].def"; + +meta md5Section6 md5(offsetSection6, section6Length); diff --git a/eccodes/definitions/grib3/section.07.def b/eccodes/definitions/grib3/section.07.def new file mode 100644 index 00000000..5ac66dba --- /dev/null +++ b/eccodes/definitions/grib3/section.07.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# Section 7 - Observable Property Section + +position offsetSection7; +section_length[4] section7Length; +meta section7Pointer section_pointer(offsetSection7,section7Length,7); +unsigned[1] numberOfSection = 7: read_only; + +unsigned[2] section7UniqueIdentifier; # SUI + +codetable[2] observablePropertyTemplateNumber ('7.0.table',masterDir,localDir) =0 : dump,edition_specific; +template observablePropertyTemplate "grib3/template.7.[observablePropertyTemplateNumber:i].def"; + +meta md5Section7 md5(offsetSection7, section7Length); diff --git a/eccodes/definitions/grib3/section.08.def b/eccodes/definitions/grib3/section.08.def new file mode 100644 index 00000000..90838fa7 --- /dev/null +++ b/eccodes/definitions/grib3/section.08.def @@ -0,0 +1,27 @@ +# (C) Copyright 2005- 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. +# + +# Section 8 - Data Representation Section + +position offsetSection8; +section_length[4] section8Length; +meta section8Pointer section_pointer(offsetSection8,section8Length,8); +unsigned[1] numberOfSection = 8: read_only; + +unsigned[2] section8UniqueIdentifier; # SUI + +# Number of data points where one or more values encoded in Section 10 +unsigned[4] numberOfValues : dump; +alias numberOfCodedValues=numberOfValues; +alias numberOfEffectiveValues=numberOfValues; + +codetable[2] dataRepresentationTemplateNumber ('8.0.table',masterDir,localDir) =0 : dump,edition_specific; +template dataRepresentationTemplate "grib3/template.8.[dataRepresentationTemplateNumber:i].def"; + +meta md5Section8 md5(offsetSection8, section8Length); diff --git a/eccodes/definitions/grib3/section.09.def b/eccodes/definitions/grib3/section.09.def new file mode 100644 index 00000000..8c423483 --- /dev/null +++ b/eccodes/definitions/grib3/section.09.def @@ -0,0 +1,24 @@ +# (C) Copyright 2005- 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. +# + +# Section 9 - Overlay Section + +position offsetSection9; +position offsetBSection9; + +section_length[4] section9Length; +meta section9Pointer section_pointer(offsetSection9,section9Length,9); +unsigned[1] numberOfSection = 9: read_only; + +unsigned[2] section9UniqueIdentifier; # SUI + +codetable[2] overlayTemplateNumber ('9.0.table',masterDir,localDir) =0 : dump,edition_specific; +template overlayTemplate "grib3/template.9.[overlayTemplateNumber:i].def"; + +meta md5Section9 md5(offsetSection9, section9Length); diff --git a/eccodes/definitions/grib3/section.10.def b/eccodes/definitions/grib3/section.10.def new file mode 100644 index 00000000..ff53c3e7 --- /dev/null +++ b/eccodes/definitions/grib3/section.10.def @@ -0,0 +1,35 @@ +# (C) Copyright 2005- 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. +# + +# Section 10 - Data Section + +position offsetSection10; +section_length[4] section10Length; +meta section10Pointer section_pointer(offsetSection10,section10Length,10); +unsigned[1] numberOfSection = 10: read_only; + +# Data in a format described by data template 10.X, +# where X is the Data Template number given in bytes 12-13 of Section 8 +position offsetBeforeData; +template dataValues "grib3/template.10.[dataRepresentationTemplateNumber:i].def"; + +meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values): edition_specific; +meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision): edition_specific; +alias setDecimalPrecision=changeDecimalPrecision; + +meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; + +meta getNumberOfValues size(values) : edition_specific,dump ; + +meta scaleValuesBy scale_values(values,missingValue) : edition_specific; +meta offsetValuesBy offset_values(values,missingValue) : edition_specific; + +position offsetAfterData; +meta md5Section10 md5(offsetSection10, section10Length); +alias md5DataSection = md5Section10; diff --git a/eccodes/definitions/grib3/section.11.def b/eccodes/definitions/grib3/section.11.def new file mode 100644 index 00000000..2c6bd14c --- /dev/null +++ b/eccodes/definitions/grib3/section.11.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# +# Section 11 - End Section +constant section11Length=4; +position offsetSection11; +ascii[4] '7777' = "7777" : read_only; +meta section11Pointer section_pointer(offsetSection11,section11Length,11); diff --git a/eccodes/definitions/grib3/sections.def b/eccodes/definitions/grib3/sections.def new file mode 100644 index 00000000..313b93b7 --- /dev/null +++ b/eccodes/definitions/grib3/sections.def @@ -0,0 +1,77 @@ +# (C) Copyright 2005- 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. +# + +# The section number is always 1 byte and at the 5th byte of each section (so offset=4) + +lookup[1] sectionNumber(4); +if (sectionNumber == 1 or new()){ + position sectionPosition; + template section_01 "grib3/section.01.def"; #Originator Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 2 or new()){ + position sectionPosition; + template section_02 "grib3/section.02.def"; #Repetitions and Index Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 3 or new()){ + position sectionPosition; + template section_03 "grib3/section.03.def"; #Time Domain Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 4 or new()){ + position sectionPosition; + template section_04 "grib3/section.04.def"; #Horizontal Domain Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 5 or new()){ + position sectionPosition; + template section_05 "grib3/section.05.def"; #Vertical Domain Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 6 or new()){ + position sectionPosition; + template section_06 "grib3/section.06.def"; #Generating Process Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 7 or new()){ + position sectionPosition; + template section_07 "grib3/section.07.def"; #Observable Property Section +} + +lookup[1] sectionNumber(4); + +# Used to mark end of headers. Can be accessed with grib_get_offset() +position endOfHeadersMarker; + +meta lengthOfHeaders evaluate(endOfHeadersMarker - startOfHeaders); +meta md5Headers md5(startOfHeaders,lengthOfHeaders); + +if (sectionNumber == 8 or new()){ + position sectionPosition; + template section_08 "grib3/section.08.def"; #Data Representation Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 9 or new()){ + position sectionPosition; + template section_09 "grib3/section.09.def"; #Overlay Section +} + +lookup[1] sectionNumber(4); +if (sectionNumber == 10 or new()){ + position sectionPosition; + template section_10 "grib3/section.10.def"; #Data Section +} diff --git a/eccodes/definitions/grib3/shortName.def b/eccodes/definitions/grib3/shortName.def new file mode 100644 index 00000000..9a2015a3 --- /dev/null +++ b/eccodes/definitions/grib3/shortName.def @@ -0,0 +1,3009 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea-ice cover +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'rsn' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'sst' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'slt' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'10fg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#Specific rain water content +'crwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'cswc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'etadot' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Surface solar radiation downwards +'ssrd' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'strd' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Eastward turbulent surface stress +'ewss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'nsss' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Ozone mass mixing ratio +'o3' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Specific cloud liquid water content +'clwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'ciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'cc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'lsp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Snow depth +'sde' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'lcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'mcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'hcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#10 metre wind gust in the last 3 hours +'10fg3' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'rhw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'rhi' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'asn' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'fspc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'fcpc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Height of convective cloud top +'hcct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Unbalanced component of specific humidity +'ucq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'ucclwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'ucciwc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Soil moisture top 20 cm +'sm20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil moisture top 100 cm +'sm100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'st20' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 100 cm +'st100' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + } +#Convective precipitation +'cp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Water runoff and drainage +'ro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mean temperature tendency due to short-wave radiation +'mttswr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'mttlwr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'mttswrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'mttlwrcs' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'mttpm' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'mqtpm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'mutpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'mvtpm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'mumf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'mdmf' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'mudr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'mddr' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'mtpf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'mtdch' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Cross sectional area of flow in channel +'chcross' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'chside' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'dis' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'rivsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'fldsto' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'fldfrc' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'dslr' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'frost' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'woss' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'tpups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'smups' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Snow depth at elevation bands +'sd_elev' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'gwus' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'gwls' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Surface air relative humidity +'2r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Apparent temperature +'aptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'hindex' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'ccl' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'evarate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'10wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Direct short wave radiation flux +'dirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'difswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'tidirswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil temperature +'sot' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'dswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'uswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'dlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'sohf' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'percr' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'sod' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'adswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'auswrf_cs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'adlwrf_cs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Percolation +'perc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'clbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'csbt' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'~' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Cloudy radiance (with respect to wave number) +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'~' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Virtual temperature +'vtmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'vptmp' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'papt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'wdir' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Significant height of combined wind waves and swell +'swh' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'mwd' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Mean wave period +'mwp' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Surface runoff +'sro' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Total precipitation of at least 10 mm +'tpg10' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; + scaledValueOfLowerLimit = 10 ; + } +#Total precipitation of at least 20 mm +'tpg20' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + scaledValueOfLowerLimit = 20 ; + typeOfStatisticalProcessing = 1 ; + } +#Stream function +'strf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'vp' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'pt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Pressure +'pres' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'cape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Potential vorticity +'pv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'mx2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'mn2t6' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'z' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'q' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'sp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'w' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'tcw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'vo' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'bld' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'sshf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'slhf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Mean sea level pressure +'msl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'d' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'10u' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'10v' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'lsm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'sr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'ssr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface net thermal radiation +'str' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'ttr' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'sund' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'btmp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'10si' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Skin temperature +'skt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'lhtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'shtfl' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'heatx' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'wcf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'mindpd' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'snohf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'vapp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'ncpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'srweq' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'snoc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'snol' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'snoag' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'absh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'ptype' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'iliqw' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'clwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'icmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'rwmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'snmr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'mconv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'maxrh' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'maxah' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'asnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'pwcat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'grle' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'crain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'cfrzr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'cicep' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'csnow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'cprat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'mdiv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'cpofp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'pevap' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'pevpr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'snowc' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'frain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'rime' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'tcolr' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'tcols' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'lswp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'cwp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'twatp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'tsnowp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'tcwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'tprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'tsrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'lsprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'csrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'lssrwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'tsrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'csrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'lssrate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth +'sdwe' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'tciwv' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'rprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'sprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'fprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'iprate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'uflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'vflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'maxgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'ugust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'vgust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'vwsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'mflx' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'ustm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'vstm' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'cd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'fricv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'prmsl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'dist' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'alts' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'thick' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'presalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'denalt' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'5wavh' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'u-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'v-gwd' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'hpbl' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'5wava' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'sdsgso' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'nswrt' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'dswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'uswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'nswrf' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'photar' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'nswrfcs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'dwuvr' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'uviucs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'uvi' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'nlwrs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'nlwrt' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'dlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'ulwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'nlwrf' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'nlwrcs' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'cice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'cwat' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'cdca' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'tmaxt' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'thunc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'cdcb' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'cdct' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'ceil' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'cdlyr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'cwork' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'cuefi' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'tcond' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'tcolw' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'tcoli' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'tcolc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'fice' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'cdcimr' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'suns' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'~' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'kx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'kox' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'totalx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'sx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'hlcy' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'ehlx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'4lftx' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'aerot' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'tozne' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'tcioz' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'bswid' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'bref' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'brvel' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'veril' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'lmaxbr' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'prec' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'acces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'aciod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'acradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'gdces' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'gdiod' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'gdradp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'tiaccp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'tiacip' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'tiacrp' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'volash' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'icit' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'icib' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'ici' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'turbt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'turbb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'turb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'tke' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'pblreg' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'conti' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'contet' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'contt' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'contb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'mxsalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'snfalb' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'cat' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'~' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'var190m0' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'ffldg' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'ffldro' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'rssc' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'esct' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'swepon' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'bgrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'ssrun' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'cppop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'pposp' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'pop' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'land' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'veg' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'watr' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'evapt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'mterh' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'landu' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'soilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'gflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'mstav' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'sfexc' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'cnwat' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'bmixl' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'ccond' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'rsmin' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'rcs' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'rct' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'rcsol' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'rcq' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'cisoilw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'hflux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'vsw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'vwiltm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'uplst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'uplsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'lowlsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'botlst' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'soill' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'rlyrs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'smref' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'smdry' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'poros' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'liqvsm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'voltso' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'transo' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'voldec' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'direc' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'soilp' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'vsosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'satosm' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'estp' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'irrate' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'ctoph' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'ctophqi' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'estu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'estv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'npixu' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'solza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'raza' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'rfl06' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'rfl08' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'rfl16' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'rfl39' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'atmdiv' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'wvdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'dirpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'perpw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'persw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'dirc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'spc' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'wz' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'ist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'dslm' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'tsec' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'al' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'ptend' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'icaht' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'h' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'hstdv' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'tmax' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'tmin' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'dpt' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'lapr' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'vis' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'rdsp1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'rdsp2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'rdsp3' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'pli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'ta' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'presa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'wvsp1' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'wvsp2' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'wvsp3' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'mntsf' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'sgcvv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'absv' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'absd' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'vucsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'vvcsh' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'ucurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'vcurr' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'pwat' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'satd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'prate' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'tstm' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'acpcp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'mld' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'tthdp' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'mthd' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'mtha' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'bli' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'ssw' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'s' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'den' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'icetk' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'diced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'siced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'uice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'vice' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'iceg' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'iced' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'snom' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'shww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'mpww' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'swdir' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'swell' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'swper' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'dirsw' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'nswrs' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'grad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'lwrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'swrad' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'wmixe' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre Wind gust of at least 15 m/s +'10fgg15' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + probabilityType = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfLowerLimit = 0 ; + scaledValueOfLowerLimit = 15 ; + } +#10 metre Wind gust of at least 20 m/s +'10fgg20' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + probabilityType = 3 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfLowerLimit = 20 ; + typeOfFirstFixedSurface = 103 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#Convective inhibition +'cin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'orog' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'sd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow Fall water equivalent +'sf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'tcc' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'cap' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'wilt' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Total Precipitation +'tp' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; +} diff --git a/eccodes/definitions/grib3/tables/0.0.table b/eccodes/definitions/grib3/tables/0.0.table new file mode 100644 index 00000000..40bcd993 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0.0.table @@ -0,0 +1,5 @@ +# Code Table 0.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on DAY MONTH YEAR +# 2-254 Future versions +255 255 Missing. Local tables in use. Valid local tables version number shall be coded diff --git a/eccodes/definitions/grib3/tables/0/0.0.table b/eccodes/definitions/grib3/tables/0/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/1.0.table b/eccodes/definitions/grib3/tables/0/1.0.table new file mode 100644 index 00000000..a34f44ee --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/1.0.table @@ -0,0 +1,7 @@ +# Code Table 1.0: GRIB Master Tables Version Number +0 0 Experimental +1 1 Initial operational version number +2 2 Previous operational version number +3 3 Current operational version number implemented on 2 November 2005 +# 4-254 Future operational version numbers +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions/grib3/tables/0/1.1.table b/eccodes/definitions/grib3/tables/0/1.1.table new file mode 100644 index 00000000..6c5a6036 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/1.1.table @@ -0,0 +1,5 @@ +# Code Table 1.1 GRIB Local Tables Version Number +0 0 Local tables not used +# . Only table entries and templates from the current Master table are valid. +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/1.2.table b/eccodes/definitions/grib3/tables/0/1.2.table new file mode 100644 index 00000000..eb875520 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/1.2.table @@ -0,0 +1,8 @@ +# CODE TABLE 1.2, Significance of Reference Time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +#4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/1.3.table b/eccodes/definitions/grib3/tables/0/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/1.4.table b/eccodes/definitions/grib3/tables/0/1.4.table new file mode 100644 index 00000000..ac21f5c4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.0.table b/eccodes/definitions/grib3/tables/0/3.0.table new file mode 100644 index 00000000..6030a513 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.0, Source of Grid Definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition Defined by originating centre +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions/grib3/tables/0/3.1.table b/eccodes/definitions/grib3/tables/0/3.1.table new file mode 100644 index 00000000..235fb8bd --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.1.table @@ -0,0 +1,43 @@ +# CODE TABLE 3.1, Grid Definition Template Number +0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +# 4-9 Reserved +10 10 Mercator +# 11-19 Reserved +20 20 Polar stereographic can be south or north +# 21-29 Reserved +30 30 Lambert Conformal can be secant or tangent, conical or bipolar +31 31 Albers equal-area +# 32-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-89 Reserved +90 90 Space view perspective orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +# 101-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-129 Reserved +130 130 Irregular latitude/longitude grid +# 131-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid, with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.10.table b/eccodes/definitions/grib3/tables/0/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib3/tables/0/3.11.table b/eccodes/definitions/grib3/tables/0/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.15.table b/eccodes/definitions/grib3/tables/0/3.15.table new file mode 100644 index 00000000..bb431e14 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.15.table @@ -0,0 +1,25 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature K +# 21-99 Reserved +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +# 113-159 Reserved +160 160 Depth below sea level m +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing +# Notes: +# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. +# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/eccodes/definitions/grib3/tables/0/3.2.table b/eccodes/definitions/grib3/tables/0/3.2.table new file mode 100644 index 00000000..d037ee12 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.2.table @@ -0,0 +1,11 @@ +# CODE TABLE 3.2, Shape of the Earth +0 0 Earth assumed spherical with radius = 6,367,470.0 m +1 1 Earth assumed spherical with radius specified by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) +5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6,371,229.0 m +# 7-191 Reserved +# 192- 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.20.table b/eccodes/definitions/grib3/tables/0/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.21.table b/eccodes/definitions/grib3/tables/0/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/3.3.table b/eccodes/definitions/grib3/tables/0/3.3.table new file mode 100644 index 00000000..84cbb8bc --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.3.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.3, Resolution and Component Flags +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions/grib3/tables/0/3.4.table b/eccodes/definitions/grib3/tables/0/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib3/tables/0/3.5.table b/eccodes/definitions/grib3/tables/0/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib3/tables/0/3.6.table b/eccodes/definitions/grib3/tables/0/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib3/tables/0/3.7.table b/eccodes/definitions/grib3/tables/0/3.7.table new file mode 100644 index 00000000..2746bdba --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.7.table @@ -0,0 +1,11 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing +# Note: +# +#(1) Values of N(m) for common truncations cases: +# Triangular M = J = K, N(m) = J +# Rhomboidal K = J + M, N(m) = J+m +# Trapezoidal K = J, K > M, N(m) = J diff --git a/eccodes/definitions/grib3/tables/0/3.8.table b/eccodes/definitions/grib3/tables/0/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/3.9.table b/eccodes/definitions/grib3/tables/0/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib3/tables/0/4.0.table b/eccodes/definitions/grib3/tables/0/4.0.table new file mode 100644 index 00000000..759512a0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.0.table @@ -0,0 +1,38 @@ +# CODE TABLE 4.0, Product Definition Template Number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +20 20 Radar product +30 30 Satellite product +31 31 Satellite product +311 311 Satellite product auxiliary information +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol +46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +254 254 CCITT IA5 character string +1000 1000 Cross section of analysis and forecast at a point in time +1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +65335 65535 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.1.0.table b/eccodes/definitions/grib3/tables/0/4.1.0.table new file mode 100644 index 00000000..33d1c398 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.0.table @@ -0,0 +1,30 @@ +#Discipline 0: Meteorological products +#Category Description +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.1.1.table b/eccodes/definitions/grib3/tables/0/4.1.1.table new file mode 100644 index 00000000..ebb7d9ea --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.1.table @@ -0,0 +1,9 @@ +#Discipline 1: Hydrological products +#Category Description +0 0 Hydrology basic products +1 1 Hydrology probabilities +#2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.1.10.table b/eccodes/definitions/grib3/tables/0/4.1.10.table new file mode 100644 index 00000000..45b08caa --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.10.table @@ -0,0 +1,12 @@ +#Discipline 10: Oceanographic Products +#Category Description +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface Properties +4 4 Sub-surface Properties +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.1.2.table b/eccodes/definitions/grib3/tables/0/4.1.2.table new file mode 100644 index 00000000..f7f2ea2b --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.2.table @@ -0,0 +1,11 @@ +#Discipline 2: Land Surface Products +#Category Description +0 0 Vegetation/Biomass +1 1 Agri-/aquacultural Special Products +2 2 Transportation-related Products +3 3 Soil Products +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.1.3.table b/eccodes/definitions/grib3/tables/0/4.1.3.table new file mode 100644 index 00000000..f7578e16 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.3.table @@ -0,0 +1,9 @@ +#Discipline 3: Space Products +#Category Description +0 0 Image format products +1 1 Quantitative products +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.1.table b/eccodes/definitions/grib3/tables/0/4.1.table new file mode 100644 index 00000000..cc5bb2ff --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.1, Category of parameters by product discipline +0 0 Temperature +1 1 Moisture +3 3 Mass +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.10.table b/eccodes/definitions/grib3/tables/0/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib3/tables/0/4.11.table b/eccodes/definitions/grib3/tables/0/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.12.table b/eccodes/definitions/grib3/tables/0/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.13.table b/eccodes/definitions/grib3/tables/0/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.14.table b/eccodes/definitions/grib3/tables/0/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.15.table b/eccodes/definitions/grib3/tables/0/4.15.table new file mode 100644 index 00000000..49b0b2d2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.15.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.15, Type of auxiliary information + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.151.table b/eccodes/definitions/grib3/tables/0/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.0.table b/eccodes/definitions/grib3/tables/0/4.2.0.0.table new file mode 100644 index 00000000..0386b8cd --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.0.table @@ -0,0 +1,23 @@ +# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dew point temperature (K) +7 7 Dew point depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dew point depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin Temperature (K) +#17-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.1.table b/eccodes/definitions/grib3/tables/0/4.2.0.1.table new file mode 100644 index 00000000..6f7ce78f --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.1.table @@ -0,0 +1,66 @@ +# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapor pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (day) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (code table (4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg kg-1) +22 22 Cloud mixing ratio (kg kg-1) +23 23 Ice water mixing ratio (kg kg-1) +24 24 Rain mixing ratio (kg kg-1) +25 25 Snow mixing ratio (kg kg-1) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category code table (4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg kg-1) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Percent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +51 51 Total column water (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m s-1) +58 58 Convective snowfall rate (m s-1) +59 59 Large scale snowfall rate (m s-1) +60 60 Snow depth water equivalent (kg m-2) +69 69 Specific cloud liquid water content (kg kg-1) +70 70 Specific cloud ice water content (kg kg-1) +71 71 Specific rain water content (kg kg-1) +72 72 Specific snow water content (kg kg-1) +#47-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.13.table b/eccodes/definitions/grib3/tables/0/4.2.0.13.table new file mode 100644 index 00000000..8fc3425a --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.13.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.14.table b/eccodes/definitions/grib3/tables/0/4.2.0.14.table new file mode 100644 index 00000000..309c40d4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.14.table @@ -0,0 +1,7 @@ +# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases +0 0 Total ozone (Dobson) +1 1 Ozone mixing ratio (kg kg-1) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.15.table b/eccodes/definitions/grib3/tables/0/4.2.0.15.table new file mode 100644 index 00000000..bb419178 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.15.table @@ -0,0 +1,14 @@ +# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.18.table b/eccodes/definitions/grib3/tables/0/4.2.0.18.table new file mode 100644 index 00000000..5c0fd6e5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.18.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.19.table b/eccodes/definitions/grib3/tables/0/4.2.0.19.table new file mode 100644 index 00000000..369c3f65 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.19.table @@ -0,0 +1,24 @@ +# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +# 19-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.190.table b/eccodes/definitions/grib3/tables/0/4.2.0.190.table new file mode 100644 index 00000000..b1f47bc0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.190.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string +0 0 Arbitrary text string (CCITTIA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.191.table b/eccodes/definitions/grib3/tables/0/4.2.0.191.table new file mode 100644 index 00000000..affb98f4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.191.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.2.table b/eccodes/definitions/grib3/tables/0/4.2.0.2.table new file mode 100644 index 00000000..f45206bf --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.2.table @@ -0,0 +1,35 @@ +# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum +0 0 Wind direction [from which blowing] (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity [pressure] (Pa s-1) +9 9 Vertical velocity [geometric] (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed [gust] (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.20.table b/eccodes/definitions/grib3/tables/0/4.2.0.20.table new file mode 100644 index 00000000..4d762c38 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.20.table @@ -0,0 +1,26 @@ +0 0 Mass density (concentration) kg m-3 +1 1 Column-integrated mass density (see Note1) kg m-2 +2 2 Mass mixing ratio (mass fraction in air) kg kg-1 +3 3 Atmosphere emission mass flux kg m-2 s-1 +4 4 Atmosphere net production mass flux kg m-2 s-1 +5 5 Atmosphere net production and emission mass flux kg m-2 s-1 +6 6 Surface dry deposition mass flux kg m-2 s-1 +7 7 Surface wet deposition mass flux kg m-2 s-1 +8 8 Atmosphere re-emission mass flux kg m-2 s-1 +#9-49 9-49 Reserved +50 50 Amount in atmosphere mol +51 51 Concentration in air mol m-3 +52 52 Volume mixing ratio (fraction in air) mol mol-1 +53 53 Chemical gross production rate of concentration mol m-3 s-1 +54 54 Chemical gross destruction rate of concentration mol m-3 s-1 +55 55 Surface flux mol m-2 s-1 +56 56 Changes of amount in atmosphere (see Note 1) mol s-1 +57 57 Total yearly average burden of the atmosphere mol +58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 +#59-99 59-99 Reserved +100 100 Surface area density (aerosol) m-1 +101 101 Atmosphere optical thickness m +#102-191 102-191 Reserved +#192-254 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.3.table b/eccodes/definitions/grib3/tables/0/4.2.0.3.table new file mode 100644 index 00000000..5c7e8151 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.3.table @@ -0,0 +1,25 @@ +# Product Discipline 0: Meteorological products, Parameter Category 3: Mass + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) +# 20-191 Reserved +# 192-254 Reserved for local use + 255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.4.table b/eccodes/definitions/grib3/tables/0/4.2.0.4.table new file mode 100644 index 00000000..815c184a --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.4.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.5.table b/eccodes/definitions/grib3/tables/0/4.2.0.5.table new file mode 100644 index 00000000..1b57fa30 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.5.table @@ -0,0 +1,11 @@ +# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.6.table b/eccodes/definitions/grib3/tables/0/4.2.0.6.table new file mode 100644 index 00000000..05cf72f5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.6.table @@ -0,0 +1,30 @@ +# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.7.table b/eccodes/definitions/grib3/tables/0/4.2.0.7.table new file mode 100644 index 00000000..78374fde --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.0.7.table @@ -0,0 +1,18 @@ +# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +#13-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.1.0.table b/eccodes/definitions/grib3/tables/0/4.2.1.0.table new file mode 100644 index 00000000..97efaa8c --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.1.0.table @@ -0,0 +1,16 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely sensed snow cover (Code table 4.215) +3 3 Elevation of snow covered terrain (Code table 4.216) +4 4 Snow water equivalent percent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing +# Notes: +# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. +# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). +# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. + diff --git a/eccodes/definitions/grib3/tables/0/4.2.1.1.table b/eccodes/definitions/grib3/tables/0/4.2.1.1.table new file mode 100644 index 00000000..b7342ef2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.1.1.table @@ -0,0 +1,8 @@ +# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities +0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.0.table b/eccodes/definitions/grib3/tables/0/4.2.10.0.table new file mode 100644 index 00000000..479e26d5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.10.0.table @@ -0,0 +1,20 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.1.table b/eccodes/definitions/grib3/tables/0/4.2.10.1.table new file mode 100644 index 00000000..df18f31d --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.10.1.table @@ -0,0 +1,8 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.2.table b/eccodes/definitions/grib3/tables/0/4.2.10.2.table new file mode 100644 index 00000000..cb73da46 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.10.2.table @@ -0,0 +1,12 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +# 8-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.3.table b/eccodes/definitions/grib3/tables/0/4.2.10.3.table new file mode 100644 index 00000000..a14ae22e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.10.3.table @@ -0,0 +1,6 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.4.table b/eccodes/definitions/grib3/tables/0/4.2.10.4.table new file mode 100644 index 00000000..a24c3c8c --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.10.4.table @@ -0,0 +1,9 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.2.0.table b/eccodes/definitions/grib3/tables/0/4.2.2.0.table new file mode 100644 index 00000000..fdc8ce0e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.2.0.table @@ -0,0 +1,29 @@ +# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +# 23-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.2.3.table b/eccodes/definitions/grib3/tables/0/4.2.2.3.table new file mode 100644 index 00000000..d6376fec --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.2.3.table @@ -0,0 +1,16 @@ +# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +# 11-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.3.0.table b/eccodes/definitions/grib3/tables/0/4.2.3.0.table new file mode 100644 index 00000000..94456638 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.3.0.table @@ -0,0 +1,14 @@ +# Product discipline 3: Space products, Parameter Category 0: Image format products +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.3.1.table b/eccodes/definitions/grib3/tables/0/4.2.3.1.table new file mode 100644 index 00000000..60d6e842 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.3.1.table @@ -0,0 +1,11 @@ +# Product Discipline 3: Space products, Parameter Category 1: Quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +# 6-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/0/4.2.table b/eccodes/definitions/grib3/tables/0/4.2.table new file mode 100644 index 00000000..ff955364 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.2.table @@ -0,0 +1,5 @@ +# CODE TABLE 4.2, Parameter number by product discipline and parameter category +# 4 4 unknown +# 151 151 unknown +# 192 192 unknown +# 255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.201.table b/eccodes/definitions/grib3/tables/0/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.202.table b/eccodes/definitions/grib3/tables/0/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.203.table b/eccodes/definitions/grib3/tables/0/4.203.table new file mode 100644 index 00000000..d2ad10b0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.203.table @@ -0,0 +1,88 @@ +# CODE TABLE 4.203, Cloud type + +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.204.table b/eccodes/definitions/grib3/tables/0/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.205.table b/eccodes/definitions/grib3/tables/0/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.206.table b/eccodes/definitions/grib3/tables/0/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.207.table b/eccodes/definitions/grib3/tables/0/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.208.table b/eccodes/definitions/grib3/tables/0/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.209.table b/eccodes/definitions/grib3/tables/0/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.210.table b/eccodes/definitions/grib3/tables/0/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.211.table b/eccodes/definitions/grib3/tables/0/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.212.table b/eccodes/definitions/grib3/tables/0/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.213.table b/eccodes/definitions/grib3/tables/0/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.215.table b/eccodes/definitions/grib3/tables/0/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.216.table b/eccodes/definitions/grib3/tables/0/4.216.table new file mode 100644 index 00000000..dbe26b0e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.216.table @@ -0,0 +1,95 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain + +0 0 Elevation in increments of 100 m +1 1 Elevation in increments of 100 m +2 2 Elevation in increments of 100 m +3 3 Elevation in increments of 100 m +4 4 Elevation in increments of 100 m +5 5 Elevation in increments of 100 m +6 6 Elevation in increments of 100 m +7 7 Elevation in increments of 100 m +8 8 Elevation in increments of 100 m +9 9 Elevation in increments of 100 m +10 10 Elevation in increments of 100 m +11 11 Elevation in increments of 100 m +12 12 Elevation in increments of 100 m +13 13 Elevation in increments of 100 m +14 14 Elevation in increments of 100 m +15 15 Elevation in increments of 100 m +16 16 Elevation in increments of 100 m +17 17 Elevation in increments of 100 m +18 18 Elevation in increments of 100 m +19 19 Elevation in increments of 100 m +20 20 Elevation in increments of 100 m +21 21 Elevation in increments of 100 m +22 22 Elevation in increments of 100 m +23 23 Elevation in increments of 100 m +24 24 Elevation in increments of 100 m +25 25 Elevation in increments of 100 m +26 26 Elevation in increments of 100 m +27 27 Elevation in increments of 100 m +28 28 Elevation in increments of 100 m +29 29 Elevation in increments of 100 m +30 30 Elevation in increments of 100 m +31 31 Elevation in increments of 100 m +32 32 Elevation in increments of 100 m +33 33 Elevation in increments of 100 m +34 34 Elevation in increments of 100 m +35 35 Elevation in increments of 100 m +36 36 Elevation in increments of 100 m +37 37 Elevation in increments of 100 m +38 38 Elevation in increments of 100 m +39 39 Elevation in increments of 100 m +40 40 Elevation in increments of 100 m +41 41 Elevation in increments of 100 m +42 42 Elevation in increments of 100 m +43 43 Elevation in increments of 100 m +44 44 Elevation in increments of 100 m +45 45 Elevation in increments of 100 m +46 46 Elevation in increments of 100 m +47 47 Elevation in increments of 100 m +48 48 Elevation in increments of 100 m +49 49 Elevation in increments of 100 m +50 50 Elevation in increments of 100 m +51 51 Elevation in increments of 100 m +52 52 Elevation in increments of 100 m +53 53 Elevation in increments of 100 m +54 54 Elevation in increments of 100 m +55 55 Elevation in increments of 100 m +56 56 Elevation in increments of 100 m +57 57 Elevation in increments of 100 m +58 58 Elevation in increments of 100 m +59 59 Elevation in increments of 100 m +60 60 Elevation in increments of 100 m +61 61 Elevation in increments of 100 m +62 62 Elevation in increments of 100 m +63 63 Elevation in increments of 100 m +64 64 Elevation in increments of 100 m +65 65 Elevation in increments of 100 m +66 66 Elevation in increments of 100 m +67 67 Elevation in increments of 100 m +68 68 Elevation in increments of 100 m +69 69 Elevation in increments of 100 m +70 70 Elevation in increments of 100 m +71 71 Elevation in increments of 100 m +72 72 Elevation in increments of 100 m +73 73 Elevation in increments of 100 m +74 74 Elevation in increments of 100 m +75 75 Elevation in increments of 100 m +76 76 Elevation in increments of 100 m +77 77 Elevation in increments of 100 m +78 78 Elevation in increments of 100 m +79 79 Elevation in increments of 100 m +80 80 Elevation in increments of 100 m +81 81 Elevation in increments of 100 m +82 82 Elevation in increments of 100 m +83 83 Elevation in increments of 100 m +84 84 Elevation in increments of 100 m +85 85 Elevation in increments of 100 m +86 86 Elevation in increments of 100 m +87 87 Elevation in increments of 100 m +88 88 Elevation in increments of 100 m +89 89 Elevation in increments of 100 m +90 90 Elevation in increments of 100 m +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.217.table b/eccodes/definitions/grib3/tables/0/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.220.table b/eccodes/definitions/grib3/tables/0/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.221.table b/eccodes/definitions/grib3/tables/0/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.230.table b/eccodes/definitions/grib3/tables/0/4.230.table new file mode 100644 index 00000000..7bcbe304 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.230.table @@ -0,0 +1,117 @@ +#Code figure Code figure Meaning +0 0 Ozone +1 1 Water vapour +2 2 Methane +3 3 Carbon dioxide +4 4 Carbon monoxide +5 5 Nitrogen dioxide +6 6 Nitrous oxide +7 7 Formaldehyde +8 8 Sulphur dioxide +9 9 Ammonia +10 10 Ammonium +11 11 Nitrogen monoxide +12 12 Atomic oxygen +13 13 Nitrate radical +14 14 Hydroperoxyl radical +15 15 Dinitrogen pentoxide +16 16 Nitrous acid +17 17 Nitric acid +18 18 Peroxynitric acid +19 19 Hydrogen peroxide +20 20 Molecular hydrogen +21 21 Atomic nitrogen +22 22 Sulphate +23 23 Radon +24 24 Elemental mercury +25 25 Divalent mercury +26 26 Atomic chlorine +27 27 Chlorine monoxide +28 28 Dichlorine peroxide +29 29 Hypochlorous acid +30 30 Chlorine nitrate +31 31 Chlorine dioxide +32 32 Atomic bromine +33 33 Bromine monoxide +34 34 Bromine chloride +35 35 Hydrogen bromide +36 36 Hypobromous acid +37 37 Bromine nitrate +10000 10000 Hydroxyl radical +10001 10001 Methyl peroxy radical +10002 10002 Methyl hydroperoxide +10004 10004 Methanol +10005 10005 Formic acid +10006 10006 Hydrogen Cyanide +10007 10007 Aceto nitrile +10008 10008 Ethane +10009 10009 Ethene (= Ethylene) +10010 10010 Ethyne (= Acetylene) +10011 10011 Ethanol +10012 10012 Acetic acid +10013 10013 Peroxyacetyl nitrate +10014 10014 Propane +10015 10015 Propene +10016 10016 Butanes +10017 10017 Isoprene +10018 10018 Alpha pinene +10019 10019 Beta pinene +10020 10020 Limonene +10021 10021 Benzene +10022 10022 Toluene +10023 10023 Xylene +#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) +10500 10500 Dimethyl sulphide +#10501-20000 10501-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen +60005 60005 Total inorganic chlorine +60006 60006 Total inorganic bromine +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped Alkanes +60010 60010 Lumped Alkenes +60011 60011 Lumped Aromatic Compounds +60012 60012 Lumped Terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon +60016 60016 Lumped oxygenated hydrocarbons +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.3.table b/eccodes/definitions/grib3/tables/0/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.4.table b/eccodes/definitions/grib3/tables/0/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.5.table b/eccodes/definitions/grib3/tables/0/4.5.table new file mode 100644 index 00000000..5fe94d4d --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.5.table @@ -0,0 +1,33 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 105 Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 ml Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.6.table b/eccodes/definitions/grib3/tables/0/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.7.table b/eccodes/definitions/grib3/tables/0/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.8.table b/eccodes/definitions/grib3/tables/0/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.9.table b/eccodes/definitions/grib3/tables/0/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/4.91.table b/eccodes/definitions/grib3/tables/0/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib3/tables/0/5.0.table b/eccodes/definitions/grib3/tables/0/5.0.table new file mode 100644 index 00000000..0cf3752c --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.0.table @@ -0,0 +1,16 @@ +# CODE TABLE 5.0, Data Representation Template Number +0 0 Grid point data - simple packing +1 1 Matrix value - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - ieee packing +6 6 Grid point data - simple packing with pre-processing +40 40 JPEG2000 Packing +41 41 PNG pacling +50 50 Spectral data -simple packing +51 51 Spherical harmonics data - complex packing +61 61 Grid point data - simple packing with logarithm pre-processing +# 192-254 Reserved for local use +255 255 Missing +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling diff --git a/eccodes/definitions/grib3/tables/0/5.1.table b/eccodes/definitions/grib3/tables/0/5.1.table new file mode 100644 index 00000000..d7ca4bed --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.1.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.1, Type of original field values +0 0 Floating point +1 1 Integer +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.2.table b/eccodes/definitions/grib3/tables/0/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.3.table b/eccodes/definitions/grib3/tables/0/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.4.table b/eccodes/definitions/grib3/tables/0/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.40.table b/eccodes/definitions/grib3/tables/0/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.40000.table b/eccodes/definitions/grib3/tables/0/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.5.table b/eccodes/definitions/grib3/tables/0/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.6.table b/eccodes/definitions/grib3/tables/0/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.7.table b/eccodes/definitions/grib3/tables/0/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.8.table b/eccodes/definitions/grib3/tables/0/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/5.9.table b/eccodes/definitions/grib3/tables/0/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/0/6.0.table b/eccodes/definitions/grib3/tables/0/6.0.table new file mode 100644 index 00000000..6a8c74b4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/0/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0, Bit Map Indicator + +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same "GRIB" message applies to this product +255 255 A bit map does not apply to this product diff --git a/eccodes/definitions/grib3/tables/1.0.table b/eccodes/definitions/grib3/tables/1.0.table new file mode 100644 index 00000000..4cf7db8d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1.0.table @@ -0,0 +1,4 @@ +# Code table 1.0 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/0.0.table b/eccodes/definitions/grib3/tables/1/0.0.table new file mode 100644 index 00000000..fd205635 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/0.0.table @@ -0,0 +1,10 @@ +#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/1.0.table b/eccodes/definitions/grib3/tables/1/1.0.table new file mode 100644 index 00000000..70eed2b8 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/1.0.table @@ -0,0 +1,4 @@ +# Code table 1.0 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/1.1.table b/eccodes/definitions/grib3/tables/1/1.1.table new file mode 100644 index 00000000..e3b17508 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/1.1.table @@ -0,0 +1,7 @@ +# CODE TABLE 1.1 - International Projects +0 0 Reserved +1 1 THORPEX Interactive Grand Global Ensemble (TIGGE) +2 2 Subseasonal-to-Seasonal prediction (S2S) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/1.2.table b/eccodes/definitions/grib3/tables/1/1.2.table new file mode 100644 index 00000000..b61ea3c5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/1.2.table @@ -0,0 +1,7 @@ +# CODE TABLE 1.2 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/1.3.table b/eccodes/definitions/grib3/tables/1/1.3.table new file mode 100644 index 00000000..d4ed48c6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/1.3.table @@ -0,0 +1,10 @@ +# CODE TABLE 1.3, Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 TIGGE Operational products +5 5 TIGGE test products +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/1.4.table b/eccodes/definitions/grib3/tables/1/1.4.table new file mode 100644 index 00000000..ac21f5c4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/1.4.table @@ -0,0 +1,13 @@ +# CODE TABLE 1.4, Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event Probability +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.0.table b/eccodes/definitions/grib3/tables/1/3.0.table new file mode 100644 index 00000000..a32a38e2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.0.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.0 - Significance of reference date and time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.1.table b/eccodes/definitions/grib3/tables/1/3.1.table new file mode 100644 index 00000000..7b476d92 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.1.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.1 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.10.table b/eccodes/definitions/grib3/tables/1/3.10.table new file mode 100644 index 00000000..ae5baf9d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.10.table @@ -0,0 +1,7 @@ +# FLAG TABLE 3.10, Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to equator +1 1 Points scan in -i direction, i.e. from equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions/grib3/tables/1/3.11.table b/eccodes/definitions/grib3/tables/1/3.11.table new file mode 100644 index 00000000..9a84d4a9 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.11.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.11, Interpretation of list of numbers defining number of points +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.15.table b/eccodes/definitions/grib3/tables/1/3.15.table new file mode 100644 index 00000000..bb431e14 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.15.table @@ -0,0 +1,25 @@ +# CODE TABLE 3.15, Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature K +# 21-99 Reserved +100 100 Pressure Pa +101 101 Pressure deviation from mean sea level Pa +102 102 Altitude above mean sea level m +103 103 Height above ground (see Note 1) m +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface m +107 pt Potential temperature (theta) K +108 108 Pressure deviation from ground to level Pa +109 pv Potential vorticity K m-2 kg-1 s-1 +110 110 Geometrical height m +111 111 Eta coordinate (see Note 2) +112 112 Geopotential height gpm +# 113-159 Reserved +160 160 Depth below sea level m +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing +# Notes: +# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. +# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/eccodes/definitions/grib3/tables/1/3.2.table b/eccodes/definitions/grib3/tables/1/3.2.table new file mode 100644 index 00000000..c7e90ae4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.2.table @@ -0,0 +1,5 @@ +# CODE TABLE 3.2 - Time domain template number +0 0 Forecast point in time +# 1-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.20.table b/eccodes/definitions/grib3/tables/1/3.20.table new file mode 100644 index 00000000..cfa35ae3 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.20.table @@ -0,0 +1,6 @@ +# CODE TABLE 3.20, Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.21.table b/eccodes/definitions/grib3/tables/1/3.21.table new file mode 100644 index 00000000..c2fd9458 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.21.table @@ -0,0 +1,8 @@ +# CODE TABLE 3.21, Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +# 2-10 Reserved +11 11 Geometric coordinates +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.3.table b/eccodes/definitions/grib3/tables/1/3.3.table new file mode 100644 index 00000000..1cf5141d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.3.table @@ -0,0 +1,17 @@ +# CODE TABLE 3.3 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/3.4.table b/eccodes/definitions/grib3/tables/1/3.4.table new file mode 100644 index 00000000..51d0664b --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.4.table @@ -0,0 +1,9 @@ +# FLAG TABLE 3.4, Scanning Mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions/grib3/tables/1/3.5.table b/eccodes/definitions/grib3/tables/1/3.5.table new file mode 100644 index 00000000..117b26be --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.5.table @@ -0,0 +1,5 @@ +# FLAG TABLE 3.5, Projection Centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions/grib3/tables/1/3.6.table b/eccodes/definitions/grib3/tables/1/3.6.table new file mode 100644 index 00000000..41dd97e4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.6.table @@ -0,0 +1,2 @@ +# CODE TABLE 3.6, Spectral data representation type +1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions/grib3/tables/1/3.7.table b/eccodes/definitions/grib3/tables/1/3.7.table new file mode 100644 index 00000000..2746bdba --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.7.table @@ -0,0 +1,11 @@ +# Code Table 3.7: Spectral data representation mode +0 0 Reserved +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +# 2-254 Reserved +255 255 Missing +# Note: +# +#(1) Values of N(m) for common truncations cases: +# Triangular M = J = K, N(m) = J +# Rhomboidal K = J + M, N(m) = J+m +# Trapezoidal K = J, K > M, N(m) = J diff --git a/eccodes/definitions/grib3/tables/1/3.8.table b/eccodes/definitions/grib3/tables/1/3.8.table new file mode 100644 index 00000000..0d9b7d00 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.8.table @@ -0,0 +1,8 @@ +# Code table 3.8: Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +#3-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/3.9.table b/eccodes/definitions/grib3/tables/1/3.9.table new file mode 100644 index 00000000..800c0825 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/3.9.table @@ -0,0 +1,3 @@ +# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions/grib3/tables/1/4.0.table b/eccodes/definitions/grib3/tables/1/4.0.table new file mode 100644 index 00000000..54600ce5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.0.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.0 - Grid definition template number +0 0 Latitude/longitude regular grid on an ellipsoidal planet +1 1 Rotated latitude/longitude regular grid on an ellipsoidal planet +2 2 Stretched latitude/longitude regular grid on an ellipsoidal planet +3 3 Stretched and rotated latitude/longitude regular grid on an ellipsoidal planet +# 4-32767 Reserved +# 32768-65534 Reserved for local use +65335 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.1.table b/eccodes/definitions/grib3/tables/1/4.1.table new file mode 100644 index 00000000..4d91fdb6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.1.table @@ -0,0 +1,9 @@ +# FLAG TABLE 4.1 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/eccodes/definitions/grib3/tables/1/4.10.table b/eccodes/definitions/grib3/tables/1/4.10.table new file mode 100644 index 00000000..9cf447b6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.10.table @@ -0,0 +1,14 @@ +# CODE TABLE 4.10, Type of statistical processing + +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (Value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (Temporal variance) +8 8 Difference (Value at the start of time range minus value at the end) +9 ratio Ratio +# 192 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib3/tables/1/4.11.table b/eccodes/definitions/grib3/tables/1/4.11.table new file mode 100644 index 00000000..68901aac --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.11.table @@ -0,0 +1,9 @@ +# CODE TABLE 4.11, Type of time intervals + +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.12.table b/eccodes/definitions/grib3/tables/1/4.12.table new file mode 100644 index 00000000..86b6177b --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.12.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.12, Operating Mode + +0 0 Maintenance Mode +1 1 Clear air +2 2 Precipitation +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.13.table b/eccodes/definitions/grib3/tables/1/4.13.table new file mode 100644 index 00000000..ddd7537d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.13.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.13, Quality Control Indicator + +0 0 No quality control applied +1 1 Quality control applied +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.14.table b/eccodes/definitions/grib3/tables/1/4.14.table new file mode 100644 index 00000000..69984d72 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.14.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.14, Clutter Filter Indicator + +0 0 No clutter filter used +1 1 Clutter filter used +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.15.table b/eccodes/definitions/grib3/tables/1/4.15.table new file mode 100644 index 00000000..49b0b2d2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.15.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.15, Type of auxiliary information + +0 0 Confidence level ('grib2/4.151.table') +1 1 Delta time (seconds) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.151.table b/eccodes/definitions/grib3/tables/1/4.151.table new file mode 100644 index 00000000..bcfa0aea --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.151.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.15, Confidence level units + +0 0 bad +1 1 suspect +2 2 acceptable +3 3 excellent +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.15.table b/eccodes/definitions/grib3/tables/1/4.2.0.15.table new file mode 100644 index 00000000..bb419178 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.15.table @@ -0,0 +1,14 @@ +# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar +0 0 Base spectrum width (m s-1) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m s-1) +3 3 Vertically-integrated liquid (kg m-1) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.18.table b/eccodes/definitions/grib3/tables/1/4.2.0.18.table new file mode 100644 index 00000000..5c0fd6e5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.18.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology +0 0 Air concentration of Caesium 137 (Bq m-3) +1 1 Air concentration of Iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of Caesium 137 (Bq m-2) +4 4 Ground deposition of Iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.19.table b/eccodes/definitions/grib3/tables/1/4.2.0.19.table new file mode 100644 index 00000000..369c3f65 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.19.table @@ -0,0 +1,24 @@ +# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J kg-1) +12 12 Planetary boundary layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +# 19-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.190.table b/eccodes/definitions/grib3/tables/1/4.2.0.190.table new file mode 100644 index 00000000..b1f47bc0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.190.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string +0 0 Arbitrary text string (CCITTIA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.191.table b/eccodes/definitions/grib3/tables/1/4.2.0.191.table new file mode 100644 index 00000000..affb98f4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.191.table @@ -0,0 +1,6 @@ +# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.2.table b/eccodes/definitions/grib3/tables/1/4.2.0.2.table new file mode 100644 index 00000000..f45206bf --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.2.table @@ -0,0 +1,35 @@ +# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum +0 0 Wind direction [from which blowing] (deg true) +1 1 Wind speed (m s-1) +2 2 u-component of wind (m s-1) +3 3 v-component of wind (m s-1) +4 4 Stream function (m2 s-1) +5 5 Velocity potential (m2 s-1) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (s-1) +8 8 Vertical velocity [pressure] (Pa s-1) +9 9 Vertical velocity [geometric] (m s-1) +10 10 Absolute vorticity (s-1) +11 11 Absolute divergence (s-1) +12 12 Relative vorticity (s-1) +13 13 Relative divergence (s-1) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (s-1) +16 16 Vertical v-component shear (s-1) +17 17 Momentum flux, u component (N m-2) +18 18 Momentum flux, v component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m s-1) +22 22 Wind speed [gust] (m s-1) +23 23 u-component of wind (gust) (m s-1) +24 24 v-component of wind (gust) (m s-1) +25 25 Vertical speed shear (s-1) +26 26 Horizontal momentum flux (N m-2) +27 27 U-component storm motion (m s-1) +28 28 V-component storm motion (m s-1) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m s-1) +# 31-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.20.table b/eccodes/definitions/grib3/tables/1/4.2.0.20.table new file mode 100644 index 00000000..4e7f45db --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.20.table @@ -0,0 +1,13 @@ +0 0 Mass density (concentration) kg.m-3 +1 1 Total column (integrated mass density) kg.m-2 +2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 +3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 +4 4 Surface dry deposition mass flux kg.m-2.s-1 +5 5 Surface wet deposition mass flux kg.m-2.s-1 +6 6 Atmosphere emission mass flux kg.m-2.s-1 +7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 +8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 +9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 +#10-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.3.table b/eccodes/definitions/grib3/tables/1/4.2.0.3.table new file mode 100644 index 00000000..5c7e8151 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.3.table @@ -0,0 +1,25 @@ +# Product Discipline 0: Meteorological products, Parameter Category 3: Mass + 0 0 Pressure (Pa) + 1 1 Pressure reduced to MSL (Pa) + 2 2 Pressure tendency (Pa s-1) + 3 3 ICAO Standard Atmosphere Reference Height (m) + 4 4 Geopotential (m2 s-2) + 5 5 Geopotential height (gpm) + 6 6 Geometric height (m) + 7 7 Standard deviation of height (m) + 8 8 Pressure anomaly (Pa) + 9 9 Geopotential height anomaly (gpm) + 10 10 Density (kg m-3) + 11 11 Altimeter setting (Pa) + 12 12 Thickness (m) + 13 13 Pressure altitude (m) + 14 14 Density altitude (m) + 15 15 5-wave geopotential height (gpm) + 16 16 Zonal flux of gravity wave stress (N m-2) + 17 17 Meridional flux of gravity wave stress (N m-2) + 18 18 Planetary boundary layer height (m) + 19 19 5-wave geopotential height anomaly (gpm) +# 20-191 Reserved +# 192-254 Reserved for local use + 255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.4.table b/eccodes/definitions/grib3/tables/1/4.2.0.4.table new file mode 100644 index 00000000..815c184a --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.4.table @@ -0,0 +1,14 @@ +# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wave length) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +9 8 Upward short-wave radiation flux (W m-2) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.5.table b/eccodes/definitions/grib3/tables/1/4.2.0.5.table new file mode 100644 index 00000000..1b57fa30 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.5.table @@ -0,0 +1,11 @@ +# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation +0 0 Net long wave radiation flux (surface) (W m-2) +1 1 Net long wave radiation flux (top of atmosphere) (W m-2) +2 2 Long wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long wave radiation flux (W m-2) +# 5-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.6.table b/eccodes/definitions/grib3/tables/1/4.2.0.6.table new file mode 100644 index 00000000..05cf72f5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.6.table @@ -0,0 +1,30 @@ +# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud +0 0 Cloud Ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J kg-1) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg kg-1) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg kg-1) +24 24 Sunshine (Numeric) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.7.table b/eccodes/definitions/grib3/tables/1/4.2.0.7.table new file mode 100644 index 00000000..78374fde --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.0.7.table @@ -0,0 +1,18 @@ +# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J kg-1) +7 7 Convective inhibition (J kg-1) +8 8 Storm relative helicity (J kg-1) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +#13-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.0.table b/eccodes/definitions/grib3/tables/1/4.2.10.0.table new file mode 100644 index 00000000..479e26d5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.10.0.table @@ -0,0 +1,20 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (Degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (Degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (Degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (Degree true) +13 13 Secondary wave mean period (s) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing + + diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.1.table b/eccodes/definitions/grib3/tables/1/4.2.10.1.table new file mode 100644 index 00000000..df18f31d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.10.1.table @@ -0,0 +1,8 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents +0 0 Current direction (Degree true) +1 1 Current speed (m s-1) +2 2 u-component of current (m s-1) +3 3 v-component of current (m s-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.2.table b/eccodes/definitions/grib3/tables/1/4.2.10.2.table new file mode 100644 index 00000000..cb73da46 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.10.2.table @@ -0,0 +1,12 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (Degree true) +3 3 Speed of ice drift (m s-1) +4 4 u-component of ice drift (m s-1) +5 5 v-component of ice drift (m s-1) +6 6 Ice growth rate (m s-1) +7 7 Ice divergence (s-1) +# 8-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.3.table b/eccodes/definitions/grib3/tables/1/4.2.10.3.table new file mode 100644 index 00000000..a14ae22e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.10.3.table @@ -0,0 +1,6 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +# 2-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.4.table b/eccodes/definitions/grib3/tables/1/4.2.10.4.table new file mode 100644 index 00000000..a24c3c8c --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.10.4.table @@ -0,0 +1,9 @@ +# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg kg-1) +# 4-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.2.0.table b/eccodes/definitions/grib3/tables/1/4.2.2.0.table new file mode 100644 index 00000000..fdc8ce0e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.2.0.table @@ -0,0 +1,29 @@ +# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass +0 0 Land cover (0=land, 1=sea) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg -2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadars mixing length scale (m) +15 15 Canopy conductance (m s-1) +16 16 Minimal stomatal resistance (s m-1) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy conductance (Proportion) +20 20 Soil moisture parameter in canopy conductance (Proportion) +21 21 Humidity parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +26 26 Wilting point (kg m-3) +# 23-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.2.3.table b/eccodes/definitions/grib3/tables/1/4.2.2.3.table new file mode 100644 index 00000000..d6376fec --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.2.3.table @@ -0,0 +1,16 @@ +# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +# 11-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.3.0.table b/eccodes/definitions/grib3/tables/1/4.2.3.0.table new file mode 100644 index 00000000..94456638 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.3.0.table @@ -0,0 +1,14 @@ +# Product discipline 3: Space products, Parameter Category 0: Image format products +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +# 9-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.3.1.table b/eccodes/definitions/grib3/tables/1/4.2.3.1.table new file mode 100644 index 00000000..60d6e842 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.3.1.table @@ -0,0 +1,11 @@ +# Product Discipline 3: Space products, Parameter Category 1: Quantitative products +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u component of wind (m s-1) +5 5 Estimated v component of wind (m s-1) +# 6-191 Reserved +#192-254 Reserved for local use +255 255 Missing + diff --git a/eccodes/definitions/grib3/tables/1/4.2.table b/eccodes/definitions/grib3/tables/1/4.2.table new file mode 100644 index 00000000..0073a4f3 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.2.table @@ -0,0 +1,17 @@ +# FLAG TABLE 4.2 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction. Rows have Ni-1 grid points if points are offset by Di/2 in i direction. Columns have Nj grid points if points are not offset in j direction. Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions/grib3/tables/1/4.201.table b/eccodes/definitions/grib3/tables/1/4.201.table new file mode 100644 index 00000000..7445c9c2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.201.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.201, Precipitation Type + +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.202.table b/eccodes/definitions/grib3/tables/1/4.202.table new file mode 100644 index 00000000..69dbe3a5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.202.table @@ -0,0 +1,66 @@ +# CODE TABLE 4.202, Precipitable water category + +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.203.table b/eccodes/definitions/grib3/tables/1/4.203.table new file mode 100644 index 00000000..d2ad10b0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.203.table @@ -0,0 +1,88 @@ +# CODE TABLE 4.203, Cloud type + +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground based fog beneath the lowest layer +12 12 Stratus - ground based fog beneath the lowest layer +13 13 Stratocumulus - ground based fog beneath the lowest layer +14 14 Cumulus - ground based fog beneath the lowest layer +15 15 Altostratus - ground based fog beneath the lowest layer +16 16 Nimbostratus - ground based fog beneath the lowest layer +17 17 Altocumulus - ground based fog beneath the lowest layer +18 18 Cirrostratus - ground based fog beneath the lowest layer +19 19 Cirrocumulus - ground based fog beneath the lowest layer +20 20 Cirrus - ground based fog beneath the lowest layer +191 191 Unknown +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.204.table b/eccodes/definitions/grib3/tables/1/4.204.table new file mode 100644 index 00000000..23b60cf7 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.204.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.204, Thunderstorm coverage + +0 0 None +1 1 Isolated (1% - 2%) +2 2 Few (3% - 15%) +3 3 Scattered (16% - 45%) +4 4 Numerous (> 45%) +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.205.table b/eccodes/definitions/grib3/tables/1/4.205.table new file mode 100644 index 00000000..98c7b48e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.205.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.205, Aerosol type + +0 0 Aerosol not present +1 1 Aerosol present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.206.table b/eccodes/definitions/grib3/tables/1/4.206.table new file mode 100644 index 00000000..b1ef2e78 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.206.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.206, Volcanic ash + +0 0 Not present +1 1 Present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.207.table b/eccodes/definitions/grib3/tables/1/4.207.table new file mode 100644 index 00000000..13fc7b54 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.207.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.207, Icing + +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.208.table b/eccodes/definitions/grib3/tables/1/4.208.table new file mode 100644 index 00000000..15b514a0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.208.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.208, Turbulence + +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.209.table b/eccodes/definitions/grib3/tables/1/4.209.table new file mode 100644 index 00000000..b4cca1d7 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.209.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.209, Planetary boundary layer regime + +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.210.table b/eccodes/definitions/grib3/tables/1/4.210.table new file mode 100644 index 00000000..d05e0772 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.210.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.210, Contrail intensity + +0 0 Contrail not present +1 1 Contrail present +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.211.table b/eccodes/definitions/grib3/tables/1/4.211.table new file mode 100644 index 00000000..604b2e64 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.211.table @@ -0,0 +1,69 @@ +# CODE TABLE 4.211, Contrail engine type + +0 0 Low bypass +1 1 High bypass +2 2 Non bypass +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.212.table b/eccodes/definitions/grib3/tables/1/4.212.table new file mode 100644 index 00000000..7393238e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.212.table @@ -0,0 +1,79 @@ +# CODE TABLE 4.212, Land Use + +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.213.table b/eccodes/definitions/grib3/tables/1/4.213.table new file mode 100644 index 00000000..cc4bdfc1 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.213.table @@ -0,0 +1,77 @@ +# CODE TABLE 4.213, Soil type + +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.215.table b/eccodes/definitions/grib3/tables/1/4.215.table new file mode 100644 index 00000000..7e144296 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.215.table @@ -0,0 +1,10 @@ +# CODE TABLE 4.215, Remotely Sensed Snow Coverage + +50 50 No-snow/no-cloud +100 100 Clouds +250 250 Snow +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.216.table b/eccodes/definitions/grib3/tables/1/4.216.table new file mode 100644 index 00000000..dbe26b0e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.216.table @@ -0,0 +1,95 @@ +# CODE TABLE 4.216, Elevation of Snow Covered Terrain + +0 0 Elevation in increments of 100 m +1 1 Elevation in increments of 100 m +2 2 Elevation in increments of 100 m +3 3 Elevation in increments of 100 m +4 4 Elevation in increments of 100 m +5 5 Elevation in increments of 100 m +6 6 Elevation in increments of 100 m +7 7 Elevation in increments of 100 m +8 8 Elevation in increments of 100 m +9 9 Elevation in increments of 100 m +10 10 Elevation in increments of 100 m +11 11 Elevation in increments of 100 m +12 12 Elevation in increments of 100 m +13 13 Elevation in increments of 100 m +14 14 Elevation in increments of 100 m +15 15 Elevation in increments of 100 m +16 16 Elevation in increments of 100 m +17 17 Elevation in increments of 100 m +18 18 Elevation in increments of 100 m +19 19 Elevation in increments of 100 m +20 20 Elevation in increments of 100 m +21 21 Elevation in increments of 100 m +22 22 Elevation in increments of 100 m +23 23 Elevation in increments of 100 m +24 24 Elevation in increments of 100 m +25 25 Elevation in increments of 100 m +26 26 Elevation in increments of 100 m +27 27 Elevation in increments of 100 m +28 28 Elevation in increments of 100 m +29 29 Elevation in increments of 100 m +30 30 Elevation in increments of 100 m +31 31 Elevation in increments of 100 m +32 32 Elevation in increments of 100 m +33 33 Elevation in increments of 100 m +34 34 Elevation in increments of 100 m +35 35 Elevation in increments of 100 m +36 36 Elevation in increments of 100 m +37 37 Elevation in increments of 100 m +38 38 Elevation in increments of 100 m +39 39 Elevation in increments of 100 m +40 40 Elevation in increments of 100 m +41 41 Elevation in increments of 100 m +42 42 Elevation in increments of 100 m +43 43 Elevation in increments of 100 m +44 44 Elevation in increments of 100 m +45 45 Elevation in increments of 100 m +46 46 Elevation in increments of 100 m +47 47 Elevation in increments of 100 m +48 48 Elevation in increments of 100 m +49 49 Elevation in increments of 100 m +50 50 Elevation in increments of 100 m +51 51 Elevation in increments of 100 m +52 52 Elevation in increments of 100 m +53 53 Elevation in increments of 100 m +54 54 Elevation in increments of 100 m +55 55 Elevation in increments of 100 m +56 56 Elevation in increments of 100 m +57 57 Elevation in increments of 100 m +58 58 Elevation in increments of 100 m +59 59 Elevation in increments of 100 m +60 60 Elevation in increments of 100 m +61 61 Elevation in increments of 100 m +62 62 Elevation in increments of 100 m +63 63 Elevation in increments of 100 m +64 64 Elevation in increments of 100 m +65 65 Elevation in increments of 100 m +66 66 Elevation in increments of 100 m +67 67 Elevation in increments of 100 m +68 68 Elevation in increments of 100 m +69 69 Elevation in increments of 100 m +70 70 Elevation in increments of 100 m +71 71 Elevation in increments of 100 m +72 72 Elevation in increments of 100 m +73 73 Elevation in increments of 100 m +74 74 Elevation in increments of 100 m +75 75 Elevation in increments of 100 m +76 76 Elevation in increments of 100 m +77 77 Elevation in increments of 100 m +78 78 Elevation in increments of 100 m +79 79 Elevation in increments of 100 m +80 80 Elevation in increments of 100 m +81 81 Elevation in increments of 100 m +82 82 Elevation in increments of 100 m +83 83 Elevation in increments of 100 m +84 84 Elevation in increments of 100 m +85 85 Elevation in increments of 100 m +86 86 Elevation in increments of 100 m +87 87 Elevation in increments of 100 m +88 88 Elevation in increments of 100 m +89 89 Elevation in increments of 100 m +90 90 Elevation in increments of 100 m +254 254 Clouds +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.217.table b/eccodes/definitions/grib3/tables/1/4.217.table new file mode 100644 index 00000000..475ab686 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.217.table @@ -0,0 +1,70 @@ +# CODE TABLE 4.217, Cloud mask type + +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.220.table b/eccodes/definitions/grib3/tables/1/4.220.table new file mode 100644 index 00000000..9fddcd49 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.220.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.220, Horizontal dimension processed + +0 0 Latitude +1 1 Longitude +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.221.table b/eccodes/definitions/grib3/tables/1/4.221.table new file mode 100644 index 00000000..2291eab6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.221.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.221, Treatment of missing data + +0 0 Not included +1 1 Extrapolated +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.230.table b/eccodes/definitions/grib3/tables/1/4.230.table new file mode 100644 index 00000000..23e819b6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.230.table @@ -0,0 +1,47 @@ +#Code figure Code figure Meaning +0 0 Air +1 1 Ozone +2 2 Water vapour +3 3 Methane +4 4 Carbon dioxide +5 5 Carbon monoxide +6 6 Nitrogen dioxide +7 7 Nitrous oxide +8 8 Nitrogen monoxide +9 9 Formaldehyde +10 10 Sulphur dioxide +11 11 Nitric acid +12 12 All nitrogen oxides (NOy) expressed as nitrogen +13 13 Peroxyacetyl nitrate +14 14 Hydroxyl radical +15 15 Ammonia +16 16 Ammonium +17 17 Radon +18 18 Dimethyl sulphide +19 19 Hexachlorocyclohexane +20 20 Alpha hexachlorocyclohexane +21 21 Elemental mercury +22 22 Divalent mercury +23 23 Hexachlorobiphenyl +24 24 NOx expressed as nitrogen +25 25 Non-methane volatile organic compounds expressed as carbon +26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon +27 27 Biogenic non-methane volatile organic compounds expressed as carbon +#28-39999 28-39999 Reserved +40000 40000 Sulphate dry aerosol +40001 40001 Black carbon dry aerosol +40002 40002 Particulate organic matter dry aerosol +40003 40003 Primary particulate organic matter dry aerosol +40004 40004 Secondary particulate organic matter dry aerosol +40005 40005 Sea salt dry aerosol +40006 40006 Dust dry aerosol +40007 40007 Mercury dry aerosol +40008 40008 PM10 aerosol +40009 40009 PM2P5 aerosol +40010 40010 PM1 aerosol +40011 40011 Nitrate dry aerosol +40012 40012 Ammonium dry aerosol +40013 40013 Water in ambient aerosol +#40014-63999 40014-63999 Reserved +#64000-65534 64000-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.3.table b/eccodes/definitions/grib3/tables/1/4.3.table new file mode 100644 index 00000000..84a72352 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.3.table @@ -0,0 +1,13 @@ +# CODE TABLE 4.3, Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.4.table b/eccodes/definitions/grib3/tables/1/4.4.table new file mode 100644 index 00000000..61aa20c5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.4.table @@ -0,0 +1,16 @@ +# CODE TABLE 4.4, Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.5.table b/eccodes/definitions/grib3/tables/1/4.5.table new file mode 100644 index 00000000..89c5fb17 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.5.table @@ -0,0 +1,33 @@ +#Code table 4.5: Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface +2 2 Cloud base level +3 3 Level of cloud tops +4 4 Level of 0o C isotherm +5 5 Level of adiabatic condensation lifted from the surface +6 6 Maximum wind level +7 7 Tropopause +8 sfc Nominal top of the atmosphere +9 9 Sea bottom +# 10-19 Reserved +20 20 Isothermal level (K) +#21-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level +# 112-116 Reserved +117 117 Mixed layer depth (m) +# 118-159 Reserved +160 160 Depth below sea level (m) +#161-191 Reserved +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.6.table b/eccodes/definitions/grib3/tables/1/4.6.table new file mode 100644 index 00000000..dc6d94c2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.6.table @@ -0,0 +1,8 @@ +# CODE TABLE 4.6, Type of ensemble forecast + +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.7.table b/eccodes/definitions/grib3/tables/1/4.7.table new file mode 100644 index 00000000..dadf59b4 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.7.table @@ -0,0 +1,73 @@ +# CODE TABLE 4.7, Derived forecast + +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members (see Note) +6 6 Unweighted mean of the cluster members +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.8.table b/eccodes/definitions/grib3/tables/1/4.8.table new file mode 100644 index 00000000..9d3a0e8a --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.8.table @@ -0,0 +1,68 @@ +# CODE TABLE 4.8, Clustering Method + +0 0 Anomaly correlation +1 1 Root mean square +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.9.table b/eccodes/definitions/grib3/tables/1/4.9.table new file mode 100644 index 00000000..895f3017 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.9.table @@ -0,0 +1,71 @@ +# CODE TABLE 4.9, Probability Type + +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/4.91.table b/eccodes/definitions/grib3/tables/1/4.91.table new file mode 100644 index 00000000..a960f56b --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/4.91.table @@ -0,0 +1,78 @@ +# CODE TABLE 4.91 Category Type + +0 0 Below lower limit +1 1 Above upper limit +2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit +3 3 Above lower limit +4 4 Below upper limit +5 5 Lower or equal lower limit +6 6 Greater or equal upper limit +7 7 Between lower and upper limits. The range includes lower limit and upper limit +8 8 Greater or equal lower limit +9 9 Lower or equal upper limit +10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit +11 11 Equal to first limit +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 missing Missing diff --git a/eccodes/definitions/grib3/tables/1/5.0.table b/eccodes/definitions/grib3/tables/1/5.0.table new file mode 100644 index 00000000..6c05d886 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.0.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.0 - Vertical domain template number +0 0 Vertical level +1 1 Vertical layer +# 2-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.1.table b/eccodes/definitions/grib3/tables/1/5.1.table new file mode 100644 index 00000000..d621f5d3 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.1.table @@ -0,0 +1,72 @@ +# CODE TABLE 5.1 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.2.table b/eccodes/definitions/grib3/tables/1/5.2.table new file mode 100644 index 00000000..a048d712 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.2.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.2, Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates +11 11 Geometric coordinates +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.3.table b/eccodes/definitions/grib3/tables/1/5.3.table new file mode 100644 index 00000000..4a673ef8 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.3.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.3, Matrix coordinate parameter +1 1 Direction Degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.4.table b/eccodes/definitions/grib3/tables/1/5.4.table new file mode 100644 index 00000000..1fd37966 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.4.table @@ -0,0 +1,5 @@ +# CODE TABLE 5.4, Group Splitting Method +0 0 Row by row splitting +1 1 General group splitting +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.40.table b/eccodes/definitions/grib3/tables/1/5.40.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.40.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.40000.table b/eccodes/definitions/grib3/tables/1/5.40000.table new file mode 100644 index 00000000..1eef7c76 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.5.table b/eccodes/definitions/grib3/tables/1/5.5.table new file mode 100644 index 00000000..d1caac9e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.5.table @@ -0,0 +1,7 @@ +# CODE TABLE 5.5, Missing Value Management for Complex Packing + +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 192 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.6.table b/eccodes/definitions/grib3/tables/1/5.6.table new file mode 100644 index 00000000..4aec3314 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.6.table @@ -0,0 +1,68 @@ +# CODE TABLE 5.6, Order of Spatial Differencing + +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +192 192 Reserved for local use +193 193 Reserved for local use +194 194 Reserved for local use +195 195 Reserved for local use +196 196 Reserved for local use +197 197 Reserved for local use +198 198 Reserved for local use +199 199 Reserved for local use +200 200 Reserved for local use +201 201 Reserved for local use +202 202 Reserved for local use +203 203 Reserved for local use +204 204 Reserved for local use +205 205 Reserved for local use +206 206 Reserved for local use +207 207 Reserved for local use +208 208 Reserved for local use +209 209 Reserved for local use +210 210 Reserved for local use +211 211 Reserved for local use +212 212 Reserved for local use +213 213 Reserved for local use +214 214 Reserved for local use +215 215 Reserved for local use +216 216 Reserved for local use +217 217 Reserved for local use +218 218 Reserved for local use +219 219 Reserved for local use +220 220 Reserved for local use +221 221 Reserved for local use +222 222 Reserved for local use +223 223 Reserved for local use +224 224 Reserved for local use +225 225 Reserved for local use +226 226 Reserved for local use +227 227 Reserved for local use +228 228 Reserved for local use +229 229 Reserved for local use +230 230 Reserved for local use +231 231 Reserved for local use +232 232 Reserved for local use +233 233 Reserved for local use +234 234 Reserved for local use +235 235 Reserved for local use +236 236 Reserved for local use +237 237 Reserved for local use +238 238 Reserved for local use +239 239 Reserved for local use +240 240 Reserved for local use +241 241 Reserved for local use +242 242 Reserved for local use +243 243 Reserved for local use +244 244 Reserved for local use +245 245 Reserved for local use +246 246 Reserved for local use +247 247 Reserved for local use +248 248 Reserved for local use +249 249 Reserved for local use +250 250 Reserved for local use +251 251 Reserved for local use +252 252 Reserved for local use +253 253 Reserved for local use +254 254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.7.table b/eccodes/definitions/grib3/tables/1/5.7.table new file mode 100644 index 00000000..35b23b94 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.7.table @@ -0,0 +1,6 @@ +# CODE TABLE 5.7, Precision of floating-point numbers + +1 1 IEEE 32-bit (I=4 in Section 7) +2 2 IEEE 64-bit (I=8 in Section 7) +3 3 IEEE 128-bit (I=16 in Section 7) +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.8.table b/eccodes/definitions/grib3/tables/1/5.8.table new file mode 100644 index 00000000..c654331f --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.8.table @@ -0,0 +1,3 @@ +# CODE TABLE 5.8, lossless compression method +0 no no compression method +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/5.9.table b/eccodes/definitions/grib3/tables/1/5.9.table new file mode 100644 index 00000000..6925d31a --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/5.9.table @@ -0,0 +1,4 @@ +# CODE TABLE 5.8, pre-processing +0 no no pre-processing +1 logarithm logarithm +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/6.0.table b/eccodes/definitions/grib3/tables/1/6.0.table new file mode 100644 index 00000000..e01e35e5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/6.0.table @@ -0,0 +1,7 @@ +# CODE TABLE 6.0 - Generating process template number +0 0 Forecast, analysis or observation +1 1 Individual ensemble forecast or analysis, control and perturbed +2 2 Statistical post-processing of all ensemble members +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/6.1.table b/eccodes/definitions/grib3/tables/1/6.1.table new file mode 100644 index 00000000..a8fffa23 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/6.1.table @@ -0,0 +1,23 @@ +# CODE TABLE 6.1 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/6.2.table b/eccodes/definitions/grib3/tables/1/6.2.table new file mode 100644 index 00000000..4423f714 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/6.2.table @@ -0,0 +1,9 @@ +# CODE TABLE 6.2 - Type of ensemble member +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/6.3.table b/eccodes/definitions/grib3/tables/1/6.3.table new file mode 100644 index 00000000..d34749b0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/6.3.table @@ -0,0 +1,11 @@ +# CODE TABLE 6.3 - Type of statistical post-processing of ensemble members +0 0 Unweighted mean +1 1 Weighted mean +2 2 Spread +3 3 Large anomaly index +4 4 Interquartile range (range between the 25th and 75th quantile) +5 5 Minimum +6 6 Maximum +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.0.table b/eccodes/definitions/grib3/tables/1/7.0.table new file mode 100644 index 00000000..f88fff58 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.0.table @@ -0,0 +1,9 @@ +# CODE TABLE 7.0 - Observable property template number +0 0 Observable property by discipline, category and number +1 1 Observable property with units conversion +2 2 Atmospheric chemical or physical constituent +3 3 Aerosol physical property +4 4 Aerosol optical property +# 5-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.1.table b/eccodes/definitions/grib3/tables/1/7.1.table new file mode 100644 index 00000000..29587795 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.1.table @@ -0,0 +1,10 @@ +# CODE TABLE 7.1 - Discipline +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.2.0.table b/eccodes/definitions/grib3/tables/1/7.2.0.table new file mode 100644 index 00000000..e8176e02 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.2.0.table @@ -0,0 +1,28 @@ +# CODE TABLE 7.2 - Parameter category by discipline +# Discipline 0: Meteorological products +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave Radiation +5 5 Long-wave Radiation +6 6 Cloud +7 7 Thermodynamic Stability indices +8 8 Kinematic Stability indices +9 9 Temperature Probabilities +10 10 Moisture Probabilities +11 11 Momentum Probabilities +12 12 Mass Probabilities +13 13 Aerosols +14 14 Trace gases (e.g., ozone, CO2) +15 15 Radar +16 16 Forecast Radar Imagery +17 17 Electro-dynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical or physical constituents +# 20-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +#192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.2.1.table b/eccodes/definitions/grib3/tables/1/7.2.1.table new file mode 100644 index 00000000..1a4b16b9 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.2.1.table @@ -0,0 +1,8 @@ +# CODE TABLE 7.2 - Parameter category by discipline +# Discipline 1: Hydrological products +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.2.10.table b/eccodes/definitions/grib3/tables/1/7.2.10.table new file mode 100644 index 00000000..4b41256f --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.2.10.table @@ -0,0 +1,11 @@ +# CODE TABLE 7.2 - Parameter category by discipline +# Discipline 10: Oceanographic products +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.2.2.table b/eccodes/definitions/grib3/tables/1/7.2.2.table new file mode 100644 index 00000000..aef9e64c --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.2.2.table @@ -0,0 +1,10 @@ +# CODE TABLE 7.2 - Parameter category by discipline +# Discipline 2: Land surface products +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.2.3.table b/eccodes/definitions/grib3/tables/1/7.2.3.table new file mode 100644 index 00000000..53aa830c --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.2.3.table @@ -0,0 +1,11 @@ +# CODE TABLE 7.2 - Parameter category by discipline +# Discipline 3: Satellite products +0 0 Reserved +1 1 Reserved +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.0.table b/eccodes/definitions/grib3/tables/1/7.3.0.0.table new file mode 100644 index 00000000..a7896a6e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.0.table @@ -0,0 +1,20 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 0: temperature +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +# 4-5 Reserved +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K m-1) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +# 14 Reserved +15 15 Virtual potential temperature (K) +# 16-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.1.table b/eccodes/definitions/grib3/tables/1/7.3.0.1.table new file mode 100644 index 00000000..fa4a1f47 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.1.table @@ -0,0 +1,10 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 1: moisture +0 0 Specific humidity (kg kg-1) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg kg-1) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.13.table b/eccodes/definitions/grib3/tables/1/7.3.0.13.table new file mode 100644 index 00000000..bd28d13e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.13.table @@ -0,0 +1,6 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 13: aerosols +0 0 Aerosol type +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.14.table b/eccodes/definitions/grib3/tables/1/7.3.0.14.table new file mode 100644 index 00000000..2d9c52ed --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.14.table @@ -0,0 +1,8 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 14: trace gases +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.15.table b/eccodes/definitions/grib3/tables/1/7.3.0.15.table new file mode 100644 index 00000000..7ff84c78 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.15.table @@ -0,0 +1,22 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 15: radar +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.16.table b/eccodes/definitions/grib3/tables/1/7.3.0.16.table new file mode 100644 index 00000000..af711e93 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.16.table @@ -0,0 +1,11 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 16: forecast radar imagery +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.17.table b/eccodes/definitions/grib3/tables/1/7.3.0.17.table new file mode 100644 index 00000000..e0e6237d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.17.table @@ -0,0 +1,4 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 17: electrodynamics +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.18.table b/eccodes/definitions/grib3/tables/1/7.3.0.18.table new file mode 100644 index 00000000..f3dc107a --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.18.table @@ -0,0 +1,24 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 18: nuclear/radiology +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.19.table b/eccodes/definitions/grib3/tables/1/7.3.0.19.table new file mode 100644 index 00000000..640fe37d --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.19.table @@ -0,0 +1,37 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash ((Code table 4.206)) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing ((Code table 4.207)) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence ((Code table 4.208)) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime ((Code table 4.209)) +13 13 Contrail intensity ((Code table 4.210)) +14 14 Contrail engine type ((Code table 4.211)) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather ((Code table 4.225)) +26 26 Convective outlook ((Code table 4.224)) +27 27 Icing scenario ((Code table 4.227)) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.2.table b/eccodes/definitions/grib3/tables/1/7.3.0.2.table new file mode 100644 index 00000000..c8882c48 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.2.table @@ -0,0 +1,12 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 2: momentum +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.20.table b/eccodes/definitions/grib3/tables/1/7.3.0.20.table new file mode 100644 index 00000000..098d771e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.20.table @@ -0,0 +1,48 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 20: atmospheric chemical constituents +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +# 15-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +# 64-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.3.table b/eccodes/definitions/grib3/tables/1/7.3.0.3.table new file mode 100644 index 00000000..f3c0c1d2 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.3.table @@ -0,0 +1,16 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 3: mass +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.4.table b/eccodes/definitions/grib3/tables/1/7.3.0.4.table new file mode 100644 index 00000000..970d9044 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.4.table @@ -0,0 +1,10 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 4: short-wave radiation +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.5.table b/eccodes/definitions/grib3/tables/1/7.3.0.5.table new file mode 100644 index 00000000..71d21775 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.5.table @@ -0,0 +1,13 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation +# 0 Reserved +# 1 Reserved +# 2 Reserved +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.6.table b/eccodes/definitions/grib3/tables/1/7.3.0.6.table new file mode 100644 index 00000000..1d28c213 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.6.table @@ -0,0 +1,28 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 6: cloud +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +# 8 Reserved +9 9 Thunderstorm maximum tops (m) +# 10 Reserved +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +# 17 Reserved +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +# 23-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.7.table b/eccodes/definitions/grib3/tables/1/7.3.0.7.table new file mode 100644 index 00000000..166d9d7f --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.0.7.table @@ -0,0 +1,25 @@ +# CODE TABLE 7.3 - Parameter number by product discipline and parameter category +# Product discipline 0 - Meteorological products, parameter category 7: Thermodynamic stability indices +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +# 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.0.table b/eccodes/definitions/grib3/tables/1/7.3.1.0.table new file mode 100644 index 00000000..baa42eef --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.1.0.table @@ -0,0 +1,22 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 1 - Hydrological products, parameter category 0: hydrology basic products +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover ((Code table 4.215)) +3 3 Elevation of snow-covered terrain ((Code table 4.216)) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.1.table b/eccodes/definitions/grib3/tables/1/7.3.1.1.table new file mode 100644 index 00000000..475f676e --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.1.1.table @@ -0,0 +1,8 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 1 - Hydrological products, parameter category 1: hydrology probabilities +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.2.table b/eccodes/definitions/grib3/tables/1/7.3.1.2.table new file mode 100644 index 00000000..5d5fcb84 --- /dev/null +++ b/eccodes/definitions/grib3/tables/1/7.3.1.2.table @@ -0,0 +1,16 @@ +# Code table 7.3 - Parameter number by product discipline and parameter category +# Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table b/eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table new file mode 100644 index 00000000..a0f9c973 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table @@ -0,0 +1,4 @@ +# CODE TABLE 1.2, Significance of Reference Time +191 191 funny reference time +#4-191 Reserved +#192-254 Reserved for local use diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table new file mode 100644 index 00000000..92a1b782 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table @@ -0,0 +1,2 @@ +#Code Table obstat.1.0: Monitoring Statistics Outputs types +1 obstat Monitoring statistics diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table new file mode 100644 index 00000000..347e17f6 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table @@ -0,0 +1,42 @@ +#Code Table obstat.10.0: Data selection criteria +1 Active Active data +2 All All data +3 Non_Active Not Active data +4 Best_Active Best active wind +5 Used Used data +6 VarQC_Rej VarQC rejected data +7 Blacklisted Blacklisted data +8 Failed Failed data +9 Passed_FgCheck Data that passed FG check +10 Non_Rejected All non rejected data +11 VarBC_Passive VarBC passive channels +12 Failed_FG_Non_Black Data failed FG check but not blacklisted +13 Failed_FG_VarQC_Rej Data failed FG check and VARQC rejected +#14-19 Reserved for additional standard IFS flags +20 QI_LE_20 AMVs with QI <= 20 +21 QI_LE_66 AMVs with 20 < QI <=65 +22 QI_GE_65 AMVs with QI > 65 +23 QI_GE_80 AMVs with QI > 80 +24 QI_GE_90 AMVs with QI > 90 +#25-29 Reserved for additional AMVs flags +30 Clear_LE_70%WV_80%IR CSR data with clear fraction < 70 % (WV) and < 80 % (IR) +31 Clear_GE_70%WV_80%IR CSR data with clear fraction >= 70 % (WV) and >= 80 % (IR) +32 Clear_100% CSR data completely clear (according to IR window channel) +33 Clear_GE_40%WV CSR data with clear fraction >= 40 % (WV) +34 Clear_GE_70%WV CSR data with clear fraction >= 70 % (WV) +35 Clear_100%WV CSR data completely clear (according to WV channel) +#36-39 Reserved for additional CSR flags +40 Clear Clear +41 Used_Clear Used clear data +42 Used_Cloudy_Rainy Used cloudy and rainy data +43 All_Cloudy_Rainy All cloudy and rainy data +44 Used_ObsCld_FGClr Used Obs cloudy and FG clear +45 Used_ObsClr_FGCld Used Obs clear and FG cloudy +#44-49 Reserved for additional radiances flags +50 Good_ozone Good ozone data +51 Daytime Day time data +52 Nighttime Night time data +#53-69 Reserved for additional ozone, trace gases and Aerosol flags +#70-79 Reserved for GPSRO flags +#80-89 Reserved for scatterometer flags +#33-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table new file mode 100644 index 00000000..2d82ce7e --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table @@ -0,0 +1,4 @@ +#Code Table obstat.11.0: Scan position definition +0 0 Explicit scan position (table 11.1) +1 1 Scan position interval (table 11.2) +255 255 Missing diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table new file mode 100644 index 00000000..e3aea161 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table @@ -0,0 +1,13 @@ +#Code Table obstat.2.0: Observation types +1 Synop Synop +2 Airep Airep +3 Satob Satob +4 Dribu Dribu +5 Temp Temp +6 Pilot Pilot +7 Satem Satem +8 Paob Paob +9 Scatterometer Scatterometer +10 GPSRO Limb +13 Radar Radar +#14-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table new file mode 100644 index 00000000..60b907f5 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table @@ -0,0 +1,52 @@ +#Code Table obstat.3.0: Observation code types +2 RADAR RADAR 1 +8 SCATTEROMETER1 SCATTEROMETER 1 +11 Manual_land Manual land station +14 Automatic_land Automatic land station +21 Ship Ship +22 Ship Ship abbreviated +23 Shred Shred +24 Automatic_ship Automatic Ship +32 Land LAND +33 Ship SHIP +34 Profilers WIND PROFILERS +35 Land LAND +36 Ship SHIP +37 Mobile MOBILE +39 Land_Racob LAND ROCOB +40 Ship_Racob SHIP ROCOB +41 Codar Codar +63 Bathy BATHY +64 Tesac TESAC +86 SATEM_GTS SATEM VIA GTS +88 Satob Satob +89 High-Res_VIS_wind High-resolution VIS wind +90 AMV AMV +122 SCATTEROMETER2 SCATTEROMETER 2 +139 SCATTEROMETER3 SCATTEROMETER 3 +141 Aircraft Aircraft +142 Simulated Simulated +144 Amdar Amdar +145 Acars Acars +160 ERS_AS_DRIBU ERS as DRIBU +165 DRIBU DRIBU +135 DROP DROP +137 SIMULATED SIMULATED +180 PAOB PAOB +184 High_Res_Sim_SATEM HIGH RESOLUTION SIMULATED SATEM +185 High_Res_Sim_DWLTOVS HIGH RESOLUTION SIMULATED DWL TOVS +186 High_Res_Sat HIGH RESOLUTION SATTELITE REPORT +188 SST SST +200 GTS_BUFR_SATEM GTS BUFR 250 KM SATEM +201 GTS_BUFR_CLR_Rad GTS BUFR SATEM CLEAR RADIANCE +202 GTS_BUFR_DATEM_RETR GTS BUFR SATEM RETRIEVED PROFILES AND CLEAR RADIANCES +206 OZONE RETRIEVED OZONE (TOTAL & PROFILES) +210 L1C_RADIANCES LEVEL 1C CALIBRATED RADIANCES +211 RTOVS_CLR_RAD RTOVS CLEAR RADIANCES AND RETRIEVED +212 TOVS_CLEAR_RAD TOVS CLEAR RADIANCES AND RETRIEVED +215 AllSky_MWRAD SSMI/AMSRE/SSMIS/TMI +241 COLBA Colba +250 GPSRO GPS RADIO OCCULTATION +251 LIMB LIMB RADIANCES +300 SCATTEROMETER4 SCATTEROMETER 4 +301 SCATTEROMETER5 SCATTEROMETER 5 diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table new file mode 100644 index 00000000..a342b56d --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table @@ -0,0 +1,82 @@ +#Code Table obstat.4.0: List of meteorological satellites +1 ERS-1 ERS 1 +2 ERS-2 ERS 2 +3 METOP-B METOP-B +4 METOP-A METOP-A +41 CHAMP CHAMP +42 TERRA-SAR-X TERRA-SAR-X +46 SMOS SMOS +54 METEOSAT-7 METEOSAT 7 +55 METEOSAT-8 METEOSAT 8 +56 METEOSAT-9 METEOSAT 9 +57 METEOSAT-10 METEOSAT 10 +58 METEOSAT-1 METEOSAT 1 +59 METEOSAT-2 METEOSAT 2 +60 ENVISAT ENVISAT +70 METEOSAT-11 METEOSAT-11 +122 GCOM-W1 GCOM-W1 +140 GOSAT GOSAT +171 MTSAT-1R MTSAT-1R +172 MTSAT-2 MTSAT-2 +200 NOAA-8 NOAA-8 +201 NOAA-9 NOAA-9 +202 NOAA-10 NOAA-10 +203 NOAA-11 NOAA-11 +204 NOAA-12 NOAA-12 +205 NOAA-14 NOAA 14 +206 NOAA-15 NOAA 15 +207 NOAA-16 NOAA 16 +208 NOAA-17 NOAA 17 +209 NOAA-18 NOAA 18 +222 AQUA AQUA +223 NOAA-19 NOAA 19 +224 NPP NPP +240 DMSP-7 DMSP-7 +241 DMSP-8 DMSP-8 +242 DMSP-9 DMSP-9 +243 DMSP-10 DMSP-10 +244 DMSP-11 DMSP-11 +246 DMSP-13 DMSP-13 +246 DMSP-13 DMSP 13 +247 DMSP-14 DMSP 14 +248 DMSP-15 DMSP 15 +249 DMSP-16 DMSP 16 +253 GOES-9 GOES 9 +254 GOES-10 GOES 10 +255 GEOS-11 GOES 11 +256 GEOS-12 GOES 12 +257 GEOS-13 GOES 13 +258 GEOS-14 GOES 14 +259 GEOS-15 GOES 15 +260 JASON-1 JASON-1 +261 JASON-2 JASON-2 +281 QUIKSCAT QUIKSCAT +282 TRMM TRMM +283 CORIOLIS CORIOLIS +285 DMSP17 DMSP 17 +286 DMSP18 DMSP 18 +421 OCEANSAT-2 OCEANSAT-2 +500 FY-1C FY-1C +501 FY-1D FY-1D +510 FY-2 FY-2 +512 FY-2B FY-2B +513 FY-2C FY-2C +514 FY-2D FY-2D +515 FY-2E FY-2E +520 FY-3A FY-3A +521 FY-3B FY-3B +722 GRACE-A GRACE-A +706 NOAA-6 NOAA-6 +707 NOAA-7 NOAA-7 +708 TIROS-N TIROS-N +740 COSMIC-1 COSMIC-1 +741 COSMIC-2 COSMIC-2 +742 COSMIC-3 COSMIC-3 +743 COSMIC-4 COSMIC-4 +744 COSMIC-5 COSMIC-5 +745 COSMIC-6 COSMIC-6 +783 TERRA TERRA +784 AQUA AQUA +785 AURA AURA +786 C-NOFS C-NOFS +820 SAC-C SAC-C diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table new file mode 100644 index 00000000..71a9a0e8 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table @@ -0,0 +1,53 @@ +#Code Table obstat.5.0: List of satellite instruments +0 HIRS HIRS +1 MSU MSU +2 SSU SSU +3 AMSUA AMSUA +4 AMSUB AMSUB +6 SSM/I SSM/I +9 TMI TMI +10 SSMI/S SSMI/S +11 AIRS AIRS +15 MHS MHS +16 IASI IASI +17 AMSRE AMSR-E +19 ATMS ATMS +20 MVIRI MVIRI +21 SEVIRI SEVIRI +22 GOES GOES Imager +24 MTSAT-1R MTSAT-1R imager +27 CrIS CrIS +30 WINDSAT WINDSAT +40 MWTS MWTS +41 MWHS MWHS +63 AMSR2 AMSR2 +102 GPSRO GPSRO +172 GOMOS GOMOS +174 MERIS MERIS +175 SCIAMACHY SCIAMACHY +202 GRAS GRAS +207 SEVIRI_O3 SEVIRI O3 +220 GOME-2 GOME-2 +387 MLS MLS +394 OMI OMI +516 TANSO TANSO +624 SBUV-2 SBUV-2 +2000 AMV_WV_CLOUDY AMV WV cloudy +2001 AMV_IR AMV IR +2002 AMV_VIS AMV VIS +2003 AMV_WVMIX AMV WVMIX +2005 AMV_WV_Clear AMV Water Vapor clear +2100 AMV_WV_6.2_cloudy AMV WV 6.2 cloudy +2101 AMV_IR_ch1 AMV IR ch1 +2102 AMV_VIS_ch1 AMV VIS ch1 +2105 AMV_WV_6.2_clear AMV WV_6.2 clear +2200 AMV_WV_7.3_cloudy AMV WV 7.3 cloudy +2201 AMV_IR_ch2 AMV IR ch2 +2202 AMV_VIS-2 AMV VIS-2 +2205 AMV_WV_7.3_clear AMV WV 7.3 clear +2300 AMV_WV_cloudy_ch3 AMV WV cloudy ch 3 +2301 AMV_IR-10 AMV IR-10 +2305 AMV_WV_clear_Ch3 AMV WV clear Ch3 +2350 QUIKSCAT QUIKSCAT +2150 SCAT SCAT +2190 ASCAT ASCAT diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table new file mode 100644 index 00000000..2bb1fa92 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.6.0: List of data streams +0 Normal_delivery Normal delivery +1 EARS EARS +2 PAC-RARS PAC-RARS +3 DB_MODIS DB MODIS winds +#4-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table new file mode 100644 index 00000000..fcd1c2e0 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.7.0: Vertical coordinate types +1 1 Channel +2 2 Pressure level +3 3 Pressure layer +4 4 Surface +#5-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table new file mode 100644 index 00000000..42bba148 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table @@ -0,0 +1,6 @@ +#Code Table obstat.8.0: List Mask types +1 Land Land +2 Sea Sea +3 Sea-ice Sea-ice +4 All_surfaces All surface types combined +#5-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table new file mode 100644 index 00000000..bed03c02 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table @@ -0,0 +1,52 @@ +#Code Table obstat.9.0: Observation diagnostics +1 count data count +2 obs Average of observed values +3 obs_stdv Standard deviation of observed values +4 fgdep Average of first guess departure +5 fgdep_stdv Standard deviation of first guess departure +6 andep Average of analysis departure +7 andep_stdv Standard deviation of analysis departure +8 obs_error Average of observation standard error +9 obs_error_stdv Standard deviation of observation standard error +10 bkg_error Average of background standard error +11 bkg_error_stdv Standard deviation of background standard error +12 lr_andep1 Average of low resolution analysis departure update 1 +13 lr_andep1_stdv Standard deviation of low resolution analysis departure update 1 +14 hr_fgdep2 Average of high resolution background departure update 2 +15 hr_fgdep2_stdv Standard deviation of high resolution background departure update 2 +16 lr_andep2 Average of low resolution analysis departure update 2 +17 lr_andep2_stdv Standard deviation of low resolution analysis departure update 2 +18 bcor Average of Bias correction +19 bcor_stdv Standard deviation of bias correction +20 vbcor average of Variational bias correction +21 vbcor_stdv Standard deviation of variational bias correction +22 fgdep_nbcor Average of background departure without bias correction +23 fgdep_nbcor_stdv Standard deviation of background departure without bias correction +24 windspeed Average of wind speed +25 windspeed_stdv Standard deviation of wind speed +26 norm_andep Average of normalised analysis fit +27 norm_andep_stdv Standard deviation of normalised analysis fit +28 norm_fgdep Average of normalised background fit +29 norm_fgdep_stdv Standard deviation of normalised background fit +30 fso Average of forecast sensitivity to observations +31 fso_stdv stdv of forecast sensitivity to observations +32 norm_obs Average of normalised observation +33 norm_obs_stdv stdv of normalised observation +34 anso Average of analyse sensitivity to observations +35 anso_stdv stdv of analyse sensitivity to observations +40 fcst_dep1 Average of forecast departure for step 1 +41 fcst_dep1_stdv Standard deviation of forecast departure for step 1 +42 fcst_dep2 Average of forecast departure for step 2 +43 fcst_dep2_stdv Standard deviation of forecast departure for step 2 +44 norm_fcst_dep1 Average of normalised forecast departure for step 1 +45 norm_fcst_dep1_stdv Standard deviation of normalised forecast departure for step 1 +46 norm_fcst_dep2 Average of normalised forecast departure for step 2 +47 norm_fcst_dep2_stdv Standard deviation of normalised forecast departure for step 2 +60 far_rate False alarm rate +62 miss_rate Miss rate +64 hit_rate hit rate +66 corr_nul correct nuls +68 est_fg_err Estimated variance of the first guess error +70 edafgspr EDA first guess variance +72 edaanspr EDA Analysis variance +#36-255 Reserved diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table new file mode 100644 index 00000000..75ccf290 --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table @@ -0,0 +1,185 @@ +#Code Table obstat.reporttype: List of Report types +1 TIROS-N TIROS-N +2 NOAA-6/HIRS NOAA-6/HIRS +3 NOAA-7/HIRS NOAA-7/HIRS +4 NOAA-8/HIRS NOAA-8/HIRS +5 NOAA-9/HIRS NOAA-9/HIRS +6 NOAA-10/HIRS NOAA-10/HIRS +7 NOAA-11/HIRS NOAA-11/HIRS +8 NOAA-12/HIRS NOAA-12/HIRS +9 NOAA-14/HIRS NOAA-14/HIRS +10 NOAA-15/HIRS NOAA-15/HIRS +11 NOAA-16/HIRS NOAA-16/HIRS +12 NOAA-17/HIRS NOAA-17/HIRS +13 NOAA-18/HIRS NOAA-18/HIRS +14 NOAA-19/HIRS NOAA-19/HIRS +15 METOP-A/HIRS METOP-A/HIRS +1001 NOAA-15/AMSUA NOAA-15/AMSUA +1002 NOAA-16/AMSUA NOAA-16/AMSUA +1003 NOAA-17/AMSUA NOAA-17/AMSUA +1004 NOAA-18/AMSUA NOAA-18/AMSUA +1005 NOAA-19/AMSUA NOAA-19/AMSUA +1006 NOAA-19/AMSUA NOAA-19/AMSUA +1007 METOP-A/AMSUA METOP-A/AMSUA +1008 AQUA/AMSUA AQUA/AMSUA +2001 NOAA-15/AMSUB NOAA-15/AMSUB +2002 NOAA-16/AMSUB NOAA-16/AMSUB +2003 NOAA-17/AMSUB NOAA-17/AMSUB +2004 NOAA-18/AMSUB NOAA-18/AMSUB +2005 NOAA-18/AMSUB NOAA-18/AMSUB +3001 NOAA-19/MHS NOAA-19/MHS +3002 METOP-A/MHS METOP-A/MHS +4001 GOES-5/IMAGER GOES-5/IMAGER +4002 GOES-8/IMAGER GOES-8/IMAGER +4003 GOES-9/IMAGER GOES-9/IMAGER +4004 GOES-10/IMAGER GOES-10/IMAGER +4005 GOES-11/IMAGER GOES-11/IMAGER +4006 GOES-12/IMAGER GOES-12/IMAGER +4007 METEOSAT-7/MVIRI METEOSAT-7/MVIRI +4008 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI +4009 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI +4010 MTSAT-1R/IMAGER MTSAT-1R/IMAGER +5001 ERS-2/GOME ERS-2/GOME +5002 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI +5003 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI +5004 AURA/MLS AURA/MLS +5005 AURA/OMI AURA/OMI +5006 NOAA-9/SBUV NOAA-9/SBUV +5007 NOAA-11/SBUV NOAA-11/SBUV +5008 NOAA-14/SBUV NOAA-14/SBUV +5009 NOAA-16/SBUV NOAA-16/SBUV +5010 NOAA-17/SBUV NOAA-17/SBUV +5011 NOAA-18/SBUV NOAA-18/SBUV +5012 NOAA-19/SBUV NOAA-19/SBUV +5013 METOP-A/GOME-2 METOP-A/GOME-2 +5014 ENVISAT/SCIAMACHY ENVISAT/SCIAMACHY +5015 ENVISAT/GOMOS ENVISAT/GOMOS +5016 ENVISAT/MIPAS ENVISAT/MIPAS +5017 Metror-3/TOMS Metror-3/TOMS +5018 Nimbus-7/TOMS Nimbus-7/TOMS +6001 ENVISAT/GOMOS ENVISAT/GOMOS +6002 ENVISAT/MERIS ENVISAT/MERIS +7001 METOP-A/GRAS METOP-A/GRAS +7002 CHAMP CHAMP +7003 GRACE-A GRACE-A +7004 COSMIC-1 COSMIC-1 +7005 COSMIC-2 COSMIC-2 +7006 COSMIC-3 COSMIC-3 +7007 COSMIC-4 COSMIC-4 +7008 COSMIC-5 COSMIC-5 +7009 COSMIC-6 COSMIC-6 +8001 METEOSAT-2/AMV METEOSAT-2/AMV +8002 METEOSAT-3/AMV METEOSAT-3/AMV +8003 METEOSAT-4/AMV METEOSAT-4/AMV +8014 METEOSAT-5/AMV METEOSAT-5/AMV +8005 METEOSAT-6/AMV METEOSAT-6/AMV +8006 METEOSAT-7/AMV METEOSAT-7/AMV +8007 METEOSAT-8/AMV METEOSAT-8/AMV +8008 METEOSAT-9/AMV METEOSAT-9/AMV +8009 GMS-5/AMV GMS-5/AMV +8010 MTSAT-1R/AMV MTSAT-1R/AMV +8011 GOES-9/WV GOES-9/WV +8012 GOES-10/AMV GOES-10/AMV +8013 GOES-11/AMV GOES-11/AMV +8014 GOES-12/AMV GOES-12/AMV +8015 NOAA-15/AVHRR NOAA-15/AVHRR +8016 NOAA-16/AVHRR NOAA-16/AVHRR +8017 NOAA-17/AVHRR NOAA-17/AVHRR +8018 NOAA-18/AVHRR NOAA-18/AVHRR +8019 NOAA-19/AVHRR NOAA-19/AVHRR +8020 TERRA/MODIS TERRA/MODIS +8021 AQUA/MODIS AQUA/MODIS +8022 FY-2C/IR FY-2C/IR +9001 ERS/SCATT ERS/SCATT +9002 ERS/SCATT ERS/SCATT +9003 ERS-2/SCATT ERS-2/SCATT +9004 QuickSCAT/SeaWind QuickSCAT/SeaWind +9005 METOP-A/ASCAT METOP-A/ASCAT +10001 DSMP-7/SSMI DSMP-7/SSMI +10002 DSMP-8/SSMI DSMP-8/SSMI +10003 DSMP-9/SSMI DSMP-9/SSMI +10004 DSMP-10/SSMI DSMP-10/SSMI +10005 DSMP-11/SSMI DSMP-11/SSMI +10006 DSMP-13/SSMI DSMP-13/SSMI +10007 DSMP-14/SSMI DSMP-14/SSMI +10008 DSMP-15/SSMI DSMP-15/SSMI +10009 DSMP-8/SSMI DSMP-8/SSMI +10010 DSMP-9/SSMI DSMP-9/SSMI +10011 DSMP-10/SSMI DSMP-10/SSMI +10012 DSMP-11/SSMI DSMP-11/SSMI +10013 DSMP-13/SSMI DSMP-13/SSMI +10014 DSMP-14/SSMI DSMP-14/SSMI +10015 DSMP-15/SSMI DSMP-15/SSMI +11001 METOP-A/IASI METOP-A/IASI +12001 AQUA/AIRS AQUA/AIRS +13001 DMSP-16/SSMIS DMSP-16/SSMIS +14001 TRMM/TMI TRMM/TMI +15001 AQUA/AMSRE AQUA/AMSRE +16001 Automatic-Land Automatic-Land +16002 Manual-Land Manual-Land +16003 Abbreviated-SYNOP Abbreviated-SYNOP +16004 METAR METAR +16005 DRIBU DRIBU +16006 Automatic-SHIP Automatic-SHIP +16007 Reduced-SHIP Reduced-SHIP +16008 SHIP SHIP +16009 Abbreviated-SHIP Abbreviated-SHIP +16010 DRIBU-BATHY DRIBU-BATHY +16011 DRIBU-TESAC DRIBU-TESAC +16012 Ground-Based-GPS Ground-Based-GPS +16013 Land-PILOT Land-PILOT +16014 PILOT-SHIP PILOT-SHIP +16015 American-WindProfilers American-WindProfilers +16016 American-WindProfilers American-WindProfilers +16017 European-WindProfilers European-WindProfilers +16018 Japanese-WindProfilers Japanese-WindProfilers +16019 TEMP-SHIP TEMP-SHIP +16020 DROP-Sonde DROP-Sonde +16021 Mobile-TEMP Mobile-TEMP +16022 Land-TEMP Land-TEMP +16023 ROCOB-TEMP ROCOB-TEMP +16024 SHIP-ROCOB SHIP-ROCOB +16025 European-WindProfilers European-WindProfilers +16026 AIREP AIREP +16027 CODAR CODAR +16028 COLBA COLBA +16029 AMDAR AMDAR +16030 ACARS ACARS +16031 PAOB PAOB +16032 PAOB PAOB +16033 SATOB_Temperature SATOB_Temperature +16034 SATOB_Wind SATOB_Wind +16035 SATOB_Temperature SATOB_Temperature +16036 SATOB_Temperature SATOB_Temperature +16037 SATEM_500km SATEM_500km +16038 SATEM_500km SATEM_500km +16039 SATEM_500km SATEM_500km +16040 SATEM_500km SATEM_500km +16041 SATEM_250km SATEM_250km +16042 SATEM_250km SATEM_250km +16043 SATEM_250km SATEM_250km +16044 SATEM_250km SATEM_250km +17001 Automatic_Land Automatic_Land +17002 Manual_Land Manual_Land +17003 Abbreviated_SYNOP Abbreviated_SYNOP +17004 METAR METAR +17005 DRIBU DRIBU +17006 Automatic_SHIP Automatic_SHIP +17007 Reduced_SHIP Reduced_SHIP +17008 SHIP SHIP +17009 Abbreviated-SHIP Abbreviated-SHIP +17010 DRIBU-BATHY DRIBU-BATHY +17011 DRIBU-TESAC DRIBU-TESAC +17012 Ground-Based_GPS Ground-Based_GPS +17013 Land-PILOT Land-PILOT +17014 PILOT-SHIP PILOT-SHIP +17015 American-Wind American-Wind +17016 American-Wind American-Wind +17017 European-Wind European-Wind +17018 Japanese-Wind Japanese-Wind +17019 TEMP-SHIP TEMP-SHIP +17020 DROP-Sonde DROP-Sonde +17021 Mobile-TEMP Mobile-TEMP +17022 Land-TEMP Land-TEMP +17023 ROCOB-TEMP ROCOB-TEMP +17024 SHIP-ROCOB SHIP-ROCOB diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table b/eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table new file mode 100644 index 00000000..cb80dc4e --- /dev/null +++ b/eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table @@ -0,0 +1,31 @@ +#Code Table obstat.4.0: List of variable number +110 P Pressure (Pa) + 1 Z Geopotential height (m) + 57 Z Geopotential height (m) + 3 U zonal component of wind (m/s) + 4 V meridional component of wind (m/s) + 41 10mU 10 m zonal component of wind (m/s) + 42 10mV 10 m meridional component of wind (m/s) +125 Amb_10mU 10 m zonal ambiguous component of wind (m/s) +124 Amb_10mV 10 m meridional ambiguous component of wind (m/s) +111 DD wind direction (DD) degree +112 FF wind speed (FF) m/s + 2 T Temperature (K) + 39 T2m 2m temperature (K) + 59 DewPT Dew point temperature (K) +119 BT Brightness temperature (K) + 7 SHU specific humidity (Kg/kg) + 9 PWC precipitable water content (Kg/m2) + 58 RH 2m relative humidity (%) +123 LWC liquid water content (Kg/m2) +206 Ozone integrated ozone density (O3) DU +128 Path_delay Atmospheric path delay +162 Bending_Angle Bending Angle (Alpha) Radians +174 Aerosol Aerosol +181 NO2 Nitrogen dioxide (NO2) +182 SO2 Sulphur dioxide (SO2) +183 CO Carbon monoxide (CO) +184 HCHO Formaldehyde (HCHO) +185 GO3 GEMS ozone (GO3) +186 CO2 Carbone dioxide (CO2) +188 CH4 Methane (CH4) diff --git a/eccodes/definitions/grib3/template.10.0.def b/eccodes/definitions/grib3/template.10.0.def new file mode 100644 index 00000000..96685a9c --- /dev/null +++ b/eccodes/definitions/grib3/template.10.0.def @@ -0,0 +1,41 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 10.0, Grid point data - simple packing +# Octets 6-nn : Binary data values - binary string, with each +# (scaled) + +meta codedValues data_g2simple_packing( + section10Length, + offsetBeforeData, + offsetSection10, + unitsFactor, + unitsBias, + changingPrecision, + numberOfValues, + bitsPerValue, + referenceValue, + binaryScaleFactor, + decimalScaleFactor, + optimizeScaleFactor +): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; +meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; + +alias data.packedValues=codedValues; + +template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions/grib3/template.3.0.def b/eccodes/definitions/grib3/template.3.0.def new file mode 100644 index 00000000..bf36bce1 --- /dev/null +++ b/eccodes/definitions/grib3/template.3.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 3.0, Forecast point in time + +# Forecast point in time +include "grib3/template.component.3.0.def"; diff --git a/eccodes/definitions/grib3/template.3.110.def b/eccodes/definitions/grib3/template.3.110.def new file mode 100644 index 00000000..480f5045 --- /dev/null +++ b/eccodes/definitions/grib3/template.3.110.def @@ -0,0 +1,44 @@ +# (C) Copyright 2005- 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. +# + + +# TEMPLATE 3.110, Equatorial azimuthal equidistant projection +include "grib2/template.3.shape_of_the_earth.def"; + +# Nx - number of points along X-axis +unsigned[4] numberOfPointsAlongXAxis : dump ; + +alias Nx = numberOfPointsAlongXAxis; +# Ny - number of points along Y-axis +unsigned[4] numberOfPointsAlongYAxis : dump ; + +alias Ny = numberOfPointsAlongYAxis; +# La1 - latitude of tangency point +# (centre of grid) +signed[4] latitudeOfTangencyPoint : dump ; + +alias La1 = latitudeOfTangencyPoint; +# Lo1 - longitude of tangency point +unsigned[4] longitudeOfTangencyPoint : dump ; + +alias Lo1 = longitudeOfTangencyPoint; +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; + +# Dx - X-direction grid length in units of 10 -3 m as measured at the point of the axis +unsigned[4] Dx : dump ; + +# Dy - Y-direction grid length in units of 10 -3 m as measured at the point of the axis +unsigned[4] Dy : dump ; + +# Projection centre flag +unsigned[1] projectionCentreFlag : dump ; + +include "grib2/template.3.scanning_mode.def"; + diff --git a/eccodes/definitions/grib3/template.3.140.def b/eccodes/definitions/grib3/template.3.140.def new file mode 100644 index 00000000..58ce8901 --- /dev/null +++ b/eccodes/definitions/grib3/template.3.140.def @@ -0,0 +1,71 @@ +# (C) Copyright 2005- 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 2/template.3.140 ---------------------------------------------------------------------- +# TEMPLATE 3.140, Lambert azimuthal equal area projection +include "grib2/template.3.shape_of_the_earth.def"; + +# Nx - number of points along X-axis +unsigned[4] numberOfPointsAlongXAxis : dump ; +alias Nx = numberOfPointsAlongXAxis; + +# Ny - number of points along Y-axis +unsigned[4] numberOfPointsAlongYAxis : dump ; +alias Ny = numberOfPointsAlongYAxis; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint: edition_specific ; +alias La1 = latitudeOfFirstGridPoint; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint + ,one,grib3divider,truncateDegrees) : dump; +#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor): no_copy; + +# Lo1 - longitude of first grid point +signed[4] longitudeOfFirstGridPoint: edition_specific ; +alias La1 = longitudeOfFirstGridPoint; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint + ,one,grib3divider,truncateDegrees) : dump; +#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; + +signed[4] standardParallelInMicrodegrees : dump; +alias standardParallel=standardParallelInMicrodegrees; + +signed[4] centralLongitudeInMicrodegrees : dump; +alias centralLongitude=centralLongitudeInMicrodegrees; + +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; + +# Dx - X-direction grid length in millimetres +unsigned[4] xDirectionGridLengthInMillimetres : dump ; +alias Dx = xDirectionGridLengthInMillimetres ; + +# Dy - Y-direction grid length in millimetres +unsigned[4] yDirectionGridLengthInMillimetres : dump ; +alias Dy = yDirectionGridLengthInMillimetres ; + +include "grib2/template.3.scanning_mode.def"; + +iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, + radius,Nx,Ny, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + standardParallel,centralLongitude, + Dx,Dy, + iScansNegatively, + jScansPositively, + jPointsAreConsecutive, + alternativeRowScanning); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); + +# END 2/template.3.140 ---------------------------------------------------------------------- diff --git a/eccodes/definitions/grib3/template.3.20.def b/eccodes/definitions/grib3/template.3.20.def new file mode 100644 index 00000000..af4afaae --- /dev/null +++ b/eccodes/definitions/grib3/template.3.20.def @@ -0,0 +1,89 @@ +# (C) Copyright 2005- 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 2/template.3.20 ---------------------------------------------------------------------- +# TEMPLATE 3.20, Polar stereographic projection +include "grib2/template.3.shape_of_the_earth.def"; +transient oneThousand=1000; + +# Nx - number of points along X-axis +unsigned[4] Nx : dump; +alias Ni = Nx; +alias numberOfPointsAlongXAxis = Nx; +alias geography.Nx=Nx; + +# Ny - number of points along Y-axis +unsigned[4] Ny : dump; +alias Nj = Ny; +alias numberOfPointsAlongYAxis = Ny; +alias geography.Ny=Ny; + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific ; +meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib3divider,truncateDegrees) : dump; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib3divider,truncateDegrees) : dump; +alias Lo1 = longitudeOfFirstGridPoint; + +# Resolution and component flag +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; + +# LaD - Latitude where Dx and Dy are specified +signed[4] LaD : edition_specific; +alias latitudeWhereDxAndDyAreSpecified=LaD; +meta geography.LaDInDegrees scale(LaD,oneConstant,grib3divider,truncateDegrees) : dump; +alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; + +# LoV - orientation of the grid +# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) +# along which latitude increases as the y-coordinate increases +signed[4] orientationOfTheGrid : edition_specific; +alias LoV = orientationOfTheGrid ; +meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib3divider,truncateDegrees) : dump; + +# Dx - X-direction grid length +# Grid length is in units of 10-3 m at the latitude specified by LaD +unsigned[4] Dx : edition_specific; +meta geography.DxInMetres scale(Dx,one,thousand,truncateDegrees) : dump; +alias xDirectionGridLength=Dx; + +# Dy - Y-direction grid length +# Grid length is in units of 10-3 m at the latitude specified by LaD +unsigned[4] Dy : edition_specific; +meta geography.DyInMetres scale(Dy,one,thousand,truncateDegrees) : dump; +alias yDirectionGridLength=Dy; + +# Projection centre flag +flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +# If bit 1 is 0, then the North Pole is on the projection plane +# If bit 1 is 1, then the South Pole is on the projection plane +flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 + +include "grib2/template.3.scanning_mode.def"; + + +iterator polar_stereographic(numberOfPoints,missingValue,values, + radius,Nx,Ny, + latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, + southPoleOnProjectionPlane, + orientationOfTheGridInDegrees, + LaDInDegrees, + DxInMetres,DyInMetres, + iScansNegatively, + jScansPositively, + jPointsAreConsecutive, + alternativeRowScanning); + + +# END 2/template.3.20 ---------------------------------------------------------------------- diff --git a/eccodes/definitions/grib3/template.3.resolution_flags.def b/eccodes/definitions/grib3/template.3.resolution_flags.def new file mode 100644 index 00000000..41b11dfe --- /dev/null +++ b/eccodes/definitions/grib3/template.3.resolution_flags.def @@ -0,0 +1,46 @@ +# (C) Copyright 2005- 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. +# + +# Resolution and component flags +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; + +# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 +# (most significant to least significant) + +flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; +flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); +flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); +flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); +flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; +flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; + +concept ijDirectionIncrementGiven { + '1' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 0; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 0; + } +} + +alias DiGiven=iDirectionIncrementGiven; +alias DjGiven=jDirectionIncrementGiven; + diff --git a/eccodes/definitions/grib3/template.4.0.def b/eccodes/definitions/grib3/template.4.0.def new file mode 100644 index 00000000..8fa46dee --- /dev/null +++ b/eccodes/definitions/grib3/template.4.0.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.0, Latitude/longitude regular grid on ellipsoidal planet + +# Ellipsoid of revolution defined with axis lengths +include "grib3/template.component.4.0.def"; + +# Latitude/longitude regular grid +include "grib3/template.component.4.1.def"; diff --git a/eccodes/definitions/grib3/template.4.1.def b/eccodes/definitions/grib3/template.4.1.def new file mode 100644 index 00000000..477162a6 --- /dev/null +++ b/eccodes/definitions/grib3/template.4.1.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.1, Rotated latitude/longitude regular grid on ellipsoidal planet + +# Ellipsoid of revolution defined with axis lengths +include "grib3/template.component.4.0.def" + +# Latitude/longitude regular grid +include "grib3/template.component.4.1.def" + +# Rotation of latitude/longitude coordinate system +include "grib3/template.component.4.2.def" diff --git a/eccodes/definitions/grib3/template.4.2.def b/eccodes/definitions/grib3/template.4.2.def new file mode 100644 index 00000000..474ef1c3 --- /dev/null +++ b/eccodes/definitions/grib3/template.4.2.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.2, Stretched latitude/longitude regular grid on ellipsoidal planet + +# Ellipsoid of revolution defined with axis lengths +include "grib3/template.component.4.0.def" + +# Latitude/longitude regular grid +include "grib3/template.component.4.1.def" + +# Stretching of latitude/longitude coordinate system +include "grib3/template.component.4.3.def" diff --git a/eccodes/definitions/grib3/template.4.3.def b/eccodes/definitions/grib3/template.4.3.def new file mode 100644 index 00000000..93099694 --- /dev/null +++ b/eccodes/definitions/grib3/template.4.3.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 4.3, Stretched and rotated latitude/longitude regular grid on ellipsoidal planet + +# Ellipsoid of revolution defined with axis lengths +include "grib3/template.component.4.0.def" + +# Latitude/longitude regular grid +include "grib3/template.component.4.1.def" + +# Rotation of latitude/longitude coordinate system +include "grib3/template.component.4.2.def" + +# Stretching of latitude/longitude coordinate system +include "grib3/template.component.4.3.def" diff --git a/eccodes/definitions/grib3/template.4.horizontal.def b/eccodes/definitions/grib3/template.4.horizontal.def new file mode 100755 index 00000000..bc259c77 --- /dev/null +++ b/eccodes/definitions/grib3/template.4.horizontal.def @@ -0,0 +1,133 @@ +# (C) Copyright 2005- 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. +# + +# Type of first fixed surface +codetable[1] typeOfFirstFixedSurface ('4.5.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; +meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; +meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; + +# Scale factor of first fixed surface +signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of first fixed surface +unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Type of second fixed surface +codetable[1] typeOfSecondFixedSurface ('4.5.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; +meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; +meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; + +# Scale factor of second fixed surface +signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of second fixed surface +unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +transient pressureUnits="hPa"; + +concept_nofail vertical.typeOfLevel (unknown) { +#set uses the last one +#get returns the first match + 'surface' = { typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } + 'cloudBase' = { typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255; } + 'cloudTop' = { typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255; } + 'isothermZero' = { typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255; } + 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255; } + 'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} + 'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} + 'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255; } + 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} + 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} + 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa'; } + 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} + 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} + 'meanSea' = { typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255; } + 'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} + 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} + 'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} + 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103;typeOfSecondFixedSurface=103;} + 'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} + 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} + 'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} + 'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} + 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } + 'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} + 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} + 'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} + 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} + 'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} + 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108;typeOfSecondFixedSurface=108;} + 'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} + 'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} + +# In the case of Generalized vertical height coordinates, NV must be 6 + 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} + 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} + + 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} + 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} + 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} + 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} + 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +} + +alias levelType=typeOfFirstFixedSurface; + +if (typeOfSecondFixedSurface == 255) { + # Only one surface + meta level g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + transient bottomLevel=level; # Do not use alias (see GRIB-725) + transient topLevel=level; +} else { + # Two surfaces + meta topLevel g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + meta bottomLevel g2level(typeOfSecondFixedSurface, + scaleFactorOfSecondFixedSurface, + scaledValueOfSecondFixedSurface, + pressureUnits) :dump; + alias level=topLevel; # (see GRIB-725) +} +alias ls.level=level; +alias vertical.level=level; +alias vertical.bottomLevel=bottomLevel; +alias vertical.topLevel=topLevel; + +alias extraDim=zero; +if (defined(extraDimensionPresent)) { + if (extraDimensionPresent) { + alias extraDim=one; + } +} +if (extraDim) { + alias mars.levelist = dimension; + alias mars.levtype = dimensionType; +} else { + # See GRIB-74 why we store the pressureUnits in a transient + transient tempPressureUnits=pressureUnits; + if (!(typeOfLevel is "surface")) { + if (tempPressureUnits is "Pa") { + meta marsLevel scale(level,one,hundred) : read_only; + alias mars.levelist=marsLevel; + } else { + alias mars.levelist = level; + } + } + alias mars.levtype = typeOfFirstFixedSurface; + # GRIB-372: levelist alias does not pertain to surface parameters + if (levtype is "sfc") { + unalias mars.levelist; + } +} +alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions/grib3/template.4.resolution_flags.def b/eccodes/definitions/grib3/template.4.resolution_flags.def new file mode 100644 index 00000000..41b11dfe --- /dev/null +++ b/eccodes/definitions/grib3/template.4.resolution_flags.def @@ -0,0 +1,46 @@ +# (C) Copyright 2005- 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. +# + +# Resolution and component flags +flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; + +# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 +# (most significant to least significant) + +flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; +flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); +flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); +flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); +flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; +flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; +flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; + +concept ijDirectionIncrementGiven { + '1' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 1; + jDirectionIncrementGiven = 0; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 1; + } + '0' = { + iDirectionIncrementGiven = 0; + jDirectionIncrementGiven = 0; + } +} + +alias DiGiven=iDirectionIncrementGiven; +alias DjGiven=jDirectionIncrementGiven; + diff --git a/eccodes/definitions/grib3/template.4.scanning_mode.def b/eccodes/definitions/grib3/template.4.scanning_mode.def new file mode 100644 index 00000000..718e2eda --- /dev/null +++ b/eccodes/definitions/grib3/template.4.scanning_mode.def @@ -0,0 +1,45 @@ +# (C) Copyright 2005- 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. +# + +flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; + +# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 +flagbit iScansNegatively(scanningMode,7) : dump; # WMO bit 1 +flagbit jScansPositively(scanningMode,6) : dump; # WMO bit 2 +flagbit jPointsAreConsecutive(scanningMode,5) : dump; +flagbit alternativeRowScanning(scanningMode,4) = 0 : edition_specific,dump; + +if (jPointsAreConsecutive) { + alias numberOfRows=Ni; + alias numberOfColumns=Nj; +} else { + alias numberOfRows=Nj; + alias numberOfColumns=Ni; +} + +alias geography.iScansNegatively=iScansNegatively; +alias geography.jScansPositively=jScansPositively; +alias geography.jPointsAreConsecutive=jPointsAreConsecutive; + +transient iScansPositively = !iScansNegatively : constraint; + +flagbit scanningMode5(scanningMode,3) = 0: read_only; +flagbit scanningMode6(scanningMode,2) = 0: read_only; +flagbit scanningMode7(scanningMode,1) = 0: read_only; +flagbit scanningMode8(scanningMode,0) = 0: read_only; + +meta swapScanningX change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + xFirst,xLast,x) : edition_specific,hidden,no_copy; +alias swapScanningLon = swapScanningX; + +meta swapScanningY change_scanning_direction( values,Ni,Nj, + iScansNegatively,jScansPositively, + yFirst,yLast,y) : edition_specific,hidden,no_copy; +alias swapScanningLat = swapScanningY; diff --git a/eccodes/definitions/grib3/template.5.0.def b/eccodes/definitions/grib3/template.5.0.def new file mode 100644 index 00000000..dd15efcb --- /dev/null +++ b/eccodes/definitions/grib3/template.5.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 5.0, Vertical level + +# Vertical level +include "grib3/template.component.5.0.def"; diff --git a/eccodes/definitions/grib3/template.5.1.def b/eccodes/definitions/grib3/template.5.1.def new file mode 100644 index 00000000..b2f4041b --- /dev/null +++ b/eccodes/definitions/grib3/template.5.1.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 5.1, Vertical layer + +# Vertical layer +include "grib3/template.component.5.1.def"; diff --git a/eccodes/definitions/grib3/template.6.0.def b/eccodes/definitions/grib3/template.6.0.def new file mode 100644 index 00000000..f30084b0 --- /dev/null +++ b/eccodes/definitions/grib3/template.6.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 6.0, Forecast, analysis or observation + +# Process type and identifier +include "grib3/template.component.6.0.def"; diff --git a/eccodes/definitions/grib3/template.6.1.def b/eccodes/definitions/grib3/template.6.1.def new file mode 100644 index 00000000..5f9e77fa --- /dev/null +++ b/eccodes/definitions/grib3/template.6.1.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 6.1, Individual ensemble forecast or analysis + +# Process type and identifier +include "grib3/template.component.6.0.def"; + +# Ensemble size +include "grib3/template.component.6.1.def"; + +# Ensemble member +include "grib3/template.component.6.2.def"; diff --git a/eccodes/definitions/grib3/template.6.2.def b/eccodes/definitions/grib3/template.6.2.def new file mode 100644 index 00000000..6fd511fd --- /dev/null +++ b/eccodes/definitions/grib3/template.6.2.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 6.2, Statistical post-processing of all ensemble members + +# Process type and identifier +include "grib3/template.component.6.0.def"; + +# Ensemble size +include "grib3/template.component.6.1.def"; + +# Statistical post-processing of ensemble members +include "grib3/template.component.6.3.def"; diff --git a/eccodes/definitions/grib3/template.7.0.def b/eccodes/definitions/grib3/template.7.0.def new file mode 100644 index 00000000..ab6c102d --- /dev/null +++ b/eccodes/definitions/grib3/template.7.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 7.0, Observable property by discipline, category and number + +# Observable property by discipline, category and number +include "grib3/template.component.7.0.def"; diff --git a/eccodes/definitions/grib3/template.7.1.def b/eccodes/definitions/grib3/template.7.1.def new file mode 100644 index 00000000..e101423a --- /dev/null +++ b/eccodes/definitions/grib3/template.7.1.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 7.1, Observable Property with units conversion + +# Observable property by discipline, category and number +include "grib3/template.component.7.0.def"; + +# Units conversion +include "grib3/template.component.7.1.def"; diff --git a/eccodes/definitions/grib3/template.7.2.def b/eccodes/definitions/grib3/template.7.2.def new file mode 100644 index 00000000..8ed124fb --- /dev/null +++ b/eccodes/definitions/grib3/template.7.2.def @@ -0,0 +1,16 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 7.2, Atmospheric chemical or physical constituents + +# Observable property by discipline, category and number +include "grib3/template.component.7.0.def"; + +# Chemical or physical constituents +include "grib3/template.component.7.2.def"; diff --git a/eccodes/definitions/grib3/template.7.3.def b/eccodes/definitions/grib3/template.7.3.def new file mode 100644 index 00000000..c5470746 --- /dev/null +++ b/eccodes/definitions/grib3/template.7.3.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 7.3, Aerosol physical property + +# Observable property by discipline, category and number +include "grib3/template.component.7.0.def"; + +# Chemical or physical constituents +include "grib3/template.component.7.2.def"; + +# Aerosol size +include "grib3/template.component.7.3.def"; diff --git a/eccodes/definitions/grib3/template.7.4.def b/eccodes/definitions/grib3/template.7.4.def new file mode 100644 index 00000000..4bb1b150 --- /dev/null +++ b/eccodes/definitions/grib3/template.7.4.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 7.4, Aerosol optical property + +# Observable property by discipline, category and number +include "grib3/template.component.7.0.def"; + +# Chemical or physical constituents +include "grib3/template.component.7.2.def"; + +# Aerosol size +include "grib3/template.component.7.3.def"; + +# Radiation wavelength interval +include "grib3/template.component.7.4.def"; diff --git a/eccodes/definitions/grib3/template.8.0.def b/eccodes/definitions/grib3/template.8.0.def new file mode 100644 index 00000000..3a9a0fff --- /dev/null +++ b/eccodes/definitions/grib3/template.8.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 8.0, Simple packing + +# Simple packing +include "grib3/template.component.8.0.def"; diff --git a/eccodes/definitions/grib3/template.8.1.def b/eccodes/definitions/grib3/template.8.1.def new file mode 100644 index 00000000..c05cebe0 --- /dev/null +++ b/eccodes/definitions/grib3/template.8.1.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 8.1, IEEE floating point + +# IEEE floating point +include "grib3/template.component.8.1.def"; diff --git a/eccodes/definitions/grib3/template.8.missing_value.def b/eccodes/definitions/grib3/template.8.missing_value.def new file mode 100755 index 00000000..9ebab198 --- /dev/null +++ b/eccodes/definitions/grib3/template.8.missing_value.def @@ -0,0 +1,15 @@ +# Missing value management + +# Management of explicitly missing values is an alternative to bit-map use +# within the Overlay Section. +# It is intended to reduce the whole GRIB message size and to provide better +# performance when decoding data with missing values + +# default = 0 means No explicit missing values included within data values +codetable[1] missingValueManagementUsed ('8.2.table',masterDir,localDir)=0; + +# Primary missing value substitute +unsigned[4] primaryMissingValueSubstitute; + +# Secondary missing value substitute +unsigned[4] secondaryMissingValueSubstitute; diff --git a/eccodes/definitions/grib3/template.8.original_values.def b/eccodes/definitions/grib3/template.8.original_values.def new file mode 100644 index 00000000..36e74f7e --- /dev/null +++ b/eccodes/definitions/grib3/template.8.original_values.def @@ -0,0 +1,2 @@ +# Type of original field values +codetable[1] typeOfOriginalFieldValues ('8.1.table',masterDir,localDir) = 0; # Default set to floating diff --git a/eccodes/definitions/grib3/template.8.packing.def b/eccodes/definitions/grib3/template.8.packing.def new file mode 100755 index 00000000..218095b8 --- /dev/null +++ b/eccodes/definitions/grib3/template.8.packing.def @@ -0,0 +1,17 @@ +# Reference value (R) +# The copy_ok means that the value is copied when changing the representation +# e.g. from jpeg to simple packing. +ieeefloat referenceValue : read_only, copy_ok; +meta referenceValueError reference_value_error(referenceValue,ieee); + +# Binary scale factor (E) +signed[2] binaryScaleFactor : read_only, copy_ok; + +# Decimal scale factor (D) +signed[2] decimalScaleFactor ; + +# Number of bits used for each packed value for simple packing, or for each group reference +# value for complex packing or spatial differencing +unsigned[1] bitsPerValue; +alias numberOfBits = bitsPerValue; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; diff --git a/eccodes/definitions/grib3/template.9.0.def b/eccodes/definitions/grib3/template.9.0.def new file mode 100644 index 00000000..9c5dfd50 --- /dev/null +++ b/eccodes/definitions/grib3/template.9.0.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- 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. +# + +# TEMPLATE 9.0, Bitmap + +# Bitmap +include "grib3/template.component.9.0.def"; diff --git a/eccodes/definitions/grib3/template.component.3.0.def b/eccodes/definitions/grib3/template.component.3.0.def new file mode 100644 index 00000000..18528248 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.3.0.def @@ -0,0 +1,17 @@ +# Time Domain Template Component 3.0 - Forecast point in time + +# Hours of observational data cut-off after reference time +# Note: Hours greater than 65534 will be coded as 65534 +unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('3.3.table',masterDir,localDir) : dump; +codetable[1] stepUnits 'stepUnits.table' = 1 : transient,dump,no_copy; + +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/eccodes/definitions/grib3/template.component.4.0.def b/eccodes/definitions/grib3/template.component.4.0.def new file mode 100644 index 00000000..179c6a8f --- /dev/null +++ b/eccodes/definitions/grib3/template.component.4.0.def @@ -0,0 +1,25 @@ +# Horizontal Domain Template Component 4.0 - Ellipsoid of revolution defined with axis lengths + +# Scale factor of length of semi-major axis +unsigned[1] scaleFactorOfLengthOfSemiMajorAxis = missing() : can_be_missing, edition_specific; + +# Scaled value of length of semi-major axis (equatorial radius) +unsigned[4] scaledValueOfLengthOfSemiMajorAxis = missing(): can_be_missing, edition_specific; + +# Scale factor of prime meridian offset +unsigned[1] scaleFactorOfPrimeMeridianOffset = missing(): can_be_missing, edition_specific; + +# Scaled value of prime meridian offset +# Note: Basic angle of the initial production domain and subdivisions of this basic angle are +# provided to manage cases where the recommended unit of 10^-6 degrees is not applicable +# to describe the extreme longitudes and latitudes, and direction increments. +# For these descriptors, the unit is equal to the ratio of the basic angle and the subdivisions number. +# For ordinary cases, zero and missing values should be coded, equivalent to respective values +# of 1 and 10^6 (10^-6 degrees unit) +unsigned[4] scaledValueOfPrimeMeridianOffset = missing(): can_be_missing, edition_specific; + +# Scale factor of length of semi-minor axis +unsigned[1] scaleFactorOfLengthOfSemiMinorAxis = missing() : can_be_missing, edition_specific; + +# Scaled value of length of semi-minor axis (distance from ellipsoid centre to pole) +unsigned[4] scaledValueOfLengthOfSemiMinorAxis = missing() : can_be_missing, edition_specific; diff --git a/eccodes/definitions/grib3/template.component.4.1.def b/eccodes/definitions/grib3/template.component.4.1.def new file mode 100644 index 00000000..3fc6ff0c --- /dev/null +++ b/eccodes/definitions/grib3/template.component.4.1.def @@ -0,0 +1,133 @@ +# Horizontal Domain Template Component 4.1 - Latitude/longitude regular grid + +# Ni - number of points along a parallel +unsigned[4] Ni : dump; # Note: This is for a REGULAR GRID so Ni cannot be missing +alias numberOfPointsAlongAParallel=Ni; +alias Nx = Ni; +alias geography.Ni=Ni; + +# Nj - number of points along a meridian +unsigned[4] Nj : dump; +alias numberOfPointsAlongAMeridian=Nj; +alias Ny = Nj ; +alias geography.Nj=Nj; + +# Basic angle of the initial production domain +unsigned[4] basicAngleOfTheInitialProductionDomain = 0; +transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; + +transient angleMultiplier = 1; +transient mAngleMultiplier = 1000000; +when (basicAngleOfTheInitialProductionDomain == 0) { + set angleMultiplier = 1; + set mAngleMultiplier = 1000000; +} else { + set angleMultiplier = basicAngleOfTheInitialProductionDomain; + set mAngleMultiplier = mBasicAngle; +} + +# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; + +transient angleDivisor = 1000000; +when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { + set angleDivisor = 1000000; +} else { + set angleDivisor = subdivisionsOfBasicAngle; +} + +# Note: Basic angle of the initial production domain and subdivisions of this basic angle are +# provided to manage cases where the recommended unit of 10^-6 degrees is not applicable +# to describe the extreme longitudes and latitudes, and direction increments. +# For these descriptors, the unit is equal to the ratio of the basic angle and the subdivisions number. +# For ordinary cases, zero and missing values should be coded, equivalent to respective values +# of 1 and 10^6 (10^-6 degrees unit) + +# La1 - latitude of first grid point +signed[4] latitudeOfFirstGridPoint : edition_specific; +alias La1 = latitudeOfFirstGridPoint; + +# Lo1 - longitude of first grid point +signed[4] longitudeOfFirstGridPoint ; +alias Lo1 = longitudeOfFirstGridPoint; + +include "grib3/template.4.resolution_flags.def" + +# La2 - latitude of last grid point +signed[4] latitudeOfLastGridPoint : edition_specific; +alias La2 = latitudeOfLastGridPoint; + +# Lo2 - longitude of last grid point +signed[4] longitudeOfLastGridPoint : edition_specific; +alias Lo2 = longitudeOfLastGridPoint; + +# Di - i direction increment +# Direction increments are unsigned and direction of increment is represented in the scanning mode +unsigned[4] iDirectionIncrement : can_be_missing,edition_specific; +alias Di = iDirectionIncrement; +alias Dx = iDirectionIncrement; + +# Dj - j direction increment +# Direction increments are unsigned and direction of increment is represented in the scanning mode +unsigned[4] jDirectionIncrement : can_be_missing,edition_specific; +alias Dj = jDirectionIncrement; +alias Dy = jDirectionIncrement; + +include "grib3/template.4.scanning_mode.def"; + + +meta g2grid g2grid( + latitudeOfFirstGridPoint, + longitudeOfFirstGridPoint, + latitudeOfLastGridPoint, + longitudeOfLastGridPoint, + iDirectionIncrement, + jDirectionIncrement, + basicAngleOfTheInitialProductionDomain, + subdivisionsOfBasicAngle + ); + +meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; +meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; +meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; +meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; + +alias xFirst=longitudeOfFirstGridPointInDegrees; +alias yFirst=latitudeOfFirstGridPointInDegrees; +alias xLast=longitudeOfLastGridPointInDegrees; +alias yLast=latitudeOfLastGridPointInDegrees; + +meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4, + iDirectionIncrementGiven) : can_be_missing,dump; + +meta geography.jDirectionIncrementInDegrees g2latlon(g2grid,5, + jDirectionIncrementGiven) : can_be_missing,dump; + +alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; +alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; +alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; +alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; +alias DiInDegrees = iDirectionIncrementInDegrees; +alias DxInDegrees = iDirectionIncrementInDegrees; +alias DjInDegrees = jDirectionIncrementInDegrees; +alias DyInDegrees = jDirectionIncrementInDegrees; + +#_if ( missing(Ni) && PLPresent == 1 ) { +# iterator latlon_reduced(numberOfPoints,missingValue,values, +# latitudeFirstInDegrees,longitudeFirstInDegrees, +# latitudeLastInDegrees,longitudeLastInDegrees, +# Nj,DjInDegrees,pl); +# nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); +#} else { +# iterator latlon(numberOfPoints,missingValue,values, +# longitudeFirstInDegrees,DiInDegrees , +# Ni,Nj,iScansNegatively, +# latitudeFirstInDegrees, DjInDegrees,jScansPositively,jPointsAreConsecutive); +# nearest regular(values,radius,Ni,Nj); +#} +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions/grib3/template.component.4.2.def b/eccodes/definitions/grib3/template.component.4.2.def new file mode 100644 index 00000000..fd314fea --- /dev/null +++ b/eccodes/definitions/grib3/template.component.4.2.def @@ -0,0 +1,21 @@ +# Horizontal Domain Template Component 4.2 - Rotation of latitude/longitude coordinates system + +# Latitude of the southern pole of projection +signed[4] latitudeOfSouthernPole : no_copy; +alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; + +# Longitude of the southern pole of projection +unsigned[4] longitudeOfSouthernPole : no_copy; +alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; + +meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole, + one,grib3divider,truncateDegrees) : dump; +meta geography.longitudeOfSouthernPoleInDegrees g2lon(longitudeOfSouthernPole) : dump; + +# Angle of rotation of projection +ieeefloat angleOfRotation : dump,edition_specific ; +alias geography.angleOfRotationInDegrees=angleOfRotation; + +alias angleOfRotationOfProjection=angleOfRotation; + +alias isRotatedGrid=one; diff --git a/eccodes/definitions/grib3/template.component.4.3.def b/eccodes/definitions/grib3/template.component.4.3.def new file mode 100644 index 00000000..ad9ba670 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.4.3.def @@ -0,0 +1,20 @@ +# Horizontal Domain Template Component 4.3 - Stretching of latitude/longitude coordinates system + +label "Stretching information"; + +# Latitude of the pole of stretching +signed[4] latitudeOfThePoleOfStretching : edition_specific,no_copy; + +# Longitude of the pole of stretching +signed[4] longitudeOfThePoleOfStretching : edition_specific,no_copy; + +meta geography.latitudeOfStretchingPoleInDegrees + scale(latitudeOfThePoleOfStretching,oneConstant,grib3divider,truncateDegrees) : dump; +meta geography.longitudeOfStretchingPoleInDegrees + scale(longitudeOfThePoleOfStretching,oneConstant,grib3divider,truncateDegrees) : dump; + +# Stretching factor +unsigned[4] stretchingFactorScaled : edition_specific,no_copy; + +meta geography.stretchingFactor + scale(stretchingFactorScaled,oneConstant,grib3divider) : dump; diff --git a/eccodes/definitions/grib3/template.component.5.0.def b/eccodes/definitions/grib3/template.component.5.0.def new file mode 100644 index 00000000..50cbaa55 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.5.0.def @@ -0,0 +1,91 @@ +# Vertical Coordinate Template Component 5.0 - Vertical level + +# Type of first fixed surface +codetable[1] typeOfFirstFixedSurface ('5.1.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; +meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; +meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; + +# Scale factor of first fixed surface +signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of first fixed surface +unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +#### +transient pressureUnits="hPa"; + +concept_nofail vertical.typeOfLevel (unknown) { +#set uses the last one +#get returns the first match + 'surface' = { typeOfFirstFixedSurface=1; } + 'cloudBase' = { typeOfFirstFixedSurface=2; } + 'cloudTop' = { typeOfFirstFixedSurface=3; } + 'isothermZero' = { typeOfFirstFixedSurface=4; } + 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; } + 'maxWind' = {typeOfFirstFixedSurface=6; } + 'tropopause' = {typeOfFirstFixedSurface=7; } + 'nominalTop' = {typeOfFirstFixedSurface=8; } + 'seaBottom' = {typeOfFirstFixedSurface=9; } + 'isothermal' = {typeOfFirstFixedSurface=20; } + 'isobaricInPa' = {typeOfFirstFixedSurface=100; pressureUnits='Pa'; } + 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; } + # 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} + 'meanSea' = { typeOfFirstFixedSurface=101; } + 'heightAboveSea' = {typeOfFirstFixedSurface=102; } + # 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} + 'heightAboveGround' = {typeOfFirstFixedSurface=103; } + # 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} + 'sigma' = {typeOfFirstFixedSurface=104; } + # 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} + 'hybrid' = {typeOfFirstFixedSurface=105; } + 'hybridHeight' = {typeOfFirstFixedSurface=118; } + # 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } + 'depthBelowLand' = {typeOfFirstFixedSurface=106; } + # 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} + 'theta' = {typeOfFirstFixedSurface=107; } + # 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} + 'pressureFromGround' = {typeOfFirstFixedSurface=108; } + # 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} + 'potentialVorticity' = {typeOfFirstFixedSurface=109; } + 'eta' = {typeOfFirstFixedSurface=111; } +# In the case of Generalized vertical height coordinates, NV must be 6 + # 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} + # 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} + 'depthBelowSea' = {typeOfFirstFixedSurface=160; } + # 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} + # 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} + 'snow' = {typeOfFirstFixedSurface=114; } + # 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +} +alias levelType=typeOfFirstFixedSurface; + +# Only one surface +meta level g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; +transient bottomLevel=level; # Do not use alias (see GRIB-725) +transient topLevel=level; + +alias ls.level=level; +alias vertical.level=level; +alias vertical.bottomLevel=bottomLevel; +alias vertical.topLevel=topLevel; + +# See GRIB-74 why we store the pressureUnits in a transient +transient tempPressureUnits=pressureUnits; +if (!(typeOfLevel is "surface")) { + if (tempPressureUnits is "Pa") { + meta marsLevel scale(level,one,hundred) : read_only; + alias mars.levelist=marsLevel; + } else { + alias mars.levelist = level; + } +} +alias mars.levtype = typeOfFirstFixedSurface; +# GRIB-372: levelist alias does not pertain to surface parameters +if (levtype is "sfc") { + unalias mars.levelist; +} + +alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions/grib3/template.component.5.1.def b/eccodes/definitions/grib3/template.component.5.1.def new file mode 100644 index 00000000..cafaf2c1 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.5.1.def @@ -0,0 +1,117 @@ +# Vertical Coordinate Template Component 5.1 - Vertical layer + +# Type of first fixed surface +codetable[1] typeOfFirstFixedSurface ('5.1.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; +meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; +meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; + +# Scale factor of first fixed surface +signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of first fixed surface +unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Type of second fixed surface +codetable[1] typeOfSecondFixedSurface ('5.1.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; +meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; +meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; + +# Scale factor of second fixed surface +signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + +# Scaled value of second fixed surface +unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; + + +####### +transient pressureUnits="hPa"; + +concept_nofail vertical.typeOfLevel (unknown) { +#set uses the last one +#get returns the first match + 'surface' = { typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } + 'cloudBase' = { typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255; } + 'cloudTop' = { typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255; } + 'isothermZero' = { typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255; } + 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255; } + 'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} + 'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} + 'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255; } + 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} + 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} + 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa'; } + 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} + 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} + 'meanSea' = { typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255; } + 'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} + 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} + 'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} + 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103;typeOfSecondFixedSurface=103;} + 'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} + 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} + 'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} + 'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} + 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } + 'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} + 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} + 'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} + 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} + 'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} + 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108;typeOfSecondFixedSurface=108;} + 'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} + 'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} +# In the case of Generalized vertical height coordinates, NV must be 6 + 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} + 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} + 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} + 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} + 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} + 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} + 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +} + +alias levelType=typeOfFirstFixedSurface; + +if (typeOfSecondFixedSurface == 255) { + # Only one surface + meta level g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + transient bottomLevel=level; # Do not use alias (see GRIB-725) + transient topLevel=level; +} else { + # Two surfaces + meta topLevel g2level(typeOfFirstFixedSurface, + scaleFactorOfFirstFixedSurface, + scaledValueOfFirstFixedSurface, + pressureUnits) :dump; + meta bottomLevel g2level(typeOfSecondFixedSurface, + scaleFactorOfSecondFixedSurface, + scaledValueOfSecondFixedSurface, + pressureUnits) :dump; + alias level=topLevel; # (see GRIB-725) +} +alias ls.level=level; +alias vertical.level=level; +alias vertical.bottomLevel=bottomLevel; +alias vertical.topLevel=topLevel; + + +# See GRIB-74 why we store the pressureUnits in a transient +transient tempPressureUnits=pressureUnits; +if (!(typeOfLevel is "surface")) { + if (tempPressureUnits is "Pa") { + meta marsLevel scale(level,one,hundred) : read_only; + alias mars.levelist=marsLevel; + } else { + alias mars.levelist = level; + } +} +alias mars.levtype = typeOfFirstFixedSurface; +# GRIB-372: levelist alias does not pertain to surface parameters +if (levtype is "sfc") { + unalias mars.levelist; +} + +alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions/grib3/template.component.6.0.def b/eccodes/definitions/grib3/template.component.6.0.def new file mode 100644 index 00000000..c52b3e5d --- /dev/null +++ b/eccodes/definitions/grib3/template.component.6.0.def @@ -0,0 +1,7 @@ +# Generating Process Template Component 6.0 - Process type and identifier + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('6.1.table',masterDir,localDir) : dump; + +# Generating processes identifier (managed by the originating centre) +unsigned[1] generatingProcessIdentifier : dump; diff --git a/eccodes/definitions/grib3/template.component.6.1.def b/eccodes/definitions/grib3/template.component.6.1.def new file mode 100644 index 00000000..3329e203 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.6.1.def @@ -0,0 +1,5 @@ +# Generating Process Template Component 6.1 - Ensemble size + +# Number of members in ensemble +unsigned[2] numberOfMembersInEnsemble : dump; +alias totalNumber=numberOfMembersInEnsemble; diff --git a/eccodes/definitions/grib3/template.component.6.2.def b/eccodes/definitions/grib3/template.component.6.2.def new file mode 100644 index 00000000..d6f53ae1 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.6.2.def @@ -0,0 +1,9 @@ +# Generating Process Template Component 6.2 - Ensemble member + +# Type of ensemble member +codetable[1] typeOfEnsembleMember ('6.2.table',masterDir,localDir) = 255 : dump; + +# Member (Perturbation) number +unsigned[2] memberNumber : dump; +alias perturbationNumber=memberNumber; +alias number=memberNumber; diff --git a/eccodes/definitions/grib3/template.component.6.3.def b/eccodes/definitions/grib3/template.component.6.3.def new file mode 100644 index 00000000..ac9e411c --- /dev/null +++ b/eccodes/definitions/grib3/template.component.6.3.def @@ -0,0 +1,3 @@ +# Generating Process Template Component 6.3 - Statistical post-processing of all ensemble members + +codetable[1] typeOfStatisticalPostProcessingOfEnsembleMembers ('6.3.table',masterDir,localDir) = 255 : dump; diff --git a/eccodes/definitions/grib3/template.component.7.0.def b/eccodes/definitions/grib3/template.component.7.0.def new file mode 100644 index 00000000..a0ab0c72 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.7.0.def @@ -0,0 +1,13 @@ +# Observable Property Template Component 7.0 - Observable property by discipline, category and number + +# Parameter discipline +codetable[1] parameterDiscipline('7.1.table',masterDir,localDir) : dump; +alias discipline = parameterDiscipline; + +# Parameter category +codetable[1] parameterCategory ('7.2.[discipline:i].table',masterDir,localDir) : dump; + +# Parameter number +codetable[2] parameterNumber ('7.3.[discipline:i].[parameterCategory:i].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; diff --git a/eccodes/definitions/grib3/template.component.7.1.def b/eccodes/definitions/grib3/template.component.7.1.def new file mode 100644 index 00000000..33c9cd6a --- /dev/null +++ b/eccodes/definitions/grib3/template.component.7.1.def @@ -0,0 +1,13 @@ +# Observable Property Template Component 7.1 - Units conversion + +ieeefloat unitsConversionScaleFactor : dump, edition_specific,no_copy; +ieeefloat unitsConversionOffset : dump, edition_specific,no_copy; + +alias ucs = unitsConversionScaleFactor; +alias uco = unitsConversionOffset; + +# Notes: +# Units conversion scale factor (ucs) and offset (uco) shall be used to encode fields in units different +# from the units reported in table 7.3. +# If the values encoded in the GRIB message are 've', then the values 'v' in the units provided in table 7.3 +# shall be: v = ucs*ve + uco diff --git a/eccodes/definitions/grib3/template.component.7.2.def b/eccodes/definitions/grib3/template.component.7.2.def new file mode 100644 index 00000000..c1e939c4 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.7.2.def @@ -0,0 +1,5 @@ +# Observable Property Template Component 7.2 - Chemical or physical constituents + +# Common code table C-14 +codetable[2] atmosphericChemicalOrPhysicalConstituentType ('7.230.table',masterDir,localDir) : dump; +alias constituentType=atmosphericChemicalOrPhysicalConstituentType; diff --git a/eccodes/definitions/grib3/template.component.7.3.def b/eccodes/definitions/grib3/template.component.7.3.def new file mode 100644 index 00000000..cdb0e000 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.7.3.def @@ -0,0 +1,9 @@ +# Observable Property Template Component 7.3 - Aerosol size + +codetable[1] typeOfSizeInterval ('7.4.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; # in metres +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; # in metres diff --git a/eccodes/definitions/grib3/template.component.7.4.def b/eccodes/definitions/grib3/template.component.7.4.def new file mode 100644 index 00000000..c836f283 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.7.4.def @@ -0,0 +1,10 @@ +# Observable Property Template Component 7.4 - Radiation wavelength interval + +codetable[1] typeOfWavelengthInterval ('7.4.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; + +# wavelengths in metres +signed[1] scaleFactorOfFirstWavelength : dump; +signed[4] scaledValueOfFirstWavelength : dump; # in metres +signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; +signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; # in metres diff --git a/eccodes/definitions/grib3/template.component.8.0.def b/eccodes/definitions/grib3/template.component.8.0.def new file mode 100644 index 00000000..dc27f086 --- /dev/null +++ b/eccodes/definitions/grib3/template.component.8.0.def @@ -0,0 +1,6 @@ +# Data Representation Template Component 8.0 - Grid point data - Simple packing + +include "grib3/template.8.packing.def"; +include "grib3/template.8.original_values.def"; +include "grib3/template.8.missing_value.def"; +label 'Template Component 8.0'; diff --git a/eccodes/definitions/grib3/template.component.8.1.def b/eccodes/definitions/grib3/template.component.8.1.def new file mode 100644 index 00000000..1d710cbb --- /dev/null +++ b/eccodes/definitions/grib3/template.component.8.1.def @@ -0,0 +1,10 @@ +# Data Representation Template Component 8.1 - Grid point data - IEEE floating point data + +transient bitsPerValue=0 : hidden; +transient referenceValue=0 : hidden; +transient binaryScaleFactor=0 : hidden; +transient decimalScaleFactor=0 : hidden; +alias numberOfBits = bitsPerValue; +alias numberOfBitsContainingEachPackedValue = bitsPerValue; + +codetable[1] precision ('8.3.table',masterDir,localDir) = 1 : edition_specific; diff --git a/eccodes/definitions/grib3/template.component.9.0.def b/eccodes/definitions/grib3/template.component.9.0.def new file mode 100644 index 00000000..32ce023d --- /dev/null +++ b/eccodes/definitions/grib3/template.component.9.0.def @@ -0,0 +1,42 @@ +# Overlay Template Component 9.0 - Bitmap + +# TODO: Is there a Bit-map indicator??? + + +# Bit-map indicator +codetable[1] bitMapIndicator ('6.0.table',masterDir,localDir) = 255 : dump; + +meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump; +transient missingValuesPresent = bitmapPresent : hidden; + +# Bitmap... +if(bitMapIndicator == 0) +{ + if(dataRepresentationTemplateNumber == 1) + { + if(matrixBitmapsPresent == 1) + { + meta primaryBitmap g2bitmap( tableReference, + missingValue, + offsetBSection9, + section9Length, + numberOfDataMatrices) : read_only; + } + else + { + meta geography.bitmap g2bitmap( tableReference, + missingValue, + offsetBSection9, + section9Length, + numberOfDataPoints) : read_only; + } + } + else + { + meta geography.bitmap g2bitmap( tableReference, + missingValue, + offsetBSection9, + section9Length, + numberOfDataPoints) : read_only; + } +} diff --git a/eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def b/eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def new file mode 100644 index 00000000..792d6005 --- /dev/null +++ b/eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def @@ -0,0 +1 @@ +# diff --git a/eccodes/definitions/grib3/tiggeLocalVersion.table b/eccodes/definitions/grib3/tiggeLocalVersion.table new file mode 100644 index 00000000..c5bbcd23 --- /dev/null +++ b/eccodes/definitions/grib3/tiggeLocalVersion.table @@ -0,0 +1 @@ +1 TIGGE-LAM TIGGE LAM diff --git a/eccodes/definitions/grib3/tigge_name.def b/eccodes/definitions/grib3/tigge_name.def new file mode 100644 index 00000000..76fbb84b --- /dev/null +++ b/eccodes/definitions/grib3/tigge_name.def @@ -0,0 +1,45 @@ +# Automatically generated by ./tigge_def.pl, do not edit + + '10_meter_u_velocity' = { parameter = 165; } + '10_meter_v_velocity' = { parameter = 166; } + '10_metre_wind_gust_of_at_least_15_m/s' = { parameter = 131070; } + '10_metre_wind_gust_of_at_least_25_m/s' = { parameter = 131071; } + 'convective_available_potential_energy' = { parameter = 59; } + 'convective_inhibition' = { parameter = 228001; } + 'field_capacity' = { parameter = 228170; } + 'geopotential_height' = { parameter = 156; } + 'land_sea_mask' = { parameter = 172; } + 'maximum_wind_gust' = { parameter = 49; } + 'mean_sea_level_pressure' = { parameter = 151; } + 'orography' = { parameter = 228002; } + 'potential_temperature' = { parameter = 3; } + 'potential_vorticity' = { parameter = 60; } + 'sea_surface_temperature_anomaly' = { parameter = 171034; } + 'skin_temperature' = { parameter = 235; } + 'snow_depth_water_equivalent' = { parameter = 228141; } + 'snow_fall_water_equivalent' = { parameter = 228144; } + 'soil_moisture' = { parameter = 228039; } + 'soil_temperature' = { parameter = 228139; } + 'specific_humidity' = { parameter = 133; } + 'sunshine_duration' = { parameter = 189; } + 'surface_air_dew_point_temperature' = { parameter = 168; } + 'surface_air_maximum_temperature' = { parameter = 121; } + 'surface_air_minimum_temperature' = { parameter = 122; } + 'surface_air_temperature' = { parameter = 167; } + 'surface_pressure' = { parameter = 134; } + 'temperature' = { parameter = 130; } + 'time_integrated_outgoing_long_wave_radiation' = { parameter = 179; } + 'time_integrated_surface_latent_heat_flux' = { parameter = 147; } + 'time_integrated_surface_net_solar_radiation' = { parameter = 176; } + 'time_integrated_surface_net_thermal_radiation' = { parameter = 177; } + 'time_integrated_surface_sensible_heat_flux' = { parameter = 146; } + 'total_cloud_cover' = { parameter = 228164; } + 'total_column_water' = { parameter = 136; } + 'total_precipitation' = { parameter = 228228; } + 'total_precipitation_of_at_least_10_mm' = { parameter = 131062; } + 'total_precipitation_of_at_least_20_mm' = { parameter = 131063; } + 'u_velocity' = { parameter = 131; } + 'v_velocity' = { parameter = 132; } + 'wilting_point' = { parameter = 228171; } + 'default' = { parameter = 99999; } + diff --git a/eccodes/definitions/grib3/tigge_parameter.def b/eccodes/definitions/grib3/tigge_parameter.def new file mode 100644 index 00000000..c7ae282a --- /dev/null +++ b/eccodes/definitions/grib3/tigge_parameter.def @@ -0,0 +1,396 @@ +# Automatically generated by ./tigge_def.pl, do not edit + +# 10_meter_u_velocity + '165' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; + } + +# 10_meter_v_velocity + '166' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 3; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; + } + +# 10_metre_wind_gust_of_at_least_15_m/s + '131070' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + productDefinitionTemplateNumber = 9; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + scaledValueOfLowerLimit = 15; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; + } + +# 10_metre_wind_gust_of_at_least_25_m/s + '131071' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + productDefinitionTemplateNumber = 9; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + scaledValueOfLowerLimit = 25; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; + } + +# convective_available_potential_energy + '59' = { + discipline = 0; + parameterCategory = 7; + parameterNumber = 6; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; + } + +# convective_inhibition + '228001' = { + discipline = 0; + parameterCategory = 7; + parameterNumber = 7; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; + } + +# field_capacity + '228170' = { + discipline = 2; + parameterCategory = 3; + parameterNumber = 12; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; + } + +# geopotential_height + '156' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 5; + typeOfFirstFixedSurface = 100; + } + +# land_sea_mask + '172' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 1; + } + +# maximum_wind_gust + '49' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 22; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 10; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; + } + +# mean_sea_level_pressure + '151' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 0; + typeOfFirstFixedSurface = 101; + } + +# orography + '228002' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 5; + typeOfFirstFixedSurface = 1; + } + +# potential_temperature + '3' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 6; + scaledValueOfFirstFixedSurface = 2; + typeOfFirstFixedSurface = 109; + } + +# potential_vorticity + '60' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 14; + scaleFactorOfFirstFixedSurface = 0; + scaledValueOfFirstFixedSurface = 320; + typeOfFirstFixedSurface = 107; + } + +# sea_surface_temperature_anomaly + '171034' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 9; + typeOfFirstFixedSurface = 1; + } + +# skin_temperature + '235' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 17; + typeOfFirstFixedSurface = 1; + } + +# snow_depth_water_equivalent + '228141' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 60; + typeOfFirstFixedSurface = 1; + } + +# snow_fall_water_equivalent + '228144' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 53; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# soil_moisture + '228039' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 22; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; + } + +# soil_temperature + '228139' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 2; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; + } + +# specific_humidity + '133' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 0; + typeOfFirstFixedSurface = 100; + } + +# sunshine_duration + '189' = { + discipline = 0; + parameterCategory = 6; + parameterNumber = 24; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# surface_air_dew_point_temperature + '168' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 6; + typeOfFirstFixedSurface = 103; + } + +# surface_air_maximum_temperature + '121' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 2; + } + +# surface_air_minimum_temperature + '122' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; + typeOfStatisticalProcessing = 3; + } + +# surface_air_temperature + '167' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 103; + } + +# surface_pressure + '134' = { + discipline = 0; + parameterCategory = 3; + parameterNumber = 0; + typeOfFirstFixedSurface = 1; + } + +# temperature + '130' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + typeOfFirstFixedSurface = 100; + } + +# time_integrated_outgoing_long_wave_radiation + '179' = { + discipline = 0; + parameterCategory = 5; + parameterNumber = 5; + typeOfFirstFixedSurface = 8; + typeOfStatisticalProcessing = 1; + } + +# time_integrated_surface_latent_heat_flux + '147' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 10; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# time_integrated_surface_net_solar_radiation + '176' = { + discipline = 0; + parameterCategory = 4; + parameterNumber = 9; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# time_integrated_surface_net_thermal_radiation + '177' = { + discipline = 0; + parameterCategory = 5; + parameterNumber = 5; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# time_integrated_surface_sensible_heat_flux + '146' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 11; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# total_cloud_cover + '228164' = { + discipline = 0; + parameterCategory = 6; + parameterNumber = 1; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; + } + +# total_column_water + '136' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 51; + typeOfFirstFixedSurface = 1; + typeOfSecondFixedSurface = 8; + } + +# total_precipitation + '228228' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# total_precipitation_of_at_least_10_mm + '131062' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + productDefinitionTemplateNumber = 9; + scaledValueOfLowerLimit = 10; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# total_precipitation_of_at_least_20_mm + '131063' = { + discipline = 0; + parameterCategory = 1; + parameterNumber = 52; + productDefinitionTemplateNumber = 9; + scaledValueOfLowerLimit = 20; + typeOfFirstFixedSurface = 1; + typeOfStatisticalProcessing = 1; + } + +# u_velocity + '131' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 2; + } + +# unknown + 'default' = { + discipline = 0; + parameterCategory = 0; + parameterNumber = 0; + } + +# v_velocity + '132' = { + discipline = 0; + parameterCategory = 2; + parameterNumber = 3; + } + +# wilting_point + '228171' = { + discipline = 2; + parameterCategory = 0; + parameterNumber = 26; + scaleFactorOfFirstFixedSurface = 0; + scaleFactorOfSecondFixedSurface = 1; + scaledValueOfFirstFixedSurface = 0; + scaledValueOfSecondFixedSurface = 2; + typeOfFirstFixedSurface = 106; + typeOfSecondFixedSurface = 106; + } + diff --git a/eccodes/definitions/grib3/tigge_short_name.def b/eccodes/definitions/grib3/tigge_short_name.def new file mode 100644 index 00000000..42ef5c6e --- /dev/null +++ b/eccodes/definitions/grib3/tigge_short_name.def @@ -0,0 +1,44 @@ +# Automatically generated by ./tigge_def.pl, do not edit + + '10fgg25' = { parameter = 131071; } + '10fgg15' = { parameter = 131070; } + '10v' = { parameter = 166; } + '10u' = { parameter = 165; } + '10u' = { parameter = 49; } + 'ci' = { parameter = 228001; } + 'cap' = { parameter = 228170; } + 'cape' = { parameter = 59; } + 'gh' = { parameter = 156; } + 'lsm' = { parameter = 172; } + 'msl' = { parameter = 151; } + 'orog' = { parameter = 228002; } + 'sd' = { parameter = 228141; } + 'mx2t6' = { parameter = 121; } + '2d' = { parameter = 168; } + 'pv' = { parameter = 60; } + 'pt' = { parameter = 3; } + 'sf' = { parameter = 228144; } + 'skt' = { parameter = 235; } + 'sm' = { parameter = 228039; } + 'str' = { parameter = 177; } + 'sund' = { parameter = 189; } + 'mn2t6' = { parameter = 122; } + 'q' = { parameter = 133; } + 'ssta' = { parameter = 171034; } + '2t' = { parameter = 167; } + 'tcw' = { parameter = 136; } + 'slhf' = { parameter = 147; } + 'st' = { parameter = 228139; } + 'sshf' = { parameter = 146; } + 'sp' = { parameter = 134; } + 't' = { parameter = 130; } + 'tcc' = { parameter = 228164; } + 'ssr' = { parameter = 176; } + 'tpg10' = { parameter = 131062; } + 'tpg20' = { parameter = 131063; } + 'ttr' = { parameter = 179; } + 'tp' = { parameter = 228228; } + 'u' = { parameter = 131; } + 'v' = { parameter = 132; } + 'wilt' = { parameter = 228171; } + 'default' = { parameter = 99999; } diff --git a/eccodes/definitions/grib3/tigge_suiteName.table b/eccodes/definitions/grib3/tigge_suiteName.table new file mode 100644 index 00000000..09afac2c --- /dev/null +++ b/eccodes/definitions/grib3/tigge_suiteName.table @@ -0,0 +1,12 @@ +0 unknown unknown +1 mogreps-mo-eua Unified model based LAM-EPS run by UK Met Office +2 sreps-aemet-eua Multi model based LAM-EPS run by AEMET (Spain) +3 srnwppeps-dwd-eua Poor man's LAM-EPS run by DWD (Germany) +4 cosmoleps-arpasimc-eu COSMO model based LAM-EPS run by ARPA-SIM (Italy) +6 aladinlaef-zamg-eu ALADIN model based LAM-EPS run by ZAMG (Austria) +7 cosmodeeps-dwd-eu COSMO model based LAM-EPS run by DWD (Germany) +9 glameps-hirlamcons-eu ALADIN and HIRLAM models based LAM-EPS run by HIRLAM and ALADIN consortium +10 aromeeps-mf-eu AROME model based LAM-EPS run by Meteo-France +11 hirlam-dmi-eu HIRLAM model based LAM-EPS run by DMI (Denmark) +12 aladinhuneps-omsz-eu ALADIN model based LAM-EPS run by OMSZ (Hungary) +13 pearp-mf-eu ARPEGE model based LAM-EPS run by Meteo-France diff --git a/eccodes/definitions/grib3/units.def b/eccodes/definitions/grib3/units.def new file mode 100644 index 00000000..56d8cf43 --- /dev/null +++ b/eccodes/definitions/grib3/units.def @@ -0,0 +1,3009 @@ +# Automatically generated by ./create_def.pl, do not edit +#Sea-ice cover +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Snow density +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 61 ; + } +#Sea surface temperature +'K' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil type +'~' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#10 metre wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Specific rain water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 85 ; + } +#Specific snow water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 86 ; + } +#Eta-coordinate vertical velocity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 32 ; + } +#Surface solar radiation downwards +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface thermal radiation downwards +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Eastward turbulent surface stress +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'N m**-2 s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; + } +#Ozone mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } +#Specific cloud liquid water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 83 ; + } +#Specific cloud ice water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 84 ; + } +#Fraction of cloud cover +'(0 - 1)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 32 ; + } +#large scale precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Low cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 3 ; + } +#Medium cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 4 ; + } +#High cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 5 ; + } +#10 metre wind gust in the last 3 hours +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; + } +#Relative humidity with respect to water +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 93 ; + } +#Relative humidity with respect to ice +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 94 ; + } +#Snow albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 19 ; + } +#Fraction of stratiform precipitation cover +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 36 ; + } +#Fraction of convective precipitation cover +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 37 ; + } +#Height of convective cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 27 ; + } +#Unbalanced component of specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 118 ; + } +#Unbalanced component of specific cloud liquid water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 119 ; + } +#Unbalanced component of specific cloud ice water content +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 120 ; + } +#Soil moisture top 20 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil moisture top 100 cm +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Soil temperature top 20 cm +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + } +#Soil temperature top 100 cm +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + } +#Convective precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Water runoff and drainage +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 33 ; + } +#Mean temperature tendency due to short-wave radiation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to short-wave radiation, clear sky +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to long-wave radiation, clear sky +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean temperature tendency due to parametrisations +'K s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean specific humidity tendency due to parametrisations +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 108 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean eastward wind tendency due to parametrisations +'m s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 39 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean northward wind tendency due to parametrisations +'m s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 40 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught mass flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught mass flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean updraught detrainment rate +'kg m**-3 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 29 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean downdraught detrainment rate +'kg m**-3 s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 30 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean total precipitation flux +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 0 ; + } +#Mean turbulent diffusion coefficient for heat +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + typeOfStatisticalProcessing = 0 ; + } +#Cross sectional area of flow in channel +'m**2' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Side flow into river channel +'m**3 s**-1 m**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Discharge from rivers or streams +'m**3 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#River storage of water +'m**3' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Floodplain storage of water +'m**3' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Water fraction +'(0 - 1)' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Days since last observation +'Integer' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 3 ; + } +#Frost index +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 24 ; + } +#Depth of water on soil surface +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Upstream accumulated precipitation +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Upstream accumulated snow melt +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Snow depth at elevation bands +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 25 ; + } +#Groundwater upper storage +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Groundwater lower storage +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Surface air relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Apparent temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Haines Index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 22 ; + } +#Evaporation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + } +#Evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#10 metre wind direction +'Degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Direct short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Diffuse short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Time-integrated surface direct short wave radiation flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#Downward short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + } +#Upward short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + } +#Downward long-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + } +#Soil heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 26 ; + } +#Percolation rate +'kg m**-2 s**-1' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Soil depth +'m' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 27 ; + } +#Accumulated surface downward short-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 52 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface upward short-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 53 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Accumulated surface downward long-wave radiation flux, clear sky +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 8 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Percolation +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 177 ; + } +#Cloudy brightness temperature +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Clear-sky brightness temperature +'K' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Scaled radiance +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Scaled albedo +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Scaled brightness temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Scaled precipitable water +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Scaled lifted index +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Scaled cloud top pressure +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Scaled skin temperature +'Numeric' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Cloud mask +'Code table 4.217' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Pixel scene type +'Code table 4.218' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Fire detection indicator +'Code table 4.223' = { + discipline = 3 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Cloudy radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Clear-sky radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Wind speed +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Aerosol optical thickness at 0.635 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Aerosol optical thickness at 0.810 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Aerosol optical thickness at 1.640 um +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Angstrom coefficient +'dimensionless' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Virtual temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Virtual potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Pseudo-adiabatic potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Wind direction +'Degree true' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + } +#Significant height of combined wind waves and swell +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Mean wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Mean wave period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Surface runoff +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 34 ; + } +#Total precipitation of at least 10 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 10 ; + productDefinitionTemplateNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + scaleFactorOfLowerLimit = 0 ; + } +#Total precipitation of at least 20 mm +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; + typeOfStatisticalProcessing = 1 ; + productDefinitionTemplateNumber = 9 ; + } +#Stream function +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#Velocity potential +'m**2 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Potential temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + } +#Convective available potential energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Potential vorticity +'K m**2 kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 14 ; + } +#Maximum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Minimum temperature at 2 metres in the last 6 hours +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + is_uerra = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 6 ; + } +#Geopotential +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Total column water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + } +#Vorticity (relative) +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface latent heat flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#10 metre U wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre V wind component +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + } +#2 metre temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } +#Land-sea mask +'(0 - 1)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Top net thermal radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 8 ; + } +#Sunshine duration +'s' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + typeOfStatisticalProcessing = 1 ; + typeOfFirstFixedSurface = 1 ; + } +#Brightness temperature +'K' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 4 ; + } +#10 metre wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; + } +#Skin temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 17 ; + typeOfFirstFixedSurface = 1 ; + } +#Latent heat net flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Sensible heat net flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Heat index +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Wind chill factor +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Minimum dew point depression +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Snow phase change heat flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Vapor pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Large scale precipitation (non-convective) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Convective snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } +#Large scale snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } +#Snow age +'day' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 17 ; + } +#Absolute humidity +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 18 ; + } +#Precipitation type +'code table (4.201)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 19 ; + } +#Integrated liquid water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 20 ; + } +#Condensate +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 21 ; + } +#Cloud mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 22 ; + } +#Ice water mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 23 ; + } +#Rain mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 24 ; + } +#Snow mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 25 ; + } +#Horizontal moisture convergence +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 26 ; + } +#Maximum relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 27 ; + } +#Maximum absolute humidity +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 28 ; + } +#Total snowfall +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 29 ; + } +#Precipitable water category +'code table (4.202)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 30 ; + } +#Hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 31 ; + } +#Graupel (snow pellets) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 32 ; + } +#Categorical rain +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 33 ; + } +#Categorical freezing rain +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 34 ; + } +#Categorical ice pellets +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 35 ; + } +#Categorical snow +'(Code table 4.222)' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 36 ; + } +#Convective precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 37 ; + } +#Horizontal moisture divergence +'kg kg**-1 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 38 ; + } +#Percent frozen precipitation +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 39 ; + } +#Potential evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 40 ; + } +#Potential evaporation rate +'W m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 41 ; + } +#Snow cover +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 42 ; + } +#Rain fraction of total cloud water +'Proportion' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 43 ; + } +#Rime factor +'Numeric' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 44 ; + } +#Total column integrated rain +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 45 ; + } +#Total column integrated snow +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 46 ; + } +#Large scale water precipitation (non-convective) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 47 ; + } +#Convective water precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 48 ; + } +#Total water precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 49 ; + } +#Total snow precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 50 ; + } +#Total column water (Vertically integrated total water (vapour + cloud water/ice)) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 51 ; + } +#Total precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + } +#Total snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + } +#Large scale precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 54 ; + } +#Convective snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 55 ; + } +#Large scale snowfall rate water equivalent +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 56 ; + } +#Total snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 57 ; + } +#Convective snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 58 ; + } +#Large scale snowfall rate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 59 ; + } +#Water equivalent of accumulated snow depth +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Total column integrated water vapour +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 64 ; + } +#Rain precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 65 ; + } +#Snow precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 66 ; + } +#Freezing rain precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 67 ; + } +#Ice pellets precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 68 ; + } +#Momentum flux, u component +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 17 ; + } +#Momentum flux, v component +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 18 ; + } +#Maximum wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 21 ; + } +#Wind speed (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + } +#u-component of wind (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + } +#v-component of wind (gust) +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + } +#Vertical speed shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 25 ; + } +#Horizontal momentum flux +'N m**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 26 ; + } +#U-component storm motion +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 27 ; + } +#V-component storm motion +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 28 ; + } +#Drag coefficient +'Numeric' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 29 ; + } +#Frictional velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 30 ; + } +#Pressure reduced to MSL +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Geometric height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Altimeter setting +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Thickness +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Pressure altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Density altitude +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#5-wave geopotential height +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Zonal flux of gravity wave stress +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Meridional flux of gravity wave stress +'N m**-2' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Planetary boundary layer height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 18 ; + } +#5-wave geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 19 ; + } +#Standard deviation of sub-grid scale orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 20 ; + } +#Net short-wave radiation flux (top of atmosphere) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Downward short-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 7 ; + } +#Upward short-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 8 ; + } +#Net short wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 9 ; + } +#Photosynthetically active radiation +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 10 ; + } +#Net short-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + } +#Downward UV radiation +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#UV index (under clear sky) +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 50 ; + } +#UV index +'Numeric' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 51 ; + } +#Net long wave radiation flux (surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 0 ; + } +#Net long wave radiation flux (top of atmosphere) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 1 ; + } +#Downward long-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 3 ; + } +#Upward long-wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 4 ; + } +#Net long wave radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + } +#Net long-wave radiation flux, clear sky +'W m**-2' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + } +#Cloud Ice +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 0 ; + } +#Cloud water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 6 ; + } +#Cloud amount +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 7 ; + } +#Cloud type +'code table (4.203)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 8 ; + } +#Thunderstorm maximum tops +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 9 ; + } +#Thunderstorm coverage +'code table (4.204)' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 10 ; + } +#Cloud base +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 11 ; + } +#Cloud top +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 12 ; + } +#Ceiling +'m' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 13 ; + } +#Non-convective cloud cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 14 ; + } +#Cloud work function +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 15 ; + } +#Convective cloud efficiency +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 16 ; + } +#Total condensate +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 17 ; + } +#Total column-integrated cloud water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 18 ; + } +#Total column-integrated cloud ice +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 19 ; + } +#Total column-integrated condensate +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 20 ; + } +#Ice fraction of total condensate +'Proportion' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 21 ; + } +#Cloud ice mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 23 ; + } +#Sunshine +'Numeric' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 24 ; + } +#Horizontal extent of cumulonimbus (CB) +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 25 ; + } +#K index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 2 ; + } +#KO index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 3 ; + } +#Total totals index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 4 ; + } +#Sweat index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 5 ; + } +#Storm relative helicity +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 8 ; + } +#Energy helicity index +'Numeric' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 9 ; + } +#Surface lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 10 ; + } +#Best (4-layer) lifted index +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 11 ; + } +#Aerosol type +'code table (4.205)' = { + discipline = 0 ; + parameterCategory = 13 ; + parameterNumber = 0 ; + } +#Total ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 0 ; + } +#Total column integrated ozone +'DU' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 2 ; + } +#Base spectrum width +'m s**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 0 ; + } +#Base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 1 ; + } +#Base radial velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 2 ; + } +#Vertically-integrated liquid +'kg m**-1' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 3 ; + } +#Layer-maximum base reflectivity +'dB' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 4 ; + } +#Precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 5 ; + } +#Air concentration of Caesium 137 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 0 ; + } +#Air concentration of Iodine 131 +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 1 ; + } +#Air concentration of radioactive pollutant +'Bq m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 2 ; + } +#Ground deposition of Caesium 137 +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 3 ; + } +#Ground deposition of Iodine 131 +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 4 ; + } +#Ground deposition of radioactive pollutant +'Bq m**-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 5 ; + } +#Time-integrated air concentration of caesium pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 6 ; + } +#Time-integrated air concentration of iodine pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 7 ; + } +#Time-integrated air concentration of radioactive pollutant +'Bq s m**-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 8 ; + } +#Volcanic ash +'code table (4.206)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 4 ; + } +#Icing top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 5 ; + } +#Icing base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 6 ; + } +#Icing +'code table (4.207)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 7 ; + } +#Turbulence top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 8 ; + } +#Turbulence base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 9 ; + } +#Turbulence +'code table (4.208)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 10 ; + } +#Turbulent kinetic energy +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 11 ; + } +#Planetary boundary layer regime +'code table (4.209)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 12 ; + } +#Contrail intensity +'code table (4.210)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 13 ; + } +#Contrail engine type +'code table (4.211)' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 14 ; + } +#Contrail top +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 15 ; + } +#Contrail base +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 16 ; + } +#Maximum snow albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 17 ; + } +#Snow free albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 18 ; + } +#Icing +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 20 ; + } +#In-cloud turbulence +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 21 ; + } +#Clear air turbulence (CAT) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 22 ; + } +#Supercooled large droplet probability (see Note 4) +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 23 ; + } +#Arbitrary text string +'CCITTIA5' = { + discipline = 0 ; + parameterCategory = 190 ; + parameterNumber = 0 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Remotely sensed snow cover +'(code table 4.215)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Elevation of snow covered terrain +'(code table 4.216)' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Snow water equivalent percent of normal +'%' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Baseflow-groundwater runoff +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Storm surface runoff +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) +'kg m**-2' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Probability of 0.01 inch of precipitation (POP) +'%' = { + discipline = 1 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Land cover (1=land, 0=sea) +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Vegetation +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Water runoff +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Evapotranspiration +'kg**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Model terrain height +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Land use +'code table (4.212)' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Volumetric soil moisture content +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Ground heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Moisture availability +'%' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Exchange coefficient +'kg m**-2 s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Plant canopy surface water +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Blackadar mixing length scale +'m' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 14 ; + } +#Canopy conductance +'m s**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 15 ; + } +#Minimal stomatal resistance +'s m**-1' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 16 ; + } +#Solar parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 18 ; + } +#Temperature parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 19 ; + } +#Soil moisture parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 20 ; + } +#Humidity parameter in canopy conductance +'Proportion' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 21 ; + } +#Column-integrated soil water +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 23 ; + } +#Heat flux +'W m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 24 ; + } +#Volumetric soil moisture +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 25 ; + } +#Volumetric wilting point +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 27 ; + } +#Upper layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Upper layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#Lower layer soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Bottom layer soil temperature +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Liquid volumetric soil moisture (non-frozen) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Number of soil layers in root zone +'Numeric' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Transpiration stress-onset (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Direct evaporation cease (soil moisture) +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Soil porosity +'Proportion' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Liquid volumetric soil moisture (non-frozen) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Volumetric transpiration stress-onset (soil moisture) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 11 ; + } +#Transpiration stress-onset (soil moisture) +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + } +#Volumetric direct evaporation cease (soil moisture) +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 13 ; + } +#Direct evaporation cease (soil moisture) +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 14 ; + } +#Soil porosity +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 15 ; + } +#Volumetric saturation of soil moisture +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 16 ; + } +#Saturation of soil moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 17 ; + } +#Estimated precipitation +'kg m**-2' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Instantaneous rain rate +'kg m**-2 s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Cloud top height +'m' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#Cloud top height quality indicator +'Code table 4.219' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Estimated u component of wind +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 4 ; + } +#Estimated v component of wind +'m s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Number of pixels used +'Numeric' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 6 ; + } +#Solar zenith angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Relative azimuth angle +'Degree' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 8 ; + } +#Reflectance in 0.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 9 ; + } +#Reflectance in 0.8 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Reflectance in 1.6 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } +#Reflectance in 3.9 micron channel +'%' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 12 ; + } +#Atmospheric divergence +'s**-1' = { + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 13 ; + } +#Direction of wind waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Primary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + } +#Primary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + } +#Secondary wave mean period +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 13 ; + } +#Current direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Current speed +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Geometric vertical velocity +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 9 ; + } +#Ice temperature +'K' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Deviation of sea level from mean +'m' = { + discipline = 10 ; + parameterCategory = 3 ; + parameterNumber = 1 ; + } +#Seconds prior to initial reference time (defined in Section 1) +'s' = { + discipline = 10 ; + parameterCategory = 191 ; + parameterNumber = 0 ; + } +#Albedo +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Pressure tendency +'Pa s**-1' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 2 ; + } +#ICAO Standard Atmosphere reference height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 3 ; + } +#Geometrical height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 6 ; + } +#Standard deviation of height +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 7 ; + } +#Maximum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 4 ; + } +#Minimum temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Dew point temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Lapse rate +'K m**-1' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Visibility +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 0 ; + } +#Radar spectra (1) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 6 ; + } +#Radar spectra (2) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 7 ; + } +#Radar spectra (3) +'~' = { + discipline = 0 ; + parameterCategory = 15 ; + parameterNumber = 8 ; + } +#Parcel lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 0 ; + } +#Temperature anomaly +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Pressure anomaly +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 8 ; + } +#Geopotential height anomaly +'gpm' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 9 ; + } +#Wave spectra (1) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#Wave spectra (2) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Wave spectra (3) +'~' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Montgomery stream Function +'m**2 s**-2' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Sigma coordinate vertical velocity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Absolute vorticity +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Absolute divergence +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 11 ; + } +#Vertical u-component shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 15 ; + } +#Vertical v-component shear +'s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 16 ; + } +#U-component of current +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 2 ; + } +#V-component of current +'m s**-1' = { + discipline = 10 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Precipitable water +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 3 ; + } +#Saturation deficit +'Pa' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 5 ; + } +#Precipitation rate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 7 ; + } +#Thunderstorm probability +'%' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 2 ; + } +#Convective precipitation (water) +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; + } +#Mixed layer depth +'m' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 3 ; + } +#Transient thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 2 ; + } +#Main thermocline depth +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Main thermocline anomaly +'m' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 1 ; + } +#Best lifted index (to 500 hPa) +'K' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 1 ; + } +#Soil moisture content +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 3 ; + } +#Salinity +'kg kg**-1' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Density +'kg m**-3' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 10 ; + } +#Ice thickness +'m' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + } +#Direction of ice drift +'Degree true' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#Speed of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#U-component of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 4 ; + } +#V-component of ice drift +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + } +#Ice growth rate +'m s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + } +#Ice divergence +'s**-1' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 7 ; + } +#Snow melt +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 16 ; + } +#Significant height of wind waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 5 ; + } +#Mean period of wind waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + } +#Direction of swell waves +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 7 ; + } +#Significant height of swell waves +'m' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 8 ; + } +#Mean period of swell waves +'s' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 9 ; + } +#Secondary wave direction +'Degree true' = { + discipline = 10 ; + parameterCategory = 0 ; + parameterNumber = 12 ; + } +#Net short-wave radiation flux (surface) +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 0 ; + } +#Global radiation flux +'W m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 3 ; + } +#Radiance (with respect to wave number) +'W m**-1 sr**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 5 ; + } +#Radiance (with respect to wave length) +'W m**-3 sr**-1' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 6 ; + } +#Wind mixing energy +'J' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 19 ; + } +#10 metre Wind gust of at least 15 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; + scaleFactorOfLowerLimit = 0 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 15 ; + scaledValueOfFirstFixedSurface = 10 ; + } +#10 metre Wind gust of at least 20 m/s +'%' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 20 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfLowerLimit = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + probabilityType = 3 ; + } +#Convective inhibition +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Orography +'m' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + } +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + } +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } +#Snow depth water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 60 ; + typeOfFirstFixedSurface = 1 ; + } +#Snow Fall water equivalent +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 53 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Total Cloud Cover +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 1 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } +#Field capacity +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 12 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Wilting point +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 26 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + } +#Total Precipitation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; +} diff --git a/eccodes/definitions/mars_param.table b/eccodes/definitions/mars_param.table new file mode 100644 index 00000000..80c71dfe --- /dev/null +++ b/eccodes/definitions/mars_param.table @@ -0,0 +1,6809 @@ +1.1 54 134 | +1.128 1 | +1.129 129001 | +1.131 131001 | +1.133 133001 | +1.171 171001 | +1.2 54 134 500000 500000 500001 500001 | +1.200 200001 | +1.201 201001 | +1.204 500308 500308 | +1.205 500324 500324 500325 500325 500326 500326 500327 500327 | +1.210 210001 | +1.211 211001 | +1.212 212001 | +1.213 213001 | +1.214 214001 | +1.215 215001 | +1.216 216001 | +1.228 228001 | +1.254 300001 | +1.3 54 134 | +10.1 206 | +10.128 10 | +10.131 131010 | +10.133 133010 | +10.2 206 500009 500009 | +10.201 201010 | +10.202 500191 500191 | +10.204 500317 500317 | +10.210 210010 | +10.211 211010 | +10.212 212010 | +10.214 214010 | +10.215 215010 | +10.216 216010 | +10.228 228010 | +10.3 206 | +100.1 3100 | +100.128 100 | +100.129 129100 | +100.162 162100 | +100.2 3100 500071 500071 | +100.200 200100 | +100.201 201100 500132 500132 | +100.210 210100 | +100.211 211100 | +100.212 212100 | +100.215 215100 | +100.216 216100 | +100.254 300100 | +100.3 3100 | +100si 228249 | +100u 228246 | +100ua 171006 | +100v 228247 | +100va 171007 | +101.1 3101 | +101.128 101 | +101.129 129101 | +101.162 162101 | +101.2 3101 500072 500072 | +101.200 200101 | +101.201 201101 500133 500133 | +101.203 500293 500293 | +101.210 210101 | +101.211 211101 | +101.212 212101 | +101.215 215101 | +101.216 216101 | +101.254 300101 | +101.3 3101 | +102.1 3102 | +102.128 102 | +102.129 129102 | +102.162 162102 | +102.2 3102 500073 500073 | +102.200 200102 | +102.201 201102 500134 500134 | +102.210 210102 | +102.211 211102 | +102.212 212102 | +102.215 215102 | +102.216 216102 | +102.254 300102 | +102.3 3102 | +103.1 3103 | +103.128 103 | +103.129 129103 | +103.162 162103 | +103.2 3103 500074 500074 | +103.200 200103 | +103.203 500294 500294 | +103.210 210103 | +103.211 211103 | +103.212 212103 | +103.215 215103 | +103.216 216103 | +103.254 300103 | +103.3 3103 | +104.1 3104 | +104.128 104 | +104.129 129104 | +104.162 162104 | +104.2 3104 500075 500075 | +104.200 200104 | +104.202 500233 500233 | +104.210 210104 | +104.211 211104 | +104.212 212104 | +104.215 215104 | +104.216 216104 | +104.254 300104 | +104.3 3104 | +105.1 3105 | +105.128 105 | +105.129 129105 | +105.162 162105 | +105.2 3105 500076 500076 | +105.200 200105 | +105.202 500234 500234 | +105.210 210105 | +105.211 211105 | +105.212 212105 | +105.215 215105 | +105.216 216105 | +105.254 300105 | +105.3 3105 | +106.1 3106 | +106.128 106 | +106.129 129106 | +106.162 162106 | +106.2 3106 500077 500077 | +106.200 200106 | +106.210 210106 | +106.211 211106 | +106.212 212106 | +106.215 215106 | +106.216 216106 | +106.254 300106 | +106.3 3106 | +107.1 3107 | +107.128 107 | +107.129 129107 | +107.162 162107 | +107.2 3107 | +107.200 200107 | +107.203 500295 500295 | +107.210 210107 | +107.211 211107 | +107.212 212107 | +107.215 215107 | +107.216 216107 | +107.254 300107 | +107.3 3107 | +108.1 3108 | +108.128 108 | +108.129 129108 | +108.162 162108 | +108.2 3108 | +108.200 200108 | +108.210 210108 | +108.211 211108 | +108.212 212108 | +108.215 215108 | +108.216 216108 | +108.254 300108 | +108.3 3108 | +109.1 3109 | +109.128 109 | +109.129 129109 | +109.162 162109 | +109.2 3109 | +109.200 200109 | +109.203 500296 500296 | +109.210 210109 | +109.211 211109 | +109.212 212109 | +109.215 215109 | +109.216 216109 | +109.254 300109 | +109.3 3109 | +10fg 49 | +10fg3 228028 | +10fg6 123 | +10fg6diff 200123 | +10fg6grd 129123 | +10fga 171049 | +10fgdiff 200049 | +10fgg15 131070 | +10fgg20 131071 | +10fgg25 131072 | +10fggrd 129049 | +10fgi 132049 | +10fgrea 160049 | +10gp 131049 | +10gpg100 133030 | +10gpg20 133026 | +10gpg35 133027 | +10gpg50 133028 | +10gpg75 133029 | +10si 207 | +10sidiff 200207 | +10sigrd 129207 | +10sp 131165 | +10spg10 131068 133021 | +10spg15 131069 133022 | +10spg20 133023 | +10spg35 133024 | +10spg50 133025 | +10u 165 | +10ua 171165 171207 | +10udiff 200165 | +10ugrd 129165 | +10v 166 | +10va 171166 | +10vdiff 200166 | +10vgrd 129166 | +10wsi 132165 | +10wsrea 160246 | +11.1 130 167 | +11.128 11 | +11.129 129011 | +11.133 133011 | +11.171 171011 | +11.2 130 167 500010 500010 500011 500011 500012 500012 500013 500013 500014 500014 | +11.200 200011 | +11.201 201011 | +11.204 500318 500318 | +11.206 500372 500372 | +11.210 210011 | +11.211 211011 | +11.212 212011 | +11.214 214011 | +11.215 215011 | +11.216 216011 | +11.228 228011 | +11.254 300011 | +11.3 130 167 | +110.1 3110 | +110.128 110 | +110.129 129110 | +110.162 162110 | +110.174 174110 | +110.175 175110 | +110.2 3110 | +110.200 200110 | +110.210 210110 | +110.211 211110 | +110.212 212110 | +110.215 215110 | +110.216 216110 | +110.254 300110 | +110.3 3110 | +111.1 3111 | +111.128 111 | +111.129 129111 | +111.162 162111 | +111.174 174111 | +111.175 175111 | +111.2 3111 500078 500078 500079 500079 | +111.200 200111 | +111.201 201111 500135 500135 | +111.210 210111 | +111.211 211111 | +111.212 212111 | +111.215 215111 | +111.216 216111 | +111.254 300111 | +111.3 3111 | +112.1 3112 | +112.128 112 | +112.129 129112 | +112.162 162112 | +112.2 3112 500080 500080 500081 500081 | +112.200 200112 | +112.201 201112 500136 500136 | +112.210 210112 | +112.211 211112 | +112.212 212112 | +112.215 215112 | +112.216 216112 | +112.254 300112 | +112.3 3112 | +113.1 3113 | +113.128 113 | +113.129 129113 | +113.162 162113 | +113.2 3113 500082 500082 500083 500083 | +113.200 200113 | +113.201 201113 500137 500137 | +113.202 500235 500235 | +113.210 210113 | +113.211 211113 | +113.212 212113 | +113.215 215113 | +113.216 216113 | +113.254 300113 | +113.3 3113 | +114.1 3114 | +114.128 114 | +114.129 129114 | +114.162 162114 | +114.2 3114 500084 500084 500085 500085 | +114.200 200114 | +114.202 500236 500236 | +114.210 210114 | +114.211 211114 | +114.212 212114 | +114.215 215114 | +114.216 216114 | +114.254 300114 | +114.3 3114 | +115.1 3115 | +115.128 115 | +115.129 129115 | +115.162 162115 | +115.2 3115 | +115.200 200115 | +115.202 500237 500237 | +115.210 210115 | +115.211 211115 | +115.212 212115 | +115.215 215115 | +115.216 216115 | +115.254 300115 | +115.3 3115 | +116.1 3116 | +116.128 116 | +116.129 129116 | +116.162 162116 | +116.2 3116 | +116.200 200116 | +116.210 210116 | +116.211 211116 | +116.212 212116 | +116.215 215116 | +116.216 216116 | +116.254 300116 | +116.3 3116 | +117.1 3117 | +117.128 117 | +117.129 129117 | +117.162 162117 | +117.2 3117 | +117.200 200117 | +117.210 210117 | +117.211 211117 | +117.212 212117 | +117.215 215117 | +117.216 216117 | +117.254 300117 | +117.3 3117 | +118.1 194 | +118.128 118 | +118.129 129118 | +118.162 162118 | +118.2 194 | +118.200 200118 | +118.210 210118 | +118.211 211118 | +118.212 212118 | +118.215 215118 | +118.216 216118 | +118.3 194 | +119.1 3119 | +119.128 119 | +119.129 129119 | +119.162 162119 | +119.2 3119 | +119.200 200119 | +119.210 210119 | +119.211 211119 | +119.212 212119 | +119.215 215119 | +119.216 216119 | +119.3 3119 | +12.1 3012 | +12.128 12 | +12.129 129012 | +12.133 133012 | +12.171 171012 | +12.2 3012 | +12.200 200012 | +12.201 201012 | +12.204 500319 500319 | +12.210 210012 | +12.211 211012 | +12.212 212012 | +12.214 214012 | +12.215 215012 | +12.216 216012 | +12.228 228012 | +12.254 300012 | +12.3 3012 | +120.1 3120 | +120.128 120 | +120.129 129120 | +120.162 162120 | +120.2 3120 | +120.200 200120 | +120.202 500238 500238 | +120.210 210120 | +120.211 211120 | +120.212 212120 | +120.215 215120 | +120.216 216120 | +120.3 3120 | +121.1 147 | +121.128 121 | +121.129 129121 | +121.162 162121 | +121.171 171121 | +121.2 147 500086 500086 | +121.200 200121 | +121.202 500239 500239 | +121.210 210121 | +121.211 211121 | +121.212 212121 | +121.215 215121 | +121.216 216121 | +121.228 260121 | +121.254 300121 | +121.3 147 | +122.1 146 | +122.128 122 | +122.129 129122 | +122.162 162122 | +122.171 171122 | +122.2 146 500087 500087 | +122.200 200122 | +122.201 500138 500138 | +122.202 500240 500240 | +122.210 210122 | +122.211 211122 | +122.212 212122 | +122.215 215122 | +122.216 216122 | +122.254 300122 | +122.3 146 | +123.1 145 | +123.128 123 | +123.129 129123 | +123.162 162123 | +123.2 145 | +123.200 200123 | +123.201 500139 500139 | +123.202 500241 500241 | +123.210 210123 | +123.211 211123 | +123.212 212123 | +123.215 215123 | +123.216 216123 | +123.228 260123 | +123.254 300123 | +123.3 145 | +124.1 3124 | +124.128 124 | +124.162 162124 | +124.2 3124 500088 500088 | +124.201 500140 500140 | +124.203 500297 500297 | +124.210 210124 | +124.211 211124 | +124.212 212124 | +124.215 215124 | +124.216 216124 | +124.3 3124 | +125.1 3125 | +125.128 125 | +125.129 129125 | +125.162 162125 | +125.171 171125 | +125.2 3125 500089 500089 | +125.200 200125 | +125.201 500141 500141 | +125.210 210125 | +125.211 211125 | +125.212 212125 | +125.215 215125 | +125.216 216125 | +125.3 3125 | +126.1 3126 | +126.128 126 | +126.129 129126 | +126.162 162126 | +126.171 171126 | +126.2 3126 | +126.200 200126 | +126.210 210126 | +126.211 211126 | +126.212 212126 | +126.215 215126 | +126.216 216126 | +126.3 3126 | +127.1 3127 | +127.128 127 | +127.129 129127 | +127.160 127 | +127.162 162127 | +127.171 171127 | +127.2 3127 | +127.200 200127 | +127.201 500142 500142 | +127.210 210127 | +127.211 211127 | +127.212 212127 | +127.215 215127 | +127.216 216127 | +127.254 300127 | +127.3 3127 | +128.128 128 | +128.129 129128 | +128.151 151128 | +128.160 128 | +128.162 162128 | +128.171 171128 | +128.200 200128 | +128.210 210128 | +128.211 211128 | +128.212 212128 | +128.215 215128 | +128.216 216128 | +128.254 300128 | +129.128 129 | +129.129 129129 | +129.131 131129 | +129.150 150129 | +129.151 151129 | +129.160 129 | +129.162 162129 | +129.170 129 | +129.171 171129 | +129.180 129 | +129.190 129 | +129.200 200129 | +129.201 500143 500143 | +129.210 210129 | +129.211 211129 | +129.212 212129 | +129.215 215129 | +129.216 216129 | +129.228 228129 | +129.254 300129 | +13.1 3 | +13.128 13 | +13.129 129013 | +13.133 133013 | +13.171 171013 | +13.2 3 | +13.200 200013 | +13.201 201013 500092 500092 | +13.204 500320 500320 | +13.210 210013 | +13.211 211013 | +13.212 212013 | +13.214 214013 | +13.215 215013 | +13.216 216013 | +13.228 228013 | +13.254 300013 | +13.3 3 | +130.128 130 | +130.129 129130 | +130.131 131130 | +130.150 150130 | +130.151 151130 | +130.160 130 | +130.162 162130 | +130.170 130 | +130.171 171130 | +130.180 130 | +130.190 130 | +130.200 200130 | +130.201 500144 500144 | +130.203 500298 500298 | +130.210 210130 | +130.211 211130 | +130.212 212130 | +130.215 215130 | +130.216 216130 | +130.228 228130 | +130.254 300130 | +131.128 131 | +131.129 129131 | +131.150 150131 | +131.151 151131 | +131.160 131 | +131.162 162131 | +131.170 131 | +131.171 171131 | +131.180 131 | +131.190 131 | +131.200 200131 | +131.201 500145 500145 | +131.203 500299 500299 | +131.210 210131 | +131.211 211131 | +131.212 212131 | +131.215 215131 | +131.216 216131 | +131.228 228131 | +131.254 300131 | +132.128 132 | +132.129 129132 | +132.151 151132 | +132.160 132 | +132.162 162132 | +132.170 132 | +132.171 171132 | +132.180 132 | +132.190 132 | +132.200 200132 | +132.201 500146 500146 | +132.203 500300 500300 | +132.210 210132 | +132.211 211132 | +132.212 212132 | +132.215 215132 | +132.216 216132 | +132.228 228132 | +132.254 300132 | +133.128 133 | +133.129 129133 | +133.150 150133 | +133.151 151133 | +133.160 133 | +133.162 162133 | +133.170 133 | +133.171 171133 | +133.180 133 | +133.190 133 | +133.200 200133 | +133.201 500147 500147 | +133.203 500301 500301 | +133.210 210133 | +133.211 211133 | +133.212 212133 | +133.215 215133 | +133.216 216133 | +133.254 300133 | +134.128 134 | +134.129 129134 | +134.150 150134 | +134.151 151134 | +134.160 134 | +134.162 162134 | +134.171 171134 | +134.180 134 | +134.190 134 | +134.200 200134 | +134.210 210134 | +134.211 211134 | +134.212 212134 | +134.215 215134 | +134.216 216134 | +134.228 228134 | +134.254 300134 | +135.128 135 | +135.129 129135 | +135.150 150135 | +135.151 151135 | +135.160 160135 | +135.162 162135 | +135.170 135 | +135.171 171135 | +135.200 200135 | +135.210 210135 | +135.211 211135 | +135.212 212135 | +135.215 215135 | +135.216 216135 | +135.254 300135 | +136.128 136 | +136.129 129136 | +136.151 151136 | +136.160 136 | +136.162 162136 | +136.171 171136 | +136.200 200136 | +136.210 210136 | +136.211 211136 | +136.212 212136 | +136.215 215136 | +136.216 216136 | +136.228 228136 | +136.254 300136 | +137.128 137 | +137.129 129137 | +137.150 150137 | +137.151 151137 | +137.160 160137 | +137.162 162137 | +137.171 171137 | +137.180 137 | +137.200 200137 | +137.210 210137 | +137.211 211137 | +137.212 212137 | +137.215 215137 | +137.216 216137 | +137.254 300137 | +138.128 138 | +138.129 129138 | +138.151 151138 | +138.160 138 | +138.162 162138 | +138.170 138 | +138.171 171138 | +138.180 138 | +138.190 138 | +138.200 200138 | +138.210 210138 | +138.211 211138 | +138.212 212138 | +138.215 215138 | +138.216 216138 | +138.254 300138 | +139.128 139 | +139.129 129139 | +139.131 131139 | +139.150 150139 | +139.151 151139 | +139.160 139 | +139.162 162139 | +139.170 139 | +139.171 171139 | +139.174 174139 | +139.175 175139 | +139.190 139 | +139.200 200139 | +139.201 201139 500148 500148 | +139.210 210139 | +139.211 211139 | +139.212 212139 | +139.215 215139 | +139.216 216139 | +139.228 228139 | +139.234 234139 | +139.254 300139 | +14.1 3014 | +14.128 14 | +14.129 129014 | +14.133 133014 | +14.171 171014 | +14.2 3014 | +14.200 200014 | +14.201 201014 500093 500093 | +14.204 500321 500321 | +14.210 210014 | +14.211 211014 | +14.212 212014 | +14.214 214014 | +14.215 215014 | +14.216 216014 | +14.228 228014 | +14.254 300014 | +14.3 3014 | +140.128 140 | +140.129 129140 | +140.150 150140 | +140.151 151140 | +140.160 160140 | +140.162 162140 | +140.170 140 | +140.171 171140 | +140.200 200140 | +140.203 500302 500302 | +140.210 210140 | +140.211 211140 | +140.212 212140 | +140.215 215140 | +140.216 216140 | +140.254 300140 | +141.128 141 | +141.129 129141 | +141.150 150141 | +141.151 151141 | +141.160 160141 | +141.162 162141 | +141.170 141 | +141.171 171141 | +141.180 141 | +141.190 190141 | +141.200 200141 | +141.201 500149 500149 | +141.210 210141 | +141.211 211141 | +141.212 212141 | +141.215 215141 | +141.216 216141 | +141.228 228141 | +141.254 300141 | +142.128 142 | +142.129 129142 | +142.150 150142 | +142.151 151142 | +142.160 160142 | +142.170 142 | +142.171 171142 | +142.172 172142 | +142.173 173142 | +142.180 142 | +142.200 200142 | +142.201 500150 500150 | +142.210 210142 | +142.211 211142 | +142.212 212142 | +142.215 215142 | +142.216 216142 | +142.230 230142 | +142.254 300142 | +143.128 143 | +143.129 129143 | +143.150 150143 | +143.151 151143 | +143.160 160143 | +143.170 143 | +143.171 171143 | +143.172 172143 | +143.173 173143 | +143.180 143 | +143.200 200143 | +143.201 500151 500151 | +143.210 210143 | +143.211 211143 | +143.212 212143 | +143.215 215143 | +143.216 216143 | +143.230 230143 | +143.254 300143 | +144.128 144 | +144.129 129144 | +144.131 131144 | +144.132 132144 | +144.150 150144 | +144.151 151144 | +144.160 160144 | +144.171 171144 | +144.172 172144 | +144.173 173144 | +144.180 144 | +144.200 200144 | +144.201 500152 500152 | +144.210 210144 | +144.211 211144 | +144.212 212144 | +144.215 215144 | +144.216 216144 | +144.228 228144 | +144.230 230144 | +144.254 300144 | +145.128 145 | +145.129 129145 | +145.150 150145 | +145.151 151145 | +145.160 145 | +145.171 171145 | +145.172 172145 | +145.173 173145 | +145.200 200145 | +145.201 500153 500153 | +145.210 210145 | +145.211 211145 | +145.212 212145 | +145.215 215145 | +145.216 216145 | +145.230 230145 | +145.254 300145 | +146.128 146 | +146.129 129146 | +146.150 150146 | +146.151 151146 | +146.160 146 | +146.170 146 | +146.171 171146 | +146.172 172146 | +146.173 173146 | +146.180 146 | +146.190 146 | +146.200 200146 | +146.201 500154 500154 | +146.210 210146 | +146.211 211146 | +146.212 212146 | +146.215 215146 | +146.216 216146 | +146.230 230146 | +146.254 300146 | +147.128 147 | +147.129 129147 | +147.150 150147 | +147.151 151147 | +147.160 147 | +147.170 147 | +147.171 171147 | +147.172 172147 | +147.173 173147 | +147.180 147 | +147.190 147 | +147.200 200147 | +147.201 500155 500155 | +147.210 210147 | +147.211 211147 | +147.212 212147 | +147.215 215147 | +147.216 216147 | +147.230 230147 | +147.254 300147 | +148.128 148 | +148.129 129148 | +148.150 150148 | +148.151 151148 | +148.171 171148 | +148.200 200148 | +148.201 500156 500156 | +148.210 210148 | +148.211 211148 | +148.212 212148 | +148.215 215148 | +148.216 216148 | +148.254 300148 | +149.128 149 | +149.129 129149 | +149.151 151149 | +149.170 170149 | +149.171 171149 | +149.172 172149 | +149.173 173149 | +149.180 180149 | +149.200 200149 | +149.201 500157 500157 | +149.210 210149 | +149.211 211149 | +149.212 212149 | +149.215 215149 | +149.216 216149 | +149.254 300149 | +15.1 121 3015 | +15.128 15 | +15.131 131015 | +15.133 133015 | +15.2 121 3015 500015 500015 | +15.201 201015 | +15.204 500322 500322 | +15.206 500373 500373 | +15.210 210015 | +15.211 211015 | +15.212 212015 | +15.214 214015 | +15.215 215015 | +15.216 216015 | +15.228 228015 | +15.254 300015 | +15.3 121 3015 | +150.128 150 | +150.129 129150 | +150.151 151150 | +150.171 171150 | +150.200 200150 | +150.201 201150 | +150.210 210150 | +150.211 211150 | +150.212 212150 | +150.215 215150 | +150.216 216150 | +150.254 300150 | +151.128 151 | +151.129 129151 | +151.131 131151 | +151.151 151151 | +151.160 151 | +151.170 151 | +151.171 171151 | +151.180 151 | +151.190 151 | +151.200 200151 | +151.210 210151 | +151.211 211151 | +151.212 212151 | +151.215 215151 | +151.216 216151 | +151.234 234151 | +151.254 300151 | +152.128 152 | +152.129 129152 | +152.150 150152 | +152.151 151152 | +152.160 152 | +152.171 171152 | +152.200 200152 | +152.201 500158 500158 | +152.210 210152 | +152.211 211152 | +152.212 212152 | +152.215 215152 | +152.216 216152 | +152.254 300152 | +153.128 153 | +153.129 129153 | +153.150 150153 | +153.151 151153 | +153.171 171153 | +153.172 172153 | +153.173 173153 | +153.200 200153 | +153.201 500159 500159 | +153.210 210153 | +153.211 211153 | +153.212 212153 | +153.215 215153 | +153.216 216153 | +153.254 300153 | +154.128 154 | +154.129 129154 | +154.150 150154 | +154.151 151154 | +154.171 171154 | +154.172 172154 | +154.173 173154 | +154.200 200154 | +154.201 500160 500160 | +154.203 500303 500303 | +154.210 210154 | +154.211 211154 | +154.212 212154 | +154.215 215154 | +154.216 216154 | +154.254 300154 | +155.128 155 | +155.129 129155 | +155.150 150155 | +155.151 151155 | +155.160 155 | +155.170 155 | +155.171 171155 | +155.180 155 | +155.190 155 | +155.200 200155 | +155.210 210155 | +155.211 211155 | +155.212 212155 | +155.215 215155 | +155.216 216155 | +155.254 300155 | +156.1 85001156 | +156.128 156 | +156.129 129156 | +156.151 151156 | +156.160 160156 | +156.171 171156 | +156.200 200156 | +156.210 210156 | +156.211 211156 | +156.212 212156 | +156.215 215156 | +156.216 216156 | +156.254 300156 | +157.1 85001157 | +157.128 157 | +157.129 129157 | +157.151 151157 | +157.160 160157 | +157.170 157 | +157.171 171157 | +157.190 157 | +157.200 200157 | +157.203 500304 500304 | +157.210 210157 | +157.211 211157 | +157.212 212157 | +157.215 215157 | +157.216 216157 | +157.254 300157 | +158.128 158 | +158.129 129158 | +158.151 151158 | +158.160 158 | +158.171 171158 | +158.200 200158 | +158.210 210158 | +158.211 211158 | +158.212 212158 | +158.215 215158 | +158.216 216158 | +158.254 300158 | +159.128 159 | +159.129 129159 | +159.151 151159 | +159.171 171159 | +159.200 200159 | +159.210 210159 | +159.211 211159 | +159.212 212159 | +159.215 215159 | +159.216 216159 | +159.254 300159 | +16.1 122 3016 | +16.128 16 | +16.131 131016 | +16.133 133016 | +16.2 122 3016 500016 500016 | +16.201 201016 | +16.204 500323 500323 | +16.206 500374 500374 | +16.210 210016 | +16.211 211016 | +16.212 212016 | +16.214 214016 | +16.215 215016 | +16.216 216016 | +16.228 228016 | +16.254 300016 | +16.3 122 3016 | +160.1 85001160 | +160.128 160 | +160.129 129160 | +160.151 151160 | +160.171 171160 | +160.200 200160 | +160.210 210160 | +160.211 211160 | +160.212 212160 | +160.215 215160 | +160.216 216160 | +160.254 300160 | +161.128 161 | +161.129 129161 | +161.151 151161 | +161.171 171161 | +161.200 200161 | +161.210 210161 | +161.211 211161 | +161.212 212161 | +161.215 215161 | +161.216 216161 | +162.128 162 | +162.129 129162 | +162.151 151162 | +162.171 171162 | +162.200 200162 | +162.210 210162 | +162.211 211162 | +162.212 212162 | +162.215 215162 | +162.216 216162 | +162.254 300162 | +163.128 163 | +163.129 129163 | +163.151 151163 | +163.171 171163 | +163.200 200163 | +163.210 210163 | +163.211 211163 | +163.212 212163 | +163.215 215163 | +163.216 216163 | +163.254 300163 | +164.128 164 | +164.129 129164 | +164.131 131164 | +164.151 151164 | +164.160 164 | +164.170 164 | +164.171 171164 | +164.174 174164 | +164.175 175164 | +164.180 164 | +164.190 164 | +164.200 200164 | +164.210 210164 | +164.211 211164 | +164.212 212164 | +164.215 215164 | +164.216 216164 | +164.228 228164 | +164.254 300164 | +165.128 165 | +165.129 129165 | +165.131 131165 | +165.132 132165 | +165.151 151165 | +165.160 165 | +165.171 171165 | +165.180 165 | +165.190 165 | +165.200 200165 | +165.210 210165 | +165.211 211165 | +165.212 212165 | +165.215 215165 | +165.216 216165 | +165.254 300165 | +166.128 166 | +166.129 129166 | +166.151 151166 | +166.160 166 | +166.171 171166 | +166.180 166 | +166.190 166 | +166.200 200166 | +166.210 210166 | +166.211 211166 | +166.212 212166 | +166.215 215166 | +166.216 216166 | +167.128 167 | +167.129 129167 | +167.131 131167 | +167.132 132167 | +167.151 151167 | +167.160 167 | +167.171 171167 | +167.174 174167 | +167.175 175167 | +167.180 167 | +167.190 167 | +167.200 200167 | +167.212 212167 | +167.215 215167 | +167.216 216167 | +167.234 234167 | +167.254 300167 | +168.128 168 | +168.129 129168 | +168.150 150168 | +168.151 151168 | +168.160 168 | +168.171 171168 | +168.174 174168 | +168.175 175168 | +168.180 168 | +168.190 168 | +168.200 200168 | +168.212 212168 | +168.215 215168 | +168.216 216168 | +168.254 300168 | +169.128 169 | +169.129 129169 | +169.150 150169 | +169.151 151169 | +169.171 171169 | +169.172 172169 | +169.173 173169 | +169.190 169 | +169.200 200169 | +169.212 212169 | +169.215 215169 | +169.216 216169 | +169.230 230169 | +169.254 300169 | +17.1 3017 | +17.128 17 | +17.131 131017 | +17.133 133017 | +17.2 3017 500017 500017 500018 500018 | +17.201 201017 | +17.202 500192 500192 | +17.206 500375 500375 | +17.210 210017 | +17.211 211017 | +17.212 212017 | +17.214 214017 | +17.215 215017 | +17.216 216017 | +17.228 228017 | +17.254 300017 | +17.3 3017 | +170.128 170 | +170.129 129170 | +170.150 150170 | +170.151 151170 | +170.160 170 | +170.171 171170 | +170.174 174170 | +170.175 175170 | +170.190 190170 | +170.200 200170 | +170.201 500161 500161 | +170.212 212170 | +170.215 215170 | +170.216 216170 | +170.228 228170 | +170.254 300170 | +171.128 171 | +171.129 129171 | +171.150 150171 | +171.151 151171 | +171.160 160171 | +171.170 170171 | +171.171 171171 | +171.190 190171 | +171.200 200171 | +171.201 500162 500162 | +171.212 212171 | +171.215 215171 | +171.216 216171 | +171.228 228171 | +171.254 300171 | +172.128 172 | +172.129 129172 | +172.150 150172 | +172.151 151172 | +172.160 172 | +172.171 172 | +172.174 172 | +172.175 172 | +172.180 172 | +172.190 172 | +172.200 200172 | +172.212 212172 | +172.215 215172 | +172.216 216172 | +172.254 300172 | +173.128 173 | +173.129 129173 | +173.150 150173 | +173.151 151173 | +173.160 173 | +173.171 171173 | +173.190 190173 | +173.200 200173 | +173.201 500163 500163 | +173.212 212173 | +173.215 215173 | +173.216 216173 | +173.254 300173 | +174.128 174 | +174.129 129174 | +174.151 151174 | +174.160 174 | +174.171 171174 | +174.190 174 | +174.200 200174 | +174.212 212174 | +174.215 215174 | +174.216 216174 | +174.230 230174 | +174.254 300174 | +175.128 175 | +175.129 129175 | +175.151 151175 | +175.171 171175 | +175.172 172175 | +175.173 173175 | +175.174 174175 | +175.175 175175 | +175.190 175 | +175.200 200175 | +175.212 212175 | +175.215 215175 | +175.216 216175 | +175.230 230175 | +175.254 300175 | +176.128 176 | +176.129 129176 | +176.151 151176 | +176.160 176 | +176.170 176 | +176.171 171176 | +176.172 172176 | +176.173 173176 | +176.180 180176 | +176.190 176 | +176.200 200176 | +176.212 212176 | +176.215 215176 | +176.216 216176 | +176.230 230176 | +176.254 300176 | +177.128 177 | +177.129 129177 | +177.151 151177 | +177.160 177 | +177.170 177 | +177.171 171177 | +177.172 172177 | +177.173 173177 | +177.180 180177 | +177.190 177 | +177.200 200177 | +177.212 212177 | +177.215 215177 | +177.216 216177 | +177.230 230177 | +177.254 300177 | +178.128 178 | +178.129 129178 | +178.151 151178 | +178.160 178 | +178.171 171178 | +178.172 172178 | +178.173 173178 | +178.180 180178 | +178.190 178 | +178.200 200178 | +178.212 212178 | +178.215 215178 | +178.216 216178 | +178.230 230178 | +178.254 300178 | +179.128 179 | +179.129 129179 | +179.151 151179 | +179.160 179 | +179.170 170179 | +179.171 171179 | +179.172 172179 | +179.173 173179 | +179.180 180179 | +179.190 179 | +179.200 200179 | +179.212 212179 | +179.215 215179 | +179.216 216179 | +179.230 230179 | +179.254 300179 | +18.1 3018 | +18.128 18 | +18.131 131018 | +18.133 133018 | +18.2 3018 | +18.201 500094 500094 | +18.202 500193 500193 | +18.210 210018 | +18.211 211018 | +18.212 212018 | +18.214 214018 | +18.215 215018 | +18.216 216018 | +18.228 228018 | +18.254 300018 | +18.3 3018 | +180.128 180 | +180.129 129180 | +180.150 150180 | +180.151 151180 | +180.160 160180 | +180.170 180 | +180.171 171180 | +180.172 172180 | +180.173 173180 | +180.180 180 | +180.200 200180 | +180.202 500242 500242 | +180.212 212180 | +180.216 216180 | +180.230 230180 | +180.254 300180 | +181.128 181 | +181.129 129181 | +181.150 150181 | +181.151 151181 | +181.160 160181 | +181.170 181 | +181.171 171181 | +181.172 172181 | +181.173 173181 | +181.180 181 | +181.200 200181 | +181.210 210181 | +181.211 211181 | +181.212 212181 | +181.216 216181 | +181.230 230181 | +181.254 300181 | +182.128 182 | +182.129 129182 | +182.150 150182 | +182.151 151182 | +182.160 160182 | +182.170 182 | +182.171 171182 | +182.172 172182 | +182.173 173182 | +182.180 182 | +182.190 182 | +182.200 200182 | +182.210 210182 | +182.211 211182 | +182.212 212182 | +182.216 216182 | +182.230 230182 | +182.254 300182 | +183.128 183 | +183.129 129183 | +183.150 150183 | +183.151 151183 | +183.160 183 | +183.171 171183 | +183.174 174183 | +183.175 175183 | +183.200 200183 | +183.210 210183 | +183.211 211183 | +183.212 212183 | +183.216 216183 | +183.254 300183 | +184.128 184 | +184.129 129184 | +184.151 151184 | +184.160 160184 | +184.170 184 | +184.171 171184 | +184.200 200184 | +184.210 210184 | +184.211 211184 | +184.212 212184 | +184.216 216184 | +184.254 300184 | +185.128 185 | +185.129 129185 | +185.151 151185 | +185.160 185 | +185.170 185 | +185.171 171185 | +185.200 200185 | +185.210 210185 | +185.211 211185 | +185.212 212185 | +185.216 216185 | +185.254 300185 | +186.128 186 | +186.129 129186 | +186.151 151186 | +186.160 186 | +186.171 171186 | +186.200 200186 | +186.210 210186 | +186.212 212186 | +186.216 216186 | +186.254 300186 | +187.128 187 | +187.129 129187 | +187.151 151187 | +187.160 187 | +187.171 171187 | +187.200 200187 | +187.201 201187 500164 500164 | +187.206 500385 500385 | +187.207 500388 500388 | +187.210 210187 | +187.212 212187 | +187.216 216187 | +187.254 300187 | +188.128 188 | +188.129 129188 | +188.151 151188 | +188.160 188 | +188.171 171188 | +188.200 200188 | +188.210 210188 | +188.212 212188 | +188.216 216188 | +188.254 300188 | +189.128 189 | +189.129 129189 | +189.171 171189 | +189.172 172189 | +189.173 173189 | +189.200 200189 | +189.210 210189 | +189.212 212189 | +189.216 216189 | +189.230 230189 | +189.254 300189 | +19.1 3019 | +19.128 19 | +19.133 133019 | +19.2 3019 | +19.201 500095 500095 | +19.202 500194 500194 | +19.210 210019 | +19.211 211019 | +19.212 212019 | +19.214 214019 | +19.215 215019 | +19.216 216019 | +19.228 228019 | +19.254 300019 | +19.3 3019 | +190.128 190 | +190.129 129190 | +190.151 151190 | +190.160 190 | +190.171 171190 | +190.200 200190 | +190.210 210190 | +190.212 212190 | +190.216 216190 | +190.254 300190 | +191.128 191 | +191.129 129191 | +191.151 151191 | +191.160 191 | +191.171 171191 | +191.200 200191 | +191.210 210191 | +191.212 212191 | +191.216 216191 | +191.254 300191 | +192.128 192 | +192.129 129192 | +192.151 151192 | +192.160 192 | +192.171 171192 | +192.200 200192 | +192.210 210192 | +192.212 212192 | +192.216 216192 | +192.254 300192 | +193.128 193 | +193.129 129193 | +193.151 151193 | +193.160 193 | +193.171 171193 | +193.200 200193 | +193.210 210193 | +193.212 212193 | +193.216 216193 | +193.254 300193 | +194.128 194 | +194.129 129194 | +194.151 151194 | +194.171 171194 | +194.200 200194 | +194.201 500165 500165 | +194.202 500243 500243 | +194.210 210194 | +194.212 212194 | +194.216 216194 | +194.254 300194 | +195.128 195 | +195.129 129195 | +195.160 195 | +195.171 171195 | +195.172 172195 | +195.173 173195 | +195.200 200195 | +195.202 500244 500244 | +195.210 210195 | +195.212 212195 | +195.216 216195 | +195.230 230195 | +195.254 300195 | +196.128 196 | +196.129 129196 | +196.160 196 | +196.171 171196 | +196.172 172196 | +196.173 173196 | +196.200 200196 | +196.202 500245 500245 | +196.203 500305 500305 | +196.210 210196 | +196.212 212196 | +196.216 216196 | +196.230 230196 | +196.254 300196 | +197.128 197 | +197.129 129197 | +197.160 197 | +197.171 171197 | +197.172 172197 | +197.173 173197 | +197.200 200197 | +197.201 500166 500166 | +197.202 500246 500246 | +197.210 210197 | +197.212 212197 | +197.216 216197 | +197.230 230197 | +197.254 300197 | +198.128 198 | +198.129 129198 | +198.160 160198 | +198.171 171198 | +198.200 200198 | +198.201 500167 500167 | +198.202 500247 500247 | +198.212 212198 | +198.216 216198 | +198.230 230198 | +198.254 300198 | +199.128 199 | +199.129 129199 | +199.151 151199 | +199.160 160199 | +199.171 171199 | +199.200 200199 | +199.201 500168 500168 | +199.202 500248 500248 | +199.212 212199 | +199.216 216199 | +2.1 151 | +2.128 2 | +2.129 129002 | +2.131 131002 | +2.133 133002 | +2.171 171002 | +2.2 151 500002 500002 | +2.200 200002 | +2.201 201002 | +2.204 500309 500309 | +2.205 500328 500328 500329 500329 500330 500330 500331 500331 | +2.210 210002 | +2.211 211002 | +2.212 212002 | +2.213 213002 | +2.214 214002 | +2.215 215002 | +2.216 216002 | +2.228 228002 | +2.254 300002 | +2.3 151 | +20.1 3020 | +20.128 20 | +20.131 131020 | +20.133 133020 | +20.2 3020 | +20.201 500096 500096 | +20.210 210020 | +20.211 211020 | +20.212 212020 | +20.214 214020 | +20.215 215020 | +20.216 216020 | +20.3 3020 | +200.128 200 | +200.129 129200 | +200.140 140200 | +200.151 151200 | +200.160 200 | +200.171 171200 | +200.200 200200 | +200.201 201200 500169 500169 | +200.202 500249 500249 | +200.212 212200 | +200.216 216200 | +200.254 300200 | +201.128 201 | +201.129 129201 | +201.131 131201 | +201.132 132201 | +201.151 151201 | +201.160 160201 | +201.170 201 | +201.171 171201 | +201.174 174201 | +201.175 175201 | +201.190 201 | +201.200 200201 | +201.202 500250 500250 | +201.212 212201 | +201.216 216201 | +201.254 300201 | +202.128 202 | +202.129 129202 | +202.131 131202 | +202.132 132202 | +202.151 151202 | +202.160 160202 | +202.170 202 | +202.171 171202 | +202.174 174202 | +202.175 175202 | +202.190 202 | +202.200 200202 | +202.202 500251 500251 | +202.212 212202 | +202.216 216202 | +202.254 300202 | +203.128 203 | +203.129 129203 | +203.151 151203 | +203.171 171203 | +203.200 200203 | +203.201 201203 500170 500170 | +203.202 500252 500252 | +203.203 500306 500306 | +203.210 210203 | +203.211 211203 | +203.212 212203 | +203.216 216203 | +203.254 300203 | +204.128 204 | +204.129 129204 | +204.151 151204 | +204.160 204 | +204.171 171204 | +204.200 200204 | +204.202 500253 500253 | +204.203 500307 500307 | +204.212 212204 | +204.216 216204 | +205.128 205 | +205.129 129205 | +205.151 151205 | +205.160 160205 | +205.171 171205 | +205.172 172205 | +205.173 173205 | +205.180 205 | +205.200 200205 | +205.202 500254 500254 | +205.212 212205 | +205.216 216205 | +205.230 230205 | +205.254 300205 | +206.128 206 | +206.129 129206 | +206.151 151206 | +206.160 160206 | +206.162 162206 | +206.171 171206 | +206.200 200206 | +206.202 500255 500255 | +206.210 210206 | +206.211 211206 | +206.212 212206 | +206.216 216206 | +206.254 300206 | +207.128 207 | +207.129 129207 | +207.151 151207 | +207.160 160207 | +207.162 162207 | +207.171 171207 | +207.200 200207 | +207.202 500256 500256 | +207.210 210207 | +207.211 211207 | +207.212 212207 | +207.216 216207 | +207.254 300207 | +208.128 208 | +208.129 129208 | +208.130 130208 | +208.151 151208 | +208.160 160208 | +208.162 162208 | +208.171 171208 | +208.172 172208 | +208.173 173208 | +208.200 200208 | +208.202 500257 500257 | +208.210 210208 | +208.211 211208 | +208.212 212208 | +208.216 216208 | +208.230 230208 | +208.254 300208 | +209.128 209 | +209.129 129209 | +209.130 130209 | +209.151 151209 | +209.160 160209 | +209.162 162209 | +209.171 171209 | +209.172 172209 | +209.173 173209 | +209.200 200209 | +209.202 500258 500258 | +209.210 210209 | +209.211 211209 | +209.212 212209 | +209.216 216209 | +209.230 230209 | +209.254 300209 | +20d 151163 | +21.1 3021 | +21.128 21 | +21.129 129021 | +21.131 131021 | +21.133 133021 | +21.171 171021 | +21.2 3021 500019 500019 | +21.200 200021 | +21.201 500097 500097 | +21.210 210021 | +21.211 211021 | +21.212 212021 | +21.214 214021 | +21.215 215021 | +21.216 216021 | +21.228 228021 | +21.254 300021 | +21.3 3021 | +210.128 210 | +210.129 129210 | +210.130 130210 | +210.151 151210 | +210.160 160210 | +210.162 162210 | +210.171 171210 | +210.172 172210 | +210.173 173210 | +210.200 200210 | +210.202 500259 500259 | +210.210 210210 | +210.211 211210 | +210.212 212210 | +210.216 216210 | +210.230 230210 | +210.254 300210 | +211.128 211 | +211.129 129211 | +211.130 130211 | +211.140 140211 | +211.151 151211 | +211.160 160211 | +211.162 162211 | +211.171 171211 | +211.172 172211 | +211.173 173211 | +211.200 200211 | +211.202 500260 500260 | +211.210 210211 | +211.211 211211 | +211.212 212211 | +211.216 216211 | +211.230 230211 | +211.254 300211 | +212.128 212 | +212.129 129212 | +212.130 130212 | +212.140 140212 | +212.151 151212 | +212.160 160212 | +212.162 162212 | +212.171 171212 | +212.172 172212 | +212.173 173212 | +212.200 200212 | +212.201 500171 500171 | +212.202 500261 500261 | +212.210 210212 | +212.211 211212 | +212.212 212212 | +212.216 216212 | +212.230 230212 | +212.254 300212 | +213.128 213 | +213.130 130213 | +213.140 140213 | +213.160 160213 | +213.162 162213 | +213.202 500262 500262 | +213.210 210213 | +213.211 211213 | +213.212 212213 | +213.216 216213 | +213.254 300213 | +214.128 214 | +214.129 129214 | +214.130 130214 | +214.140 140214 | +214.160 160214 | +214.162 162214 | +214.171 171214 | +214.200 200214 | +214.202 500263 500263 | +214.210 210214 | +214.211 211214 | +214.212 212214 | +214.216 216214 | +214.254 300214 | +215.128 215 | +215.129 129215 | +215.130 130215 | +215.140 140215 | +215.160 160215 | +215.162 162215 | +215.171 171215 | +215.200 200215 | +215.201 201215 500172 500172 | +215.202 500264 500264 | +215.210 210215 | +215.211 211215 | +215.212 212215 | +215.216 216215 | +215.254 300215 | +216.128 216 | +216.129 129216 | +216.130 130216 | +216.132 132216 | +216.140 140216 | +216.160 160216 | +216.162 162216 | +216.171 171216 | +216.200 200216 | +216.202 500265 500265 | +216.210 210216 | +216.211 211216 | +216.212 212216 | +216.216 216216 | +217.128 217 | +217.129 129217 | +217.130 130217 | +217.140 140217 | +217.160 160217 | +217.162 162217 | +217.171 171217 | +217.200 200217 | +217.202 500266 500266 | +217.210 210217 | +217.212 212217 | +217.216 216217 | +218.128 218 | +218.129 129218 | +218.130 130218 | +218.140 140218 | +218.160 160218 | +218.162 162218 | +218.171 171218 | +218.200 200218 | +218.202 500267 500267 | +218.210 210218 | +218.212 212218 | +218.216 216218 | +218.254 300218 | +219.128 219 | +219.129 129219 | +219.130 130219 | +219.140 140219 | +219.160 160219 | +219.162 162219 | +219.171 171219 | +219.200 200219 | +219.202 500268 500268 | +219.210 210219 | +219.212 212219 | +219.216 216219 | +219.254 300219 | +22.1 3022 | +22.128 22 | +22.129 129022 | +22.131 131022 | +22.133 133022 | +22.171 171022 | +22.2 3022 | +22.200 200022 | +22.210 210022 | +22.211 211022 | +22.212 212022 | +22.214 214022 | +22.215 215022 | +22.216 216022 | +22.228 228022 | +22.254 300022 | +22.3 3022 | +220.128 220 | +220.129 129220 | +220.130 130220 | +220.140 140220 | +220.160 160220 | +220.162 162220 | +220.171 171220 | +220.200 200220 | +220.202 500269 500269 | +220.210 210220 | +220.212 212220 | +220.216 216220 | +220.254 300220 | +221.128 221 | +221.129 129221 | +221.130 130221 | +221.140 140221 | +221.160 160221 | +221.162 162221 | +221.171 171221 | +221.200 200221 | +221.202 500270 500270 | +221.210 210221 | +221.212 212221 | +221.216 216221 | +221.254 300221 | +222.128 222 | +222.129 129222 | +222.130 222 | +222.140 140222 | +222.160 160222 | +222.162 162222 | +222.171 171222 | +222.200 200222 | +222.202 500271 500271 | +222.210 210222 | +222.212 212222 | +222.216 216222 | +222.254 300222 | +223.128 223 | +223.129 129223 | +223.130 223 | +223.140 140223 | +223.160 160223 | +223.162 162223 | +223.171 171223 | +223.200 200223 | +223.202 500272 500272 | +223.210 210223 | +223.212 212223 | +223.216 216223 | +223.254 300223 | +224.128 224 | +224.129 129224 | +224.130 130224 | +224.140 140224 | +224.160 160224 | +224.162 162224 | +224.171 171224 | +224.200 200224 | +224.202 500273 500273 | +224.210 210224 | +224.212 212224 | +224.216 216224 | +224.254 300224 | +225.128 225 | +225.129 129225 | +225.130 130225 | +225.140 140225 | +225.160 160225 | +225.162 162225 | +225.171 171225 | +225.200 200225 | +225.202 500274 500274 | +225.210 210225 | +225.212 212225 | +225.216 216225 | +225.254 300225 | +226.128 226 | +226.129 129226 | +226.130 130226 | +226.140 140226 | +226.160 160226 | +226.162 162226 | +226.171 171226 | +226.200 200226 | +226.202 500275 500275 | +226.210 210226 | +226.212 212226 | +226.216 216226 | +226.254 300226 | +227.128 227 | +227.129 129227 | +227.130 227 | +227.140 140227 | +227.162 162227 | +227.171 171227 | +227.200 200227 | +227.202 500276 500276 | +227.210 210227 | +227.212 212227 | +227.216 216227 | +227.254 300227 | +228.128 228 | +228.129 129228 | +228.130 130228 | +228.131 131228 | +228.132 132228 | +228.140 140228 | +228.160 228 | +228.170 228 | +228.171 171228 | +228.172 172228 | +228.173 173228 | +228.190 228 | +228.200 200228 | +228.202 500277 500277 | +228.210 210228 | +228.212 212228 | +228.216 216228 | +228.220 220228 | +228.228 228228 | +228.230 230228 | +228.234 234228 | +229.128 229 | +229.129 129229 | +229.130 130229 | +229.131 131229 | +229.140 140229 | +229.160 229 | +229.162 162229 | +229.171 171229 | +229.190 190229 | +229.200 200229 | +229.202 500278 500278 | +229.210 210229 | +229.212 212229 | +229.216 216229 | +23.1 3023 | +23.128 23 | +23.129 129023 | +23.131 131023 | +23.133 133023 | +23.171 171023 | +23.2 3023 | +23.200 200023 | +23.210 210023 | +23.211 211023 | +23.212 212023 | +23.214 214023 | +23.215 215023 | +23.216 216023 | +23.228 228023 | +23.254 300023 | +23.3 3023 | +230.128 230 | +230.129 129230 | +230.130 130230 | +230.140 140230 | +230.160 230 | +230.162 162230 | +230.171 171230 | +230.200 200230 | +230.201 500173 500173 500174 500174 500175 500175 | +230.210 210230 | +230.212 212230 | +230.216 216230 | +230.254 300230 | +231.128 231 | +231.129 129231 | +231.130 130231 | +231.140 140231 | +231.160 160231 | +231.162 162231 | +231.171 171231 | +231.200 200231 | +231.202 500279 500279 500280 500280 | +231.210 210231 | +231.212 212231 | +231.216 216231 | +231.254 300231 | +232.128 232 | +232.129 129232 | +232.130 130232 | +232.131 131232 | +232.140 140232 | +232.160 232 | +232.162 162232 | +232.171 171232 | +232.200 200232 | +232.201 500176 500176 | +232.202 500281 500281 500282 500282 | +232.210 210232 | +232.212 212232 | +232.216 216232 | +232.254 300232 | +233.128 233 | +233.129 129233 | +233.140 140233 | +233.160 233 | +233.162 162233 | +233.171 171233 | +233.200 200233 | +233.201 500177 500177 | +233.202 500283 500283 500284 500284 | +233.210 210233 | +233.212 212233 | +233.216 216233 | +233.254 300233 | +234.128 234 | +234.129 129234 | +234.140 140234 | +234.160 234 | +234.171 171234 | +234.200 200234 | +234.210 210234 | +234.212 212234 | +234.216 216234 | +234.254 300234 | +235.128 235 | +235.129 129235 | +235.140 140235 | +235.160 235 | +235.171 171235 | +235.200 200235 | +235.210 210235 | +235.212 212235 | +235.216 216235 | +235.254 300235 | +236.128 236 | +236.129 129236 | +236.140 140236 | +236.160 236 | +236.171 171236 | +236.174 174236 | +236.175 175236 | +236.200 200236 | +236.201 500178 500178 | +236.210 210236 | +236.212 212236 | +236.216 216236 | +236.254 300236 | +237.128 237 | +237.129 129237 | +237.140 140237 | +237.160 237 | +237.171 171237 | +237.200 200237 | +237.201 500179 500179 | +237.210 210237 | +237.212 212237 | +237.216 216237 | +237.254 300237 | +238.128 238 | +238.129 129238 | +238.140 140238 | +238.160 238 | +238.171 171238 | +238.200 200238 | +238.201 500180 500180 | +238.210 210238 | +238.212 212238 | +238.216 216238 | +238.254 300238 | +239.128 239 | +239.129 129239 | +239.140 140239 | +239.160 160239 | +239.171 171239 | +239.172 172239 | +239.173 173239 | +239.200 200239 | +239.201 500181 500181 | +239.210 210239 | +239.212 212239 | +239.216 216239 | +239.254 300239 | +24.1 3024 | +24.128 24 | +24.129 129024 | +24.131 131024 | +24.133 133024 | +24.2 3024 | +24.200 200024 | +24.210 210024 | +24.211 211024 | +24.212 212024 | +24.214 214024 | +24.215 215024 | +24.216 216024 | +24.228 228024 | +24.3 3024 | +240.128 240 | +240.129 129240 | +240.140 140240 | +240.160 160240 | +240.171 171240 | +240.172 172240 | +240.173 173240 | +240.200 200240 | +240.201 500182 500182 | +240.210 210240 | +240.212 212240 | +240.216 216240 | +240.254 300240 | +241.128 241 | +241.129 129241 | +241.140 140241 | +241.160 160241 | +241.171 171241 | +241.200 200241 | +241.201 201241 500183 500183 | +241.210 210241 | +241.212 212241 | +241.216 216241 | +241.254 300241 | +242.128 242 | +242.129 129242 | +242.140 140242 | +242.160 160242 | +242.171 171242 | +242.200 200242 | +242.212 212242 | +242.216 216242 | +242.228 228242 | +242.254 300242 | +243.128 243 | +243.129 129243 | +243.140 140243 | +243.160 160243 | +243.171 171243 | +243.200 200243 | +243.201 500184 500184 | +243.212 212243 | +243.216 216243 | +243.228 228243 | +243.254 300243 | +244.128 244 | +244.129 129244 | +244.140 140244 | +244.160 244 | +244.171 171244 | +244.200 200244 | +244.212 212244 | +244.216 216244 | +244.228 228244 | +244.254 300244 | +245.128 245 | +245.129 129245 | +245.140 140245 | +245.160 245 | +245.171 171245 | +245.200 200245 | +245.212 212245 | +245.216 216245 | +245.228 228245 | +245.254 300245 | +246.128 246 | +246.129 129246 | +246.140 140246 | +246.160 160246 | +246.171 171246 | +246.200 200246 | +246.212 212246 | +246.216 216246 | +246.228 228246 | +246.254 300246 | +247.128 247 | +247.129 129247 | +247.140 140247 | +247.160 160247 | +247.171 171247 | +247.200 200247 | +247.212 212247 | +247.216 216247 | +247.228 228247 | +247.254 300247 | +248.128 248 | +248.129 129248 | +248.140 140248 | +248.171 171248 | +248.200 200248 | +248.202 500285 500285 | +248.212 212248 | +248.216 216248 | +248.254 300248 | +249.128 249 | +249.129 129249 | +249.140 140249 | +249.160 160249 | +249.171 171249 | +249.200 200249 | +249.212 212249 | +249.216 216249 | +249.228 228249 | +249.254 300249 | +25.1 3025 | +25.128 25 | +25.129 129025 | +25.131 131025 | +25.133 133025 | +25.2 3025 | +25.200 200025 | +25.210 210025 | +25.211 211025 | +25.212 212025 | +25.214 214025 | +25.215 215025 | +25.216 216025 | +25.228 228025 | +25.254 300025 | +25.3 3025 | +250.128 250 | +250.129 129250 | +250.140 140250 | +250.171 171250 | +250.200 200250 | +250.212 212250 | +250.216 216250 | +250.228 228250 | +250.254 300250 | +251.128 251 | +251.129 129251 | +251.140 140251 | +251.171 171251 | +251.200 200251 | +251.212 212251 | +251.216 216251 | +251.228 228251 | +251.254 300251 | +252.128 252 | +252.129 129252 | +252.140 140252 | +252.171 171252 | +252.200 200252 | +252.212 212252 | +252.216 216252 | +252.228 228252 | +252.254 300252 | +253.128 253 | +253.129 129253 | +253.140 140253 | +253.171 171253 | +253.200 200253 | +253.212 212253 | +253.216 216253 | +253.228 228253 | +253.254 300253 | +254.128 254 | +254.129 129254 | +254.140 140254 | +254.160 160254 | +254.171 171254 | +254.200 200254 | +254.212 212254 | +254.216 216254 | +254.228 228254 | +254.254 300254 | +255.128 255 | +255.129 129255 | +255.130 255 | +255.131 131255 | +255.132 255 | +255.140 140255 | +255.150 150255 | +255.151 151255 | +255.160 255 | +255.162 162255 | +255.170 255 | +255.171 171255 | +255.172 172255 | +255.173 173255 | +255.174 174255 | +255.175 175255 | +255.180 255 | +255.190 255 | +255.200 200255 | +255.201 201255 | +255.212 212255 | +255.216 216255 | +255.254 300255 | +26.1 3026 | +26.128 26 | +26.129 129026 | +26.133 133026 | +26.171 171026 | +26.2 3026 | +26.200 200026 | +26.210 210026 | +26.211 211026 | +26.212 212026 | +26.214 214026 | +26.215 215026 | +26.216 216026 | +26.228 228026 | +26.254 300026 | +26.3 3026 | +27.1 3027 | +27.128 27 | +27.129 129027 | +27.133 133027 | +27.171 171027 | +27.2 3027 | +27.200 200027 | +27.210 210027 | +27.211 211027 | +27.212 212027 | +27.214 214027 | +27.215 215027 | +27.216 216027 | +27.228 228027 | +27.254 300027 | +27.3 3027 | +28.1 3028 | +28.128 28 | +28.129 129028 | +28.133 133028 | +28.171 171028 | +28.2 3028 500020 500020 | +28.200 200028 | +28.210 210028 | +28.211 211028 | +28.212 212028 | +28.214 214028 | +28.215 215028 | +28.216 216028 | +28.228 228028 | +28.254 300028 | +28.3 3028 | +29.1 3029 | +29.128 29 | +29.129 129029 | +29.133 133029 | +29.171 171029 | +29.2 3029 500021 500021 | +29.200 200029 | +29.201 201029 500098 500098 | +29.203 500286 500286 | +29.210 210029 | +29.211 211029 | +29.212 212029 | +29.214 214029 | +29.215 215029 | +29.216 216029 | +29.254 300029 | +29.3 3029 | +2d 168 | +2da 171168 | +2ddiff 200168 | +2dfd 140251 | +2dgrd 129168 | +2dsp 140250 | +2t 167 | +2ta 171167 | +2tag0 131003 | +2tag1 131002 | +2tag2 131001 | +2talm1 131004 | +2talm2 131005 | +2tdiff 200167 | +2tgrd 129167 | +2ti 132167 | +2tl273 131073 | +2tp 131139 131167 | +2tpg25 133006 | +2tpg30 133007 | +2tpg35 133008 | +2tpg40 133009 | +2tpg45 133010 | +2tpl0 133003 | +2tpl10 133005 | +2tpl5 133004 | +2tplm10 133001 | +2tplm5 133002 | +2ts 234167 | +3.1 3003 | +3.128 3 | +3.129 129003 | +3.131 131003 | +3.133 133003 | +3.171 171003 | +3.2 3003 500003 500003 | +3.200 200003 | +3.201 201003 | +3.204 500310 500310 | +3.205 500332 500332 500333 500333 500334 500334 500335 500335 500336 500336 500337 500337 500338 500338 500339 500339 | +3.210 210003 | +3.211 211003 | +3.212 212003 | +3.213 213003 | +3.214 214003 | +3.215 215003 | +3.216 216003 | +3.228 228003 | +3.254 300003 | +3.3 3003 | +30.1 3030 | +30.128 30 | +30.129 129030 | +30.133 133030 | +30.171 171030 | +30.2 3030 500022 500022 | +30.200 200030 | +30.201 201030 500099 500099 | +30.203 500287 500287 | +30.210 210030 | +30.211 211030 | +30.212 212030 | +30.214 214030 | +30.215 215030 | +30.216 216030 | +30.254 300030 | +30.3 3030 | +31.1 3031 | +31.128 31 | +31.129 129031 | +31.133 133031 | +31.171 171031 | +31.174 174031 | +31.175 175031 | +31.2 3031 500023 500023 500024 500024 | +31.200 200031 | +31.201 201031 500100 500100 | +31.210 210031 | +31.211 211031 | +31.212 212031 | +31.214 214031 | +31.215 215031 | +31.216 216031 | +31.254 300031 | +31.3 3031 | +32.1 10 | +32.128 32 | +32.129 129032 | +32.133 133032 | +32.171 171032 | +32.2 10 500025 500025 500026 500026 | +32.200 200032 | +32.201 201032 | +32.210 210032 | +32.211 211032 | +32.212 212032 | +32.214 214032 | +32.215 215032 | +32.216 216032 | +32.254 300032 | +32.3 10 | +33.1 131 165 | +33.128 33 | +33.129 129033 | +33.133 133033 | +33.171 171033 | +33.2 131 165 500027 500027 500028 500028 | +33.200 200033 | +33.201 201033 500101 500101 | +33.203 500288 500288 | +33.206 500376 500376 | +33.210 210033 | +33.211 211033 | +33.212 212033 | +33.214 214033 | +33.215 215033 | +33.216 216033 | +33.254 300033 | +33.3 131 165 | +34.1 132 166 | +34.128 34 | +34.129 129034 | +34.133 133034 | +34.171 171034 | +34.174 174034 | +34.175 175034 | +34.2 132 166 500029 500029 500030 500030 | +34.200 200034 | +34.201 201034 | +34.206 500377 500377 | +34.210 210034 | +34.211 211034 | +34.212 212034 | +34.214 214034 | +34.215 215034 | +34.216 216034 | +34.254 300034 | +34.3 132 166 | +35.1 1 | +35.128 35 | +35.129 129035 | +35.133 133035 | +35.171 171035 | +35.2 1 | +35.200 200035 | +35.201 201035 500102 500102 | +35.210 210035 | +35.211 211035 | +35.212 212035 | +35.214 214035 | +35.215 215035 | +35.216 216035 | +35.254 300035 | +35.3 1 | +36.1 2 | +36.128 36 | +36.129 129036 | +36.133 133036 | +36.171 171036 | +36.2 2 | +36.200 200036 | +36.201 201036 500103 500103 | +36.210 210036 | +36.211 211036 | +36.212 212036 | +36.214 214036 | +36.215 215036 | +36.216 216036 | +36.254 300036 | +36.3 2 | +37.1 3037 | +37.128 37 | +37.129 129037 | +37.133 133037 | +37.171 171037 | +37.2 3037 | +37.200 200037 | +37.201 201037 500104 500104 | +37.210 210037 | +37.211 211037 | +37.212 212037 | +37.214 214037 | +37.215 215037 | +37.216 216037 | +37.3 3037 | +38.1 3038 | +38.128 38 | +38.129 129038 | +38.133 133038 | +38.171 171038 | +38.2 3038 | +38.200 200038 | +38.201 201038 500105 500105 | +38.210 210038 | +38.211 211038 | +38.212 212038 | +38.214 214038 | +38.215 215038 | +38.216 216038 | +38.254 300038 | +38.3 3038 | +39.1 135 | +39.128 39 | +39.129 129039 | +39.133 133039 | +39.171 171039 | +39.174 174039 | +39.175 175039 | +39.2 135 500031 500031 | +39.200 200039 | +39.201 500106 500106 | +39.210 210039 | +39.211 211039 | +39.212 212039 | +39.214 214039 | +39.215 215039 | +39.216 216039 | +39.228 228039 | +39.254 300039 | +39.3 135 | +4.1 60 | +4.128 4 | +4.129 129004 | +4.131 131004 | +4.133 133004 | +4.171 171004 | +4.2 60 | +4.200 200004 | +4.201 201004 | +4.202 500185 500185 | +4.204 500311 500311 | +4.205 500340 500340 500341 500341 500342 500342 500343 500343 500344 500344 500345 500345 500346 500346 500347 500347 500348 500348 500349 500349 500350 500350 500351 500351 500352 500352 500353 500353 500354 500354 500355 500355 500356 500356 500357 500357 500358 500358 500359 500359 500360 500360 500361 500361 500362 500362 500363 500363 500364 500364 500365 500365 500366 500366 500367 500367 500368 500368 500369 500369 500370 500370 500371 500371 | +4.210 210004 | +4.211 211004 | +4.212 212004 | +4.213 213004 | +4.214 214004 | +4.215 215004 | +4.216 216004 | +4.228 228004 | +4.3 60 | +40.128 40 | +40.129 129040 | +40.133 133040 | +40.171 171040 | +40.174 174040 | +40.175 175040 | +40.2 500032 500032 | +40.200 200040 | +40.201 500107 500107 | +40.202 500195 500195 | +40.210 210040 | +40.211 211040 | +40.212 212040 | +40.214 214040 | +40.215 215040 | +40.216 216040 | +40.228 228040 | +40.254 300040 | +41.1 3041 | +41.128 41 | +41.129 129041 | +41.133 133041 | +41.171 171041 | +41.174 174041 | +41.175 175041 | +41.2 3041 | +41.200 200041 | +41.201 201041 500108 500108 | +41.202 500196 500196 | +41.210 210041 | +41.211 211041 | +41.212 212041 | +41.214 214041 | +41.215 215041 | +41.216 216041 | +41.228 228041 | +41.254 300041 | +41.3 3041 | +42.1 3042 | +42.128 42 | +42.129 129042 | +42.133 133042 | +42.171 171042 | +42.174 174042 | +42.175 175042 | +42.2 3042 | +42.200 200042 | +42.201 201042 500109 500109 | +42.202 500197 500197 | +42.210 210042 | +42.211 211042 | +42.212 212042 | +42.214 214042 | +42.215 215042 | +42.216 216042 | +42.228 228042 | +42.254 300042 | +42.3 3042 | +43.1 138 | +43.128 43 | +43.129 129043 | +43.133 133043 | +43.171 171043 | +43.2 138 | +43.200 200043 | +43.201 500110 500110 | +43.210 210043 | +43.211 211043 | +43.212 212043 | +43.214 214043 | +43.215 215043 | +43.216 216043 | +43.228 228043 | +43.254 300043 | +43.3 138 | +44.1 155 168 | +44.128 44 | +44.129 129044 | +44.133 133044 | +44.171 171044 | +44.172 172044 | +44.173 173044 | +44.2 155 168 | +44.200 200044 | +44.201 500111 500111 | +44.202 500198 500198 | +44.210 210044 | +44.211 211044 | +44.212 212044 | +44.214 214044 | +44.215 215044 | +44.216 216044 | +44.230 230044 | +44.254 300044 | +44.3 155 168 | +45.1 3045 | +45.128 45 | +45.129 129045 | +45.133 133045 | +45.171 171045 | +45.172 172045 | +45.173 173045 | +45.2 3045 | +45.200 200045 | +45.202 500199 500199 | +45.210 210045 | +45.211 211045 | +45.212 212045 | +45.214 214045 | +45.215 215045 | +45.216 216045 | +45.230 230045 | +45.254 300045 | +45.3 3045 | +46.1 3046 | +46.128 46 | +46.129 129046 | +46.133 133046 | +46.171 171046 | +46.2 3046 | +46.200 200046 | +46.202 500200 500200 | +46.210 210046 | +46.211 211046 | +46.212 212046 | +46.214 214046 | +46.215 215046 | +46.216 216046 | +46.230 230046 | +46.254 300046 | +46.3 3046 | +47.1 3047 | +47.128 47 | +47.129 129047 | +47.133 133047 | +47.171 171047 | +47.2 3047 | +47.200 200047 | +47.202 500201 500201 | +47.210 210047 | +47.211 211047 | +47.212 212047 | +47.214 214047 | +47.215 215047 | +47.216 216047 | +47.254 300047 | +47.3 3047 | +48.1 3048 | +48.128 48 | +48.129 129048 | +48.133 133048 | +48.171 171048 | +48.172 172048 | +48.173 173048 | +48.2 3048 | +48.200 200048 | +48.202 500202 500202 | +48.210 210048 | +48.211 211048 | +48.212 212048 | +48.214 214048 | +48.215 215048 | +48.216 216048 | +48.254 300048 | +48.3 3048 | +49.1 3049 | +49.128 49 | +49.129 129049 | +49.131 131049 | +49.132 132049 | +49.133 133049 | +49.160 160049 | +49.171 171049 | +49.174 174049 | +49.175 175049 | +49.2 3049 | +49.200 200049 | +49.202 500203 500203 | +49.210 210049 | +49.211 211049 | +49.212 212049 | +49.214 214049 | +49.215 215049 | +49.216 216049 | +49.254 300049 | +49.3 3049 | +4lftx 260128 | +5.1 3005 | +5.128 5 | +5.129 129005 | +5.131 131005 | +5.133 133005 | +5.171 171005 | +5.2 3005 | +5.200 200005 | +5.201 201005 500090 500090 500091 500091 | +5.204 500312 500312 | +5.210 210005 | +5.211 211005 | +5.212 212005 | +5.213 213005 | +5.214 214005 | +5.215 215005 | +5.216 216005 | +5.228 228005 | +5.3 3005 | +50.1 3050 | +50.128 50 | +50.129 129050 | +50.133 133050 | +50.171 171050 | +50.172 172050 | +50.173 173050 | +50.2 3050 | +50.200 200050 | +50.201 201050 | +50.210 210050 | +50.211 211050 | +50.212 212050 | +50.214 214050 | +50.215 215050 | +50.216 216050 | +50.254 300050 | +50.3 3050 | +51.1 133 | +51.128 51 | +51.129 129051 | +51.133 133051 | +51.162 162051 | +51.171 171051 | +51.2 133 500033 500033 500034 500034 500035 500035 | +51.200 200051 | +51.201 201051 500112 500112 | +51.210 210051 | +51.211 211051 | +51.212 212051 | +51.214 214051 | +51.215 215051 | +51.216 216051 | +51.254 300051 | +51.3 133 | +52.1 157 | +52.128 52 | +52.129 129052 | +52.133 133052 | +52.162 134 | +52.171 171052 | +52.2 157 500036 500036 500037 500037 | +52.200 200052 | +52.201 201052 500113 500113 | +52.210 210052 | +52.211 211052 | +52.212 212052 | +52.214 214052 | +52.215 215052 | +52.216 216052 | +52.254 300052 | +52.3 157 | +53.1 3053 | +53.128 53 | +53.129 129053 | +53.133 133053 | +53.162 162053 | +53.171 171053 | +53.2 3053 | +53.200 200053 | +53.201 201053 500114 500114 | +53.210 210053 | +53.211 211053 | +53.212 212053 | +53.215 215053 | +53.216 216053 | +53.254 300053 | +53.3 3053 | +54.1 3054 | +54.128 54 | +54.129 129054 | +54.133 133054 | +54.162 162054 | +54.171 171054 | +54.2 3054 500038 500038 | +54.200 200054 | +54.201 201054 | +54.210 210054 | +54.211 211054 | +54.212 212054 | +54.215 215054 | +54.216 216054 | +54.254 300054 | +54.3 3054 | +55.1 3055 | +55.128 55 | +55.129 129055 | +55.133 133055 | +55.162 162055 | +55.171 171055 | +55.174 174055 | +55.175 175055 | +55.2 3055 | +55.200 200055 | +55.201 201055 | +55.210 210055 | +55.211 211055 | +55.212 212055 | +55.215 215055 | +55.216 216055 | +55.254 300055 | +55.3 3055 | +56.1 3056 | +56.128 56 | +56.129 129056 | +56.133 133056 | +56.162 162056 | +56.171 171056 | +56.2 3056 | +56.200 200056 | +56.201 201056 | +56.202 500204 500204 | +56.210 210056 | +56.211 211056 | +56.212 212056 | +56.215 215056 | +56.216 216056 | +56.254 300056 | +56.3 3056 | +57.1 182 | +57.128 57 | +57.129 129057 | +57.133 133057 | +57.162 162057 | +57.171 171057 | +57.2 182 500039 500039 | +57.200 200057 | +57.202 500205 500205 | +57.210 210057 | +57.212 212057 | +57.215 215057 | +57.216 216057 | +57.230 230057 | +57.254 300057 | +57.3 182 | +58.128 58 | +58.129 129058 | +58.133 133058 | +58.162 162058 | +58.171 171058 | +58.2 500040 500040 | +58.200 200058 | +58.201 500115 500115 | +58.210 210058 | +58.212 212058 | +58.215 215058 | +58.216 216058 | +58.230 230058 | +59.1 3059 | +59.128 59 | +59.129 129059 | +59.131 131059 | +59.133 133059 | +59.162 162059 | +59.171 171059 | +59.2 3059 | +59.200 200059 | +59.201 500116 500116 | +59.210 210059 | +59.212 212059 | +59.215 215059 | +59.216 216059 | +59.254 300059 | +59.3 3059 | +5wava 260084 | +5wavh 260080 | +6.1 129 | +6.128 6 | +6.131 131006 | +6.133 133006 | +6.171 171006 | +6.174 174006 | +6.175 175006 | +6.2 129 500004 500004 500005 500005 500006 500006 | +6.201 201006 | +6.204 500313 500313 | +6.210 210006 | +6.211 211006 | +6.212 212006 | +6.214 214006 | +6.215 215006 | +6.216 216006 | +6.228 228006 | +6.254 300006 | +6.3 129 | +60.1 3060 | +60.128 60 | +60.129 129060 | +60.131 131060 | +60.133 133060 | +60.162 162060 | +60.171 171060 | +60.2 3060 | +60.200 200060 | +60.201 201060 | +60.212 212060 | +60.215 215060 | +60.216 216060 | +60.254 300060 | +60.3 3060 | +61.1 228228 | +61.129 129061 | +61.131 131061 | +61.133 133061 | +61.162 162061 | +61.171 171061 | +61.2 228228 500041 500041 | +61.200 200061 | +61.201 201061 500117 500117 | +61.202 500206 500206 | +61.206 500378 500378 | +61.207 500386 500386 | +61.210 210061 | +61.211 211061 | +61.212 212061 | +61.215 215061 | +61.216 216061 | +61.254 300061 | +61.3 228228 | +62.1 3062 | +62.128 62 | +62.129 129062 | +62.131 131062 | +62.133 133062 | +62.162 162062 | +62.171 171062 | +62.2 3062 500042 500042 | +62.200 200062 | +62.201 201062 | +62.202 500207 500207 | +62.210 210062 | +62.211 211062 | +62.212 212062 | +62.215 215062 | +62.216 216062 | +62.254 300062 | +62.3 3062 | +63.1 3063 | +63.128 63 | +63.129 129063 | +63.131 131063 | +63.133 133063 | +63.162 162063 | +63.171 171063 | +63.2 3063 500043 500043 | +63.200 200063 | +63.201 201063 | +63.210 210063 | +63.211 211063 | +63.212 212063 | +63.215 215063 | +63.216 216063 | +63.254 300063 | +63.3 3063 | +64.1 3064 | +64.128 64 | +64.129 129064 | +64.131 131064 | +64.133 133064 | +64.162 162064 | +64.171 171064 | +64.2 3064 | +64.200 200064 | +64.201 201064 | +64.202 500208 500208 | +64.210 210064 | +64.211 211064 | +64.212 212064 | +64.215 215064 | +64.216 216064 | +64.254 300064 | +64.3 3064 | +65.1 228144 | +65.128 65 | +65.129 129065 | +65.131 131065 | +65.133 133065 | +65.162 162065 | +65.171 171065 | +65.2 228144 500044 500044 | +65.200 200065 | +65.201 201065 | +65.202 500209 500209 | +65.210 210065 | +65.211 211065 | +65.212 212065 | +65.215 215065 | +65.216 216065 | +65.254 300065 | +65.3 228144 | +66.1 228141 | +66.128 66 | +66.129 129066 | +66.131 131066 | +66.133 133066 | +66.162 162066 | +66.2 228141 500045 500045 | +66.200 200066 | +66.201 201066 | +66.210 210066 | +66.211 211066 | +66.212 212066 | +66.215 215066 | +66.216 216066 | +66.254 300066 | +66.3 228141 | +67.1 3067 | +67.128 67 | +67.129 129067 | +67.131 131067 | +67.133 133067 | +67.162 162067 | +67.2 3067 | +67.200 200067 | +67.201 201067 | +67.202 500210 500210 | +67.210 210067 | +67.211 211067 | +67.212 212067 | +67.215 215067 | +67.216 216067 | +67.254 300067 | +67.3 3067 | +68.1 3068 | +68.128 68 | +68.129 129068 | +68.131 131068 | +68.133 133068 | +68.162 162068 | +68.2 3068 | +68.200 200068 | +68.201 201068 500118 500118 | +68.202 500211 500211 | +68.210 210068 | +68.211 211068 | +68.212 212068 | +68.215 215068 | +68.216 216068 | +68.254 300068 | +68.3 3068 | +69.1 3069 | +69.128 69 | +69.129 129069 | +69.131 131069 | +69.133 133069 | +69.162 162069 | +69.2 3069 | +69.200 200069 | +69.201 201069 500119 500119 | +69.202 500212 500212 | +69.210 210069 | +69.211 211069 | +69.212 212069 | +69.215 215069 | +69.216 216069 | +69.254 300069 | +69.3 3069 | +7.1 156 228002 | +7.128 7 | +7.131 131007 | +7.133 133007 | +7.171 171007 | +7.2 156 228002 | +7.201 201007 | +7.202 500186 500186 500187 500187 | +7.204 500314 500314 | +7.210 210007 | +7.211 211007 | +7.212 212007 | +7.214 214007 | +7.215 215007 | +7.216 216007 | +7.228 228007 | +7.254 300007 | +7.3 156 228002 | +70.1 3070 | +70.128 70 | +70.129 129070 | +70.131 131070 | +70.133 133070 | +70.162 162070 | +70.2 3070 | +70.200 200070 | +70.201 201070 | +70.202 500213 500213 | +70.210 210070 | +70.211 211070 | +70.212 212070 | +70.215 215070 | +70.216 216070 | +70.254 300070 | +70.3 3070 | +71.1 228164 | +71.128 71 | +71.129 129071 | +71.131 131071 | +71.133 133071 | +71.162 162071 | +71.2 228164 500046 500046 | +71.200 200071 | +71.201 201071 | +71.202 500214 500214 | +71.206 500379 500379 | +71.210 210071 | +71.211 211071 | +71.212 212071 | +71.215 215071 | +71.216 216071 | +71.254 300071 | +71.3 228164 | +72.1 185 | +72.128 72 | +72.131 131072 | +72.133 133072 | +72.162 162072 | +72.2 185 500047 500047 | +72.201 201072 500120 500120 | +72.210 210072 | +72.212 212072 | +72.215 215072 | +72.216 216072 | +72.254 300072 | +72.3 185 | +73.1 186 | +73.128 73 | +73.131 131073 | +73.133 133073 | +73.162 162073 | +73.2 186 500048 500048 | +73.201 201073 500121 500121 | +73.206 500380 500380 | +73.210 210073 | +73.212 212073 | +73.215 215073 | +73.216 216073 | +73.254 300073 | +73.3 186 | +74.1 187 | +74.128 74 | +74.131 131074 | +74.133 133074 | +74.162 162074 | +74.2 187 500049 500049 | +74.201 201074 500122 500122 | +74.202 500215 500215 500216 500216 | +74.206 500381 500381 | +74.210 210074 | +74.212 212074 | +74.215 215074 | +74.216 216074 | +74.254 300074 | +74.3 187 | +75.1 188 | +75.128 75 | +75.131 131075 | +75.133 133075 | +75.162 162075 | +75.2 188 500050 500050 | +75.201 201075 500123 500123 | +75.202 500217 500217 | +75.206 500382 500382 | +75.212 212075 | +75.215 215075 | +75.216 216075 | +75.254 300075 | +75.3 188 | +76.1 260102 | +76.128 76 | +76.131 131076 | +76.133 133076 | +76.162 162076 | +76.2 260102 500051 500051 | +76.201 201076 | +76.202 500218 500218 | +76.212 212076 | +76.215 215076 | +76.216 216076 | +76.254 300076 | +76.3 260102 | +77.1 3077 | +77.128 77 | +77.131 131077 | +77.133 133077 | +77.162 162077 | +77.2 3077 | +77.201 201077 | +77.202 500219 500219 | +77.212 212077 | +77.215 215077 | +77.216 216077 | +77.254 300077 | +77.3 3077 | +78.1 239 | +78.128 78 | +78.129 129078 | +78.131 131078 | +78.133 133078 | +78.162 162078 | +78.171 171078 | +78.2 239 500052 500052 | +78.200 200078 | +78.201 201078 500124 500124 | +78.202 500220 500220 | +78.212 212078 | +78.215 215078 | +78.216 216078 | +78.3 239 | +79.1 240 | +79.128 79 | +79.129 129079 | +79.131 131079 | +79.133 133079 | +79.162 162079 | +79.171 171079 | +79.2 240 500053 500053 | +79.200 200079 | +79.201 201079 500125 500125 | +79.202 500221 500221 500222 500222 | +79.206 500383 500383 | +79.207 500387 500387 | +79.212 212079 | +79.215 215079 | +79.216 216079 | +79.3 240 | +8.1 3008 | +8.128 8 | +8.131 131008 | +8.133 133008 | +8.174 174008 | +8.2 3008 500007 500007 500008 500008 | +8.201 201008 | +8.202 500188 500188 500189 500189 | +8.204 500315 500315 | +8.210 210008 | +8.211 211008 | +8.212 212008 | +8.214 214008 | +8.215 215008 | +8.216 216008 | +8.228 228008 | +8.230 230008 | +8.254 300008 | +8.3 3008 | +80.1 3080 | +80.128 80 | +80.129 129080 | +80.131 131080 | +80.133 133080 | +80.162 162080 | +80.2 3080 | +80.200 200080 | +80.201 201080 | +80.210 210080 | +80.211 211080 | +80.212 212080 | +80.215 215080 | +80.216 216080 | +80.228 228080 | +80.3 3080 | +81.1 172 | +81.128 81 | +81.129 129081 | +81.131 131081 | +81.133 133081 | +81.162 162081 | +81.2 172 500054 500054 | +81.200 200081 | +81.201 201081 | +81.210 210081 | +81.211 211081 | +81.212 212081 | +81.215 215081 | +81.216 216081 | +81.228 228081 | +81.254 300081 | +81.3 172 | +82.1 3082 | +82.128 82 | +82.129 129082 | +82.131 131082 | +82.133 133082 | +82.162 162082 | +82.2 3082 | +82.200 200082 | +82.201 201082 500126 500126 | +82.210 210082 | +82.211 211082 | +82.212 212082 | +82.215 215082 | +82.216 216082 | +82.228 228082 | +82.254 300082 | +82.3 3082 | +83.1 173 | +83.128 83 | +83.129 129083 | +83.131 131083 | +83.133 133083 | +83.162 162083 | +83.174 174083 | +83.175 175083 | +83.2 173 500055 500055 | +83.200 200083 | +83.201 201083 | +83.210 210083 | +83.211 211083 | +83.212 212083 | +83.215 215083 | +83.216 216083 | +83.228 228083 | +83.254 300083 | +83.3 173 | +84.1 174 | +84.128 84 | +84.129 129084 | +84.131 131084 | +84.133 133084 | +84.162 162084 | +84.2 174 500056 500056 500057 500057 | +84.200 200084 | +84.201 201084 500127 500127 | +84.202 500223 500223 500224 500224 | +84.210 210084 | +84.211 211084 | +84.212 212084 | +84.215 215084 | +84.216 216084 | +84.228 228084 | +84.254 300084 | +84.3 174 | +85.1 228139 | +85.128 85 | +85.129 129085 | +85.131 131085 | +85.133 133085 | +85.162 162085 | +85.174 174085 | +85.175 175085 | +85.2 228139 500058 500058 500059 500059 500060 500060 500061 500061 | +85.200 200085 | +85.201 201085 500128 500128 | +85.206 500384 500384 | +85.210 210085 | +85.211 211085 | +85.212 212085 | +85.215 215085 | +85.216 216085 | +85.228 228085 | +85.254 300085 | +85.3 228139 | +86.1 3086 228039 | +86.128 86 | +86.129 129086 | +86.131 131086 | +86.133 133086 | +86.162 162086 | +86.174 174086 | +86.175 175086 | +86.2 3086 228039 500062 500062 500063 500063 500064 500064 | +86.200 200086 | +86.202 500225 500225 500226 500226 | +86.210 210086 | +86.211 211086 | +86.212 212086 | +86.215 215086 | +86.216 216086 | +86.254 300086 | +86.3 3086 228039 | +87.1 199 | +87.128 87 | +87.129 129087 | +87.131 131087 | +87.133 133087 | +87.162 162087 | +87.174 174087 | +87.175 175087 | +87.2 199 500065 500065 | +87.200 200087 | +87.210 210087 | +87.211 211087 | +87.212 212087 | +87.215 215087 | +87.216 216087 | +87.254 300087 | +87.3 199 | +88.1 3088 | +88.128 88 | +88.129 129088 | +88.131 131088 | +88.133 133088 | +88.162 162088 | +88.174 174088 | +88.175 175088 | +88.2 3088 | +88.200 200088 | +88.201 500129 500129 | +88.210 210088 | +88.211 211088 | +88.212 212088 | +88.215 215088 | +88.216 216088 | +88.3 3088 | +89.1 3089 | +89.128 89 | +89.129 129089 | +89.131 131089 | +89.133 133089 | +89.162 162089 | +89.174 174089 | +89.175 175089 | +89.2 3089 | +89.200 200089 | +89.201 500130 500130 | +89.210 210089 | +89.211 211089 | +89.212 212089 | +89.215 215089 | +89.216 216089 | +89.228 228089 | +89.254 300089 | +89.3 3089 | +9.1 3009 | +9.128 9 | +9.131 131009 | +9.133 133009 | +9.174 174009 | +9.2 3009 | +9.201 201009 | +9.202 500190 500190 | +9.204 500316 500316 | +9.210 210009 | +9.211 211009 | +9.212 212009 | +9.214 214009 | +9.215 215009 | +9.216 216009 | +9.228 228009 | +9.230 230009 | +9.3 3009 | +90.1 205 | +90.128 90 | +90.129 129090 | +90.131 131090 | +90.133 133090 | +90.162 162090 | +90.174 174090 | +90.175 175090 | +90.2 205 500066 500066 500067 500067 500068 500068 | +90.200 200090 | +90.203 500289 500289 | +90.210 210090 | +90.211 211090 | +90.212 212090 | +90.215 215090 | +90.216 216090 | +90.228 228090 | +90.3 205 | +91.1 3091 | +91.128 91 | +91.129 129091 | +91.131 131091 | +91.133 133091 | +91.162 162091 | +91.2 3091 500069 500069 | +91.200 200091 | +91.202 500227 500227 500228 500228 | +91.203 500290 500290 | +91.210 210091 | +91.211 211091 | +91.212 212091 | +91.215 215091 | +91.216 216091 | +91.228 228091 | +91.254 300091 | +91.3 3091 | +92.1 3092 | +92.128 92 | +92.129 129092 | +92.131 131092 | +92.133 133092 | +92.162 162092 | +92.2 3092 500070 500070 | +92.200 200092 | +92.202 500229 500229 500230 500230 | +92.210 210092 | +92.211 211092 | +92.212 212092 | +92.215 215092 | +92.216 216092 | +92.228 228092 | +92.254 300092 | +92.3 3092 | +93.1 3093 | +93.128 93 | +93.129 129093 | +93.131 131093 | +93.2 3093 | +93.200 200093 | +93.202 500231 500231 500232 500232 | +93.210 210093 | +93.211 211093 | +93.212 212093 | +93.215 215093 | +93.216 216093 | +93.228 228093 | +93.254 300093 | +93.3 3093 | +94.1 3094 | +94.128 94 | +94.129 129094 | +94.131 131094 | +94.174 174094 | +94.2 3094 | +94.200 200094 | +94.203 500291 500291 | +94.210 210094 | +94.211 211094 | +94.212 212094 | +94.215 215094 | +94.216 216094 | +94.228 228094 | +94.254 300094 | +94.3 3094 | +95.1 3095 | +95.128 95 | +95.129 129095 | +95.131 131095 | +95.174 174095 | +95.2 3095 | +95.200 200095 | +95.210 210095 | +95.211 211095 | +95.212 212095 | +95.215 215095 | +95.216 216095 | +95.254 300095 | +95.3 3095 | +96.1 3096 | +96.128 96 | +96.129 129096 | +96.131 131096 | +96.2 3096 | +96.200 200096 | +96.210 210096 | +96.211 211096 | +96.212 212096 | +96.215 215096 | +96.216 216096 | +96.254 300096 | +96.3 3096 | +97.1 3097 | +97.128 97 | +97.129 129097 | +97.131 131097 | +97.2 3097 | +97.200 200097 | +97.210 210097 | +97.211 211097 | +97.212 212097 | +97.215 215097 | +97.216 216097 | +97.254 300097 | +97.3 3097 | +98.1 3098 | +98.128 98 | +98.129 129098 | +98.174 174098 | +98.2 3098 | +98.200 200098 | +98.210 210098 | +98.211 211098 | +98.212 212098 | +98.215 215098 | +98.216 216098 | +98.254 300098 | +98.3 3098 | +99.1 3099 | +99.128 99 | +99.129 129099 | +99.174 174099 | +99.2 3099 | +99.200 200099 | +99.201 201099 500131 500131 | +99.203 500292 500292 | +99.210 210099 | +99.211 211099 | +99.212 212099 | +99.215 215099 | +99.216 216099 | +99.3 3099 | +CAPE_INS 85001160 | +PREC_CONVEC 85001156 | +PREC_GDE_ECH 85001157 | +abdv 300042 | +absd 3042 | +absh 260014 | +absv 3041 | +abvo 300041 | +accaod550 215089 | +acces 260139 | +acf 241 | +acfa 171241 | +acfdiff 200241 | +acfgrd 129241 | +aciod 260140 | +aco2gpp 228081 | +aco2nee 228080 | +aco2rec 228082 | +acond 260469 | +acpcp 3063 | +acpcpn 260287 | +acradp 260141 | +acwh 140247 | +adrtg 500295 | +advor 500294 | +advorg 500293 | +aer_bc 500229 | +aer_bc12 500230 | +aer_dust 500225 | +aer_dust12 500226 | +aer_org 500227 | +aer_org12 500228 | +aer_so4 500223 | +aer_so412 500224 | +aer_ss 500231 | +aer_ss12 500232 | +aerddpbchphil 215068 | +aerddpbchphob 215067 | +aerddpdul 215030 | +aerddpdum 215029 | +aerddpdus 215028 | +aerddpomhphil 215052 | +aerddpomhphob 215051 | +aerddpso2 215169 | +aerddpssl 215006 | +aerddpssm 215005 | +aerddpsss 215004 | +aerddpsu 215082 | +aerdep 210052 | +aerdep10fg 215092 | +aerdep10si 215091 | +aerdepdiff 211052 | +aergn01 210016 | +aergn01diff 211016 | +aergn02 210017 | +aergn02diff 211017 | +aergn03 210018 | +aergn03diff 211018 | +aergn04 210019 | +aergn04diff 211019 | +aergn05 210020 | +aergn05diff 211020 | +aergn06 210021 | +aergn06diff 211021 | +aergn07 210022 | +aergn07diff 211022 | +aergn08 210023 | +aergn08diff 211023 | +aergn09 210024 | +aergn09diff 211024 | +aergn10 210025 | +aergn10diff 211025 | +aergn11 210026 | +aergn11diff 211026 | +aergn12 210027 | +aergn12diff 211027 | +aerlg 210048 | +aerlgdiff 211048 | +aerls01 210031 | +aerls01diff 211031 | +aerls02 210032 | +aerls02diff 211032 | +aerls03 210033 | +aerls03diff 211033 | +aerls04 210034 | +aerls04diff 211034 | +aerls05 210035 | +aerls05diff 211035 | +aerls06 210036 | +aerls06diff 211036 | +aerls07 210037 | +aerls07diff 211037 | +aerls08 210038 | +aerls08diff 211038 | +aerls09 210039 | +aerls09diff 211039 | +aerls10 210040 | +aerls10diff 211040 | +aerls11 210041 | +aerls11diff 211041 | +aerls12 210042 | +aerls12diff 211042 | +aerlts 210053 | +aerltsdiff 211053 | +aermr01 210001 | +aermr01diff 211001 | +aermr02 210002 | +aermr02diff 211002 | +aermr03 210003 | +aermr03diff 211003 | +aermr04 210004 | +aermr04diff 211004 | +aermr05 210005 | +aermr05diff 211005 | +aermr06 210006 | +aermr06diff 211006 | +aermr07 210007 | +aermr07diff 211007 | +aermr08 210008 | +aermr08diff 211008 | +aermr09 210009 | +aermr09diff 211009 | +aermr10 210010 | +aermr10diff 211010 | +aermr11 210011 | +aermr11diff 211011 | +aermr12 210012 | +aermr12diff 211012 | +aermr13 210013 | +aermr13diff 211013 | +aermr14 210014 | +aermr14diff 211014 | +aermr15 210015 | +aermr15diff 211015 | +aermssbchphil 215078 | +aermssbchphob 215077 | +aermssdul 215045 | +aermssdum 215044 | +aermssdus 215043 | +aermssomhphil 215062 | +aermssomhphob 215061 | +aermssso2 215174 | +aermssssl 215021 | +aermssssm 215020 | +aermsssss 215019 | +aermsssu 215087 | +aerngtbchphil 215076 | +aerngtbchphob 215075 | +aerngtdul 215042 | +aerngtdum 215041 | +aerngtdus 215040 | +aerngtomhphil 215060 | +aerngtomhphob 215059 | +aerngtso2 215173 | +aerngtssl 215018 | +aerngtssm 215017 | +aerngtsss 215016 | +aerngtsu 215086 | +aerodbchphil 215080 | +aerodbchphob 215079 | +aeroddul 215048 | +aeroddum 215047 | +aeroddus 215046 | +aerodomhphil 215064 | +aerodomhphob 215063 | +aerodso2 215175 | +aerodssl 215024 | +aerodssm 215023 | +aerodsss 215022 | +aerodsu 215088 | +aerot 260129 | +aerpr 210046 | +aerpr03 210028 | +aerpr03diff 211028 | +aerprdiff 211046 | +aerscc 210054 | +aersccdiff 211054 | +aersdmbchphil 215070 | +aersdmbchphob 215069 | +aersdmdul 215033 | +aersdmdum 215032 | +aersdmdus 215031 | +aersdmomhphil 215054 | +aersdmomhphob 215053 | +aersdmso2 215170 | +aersdmssl 215009 | +aersdmssm 215008 | +aersdmsss 215007 | +aersdmsu 215083 | +aersm 210047 | +aersmdiff 211047 | +aersrcbchphil 215066 | +aersrcbchphob 215065 | +aersrcdul 215027 | +aersrcdum 215026 | +aersrcdus 215025 | +aersrcomhphil 215050 | +aersrcomhphob 215049 | +aersrcso2 215168 | +aersrcssl 215003 | +aersrcssm 215002 | +aersrcsss 215001 | +aersrcsu 215081 | +aerwdccbchphil 215074 | +aerwdccbchphob 215073 | +aerwdccdul 215039 | +aerwdccdum 215038 | +aerwdccdus 215037 | +aerwdccomhphil 215058 | +aerwdccomhphob 215057 | +aerwdccso2 215172 | +aerwdccssl 215015 | +aerwdccssm 215014 | +aerwdccsss 215013 | +aerwdccsu 215085 | +aerwdlsbchphil 215072 | +aerwdlsbchphob 215071 | +aerwdlsdul 215036 | +aerwdlsdum 215035 | +aerwdlsdus 215034 | +aerwdlsomhphil 215056 | +aerwdlsomhphob 215055 | +aerwdlsso2 215171 | +aerwdlsssl 215012 | +aerwdlsssm 215011 | +aerwdlssss 215010 | +aerwdlssu 215084 | +aerwv01 210029 | +aerwv01diff 211029 | +aerwv02 210030 | +aerwv02diff 211030 | +aerwv03 210044 | +aerwv03diff 211044 | +aerwv04 210045 | +aerwv04diff 211045 | +aevap_s 500039 | +agpl 300054 | +aiw 249 | +aiwa 171249 | +aiwdiff 200249 | +aiwgrd 129249 | +akhs 260449 | +akms 260450 | +al 174 260509 | +ala 171174 | +alb_rad 500056 | +albe 300084 | +albedo_b 500057 | +aldf 228245 | +aldiff 200174 | +aldr 228244 | +ale 210119 | +alediff 211119 | +algrd 129174 | +alhfl_bs 500094 | +alhfl_pl 500095 | +alhfl_s 500086 | +alnid 18 | +alnidg 210197 | +alnidi 210195 | +alnidv 210196 | +alnip 17 | +alnipg 210191 | +alnipi 210189 | +alnipv 210190 | +alts 260076 | +aluvd 16 | +aluvdg 210194 | +aluvdi 210192 | +aluvdv 210193 | +aluvp 15 | +aluvpg 210188 | +aluvpi 210186 | +aluvpsn 215090 | +aluvpv 210187 | +alvar 230174 | +alw 242 | +alwa 171242 | +alwdiff 200242 | +alwgrd 129242 | +amdl 300185 | +amixl 260460 | +amsl 300186 | +ana_err_fi 500195 | +ana_err_u 500196 | +ana_err_v 500197 | +anor 162 | +anora 171162 | +anordiff 200162 | +anorgrd 129162 | +aod1020 210227 | +aod1064 210228 | +aod1240 210216 | +aod1240diff 211216 | +aod1640 210229 | +aod2130 210230 | +aod340 210217 | +aod355 210218 | +aod380 210219 | +aod400 210220 | +aod440 210221 | +aod469 210213 | +aod469diff 211213 | +aod500 210222 | +aod532 210223 | +aod550 210207 | +aod550diff 211207 | +aod645 210224 | +aod670 210214 | +aod670diff 211214 | +aod800 210225 | +aod858 210226 | +aod865 210215 | +aod865diff 211215 | +aodabs1020 215110 | +aodabs1064 215111 | +aodabs1240 215112 | +aodabs1640 215113 | +aodabs2130 215176 | +aodabs340 215096 | +aodabs355 215097 | +aodabs380 215098 | +aodabs400 215099 | +aodabs440 215100 | +aodabs469 215101 | +aodabs500 215102 | +aodabs532 215103 | +aodabs550 215104 | +aodabs645 215105 | +aodabs670 215106 | +aodabs800 215107 | +aodabs858 215108 | +aodabs865 215109 | +aodfm1020 215128 | +aodfm1064 215129 | +aodfm1240 215130 | +aodfm1640 215131 | +aodfm2130 215177 | +aodfm340 215114 | +aodfm355 215115 | +aodfm380 215116 | +aodfm400 215117 | +aodfm440 215118 | +aodfm469 215119 | +aodfm500 215120 | +aodfm532 215121 | +aodfm550 215122 | +aodfm645 215123 | +aodfm670 215124 | +aodfm800 215125 | +aodfm858 215126 | +aodfm865 215127 | +aodlg 210051 | +aodlgdiff 211051 | +aodpr 210049 | +aodprdiff 211049 | +aodsm 210050 | +aodsmdiff 211050 | +aohflx 260496 | +aot340 214052 | +apab_s 201005 500090 | +apcpn 260286 | +apt 151181 210120 | +aptdiff 211120 | +arain 260284 | +arrc 140248 | +as 151183 | +ascat_sm_cdfa 228253 | +ascat_sm_cdfb 228254 | +ashfl 260497 | +ashfl_s 500087 | +asn 32 | +asna 171032 | +asndiff 200032 | +asngrd 129032 | +asnow 260025 | +asob_s 500078 | +asob_t 500082 | +asq 233 | +asqa 171233 | +asqdiff 200233 | +asqgrd 129233 | +asr 151157 | +asymmetry1020 215164 | +asymmetry1064 215165 | +asymmetry1240 215166 | +asymmetry1640 215167 | +asymmetry2130 215179 | +asymmetry340 215150 | +asymmetry355 215151 | +asymmetry380 215152 | +asymmetry400 215153 | +asymmetry440 215154 | +asymmetry469 215155 | +asymmetry500 215156 | +asymmetry532 215157 | +asymmetry550 215158 | +asymmetry645 215159 | +asymmetry670 215160 | +asymmetry800 215161 | +asymmetry858 215162 | +asymmetry865 215163 | +at 127 | +ata 171127 | +atdiff 200127 | +atgrd 129127 | +ath 130229 | +athb_s 500080 | +athb_t 500084 | +athe 252 | +athea 171252 | +athediff 200252 | +athegrd 129252 | +atmdiv 260231 | +atmt 300234 | +atmw 254 | +atmwa 171254 | +atmwax 130231 | +atmwdiff 200254 | +atmwgrd 129254 | +att 130228 | +atte 251 | +attea 171251 | +attediff 200251 | +attegrd 129251 | +atze 253 | +atzea 171253 | +atzediff 200253 | +atzegrd 129253 | +atzw 130230 | +aumfl_s 500088 | +austr_sso 500279 | +avdis_sso 500283 | +avmfl_s 500089 | +avsft 260481 | +avstr_sso 500281 | +awh 140246 | +ba-140 500276 | +ba-140d 500277 | +ba-140w 500278 | +baret 260480 | +bas_con 201072 500120 | +bc_hv 71 | +bc_lv 70 | +bcaod550 210211 | +bcaod550diff 211211 | +bcfire 210091 | +bcfirediff 211091 | +bffire 210097 | +bffirediff 211097 | +bfi 140253 | +bgrun 260174 | +bkeng 260504 | +bld 145 | +blda 171145 | +blddiff 200145 | +bldgrd 129145 | +bldrate 172145 | +blds 300123 | +bldvar 230145 | +blh 159 | +blha 171159 | +blhdiff 200159 | +blhgrd 129159 | +bli 3077 300077 | +bmixl 260190 | +bmpga 151204 | +botlst 260204 | +bpa 151209 | +bpt 151180 | +bref 260134 | +brvel 260135 | +bsal 151192 | +bsf 151147 | +bslh 300176 | +bswid 260133 | +btmp 194 | +btmpa 171194 | +btmpdiff 200194 | +btmpgrd 129194 | +btp 151149 | +bv 128 | +bva 171128 | +bvdiff 200128 | +bvgrd 129128 | +bzpga 151203 | +c2h4fire 210106 | +c2h4firediff 211106 | +c2h4ofire 210114 | +c2h4ofirediff 211114 | +c2h5ohfire 210104 | +c2h5ohfirediff 211104 | +c2h6fire 210118 | +c2h6firediff 211118 | +c2h6sfire 210117 | +c2h6sfirediff 211117 | +c3h6fire 210107 | +c3h6firediff 211107 | +c3h6ofire 210115 | +c3h6ofirediff 211115 | +c3h8fire 210105 | +c3h8firediff 211105 | +c4ffire 210093 | +c4ffirediff 211093 | +c4h10fire 210238 | +c4h8fire 210234 | +c5h10fire 210235 | +c5h12fire 210239 | +c5h8fire 210108 | +c5h8firediff 211108 | +c6h12fire 210236 | +c6h14fire 210240 | +c6h6fire 210232 | +c7h16fire 210241 | +c7h8fire 210231 | +c8h10fire 210233 | +c8h16fire 210237 | +cap 190170 228170 | +cape 59 300140 | +cape_con 201241 500183 | +cape_ml 500153 | +cape_mu 500151 | +capea 171059 | +capediff 200059 | +capegrd 129059 | +capep 131059 | +cat 260165 | +cbh 228023 | +cbnt 300149 | +cbnv 300071 | +cc 248 | +cca 171248 | +ccc 185 | +ccca 171185 | +cccdiff 200185 | +cccgrd 129185 | +ccdiff 200248 | +ccf 228091 | +ccfire 210095 | +ccfirediff 211095 | +ccgrd 129248 | +ccl_gnd 500290 | +ccl_nn 500291 | +ccond 260191 | +ccrea 160242 | +cd 260072 | +cdca 260103 | +cdcb 260107 | +cdcimr 260118 | +cdct 260104 260108 | +cdif 228243 | +cdir 228022 | +cdlyr 260110 | +cduvb 260341 | +cdww 140233 | +ceil 260109 | +ceiling 500304 | +cf 130213 | +cfire 210092 | +cfirediff 211092 | +cfnlf 260357 | +cfnsf 260345 | +cfrzr 260030 | +ch2ofire 210113 | +ch2ofirediff 211113 | +ch3ohfire 210103 | +ch3ohfirediff 211103 | +ch4 210062 | +ch4diff 211062 | +ch4f 210070 | +ch4fdiff 211070 | +ch4fire 210082 | +ch4firediff 211082 | +ch_cm_cl 201050 | +chnk 148 | +chnka 171148 | +chnkdiff 200148 | +chnkgrd 129148 | +ci 31 | +cice 260101 | +cicel 260406 | +cicep 260031 | +ciflt 260408 | +cin 228001 | +cin_ml 500154 | +cin_mu 500152 | +cine 300141 | +cisoilw 260197 | +civis 260407 | +ciwc 247 | +ciwca 171247 | +ciwcdiff 200247 | +ciwcgrd 129247 | +cl 26 | +cl_typ 500289 | +cla 171026 | +clbt 260510 | +clc 201029 500098 | +clc_con 500047 | +clc_sgs 500099 | +clch 500050 | +clch_8 500112 | +clch_s 500382 | +clcl 500048 | +clcl_8 500114 | +clcl_s 500380 | +clcm 500049 | +clcm_8 500113 | +clcm_s 500381 | +clct 500046 | +clct_mod 500307 | +clct_s 500379 | +cldepth 500306 | +cldiff 200026 | +clgrd 129026 | +clsf 300121 | +clw 130212 | +clw_con 500117 | +clwc 246 | +clwca 171246 | +clwcdiff 200246 | +clwcerrea 160241 | +clwcgrd 129246 | +clwmr 260018 | +cngwdu 260313 | +cngwdv 260314 | +cnvdemf 260334 | +cnvdmf 260333 | +cnvhr 260246 | +cnvmr 260276 | +cnvu 260309 | +cnvumf 260332 | +cnvv 260310 | +cnwat 260189 | +co 210123 | +co2 210061 | +co2apf 210069 | +co2apfdiff 211069 | +co2diff 211061 | +co2fire 210080 | +co2firediff 211080 | +co2nbf 210068 | +co2nbfdiff 211068 | +co2of 210067 | +co2ofdiff 211067 | +codiff 211123 | +cofire 210081 | +cofirediff 211081 | +condp 260279 | +contb 260160 | +contet 260158 | +conti 260157 | +contt 260159 | +covmz 260302 | +covtm 260304 | +covtz 260303 | +cp 143 | +cpa 171143 | +cpdiff 200143 | +cpgrd 129143 | +cph 131093 | +cpofp 260035 | +cpozp 260429 | +cppop 260176 | +cprat 260033 | +cprate 172143 | +cprea 160143 | +cptd 131094 | +cpts 131092 | +cpvar 230143 | +crain 260029 | +crfire 210100 | +crfirediff 211100 | +crl 151151 | +crnh 227 | +crnha 171227 | +crnhdiff 200227 | +crnhgrd 129227 | +crwc 75 | +cs-137 500252 | +cs-137d 500253 | +cs-137w 500254 | +csbt 260511 | +csdlf 260356 | +csdsf 260342 | +csf 239 | +csfa 171239 | +csfdiff 200239 | +csfgrd 129239 | +csfrea 160239 | +csnow 260032 | +csrate 260054 | +csrwe 260051 | +cssf 300122 | +csulf 260355 | +csusf 260344 | +cswc 76 | +ctmp 300190 | +ctmw 223 | +ctmwa 171223 | +ctmwdiff 200223 | +ctmwgrd 129223 | +ctoph 260220 | +ctophqi 260221 | +ctzw 222 | +ctzwa 171222 | +ctzwdiff 200222 | +ctzwgrd 129222 | +cuefi 260112 | +cvh 28 | +cvha 171028 | +cvhdiff 200028 | +cvhgrd 129028 | +cvl 27 | +cvla 171027 | +cvldiff 200027 | +cvlgrd 129027 | +cvnv 300072 | +cwat 260102 | +cwdi 260370 | +cwork 260111 | +cwp 260044 | +cwr 260432 | +d 155 | +da 171155 | +dbss 260505 | +dbz 500174 | +dbz_850 500173 | +dbz_cmax 500175 | +dbz_max 500019 | +dctb 228017 | +dd 500024 | +dd_10m 500023 | +ddiff 200155 | +deg0l 228024 | +den 3089 | +denalt 260079 | +dens 300089 | +dep 151137 | +depr 3018 | +dgrd 129155 | +dhcc 216 130216 | +dhcca 171216 | +dhccdiff 200216 | +dhccgrd 129216 | +dhlc 217 130217 | +dhlca 171217 | +dhlcdiff 200217 | +dhlcgrd 129217 | +dhr 214 130214 | +dhra 171214 | +dhrdiff 200214 | +dhrgrd 129214 | +dhvd 215 130215 | +dhvda 171215 | +dhvddiff 200215 | +dhvdgrd 129215 | +diced 3093 | +dirc 3047 260236 300047 | +direc 260214 | +dirpw 260233 | +dirsw 3109 | +dist 260075 | +divg 300044 | +dl 228007 | +dlwrf 260097 | +dndza 228016 | +dndzn 228015 | +dp2m 300129 | +dpsdt 500003 | +dpt 3017 | +dptd 300018 | +dqc_con 500129 | +dqc_gsp 500142 | +dqi_con 500130 | +dqi_gsp 500144 | +dqv_con 201075 500123 | +dqv_gsp 500141 | +dqvdt 500233 | +dslm 3082 260240 300082 | +dsmax 151174 | +dsrp 47 | +dsrpa 171047 | +dsrpdiff 200047 | +dsrpgrd 129047 | +dstp 300085 | +dswrf 260087 | +dt_con 201074 500122 | +dt_gsp 500140 | +dte 151161 | +dtrf 260350 | +dttdiv 500176 | +du_con 201078 500124 | +du_sso 500198 | +duaod550 210209 | +duaod550diff 211209 | +dumax 151172 | +dursun 500096 | +duvb 260340 | +dv_con 201079 500125 | +dv_sso 500199 | +dvmt 300237 | +dvsh 300167 | +dwi 140249 | +dwps 140228 | +dwuvr 260092 | +dwww 140225 | +e 182 | +ea 171182 | +ebs 151186 | +ebsa 151200 | +ebsl 151206 | +ebt 151185 | +ebta 151199 | +ebtl 151205 | +ediff 200182 | +efa-fi 500314 | +efa-ke 500322 | +efa-om 500320 | +efa-ps 500308 | +efa-rh 500316 | +efa-t 500318 | +efa-u 500310 | +efa-v 500312 | +egrd 129182 | +ehlx 260126 | +eia-fi 500315 | +eia-ke 500323 | +eia-om 500321 | +eia-ps 500309 | +eia-rh 500317 | +eia-t 500319 | +eia-u 500311 | +eia-v 500313 | +elevhtml 260493 | +elon 260422 | +elonn 260426 | +emdms 210043 | +emdmsdiff 211043 | +emis 124 | +emis_rad 500204 | +emnp 260274 | +epsr 260418 | +epta 171004 | +eqpt 4 | +eqptdiff 200004 | +eqptgrd 129004 | +eqssa 171180 | +erate 172182 | +erea 160182 | +es 44 | +esa 171044 | +esct 260172 | +esdiff 200044 | +esgrd 129044 | +esrate 172044 | +estp 260218 | +estu 260222 | +estv 260223 | +esvar 230044 | +etadot 77 | +etsrg 260492 | +evap 300057 | +evapt 260182 | +evar 230182 | +evatra_sum 500178 | +evbs 260478 | +evcw 260470 | +evpp 300177 | +ewatr 260454 | +ewgd 220 130220 | +ewgda 171220 | +ewgddiff 200220 | +ewgdgrd 129220 | +ewov 190 | +ewova 171190 | +ewovdiff 200190 | +ewovgrd 129190 | +ewss 180 | +ewssdiff 200180 | +ewssgrd 129180 | +ewssrea 160180 | +ewssvar 230180 | +fal 243 | +fala 171243 | +faldiff 200243 | +falgrd 129243 | +falrea 160243 | +fc 500235 | +fcmt 300249 | +fco2gpp 228084 | +fco2nee 228083 | +fco2rec 228085 | +fcor 300035 | +fdif 228242 | +fdir 228021 | +fdlt 300154 | +fdlu 300155 | +fdlv 300156 | +ffldg 260169 | +ffldro 260170 | +fgbp 151210 | +fgbs 151208 | +fgbt 151207 | +fi 500006 | +fice 260117 | +fif 500005 | +fis 500004 | +fldcp 260483 | +flfire 210096 | +flfirediff 211096 | +flght 260405 | +flsr 245 | +flsra 171245 | +flsrdiff 200245 | +flsrgrd 129245 | +for_d 500218 | +for_e 500217 | +fprate 260060 | +fqn 500297 | +fr_ice 500069 | +fr_land 500054 | +frain 260039 | +freshsnw 500143 | +fricv 260073 | +frpfire 210099 | +frpfirediff 211099 | +frzr 260288 | +fsr 244 | +fsra 171244 | +fsrdiff 200244 | +fsrgrd 129244 | +ftsktd 64 | +ftsktda 171064 | +fzht 300152 | +fzrh 300153 | +gdces 260142 | +gdiod 260143 | +gdradp 260144 | +geop 300006 | +gflux 260186 | +gh 156 | +gha 171156 | +ghdiff 200156 | +ghfl 300198 | +ghgrd 129156 | +ghrea 160156 | +glbr 300117 | +go3 210203 | +go3diff 211203 | +gpa 3027 | +grad 3117 | +grau_gsp 500146 | +grg1 210131 | +grg10 210149 | +grg10diff 211149 | +grg1diff 211131 | +grg2 210133 | +grg2diff 211133 | +grg3 210135 | +grg3diff 211135 | +grg4 210137 | +grg4diff 211137 | +grg5 210139 | +grg5diff 211139 | +grg6 210141 | +grg6diff 211141 | +grg7 210143 | +grg7diff 211143 | +grg8 210145 | +grg8diff 211145 | +grg9 210147 | +grg9diff 211147 | +grle 260028 | +gsfp 300133 | +gtco3 210206 | +gtco3diff 211206 | +gust 260065 | +gvdu 300162 | +gvdv 300163 | +gvus 300164 | +gvvs 300165 | +gwd 197 | +gwda 171197 | +gwddiff 200197 | +gwdgrd 129197 | +gwdrate 172197 | +gwdu 260307 | +gwdv 260308 | +gwdvar 230197 | +gwrec 260455 | +gzge 300008 | +h 3008 | +h0dip 131015 | +h2fire 210084 | +h2firediff 211084 | +h_ice 500070 | +h_snow 500045 | +hail 260027 | +hailprob 260398 | +havni 260410 | +hbas_con 201068 500118 | +hbas_sc 500115 | +hcc 188 | +hcca 171188 | +hccdiff 200188 | +hccgrd 129188 | +hccpg10 133063 | +hccpg20 133064 | +hccpg30 133065 | +hccpg40 133066 | +hccpg50 133067 | +hccpg60 133068 | +hccpg70 133069 | +hccpg80 133070 | +hccpg90 133071 | +hccpg99 133072 | +hcho 210124 | +hchodiff 211124 | +hddf 300220 | +heatx 260004 | +hfc 151162 | +hflux 260198 | +hgtn 260336 | +hgtx 260328 | +hgty 260329 | +hhdf 300218 | +hhl 500008 | +hialkanesfire 210112 | +hialkanesfirediff 211112 | +hialkenesfire 210111 | +hialkenesfirediff 211111 | +hinv 300075 | +hlcy 260125 | +hmax 140218 | +hmdf 300219 | +hmfc 300168 | +hmo3 500208 | +hmxr 300053 | +hpbl 260083 | +hrcono 260396 | +hsdrea 160254 | +hslp 131016 | +hstdv 3009 | +hsurf 500007 | +htcc 225 130225 | +htcca 171225 | +htccdiff 200225 | +htccgrd 129225 | +htlc 226 130226 | +htlca 171226 | +htlcdiff 200226 | +htlcgrd 129226 | +htop_con 201069 500119 | +htop_dc 201082 500126 | +htop_sc 500116 | +hvdf 300221 | +hvis 228025 | +hzerocl 201084 500127 | +i-131a 500249 | +i-131ad 500250 | +i-131aw 500251 | +i-131g 500270 | +i-131gd 500271 | +i-131gw 500272 | +i-131o 500273 | +i-131od 500274 | +i-131ow 500275 | +iaa 171250 | +icaht 3005 | +icdv 300098 | +ice 250 | +ice_grd 500305 | +icec 3091 260238 300091 | +iced 3098 300093 | +icediff 200250 | +iceg 3097 300097 | +icegrd 129250 | +ices 300094 | +icet 300092 | +icetk 3092 | +iceu 300095 | +icev 300096 | +ici 260151 | +icib 260150 | +icit 260149 | +icmr 260019 | +icwat 260448 | +ie 232 | +iea 171232 | +iediff 200232 | +iegrd 129232 | +iews 229 | +iewsa 171229 | +iewsdiff 200229 | +iewsgrd 129229 | +iliqw 260016 | +imag 300127 | +imgd 3127 260508 | +inss 230 | +inssa 171230 | +inssdiff 200230 | +inssgrd 129230 | +intfd 260506 | +ipc 162131 | +ipcs 162137 | +iprate 260061 | +ipv 500298 | +irr 228252 | +irrate 260219 | +irrfr 228250 | +ishf 231 | +ishfa 171231 | +ishfdiff 200231 | +ishfgrd 129231 | +ishfrea 160231 | +isor 161 | +isora 171161 | +isordiff 200161 | +isorgrd 129161 | +issrd 72 | +ist 228094 260239 | +istal1 171035 | +istal2 171036 | +istal3 171037 | +istal4 171038 | +istl1 35 | +istl1diff 200035 | +istl1grd 129035 | +istl2 36 | +istl2diff 200036 | +istl2grd 129036 | +istl3 37 | +istl3diff 200037 | +istl3grd 129037 | +istl4 38 | +istl4diff 200038 | +istl4grd 129038 | +istrd 73 | +iswf 300197 | +kch4 210071 | +kch4diff 211071 | +ke 500157 | +keng 260500 | +ko 500302 | +kox 260122 | +kr-85 500261 | +kr-85d 500262 | +kr-85w 500263 | +kx 260121 | +lai 260373 500206 | +lai_hv 67 | +lai_lv 66 | +lai_mn 500213 | +lai_mx 500212 | +land 260179 | +landn 260459 | +landu 260184 | +lapp 260299 | +lapr 3019 | +lauv 260295 | +lavni 260409 | +lavv 260297 | +layth 260330 | +lblt 228010 | +lcc 186 | +lcca 171186 | +lccdiff 200186 | +lccgrd 129186 | +lccpg10 133083 | +lccpg20 133084 | +lccpg30 133085 | +lccpg40 133086 | +lccpg50 133087 | +lccpg60 133088 | +lccpg70 133089 | +lccpg80 133090 | +lccpg90 133091 | +lccpg99 133092 | +ldp 151176 | +ldu 151177 | +lftx 260127 | +lglh 300172 | +lgms 300173 | +lgws 195 | +lgwsa 171195 | +lgwsdiff 200195 | +lgwsgrd 129195 | +lgwsvar 230195 | +lhcv 300142 | +lhtfl 260002 | +licd 228014 | +lict 228013 | +lipmf 260377 | +liqvsm 260210 | +lmaxbr 260137 | +lmh 260335 | +lmld 228009 | +lmlt 228008 | +lmv 260315 | +lnmt 300239 | +lnsp 152 300134 | +lnspdiff 200152 | +lnspgrd 129152 | +lopp 260300 | +louv 260296 | +lovv 260298 | +lowlsm 260203 | +lpc 162130 | +lpcs 162136 | +lpmtf 260376 | +lpsr 300019 | +lpsx 260326 | +lpsy 260327 | +lrghr 260245 | +lrgmr 260280 | +lsf 240 | +lsfa 171240 | +lsfdiff 200240 | +lsfgrd 129240 | +lsfrea 160240 | +lshf 228012 | +lsi 151202 | +lsm 172 | +lsmdiff 200172 | +lsmgrd 129172 | +lsmk 300081 | +lsoil 260453 | +lsp 142 3062 | +lspa 171142 171152 260479 | +lspdiff 200142 | +lspf 50 | +lspfa 171050 | +lspfdiff 200050 | +lspfgrd 129050 | +lspgrd 129142 | +lsprate 260050 | +lsprea 160142 | +lspvar 230142 | +lsrh 234 | +lsrha 171234 | +lsrhdiff 200234 | +lsrhgrd 129234 | +lssrate 260055 | +lssrwe 260052 | +lswp 260043 | +lti 151201 | +ltlt 228011 | +ltng 260391 | +lwavr 3115 | +lwbc 300200 | +lwhr 154 260354 | +lwhra 171154 | +lwhrdiff 200154 | +lwhrgrd 129154 | +lwnv 300073 | +lwrad 3119 | +lwrd 300115 | +lwrh 300205 | +lwtc 300201 | +magss 48 | +magssa 171048 | +magssdiff 200048 | +magssgrd 129048 | +mask 300137 | +maxah 260024 | +maxfrpfire 210101 | +maxfrpfirediff 211101 | +maxgust 260064 | +maxrh 260023 | +maxswh 140200 | +maxswhi 132216 | +mcc 187 | +mcca 171187 | +mccdiff 200187 | +mccgrd 129187 | +mccpg10 133073 | +mccpg20 133074 | +mccpg30 133075 | +mccpg40 133076 | +mccpg50 133077 | +mccpg60 133078 | +mccpg70 133079 | +mccpg80 133080 | +mccpg90 133081 | +mccpg99 133082 | +mconv 260022 260034 | +mdnv 300074 | +mdps 3107 500075 | +mdts 140238 | +mdwi 140242 | +mdww 3101 140235 500072 | +mean10ws 228005 | +mean2t 228004 | +mean2t24 55 | +mean2t24diff 200055 | +mean2t24grd 129055 | +meantcc 228006 | +mflux 260366 | +mflx 260069 | +mflx_con 500182 | +mgws 196 | +mgwsa 171196 | +mgwsdiff 200196 | +mgwsgrd 129196 | +mgwsvar 230196 | +mh 500163 | +mht 151170 | +mindpd 260006 | +minrh 260261 | +mixly 260404 | +mixr 3053 | +mkmt 300240 | +mld 3067 150154 151148 | +mlyno 260424 | +mn2d24 56 | +mn2d24a 171056 | +mn2d24diff 200056 | +mn2d24grd 129056 | +mn2t 202 | +mn2t24 52 | +mn2t24a 171052 171055 | +mn2t24diff 200052 | +mn2t24grd 129052 | +mn2t3 228027 | +mn2t6 122 | +mn2t6a 171122 | +mn2t6diff 200122 | +mn2t6grd 129122 | +mn2ta 171202 | +mn2tdiff 200202 | +mn2tgrd 129202 | +mn2ti 132202 | +mn2tp 131202 | +mn2tpl0 133013 | +mn2tpl10 133015 | +mn2tpl5 133014 | +mn2tplm10 133011 | +mn2tplm5 133012 | +mn2trea 160202 | +mntp 300016 | +mntsf 3037 | +moflrea 160247 | +monot 210058 | +mont 53 | +monta 171053 | +montdiff 200053 | +montgrd 129053 | +mp1 140220 | +mp2 140221 | +mpmt 300246 | +mpp_s 500188 | +mpps 3108 500077 | +mpts 140239 | +mpww 3103 140236 500074 | +mrcono 260395 | +mscv 300143 | +msl 151 | +msla 171151 | +mslag0 131010 | +msldiff 200151 | +mslet 260317 | +mslgrd 129151 | +mslma 260323 | +msls 234151 | +msqs 140244 | +msr_hv 69 | +msr_lv 68 | +mst 151134 | +mstav 260187 | +mterh 260183 | +mtha 3070 300070 | +mthd 3069 300069 | +mtr 151168 | +mu10 140241 | +mvv 130232 | +mwd 140230 500185 | +mwp 140232 | +mwp_x 500186 | +mwpg10 131079 | +mwpg12 131080 | +mwpg15 131081 | +mwpg8 131078 | +mwpp 131232 | +mx2t 201 | +mx2t24 51 | +mx2t24a 171051 | +mx2t24diff 200051 | +mx2t24grd 129051 | +mx2t3 228026 | +mx2t6 121 | +mx2t6a 171121 | +mx2t6diff 200121 | +mx2t6grd 129121 | +mx2ta 171201 | +mx2tdiff 200201 | +mx2tgrd 129201 | +mx2ti 132201 | +mx2tp 131201 | +mx2tpg25 133016 | +mx2tpg30 133017 | +mx2tpg35 133018 | +mx2tpg40 133019 | +mx2tpg45 133020 | +mx2trea 160201 | +mxld 300067 | +mxsalb 260161 | +mxtp 300015 | +mxwp 300146 | +mxwu 300138 | +mxwv 300139 | +n2o 210063 | +n2odiff 211063 | +n2ofire 210086 | +n2ofirediff 211086 | +nbdsf 260348 | +nbsalb 260413 | +ncip 260270 | +ncpcp 260009 | +nddsf 260349 | +ndvi 260458 500219 | +ndvi_max 500220 | +ndvi_mrat 500221 | +ndviratio 500222 | +neov 193 | +neova 171193 | +neovdiff 200193 | +neovgrd 129193 | +neve 300064 | +nh3fire 210116 | +nh3firediff 211116 | +nhcm 300171 | +nlat 260421 | +nlatn 260425 | +nlgsp 260331 | +nlwrcs 260100 | +nlwrf 260099 | +nlwrs 3112 260095 | +nlwrt 3113 3114 260096 | +nmhcfire 210083 | +nmhcfirediff 211083 | +no2 210121 | +no2diff 211121 | +nox 210129 | +noxdiff 211129 | +noxfire 210085 | +noxfirediff 211085 | +npixu 260224 | +nsf 150171 151156 | +nsgd 221 130221 | +nsgda 171221 | +nsgddiff 200221 | +nsgdgrd 129221 | +nsov 191 | +nsova 171191 | +nsovdiff 200191 | +nsovgrd 129191 | +nsss 181 | +nsssa 171181 | +nsssdiff 200181 | +nsssgrd 129181 | +nsssrea 160181 | +nsssvar 230181 | +nswr 300113 | +nswrf 260089 | +nswrfcs 260091 | +nswrs 3111 | +nswrt 260086 | +nvde 300066 | +nwov 192 | +nwova 171192 | +nwovdiff 200192 | +nwovgrd 129192 | +nwsalb 260414 | +o3 203 500242 | +o3a 171203 | +o3diff 200203 | +o3grd 129203 | +o3mr 260131 | +oafire 210098 | +oafirediff 211098 | +obct 62 | +obcta 171062 | +obctdiff 200062 | +obctgrd 129062 | +obsmsg_alb_hrv 500389 | +obsmsg_alb_nir1.6 500390 | +obsmsg_alb_vis0.6 500391 | +obsmsg_alb_vis0.8 500392 | +obsmsg_bt_ir10.8 500393 | +obsmsg_bt_ir12.0 500394 | +obsmsg_bt_ir13.4 500395 | +obsmsg_bt_ir3.9 500396 | +obsmsg_bt_ir8.7 500397 | +obsmsg_bt_ir9.7 500398 | +obsmsg_bt_wv6.2 500399 | +obsmsg_bt_wv7.3 500400 | +ocac 300203 | +ocas 300111 | +oces 300212 | +ocfire 210090 | +ocfirediff 211090 | +ocic 300210 | +ocis 300209 | +ocnuc 210057 | +ocpd 150131 | +ocpt 150129 151129 | +ocs 150130 | +ocu 150133 151131 | +ocv 150134 151132 | +ocw 150135 151133 | +ohc 260507 | +oles 300211 | +olic 300208 | +olis 300207 | +omaod550 210210 | +omaod550diff 211210 | +omeg 300039 | +omega 500031 | +omg2 300040 | +omgalf 260312 | +omlu 260487 | +omlv 260488 | +ommt 300236 | +omtm 300242 | +oro_mod 500214 | +orog 228002 | +ozcat 260380 | +ozcon 260379 | +p 500001 | +p1ps 140226 | +p1ww 140223 | +p2omlt 260495 | +p2ps 140227 | +p2ww 140224 | +pa 171054 | +paaod532 215095 | +pabs_rad 500091 | +pah 131096 | +paod532 215093 | +papt 3014 | +par 58 | +para 171058 | +parcs 20 | +pardiff 200058 | +pargrd 129058 | +parvar 230058 | +patd 131097 | +pats 131095 | +paw 204 | +pawa 171204 | +pawdiff 200204 | +pawgrd 129204 | +pblreg 260156 | +pcbs 300150 | +pcmt 300244 | +pctp 300151 | +perpw 260234 | +persw 260235 | +pev 228251 | +pevap 260036 | +pevpr 260037 | +ph 131090 | +phiaw 140211 | +phioc 140212 | +photar 260090 | +pitp 300179 | +plcov 500065 | +plcov_mn 500211 | +plcov_mx 500210 | +pli 3024 | +plpl 260325 | +pm1 210072 | +pm10 210074 | +pm2p5 210073 | +pm2p5fire 210087 | +pm2p5firediff 211087 | +pme 151158 | +pmsl 500002 | +pmtc 260374 | +pmtf 260375 | +pnaod532 215094 | +pop 260178 | +poros 260209 | +potv 300036 | +poz 260382 | +pozo 260385 | +pozt 260384 | +pp 201139 500148 | +pp1d 140231 500190 | +ppffg 260431 | +pposp 260177 | +ppps 500189 | +ppww 500187 | +prate 3059 | +prcr 300059 | +prcv 300063 | +prec 260138 300061 | +prec_con 500043 | +prec_gsp 500042 | +pres 54 300001 | +presa 3026 | +presalt 260078 | +presdiff 200054 | +presgrd 129054 | +presn 260337 | +prg_gsp 500145 | +prge 300062 | +prmp 300108 | +prmsl 260074 | +prr_con 201111 500135 | +prr_gsp 201100 500132 | +prs_con 201112 500136 | +prs_gsp 201101 500133 | +prs_min 500171 | +prsigsvr 260416 | +prsvr 260415 | +prwd 300107 | +ps 500000 | +psa 151212 | +psan 300026 | +psat 300014 | +pslc 300135 | +pslm 300136 | +psmt 300250 | +psnm 300002 | +pt 3 | +pta 151211 171003 | +ptae 151179 | +ptbe 151182 | +ptd 131091 | +ptdiff 200003 | +ptend 3003 | +ptgrd 129003 | +ptheta 500301 | +pti 151178 | +ptmp 300013 | +ptmt 300243 | +pts 131089 | +ptype 260015 | +pv 60 | +pva 171060 | +pvdiff 200060 | +pvgrd 129060 | +pvmt 300252 | +pvmww 260316 | +pwat 3054 | +pwcat 260026 | +pwcrea 160137 | +q 133 | +q_sedim 500131 | +qa 171133 | +qc 201031 500100 | +qc_rad 500110 | +qcvg_con 500184 | +qdiff 200133 | +qg 500106 | +qgrd 129133 | +qi 201033 500101 | +qi_rad 500111 | +qitendcs 162135 | +qltendcs 162134 | +qmax 260282 | +qmin 260283 | +qqrea 160211 | +qr 500102 | +qrec 260456 | +qrs_gsp 201099 | +qs 500103 | +qsfc 300181 | +qtendcds 162129 | +qtendcs 162133 | +qtendd 162117 | +qtendsc 162141 | +qtendt 162122 | +qtrea 160210 | +qv 500035 | +qv_2m 500034 | +qv_s 500033 | +qvsflx 500234 | +qz0 260281 | +qzrea 160209 | +r 157 | +ra 171157 210181 | +radiff 211181 | +radt 260482 | +rain_con 201113 500137 | +rain_gsp 201102 500134 | +raza 260226 | +rcq 260196 | +rcs 260193 | +rcsol 260195 | +rct 260194 | +rdiff 200157 | +rdrip 260447 | +rds1 300021 | +rds2 300022 | +rds3 300023 | +rdsp1 3021 | +rdsp2 3022 | +rdsp3 3023 | +refc 260390 | +refd 260389 | +refzc 260388 | +refzi 260387 | +refzr 260386 | +relhum 500037 | +relhum_2m 500036 | +resid_wso 500181 | +rev 260244 | +rfl06 260227 | +rfl08 260228 | +rfl16 260229 | +rfl39 260230 | +rgrd 129157 | +rhmt 300245 | +rho_snow 500147 | +ri 260369 | +rime 260040 | +rlat 500236 | +rlon 500237 | +rlyrs 260206 | +rn 150137 151139 | +rnof 300178 | +ro 205 | +roa 171205 | +roce 300214 | +rodiff 200205 | +rogrd 129205 | +role 300114 | +rootdp 500207 | +rorea 160205 | +rovar 230205 | +rprate 260058 | +rr_c 500139 | +rr_f 500138 | +rrea 160157 | +rsmin 260192 | +rsmt 300233 | +rsn 33 | +rsna 171033 | +rsndiff 200033 | +rsngrd 129033 | +rssc 260171 | +rstom 500097 | +ru-103 500165 500243 | +ru-103d 500244 | +ru-103w 500245 | +runoff_g 500066 | +runoff_g_lm 500067 | +runoff_s 500068 | +rwmr 260020 | +s 3088 151130 | +sadf 300056 | +saip 131017 | +salbe 151194 | +sale 151191 | +sali 151184 | +salin 260503 | +satd 3056 | +satosm 260217 | +sav300 151175 | +sbsalb 260411 | +sbsno 260275 | +scfr 7 | +scvh 300145 | +scvm 300144 | +sd 141 228141 | +sda 171141 | +sddiff 200141 | +sdfor 74 | +sdgrd 129141 | +sdhs 140240 | +sdi_1 500149 | +sdi_2 500150 | +sdor 160 | +sdora 171160 | +sdordiff 200160 | +sdorgrd 129160 | +sdrea 160141 | +sdsgso 260085 | +sdsien 190141 | +sdu 140243 | +sdur 46 | +sdura 171046 | +sdurdiff 200046 | +sdurgrd 129046 | +sdurvar 230046 | +sdwe 260056 | +sept 5 | +septa 171005 | +septdiff 200005 | +septgrd 129005 | +sf 144 228144 | +sf6 210182 | +sf6apf 210185 | +sf6apfdiff 211185 | +sf6diff 211182 | +sfa 171144 | +sfara 173144 | +sfco2 210154 | +sfco2diff 211154 | +sfcrh 260457 | +sfdiff 200144 | +sfexc 260188 | +sfgo3 210156 | +sfgo3diff 211156 | +sfgr1 210157 | +sfgr10 210166 | +sfgr10diff 211166 | +sfgr1diff 211157 | +sfgr2 210158 | +sfgr2diff 211158 | +sfgr3 210159 | +sfgr3diff 211159 | +sfgr4 210160 | +sfgr4diff 211160 | +sfgr5 210161 | +sfgr5diff 211161 | +sfgr6 210162 | +sfgr6diff 211162 | +sfgr7 210163 | +sfgr7diff 211163 | +sfgr8 210164 | +sfgr8diff 211164 | +sfgr9 210165 | +sfgr9diff 211165 | +sfgrd 129144 | +sfhcho 210155 | +sfhchodiff 211155 | +sfi 132144 | +sfno2 210152 | +sfno2diff 211152 | +sfnox 210151 | +sfnoxdiff 211151 | +sfp 131144 | +sfpg1 133042 | +sfpg10 133044 | +sfpg100 133049 | +sfpg150 133050 | +sfpg20 133045 | +sfpg200 133051 | +sfpg300 133052 | +sfpg40 133046 | +sfpg5 133043 | +sfpg60 133047 | +sfpg80 133048 | +sfrea 160144 | +sfso2 210153 | +sfso2diff 211153 | +sfvar 230144 | +sgcvv 3038 | +sgvv 300038 | +sh 151150 | +shahr 260251 | +shailpro 260401 | +shamr 260277 | +shcw 300100 | +shf 151160 | +shps 500076 | +shtfl 260003 | +shts 140237 | +shww 3102 140234 500073 | +sia 171212 | +sica 171031 | +sicdiff 200031 | +siced 3094 | +sicgrd 129031 | +simt 300247 | +sipd 260417 | +skt 235 | +skta 171235 | +sktd 65 | +sktda 171065 | +sktdiff 200235 | +sktgrd 129235 | +sl 150152 151145 | +sl_1 151146 | +stal2 171170 | +slds 300112 | +slhf 147 | +slhfa 171147 | +slhfdiff 200147 | +slhfgrd 129147 | +slhfvar 230147 | +slor 163 | +slora 171163 | +slordiff 200163 | +slorgrd 129163 | +slt 43 | +slta 171043 | +sltdiff 200043 | +sltfl 260501 | +sltgrd 129043 | +sltyp 260474 | +sm 228039 | +smav 300174 | +smax 151173 | +smdry 260208 | +smlt 45 | +smlta 171045 | +smltdiff 200045 | +smltgrd 129045 | +smltvar 230045 | +smref 260207 | +snfalb 260162 | +snmr 260021 | +snoag 260013 | +snoc 260011 | +snohf 260007 | +snol 260012 | +snom 3099 | +snot 260271 | +snow_con 500052 | +snow_gsp 500053 | +snow_gsp_c 500387 | +snow_gsp_s 500383 | +snowc 260038 | +snowlmt 201085 500128 | +snowt 260285 | +snr 149 | +snra 171149 | +snrdiff 200149 | +snrgrd 129149 | +so2 210122 | +so2diff 211122 | +so2fire 210102 | +so2firediff 211102 | +soapr 210059 | +sobs_rad 500079 | +sobt_rad 500083 | +sohr_rad 201013 500092 | +soic 300086 | +soill 260205 | +soilp 260215 | +soiltyp 500205 | +soilw 260185 | +solza 260225 | +sotr_rad 500177 | +sp 134 500026 | +sp_10m 500025 | +spa 171134 | +spc 3048 260237 | +spdc 300048 | +spdiff 200134 | +spgrd 129134 | +sppt1 213001 | +sppt2 213002 | +sppt3 213003 | +sppt4 213004 | +sppt5 213005 | +sprate 260059 | +sprd 500194 | +sr 173 190173 | +sr-90 500246 | +sr-90d 500247 | +sr-90w 500248 | +sra 171173 | +src 198 | +srca 171198 | +srcdiff 200198 | +srcgrd 129198 | +srcono 260394 | +srcrea 160198 | +srcvar 230198 | +srdiff 200173 | +srgrd 129173 | +srh 500287 | +sro 8 174008 | +srovar 230008 | +srweq 3064 260010 | +ssa1020 215146 | +ssa1064 215147 | +ssa1240 215148 | +ssa1640 215149 | +ssa2130 215178 | +ssa340 215132 | +ssa355 215133 | +ssa380 215134 | +ssa400 215135 | +ssa440 215136 | +ssa469 215137 | +ssa500 215138 | +ssa532 215139 | +ssa550 215140 | +ssa645 215141 | +ssa670 215142 | +ssa800 215143 | +ssa858 215144 | +ssa865 215145 | +ssaod550 210208 | +ssaod550diff 211208 | +ssfr 6 | +sshf 146 | +sshfa 171146 | +sshfdiff 200146 | +sshfgrd 129146 | +sshfvar 230146 | +sshg 260494 | +sso_gamma 500201 | +sso_sigma 500203 | +sso_stdh 500200 | +sso_theta 500202 | +ssr 176 180176 | +ssra 171176 | +ssrc 210 | +ssrca 171210 | +ssrcdiff 200210 | +ssrcgrd 129210 | +ssrcvar 230210 | +ssrd 169 | +ssrda 171169 | +ssrdc 228129 | +ssrddiff 200169 | +ssrdgrd 129169 | +ssrdiff 200176 | +ssrdvar 230169 | +ssrgrd 129176 | +ssro 9 174009 | +ssrovar 230009 | +ssrun 260175 | +ssrvar 230176 | +ssst 260499 | +sst 34 151159 | +ssta 171034 | +sstdiff 200034 | +sstkgrd 129034 | +sstor 260452 | +sstt 260498 | +ssw 3086 | +st 228139 | +stag0 131009 | +stal1 171139 | +stal3 171183 | +stal4 171236 | +stf 228092 | +sth 151138 | +stl1 139 | +stl1diff 200139 | +stl1grd 129139 | +stl2 170 | +stl2diff 200170 | +stl2grd 129170 | +stl3 183 | +stl3diff 200183 | +stl3grd 129183 | +stl4 236 | +stl4diff 200236 | +stl4grd 129236 | +stmt 300235 | +storprob 260400 | +str 177 180177 | +stra 171177 | +strc 211 | +strca 171211 | +strcdiff 200211 | +strcgrd 129211 | +strcvar 230211 | +strd 175 | +strda 171175 | +strdc 228130 | +strddiff 200175 | +strdgrd 129175 | +strdiff 200177 | +strdvar 230175 | +strf 1 | +strfa 171001 | +strfdiff 200001 | +strfgrd 129001 | +strgrd 129177 | +strvar 230177 | +sts 234139 | +stsktd 63 | +stsktda 171063 | +suaod550 210212 | +suaod550diff 211212 | +subi 151190 | +sund 189 | +sunda 171189 | +sundara 173189 | +sunddiff 200189 | +sundgrd 129189 | +sundvar 230189 | +suns 260119 | +surge 260491 | +suvf 300196 | +swal1 171140 | +swal2 171171 | +swal3 171184 | +swal4 171237 | +swavr 3116 | +swdi 300104 300109 | +swdir 3104 | +swea 300116 | +swec 300202 | +swell 3105 | +swepon 260173 | +swgc 300213 | +swh 3100 140229 500071 | +swhg2 131074 | +swhg4 131075 | +swhg6 131076 | +swhg8 131077 | +swhp 131229 | +swhr 153 260343 | +swhra 171153 | +swhrdiff 200153 | +swhrgrd 129153 | +swi1 228040 | +swi2 228041 | +swi3 228042 | +swi4 228043 | +swindpro 260402 | +swl1 140 | +swl1diff 200140 | +swl1grd 129140 | +swl1rea 160140 | +swl2 171 170171 | +swl2diff 200171 | +swl2grd 129171 | +swl2rea 160171 | +swl3 184 | +swl3diff 200184 | +swl3grd 129184 | +swl3rea 160184 | +swl4 237 | +swl4diff 200237 | +swl4grd 129237 | +swmp 300106 300110 | +swp 3110 | +swper 3106 | +swrad 3120 | +swrh 300206 | +swsalb 260412 | +swsh 300105 | +swtc 300215 | +swv 228093 | +swval1 171039 | +swval2 171040 | +swval3 171041 | +swval4 171042 | +swvl1 39 | +swvl1diff 200039 | +swvl1grd 129039 | +swvl2 40 | +swvl2diff 200040 | +swvl2grd 129040 | +swvl3 41 | +swvl3diff 200041 | +swvl3grd 129041 | +swvl4 42 | +swvl4diff 200042 | +swvl4grd 129042 | +sx 260124 | +synme5_bt_cl 500324 | +synme5_bt_cs 500325 | +synme5_rad_cl 500326 | +synme5_rad_cs 500327 | +synme6_bt_cl 500328 | +synme6_bt_cs 500329 | +synme6_rad_cl 500330 | +synme6_rad_cs 500331 | +synme7_bt_cl_ir11.5 500332 | +synme7_bt_cl_wv6.4 500333 | +synme7_bt_cs_ir11.5 500334 | +synme7_bt_cs_wv6.4 500335 | +synme7_rad_cl_ir11.5 500336 | +synme7_rad_cl_wv6.4 500337 | +synme7_rad_cs_ir11.5 500338 | +synme7_rad_cs_wv6.4 500339 | +synmsg_bt_cl_ir10.8 500340 | +synmsg_bt_cl_ir12.1 500341 | +synmsg_bt_cl_ir13.4 500342 | +synmsg_bt_cl_ir3.9 500343 | +synmsg_bt_cl_ir8.7 500344 | +synmsg_bt_cl_ir9.7 500345 | +synmsg_bt_cl_wv6.2 500346 | +synmsg_bt_cl_wv7.3 500347 | +synmsg_bt_cs_ir10.8 500349 | +synmsg_bt_cs_ir12.1 500350 | +synmsg_bt_cs_ir13.4 500351 | +synmsg_bt_cs_ir3.9 500352 | +synmsg_bt_cs_ir8.7 500348 | +synmsg_bt_cs_ir9.7 500353 | +synmsg_bt_cs_wv6.2 500354 | +synmsg_bt_cs_wv7.3 500355 | +synmsg_rad_cl_ir10.8 500356 | +synmsg_rad_cl_ir12.1 500357 | +synmsg_rad_cl_ir13.4 500358 | +synmsg_rad_cl_ir3.9 500359 | +synmsg_rad_cl_ir8.7 500360 | +synmsg_rad_cl_ir9.7 500361 | +synmsg_rad_cl_wv6.2 500362 | +synmsg_rad_cl_wv7.3 500363 | +synmsg_rad_cs_ir10.8 500364 | +synmsg_rad_cs_ir12.1 500365 | +synmsg_rad_cs_ir13.4 500366 | +synmsg_rad_cs_ir3.9 500367 | +synmsg_rad_cs_ir8.7 500368 | +synmsg_rad_cs_ir9.7 500369 | +synmsg_rad_cs_wv6.2 500370 | +synmsg_rad_cs_wv7.3 500371 | +t 130 500014 | +t_2m 500011 | +t_2m_av 500012 | +t_2m_cl 500013 | +t_2m_s 500372 | +t_cl 500058 | +t_cl_lm 500059 | +t_g 500010 | +t_ice 201215 500172 | +t_m 500060 | +t_s 500061 | +t_s_s 500384 | +t_snow 201203 500170 | +t_so 500166 | +ta 3025 171130 | +tag2 131021 | +tag4 131024 | +tag8 131025 | +talm2 131020 | +talm4 131023 | +talm8 131022 | +tap 131130 | +tauoc 140214 | +tav300 151164 | +tax 151153 | +tay 151154 | +tcas 300189 | +tcc 164 228164 | +tcca 171164 | +tccdiff 200164 | +tccgrd 129164 | +tcch4 210065 | +tcch4diff 211065 | +tcclw 228255 | +tcco 210127 | +tcco2 210064 | +tcco2diff 211064 | +tccodiff 211127 | +tccp 131164 | +tccpg10 133053 | +tccpg20 133054 | +tccpg30 133055 | +tccpg40 133056 | +tccpg50 133057 | +tccpg60 133058 | +tccpg70 133059 | +tccpg80 133060 | +tccpg90 133061 | +tccpg99 133062 | +tccsw 228256 | +tcfire 210089 | +tcfirediff 211089 | +tcgrg1 210132 | +tcgrg10 210150 | +tcgrg10diff 211150 | +tcgrg1diff 211132 | +tcgrg2 210134 | +tcgrg2diff 211134 | +tcgrg3 210136 | +tcgrg3diff 211136 | +tcgrg4 210138 | +tcgrg4diff 211138 | +tcgrg5 210140 | +tcgrg5diff 211140 | +tcgrg6 210142 | +tcgrg6diff 211142 | +tcgrg7 210144 | +tcgrg7diff 211144 | +tcgrg8 210146 | +tcgrg8diff 211146 | +tcgrg9 210148 | +tcgrg9diff 211148 | +tch 500162 | +tchcho 210128 | +tchchodiff 211128 | +tchp 260254 | +tcioz 260132 | +tciw 79 | +tciwa 171079 | +tciwv 260057 | +tclsw 260272 | +tclw 78 | +tclwa 171078 | +tcm 500161 | +tcn2o 210066 | +tcn2odiff 211066 | +tcno2 210125 | +tcno2diff 211125 | +tcnox 210130 | +tcnoxdiff 211130 | +tco3 206 | +tco3a 171206 | +tco3diff 200206 | +tco3grd 129206 | +tcolc 260116 | +tcoli 260115 | +tcolm 260273 | +tcolr 260041 | +tcols 260042 | +tcolw 260114 | +tcond 260017 260113 | +tcra 210183 | +tcradiff 211183 | +tcrw 228089 | +tcsf6 210184 | +tcsf6diff 211184 | +tcso2 210126 | +tcso2diff 211126 | +tcsw 228090 | +tcw 136 | +tcwa 171136 | +tcwat 260047 | +tcwdiff 200136 | +tcwgrd 129136 | +tcwv 137 | +tcwva 171137 | +tcwvdiff 200137 | +tcwvgrd 129137 | +td_2m 500017 | +td_2m_av 500018 | +td_2m_s 500375 | +tdiff 200130 | +tdiv_hum 500109 | +te-132 500255 | +te-132d 500256 | +te-132w 500257 | +temp 300011 | +tems 300188 | +terpenesfire 210109 | +terpenesfirediff 211109 | +tgrd 129130 | +tgrz 300175 | +tgsc 300191 | +thbs_rad 500081 | +thbt_rad 500085 | +thetae 500303 | +thflx 260247 | +thhr_rad 201014 500093 | +thick 260077 | +thpb 300060 | +thunc 260106 | +thz0 260253 | +tiaccp 260145 | +tiacip 260146 | +tiacrp 260147 | +tipd 260269 | +tisr 212 | +tisrdiff 200212 | +tisrgrd 129212 | +tisrvar 230212 | +tke 260155 500158 | +tke_con 500155 | +tketens 500156 | +tki 151155 | +tkvh 500160 | +tkvm 500159 | +tla 140213 | +tm01 500192 | +tm02 500193 | +tm10 500191 | +tmax 3015 140217 | +tmax_2m 500015 | +tmax_2m_s 500373 | +tmaxt 260105 | +tmin 3016 | +tmin_2m 500016 | +tmin_2m_s 500374 | +tmmt 300251 | +tnr 150 | +tnra 171150 | +tnrdiff 200150 | +tnrgrd 129150 | +to3 500009 | +toluenefire 210110 | +toluenefirediff 211110 | +top_con 201073 500121 | +topo 300132 | +torprob 260397 | +tot_prec 500041 | +tot_prec_c 500386 | +tot_prec_s 500378 | +totalx 260123 | +totforce_s 500180 | +toz 260383 | +tozne 260130 | +tp 228 228228 | +tp2m 300128 | +tpa 171228 | +tpag0 131008 | +tpag10 131007 | +tpag20 131006 | +tpan 300025 | +tpara 173228 | +tpdiff 200228 | +tpfi 260419 | +tpg1 131060 | +tpg10 131062 | +tpg100 131085 | +tpg150 131086 | +tpg20 131063 | +tpg200 131087 | +tpg300 131088 | +tpg40 131082 | +tpg5 131061 | +tpg60 131083 | +tpg80 131084 | +tpgrd 129228 | +tpi 132228 | +tpl01 131064 | +tplb 228018 | +tplt 228019 | +tpmfire 210088 | +tpmfirediff 211088 | +tpoa 171061 | +tpoc 220228 | +tpodiff 200061 | +tpogrd 129061 | +tpor 300017 | +tpp 131151 131228 | +tppg1 133031 | +tppg10 133033 | +tppg100 133038 | +tppg150 133039 | +tppg20 133034 | +tppg200 133040 | +tppg300 133041 | +tppg40 133035 | +tppg5 133032 | +tppg60 133036 | +tppg80 133037 | +tppp 300157 | +tppt 300158 | +tppu 300159 | +tppv 300160 | +tprate 172228 260048 | +tprg3 131066 | +tprg5 131067 | +tprl1 131065 | +tps 234228 | +tpvar 230228 | +tqc 500051 | +tqg 500107 | +tqi 500040 | +tqr 500104 | +tqs 500105 | +tqv 500038 | +tr-2 500264 | +tr-2d 500265 | +tr-2w 500266 | +tra_sum 500179 | +trans 260471 | +transo 260212 | +tsd1d 260250 | +tsec 260168 260241 | +tsfc 300187 | +tslsa 260324 | +tsm 190229 | +tsmt 300232 | +tsn 238 | +tsna 171238 | +tsndiff 200238 | +tsngrd 129238 | +tsnowp 260046 | +tsp 158 | +tspa 171158 | +tspdiff 200158 | +tspgrd 129158 | +tsps 300003 | +tsr 178 180178 | +tsra 171178 | +tsrate 260053 | +tsrc 208 | +tsrca 171208 | +tsrcdiff 200208 | +tsrcgrd 129208 | +tsrcvar 230208 | +tsrdiff 200178 | +tsrgrd 129178 | +tsru 130208 | +tsrvar 230178 | +tsrwe 260049 | +tstm 3060 | +tstmc 260403 | +tsuc 130210 | +tsw 170149 180149 | +ttdia 260248 | +ttendcds 162128 | +ttendcs 162132 | +ttendd 162116 | +ttendr 162118 | +ttends 162125 | +ttendsc 162140 | +ttendts 162121 | +tthd 300068 | +tthdp 3068 | +ttphy 260249 | +ttr 179 170179 180179 | +ttra 171179 | +ttrad 260243 | +ttrc 209 | +ttrca 171209 | +ttrcdiff 200209 | +ttrcgrd 129209 | +ttrcvar 230209 | +ttrdiff 200179 | +ttrea 160208 | +ttrgrd 129179 | +ttru 130209 | +ttrvar 230179 | +ttuc 130211 | +turb 260154 | +turbb 260153 | +turbt 260152 | +tvh 30 | +tvha 171030 | +tvhdiff 200030 | +tvhgrd 129030 | +tvl 29 | +tvla 171029 | +tvldiff 200029 | +tvlgrd 129029 | +tvmt 300253 | +twater 201041 500108 | +twatp 260045 | +tzrea 160207 | +u 131 500028 | +u-gwd 260081 | +u10m 300130 | +u10n 228131 | +u_10m 500027 | +u_10m_s 500376 | +ua 171131 | +uba1 151165 | +ubaro 260489 | +ucdv 23 | +ucdva 171023 | +ucdvdiff 200023 | +ucdvgrd 129023 | +ucln 22 | +uclna 171022 | +uclndiff 200022 | +uclngrd 129022 | +ucpc 300049 | +uctp 21 | +uctpa 171021 | +uctpdiff 200021 | +uctpgrd 129021 | +ucurr 3049 | +udiff 200131 | +udvw 11 | +udvwdiff 200011 | +udvwgrd 129011 | +udwa 171011 | +uemt 300248 | +uflx 3124 260062 | +ugrd 129131 | +ugust 260066 | +uice 3095 | +ulwrf 260098 | +umax 151171 | +umes 300051 | +umrl 300052 | +umrs 300226 | +up 500299 | +uphl 260372 | +uplsm 260202 | +uplst 260201 | +uqrea 160214 | +urtw 13 | +urtwdiff 200013 | +urtwgrd 129013 | +urwa 171013 | +usct 260484 | +usmt 300230 | +ussl 300182 | +usst 300193 | +ust 140215 | +ustm 260070 | +ustr 300147 500238 | +ustr_sso 500280 | +uswrf 260088 | +ut 150140 151141 | +utendcds 162126 | +utendcs 162138 | +utendd 162114 | +utends 162123 | +utendts 162119 | +utnowd 228136 | +utrea 160213 | +utrf 260351 | +uu 150142 151143 | +uurea 160215 | +uv 150139 151140 | +uv_max 500285 | +uvb 57 | +uvba 171057 | +uvbdiff 200057 | +uvbed 214002 | +uvbedcs 214003 | +uvbgrd 129057 | +uvbvar 230057 | +uvcossza 214001 | +uvcs 19 | +uvel 300033 | +uves 300192 | +uvi 151187 260094 | +uviucs 260093 | +uvmt 300255 | +uvsflxcs280285 214028 | +uvsflxcs285290 214029 | +uvsflxcs290295 214030 | +uvsflxcs295300 214031 | +uvsflxcs300305 214032 | +uvsflxcs305310 214033 | +uvsflxcs310315 214034 | +uvsflxcs315320 214035 | +uvsflxcs320325 214036 | +uvsflxcs325330 214037 | +uvsflxcs330335 214038 | +uvsflxcs335340 214039 | +uvsflxcs340345 214040 | +uvsflxcs345350 214041 | +uvsflxcs350355 214042 | +uvsflxcs355360 214043 | +uvsflxcs360365 214044 | +uvsflxcs365370 214045 | +uvsflxcs370375 214046 | +uvsflxcs375380 214047 | +uvsflxcs380385 214048 | +uvsflxcs385390 214049 | +uvsflxcs390395 214050 | +uvsflxcs395400 214051 | +uvsflxt280285 214004 | +uvsflxt285290 214005 | +uvsflxt290295 214006 | +uvsflxt295300 214007 | +uvsflxt300305 214008 | +uvsflxt305310 214009 | +uvsflxt310315 214010 | +uvsflxt315320 214011 | +uvsflxt320325 214012 | +uvsflxt325330 214013 | +uvsflxt330335 214014 | +uvsflxt335340 214015 | +uvsflxt340345 214016 | +uvsflxt345350 214017 | +uvsflxt350355 214018 | +uvsflxt355360 214019 | +uvsflxt360365 214020 | +uvsflxt365370 214021 | +uvsflxt370375 214022 | +uvsflxt375380 214023 | +uvsflxt380385 214024 | +uvsflxt385390 214025 | +uvsflxt390395 214026 | +uvsflxt395400 214027 | +uzds 300184 | +uzrea 160212 | +uzrs 300183 | +v 132 500030 | +v-gwd 260082 | +v10m 300131 | +v10n 228132 | +v_10m 500029 | +v_10m_s 500377 | +va 171132 | +vabs 500288 | +vadv 300170 | +vaftd 260420 | +vapp 260008 300055 | +var190m0 260167 | +vba1 151166 | +vbaro 260490 | +vbdsf 260346 | +vcpc 300050 | +vcurr 3050 | +vdcc 300227 | +vddsf 260347 | +vdf 151136 | +vdfh 300225 | +vdfhr 260252 | +vdfmr 260278 | +vdfoz 260381 | +vdfu 300223 | +vdfua 260305 | +vdfv 300224 | +vdfva 260306 | +vdh 224 130224 | +vdha 171224 | +vdhdiff 200224 | +vdhgrd 129224 | +vdiff 200132 | +vdis_sso 500284 | +vdms 300222 | +vdmw 219 130219 | +vdmwa 171219 | +vdmwdiff 200219 | +vdmwgrd 129219 | +vdvw 12 | +vdvwdiff 200012 | +vdvwgrd 129012 | +vdwa 171012 | +vdzw 218 130218 | +vdzwa 171218 | +vdzwdiff 200218 | +vdzwgrd 129218 | +vedh 260301 | +veg 199 260180 | +vegdiff 200199 | +vege 300087 | +vegfire 210094 | +vegfirediff 211094 | +veggrd 129199 | +vegrea 160199 | +vegt 260451 | +veril 260136 | +vfa 171199 | +vflx 3125 260063 | +vgrd 129132 | +vgtyp 260439 | +vgust 260067 | +vice 3096 | +vimd 213 | +vio3 500209 | +vis 3020 | +vite 125 | +vitea 171125 | +vmax_10m 201187 500164 | +vmax_10m_c 500388 | +vmax_10m_s 500385 | +vmfl 300169 | +vo 138 | +voa 171138 | +vodiff 200138 | +vogrd 129138 | +volash 260148 | +voldec 260213 | +voltso 260211 | +vort 300043 | +vp 2 3055 500300 | +vpca 300180 | +vpota 171002 | +vpotdiff 200002 | +vpotgrd 129002 | +vptmp 3012 | +vqrea 160218 | +vrtw 14 | +vrtwdiff 200014 | +vrtwgrd 129014 | +vrwa 171014 | +vsct 260485 | +vsmt 300231 | +vso 200 | +vsoa 171200 | +vsodiff 200200 | +vsogrd 129200 | +vsosm 260216 | +vsst 300195 | +vst 140216 | +vstm 260071 | +vstr 300148 | +vstr_sso 500282 | +vsw 260199 | +vt 150141 151142 | +vtendcds 162127 | +vtendcs 162139 | +vtendd 162115 | +vtends 162124 | +vtendts 162120 | +vtmp 300012 | +vtmt 300254 | +vtnowd 228134 | +vtrea 160217 | +vucs 300045 | +vucsh 3045 | +vurea 160219 | +vv 150143 151144 | +vvcs 300046 | +vvcsh 3046 | +vvel 300034 | +vves 300194 | +vvi 151188 | +vvmt 300241 | +vvrea 160220 | +vvs 151135 | +vwiltm 260200 | +vwsh 260068 | +vzrea 160216 | +w 135 500032 | +w_cl 500062 | +w_g1 500063 | +w_g2 500064 | +w_i 201200 500169 | +w_shaer 500286 | +w_snow 500044 | +w_so 500167 | +w_so_ice 500168 | +wa 171135 | +watr 260181 | +wcconv 260464 | +wcf 260005 | +wcinc 260462 | +wcuflx 260467 | +wcvflx 260468 | +wdiff 200135 | +wdir 3031 | +wdiv 500296 | +wdw 140222 | +wenv 300065 | +wgrd 129135 | +whip 131018 | +wilt 228171 260442 | +wiltsien 190171 | +wind 140245 300031 | +windprob 260399 | +wins 300032 | +wmb 140219 | +wmixe 3126 | +wqrea 160223 | +wrea 160135 | +ws 10 | +wsk 140252 | +wsp 140254 | +wstp 260486 | +wtend 260311 | +wtmp 3080 | +wtmpc 260502 | +wtnv 300076 | +wtrea 160222 | +wurea 160224 | +wvar1 500215 | +wvar2 500216 | +wvconv 260463 | +wvdir 260232 | +wvinc 260461 | +wvrea 160225 | +wvs1 300028 | +wvs2 300029 | +wvs3 300030 | +wvsp1 3028 500020 | +wvsp2 3029 500021 | +wvsp3 3030 500022 | +wvuflx 260465 | +wvvflx 260466 | +ww 500292 | +wwdi 300101 | +wwmp 300103 | +wwrea 160226 | +wwsh 300102 | +wzrea 160221 | +xe-133 500267 | +xe-133d 500268 | +xe-133w 500269 | +z 129 | +z0 500055 | +za 171129 | +zdiff 200129 | +zgan 300027 | +zgeo 300007 | +zgrd 129129 | +zhd 500241 | +zhmt 300238 | +zht 151169 | +zorl 300083 | +zp 131129 | +zr-95 500258 | +zr-95d 500259 | +zr-95w 500260 | +ztd 500239 | +ztr 151167 | +zust 228003 | +zwd 500240 | +zzrea 160206 | diff --git a/eccodes/definitions/param_id.table b/eccodes/definitions/param_id.table new file mode 100644 index 00000000..d29b0240 --- /dev/null +++ b/eccodes/definitions/param_id.table @@ -0,0 +1,4056 @@ +1 strf 1.128 35.1 35.2 35.3 | +10 ws 10.128 32.1 32.2 32.3 | +100 100.128 | +101 101.128 | +102 102.128 | +103 103.128 | +104 104.128 | +105 105.128 | +106 106.128 | +107 107.128 | +108 108.128 | +109 109.128 | +11 udvw 11.128 | +110 110.128 | +111 111.128 | +112 112.128 | +113 113.128 | +114 114.128 | +115 115.128 | +116 116.128 | +117 117.128 | +118 118.128 | +119 119.128 | +12 vdvw 12.128 | +120 120.128 | +121 mx2t6 15.1 15.2 15.3 121.128 | +122 mn2t6 16.1 16.2 16.3 122.128 | +123 10fg6 123.128 | +124 emis 124.128 | +125 vite 125.128 | +126 126.128 | +127 at 127.128 127.160 | +128 bv 128.128 128.160 | +129 z 6.1 6.2 6.3 129.128 129.160 129.170 129.180 129.190 | +129001 strfgrd 1.129 | +129002 vpotgrd 2.129 | +129003 ptgrd 3.129 | +129004 eqptgrd 4.129 | +129005 septgrd 5.129 | +129011 udvwgrd 11.129 | +129012 vdvwgrd 12.129 | +129013 urtwgrd 13.129 | +129014 vrtwgrd 14.129 | +129021 uctpgrd 21.129 | +129022 uclngrd 22.129 | +129023 ucdvgrd 23.129 | +129024 24.129 | +129025 25.129 | +129026 clgrd 26.129 | +129027 cvlgrd 27.129 | +129028 cvhgrd 28.129 | +129029 tvlgrd 29.129 | +129030 tvhgrd 30.129 | +129031 sicgrd 31.129 | +129032 asngrd 32.129 | +129033 rsngrd 33.129 | +129034 sstkgrd 34.129 | +129035 istl1grd 35.129 | +129036 istl2grd 36.129 | +129037 istl3grd 37.129 | +129038 istl4grd 38.129 | +129039 swvl1grd 39.129 | +129040 swvl2grd 40.129 | +129041 swvl3grd 41.129 | +129042 swvl4grd 42.129 | +129043 sltgrd 43.129 | +129044 esgrd 44.129 | +129045 smltgrd 45.129 | +129046 sdurgrd 46.129 | +129047 dsrpgrd 47.129 | +129048 magssgrd 48.129 | +129049 10fggrd 49.129 | +129050 lspfgrd 50.129 | +129051 mx2t24grd 51.129 | +129052 mn2t24grd 52.129 | +129053 montgrd 53.129 | +129054 presgrd 54.129 | +129055 mean2t24grd 55.129 | +129056 mn2d24grd 56.129 | +129057 uvbgrd 57.129 | +129058 pargrd 58.129 | +129059 capegrd 59.129 | +129060 pvgrd 60.129 | +129061 tpogrd 61.129 | +129062 obctgrd 62.129 | +129063 63.129 | +129064 64.129 | +129065 65.129 | +129066 66.129 | +129067 67.129 | +129068 68.129 | +129069 69.129 | +129070 70.129 | +129071 71.129 | +129078 78.129 | +129079 79.129 | +129080 80.129 | +129081 81.129 | +129082 82.129 | +129083 83.129 | +129084 84.129 | +129085 85.129 | +129086 86.129 | +129087 87.129 | +129088 88.129 | +129089 89.129 | +129090 90.129 | +129091 91.129 | +129092 92.129 | +129093 93.129 | +129094 94.129 | +129095 95.129 | +129096 96.129 | +129097 97.129 | +129098 98.129 | +129099 99.129 | +129100 100.129 | +129101 101.129 | +129102 102.129 | +129103 103.129 | +129104 104.129 | +129105 105.129 | +129106 106.129 | +129107 107.129 | +129108 108.129 | +129109 109.129 | +129110 110.129 | +129111 111.129 | +129112 112.129 | +129113 113.129 | +129114 114.129 | +129115 115.129 | +129116 116.129 | +129117 117.129 | +129118 118.129 | +129119 119.129 | +129120 120.129 | +129121 mx2t6grd 121.129 | +129122 mn2t6grd 122.129 | +129123 10fg6grd 123.129 | +129125 125.129 | +129126 126.129 | +129127 atgrd 127.129 | +129128 bvgrd 128.129 | +129129 zgrd 129.129 | +129130 tgrd 130.129 | +129131 ugrd 131.129 | +129132 vgrd 132.129 | +129133 qgrd 133.129 | +129134 spgrd 134.129 | +129135 wgrd 135.129 | +129136 tcwgrd 136.129 | +129137 tcwvgrd 137.129 | +129138 vogrd 138.129 | +129139 stl1grd 139.129 | +129140 swl1grd 140.129 | +129141 sdgrd 141.129 | +129142 lspgrd 142.129 | +129143 cpgrd 143.129 | +129144 sfgrd 144.129 | +129145 bldgrd 145.129 | +129146 sshfgrd 146.129 | +129147 slhfgrd 147.129 | +129148 chnkgrd 148.129 | +129149 snrgrd 149.129 | +129150 tnrgrd 150.129 | +129151 mslgrd 151.129 | +129152 lnspgrd 152.129 | +129153 swhrgrd 153.129 | +129154 lwhrgrd 154.129 | +129155 dgrd 155.129 | +129156 ghgrd 156.129 | +129157 rgrd 157.129 | +129158 tspgrd 158.129 | +129159 blhgrd 159.129 | +129160 sdorgrd 160.129 | +129161 isorgrd 161.129 | +129162 anorgrd 162.129 | +129163 slorgrd 163.129 | +129164 tccgrd 164.129 | +129165 10ugrd 165.129 | +129166 10vgrd 166.129 | +129167 2tgrd 167.129 | +129168 2dgrd 168.129 | +129169 ssrdgrd 169.129 | +129170 stl2grd 170.129 | +129171 swl2grd 171.129 | +129172 lsmgrd 172.129 | +129173 srgrd 173.129 | +129174 algrd 174.129 | +129175 strdgrd 175.129 | +129176 ssrgrd 176.129 | +129177 strgrd 177.129 | +129178 tsrgrd 178.129 | +129179 ttrgrd 179.129 | +129180 ewssgrd 180.129 | +129181 nsssgrd 181.129 | +129182 egrd 182.129 | +129183 stl3grd 183.129 | +129184 swl3grd 184.129 | +129185 cccgrd 185.129 | +129186 lccgrd 186.129 | +129187 mccgrd 187.129 | +129188 hccgrd 188.129 | +129189 sundgrd 189.129 | +129190 ewovgrd 190.129 | +129191 nsovgrd 191.129 | +129192 nwovgrd 192.129 | +129193 neovgrd 193.129 | +129194 btmpgrd 194.129 | +129195 lgwsgrd 195.129 | +129196 mgwsgrd 196.129 | +129197 gwdgrd 197.129 | +129198 srcgrd 198.129 | +129199 veggrd 199.129 | +129200 vsogrd 200.129 | +129201 mx2tgrd 201.129 | +129202 mn2tgrd 202.129 | +129203 o3grd 203.129 | +129204 pawgrd 204.129 | +129205 rogrd 205.129 | +129206 tco3grd 206.129 | +129207 10sigrd 207.129 | +129208 tsrcgrd 208.129 | +129209 ttrcgrd 209.129 | +129210 ssrcgrd 210.129 | +129211 strcgrd 211.129 | +129212 tisrgrd 212.129 | +129214 dhrgrd 214.129 | +129215 dhvdgrd 215.129 | +129216 dhccgrd 216.129 | +129217 dhlcgrd 217.129 | +129218 vdzwgrd 218.129 | +129219 vdmwgrd 219.129 | +129220 ewgdgrd 220.129 | +129221 nsgdgrd 221.129 | +129222 ctzwgrd 222.129 | +129223 ctmwgrd 223.129 | +129224 vdhgrd 224.129 | +129225 htccgrd 225.129 | +129226 htlcgrd 226.129 | +129227 crnhgrd 227.129 | +129228 tpgrd 228.129 | +129229 iewsgrd 229.129 | +129230 inssgrd 230.129 | +129231 ishfgrd 231.129 | +129232 iegrd 232.129 | +129233 asqgrd 233.129 | +129234 lsrhgrd 234.129 | +129235 sktgrd 235.129 | +129236 stl4grd 236.129 | +129237 swl4grd 237.129 | +129238 tsngrd 238.129 | +129239 csfgrd 239.129 | +129240 lsfgrd 240.129 | +129241 acfgrd 241.129 | +129242 alwgrd 242.129 | +129243 falgrd 243.129 | +129244 fsrgrd 244.129 | +129245 flsrgrd 245.129 | +129246 clwcgrd 246.129 | +129247 ciwcgrd 247.129 | +129248 ccgrd 248.129 | +129249 aiwgrd 249.129 | +129250 icegrd 250.129 | +129251 attegrd 251.129 | +129252 athegrd 252.129 | +129253 atzegrd 253.129 | +129254 atmwgrd 254.129 | +129255 255.129 | +13 urtw 13.128 | +130 t 11.1 11.2 11.3 130.128 130.160 130.170 130.180 130.190 | +130208 tsru 208.130 | +130209 ttru 209.130 | +130210 tsuc 210.130 | +130211 ttuc 211.130 | +130212 clw 212.130 | +130213 cf 213.130 | +130214 dhr 214.130 | +130215 dhvd 215.130 | +130216 dhcc 216.130 | +130217 dhlc 217.130 | +130218 vdzw 218.130 | +130219 vdmw 219.130 | +130220 ewgd 220.130 | +130221 nsgd 221.130 | +130224 vdh 224.130 | +130225 htcc 225.130 | +130226 htlc 226.130 | +130228 att 228.130 | +130229 ath 229.130 | +130230 atzw 230.130 | +130231 atmwax 231.130 | +130232 mvv 232.130 | +131 u 33.1 33.2 33.3 131.128 131.160 131.170 131.180 131.190 | +131001 1.131 2tag2 | +131002 2tag1 2.131 | +131003 2tag0 3.131 | +131004 2talm1 4.131 | +131005 2talm2 5.131 | +131006 tpag20 6.131 | +131007 tpag10 7.131 | +131008 tpag0 8.131 | +131009 stag0 9.131 | +131010 mslag0 10.131 | +131015 h0dip 15.131 | +131016 hslp 16.131 | +131017 saip 17.131 | +131018 whip 18.131 | +131020 talm2 20.131 | +131021 tag2 21.131 | +131022 talm8 22.131 | +131023 talm4 23.131 | +131024 tag4 24.131 | +131025 tag8 25.131 | +131049 10gp 49.131 | +131059 capep 59.131 | +131060 tpg1 60.131 | +131061 tpg5 61.131 | +131062 tpg10 62.131 | +131063 tpg20 63.131 | +131064 tpl01 64.131 | +131065 tprl1 65.131 | +131066 tprg3 66.131 | +131067 tprg5 67.131 | +131068 10spg10 68.131 | +131069 10spg15 69.131 | +131070 10fgg15 70.131 | +131071 10fgg20 71.131 | +131072 10fgg25 72.131 | +131073 2tl273 73.131 | +131074 swhg2 74.131 | +131075 swhg4 75.131 | +131076 swhg6 76.131 | +131077 swhg8 77.131 | +131078 mwpg8 78.131 | +131079 mwpg10 79.131 | +131080 mwpg12 80.131 | +131081 mwpg15 81.131 | +131082 tpg40 82.131 | +131083 tpg60 83.131 | +131084 tpg80 84.131 | +131085 tpg100 85.131 | +131086 tpg150 86.131 | +131087 tpg200 87.131 | +131088 tpg300 88.131 | +131089 pts 89.131 | +131090 ph 90.131 | +131091 ptd 91.131 | +131092 cpts 92.131 | +131093 cph 93.131 | +131094 cptd 94.131 | +131095 pats 95.131 | +131096 pah 96.131 | +131097 patd 97.131 | +131129 zp 129.131 | +131130 tap 130.131 | +131139 2tp 139.131 | +131144 sfp 144.131 | +131151 tpp 151.131 | +131164 tccp 164.131 | +131165 10sp 165.131 | +131167 2tp 167.131 | +131201 mx2tp 201.131 | +131202 mn2tp 202.131 | +131228 tpp 228.131 | +131229 swhp 229.131 | +131232 mwpp 232.131 | +131255 255.131 | +132 v 34.1 34.2 34.3 132.128 132.160 132.170 132.180 132.190 | +132049 10fgi 49.132 | +132144 sfi 144.132 | +132165 10wsi 165.132 | +132167 2ti 167.132 | +132201 mx2ti 201.132 | +132202 mn2ti 202.132 | +132216 maxswhi 216.132 | +132228 tpi 228.132 | +133 q 51.1 51.2 51.3 133.128 133.160 133.170 133.180 133.190 | +133001 1.133 2tplm10 | +133002 2tplm5 2.133 | +133003 2tpl0 3.133 | +133004 2tpl5 4.133 | +133005 2tpl10 5.133 | +133006 2tpg25 6.133 | +133007 2tpg30 7.133 | +133008 2tpg35 8.133 | +133009 2tpg40 9.133 | +133010 2tpg45 10.133 | +133011 mn2tplm10 11.133 | +133012 mn2tplm5 12.133 | +133013 mn2tpl0 13.133 | +133014 mn2tpl5 14.133 | +133015 mn2tpl10 15.133 | +133016 mx2tpg25 16.133 | +133017 mx2tpg30 17.133 | +133018 mx2tpg35 18.133 | +133019 mx2tpg40 19.133 | +133020 mx2tpg45 20.133 | +133021 10spg10 21.133 | +133022 10spg15 22.133 | +133023 10spg20 23.133 | +133024 10spg35 24.133 | +133025 10spg50 25.133 | +133026 10gpg20 26.133 | +133027 10gpg35 27.133 | +133028 10gpg50 28.133 | +133029 10gpg75 29.133 | +133030 10gpg100 30.133 | +133031 tppg1 31.133 | +133032 tppg5 32.133 | +133033 tppg10 33.133 | +133034 tppg20 34.133 | +133035 tppg40 35.133 | +133036 tppg60 36.133 | +133037 tppg80 37.133 | +133038 tppg100 38.133 | +133039 tppg150 39.133 | +133040 tppg200 40.133 | +133041 tppg300 41.133 | +133042 sfpg1 42.133 | +133043 sfpg5 43.133 | +133044 sfpg10 44.133 | +133045 sfpg20 45.133 | +133046 sfpg40 46.133 | +133047 sfpg60 47.133 | +133048 sfpg80 48.133 | +133049 sfpg100 49.133 | +133050 sfpg150 50.133 | +133051 sfpg200 51.133 | +133052 sfpg300 52.133 | +133053 tccpg10 53.133 | +133054 tccpg20 54.133 | +133055 tccpg30 55.133 | +133056 tccpg40 56.133 | +133057 tccpg50 57.133 | +133058 tccpg60 58.133 | +133059 tccpg70 59.133 | +133060 tccpg80 60.133 | +133061 tccpg90 61.133 | +133062 tccpg99 62.133 | +133063 hccpg10 63.133 | +133064 hccpg20 64.133 | +133065 hccpg30 65.133 | +133066 hccpg40 66.133 | +133067 hccpg50 67.133 | +133068 hccpg60 68.133 | +133069 hccpg70 69.133 | +133070 hccpg80 70.133 | +133071 hccpg90 71.133 | +133072 hccpg99 72.133 | +133073 mccpg10 73.133 | +133074 mccpg20 74.133 | +133075 mccpg30 75.133 | +133076 mccpg40 76.133 | +133077 mccpg50 77.133 | +133078 mccpg60 78.133 | +133079 mccpg70 79.133 | +133080 mccpg80 80.133 | +133081 mccpg90 81.133 | +133082 mccpg99 82.133 | +133083 lccpg10 83.133 | +133084 lccpg20 84.133 | +133085 lccpg30 85.133 | +133086 lccpg40 86.133 | +133087 lccpg50 87.133 | +133088 lccpg60 88.133 | +133089 lccpg70 89.133 | +133090 lccpg80 90.133 | +133091 lccpg90 91.133 | +133092 lccpg99 92.133 | +134 sp 1.1 1.2 1.3 52.162 134.128 134.160 134.180 134.190 | +135 w 39.1 39.2 39.3 135.128 135.170 | +136 tcw 136.128 136.160 | +137 tcwv 137.128 137.180 | +138 vo 43.1 43.2 43.3 138.128 138.160 138.170 138.180 138.190 | +139 stl1 139.128 139.160 139.170 139.190 | +14 vrtw 14.128 | +140 swl1 140.128 140.170 | +140200 maxswh 200.140 | +140211 phiaw 211.140 | +140212 phioc 212.140 | +140213 tla 213.140 | +140214 tauoc 214.140 | +140215 ust 215.140 | +140216 vst 216.140 | +140217 tmax 217.140 | +140218 hmax 218.140 | +140219 wmb 219.140 | +140220 mp1 220.140 | +140221 mp2 221.140 | +140222 wdw 222.140 | +140223 p1ww 223.140 | +140224 p2ww 224.140 | +140225 dwww 225.140 | +140226 p1ps 226.140 | +140227 p2ps 227.140 | +140228 dwps 228.140 | +140229 swh 229.140 | +140230 mwd 230.140 | +140231 pp1d 231.140 | +140232 mwp 232.140 | +140233 cdww 233.140 | +140234 shww 234.140 | +140235 mdww 235.140 | +140236 mpww 236.140 | +140237 shts 237.140 | +140238 mdts 238.140 | +140239 mpts 239.140 | +140240 sdhs 240.140 | +140241 mu10 241.140 | +140242 mdwi 242.140 | +140243 sdu 243.140 | +140244 msqs 244.140 | +140245 wind 245.140 | +140246 awh 246.140 | +140247 acwh 247.140 | +140248 arrc 248.140 | +140249 dwi 249.140 | +140250 2dsp 250.140 | +140251 2dfd 251.140 | +140252 wsk 252.140 | +140253 bfi 253.140 | +140254 wsp 254.140 | +140255 255.140 | +141 sd 141.128 141.170 141.180 | +142 lsp 142.128 142.170 142.180 | +143 cp 143.128 143.170 143.180 | +144 sf 144.128 144.180 | +145 bld 123.1 123.2 123.3 145.128 145.160 | +146 sshf 122.1 122.2 122.3 146.128 146.160 146.170 146.180 146.190 | +147 slhf 121.1 121.2 121.3 147.128 147.160 147.170 147.180 147.190 | +148 chnk 148.128 | +149 snr 149.128 | +15 aluvp 15.128 | +150 tnr 150.128 | +150129 ocpt 129.150 | +150130 ocs 130.150 | +150131 ocpd 131.150 | +150133 ocu 133.150 | +150134 ocv 134.150 | +150135 ocw 135.150 | +150137 rn 137.150 | +150139 uv 139.150 | +150140 ut 140.150 | +150141 vt 141.150 | +150142 uu 142.150 | +150143 vv 143.150 | +150144 144.150 | +150145 145.150 | +150146 146.150 | +150147 147.150 | +150148 148.150 | +150152 sl 152.150 | +150153 153.150 | +150154 mld 154.150 | +150155 155.150 | +150168 168.150 | +150169 169.150 | +150170 170.150 | +150171 nsf 171.150 | +150172 172.150 | +150173 173.150 | +150180 180.150 | +150181 181.150 | +150182 182.150 | +150183 183.150 | +150255 255.150 | +151 msl 2.1 2.2 2.3 151.128 151.160 151.170 151.180 151.190 | +151128 128.151 | +151129 ocpt 129.151 | +151130 s 130.151 | +151131 ocu 131.151 | +151132 ocv 132.151 | +151133 ocw 133.151 | +151134 mst 134.151 | +151135 vvs 135.151 | +151136 vdf 136.151 | +151137 dep 137.151 | +151138 sth 138.151 | +151139 rn 139.151 | +151140 uv 140.151 | +151141 ut 141.151 | +151142 vt 142.151 | +151143 uu 143.151 | +151144 vv 144.151 | +151145 sl 145.151 | +151146 sl_1 146.151 | +151147 bsf 147.151 | +151148 mld 148.151 | +151149 btp 149.151 | +151150 sh 150.151 | +151151 crl 151.151 | +151152 152.151 | +151153 tax 153.151 | +151154 tay 154.151 | +151155 tki 155.151 | +151156 nsf 156.151 | +151157 asr 157.151 | +151158 pme 158.151 | +151159 sst 159.151 | +151160 shf 160.151 | +151161 dte 161.151 | +151162 hfc 162.151 | +151163 20d 163.151 | +151164 tav300 164.151 | +151165 uba1 165.151 | +151166 vba1 166.151 | +151167 ztr 167.151 | +151168 mtr 168.151 | +151169 zht 169.151 | +151170 mht 170.151 | +151171 umax 171.151 | +151172 dumax 172.151 | +151173 smax 173.151 | +151174 dsmax 174.151 | +151175 sav300 175.151 | +151176 ldp 176.151 | +151177 ldu 177.151 | +151178 pti 178.151 | +151179 ptae 179.151 | +151180 bpt 180.151 | +151181 apt 181.151 | +151182 ptbe 182.151 | +151183 as 183.151 | +151184 sali 184.151 | +151185 ebt 185.151 | +151186 ebs 186.151 | +151187 uvi 187.151 | +151188 vvi 188.151 | +151190 subi 190.151 | +151191 sale 191.151 | +151192 bsal 192.151 | +151193 193.151 | +151194 salbe 194.151 | +151199 ebta 199.151 | +151200 ebsa 200.151 | +151201 lti 201.151 | +151202 lsi 202.151 | +151203 bzpga 203.151 | +151204 bmpga 204.151 | +151205 ebtl 205.151 | +151206 ebsl 206.151 | +151207 fgbt 207.151 | +151208 fgbs 208.151 | +151209 bpa 209.151 | +151210 fgbp 210.151 | +151211 pta 211.151 | +151212 psa 212.151 | +151255 255.151 | +152 lnsp 152.128 152.160 | +153 swhr 153.128 | +154 lwhr 154.128 | +155 d 44.1 44.2 44.3 155.128 155.160 155.170 155.180 155.190 | +156 gh 7.1 7.2 7.3 156.128 | +157 r 52.1 52.2 52.3 157.128 157.170 157.190 | +158 tsp 158.128 158.160 | +159 blh 159.128 | +16 aluvd 16.128 | +160 sdor 160.128 | +160049 10fgrea 49.160 | +160135 wrea 135.160 | +160137 pwcrea 137.160 | +160140 swl1rea 140.160 | +160141 sdrea 141.160 | +160142 lsprea 142.160 | +160143 cprea 143.160 | +160144 sfrea 144.160 | +160156 ghrea 156.160 | +160157 rrea 157.160 | +160171 swl2rea 171.160 | +160180 ewssrea 180.160 | +160181 nsssrea 181.160 | +160182 erea 182.160 | +160184 swl3rea 184.160 | +160198 srcrea 198.160 | +160199 vegrea 199.160 | +160201 mx2trea 201.160 | +160202 mn2trea 202.160 | +160205 rorea 205.160 | +160206 zzrea 206.160 | +160207 tzrea 207.160 | +160208 ttrea 208.160 | +160209 qzrea 209.160 | +160210 qtrea 210.160 | +160211 qqrea 211.160 | +160212 uzrea 212.160 | +160213 utrea 213.160 | +160214 uqrea 214.160 | +160215 uurea 215.160 | +160216 vzrea 216.160 | +160217 vtrea 217.160 | +160218 vqrea 218.160 | +160219 vurea 219.160 | +160220 vvrea 220.160 | +160221 wzrea 221.160 | +160222 wtrea 222.160 | +160223 wqrea 223.160 | +160224 wurea 224.160 | +160225 wvrea 225.160 | +160226 wwrea 226.160 | +160231 ishfrea 231.160 | +160239 csfrea 239.160 | +160240 lsfrea 240.160 | +160241 clwcerrea 241.160 | +160242 ccrea 242.160 | +160243 falrea 243.160 | +160246 10wsrea 246.160 | +160247 moflrea 247.160 | +160249 249.160 | +160254 hsdrea 254.160 | +161 isor 161.128 | +162 anor 162.128 | +162051 51.162 | +162053 53.162 | +162054 54.162 | +162055 55.162 | +162056 56.162 | +162057 57.162 | +162058 58.162 | +162059 59.162 | +162060 60.162 | +162061 61.162 | +162062 62.162 | +162063 63.162 | +162064 64.162 | +162065 65.162 | +162066 66.162 | +162067 67.162 | +162068 68.162 | +162069 69.162 | +162070 70.162 | +162071 71.162 | +162072 72.162 | +162073 73.162 | +162074 74.162 | +162075 75.162 | +162076 76.162 | +162077 77.162 | +162078 78.162 | +162079 79.162 | +162080 80.162 | +162081 81.162 | +162082 82.162 | +162083 83.162 | +162084 84.162 | +162085 85.162 | +162086 86.162 | +162087 87.162 | +162088 88.162 | +162089 89.162 | +162090 90.162 | +162091 91.162 | +162092 92.162 | +162100 100.162 | +162101 101.162 | +162102 102.162 | +162103 103.162 | +162104 104.162 | +162105 105.162 | +162106 106.162 | +162107 107.162 | +162108 108.162 | +162109 109.162 | +162110 110.162 | +162111 111.162 | +162112 112.162 | +162113 113.162 | +162114 utendd 114.162 | +162115 vtendd 115.162 | +162116 ttendd 116.162 | +162117 qtendd 117.162 | +162118 ttendr 118.162 | +162119 utendts 119.162 | +162120 vtendts 120.162 | +162121 ttendts 121.162 | +162122 qtendt 122.162 | +162123 utends 123.162 | +162124 vtends 124.162 | +162125 ttends 125.162 | +162126 utendcds 126.162 | +162127 vtendcds 127.162 | +162128 ttendcds 128.162 | +162129 qtendcds 129.162 | +162130 lpc 130.162 | +162131 ipc 131.162 | +162132 ttendcs 132.162 | +162133 qtendcs 133.162 | +162134 qltendcs 134.162 | +162135 qitendcs 135.162 | +162136 lpcs 136.162 | +162137 ipcs 137.162 | +162138 utendcs 138.162 | +162139 vtendcs 139.162 | +162140 ttendsc 140.162 | +162141 qtendsc 141.162 | +162206 206.162 | +162207 207.162 | +162208 208.162 | +162209 209.162 | +162210 210.162 | +162211 211.162 | +162212 212.162 | +162213 213.162 | +162214 214.162 | +162215 215.162 | +162216 216.162 | +162217 217.162 | +162218 218.162 | +162219 219.162 | +162220 220.162 | +162221 221.162 | +162222 222.162 | +162223 223.162 | +162224 224.162 | +162225 225.162 | +162226 226.162 | +162227 227.162 | +162229 229.162 | +162230 230.162 | +162231 231.162 | +162232 232.162 | +162233 233.162 | +162255 255.162 | +163 slor 163.128 | +164 tcc 164.128 164.160 164.170 164.180 164.190 | +165 10u 33.1 33.2 33.3 165.128 165.160 165.180 165.190 | +166 10v 34.1 34.2 34.3 166.128 166.160 166.180 166.190 | +167 2t 11.1 11.2 11.3 167.128 167.160 167.180 167.190 | +168 2d 44.1 44.2 44.3 168.128 168.160 168.180 168.190 | +169 ssrd 169.128 169.190 | +17 alnip 17.128 | +170 stl2 170.128 170.160 | +170149 tsw 149.170 | +170171 swl2 171.170 | +170179 ttr 179.170 | +171 swl2 171.128 | +171001 strfa 1.171 | +171002 vpota 2.171 | +171003 pta 3.171 | +171004 epta 4.171 | +171005 septa 5.171 | +171006 6.171 100ua | +171007 7.171 100va | +171011 udwa 11.171 | +171012 vdwa 12.171 | +171013 urwa 13.171 | +171014 vrwa 14.171 | +171021 uctpa 21.171 | +171022 uclna 22.171 | +171023 ucdva 23.171 | +171026 cla 26.171 | +171027 cvla 27.171 | +171028 cvha 28.171 | +171029 tvla 29.171 | +171030 tvha 30.171 | +171031 sica 31.171 | +171032 asna 32.171 | +171033 rsna 33.171 | +171034 ssta 34.171 | +171035 istal1 35.171 | +171036 istal2 36.171 | +171037 istal3 37.171 | +171038 istal4 38.171 | +171039 swval1 39.171 | +171040 swval2 40.171 | +171041 swval3 41.171 | +171042 swval4 42.171 | +171043 slta 43.171 | +171044 esa 44.171 | +171045 smlta 45.171 | +171046 sdura 46.171 | +171047 dsrpa 47.171 | +171048 magssa 48.171 | +171049 10fga 49.171 | +171050 lspfa 50.171 | +171051 mx2t24a 51.171 | +171052 mn2t24a 52.171 | +171053 monta 53.171 | +171054 pa 54.171 | +171055 mn2t24a 55.171 | +171056 mn2d24a 56.171 | +171057 uvba 57.171 | +171058 para 58.171 | +171059 capea 59.171 | +171060 pva 60.171 | +171061 tpoa 61.171 | +171062 obcta 62.171 | +171063 stsktda 63.171 | +171064 ftsktda 64.171 | +171065 sktda 65.171 | +171078 tclwa 78.171 | +171079 tciwa 79.171 | +171121 mx2t6a 121.171 | +171122 mn2t6a 122.171 | +171125 vitea 125.171 | +171126 126.171 | +171127 ata 127.171 | +171128 bva 128.171 | +171129 za 129.171 | +171130 ta 130.171 | +171131 ua 131.171 | +171132 va 132.171 | +171133 qa 133.171 | +171134 spa 134.171 | +171135 wa 135.171 | +171136 tcwa 136.171 | +171137 tcwva 137.171 | +171138 voa 138.171 | +171139 stal1 139.171 | +171140 swal1 140.171 | +171141 sda 141.171 | +171142 lspa 142.171 | +171143 cpa 143.171 | +171144 sfa 144.171 | +171145 blda 145.171 | +171146 sshfa 146.171 | +171147 slhfa 147.171 | +171148 chnka 148.171 | +171149 snra 149.171 | +171150 tnra 150.171 | +171151 msla 151.171 | +171152 lspa 152.171 | +171153 swhra 153.171 | +171154 lwhra 154.171 | +171155 da 155.171 | +171156 gha 156.171 | +171157 ra 157.171 | +171158 tspa 158.171 | +171159 blha 159.171 | +171160 sdora 160.171 | +171161 isora 161.171 | +171162 anora 162.171 | +171163 slora 163.171 | +171164 tcca 164.171 | +171165 10ua 165.171 | +171166 10va 166.171 | +171167 2ta 167.171 | +171168 2da 168.171 | +171169 ssrda 169.171 | +171170 stal2 170.171 | +171171 swal2 171.171 | +171173 sra 173.171 | +171174 ala 174.171 | +171175 strda 175.171 | +171176 ssra 176.171 | +171177 stra 177.171 | +171178 tsra 178.171 | +171179 ttra 179.171 | +171180 eqssa 180.171 | +171181 nsssa 181.171 | +171182 ea 182.171 | +171183 stal3 183.171 | +171184 swal3 184.171 | +171185 ccca 185.171 | +171186 lcca 186.171 | +171187 mcca 187.171 | +171188 hcca 188.171 | +171189 sunda 189.171 | +171190 ewova 190.171 | +171191 nsova 191.171 | +171192 nwova 192.171 | +171193 neova 193.171 | +171194 btmpa 194.171 | +171195 lgwsa 195.171 | +171196 mgwsa 196.171 | +171197 gwda 197.171 | +171198 srca 198.171 | +171199 vfa 199.171 | +171200 vsoa 200.171 | +171201 mx2ta 201.171 | +171202 mn2ta 202.171 | +171203 o3a 203.171 | +171204 pawa 204.171 | +171205 roa 205.171 | +171206 tco3a 206.171 | +171207 10ua 207.171 | +171208 tsrca 208.171 | +171209 ttrca 209.171 | +171210 ssrca 210.171 | +171211 strca 211.171 | +171212 sia 212.171 | +171214 dhra 214.171 | +171215 dhvda 215.171 | +171216 dhcca 216.171 | +171217 dhlca 217.171 | +171218 vdzwa 218.171 | +171219 vdmwa 219.171 | +171220 ewgda 220.171 | +171221 nsgda 221.171 | +171222 ctzwa 222.171 | +171223 ctmwa 223.171 | +171224 vdha 224.171 | +171225 htcca 225.171 | +171226 htlca 226.171 | +171227 crnha 227.171 | +171228 tpa 228.171 | +171229 iewsa 229.171 | +171230 inssa 230.171 | +171231 ishfa 231.171 | +171232 iea 232.171 | +171233 asqa 233.171 | +171234 lsrha 234.171 | +171235 skta 235.171 | +171236 stal4 236.171 | +171237 swal4 237.171 | +171238 tsna 238.171 | +171239 csfa 239.171 | +171240 lsfa 240.171 | +171241 acfa 241.171 | +171242 alwa 242.171 | +171243 fala 243.171 | +171244 fsra 244.171 | +171245 flsra 245.171 | +171246 clwca 246.171 | +171247 ciwca 247.171 | +171248 cca 248.171 | +171249 aiwa 249.171 | +171250 iaa 250.171 | +171251 attea 251.171 | +171252 athea 252.171 | +171253 atzea 253.171 | +171254 atmwa 254.171 | +171255 255.171 | +172 lsm 81.1 81.2 81.3 172.128 172.160 172.171 172.174 172.175 172.180 172.190 | +172044 esrate 44.172 | +172045 45.172 | +172048 48.172 | +172050 50.172 | +172142 142.172 | +172143 cprate 143.172 | +172144 144.172 | +172145 bldrate 145.172 | +172146 146.172 | +172147 147.172 | +172149 149.172 | +172153 153.172 | +172154 154.172 | +172169 169.172 | +172175 175.172 | +172176 176.172 | +172177 177.172 | +172178 178.172 | +172179 179.172 | +172180 180.172 | +172181 181.172 | +172182 erate 182.172 | +172189 189.172 | +172195 195.172 | +172196 196.172 | +172197 gwdrate 197.172 | +172205 205.172 | +172208 208.172 | +172209 209.172 | +172210 210.172 | +172211 211.172 | +172212 212.172 | +172228 tprate 228.172 | +172239 239.172 | +172240 240.172 | +172255 255.172 | +173 sr 83.1 83.2 83.3 173.128 173.160 | +173044 44.173 | +173045 45.173 | +173048 48.173 | +173050 50.173 | +173142 142.173 | +173143 143.173 | +173144 sfara 144.173 | +173145 145.173 | +173146 146.173 | +173147 147.173 | +173149 149.173 | +173153 153.173 | +173154 154.173 | +173169 169.173 | +173175 175.173 | +173176 176.173 | +173177 177.173 | +173178 178.173 | +173179 179.173 | +173180 180.173 | +173181 181.173 | +173182 182.173 | +173189 sundara 189.173 | +173195 195.173 | +173196 196.173 | +173197 197.173 | +173205 205.173 | +173208 208.173 | +173209 209.173 | +173210 210.173 | +173211 211.173 | +173212 212.173 | +173228 tpara 228.173 | +173239 239.173 | +173240 240.173 | +173255 255.173 | +174 al 84.1 84.2 84.3 174.128 174.160 174.190 | +174006 6.174 | +174008 sro 8.174 | +174009 ssro 9.174 | +174031 31.174 | +174034 34.174 | +174039 39.174 | +174040 40.174 | +174041 41.174 | +174042 42.174 | +174049 49.174 | +174055 55.174 | +174083 83.174 | +174085 85.174 | +174086 86.174 | +174087 87.174 | +174088 88.174 | +174089 89.174 | +174090 90.174 | +174094 94.174 | +174095 95.174 | +174098 98.174 | +174099 99.174 | +174110 110.174 | +174111 111.174 | +174139 139.174 | +174164 164.174 | +174167 167.174 | +174168 168.174 | +174170 170.174 | +174175 175.174 | +174183 183.174 | +174201 201.174 | +174202 202.174 | +174236 236.174 | +174255 255.174 | +175 strd 175.128 175.190 | +175006 6.175 | +175031 31.175 | +175034 34.175 | +175039 39.175 | +175040 40.175 | +175041 41.175 | +175042 42.175 | +175049 49.175 | +175055 55.175 | +175083 83.175 | +175085 85.175 | +175086 86.175 | +175087 87.175 | +175088 88.175 | +175089 89.175 | +175090 90.175 | +175110 110.175 | +175111 111.175 | +175139 139.175 | +175164 164.175 | +175167 167.175 | +175168 168.175 | +175170 170.175 | +175175 175.175 | +175183 183.175 | +175201 201.175 | +175202 202.175 | +175236 236.175 | +175255 255.175 | +176 ssr 176.128 176.160 176.170 176.190 | +177 str 177.128 177.160 177.170 177.190 | +178 tsr 178.128 178.160 178.190 | +179 ttr 179.128 179.160 179.190 | +18 alnid 18.128 | +180 ewss 180.128 180.170 180.180 | +180149 tsw 149.180 | +180176 ssr 176.180 | +180177 str 177.180 | +180178 tsr 178.180 | +180179 ttr 179.180 | +181 nsss 181.128 181.170 181.180 | +182 e 57.1 57.2 57.3 182.128 182.170 182.180 182.190 | +183 stl3 183.128 183.160 | +184 swl3 184.128 184.170 | +185 ccc 72.1 72.2 72.3 185.128 185.160 185.170 | +186 lcc 73.1 73.2 73.3 186.128 186.160 | +187 mcc 74.1 74.2 74.3 187.128 187.160 | +188 hcc 75.1 75.2 75.3 188.128 188.160 | +189 sund 189.128 | +19 uvcs 19.128 | +190 ewov 190.128 190.160 | +190141 sdsien 141.190 | +190170 cap 170.190 | +190171 wiltsien 171.190 | +190173 sr 173.190 | +190229 tsm 229.190 | +191 nsov 191.128 191.160 | +192 nwov 192.128 192.160 | +193 neov 193.128 193.160 | +194 btmp 118.1 118.2 118.3 194.128 | +195 lgws 195.128 195.160 | +196 mgws 196.128 196.160 | +197 gwd 197.128 197.160 | +198 src 198.128 | +199 veg 87.1 87.2 87.3 199.128 | +2 vp 2.128 36.1 36.2 36.3 | +20 parcs 20.128 | +200 vso 200.128 200.160 | +200001 strfdiff 1.200 | +200002 vpotdiff 2.200 | +200003 ptdiff 3.200 | +200004 eqptdiff 4.200 | +200005 septdiff 5.200 | +200011 udvwdiff 11.200 | +200012 vdvwdiff 12.200 | +200013 urtwdiff 13.200 | +200014 vrtwdiff 14.200 | +200021 uctpdiff 21.200 | +200022 uclndiff 22.200 | +200023 ucdvdiff 23.200 | +200024 24.200 | +200025 25.200 | +200026 cldiff 26.200 | +200027 cvldiff 27.200 | +200028 cvhdiff 28.200 | +200029 tvldiff 29.200 | +200030 tvhdiff 30.200 | +200031 sicdiff 31.200 | +200032 asndiff 32.200 | +200033 rsndiff 33.200 | +200034 sstdiff 34.200 | +200035 istl1diff 35.200 | +200036 istl2diff 36.200 | +200037 istl3diff 37.200 | +200038 istl4diff 38.200 | +200039 swvl1diff 39.200 | +200040 swvl2diff 40.200 | +200041 swvl3diff 41.200 | +200042 swvl4diff 42.200 | +200043 sltdiff 43.200 | +200044 esdiff 44.200 | +200045 smltdiff 45.200 | +200046 sdurdiff 46.200 | +200047 dsrpdiff 47.200 | +200048 magssdiff 48.200 | +200049 10fgdiff 49.200 | +200050 lspfdiff 50.200 | +200051 mx2t24diff 51.200 | +200052 mn2t24diff 52.200 | +200053 montdiff 53.200 | +200054 presdiff 54.200 | +200055 mean2t24diff 55.200 | +200056 mn2d24diff 56.200 | +200057 uvbdiff 57.200 | +200058 pardiff 58.200 | +200059 capediff 59.200 | +200060 pvdiff 60.200 | +200061 tpodiff 61.200 | +200062 obctdiff 62.200 | +200063 63.200 | +200064 64.200 | +200065 65.200 | +200066 66.200 | +200067 67.200 | +200068 68.200 | +200069 69.200 | +200070 70.200 | +200071 71.200 | +200078 78.200 | +200079 79.200 | +200080 80.200 | +200081 81.200 | +200082 82.200 | +200083 83.200 | +200084 84.200 | +200085 85.200 | +200086 86.200 | +200087 87.200 | +200088 88.200 | +200089 89.200 | +200090 90.200 | +200091 91.200 | +200092 92.200 | +200093 93.200 | +200094 94.200 | +200095 95.200 | +200096 96.200 | +200097 97.200 | +200098 98.200 | +200099 99.200 | +200100 100.200 | +200101 101.200 | +200102 102.200 | +200103 103.200 | +200104 104.200 | +200105 105.200 | +200106 106.200 | +200107 107.200 | +200108 108.200 | +200109 109.200 | +200110 110.200 | +200111 111.200 | +200112 112.200 | +200113 113.200 | +200114 114.200 | +200115 115.200 | +200116 116.200 | +200117 117.200 | +200118 118.200 | +200119 119.200 | +200120 120.200 | +200121 mx2t6diff 121.200 | +200122 mn2t6diff 122.200 | +200123 10fg6diff 123.200 | +200125 125.200 | +200126 126.200 | +200127 atdiff 127.200 | +200128 bvdiff 128.200 | +200129 zdiff 129.200 | +200130 tdiff 130.200 | +200131 udiff 131.200 | +200132 vdiff 132.200 | +200133 qdiff 133.200 | +200134 spdiff 134.200 | +200135 wdiff 135.200 | +200136 tcwdiff 136.200 | +200137 tcwvdiff 137.200 | +200138 vodiff 138.200 | +200139 stl1diff 139.200 | +200140 swl1diff 140.200 | +200141 sddiff 141.200 | +200142 lspdiff 142.200 | +200143 cpdiff 143.200 | +200144 sfdiff 144.200 | +200145 blddiff 145.200 | +200146 sshfdiff 146.200 | +200147 slhfdiff 147.200 | +200148 chnkdiff 148.200 | +200149 snrdiff 149.200 | +200150 tnrdiff 150.200 | +200151 msldiff 151.200 | +200152 lnspdiff 152.200 | +200153 swhrdiff 153.200 | +200154 lwhrdiff 154.200 | +200155 ddiff 155.200 | +200156 ghdiff 156.200 | +200157 rdiff 157.200 | +200158 tspdiff 158.200 | +200159 blhdiff 159.200 | +200160 sdordiff 160.200 | +200161 isordiff 161.200 | +200162 anordiff 162.200 | +200163 slordiff 163.200 | +200164 tccdiff 164.200 | +200165 10udiff 165.200 | +200166 10vdiff 166.200 | +200167 2tdiff 167.200 | +200168 2ddiff 168.200 | +200169 ssrddiff 169.200 | +200170 stl2diff 170.200 | +200171 swl2diff 171.200 | +200172 lsmdiff 172.200 | +200173 srdiff 173.200 | +200174 aldiff 174.200 | +200175 strddiff 175.200 | +200176 ssrdiff 176.200 | +200177 strdiff 177.200 | +200178 tsrdiff 178.200 | +200179 ttrdiff 179.200 | +200180 ewssdiff 180.200 | +200181 nsssdiff 181.200 | +200182 ediff 182.200 | +200183 stl3diff 183.200 | +200184 swl3diff 184.200 | +200185 cccdiff 185.200 | +200186 lccdiff 186.200 | +200187 mccdiff 187.200 | +200188 hccdiff 188.200 | +200189 sunddiff 189.200 | +200190 ewovdiff 190.200 | +200191 nsovdiff 191.200 | +200192 nwovdiff 192.200 | +200193 neovdiff 193.200 | +200194 btmpdiff 194.200 | +200195 lgwsdiff 195.200 | +200196 mgwsdiff 196.200 | +200197 gwddiff 197.200 | +200198 srcdiff 198.200 | +200199 vegdiff 199.200 | +200200 vsodiff 200.200 | +200201 mx2tdiff 201.200 | +200202 mn2tdiff 202.200 | +200203 o3diff 203.200 | +200204 pawdiff 204.200 | +200205 rodiff 205.200 | +200206 tco3diff 206.200 | +200207 10sidiff 207.200 | +200208 tsrcdiff 208.200 | +200209 ttrcdiff 209.200 | +200210 ssrcdiff 210.200 | +200211 strcdiff 211.200 | +200212 tisrdiff 212.200 | +200214 dhrdiff 214.200 | +200215 dhvddiff 215.200 | +200216 dhccdiff 216.200 | +200217 dhlcdiff 217.200 | +200218 vdzwdiff 218.200 | +200219 vdmwdiff 219.200 | +200220 ewgddiff 220.200 | +200221 nsgddiff 221.200 | +200222 ctzwdiff 222.200 | +200223 ctmwdiff 223.200 | +200224 vdhdiff 224.200 | +200225 htccdiff 225.200 | +200226 htlcdiff 226.200 | +200227 crnhdiff 227.200 | +200228 tpdiff 228.200 | +200229 iewsdiff 229.200 | +200230 inssdiff 230.200 | +200231 ishfdiff 231.200 | +200232 iediff 232.200 | +200233 asqdiff 233.200 | +200234 lsrhdiff 234.200 | +200235 sktdiff 235.200 | +200236 stl4diff 236.200 | +200237 swl4diff 237.200 | +200238 tsndiff 238.200 | +200239 csfdiff 239.200 | +200240 lsfdiff 240.200 | +200241 acfdiff 241.200 | +200242 alwdiff 242.200 | +200243 faldiff 243.200 | +200244 fsrdiff 244.200 | +200245 flsrdiff 245.200 | +200246 clwcdiff 246.200 | +200247 ciwcdiff 247.200 | +200248 ccdiff 248.200 | +200249 aiwdiff 249.200 | +200250 icediff 250.200 | +200251 attediff 251.200 | +200252 athediff 252.200 | +200253 atzediff 253.200 | +200254 atmwdiff 254.200 | +200255 255.200 | +201 mx2t 201.128 201.170 201.190 | +201001 1.201 | +201002 2.201 | +201003 3.201 | +201004 4.201 | +201005 apab_s 5.201 | +201006 6.201 | +201007 7.201 | +201008 8.201 | +201009 9.201 | +201010 10.201 | +201011 11.201 | +201012 12.201 | +201013 sohr_rad 13.201 | +201014 thhr_rad 14.201 | +201015 15.201 | +201016 16.201 | +201017 17.201 | +201029 clc 29.201 | +201030 30.201 | +201031 qc 31.201 | +201032 32.201 | +201033 qi 33.201 | +201034 34.201 | +201035 35.201 | +201036 36.201 | +201037 37.201 | +201038 38.201 | +201041 twater 41.201 | +201042 42.201 | +201050 ch_cm_cl 50.201 | +201051 51.201 | +201052 52.201 | +201053 53.201 | +201054 54.201 | +201055 55.201 | +201056 56.201 | +201060 60.201 | +201061 61.201 | +201062 62.201 | +201063 63.201 | +201064 64.201 | +201065 65.201 | +201066 66.201 | +201067 67.201 | +201068 hbas_con 68.201 | +201069 htop_con 69.201 | +201070 70.201 | +201071 71.201 | +201072 bas_con 72.201 | +201073 top_con 73.201 | +201074 dt_con 74.201 | +201075 dqv_con 75.201 | +201076 76.201 | +201077 77.201 | +201078 du_con 78.201 | +201079 dv_con 79.201 | +201080 80.201 | +201081 81.201 | +201082 htop_dc 82.201 | +201083 83.201 | +201084 hzerocl 84.201 | +201085 snowlmt 85.201 | +201099 qrs_gsp 99.201 | +201100 prr_gsp 100.201 | +201101 prs_gsp 101.201 | +201102 rain_gsp 102.201 | +201111 prr_con 111.201 | +201112 prs_con 112.201 | +201113 rain_con 113.201 | +201139 pp 139.201 | +201150 150.201 | +201187 vmax_10m 187.201 | +201200 w_i 200.201 | +201203 t_snow 203.201 | +201215 t_ice 215.201 | +201241 cape_con 241.201 | +201255 255.201 | +202 mn2t 202.128 202.170 202.190 | +203 o3 203.128 | +204 paw 204.128 204.160 | +205 ro 90.1 90.2 90.3 205.128 205.180 | +206 tco3 10.1 10.2 10.3 206.128 | +207 10si 207.128 | +208 tsrc 208.128 | +209 ttrc 209.128 | +21 uctp 21.128 | +210 ssrc 210.128 | +210001 aermr01 1.210 | +210002 aermr02 2.210 | +210003 aermr03 3.210 | +210004 aermr04 4.210 | +210005 aermr05 5.210 | +210006 aermr06 6.210 | +210007 aermr07 7.210 | +210008 aermr08 8.210 | +210009 aermr09 9.210 | +210010 aermr10 10.210 | +210011 aermr11 11.210 | +210012 aermr12 12.210 | +210013 aermr13 13.210 | +210014 aermr14 14.210 | +210015 aermr15 15.210 | +210016 aergn01 16.210 | +210017 aergn02 17.210 | +210018 aergn03 18.210 | +210019 aergn04 19.210 | +210020 aergn05 20.210 | +210021 aergn06 21.210 | +210022 aergn07 22.210 | +210023 aergn08 23.210 | +210024 aergn09 24.210 | +210025 aergn10 25.210 | +210026 aergn11 26.210 | +210027 aergn12 27.210 | +210028 aerpr03 28.210 | +210029 aerwv01 29.210 | +210030 aerwv02 30.210 | +210031 aerls01 31.210 | +210032 aerls02 32.210 | +210033 aerls03 33.210 | +210034 aerls04 34.210 | +210035 aerls05 35.210 | +210036 aerls06 36.210 | +210037 aerls07 37.210 | +210038 aerls08 38.210 | +210039 aerls09 39.210 | +210040 aerls10 40.210 | +210041 aerls11 41.210 | +210042 aerls12 42.210 | +210043 emdms 43.210 | +210044 aerwv03 44.210 | +210045 aerwv04 45.210 | +210046 aerpr 46.210 | +210047 aersm 47.210 | +210048 aerlg 48.210 | +210049 aodpr 49.210 | +210050 aodsm 50.210 | +210051 aodlg 51.210 | +210052 aerdep 52.210 | +210053 aerlts 53.210 | +210054 aerscc 54.210 | +210055 55.210 | +210056 56.210 | +210057 ocnuc 57.210 | +210058 monot 58.210 | +210059 soapr 59.210 | +210061 co2 61.210 | +210062 ch4 62.210 | +210063 n2o 63.210 | +210064 tcco2 64.210 | +210065 tcch4 65.210 | +210066 tcn2o 66.210 | +210067 co2of 67.210 | +210068 co2nbf 68.210 | +210069 co2apf 69.210 | +210070 ch4f 70.210 | +210071 kch4 71.210 | +210072 pm1 72.210 | +210073 pm2p5 73.210 | +210074 pm10 74.210 | +210080 co2fire 80.210 | +210081 cofire 81.210 | +210082 ch4fire 82.210 | +210083 nmhcfire 83.210 | +210084 h2fire 84.210 | +210085 noxfire 85.210 | +210086 n2ofire 86.210 | +210087 pm2p5fire 87.210 | +210088 tpmfire 88.210 | +210089 tcfire 89.210 | +210090 ocfire 90.210 | +210091 bcfire 91.210 | +210092 cfire 92.210 | +210093 c4ffire 93.210 | +210094 vegfire 94.210 | +210095 ccfire 95.210 | +210096 flfire 96.210 | +210097 bffire 97.210 | +210098 oafire 98.210 | +210099 frpfire 99.210 | +210100 crfire 100.210 | +210101 maxfrpfire 101.210 | +210102 so2fire 102.210 | +210103 ch3ohfire 103.210 | +210104 c2h5ohfire 104.210 | +210105 c3h8fire 105.210 | +210106 c2h4fire 106.210 | +210107 c3h6fire 107.210 | +210108 c5h8fire 108.210 | +210109 terpenesfire 109.210 | +210110 toluenefire 110.210 | +210111 hialkenesfire 111.210 | +210112 hialkanesfire 112.210 | +210113 ch2ofire 113.210 | +210114 c2h4ofire 114.210 | +210115 c3h6ofire 115.210 | +210116 nh3fire 116.210 | +210117 c2h6sfire 117.210 | +210118 c2h6fire 118.210 | +210119 ale 119.210 | +210120 apt 120.210 | +210121 no2 121.210 | +210122 so2 122.210 | +210123 co 123.210 | +210124 hcho 124.210 | +210125 tcno2 125.210 | +210126 tcso2 126.210 | +210127 tcco 127.210 | +210128 tchcho 128.210 | +210129 nox 129.210 | +210130 tcnox 130.210 | +210131 grg1 131.210 | +210132 tcgrg1 132.210 | +210133 grg2 133.210 | +210134 tcgrg2 134.210 | +210135 grg3 135.210 | +210136 tcgrg3 136.210 | +210137 grg4 137.210 | +210138 tcgrg4 138.210 | +210139 grg5 139.210 | +210140 tcgrg5 140.210 | +210141 grg6 141.210 | +210142 tcgrg6 142.210 | +210143 grg7 143.210 | +210144 tcgrg7 144.210 | +210145 grg8 145.210 | +210146 tcgrg8 146.210 | +210147 grg9 147.210 | +210148 tcgrg9 148.210 | +210149 grg10 149.210 | +210150 tcgrg10 150.210 | +210151 sfnox 151.210 | +210152 sfno2 152.210 | +210153 sfso2 153.210 | +210154 sfco2 154.210 | +210155 sfhcho 155.210 | +210156 sfgo3 156.210 | +210157 sfgr1 157.210 | +210158 sfgr2 158.210 | +210159 sfgr3 159.210 | +210160 sfgr4 160.210 | +210161 sfgr5 161.210 | +210162 sfgr6 162.210 | +210163 sfgr7 163.210 | +210164 sfgr8 164.210 | +210165 sfgr9 165.210 | +210166 sfgr10 166.210 | +210181 ra 181.210 | +210182 sf6 182.210 | +210183 tcra 183.210 | +210184 tcsf6 184.210 | +210185 sf6apf 185.210 | +210186 aluvpi 186.210 | +210187 aluvpv 187.210 | +210188 aluvpg 188.210 | +210189 alnipi 189.210 | +210190 alnipv 190.210 | +210191 alnipg 191.210 | +210192 aluvdi 192.210 | +210193 aluvdv 193.210 | +210194 aluvdg 194.210 | +210195 alnidi 195.210 | +210196 alnidv 196.210 | +210197 alnidg 197.210 | +210203 go3 203.210 | +210206 gtco3 206.210 | +210207 aod550 207.210 | +210208 ssaod550 208.210 | +210209 duaod550 209.210 | +210210 omaod550 210.210 | +210211 bcaod550 211.210 | +210212 suaod550 212.210 | +210213 aod469 213.210 | +210214 aod670 214.210 | +210215 aod865 215.210 | +210216 aod1240 216.210 | +210217 aod340 217.210 | +210218 aod355 218.210 | +210219 aod380 219.210 | +210220 aod400 220.210 | +210221 aod440 221.210 | +210222 aod500 222.210 | +210223 aod532 223.210 | +210224 aod645 224.210 | +210225 aod800 225.210 | +210226 aod858 226.210 | +210227 aod1020 227.210 | +210228 aod1064 228.210 | +210229 aod1640 229.210 | +210230 aod2130 230.210 | +210231 c7h8fire 231.210 | +210232 c6h6fire 232.210 | +210233 c8h10fire 233.210 | +210234 c4h8fire 234.210 | +210235 c5h10fire 235.210 | +210236 c6h12fire 236.210 | +210237 c8h16fire 237.210 | +210238 c4h10fire 238.210 | +210239 c5h12fire 239.210 | +210240 c6h14fire 240.210 | +210241 c7h16fire 241.210 | +211 strc 211.128 | +211001 aermr01diff 1.211 | +211002 aermr02diff 2.211 | +211003 aermr03diff 3.211 | +211004 aermr04diff 4.211 | +211005 aermr05diff 5.211 | +211006 aermr06diff 6.211 | +211007 aermr07diff 7.211 | +211008 aermr08diff 8.211 | +211009 aermr09diff 9.211 | +211010 aermr10diff 10.211 | +211011 aermr11diff 11.211 | +211012 aermr12diff 12.211 | +211013 aermr13diff 13.211 | +211014 aermr14diff 14.211 | +211015 aermr15diff 15.211 | +211016 aergn01diff 16.211 | +211017 aergn02diff 17.211 | +211018 aergn03diff 18.211 | +211019 aergn04diff 19.211 | +211020 aergn05diff 20.211 | +211021 aergn06diff 21.211 | +211022 aergn07diff 22.211 | +211023 aergn08diff 23.211 | +211024 aergn09diff 24.211 | +211025 aergn10diff 25.211 | +211026 aergn11diff 26.211 | +211027 aergn12diff 27.211 | +211028 aerpr03diff 28.211 | +211029 aerwv01diff 29.211 | +211030 aerwv02diff 30.211 | +211031 aerls01diff 31.211 | +211032 aerls02diff 32.211 | +211033 aerls03diff 33.211 | +211034 aerls04diff 34.211 | +211035 aerls05diff 35.211 | +211036 aerls06diff 36.211 | +211037 aerls07diff 37.211 | +211038 aerls08diff 38.211 | +211039 aerls09diff 39.211 | +211040 aerls10diff 40.211 | +211041 aerls11diff 41.211 | +211042 aerls12diff 42.211 | +211043 emdmsdiff 43.211 | +211044 aerwv03diff 44.211 | +211045 aerwv04diff 45.211 | +211046 aerprdiff 46.211 | +211047 aersmdiff 47.211 | +211048 aerlgdiff 48.211 | +211049 aodprdiff 49.211 | +211050 aodsmdiff 50.211 | +211051 aodlgdiff 51.211 | +211052 aerdepdiff 52.211 | +211053 aerltsdiff 53.211 | +211054 aersccdiff 54.211 | +211055 55.211 | +211056 56.211 | +211061 co2diff 61.211 | +211062 ch4diff 62.211 | +211063 n2odiff 63.211 | +211064 tcco2diff 64.211 | +211065 tcch4diff 65.211 | +211066 tcn2odiff 66.211 | +211067 co2ofdiff 67.211 | +211068 co2nbfdiff 68.211 | +211069 co2apfdiff 69.211 | +211070 ch4fdiff 70.211 | +211071 kch4diff 71.211 | +211080 co2firediff 80.211 | +211081 cofirediff 81.211 | +211082 ch4firediff 82.211 | +211083 nmhcfirediff 83.211 | +211084 h2firediff 84.211 | +211085 noxfirediff 85.211 | +211086 n2ofirediff 86.211 | +211087 pm2p5firediff 87.211 | +211088 tpmfirediff 88.211 | +211089 tcfirediff 89.211 | +211090 ocfirediff 90.211 | +211091 bcfirediff 91.211 | +211092 cfirediff 92.211 | +211093 c4ffirediff 93.211 | +211094 vegfirediff 94.211 | +211095 ccfirediff 95.211 | +211096 flfirediff 96.211 | +211097 bffirediff 97.211 | +211098 oafirediff 98.211 | +211099 frpfirediff 99.211 | +211100 crfirediff 100.211 | +211101 maxfrpfirediff 101.211 | +211102 so2firediff 102.211 | +211103 ch3ohfirediff 103.211 | +211104 c2h5ohfirediff 104.211 | +211105 c3h8firediff 105.211 | +211106 c2h4firediff 106.211 | +211107 c3h6firediff 107.211 | +211108 c5h8firediff 108.211 | +211109 terpenesfirediff 109.211 | +211110 toluenefirediff 110.211 | +211111 hialkenesfirediff 111.211 | +211112 hialkanesfirediff 112.211 | +211113 ch2ofirediff 113.211 | +211114 c2h4ofirediff 114.211 | +211115 c3h6ofirediff 115.211 | +211116 nh3firediff 116.211 | +211117 c2h6sfirediff 117.211 | +211118 c2h6firediff 118.211 | +211119 alediff 119.211 | +211120 aptdiff 120.211 | +211121 no2diff 121.211 | +211122 so2diff 122.211 | +211123 codiff 123.211 | +211124 hchodiff 124.211 | +211125 tcno2diff 125.211 | +211126 tcso2diff 126.211 | +211127 tccodiff 127.211 | +211128 tchchodiff 128.211 | +211129 noxdiff 129.211 | +211130 tcnoxdiff 130.211 | +211131 grg1diff 131.211 | +211132 tcgrg1diff 132.211 | +211133 grg2diff 133.211 | +211134 tcgrg2diff 134.211 | +211135 grg3diff 135.211 | +211136 tcgrg3diff 136.211 | +211137 grg4diff 137.211 | +211138 tcgrg4diff 138.211 | +211139 grg5diff 139.211 | +211140 tcgrg5diff 140.211 | +211141 grg6diff 141.211 | +211142 tcgrg6diff 142.211 | +211143 grg7diff 143.211 | +211144 tcgrg7diff 144.211 | +211145 grg8diff 145.211 | +211146 tcgrg8diff 146.211 | +211147 grg9diff 147.211 | +211148 tcgrg9diff 148.211 | +211149 grg10diff 149.211 | +211150 tcgrg10diff 150.211 | +211151 sfnoxdiff 151.211 | +211152 sfno2diff 152.211 | +211153 sfso2diff 153.211 | +211154 sfco2diff 154.211 | +211155 sfhchodiff 155.211 | +211156 sfgo3diff 156.211 | +211157 sfgr1diff 157.211 | +211158 sfgr2diff 158.211 | +211159 sfgr3diff 159.211 | +211160 sfgr4diff 160.211 | +211161 sfgr5diff 161.211 | +211162 sfgr6diff 162.211 | +211163 sfgr7diff 163.211 | +211164 sfgr8diff 164.211 | +211165 sfgr9diff 165.211 | +211166 sfgr10diff 166.211 | +211181 radiff 181.211 | +211182 sf6diff 182.211 | +211183 tcradiff 183.211 | +211184 tcsf6diff 184.211 | +211185 sf6apfdiff 185.211 | +211203 go3diff 203.211 | +211206 gtco3diff 206.211 | +211207 aod550diff 207.211 | +211208 ssaod550diff 208.211 | +211209 duaod550diff 209.211 | +211210 omaod550diff 210.211 | +211211 bcaod550diff 211.211 | +211212 suaod550diff 212.211 | +211213 aod469diff 213.211 | +211214 aod670diff 214.211 | +211215 aod865diff 215.211 | +211216 aod1240diff 216.211 | +212 tisr 212.128 | +212001 1.212 | +212002 2.212 | +212003 3.212 | +212004 4.212 | +212005 5.212 | +212006 6.212 | +212007 7.212 | +212008 8.212 | +212009 9.212 | +212010 10.212 | +212011 11.212 | +212012 12.212 | +212013 13.212 | +212014 14.212 | +212015 15.212 | +212016 16.212 | +212017 17.212 | +212018 18.212 | +212019 19.212 | +212020 20.212 | +212021 21.212 | +212022 22.212 | +212023 23.212 | +212024 24.212 | +212025 25.212 | +212026 26.212 | +212027 27.212 | +212028 28.212 | +212029 29.212 | +212030 30.212 | +212031 31.212 | +212032 32.212 | +212033 33.212 | +212034 34.212 | +212035 35.212 | +212036 36.212 | +212037 37.212 | +212038 38.212 | +212039 39.212 | +212040 40.212 | +212041 41.212 | +212042 42.212 | +212043 43.212 | +212044 44.212 | +212045 45.212 | +212046 46.212 | +212047 47.212 | +212048 48.212 | +212049 49.212 | +212050 50.212 | +212051 51.212 | +212052 52.212 | +212053 53.212 | +212054 54.212 | +212055 55.212 | +212056 56.212 | +212057 57.212 | +212058 58.212 | +212059 59.212 | +212060 60.212 | +212061 61.212 | +212062 62.212 | +212063 63.212 | +212064 64.212 | +212065 65.212 | +212066 66.212 | +212067 67.212 | +212068 68.212 | +212069 69.212 | +212070 70.212 | +212071 71.212 | +212072 72.212 | +212073 73.212 | +212074 74.212 | +212075 75.212 | +212076 76.212 | +212077 77.212 | +212078 78.212 | +212079 79.212 | +212080 80.212 | +212081 81.212 | +212082 82.212 | +212083 83.212 | +212084 84.212 | +212085 85.212 | +212086 86.212 | +212087 87.212 | +212088 88.212 | +212089 89.212 | +212090 90.212 | +212091 91.212 | +212092 92.212 | +212093 93.212 | +212094 94.212 | +212095 95.212 | +212096 96.212 | +212097 97.212 | +212098 98.212 | +212099 99.212 | +212100 100.212 | +212101 101.212 | +212102 102.212 | +212103 103.212 | +212104 104.212 | +212105 105.212 | +212106 106.212 | +212107 107.212 | +212108 108.212 | +212109 109.212 | +212110 110.212 | +212111 111.212 | +212112 112.212 | +212113 113.212 | +212114 114.212 | +212115 115.212 | +212116 116.212 | +212117 117.212 | +212118 118.212 | +212119 119.212 | +212120 120.212 | +212121 121.212 | +212122 122.212 | +212123 123.212 | +212124 124.212 | +212125 125.212 | +212126 126.212 | +212127 127.212 | +212128 128.212 | +212129 129.212 | +212130 130.212 | +212131 131.212 | +212132 132.212 | +212133 133.212 | +212134 134.212 | +212135 135.212 | +212136 136.212 | +212137 137.212 | +212138 138.212 | +212139 139.212 | +212140 140.212 | +212141 141.212 | +212142 142.212 | +212143 143.212 | +212144 144.212 | +212145 145.212 | +212146 146.212 | +212147 147.212 | +212148 148.212 | +212149 149.212 | +212150 150.212 | +212151 151.212 | +212152 152.212 | +212153 153.212 | +212154 154.212 | +212155 155.212 | +212156 156.212 | +212157 157.212 | +212158 158.212 | +212159 159.212 | +212160 160.212 | +212161 161.212 | +212162 162.212 | +212163 163.212 | +212164 164.212 | +212165 165.212 | +212166 166.212 | +212167 167.212 | +212168 168.212 | +212169 169.212 | +212170 170.212 | +212171 171.212 | +212172 172.212 | +212173 173.212 | +212174 174.212 | +212175 175.212 | +212176 176.212 | +212177 177.212 | +212178 178.212 | +212179 179.212 | +212180 180.212 | +212181 181.212 | +212182 182.212 | +212183 183.212 | +212184 184.212 | +212185 185.212 | +212186 186.212 | +212187 187.212 | +212188 188.212 | +212189 189.212 | +212190 190.212 | +212191 191.212 | +212192 192.212 | +212193 193.212 | +212194 194.212 | +212195 195.212 | +212196 196.212 | +212197 197.212 | +212198 198.212 | +212199 199.212 | +212200 200.212 | +212201 201.212 | +212202 202.212 | +212203 203.212 | +212204 204.212 | +212205 205.212 | +212206 206.212 | +212207 207.212 | +212208 208.212 | +212209 209.212 | +212210 210.212 | +212211 211.212 | +212212 212.212 | +212213 213.212 | +212214 214.212 | +212215 215.212 | +212216 216.212 | +212217 217.212 | +212218 218.212 | +212219 219.212 | +212220 220.212 | +212221 221.212 | +212222 222.212 | +212223 223.212 | +212224 224.212 | +212225 225.212 | +212226 226.212 | +212227 227.212 | +212228 228.212 | +212229 229.212 | +212230 230.212 | +212231 231.212 | +212232 232.212 | +212233 233.212 | +212234 234.212 | +212235 235.212 | +212236 236.212 | +212237 237.212 | +212238 238.212 | +212239 239.212 | +212240 240.212 | +212241 241.212 | +212242 242.212 | +212243 243.212 | +212244 244.212 | +212245 245.212 | +212246 246.212 | +212247 247.212 | +212248 248.212 | +212249 249.212 | +212250 250.212 | +212251 251.212 | +212252 252.212 | +212253 253.212 | +212254 254.212 | +212255 255.212 | +213 vimd 213.128 | +213001 sppt1 1.213 | +213002 sppt2 2.213 | +213003 sppt3 3.213 | +213004 sppt4 4.213 | +213005 sppt5 5.213 | +214 dhr 214.128 | +214001 uvcossza 1.214 | +214002 uvbed 2.214 | +214003 uvbedcs 3.214 | +214004 uvsflxt280285 4.214 | +214005 uvsflxt285290 5.214 | +214006 uvsflxt290295 6.214 | +214007 uvsflxt295300 7.214 | +214008 uvsflxt300305 8.214 | +214009 uvsflxt305310 9.214 | +214010 uvsflxt310315 10.214 | +214011 uvsflxt315320 11.214 | +214012 uvsflxt320325 12.214 | +214013 uvsflxt325330 13.214 | +214014 uvsflxt330335 14.214 | +214015 uvsflxt335340 15.214 | +214016 uvsflxt340345 16.214 | +214017 uvsflxt345350 17.214 | +214018 uvsflxt350355 18.214 | +214019 uvsflxt355360 19.214 | +214020 uvsflxt360365 20.214 | +214021 uvsflxt365370 21.214 | +214022 uvsflxt370375 22.214 | +214023 uvsflxt375380 23.214 | +214024 uvsflxt380385 24.214 | +214025 uvsflxt385390 25.214 | +214026 uvsflxt390395 26.214 | +214027 uvsflxt395400 27.214 | +214028 uvsflxcs280285 28.214 | +214029 uvsflxcs285290 29.214 | +214030 uvsflxcs290295 30.214 | +214031 uvsflxcs295300 31.214 | +214032 uvsflxcs300305 32.214 | +214033 uvsflxcs305310 33.214 | +214034 uvsflxcs310315 34.214 | +214035 uvsflxcs315320 35.214 | +214036 uvsflxcs320325 36.214 | +214037 uvsflxcs325330 37.214 | +214038 uvsflxcs330335 38.214 | +214039 uvsflxcs335340 39.214 | +214040 uvsflxcs340345 40.214 | +214041 uvsflxcs345350 41.214 | +214042 uvsflxcs350355 42.214 | +214043 uvsflxcs355360 43.214 | +214044 uvsflxcs360365 44.214 | +214045 uvsflxcs365370 45.214 | +214046 uvsflxcs370375 46.214 | +214047 uvsflxcs375380 47.214 | +214048 uvsflxcs380385 48.214 | +214049 uvsflxcs385390 49.214 | +214050 uvsflxcs390395 50.214 | +214051 uvsflxcs395400 51.214 | +214052 aot340 52.214 | +215 dhvd 215.128 | +215001 aersrcsss 1.215 | +215002 aersrcssm 2.215 | +215003 aersrcssl 3.215 | +215004 aerddpsss 4.215 | +215005 aerddpssm 5.215 | +215006 aerddpssl 6.215 | +215007 aersdmsss 7.215 | +215008 aersdmssm 8.215 | +215009 aersdmssl 9.215 | +215010 aerwdlssss 10.215 | +215011 aerwdlsssm 11.215 | +215012 aerwdlsssl 12.215 | +215013 aerwdccsss 13.215 | +215014 aerwdccssm 14.215 | +215015 aerwdccssl 15.215 | +215016 aerngtsss 16.215 | +215017 aerngtssm 17.215 | +215018 aerngtssl 18.215 | +215019 aermsssss 19.215 | +215020 aermssssm 20.215 | +215021 aermssssl 21.215 | +215022 aerodsss 22.215 | +215023 aerodssm 23.215 | +215024 aerodssl 24.215 | +215025 aersrcdus 25.215 | +215026 aersrcdum 26.215 | +215027 aersrcdul 27.215 | +215028 aerddpdus 28.215 | +215029 aerddpdum 29.215 | +215030 aerddpdul 30.215 | +215031 aersdmdus 31.215 | +215032 aersdmdum 32.215 | +215033 aersdmdul 33.215 | +215034 aerwdlsdus 34.215 | +215035 aerwdlsdum 35.215 | +215036 aerwdlsdul 36.215 | +215037 aerwdccdus 37.215 | +215038 aerwdccdum 38.215 | +215039 aerwdccdul 39.215 | +215040 aerngtdus 40.215 | +215041 aerngtdum 41.215 | +215042 aerngtdul 42.215 | +215043 aermssdus 43.215 | +215044 aermssdum 44.215 | +215045 aermssdul 45.215 | +215046 aeroddus 46.215 | +215047 aeroddum 47.215 | +215048 aeroddul 48.215 | +215049 aersrcomhphob 49.215 | +215050 aersrcomhphil 50.215 | +215051 aerddpomhphob 51.215 | +215052 aerddpomhphil 52.215 | +215053 aersdmomhphob 53.215 | +215054 aersdmomhphil 54.215 | +215055 aerwdlsomhphob 55.215 | +215056 aerwdlsomhphil 56.215 | +215057 aerwdccomhphob 57.215 | +215058 aerwdccomhphil 58.215 | +215059 aerngtomhphob 59.215 | +215060 aerngtomhphil 60.215 | +215061 aermssomhphob 61.215 | +215062 aermssomhphil 62.215 | +215063 aerodomhphob 63.215 | +215064 aerodomhphil 64.215 | +215065 aersrcbchphob 65.215 | +215066 aersrcbchphil 66.215 | +215067 aerddpbchphob 67.215 | +215068 aerddpbchphil 68.215 | +215069 aersdmbchphob 69.215 | +215070 aersdmbchphil 70.215 | +215071 aerwdlsbchphob 71.215 | +215072 aerwdlsbchphil 72.215 | +215073 aerwdccbchphob 73.215 | +215074 aerwdccbchphil 74.215 | +215075 aerngtbchphob 75.215 | +215076 aerngtbchphil 76.215 | +215077 aermssbchphob 77.215 | +215078 aermssbchphil 78.215 | +215079 aerodbchphob 79.215 | +215080 aerodbchphil 80.215 | +215081 aersrcsu 81.215 | +215082 aerddpsu 82.215 | +215083 aersdmsu 83.215 | +215084 aerwdlssu 84.215 | +215085 aerwdccsu 85.215 | +215086 aerngtsu 86.215 | +215087 aermsssu 87.215 | +215088 aerodsu 88.215 | +215089 accaod550 89.215 | +215090 aluvpsn 90.215 | +215091 aerdep10si 91.215 | +215092 aerdep10fg 92.215 | +215093 paod532 93.215 | +215094 pnaod532 94.215 | +215095 paaod532 95.215 | +215096 aodabs340 96.215 | +215097 aodabs355 97.215 | +215098 aodabs380 98.215 | +215099 aodabs400 99.215 | +215100 aodabs440 100.215 | +215101 aodabs469 101.215 | +215102 aodabs500 102.215 | +215103 aodabs532 103.215 | +215104 aodabs550 104.215 | +215105 aodabs645 105.215 | +215106 aodabs670 106.215 | +215107 aodabs800 107.215 | +215108 aodabs858 108.215 | +215109 aodabs865 109.215 | +215110 aodabs1020 110.215 | +215111 aodabs1064 111.215 | +215112 aodabs1240 112.215 | +215113 aodabs1640 113.215 | +215114 aodfm340 114.215 | +215115 aodfm355 115.215 | +215116 aodfm380 116.215 | +215117 aodfm400 117.215 | +215118 aodfm440 118.215 | +215119 aodfm469 119.215 | +215120 aodfm500 120.215 | +215121 aodfm532 121.215 | +215122 aodfm550 122.215 | +215123 aodfm645 123.215 | +215124 aodfm670 124.215 | +215125 aodfm800 125.215 | +215126 aodfm858 126.215 | +215127 aodfm865 127.215 | +215128 aodfm1020 128.215 | +215129 aodfm1064 129.215 | +215130 aodfm1240 130.215 | +215131 aodfm1640 131.215 | +215132 ssa340 132.215 | +215133 ssa355 133.215 | +215134 ssa380 134.215 | +215135 ssa400 135.215 | +215136 ssa440 136.215 | +215137 ssa469 137.215 | +215138 ssa500 138.215 | +215139 ssa532 139.215 | +215140 ssa550 140.215 | +215141 ssa645 141.215 | +215142 ssa670 142.215 | +215143 ssa800 143.215 | +215144 ssa858 144.215 | +215145 ssa865 145.215 | +215146 ssa1020 146.215 | +215147 ssa1064 147.215 | +215148 ssa1240 148.215 | +215149 ssa1640 149.215 | +215150 asymmetry340 150.215 | +215151 asymmetry355 151.215 | +215152 asymmetry380 152.215 | +215153 asymmetry400 153.215 | +215154 asymmetry440 154.215 | +215155 asymmetry469 155.215 | +215156 asymmetry500 156.215 | +215157 asymmetry532 157.215 | +215158 asymmetry550 158.215 | +215159 asymmetry645 159.215 | +215160 asymmetry670 160.215 | +215161 asymmetry800 161.215 | +215162 asymmetry858 162.215 | +215163 asymmetry865 163.215 | +215164 asymmetry1020 164.215 | +215165 asymmetry1064 165.215 | +215166 asymmetry1240 166.215 | +215167 asymmetry1640 167.215 | +215168 aersrcso2 168.215 | +215169 aerddpso2 169.215 | +215170 aersdmso2 170.215 | +215171 aerwdlsso2 171.215 | +215172 aerwdccso2 172.215 | +215173 aerngtso2 173.215 | +215174 aermssso2 174.215 | +215175 aerodso2 175.215 | +215176 aodabs2130 176.215 | +215177 aodfm2130 177.215 | +215178 ssa2130 178.215 | +215179 asymmetry2130 179.215 | +216 dhcc 216.128 | +216001 1.216 | +216002 2.216 | +216003 3.216 | +216004 4.216 | +216005 5.216 | +216006 6.216 | +216007 7.216 | +216008 8.216 | +216009 9.216 | +216010 10.216 | +216011 11.216 | +216012 12.216 | +216013 13.216 | +216014 14.216 | +216015 15.216 | +216016 16.216 | +216017 17.216 | +216018 18.216 | +216019 19.216 | +216020 20.216 | +216021 21.216 | +216022 22.216 | +216023 23.216 | +216024 24.216 | +216025 25.216 | +216026 26.216 | +216027 27.216 | +216028 28.216 | +216029 29.216 | +216030 30.216 | +216031 31.216 | +216032 32.216 | +216033 33.216 | +216034 34.216 | +216035 35.216 | +216036 36.216 | +216037 37.216 | +216038 38.216 | +216039 39.216 | +216040 40.216 | +216041 41.216 | +216042 42.216 | +216043 43.216 | +216044 44.216 | +216045 45.216 | +216046 46.216 | +216047 47.216 | +216048 48.216 | +216049 49.216 | +216050 50.216 | +216051 51.216 | +216052 52.216 | +216053 53.216 | +216054 54.216 | +216055 55.216 | +216056 56.216 | +216057 57.216 | +216058 58.216 | +216059 59.216 | +216060 60.216 | +216061 61.216 | +216062 62.216 | +216063 63.216 | +216064 64.216 | +216065 65.216 | +216066 66.216 | +216067 67.216 | +216068 68.216 | +216069 69.216 | +216070 70.216 | +216071 71.216 | +216072 72.216 | +216073 73.216 | +216074 74.216 | +216075 75.216 | +216076 76.216 | +216077 77.216 | +216078 78.216 | +216079 79.216 | +216080 80.216 | +216081 81.216 | +216082 82.216 | +216083 83.216 | +216084 84.216 | +216085 85.216 | +216086 86.216 | +216087 87.216 | +216088 88.216 | +216089 89.216 | +216090 90.216 | +216091 91.216 | +216092 92.216 | +216093 93.216 | +216094 94.216 | +216095 95.216 | +216096 96.216 | +216097 97.216 | +216098 98.216 | +216099 99.216 | +216100 100.216 | +216101 101.216 | +216102 102.216 | +216103 103.216 | +216104 104.216 | +216105 105.216 | +216106 106.216 | +216107 107.216 | +216108 108.216 | +216109 109.216 | +216110 110.216 | +216111 111.216 | +216112 112.216 | +216113 113.216 | +216114 114.216 | +216115 115.216 | +216116 116.216 | +216117 117.216 | +216118 118.216 | +216119 119.216 | +216120 120.216 | +216121 121.216 | +216122 122.216 | +216123 123.216 | +216124 124.216 | +216125 125.216 | +216126 126.216 | +216127 127.216 | +216128 128.216 | +216129 129.216 | +216130 130.216 | +216131 131.216 | +216132 132.216 | +216133 133.216 | +216134 134.216 | +216135 135.216 | +216136 136.216 | +216137 137.216 | +216138 138.216 | +216139 139.216 | +216140 140.216 | +216141 141.216 | +216142 142.216 | +216143 143.216 | +216144 144.216 | +216145 145.216 | +216146 146.216 | +216147 147.216 | +216148 148.216 | +216149 149.216 | +216150 150.216 | +216151 151.216 | +216152 152.216 | +216153 153.216 | +216154 154.216 | +216155 155.216 | +216156 156.216 | +216157 157.216 | +216158 158.216 | +216159 159.216 | +216160 160.216 | +216161 161.216 | +216162 162.216 | +216163 163.216 | +216164 164.216 | +216165 165.216 | +216166 166.216 | +216167 167.216 | +216168 168.216 | +216169 169.216 | +216170 170.216 | +216171 171.216 | +216172 172.216 | +216173 173.216 | +216174 174.216 | +216175 175.216 | +216176 176.216 | +216177 177.216 | +216178 178.216 | +216179 179.216 | +216180 180.216 | +216181 181.216 | +216182 182.216 | +216183 183.216 | +216184 184.216 | +216185 185.216 | +216186 186.216 | +216187 187.216 | +216188 188.216 | +216189 189.216 | +216190 190.216 | +216191 191.216 | +216192 192.216 | +216193 193.216 | +216194 194.216 | +216195 195.216 | +216196 196.216 | +216197 197.216 | +216198 198.216 | +216199 199.216 | +216200 200.216 | +216201 201.216 | +216202 202.216 | +216203 203.216 | +216204 204.216 | +216205 205.216 | +216206 206.216 | +216207 207.216 | +216208 208.216 | +216209 209.216 | +216210 210.216 | +216211 211.216 | +216212 212.216 | +216213 213.216 | +216214 214.216 | +216215 215.216 | +216216 216.216 | +216217 217.216 | +216218 218.216 | +216219 219.216 | +216220 220.216 | +216221 221.216 | +216222 222.216 | +216223 223.216 | +216224 224.216 | +216225 225.216 | +216226 226.216 | +216227 227.216 | +216228 228.216 | +216229 229.216 | +216230 230.216 | +216231 231.216 | +216232 232.216 | +216233 233.216 | +216234 234.216 | +216235 235.216 | +216236 236.216 | +216237 237.216 | +216238 238.216 | +216239 239.216 | +216240 240.216 | +216241 241.216 | +216242 242.216 | +216243 243.216 | +216244 244.216 | +216245 245.216 | +216246 246.216 | +216247 247.216 | +216248 248.216 | +216249 249.216 | +216250 250.216 | +216251 251.216 | +216252 252.216 | +216253 253.216 | +216254 254.216 | +216255 255.216 | +217 dhlc 217.128 | +218 vdzw 218.128 | +219 vdmw 219.128 | +22 ucln 22.128 | +220 ewgd 220.128 | +220228 tpoc 228.220 | +221 nsgd 221.128 | +222 ctzw 222.128 222.130 | +223 ctmw 223.128 223.130 | +224 vdh 224.128 | +225 htcc 225.128 | +226 htlc 226.128 | +227 crnh 227.128 227.130 | +228 tp 228.128 228.160 228.170 228.190 | +228001 cin 1.228 | +228002 orog 2.228 7.1 7.2 7.3 | +228003 zust 3.228 | +228004 mean2t 4.228 | +228005 mean10ws 5.228 | +228006 meantcc 6.228 | +228007 dl 7.228 | +228008 lmlt 8.228 | +228009 lmld 9.228 | +228010 lblt 10.228 | +228011 ltlt 11.228 | +228012 lshf 12.228 | +228013 lict 13.228 | +228014 licd 14.228 | +228015 dndzn 15.228 | +228016 dndza 16.228 | +228017 dctb 17.228 | +228018 tplb 18.228 | +228019 tplt 19.228 | +228021 fdir 21.228 | +228022 cdir 22.228 | +228023 cbh 23.228 | +228024 deg0l 24.228 | +228025 hvis 25.228 | +228026 mx2t3 26.228 | +228027 mn2t3 27.228 | +228028 10fg3 28.228 | +228039 sm 39.228 86.1 86.2 86.3 | +228040 swi1 40.228 | +228041 swi2 41.228 | +228042 swi3 42.228 | +228043 swi4 43.228 | +228080 aco2nee 80.228 | +228081 aco2gpp 81.228 | +228082 aco2rec 82.228 | +228083 fco2nee 83.228 | +228084 fco2gpp 84.228 | +228085 fco2rec 85.228 | +228089 tcrw 89.228 | +228090 tcsw 90.228 | +228091 ccf 91.228 | +228092 stf 92.228 | +228093 swv 93.228 | +228094 ist 94.228 | +228129 ssrdc 129.228 | +228130 strdc 130.228 | +228131 u10n 131.228 | +228132 v10n 132.228 | +228134 vtnowd 134.228 | +228136 utnowd 136.228 | +228139 st 85.1 85.2 85.3 139.228 | +228141 sd 66.1 66.2 66.3 141.228 | +228144 sf 65.1 65.2 65.3 144.228 | +228164 tcc 71.1 71.2 71.3 164.228 | +228170 cap 170.228 | +228171 wilt 171.228 | +228228 tp 61.1 61.2 61.3 228.228 | +228242 fdif 242.228 | +228243 cdif 243.228 | +228244 aldr 244.228 | +228245 aldf 245.228 | +228246 100u 246.228 | +228247 100v 247.228 | +228249 100si 249.228 | +228250 irrfr 250.228 | +228251 pev 251.228 | +228252 irr 252.228 | +228253 ascat_sm_cdfa 253.228 | +228254 ascat_sm_cdfb 254.228 | +228255 tcclw | +228256 tccsw | +229 iews 229.128 229.160 | +23 ucdv 23.128 | +230 inss 230.128 230.160 | +230008 srovar 8.230 | +230009 ssrovar 9.230 | +230044 esvar 44.230 | +230045 smltvar 45.230 | +230046 sdurvar 46.230 | +230057 uvbvar 57.230 | +230058 parvar 58.230 | +230142 lspvar 142.230 | +230143 cpvar 143.230 | +230144 sfvar 144.230 | +230145 bldvar 145.230 | +230146 sshfvar 146.230 | +230147 slhfvar 147.230 | +230169 ssrdvar 169.230 | +230174 alvar 174.230 | +230175 strdvar 175.230 | +230176 ssrvar 176.230 | +230177 strvar 177.230 | +230178 tsrvar 178.230 | +230179 ttrvar 179.230 | +230180 ewssvar 180.230 | +230181 nsssvar 181.230 | +230182 evar 182.230 | +230189 sundvar 189.230 | +230195 lgwsvar 195.230 | +230196 mgwsvar 196.230 | +230197 gwdvar 197.230 | +230198 srcvar 198.230 | +230205 rovar 205.230 | +230208 tsrcvar 208.230 | +230209 ttrcvar 209.230 | +230210 ssrcvar 210.230 | +230211 strcvar 211.230 | +230212 tisrvar 212.230 | +230228 tpvar 228.230 | +231 ishf 231.128 | +232 ie 232.128 232.160 | +233 asq 233.128 233.160 | +234 lsrh 234.128 234.160 | +234139 sts 139.234 | +234151 msls 151.234 | +234167 2ts 167.234 | +234228 tps 228.234 | +235 skt 235.128 235.160 | +236 stl4 236.128 236.160 | +237 swl4 237.128 237.160 | +238 tsn 238.128 238.160 | +239 csf 78.1 78.2 78.3 239.128 | +24 24.128 | +240 lsf 79.1 79.2 79.3 240.128 | +241 acf 241.128 | +242 alw 242.128 | +243 fal 243.128 | +244 fsr 244.128 244.160 | +245 flsr 245.128 245.160 | +246 clwc 246.128 | +247 ciwc 247.128 | +248 cc 248.128 | +249 aiw 249.128 | +25 25.128 | +250 ice 250.128 | +251 atte 251.128 | +252 athe 252.128 | +253 atze 253.128 | +254 atmw 254.128 | +255 255.128 255.130 255.132 255.160 255.170 255.180 255.190 | +26 cl 26.128 | +260002 lhtfl | +260003 shtfl | +260004 heatx | +260005 wcf | +260006 mindpd | +260007 snohf | +260008 vapp | +260009 ncpcp | +260010 srweq | +260011 snoc | +260012 snol | +260013 snoag | +260014 absh | +260015 ptype | +260016 iliqw | +260017 tcond | +260018 clwmr | +260019 icmr | +260020 rwmr | +260021 snmr | +260022 mconv | +260023 maxrh | +260024 maxah | +260025 asnow | +260026 pwcat | +260027 hail | +260028 grle | +260029 crain | +260030 cfrzr | +260031 cicep | +260032 csnow | +260033 cprat | +260034 mconv | +260035 cpofp | +260036 pevap | +260037 pevpr | +260038 snowc | +260039 frain | +260040 rime | +260041 tcolr | +260042 tcols | +260043 lswp | +260044 cwp | +260045 twatp | +260046 tsnowp | +260047 tcwat | +260048 tprate | +260049 tsrwe | +260050 lsprate | +260051 csrwe | +260052 lssrwe | +260053 tsrate | +260054 csrate | +260055 lssrate | +260056 sdwe | +260057 tciwv | +260058 rprate | +260059 sprate | +260060 fprate | +260061 iprate | +260062 uflx | +260063 vflx | +260064 maxgust | +260065 gust | +260066 ugust | +260067 vgust | +260068 vwsh | +260069 mflx | +260070 ustm | +260071 vstm | +260072 cd | +260073 fricv | +260074 prmsl | +260075 dist | +260076 alts | +260077 thick | +260078 presalt | +260079 denalt | +260080 5wavh | +260081 u-gwd | +260082 v-gwd | +260083 hpbl | +260084 5wava | +260085 sdsgso | +260086 nswrt | +260087 dswrf | +260088 uswrf | +260089 nswrf | +260090 photar | +260091 nswrfcs | +260092 dwuvr | +260093 uviucs | +260094 uvi | +260095 nlwrs | +260096 nlwrt | +260097 dlwrf | +260098 ulwrf | +260099 nlwrf | +260100 nlwrcs | +260101 cice | +260102 cwat 76.1 76.2 76.3 | +260103 cdca | +260104 cdct | +260105 tmaxt | +260106 thunc | +260107 cdcb | +260108 cdct | +260109 ceil | +260110 cdlyr | +260111 cwork | +260112 cuefi | +260113 tcond | +260114 tcolw | +260115 tcoli | +260116 tcolc | +260117 fice | +260118 cdcimr | +260119 suns | +260121 kx 121.228 | +260122 kox | +260123 totalx 123.228 | +260124 sx | +260125 hlcy | +260126 ehlx | +260127 lftx | +260128 4lftx | +260129 aerot | +260130 tozne | +260131 o3mr | +260132 tcioz | +260133 bswid | +260134 bref | +260135 brvel | +260136 veril | +260137 lmaxbr | +260138 prec | +260139 acces | +260140 aciod | +260141 acradp | +260142 gdces | +260143 gdiod | +260144 gdradp | +260145 tiaccp | +260146 tiacip | +260147 tiacrp | +260148 volash | +260149 icit | +260150 icib | +260151 ici | +260152 turbt | +260153 turbb | +260154 turb | +260155 tke | +260156 pblreg | +260157 conti | +260158 contet | +260159 contt | +260160 contb | +260161 mxsalb | +260162 snfalb | +260165 cat | +260167 var190m0 | +260168 tsec | +260169 ffldg | +260170 ffldro | +260171 rssc | +260172 esct | +260173 swepon | +260174 bgrun | +260175 ssrun | +260176 cppop | +260177 pposp | +260178 pop | +260179 land | +260180 veg | +260181 watr | +260182 evapt | +260183 mterh | +260184 landu | +260185 soilw | +260186 gflux | +260187 mstav | +260188 sfexc | +260189 cnwat | +260190 bmixl | +260191 ccond | +260192 rsmin | +260193 rcs | +260194 rct | +260195 rcsol | +260196 rcq | +260197 cisoilw | +260198 hflux | +260199 vsw | +260200 vwiltm | +260201 uplst | +260202 uplsm | +260203 lowlsm | +260204 botlst | +260205 soill | +260206 rlyrs | +260207 smref | +260208 smdry | +260209 poros | +260210 liqvsm | +260211 voltso | +260212 transo | +260213 voldec | +260214 direc | +260215 soilp | +260216 vsosm | +260217 satosm | +260218 estp | +260219 irrate | +260220 ctoph | +260221 ctophqi | +260222 estu | +260223 estv | +260224 npixu | +260225 solza | +260226 raza | +260227 rfl06 | +260228 rfl08 | +260229 rfl16 | +260230 rfl39 | +260231 atmdiv | +260232 wvdir | +260233 dirpw | +260234 perpw | +260235 persw | +260236 dirc | +260237 spc | +260238 icec | +260239 ist | +260240 dslm | +260241 tsec | +260243 ttrad | +260244 rev | +260245 lrghr | +260246 cnvhr | +260247 thflx | +260248 ttdia | +260249 ttphy | +260250 tsd1d | +260251 shahr | +260252 vdfhr | +260253 thz0 | +260254 tchp | +260261 minrh | +260269 tipd | +260270 ncip | +260271 snot | +260272 tclsw | +260273 tcolm | +260274 emnp | +260275 sbsno | +260276 cnvmr | +260277 shamr | +260278 vdfmr | +260279 condp | +260280 lrgmr | +260281 qz0 | +260282 qmax | +260283 qmin | +260284 arain | +260285 snowt | +260286 apcpn | +260287 acpcpn | +260288 frzr | +260295 lauv | +260296 louv | +260297 lavv | +260298 lovv | +260299 lapp | +260300 lopp | +260301 vedh | +260302 covmz | +260303 covtz | +260304 covtm | +260305 vdfua | +260306 vdfva | +260307 gwdu | +260308 gwdv | +260309 cnvu | +260310 cnvv | +260311 wtend | +260312 omgalf | +260313 cngwdu | +260314 cngwdv | +260315 lmv | +260316 pvmww | +260317 mslet | +260323 mslma | +260324 tslsa | +260325 plpl | +260326 lpsx | +260327 lpsy | +260328 hgtx | +260329 hgty | +260330 layth | +260331 nlgsp | +260332 cnvumf | +260333 cnvdmf | +260334 cnvdemf | +260335 lmh | +260336 hgtn | +260337 presn | +260340 duvb | +260341 cduvb | +260342 csdsf | +260343 swhr | +260344 csusf | +260345 cfnsf | +260346 vbdsf | +260347 vddsf | +260348 nbdsf | +260349 nddsf | +260350 dtrf | +260351 utrf | +260354 lwhr | +260355 csulf | +260356 csdlf | +260357 cfnlf | +260366 mflux | +260369 ri | +260370 cwdi | +260372 uphl | +260373 lai | +260374 pmtc | +260375 pmtf | +260376 lpmtf | +260377 lipmf | +260379 ozcon | +260380 ozcat | +260381 vdfoz | +260382 poz | +260383 toz | +260384 pozt | +260385 pozo | +260386 refzr | +260387 refzi | +260388 refzc | +260389 refd | +260390 refc | +260391 ltng | +260394 srcono | +260395 mrcono | +260396 hrcono | +260397 torprob | +260398 hailprob | +260399 windprob | +260400 storprob | +260401 shailpro | +260402 swindpro | +260403 tstmc | +260404 mixly | +260405 flght | +260406 cicel | +260407 civis | +260408 ciflt | +260409 lavni | +260410 havni | +260411 sbsalb | +260412 swsalb | +260413 nbsalb | +260414 nwsalb | +260415 prsvr | +260416 prsigsvr | +260417 sipd | +260418 epsr | +260419 tpfi | +260420 vaftd | +260421 nlat | +260422 elon | +260424 mlyno | +260425 nlatn | +260426 elonn | +260429 cpozp | +260431 ppffg | +260432 cwr | +260439 vgtyp | +260442 wilt | +260447 rdrip | +260448 icwat | +260449 akhs | +260450 akms | +260451 vegt | +260452 sstor | +260453 lsoil | +260454 ewatr | +260455 gwrec | +260456 qrec | +260457 sfcrh | +260458 ndvi | +260459 landn | +260460 amixl | +260461 wvinc | +260462 wcinc | +260463 wvconv | +260464 wcconv | +260465 wvuflx | +260466 wvvflx | +260467 wcuflx | +260468 wcvflx | +260469 acond | +260470 evcw | +260471 trans | +260474 sltyp | +260478 evbs | +260479 lspa | +260480 baret | +260481 avsft | +260482 radt | +260483 fldcp | +260484 usct | +260485 vsct | +260486 wstp | +260487 omlu | +260488 omlv | +260489 ubaro | +260490 vbaro | +260491 surge | +260492 etsrg | +260493 elevhtml | +260494 sshg | +260495 p2omlt | +260496 aohflx | +260497 ashfl | +260498 sstt | +260499 ssst | +260500 keng | +260501 sltfl | +260502 wtmpc | +260503 salin | +260504 bkeng | +260505 dbss | +260506 intfd | +260507 ohc | +260508 imgd | +260509 al | +260510 clbt | +260511 csbt | +27 cvl 27.128 | +28 cvh 28.128 | +29 tvl 29.128 | +3 pt 3.128 13.1 13.2 13.3 | +30 tvh 30.128 | +300001 pres 1.254 | +300002 psnm 2.254 | +300003 tsps 3.254 | +300006 geop 6.254 | +300007 zgeo 7.254 | +300008 gzge 8.254 | +300011 temp 11.254 | +300012 vtmp 12.254 | +300013 ptmp 13.254 | +300014 psat 14.254 | +300015 mxtp 15.254 | +300016 mntp 16.254 | +300017 tpor 17.254 | +300018 dptd 18.254 | +300019 lpsr 19.254 | +300021 rds1 21.254 | +300022 rds2 22.254 | +300023 rds3 23.254 | +300025 tpan 25.254 | +300026 psan 26.254 | +300027 zgan 27.254 | +300028 wvs1 28.254 | +300029 wvs2 29.254 | +300030 wvs3 30.254 | +300031 wind 31.254 | +300032 wins 32.254 | +300033 uvel 33.254 | +300034 vvel 34.254 | +300035 fcor 35.254 | +300036 potv 36.254 | +300038 sgvv 38.254 | +300039 omeg 39.254 | +300040 omg2 40.254 | +300041 abvo 41.254 | +300042 abdv 42.254 | +300043 vort 43.254 | +300044 divg 44.254 | +300045 vucs 45.254 | +300046 vvcs 46.254 | +300047 dirc 47.254 | +300048 spdc 48.254 | +300049 ucpc 49.254 | +300050 vcpc 50.254 | +300051 umes 51.254 | +300052 umrl 52.254 | +300053 hmxr 53.254 | +300054 agpl 54.254 | +300055 vapp 55.254 | +300056 sadf 56.254 | +300057 evap 57.254 | +300059 prcr 59.254 | +300060 thpb 60.254 | +300061 prec 61.254 | +300062 prge 62.254 | +300063 prcv 63.254 | +300064 neve 64.254 | +300065 wenv 65.254 | +300066 nvde 66.254 | +300067 mxld 67.254 | +300068 tthd 68.254 | +300069 mthd 69.254 | +300070 mtha 70.254 | +300071 cbnv 71.254 | +300072 cvnv 72.254 | +300073 lwnv 73.254 | +300074 mdnv 74.254 | +300075 hinv 75.254 | +300076 wtnv 76.254 | +300077 bli 77.254 | +300081 lsmk 81.254 | +300082 dslm 82.254 | +300083 zorl 83.254 | +300084 albe 84.254 | +300085 dstp 85.254 | +300086 soic 86.254 | +300087 vege 87.254 | +300089 dens 89.254 | +300091 icec 91.254 | +300092 icet 92.254 | +300093 iced 93.254 | +300094 ices 94.254 | +300095 iceu 95.254 | +300096 icev 96.254 | +300097 iceg 97.254 | +300098 icdv 98.254 | +300100 shcw 100.254 | +300101 wwdi 101.254 | +300102 wwsh 102.254 | +300103 wwmp 103.254 | +300104 swdi 104.254 | +300105 swsh 105.254 | +300106 swmp 106.254 | +300107 prwd 107.254 | +300108 prmp 108.254 | +300109 swdi 109.254 | +300110 swmp 110.254 | +300111 ocas 111.254 | +300112 slds 112.254 | +300113 nswr 113.254 | +300114 role 114.254 | +300115 lwrd 115.254 | +300116 swea 116.254 | +300117 glbr 117.254 | +300121 clsf 121.254 | +300122 cssf 122.254 | +300123 blds 123.254 | +300127 imag 127.254 | +300128 tp2m 128.254 | +300129 dp2m 129.254 | +300130 u10m 130.254 | +300131 v10m 131.254 | +300132 topo 132.254 | +300133 gsfp 133.254 | +300134 lnsp 134.254 | +300135 pslc 135.254 | +300136 pslm 136.254 | +300137 mask 137.254 | +300138 mxwu 138.254 | +300139 mxwv 139.254 | +300140 cape 140.254 | +300141 cine 141.254 | +300142 lhcv 142.254 | +300143 mscv 143.254 | +300144 scvm 144.254 | +300145 scvh 145.254 | +300146 mxwp 146.254 | +300147 ustr 147.254 | +300148 vstr 148.254 | +300149 cbnt 149.254 | +300150 pcbs 150.254 | +300151 pctp 151.254 | +300152 fzht 152.254 | +300153 fzrh 153.254 | +300154 fdlt 154.254 | +300155 fdlu 155.254 | +300156 fdlv 156.254 | +300157 tppp 157.254 | +300158 tppt 158.254 | +300159 tppu 159.254 | +300160 tppv 160.254 | +300162 gvdu 162.254 | +300163 gvdv 163.254 | +300164 gvus 164.254 | +300165 gvvs 165.254 | +300167 dvsh 167.254 | +300168 hmfc 168.254 | +300169 vmfl 169.254 | +300170 vadv 170.254 | +300171 nhcm 171.254 | +300172 lglh 172.254 | +300173 lgms 173.254 | +300174 smav 174.254 | +300175 tgrz 175.254 | +300176 bslh 176.254 | +300177 evpp 177.254 | +300178 rnof 178.254 | +300179 pitp 179.254 | +300180 vpca 180.254 | +300181 qsfc 181.254 | +300182 ussl 182.254 | +300183 uzrs 183.254 | +300184 uzds 184.254 | +300185 amdl 185.254 | +300186 amsl 186.254 | +300187 tsfc 187.254 | +300188 tems 188.254 | +300189 tcas 189.254 | +300190 ctmp 190.254 | +300191 tgsc 191.254 | +300192 uves 192.254 | +300193 usst 193.254 | +300194 vves 194.254 | +300195 vsst 195.254 | +300196 suvf 196.254 | +300197 iswf 197.254 | +300198 ghfl 198.254 | +300200 lwbc 200.254 | +300201 lwtc 201.254 | +300202 swec 202.254 | +300203 ocac 203.254 | +300205 lwrh 205.254 | +300206 swrh 206.254 | +300207 olis 207.254 | +300208 olic 208.254 | +300209 ocis 209.254 | +300210 ocic 210.254 | +300211 oles 211.254 | +300212 oces 212.254 | +300213 swgc 213.254 | +300214 roce 214.254 | +300215 swtc 215.254 | +300218 hhdf 218.254 | +300219 hmdf 219.254 | +300220 hddf 220.254 | +300221 hvdf 221.254 | +300222 vdms 222.254 | +300223 vdfu 223.254 | +300224 vdfv 224.254 | +300225 vdfh 225.254 | +300226 umrs 226.254 | +300227 vdcc 227.254 | +300230 usmt 230.254 | +300231 vsmt 231.254 | +300232 tsmt 232.254 | +300233 rsmt 233.254 | +300234 atmt 234.254 | +300235 stmt 235.254 | +300236 ommt 236.254 | +300237 dvmt 237.254 | +300238 zhmt 238.254 | +300239 lnmt 239.254 | +300240 mkmt 240.254 | +300241 vvmt 241.254 | +300242 omtm 242.254 | +300243 ptmt 243.254 | +300244 pcmt 244.254 | +300245 rhmt 245.254 | +300246 mpmt 246.254 | +300247 simt 247.254 | +300248 uemt 248.254 | +300249 fcmt 249.254 | +300250 psmt 250.254 | +300251 tmmt 251.254 | +300252 pvmt 252.254 | +300253 tvmt 253.254 | +300254 vtmt 254.254 | +300255 uvmt 255.254 | +3003 ptend 3.1 3.2 3.3 | +3005 icaht 5.1 5.2 5.3 | +3008 h 8.1 8.2 8.3 | +3009 hstdv 9.1 9.2 9.3 | +3012 vptmp 12.1 12.2 12.3 | +3014 papt 14.1 14.2 14.3 | +3015 tmax 15.1 15.2 15.3 | +3016 tmin 16.1 16.2 16.3 | +3017 dpt 17.1 17.2 17.3 | +3018 depr 18.1 18.2 18.3 | +3019 lapr 19.1 19.2 19.3 | +3020 vis 20.1 20.2 20.3 | +3021 rdsp1 21.1 21.2 21.3 | +3022 rdsp2 22.1 22.2 22.3 | +3023 rdsp3 23.1 23.2 23.3 | +3024 pli 24.1 24.2 24.3 | +3025 ta 25.1 25.2 25.3 | +3026 presa 26.1 26.2 26.3 | +3027 gpa 27.1 27.2 27.3 | +3028 wvsp1 28.1 28.2 28.3 | +3029 wvsp2 29.1 29.2 29.3 | +3030 wvsp3 30.1 30.2 30.3 | +3031 wdir 31.1 31.2 31.3 | +3037 mntsf 37.1 37.2 37.3 | +3038 sgcvv 38.1 38.2 38.3 | +3041 absv 41.1 41.2 41.3 | +3042 absd 42.1 42.2 42.3 | +3045 vucsh 45.1 45.2 45.3 | +3046 vvcsh 46.1 46.2 46.3 | +3047 dirc 47.1 47.2 47.3 | +3048 spc 48.1 48.2 48.3 | +3049 ucurr 49.1 49.2 49.3 | +3050 vcurr 50.1 50.2 50.3 | +3053 mixr 53.1 53.2 53.3 | +3054 pwat 54.1 54.2 54.3 | +3055 vp 55.1 55.2 55.3 | +3056 satd 56.1 56.2 56.3 | +3059 prate 59.1 59.2 59.3 | +3060 tstm 60.1 60.2 60.3 | +3062 lsp 62.1 62.2 62.3 | +3063 acpcp 63.1 63.2 63.3 | +3064 srweq 64.1 64.2 64.3 | +3067 mld 67.1 67.2 67.3 | +3068 tthdp 68.1 68.2 68.3 | +3069 mthd 69.1 69.2 69.3 | +3070 mtha 70.1 70.2 70.3 | +3077 bli 77.1 77.2 77.3 | +3080 wtmp 80.1 80.2 80.3 | +3082 dslm 82.1 82.2 82.3 | +3086 ssw 86.1 86.2 86.3 | +3088 s 88.1 88.2 88.3 | +3089 den 89.1 89.2 89.3 | +3091 icec 91.1 91.2 91.3 | +3092 icetk 92.1 92.2 92.3 | +3093 diced 93.1 93.2 93.3 | +3094 siced 94.1 94.2 94.3 | +3095 uice 95.1 95.2 95.3 | +3096 vice 96.1 96.2 96.3 | +3097 iceg 97.1 97.2 97.3 | +3098 iced 98.1 98.2 98.3 | +3099 snom 99.1 99.2 99.3 | +31 ci 31.128 | +3100 swh 100.1 100.2 100.3 | +3101 mdww 101.1 101.2 101.3 | +3102 shww 102.1 102.2 102.3 | +3103 mpww 103.1 103.2 103.3 | +3104 swdir 104.1 104.2 104.3 | +3105 swell 105.1 105.2 105.3 | +3106 swper 106.1 106.2 106.3 | +3107 mdps 107.1 107.2 107.3 | +3108 mpps 108.1 108.2 108.3 | +3109 dirsw 109.1 109.2 109.3 | +3110 swp 110.1 110.2 110.3 | +3111 nswrs 111.1 111.2 111.3 | +3112 nlwrs 112.1 112.2 112.3 | +3113 nlwrt 113.1 113.2 113.3 | +3114 nlwrt 114.1 114.2 114.3 | +3115 lwavr 115.1 115.2 115.3 | +3116 swavr 116.1 116.2 116.3 | +3117 grad 117.1 117.2 117.3 | +3119 lwrad 119.1 119.2 119.3 | +3120 swrad 120.1 120.2 120.3 | +3124 uflx 124.1 124.2 124.3 | +3125 vflx 125.1 125.2 125.3 | +3126 wmixe 126.1 126.2 126.3 | +3127 imgd 127.1 127.2 127.3 | +32 asn 32.128 | +33 rsn 33.128 | +34 sst 34.128 | +35 istl1 35.128 | +36 istl2 36.128 | +37 istl3 37.128 | +38 istl4 38.128 | +39 swvl1 39.128 | +4 eqpt 4.128 | +40 swvl2 40.128 | +41 swvl3 41.128 | +42 swvl4 42.128 | +43 slt 43.128 | +44 es 44.128 | +45 smlt 45.128 | +46 sdur 46.128 | +47 dsrp 47.128 | +48 magss 48.128 | +49 10fg 49.128 | +5 sept 5.128 | +50 lspf 50.128 | +500000 ps 1.2 1.2 | +500001 p 1.2 1.2 | +500002 pmsl 2.2 2.2 | +500003 dpsdt 3.2 3.2 | +500004 fis 6.2 6.2 | +500005 fif 6.2 6.2 | +500006 fi 6.2 6.2 | +500007 hsurf 8.2 8.2 | +500008 hhl 8.2 8.2 | +500009 to3 10.2 10.2 | +500010 t_g 11.2 11.2 | +500011 t_2m 11.2 11.2 | +500012 t_2m_av 11.2 11.2 | +500013 t_2m_cl 11.2 11.2 | +500014 t 11.2 11.2 | +500015 tmax_2m 15.2 15.2 | +500016 tmin_2m 16.2 16.2 | +500017 td_2m 17.2 17.2 | +500018 td_2m_av 17.2 17.2 | +500019 dbz_max 21.2 21.2 | +500020 wvsp1 28.2 28.2 | +500021 wvsp2 29.2 29.2 | +500022 wvsp3 30.2 30.2 | +500023 dd_10m 31.2 31.2 | +500024 dd 31.2 31.2 | +500025 sp_10m 32.2 32.2 | +500026 sp 32.2 32.2 | +500027 u_10m 33.2 33.2 | +500028 u 33.2 33.2 | +500029 v_10m 34.2 34.2 | +500030 v 34.2 34.2 | +500031 omega 39.2 39.2 | +500032 w 40.2 40.2 | +500033 qv_s 51.2 51.2 | +500034 qv_2m 51.2 51.2 | +500035 qv 51.2 51.2 | +500036 relhum_2m 52.2 52.2 | +500037 relhum 52.2 52.2 | +500038 tqv 54.2 54.2 | +500039 aevap_s 57.2 57.2 | +500040 tqi 58.2 58.2 | +500041 tot_prec 61.2 61.2 | +500042 prec_gsp 62.2 62.2 | +500043 prec_con 63.2 63.2 | +500044 w_snow 65.2 65.2 | +500045 h_snow 66.2 66.2 | +500046 clct 71.2 71.2 | +500047 clc_con 72.2 72.2 | +500048 clcl 73.2 73.2 | +500049 clcm 74.2 74.2 | +500050 clch 75.2 75.2 | +500051 tqc 76.2 76.2 | +500052 snow_con 78.2 78.2 | +500053 snow_gsp 79.2 79.2 | +500054 fr_land 81.2 81.2 | +500055 z0 83.2 83.2 | +500056 alb_rad 84.2 84.2 | +500057 albedo_b 84.2 84.2 | +500058 t_cl 85.2 85.2 | +500059 t_cl_lm 85.2 85.2 | +500060 t_m 85.2 85.2 | +500061 t_s 85.2 85.2 | +500062 w_cl 86.2 86.2 | +500063 w_g1 86.2 86.2 | +500064 w_g2 86.2 86.2 | +500065 plcov 87.2 87.2 | +500066 runoff_g 90.2 90.2 | +500067 runoff_g_lm 90.2 90.2 | +500068 runoff_s 90.2 90.2 | +500069 fr_ice 91.2 91.2 | +500070 h_ice 92.2 92.2 | +500071 swh 100.2 100.2 | +500072 mdww 101.2 101.2 | +500073 shww 102.2 102.2 | +500074 mpww 103.2 103.2 | +500075 mdps 104.2 104.2 | +500076 shps 105.2 105.2 | +500077 mpps 106.2 106.2 | +500078 asob_s 111.2 111.2 | +500079 sobs_rad 111.2 111.2 | +500080 athb_s 112.2 112.2 | +500081 thbs_rad 112.2 112.2 | +500082 asob_t 113.2 113.2 | +500083 sobt_rad 113.2 113.2 | +500084 athb_t 114.2 114.2 | +500085 thbt_rad 114.2 114.2 | +500086 alhfl_s 121.2 121.2 | +500087 ashfl_s 122.2 122.2 | +500088 aumfl_s 124.2 124.2 | +500089 avmfl_s 125.2 125.2 | +500090 apab_s 5.201 5.201 | +500091 pabs_rad 5.201 5.201 | +500092 sohr_rad 13.201 13.201 | +500093 thhr_rad 14.201 14.201 | +500094 alhfl_bs 18.201 18.201 | +500095 alhfl_pl 19.201 19.201 | +500096 dursun 20.201 20.201 | +500097 rstom 21.201 21.201 | +500098 clc 29.201 29.201 | +500099 clc_sgs 30.201 30.201 | +500100 qc 31.201 31.201 | +500101 qi 33.201 33.201 | +500102 qr 35.201 35.201 | +500103 qs 36.201 36.201 | +500104 tqr 37.201 37.201 | +500105 tqs 38.201 38.201 | +500106 qg 39.201 39.201 | +500107 tqg 40.201 40.201 | +500108 twater 41.201 41.201 | +500109 tdiv_hum 42.201 42.201 | +500110 qc_rad 43.201 43.201 | +500111 qi_rad 44.201 44.201 | +500112 clch_8 51.201 51.201 | +500113 clcm_8 52.201 52.201 | +500114 clcl_8 53.201 53.201 | +500115 hbas_sc 58.201 58.201 | +500116 htop_sc 59.201 59.201 | +500117 clw_con 61.201 61.201 | +500118 hbas_con 68.201 68.201 | +500119 htop_con 69.201 69.201 | +500120 bas_con 72.201 72.201 | +500121 top_con 73.201 73.201 | +500122 dt_con 74.201 74.201 | +500123 dqv_con 75.201 75.201 | +500124 du_con 78.201 78.201 | +500125 dv_con 79.201 79.201 | +500126 htop_dc 82.201 82.201 | +500127 hzerocl 84.201 84.201 | +500128 snowlmt 85.201 85.201 | +500129 dqc_con 88.201 88.201 | +500130 dqi_con 89.201 89.201 | +500131 q_sedim 99.201 99.201 | +500132 prr_gsp 100.201 100.201 | +500133 prs_gsp 101.201 101.201 | +500134 rain_gsp 102.201 102.201 | +500135 prr_con 111.201 111.201 | +500136 prs_con 112.201 112.201 | +500137 rain_con 113.201 113.201 | +500138 rr_f 122.201 122.201 | +500139 rr_c 123.201 123.201 | +500140 dt_gsp 124.201 124.201 | +500141 dqv_gsp 125.201 125.201 | +500142 dqc_gsp 127.201 127.201 | +500143 freshsnw 129.201 129.201 | +500144 dqi_gsp 130.201 130.201 | +500145 prg_gsp 131.201 131.201 | +500146 grau_gsp 132.201 132.201 | +500147 rho_snow 133.201 133.201 | +500148 pp 139.201 139.201 | +500149 sdi_1 141.201 141.201 | +500150 sdi_2 142.201 142.201 | +500151 cape_mu 143.201 143.201 | +500152 cin_mu 144.201 144.201 | +500153 cape_ml 145.201 145.201 | +500154 cin_ml 146.201 146.201 | +500155 tke_con 147.201 147.201 | +500156 tketens 148.201 148.201 | +500157 ke 149.201 149.201 | +500158 tke 152.201 152.201 | +500159 tkvm 153.201 153.201 | +500160 tkvh 154.201 154.201 | +500161 tcm 170.201 170.201 | +500162 tch 171.201 171.201 | +500163 mh 173.201 173.201 | +500164 vmax_10m 187.201 187.201 | +500165 ru-103 194.201 194.201 | +500166 t_so 197.201 197.201 | +500167 w_so 198.201 198.201 | +500168 w_so_ice 199.201 199.201 | +500169 w_i 200.201 200.201 | +500170 t_snow 203.201 203.201 | +500171 prs_min 212.201 212.201 | +500172 t_ice 215.201 215.201 | +500173 dbz_850 230.201 230.201 | +500174 dbz 230.201 230.201 | +500175 dbz_cmax 230.201 230.201 | +500176 dttdiv 232.201 232.201 | +500177 sotr_rad 233.201 233.201 | +500178 evatra_sum 236.201 236.201 | +500179 tra_sum 237.201 237.201 | +500180 totforce_s 238.201 238.201 | +500181 resid_wso 239.201 239.201 | +500182 mflx_con 240.201 240.201 | +500183 cape_con 241.201 241.201 | +500184 qcvg_con 243.201 243.201 | +500185 mwd 4.202 4.202 | +500186 mwp_x 7.202 7.202 | +500187 ppww 7.202 7.202 | +500188 mpp_s 8.202 8.202 | +500189 ppps 8.202 8.202 | +500190 pp1d 9.202 9.202 | +500191 tm10 10.202 10.202 | +500192 tm01 17.202 17.202 | +500193 tm02 18.202 18.202 | +500194 sprd 19.202 19.202 | +500195 ana_err_fi 40.202 40.202 | +500196 ana_err_u 41.202 41.202 | +500197 ana_err_v 42.202 42.202 | +500198 du_sso 44.202 44.202 | +500199 dv_sso 45.202 45.202 | +500200 sso_stdh 46.202 46.202 | +500201 sso_gamma 47.202 47.202 | +500202 sso_theta 48.202 48.202 | +500203 sso_sigma 49.202 49.202 | +500204 emis_rad 56.202 56.202 | +500205 soiltyp 57.202 57.202 | +500206 lai 61.202 61.202 | +500207 rootdp 62.202 62.202 | +500208 hmo3 64.202 64.202 | +500209 vio3 65.202 65.202 | +500210 plcov_mx 67.202 67.202 | +500211 plcov_mn 68.202 68.202 | +500212 lai_mx 69.202 69.202 | +500213 lai_mn 70.202 70.202 | +500214 oro_mod 71.202 71.202 | +500215 wvar1 74.202 74.202 | +500216 wvar2 74.202 74.202 | +500217 for_e 75.202 75.202 | +500218 for_d 76.202 76.202 | +500219 ndvi 77.202 77.202 | +500220 ndvi_max 78.202 78.202 | +500221 ndvi_mrat 79.202 79.202 | +500222 ndviratio 79.202 79.202 | +500223 aer_so4 84.202 84.202 | +500224 aer_so412 84.202 84.202 | +500225 aer_dust 86.202 86.202 | +500226 aer_dust12 86.202 86.202 | +500227 aer_org 91.202 91.202 | +500228 aer_org12 91.202 91.202 | +500229 aer_bc 92.202 92.202 | +500230 aer_bc12 92.202 92.202 | +500231 aer_ss 93.202 93.202 | +500232 aer_ss12 93.202 93.202 | +500233 dqvdt 104.202 104.202 | +500234 qvsflx 105.202 105.202 | +500235 fc 113.202 113.202 | +500236 rlat 114.202 114.202 | +500237 rlon 115.202 115.202 | +500238 ustr 120.202 120.202 | +500239 ztd 121.202 121.202 | +500240 zwd 122.202 122.202 | +500241 zhd 123.202 123.202 | +500242 o3 180.202 180.202 | +500243 ru-103 194.202 194.202 | +500244 ru-103d 195.202 195.202 | +500245 ru-103w 196.202 196.202 | +500246 sr-90 197.202 197.202 | +500247 sr-90d 198.202 198.202 | +500248 sr-90w 199.202 199.202 | +500249 i-131a 200.202 200.202 | +500250 i-131ad 201.202 201.202 | +500251 i-131aw 202.202 202.202 | +500252 cs-137 203.202 203.202 | +500253 cs-137d 204.202 204.202 | +500254 cs-137w 205.202 205.202 | +500255 te-132 206.202 206.202 | +500256 te-132d 207.202 207.202 | +500257 te-132w 208.202 208.202 | +500258 zr-95 209.202 209.202 | +500259 zr-95d 210.202 210.202 | +500260 zr-95w 211.202 211.202 | +500261 kr-85 212.202 212.202 | +500262 kr-85d 213.202 213.202 | +500263 kr-85w 214.202 214.202 | +500264 tr-2 215.202 215.202 | +500265 tr-2d 216.202 216.202 | +500266 tr-2w 217.202 217.202 | +500267 xe-133 218.202 218.202 | +500268 xe-133d 219.202 219.202 | +500269 xe-133w 220.202 220.202 | +500270 i-131g 221.202 221.202 | +500271 i-131gd 222.202 222.202 | +500272 i-131gw 223.202 223.202 | +500273 i-131o 224.202 224.202 | +500274 i-131od 225.202 225.202 | +500275 i-131ow 226.202 226.202 | +500276 ba-140 227.202 227.202 | +500277 ba-140d 228.202 228.202 | +500278 ba-140w 229.202 229.202 | +500279 austr_sso 231.202 231.202 | +500280 ustr_sso 231.202 231.202 | +500281 avstr_sso 232.202 232.202 | +500282 vstr_sso 232.202 232.202 | +500283 avdis_sso 233.202 233.202 | +500284 vdis_sso 233.202 233.202 | +500285 uv_max 248.202 248.202 | +500286 w_shaer 29.203 29.203 | +500287 srh 30.203 30.203 | +500288 vabs 33.203 33.203 | +500289 cl_typ 90.203 90.203 | +500290 ccl_gnd 91.203 91.203 | +500291 ccl_nn 94.203 94.203 | +500292 ww 99.203 99.203 | +500293 advorg 101.203 101.203 | +500294 advor 103.203 103.203 | +500295 adrtg 107.203 107.203 | +500296 wdiv 109.203 109.203 | +500297 fqn 124.203 124.203 | +500298 ipv 130.203 130.203 | +500299 up 131.203 131.203 | +500300 vp 132.203 132.203 | +500301 ptheta 133.203 133.203 | +500302 ko 140.203 140.203 | +500303 thetae 154.203 154.203 | +500304 ceiling 157.203 157.203 | +500305 ice_grd 196.203 196.203 | +500306 cldepth 203.203 203.203 | +500307 clct_mod 204.203 204.203 | +500308 efa-ps 1.204 1.204 | +500309 eia-ps 2.204 2.204 | +500310 efa-u 3.204 3.204 | +500311 eia-u 4.204 4.204 | +500312 efa-v 5.204 5.204 | +500313 eia-v 6.204 6.204 | +500314 efa-fi 7.204 7.204 | +500315 eia-fi 8.204 8.204 | +500316 efa-rh 9.204 9.204 | +500317 eia-rh 10.204 10.204 | +500318 efa-t 11.204 11.204 | +500319 eia-t 12.204 12.204 | +500320 efa-om 13.204 13.204 | +500321 eia-om 14.204 14.204 | +500322 efa-ke 15.204 15.204 | +500323 eia-ke 16.204 16.204 | +500324 synme5_bt_cl 1.205 1.205 | +500325 synme5_bt_cs 1.205 1.205 | +500326 synme5_rad_cl 1.205 1.205 | +500327 synme5_rad_cs 1.205 1.205 | +500328 synme6_bt_cl 2.205 2.205 | +500329 synme6_bt_cs 2.205 2.205 | +500330 synme6_rad_cl 2.205 2.205 | +500331 synme6_rad_cs 2.205 2.205 | +500332 synme7_bt_cl_ir11.5 3.205 3.205 | +500333 synme7_bt_cl_wv6.4 3.205 3.205 | +500334 synme7_bt_cs_ir11.5 3.205 3.205 | +500335 synme7_bt_cs_wv6.4 3.205 3.205 | +500336 synme7_rad_cl_ir11.5 3.205 3.205 | +500337 synme7_rad_cl_wv6.4 3.205 3.205 | +500338 synme7_rad_cs_ir11.5 3.205 3.205 | +500339 synme7_rad_cs_wv6.4 3.205 3.205 | +500340 synmsg_bt_cl_ir10.8 4.205 4.205 | +500341 synmsg_bt_cl_ir12.1 4.205 4.205 | +500342 synmsg_bt_cl_ir13.4 4.205 4.205 | +500343 synmsg_bt_cl_ir3.9 4.205 4.205 | +500344 synmsg_bt_cl_ir8.7 4.205 4.205 | +500345 synmsg_bt_cl_ir9.7 4.205 4.205 | +500346 synmsg_bt_cl_wv6.2 4.205 4.205 | +500347 synmsg_bt_cl_wv7.3 4.205 4.205 | +500348 synmsg_bt_cs_ir8.7 4.205 4.205 | +500349 synmsg_bt_cs_ir10.8 4.205 4.205 | +500350 synmsg_bt_cs_ir12.1 4.205 4.205 | +500351 synmsg_bt_cs_ir13.4 4.205 4.205 | +500352 synmsg_bt_cs_ir3.9 4.205 4.205 | +500353 synmsg_bt_cs_ir9.7 4.205 4.205 | +500354 synmsg_bt_cs_wv6.2 4.205 4.205 | +500355 synmsg_bt_cs_wv7.3 4.205 4.205 | +500356 synmsg_rad_cl_ir10.8 4.205 4.205 | +500357 synmsg_rad_cl_ir12.1 4.205 4.205 | +500358 synmsg_rad_cl_ir13.4 4.205 4.205 | +500359 synmsg_rad_cl_ir3.9 4.205 4.205 | +500360 synmsg_rad_cl_ir8.7 4.205 4.205 | +500361 synmsg_rad_cl_ir9.7 4.205 4.205 | +500362 synmsg_rad_cl_wv6.2 4.205 4.205 | +500363 synmsg_rad_cl_wv7.3 4.205 4.205 | +500364 synmsg_rad_cs_ir10.8 4.205 4.205 | +500365 synmsg_rad_cs_ir12.1 4.205 4.205 | +500366 synmsg_rad_cs_ir13.4 4.205 4.205 | +500367 synmsg_rad_cs_ir3.9 4.205 4.205 | +500368 synmsg_rad_cs_ir8.7 4.205 4.205 | +500369 synmsg_rad_cs_ir9.7 4.205 4.205 | +500370 synmsg_rad_cs_wv6.2 4.205 4.205 | +500371 synmsg_rad_cs_wv7.3 4.205 4.205 | +500372 t_2m_s 11.206 11.206 | +500373 tmax_2m_s 15.206 15.206 | +500374 tmin_2m_s 16.206 16.206 | +500375 td_2m_s 17.206 17.206 | +500376 u_10m_s 33.206 33.206 | +500377 v_10m_s 34.206 34.206 | +500378 tot_prec_s 61.206 61.206 | +500379 clct_s 71.206 71.206 | +500380 clcl_s 73.206 73.206 | +500381 clcm_s 74.206 74.206 | +500382 clch_s 75.206 75.206 | +500383 snow_gsp_s 79.206 79.206 | +500384 t_s_s 85.206 85.206 | +500385 vmax_10m_s 187.206 187.206 | +500386 tot_prec_c 61.207 61.207 | +500387 snow_gsp_c 79.207 79.207 | +500388 vmax_10m_c 187.207 187.207 | +500389 obsmsg_alb_hrv | +500390 obsmsg_alb_nir1.6 | +500391 obsmsg_alb_vis0.6 | +500392 obsmsg_alb_vis0.8 | +500393 obsmsg_bt_ir10.8 | +500394 obsmsg_bt_ir12.0 | +500395 obsmsg_bt_ir13.4 | +500396 obsmsg_bt_ir3.9 | +500397 obsmsg_bt_ir8.7 | +500398 obsmsg_bt_ir9.7 | +500399 obsmsg_bt_wv6.2 | +500400 obsmsg_bt_wv7.3 | +51 mx2t24 51.128 | +52 mn2t24 52.128 | +53 mont 53.128 | +54 pres 1.1 1.2 1.3 54.128 | +55 mean2t24 55.128 | +56 mn2d24 56.128 | +57 uvb 57.128 | +58 par 58.128 | +59 cape 59.128 | +6 ssfr 6.128 | +60 pv 4.1 4.2 4.3 60.128 | +62 obct 62.128 | +63 stsktd 63.128 | +64 ftsktd 64.128 | +65 sktd 65.128 | +66 lai_lv 66.128 | +67 lai_hv 67.128 | +68 msr_lv 68.128 | +69 msr_hv 69.128 | +7 scfr 7.128 | +70 bc_lv 70.128 | +71 bc_hv 71.128 | +72 issrd 72.128 | +73 istrd 73.128 | +74 sdfor 74.128 | +75 crwc 75.128 | +76 cswc 76.128 | +77 etadot 77.128 | +78 tclw 78.128 | +79 tciw 79.128 | +8 sro 8.128 | +80 80.128 | +81 81.128 | +82 82.128 | +83 83.128 | +84 84.128 | +85 85.128 | +85001156 PREC_CONVEC 156.1 | +85001157 PREC_GDE_ECH 157.1 | +85001160 CAPE_INS 160.1 | +86 86.128 | +87 87.128 | +88 88.128 | +89 89.128 | +9 ssro 9.128 | +90 90.128 | +91 91.128 | +92 92.128 | +93 93.128 | +94 94.128 | +95 95.128 | +96 96.128 | +97 97.128 | +98 98.128 | +99 99.128 | diff --git a/eccodes/definitions/param_limits.def b/eccodes/definitions/param_limits.def new file mode 100644 index 00000000..1bbcd18d --- /dev/null +++ b/eccodes/definitions/param_limits.def @@ -0,0 +1,166 @@ +constant default_min_val = -1e13 : double_type, hidden; +constant default_max_val = +1e13 : double_type, hidden; + +concept param_value_min(default_min_val) { + -150 = { paramId=165; } + -100 = { paramId=166; } + 0 = { paramId=260260; } + 0 = { paramId=228028; } + 0 = { paramId=49; } + 0 = { paramId=207; } + 25 = { paramId=168; } + 0 = { paramId=260242; } + 160 = { paramId=167; } + 0 = { paramId=260509; } + 5 = { paramId=151175; } + 0 = { paramId=260257; } + 0 = { paramId=59; } + -60000 = { paramId=228001; } + 0 = { paramId=151163; } + -3.5 = { paramId=151131; } + -10 = { paramId=260259; } + -13000 = { paramId=129; } + -1300 = { paramId=156; } + 0 = { paramId=3075; } + 0 = { paramId=172; } + -0.05 = { paramId=3062; } + 0 = { paramId=260210; } + 0 = { paramId=3073; } + 160 = { + one=(step > 0); + paramId=121; + } + 150 = { + one=(step > 0); + paramId=122; + } + 85000 = { paramId=151; } + 270 = { paramId=151126; } + -1 = { paramId=140230; } + 0 = { paramId=140221; } + 0 = { paramId=3074; } + 0 = { paramId=140214; } + -3.5 = { paramId=151132; } + 0 = { paramId=151225; } + -1300 = { paramId=228002; } + 0 = { paramId=140231; } + 0 = { paramId=260430; } + 170 = { paramId=3; } + -1 = { paramId=60; } + 100 = { paramId=54; } + 0 = { paramId=157; } + -4 = { paramId=151145; } + 0 = { paramId=151219; } + 160 = { paramId=34; } + -0.00001 = { paramId=31; } + 0 = { paramId=174098; } + 0 = { paramId=140229; } + 120 = { paramId=235; } + 20 = { paramId=228032; } + 10 = { paramId=33; } + 0 = { paramId=3066; } + -1e-10 = { paramId=228141; } + 0.005 = { paramId=260367; } + -1000 = { paramId=260364; } + 0 = { paramId=228039; } + 0 = { paramId=228087; } + -20 = { paramId=228086; } + 170 = { paramId=260360; } + 170 = { paramId=228139; } + 170 = { paramId=228096; } + 170 = { paramId=228095; } + 0 = { paramId=43; } + -0.001 = { paramId=247; } + -0.001 = { paramId=246; } + -0.1 = { paramId=133; } + 43000 = { paramId=134; } + 0 = { paramId=173; } + 140 = { paramId=130; } + -3 = { paramId=260057; } + -50 = { paramId=136; } + -250 = { paramId=131; } + -250 = { paramId=132; } + -30 = { paramId=135; } + 0 = { paramId=260199; } + 0 = { paramId=3031; } + 0 = { paramId=10; } +} : double_type, hidden; + +concept param_value_max(default_max_val) { + 150 = { paramId=165; } + 100 = { paramId=166; } + 360.1 = { paramId=260260; } + 140 = { paramId=228028; } + 100 = { paramId=49; } + 300 = { paramId=207; } + 350 = { paramId=168; } + 160 = { paramId=260242; } + 370 = { paramId=167; } + 100 = { paramId=260509; } + 50 = { paramId=151175; } + 100 = { paramId=260257; } + 40000 = { paramId=59; } + 1000 = { paramId=228001; } + 1500 = { paramId=151163; } + 3.5 = { paramId=151131; } + 5 = { paramId=260259; } + 3500000 = { paramId=129; } + 35000 = { paramId=156; } + 100 = { paramId=3075; } + 1 = { paramId=172; } + 130 = { paramId=3062; } + 1 = { paramId=260210; } + 100 = { paramId=3073; } + 380 = { paramId=121; } + 125000 = { paramId=151; } + 308 = { paramId=151126; } + 360.5 = { paramId=140230; } + 50 = { paramId=140221; } + 100 = { paramId=3074; } + 330 = { paramId=122; } + 150 = { paramId=140214; } + 3.5 = { paramId=151132; } + 4000 = { paramId=151225; } + 8888 = { paramId=228002; } + 50 = { paramId=140231; } + 30 = { paramId=260430; } + 1200 = { paramId=3; } + 1 = { paramId=60; } + 108000 = { paramId=54; } + 180 = { paramId=157; } + 4 = { paramId=151145; } + 50 = { paramId=151219; } + 320 = { paramId=34; } + 1.001 = { paramId=31; } + 15 = { paramId=174098; } + 100 = { paramId=140229; } + 380 = { paramId=235; } + 100 = { paramId=228032; } + 1000 = { paramId=33; } + 5 = { paramId=3066; } + 15000 = { paramId=228141; } + 100 = { paramId=260367; } + 1000 = { paramId=260364; } + 2000 = { paramId=228039; } + 2000 = { paramId=228087; } + 2000 = { paramId=228086; } + 350 = { paramId=260360; } + 350 = { paramId=228139; } + 350 = { paramId=228096; } + 350 = { paramId=228095; } + 10 = { paramId=43; } + 0.01 = { paramId=247; } + 1e+06 = { paramId=246; } + 0.1 = { paramId=133; } + 115000 = { paramId=134; } + 10 = { paramId=173; } + 400 = { paramId=130; } + 150 = { paramId=260057; } + 220 = { paramId=136; } + 250 = { paramId=131; } + 250 = { paramId=132; } + 30 = { paramId=135; } + 1 = { paramId=260199; } + 360.1 = { paramId=3031; } + 300 = { paramId=10; } +} : double_type, hidden; diff --git a/eccodes/definitions/parameters_version.def b/eccodes/definitions/parameters_version.def new file mode 100644 index 00000000..3bc23be7 --- /dev/null +++ b/eccodes/definitions/parameters_version.def @@ -0,0 +1 @@ +transient parametersVersion=1 :hidden; diff --git a/eccodes/definitions/stepUnits.table b/eccodes/definitions/stepUnits.table new file mode 100644 index 00000000..6174b275 --- /dev/null +++ b/eccodes/definitions/stepUnits.table @@ -0,0 +1,16 @@ +# stepUnits table used for both grib 1 and 2 +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +14 15m 15 minutes +15 30m 30 minutes +255 255 Missing From 01db2b8aae72ddd91edca08529188e87510de100 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 21:38:19 -0700 Subject: [PATCH 19/44] update html docs --- docs/_build/doctrees/api.doctree | Bin 98106 -> 105192 bytes docs/_build/doctrees/environment.pickle | Bin 1684669 -> 1685223 bytes docs/_build/doctrees/index.doctree | Bin 5327 -> 5303 bytes docs/_build/doctrees/installing.doctree | Bin 8861 -> 9336 bytes docs/_build/html/.buildinfo | 2 +- docs/_build/html/_sources/api.rst.txt | 20 +- docs/_build/html/_sources/index.rst.txt | 2 +- docs/_build/html/_sources/installing.rst.txt | 3 +- docs/_build/html/_static/jquery-3.4.1.js | 10598 ----------------- docs/_build/html/_static/nature.css | 5 +- docs/_build/html/_static/pygments.css | 8 +- docs/_build/html/api.html | 53 +- docs/_build/html/genindex.html | 1 + docs/_build/html/index.html | 3 +- docs/_build/html/installing.html | 4 +- docs/_build/html/py-modindex.html | 1 + docs/_build/html/search.html | 1 + docs/_build/html/searchindex.js | 2 +- 18 files changed, 74 insertions(+), 10629 deletions(-) delete mode 100644 docs/_build/html/_static/jquery-3.4.1.js diff --git a/docs/_build/doctrees/api.doctree b/docs/_build/doctrees/api.doctree index 86e1a76a5fd0495938e44438461b00074a81e51c..03993b4cd2b5433a40545cad51e5ff6cf3bc2b9b 100644 GIT binary patch literal 105192 zcmeIb37BM8bsw(L%yduJtlCD1o)Hg()YYTzn(m$%Nz*X0g(QR)T0)lafGl^vu6o^7 zZ>p=BdQ~&i1k7d@+0SNc{swIDhD~hn^2JWReE1)1P#~CKJFLMm{>O1}zBu?FJ3tH$ z1m}0oUEix)uU>Wch=B|rs_D9Qmvhf{&pr3tb6>sV9XDOJ?K1jbygyp4)*9zaex=fA zR)T0f-c@OqJ1aq>z5e#~@z<=sa=jRjwES~Xv(qXE>+xl%QLfhNl~&MLe|$aON7dW4 zdQ_6_hohj}t~DFFd39%Xs5<=kda*hZ?`+rF^}zZm-hRhJ_pZ~=_;tr4!Fd{16uy3) zM@RFk;-OU^|bN zojba^)~+@i_-7dd9t8%XqyB2G)QSM%;rlP|ELL|5)S0;-PzCYcyU+V8tM$O^ME)`c zp}8MSmzv2>1BRmlhPmotnrZcVOt0#p*|YH9v+>_e_^$}it4A2*2~oXzGl1C%U`FB* z;Ll%f`KwhM_qQ&!nk!zr8hBztUaip%TC1%9pWZ5dTWwExwUyOot1W5)O8|LR!Mx%2 zW_EXAc0Z7RcBiU`cviz`#kcIj` z6tH?sfm$PK`;BrCd5b~SKO1=U+L^#>1-RIWE8`nD24cT~_#aK0R@whQg5-}ahIOHt5{ zJZL#o@S{#Es6ZMMoDiWPYGVM@_7>N`@PZ|Z&>nYf#gx`Hs<)^=(CZa8uR#$F*O{N| zwvg^pxKtdngHUUr!SXR$ePb8lQ;P5PG#c3RV0`(6XBzXjEboQ!%y@ei7H9y$jcUwYswg$?@8=(PCv&!GAIpLa zY>#L;P;l&IxiFnDzCV*6h!<|HKp7F(;*Qfu2{Ko4wa$?NqSiUBcTe8|<4vjF63I$& zX1t&ah<}UYg&9=>tplYOwOOz6I^Td9=FNG< zxl_}mgxb|w7*~r@RMMT_07C(0L#?r#Ubuw5^eVMzweGJ)UesAx@mp)?aj982 zHv2;Vd~Kxz^CMVUr4LFkeB%fML$U_HTl9u<((!O6HO_hx*ntpnVI{^bhuelx<2YAw1+1 z!oTVg!YLtyOU)Ju97ztz-7K@7hyUSQVS4tVR#2|3*4jR8k~}beFnea%TRC!Ma>k4B zIqenwv&#wohdHnW^HLIO%FXk#SvTj;%>IyQ4@rehNpkj(?-sO-fqDwoQ!dHJXJ1%r zJcX)5DT+%37n=0@pWsGg!14@-A?RD6&!(4Z*aryp1xEq2fwjq_Ed|!k6~7JN3YJoG zKWGiNftGp(;kAGslemWdVMj(DCxX&^H@P%ld|a9u%CLxnIyOc{g89^#V_6>~n?u=q z8*8lRL(5Be!`4vb49uLCUlzU%+N^qK{dxyG!A?XpAW|(Xh$8IU&ID^-abW>Uyo5ia z;yB9A)#`O=MJXdnE>ZqjzgG7b;pL&q<7TJ!tp0-r%J8wi=d*Psv-8=|kG;75JHFL}{ zpGkkjB~zz=33DW|TJd3ev%y}H%y@$bZwkCZ5!nxqjfv8+#|t-jkAOj$ZDF1ZQyxwO z)bqVYXJvH_&V-h~HsQe>sV#XcwTQV|_KHH^TdcKL{8jWsZU^>UHQ?}5%~$;B40TAo zlsxa@pwcPhd);pzt;2F5E64AkQ&?!wWfgRzfbl!+CRACi?APmS@N=xf1A>3uQ?h4wFlSmnM?0;Tmx%wok>A$0xk$lQZMq%*?UUt=_Telckf& z6u3k!QjQlrwX|rn8d-9wk-_&RlgoivF(3%Fb_ZuB>;{2IEX%KkS1WoAAF!2%JUk1i zp=;Xo&%o>V374*k-$RN9(8C7_sL6Rtsuu()7#;wH{pLP-+S>Z@qSFc zVJ+G=qGqM+N*b>4ZGv;&vLViSj+1jfn6muj83o)=a4A{KR3yAo)8o$});fj%g!_qH zkdnbrR=BV`Q^iQ%TR?02F<-rRYxwFeWpwh=N#_y7Xpm)I$)!m^ehVL7x<#BscyP6~ zyg3~FRlPe_f);v!0?Pt8nC z;NO{3x8mPs1K+8j*_b(XY(~0rsIJyPICwUYH z`OR_-KC_DORtM+dxF*Aoc3GN32XCn14?iim@e>>3#(SLHcv5Q3$HpLH0UYV=N8qm> zdmIbz%yI3RE)lccMF+qro|>M*|EHA-+e8m~W=xqcYz<{@Q|r`XtwApR2!R(MLYg{c zB$i>3SJb(IrqISa(DMoZi=fn(H$>MHu)L{>*2+)h5X`)n8kt-%57j#eKd|oCE zmg%iPa=um3VI;0;ncM0F|%8p!5$ivdXvP zq6%Q9J%R^yTvSGo))g;oRyy$BQEV40w@6XR@r#~iI4<~oY#@HeA#eC>-GZTeDLibK z#XI3K4$fPl62Kxwi}i~CiidGd)~a!UTQT0T>epHb(1WC7CeM)(I_vRXQ7|d^e!V(0 z*IxG#GZUT=z#CBFH(4=n57ZW0(Dg?j60vXai5#sX_)UhwMbImgh=HQ`ut)~RP0o~H z-(Vcnom}zD&FK8(^i*kjdh+~jx6I#iyc8@is~EcZd7SCA=jThSYqJ{Xfr!J5pFzik zYLTNeLGqvx-wW)Hug6!2ze=WJCda(}V&Rwsz!WwKdD;PIO}R^)iuh$8{W2fb5cf%e z2v(i=N;C7Kz?6t&qh@=!8O6@RMQb-2mRM7KslRKEWQ7>zW=9#<7QRgI@rrI3U(^^M zVFabIQ!pr12(pWkIQnrt)qWzYaP-6YaiDZH+86=8_MI>I(qR1DUazlc~0xrcE zx^_m*y^4kA)6-3Kc@V+Nyr85GIeq~krq{-JTO%23N?Q88Vs`I#)VIS@6*Ar_s;}p) z{x(tF@Rz}zS%JecYUyQHt+Mfu)WwL_=3r2STXX0&6h^#jsZ*~rV!}5ND456@8tRbj z|Nd=IZB;6PnaIK_WD9PvHU)mGSacOoZLI|Fx)Z@n95*|Q#e+wjT_BTOdZ!lPs1`Av z9`PM~95SktV<=@+8lyldi!q6^=rL6#*`SS=(w=fW2+hd}FX?5UV`0uGt5njIALWqHZ zmC&D}R+{r*J@BCM<*REH)x0(-C>hu+Msc=?x(q+>=)kTQ4*`BG>WJ${l>9ob6VTTc zzt&g}zl^r=Fbdjht5}aD!^FE$f^(yKtz2ubKfx8w`K<>293iCh8nqsNlo|s#LG<-G z?z!!^usdCk6Eh}$`z&gM-vasv)`Y}4cMV$ z*|uHt%|VNAG;0^f&Aga}wxdB83x)rg$iobT0&)=vHj|BiaJ*=H{X zw%BI}57L`^!oNoc%r@aS@Yh`UP3rJ!*BmK;KZ|89hj{CSDyDA^G8mPq_9#kOlI$SL z!sf<*16YLi%M42kKSuS8veYURHcoOp#(g3>J|0qXcZ?B-5KSR>P|po}?23t5)|a65fh2!hc2|x8Z|qd%1Xo zvsCym=;Jx~=&@o5Xg9xN9JbbNugC@}5nU`4a9v!fmJG8O$XYgpV(71=6NV*eVe$m* z=iMKokeVW}+cwvS1Zcv_!v0Tw)pTct{l~!9U<&(F)M7OJgl-r=!{IrDTU_sia5EwDW#1~$VmBko6q^vYATZ23N$!QGDL_By0DgWbmbb!ciC^L_V%AzSm`0ovJ` zXGRhhy_y*jN^JY`$Oco9u$wldZTQh8tK6GWPpaI1)P%Q)eDytce7C@~UR2yaYK0IU zr_M*i8Tx0CW3$||bb)+&4-Ogc_7PP{DnlLFdR2-j)i>*Lp4-ALl2t?}k)s4_C|zJK zEYSJ8_uOi`y&BCPJqoW4?)?V1R$B_nE9aI<2o*dkFM=Jt`_4O$Qlp#iN1NLh;PWp$ zq`Yw)_>S=qk4g#^aA3_|6d?c$3*(_iy~VJ*RWk8pV?Gpi~n>2KDASEs(cv5GzKq;th8JHn=0j26UgF z{3FPSfIH{LGZvrP6dBa|w1a4AfiAuSjt2loS~J+95$_NVzDH1x#k|vkw`XQ>rr^Ez zeKcz^dG^taA%gnqPp0k6()B84W7F4?z7PRCkn1*FZ3Zf?lh3Gzx>e(7m*2IdpvR4P+ z7}KJc%jXAy2do_1(b!VMBXMD=7St>AsRIcRlU8e_PT`*|aTmW(Ru$QjxzbVxBQN$_ zHM)bM&#tW!jS%LR-|SDD@Ph>RX!vXN&mn2d-A}x%0a$ES*17=1&$}1l{14jhsnG;R zXwvgILSE@^ZjO9UNQXXdH!LDLadMJxKqM9``4e^l35LTzA`HTL_=J^n8b3KVto11ly?TCotII z^g$L)?&H+!X!s;o4gU@P>FGLnIWpUXtfC^~p*wIxon4<4$VSIaIF}&PhH4!r4Rn-a z4?T*eh?G@A6_B}uF@$R@-Vf28fF=TF8{j&`(RLb9XO;5iz?J|KarXts8<9K^a`0mK zSqtL0U?5bCXBTOtGsX7p%wClVJCf^m_o-@gUHI34$mK~FuHnC-U&#tlOm_f%hyNX= zHm?oyfW3H4|N6jI(!i`b@z(YW_9BRF-ZlFwG7^aT3t}6GDes`K1{kK*(Nz0P7Y&;W zT_YZh4`p(gW{y7f9JA>!i948{nNSZRiC-31!{(9fhOd@E8t+~59%*#~uLzqR=K*b8 zGf}_7wa4M=9KLSfJc|l^50gB1)>Sk6qFLmft0LPHMc8_{Ea#Vz?2pt5c@n5Xze&;3dh%eK~~F+c)sA`1s!RWThZ(&ani$ z)}N%z?@QuB$$h$5lb8AFbPjq**?+W8)y>HMOVM|i?7xTy>?Qm9*Va={aU+!RcVl!& z9?iao9?5-QcP-UNrc|;n=^FK5{8C!rE)d^qR=uF3II!7YkIgY}W@2m*JvL8CXb{rh zK?tL?DMXBqxy8!P64(ps27pLe!wm{W+@M7goVJdm$8}x!k)_+BqT)#UnhkqwFq8sG z7HXQX`uL?BXprjT=lfLMjQV&V`tDL6Kg$F5QXl%)2k%gq4-x@9Z2im27K5Q$V<_J8 zuEDAVw=MYnS@oTL5I>;t`&J*S)dh< ztCOi~qq^ih*uaf%x+A1OA!^@M!f3q47YRTRAi~jL0`w<+h&-SG z{cr3BYn8zzh?{M__z3gUR{Ug(3Wql~rZBFQ6tct?$ofUnsm3yFTu5$%Ql7}^7|%YE zDl}QH5r3#sGjN-{!aAaRRnlseXtrW;JusAe`?|MJ)y;_OmFT-mTt|4oUgD~M{b+u1 zy;!-xGKs$*W&=e*)Ug$XwN-~FUGt~eulMB8=~PddW+NNgU1J}NZ?q21GQ>;EM&1UF znfA9ShM2E2=aDpjGrJ5w0^^ZCvWI*zgD1&JE1lKcP+V>& z?~}ORF8-nm?&_}@{!4`y+QAsOB7;dQr7gZ_o@9OfW4Wb4MV!evjF;<%1I<4XYBvTS zkeUYF+*cD)WpsI;%6J0BWHjE0ZYzIHgyij@U-i8COLE@taL7z%K;B!q0YZbW;Lsr4 zEtRb?#`}r$k*@M@buOlia}&Z;!iOI-9$@} zw2Npn3VlSunG^>9onum&MEjJ0;eGf=ogc&*6#D;M{r@%!yP`BDiDdu(-0r_GY5vAF z%16?p^rwdye3SH0dc-Y6_|?#Zz9cz%=WzEDkx7qj+#t+LkE>k$XVF9UKNvlp=^AAN z^bmt@njTs50flJOBP}1Zu9;*-8Q(G(Jzn7IKZ_o+|H0_-V%I1epobWIKzj7AE<>oz z`WMEKT@Hjajl(v}GvaOSh#E%-wTN<~DC+n?dgbT185vV8#^8{)b2J=ZtLqb(_#<|j zAdxzU{WhE>jC?&hJrE98D0{KoXBK3H7JSL)nypGiNq45%_~67koK#20zFpWsw7v;{ z3|xUl@fGyXATe~|S*8wSZcR2ukb?o88$CV2sZJ#M)C~gBf=FA~wY@^`(2_a?$ zJnevdYveIQG4%Ga!{iz@}cL*=e31-z>|BxQE}EDJ*eqzpdZ(j;){7 zJaY$lbH5#6qN98p!JF*mz-nLQ19fO`KH7Hf`gU8@mA#NC)9l21z)$ApC1v8vJ>bW6 z!*~N2NNff7yQY=gJnT(OT+J(0nw;661HddFhMJGuvixbz>e2)-(+|H$m>{|ufeQZs zWqGb5SSG-=J!o!Q0%9m$&z_`Fdszb368BKMxs3cEBAz0ml^zS+^j(R-2N5CxN3qH2 zTb#LTTqyivvq46ITqWfRCLF0--?64&_#K+uX!vb8N96^|baQbi|3|5XxIOg`8bO)O zl%iAkgraj0G)vK4wacyOuBGw}MJHh0yrR1iVg2)1Gy5sIr#qCKY?`Uy#`-BZ-AO*> z_B5N(73_fDsm_LV=i;J^{;rvY)mRC*&Sx4bv6pJ>h;A4UIM0L%+Yb0yD<##IDNZ;$ zbTPz;|4vTkZorh*T$x+zI~)z{y@#5!RCT9vR+p;IpeTGUVJoHTo{h2rRozt%4zSgn z7>3o{7>$@i&D}=X-Z(alY(gk98bV)u5qEaP{TFd-1QFO34wzAE$;La-#0%>L>}VKD znDeWxo2Z3QTg!UFxzv`z57d@}I9Y1zH5kZcpS_;SGt`!Vb@OVgSc~RmCi{Mx>###} znbw)g>qtN4W%rX$e~sGQYnm5(sW2SWs);IQvx_wQup;|8N&f!4ql8*2vUlo+@!)g5 zaJuYw0MjDtdqv(s zm>slOe6b#V7e>|+5dH^3&uI8XiKYHR04%fJw@xjD0{y&3aV`a_C;|oQ;D{^*`nMR! zr9i(%=7r$LvE*YL}@r`yOhF9`dQnD{XZtKxQ>q43npoqEBJv zrS2`VW-N>d(do|=Da|;f8}>h~v?i9&iI*c!5}&yB%GasJlzPUD89t4MPwAP>*B?)VP zk}5gBoLUGuzgbT-mz*oSK+YW$$&&NCF_25n@1^n#ITx^QUe0fXk5oM8ksZI_+TY2h zS<;?2SH?BA9BYtVqCBiem3ubzT{8d+^t>csf9fmYlBUjMx?%r4n;M!WFx-?(n_W+FGksbGM(55DM&4`7Q?VupO$lWinW!I;&cf&|I2vpy@NE0=o0>L1pe`<52fOg zS#-w92?TmpN`*T+NCMDkBh*(svqbMti3hXMn!NfG-g3RUh+Fo^#>7uV;cca$Ri<~$ zClIiWtLw_$KT)Xrbe*$JckghuA*Z28&+97 zER#*CotXZvr^34Fofsv(ZLxPDB&6~Z^*aclLsBKsCF<~BSpy2VtabMx5=uHojqIo0 zqJni@6*YRkMnyu)N%fQ@%Q)U-Or##eiiy-^sX&h37>Hz)_u$u3EwF32XR9Wo$*^@@ zIv_TldRq8XgvEwpH2l>Z3?L&Qi2-cqzoSbP0r|EZy~+qk#pggeuVXr zY}hLW*na|KE+gl!sJyq4BaMfRW-k}%B5zW8cKi8(M!R=9I+1CXi4zz5d4UuJGObqM z?2d_DziKS^2&s+DF7>lgIi^4}JL{Zp1JxVyVSiIM9C)IeGKkE$VWH4%5PcP34QLSc zPTwkBDPkO62>z#>wbLT96z-(l=!n;A$cWW$Vcypy-o4QQ0|U0wlnkFmm>3N``e&e6 zm9Nu$#Mb7pY}{`JlIdd=CLr|=I%I8aZpA<@secZY_m=ulz`FUZ4LyNctK>PnI^+<2 z-8fVB$NR~?)lEK+#?$SckZ#@6|0`}I&?J=xuu3%JunKrMH`k=LM02`fJn(!IIzS&y zZN))W4N#?dIP)MYa5S)2XEkeikmcvBE}b$4N#O$FE46`p0m=r{SBX8b<^=mFOAN#c z>wX$DhwqnyuQzg(HBqSHt|rV%+&5NF1am@zwmkR(fJn!H%@#IjxTlOH3)qfTw90$R z$JM+azJ*XT8veAzkg|C)9Xsszy^mT5rTLQ@y_wCFsidd@rRiXXET#D?7|5kGe~rpB zl%{~S%ObP+o3<5FsjC!}fKMmeOqz0>)+G_0F0#2&wif}POuHykx%L82B>&zLOYT}u zFYZd7k@7-OvaAX32p$X2dA9#(yV)A*EUnUc=}y}EDak(l zc~2=Jm9$kijIVPoHFCzhw6v@|$gxiME#cDNwOsI;@MpSzftudjtpHQ$T6M$lKhU2H zLBi)QAElDx%Wuii|5|sFcXa8b`-E<2jh5Gp3)#a+}VieOjd=kjbvns26G`Mmyq z48QbTe=Qekyvd}#_X5AR>7PjU5%){#`v|obesh)jHc7r0JIFUcQs0Li&23_4B=ucD z)4`Ma-i=lwsV|YHXHwrx-O2PLyr$h5HssQy7`9MP+62$1KiT9m8^Y5+2@knCUgzzg zShQq}&~gnaIjTqpi}w< zB*iWJ_4@og(%FhQXg0n$upJgyhjLfpoL)4+-}VMIDl8(sG*0^)R?re#aePfdfkiNt z3XkHV;28l1jWfGI?`h)kZU$vSrNbj%JisE5IGrQ`Lk6P-Neh7$ z<8)2(k}?n|878hkASdSv{I&L5bTJgW6yYuv|KrTWW(|+G*D5o(jhS*o#ygRZuU5e` zOSQ^0?c$eu@Tk;55n52aQ6ql}wtcKM#aTrrvAS z>v|09-#ZX*^EOQOjK{D(>u8;mwf_^ETCAP#F)Y_gyW5%`>k+};;fDwVV&km2=JbVH zB`ij{aAWl44Ss4*ERBi9D$N}Ki%=sp-aflx7k7NyLErq`@l8kToZK~W2ARkvu{qe5T8j(8inCrB`#UefG{l(T4tHk>%C+=gQ`g7u4d z+a+(U+40)QCk-PV#ySR*0OLCzn5c-kV>FB!1-KR*Mf7eqx_%V3QRqc@e}XLLMZ9vq zf<%TMj7EB%%Dq$(;J{-9!#oOFQgLzWj_^iGm54vj)|#EDzE+6*v#2T-o?@Bb zoUX_PiP|qLkQZj2f1h9M)an&DZ`#dfoi=(#ZS(J?b1gh}u`rI_;Og+vYb_{moC--hX0LdI~x91`p420$)(FCLuwmvMG}%Z zrC&}z2Pez7-+sGSTcP(*J`Hn11C7 ze^WA<2bUgzN4bt~b^dqU?yy9@?ZRVrBTv?Qoa+h4T~L`v=g}z%hIB(0^-!nAmaAhE z)@Y~3Y7v6kTeb4Njp{@G*aVM#>crHP7@jsY=!_P@#0axIsE7aI*TVGdJwbC7aTCY@ zgaG+!P+P9HXO~x3C_>uE$dSqE{HVgHn?aT04PLK{W0E0DwaWRiaqk9? zOaf^Uz~J|J@n)2%cIA3A3W^Et^iD|`z@vybA?oh56-<)bHVYXzr2?g+Vi5Ck>vx$9QgdBWBhe)_0*!y_k{S`K<|Q>k zuS(=z_>5u9CidUEY|NJ?;^JhyPW6SBVS~6j>Gd2#1o=j;5?L=WN=w=*(bgElSlHX` zl1>?5>N?Rdssc6{w}LH~<2q6J(XJat#q5Xj&U4(tPMBBnxC+N3 z2ydoXwcyCKUc@V;7A3Q%mg|!hP{E57>-_#tX32+X#fHRn`@5I}gYqem8~aqX-xkPz zkTL9f8t(}D?s{9`nLHr2_|9h-^{>y_1nv#b$D8T~0zmNC+X8E=o9p4b`%>+*w-vOx z?Hci5JUuugX^GlMV+R!dHfE#Y^-R~y`KjFcqg*vp22U5@P^T>jKPx3tdWdY5REWpt z*z3!`f}+Z;J{=T&v|M9=s>zJ(B*JGnHx!lVX|iN}O?Ct^ zA((oohn))xb#tL~TiuMybXZTd%oH4sSLqt-VC;NKyQ`iKPl^FkWWi)TcFr)pe=A_> z8Q+r)7o5h5Z?{!axcbmm!1esC5q|?(yj4AB^AR2zmnz3#XjqmQV3>Y?v=w+7&CqOS zyg0L3_KZg4jLdv?@_bD1Je$ARirHL;g#tHt9D3M{7H3q-o=Gkf;A>kkkLkge46XO$ z4K#MlyT1ug!%Wk$Bx%E4zE>?wfXpt{^Eyw<(W|^%PTPS#LC@-P`HmdD%FE@-&#You zH~GBIVd)#w`Dxf4COwjPS?5aIEnMQt-B&gZOz|^%-lI{C^Ig>3D_s8)I=K}|-hh$7 zh>ZvCOTouy#E6CV2lpix#NNxAx)vgDz&uws%sZjP^_W3ZPMP7tIT|^2yYUv3b%hzb z9wp!?eSVZ+w}n1FIgyvJMfV&7ds5D^-zDr@Dgh$So5&gycz4p~Q@p$~6S<9Ah(JkSPd2ley1}P# zgWbG?AaoMgD;dK-!9cDXhOeS>*9}9KokO93b@SJT7bO z-*b(Wb&E`l)O&qY_?4IHe#Ozhz4EH+@)nsPNBBOpOl!XwWdmxz?$}tV{zU(*{@zSO z^}5n+T`4<#kG^w+qb21BvMyhc+f0TIE@7}GS89KoM;=BOOasZGb zh!6z5=M29>y$GeU+ajD9oi)qzs^q2u&?U%6ALJ$wxhIp}6?y!rc(j z3s`*N#^}o%d2gYdFwBvC3*}Y^eQiCH%^k-at#fk69b3g6-79T|n(1-L#L%`!g}#Kz zDYP#&bjcLjA8{ZyKUq#YTIVFo(pHhB*DVy6(Au|9!aGF#S$eVUZThLbmeup0(+ZQi zxgDoN-sB>jF4nvd{x}h9G<+@nGf*U)goGZ$aKC^R^C^mi6T6s85pMIBBHa1} z1EwO?O$}@a)0>I7t=njiGR`aHP%0-v-xpU=A4_$`OT{h0=pu0vm zjRkb-B98NEubr}A>3bL7^xDmQ@X_20w{izb-}{Gk!z|ysJ+Y*7P66(6&Lw}_SW2ot z1$^l(U1ny)&pR5}2BDh2^qze>XLad4Gw2Hc9bqnYcJMDzHlX)Ro*f7bljlG>&qVj^ zJo`Nwsh9K2-un@=kJ=A!pjb@9rztNqH_Oay74)`;D;C+4DPoy zxS7qA_g~Epn#F>!>_Kvj|vo=NFXOumGRV4wtmhIRGXRM=A0PQe2E9 zzu-;1z}v$7f@5K)Uh^CC?dCjgl>}|XjnW|n;uTk#l@6}Rh?4~zIbJ8v7`hvDYe5E( zw+Hdh9>uNgR&+Fs&K-R~+&Dk_&>CK^Z5%yTy7ee7p&wlpUnAW5n_TtFXXv&!3W+}_ zXG+thnaR~P)SX=M%gyNg`iewtXle*#e0(KK8NLO}aQXPu8e$x7e*RBWj zya&vjXb=|OPkk`e6U)<(Ag5z-O8k;on(SY2qN=_oVP3>|11(EG>S&O$EWI>mb-66L zFky65cnrPeS(a34z&RS-EJXsjtlMwFFFltc>l`P(1)-Tpf7bTyV?~7I4{P-D0iHOa zGyy_2P(}z=P1+$Y(m2pL_6D14Dur(%NJqmrNPzRNWGASFILCgSo~^aYEWHK#&0y5_}nSDWG<#BGVhg^xK2NbcN@q2w-}Q9Y1En3JhA*Q^1bs zGSfFh`{ba|rZE`)7J4u!)+cN6frW)6(*u^PuK0hcpLy{G>RK=>qfhMDGTz9um z!F-aEwH=L(WMwu}Hlk8H=tOJ!WW!z&BHzHAg$=fAsnaM^T==?3^ZYIP#bqT5GfYCe z`TgfjoE~ys=IWVmE-m%2#GWQCv99`=hS<9=8bizhcRoAp3P(%qb&KIf%&#l25Gz!F zg`YCN_UVT4#g9|l`U(#aZ9A(8Z-{i)uR#Wa2G}y z#AqQbSVoHgl8u(#a?br??@H}XtAVg9T>9#)^2L3+FU-v8O4FrO?x4*yLBhKTu+i{& z62AT{OG_?k(gL**Hp&m^$>rK@D_o!xO-6(CtljoYFpyi5K2E=6Xi@>~<~8Y!DLv8X zp-8WFE7C@$9(~uvsz(8KJ~etEjUHyujcL)gF>eTLidJqTPtp zBFj4Tb$X5i>QIB6@U_&(=5?s6Mb@j`TYu>ZD`v2S`3I zY15yuN;k;|NItC_#!qv362(MWC^uqxepz>)S1m}#pMfj<&(sG)U@ND1hX75eC-Ft| zJFBFx4m`Fz|8b6;@S&N3!SHD;qi+B62kbxW$g`NAK4*O5P7wDPfgg47yfxg#$SP)@rxe$q zWJ<}!HMm+!g*z&h8aaEAZA?5SLY2z(PQ`xsqZLpt(vX-9wfQ<#ccepx+@8>VH;@68TM*@VuHYX3<`>zs6c7n)jh&Ufd*wfOF!dD#g^ zUr%!u`!G#OXS$1QfwEA`D^nV^|BQx_mJLxV?Qc6;=S1y?(R6E2OY<5C zwc&3OR)nsCVfs1y9YzbGyt1be`UPq#5lR)h5c)+2O7bK0bB@+I5&D;Cx-|%;dG$l+ zwt|t-7+?A-fvb!XPzFSoBKVd;Zb4P*Lh%1~peR3r|H08ZCxVBs+9Cw+QgiEv3%fJT#vbM(*?5?1bfNiKsFAg}X6xMR9j$Ysd19;3EE71GMKyFO-Kw&k zFSJQ+$;(qWW?!+q!f=Y*DWqBDZo?{IT-r=@@yb08YUdZpI~}ca^2&?0idTlj%=!uB zu-ryjwA4ioR9kT=NOPojUIN1h<6&81dSh#++6N!x%B7eTZ8vPkR?hSh^H&En$%T$z z`x6gfsm))S@~;FSQb~-+I$flHl>^xPr2i+5);UT41e$KiayKle)|d8jZ){_a%4ern@-(OE#SQl6!jvXz!)?cLs%Y7%y~i zxRl<=#k$A=TasffRVBR)X@>m-;E@cwOH}FN*H1b?&d;wOceKvQub)HHE#X&{x}?v# zcH2f>Fc$l4yblL4ErA&5z00rk!FiWBTritvXWVlb)TkhGmPRRJ_}5oDV00O?1d+O)(Wf5 z8ogVG6R;xH;AGtLEL0pe3Fq#3UVht~fJ!l4s#GJM7nMKBffvbnpXyW9=DhHOsO(Bd zMY+D$yOZvJ8r8cv?-M*=FV54yK6*h=Z!H-YXaMjr&B5m5ghq)iueI|S;H%U+>lonc zjKE|Zm~Am+d;9**(K@HW@EtU@42Dgdu=F?vIA9@<&&w`{kZ8`1>6=wU9b5KS6Cdj{ z=K~|a#%L>T;2nG@X*+U|5OkNlK7?r!iv01VXg#y;ihhtwatxqebbW++? zN@?aGS-Cqr+md%@*5zdDd=kIkZd9Ce3cWrtkYcaDYj$A4|B@tUe_lul{ugyacQ$Do zM0s&0A^O|qSXCv%m{nmS4}dJh>WaUT(0>g;q&=0H5zBw;XyDRrGGh5FIjhTvWrLIO zzY%&;>gh8m8&Ew7-L9C6mJz9-ME|UyK2JmC$V&4Fg7{iByjbhajUj$ib_%bQr{V)k zcxD{$+Tj7##9>fIXr;97K$}U^`(M8LUH$qubc}B{4f}#cR`Amfis>qjwOmvKo?$%` zJ*BzFW(LxJbcRVIvQ@q}feC94sUNbT9QXw5_@HpQ+-PaEnPsz=8|`zay#NfRJSy56hX0LJ#YpXj|T`p#Z z@Zpc4WqL7NLfL?e*@$Lk+te1Fvzn>VIQ>_$(|7XQ1b)SvQ>&Ov;4XcUo(h0hS1~BU z-S%dh_gd&L&*vC>MEBpjP>bgIjB4RPF(5L>q`amk0A5PHDM*U^OMp__ z+1{J7%EFSq(?@l~IQP^N=JlZNQ!`+=Ok=0~6Az+nK$A{9D4`H(n{{FUHtQai^X%tA zeGQu-^fWWfq#9mrwhb8ZvJ_ch9I{Y&IG_XYxpj1Gy*KY7=yH&HKr*Q=jEt+YxUV7+>S zqj}EtY8_3jL)Dz?)p@kayI#Erb>(_RC}k6ApI)z+Ei8hie{m4PT4{2njTVVsPSnc3 zG%BTnrO~0wvX;ibz(B60@yk@6u`~);H@`F8-1Yxwm^?qH?>P7=(Rf6O` zgKz-hQ)II=-2j(@is&W1nAod<(swi(YvXO!CF&So9FX+aAzve`ifzduIgLI*DDzs; z13JXP1X()dJ`Cj2A#+rop+f|$o7W+ud@sj5r9skR;t&#kYO0y3KYF`$MbmuR<7q6Q z;=0fTC0L$6hqNK5rrhpo(X(_{^OvL=2_zvEKju~=zHXS|uD0ftP$GNhY{=!N;9d63 zYw4TL?XZ3Yz)3S>ro;NYqk%0#N^44=Zkwwo4^ekp*q3uioTrZH-<7dol_bfq?tmr} z{I>{r-e>#6GyLtpcba>VE^Cb}?*kRpg{f|LW4yZg@6~ z0C0L+_87_rT#JOKo!Q)4iA3kT68$KR)8Eq`zu&K%rDx5}QZ$#?l}W$*Vz69mG{{4Z zICFN37mC9?xMU>rSI?0h=~z%}#6SbmyMam1j`dY}`(53Sh%N z@g_UMO7;bbW2M8aH5J!@5|~j8oDkh4EB{CImewS;Vo+-Yy{ZKARa#_i?|P1Iz_%<(SKi8I0$$^SS}4;tcFfb4qW`K~yG};^V|y z!shub{h5E?q$D4mIFwD6%`=9%x@?}CsXW8x5wLFF<~gix%jVfPiMp9~Pw#z`YMjsV zxkg$(^`P7?9yubPD`)0O@1Ru2!tha-WRrsaJfPDy#dDiJx9f%(J17MKPc32m>{6gJ zRqqf$_=LIo|pCK&`7Y=y*BhT(gCocjTaz2iSOV zMkO!|d|Vi?y}L-2C@v77L(aB{hEd?R%2nJP;^glEJy{b~YpZl%Pi|n{t7AYM-usI< zoG(@p%jUxlnJ=S=6YGgsQml;{29^C!b*$$H7!Y#N1_YgmY#Sa`cP(x`MAar9szUYw ziOa=ivmW@3@ib74X4`=Y@=OCivQG(9;@mz1C_)Ru3jBJly=DxcD>Nu{HcR%Hk;vHb zBbLNia*Z-nHg-PxGt^68fAhOgE3FR(@HfB1(cBiojPuc7M$^Il&2L1jy#D4{)Rl`e zp_Hw#8@0b#n#!8HZ0WH`l(T_@Y?ghASQI6W*-G<63}^2pMp>15K5tJm_C+Ax7WOVm z@Um$I|C-iLide(4#LSGX%|9BHT3=K?q3=6&r`P`Y`*)5GzUghPsGWhOgq|RM#MXdy zO(p&Gyj0ogVvXPMzfv!w;eU~xsYN1NXV4x+LQ+6u3lj4p{g;L_UZjt_Q!)X5iOlQb z7(C#s^#Bjm`A3(Rq7q&X9~lwBEMtgj=6)bn^ervv7pG^!k%OiQyQ{F@V>{1ykG(8FG-8$n{ThS~# zJZ7e*`aGL{1DhiAQb|Y|$L$iNjwTz04-48=m@GXI^nHz)rlgs8F9V~^)xtjDIOCQeK}o`<`p zPad1ylIPA(Y?#HSPadB=J6Ue7tRiFr0jsbf=@4>u#fy#{nVing<(mQF>}iK!`0h*tM*Kjj^p%B3Wyk8fT{9>>5NXW|oE0073{H~?F)OdQ)325#Lv20-l% zV?Y|Sr!TGZm)3d9*xD)!NNYuYZSB%JKe#D*X`P4tUAVN)Us~rkvC0*u|F2)?wXcAk zR9|;Fsa~2mgpo%j)fZZ>0pl=umYvgs4kT>{FP-1W%Mt3Z11%jVELkU+yPxhp$=pxn z87G;-qp|su%u$gDt;acLB6^DxMpZMC$n=ih5>4}+VTyne(V{!@bBF!`(T3tnlIAx7 zaT_|be3ovQ5w2xTBynOn==BFPSa_VqCDa&)T6hR$10Km)Xd}jy2XdlwK9GBcoL|3) z&#E}JiS*4?+H~uqf}(v?CNuF(cvEov__zU~sugfvr7phW%nEOIb%o`~Kp9Z+sT)vp zO85XFV>G-^;v~N(@p@_@q8;wh2+edrDjlKl4;|qkd6tgwF_0_TA)xXM9U)*%a8`y6 zQ%?^9KKK%k6-0zP?jBAlh-Rxj|LO^4oxu=%v*ZixVRgH?EI%fe`kM1&-<;!qaCroU@h;FaU#}ZptSC(6AHz)n;um$erM@PS@lHLbypOiZTXY5);m=SX-H|QZK_?zO8PsBm z6XCJC7=+`$lW_hf#z-GvXNJW7x}$+@(J0!=h~8h#SzU&ixMpt@NcbxBmS;_?4uzBs zEqphPZdNjZP+rMii(hhumRyI>l81vbF3`2b4L+4Ql+9L9_M`SAI7h*aKJt-b zAuLz@#xmaGL}UhoqT)At#kdII#50IEI>BLmr%~oN6wlQFX4%JiK|u`Y<1Nd(FgXlH z&qORNoDEvFC0Sz4h382Nak-387ywYW!ZgCC4n^h=Iescf#Y+Df$umm9SrG~c(u7mm zVUJBu13D|rKO^p3?5!s043rW!(YPFa;q_w&GeF$Gu46_U3zhjh!b{&!nXfu#J3y$+ ze|I#u^-e~p%(u~W@KBjQMk@}LnG!}^}H@ieWn0fBpalagLoD@ z;;|1S)`}H(sUkBZv*A^v1F~Vp6KNSDf^24%W>G+m=&}@4Hw_9EGrUr~PGzN6J|P^L zbshLM>rmRLBtfMR0gDy>gt#IdtT1tRDs2uOkVh~_8_U=eEtc9%`DGl*a~MNKtlImM ztqh*JegV)w0JPa#SBojG7g73|<6*d`_Xf%g&5ZMcoFpQc?5$}Z^bKJe27Q@WSNkHh znu7+~Xi7HZWc!YNM*!HwzGIhKB4uLE8vWwh8HufjB=+XLCx`=Y!-5DRN-g2ofb5sn zx2l%81$pa5vjs8W=G%nqRSifIHnRR3?UtYE>@XLY$5an0Un zmGCTj8)P%`RvO)GMg&56GqQ$XdTvHcu-ob5*o%PXv`fHI4>ky$My(wo&l*b9;%>}% zL{e9jVc*6gv)F->5wYLW^bb4rn%}s~UlU!}rmF4+kutS1#jroP^e9GqaEUf157TZ$ z>`tOm;ZE#)Xk*Z6H&?I~qWJGM?_3pEczbP6)Z6i%*jHg+1K_YLX~4(F@#E-j#cv=O z96cdmL@eiI{lY)Ex&~WQAGXQJT-G??q+wjYnwuA?i*Dtci8`?r1 z9u$@|Wy5du00-7$mgp-iJ-v6O6xxms3hFai-m}z;86nP5*}()G+wb0mne^Z9KHo9l z0rtDkb2PV?wv7GmLufkqe)nTwggpD*^TaSRZ65w)?M1hkC{h?VtDho`t__^{sUO?H zNX9JawYjm-_Hn`>?+ts~rer9{gJESIU~{95u;h5XHaBO%2=2|z%juVl&5eL|^P8LT zHtvt%3S2P1=vU|vVZOPv)MKMFDmOZ=CYhU__gpla9yjRuHb7Uq8}sq?Mvi0N3KDN< zAM{hYVf;OTS$j_uzL|g*zDPGhwc_Bl{1^0G2izGMB!xdueRS`P20hMq^=QOAd?Q8~ zWVb>E~K zeaoW?TsTk(2n)qZu;h2@baY?!&(@kPb7Fside`I)pQLGyh98l$RhE6G%4IL!6VyU1 za39vF%50`IwZbekwPp%KLRuMmY3eUxAh)Le68(~)sRgu~*VM&s_0#B~sGr_bQ8zO6 z^v_+ydK!@DQ`1*D@WjS&G2Doj{+i^l{_LrI8PZ$zx4L2cy@1z*lKvkAyHL_jbZQ}H z9ew#>)aD3_0d=%NQMirz*u0K*^=Je<{A5FJf;uynKll6CaoNb2^}(J!bp8)I#6 z)0$excHD;!>A{<==u(q0yphm98s3nblE4b<;;#@Mgf8}E<34T`rHd5?p^G)~4XLtp z@hk>%>*Cw#mkeDjpiKlz6~ntI#^?$WRy3(oK1b_;+9{|X&3jtWx?jBsu}j6rDFtyA zS5B*YgalM?1~y)5AEw0H{nZ-k%Qz?XHPw8()%@}-48}uIv(qXgbM?(M^tO1POm8(W z%je=fs)SQi&&A|*rT~ZtF9u?Mop!Arm2ilJB*aMd84tbKuXhk{_4al7q{#lccw{+f zh|C!4_`;_jZ3IH#%Wg5uJo-L^uLb$F)2id!-gdK$jYRnj{fgmsQY_cndVJ+lv)M*U z3fg6;AMf85<4B?0#v8!%=gC4@N69`q{92vIUBDGIjnL(&C<*ETm(0_F?L5Cp0gy4G zY*6>3hzs`MDNtO)o#%^X>-S$C7pi_;f87~h5uC5J=dl-VcOq43XS}l#EOwUB-@bEx zixP{W1|mvUP%_eP`Q?D%UVl@(uhv-YwCBl$q6mxic%;)_n!If?s^RZL$sgx~R;$^X zM_@<=TP)z2KrOe|u+q7aL@TF0CaJ6DIFxZ^Jez<34UFAo~)@l^<6K>*2oCBQ}K3WlLzyt#M?2~d_W zO<<%}na8!irP_H|6Y)NBE6MgT_~Ttaq2kGvahvNP7OmP zW|%{2m^Ko-M5S8LUgBY@?Ug!)7-{>95P?d&x_P_PCJ^UQdynGMnO?W2A zJP$NqZ{jdPVDK0+@Z!J?&Z>=n>-n1el~*t~HiGY9;?y zl17L+i^+NiC>c)$BDsdKszK03Z`a`YOaIJ#u;SP1^M0j5*H8h-o8s+3ncxWP^+T7M;URicz$3Fcz-wxquxq;RQL z;qqZB6n_`P2Wb7dmp-0J(QVh$$6fUG4t#Xt5vogR0jQ;@J;ycYxYk^!>QOm$P~F3= zs}tNbq$6!!sH!9JkeGte*E?Z_k+G&iYPq6baMVH-@2o{wr%5QpM7T`UGa zjC(e#_~@QJZ(*6Hyh0x@pg`j}`goE)K0zOCWc&EqeE@NtAb-bNqq zq>sx+@G(RmFQ$*j=;N#O@lE=8K>;6g^zkHpe1bmKcLOyeSc%pU7q~JnqY1mQeY<{u zYwBL+bPocL{7*RV!s^m$Pm;RF7MvC=sC9bCNfv2aZt#ZMVq?SmM~3o>Mn2-;0@c z<1+jbS}Qc}8vu>_fkx^wd7me&9up1em9>ywVhibUj*uSk2q`ytNcqb{$_yJ)_Slfp z$%T}1j&HGqbkl`ne?y87=7aZ;4(Hh^7LwzPw_YJ_&pPp5d&OcUy0=_|K}K2_idB@5 zRiWw$ZEcr`deGrmw^kOLb-f63)vHs5y7ow-#}PFuH@Y&>KZ`K2`ZejkVX`y)7EB8D${SyDAn|0r3gRoZ ZIb>Ifck5za%?cH=(4;X#^43`_{U3<ksNj6@>@&4f~IUyuDVe=F`hOPH|xbMFE_3pdxzBh0AvEeH=T|xiFd!pr9y?JrM zuU4C_Y7ni)+p4WfcPVIgR^Pcg_K#NIv|5h0xBUxItJ|&wtML^mQK{7%)ppQaeQGt{ zO~pI)Ml>Po4@W_zQ*SkO_1f0jP;L0B)pBinytPyBGy>~Wy!q}&Pp{HveBJVRaFMzd zFWrQo^@(-_I1fK~Wp}=|Lm<##V6S=+@4D}z zzqH&4yl&(#qAS9{!Sq{$f+;|9Oh9s`c9_OnyAFe_d8qa>{Qq+Ne-r*MV*s@y4EVSx zUb`8w$N@Zd7WC|i2-@_W+!Mbw*&lo%lNk38TaZ-%dK`t zlme~*@{EFc&GpUb?#Ad|QG9f#YKM4K!>Goi&kOx{hAMji}te~tN5>r>ZOH;vA zYdL6ozIXp)r@zNrs5gRfuhI_uPJnkrRUW97=)r z0lv@ZF&riAF1F_*?-VGApq`*nl}95c@T%YOk1aI17bj3=bWCA>z*+`&nw4gHR%)+L z%tr0|YO}-!S*ZV*fYsv}s5hgI->d|YHy_me^MTi>p9{Qpu-I+*U;<`zo*%C@A40xG z?o& zPN`G#J6>yHAqqN?2U&*#e$;ITRd8d15+b~aI_LnUz4;Xoyda4(q{qD*F{D+E>J4fS z^YuoX)*y(68%)m)n@P7RTq+9LLZ~&+K#7dh-qthmDZ%$v>J8+1Furo!GnM(N2aq4s zG>p#0^y$v&(bVV8|M_}52V99R1)bQroWwYbJT&LM%Cvw^(xix zzb)SHR;FxIKb9{tu)SULfr4Wz^Mz@I@%^8R1M%?2GL&I~4Q@D%lps@!D?LYMh|+Uf z?w-9HCY%zz6T~a!>9LZ2LG)W5D^0665Y8l{CuqXUQ)5p~KIPp20S7q(Mc-{VA$1`1 zq7KV7*7HpmW8N9BeCE^?387A{9(ff%3dWRDiY9d9H^5MU*-&pTrWKcvmtM6VEjRp? z$cws5OMZI=EiSZ5$7de)FV>g3Fh7E&WzujEc{2}sWg(9{V>40&&n_;`)PnkAt#kK$ z>wIv3yVY%0XBxrzpy5q>OEU`V%;?MJ7kC%sxbnqk9cdUEoX$?55ncsZ%y zjV2^|j!Oc(jLZ!|rsf;w-#_l*-@&!?^-Na~F(8=pSOK&^I#7IMt&+K<&7s_K2DHBc zH~p2Zkg`o_#e|2PO!(CvCY%&ZxX@}7!x85Y-_0=TdH4@crKy=m+d-wijD-X(l{^rB zFmrCvTRL*&=(HE%cgidK=NA+74|8Av=B1pdNjJ^QYQ2;{J@aZ&ADjxClKAXV-_2+l z9rb0b7o3xCnR&S0d;vv=5)_vwTu9RI{0TP_1D0nv3`XAoc{a6B$2vfWFE|Py4Xi~T zEh(Tsm;4SqEKsH7gwPUh4K?)$!fOCM25~k0!|seCP6Q?SZgNS!_!enuD8nKO8dw;W z3FcFy4z)f?HixqJ)>c`Mhtx}W!^X@=6=qJ`uL$1;Empnrexr+(U^k*Ups5-aZ$`ay z!3xRm3H%$C$6zWo8q$1H)|1pt{&~ON@aN&)p`v4Y5^MRLedWzRA-em@o1a@phZ9Z-cmhc?8{d1()Z@;oh5%6Ez$CrJuFQ)rd0JMKRQPZ zQY#al_gGNvR`A^LJI5N(u%wOsE*ga;0iLU(83l~r?Xt)&gm-Vy!L&xo0AW8_({G@yb|3)~`dm^0GdFirj=B}FcEscqRs3d?Xln@`*D)SW z4ShBOf+_)xFt7>B6H(1yhIfenUaB|CW9o1JBFy~q$y>&~sgu)V-t_eGiQBy6Qzs`* zDwTD4wup&e^s}WomZjS(Hb%M~T?~X|10&QsU3mC;xek_Cl#hm1t6EGASW815J|bkz z!)uZ?CtR{7em4mkKo4ITpe83HNnpI7Cy>7StT=>N5Oyii?ik ze*46UTc%E)n4CI(+i@@X(yO4$}JSQlpz9!1K!$~+EC@1{x+sDJ9c%~Pv=JcuK)6(TYWwnIMl7dP)T9R-2)^YE|ahMNN6DKEcx#jrDTTa~W-FkB3 z#Prmyw;rE7aq>7Ui>Zm}6EH1qpSVrSy}y^R>)B+gedju;*7$GZU4hupJt{VIeYGvC zKggY4-`=M!fgpB@6`9_r&Db>F_i(G)#iD}tnz7g2T#S_1aD36D41Z40><0#-SvZ}; zpVl=Px(BdI-U2(V(u3hLzU-zivr!!Z3gj!d%EbFE zXay$3W-C?O$<-*x1FJK;(y$zWq9gsRsfT&w>zWYq90zjiHT-X4+WtUSEHG_i@Y@;I zG@vCjIt8o!Dhcji>t2h3`>iy%;a}1linIXw_A^KnJ%N4OpiTQEHWG&v;Sn3CInt#w zO72p#Ih!7CqRE2@cwu%=Zjglsuk7_n#haSR$OPh{11Jb~-s>oD2QjF*+bxQh3Kric zikqo6xHIxG{5{}P3q>UZ;~~LOtBCO7&;f+#aJbHDZ7ANh&}}prG2!2$G7aR*G%1H< z`wwoyn7%}B;L_rG5@Zfzv_ru{Dt<|Y-&k=MKXebazI2p@4ziF@03OjAtP8pC&%5k$ zvuxAXE7NkbjlHRM6p)0PSzei;{r;IbDkeLd=(NO~&W%klLDL3) zs`ECfzu?QqnGv;O_WdXEQQ~NmkBB-I+betBaRBTyipjJYW&|7EH2f!3k!w?!{->VRLE&~8{TRa z9-hQgZ77_DGq8Urg!mipozZ+6{Q&QEG!BuqAjnLa&AJPM|i4pF0NzK(5|g02m4n51`$i6-b8Y zB4{nqCC0>}>!5@XI=5GJm92Hg!S6x9Tr}ee6K!TrM8nNVS~?gH%kP%erC(vfU!B54 z_$siP5|r^CSF0w%H2glQEwDW#IyT)fARe+3baFc~sbzPP_LFj_S7T z(ROdRKuy|aZ-}av*(=w4{q5ecffm9?P%B)bzi4X0CbgQW}O{1U=+;0bQ2uy3G;{K=!K71>+I1>I7*>GV+P z(8V+0csJlkO9q=Y;w{22^Dj}3*}U7v!ghLaqTm(jyJ*y6@VpEiEl4I7Jg)mgFK-sR}nQ=2b9~~5) z{vrEWQ0xSEp``Q=m4dx$y8~HgYB>J+jWXJ(;Gt88;uaAmj9DKH{stA z+#}&%(?5r#G4~+RvIbzjRbA-;5TAF*+NIAkYURHU7Hn?&M` zTe9UNStB=~43OyM6t(RlVRkvZf5M@)8McLRA4)G@IEu#EYGPHlP_L{$qYa^v@DO)R zeh2R>Z+@qB9Eu4+e|` zB9@bF$msiVd^Kbd6%h^HjbkY65G0p9?GnHROQsE#x`iarF%B;9Xp1sZRtXir@jS*5 zVgS8YQ$SS<(FRRW9fA- z+<&=fQQaGIirQ2c&Y-Z%_7)D)Q}mUr5Jhx8UWBi}k4uw&-nvP1tQd46{i7mDxGul4jYJ^gfn z`H&jteK|$f!}~vjwtIO0J=|eGJ)^(2U-%g}Oc{SWdI#sx==;bKoE{g!Y(|m{i5CWJ zp8MZQwUNn{EK7QNJs7{96x=1EdrhjBv=;|9^X1s{Oq-b)8$^!H(n(XCGwn9(IH=Dy zh1kY7M*!GaLMCYoXZ(D1E|n{k$~b<2ldhc=Pu9X&2l$bt+oGyM0dhsiP8$p*K$0)@ zoG=Ofc>y#?@$o-$impd|d=qW=h>t(v4*Q7@{q>Q%719zh7;OEo3Dp`y@rE}IQYE-; z#?L3!uje3sK;!pEe4I_Wm!e#lOl2?&v|YdlrB%uc+s-9iQmvH;T8>JVNaJyFGIecK zPk4_saa@L?Z$ZO~)*q)M*i$$^z?5e;1`{L~SVxz|9F%A2mXOV=5u z_cAD7pJMcS!$@ReA;g$m)BACP>h%Vi80g}c=fr8q7K(-Mog^o%iXUc>;V79pMcyZI zHc0$Mr-RgA)BKl;^s|F8aL9mx7Xbp|LDMA5>)$EN4JzVH#$o)nt~k*66QOpa1&793 zr<{z&+pg=%uZfVnE%a3>EAfyV_tzXelNpfr6|R67=6yPzA6ex%U!T3tu<4ZQ6@MkW z{0m2y@upU9B>y)EwIiYIaeF*eZ*m4qYcEK6BW2)+%QZPX)N3}!IEuhtxLL@{ZjkIa zzDl~dXCvfp>O9?TQI1Ux`Pz!MG(7!fhawOelK3SaZttWCYV9{^(+YhwY11hTewSlV znUi*yD}>(!C~E&8&X}QNuJ$+KWlxl*oFdu&5Q^ybbEoE%tC#)hUh?NdbiU5{P;$gQ zANXqKgC3F;{TkOuvZ7ia;|hi6qv~ouYd&QAgUv_V)yo>@Lv+6G`N-lA90j%KBh4T0 zaE&BuKHfIid_3oBKWjc@`-9ELPq}(o!+eO&2b_=m;xdHV=)drbB(F)ko66yD;9Ze8 zL=ojiQPlC?wC3ly85vV8`rweZ-=yyP#Z=pYiEpsaSc`MV?6=_*3*_t3XREQfLMh7R zI4>$|rR_w^oA7r)6;MJSr++YbWfW#wl6+9* zqdYr|x!;nNv4?5)kKgb(9AZ*2sqhFyrR=uL}mdIybzIE zg*KVGHxXqZ;t}ALHQC3?)Ax?CbX5l4y4%rn9^Or$kA$y~BPgyruc8{_Akv+B_?aqK z$qa=p$PCAHWyy@!pd**ecs;$(kQoBj^~;PK5g|Vd^^+$rUh0q+vTCNR7|oLvx{+dX z;w846P_P4jr$1;|H!fU4`dJeT3y7!XWam?g;!-IfmUP8nAZts zkA4lQ$A2dW^9*20$GK;E4c_9YUO`~kvNN{}t$-GGAZDhCDF zYX{K{3$c)T?6-EXgxKwL$p(j6k$D9%MP2AKB;xpsI7%W8U?7;e%CRR(dab-1! znw1$f^CZ_{hvYJ~GlkcYJmF=xQ%ru1*wkyPm-~q@?0KqzDq^!=Y4Tw~_WN@B^Jzyh zwG?EZ*A?Tz$9(Bz*77%AotNRZ)7`47YqKX!<$Tv^><&-&=UE;{z8ntkojMk`}s9BZ^p6((A zEbKKQ2JOVP-a^A)^vWD(Y8Io?wmles8+z6p5FXyf0(6A_8OUey8JKkh)&1xv<<3ll|3GM?5I^EdvifhA<(po>4#XZR#_pOQ28 z;N5_7CgE&lFf9oq`e5>Zr5tVEs_#A_VK@@5M~bA(r?PLIQ8~)DPzj4lON|X`P0x53 z(J)5Br{!q!)uA$_?xPyQlxk{J6f&h0<{$|ibCx9uoz3v6Pd#f&VcGCrIn()Ml9CP2>x%iy zKh-rebGR+3GtJ1%uWemZO5EFhV%Fp+_Z?x zD>(7BDZN_}xx9RMO<`?$B*XwBp7J8~p( z)_bIj584&FLU0^m)HqPCobcnNhEInqJ9HurJ3mW)1CfReyoo%vZI0r!JW|v0-G)cc z*MkfA{QbCj1y|NJyb_Akaoiub=OG!tJ}sj=Rc{nnx--*+-AS8rs-$)d)H^j2Mu9wF zS37tab#i_bnk1%~g4DY->NHD-A0rAK2|p?cHJ_`M@P8N85W@c>hRVNz@GKSW0C53H z68=@st8)0it#|RT%A2Jety#QKeC?BEK-pD3Boi_DlDBq_Gv?@dS6!qu{qd}W3*pt>dU0}NJ9R?&9 zIYqA$mU?e*9W7{7hljT_pN!By11*;%5pDyj)kyPjsPc6gYH(<-EF)_d!1-IuUFP)&2a5^QgIAEuxz<{;%OokDGh2@ciu9!5ZEU5QU4Y@qhLo2pC(tWw+ zA&c{$K}{Fu$Mimf^98Ky=X|>Gsa`FzMRv%+`nqx^?~mp2zST@I=6|WZNYb_YdYQ%X z0UD%|0M;8#IAXP=XR>H6J?Ue9URR6<9&bVh=nb%q*e?4ppi0|dncHO_a#XNQ1||69 zcG(9D7MCt&gQV~m2wy3A^&H*}D6bOBWlah8hMDL{tnR4K0v=|HmR`$-*?6gr!<8^f zaX?sIh{hQRI&ymr03v?^UmcDs#VDUCUFfSt-V5HZrv32Cgqo4?_a%mk3(a>?4IwnY zpwU}MX#S+`%S8-XLh~T5VlwkzZ6PAR`d8tsh4)e??;3yfPTQz9qI zZZ+;5K_+vZqxw2~#i-J%$}nJB}f`3MTvdLu@glFFY=egR% zCrcj7KwMBIFKqD^>&WrWscSh&An6uS0Ef<(VoNv0&dwtLtO#88$oS$&bXZ_rN;ZXP08u5iK#fZC$Ony>f~FN3#a0|& zD$8)=Gr=@bdIBf=&IvH6A0&^)4Jo*)kgi#t8&~=3$W0Hh2qez`NWhT6Xn|4^b-X1c z*{Uxi{1olW(+m@(2U-{CrkZgXb8qfiVPI5uWQH!$6}AgVXoH|H*qlx4UK<-SVSdtW zHurDPq!^*PaZSQF{VhpLimfSoCC)4$i6-9$oH)7JU&Mc!iP%`E@#cDU8pkJ7zR`Fq z66n>dxB{kLo#OSxC#ib@1$%jSkeHXGXN@@V+5vS^813&RTA?{~a@p`tsb49N1Ywxo z*l_yqsS(jo2FMEj$Bya+<ITUpIWkflr*VL)b|~AHV|hdb!Beq?ILcrp7S9gk zTblzrZNZ?l^)@9dOk<4VeLH$ZzKtW=WT6cK4N>rdh#CWB`~r38z-f}84;q1F3z;-g z-voq8qTXed>$&Qw>_EIt+u0XAz1&gTp0*5CJB_LqY3JSZB=X(6H0=&+cq~T*d51d) z17hKA*1>!TLp1?}E3|>Utd{fQFF{V;!AIfbonQA*y2R=ncI_0nYJ8k-vz9&Yt%KO5>#$ z;lc>AnCH9j%Odlj2cwbhlQQDSlF@Snc&7$TAQz-cQ4Uj+ZuCs$A>U!mh_WDt=iMj+;(3mXB2ea)nDfgMjfLU5C)!NLWu$Hx_mH3?TD5()YqAA@ks1-| zK2xoHh#AAI+|uiuY+LYyj@kv)%D+R^4bk>FYK3A>6!*uwQ*ucApnASI=Ap2{p)Oqt zC;r%JN_5Mf2fBPmIAzN9iC{wb`NQZ4)p9waIE z_?EwxB0%yi+>-5hIBq*0sApd7&XeQe(&FF3#|zP$1FzOf{eX)al)mNIf16MY=&X4E zCWUpE0Y)o#jos~<&P+?O_0j=rU#Vx)XL^ydcc&(mT~@iCHO_vN%knm7OTFEW+6ATF zAynNMsb>w(vBcSJWB=OzY-|KzMj^-S6qbbqh*K8szVD*HM1I&VS(Y=3^wO_2fZ-i9 zwo9DaUq&Oq0#YCeJvIKrtB||EIb5{asy8d{&&o7aDsf>r6=u5o-FqimlKY= zpgN1jqf-(L>4q-ru1<|E)<(yz-cF6yBgDJ6>y^{Z+N1vHIQM<(#N?#to)$G|jFe!a zhZ*kF!+-c%nwq&kXe}dd0x5eC++GXni?zSQs}iq*Fn*7UGbA^7%4MiLe!R#6 z;%V(c%QM{3Cq~d8T{fP&MbI>TVn8%?kJ4!cIQEL4*PlJ?P zm&HhQS&Ts9pSmnYgx0()M(7%d!ivur#%yBW@3JvppNNZ-5nHu~EyD(Jb<*oOiU{(x z97M9NOq7c*>y5U?7{(`EFuokeVQ#|z<)_#zm4}helGS!d#!S&AijKob;Z;57lgimQ z+g;?i1zhYw*C~<;7UAwNC(N~WT!iBhgf~-YEjTi*E9^=srDWFBQa@P%6|AIK=I7sW zm3zi~r2q!yWdP@MirSX}WZ$3|_S|Ln572hcWdLpN5KDaLU3U8G9qYioq4{`S&42+2 z9(!3}Ep-dsRQIk_{p@80EpB^yJQz<6PDq-g)>7F4Mc%?}By91#W{yuK!*6iWOddR2 zfCIuF*A1N?RQZ)QpPElJlgg=bJ16*_YA5gqU zH2f-e*iSU*ucy{U4wi6OXG35Uf~k*q*g7}YFb7#THB7%e4_{5y%w!ynSLx~NV0@+P z?(3d%Iy@-`OpyhXbvrr3^sSA6sc(EwHe7HTE4tlOP2p4Er0<;*DxC zn~rcZxD+`CL&Nfo0fy)Ax{bioNQPuH{l%HZvPZOCj>wE>E04#t&ZC*yh|ydNMd5c? z%BSS8=`GGEls%F{CcwQLF^;LhRfd-P@fs>S#+`2he3<2TCU+)HfXpVeC@dRF)0JW-%kd5B*5nN=+7I`6|dEPZ1-#|^u~q(>50;q15F!V_G$_sFJ!DZak% zIT}^D*g;LXvmv3AOOfOW7zvEn|HXMJ`1lMPG1LA?VPaPYgX9UAAJP?z4k&RvX3)e| zrn~TY>N$0~@ojk56J{LVMz;kFiRoDlPvR-$D1E*~V29W_5lEpB5qSt(G|w@xZfxVauXTo@_WDoVAOw^g%(B62K!z&RwvN{UvyN zNWqmAz5d_ioaPfmio5?nSB#4eF2Ua06zojn$-`sGZ{_4AH&-6frwiy$P2w!9{x_gX zZ`Wp?Ap2{skUUs7B#^3@Pdz4k+PT}&Q`RXm(Nll@sPHS#cK?NAB=(-ADlSivndu0> zNi&m@eqY490i|DWY^)T2qJ0*B|Ao5hccj}oQg-%!edY*TOUe&KktFiOkd;w@A^?T- zi#*;1v|MU3TXM-<$VnW9CAeJgSFBq{m{H{EAg?SUXy^cwV3_ZK^FsS%Vh@8*!wj+G zBgFp{h}K@*CPODUK-@7Qf)VtZGrW^p5kh5$HF2hQX2rW43}S~NZ(CkD%AKtSHeJ(R zJUPu~9M$b|8HWcRKvgSrLY@M5xiUZt&DCec>49<7N}tn9438`Td3xaYnZ=j|2&Ehs zM7x|XAl({l$1ilxxr9_Opxp=RibNh(7{y7O!=|L{7@S#0?Sh1~gsK)H6+4CEq$4ZB z*^a?+(b1(lA)*yneChhgrH!JeP=3%5NA@X{XB_ieoI2j(s9lgcesrU#qgT^rh?zcz zOw8Q&DUdrc1)26|%)DfV3;(PGvBjt5ryaEmPRlQC)U@;q7j`kNeF`P~Q3_J+Rkr<2 zKNWvwwLC#+PMzG2(;;tCc&1-#S_nT)t&D`9l#S&Z`6)=~hARsa6AAY(uu^`3BH_d; z=5mDF?BxizoM6CIq?%m6oxMz}m!mNeqD%jYpw(}47@#Yv(pdAncKR{|cG`_m>mSpj zL^M2YQiUAI^O?(}scHd_nhv)?mXGdR0MX^6`&)XS;iD4(uHQ#@Sj4fKjHxLXUDD^y zg)=>L89sMextN3QYT=+0(5Zts&I`o0%66siT|8;s&2(_p9$^LKD{kculD_vnx?+~^ z-5yxdIi~=3Ip>n!61kU51}bTqm>0=`9RYl40?*8hc$1@oZ4j#QOYhms3Ko~%GlQ=1 zy9jeB@7Z>|8_;_u_YMSx$#Wo`XQFxb9PFf?`Z>=`zMl9R4$Zc_VDNX*94P-}-|rgb z;rCKkBjF>m$9!^9cHj=GA-w+&X>gM(aeEeMpi;7^(Lu5}P?{xK7SNGPvV`iATt8KT~{1%pox8z{k?-ytmyirxsWCLyEO;{<`Xoqhd)Ve@B}1;_K?7=Lu4nu zBm}no1yNe+F$wd(LVp7Z>z{X2u*HO$7AdTMreJX?tX-HeoEyFctrZd0Dq-I9)VmST z0=X=p--a)J1+=xh5#Ne{MI;65c&}piL`sAex`P0Bg3#W?@(QkN#;qihVYQoBC!Sqv zbv;Yr?-8UU;b$bk`HZ3D`wvnLA>TixM{DVx1tf9c{A}WoFir+@mfw3Z790tt?7DMv ze$#KL7aiF8=E0%Xx0#wDIBJ(ssYg%T${4=zarg58O31PG?K|Qj&e=CpPw1VJgLI)ko&wvVP zuMD~rP}|fi(;CCHY43nA?eqN91eg|M$H#0~fkA8b6tLU%JJU8pdtgv#(-;h|Knn)N zdcP^&J2#gk8U@Qv`*jMOn+64ENRp!Fs#v{opvlM^*NJ9IXD>NxGb$U-%B-d=Cna{! zh?expiv8jy9>AD|WwLFd+pJKuw7ez$A^PI7orG~Bp?Y2BGb=OL%(fO5`q(Eg zk@iVX`AqZVMwfZwXrh>Pvd>Wyi?MRJ7Nev>#LGrhQN=Eel386b9%y*BO%nRlh*(HE zMx{xb8MUoDEDEVyR2oRbr>Tuz6J*esEmw<%)Wg@ImqAoHVZl=60!UWnZ;)foi_@Cu zblY^xJPrtTm-&!4oh@ZLaiw%pf@sicdP2eMG+56FvTfY1peaVn70^0SjrdwVOc zS+@L!oZx)wP?oinEx)EKx-S^*g^_tWAzFT&+7P0pcTAd)S+aaecQ>G9F>r>Tq&C(s zSzIj|A`gEBy$m8*2nm*C5kRtJ`8RURd6MNeAz6@5p@?Ad%GF@OM+!E5kLjB0>nRHV zl0Y2^zbPTkrzW*Z_*JSQWX=E5!!0Ch6m}qM^u(HJ$dWZX_w|!Cd+AGttP#+zU)CJt z)CFY~k!yS_JEU--?^yyxFhTxhTDz&CvT~~`U-95qINSup3}%AJD;!>?E5>}jZWz1i;4v)z6@O9E!0MjaEiAG(1dsr51QUtB;7M`-_qD|_MPyz7~eLD$5aHX znoYJ4lHsMvdhoiK7fIM(2iVhV(o84$6OIb@B35Y!>38|wg2koZ#f1^W%i&?PHi$^Q zk9s$L7cs#sQm@CCLVlNZUR3ZV*^d&0$!N$uDmGOFoyxOpdQ}=eL$w9rxi2bsI}LE{ z7Zv=Vqq;qr83B;1sA|Qn6%2q}K`jvgNmJAJqJk_5!P7@*&DnnBlLhZXIjL2?pZ?^n z5aW9~yL+>_r$FbEL$c9~e7gX$=m~Eg@pnmpFplGOotl*wFA9QlxN*QF%IgG;M&bqCJ2h7_ z1?ag^ZwA7pX5RDB6LoJwR0=Luf@S1MqVsQ9qaaC+I6%D=_)!;E2g9|9EpFWCpt7*C zuTduDn_q!jZlZK|wOS{~0P;17>ll#Bu32extM=6i?SQh$&Us}XG>({JMCHk`xw)}% z3u@WR91djD%?q;FnWIxEcn3~Uv&edm z`yb$I6(gV%*nIPZol0H>$za)r;NEIP=d*h{!i~&u)fsA#w}C~CdIj+EY*L#@i3=K9 z;;Splf`$-oUZU`IzJG$+b%aZsh82Lzt%z|>XFrJSG!2V{za^hWEigqeP)xfE2;(N5 zRaZq^BEB%bwD^*D1&j1&CHuPtanZ2!U#3=sKu*MMCza}lQEDAh`9qHC1*P&wP<3OZ za$l5BuM4UwyYiuBQviI1`3Nb1?EJo{o2_sNim!;B}0g4U2 z|KgaS;&G>6aMUh1y?=zN*7Oz&7I*2~Ei^7WO8j?e%wqYaC(xNEAe)aY)UrZKqjvLt zgIX%klM8bz3S_ZPb{zgDN9}^B-GizdgIXHbK&TC`Agl-xg(d#05cjImLEH#%w;MCfr;-57+@xbhIXsbqLG#zU?UxGITQwv5uq zeaIlUWQ+^b5etJe4iptf@T(lP3nKXJMj?2c8e1Nc)4OTbeq^>-*lUn2%*`~WpEj5t z<`O-0961nG9L+69?Sg22(?+3Lo_sgDG;|5wnlhO$wIy!IIDX;!%w@}chEn7LAx$bj zZb$`$OKXT8TKNgbY!|1MRY&cDwDO*fqLm>rvOINh&(NCQT?hwdPCD{C@%%=87J2^v zXAV+&=6`o`VQ!j>(_gaT+?`y~D?t0J;w@M88jtq$^*}m|s|`4!Mz7yu{mKDbl431U zC7latg1r{-NP^uaiuBOyhy&!}^m>h>wmsks|J{wKx*_zcQb6SBwcFR~d9lc6?QJ+F z(_)B$E(*Le2j@LRcEIH?vPR|p{$tnwz!m(T1N1@Z@OuGr4jsPQF{*QP-Z7pHIoL9hUdc^vEK&lY`G58oSzaIS);%ai0PX$dklX z)G_ufAeJPS@EmEu%Hw*6V_Y_s<>YI4o1=O`GW#)9wa9E8+ZBo7FVP>?&2aB*!& z%4v9p#8r46(oR1PuYaf2!KRCh3&&1CdZ&iB254VN`uP*g4i=?N=9gQEuj6g12PL)4 zizI9RVF6so46$F$DQahk9W;6LAEE7@46$G44*O+@)n6wD#Gpn%JZMdD9rbDlQsj~N zNcg23w2>^j26KnTKhH%oQzgeuIkS>jBmvn3qv(kD0uy^mm2SI@dq!}}*K(^)H-BLV ztV|_1ow3{t6`M`M%R5$--gYIRQbd<}s}avi#XFE|^@o!34(AlLDKGpxAkmf3hq5KF z_NFa=8QSilylc6`ew3%bK0%bX;i$J%#wF?iq()<~={O-#Z1=TuKj0p!E#247{eb%z zfyp>9+hWMx54hV=yP(1F2&!5J!#cKF`s@enwUEdAWmkepG-b#1WR+0cmic1hV9uBa z6ce{_5_2gX%vSJ)S{)h8St!ViRN#7b5nxef-$HFG9v2T90nFNOEHD(hv=2J>L2W35!lG&t6y!+V#YDy;FC8H=O zibo~h{YZgUW#V0B|0$MPXX4#Maz8>R-lcFrxunM-*nL)@rplZ={5K56P==K4&E zV3I=C7LzKbPlhdiQdcZEoJ2_DpyxMCZ{b&|V?vN2#PH*IS0p4bUE$cwS%*Ra>-xj7uanlN zm6bQi?J6lRQ;;m&8=h_PyEAWXvUV|!-(y!QpK&t1-a3$Mub(wJFykKuHf>GOe^OJ7 zKc*|X^YPjs$}=np*57o7MO8A4S-ni08J91iUGY~E`g;LHIzl8fV)?rr6G1_1TJdE&0x5~GO;U^5n3s&JIu{d)B0E5{9Io9W*+04O~qWW z$O^8@;VS86xu^!*%xa^hH1*iTK+=ykGpR?m%6BC&VT~d6Asfnpx3b2$P)VRLq{&5|9*O(A@l{T>lgYXB5taW zeYe-P?>G{vmSNrNjeJ{F`5)|pdu^OIBBZxKz3)w6g=O3Gi8GpM+x|2(GT z{IBYYaiIYvg#3^I*&*reFXiNUl?-|RSpbvf*i3ouTALbIg05D&>-zTxU+f4Z0WDs`$oTJqbSr@OfKI9h#{ z*la7x>dyN!vYJV$%s%1h)*hBBE|r;?`0#g7Gp)>i3GW6}X4^F>+orZ?oHf~psh@mJ zcJ?05?(SE;GfIoe)a}w2>8SvCbrgdl+-;W{ok38!v!VZdjOAv64=xV{KM z{pDnNlpHV3x1c&jw7tq)Z(SKl0a2MJ0HC1S3iMKX#M{sP5F~7$?C+&C(`4-W znmvw}^rKTXi~}w*HeK>4ZXI+KULF^i4&wZ>ju9r^(nWW*AEfyf3O2Fro0RPjJ4S2! zsB?C;PdlpHQ=SpT^IBB3oYVz(wXa64^dY>&@JQdB#->%+>|9ri^(2q z_SR6@F`X9U;dVj@HbtGA7EE7Eip?DC_Ar#okWTY`fBj3%QEDCwZ`S~V0SsxS5YdQ3 z2WJ`5|CHv{;XQdLz0WYD1+42gq^~EHLV@&s-6sbu5yd zKxB$Zc}-0uyySZGBFXaamvgEVL1EMSeY#>?cxVapdQkVN=`j3d>O1A1_!oFLph+iE z@+(BzW}WDOg~fa2IP*NH|A@^Hy4)6KQXTi++6Iicn};kg4p}HY7Epol3+k({qUzxK>SL%?RA0RZWu*gyP|7CKZmqAFEUXDj ze{oENrD+P?+xfTLYkzs5^o@pYSdym&mVT8D&#QU1K6WK#RBF*B!%J2bQ z(VaoOcR=e>g{Hgk_0)4p6@Cxi4X6qe=mRe)PrYcK72$nyjCqRiMllK6FYlF8etAxf zAdD8c-mmRj+(>||Lg3tGjeVhVEJ-)O>7W&~l2#@z2}8ZHG~Q&LrjGI8fFxgr+)JdySu*5Z=*T5Qo~QR2GDN_-ei<^t2XxG31jHRC4k6*ErjnWR zqrY2MR4pbwUcwA2&JB%IGTzw>NE>o$((SGmElYPbKP1J-hvY;KEJi-4D`vQ>t#KuU z$gVRsk_a9TxWG7!v!b z+x2(;3ISrhNlwF89nfTg|78KsH{l)E{_qTc`=7ho&+@m+_7nd0O_ORI_$vwjrk6O- zzXngc=(fKoa?VPAap`F{G#h>d2ubUr58&N^x=481nanLsBpPQ;^z+nDzNbC@DZhH2 zE`~O$=uBc&CjIX7!D7AHBriMS%-JnoDr2DqZ;TNHl*~sg;?iDvTquw%JB6|(EZV3x zJFTVDom);9oud;`Y!t+2n?jaO#WA1+W)uM@ST{+^lMYh01%tBQ zsaMvmhcnS_jWnm=03*S?IYu&N`eGCDo5RwnnnB0n z4D3x)N`J{gvrI0ifOY*g&tY|J zw#d3kl+Cnz`mdW*%b*$Dq%)J!Y&XYp=8rQUNts0;-Y&9f|ssi%Hw-MT^K?8kWrol^vx z>%0r>E|Wr5(PE_Nbso97IWZ~NRxV)|9k*;;Xtj~^jvTad0~@!Ks04rJ9seVGE*$PKJpb##c$dw(9A^W_?1*?ia`vlYDJ z#Cjr@6uMEvptAp|hV}RW141r3fS?Nqe#o@wAmwkcss?AvDmMQA}-f#0ZiR*V7UxQJczNuOKVzbL6jNu0IqkNzRGlIw5& zBa}+Zg8}@_UvpHqnJ{C2^c$!;xWD1ng~kvgKqj;D{5t638BxCJYs9WiULnx-YrFT z`nASycoIYhNN%Hl3OV*ukd#o_g2deE{e|I-JG~?CluUp>LFRRN6dv&9Mu1Dr{9}s? z(FAVR9UbGFZG}Z^-PavWh*xFk=62@{BHB-lF4jiJ>8$P}3lAXxzHw@_9<}EEcD-`C zS$otU9dGd4sY%f!X;ySVx;N4K481K)-#T-D&{{?~CU&WD!oC*N7i*oF#pNZs8Ii&Y zJ7Y8LV6ofq+p~?vOron9?#Y{)^d9wR7Ag_K0dX&xciXgAYezHe@R**Q%(-~_1~x@z zrI3(3j?*Pb9Zfb0Zx(cFFj@K_=sOxSEjef679G%x7cB>s`a-=zR;f6Z9*x7KvrNdy zD+d#c6R7!gH-Nh<>PK1@=AInwj*gF>AAPC-VLdrDIeudDsUp-hb@KSkhFlnZV$CEr zb@G;(^G7SKrDcRnAYc_fJ=%nvS@NPIM~+Svr}FiHaB^d?uy#fR8*U61)(*m5xJDej zt|{8kuSrzS_Lokv9$chz*Aeoq3kvr=bun8(Q6L0i!(W=OVqrMrHM~2$6O)si8Li>n zb;>(FSx87u-Lifmc?&vTI}xAQ007Yc+5y-AHF11h7`Scy7{F|=83WRoJ$qTtU)J-M zv9(bakd}&ksn}&bKe#D*SpCO1V{1 zd)RUfU_Vm2E?#Em^q>vNltWTQZ>h}=)O75yWbI_W0U)||GUw=h#!jXHaQ!=(BO<+3 zpMA_k^cE+KTH7gOQMK3}rU)1jHF_gIx9ATD77`E1IloZYIiz;UWcrv$SIh|4vIdga zu^jaHgXt`MEA^X-`CP)g0k`BVw8878B0fdqydk$N$CnrJSrZ#bkv_Rfi*CJDP`0evEp0FGlD1%vi;X2fm626;|F%rH@;zVsXWyi-; zv_p$(hzQT0&hI{g^b8_)hhVZ)q{Xfqyz1# z$f*Yt(ldMp5sCa-z$Z`oh3}x(zupf#aq+r5Q1UBQ{wN4-+O@mxO{?Xahd)vRHy(xy z2x&v2RSF3I3@XM*lF(?;^)loM@|IfFE}U%QG#8R!?ULuZM4{dY3_nbD?>jg$ts^Fl>n1hhW@UuSYR}XtXznnCoHNhAN8o&g_Y^ob@N59 zGL?eWz!m->wZYg-NYBkc8F!ux^)Rm!L8JOLWC#D9g!BKPkMy=~W}xWbI4anBUZGjW zx&CFr;xhQcHG0F3;U~~q5lLSg3Molg_{Y?{k?#VbEZ;wgFNFdwHi2;-3o1BP))D90 zRQeqi64718-UdY(AQ*tX_;B`d(t&yQQ%A@b07fkFJ$)RyfJ6a78#xPJNnrpNd3R)- zjt|ie05&j!iXU|zr@aO88bUQxYJPJOw^Jfkfx%D_4WwI=z=+ELv4Mas>u$3`w>RPy zz^eH0nwO{pANM)lOGBX>6V3$F!Ojw4OJ=#1VLvF8Kh7Q%kpGMa~uNP@4|`N})ElDcY8Ko)5h?B^ym5`yBYLO*pN z@8-K;Hxa~F3cHQE-@Mmf!C?ejONtwMtMv+nA3n111X_J$f%NBNq&6o?_dqX`I_q{? zOHkAlv$x`1pnIQf1**=RdqUGg+oEsi%_i1j9Os87mi#7y_D~xedqPW+ipDx_!K1V9 zSoo2OMVuurf^Jo@aZTMWATUygl8M%#mPObfH0ouXSUAyaAO0MX)JXUNNm=>UJt&jo z>z||=Lb3j|Cd)!APDRB~O{40oR*I>w1MbS~##+l-@Jn*S^Qk4J#XhGi#)A&h)@b1u zs2veW>mHjXaMo*os=FOfuNip5KcO~y_1d5wHdl*=_`^@3mqBy|A;QuX0!Y>spOItE z^Q%44_Uj1rf&3MB+4E9{gtqT3)e$E_C)V1K$PMU%CCFL1RzeJr$_Y{`SAzw=+aPaR z%|BmnwT%<)61A?UH{3hI@@qH!Gtk1|cX>V;RXb$mv`JxG2$pHBFbnymiNZ`_mi)RA z9l7P#7=6i*Ujo|o%dc{;Bxv>#UoY(|zM7fRYqXg3LLIH6uiqb7Y#dS#mw1I~`DR8EC^Z)W-THm#alX_TjDQWe~|lc(5dw z0Fv49q#Sde^gCkXaiv zN(xz63WJbPdh*RwWl5;Fp(D41dIx>UkWd2JgmbZ3{g z9M>P)vsL}dEEyjUMXheT zf)r~vQ`ei~-SQmvtbBha-l^VjF10f;t)$5(8R2RRjIZ0NH=+qRk&rD5Icegd*Z7St zHU{3gDjiOH&cxdngQhsbwTcJ!b9CUF#KR8J%`DnJhsTn9?6wvED z_mDTug>PxDL@ZW;Int_U#rBRr4;H9)YO4=!iw}dKmS#0? zY4B&GWt!e+9lE4nZ{NAjE3CrO_e^ z-^qEaXJz8*XOPd@C|WyEV+WdYC+IJYggl*7XRFAu;kYpvwpQo@zMa~ znRs*1JiiJNA0yEtNdmAQs0e}YNJR*m>GwcKH_SRenEAFU8;G@Hx^yKTbdIgHj3KOFutCk3Wo`ZoHk!()kstDN3K= zl4rQonQqOa_tZdbC)cixbJdWX*Q}^&+v6cI1S7Av!V0tZez~AlI7(5)Tk8>&-0CxA z&}=${E)K<4X>~{bDq%~*cl7fd{X9=U2TJ(4mVUm99}IYR zw1Qo;rCGVX)jM#rQ!;s)iOvJ>;mj~xZxHnD&QX%QSR<0|fP|&w-}03QJ@oSy`guG3 zylyXkX6ffw=;zny=kPxKyo`S6#;cHS#R}CO6VF=($|pk*@cwz zE~IQiA!Qs2DFs1DX$nG$dadMSAVS88H>BWIIUzXhH=-QGDOAYPe5;}L5f?p>dZ|lqPqesQ^~#m@C)#HgCQ`pT z-In}vMO=dUAzeMI@s3IhK7QWsh6y@+k8lA&YP@MR{5VGa;FjpEtB;Y&_uJ6!QmRnL z*KNXNLI3bWVN-)FsE!sh>uDk>aDo)^ z_hXXzoN_%vCczln3}d_t@|skKlrJB_qm(c71@dJWj6vcpB)$yd{o1m#Q5^5kuURpd Ps$^_RyNufF&QJVb{{w6i diff --git a/docs/_build/doctrees/environment.pickle b/docs/_build/doctrees/environment.pickle index 36ea70a58890e988b088d73f8ec3dd1b30a8c2c7..48a0b5d78ffc73c729e666eedbe472e0efe5dcc2 100644 GIT binary patch literal 1685223 zcmce8YAC6@HA9M|sMVvo9zDhBt}0elcXKFFceAo? zRc3WoW=`JBeo&@t|5%D+CoCB%`M-aywO9lG<2C$(VekI1v9@9CAImUc_=jx3UcmC& zyMhfYY=0*r&b@IW;^wKmnPWnl?#_Gf_r*DJ;>3v)uYc*eKl{|DKK&{B-}JR&*y;A4 z+{pWnx}!n=H1Chkrmx(ZbbE*E-cNse_Vs`H>?ddMOrLEHhi6;U7Y_&R@hHy^yQ8z| z^_%yKd{o>#DIVV(J{@-kef)7e>K@$0TgA=nfY9jg^hI$teW4h&&4+Kz{17j;2mPb& z@!9l>D<%K?g;o2YEY_vLqkJ^#9s>R+XVd44d^|D5%%6<&e$gHDi?bi0^rf^<#y47% z@c?Byo4&~^z>nSj7?K#3oaNJty;lEt(mKu|@rB`NaFVy7ofoWdXVXjV!SLy*d)&c~ zufO-J?|$c3u6-{*I=c3t(;c@S=FrRwAn6S7mn*@83n(rX>uma|v+0FV-pgA>e%5(= zdUc$i4tuR}USz}8xPwwpU(Cwi&RS5#U@~gwSur^}>OMJ}UTzP1J(SDHIK8|*I?PA; z;aV3Zg?4t&rqA6N72~t5V*27~tAKQw5&HRV|1ihrujEhKy~$xtY&#o&1!3?YG7gd@#Lg zer*>;cGT^mmLS*5_}5MQ{Jk6aJ8JHy5bzcAW-)G!yX{g37eGTl;Q6ccyp#8a*#UIc zZxPKUTO~%atE9ar8B}V@NA~ct{RxjJ_BYr<=a;81+OKZl^|R?4_8-^Q+)H3X^>p5v zzHr*=Pg=dRF}N?`?xxoGvr{y{ZvU9X`dnu`9v0ud zX`0y$+wyJkH7)_seRdS_2IYooZjs~OC z))*Y`OfMAHxL}8S_HWm|N^KagnToxz(LKIletLe~Iv`89xKDqYpI&Sa4)f~=y+QjS zzQ5Bg#wa>HnM_}J)ap&3M{smL2h}_a4|KNmM`xWcK~o+2%NIIdoIXcIG(Ug2^S1r@ zn)}Q2d9>fwQ#2a$`}C6eXLfW7W4CX9*8VxY4E|Ox&){>6;a#x*F3wu^%gK1&PD^M)5-9;*5P4xH0hg$4ig-q?RD}3 z3jCS<>J@t7bZ|I z{n&Z8^Iqp6s$%+D2VSm6o~~39+?Fe+lk3&$oq@6IO0=Kr{Jh0^nLSx{0B22p)&73v zVV)1O$E{HxI%E3jtHoqE9OdvCuNNPM-)*hUm4$vqe7u+G9n*zTGpO@vs zZf|hR8Zka53U@osj(RO{J9S^ zEn~uG(`P?gLyu=P`iB49bx6iDOfPY}GY$8dlNP+}MH5d@)1fZ?StuBt96ay%ET34s zE5_xO-9zW|wkpi8-0|N2or@*{`qcC}`kj2t^hNWA?YcUD(fJGd?X~K+%(H9r%)Q?o zqn*OXo8K;*_g%jaS7v^+1!7rXOgXw1^Tc{*6rk5FItUr~3+J`V0HgCo`~J%Y9)V7O z+&$`2jB#Pof7l;9Wr zUiRAdRa=VTfLe{~&dr0){mui+Xw}BSg?MRdwJ{#Foe4i{L2b$DXT)x<8J4dWh_#^P zKk@m|;4?H*>W!Tjd&9_i+H${VkGqG|Mm}Y~veFnwhsH>qShr7|v8W1IbY^3tpIJ#> zF_>O|O*%AnXP+P@g&R3QG>O`CPhK_OJRWtazay`VZt+C~g54kEWyBKZ`_4By-*j%# zbi~H)IO4GnUh^J!#%EoeeP)br`WY9!T;s^Yg)in!7g2$KoQ==%zK!5)T<0A0B|`?+ zIY2u%pf8zUj#`hpP=Ncf^J|@NnWvo}c7E6X<-48Vu1Ak$piG4)LELJ?MLYHpy5Hk)pJ1^KYra{TGvgr*=-wVWInaesJ9&E zh;m>64`B+={AYj9LEA{xHv{vTQ{u4K9XtE@*cQb;prJr!dv@5a`Qi;z2xD&c0a5Y8 zH|;|c%hT^=JpbH{F+7C@zRz4JS;2N$~KschZFR(Ww7(S33goRt?{CNMx24T0l^=22&U||`fNu= z{S*&op1E<&ee9HHM6O~EDTsX-whK#Zm6gG5jL56LZF&HwbP5I!t>-|osyeZvQnx{U zHS76Hrlu&6HE}F`k@p8Y?&%y@i7cz>NfBMq7;MBnqJjNpM&1BFI;%lkFz%edQJGQR z^mjRwZy)wgiW}|TU~-6fWR%~4{%*GL;>}+7pt$M2y7}IXZ{PU#O*2j$-#96L8})+F;v)9E{gMp)T=)8d+(r4{NC5kaw}f> z@nN^X@bszadY}2d-=&v+#4nXVwlwT1UOvt-w0ttAP>oFC>}S&p?kCghzQWHbEH|UB zpPl@RNKa7j`w~B!Q0Mh=`TJ}9JB{MqVAXXQUnn0{-eKGt;a3V6Y)|l6ey2xn2QH~! zK$kR7|NO?iJ9n;at=wI|_BYn=u58}-&# zmhogRKK!D6K>or0?G&R1xZ~dBwC^HIH}a)dFfu*lfb;YA{qbPf%OB;v%#HDAz+&Us zH|z_c2Q}q!m|j2nOds6>RoCnGGxLa|UId%yo9R*Kw>!UMUU}2L;<;`P4$R}ru4FcR zS@%(G|5#bCdFGTO`cCt}r2)_%wo%E{bGY}>;1L|P9|pnpRq_P(0R?XygMYsId6a*I z0qZ#HuTfG9T}0~H z)i#aTFb)S+_UIcN)qbvR2EZAHx#lrCFZY6Td7o_$hc+mQhr_0TubLN<<#~f1)t2ZL zdWxQJa-8)BgNF#rKSp0lExmeRYK&65{Ot1uq#kBSdD!e85_Ro|aIi&(CHf5P24-fG zc$5C2OIctHHN8|mF@3}9HRF4nyN62j)BN{~hH}79Z?yP+6 zbJc4Og-3zYPrqBecC~uV2DK%C$Mf(2%14@oGQk&Y)P22zc%_2Ci)P550vY9}l#7wi zKU;lkQyc67J}x0XU%hhL?W5Znoo2nfe+++BDaF%S0S^xkb6A{p{;~w|%4ic|{==6m z1~*i=?1mQaqqZtRzgWFTp%K+J44y`%XaiMQJk6J{**wdSDy%mvEF(AqLK_vmd~;Ha zZXR^|H#^zbBQmN`qm<()s5lW%t4*dhl zq!xqNfu_Qc#)G~-o_+>{xYolg$0xlEkp(5PVVpmkzBELxn?{+&|4*;+(C_i%$NnS^ zT+L0qS=_|r8GTVE?qM6#mqtfz4+CRVI}>EQ*o|&JJ~9(Q6v)x{^tSl^YPT;&?wvoJ zUWEl2m!CbM=^xSp4GW6Nf&BHwP78ArX50YlpT22)9<+kIFgjl(1IVu)LeAIytS(Qv zP#DyCw)3xiJiWr{P-q_cvCdykUoszLoI9ROFT#XPt0X0#JVd8|d*#3Vzb^gxH&*_I zlV16+Z++&&lauma-~KzFnoKc;LW3nFCMX>5e06%+IVy~wXkOIjkWqhdD$kO6|LNJ^ zI@>)n6x4o3H*Vat|97W*Fv2vz%^f?h{S6v*V`AG)a~BxWUx#~sNJ&WiNR!^z-@Ebd zjrXn(pW@x?r>*v&cyj&SU%m0}yVsw5=UdsgzIh`*K6bC(%n-G~@nop?vp*@O7rT8k z8GCqk@~05!mqx9}E`q~VYcwXxP@R6Q@tnumVq|afAZ(}yDhsZMd$64e;dD`xc?6RDCg-#L3#52 z;;ryGU{6I0FyT3a$}60x1Bls(~|3-%+2K>{;Gud#|Gl$ zf5IOr<9_Glf310P^1s(T_-AzwjP9mp>9XzuN{mirT8tFL|I=%Xp z+?EC7H!4e{-`D1*j`aI-Q;7csTC@sy$v`ZA4S^aDq=f6I; zZ0FSD^wL)_XrYlj7F5}|r0R(NwYga%jsB~%HG1;DQN>EW6EJS?C#mqd5@XpD9fMTEgNB9pGaAGNdTV(JI zg3gv%mxQmMJMIk*Fv5AE(>=r}0e`#VV9FmZ+H5aIG9SQtZ9p~X_mC-{zKA%vDx6c> z-vuESL7EBOv*|C+T-kcljDyX(%;|HKjXwL}vbB{zH!5!skXC-o*4jdT>}RGFwGOAL zzjTUm$ok_{lLQgoXN;(9qVX!`%Jmy@F`(bxTVWncH%=jQFX)AmKOX?@)r zb8|(u^s0eq(APC>x}Vv_Nz53z9B%dGg?oYuT!8}PU07W$kDp1%1NnwX`sT^D7G z+VD5#E<&XDUu_CewVvy?>Xto*GgdyrtQ2x^fmfA}Y<2u_Zb8ml9arE_F?ivUM78i> zZsw>K_M1X{;@1j`h#c9U=Dv!kMO~Blj&7@)mvPE zIRx_)mTlQcld^ErS6noWys*gx(~kxTL9iFt7SmTuyo*^&h@^TnT- z7`Xh`WO{{yUVP!UVIhh9D#y6uSM2SgX%3TIhCI_xw+VZCnRY^C#naP+0VZPm)X}}L zXa7}({*-RRGVPXFG zA3~6=>C4?>H}~K9czP-G($do_Sql@Ot5u>JQ*9Rp2eeO%G}rm^2bc`FgykS^7K`M# z;Qm=Yzu4x9EIg)9@P+%u)X5e87fqqiFO%uBSp7gsIr;mrpp%av^~pcL-=rQ+{&W1a zb@E@(f2Ws>%-f@F+Lm^ew?XVc_){~V!@sPIFr@_f&8PpR`LEH%$$y2ve|+*^dJattlK zU{?a2P2WBm4Nh$~>YcA&d#BsKX5V+;e;rn2k#1Bk(t1mPoct3MbNZ!YY-VYVi<+;m zy06_^;?uV%<%F#)lnT7|j+ryKh630x!2BA2TfHW}|9P@u;*H0x1Z(;hl$UU(vMrpQe`{rj_FkD~`)oXTNF0cTv zJ+23M-KV}`-xdgOnH9_R0I~$;W%2zlo=mVH1FMv1mM@q z`c^EV8PZabY;bf`gZDXy7rigwz8XC4*PyY32wxXqZ_*0=R1Lf3Q#a_j_~J`p1sjC2 ze%Y(iuc_*FZqchA`8`*!`QE)O_`gUq%C(=r;#6opr#Hp7Z__W7xT^i$ZKpM2-{7|e z##^KOF^snsfz8X6fZi3~f3e8(hqYge^3$8*+qa^|A(bb%6HVibW9-m9A2+=zxS@9} z3^8&in!**Qcl(m~5QQF7L#pdZUv{7JYvSXtkFl8)kyegXBZt(j&S*aDD^s5c(0AfD z>KYL{^u!kyGIwFF379eEKbbyrLc!KMC;tdh1VZBrHtwk6y64QYAn%PU)FUDnVB$&p zEk!>c8|04-@W&Gq6L$V~^%-IvtGKhe^+niKZ$ip-1o=-f3vFVmlfRRO zh*ThS@;9GHY)GXz`9JCXi@b%`eh~&g-s^vzc%9AC3yaRYPyTQE#4YJF1!B+Ty>CMs z@1uWi#W2y3EtD3&cpv}2(Z^iRJ|zb#-iOaXEl{4vs)Qrnx6eo4rsOoChxgUR=&Mvw zImYllyc~VV?ZcO`j3vA;uSQ?a4jH^pUyVMMk%IT?8}zDQ>ue={WZ=F3*$A4u3j2X` zcitCYh`x{%w(Ivkcq{r~Mi1|Oca6Rann-p9Uwd$0cry)G=A)hv2s?~9w!7orn0ov`=%d(rFZKG*x?*P>6jBK=O*``|m#2ck%( zU-e%9jp%iOA6wRMMIQ)!(|3CKE79vgcj>*mM(+l;6!nna`?nMCb3>0it)nB~@qRDy zEqj;v+rIzl-T2eV$v%EW-sea7 zlfTA){s_mF9AIn7Mf9n*1Ss#*>*c?&yzl?OYw!3UPG7Q`xmJVw|9H4BxDB)?&%Ho$ zCBQE4nJuN)c4+BQRL1A=8JAHM?BucmoW5=siCz;$`Xi)^ux1QX$EA*qVx4w>dUo>9 zQN~bG{7j{EMa92}!twm{%my(yL&fcWpI&yW?93*K=_?!96if@$?)AGLt=Sc?SV{KB zXGo46_UuIY$(sP2URlGz0ThkW7lmD5H+>EJ)Uibodm;=xRw;L388}}BClk>~u0{X4 zj9i%AM__gZPha)dzncZ}cnhb{eDB}<+W(l5T|M9a?xWVonAmHp+u6pw{d>FX+1lp) z&ArX-Ey_4q?O}E4H*Wm;+4L4KX{NV zeIo%n{q%KICig&BH7~su9e>F%8+)U^Iw1 zblbvbeho1QBY$@1=^Dni`$#cm^q(IN`gwM5e^oT}+nUZeOI0zYL75fukauk$53SSp zSV|B^h9lX4TTVc$j^v2GtFS#728TP`7!7`$_xG^IJ2K?o(6of~f(I{wm;%0PgU_mp z7*t=yV`Ps;fHBL9J5O(?+TyQiA|M>8uuBMreRJpOrrC^^SvA@2yb!jewm-X_tztYO|j+1le)fb$s(-ReEbN7KriTW4HIRP1<(#K6X+IYx*s%a>H0B zz+#RsncsI^ZkAi%&cMWGg7Hox#yVu?N3+Lx0LSW#o5Wds#F8JRNI2$!F8A_}(vgs= z%QzAeSj++ElJt+Na}oZrgkV^B_PrjK8^%_qdiH|8tBlNpVeq#AZkFCaqKP@-`hK@+iMcNQGGj{2tQE=jqrmSAl*<4YS7Mu zmgm86;n9CnR25^Z{r4E3dF`wOVPvQsNdwxD8-uG>gY#7A%L-pWF$G#$M#J&qfj#bX z1IKO(^@O?2?FLPW$vw82fXCjm;Mi=u|Hfha``9^e|EQy&6R3M73w@ z*wjBPx-uG7#R!x{qLPkd8zMh7@FqpEI)z?g{GTm&8IMeXaP1M*=Q zohsmc94WJlWjTY>?vKr+Uqm!-1*8#u&P{Vft9Lf~!klSD=0uA`)L0C$mLp=C(@_Z= z#(&M=Q+5bzhabfztjAN*gg22#@UfT&v0=7Z3^2ila3pNJm$M#_^=_$C-{b@F=W@hUIzsR03#w4!VhDN zzwLqW*wE!;tDTKqP3k$h0E~IazPGWz46Z1yiFxf?05Jn~XWyUTY>%j-RsSE*1`moE$VTnD-UNr*5)x7fFlM=$fri?k9g7N8 z{f^d@>3}rg~x30oy2CD z1dHk$QY;RK(b29d^lW!q5UAdvo`9g3196(+sMD6(vXV4D8Z$XvZEWw}U6FRsNLLPr z(UDgpIp~;Op(eEtOO@ZCFfu$eBZqaM_P=%Di5g%litM#f4G1)r1brDvvbnXkxr-($ z^rR+;QlgYd%z*J8F>I{~>~Cq_IfV@jMs+oSGH>s$$;RBM1{jF(X(At`c0Y%eta|xW z={+oFarVErd3Wc|oQbCtgTrBTr=z|7-OaUiss2VfVj#wMI&wcRMMoYMvj{1cP}7!T zue2oB0v_yc?yuYmYN1gJD3Mr#OPIXHjyw?0*90(^;?G4h2E)R5+)wvcB=R{%V<}{U zVQ^^Ou0+n>Utf{7qegGoCWAe>xU$Jxe&B;K2l^TBXZWB^>3`IWib7-&nGK^e#|AlL zsnl7|8Du3Ob0Om3gyg%oKHOi=K7d;km9Ns(W;i{-1l@bfrt<(3bl+Syod?KtNWZZ% z@2>nHTYVqZcYo#1J?SvjB^R{{4M3UJtHTF|bBT560WuvX=CN32W_wUYOqpm3lsT~u zE?c=JeX5!P3A~a4U_cs)-&((oaS;Oj?FZTZ`@8TSl0c2MgA76nkNMC8Ww-8ZuYQnZ zQoVP`B#@YcQsGqpcUSg45KUMOBSTGzGWy+ zoSXn+2GX~Cu(cgb-KsVoBwKwP#;3WN^7nlcM^kPgXie&p$${B*RgLd!Fqsw3n%~&n zTz!9a`|i%luGF3yywLn8Xk$(vkqJFD?(YUYpQ^@mJsBLvr=)Du9@H>0X<`P3aS@|Z z+`GATdvoJM(TY{@u(4Gz3~n;XAMQxKtGLNR?-LB;(md6@t@?gN9sLDfGsI#Ztf2zW zCM`P1HutjkH*de6?cLkm-M)?PKq%`2ZL}N(H#2~l{)>{H`s*~invJDLV+I>dM2W-~%xMbrbit z?(GGhZ|)A*VK6L(D5rzNtc^Wk<6Ib}T5NoWD`Gtd=K(Q3MOXB5{v>Y;bhRBP(G3h^ z(|p_*SGsPkuj4xDXn3h+OM_+{Ksgp{jcI?Ee7Tt%fVx)pRyQ|o94`b?qtVEieI%9% zcC=DF?YHf^(n2t(0!3YpfMN>BaLdf4VMQbk?Dl8TR2d=$ABhQ2FXbkggrd{|!mM2~ z4v(ow7Fqz5pwYWc`mnNIABW*#y{o+TRVYfWic~LDK`}nOWclNR?zrq*7aalF0%2*sWm!&mgeX(G-qUrH`r#S#>B3jNy*^35%#~NpJ&; zuPHU@Qpe!~G95x2+P;*qEM1gn|59MKgpEaBjj+YCI1h!(jWIfHVZs`mdv+0Bf<;|8 z68WkmBvWFTLC-PaJfaD6=~L8nVmuiv!2%ZS%}Pk5#%%4H%~?UsU^W9gsp$G@->}q% zL0t*$VZ?`?0b3w0KQ%fm^P`I|d~DU{&e|1K#6Hz65wiAl-g;PfX4}MDW9Qs zMsW+<@Ss@nNVaibmykhCCDm`W3M4_Nij7hU3N@AuH(RBE$Ji&amLCb*R27u!*KX$w z#R|f>ag&xL()Em3#fB@ZWEZFUAQ^B*Sj+<}rR`7&4XG_4-c%Lnh_JCCsu6aytt!BV z0o}#5csN2W6}_qsB8n{oFjf!ZfV=tWie23^7_FHjCPjU#5oWMRCxypsB$UUt{zNdT zRX&ReSj>Vp0T$d}y%f`}paedhQn)01hVt>vXfVW|dzg2(gkfx|0sb-D>kVZ0sn1u@LlglZsVyDCX!yAq2@5M3l%p4vU6+*8o@5cSz#R&dQ$t85&?Sk;teXsk&@ zmIWreGs+Qkgu#-ktYolMVKD)Qk-YgVRVQkP6xB(H#zc?=okpT!)D9`!pchmMs+)QV z+|uX=e9eMM2gGGYhI&u#qr;d;W>{1&80-#8;V~V|D|j6515`&}v-vC_6C#@0@6b6# zaW|{F6xq%CFg`kMsY=wj+86^V%$};C-qFeKBV&|6S37Vr+G+&hp>WY*tn_Q_2%Bu! zGTt;o#s(2#u#J!jgpuJ}>&K$1yNJf35{pTom~t*$6u(jQS3xm8x}gU+c^SINjxK!~gSY=-(H8)y8J5f8OB3fJ);c@A|6h0BTPQT0D(k6U# zR)NhWcmpLcL+N#F=itG!FaR}5@pYL*W3CGsPDRI2D*|3ULO>oK!Vrvk5t}!rowMpp+7XVJ}0~bfa&i4?X^p zR^sC@_)G4`L4-bUWeOmMzk*+FhcLtpnrJ#|GB?nRL}CI`4xKF$6~BRUN*o5ih%op%H`H^#=Nm(U|DsC?Cd+abDXlK^XS(sN3$ePlr*Z&fCm=oDv*;#8Mor zkHg?ExgQsIumY%pFR=9)HW_JV-qwlhODZ6Sf7$$6WA*BAG_aZwi%Bk%gGmJ|^H#2p z!{9GrK!8b|0%jR>K4p(C|aI1U|Ww=2qIJ8CWvCu?4AxaDeM#`iFHhD79i>qxpjc$RM z0*f3a#Y+D$xr#5){q zg#(AOxZ$dLm8-2i6vjrj)BK7fKTm0{bv~m{z?VSG0Oj2>F;9lWwtKYhqkB9VObW_P zVhAS))#Dk%)YeR7E&(m^t4grhKN<*9b*^^?sR3giERbU!XtR=3u&Jw=>ewVCbHeXB z&fEDob>gMEo~DM+gJUjC<2bI(qDDG3vs}X_0GSUS+41e#*jXr2?NDl{7>ik|THB)| zY@p_i!3bCE2(qTN7Cj$%Otw-h``EbGb9+v#yt^Fu_>KW*)`yj=Dcm=aYdC9fVOT z6h?#7VnhY%O>dSu9bi&IY7^ULPm&;9OhONoNzunw64G<(B5<8*|B#xI;8t_wGqoFI za}k8qV*6jb4{0&0Eg_ju)aq_dBS0bOVzuf3nT#B2X+n`s^`2su0U08=}0;c9mei)oxZpkZg=v#6s>vXPjDp_qjF2YRt2N!g>iT4g2|BQhm#6iB!+b!?a< zlJ3jdTw&p3*QEzUDaCnykmbOb)2c4vuG9flS`h2^n7}nxNMe469@p}oXg}vN>c|KL z9Fvu5BlnSr5t^yZ17jkJ>5Roy&*VmCHCdR{osY&;LZ*a|Z!VJqOA=YXF6yZ{kpp8Q zoJLtGuf790SGW_|1*uSCGHvOKN)NxdD=MLwga(4fFe2ZrW^j@gA$&F@D6ht`{=%0) zH94AEsJUoIdLLT+kA&JL-p{u3$HEHKj$sB1VX>l|EUg2aDj3V6raS!9oh_}0#2oNF zyu-(HeZJ1rzPomZj|Z5b!_W*4D%zXToX!JeI@;`Iw=`vVx|W`?RU1*QfD)5Q5jJ?F zTi8G#tV6ZIS#$=CiM+Z)Nm9e+g_OyFOlQo|Y#7VzeJDaK)%Dei<-nN6Q{QHBpRV&3 zJk8a|XiS9ogzG76!RKgO>78@N7chZWKYPnIb`Oy0JY&bxr5n4%WKyrT@WK*}oza*` zDwAz|<(k1p&nQe=&HX2k2_wSI<(Rq=E-*se zu$45y_4_y0LwI0m6I{Xw%ZqAVSigk9xMUO93YzGPb(@H`kUA8`rglWwaOBv>uz>|Y zqUh=FCeEeTh|mEsfvY(tkQ+?(ZZIX1WvF(SmNJ<0{H0wtlfeN+GT7gjAp;{Z z1@%705ZrYSarLW1^knr5I3~lHDvqp=GeT%`uGM3u`W>E{x=d5XptFcs6H6s#P$tGq zf|dA#KCZMiPmwYe)~;s0lfp_orbBAN(%r#bZj+&D%z{i0GE;`{qcN59TkVWOqk89| zk3mv|F(%VetZwXeH$TR{iCngcbM+>X=P03=q^vc55-YMP7EkfqtQe@bgpXkdPlT~m`_BLDM5ANPs?X*U_`B8l{ zP-o7Qjl2$-i(qQfUJJZZtkOvrIM710cYT~(bCd|rUhPk4^l%V@<9fvlPYBvTsiQaxWAOpphYA(uK| zQL9X1WJD(PWZXP$9j_Gj1z{-7WfYJJO8A%Fk|_lwQ<`XuHV|j4Sjju5kD;~VHD|6k zIHtiOF=Y3MW)t7=jZgL`p;2`XbQWgTxuBfz0HTTC&npw;|+J zLyK9228~HfA8#bYAQdB_M}kLf{!)0PjCso7=PSpu0oB^E)_gT5Y_Eg`$-qltFDzpJKOKTen<>Ae_L$;rZ zr&HC2(zeO`M_AJ8dw7%KkC2(%)-jP|_ir7wTF0}f16(GyjfaVmDiKztHXeSbXnKM!Lqm!-nGi9jyZay7XuWLh$`(&Z|V0GZ0fJI0pktmGV{Ve@^`Kz&fAv^^y$ z6BF}8nbSH)fIN$g;F!kx){OqYKCwY zkBK}bu0QEYu@+OJfnyrm;Tk1|4NUEDXDZKcT_#668u+&2`{#3vs{Ol1R&jEg55=OG z94#J&a_Cv{=qNTZ8wHQIhGpOT-P2SCTh$UR8OQyI-bon&8kZmTET6=EiRy+lGP$M@ z2bPzNYdGhbPR-BW-@dmi+>zRdW{^r$mJ~zVnD_4H>hAU)?obMDC)w6|@AJ_6;9LrX z52;dY-3t!9R(sL&6~N%m4Md zJmy0DCAjY5*2nh+o0^PK*eoLRAw@6vK3oqjOzfzHFzU*z8lDo2<#9g1WPsB?uAvVI5Sb4_Jr+WbTZsx%W9@`Y z9uzZ>2d#dNtEhc~7ZdfmIXa2*LSX2Ez1E5F*KY_otxv;>JB{$c-S3t~wgAA`?qC=l zb_CCcwZDg$?KX#`i1MpGE`QR_hjet2Hz67VG8eMu?vc5pqTlM#_AIrWN}!`fHqVy$Q`dZU$ox*LPuU$Y3&R z=MP$=ezqfP7bn|8$ONmSDEmRTe>iwt;78G>)w#90 zs!Ad=``7B(sg2_pGTb^7%(MMKn`)e=B!Y!Y^(*HqRpJna-~Xh_7M#&=eV!7^fG7K8 zi&%vHp{@Vr^@koF*O%*$@PrH)mfM%d#x?Gb1R}Fxznp6^C7ZA!KR>*)fU?u*T#8?q zU5bQl-d}cE0-OBmc}gU0@xdokq{;@7$MNc_#V642$fkm#uBWFDr_EOrI4B3jjkzT4J2(m zx^`I1;98pfb=d2+gEg>?Tbe**HaA-GpCxqJc(jzjWo9?Rr#BM0ipC>+509DLXv6Gj zyw@MKx&<9;B$`I!(MAZ$oK%arZYW!6)6Ez;+M_&rT(uV3no&&!Mp(>4t={9Y_vi`H z)RAXBlS5-J@?^wC|DnCYf<_%f#rGRaFlM0~s?QQMGu2}%Jb+^+vOs1s7eonxRK3k0 zvS`f1wm@X|A}YC;RJC=D$&-n>km$NK>GsCK6z-or^QljNivBlM-N-0E>fssybRvNn z`p_&Qn+Bf6npCT77FAl6#Di1*X>o_Bw1uQ95m_ovne;3=t7u_1gUD=b_>k>(Z*UOi z*44>_Sz2U3=3>(a7ljHz8ecWYSyT>>nOKLL@MqSa$bhwpBlNMDhZ39An9YFx!CUaa9c`( zNSzi*^j{uS#DbH%MuQ_*hj1K?SSl!HVLyn$#y(vKDLB;SGbu?Jh#A<8(hSg%t(U^@icMrW3$0U3YA$Y9QL1^N<6?( zPNE{4g~MrFW)>QT`7B+-B_=Zp4b#)*YuH0&R-s`$|3ow_aG4oN1xkUNrNbMtwWw47 zNel_qemlYCVd{u<7KSsP%kNk;gFjUN+L@9CeBW2 zM&yA-64A4Sku@g@tPK6XRUMjdG)trI5lQNekysXTG^Td&;BHHfB-IF`j)8!Z1YMaz zY)$|mCLkq^FcC?C1Rawo47kx?QNpEoqI|_-JO++=kY6ebK)xTxaUKMVy=>!$UYM z4>@OdH()|%YQpEpee3lC5{-EfqnA9e@s)mmfNMT!S)UL|9gEH&3}Bg=Op(ikS5|w2 zViGKNP)7!{Ss9WU$%p%lVO~&=N$Ryq5)dA9kv)1`ZmF(RsyYstEnbPqoPkC;k>by* zET~b2WJZhxd@1h^4ky82Rn0rimeCO~nf zb!0U|GVlppmd|gE@GPH1YYbqS*|#0M!cAvcw&OuEqu)aCxU^=Ua*-C|V=^ba>g~-t zd+>0LHpa?CM1aH`=;1^5sd04;iGyMmT*Otf!1wHTx`oY&7~$sg-8GB}SZ0SO zE!kaGPEe|Cv4)bdmq|rE-V*;IdLz`bU1yQ493CcoyUNr(9S%m`NHjv@>OiI?e3lr; ztKLB4bC}Eu55%n4D%wBXM1peMIuMqu_Fr|J0+AW9EXgshKgrt^FeKEf_R%$z0VH#x zPf2nHla*@Ne=b&UdJi5d$(yKHbqV*mxP#ioLb)VAnfgv^+@bZQG9KI2n&!ERA@R8u zDqCBBGG4N+NknEuZ06*LBe#DGMtW+zTO+TJ$842lR7Woi%-BZH;z-P#*+0a|>2ZEvjiUP|`Bd?3chXo|wJ z?9@11>a&G!nqj-xd5wM+dv$IeV097w#b=U`%toHKkJHWi?c5&vk`POc2v2i5l*A`X zATlFGXOfYV4?<2gI#WnXQ0ArRO!Cs9XdCyoR`)lzw*yE81feZ4j8-c(2(B(oX| z4p`CW3rbb93MJt&A9?#wvv?lGEBe?Ct=w-ju?z;2c~dnC-pw^3>7q4i5t);E(@@s; z!z1u@?>bvh12~KEF3!3ULN3Z^0GTmmKXbQC#eV#jnbK)=XvU%viUTx^=L@XMrp}_e z)FaW^b?L#fez7PY2Wq%;2}Cuj2d8xLo!3Gt6vjrj%wR|QQxCdGKntCrm%oFXma-L- z)eyy2*Q50CVO4A&hRcntzWuq_pWyZy0k6)brQjV7<3r~LKMqk;ohQ)c0tCb-6?U9S zRL4$r1TvS1@tI+vu5@#M{jN}v8fPUqN+8ye&#<@oL%HIlDT4uG2CilDsdFEBl@h_> zFn%ck4$s3@6lq3{Bw!$B;8uXZB_GKywMi>*FpQ3)h)f-a-d0U@Cv@X`Sl0V4Mqs00 zC1jJ<#W-AU);lgKU5;&*K+M1rU`A&tmcuxVUrN9g?x)k6SPlrR2{Hpbv#Hzpk044^ zt~i3IL`I@rcm>txr;rJR%S>7s^p9}~SYo-8t`&Uhd3^!I4Ah?N1NuXhUT;q+d;`Pi zh!8z=oSMB2`^TapxmH7s5PNk*J|c5cZ%|2OisRdo-W$}B87O8!h9O|_%izVl zB;c40Bf$h)#Hfx0RYn8JtcY`KSnsw9xsXkbbI-+WV3|EFbHu#3%!0MDo%@6C;m%kd zWzx)c7>OmLXp-7^lV~z-ZE-YNVmFB05#xzJwN}7adYBZsc1?u!HlE$5Ku}E`^v{)<`2DdC%bWF4AiEHH%hc$aObSLj0 zkL6jO&1=Yku_T`Lxe<1vikh3e#AH%Webk!@+iR{q1H}}c`tHX^@iteV17jM@Uf;#_ zq8)4ur<-u^w2HCq$EX{k{cS=vb&0~M#qu5EOmHp+CUitG(7z-LppF@47r=*QYK&`r z>KW4OQJXKQJ*mBImkH|TQpdPVj$yKp+SbkfAW`Y+F-@~250JS47*FDm z*^Exa4oa9Xd4S2&E0Rmg;n@I<%|H9MGsCJ@F&wwiD^M!ED$>WoSX*q|^n z;!Q$Eu(3iKY2gS|QFJ{;V`<>e3;H}qo}qcR!8os3I>Cy<4T5v@|(&K=%2c6t0#1)QQOkPx3r=dE7VkiqM4=~ z5aT-=#p%6abkoQ?I2=ZIZ4IH-65Ev?VGwsc+x%e>Z#xDIF%`_{_dx?olFA4x=^jr86WMI^sARTTNn~cHag|xem}om{9z9%{Cy8W=%OM0>IGuy;6DnX(5&gNUsGfOOHp}IFu zXa^gcnQT6K-6yFeAoG#0DEY8f5KWfW{z~EWELAO|56PTZNh>(-w%Q|k47$4B^K=%W z#bY+=S4#;KPG67CYqZdbknKvJ83SfnqX13b=y{!R}^1tUZiLa8xb4Ved5&lMQ-qFkO`W8O*1Ri{if zyE9upAC~1rPb9hT6rJvo94M+i(QI0W$c&iYl#IAIa@2it7dHrZhdsG!L(M78W)6_K z1c(KL5~R4*SWw|+OlGaTmovBRIp>pR^8t;S(057sb_S1w9I)DV%_g&e%!dhE$+w%I zVsqeOz^P_LXLDAd%p2M6?$T}7Au?lRIk@y`j6=(1ds)zON=#-&G%WSIKbqtTU#mvL zvlZ;2GIQi{e-KQ9F6adbj=8En*X+L+j=gDbWs#Vn>T@^y*n=S}t!ba@pqK;sN>^9W zibyqISyMe?6=Wqt!cjMsA@I-`pF0@>2kHk~>iE1yngEjZR>i-`j-YA$TY|+rTlp~# z7=0uYTupgOFy_I2D5t}~&8s_#YV_v$_exhgg93LMEJ=nEjAf`=WZZ!?ZIQC)sQSdp zyZc7gG@`H2SeB~YBsz(v?I!3Qs(LA1xGzjo+bY3gS@s9FTESMzrm{FF=BPZs*Dd(c zH1+%*9CKA;(y)7JIwlSJmF>N3|aHKZI;%QM$?g$tzJcdC2@0g~bV>mlcB+Y>{fn+o1Y`Ssr3@lcsP>4jEa#$3XU|N zo4~_i0=QsEu(3yn?1>6dcQS{icNh$8>)~)P!IgN~c#swG-W4_0Z4W2}Da2J_C~XAF zoK~3Qe2i^^iwWZ}Byh0=V28oLh=d?e(I3*S>vAGNZ4ouvDZ!Wno`X1`|Muxns71}x z)=@YtX0UZ_YnbZVR*;}-TGtUMb2`n9al?BkR%6XE7;~U+hvpuY8ueYf>O^XESE2bV z2Pe1^4_An+Zf**-sS(7$eCfGgABh>Le%$ZHYNs_ytanm}V<0*(%cNp1ACoCD+$||- zCWLO(8+C`_`cO4MJ`xw?)Il<k z!jJLO$|$(SPfZS}q>Rek2oXJQyA(;tsXMDWZ8|V!s#+ZB)IQuAL?Ws!u2w_=$*f4b zMDno?e0Qn(7loEFnKvcvc0Y%>Lc5Df>mZp`)@DMx&1=(vrJ1aXg=Ec{99RugtiuJE zEEqFUv|Ra=VE=?VB(qCFlYRwI%t0d!$I;2#4-?KzZ zXCwx-eXAk$V40X=IxA+lSwxNL;2hi~?vXD2JtLUouNYRw!RZVt3q(RhlVUJfEJxLQ zf}5V~#lr-3W@R>)Lu5uFS9C(r0&*EFX7TE$D`zm&L0g?Pz+v>Nb6$MMhpXgp$A|m* z_G+{nNez6D+r?xk?-Gz`ECy1j)q~AqquWnhII4EZGwFO(rmcbxNVi$gMUfA4nT=3; zD}|IXnX>YHpbXc1ET+(4>L%@oT4vP?)zR%D4SFN=`{dtZ<>tjLUZ zMQ5n`^qGQLJeI5K<55@l`Z1a6k7klFBGY+|An)fGqho1Ou~~;L>6P@QBzTWRX64fqDW<6(dwE zIGZDCXiZrdi|eMc2KQu%)*um?v5I~0T&Aqmx#JoyX@D3X>x^7aLqBf~=r)#Keu_DS zAVxS(RG$ig6R^x(rFAyK!PZ^>f|RrxCK>8-&)CivCSug+*NnY9XuDL`L- zNF1Xwb7dp+&a#qNjKwTf5agaLF$j`~%qZkqTA&Ip5vW$SAD!0K)b_<$U6lud!i3E? z^+1HfI;u(^?a*vmdIQAx)v$zqHi=pxgE}m!X+;$pGgW=)eFT()5lxi{Dm89PPOf-h z%v251tB28mSxxLHY$7dC&Er&ziCHo=8KH0nb7k;@SjmHn0kS<@+ttg>KjuF?3yV{p zcDl!%D$QMk%KF9mRp~c2daYn8Qa!ZnyyO;|O8{RSmmuM<)YH4pL+@~z`|Wz}Sbp`) zyz>`8YTy@@QY80nKG5!;o3k_}3F`(MK6Xa=>Y#trJvK)yY+{2Own-n_pG0&2zE+qn z23;A}p8(4<%~|kV3`~{FV(dJ{@eut)A=LUgMPu&GcvtEovJ)(^iK~fZg-Y5r`Xi4oW>e$HnQW2^2g(swR6%OLo#rq& zTsw#g7(1vMb=**o?$ryX5-R*yP3j117Kzl7von$|=4ohW6&ULa(^(`BP8-Q-lMNQS z-x&<#IzP4dOv@BPG9&ts1Y;~>gFd7dm$_Z5@`{Ef8p1m^Y*hgw^C3P7$^^bxR5cl> zYPf`DX2kf!Yy*_2rK!LC;aC#*%)R_0n#o9tLCsV=gFa4R z70yttnOQ^@j+rnD^_j-lyehNb>bP(=mjz@tp})Z-$RIAHKZC|R@C~I@Sb}8oAHHd; zzF~$?jK^HQ2JtMu_-+vmmVnG=TavYz4V+Id>_TlxGsH4r%z}}0sXuyP&h3kCJya*V z6}k#_CU0~X;!=3U#fXTuq`V~Sp3totZE3<5eqe7%;H<9J5&I}+0aogVkr`J1}`%IIQmQ&%My4UD)aiDGu|Y=i070W#r>Wq zF@Ly7&lAic`gTG$GYSPRVkZWS_2$cysHjEc32Ml1(VTN%R*PmlmdbC@c(&XYT>>(j zUsKVX!6G#!<_&xck1ru!#KJ8aOM^qwdYi}-m@EhdV02?Nn&ru)7^6?ZKjc6}kJ$;p z8(Jmsn2xN|JdPWzn(Qo6G_uiBS76{N5=)4p`^*%F2gY(xMFm7bo=5NCW>a}7R`PL% zENmEhgHCbyjf0$#fxg!thWp{wY26})?toZP6b6hj@j`Cj9?~eBzgi(Urf$;njVl0S z9;$is2-_Y~L~1vdCi2jjiK^Z(;lPi%j#Awg7=nyjBiRU$GO`5i0OwmiZ_U7I(H23Smh*#IOhC+%^W z1E7!~8oR1}9`03mS#a&OH7s(lS_fD z{K|X6a@1LZ+0s^^Ol;hwsE4rkQhUhRlzulB*C?Jwx?QkF8ImQ8Yjp1uu-+1rX=7Ot zD@KXd1!ZMOCZ+!2X+fR%%H*&+rVEUO`KW1ralB0g#WXa$wloh~qyDyuV+D`uc~U$c z786mk2#NS|<++@|Y(9o$TI!N4?GF;d=>eC2GE@M>6y&stf~rZVP9L{M=mvvR2ifO3FhMExC+m*^fRr*jQR8@t;1k_Vo0$0^? zP^C^J772lZK1jVkDF5W+SEuj_D|D109?L4u*InRHlypyXft_F`@^< z=&ni}dN7<)+eR(EH;}3rmQv{`sl#CrDg{Lcfaznku)+avP#D}3=f2j}*mYXns_#RM92Ve?-6bagU{jsR4n$9n0k z01V2^uyvmq?p1gjwG*i4BPeD;@+)A8R%ff;b0(8mn+<0jux*TR4TliyTw}#_-9a#m z$I=BhiRYVZf@}esv|!AHWv+o_X8G4}1k;p3f;vApQ=L94a|f0Z4l)+76n}t$;K!G6 zD}N#lQuSK(av3a^24f1Jhx)?eX}^u6jHo#^y0546A(=IhZtrnRE_hr(I)fGQAY$31 z(eE8O)!&H6!(yJ&^0PL4GW_wwT%PgY$nt%#nCZ|s;w3S8V9ZonMpiw{9<_SGUe-pI z5koR->9ew9Om{$y3Cc!3E5M8SiY4<&JmxDcKN}ZC)?nXbs-byU%u`t;@mQ-AExMUS zdSGcLYb#4)a$w98jsf24BAjwdiuHB3}*^cP_ss;{Ww zDZyAC^6n%LKY%_r2Ej?8eV@&2GPl$~bxjhIVi_e2nwHTh{6T>kVwE&OnUVlu7 zlL=j_t$G$412P|m|NAr*kuX3tr4%H)eH@0T&Z>fs?N7CfdJbuQ`9su zilq@G(NfdqBw~FjwIeG@B1f(|g|r~S#7-qgYCTv(IT(tSg{-cXBOKqTX{DqL{?LY; zrcu#O*f!LhUJ~2DaJft6l+ze~cD2ND|v5emCQ&?Q7S1~@zYF6V$~0UW6yiS zYv{F$@4R$Cg~A1=F01@Cb{TpN)DTFAQL<3pYqizx$PTL!O9jQUVCKunLfw^Jc7e_% zy2MwV10TmC#fZ#Fwnh4*HzF!EDP2QlfSAFTiXJ@ZjyrV2ip=6Sl}aKqCw0Okl{?UI zB|7g#?@D4N3NU73%Ww}v_tnHQJSb-2T0&YX-X7MZmP#OIAV+33HcqVg(R-4Vx)_N$ zC|nU7CYdb46*V|YSR7=rMYeFvMoDI)E)p}^=zn0{O!LRpGoNiy9Ucaj?&OK)# ze0(lRS`+3?nMPQaCLA>Lu(vp2t8lAOJTZ$#O zjGz>?J}P)`xh*3J&YDQu0~*jWeUx7U2hIHHn!rn+U`rvIuI#;o(&D{@qu5&@n5iW=PgxR1y4v6t#9zHF3WnORSrUfXh-_H+c0Et(y{` zOM>NLF80mdz4hV#dbYN*zarvpb;e_YD??b*Ce?*@wVGr!Ch}?xkM3=4u5PcbFR9i%K&HcdcPUq4ZppM~2MI=X;;&vhfyty; zz*3RYwV9`_VS-j&AvS|nq9%!LAAh)HVu{Mc$m~`U-@(Q2{dW_*>e|T}0t-;4#jI{c zd-vArUV>De_@6=QK{Dmf`;@z_$Bus;d(ek@f?hpxa|V44JQoE?yGr_dt9#!RMy=+x zXAm1Ortw>BK~Gi(Lz!J`?q^pjK&BHd_TK)+yWdJ^b&(e9W7d&=u-PK zJIkv-0%Mv`q2HmYr0$Ppig!VUmY7T`S|&99orFFYX_+1*Q(~saYYw(&7aCPp@6Bov z4v)#Ot12Q(=~X@6QRie>rk3?-%M~@rh3eD8WKx{K9LZbj^R~2siY~Ok=0XTh^q_l) zv(tkUOBV4&B_Pv@I_9SdJ6@!Y16ZcUTnVc?K0ZQSJ6x+?d4zv_$3tczvWT01XL+lAHID9w5_US-EVx zb_9wf`O!q)-10%=7^|X1zRm(OePr9=2vkVEsBK5!T#U$rnIW6tUetqGL?(>P%sejD z<2UF<%}gS50a6lwLmpeQ1c`yjgei$>fSRzhB}nWca{;1;1;u<@RPmw>%K$Q6)UfDj zQrtxwmH=k@l(cfVzXWNkA%99*jKC9>y98+~V3syEE<2*MgE~>k3mca}<^p(;md#fR z&gPMp17jMm)!HY^jI?}2CiEgL`*^vLmc(RIFY0$Mpda389m|ftdDI_(GOZWj**BIQ z;DxA6>_t}gm8C{j0rPe%5kZ#94$(>)1;|uVatumHHzgVDp})= zNWXt5EUo#Bp~Yen&ri^UZ1w$>T|v~`PgHnJ=J`J?mR@EkTf#Aw=aO*!P!9)~2&tO8 zBt~N*uW#P%wmUqH?+@ad_su>c6MAN`H|zz61~)egi^U{f$7mk(y8U2-d-IOb17teS z3bA#!7>~lOpv|qY!b_0tx4J!?j@<4D<7iG+;W1gY>Ya|x=@&;hju`{s?rE#HKZrA} z>hk+q=TwKz1@Tl|?iW~=)Vv3#9E5oNbV-)V@;2|MBUqNxYaS1FaW#REv3c{bSWMz6 z(;Uhh4a%FFP=&{2aAo)NHm-HWJasQy#ealMYL7{uRht7sC}x2l^B!$X`nXFw*a57D zr?pHa9J8S(@YuFic5lo1XtknhsVo-rz#1Opt%sxhC~;bgO7hr#S}9LrF$tWdc(5}X zJehNC@oXjw$aK)1pxe!lgh8m)G@Fdzn97rkMi|?-zPG-*FUZtxpq9)7WI8k}mJE@9 zB7>kdt9rH)kI6hWBCw0=thpLXIHp2gjpf3#u)fs1TCGqHjA<}Lp^>^B57Fh0*~)O3 z%k<<_%}>y=h*^8kKk6QPhM&Z(C*JHA$SDg;SqibkWnzT+4@NBrIm)05L8of(aSDw*H?%3~%&C}zQ}ciGB#J-mxZzxB>Pg`N=@6za)tO}f3q z`_Z|x>RBSKkyrgb3WMXElI+&gabDcTwTMFX>If^o!QMk+{ENU}y|W$+N7N%$;Og77 zCK7d3nXdz4XtYPOsJ7cnZFW(|28rTR*k7SB4;rN8S$`5AccjiaYjh0Ctmw%lYs{(U z3^Yy)$&5%-NXCTgR#PJyWsv`+2D7%ly1TwHpY5gX!y&Oi2phywJwc%!4Jj_@kT^bp zou9BP_7))!I7~oZ3&#SOv{K?+cQt4XyjB3kEM#iyeas#1=IzO-=swCL|EQXG>co~5 zD05yQ&d^W3r!6Fubz;6}K(b!?ftD6ciuLmHJAVkT4pfr8W)hZZ$vJOeTBaA@b*DOK zDUFB1;0SKAjYA~(sB*Bp9W^6NOs)TbA%J2U9CMjr7O~X}cVc~8tB=6GN)Sdi+HuIi z)iUY{jy2fc#WKj=(N#jY6{j8DjHAYV>8keOSO{_>_}z5DbbX4b0<|X##1KHt-~@5q zk4y}!ekvv?aTwo8KzkZS-Q$jo=o&~+0Wkyh#Sm@%N#5RpZ|*)3N>W3KSOyP?IdJ-$fF?leIPEpO~*0Q1+hs5C23~*xN{)ampkTdvKog5t8HGWxXw}UIv1wc;Caa~MnpG#y zA5<%+ix0g6^(bFuB7kwz?g$VdHOk8l%mQ|%OFnnXZ)!5X^wB8xcpQFI9(|UV&;wU7=v-i-_UQP zD%|h~hHB}lU3l&}fMOQ%H}q&Zk&8rP4(z8P4h(bqhpiDEsgt+tBFS*JRb3ny3sr;4 z+%z6_$0Q+eSh=%x@2+TwYN#2_dq!||R6Fm>^RyPEA~>eP^oUms z(pfmBlJy2#T;JVX6|yZVm!?{3JKNu`Z)f}4 z+${X=bAfhN0j4EeswM7k*IVNL_EIg8;aDn~2fM$y7x;R0NPXNcCd1)i->cW|ZT;5Q!!D1w8NuvSx2HC70H5PpG*YnAXjRe(7ApFppM8=dxTuS?moIQB|i+@a7A9y3wp*;}%jRGzpeD@0<7*YLng>_lTfwMS2k zm=lmp_aZ%OXSj7luJ%zKK^s%kz5Iz+GYrGfmn?KYm$@!A$DBkalmK`*kV`X~0TT)X zJ7o+<1DPyqrVIlUKz}p|uGnb?ZD1JM>A9H5nSy5OAQT3^;;v0T9UM-AqiodFsQrem zLjp1WEibVHe9QI^-vHe}#*?53m4L>=1XNoMWxk3AGjvW4BaievbwYuTv zRCO%@UH&sTIAN*kFj>A7X+OL&dRqnFTJ1RQ(IGn{4t%Z>I?c4Y6m z%8+-CCUn$8+2drjiqB<1+Bbf;*9y|UY9{79B`~Oh*DUVKCPkhN^W$vT8ez4bsQ+f^ zW;kw|cI7gMW;14KTqZ_B zgcM78D`1%x(E@M zCdJGHlVXu9mX?k4(=1P2`KO+lGm|?3&PAx2&5`%kXfz1UeO;*8#L!G%S+a2&MIPK7 zxsWASkW5$gw4HDj%tAe_L1U7txpYq{(UgtDi|-d|E0S2g|nV2Dy-7%WkvTGD;?qWO_PzHNWHB_p-vKTQ9MQ0EazNI(HqH>Jbnu&B4$XjDs$qP9~fy$(n zW3&V1tiXNTZ3GpqaYu45%?rILQ)HE;JAea8tyz=9cOlft?)NFGwtKnHVdtU44Eu=>|SZ zop7F2ofeL1s-AZ=>BFI%o}%*?iHn7LULTYxD+8jZ6j3hMfCMU&R_&1xF9C2W84C{YR-)_`&XI&_BhgO@elz^j`?f)KyB1-l#@|{=EA_DKQDlv{fvD z=OYY}(5BFro8v0v5eN$fuqkjZLNz8tF8p9n$o90*n2-UPsxm3cI8q=v=*x&{A(Qe! znX+oLk4L0jT30~FrwWT&sLckrOk9lspQHp`XarayG8sz5AJToT0wX}2 z24r^W3whO1U^G3Xp>siyCW>E07koUHM+B)&=^Q0+uuP3na7>++U!A--2YZFg1wfAK zu9-l_6*M*=p!;C5>s0fTB5?eQ~w}q9Uw6}8B1EV zBaR$%JuZ_&-1wzK*(}uQgLCi#awcUk@LdKaAejL^qf(_k_w)(S+V zhuuf8eqp`p*hHsws7#E3LPUH7XD3^Y8cgcE7L;i*5>3$#Mu^!T;e;n4wVGr-7kh=x zg-FSce19%C{x3mx3(B-ueiX^x?VFQ9vsTcY)JZ^HbRYU$MF^VLGK=6fvtOK{1=vbe zTmHE5zLsu3zd8g5>jlw&ZPoOOPWMPQi}|B}4V??}OEU_BV?syWC)p|PX6z1oa%}tI z@)Q)(aM8Xpt7xe*sfncXS6V4E7Y0L>T9poDBtQR9Wfn3Q0Fzd=uVI~Vu%JOrJ)B<^ z7MzRm3p0u_LdJP$B2B^qmq&xQHg zj7q|}7L>1w`o4S1YtTLg7im^s^dx9NOY8^;nv0N%D!W0VatR?GK{913+UlCSheX`5 zglNm5&LU3qD@!1Ds7#FY#*v!}9lYPset&VZ3*osasUb}1*ZndqVF**=&LYP?5lrs~ z$C539yu@X43{Rs<2-=uBTGYL=*R)cq9uANi{{*Bhaar0_bRGAIONg#zPl$PdNXb

`RGxwaA^q!R^l>w%C9B5+acc{4vMeZ3iTrBwIs#xBtM_(7}1gcUD50+^~6Qtz|bqg>SZGs^-7eF|k$@u6y z@&1@a9Z!YIq{zkWT#JoEj`G`NWRFW8B3AAMCJk@)sZMAXMYn~m_OB_YKw@v{W?@8P8(!m5yw&tGFZitCQqn-Ddd655n$07B9r0)G^i{(KZm# zTvVwdTTLM{A%^O~;{tyBX>j6;8mDNS49c`CD<i9 zg{lyT8~c_+OsGs8+3aCAnDtxKW(^?IMZF6>9UL8nf-c&-c(6LI@2g> zI7;2WvS`#$g0hT}OE`+os#(+}SVSg_%qLn=yQukyMYWL!Ld$H8$8z?5Q4hqJEMruc z?ge>*%A$2yf-)`gGt%+ljj)-_pEplJGG$bov_nOBzC~-(0M^pcC}62{29W8Z#?dXZ z0~6k zs4HO18KmX_JYlqplUhtBjXJK=k#s$ac3gzVWRdYi8wnOQ9Y5|n8p zBf?!5qD3xhM1;p=Q3Q)Q_jV7v;DSN)q7keI%hZv2%S|5soXw)@EkT(!lK7F?I2sLZ z7nRt9WooRIlmSciPL>!o%)jPXL+64-ZJD;~U|(rAZprlRqHWp7W%8)r>8j}-ZjKg4 zzG%IdpiGOkBT_y5Mnd!RuN|2Q%|*b(5xr-3`}lt!Mk(fVSzop5aTYAIV}?BaTC{WO zT;p<$+@LbIv;1ri=V#sEa?szaJeS|-&!zvc0QJyZic~A&cNbArS*ihz=34I`_~Y~ceJ6$;87GFUQ<>R(T#M+guFSo6oR}j{ zoJejWC1F8Jqom;bCL53v-e3b#-4$lGb9(fHC39meaQoiLYC5^E+6Es838Otm{8`<3 z8f++Uys|AvVX?qMUTI(<7xH33f%jNaHg5ancpO@aDK&|1&IB|tc{xLQ#*))GXA}_d z)orvk*|X7@yMAoGuR=%gtr{_g1O_h!<>7bTq(A`y-^+Enn`~6hf^$}l^TMHlN!@*7 zZM8fZ1fGZ+FA&KUE&~M)+9G!xbasrE=9$Gd`a5P>EEsrbV(oa=hh_-HsW!H!S*i-p zvaSF7o%z`x+{KGJX8(l;6q@9O!Ul|o@m=OM{-YH4Z82D!ec{mTg()E%68hc)nhPyd z(3O~`rf6hoI9kO*%f917I@;Y03r7RXyI;}fX!@@Cnu3u_3I_wng|Eng;S~i{dGb6? zN`rg};VPa*`Kp-hjpqrIHQ@>1!1MN3x{-?0Qd42G7W1Hh|Bk-y=bJ<@@tSTeOQ1rC z0}BincTUEWk-B@KST5sq)GUDIXktKcUE3*VGn!9Rb$M_|;dzTuOjt9r%o3(i!Fr)$ zjp-Vcg%A!rUg};HN92*&b?O)@Sg%xa=w2bZs7VDfW3774676P-dYE9m^pI8(3v;;= zN|Qe~so8YP@g)$!_Txv-AIE8`xeF}E;c$Tb{-Y`yTFg+>L1h_2JTUzv-Ky3Mv9c6z zhJ}vtBvE@ClbY3YlYM8SbOd-{y7*-I;32{$#>r_=-(x^<{rF#tvzVem8}D#{e3AZg zSkl$f&Tg!0Y>PgX=MN%l&SdAxS{@kO7xs$9bi7o1 zS#b&*jFmz-@LaOfDZdu`iEB{$5{O`X?*(1cqc`Z{L^W802+%whx}#5>>FS7up@HQB z%{O!~>eOhUK@Np*;Cbf-MfRqs6qR{!NBqM{uzza5(B6Py_^pP{CCYCVMxDPHc5jP3ovj{ z8q|GKap7u|h6)P!Z(00sD$!t!=^+9A#|MMMSbBren8N|`I|o$d%5`E!*PzxhEHL~; z?V-lv8;mI`AYfm7IXhI7->2#Xeaz8dEExlW>(a~FSe;;ds3U8~WDV+d0x@KJr0zdU zn6EjTj|jGRtdclY4N3vS0>f4N*Mr4iwp3R|#Z)y8B)RcL8Wf!G*{{(S_zg>g_C7!Z z%iAw$yCFrV6Ceu6O&Z6SX_2PRs^Nxq@uK%X-Hg9}E%*uIVG4dZI&M}vC|L7&q>l3@ zN`6gP61j?yAky%Z?iO3A2@_pR6I-GK4KV>UT!J0`ye_EfPvb@1*&iCxWIc z(8LBYewXpAy$ps8=645cx@V`HH)~w*vTj`PfeI}(Qy_TzaCF%FYIOMLb+FF;yUi(5 zuWD!?1HkVc(y6lLa6InCnI>rF-P?wMV}awcd#Y+V*nCRR&^riD19eVVnc#}wv zV6bi91xbYi^pA!V?_|B8Df_B-q<1)$y|45(_9K0-Z_u>}%6$S*(4dt~ z6c9nvCkgpaW?_r%*UkUjT#^%*Ia9@4Q1(Frg;i=_R80^iv|9^N6!|EpUoCD>rCpXN3CD}md$npMI#*vzMas!y3JE8mv*uW8~_EaI&EwzbXj zJkWKE>3UY?@=q`lWk|7!I5zliv$vj=tP$|@s3sz#u%QXSq2MM{us5JRl-Y5d88ydE zg!~K|>~9Ur`B`EZE*K~4H?5r=25^5eT)s{WDSs;{QuLxhbqD~xGF;KZ>azD>alBTW zoUxSzz6Tb=P^9p{_Kw=mBDNx001*s~?YoA>#{v2WqrqxmPcil$FUs$W*^}9FrPe~? zWYvVDL+1N%n$`b93Liq=8y!x2BZ~QyNT^^{OucRRI1J!_q8^A%C@2UF*&qP)UG?4Z zY@Go9r_Cjd0aqvh*9MuTWp8T`4+ikp=yE*rfL-+-mcs-3`Ir^~$nlF!@B};cKryyY zLxS=)9)3wd0_gmc@(yq=e10QWbClARGfTyIQ@9|%rSAKfn4F@ypW3@1-}bnS3tD)F zqy@0QaBT43WzU$tPBn#zYF2a20FuwZVhIsERNQ1Q?vj`D;5eZ`(8@EQSOJ3u`#tuO zeI#Q9L0iMnvJyOe==dpnb5~!_Ggz#4N_E>sdQn?2qhz27IXN1rx_GprNsn#+`g8Km zV3kp@A!`9NcMJxeOZ=-vx#Fkv1sgPZB8`@2q7Vu4^Fk=-Stf%9CT=_0Zk~5$I}HY& zOB9NSuG{VXQU8cr4}tA0g3hD_8kpX(-^G2FpxaMy@Sf`$Ju#=y1u7wX^b?y%ek&|! z{egnSq#%)?%g2ks{6rP-oin-uHnyE$InhBF!UQ1L-ar0+Jnwxq82yocD(7le9t2xQ z`h7zaB7x(k>f?LE$ylu_5|xR8`ZT;UzUFu`O1TfDIsHFyWRTzSAEDK}S-Db6?WW~t zi4{y4e5{B+0*8dV{%h4!FI4=@AVh&+2h9ho(ExOaV43js!NFd7NYOSEI5NoZ`=ZI| zaZysUP2Gq+*Q0mQSY8O$iG0Y&4ml18y5+xJt+J~YBscqUzwmBGuP@T2=oJ%JOMB6UXNe@%p$RzTp#-ld8@7f*V`lzUkvc#%92v zzURO4f}EjO#l!KECh@B51p)*EN*^r}kbs8_)(nw@;k=wJ)yWuD;`r8S+h!;NhlG!O z?c^#_`5vowpPa6F+kc=QU;g2XFK9Nh?9I<8^|80 zZEv7Xc{0-rmWcqNQ;QEiUWUvJ_x#~pJ2Ha@vTIz4a?pu_0SJbVKuILdL4xuUx#)xk zoc-hphIE8rm|`TbT&HJV&X()>T%X8&PThIzM=Wr?_NbC@;JZDZ)8)nsnuqrun4g}f zn4dgB39X<^Dr=Av^v{abbg+DN4)ifH=&yXYq_+1@`_G@{TssBxDUG31oJ0fHJLY<$ z#A2{uK4st4EDQ(e?@hj+4th_&-F*-@E)sn8wn67Oz<*aQULBSx_Xt73$IF@lAB<2C z+;V?@W5T)YP-MHrHlJYh1|-fF!-D!UUU;nI)x-uAv|NB-oIW1NTsmnRWIa6DHD--D zo2D}X3+k&7Ny8)USr)Sje2W3XQpyoQc;8&~X`B+M+wVPCuTE&Lsy5b>r+&WOJTwX+ zjSRiCRnG%a_d)~{G=fI#`zK-lDA?o=(UN)s3P`yVzHB`<;(QV8CWlx_A&ej^gZZ2I zoj_MI7y)ElofWIaut%-+V(6`z`uu{5Xh3x0(|Dl!$!wh3(-LgRs22@^LjdU2+03k= zK6`es_mFnB;;a-@F@PA7Bq9he;#ox)lL@*n07PU44Mex_oFY<3?FO^t&ZD5+0#d{n zz=HZFUeMHbE)%C!5UT`0F*8F2@ijcJh+nAHOq2%nfZX0kxLZ;DW+{> z<^UGdKQ2@C;mgfUGQFph=H3V5&62ivl!q(bh1h$(zyCn}9;ZbxwDf^2R}LBEm*#47 zYthq9Ny4i`P&F)qCQP7JOyl9JNzvQWKjQRBm<)npiqXJyW$t~KbdM0UkQO82a(H07 zW}kdH)4#ay{T5l!nkD!`L@-{Om;Mfv-pldXB$hM?CUr3ym~PI``s%;~EznRL!yWTm zoOObgGY`m+W`V)|w(-o5o%;oQ_MTI}j{@ko%pW5+{{OYP7Dvd;Z~w=OBH?5pXdLK0 zZ5H=Fq`pU!PJOsIfh+JJcW+yCh6Rpymc@itBNGgQIgx!=<1?HJ{baqOE&aIINYKr@ z2HnR2`jw^m>psP0Q0s^>i=eJs44;MLf$h?Ad`vMkdrww$D70B?X%P%pj0UC;mQyoC z+TT6c+cY6~wz=E_&hT!)hKL(@ONp?H=COeVhi!lpu`^K6Ud7{zw(;-~AQ5MUm?TVZ zObJ@>EMbM1B>cLVB)a=HgcTwP??Rk1DNRH7v2+$^r(m1`u*kGAa#8?=YZ%YfcI?uI zhhxjFZ3M)~83ASoq{Ns3ZL1_=b$K%fp898>Vz#0*d{@dOG>QUD3cn|L^G>HHQ%Qi)UPi%~&* z1H^8xBNfj<(iNw8BhZMJmc+=bXF5$zZ<^9ZprE~g)TSJs1jAmu&axC(Ai1(!PI@~k z67rEg!xR@&fiIuJFf1uBP~B0F?e9NTY=0>hhA_FdD>0={nFR&)1xxKhiTdSKG6E0S z91aNH0YTLC3Z_%ce3TYm!7p2A3izTfvxzfEQWOIH3=3({MS)BwPSVIsj z2ANkaQH28Ni!>UVkz?jr@0t4dS#V#Jpn5m}&EY;dI56E<4Hhbx1Npa*4+e>GSvXu24e8Nn2| z!ZO_YV15P~0xqxAqF|G-?h& zbGc6r4on}d7Zc??SE%71wQMvMo2}p`5T{b$E5HB^`$h_=xyD}B-r&)&RB&vKp~Mm@ zT<~6HZ;&r_oN~clBm;?Q9V}RXyiRqAg6#%+&%on-Aii}vcwHpAS-}Bc{ia6sFo661 zX>oYCpm1lj)fk&b&~|$78;%g~fA0S1?|!8I1Ld_hqlGG%R3x*<#RLl;7Dbb05W)D4 z{XR~hV4juWF*rcK@@6{ejml~7;q%?}x}~560ftFV3J`QR@aV&GN&{h!EQTj%_9RKjEU3kRV$3OAkUJCWc=)OGHZ?H=1l>&td@`e( zR~~pb95EXU7Lx$PQW~Rz*yXJ~r14;AFVbPWP4hMa1+B|l`^3)4K#fOrC(M|e=4}cW zIWhyhHB+hKy#m1z}lemNiL zfB`JEP0KU`1f45d&q}q<{9r$W&M%lDzMWCSl5H@*M`qt0T3nu8mV>Zr$L&jyi zMhm&PbcQ8d(9;1TV6N~$=899WYRm|m7N-ysq!%I2g^gi!f(aJ@So$h75V?Z%&4P}I zQS<}E@L+sR3sM9M+B-^~@nRxBuQ&6-s`p6!8~5oVrx%0Zl9~kuz0OnqR1pne1$jC@ zt7SHrAk|I8a`2|N|KP8!MivUgr8NQs-ABsA_FF1uv}Ic!tBFx2%7oxdDgZ<73_679 zMxzo^?TII&T?iYElnq#Aa^R4mhXGc`o(?tP9`V=eg~Nape}D?&OLSsduSe0*ECiFk3J0WVSP;MUy_3-z-_Lr9T@Tu$ z(#5Zb6-*`z)NJbuoIr#TJ`PUN^@bQNFZ-voZ$!&1EZYU=Wg~VvBjw#|nqq*OckQ)1 zYME!oFgZLhU8rv0=&9QmnDqord1$>54m`LMLAR$py2pp+Y{9W; z!2mF1qm$w8%7_XSobLx;^UbXWR*dk#beVla7kHBoF0-V-ccnIM7BbC8yBKt;vr|3` z2|nBhVsdXudlEc(4cbd)F@p%UxBC6zV0coD`hAwDnx(fzVefPL!uGVfgYa;G{o{UL zwIKm=&DLWM*`ffKG}EP_qhb*tH_+^GfK8fJ8yX-t&}>nF`*y!iiwLhM9$5fg;|7;A zM+F3QQcaVslK{GbYK!9GE-92c40tUYY+AhdQ|j_$%qeiY6>U~DD`dh>UEQ(00#tghl3%YkQ@E- z=!outW`+|uZblp)6lmz;5JN*Aw{(^zNhQgnFgXDn=v=DQ_Y>-fgV9oxRC!RKc@L>d zPza(9=z9RgAzR9OZI`a;f=zyl#&F0ty-LGV1AV3^6+A}~OPPup-|N;t$3aY5Prx~FNKZ8aWDn6UpiA7P+^u8*NBy5oih)D+lc z8u&u|-}bU0X{ASd_u1HG$N%CabF+oJ|$OZ^I^DL>iG2iDY<~1FcpGk(_!jNaG&ZJpy%h3 zr~4;iXiY(+Xa_77WoV#mlci?mXuyLnc5Nxc06q6zg3@+9D+atl6a=zykP;hd0;u`S zy_#1OXWL&lH-HXTDv9UXhwlBPu7ZzC1iO*lg`l;hPu-2<)T?=a+>V1=j5C{~PKta(=b$%7RrU_CKk$6xM&3Hs(V6|h!OKTGv z4+=EzA~oaLYQcAdYL@D<)-osnzW{J54=eheWrkqkDY6rAKyVoZQwqeJ$_&A&vWUdT z0?~UQqH{xZMJY>&V38)`urPpkxv*GIg5uO97Yqu(uRuFpz>zMpf(jm`fPuwS%c8#+ z&~8&Wj%q~ZgMsS0nw!w!v>o+BZ7lcbXSjhS*mkinrp{*|^PGAki?0&5<+PCCydR}= zJR2?wwS+gAm?ZP|M-Y0tHq8lmkrt!-+_V55TCPTRiT0TVo4>V|(175(8}XTS0a_cN z*(Yld1ny+DybO2~zj7cr7ke!8uUPD<*PR;qL-gYj&4FsJpOIq#MP=RtiSTkUel zAiv|kKU$8C1irB_%*yt+y0}SgPj+Tm?)8@JP8{_fdXpOwV12o&FVE-#~cBCv-%4y z5JjDG>~0qWaavBLM=7j3d4*l zSg}sid3Yea<`WhaNQL}HXkmcy2^=7jd>$O=ZuxY|t$+ra6g6l-eJ!Ju%y?234In|w z@=zNzN@UYKtk6Jq*-xYTI`m4EtRSQk2P_cX@rjmnl6y?Yx~ZV*b6m`v0$+t>4o0A$ zzQm|$@D?~HN|usRNu+s-f&z`sH=;5#qTa~VLYA~`^DRaL*$tJZ>TB)Tr1~g6tdPtA z{gfpEL8)tB^@J+D{n?sd8M$rkOTd8+<}~xLuFM&rRb*!Q_JQ_(>(dbSm|XW*-brlf zuK_0k!FSnR=&Zc$`s!KECNX4|&A@>Rmq+iNJ$(AK*FPD|M!}I4NgExLaXheHvMICQ zM&l+)707aFG%($Yz5b!zCgGF<7wCkILqss%ju`a@^3kFQ z>WSbqQZ20q3+^zr#`l~ztnE?@L@?e!Y9Eu^-QH@U4&>O4Rz}*a{6>)AbUC_L(gqE=WhENihB+D_g3;wDzSnb*aIvmo zjz*YZMVr*$r&9ov!qnDy8rG~$N`Qj*mATfb#;^)AkFmvkJlc_ zPP0KYvyjc`P;$*Gp`Djed0HKb@sIjRayn)Y5y5zomH`VD>Q=1>s(<)0oS+|f06MYm zlY`4J(MlVuGcB1ET#hO5+-l3@Ic8nv$&DRu1fwnok+7cuM7nOcN40U)jRF%2=pURN z5}ZzUI0;G*6}*?+^O`quP7#d1972MT`J!BPPkO)bGAU?X-McZJE$e5lv|Mu!yI+oI zMTQklK}+Xe&QNMhSTw_gY3IcN>KNVC@>@H(ms8?CvlgH@$=b<{^iO0PTfxL@MdNYHb-w{uq3K80Yt z;~savcGjjq*rejj6r$#1lO!}! zU5&@oV=6RCZ@n6_4y5_mgh7JwGPxA!Z40_XI(a5tFk9hXyeUAiU1wkZZ9SN%<d3zj%b^PVOEE)-YE2;soFQqXERbmzv#21x5fT?~25LoxCtYBB;3Rn+ zXqMK6d-2=kwzLiuv{#|>p*8dIq&(zFm9&v{CN_v5ycQDLGuwVDB~`bM(L#dqN=O-P zObF^OFp{~+_9pJ((TB#QkLlKLwL@XEoHbIC=CLNFAv98aDNz@|Y1zdc#zrLrjpm5{(CF{gHe#8E4ZH z9YAI&JFG;Y3@TA%+H$T|&v;YO*0jLPrqf*f*{NwQBq&{D0Xv-14L6LiX=A|vL3bY| z_T`L1U6SXH7e6xDV$}4xIGF-SR&DC=A?6djnSOXkXG4$pEM0K44wwQpmH=`-#H%Se zQF|ireg@t~DXdYsUreb5*J0%-xQp`trVWo(@30)5^|fbyI3^Js?&FYJ5C2n|1(x|~ z`eAiCl%g;tMF||-IB1QikO#6dmeMC-`pS_h435*Kr8o;DeZ&(5v)YH%nHN^K|B@fk zqIPk>8Y}r6kn;(D8*=C@I2{&Bnn-ZKmt)o_3TPneV-66Cij4G4hem=VO#(rm8bPL* zEsA5Bl`PJB4@M)JWG;IH`q@_jtXR$+N<{^zp1Fc=Vm|2md96O0n_(=)=d7!_JMFAcVrS9laN5 z8IRUL*1=G)dpjm6q0;sqC%O!}cF}t!sy6?1olnFZ^}i<|hcDFx}7ZKG}UlcN?oqEp0|m2j2yUKDzJcbF5oy9nb#%(5hLXHC@x= z6x!>|SpDg~rssK~H{A=+5lPx{A%{_QrH2BsrGd^y52k#i(tR(mfgH-yeeOQ3M@$Mk zd$Fq3oQcM(%+}raxpmCYY$uy^T4hPWmwS)Y+RCo|kQxSxC!0X@CUp2yk_3Y6G%5LP zF&|ILXb}TD9m*iL=>8|Mxk)++49Q$`^AE;v84OYMT z@^hdj3>6YV&%LxBXG*_U5u9Z=R9 zj0`U;gE2sh?N8?>E1Z@$I*hzMUCFE>?%^$DjT}x=ugLUZ$@nSVDGEqx6)gs13iegb zRPYj74Lctjg(OgPU3rEKr}N&!M~@%8e0tD-^2cY-Uj#ux1lzlS(V2t~Atp$#;(^h4 zp}494CBJKyaDnp)Ko})Q1mP__%f9Z@Cq6V5_(cFI&uU;neH$-uYV}vnE%1u~R1LSm z-9)~g&G_+t7G$ZtZfO*vgyd!#R-;prB5aseonZVwg2VQwEOSqbKrx$VP(`ZA>2 zG*5~nUZDlf*nmi-R^x%}2A=fDsI?9JZ3M1kz{xQh&|2DZHsK|z3t9~d+AC0LQ@a=+ zpK#j>95jHDN~r+^U08bcx3P6wmR=9Fo;b2^C&bLaVTzZ^^HdqE)B5V6BE{E`D>i3o zNtS-&tO7?WprrB^kf6MER4%4;KO&tAu6}D4R71eiWOE)LIn*0w~khG@~!ASKG^FYJl*dt zmy>>KX;4zo4U*x`qk{PwwcHduuOxS8TGdklY2w>3CC!&ZF~sg81Fa!dGT5M}3sMaV z(pzy#UlnJkc-K)lU-1&xhH!X5{%b_ zuS;rP$FqP_VB}g(2MX5P0jpjqRx8M1Y6VuVWoE!&zkEzL@Am#k|2(Fqx;Isa7+9ea zL?6}=I$Kjul?v6 z9|@Pj&}mAdf$M7Z?Pz>VzREF~;J}v#3CMgnu)SBYMO*fN*t~q2qG6lypD2vpa5AR7 zce>x=V2^ggXEdjzzQ&j`vZP?j>tmWUN=T685B%4aq!$IT+_w@291!%O|27k3Rs{I~NZ@hnYh z)mViMUNQ>QRmf~W+o=MLzQG33MT*@jP}ej^o=Kb^B=GQ|C|!>TEz79T2Z2llji6vtc>Y<~t& zH6jc=G-PrFou=<|&}oi<06NmGzTNygp}UvJd0O?@U$Wfkvei#J@s2X*?tpF+ zV>T7|LI)(2>rxp)0Y%e*^J`ra#L%tpJrw7`dPd_V8nO>Uzuoc&us$P)etolpOurq8^cjvn zuw0#YB9aP_l5j?^c0bH;irP9>TJ3CT3^wy=vl}29d(^B zvxnfIyVhjkD@j}M!A!sQkupNfE>k~s!epdg7mS{^lo~KXtm(_^Q>piwXfBG~FlJfl z;A3mKw7=zZLhvsn)-^HMn9lz=C$m~A$TNL&y*(+!f4NX;Q>T1mpX-zJQJP?d=>H|K zsd?QVI_Vp~9cEy`DKwu(TE&vQ5H2YU*sk+?-*YMqpn|-g`3cUn1kun;x{9)8g<@;9 zl3GtUPOnP3Low-BbWXKC;)Er?6j*YhuDv851T3@p87`gwZ)wz!5^||Wr%_COD`4MM zrxI8_5(Mq=(WUjsr-RI2`9PWSN&6_;&rO}LIOsJl~kAI*)pm0oT`gY2bq$xc=|(? zMMDH>EW3C9_{6xOu(9#*c&rXrkV6wW;RTzcZL?d(2(c`?&CNRrz0k@hHf^(8KnIzu zlgz$HH}@1X75HG;r@PHrO>f&tN;$U^9MnO-mpnJY0Vf3C8eSoD3G!cj$M*z|j1_2LjXDlk<(Jjl z)#DEzef9E>{d!@7aYO~36_#UyyiY5PO5UTt9z1%cYG~SI0=KOSHLEN^0#U!JUiU#^3P8os|fe2R8|&LhI_2yFfZt6N8mRkIR0EgW(^lIz+TCE zxm%9blVYFT%X&kqtU(*uO}&gcASqcdy~oJ|zfb=4gXlK2Zt7)@3Gy~sOfBCBF(Ep) znB{<^O%^kc_m!hApRILnF~$UW$s+HWIqCeMlxI>pnmExq~|J7m)CS!xlWVP6T{_@36W6w?LB@$uR}3Fs}9 z$*>w+kbjsbH!_$31ZQS|w?Tmghm5;;EwI6>Q*{8AX^>=szzP-_0&;d(j*n+_fGO~l z?#K=mIAq*`9rh4Wu{W5_N*X%RN)t1KV5c8gEGv@0pudS%s;5TAsg-em-LN3Ws35)` z6BpC@imw4aZcS@2L3%AFeMQqCmQ=xEYoKJztRX@9F&?f=p}r^Ao8^$M0FQE6;0+JN z8hQo~DT&laL*e$R*N~uexx9~BMd44o%H+m7w61}+^%!UO;78ojLnc$eeV9}Ewwol-J>*~1deYHNKK<35h z$#b>K*jo%vS>@8snf1Gg1Y%N|1OwN5^q3m#JbB)uX#t;QYTsrtiI0*%k7`IGbXFCGXY|gdrdlWV*-Y z(7+a?OM8s)8r?Wu77I*4x@N_x4l2lO*f?Dd4QwAcD}J*W%;&T$r`Y-?-@^NoBzp#- zIWw@}zZdcAAV2-p2?a|(=0`##LxCJUM+N(bpj_f{aYKFnS3s%6tk6X5#jx_ zq=R&Lrck+$8F&b}mli^2Kqt!olV!eSKwua!1moO2q&lQa;W~nXV@* z3gi<+mJ|30SBUj_R1rW-rtXjt=Zo>{aQ(Hby5qq^NIrw84l7q)UVS>uAcqerpH$`y zitbuZ6XVmtF9m(Bu(e3u);f}^{$k&|}->&KsXMmhLY5UBn5(T*=*@~Cg z#X>{CPtyVx6kCS8?fdhRZe?k(r6ExgazN7Ew4{`Wp=8TiA_drxaEnWLqHI86wTs@E zJDW%*Ep_}1800~(Q$0gx=O_>wZ(ZB=Ix#wA1SO+-@N~R7>7SI#)pW4rVk8?AGIMYa zND5k$KoXfJQq;CJ$xuMhr@3;X^`{#Y$wvJaMyg04>StWkGgE4MhYQ-BR6Szy0EFOP zh6*;(Gv-+!E9f5a!Z{5s6Yvlc3@!1b8~yptS#5`w5%>lX$!gV=2nP-kL1zfDeAwrk zqituHW`LYv+~PlsfuAp??YJd{4=KUG(tETT_xW1d4lI)d5R<7n-pJ3F(sp3!Nx`@k zLh>2p27bPh4l~H%LrTyUc%uDLpRcBESCFBApiEuj!#-b6S9OUqKu$1-g7{gYk8C@L z3b7#}7(jTBsZmU_7iv3z$Z;oMoB?t&&A)zlmZ(BqHUEqNVlqvgel}fHx@zhI3JBu; z(eKW8kuU`hA$%m~o;;6{Tnr8oyi;_~jpwg_s}3j3gL!<*PBDoODZD+Y9zBos$^<%O z@XG8zcs}cu83xG7Wsq_u?S8$Ii2**O@OH(2^jwCOX#$AJRO9m*R{B!vhn4=5ZrJBH z{higIW#8e$Ci$Yf9Me@@%J;a_rFK8D9s}g?rr&?~oJP4h3JA*BhmS%1%xc+BJ3X8M za`^J8d${}M(-0a0_!!qc6)tW17HK)g&2m6erc+!F%X!fs^QHfmD+^AG1BZxAPqZAr zS(QiRSjv{zTaIii6%HLTGUbC-bBj^QG_+h^cN#1-1n{A?dkVu}zg)B&T1VKBz}K>W zSFLDvyOzy?K^~NYikwE#U9V+(3V;q7K{c&p=n<}47xS~DZ8gntKvK}O2al&F87)Wk zo_Uhf48E2fKAoOuv|P*1lfX)RE&F%Reu%Z~8WzY3hE9-mK5N-dj|UGSL1Pag=Q0C| zz&D6UR;#u>4n#O`hzLd|c<$WRvR$rl2FM8}9ljh)3jEfl?U*)&4=KT$YfZD3W1;JlsWRNmG>Vg>gfZlJZGU{0qtyg00VYW>^7(wy^>`^>lJRERE} zlk%9ZlRWM{rJpLm#G;%JjzdpWfq8+WixWOXprHK_PwcPgrm`vG#M078>b_Wk=MnHu zOvG6myBB}WvOv!-@T7ZR9f*0M5BANDAy1tP;p$mp`$ z(dJ4SVarv55jrmciw-cYUKC4p6_DRtKiEQzx>GX&2ddkX@27*_({FblsJ74?Kv0e0 zNfCIMOA4@pGO4Zs1@p}`b5S0#vGVf`G*}Io4LVTaLqo;&X)!GqXRpV_X>X{b_KuI&WpI_DAm90cxg021ulf&A zq~HXnAkXuh6(kt_bRL~YIvFTfFM8=r1Qiz4;cOZ$9GEV9OtgVEjc#+@+1y@axf~$a z{B+F@&sKpmPn&dEI51uC(lr~6r>ss0PF7~qq`|=Qp2t!ie#b}zr|YsL3JV;54pDDC zDrXaZ@ViY8IY6+z@1G1xza8k`a6&Tqf0vE zI)0-=bNzf?yH2g3Su@SfJ)^^;#ud8!CzuDp;DSz_J=DY)DAvjeCsx z@z<;%c9S<8A5z|*lK)Xp|C2b}{J%H1y!us>_7DjiADKu{M<#-u3D#u8*_m&6MG#D% z8K5E8!KUgcpymU;qD|ABAstp#6Q4cvYj3b#orKqQ2zK~FI3q_LEv(^yn0w*d5HlLk z;D(FAmziHl;X{JrPdi(nH22mg?P1M90}yy315e0q7(jt)t?ZnRth`( ze>;2?GUkDsgrt&glRF9@w#a79lHw52S_pSH>N;y23FQ1Tv`KXXN$=@+Nnw|19U*mt zieR!FLML;ojt?S#9U`S(QWMnvU^p!1tH1^GM9}g{vU4*l1pg`&JRQsiv?8t}^wF-K7569@1#7UEKa_G`0EA0yj`yPW{Rgu-Q_w_uG;{sIrE3L{ zesNZ;7Q>$TS2;uQah70qXkS%}a4{BWF8NamgK9oYMQ))1@#45 z<|!z$WuI;!8Lon0V}gpyms&zFuv{BnWo39cEfWiUE4=x_7PM{e$N(9wmhcR?Hn(QV566 zD#)9nwE_+e1y`MHYXkKdF9(8kFb9%MyMYAb9rv)u*x&j3(ayhaA3WA!Wr-a!_^-Kl zEdO8_1(6i&)H{?Uv&97G4fnL=q!THVDCm-)gK{`YR)-4SsD$H*eiS6Ob@}4ZQ1F3M z9HhLT2vjQ=Avm~N0{|Q zQJrmFdJH5OqkL2=)U1lMwyQ=2-}~jV_i(&;G+WW#LeVT!5XY0=H>D-SNisyy(i<|c zNa%M-!%|(jLN~`R22=dL7}JdrK`>@X38@lP1B%pLSKKtwQYRv5>5G2v({OppvrMpm z>X|VK2fkYwzW$6iq>@tNB{Y!&g$UN$G3()YK@<5frIOl^rL7>rdo#g1c@?cF2L)T1GuqtGZ(Gz?jI<;~?;4s~lBebzH#)S353mH!G2@ap29{ic5hZUDx80 zN_)q=%My5$^3pEscJl)0V~|f;ExKnF`v$hHkBDo`C~jA`cf~ z)7B~vH5%CT2#b#q7KL8C>aT(&&n-t-c~EdCEW3zC0Ie)*;J}x#Y(&?}vTQpd!4|cj zt=QOTKhespyKK=E80@I}2J5*#>8muW(-`Y%FizdBZ%E^TQQ49|p^h)`aocvbOre48 zez{x@)}t}CoUeQIdtZO((2WnSraW7mRT@uka}R`%;n&*qcFU> zp!up{)o|eY<@}7?p{H{idiM6thEHa%2a_>*pVLiDyHr$rW|8+{|LX_)U$c}8?sD~@ zP3pIxg1*l@kd!{Uaq!Xp!GqmBCQfiIorfzCSMfmE=N>{z*~@2H+x0j55qRJdc>x(T zUY(x}Cx?sPj=BbiPIQbXBf901nMyECv>;YT3J`o38K0VVFfPH6G|Q#Iz;l`LB#yF4 zYKSpSoT}gu+ZDz|OMWNih<6f#PAQu#;H6VWZ6w_i%xu^uWfl%xJh!4owoPua_LS!q zjRVQoptCetIHc(k%dO>_E|y_bf(|{KR|XACH|%qd*E3p3pwpzu>Lu8gO7O*)U`1(k zPehfhS!v{WV7nHkF;Ue7ONVtS3~F1%n5Y6R8G~97Sv0B$EiKCGLX^Hlb!eHsphmpC z7|f0fwdx!kA^hjfy%2Xz@PSZ5-ohUXzMUgjs853vPJ~@{giScWzOX2IyJ}F^D`unc zbnx#tTZUfOJx2%w{7dc&h&9Pn@}e{y9P8fr0B{$i;^@f_5UuQ*8;U`hb+uWJ+1CMM({jkdpU^Mc-m@g*d!`=(}*`rWFgT-RNk4_3YOn}%%JB5g(M1-T_Z)-jXZ%b$pL3jn?kV550 z$ZCgRk_L=q0yQA$ZsJkU9WBc5iy0lJWSj!mCIBTlD^w6ihMmyuSKKAFtziu!2qVKz z=s*QaWLv{(z&u?UbUm%<6d>p#bC#=#I> z0Y^N-yWm_&g;PULupqu$y}*cRRXq$+@=V%zD^u68TWmmCV1iO{7kV(FrEj zHb|OtjbeDyfFQi+6OM|*HJ`c*j@uc4h|6Gs=7LWXhMN*Bnq)})C{vdh#c~+NU=hsT zb1Vi7X}K8_jsCVSLkBX!LUb)3FhR@GH=aey(9P3l!9aAyPv3Y(D=`%7j+H=3!W%QiPF+Mofa%fw4@s; zhI~NXoXCQKh_xK6@>Q_S*}Ua2SfF7o;^_&6#v=dVli!xAi#&3Ys=|sKI-l79_;Nh!q9aGJrbm+18pY730c!|V=!;GX zHDC?l(cebh5^6vY-il2+9gHWmRK#0!fmfhG%9z!Gf;f?v^CFn!w9QKm2*R6jN*BZV zY89O8m-NbYIf`SsTN-gQ(>x|&zg8oj9o?K{o7cA*FHnVG3 zkl(Aw_jPi~IYPIf{h{(iVu_c`8dLO1Ua%BTLYu_@K zqkTcUqEl<3Js~nO*y7WiLK`@%pU8KCYam0d6&LV8SJrZLguFbZvwsxh7Z)L)pXE|y zQ1}a$Mim0v=Iz4dZC@`0X+LZx@ISlE+5{K$WpmaPkfiZC&Dnqly6)xdX8z7>B^jHF ztAWLbj{EgG`cbnW2x!M3Ym2>k(vU#W2kdpPM5)6&We`(a5N?pc)v5sjlzg=O8%>Rh z-%y+#8nheVyz#8RB2T4dB5;J@QW5|f85_|dY=aCR8WKK8NLUqbR!I$#1dEt7lZ9;pFnJmwf#fPDnUnuyIH8hkgr2OR*RqjfcARe5CK|p?TE!NF6E(PNPb?7oT5507<`;NSabyWC}dW3b)`umx6ZY z-=qp05Ox>B==uX{SIq?;eHF7X@@SUS@K8z`739AN$U#f(DqSP8RA-DR7IQyRA_&MF z8O188qkyb?fh>wmO*f(R)ow*3Mbh|Wj1t1;=*fF+JY7%wh)U?kI&487!e;5mvvZ*j zU_pN?Fg}IO>#yicU6ZK&8N>UKpuHB*QkWt-p22%|$%H&Z2{_Pw9MF;f{w5R&tjUE5MMtB=@Xj9)Us z&G6^oA?J1|XEsi2kaW5^4L&A_!zPAwm>74) zRJ7|&R~E9`B-ztUGFdDT-Lype>M{p9$aXSV+IE`J349+zOC}IOs>iA{#K9xMfL!8) z5v0vS0?GX#Wv2J(PsT^I3qXz3$v7C1OXi&!+9WoFATOaYifGaxFBuky(E0gahN~|P zI=>JObb2zNa?z|_)6`E5Jz25Yb}|s7feZs&OJHc5HxlFY{ zyAS^QWcTH6fB)s)-t!j+j~=olOLmNW`dZ+ugeT9=NkRk+3A%6b#8ORo{Tr6@ZTpr8 zEJsBTzW#MrR0a%Gx<&GY=x_U+Y}*zo0as7=B}-dtx-XrRW;%5|*ILv4#?jqU(H`j# z%Xql#Ju4T}!Q`R3BV<|(_|QPIrClMJ!B6!$M22ne9ws%m_H3sBN zKtYtuFRYG9#{2sCjU9TM-(yU$ULn>s9bVZtKN7d%NG7-DWn117cwoE4*`lR+Nw1sb zViCPQqI(BvhhJT!*4v>i+hSyI$1;qPTUiddqHrQ`9*PtP6n*ID zp1$;it_ZWmoA$hdK%CSng7DZU=@CyJe9*>DqgP}Z)cc*lGUE1AO!XbH78wPCUDD7AiB zzUQTug4Mk^c)9oF+2iNE(dpyp^rK|lmQQsG9jW(QWB<96{nbbhHrV*BU2B}imneBM z3&$AUDlzy_;*Y*U&ClcEPP@@ph5%apKFWV|GJk-W;Oat1mP_sWs5%y?@_PmU`P2QA z^7I>uN>iRPMeTZp90Szc^=i_AaV&fEWn8tuSf}SXz=S%@EBG4ZcA?( zU!Ww>jJK;tfs&v-udxX|88)$9EAiV}zeWd|R}DQ8#iaxU$e-I3b4|G#^bQ7#$Li;N z@TPxK3}|Y=x1$9I005;&b@-6N1^H#~p(nGWvUeP8u?XhNfCxz)9>}iZNm69KjNB^( zE8_r3(`iHy-oUdUR7b=jPQeHfI7v+~Fp`uS5Ok4Q<52i*&B~+U zN9l`9+BSVG7ySyNi_JMykO&vXjnW#e^0ZAWTj+`CA|LIxbnNs-RQwys2Wo1j zh(e->9N$jP<|hwk17-Ie zfUk_a>sDj(P*)Kk19t_%e8fTKH3bAvbI-l%t07-Q@}CHgaSHZ(99mvTg$)hqGDF)A z!{Vfz&^U^f-)_o`j}9F_bLxFtP;fD&Bv+jTXKoy9-Y5wYsQT2s?yI6H(o&t`nyper zMzH4VQ1hZ<4rsdL-u5-A>P>fgu-p>t(K)QV5+H;BmV3wNCx8FI4O24YMhB2*H@M)w zu{xn1NV&t)ammGEth=Nr6op`cslqYTIamge!5xV>%-vI*~9Y{sQD^=3+kWL zt<}8){PyV0urN2s_sKz8okZ@l$|C8tfMxdX>13sZ1fo9M^t^E*3}i`$UrvX~O!qOJ zc1HtYzuq8>?thrmy{+mni*|Di6iPDINs=f`@ImTNYo!)%hVcntNyop1JjWrElss|M zu_VU!(bj>5pc9oxk+ zK+eZiIu2mns+A(2ry;)=Q8McRj-Z7y1Q7F4tr*nNDA#mgHk>b>I zXr%py|B|6kBwaE{uPuw3JV^N`KK1@=FkhaOtDgR&8h6rK(R9q4Oz8kKR~EA*u*U7Y zB;GnmR;}s`!j)8)op1s0vZXso!T8PAY$D$ka zNT-->i?OcEl@<3~Y?!uPS&jpCsS#8aFuzCZR#3$OL9B5xZ&RSxN3EDdeS_N{Npuk^HDVE742v*S34AuuXjYDao3B& zO@&#}7xY#RQ5)WU%Hu=J-S}CxslH2VUtv%i!3e^EWn}o!P;k?|Hu>@YP4mYbL$pT&X-21++HH8(7!<`B`A%~V% zQ(;5HC+;mz!^+uZZ&8pl0jmyzWjcqMRT435)bos*W_u$eFEO3zVGPj2%k7I|xt^?g zhwG!Gz$>6#x#hUE+;rfJ?pI+s(h0Z41vf7jRv$UKP$a)%^w{(nTt&Nl$T2|A9apAQ zIkiu#zUzoW?J;Wz)?OS|Ts}kOjr`PiayxX!uaUve+X}0aRzcR2(f%s9y0~3i5o1Hc zZD%(x50I$y$8#)*>G3=Hc-AH z{pbYdHi9%FSCuD$pvp|yXKBGOXf^)t<_&XarfpOiCP=%_F+y9#Yj@iWLZq?`3nW#A zTED-ma*p=wRRsNDJ|bA3;mJ#6TmWAuLdABAOHXGaDtL(ah^yC9-BWRi5v<5?z??Y( z4#=t6yDDS!qj4$OW}2qKYNhbqaA-fK|$J_mF zh9I>f7z3oFGDM*ygmji69zJBGEMgAb_FoSs!OgCnS%fh_N;N3a*4$N@qk>iS3mP8> zw@VB5(|K0s%BW8OA-C6yiMqX84`O>?9~|uIv!=BE9z@O(Yz#6eBccWz3huGjDg~*7 zSd!A=Q`U(9K6Kp8=txBNlQgAL89}hWJ50sP7f(%gBt!`I&KXv0ix3@__{hFzFM!Z@ zi`d&l=!o1R^m3OBON=!D=u5%h)RhDQ3H1Cb(4)%8PFcPh7dBW0g=in@&);qD%okv% zq}B65C2A59^uk=#5#PfqFFk-tiDK~3@IjCoJan|C5dnS2rh9@_@c^z)hogX&oIO-P zK&GQxduVuQK%IsmVGq+wF%^s*XT#S$D?hBHq1A#L^l5w?MP{;&j zxe|lRZJDHQON^s{mRyNZ>;6nfwuM3Bfu;`w z0BW~Y#1(QhBTXtGBQuU z3E84_31ZRZ$ut_cF6ig9^$yQyjf%4n7OJRmTbJgUCv2aVnKdBm~6^L~|* zqj50_jsgpUO9vLyEEWkI?^YZq1>cDIeKT7rm;`zlq`D!xf&u!)O8b~@*bS@7zckYi zD6n`IqA-1|G&M|vf&sdh1{0%_kNO&>0Z=KHL}%EP#X^DQ+9{n}rwu*w8l4R$bW*ZM z{{~*w0{;%6=sJiG0VF7|$KR9pdEl!laIpYPhSOkz^ah?*X;tTsCKK%?%8wukPR;>` zu|}Yv{n_dAn1TcyQE2ojlOq!}p0$IWW+tbB zwEDtdE-Bi<>+xdyLB2dIJr0Qam3uo?!Vq1*JX)R7dJwbNzi;lF9QMXS781$iIcLO# zcYCMuLL$iPxfG_Xr@quzT=i9i6bg*O?DrpC+ApTsLgJJhHpVvg@i|LmRFL@jW-IFV z%*kb@P_TC5z&92`ZA7050_z(U{n}zZ>z85d?@k*PP6KJz-b^RT4Y{Xc6ZZ5*zjD%H zMiLBIfTFu`dXE~m`$UB=rW$uLg>hE=w~Geodk%O%Ho0S5}wp# z@iviQDhY&`%fNx^3Ld0b!&6#hk5`Tb5vYK{$QU5#KE$IB%i-Ga**W<>w^9h`UfL6oqppo`;Ntmw>C*$E0?k3eq zNpQ&Z0+we>xMQ+-Su1N)dD{TMo}rwG-}Co^+-kh;ijG*}H-1`BqU zfyh!`0}m;m;KlT_6m|GG7-$My5`ZZXV+kO~P1g=opsvUeO{Z%W8i;hdi`AkidUgnM z;Qem+cg|IqB7?A>rZaMHuviuuk48a2unJUI%tAiM`+0@rmox8ix;&g_yumW> z(K+O6iW4$*b(kxg(H@Kn&b#V8QvYTwC~!fXpBWfeHS5tKL{G}Ik0yer2qxunDM1XC zdNGN3T%C#uqH+C7l_YK%`iuEPZ)d$w?wMbacfb=0N6dG<1xw!>OjJXJjQc_$Z>OBB zr?Y44>0z+;Eoff1Rmiv?@^gX6rxboJAyKfhysbo!2?BpnCs0?$bQTL%mc{A<8c5R( zZLa+3cXq;2v%s%tJ5`zif@(9<3d)qXE;BP`g1}#H%uKHY_}*%QdlI*^o5urjKdTdG zPV4rgm?DC$cd;;^V;fQAxWJcX&q0*t*hUnEYvl_%=O9XRKvb_T`zSg=L02#JGs|j% zoknpkCa56sAL=A7=~(ob9JjI}1p`R2$RrtLszs#5eApXK#%k~7D{}N%oW=7Z!D%fH zgn>^68}w@N+k52kK%JI9QvXKHsbF-$!4eWee8~8Kzv(?j7yE__TY`3-!_^D143MHm zU7kf~*1Rf*bO$mYb@|0;gAVAX%e zIqvH%XGSMjivtX!3o$`@6;I=VQE|BD>nnm)WPl_o4I&6{;8_qRV}1&j=Yf;tbfBQU zjK_&q-)^<@Vuu-4;GY19kkR3R%+E>vWyd+mFhP13@{mFzrDb0__Z|%u1v|9>OQw}0 zZx*l$Hzqn0ppo+e=!E8~=$kEFmfNibFk}e02dlX(Fps591PS)*ftJn#4h;!6@e(A^ zB687Jmn^dM3%1<=lw_|^K^zr7nhF#Pa@NozT}Iy4_#7Dm{FY2t5PEFEHxgR3WF8_2 zKY)c`YE3v?CB10{LsY;e4IW}cM3mpE<%?^4+x)IjLF~8V+BmMs^@lbs+HnpF+Bm&* z8+8A0yyByT*6DSqAdbqn8DsSmD~)Z-H%HD2fVWcj6^tW8K$PRuxfF}n!Q{Gajyq7$ zUPHY=HG8dADtU7z*med=vUXWWP^!G9aVdq=>$%_PVCP^#E+oML6Is2sVBoI7hJ-tg zm`O{;S|j%qF0nWj^zK@JP_9qCeaBnFntg*t!H#u%#!k0 zU2zy}stI<%^Q<8-6x@y#s0E#Vv;iwA+$yEXG_PkBD44H)U(SlLx@q`Z`b9T+uL^#o zMpCu`VtDb1L0ZQ3fB$5D_6K{^{{Q)ZKl|@HD#n8gm)biWuTJ{Tg`RcWf}&0r+?ack zmc|6N*s#HszHt^;9?=wLYxuV{9Xn#o0vB6gXba#20|eb=_N{s(Xu$+C0YJoT77t`R zZ4274Bx`q(rK*hmsI7)eS82CDZcpze&4H&A|9LAq*+3i+hd$}9Q(e?hySYGOniySAJLfFOEX z|9vo=ltHG|O!_ymSTs<)Whm$tRlY`DW2}t~8Vm$B4OGR-Q&#ZWq`{zp;=RH6XxMZA zFqS`T?j`h#rl4`0G(PWzn&TfiH-!sMIxRGZSuHriol1ZKLJF={4CGIwy3}YLNpNN% z#pA=}*`f(}J2p1!zQ)p~R1B{Yd=>V$YnkCNt6{mZz~{QSs2g^?qf} zMR7{ETeBi5h|!QLk`@UZUSmb4Y*b^_RrBG)fz8V{`nsy_{whMlY-4!f^O_I(zN_W~ zP+;Mys;Xc&sjBe6=aoT{f=cMKH7tW38o0bFP2YA`r7JKnd8J)_S@K%du(VqwaPXX} zs=05w=H;)#1D`ioS``!SG1_o2qj7-m)!x$u#okXeM-4lF9}a9cs`kkHdNJTbO~JZr zs$B{Y!TAX}Wouuj-h;)lJ|wxPog-DuD-~f^|B1DWf<1AEX$GPa2I%>Pd$&eU|9DZZ z=S-ErlgJ^9RaqWr`>jJrXq&EAYYHZE)~9K^xsfuVawHhQ!&)0vW*MRP(>lF0oz?js z48#QPJPviELXQKQ{=vN+*pODKXlF;q1gD?|Gumb;;|S0H)s_9SY|wc(r<43LN*>QZ zux9AMYE5RKq2P{tDX>%&BS)}A?y%|wsOUT3zwh1&_>aoPbg=556cb(r1&28tWUUOJ z0BW-Blzn&|T@2J&JH;5FCu<#=L-t37_G@AdRA<)l383a5k-)*qA=YM< zhYu~EyEl_s^mfQ}{6;y%EspshMBuOIzy-2GDk%KSfg}~`XnL_Yfn$-w6^Qd#pzAm8 z{Tf|iqWq!Nu&d_LWUG-F5<+dh%#j;iqIu}9%vJc%lC6z%{cPMgbXFUE0;tKhRWw>g z+rSHcXKfW@fSyZ(#bR(qJ8t@4ipLYobS0|>`dwSBBQOwM_ld0Av)Yeg4WVTGnr8D6 zL3xEys+f_d1Kur32Iv_+z=7lt0b!v=~AeWK*7?oD5hoLe$YHE z77Rp}{j|_waay0|TyQ;^vz=syoz>Le@gF^~>G8mfh zPu~ny!xQCXNQ>AyQdQr^U1qr@S&db88ke8XOA66;hW1wfP09$RpXr>;DqXDx!xOr& zG8p*?4vbseEi`&uP-pTqr!My7kgSGmYdh}dVM=~Z5k-2Z%nlt$1;?GYwpPUiTm8B= zC(T%}rq~?|R%y01U6M4b_t9%Q0Q!`Q+MX%as?9Uil}6RH z$`sX?j_ULVMzPXaaoYc3l?IGZ8kN~Fg{po1!OK8Q3cVZ4fO_?ZwQRr$rDoJb?UeG* z#bHo7Zb)uN)IgOpDx<-5VB54(_DnGEd1{%&x~795_S?DX(oE3hdK#9B`GEYnDO@;3 z2nvD=N_KY9TyC}&=Yb|O4iEE?+*)b-J1I&KX~uOln?(ggP<0#qjIz|hVlbl%j_4Fc z+!;$}1!^FZRTC0G1uNgxL#ofv=cs4~6|C@fQjW4r(8bCTe;SEo-B>5(D8mCyAEtAR zh7c;#!jiqs7)p?B9t-qjY@}MUAHqhA2bzB7Y_z7EU@3ZsYcuWo{(7zsL~>`m{uX1V zw5c|bLETTY>gdQ0U1K;bXw1pANp>yk8>mnlqk^)kjS3%ERngdv75MgTR1FbS-Gse% z%GpSVcS{~Rk@!eh8>t_>yNjX0Zf51wZdZ>a&Y(#ABLw8ZX_N%_tXz$c_<^I2xGgf$ zeJ8fMd7@7)NURVD0@zus&+82Dp+iF==W&9@-;?er=K&4&Yq14R2f-rhpX7~3UD`D+ zcyFb7`{X3T?Eb7fZjBB8Ux5E11$I3q2XNPVs`GW~59vngP_73(1FwVvK4^3;eDsd? za7qho-NJ7ogSrnw3s!yl;E={wEE@&!Z7f`7WCc|r3Dmd|L;RpRd9>nt=dDK!Sr+KI z4D0CmA&oVQ;KFIiS+{Is>Vtyu3TLEI3=JDtCP-IRX?PpgV?$|C!FiE$hJ=DsqR90e zp@Ib4CC(PLQ-Uxwo9I{@<;v7!@=0Cj>udFni@WWPSy#GROx8Uzc-6`^^}JaQq@FgO z%zCMPayXzQR-@8rd2Wl*KuxM0G`QW^*jn2zhbrr&3%zu2ufEVHX`m@A z_iBTFRF^g^R5%zRA5v5|CF4cXUW!y|~pkCaQ;{kF&Ts84e-09y5^3>ArX?VbMC zPL=$^)@t0~gMyK#67vI}vVAIn3eJ0IJ)qs9Urmp=GaS%D-Xx}9bu1iPp#1{IWUWM&G}YOs72dthy`P?ar96*8#Z zROAI6=C0NQtL(3IwGiYTP*xxHKd{ar_-$eG%;=FpgV?nc_FFg6@)Nzql5#z_LkGQQb)9a#YO{D9HWORSTj~XP z_>kacPu2oUl>=%8mXP=g?-qlqdKH`^D}-*hTG7&2Y>w`PFbW89E8f;3Y80ZkGlP|s zEjFR+?cozZgxd!iAJwiFj@?PDMgnG3_29J5g*GH)%9e&SGHIh+-Qt|2AbR!6w^e#QOZkXi{^c! z9*+WAf>y`UWq)Y6ns!FU$>9V{SbSMbg6KGWmq8i*udlE4~NxGD1 zwW%k^*XY>ydC|Xy1C|92j)^m50MQlr#s6bXGY|mmDpu1A{uU z&$_iO7TGdOeFq^t1i1BAJuRw6GqG#t7L%`Zm!D*S4!0!}Je6P0X}u*=%LH9+m>E2+ zD(|VDq}o#ylkqgX$EWo$Q^*OezrxgE(|ge#=r*S~lgB+ojL@00sj3}6v`urI(3-0s zS|_WdUDpr803B|49$4DgD_oUtJv`5{K#%J#QcuRqC9S8ac^W8kr3$rR=_WG0Ju}y) zQ=(HHDk==|eZJ6~)1tgxnQ`D(10 zo|SFUMmI2N#R;X7e2@H&&NtsR9rU>!Y3+Tf;(6!|FTNGK#cFV7JQAXV-mSs92h1!# z8Bb)3R&JAwfCX}5Yv}g&+^k{IL4O6sSzBXBXU*ukJl5&7_e)^VAa+ZB)wga&n9PbT z24i(up_3RhK^D&r{qTgE@^i@!4;}PwT3A_SS(bdLzQu0zMnh0-liSO@mV+a{ z+O);#YmpA02a=rMqLCDBb8g{oU#o%baJq?tAvN0|6q`of-9|Bvm+DG1UPrcAc&n9> zp@KEs!W$E&T2ERapYz<=;+UI6QbhtWydAZhMRsrtU>nj)yL;6Z7HiVF zvQ0z+F>dYFWR!VMZ5Qd&oV2n$CkI?!gtmwZRhwTqE=Y6RvA#5OFo)S_3l9&09!pRw zLOV_IhPGP~mH;B$!iaAPwUWf_(0*Ygf`@>h3p6=L5i8&1%57I&V44ZCf{N`uoXDZB zDt62QIWB0Jwxf;1Umbr+jup1pq^T>sc`}IO{k2-L85M`?V^)GX>aQzskUQ@rZ5j1_ zJg)Ha|RR4(F*~&#@f3{6}7zd>A3Qn?Vu0g@$kNB2CM-|+M z&k9iMz2_*v!9xHqp4L?;a6IU!cvj#b=R;}wezBg-LdV~Z=6N1E=y^wHw*sh{Aum%_ zJv-`SH~~cPDr%nzW`gHXMbktOm9$J^*4eFPf{7=uoK!TD9@!mLP9GjtaLcZ`p;Awb zXVice!*v)EcZ-dvx^^n0fDqo_s;9IQDh&dr^GOkS$#vAja2hw5XakF zwT59=G+1ZYQG4sdLx4MLVd}mTV5jFy!4?ifwPnV~hlHSgQIAmgx7Uonqv4RYfCdM- zJMU7ZUwu!#&WaC6x7g*|Xn~3WG7{OK+W0WYSeMxVd`RHq4{fPrH`CGhgA+hRP!{w# zsa0^PbXR4;frH%nbD6TR3L=DW;rLTq0u(MN`EaM&XwtnKs{tJicR~sX3HlGWgW6xx z^@H5kva9|hDcXzzYL#$!C^2iEflb(>!SaN(6Od~m0;n-AFKIP#0hO** zNTl#`Y6kil9f{&9?VUwRf>K*&llZ3GE^Wdu%Qb`hv`vaPbG~~b?WrXO(cmZ{bt=?i z5^F`eRH4D4qApMLx(bugWu6#x=t%Zn>i(_3n^f9!)@Fyr1-BW%1m!_lX>b@^IVkmB zu4Q+~;7|6R(e$B{-jmH6lDulX%<{YwUX6)4FZc*eaNnas(F3Fm9Oy3b?<1;z+3dfUq0&&Gxd0mSIxgvQI+lrlXuts+5ZrJC zD$c749^Kal*-;z$lpA@ z9v~<$^Ym)-vV0WW)R{@8!2;1$5Mi#MBVRHq!3BR26-NWvt%%GmHZn%RVWT`_1qs?X zjZv_PR%v9BC9X$lG{+)Y0tNR&<`Zb~kh=FBVM&ny!obV_+@KbY00at`Z}w7qeVV6F zHz@_XtxfVR0SQ{yJge>COe@o*c@E%`bY7kGmz$f?d2pb+h$tSp^g6e`=6B1_j`6 zJMcC4z5HDhXu<%n>;7p2PPu=whNnsQ4;&D@=P4hq-Z1>%HxsX50PpKBUI#~`8|v3M zAaG?zZTfUm@hT*cT!E3)SF{O17gVkJ!1DhzFckv>mFoc1w=;@Q!*Zla2jGB`6n|R> zH)b@Y&_JMYEtMiqbeTUW1t(iFgfj;ARa+%`@V8`!!ji58Klp-rYFJ{D4A1`}#Vu3eaWhjTMVWF=zj!9)TN zgeJHA2lUZ$#E%V3(hWYC0eA<;ejwrA62nvfu%+I00%lV-Kx@G%p$g} zr&|#k$gUiot!U1(7@Seeyg98LO~&7IOFrD(&n{P^)!DpQ+EttsBKY3-_-FzYtN{qp zmE|&M;JM)O&|T`hPZtawvNReDEM96xMHINFMQSV>crI0`p;g7Dx`dq7E~PzQuUbLj<31z2$robiHk?XV8*7UA9mQ)82u{%cVFuEy^5E zjh9RM3$=8?8^RX3kA$k3y?i*F4jjnpE3NVqTcr?}`O?)ioS?+t{MvHAS#)84q0?67b))_|YngVA~=I&sI>Z`o!uT2m0~)|K5#Z0oWTr1Tqjw`|B=|OvG9X8yg!l0QG-p)XQ0sf)&q{_;5zVdT88L z8t9>XCd66>(-vXT4zvuQV3~kH&VE!dgfkzWA)56V&cJ3o978e)<#?S}<(0$~9R?1u$tC<9n29*z&S5+92@{Ai#$7@v(&Z7Ia^2bKa?Z%aY{V?2v6 zuoMC`lmdACSbv1lrVWgkivSO-6&1!%Yq7Gh;}bW!5A!f^eB!V~4&pw?z#Q-%hix(Z zU_Q*kz!t-Ui9E!;nt^%XeHvTF@od0AbUqXC%EkA;oP7K*zq~`Y#n2|!{g&P*w0~q% zDJ9##3CSFl$wR_qw`1DN)p39F&H)9J;WT(4e8UocLR%qRPStqa{DtMU;3To+&B22H zIZOW;9c-EGnucEzSWuFZ&;xu?T-jWT)9edRRxT7uu0Jqqqr!FMJcxxaNW^y?u{0@9iE zgbdL0E;xN8vG#eg$4^X7!6AEm*JGZ5phL|Q+7+ln8c@ep6BG2R2@M(cGDfhCQ4{f9{@xURwh^2(ishY}zA z6G@eRCS-W*&!Izyk29H+yV(_Auo@m`x)`9xm(VwKlH`mfl!b>9UqXqbBbHDO9Xeij zF2+*sOs|Q#Nx?e?4vhP25*i9#b03LhkrfKAC2&}s0yHxCU!GqrC!Z~w)#5(gTS@*n zp<{WMOIqh=xi47oRzQX~iwM$}Ql#p>2F6*iyQz~?1A_9#{Q9_gFu9}uH@=&tU^r_4 zOb#O~&^#Z~kR_uR+6v|vGDJYjQAJN?RZ(d)P~8l3MJq&y1HXy6U?iQ%lm!FPb0HC( z3*eVj6iicQXf#xkWG}~J!$~w$n&g4lBUnMAppqm9dHvaN5)B2C+w;|Izn@I$ra_v4 z+RU5zbwf8FPFY>;xUq%y_0hc>^xX&Q1%oxcAiT11B7++d(^YUa&Ld^0V{xVseN6KmAwT70Al0U{OqcZX%w*0l{rY zKocqIsFS^|lo1uIV#GuO4}>m9DWV}c0uBgnAVfZ#24Q@_Zq-ML&dvU73$gt^Drtah>{7(ejNdLR*7~E z@=EfCiMob?P{&h}0*8|KrA?W6sZ&0+R9zB;hr z6($XxblFgoB!RM@^eLm2pm}p4pWQCF|F&G0r+})cUWHkSFY~LaS1~kHJg>4a-%swS z|4h_6ityfogHRU2m5+o=b5T!nOfCxtE*-T=$QPSAZ2+NdtFx6_+M!23Qknd!V1im1 z$R0kn8O~!v#XI?wGzz3%xY*}hGKE#7!=XdTn|USi#W{t()^84en@)!{D2AWW8V()S zNO;Gm+8tZk#H%dD0(iA|2yCcG*aInD`Gqsk)!q@ILrKCrkoFAT!J(m{!y2yq&SDLR z4ka(yx^n+O(+%sd^;1E#jZ92p6dY=^IALInF~O?)cvPjL6w%P7V~oC9UbM6J$p(aXS>O!c{H70FIRjB zUDRFmXttvHe@MVX235BpojNW;1y7f}sJ_DKTN?tbScC-cl%NhrJZQuMdeLCUXD2Jc zfkOfXe*f7WD|AhB0dyVOn%4SQgu+EIwJz50mxwVKY5!=_*fNISO9I2q7aKISvS7 zz7ZzgZRrl5hTqju>l-P22w|47(|ikMndx-B-0$frK{2aaYndDe1W^aU7uBNq?$}Ib zbgzRbpQ3is<3#1dfI-dbNtj~QT#j2$B5+8!9p^s2(zd9N(wljM3*uV|;_Z&FU=?in z3sEvgpDS3NQU7w!p~qi=l6t3P{10wLV1?yuB4mp@NjUz&^brjS9M`H|T*fHH(Nf zGRPCgHV1ZCrpGb11qO8@-z`0()r#Zv)2f4LOialxya2CPj3$5-*3pnsa7ZeQ z`n4U690vqZ7i=>>wzTSgm|PwYM;e$;KDAHN(jh$_8UA<4*f@f-7K;9z(Lm38U3&2L zBrC7~IFBgD1!d&a`7BUZe=V+P`L{FaGE7iKYa)@V&vZFX=neAef|h&r?Y7a{Lo=$p zEG2YO9n9&ZcSYt6zrEsL&LPh7KoM2NZbd8cKG?sXPn4p9E}B2d=~AW1e81qO*#ugy zLfS&qEKt*7rSyHqXR(r}g02pKq7Zgm@doBB{$zQeh*sNjCXysM?<(~PAY8Ccoa+H;NS=;VG5k&mIWNDyEwV;{gc0Pnp zix%~L0>mCkjstpVMI!i`$*0vZW}TvG;sC5iih_p zffz$lsz|+b#Y*cOiZlrnb$F1n<#bP%Gi$2H|Q>B3k+B({Oo0JF2k=uR80X-c(G_}Pd zoG2T)ho<16qN5!%TOUFlBe!FQ07|&;d_8+~M|*is*S_9&x|pDi*M9khEUx<6pJITP zn^eaRwC{rkKXe$0_FahO+k#^z;!sYE2QHQG1FbI6#;D0hv;%qm>Eq?${(<)TPG<4x z!LpVUcnC1~dm0}~ex6sNZ&jtKcak@?saWlq77bM)qeoVXtU#kW699?yU|}?4IjY7K z88p&v?p%ompEXp>%!XyHN1+WR5wxj@2ng?JbecD|SJ5^W2PVrj0S*ncjm3QyBwKBV ztZO->4gne&?5d55Ens}k{`CL-*X(PE@}vX=Qt z(Pm$VmDd4mD4^9w_mwXeSy1~WfxHM@q5zX(H_RJ46cEZ@1((L0`@EhSGXWXlw}5| zhj5SLdak0)f&~`0&|UQZL^p;>UmJ-Y(4a>+4Rf#3(2{^~_VQ*w4+b}rxEtBgfz2PH7kJ3$GoENKw|;e;%_`v0aG(kDbGUA|k5~n& z%a6eW(JS-)!-?A08txFk)@LjjXTd#%3duN39ul;-RO0)atHgEgSl+gek2GQe@>hFX*jVBvVCS;YD83FE7ct2JT{3)9uXJ#$wjMV16Z$=hW8C zlK5ScZD51{jRZe+9H;6L_1%HrSXeUMSfU}shmKU)s|ym&QUV$n%(oI2IEY>BC1c={ zoGV=Lrb<3#^|4AG*x*k^nn!fBK-he&x^AJt{I+}%;kS#f>)2~3og8TIh_torhEneL%k3C)ax4__k-twEG zQCocHe0Hy-dmQJP!GY_=h>LD@qn%T!eyF>pC9+Rw-hSjVN| zz$N@%pYGi97Zj@e9)RFOPs9e$`Kmo^se{f;S#SfSE%mS=kceH3&6ck))iWwYFruFa zMdV<#jC|y~c}gbJvYx53Zy>=b{F5#M9kZP?aNrVUNI%j=Ybzd`t1Rje!6;%11r)L^ z^O>rcV)4Kx@<*4lZs*sc3RdOMA%aoV!e$dsU{}>b0D@0=3*DJ0R-&sSjDZ7}$Qvz( zOdko~tjZez!6!p9&3SDOS&J@8kMsz8R+XNCL*7KqqaSIp zZ@ijk@xT_B-Fo(TjA)ITKvh(Jfh3 zTm~+~wOq_auceC1z-75s<8moDaEVy5T+=yl!B!PZ00=%Y4q0wQD5)BUXf!Yh@1ScI z1XW#$X*h6+I6_?1r5Lk^;t=zUbUVe!j0O>m(o;73ac3JSi(Rt~^z*23%i<+h&Stpi4jUwpVJ{CZ=!yzAIbqy zRsAq<;1cDwq03lTGu{cTYLfs6J~4h)=Y`h|?d)NWSv7w4kl@5hfvqkZqNDvfw8YP6 zi%VA8v!nJ96uiQ=v>w-vYFhw;PuN!dtao#aXIl>mP7!73dV1-sRik%{2R2a`>B_!# z_GrwO*dc;Z*wp+kvsmS?9ul0wZ&JQmRVM)mK2e5LF_z!+rQ@nHw0Ie|{k)|MgqVv~ zu~|H@36C+qiiW8wdOJig3Xh@rcuLYX`~YH=$9PC^%3RWWL$v3CxAt|p1Y#GX4CD2T z3K5LLOX-rKQTsC%FV7|`eVvycFBBfwWcktjFRf$qS8^A z!TX|2L4$8WTHrknBuQ!@!T7vOtToZ?;A`IC7t{|2k>E3cV0+yq)okik?B#xoM>kp1 zU$9%pfhBk)G!(q*J_;3>;${2=`&1lMp5Fq4{bl!wW2c4lU9Elx=iWnD1db1(^edr+{7_(2Km6Y9*x zD&t3h3SJREuthRF1Xme9013uh&M?}(6kIN&5K_<*IFy8W9VR$MnJPYgi7GR0Wtnia zHcs5{sPpXr6s$Z_=>*DOSZ3=YmB$1puTSQ8@kV!DeR7aseB0Fl_XpV(3L{9t^)L=6 zQ>i38l)ULabbqi(6D@GTu4sqStwZ#$1urqVmyZf?4KQVeUy;WoJ7PP8x)?+7i7#sp`g zR;l0P$TC8$^1wapac_Jib^{D{KFU(+ChC6<-?KKoZj=?Gf;Z8BiAMt?^k4XhAXULLCk>`}HzgO>9jBaa#3f^~I1aN;i9_FeE_ud$0zTjk^1Iomd2p?J!HlVaJ zjE~@N78SgSlBX1OEJvR37@_1nFxcO4_HuuqM7pA>mrGdr7o6~OAbIP1Y-mWdWf(|? zg+D@D23RorGS`tHGd3Mw<`NaWzQ15o#ADLo{RIXI#v86=^v?@1PAQmOcL2O-9UPdv zKkJ|Jqk`f7oB#&9kKQ^F_0S?8J6yI(Z z{JxNa$DY1TfhBob%!P<>qo5mGAJ?xd0GsL2WW@sj{u8O&k=gL7XxP z66IPErx+$U13xyur^~d$k0mUaZ!Ip?lf`j;q5ntyB|ZdJ($vz2CRn85K=)!qr%n{I z%382LR)M71G#bcms&rSIjsnZLemV0sHULYyln!Z!p5hF$(TVOH(nYcwVL1xc`a0{cle6 z3WytruQ%k^yKZXW%VE(zrOmrFVy7R0!F5)p(i#DwCqm6GV(%@^FV^1P&*UGR=Z z!Nw^-By*?mkhhp@!S@hWlMx=sUWP1pXY6dV-7INxngyzo#=Xm$^c0mv1@Ws9u{t$B zyv^#oqFM zDbDxq$yA20lFns!b}cA!`C5|J{v#{ylKy)yHGn}M2N=3nak^>fS`l8=ssl`b3-UOu zszj=;v5Z%TRfh`VxSrERsfT6?>x9Fm>Uz$hA>k)cxwCXrHL{^NFCT0xc#;gj$tHB3 zWr46;_#SQDV);;B3|KN~?{Y;83CdT}lvDXWT*+vspH{(HanRQ7EKe)i`-7 zZyBu(g&{7;qi!7%EjM(&n4jCO?bZosNQk;JNVnxz=hb#)0$5OIP5)SMk7as=3-YK_ zL)RNIFRSfmC_IowL4tma2Bx(^0+=9;b9nmIZ-_I=uK7ARWEtm>?rfJs@9G>{Oyn?% zO{D0^XL@R5lR*SwG~`|%SBK?p#pgt8hujVnv{4<^k7LA{t*xU0EU2Ttgif_FD)b}qguPC zU7SZmzTW1TI+J7hd$F-43 z1A;CJ6g2RozdNOusyA`8?*bQG?k`WhgB_>E+V<{3~ zg*BXi9@O@j+YwjM0@~avT9`x@?a--IiHY2% z>abtz3VR|W)L{<{`l$a!RcW+Uv>?yvRWu|RX%#JiL;l=&+5I-!DjG)wp&Ks;Kl2%Z zq2px+2)ZZ~V!3CmRkVQBtPLfo#8ouOZ=oR}YJDL=tYp=;z5y(#v!)+w6-{P6 zxr&BFW38fvc*toKB(UNYhNs%V2uzShJw~FSohDjzsO?dBR1im%Mkg6@b%|x#;(|QRwOa=Y9jiLm4i&^vBhMCr zLhjl|o&keC8tJ-)l90M~QptgWHfnpvTYW((^VOHAJrXMwVQy>Zbp$l>9E}b}Tm*5M zHtQ;&jGT+DRfKu2buI=B`Y6XEE`lJ(xkV87`)G?G91(epI(4Hhf;c|4ssg%ba*(eX zghe`ZH3GaG83Ljx9jq6yHhAbBfPfyW94`0K%w#}5;!;RLf<=cFI)yx(t&V)RaP1Un zm`#HYA^-PcIX}?hTDg$>+y3K*`@`b!WY_HNnOBbk>_0TvH1){}_AiD(D;OaEiAGkZ z6X=*J-yBqMdNv{4L4o1_(hT%|9FzX%gQP1I;2L|=ZtyjiJgsEja67o4h16eEy;|E$KR`+pYA<&3s%R%m9fjGLZwcKTfp<5uJ-&!m$FIUTp$tU#Rrk&6wq|pJ#k|{@vV)hiK zAwl^vD1UcYuM{m^IIB)6h#TBXy2>fm7!|~?M8xaagNEjn#q~@j1Nu&84-4v7)6|FA zh2Sn}_4>IDF35ih^83wqM|%CXxjUmrQmL?MMtw0|Z8ukR5grXm<;$u6yWf3*%*wrh z2GV{80Qn8Y%;{CTJ?@&tbi13=D_h+8|79d?DV`#6+FVQ8$8oXR&L5mloaBMHce^Z? zvRKKLZz<18l??EE#e8>M&L1Q;IgBMH#D|#IbC!wsT9kBgOKf70A>hYZ0S)cA2_=W! z?SCH0qv>oVCxNWDavA-bP;m1cOuC6a1o&^r~%d&Bbi~fZ4ia5;DmqFhP8S z5vz-t7+paZFP%A!1d^Xqn#1w1TC#(DjtUC@%oRqqbX$6+iSB`;hjeu*N49Ln_rnw=6#uYC@rIt}q)sAp z#(x@FA~>Mw{ccURVlzqqIIbj6K+y+1ip&)Tbb<6?Iaejiv`t6W7Lh?^Pi$E<7sspV zu9bHfj2v4+8YrVdM^{{?0XaRPL4yu@&61g}qhs$7PY8RA2ikh#-lC!A_%L0~Hdn{l z6|V>*M-@p0g&(@SCZkI8xS1dIAWx58qYI{I%r0_q-b-n}}bgKSx zM~4hwszQ#c$bXzirQ?FeKP}Uku;ag-N1npw+j%3-I(OV5=I~B1UBCief9`OS9+ns)rCPJ=alNjC6}o$3jG9pML68^u z$T3DzL1B+qs?UNs7cOyRuZ*~$kyaMEyi$E<`Ugv~vhc6t7C0w@x&jNL_d>H)XSX2Z zI!U9O5P1q311@O%O@ApTY8=;kIevjBIidO2J(^ATL4;e@*;$ONIL!#Xw9?dBlXkO5 ze28*?WOUr&FUt~%ky8o58M@u4N0>02-8#_#o-_U@}? z-`R>T$gs^FuMIUbeO(;T6!sQ^^lAgZGOwzpx6sW3U9>B~d3o>!)nr!nI`#%QfLyml zz=ApGv0u(M^CweUlcqu14^QPkv(>qV@^du6emA80qz_jxcWf z!XE(1EUxEay%Bhtd$V>=OVMhBk%eLkO1AV`z?6anI)uCf<<PW}9cC;QxQ>xA5d2`Zw!|A1# zWP{L`GeSilv1I3Jhclz(2o=O{riu4Q>d?3Hs=Kf9-K-Pr;jtmYIq>g~hu!gT=en6c zp!!5RNokAUR{tBT(?cD&10GU-1bgtbMg;AzP+OVRMpve%V`S55mp%@NdQIKOw<3F} z=ysUgvHzV;oA1Qd<^s!bEZqX|e-iM$B51LF%FHpY2n`Pruji!3ud{Y^Zc!*4tkV<* zA2QzNU&3M++r<;QflY0=V+JYk4-VKNCFFpdAMvjtM|BW7pNr)vSYH~WL=yEl73PkiKdq~qNmj{_gyE< zazWm&th_Bl~17d7<%75(> z!knS27q`M5Fj;aj3j}poCoZq?t;37z6;o8EzcBfo?wruU#;EUKFgjyMflZRwFh+(y z>h_Pw&-(nYGSx2sagV>?C=G+^FaYoFCoM4B(Hu5^TwpW{SnSRcNOVs}AIGD_%!>38B75Czct;V^a>ra!qjJ>`_@lNSh&eci`?K}1?4J_9jE413)ugG!q6?LH0 zNq-@?xc4jI^KRHde3IhzY&WI5Gt@N~tXFb&#UU{i+xoqx+DzlQ$){?z>8}0Dbb6tB zUc#^)i<#UHfEid6|CFJDC_AZ^hSl$RopWNY`?C63DRtL6Br^Ri)NK@#o}Ha zQ2Uj6qB3FWI&ubKo(RHhBt+hX#b^_~@UM=A#i9OXNFb=Y2x;i^bc)auL0Gq?;+FOd zmg1eCpEi2(IazdSrf0S~H0_2Ct3BkAtmC}Pup*RXu$Y}P%L_alX7lSc%~!EVTin)@8Gis$&Rh2!vblF5JG=hD3rEH?zVf{=PZu& zUX`x?lm^&PY)A^hcC-$-tYy{vg3;KwnED{+TB=&`Hcf2}WX*f%qbWB#-@yGwCPuy{{e5|fQ zV$I%J#5pF|t*d88&u-AVT551Lde4qiL0p&J=nL~SvfTbSy4@HPq;+-A)!YJakVo&H z8w!Z&3L%uT4T_QL8oho-Y>?PBOx7P!Fa5y9jXq2ccp%HJ1R_GR1}(Y|x8of7um+4> zmD^Q_`d-l7Ow8zo7_q@xU4^JWS}z}qIfc;+G2nr$t}vmKrzSf_4-$05MA96t#dYymZ!ZwZ4x+h_8 zWAu6&u|ZZ8mx>Rk|D#q}dHB$yOk7e|GVX5CHadyv5bp zU5(PC*@|DQGkT+>8DJS9ouUm-0ek#Y-rs3G-yVx@f#log%rcekNU>47%)ge|UknSG;0aJaKfIt@x^8 zw)`k+JUu&kvR*sI>xE~s6JIkFgCCTeTJEXo%$!nm0T-+!rrez>Ecb*}uee<~NfVf$ zC=)&XVoxaPEYZ_bL6bdfBpurkY7(ZyM;UzEc7y;kb@sl z_+sWMUMM-mJcjL-q~(ei98UE4h!i@1o~?`SlW?6PG-mNuyP;Y`V(1mS zX;OA|D;1&G;*FO>#X43fE${%WRD?p$?g1c$PB9OVvS_q2QoPbM)S8;HKw)++;A{#R zBNTSTA-7r)7V_ERkYj_gO#82bX*@}BmL8I)f~HLG)+OY#)WuVEr}~=CzklzeqmA3m zo~*Vrz6<_rZ5+s8tq$LE^DIxrw;WrKGPay^c4dt1zyAIQfA9nKe~@U;zO3!E3WA#& zYjQ6u-m!Fwml+ypv8Q09mS`2EcstH1QrJp}n7)Kn#2j{5bQh%?Ax_aG_+Y1u!>ftK zr`HW;Y*3a75i0Fd>jsBp(3NSzRZ`Ymg(Z5H1~OuV!b~%y(m$nU$WuX6M`jGVwX%>|<>WH0Xn#D0eQAdq*jY4RuvvhBiD#r$8naP&Kn!;HoTg19TCc;Nc z3TKJ%Y+1pU7}YIx)0sZ|{aMp2?wP;SDRXhlSMiFAMGO{PIyq2IwytH;UXnC6^;5i^ zqgalnfEruFLN)h{W%NHWDaF^|bW36Q&|!D#+Ann}h3Vq0`o&XXw(2vbmcY00QSfL1=QHxYtkBK5n_7T(8IK<0T;y|j+kSg&Y41lYu6U4JERIn@UAN`-hi#h@H@@XUCTO!0-!_AKPu4x-9+8_D-$jCut-{h3<|l|hsL!Zt!IyE>Xsfh zWC63@>pQ8S&Yq0V+mF?i(168###0Q)*r2hujKeAuN<2#$hh$KQR@l_Zd*(m!)j;K~ za4z;UXt2N3&|LOvV(n~`M1i5;fo6siH#{LSxa~MG=0-&g%cJ;Mmxb$;00JoC?XcBq z?ln_`YP$B6)vx+?I7tCDc7)IEl86$ad5T9oedbBLV|b1Qn(RKf zq^(#$2#r;|z*}f6Mg(PDr5MJ6P}ta|81g_D#vv@;nEO^}Z+pVq%f}%-kw=n1(Ti#! zW4_+eYdo#`4^0)))zGZQebPS$0f?^n_zOn_;XBEn>7hru!bJ_2<%QG*{URXd**QF< zypIo=Qq_}H?{Fm56zow1Xonif0717dY4zhUp{*`-=&Yd&E2s3}#gab`Tkt~p{;*K< zSN2i#3??}L#Qd%f?OZpHS;7Bxf5E4y00o9WGz=2`FNUEj7$84qkZEPY+Kb8m+hGI& z8hGBj+_r0VF<(o=Q~XKo+amr)bfSK`m>p(}yP%cwNXAnfu>T>VfS|X08viG~k!(vo zb6oKYE=sD9WA7Am4R{E7$J6^iDIu%b1szzA>{8H^@Hm}P0)l=q>Ye2adKiLlI37`q zCxDo&&!{_hS_&_bZN~E%M$s*3Pt%s_88|Y~xdcfH2zuL>wEq*`RHqjzuG-m-zkOLS zKj>kyuEX&mUedi*%p?VaB#)IX9|sKqZ}^Y=pHwQk_Wx?hZ%Qq=SJ7j1O0eJ% z@w)%a|4E71AD)O{TQFVeAv!e}Y)D8(+MV*yv{Q@|+ynu{r0t=^L~b#XJsdV9yy>mz z|D@$69HU?s+k@l_MTroek#2h60odO+&7(}6s40LXI7GbcH3#XUx=`@Mj|WO;US&?>g8Ehe zML?aX0|oO)9x6{R{6AxEa)fz)Kz9qE3zsQ)oJ9bjA>iGF1v)35N`^eWhKLv-=gov1HIYP< zqVwf?#&32jam!vQ3>`9F&&iQ&Ze#(DoH-$S~#E3UCVeYwMV zpG5=D8=hzXWW8?a*5G;WMahCzFz1*_Y-o7DTSKaj6f}dUNC5>D1#JlJju!V?rcswzDVBII^l%n~1(usui^>b# zWwMc5MhdK!$qmrJ^i0U~h&M)m)gQZZEQADx8vz4#ni|o{7Wi3)#Dak*%n2=jvv4&$ zCkhD+F9tcG6NitQ6&+dPeTF-OO%?!x@40|)wUtW)!+p(QfhDxt`oUNpppd}uY>gV`%*n<9F z#=Sir*g{`uh1(5}a0&?wVY{Q|LZx#LZ+CzOrk4ZDsg;*Sb8);{H4hs;FH*9&l5VyI zD0rV2yt~={A@jw85m=_c6r+X%S6H+5@%@TtTk%kMsGQ zIsM>z?a;s!_@n-9*KX;AGb0-ufkVJfK0a0*fzOXvZ~BK#r_)XI_#o!CI|7!UL2MrH z)bovctw0Yq5}?T7v;MbuywTzNMQnW3@r+8$GS0?QZ{_Q5OvT0cVS?8yh0t!dFtnDy5=e9TRw+DjYauyp7Ky z8Jm=jf;9;McI$BH5R$crOBpU6j%5!A4jEZ{YbJT7I2y%rJB~M-4F|=^9;QcaE zzB-x=fJ4UXuw*27xw+)~`U}>%0oGkC8W{re#X(P!9^{KzquBxAkl|uSWCs^^!x%O+ zmgdnR>BPU-?)sH9+f3J|+XW#!-@C2td#G*mL0O&mIeVH6n|OFg`4Nm6 z70>o~*d5ci{}f!Q0od*`5*!efFDTb0gytEopd31c{0!NMtfL0gLVYNy;Ak75yDgO9 zfw(vH?jg0L@XeNv?$HD+y~=%`78dBxj9k?(X${r>e}!fQ;csbdXn3(Ie&rqU=4m+uBSYj!0Og)|fdfw@<4~_I_CmJuP zg5wPiv9F+j4=q1(U&fwA?c;$KKDVuW)1=@~ri1Mh#7Lm(=GFJh-Q;unpU>!Y=4972 zybD*bn4u92d5i^~8`rbFsbutDS~?SZRtn}h9Kd0{de{BMp@Ham_S0f{)rd8Rf{9-T z5m8w@klk`Al@2;DnBXf|cW@{XpN9k`&tGEUwkm&O>GlOE+h5NfG<0w`vSz^?4luNf z;4cgidArSj^_dS_n1Zb_fJrcVOprcvy`Ie{zq|XFq;nUHyF%C^Rp5cJw?c$i*lx+}RB*H;#4Aul1d#HR@Y7g| zj*yA6`?rGjJZK&YG=)qM_rn5l(yI#Yst!?0l_?s?$~CLB;w5&gj@Yaka7cJJ%tKIY z$IXMy_R&V2z~HsNV8SJY>@o}EfFN?|!;a1yEGaHiSL2&|cg&_fT8W~6l{cyuxwOZ# zYWzPW2_S{ybUtNbt6@=K^oYG;ECu9H1M5E)!l`DN`=fYkU(}X)&^|>03q(=P^4|+l z)L|iK+tD#EKBh0KSst}dRY(I_)QEThA&aIGjjdR4ENVnNW}hfe0!dxPN2%N9yQ3T! zk6e5K3q*CfcuLX8E)ELFd9$O~qILFysi6?Auf*80JGExMtcCxmdC<%rtfJP;1NTc} zOt4ayCn<4vE^<&s^3_A2%$l= zw<;^BXt}m%5beRbi-;}R=0&K51J+=TDng^f5^rZMp_0)dF6WjYPDd`vhz$C= zZD#H^KD*5<4K)2}();h3n}Ziy^{^&wPM{vwMw;znM6>1ipfcSy*sth~kn4=bF(Yr9 z4GPos)P9pT;F$F^B7!d4trvB|CRd&+Dns#z&>`llDQAJAUkZ==q`90OR|ivB?I*Me zar>xQOpOEb)}i1rS;3G}Si*XW;)~UG{@|%AmaI_xb76s0ZmA1qKW8y#K1#LjA%xBk z%XDt&1dMeFruFKaT0>Ik{Y`;hRjIoCcXc+=Ddtm^OOFcoCY)EfWQKA(>~!%)ZGZAD zd-ODH@r11dOofL83G~QToF{GR0H(Mrf1I9Ak_MW(ZM2_>y?p1ektRv$*-t*6?QMxo zzTMkBsjMCs&n4+Hvv=4BRWU;WHME}Qy1OiC188HhinWX=CY>jZzHI@)Gl3n=;y&S#Vf{;mEM(a;cHQ9Yz+HV!5Z8ug>Q&df`LUc)2kfwyxRW+%;)tS12f)Qd_ zKj6;iUnIJ%i|zE@@9%%Z+Sl5CKsOV_{VZ&s?l0H7RjOM}`ab`Z%PU=r&DHrnE(m1p zP}fJl`}Ctvm;r0spK1pY-GX$TAI=Q;KKx)FDpd|bt8@N#6)hVx1?jR&%uB4_dl?niYQV>ibO zD%xfxE|;xym$?B%&V+X+?y{|;6ZhHP=D9P!&cwlmf>Wx1Nz@0AnaLwv)p;RagR9G< z1q9uT5NGNqja80xnFp)!pH%q^5J4#F-DPu_^Go;Ys)E4-nQ$1|-6xB$&X^Vubgyz_ zs$Vy>45;rrV&2h3vMiXO1y&;P2w>2Q3PY)A z?wHZmRTv8hI$4VJd;=q^EJXzeDp5VwPue9-`|!!Xy6WK|K`Gh~b?I{a>T6y5;W0rf zOuE^McO&Xds^KzJTk0#0Sb7=`RHB)pD+APX>WrJ zC_A-jon^7E>@*yxM0HTVsf&aeU0ro>kf0Q?rETW&jC@^ev4B~+=+g6AIt>WA$e@YY zkXnOUNKguc?&&Qp(U+>rp#{v+t>mK^wR9Q~bfPk-DHP_Nb(KNGfhscO$lXL*;Z*%j z(1~uM`t=;$M2-t`;ir^n>~5li%u!w+4+}a3&PubcYU}|CN?D?6bLE)*n7si6o%B`t z_D!X)DmYNd^3zwutj6re=$j4>1PMxM%=j>0WyLpupcDOVbtgSD{;gF=M{BH^1yI-wu65p@;a zL4xvSk++SvcDVKQcXfFTP(dub^fA4lxn>cq&Pxp*$Y@l!o2VN)zgX|g^_Q1RTE3z; zFppw#=<||{?r80a?$+xB1@%uU6;Y~dGiMj`$)}H-`BB~9{^fQ?cNppelb7lwwtP{h z;BZC~<0!YoJSCM-+NN!ImNqn9!8Mhm`mImkB9J6BV3@^q~E690w%5 z=f4(`)Yj6J_Y`cu^O)U=LJA0a%YSSHZIlb;T)AKep2tgyiQpmRNB%=4PMVP;4h9XumzSbKY1MY!3IR zy=DqXibT<=lpWnpFZW1{D=Hv?s7{Xx>p~ch#`UO>1+ql+=EZFaZ+h6qepMU2JBc9f z9q$LqyKMC{Yd)z8Sa2(oM@)EDk^o{vY_e%{v7k0KCE&Y-tTGXMBq1Suw-D3kpe<=T zzEx@@At5}3{MeVO@{_wXUcN_XHb0{-P)GAoaBRloCcLGC2Es&mOnspm7S=7SjYL@z zh?@9ZC9JjF&=HEI-l8|3(IPb;I2P$W+rWYicOJf=NMkn0 z6g_l0f}%SwHWaIlMl@ik?V;y5dL(^K(*YFO=%wHTO_B2|I+i5K0ZAg*A_q1(^?Ycb zU)<@d4YnOL5GJ}Z;tRD}l$KW8mFXlZ69dtL4+Rn~qTt^3?zdl8%o8$~bOmkMTjuL`@d5Yjf!!bXrTuXSe*dW}8wmqNN zfDmGXKA!hk6%2aDg*Dx%ULuGKddB&0qTyFf&$x#M!jd&Tuv$DM3JZ9gn%+qVp?wzA z&DJ%Y&S#DF=oa)e5SH}2d;N1v^M2;!1fli!@l?~*hSmh`*ei>KjtopcZyOi=hL zWjajCZ|w{~5Rbz8Q8PhN#s-;5dqy(DE^w%GoO;|z2cc#5+^N2I+|fOgJp(q#{CTRK zjxy-FrlBzlj)ZyeY*#JM1&JSe6zMA~I_evEr|UL_GA~ByNf?-Uq7x5v%mqxR~kUfF?^uu`l75|nSGDb;)R z(H8x?1>vfn+Cf9Yo3Vt;cDtU^W5KKF^xRj~8aOsYxH9*48net}R1m*FH|J02Qh54L zbJeudRvkBEC0=kcVt-g1p6nWXvse-le9x#~FP4WXZTh+r)7gL1Z`_zEz+xQQ&KFM( zVvTYTM}P&6KUVpmy$>Ldv(dvWTEzfpMKhLYq#s= z@W6O0W{ftLmTdOS@@X`%-A=Q8$Xu^v<8vq7hi-G}D``F|#go0AkW5sMEUI#-5s}MR z^Q=6lC1JIf*5@{1-ACtNHq74~hb*fbj0LR(rj z>UUm#!)(dmQhfic3XS$Su8wV%5RU;JL}|Gm&bj#c}D z7#-HZ2n$Tlb0&TJCnNgn{!pDJGEm@oF5rn>A?NtqEq;CR+^#E&Qb#SjJq1AJ8;mikg{F6R;cwDRCMURn3?ZN$v{rIR8J6gb=wKF&1Qu1#0|n|g zK3+Smo<~sNdB*eXn}$y_|M?KN)hIv@N<{tpI3?ncz!K!)(5(0w=s|hVC_oSLaA=R4 z=q8>){h46+!zZ?D&~GYdldLxMa&gI;83~YKhf}( z(VUi>7z<1 zR76p9Fbj*Ms!a=6V%I*cO^cvlv)3HYKey_>HZ|8sJ4Y{{Jfh?ntM3sQ!W1T$ z-&*eI;X2xLxSxD+@8PdMvVWdVFSqS_b`TxUk^=$`&vZ-NUo-F!@;(>xRdaZ>Z6Byt z^^`cefOoz+ii1-nJHQ-$LQReXl75($G~cdiVzilVj6~kaDcLDkqA4PQs8`dXuD5%! z8Li+g01wq+9fJ(|H~crMKw-iyT{gLz?YJ!pUZ(eG9SR&cM7-%g3q{beVJeg9_L9|@ zg7-W;T!#ve4jHfe?_wF;6kipzwIyz0MEGO9zu9H`wi;J8N*qY1Cn?+bIGGf6L#Gy!&#mLqIfuS=|>M| z0vYtY{jw%EvY4~rUNrgxBF`f8xn4RyQdew|L*?pzxqVKb=A_UUUV$K z;QAH~qj__HV0<-7(9RyEUfL?S`=f(300r|)j`>slhL*~!-b}&z1_jH@30jE=PH$hN zurF(c^=6oT1t1u`eUU&pRDyMweG{Ny{zG-o=wwev6qrE^rk{D$^e{kvnJ(I-Yf7*5 zl_+>oD4wb>7?T0Wyr9zB9Rm1QwLy);L%~a_B+Yusvs%z10jFPpMhE|k_>Lq}anda# z>OaiR1&#|4T~YBDjtD}ZVLkfQocd3Uv%rTy!#O1=Xx~Qi&qRt(AJ3cJfezC!{!cWdluvnN{!JMsNgIhPPLj|#`)gX>z z+R$3f5kdG01iGJTqV+&q#)V54TyYJgq=n5fHw_Ew7w`e7qv%=C3<4ub$^zysBn4d} zVis(20ZNk4LL!GzX~s*jwWY~dW#c@?5xP2$1`>IUD6jSVeypCI!gK_11UmhJ$g&2KEj1vAl|#J~ip3;oD(+pK9Eo(M@pLw^!DOHXGC zTqDFXUQ5q_K_9g|le#a9@+*mz#LutB3~t)0R)|NAzCO(beSt%$b*8`HG9?uiH3G)v&RuZD1BDlxOj(l z4~X$lrOyVaAeKH$@!`((a>W;_D}B~sg7mGG9s62iP=Zfs8}|ILeAvWcv0y3?c&rV~ zfP$77>K5t7@fP&-OMl@d?})#>!e7 zpn_N$INO=3G%&*jdDyE^&ALgHYGNyT6)`aAWyEs5o^blHGGaMQkh(E~b*e|Rc0-eQ zteA(65dWnli%yEv_FBri(_~r%auhH{8W!X@m}b7rDa}CMT>U3YLq??O^dE4YaqdnXOSG zkrk>nB=DiZ1sYHFG3T^Rwu4b(HLD z{i@vN3dPi_zwivfE%=Y|v?jTr?MMCE;@VMgi)#d%DS0W5PpADnf-wgk1Iz8Nx5w4uv*`F!b3Oxx zl>ha+AN;`&)c?Vt??;k9nH^?VbWA&2*8e`5)Fc&@#T8v9S6#LH@k=)2RrC%*sO-02 z^ib3J?8hE)atmQDZmHL)v!z;at5D=B=}HpOz*awr0K%m7(DIjc1Ww&7RbeEN_s?D%r)+S}Og#f84HM^`hycxe?#|Buqh_8*ST(e28KT(#h$`Uo*y*JB=NihBt>?dCfrk=bp$UP6+pP}z>|Y@zcRPeU1~ zpe!DS=!|?xTf`c=9hbJ=#YP)%7?S3Kwz&TC^o=RdDRsyWbat1oNsU*3dq|-+<9*JO zrh|CSGL}?O)>p>xiE#4kTxAR{Xp8%T+}w1NpV+53UY{$)1YK?mn(Nog)Z&Hff=fA1 z32?3~>EXzoo1Bkp1g2zY5!wac#rEs%YNbvDFmD^LM)Z)vhVe)w^6iy>0$?Q>_H z#pob}$~dO*kD{6|UQ9_4K~+3@fUnxKs-x2UL?uV zoubfyu$X*Kg_aHq`@AojK|7cCvH7z^M0v9RvTIB}Ui*JP!PH?bminA^H70_pcdU<}uniE>%dAEO_9q0u>wQJIKSR<9=&Aa8;pzoKFEfZg~je6+oi_5Q? zX3_9%WZ#Zv&wgHLc5^S#?somELznUCkB-e|*V{*jtshl{XKy;dA>_5y_v_i@%YV81 z(H**BLfv{n=RVcxZ1qRh&XsHzQdnlnrwbL_FQ>TU8Tyh9EST|8O2H`iIY7MK?( znht*vkf3}i{+;epZdTlx3bw`qCqrsML3hB?m%+P{V=h1tc_7$4x|5 zu-6zE2{H=^x;Kzi)7fcUwP}5-O~A^s;GS%t#l$f*B)o}_m;@Th8VS5;3(ijiF0UcL zhKRTDRV3o!a=((a)#$=eyhKUj>*!u;*ybgvAA?ZS) zrM|!6D;a*pL;heaK5Kc`ZD>>v;6N4TDDHz)f(mk%)c&&&Ua;XE5Yl!I4|xjR zLjO3bTLg$8bdA5w-Civ{ZD?aK%i_?+KLQ2qZCHd-tZ3QG`afqa*n15aX;_8{(r1xc zk;?8yK?e?>M`Q{sMY5Bp;VVcq7D#SD3gyH!HLSP_ZfOL7%!@?>QRp7FO-n?o3isfk zDO%NfjP8{j6ttmP6P?5gv*vn;cYhc5;gC&Mm_vJr8EE9ybw+$T6&@gg*TkVc#2hw6 zxUQK`XdMDNm??&K&GP6FlCTDMk+4%#Zw-zO5kC0e{p7QBTQj&%zz{*`{ayVWg~Y-B z?$AKw+femWqG}CpLjydJy@uF!mwpVZ*X3%)584zQD*_gelPO@(zm88rdfoC8J+D>; zQxyQq@_S?mNakNBqnDCceHtVG4jA;lDg{)3_7MLJSlrlNuSq$xQLGGIrtByv| zEVvDBQUW}X`Ig!KIH!wF_(q?>Ei*&xAl!9A_yY~N)6s?9SE2pjm#Pk<7;!7 z8_Qd(Qw1K?X%rrE_c9_Ef*}2vc!I8Al?Fh`5a>}s9K|4&B$~FUjX@3+v{5)vDb|TQ zVrt`Vhzs&pV5893`$H?wRu|le0Hmz7Ei9-bFIEwd_c3a{*dT&1axB%t#H6*3mx+faoEvZ#fjAIai;L{i(r028EsX5R*UGZ0}hfAGvchs;tYhP$&^D{N=i^K&vt12qdnB7g_fs6$_`(tW_s3zbE zSWvUZOr=phU4E}@O=IQ}I|#?@=^DbYryJ#P+)k$=U$wJV{&QS;s81y&R`ud=U%jOXc#GCKLT2sM3 zKmM>y3?c=8TGp7-wc7OHEM3{Lr^^QURCK|WV;|GBa zg*j2I7``buP~k-MXz~n@^G05dvK~`X(%UOlqQN2JrIZNeC5*mg#-pEJ!-DuHIpXOf zx`2KAXg_V6E2vEd6#EfyM!Tkb`)la9|Gj{NN3rgY|4dr!aVB zDR?_v0|+Yt3i$}^q~1#z!%i9}fge@4f#twz*z?{>+TT@+#xhaR6G+*~gCQq3In#=6 zIbuWwy@4E&#sbfCAM_uJ4GO${Ln&y{zJ3k*I5n3*ErB0l)xjkNY7kpUVRjx|PFLa%neBH97#}VS05ElMRiUC^Q>(FxCO!xF^&W?9P|5rhs z3fcSgcot~7vEDD~wBqE>M;}jSJ37D48>EsLWdICy1eW5VQ_%9Q&EY&23_LF(KeTzY z-LB}I`DQ_H5s8;3OIGa@*@`g1`hsAk2d*}}Bnw6_7K0hmG8#Ov-4bk66LxajP|2)V zK8HXA8ri3rB`Wez`AmuOL-YM*>T z55~0XS>!|o7yT!S)CouvKo9)bCI3Cu&3~e~3l=Ab`EiU1R`~HJ%NbqlFu7PB$P*aj zFhAyaU~{Ex*yz5G`2(7tWPAflSs;SZ`LX@oR4+z2(2qGF_-?|h%+FEJtfZYwRGI({ zOwM1-Z@c6E`r>#vj1u>3=>?b>)^@g7Zm-(yk^9U*FEu#{Fu^LUdZ4jAE5a(PYBVst z?8>jD+w|zVVsrFaEnkl0Z1idFF$y`Xz+n~9n}o*!F!YMuL5$sX01 zKZOcr*#2u(c|O*4_H$K*q77TaY@dV$_idZ&ugw#gchn&P)jF^;FPNXSFk#mvf&{0_ zui>O-@UvyJTHM(lg{cSTHw6oBL`f@-xWCxYJ>=pF)M4=|#ssUdvTFF_ecn}8_K@Hd zIlX^|oCcU+6*;98lv8@KX*_@Oke!^eJ6vU5!>J&_iQZz|L!3}i+-vC~uvXlxH>|hV zLjXNLwH2^Cd0fRx#+Pw4D`A1MxAV&GHSJ!myp&9|7YPD5baa#$74LaVEF^#)jJs8r zJ~5gaHXaVZ!1KJdzy9gd$IbjGW^@YHx)RZy!GVkA>9d9|@MHD9B2NYkJm{5a5mevq zY*)wiMh(*#->_a;0u;RHcj_cG(X+hdizCDOogo^S-dP`4hoyb+kOI%-@3u?*j;Ov~ zeDW>*jb*iD^-ds~wp#pSf(DX))Gg^S+dr7n+9sba{Eve9De)}ZjFUd~Khqf|2CSz->(03mPXge=us zG(CCDoVeh*LW!4j7HDxKkP~?cQbzS@tm0t=y)qsw#dQAIGBg2Xyef?evF(uumy(Oj zPVo_i4-r{cjbC&a+f@w%guI=z2A$knQ|uM3W=Y5C6q|S!2>P)UWJ3RZMt5DUrpjZd zhikpy7{-<9NC7uX26>V9*e{}a;jz3Y#P1Q&taqaGJ+26Y4-v1V3+j@d4rbx4WdC%D z%NRpwcu06TE#XR>6))LKUaml)LqHVhjYvu|-E1GtmV6FntUw=;Ku%PdP0C!Q8LKkK zED)3_pxu!hX50c&=n#-8AWCxn0t!eVClfusi#8RETX79OL_}@R*Q`?)hSjm!9?sAs z1l_vx2>}CyMD^zWa=lwM#;@b;P-E4bn59Ti9Olm`%)?s;fsfd@^BvR+W|z zGJjeob4TxYu`b5!tRgkti4xmp{_rVE)O3*ei!v*!ZxXlMT%FaH0V(AE*{O2r$ku^7 z>FOzIHp~!S=&jMqLFe^W_I^;IE2wXtx+?^vB^LdXrp)!5o3r`65!=PiU{Og2i9hM^ zR`*RD?EiCo4;5?>7=`-vY%`;kzCAruv2X60zo_kDs*z$LYOGM-NeG!ANINFKQUj?y zT_GeEDlbQ}W*;ZS{=7)6IXEDsF3u^{F`g!Le|A#rRPDogPygxJtd@;6}O)HWX3#eaT~hRB#E=HVAxA_MmoKIt2F7o?6MT zn>{UVsyl>OW%<|BJ4?y#UXlp1e%LEZt>p7w(7&Hcn4yBSXm}T8WPhZYrv08)oSEUq z8s2sBLFD_r_KOyo3myQMpk?K%nIJ4$g3-CTr<{%s<%x?v##(}r91xSXk{2_bsd~T) zaa1csOc2&#rFe>Pd@C6ahXpaw(OSJ1FUxGKwR+9~A@AnBhlC_**uRYKLY@brqIG+(T}>TI z3yrl*90Hi_ zo|^522FQP5(;V9Q#Qbk^A>pHb`(C0$j$|kW zD2QL!Yz{kh(Z*L_eRFRzYl&67%3E-t7Z@g=DL~NOKvGS2u@z&Bzb&w+g^#&3TAFAf z_eoa~X*3YM#B#J~%xx+1Vvmw?%VsPD1?|f@TJA3e$ASSA8#LhEyB(XaA-yg^8nw=6 zyV(WZ)pA&hixCU%K?7FIErF5m+xP_ZkD3*o$mUZc1qWpTlVk=aNN*ywA&o8)CRYV#sO+?2R`DA4kkwyd2t1z(+wR_rM zv}i7lS1Y<{icj+uyiEkCxU>W=$a!tsuSN}31`bp&LY&DbjfM}075DvuD~14)$RQ9x z$eo{t-y@cwMoSYtzFv&z{2C2JytE!i)vPKu8aPnByg9Bf)E>P%botAwd93#5eS5r; zy~>i_mIX2;mPG~eGuw-AX&)eMWSU*b2ZuZI*EW|lJx3?9gT(q%?(darczF=H>S$O>xC~%|NEM9`BS&mC&@IdsEE2TMgy7yBW3aaNVMbhfkA!K zQ=339NIUw!1*8rVbk7HL$v5RY2C^l54ikhvdQgiX@>Uf+3>;{@8R_3=hiG?el^H!G z=zOz6zcq(OWUQ)Lafl#ec}w_ZZQd*-=zV5;&!jRq1QC8)6!*{O;W z1`aen_R+tO9oIc1=x)2pYkynP)v?lu9rFPF)mY$ynB{Zq7*Cuc#=jWmlP0ZZ?Ufws zbyPT7ylLq+=nrhIvHh0g*l5!3utE9t*$esCA{38WXI(niH#11`Nt8@wtBtGn4&-T~CdR1ZH;>AQu^)?gAycAJ1x~wE(!^;<($1j8U z9QFb_7R>sqbqI>Q`8vH^?XQ=Y(l4s|Z5}c~M_07dCJIq(b#x9Ablw-2aqq3J)IJXa1XWfmnVYIZtU)C@#KWomnYUg4cue5eI#sG=N<+R z`3XW)JAR0Akf00lMV>fnz6@T1D4rdyGoZl(k?&$G5ACrTc_a~Ff-o@Q(xSn3eA*thz_5P5=VL|IdQ?mW9 z3QZ0XWI=h!7+60s;n17R1cDn||xIr712z1;8V?qA^`RUH}+2|DkKaet=D7kPIk zpow}jbu_Fq|*v{BE(FdKD8uK_3R0SOmiG2Acg3h)a z=d!96Toj+2gmGZt@xx#HQ#AR~(Rb*a3kmVS7L-dn^kMxjXm{S$Q(3oH!VkpGH5o)FZOs#Ii&05SitI#!QLQ`tFqQ&s3rT zI&}Qd<%ZeHr<}%*zZP8Q;7~hk6mdY)o9^pK({WE1zA~>WcwWxI^@uUxQ1Q0=EK;FH zQ?iH(-U4xeJvsmnB^h6#rS3EON`MX>8H?;%H3=P;%t#gq;i2SRXG&H!CMnDpwlD?H zE;-1K(%}R>YV5YTj`fVYZ=82Av1GoY93zJS-Qy$Ken=OvCV@B~z1C z+Sp%4s>vQ4DsF7|lTViIr<(&^?77^~kq#C?{<8mM9s!uFM?m1X$vF1Y#gd=h`Ky5> z1_>{AS&9Bvh>?wS<*OQ zQ2DtxJ6wOce9+K=pi8={kQUGQ!0WX9q|m^o^0TK`y~qa=S4*6hAC3ct_qO}}>`0GG zFPeuF`twx(h3fai<-D0(9516+cM2Y83Nfv>7mz^G`{C!2r1|xXZeT zAc2j#{b;k@T&(0}sH6LlV}Yn2b{5>0DqMVjPr(DOA!>iwc^b&-wv|eM**3g^7~NKm z1)|;#a}_x`t?u#gUU0Wp2-t5X&0xhGfBb*C|&xMxB<>CFdo#zdQGx<;A{+6vTN*EI&(LK{vp`f7lUVXI^^sB>5cF0UIaEwyiK+X-oTy}I z-`8V{2q5K0eNyPnmifNr_rVribr`}XW200A9tit!h!EL`MA4-Wu`?Ci(;VXVD+`Gr zt-JUr&Y!pV6al1k7aygBS;LvD(TgwOfv}&2W{!%F9w%#?ZL$PQX3J0VcEJUKH}v91 zJGuW2T_3XE$ytw*-9=`_MEg(-2A=2qPs@Gtc*o~({-%E>!hSDkEEZUT+|Yhdx)6xB zjDvFnFz^JqIc%dF+z02zVu2;d&0%{u(j70XMh(slz`%1;&Dqe*lAg$!%&%!z3?u4T zZo_;O5Nz>8aG)Z?g}*)GL`69=-zSI&3^dO(8alAN7lZAN-8}tSvUni7Ey#8>KXs%< zL}tT|4FM&D4ilv08-XFOR@)0kS1{!UfY_264Mf~I;w7sp=MdKnLef3T+vHkapjeeB zjfOnE#)y{tsh;_;y+vlnj$=>##U_D4|Ei>?*){Z48GFYu;v)7C7v#KZkVHA3UR5`vhIlWw7@>f_p_6!tdQ3H0+iI`bWM}VMvQRZ$PT{YdYL98fy1`&j}B;lSW>_k7S zW5-7kqlE+|4{lVvSYil!QdPk%zyzsq8|o!VC#@?-3kW)1C020*SXCt~9>{p!)Y{MV zFk+PeAn17bUPWs_RpHyfrK#2rWSLb_88}e!)^EFO__L%{Ermt{5jP(_e=3^wsyrDu zQ1P0kCN~qWD_7OD028D%{M><3h^6(YKnNSfQj63Cpm17^J`Y!s+`2Yfr?k{ z#Cr`@Romi$>?PLw(o@ih2;Ff|yKT2Cy4r~`4;~MufI}xxeUBuYn=LAf@_=K$7Or=i8J=)nLmYb4#9^7n~g9PWR$pmyQ>}=1QmlAjH1 z14{ZIH%3f5xul!Irus%L=3&E1ItdHz7j6E1BD#;2o4sT(80T65g72+}FDRFYx}@LI zMJ=(Rf^xlU_LFZKdIN#3Z&WYIHXEMnl0kq5G2t(X2f7yo9c?Yy@H$*npOoYjn}Guv z)m@gi`F6*jJuVq3W^<;|Kqd2~A2?wiTa_;Z2QrzjK@)h{e6b0Rmtj7GJf<*qV z1Xf5T>-U+=7%=d#+(ZvMRd^hG)`_vS^spw&Oa+U^O6G-bvly+8YOFL1b$dt4i^2lS zD`EMozIEmutde1R#t{T6m|0mxGo}?~#pX)|i`b%B#X?xf%d?>s55ge|&Y9WIqoA#z zz`=5ITrT)%ts*BHE6pPJywtELtTfBv^3TWe?W4j1%d0zm26b|eYVYC6J$3Y!Muz6< zd`4K(bvIC^ggRis{brJTxmRmh>ij?BFB!V@@dwb*@K#pC{7Az%v8+_moi7mqY^ZoG zsbZHXhLRyG~ z>;eY;ZAou$gJ9V%nRxGF1|~>fiAZU7B9Y?~b9eH3SWw@R)aGIdmfezRpe|Yq3CdR` zrFPFmc1v8li#Nmt`SX%o&OernlDkM19>^kRQn$s(ImudQ0wzeK5>*Kfe8H-=L@gvJ zpWEr$Ik~UusJb+Uxlc)Vm|0YUf#x=&Q8Rc6r#ac2AzOe6(l;0>4QveO)cO(2X-Sim z&1nn`39m2-#;cVZHR4h4lfy%pbq?E0EzZY{MNP1vekqY_Etr|SWSu!{@>GD}#ub{_l0Cc+^V}a(m@Tbe8SPUu{Vq{n}6iA*8NvIMt_bgbf$#5tnP}~v})6G`B zp2?UBX7BP$00bd3oLVbpRKpFYp+Le6w>$Fe3^$xY0tGW1{eXOi(_F(17XX5gIrewa zB^kpV+hBp_#n2%Rv;BkVLe9Sz^kXvq;PF6r+oZg|R1YlwL#EOe>I8o0E;(li~16YtJ@+zxCZC=Alk;rS{$zj!~&1(RQye3>Jt|qmv z#4F1SZ8N#6_OQ^!JY@aEJ)Q;Ck}z~*lf**i{@DF0*H#L4HAD;w1IW*MK0lX%Jw0`%{mv<<=Que}e*aW&eA0U2fBE^g_HGf)+Hkf&C>CSe_RwRMGfS zLP5VFL!+UFu1>IFg|9f1K6uPu--ta}3g8sKb(Zm@*5WXmXj|Z0pU8xQ}gO{gM zt0m03m2?^pbT37@Q$N!VZN^wIx!09JK!WsnNlKG{jIW@Abnq!OP`$9H{SNcPgzl@^ zZC9(r-G(LBG#JKPQg~o{QLrVhekt+IJe>v1@zMPP%S%4-QO9Qi!S}q#pE4;cxPo|N zAyUTFaNxQvxZ37Q?Rex>p~Nxs)^w2Id|7ZFH!evyh$)yM?8s#R3f`MGd6V(clKK#5 zGeiRuO3?h4@Xui-$lx+u?RI_1M;TRI1}@E&s0TG%q88j>r4`kIg2jo1cNhz@8h~hG zeoA`cu-YvEVMEk7^K;;)q3;i?aS&ZaM-`#KA>wtfomnDLiwgDvd9W@+h!*Tk z{}q#vbo_#+Sv*{q2#4Nh2?NIh^Jtc^*pTqHm(DB^RG~236g)iO0lRDw;6ut={>x9y zXyra?X`<;U7-D-op(FzjAwgCBRK>3@88x*e2@Vl~i~hat8+56tanUq7WZc|eH+1pC zwef4yoRPt5<)`7L@Uk&esBy$B`U zJdIPWRhmJLj7{OS*b#z5oz}w;ADa zf1P41Y0)!`0U{`Q9#w+arWJYgfJs8Ne|A*D05C~tO7MESeZbm<;W-QdLHH;8m3oVU z&K1&s_zYM_Jx&ok`(7rFCqf2_}f8wTXEqlEK?xQJ(0E8i@7e#Lf873m_eMm1k#Qp;6E`2!%sJC85t-lj#f=*`ZbZgo z&d(aFWkQVxqMx!dsh?==SVFOWnanPd1s&k-9U~!0QgREKgAXxxm>6~879DEECvPQT zE|=aSf{>e8m6~}^Ei-F05OLR;FQ0o$lq3@oxy3SYpyFi;c45^j6WfP%pViiyKL1C9 zj9^m{fWjuoP*FneChC#P@r+Lu*K!k!2*QUDsN;;c)yd7^1uMV-6)P*-m<4jLwCZ#F z#@pdkue3k};VnqirKLW^pY@j{Q@PHX;(_e8Ik>Ww{?B+anO^Y_E@9K>X_^HuQ9Q7H z$bUVf&bV}g&*jo+V7kSbs!cuSQW-dK-SN08_JjFsDIoYhitZVS?53lykaJ*;{>3%TrQ3uzkSGc)sQHHuFDEcuzHbpww!EuE+EORa=ppG zfy-;HYAb(*iH2OV6c227d26{GzpQk^Wr`AsvKA4HUjInfhrD7QBS{`}OQ+GmEEe{jM(g z<|P%ZmCkn@WxNa)++H4{9=crf$S#>tDYUNw1mAPx76AypNC{Qe!t7bAjVMBm2*yYW8}(B~==!PG zCexpj@x^$~TSu)n$zf4eug6jkd4Zr-ewpHd&C4&D3H_DSaVaZywVw7PTUn4hEd9`RTTT8_5`|lZox*5$mG+q)8vM z%#G+ud7$g(tYqpdw`VW%AaCp}xCfYlip*tbpz2cwV7|TUuOX4~wPZqDX9sCr#pR@5 zTfFgh=uP%H26?OqAf3YX(_pB$ot=e#TyRYRvdsqQ50G zI|*(lWtfGM7z;Gz)?WH_%uvm=xwQ5?9;q%wY_}J<30>fUu3s{HJ9UU}kTHV^?!08M zh1KX2L0K53QVXxuN796jDVox}G;^6MUbZ5c zJV=3zU2;)D{85BBbYICBWd|?+N)#(E?XSD^_E$Dg-V_z({b{Vc=8&}U^XIf~(+_cy zjBHoYeSCqK39Uw?yE~SAc+s4g3?E{?$hXXeIt0ttB3YIxGmM3Yl&E*m0fI~3D>mUB z1{K7=irBy$z?P`P$khsv>0<3$Lek&tutb~$vL3`_eLtP}H_J$-Y<3ArVL|Y&^9y)~lGEyDtQ5tbj7e?zV%~*{`%O`@wYDc9+IUwriIimC>EQvaDFQ_C* zt|yS>F+k95D@X_V$dY!+r-LZJ3kbTq9^Et&pe0}Q3J3uS%B){7g3{lEz+Aas2w_2; zMML&XBp_FghB08!-}8)pF{LAl{4Yb2$>suUTTGB1*BT!;N>&`jENj6)^Wl0uZyirBm#gc&ZlBH%@h+PYoO+`W%wQ*k z0?jQ>qc1CD-GyXxWt_)gf#_a@D48xV7@6cFR{@#E1L0?ia5y}oaihA>u{D|MgD+_g zDRTU!q*HW>i*O;}p(jAir%uL+(!qU3;-NX@3=_l;V#Kp6T0q8mB{8>%H-!Z4ryi|N zRJ7G80C@|kC2=>0+J^=GPh#}v(~I$TPIeEBekADhixhBVi1;Kb;ze>bUX3rg^(AAp zLID;P;&~O%q7#>WVJ?bTff>=RuA3;Gu&2^N2MTxsD*o#tO{9fgwTndQNBYdNsaE&Srd#SJ_@K zh6h65@id{C7G^zdjo9x(g7$W5>Y-VnWn7&RN)jW_yc`Tv_dO~)g-ng?{HZ6&TBIC4 z2N9$&Ybxn{sRxp@3gRXI>{G$4F-XuNmZi_=-kwIVi|L%4h;}G?3$iQ3vI1m?@C;5O z)Bs|g+$hGBNX}k}8#|5-AxIP;TP;(f8$BakWrai`4hm{7W^ETL zu(3i{k69@gsQ#9lJMD@m^O?H5l`ekYkuWmP>CI7R@y472*F30l&`d4dm&c~XP{yqaTj*z2)6 zIg{sJl6k(2v_J%7fSOO@YG#X9iEj-_q!9@L_zn%~+Tgj@+#1sWaA?T!h^w3O2n7u8 z&*F9Pr|o#Lq4m?;9VA~4MYWK@Lr0D;#GJCRdH^^yd>psMpVt$bm0^)r(%py*kzzx^ zyX%cQE%u6b(#`3!1ml#Vj4+|V`o4>E87t1-{Zy-1jdmUj&k%0e}#;2ac z`>OKKg3cmDH#orlk;Yzb7d*EU9EThcu3>Yu`J~{O>(KBT1-RPokqiDR**(PpwziA; zTjC#`R>>|77C5v=l3BcM%auIRzySHj%Hp&2c)r;3tzLrT(L}CA9b=jE>10OP6T_E$b_jyZYz-(dq_#hwJ)iMNQ&GPG0{Z(#|LmNC z+w5ZI#Yss@8!3W=2A;GO^W|%gqGBlw5YW?FAn&A|-;*Y40Z?Fg&)7-dR~GCnmkfR) zX3D_8l3Ix_rtnVRs%Rwxis%N&L*HIqHB-X|2waoZ4msmv@JjtuiUVxjlGHA0S`Xo^^Q{!mGAPDC zA9=`o{E5g)3>g#{bWB^(_uyA_+XHPd=cjm7ifIfj!n599G{}>pfk#ILx_4sUNK^n2 z(6yhgf^@2qpBfk-Yd@vytNnzelAoqHz&5IzX}2p417w}4tun82*Ogbw)Eq2u7|T?; z3MNdaR{ScM6uX(|urg5wy0z6q*_C{StJYT6f11x0-cY}i)g3ITHyrA4sBrXCjU&SX zhp|v#{Aw1`FhJHLxAp7s)r7VrvJ|J%$ju@FUn>uDgG$PIW}y2N-Jj5EbS}M8#Lu9Z z_Av9Pq@Cv-+A4phO^`gduY_!1pqb`BDW*Md9jbX(bu(Ct?&z7kOty>dT7BtQJ?Eom z$x2Xzn9hCfM2C`3LnX@vO*(E88W4E%GLr9Rg(?^_6x<6Gq{C-7_)0z)7Ez~=;G|hT z&qC>tIxMtk{#%2^P0xVA{~+L3-z-CN$;bYpVrQtu%&*4tEpMDnFdI}b-wn!4{j3+w zBp*kM%4-n8_))<4D&ks_Wo1R2zyvGJWNUXA(PdRC=C#)23tCIJJ)=)88-K%vWXD5D zo(l~P@UQH_IDNHRj-i5?z9Fo(bcxi^{ExaikfIumY5D4U$yZ8)fL4_Q3f>PnZ$K!@ z{I&83p+*CfidT*p^;>vIk1Sp(m>fEOLeFi^88N72aZIj3Q#_Q=t3&f^qCTCm)T34% zx}f0wduk-JP0gJvFviT@M~I<740f|h79(wo`XB*o2X|E3eH>W?P9!bwNGgm z^Y}cn-9-{aHAL#qAsVReb1KSHs3BbiM@dTh<~%|dvzS(Wt7P8X0IkLZExD3w3Q~4K z>zwKCNH1uJYE&Ub?8`twOkU&>UyfJ2Czf;^1t!*bp!+CFS7kl@4n_qD($KgIT1c-J z|M4+YP2*;uAP!5r(ACOmC7D1$X#ok+dx425=k?djOVa29&J+=pp@G$ch1aul?;~X4;yAp4M)Y%}%x zaLJdfymDzU5M?IRtJfkONySpRa3IUP)BH+>R$WOD(<^#s2nynd)|~d4cvP1RvLbek zpcYVP;mMsgsY{)qf;#KCtv-Y(m$+gN8eoDp3kCL(NZhL!Ykf$NMrt?=>vf9~D7x{3HsX8dHcPmHWb!inE5rr&L(6@bo{XaDFIH3U^M_>i5p&vs{T>D}$7Lx?IIKPhy-pmiZC&D!_)%`FE4F#XB zp*Z#!x4&eb0cgA_#<8Ixiv{U(vvor8h$cF`yQ-?kf(S6!zgR2;YA(07?bVIuYXi%`;kFZ7xF4>B`i#LS@bFAiPmsiWx<_2os z0)sth^;9!D`Z06YZuJ%wyjkqeJWd6hu+dkK{V`T2QioG$KJ}w7gg7exf~h_e&V&aky=uzyPV03+5CLvT|pw*>rvG1BJfb+dqVc; zj9a3vCoo{J|18%I*%Dgb14(v4$xPugKu?wvnbwnuR;zLrd@pwOoG1qzDt!OUR0Ii0 zUH|l;p&-l3e5q7nlpXOpsh*YPp+iT$C4#w)<}AUct>Z0KT|0S$EtSE;7Ji;)s*d6d zEf@1U%er}*j|~lRYmf%I7-4ovyQFx`XeMqkcqoa-tvTKI>z(%6Ox#L=!G4PtzNv%Z zTch#nQ2p=toR?hiMF9{xL&QH^JdoXs{HVxTPbrve0!$vE#sujdJPk$RdA5QXc7Q}F z`C+y}Dd`}l6`hyeXeoh-Qa*q{lrnw5KLkyX_yQ?fR0kH+5AlLW9n`E~?gdaq+^lx* z;|-A0#LwmQ^32=0AV_=x6s68kQR=|p_7UEt)HS#R3+j&`)hV;ixtWIvhE~AIE3yFv zZLGwEFk4*kY@&e@0~XY`p>&i+DRmniE3M${Mqorss{wQA7UcGg(rLh4I<*$1Q92C> zIyXLbsq$KCEzsGP9~4j{3NuWQxXY*CD_+J7=oklqVOX}kT@OFAW4kfn*Url|R}Dm(M07aE{VQ9=7K zC@rN)$y%So##~7-?Uq5sOY9(n{(kn($kebtpxw{$C0*GLb6Z?c-wvq#>mel(X$Px& zLFC6Fp}IJcK4|&H70g>?SaDllI?yQbo$RHNF?Nt1Ns^TvMP?aNSifp%5gl2^m&rCz zzZMsz4Lw^wG95qnMl=n0wu21%2Z6EmL-X;U`P~kJxrhuYUe_5g$Un(mNo!g^vp!4C z#~Xg0gkV}I11sPMHYDVff4#iqlN3#rUju_Yr|#)oni+Szrt01xgZ}f(Vy^jV``C37 z`k!D%EW<0P0S6vJKFeMVgan=_n6k~_cInXQ`7+dztLM|R?ejTZ$;PXs0T~`TWc)gl zpISpbsHQ3DXyL{5`EoPUhaAW6R2c8xOOfHn&9jRRLc_dAuhn7waRYge0R<^JEgf^W zrmddzp;g_9I-88>FM};D8D6zkTRx5!H5|fA4Y30m8h*w!bQZ5>tL5U7j$wH+UOn25 zSLZDTcSGh(4plQJGE>Vz8b+Q0F4@2C8oyULl3W?<1yXKK=ne~WG63@aGzrJ z`iUV!1EnxdO|mDw1zMs^HCit|D!BiRai3jprs^=T2B;GAa=3)VqHt#&xV&>o&*=CqE zEST?YUZ{jnZMEMUuU2%#Rcm}kVV~8CqzPLXQ)K&3j#@xVXK#BEy$M=_3fjA2X{&4+ z%TRI(%QlTY%pRvJM9%fWKCSWOPurPyR;46TTf2J9Au`JRAV$BS4CkW!@MAZ73Jmg3 z^T~supJ2sAhL&4=BS3>gM6?1{)A`gtDx{eT05a%5%2a2y6u6zFZSOWebG(o9h}8wi ztbt3W8D!)d8YRDz3Fy3{+>Ivfren@5nP$jib}>Qev~cq?tq<_yiX>q!=1f6Bddn}T z&nTG;EoM}Rpu6qU1bz<>wN=LoYt&WtTH{2P9$c6OK z=$5=rSCG*I8T3w9Fw*T$t?KO2(q0yg>vRPkEQs%CAtQZawmulsA%J`=FPVMKiyJ;} z5jAzsGw;@(MyOLM9~tE16y0 zQMDN`$U}doXKuou0SjU$Qlr%L6`GG)>O^V=8Y7+2;RJO4`(onFS=J(TK{HbN>ul2+ z=^yDH+$9}7`kV(0NqS*WOxherj5F$EclaJDxmECGDn(#c$;F0>PoUy_ao##u zoIf5f&gb!VEty?TD?@=X9dYzsBIwN7+4==@%?3rJ=n!G+!_!KiLoR8mz)KT`f>}DD zF){*3`AJTt(341~+(b>V<--Lmsu+g>V*VcQsur92*dhIA>Zzs!NR*?I>#(}|!)_bJ zd{)E*bzc^%qorQ7m2kPG-9rg|TwCy%`oEeK7*dtdXm0j;BN`bMH2%8Sj;c-y3@JET zOQ1nHyBAVUj z;a1Rh%hhOfDB0oDG<3RgpLRH)YKKp&H!^2)1689w&1s-57Nd@qw@fbBYY^Sechs{L@`iWmdT0y&u~8l0KMiy>FJ1FGm7% z1GYJz3DT6rIV1zBzcE6+F?2b9EWNj)|5H#;_4OO^sUVy#;}^m@En z`0J6HZBH%>)Y$xbP3O&#m`Z*(I>Z?&2m9Okae_zNuXFl zTTB2wzl5I6?E4n||9vyVqW&|X-SlU(4ShRQTiM*qQ84A=!ZOd@#RFlVxd@)HAQvey zovZkF31T_P&x(ZTBdNla72 zcFIT~$$l1y*omH|t1`XsJ0&8s#7dR}f{H3GT@+96Fe5cwaSjVa6@>u3s?WT`6T*f= z0ONr$+oNvidkzJrv!%)pC)*Vr%*2f(S<#jz#|n$L{}?zV*Z~QX;MbAlldp(g0T)x# zIGedgW7G;bN==KBDKB5rVkGZymAcdn7}Qw{p=z;DOc&~8u7pk^p&d7L|1UE^nHCbO z{CpOOvI&*)0{b|v?eiT$kTuxeq)U}+3(=Sdq}V8bT!5L_V?NNB zfE4?`-ul5`{6PIbC}APd*2HFf#$+@W92799Y|ar z#VsWEyX2;b-5!}W|KaAE&N?&Gm;TtJZu9rCQF1$aR<<$^(V7;uPcShnZJ6x^Lsqv6 zgM2JX04dqXFpv@+Bvoc)80(R_5`LzXorMZ*5=)r{pUFxX1q`qX3(H3Je0;s!@Pja73X1QY0C>lJ#fYQ%3g(NF72QS2d4`Je+Ig+4-Zw9(EyP-aWT*LVb_Nd_ ztV1#?&2wQZsM{fh=nxT!3q}M*uMJJ|@t(PvxZn{$N+d>_C+Q+v<`K=r$P60-Sb8#| z)52fPrmtIP{(N5D^n@dWoR!`_GFi^Imwf4Y-O~Hm#RAOA#750;1*F)!1Z>6=zPhh5 z3!G0icCmoz_jKGJZw8GCNUMGzp$Ov}bnrd$$8 zVskv<(`jDG>ZtA&YFIKi;|1rPBQPzs5Ruja*EAx%9SnHAb$Hi^+piWg8=B z$IHg+oi3B`KLIq>r>5A&rN3Hv2b4BedW{V7cn_j>wggE{V?BsPhX^*Zw9RAfU4~P4 zWXXU*%|=?z6LUHo(htXVM_Lhh$goRL)qpR2PJJk6y;X^I6$&w!{>Y(#oOu6f7kSd| zjUX~K)_(>p5Vgxj{w&!I*vOqQ+hwE8@;M!Z#%k>bY?QLVMtLo%**O}=d$Lb@@mzu| zcEhOh{h0n`gkF{#acxGNmOR^mU(>LtZLjF)R34)xCpKs-)29}}g8Zj( za(z-Gb){MgtA9yI+NFV`L&_~9Wu)JZQ46lxH4skmIU1lPhDM+V{jxFk+1D{8c?jQQXY@kx#dS~NmuQ?imvVwFfkiVX>$=SiU3IFjIg6G>_= zQ(@sD#I#;*vk@RV-%qCcgxOZaB9d7W0Hv9^{bxP{I#PMXS2$WV7X^8lfi}zTrUf zombUk3YRsv0(=O$9~E-Gz2qMnB~t(*2^tyXUqs1i{jJ*FtAFF!p(ITeso)fl6Su{j z_Vh6iY0MTH8RT(~P)Q1XV)3^uHRcfxK7^QrC3T&VjSrDFto9}MS!oo* z83zR6Lqm8>hs4tNWLlQ={k0~Z_?z=2ANqaPI4Yw%lDW=QQ>> zZ?CTxli4ym;`-eDX`jy5TzFSp{@=TMMT@T;-~LO=2AzMm`%R^LINhA`E=sUT&_W9( zW<*fevJkoDQZJ3@gwliMYrZ%^aCnAAFCox!LF3OXN}fjlG&w=uXfb8V6a)19#J=mg z+WwqQ@s7EgAfdK^Tud%JlzePougx7lTQ1Xc_gJ+e{AcE;L3sz_l1HDth;dt(?KWj{Zfrf(5 ztZdH)kMvP^d<&-_FST%mRsc9uWRW$lBCL?=k+p~cdLGzfcu#kE&m+huEK;FC2zNJk z>0Cz0y|&!BaiY8Ks!3%!P?H6%#^Qv74?BEn)%$g@?$MBi=@86VS+wGMFxb$L8zH*% z93L|^);Ckh$-zp$;!Yoo{XEoOE!TbTTdd52)Tv_&m!s~*QrP1IuZ zlCQ=zc^uI6xh;`rCwe|~7{Rw9i&tnNiw+&R@r<7Iy0*sRnSq9aSf;Mqx_T_$$uyCv zM<}4EsBQ++=d_%#a=n%2Z9*}PMG}h+9l1TvXtm|JSz|qqMh1Uw zraIcvIX$5z8p~82d}zt_)2DQ15l@X8^HT#21-aJHkA=;pF>5&Z&=T>`iJE0V&&LhY zfQNeM&~eYkVKBG!O{OfI3nt+$Oiov8K*1V`py$(zF{MLFg;}J+6f_V)LjtIYtY&%<2~*KPv<>i~B{EaBemT2R4!|@tFjHl5!F}JliuJek z_AHsemJQF%#12d)^94dGlP{$V2%@}lp>qISw zWHn!}4fx35=QFnHQ}i_&o}jK7;&Hv+jBOqR^!(DgkW!F7JtwoMf36Q{vC#4IeCsXV z7i`9}u%TxbkU$k5Kg3>8c4F04Z~Tx;0Y!YqChu`xbM*8?>JDDTEG0OK z+ycvL&(c5{Z)GNXQ%9P0g5z21wK5+W{JgfDr@p_U%}mqtLrP)%!(8gsRz3$b@p+2u z`Iwe^^AsUAG(5BwtEwz}Zb)4p^AW+ya|;#vhzAVzJPQmXonKQH0QPPTlZihc-<$@6 z4Gq7trsK76N}Dl_e-5{y8o`b!i(6DBAq#Zz@pxK^^z~|`dne`}^~U1?G!*bLu>aV= zTRC5E3>-s;j*qM*of=wiyd$>+OR_9ZZjESE@J8dNdP2!y70^iBw8-G+IhwVQ;rGp7 zFGq`jLj@mwrw_g!uhUj>vE@fn)*F3C;h}`b%i)&R?zNJH{_iSDSasBkmmV*&p!|Fu>7ZtpG z-o-rOPfFCAcgZlp>CVA@Z|2>$iv^93lFRYSbfXya`Z{xPxdc$-dLVn)H$xo{41mF& z_0gB=Zg9Oc^;q8$u0M$-R@?qspbF zL=cv(l`RxTTXDPvF=dwXmQ`oiATe8Zyjx=OdbZ)GSxrkUJFcYDP(rNKo`KFAwWnr- z#B2~6wuz8|o8}s?A}z=#fuL-dbg62`eO8I_T)E85n8u5AN)ZZ($>!>E#DvjaaGwEh zwjxD5&U+0%EP#GIjPOk~{6aFh-GZooLv~~FJWB$D>Qv!X`4^AmW#%O`@fG&wX7l}%%4GSi%eT09QO ziNz*`qt0zg)-=7vLS2SM&MotVJ8T*V7jJ$MA}_`V92x8|q|t`i)hRB$;%vO#^rTvWpEG|22JZ zrIv}UH?8*BTJ5^t?2Xs6Nqf6_fxGNgc9!VN-jXr>nT`(mlh^C51qqyy2r^eT{#H@| z%JFYGJmfxuD&vZ^DL*3flhGE9O3(ay>m9ouDPqNbPt`*ZD2HWsCC2iGUL`U=bS>{>^TM zquJ%uzoI~r?e6x$h(M4*-_JaK2jk5c)}w=`#$nY;lHJ|X;yh6Gg{R7?(hKTff+j1; zb$4ruu|UzUeMPi)?D}+Yq@>VH>=iA@xY{Ii$o`5#?|S{3uZz2Aq^~&K$qBW7tsc@< zpSSw5cMg2xoYWXPx&w%mEv{Cl6lnK4M~}}kP=$`R+aPOS{*?bifyJ(WyMz>iY=k20k&=Y1BGcZScZ>G z1&aJOp$`}=9-8r1+)SGg(L(cYyqeW7?-(U<(SK~DCzbI+^-nz2gLFn+Hx#;;%WEf+ zRRz1fF+u`8_~3wfF89&x0&#FktvD2S-iZBnF+!=|lJTBefj~=7=LuQ%23m5I2Ac9} zQ)!AAtl8RhNF;hLr<)f`o)kB)CnedXM}14aar-zV(39swMvGcN?42yyOm6@mVl>d? z&nnc5u|Z+h>deHV%2a2IizPXl`qZwDyY}u2t=sB~c%Uk)$LQ034_CJyb4j4*Gu!UM zN0qghr%Tq16t%n@3TVMPiPiFKxzURyR;_{hZ}rjPL@l0J(c+CoaxvX_SKXGFCw8#e zXvq0{J|~pgoT})p)%f*1q04*6Jd&39#^IogwK}X&Yv+$0Jim;W%k$aA%$rgx@vXpt zmP)mh(D^I)q5~G_+|ajF=9Fjh9M!=Ui`0B&6l%wPg9;5F6xwh3PFZ~$(mAO-ODyr7 zz=4&TP}4!5{dVO5h5GcAOtSK?MJh1{b>QVX9a`wM{hR~n>s1+(AGk}5oE&7SR4_uN zByz4P_oeMbS9}fW%|_0Q6H4#Cnl4_oI*V6(+u2;505Q?0_OkY}x4T7a6m6{>Jn;Q2 z{=2>Wj_%Z0^2I@dy{)_0J#=XK!q+lgtZ6U2TH#MK>r2Ywc-;tgLFX%pU_-}ez7D!y zc%v3Yn!{kY2*Dn&d=Wk{6g==1T+s>R33;`5*T7*NPjE27`?1ffDU+*f8aQ(=5bP_= zFE&F3_a|}gn9aL&ifzaN3-+KLY_FcLXflct6q<}Yr;`DF@2k}gqUg|a`}O$MwDpw! z56!-h&s*WD!T+(_02)I_fG8Tc9(cb}=C5v$S@?&T2s|y9(Z$@st1kXvv91ALjS1d| zVR59iM!TDjkC>11FBlcZP z==;ZF>TS-bY2OSK%#rdgbS*SmUO3`1ja7JR*v1YdSnqf?UQJ*7_XD?U1jH0BkB#~Z>M2=Js>7DTf$f%8w$0Sr zviIL>luUzx$+4oob~MthR4kVZ2R6q?&CgVB)v*KtzM_wYpkV$uv#5P2i^lF;n;?gY zwaN%;5qB1;n&i$S8jRh)^dgl zZYMu8@`6TNF+X$Az!kJ3{Y)h0)@nyCD40L>+mZ7SO`@@YC^+XOza@FN;Qz_%>G79V|YC7d2Vrk;9i!q8Xs(7Ug@Z>GRgf_2X|l-?jFG zU38Mf#XuM%MBu=6n{yq64lWs_<&vd%V7tfJl7!ao21j^Fy3Sm}3=*7o1J3Vf8}A4W zNsB6?G>BmQ>Ff1#n!~$jr3>NKEqCW#axveoc?=P3dA5+7%ee?&C`R{2%(t5rWAGv7 zZ)`El5bmfFx4f96<%FW44UW++Vo zNq=i!j!Bv?pXb~(FIa?Rk$1}CG?4bW1&B%WPj(X=F=X*}3R2*Z@pJoHOvaj~qSfw2 zR%epF7x8ze7RvxZ#Z_h|)9I7dY~_6*Xtc^W4WxZxZKYRcu3L}O|IJxSDmaYMA~Hke z!$Znv_C@bm6)fn}5vwr4cPk55qyyLx@f*Cgo?X(FIrP0~MMuZCo(>;%(}iVNex%-v zRhnR1JvdAvmHJgFLdg9FP@=cjVE`4ZYyd@hwJ9IOehH+VVoi?2DqL`+9N^0dO}QZQ zS3n6x4vjBpm$~96Y75p-0e6Qwk3=qu+IKR(X;~nFtdG7wU#VkfPR5g$)J&9V&bAj9 z-uiRFa5lx!#>vIZVZ9>qWV~8=i=b+;I+#VQXV)9=gL-{dg9+CA+!|Wf`Eq;abzp+2 zt9%o?phdhFp^@wJrl8>UJW5Num@mgXN3L&Wg9+9L5i4ITug0`mheaX5e9#Uv1GSKu z&PAFno;S^$qJsHeq|9@=OqJ0J#?3nltRcY}^X7<|>w8rSTErVMa(!OU#<#eQ_32^E zzJghoeES+Wl<{`@;ORm&8j8l}{)NzjS(gYI#{(N$jQuqy_E&2$F;p;r?3Yt9)91xm zu*^y@rCwBCh70yPK6_ZF`@26k7SZxr4N9xJ;F~Bd!$oNW_N{iVNN-!y)(m$Sd)VtX z!_Ir&PyCurHAZ@0!2-6T8t1?$eI9?L7jA~%>xuK~KJ1N~u|DsSKh3c|`cL=sq~I%p z!2Cdl{c{yWI*x`Ec)iEN92*3^v|urxzyPeL&hx%VZ{3Xdc|CR>f5iCB@O!rZ)%TZk z>On7C2mRx&nhLn2&kA}aZ@QfLU^&^Uzp?IIFb)K+8R|$$;FN!l*LTSp`Ktg0TgZT2 zN}48uyq^Iglt&vW52v&rYQ-~Z!A?71?vUjWK+flQ6_u6NU3)_b_StsBr3fY@fybq! zo)CaT#us=kPeyOZyht#~21Jn%f`^n(@uDYXe|Z@=v)~#ipcTmg^ezb<)5e%38j=8L zNXYYx^f|9O8uE(_95S-T%sq$>15jtI(GajptL9f*y=a5krE+7I5JBE&s9n!jM$_*% zz2!M?Jc0>Xz!f=*#fFHV<1H(K((=@l>%HsI_<3+yq+l{1pm8Zt1_=5k-Ypd5xsc#H z6=3C(oM!zo-cBu}X5!*OPSRPXof1%%<}{qDeQ_ZH!of;XTYEjoYQ^EtC70S=|Mw65YpLmeqGcJ z=>a%o1R>pj(z8b0kRE}Dl>6`|mGhjd9PD^})lvt}u+cNs11;ag0D#8dKxB9}CS1my!p>4r_dd`vRsl1s~BbE&n3 zRe_tOc3?rBIhLvl+EPo`U+qmVmfm2!vSS6PAil@UJzEdSv4bj>eC^A%wSx&#?pBNC z>QXNOXTDs^tujbZ@&;tOpoSZe3kq6ZudC_Rd_0+kytV3;p@R61Tdzm-RWXcGg7vWg zVV$RPj|>rnwzIgLEoN%oPCeG5%a!TuqRlk{vDz&$PX|1v0e=igAjgIg?@3=siOvE@ zMM4xjBs_%m@S+yGUCd_-zVyFD76Yh!4JkfEd=eF*7x4O~C^2l`EyFTE$lpN76`k^z z&g*t)yZmOjq3x2FExMeYRtqW!K$b#@+=p` z*|B7fxbP!ri5V(jN({$8j%rzSHraIAN>lcc^WSNn!VESRe4C}N#9&U%jHJf5;&#%( zW_mP{|MX-&9rMM^LSL(-&9Fh*4!hC(9_4p$%x)g)2J-k?^J~+>%15z@C&*1de&r_5>$n3j9)cl*86Ow&H`JMz z30+aL*zk#o`3(fed}c^)DakrtTdnn{rH%TF`9q6V@u;m92h+(sJxqW_%m1}o@zu5Z zT(xQ0j}j%QAo15l68B%w0jv|66mo7@XCejjJz|kjGRV}?GOu{)((;%U1!rf-1)2;H zG$LsS(~I$Tj=M~m?V6P4(Lh>Z0Bjt(IEt&b8VBNl0mO+OQJy0zaqHcF% zVg!rL%8Aho5cK<^CJ^1-7xOm3fM2dLwxtlHkX;x?hBq8WfDbW+*$h2QE-=2#dJX@) zoF=oGI2(i(_7xOQR-0WpVv~JEE+OO=<~I86Nap5dv`ywVd3+FC7zg#sUIyn1Z88qV zxFGVkMXg=G7|q{Yse&0uaZ}G{6bU}16JF>V%yZMU^7@!21?MwDu%1oJ3-G7w=^<@Y zm_1({j1E|k7o4Okwkl_Vu)^7iXP5Il^EEjI;L$*u?w!};?_0z6v(ERE>6IFxs(r!s zAIw&Q-dVZ10<^PE#pn>C_ZY?=J*GYG&9v`I#2o zuVf~?`0Sye7qM1Jftht)>|}#L?MVd!>9Z8YRxc0Y8AuAXdzjrV+E4w-uWGeYrNb&0bfOQoEWlo zx?3Q7J>8)FA1xNOtm+-&@&8dJ#n zU%&goU;IG*KPcDh7hDrlPMZ$XTMK92hk2@Cpd&JF9v8#~_3yl(&M@S|1}3qo`Y&dL z&>%LM!OUQ~Ue48V?zD?c{fGH0)7eyPDkOwVy~y6J?9OVnT%o%4)g4TnVALS0=LiiX z1^&mLy`XPhbNv^lt117>R)@sCcG+jLRt`!x0c|ldCkWAMOCMeSrqeaT}#00C$5*8~X%n(7Bt;oD`1g94Y zz715d7dyOgr?vF8a&N*~h6vWOVK-*2-cWg%GVk8?f2jXq`bvZ|X>EptC3I?qd)IGH zr%MQ(deKu}t1!jWukopX5<#wJVe&Le}qNIi$I1dH1mtLGdps1sQ)+*f~t*5iBY?TEy!UHWo6Ty9sB zsR}xKboqrjJ%PoX5;Ic8PN+ZNM(JQf{WX`j74Idxwk#sF#AHe-p*|T1%O%x4rxT6?p_cy--6pVDjr zpYN5e;&PzyRl)faM=zEzRTCCBCLu+K1a+3Eqm#BKPDiuLY0M6S{S6!}Vh108myC!l z8kON$Lw)0PtYPjACMW&=y0zBRAT71Y^mw{?u{`H9*|IR?U`LFzgATS*q0#}0ymhGs zKAz6`h03x;V-B=Tqr(P?YDUDt$(1;yMMvTFRf2s<9KVdtj1pqi;wB|_ZLXr;f7DeW z?PTA(o7^lrOjc96zt+3ZRkk9_;cx|)qlM^yl!;zVpOeE*SINb85#D$t+s9o^cgS2- zI-TA~8;B-6BEAvnmKo9yOIm%lpaZPdS7s-xtpgr8{vXjQvznEVCjJ2yKtF5-&_NIR@y&82J0{@XMe|1Izd?1`s3KB0KncONt9z4zEhz+hQM;(Hc|Dq|zlo?_MFWcSue>^opkjTQTa;A; z!LKYoigD}Dv#Sf*?AtmSZ(h*JJCsrK6lQO?I6!EZ#y?!VIN5BSoX_~G{90rw9>{Jp zCG?{zChPe3>l6)uIdqhl`-Q7VmjZ(B16DekTVAlD{f|0D(`X>N$B5K|ge1I9{;&?6 zg9*~RA!%^>L8mq+JHY$CrM&*b>`LuUZ|TE1ulSU`;N~9y@#YYqqO5oDJZR~TE${S+ zgNjAvh#<5zil6CR3ALAxIZ)La^)W&E;LmBC@gDGxR2Ezl1|(+R2rQ_B^3uo4+2Uf^ zXnBDN(vP4L!W5&LU}CI~YF4ZT&81b@SmU%76tp(hqO?Iksv7(lAm{?)Uacr)@Z)V= z<62PA2BlPyi`8e{QfffZJ@j3OMk80__4@U4#aaKorWd)mAP*W1?N;27AXePEK?0Z{ z4MJgfAamVN$PZi&97+F7SBSG>)^#KcigMb%hP=B=aiMjwT3&|vN!7k4LAecn%P8f0iZ?MB_)O5A%xlp9bNa*KY5`kAr3r*^-_{@KKXeDGuj@-D?4juRHVk>}oyZQ%3)^ zyQ(Kk{o!x3HbKF{postNa6I=0!M`hwYA^u#)^TU_IN3jH4~MKR{Bu6;}Y^ko4w0|Uvelj~%3a(L8! zG)(r|!_MftlMX9HL04ufRUN3jJo}?*Nij4~eeC_1be`=e!_&R60T)ae?dIgLAiwXD ze>dt3Xb#i%F!o; z1^N4qD-AmBgYOvO&JI5>#2P4&xNf6=>GmEmp30%zqJhedrlZr7qfWdED@Rig6SS_k zszwoKtsHMSBuF1Rb$8n9?)MLJcnc=?isL|l3hKWct+sVj3Jn3kA0^58^lbY)Ntk04 zB+NO9N`?dI_mj;FHQC*w)$1>V!%GT+G8pi_9=G5h77R4E@XM%s-07c=lH>L>Ru;k3 z1t1uciwCmz#;eu%x}}<*noi_nqJpduMKZ5z8XpN1pN`j?*2(q$VM4=z{?laCKS_={ zPdZ0Q`)Rw&lZAr7WEly~@D;;?{sT+j?;U-Y&~StqQ&Pr&(ISE5t|ieeY`=ee-06+@ zphPg4pip?(I2`DHK3-oh=rq$!OaDh={&SMd7RlN6;(}HVu4jMd&FXY_rfxw~2@(n@ z`h|U&D_U+hxsskVB+2K1rZ2RV+0qz^{&&4SOV4L)9dw@bPQ6j-{}k$(E&stm%8XUa z1XZ6Es5~+ zpPlhg&}Y0RC%Z2=5Y4$$XBkD5uT{0-&i8HsdWbZWSXa48XpnQj^KL zwbwspxW5-vnt9X6%}{{+PKKQ9@iBeDjGXnfD7XTO;U6`HPe8zb-_d_MI{fN)%szte zPU-ueeG-EOmRmlHZ!1ZdjN3{RxfTn#JiFE9%D3J(UpHqx!pgDUH(xhuJp-4|)ui=^ z%dy^j+$(<1j8`z=-_d%=BYtmf_cNN}y_h{Ww?edNAe3}_qt4)@e?&9r{T|J4oQxhb zV!?F~3^Vn70Sj#Wqsj8>dNq6gV#A2bk1#VFK>v^q);phhipxEWqmCMtGrLLr zjb1iZV<-UsAOk<{_PWPyP9PX^D*%rGNFaGPBkA>fyl<6!%ncbd4B&4w_}=MpXW)IZ zlelq|1Yn?gYqF(7wb!lAfX~uOD#E;JOqHPk`9~>o|65kWl4LgoCJ^A>PjScV$!tdJ zYt*jNxf&7h`6IzX1_tC7BLWTfyXi{{^S=r0lw8xbH>`+)C6_6ROX?$n@!j;<7?Z@C zLt_F74DZwO1X|%u2OUr+_g$yWJwed!?fbes_Fq7Y@N|1k@}y`P&)H>baZdjyje)Fo z1i7_()fB}C0>wQV6U;8h^OpX|wBM)1;Ms^iSu>`B`FR9qz!ctTFIO5 zFaQiI&(%qWb**eb01Yb#ZK{H1){uUr>R@?wIp*#x_)y0x&mcgpZX`?7V%-BG$~KY| z0OAZ0t0Bc{_r0I|Zb;;Qr`*IZ>NUTeO* zA1`%|j=CqqE+64b(#x31Ef{D%0L@{$dz7f{4XkjIfohB=Lj%!gAnHEq^#>ibew=F6 zd_WlyH>2%Utkpbhi1-*HNCHg>(;DjJ>EkY~Q$K0%bH5U7Kmr!4)hICN@8Oj}=cGTN zS%F89)+EUwVkY-7L3*2$Ci@57!$W3m$#hXZV+xo@*K3;20D|r(Ug`9*xWn#%7FjDF zJRR_A6`WfOKvu2BxJd*ZLVPoyHeGH52)ef+bNFqS&-h3tHeE(Df*VF2> zE#`8(pk2Ilo#ps-qV}*Q=^vOEjd!=%D5$n`^p}7R>OL@!U(vxJlk3*w(TH21U}-Y? zBL?6oa3SMt!{f%;G$h#WFlp*1{WaQ6YXpNu1`?Lf!p2$ks9@u*MX1keVZnNv$vmH4 zjOhqX=2Qi%y@gc?RB+y6oHWZZ^G@&)WHSsRv~CIt#ve~ttHrX_`FgL*cM1qTu9;U2 zg@XdhR^P$0SGko5Ya_7gu95M&^6 z9*YL5w=C5Y=3{~(X^i2C9fy4g;KN>jczU9`c19pb)*=KB7)oHP`%&Bba8a$gH4MPt zMJbNVh8H*D2>O&r2~r>spdIYB54bB;Y6lu60?kvKs?dkFa$$4gJ3L_3TFK@H2D;x# zZBBnZ9`fKISj!WdJjDULV{!gTvZ`4I)+~4rD_;}TdSWA`B%ScR#zy1hVK2x-J=Ga(ZGb@18+-PB~RaftY82Rqo{2u%;1%b zqEP^i@JpZHd+j|6z8!9wO5xW9ixJTT5cP-+5djQD=y{chL5H@BGmBN~c{3=GpotyO z@_{41IHyt*OK|}IUK-l;pZoiqK(JsX3~m+)6sUOGVLED4W-;je2QyTqig&?4gv{Z< zTl`%qb5I}vwsp{_T`s(qtJQ(Q0X)LRfm&t9OjD^v8yFuvJiDV3xPkG(!@c~Kzzqz* z5sMBRNys${pyBn8`)WIpw_c%=*IOh|!0XiyrxYIA`+ON~C9ikEKm;>&4+af{Y>fhF zIA-@~=(X8O)oWk?{y`dfy1kP@{}IJcJ~9$~z7AuLg9RFEp5CZ|)!CY9?!!o4cY(%0@(fNn`YE&m=K)iYnjVb zGtD;&2HRa;Azy=2)x1pysg;op8Dd*@T*m93IqbjJpP)_s^(ER z5%}SL1L1(IuW$fw-LlunSmj8=034B>76I~!ufIxt{pudOX&q{S+kwAegjedw_v6Zqk2MaW4 zaJ^<4oPi0z`|TdjrYbc!I{c4d0B(J#zju1bQ`l-gWN-j)4b$Hrc3CT^s9nJTJkx&A z9<>>IMeP~~@R@cxLxZ7L)UIGca5_Gv32+4i@XRnluU^qG8VB&1VUD~Rmx_i_FaXcA z2mMP$?W}{zv>$gGNWy!41q1C4xHr#U(J*SdJ_M%#)P%<p<}G@12>Cp?v{SOx_HaAa%r?Trr%D`jgM1<;OeZ;W46cVv)HjNkF_ zUKN~Rpge1DL#v|lX&Nr6D%==aC_6=Tgv;Q-#|H?;Zqm`;9V zjka2T10+y5CGaN|s+Pc=Rd8xx=+CZKtpN=L{h9BNJo{91PXz;TM?D?O$7k)Us@Fgu zutDJ&O;NdDva1CJg#u`NoavuXqfnpw8GfaYGZ_>};Gq2{odIngd&)Q}IjBVf1x$3( zX<~X;qW~J?tP^JqgIfue##t^Hh-?}BL(3{vGdq(E{;xYmX8ub4Z(yMNPC5sx{~BL3 zBG}RuPE&h$po7cmpVe`GtUQ%mHiH5Q3^r)@9&v(71~V`KM>HLDj`tt)G^kQEO>rXd z6vvr$s=_NAz@s%2EB)DvNR?W%MFIsPDh=01ZEyWirHBe35TL0I`rcr)Qd83?fQEU7 zk59w-j7sLQNT5K2Q(fGs!3O8yfevk97@Ve9sVx{7fTJdc1MkaUrJB$vfVR2^$4!iV zhZ-gTAGMp9`y@YiPJ)8}4@ZN*=9T;(Ku`~>s}pQlfT(13jRI)+zxrcv*kvXEw@9Es zk4$5{<96>mT5!UL9F=-x7YsxQ)T3vkJ#YC_rAV6M`0%IuN1b*9pA}M^0KV5Ad5x=* z`cs1gcr-6sIW*w*uM`#x48Sp#f7(AiI-mo#ya}L6V|fP)G-wCU{HeD}?Lead8s>R+ z=pTz)$vg%I;AtbHoN2iVHYQhTWEm1D{*tbN-musp*nmje3TfZ(0yp|-2mro!v0Twn zmvn`3t36D-EntF$(b??N@0S33KOi^3Me!Pu-~`XL%NK^Kec_O3{e@`^&zGy&=EdbY8NZ^vP~$W2#!bNvL11Zz z#XrXL2r%eBi9GduJ6=(Mn0l8J33k2$ERWwohJerT&e?qYa{Bd|KJfCO`-p}WN$}lQ zuuT(iOhO(uMA%AjAN;oSU8taHB}9Qi{}7__6isfZozFq}3$|Qi%@m-b<#%yGejjgu zeAqsUnEvtZ-F5(qQfH_j_G*58gEb#wLxflJ=D{1Nc@G%$Ud^vtZVkCJSoLb2|>bE!xvM+sx>^OO**;E$I^UuY;2=1ozZ(EYr@4;3488{-RcMO&b+? z2PrsMfa632IM5)!6~4p|t(7?_1D(&EZ1zp=pH=EeOE=y)?_{- zo9I2m!z9?LC)nfaqND|n!h-gW`-0l49I}cGo{>aZ4QiB>F5tYPL56oQYF*L{6{K&^ zE}y?RU$xYMA>5M%NpbqFE*rxE`a5(^^I~rXbpV0Ec(u-0#g@XeE zT?a&PIOzYuJ2|jy9b_mz_^^LE@DAgs0G^@%{2`TXx!S12o*Y--j!vC$hwB;c8Od0kkJCk zkmtjK`Ziu5>is?)rAW<}&!7s<9|49>ngPb>;$^HsmjQzA6DXt7(Lpi;HKmbLOo?ly z=JbmhL56@2905HVrFqR>Fp>v=Pnx2E$gRg-=P6AvwvYJSL=D4cfS_aL>K_g|+-K^P z%bK@bTW*$0glq&-S-G?wYISej0cGG*op@l&3D-3X;x{C)56%C`F_6Ock z(Soy5fD)mzkQwEYrug)BJL;+r4?BZ!)GVpGW!hWE(ZKfZ%jxy&w@7QDHJF^#NXG;i%o<^P+dS^G!7i7en_X;Oes%e#SnCT-V8EO0Q-SH*>BoX z(+D(?)Ac441+%*;fYu*^f#<#Sr~Sw6L2zHBpf(~b7785if`hIH^|wU}=I~<_DH0fL zDF(g$@8}yKtBi`J02DahPIVk4hsS)qs36shl)>Nt9X2{h=m;ziznYDJ1ctX#4b4&vq-u`#gNsxI zpS~kSNr6xbL=gJ3`e4xZR>)L~APyLK(Du|%RaPm*OJbnFfx0J-W7-+qripFl!`15E zMT;@f^U#&f6SYUyj==yW|M9;xn*ymvWXtzXdnEV%2&by-1m<8__-;2*#O$zMe- z9{qav=b7vd%k+KV{k8tLf9t5=v!;jW-Z^S8{hL9{W4iZ({!sIIw|9P1y5P>;okpd9 zb!T~%?!}#VFX=`jb+@>h?7yUIY7_kr*6;;i88Q^(3vp0X;l1qf>4IjuXN%`+IyCc& zu?l8jGZ>GRqk{JR?D^SZw(&j~3x+D$`yO8k2cp~AgD)4$*K~8?+?!q&j4Lw?kIaFL z5U%NV@!9u*HR}*MkRZI3snh-v@CoiM$soJ}W{9Bs@RGcPzPKJdN!q6)+7Z;_`=lhX zN+B4c5DPr-W;`@?#-~&SU59?#w5$pN1Q_= zfy1c}bp&`&l8W_Vv2u8V($wH7Do?NDO>x!W(O4*t<6ps)T}A)WIKX%6TRCt(ZG!U|@1uX0IQ#{fez7MFPj| ztTes8wW*tP2?jl};y7sFV&zeXxwHDITpo=S$_gfSM)Fk4P1A#ni=*F zM@j$ikT$IIQVDix#j1zlf$vVnciPJuu-kkjDO@BCaN)q_MAE0-qobyJ1d9cpcP`g6 z_1Sejc|pf!Gv5{r>C=}@%E5qu{~qwCf7()3JY@`$)?-i^1E9e1m*?=Tkx@wt`3^6 zl#hR@E@8N&rE7DO@CSey)w;ERbU@R#6exSAUeYH>$d>6ne)PW_2Mq6|zo-n^gBPr{ z_ux|yADfN_^*?Ku$4)_f>~AUd)z+PY0Q=q4Cc{zx#5aoI8;NHWp!n#cLAwETpaA_n zV(&al_S?PDKAkPflMz9V1AHV}Q7(iB@NR;ZJApaKga^B*A z0Q<)VyW97X1si<0XafP<)EboD(qXPF43xG;iUH)*8ofT9Tzbl(OIrgVz_zOOrhhj- zsi0b809myhGCv)xaHy^`W)>;ea$FRkTit5o9K)`lTVnwEuZ?c+j(fo*Fn12;di&Jl z`lOUgE$wjz0!mXG^oPNDXr*nCVgNaUNW0h%ZQkxtq8^;7I-DRDIE8@=N=RfdKB0i25+hOa;^Y zj^-2qm_O8*USs)c_lE<9=(H81k#2G0ajvXJ4FHXAX^o>GB^P{*U@{E?M?I~LY7l_> zJ~2KT(CzQNK4s)QLYTNpk$mBt}*5{%C{WhT=A0DX13;n0bkoHvi_sRs z5>&L&*N%;tpMIl$aWlkzwwGu(NY=* zrC{yt_g)z)*0q8GKCA2F_K<&yt5^b!0|r*t!^ho2-p5z02Ll8Sl{?Y42pUa$LymH} zlZ61T$|2J27OV}F%OQXORHJsU+w&Kcl~tQU09TC+Xop6mXDl}|$S{Cx><~^Tl(mCF z0IIQr*-ypHThe zY3$p179^Bq?VCby+}=UwsLdBdmc>mWfNT7h&d?6lCYJSIU;x=zg1&Y7Ct;RWY#@NE z=4kqqv>(!jIOb?i245K)K9?fU|Gh^`{b;_L znMts)C{6}2aH-iFr)2cAzZj?7>`jQ3!xRbUm6^P_{t+)zPIwb6{)n5}1gGCnt{vd~s{Jc$Q%RS@opmuY*3_=FYbzmFr0v4DhY;nqR*(c<}Y>B-naZ z?(3I%A6iuuK1mK})0B4#XSsaMLU7z(|7qJxiOb@q5Wv;8rA%Jo^7H0PdWFT{$m;NR zf4Ec@85lrT`3W6H^Qg-|vzF`aQvhJ9@1XQ253;N$sP}=WdU=iLUA|tfmj?n+P1yr4 zC|h<708Eup4o0-t=AhF#p}7@q)^Zso#{q-N{`4=8j{1Avvd41SpNj%?<-_{#N9{lG z!Av<%%P@efMvLaJ>dXihmCKD59S~q!tM_Ol_ff~&np(l?76%O0>OHzJ&b#Tcg4I(L zpsPryi$%eMS*Bb>vJk-4wfXcg31^y0)~3bqkso)dCt#AxBO44LYd;~rNPI5oCm9H^ zwVmnD!Fa5sodE${^(}jl)cTgKUk9G@w&DKc&Ox#l96?>q+guc&D+`;yA9fFUM^(0ec53`M|}nxamwZ1F*L9#PfUO3 z1u5r=76P~*SlpqS9XROnVR5-HB?jFB{nuap;4gll{vXJ6Av&FJll{|Lg#bi=TkliM zP~j?w0M|b?q@>Xmu7UurZcvBGaqW;b%s_yxonA%5gYNL#E^nC`g z5-T78RoUZde6?}8AmD%iTPc1TSqofFF%TFkEuN%XYgkw*iJBsKs6mEV8kMD(s?|Nk zdSG{Epqv+52&h%b!qZc_fxf-(O@x-~(lZPotM2h>z3x%J4m>qTe%2n128sR{$fvZ* z4U!oQ@Kri#ei(F4j>sI$C(5Oh90v?4Oq*ZSaniv-N#(+{2Lujf^=I|0u3rb98ZM3J zoAs1$U@tdZN&$eWEKMg@U92~&M4i}L`ovIrA5)Y6E!Iq0b76Q1cwrG1* zJs(Q}fT?P0K3hzE&~mi}1fZ(c6`U4bZuzQy9eAqbSL2#~ngRgx3yryX(OPe>)WN6g zWV@KDBbO6(R72R_1m`XT5sgl@fg*TFQ2|dqs~TyfrI!nM9uPQGMXR6cRWuNQ`d5VN zBmTP7GG+BP(C#ZV)W+F0osyiOZMj`}!Tv9tz)C=Clm8x8F?4khuAwyrz=gZg0`udV0fp>|C z;M9?r0WUmA@TyL6eZ9_UD&^7-jsu2wC{V2FKB3`gL}%hKXArc+^kwaR90>ULR3lRR zeNVQl>4^#vD0^1O+J;RrQOb`X(3a9Xz#F#U_$1)O3kp!shV@BLcxTGju1^CA z%CJ6H%Oy8%?fTS+`Go7u^pe$PZ9_;@X~$3QCI+q zdyqv1@x80rbf?dh!7 zB(f@4(CbymPf&&%VbvgL$Z+6ErUy28ILp zzx>m-_CU+joN;!SctiE?v z)2o%rgvSH=4+be1cH!kTLbynf`XR0oX$_9()`AgT?7>(B%hN1EN@H$Daqz%(+di3c z1t*9Jk`;>)Wn3?vxu*@sic2TbL*(K*9QveH^UAN3>AJq%-W(vOPOMVGw`7vrJMYdZ*3nkkYEh0dg9$BQQxWx z5qv=jL!;I%p@9Tr5OoILGR)dhM*)H@@S4F$t*vBnr?%Imm<61{cBuw9HD)g7a4!gV zwK-Eva6YhYDQ%I%?jyCm(?3{1aF3@&indAz7ueQ+*;zvPX-Cnku7%2tKE; zG{5dY?j9WsyjAQq`brNKyg@mKouk8M%c&8;=hUT9G?HR_UKg7e;b_IyFN z0PK$jN68-1(c+*dbap5!rl3uxFgg(AL4xy^`@nvLPjHrJ9v|Sq^c6ZAE%Gf{hxdxkYH6wghj&u z``z>bf^P2(xZ4TFf)RKi#TbqTJQi1HP)J~SFDrv?L9FcvHu1y@VW7bAj>B=v2eX2Y zQ#lL-1bn9+_8%Ydm{ZwG8VL+e3Fy2`W~0g_P(Z+UOF&x)8A0_DC?qgAB{)3c1GUN} zP(Ts<$EQ3=sf@3HBKUN)Co@oGd<7K4_bQ+|zGHu;tK!NG z8Y#js>^yqXOc^v%gn=$yZ7AMpqzJ?5aPU<#Wza}*hOZlA_}coa6SJRod)`*M$}!tO zp%m|DF*^wlpA&2&jfd?N3oMS$CI^QNwF-?CW1yM;W@;l*NMJygMt!$hLmnKLR4sRM z(PB)ekuy4~GXV`ul%;K^txiv0dwfcVmC|*u-X1Jbo=YHURvm)_8}&`}^U0ud*nQ^R z+b7D>7>k7gI{6qqpbN3*e>oC-b<}TXg~)Is_<@ls;%gk>zq4LWUQRcy_95-Xwy3_On4`gc=T z_9_Jge8;O!dtLr%uX258BrrH$^@0$X~c&c)mlo16=V7Lum0(q ze_{r!&SJ2@@=;ndiht04n$StGhl4iVVawPAGiQ-z8DfIs<K)#MHW=s~nUIaF6n zFdJ8k_9+nX(cn zkv10rMY%q4c#r!1lRZi==)5Yml+izq@7qdVqPQc#;72P|j}7*zynLWntra?8;6Y?j zjUjsCX|>40;J{_eq__?qQOIUqU$IOX7ka~yEH)!`s0a3CIQayphP5;UsCV-FB~AG)u*ystp@#i>cT`GcfR=&Ab?| zliAg)CPtqY3LJOWf11-Q#y72#_F&kdd%uo)L5?W-(3zr`v0EGxl=nF0L1+JH^xa8? zyfmLP!vv`As*(xCv?sFl7&CPni4=2@ETl@zlS$s1(h^} zm~nvxlG`3hSTsp2EMVeg`sI2(Z_xs1I)U||Gu$6^PexrjdWBA6I2b-|f7_wVqkDAf z-SsmNWw|c^RB*Fdy#$!PO=+6EDUu;wbT7v-kGpO#-(ib{D<8epj zzWw84YI3TNC>_FF7f=Ps!-aq!TLGTc1X~IMtMv#Y03P=E4w5Rs3Io8p5vrmMhexmY z_qno-Fhhxgf5WU_75tk}`RHi)ihsMT0&Y;C{5@2p{&T|NB_A?;&jC&j0k?d00{6RU z+JX%;w|;ek%>K8OiPX8Vve#N#4&)HtGf+`y_Lwp{-J&NEu9^cL!0`jAU>?pz}>rID~qaqHHS2k#b3Rw^4^A z>o|gv@CvU(l2!Tbw91E+%pP@;gU1Q2C16cNG9}?vI|qZ&?s6)XFa~6jxzIS7g#+D( zitc34AN6TsBGMuylX@5TF%9A;SjsaE!H6i8OFc7LI1@vgr@zHDTU;pG#Wu9p?97Ga79LS9#4psQS0Jl5&P>lXagS6+r(w($mF zC{c`x2fdn9S==-3v0c&03e%SHjHG?)?T0B{TM;~zjS;3vS!0AQ9td?-OQ~P?@H;wM zlD>+X@$ut!muDwsv)UX;(CP_{;F+UNn{VJKJAn~L1gUNc=_3c7!!~X7XU(o`Q}Ccb zqdS-Mw`afo^*_5-QF=nLl-lUsk{8C8n;DY}_ zjQ^nX#NTl(S(#GEonnIblPE9EGwzT21HL*+GHfcQwy=flG+rEhcS0`5T2pQI3>NHB zn?I(JqqkeIw#`#a@ct}jb2WqgXh7RBRr~h8XPyWq$O}y$phHX429e9BYTF>i1n)0n zHt6+7G<+sQ^hPvUazJ;Bb03hbsVOu=i~x#$5?7SaCzaDZy>g2A<8j?8QG@9W8Y-d@ zuzz?MoFG#>0s<7wAIHj1o*3TBD2e-p)nHM<9ko3j9j(8l*s)i`CZ-K=i2tDc~6P+9!0QD-XGqI4lx4-Z9pqGq!@`QY1T%JWBy4 zK;Lf$-M|3-$Iwn0G^=CDH|0RN0tt})OXMmcE06%W+vA_IDj_QnAioW39Mgqi%p8(0 zqk%az3b3u095+*s1|~oc8&V}7G%!H7b_versbm+80&MGnr`}rgO0}s#fSjtPyME|E z(z>;oqWIWdO6U2(S`{pk7?c3}aPNrk5vzo)Q9|tf$Aj87=^iSS5Zm93QBAi(0e0GY zlJ4O_-&=Nh<)Vk_^XDkP=K9Tg>LoYE?&(l8V2Z@RR$ft zWwe@dg#zqMxmush9I={m4FmK{`P0YTEY*}NlmJ_e_n7cX*cv6o_Ad~whOJOSZ2zpP zYS;=T#HK?G8nB5%39+9(YrqQ!3MGckQ;BLedHO8U?uqgLr|r$V+)R!$Us+^x-?wIO zS}c!8o*9=ccB`%Hxo7TFbLlRNEYf7L7hTWApa4`AL~M{5%o^Xl6@dD^xa zn<<&y-)*GqI7-gmNZI)=EjzI${Ep^HWv8=IP3SSXjE5KJQIuLdCLn?-^lXvcQAdJ*hT+*PC|Qv!2kiENIv2 zMPgZz-q_l(Vnu`^)#%Ox-Tq-;JxpWSkCR6&fWW6*=lDmx_XP=44dBDihlAf_EUhx` z%r~Y|v9!vBESk6X2Qnu#i%Z3V3e}n}#*@XUGhejlef8?0WfyCnEGZ32RIfRucSm&6 zZZ>ImWP~i6ZgQan2A#j3E%qnVai=$%ZEb(`oKArIrAXSHyz|^GxITQktuCnk-mth= zQGHpi{$8e1vg)hHPoIBx>Q*gNfmMH(_{zTw>+gBp{%-pRx+mlLv(~>p|4P(A->&7U zdW|I(g}pZZ99b)yf82;g1r1pAS?;6V$KUa~HJ$90jgIA9Ta|5eHVV#3;jrO1WgBRZ z+e6xU-un9Gb9E==>rEsRTOuW3&nE?Yp10_RyGPIEnRd&{?a3aA=#u`U$8=BlH?(0X zm@2aCdiog}`nQt!)6D+vYjx#Z5mwQim=Q}MQepe{{hUak;oURXx_!I2dd&K9UpQ>Z@8?&Rr!;YIt1YYeu zdj48Ys#=ba)#rl%gjQPX(pRBD^by`*t(T$e^mle&yxwyM&s96PUaiae0uB97rLSA$ z>>2}h*D3>SfMmmhwBCR99go~)2VlK=A4I58?`+gwY;C`OL>nvICRy6k_}m@V-hTAr z;j`A)|NKB6BQ<4oW`?q6z^`JA+(y4~W2%ky)W<*3^v_%JREcFXp`%)T!vgS*&7ePs zQhEvo{UI7e?PRTop3*&de-x&e3almHcr?7S#0aV>_1>9H84=Jhf?BLPPds`0TpbmC zYN?>oIoDNZK$i8u)qWIpsV!v@r5{9 zCd6f&avlV)dBNGd+nY{RI$75Lq)x;De>LL!BSp6?xn^`n0lcz(yqGI`BilU&_>h$s zqiMT8p=(*ZmCbOj>5%DPjA?dQ}{_(swo>H|T z{I+UVttbNC8BdO<{llaATJVY@;N8LCs6Fbc#hz6yuPA`K%DX!r&0FuLwEWWIxOK)| zxdgLn}tzi=k@E1Aj=2ep6m23_e`v;x?sI&QC zFmBKDI|5g=Il%z$st*4-zk}VH&5u<^TD9uPV32afjIPl<$|JIBX00fIJ2%l1E-qS3 zcMh!TrUV1L>o4_(lR4{`t?ouB!W7WZwXxvTm)!2s_XME5xr-|>{jG_6j%b0qW1stsa^2SHaI&`5B8 zFrE%Yx~^IsLxT6$bcAT$BnuM9UR&X-NtQV9z`3Oio}wSh4Fo zq3{YQ=ZsbdRoyXR?l;H%c-e-k;w&{uMlpj6~R@4nD`LYHJe-`#%oa7W%#ZCGrtQA~-@ z{8VUuvrYR(A3cA_cW>=}{Yu2ta2-mGuBJl!GokJ8wx@@tc&CrvP-3`_qeeW#Lj8_V zf4cqh>&NQiFH=sU6wT8XG-!P!wVw06^MzPi>NL)h1;G>vRq5aOl2S>zxqmY()ISk% zrYBiiFOFL?9+i6`AI-luYQVSU#io%yfmcMl6AYnu;Yq+qL1ebk9sh zCUkF$JhVqKd?K&Rv~;z~nJ2)YBwIHBCEeNJcam+WWz*E9+Qrtqd8-<OC=lj#JpaR1J+4e+JcgO{gMbbBKdlVGPvRv_x%CC_& zuRSDliS9SgX~(p_cw~ zZyv)02t`?6)126#mHaAQ3~OFzYAUqSF7tH=v`TTRShl{gT=ZuDE2M!?2OH zrtVxK0E?vmY1QR@YeohQHk88>AQa_z2vaht-IodmkchmI}ko zoHE1@h~l3q6Oy;*{UP5*&OM#4o~SP5J=q& zW~t&!!UZhUuS<1#!@6PS*#*~0NP17=a4OA_IDaJE*)&H+7~*m*iOb%$oK7-KaTlY) z9PmF)`IO(cAGK-{%2IWg5^67_Li=W-{hA&qRHfRm!cmM~KtbhhrjliT%iydOHLoOc z{uQUz9?X9lkK`P?VKH1q2NcBQs{6j%J|1M7xeSY@3LY_%&cDh`U!5K?pkH?K^PjS< z(uTEUWqE*rd~^QB?a1AF{Qbkn?wLzb5-k;J0Qe%G(I9jKLR?C+!H}iImvka5li|yM zHYO8ckcn+dq|e~%n%(15WcIBP`eG^xvwZ*PgQ$o8O<%%3(&G+xZ6GL z60NTopisOe;z(B!Y|H5pOSfow6g?Aqm*?X*z0ub8vlr??K1)sGg8D>DC_vvx(DbOQ zdNW5u+|3JgpBK3wXT>axJAfaV^tw8WW5_R8+~ zZhJ?X-N+q|0(XSue7N)S;p=Blo<5e{^(M)gpdfPByQlglcavq5tKFn|kPEqo-WOBP z3N~?f9%e%Y%@Mg<4>D?XtgJ*HPk zWKOm86Lk6p4B!_7{JA6>cBA-!Nzr{o3}9~p%V#)W(QP{N(PhiHE;HPn2lXt-+{>>RsDoy<`~-=rk5E2!*(WW$dpRdfVFAXISl`D@w2G^yY`1?b@I-EB3W)x;?d0&u9*=#n$OB|)TQlS&O7 z;KQJ4SFZjw88i_B(2$Tc#l4w?j35Yv;zO?y(Q{$193V}ng_X%mtJn7m30se-b5?=GHqpp#jhSelM72t za=(MX;?TP01MMcQs~lp7oZ~*s)3Zs=Nl>sKj?n|^Mvh?!z@b{;k$P@?lWL(NK_XNO zejm7~^P5x)0RwnQ*u9;nYByGsg!L4lL!H0(1MMTllvCQ)HmUOk3_@Wp$bGl-HBI8n zu2hq`pp*rfkcYngY6G2a2LU+bA^vPLd8i^mB6Lb<$dlh~)TC1qK@hkoi)m#DwgJLiSmY zHh*<9QOo{|8qtIZ$!lKnA?-TKlq~6|l_CfNzYGF&j(z6!AN6LPX@62mM#B|#9+xEJ z!&)*-xE)LwPw8A{f7Ht&YFYWsA}VN*y6&Z(OzEgzCS$3!wM<2V#H}Dvmnki^U#616 zAQaqIU+9{+P0}Fsv5(W&z4@!&d`bSWtiHm;f0^Jhx^@jmSC1Xf|g5A5DBq+ z)*J5krW=l35t<2eMY3_>0u;i*tx0{8w$Dx6nxG&OYD@pkchfe%@sTBAliD&TLh=)z zU4qyWk6N}s>6}xhLYiI5yCAnmqcL6V(v#beEnN{G9yOeowgGHIQD0+ zR^(T6c}UvU&Qx1K;fP}f!E&y7`6mzCgF*J9h%Luyg^0>DxXJmpEo0G811M-*3GsN+ zAGPI1V9Rt#o(7%+Iyd(m&8Kux)>QFr&69Q#NKimJ?2cdd=8LJ^yxz=55v4VryG#32 zG@5Bd6g2JxPx*ntH;*6wiOv^_L6T)gAWsj;gBntOZ$Vc#36*B4?m3$NdZeGgX-4-P z(C^YdbG|O9+n%?#7M*VE^VWmbKZ!^fs>2lG>ZtUCiVD$B#Mh%fix;m#+&%f$l@ygr zD>e-Hm_pH`S#%z=+dF742J=1o_tSA(-^}-~CVfwWcpVqoH>37&+$p_`x=DgDzS8sf+V<*y)R|yl6YF6%?|z;4)#h;K{-J~{GJRnqubPI z<9kyK<)A(9%1C*UDLSI?vT^`*n1fRi~rR zjIE=?Ea==;e*69p|0L@m!?>u{aSjHhJML$6;N$U2I;7ls@_O&Jniw(+jFgn7LF+@Q z^=#+i%jd72t2J`NKA}3f3JArUQgQd8%zlQ}wN8ssP`T<=o;+-Q@%sl4L{(y#d(;ZR zfd0`tx(1srmyMml7t`_k<2~wd3nfFV1duCD_yhgIiVESI_(}CuI`A>%3jl;*MT5{S z{4Rbq6Hzm4X8@tBG>b`f7e9R2JLpY&qfS1tVHjiqBGe=ial22KAWeIRTi^WY@eeKc zp55bDt(SC~OT^I7$OVpYSpoE;Y1Bb&?(iox9;@Twv%%iPrW*emYMi zrlE}}Xel7{?j?HRWk1?y@+To^sT1;Y;)=Z6iq~>PC?fwP-@khORg3-VefdS}^9S@x5wYezOo{c1Uw*M^MNfp{jU?6l#oz_|Vlya@R%k_&5|a(h~V^8!VBY1(mc^xNj(ZHeV`AWLSXF z1v@%s(Wg7=7Q|+wi<}A7|B&RCsLGpAc3wW_qh_zj56T3?O)E9!V~GIlxtiFcDh0#p zQ;jZxz-KSd#*0yR>)BT=x`B$W^rXqkoma9?Y#Tdz4n~har z*3s5GT_T-=q0Tj~Q0MnrMU89gg)EVEMCfH+rtaRWEUIgJIZ~l}Esf`MnWnb3yC#Oj zf(G~W{jXk8!$qgwx8?A{)^?S2Dqf9NcC30$Epfn_$EH=h_@&qExPxKyR)ol6!BLAy z#E$!Pl_FnVDzc=lovL%B!$FDL#7gPe<7dxR|Is$;uG0!YsBy2qQro3l?w)K@Lo6a^ ztHb(baX#cR47Som_iQs8-r*@y3kgRSm( zxb^tii#-}(V|hmi8WIl}R}AonW@e(_f3x@O>4rr$GZ%gKbeC?o-e^p}S4@cBg)8U> zHIjyw2oT|1Nrd1p@!QE_FyM3zi@>e@#XGigs}z3FVL_nuyA z*&?f7xDT>L55s!+Be1!3+( zgSij4dEJV-&0jxmJ)tx0v^L#(&MO{t*od!47cI_o^VXlJkH~y!h|HtcFX;Lwo^szt zrW5w}HgA7P5+?uAU~(vjbQ3eZ4?x=kc6M7YWWVBY^G26NVfKHun62s&9(U1HlFTlD zIR(q>bXPGR`8-T8ylQbv^Jq^FMNh%_T3s0bpADXWva`GM>KoM<{(1ABjyf>zpA5$B z(1j(>UOatFB~az!*5)mgVleX$Ml)%}{^1@~(}la=yQgETQiQ=aztXDL&Le*UTU2SM z;@4CRX8vCWzy9m%-9NRqpSXQ@GR)J@(Adyh8n+Zt6E{<*>MXFIQ6Jf-b(k6cyo zLLOS(-@M709*q6H!B|>uZPDq>-ACJejhOK6|J=N(N)3iua;*#c`qc|s(oyx*Ddbuy z1~a!z{zOidQ)vI=G@MyU!NmV!GqEsT^#7iUfodAbQhcbdxc#iI%XWXiE`#Rji0kp$Jt%Fz+7?J`JICx9Q(E@5w|72L6M^z#n$^)OGydpMr5-1%_G5 z^WHWs3Gck3MXZPN?!{9m&q51ET5{hWO}x-b|3i5N(kbM=N(kmzx)iT>zj{uu_OxEm z%*u|u#Pt-q6iN+-T6&nTcj>i;SJY2?$U8D=@6^L=J?|8Hm^G>}+~(n6cz!eCsd!kZ z!BETC$UWXfa}oSJULiZ2!q}*w2!k!14-QU)Rmu~-H4<(5DRe$Ez157Rtwxk-$y(~d ztKFHWVyx0z&DcNfKL2jFJV-tjW0f9^we*g7TuyFvhJyw#X>O4Ee56uhe+`29}}x#HGm@JyCh>w;BMGX7eeXzi+u$Oh)uCk)Vb-7|mU3SSEI&$KJLFd=Oh7GT*ev z5*e7}y6kB_3nlls)$Mf#ZMrmyjB15SOnA+(fM@dBQbCyM>h-dj<6&z=&5N+jFdkdc zHmJa$ET_e240`YT9jeVrKHF4Is}+NJztPc)A?S;i&!EC%hW>#@7Rx|M2S(lesqY`A z|MSj^)>rgD^8BjdNDcr_8h=zY2;E7)qCW9c>R-w=EyI2&Ffy$Ogxn4Mlr4GsXZ6^` z|8sJUjPRM1gF)sNe#SDipNtksMG_kJ=Yfz31stS4`f1SL-}>{@ov&IiU(=2bdQ|Zab0R@%o{PtFVbTHo9`}2$KJvmciNh}2SvBF;g z7E~60y*N4km*Kd(pj%1)*Z=mQs>0ej$)PJl#j-7@JEqWBR zKT;BgI3b)82rzi=e9J#fDI#Ds!YOiq0e{}%`(t6UA&Z4zIh;^nd(+2L*;TNbPT_Jo!+<|WcZnV%DG~{&!H69 zfdIa+@9$WZV=Rk9LO2Nr4EQtqKgr&iCH;PSAfbc+??UIrbbQcPcXa)?lgkHnC^?t_ zM^;5|4|=1nx>(NO4C<)6a1sv~@Mk)QGT#}TK|v&x5a4}4U(RLmFjVy}kY*C5q8=?q zZ$uWhP&tsKI!r|!w&zDHQ#p{NIt-|1I>WADT0A=JDq=Ur{VY!d3ZS96=P;7U5SVz5 zzwXH5WvCK-s0>RW0an$y5j>t`U;+VrxicONsM??ryENO-Pfvm>i3$mw>*>5RxBOs0#>OxcoD-C2CIIm(6!f6)JFrs`N5kD8X;>{-K_NxX98ni$P6Iw6WO61# zY8e0_LYdwD^evs%5Gtn39)p%-91=QIvrJ^K+*Gqnjun|8K%QqLUDPDZHgs}Bunf#7 zus`Tbk0-LbVQB<7kmNcHsAoE}x58RWbv=74iG%>}T!$_RRWsL?D$s?JR1d1a3p&js zGlT`~LP@X(0epoDE`hi5KB%SmBw-680ji}YZGCT|UCM`g~brI#(3G+!E-5^nPbD34JHoA6Z{o zpdo#`GObh8U2>6K47xnZ6&IpcW5_K%;#qR8HU>IDj>b?Bx*5Z4QRIfS=|CjslB*qJ zz!Ss*6@nkea1h+u=Z}Q!ZhcJ_gPUXn8{(hF&{DjW)ul`N)RD1*1zrGVd=e4LjNweq z7rfl8A6m?Z5x=T4f;I`fp&c)>aDBI7OQHzOsrAWpBHN5j`-J&0;+J(kp_?G+E(n=P zmz*+>m{qa}G+<1rq|kJmET9`KDUJ>CQc2+-v^u&u++azm1YkxfSGZqM$5Yf88_X4v z4n3ptxg0{C-Twm=pXIhscZ1H&#~$IOIRd<+)bUlTS-_Cq{rRAA$}8ei6gR z_=lggcvL04@Oooj5E3xu*Y&0x_4rW;Stge3?1`Y2eA0pn4Eii`GT-Pbb8q9WVFehn z#51MZV)LGX3JfaLpEUJEeLmI4*j)V?@i3uKWz9IfM2_8Dt>M`azn10(Oeup=W;~=PH-nw-kddkE~}x>{bj#Vv~F@ zy5!c?81f{&fGtV(r>7zbEF_cc!&ZwdyMFd@NJ!m?ZrSp8`v|cm(}*$La(4zOqPZ_9Pv`e`Z9kWMN(+E)Kg_CMFJ=sXi*Nyee2 z%tDuQ{ftv_3!*$N-{NEz^}+h06&IpOLrqUPy)P%}`VF;YLp-Tzvx&|1Yg&hdR5I`O zminr?;#+^-4O9r8?~XhCdYVW<%T%@xwk0NO0}AX9dbHzH&I22k3|t_=^%zjE`XA7y zL0UnRb}y;3s3$yaPmg~m0_Q4Qz(Va#2*9huqd854t}+FtLY#N8GsGRBgoUdA>ZFV4=!oeWVUoc3ql?VoolX+p@VX>t$ueTCxi^i zRM-TkfCZu9zS?cKu8;#l=yqkmVt&y2V{6uzJ=!HrH9WX9S``(N7ilC!Cq5>9xpmvH zk{bicgo-#Qob8Pka#h8!If=t4EMx z(l4qA9CSwWl{+ymkc2x7B5+Ai#BwJ0E=J4=AJ9e zp&0z&LkU9z2;lSd_k?zT2@e}GU!xlA!lW4$zKXW*hm6TyS5(QDvYE${yLpn4nTx;7HXGWfI|P;&=pOB=1Qt}eU>XUk)S3=&1D93ki>NQnsz{t zuLRj-dJL*ekDtc`xyGuria37L@BKv`PBKgc$j}9~2u8%NBtc|dYv^XBVe7=IZHkoq z6gPS~fhMRL`OpW=g#r>$I!}8-v$ok#S%hGM4;0wv`oqJct~B4!-1$(7>_7mY>8qZi zp%SJb3R%^d7wOCKG&@jX=mEumnjLVk_-ge-eWJ%uD5}6*vVRlK4OgG0CwXpHA5(pJ z)F1WK42z*;REV-(1xEZ5Rl0y_yqI>>DS-{BR$!=Js|h%BSdUp0Nzxy4{`_Hx}$MYkC zjHidc`}}vvCPnU+BLRN?P4D>Kcq;cC8Zt)+CaeZ3vdNAI^YQ1xY{Q8F4kN(e0DN&k zl|zT>2)SHk$S5(O;sXbTbAvIT02Y=T8UP8h%t* zKQz>0GIU9adMtcYFlP1}2omORWVv0kOAZ-ShcAjoIO2JB@Y7JvJQ~Uvhmm-O0C}F* zxAw>KoWCJiLNEaaO0YX^*;O^NDOkp4RKlLlj#fV#Go&Rq3Z~c|1@>8YFgtCT3~uHy zib{vXfxO65`}qk!L&1#!B|PGwaF&iZNKadgrZAGr5FoGkUdus$M2mK!Mlkf9)38#) zT>%uJkUB^E_o-|M5ks}(LrJ^`CE&N6sT|Xoz#K|}9SGp-!^L3Ur@I)a+ceYlnqg5& z1(#9^4b6{rAgY$A0?%&ATe9&H6_6&S-6{QDq5@0q>fg{Ylc8McS+aY+i4k4^`uDYd zSk{&m@sjQ0O-zUyu;PxkVxs#hOE&K}vB2@6{+U*%if!8KwuZgoSPdZhCwG~a!j|RE zEh!7@J}mFdghxW>16pNQGdhMU&jnKK^cLpxlQ)Oi#Em5heK1K5 zC|G=9GHB0v?NsCsLp6eMk`7pcryasN`in2cwA zIY6@{BnMJh#(;WmGNB8gSMC`5P?GCG0G|){lZiyM9p855~LE_w^uDKJo7AVKvQP|y9i7*mcG z#u}X9Ln*EUMevmFAQ;Qa%>eeH1UP^I{<%7NW$3`Dt2>i(Ru`sp#*k+Vg#!$=B*IBc z0fVjQY4_Ju*TII`Ap}!!j{=)a_v;v|o9@FYdVm3cc{<<{IOyq(J%)xm2`WVrBy>KQ zE=KD7wIN%(K$7h+kvgMUV_78`s4kG8dJL%N=?2bePu0kV94*iy$YG(0}vwT3NLY3vYva*M#1@ko78&#o1O@g zt0aaFv^R-E76cqHwSLi{$(m0ol!h}1;7hZ`epqV|iE6PvhLi&F<0$gMY%yxDd_SHG zq|l6k>E~w0!+o`cZ%I)XN^(62;0pwvxA)Z?jiINCa2oDmz@O1q>sm_Wv78uW1b7## zbEs*pWa)L_V5~A2$7P{Fo}SUdvdADNPje{EW)Q#^$TOq%Xe39-22UfLfaAl6KR<6z zdEdS;+)%HEU<&S0F#Y1ZH=s#--2xlD9s^2##6jW0yf<`@_z3eY&I#cZKfr)LPos@t zUrkY4oa2KjxJQ9~Haj+JXe2m{qSD!0Ag{QuXNw8%&Rg9h1@snRkoYu}*xEmy_xKbN z-C8rCRR|$z*oaY#4J0!-O!!!s;BSQ~8DLlkUT%Oy*T}m*)#=C!G~_AAzn{OOZT7<1 zrX26Xsq7PAz+dza;pjDWOOZX|NeBuk1@LLiq-V4Ha4q?swp>VVdbsi&Bl|MP8|q#k zD#H>8-Z(#hAS0o33qR)8tq?WCpl3ig62Pne`qr!}bpdR)nH#^>q}F8JFrue&L~;opxFww=$hZ`=7)wUxI&*pV;VL?F`G^WqdrnB`d@vus>B(Kg zhUqL9NXEfoK)v98(EmwxC@t+1V<=qCW*G1v%;~hGWLu2pKoaaQpk8#;eY&Amlv_)y z#~cor(;W^9mz@ILCr+Dng@z?jS;Gg-RRR(^XXdLfrBM*cO_tKm(IbI#H9D{~tuBKoM4?{Gr#-9zT`zlh_P$i4NMWHQ+h1$8r zbf8CdVk2Ie;N}JqDRg=oKhgZ$CY`dmDp0d&`P}49QyvGu|Kjy=JmgZRi^1gragH z0P&wM|)Vhc@mw&C?G*#-`Tglk=(sz7<+LTfpiccFT86{`3ZBm zFT_xvAe=zs!^+}!ZMBqVu$aRrEJ0xL`FFkc8+s^06l=qvE(DX{fCBr{yWal(bo@>a z;5YxCa4zfqp{k?rL0SNy`vU!#xc6^Y3Pd{6dE? z+~Rm2Ou_>S>>Gi-70>OY^Sp+`jWK+3Vl;k6dq)PmeHUui<2Qvnp$!do3|)ZKujo44_q1Vi@^Sfq~W_O?Cf^Q%W9bF7(ek%>5+ zd*99WzZgo64<+(n00Df4UZWS58`dlM0sGWHi~#REf2sE?8H!2>rnwFU_I3PdNUu+5 z4a20V3SQFM0y@*2ECz!$G(+&BCeYBl%ZAd)gI;gz@t`-P%N6$M-y)TMI5{U*5ZVyK z5C>H0R*-=eHyPl!V$ZgE?`b!+u)xsAn;g4fS)3&ldiOKE(w)n@Cr8{Q3pUh0%+={E zT2Gb@Lmsn^@=!J3ZYZcA2)P6Ysr&dL zeK#eC_TGgLM3y)7W5CgZ5(?Q5>5?9La+|h)(PfM7sa86}e>9d8B8HI&W1M0g4}!PS z9~86QIr!vNZ#h3aw&25 zq_pxCrvG+wF&Ao@1)(#PHADvd;$*O@bD03##diOovqgy^ORZrP=K}f+77?JH(NAbK zFp^$?uW)J;SOXjpfcqeSJo?MkojB|CtH&R2wrLL$zYET771g}zQX<1?F$Q>VW+d2s zfqz3c638x zk|c=SV}tlBf1ZYBj}CbdE0he4g@{%G2e~`^LwX)+>W0cKKFTy&xjQDrGMJR24SFrQ zwT)ho9ML#aCYPlmC39nTqwVDq2C3^VR{ZTjzc=Vg6~on1GC~Ol0yp>NCXxPSnJC8yY@i#cULXr z4ge$-x8qTV?t!C9xixRk-pFJ$bkG9eA2~2`jYdL^3PSj5=8lf?!8O@;FfRQf-oN_1^d7CI`cvIEZV7kuI)Lfi=IZw}y{{ z$pU4V_FLT?F9UmSD|nx^Is^VQ97m{n`I6;NxUBuGA z5YReU(5?nR&+- z*DFcGR%gUzyRrEj$8tV_-AGDmXCtSS%yXR zlN?YP00G!>KedBS+VX01?uI3=d}1yHCM(*+)0}nb^k@04Oo;rML8ur#@ZjXaX?0fk+ z(!#>hl1D9d^Hi!o1Q)7RMs_o^u5=fqS7;;ZrBgWc<9K5}E=>uqHQuO@P`iSZeAiaX z6NaUO`s%{bpb=X={W-sV<<1BV%t@RvhD;W`ZkY58a?K9!!9ML+$$&)G;Ris1@D6EXYajR8m(L< zfkEf8yYG*B%XB}y$Ox7xAHFIucC^DE%mMsn1)p?=4``-LNLcc8SpqZ&-H1Yi_Pb2S z;;f<$V34Vt^;YgoZ0s!J0Dd*b;q9SXO1Dgt79-$D5V!(?{eD}{3t1-LN_++~uw_pd~Abmg!bE<~4G^r(LB{)c37gDOm zx2z)7>JY0aGE`fK))8SAL}E#&arUgu=hZe+(kogfM3u>dc9$xGjR;jV2*vE|zM`5y z=rpZTA`CJy3-CAe|3al{>VO3i5tqd#64ZE{zL@aFcF?ZW~Qlx3c5n-7O7s0INXetw7QD(nA z>wWpfR{M{C=(=k#R;{2yc-N?Btb&SvX?-&)fu&XUfB)si;!?2+DjSOnsno^g^9P%Y zOJrqn`TW7=;u2Yz%9mekE-sN(P}y8uzWkytT{c)=_9H8c%OC%+xwu3YRIY~dT1XVb zh@nvM0|@+Eg713zqTCzChqWS}1|`I#;H+jbQK^oY_>VUglaz*-d=z3#lVziBd)jU7 z$BdrNLKs$S3a%?am+2O~xxTLQ?EPRSomb^4^qS}z)@lmT&6$X8LA4OswN+JIZ|>7` z0krVidBf{qqxMh^q71`Z2KbgXBOz*6`8U0T1Af&WW=U zO$T@`#k3loALU7*HFbyvo$De#Kg#8LL+>*N&!a=IvWhx*zMcxfpil4=LwRh_Kah88Hm?algU+28>nUA=?k-AHaWbqaMTYcTN`&6M z_*?qc_b4+jT3Y6EeJYvIycIPUBg8-LZW&f{BSFTn;z8>w{gO1c{C`9iwDeVdV2C6j z&8M$OVgvjDO89j7{+#UR|E$h;frI@i2z*M5 zV>&^$YDUvN!wLlWmHnR{&_RzOUBImtnhd8nIjm3g6aw@${+jEq0^D$cmw+c2;4knG zvV%T`o#g`T06^a4N1J)XxrKiShZ{-)!g;sEzwnRP8@r27=&;IkHhI;`KxYPDx>d>Idx#I^TCHLH zRwEZ+P^r9Fsw|p&5j5yj`H#Oj%CC-Sp8pac)Gkou2ifZbhSou~Y!L(S#m-^B*(oUw z=o3B?0KE~RG^EY$)G%~mayCGaxLry3=X&X=_R6I)i$SYmNg;l`u+^ozym$wQY=11p zUkE7{gl@VRxi9Jdx&CzZqomSnf&`HdGm+L})>bvAVE|Jv6?hQ5RtaWrZ5py~LC0Z$ zzra7pF84HaZUoo?fV@Iq&1qJ2)TFriuqYN42Joxl2Zc*@3@h3hJ>2~kyGxgnB z=%ZF4e^dQagJ~C`EM-l=4g!aq=^V*Dr>oE7G6A^Dbr&ZX=F4?eIcU#j>MnyzogtmS z+G=;y3mFzSxR5?)RFKN<_?djn*)UV?ZBpc;=n~jGQ{($aHZw%qOrLGQW=8=UHq*M+ z%K13+GeZEr91@T|+knlE0`x_X)>*@FFgQySocCNs|FR`OtE=&&#PW z!?llrma5i~VS)1`S?8CGgeNVnh<8*f7(kj|*eKGBuXl%pIMbeZuPiG%%WO&>hXjUr z+^lrG1sl=<3_71yI`RIS_Mj9s!@0sjexRroxXaaHV_I)+LLFSF->BkF>kj$`Qp@y0 zF)0J9pz?0Y7w?En-&iHEpyFynDp&M=GM$?%m1oQ3LLMK~s`}i6T8yM|(Qy37Rb~E8Y1*pTaX7wx)L)BPGaIA0$}FQuRU) zJJPejTStQ#U4_}29`1{jHDx3q_@#&vu%I@3yJ58o_xLqk z0PEFe@-SC(mqLwzwQ9%xA2%B}2Igw?>1Go!0YdG3D1IV7h6w>ZE9?t#j06>KSE^}w zE*5ZFClV@_rPPWNN?MVM$b48(&2C0FmGCH2Co67AFX_?)4{~O5GrA6o_);}K3iq*X z`KuphTkZ5lz_k7N;pCm`1zd>#av9h|e#m~9-O^#WpsRqXvqN0lK?CR!FQd>+D&z;c zmLmL3a}TtbCv)EmlRH3zJpL}x;RTv7h*t1yuYM-b)Tl**Rt6Dj)S-;OT@qcx^?L~@ z6ZIPKBebcMN9_?k=o0>1y_83a7EY;9{Wwvb(u=-4Vc43{fPX4e*fd2_tE|Zco3Q zl+iqhU4z)9-+7}hlQ50C3OWG=iR-v+^@ujyc2o{u5|=LB#^YX_`Q84aKbZ5M!EH4C z!gs`i2cgTI>G6cF4Cnt9iDKxA_@Lfh2?gjY{`=vZS$iPamIQaegdH$|-|5WW(jH8@ zxy-%2Ko?yP)fFX{SrB4)i4qJ_*I9}t>}bCYZ8KH#+?F-OR3+s=;3f+UD5;5#z?gL@o<>Xs-tOXOP1gi#us0uFM{ zVTGy5RUM{gByV)wv&dTypS<3Exc9@0$HIQgyr&QElUuW3{Jo&^XfSx#9=#q7#_jIz zSY8uj=?>*unh3@FmEzaE`9t2U@_hdXY%5R?;8y`>sruy@qA}@@9|3!BTH?N%YX!hn^5?nm<=suwjff$ zpo8@JZfCbB)GU2c8kDYw7=70tnX467T&N@e9rC@k)9Faw-qS2+R4l064RPdes2UG* z;vy9-vwV5v6cBo-?S{SKaI8-KH>>SHg2L4hBl?^U1BjSd*0J)K1Q7U$fjjG^GGVhA zfCL4^fT|t+(pa+?1Q7VhS$wg-C8R74)olTt`EmQI`fg?rlMlk(>3bawb$i3}vSJ#c=kvqjpzWCOz`f zlOdsrUdg-43F$;?vtCI8gU$__yPfrT%9h^FqUUI2x>@?gX?WigPd{NIv~Ec)_gYsP zDNDMg?1Gwn0Ziz1=2Lk%%#vcuv8_^UgseQXYXpiI*Hk;7&)Vg?fMmhs+Leo>Bd0XY7EYDi@WSo?Rmgd@SpN`mU zJO_CyVyRQ}kS-mU>r|WYtf$s#4#w|P?_?92o(fH!nsj1C7S2tirh`IJdv?Mn%{HEz zo?5F(cVeA_rlZzr&L*@)b>s2$)H+RC`8b6f`tl?0v4(=-?HOX z%ej8O4Nxdv5AocmyM6gCTalEO84Dl7v_lY4(6|f@{q}}s9A4lv2J8<5yVIukUg+fC zA#XRQ-7+E`_Wnj1j|>UTtI%|JYX~Jvk3Nr4$AiE}UE(6*m)ulcvSjfE?}!8&MTFQf zkq5P#h>iPp(pLL4EdAX=j4Bv(kkeR>9w3z!RkNHHQP6a=yr7#nHc~G{ z6f{sT^g2g!5~*3e;4omLjM9xP@6_?3W@R*hz{lu~-fE?bg=iP0$YqvMcb*Ux3o3{O z?Kje!)0@R2fWW^J%KiaOgvfrNW&Smff#-mZJajNv(0fcHxp%u+iH|5~piHq#)nIzsNVlm;buj=md?7wRlvGtWg7G?2IGi`lWf1hZM* z3ZMdiGbNDt3<4h|@TfgF$dkQU39ML9LF-5-GJVHFE{iv79TOOIkQ)3|Up|}LEHwhC z$d|J*Yw(k|6+%tIvTu5FYmH_0IWHF=AqGeZKH^;H<26f(1O^@CEB95_9cq@ZDi&0( z1%L53vyN;%n)wSPDBObr?KB_FXBpFeWM2`Xh+2#8>C0Q)X0=vCK?8oH zJjR>tMOEL-Zy-Sdv3S#`EseTiZx)M)(i(&D=rD^$GmVIX26|W7+()zCRdKe%HBRo# ztbVP&SwCCy5EGP0_w7(Wq1~)RRxGHXFEnaTR)1CnwVykm;p;Nb0Uh-_y*@i>%R<1Hu@zd7!Vu;~LwjGv};(66h5ZH~z{7 zl(f-Ud8b)Pa~QCZ_ebL&`>yjVYP@E7zhXfp=Kb+hJ>%7E96;w>i32+N=-imb>4!9( zoAuEJ4qE7=yDw=OXkX0~HtVCOG$?%(O2ni+>J7H`$8&n+sOA0;Nn|-c=SzqOr44NX z4Ry5c{wMsVbuMk${jprS;+A#iz|9vTRtX5**?1|9fp z)_&WYZ^UOHK>_Uw=e*wL=6(bYT1X%Ma&vP(DGf^Kt+H zpo0<}x>e~=9qzI3)k(V&ITNbUe|?%@qX}I3ZgWHbMHW<||M(ldJ*Qbee-2bpgLZF; zdTk92MnMBTWlA7baW?BIdk*L^EsiI>Hs2B~qR=ocA`2?0VG8TZ&BjA&O&PIR&}!_w z^{yjV7MjJPVj&i2U)(oJqgk&BBq*Szbf3Ek1CbofTFL|l9hCdf^Q5_H3J# z`j)SziDL|nc(~WfLPG{lLhUpeaTHzh-ZqhqNnkj$; zgILN+pn8~0SUSLscAHS9{&_k zG@PW40ZTp=U`T(Q1{t>BP-#cz72<}8iWsmYuF#Mdc{kiMBy`u!yI?}_YIlFQ)uoxA z{CyY0aF+x7tRpCZU*Yc$M~j?omuVFw{)#)cSQmGLXm5@5?9sF=Grbi%3VulSo zU`vuXq0>ge;9i0C}&~QXzaN5q`R}`#9IMq*RS&13BU>^?DQ*c4QZWU&Z|<%mZ_%)s-qe-tU(*!KsSv)3IF9%qBD)wmWe6;?izh+g zI(|cwQS=~*TpKowIuKk)fCZ7559xFywej7}Wefp?+!=js*6J@oFafxm{=OV~t)=Df z_K*Y2C0(rAJ3VqD#3;e}))+dOO1H+#4St4-hy#a|NGX7y=kMwNMLv3P^5nn3a(DnK z_c$P38PFT>+A+Fm53{ozq z)2%k|XmwNVH(oWTR}{c+unpv<&YPBhPF%#nFkvI&AV84#4gJL5*t6B1c8=)P^Oidv z>ALjc6QTO5zMw_a@7fc(oa-PK;u8f-)=+lYr)vdI&l(7rtof-w$!-|jsBa)pu!gR; zbN3WZDU*-*G;V7=ahIEJ$~W}_u;xF-#NLuWrklxVDX>G=QxuK*bMx$Tq7H2PZP_-u z-YCv>dG`r-eZLvY3M#PcS0%f6ogK+3>{)V8VdT^lw8~S04m0-nuMAU8HOS+^ne4Q^O6}sF+gleh7zsNOBJ)&|&mk^lPU(Dy$Z@;P)49lo4Zp6nfj8H@qm7=zj3xJkMo>*+ zD>EVTJvd78nNUS$H=HNA}2#XO^x^~f8R@H!8)l?V#5X+1tRB1 z9}M5Da%*h_oaBIjg>otO(;nZslKX!Xu}|5sA?fcNv`3xe7WM3?@!U%P5V>)UHa%rZ z0a%l?2;#@Q=s+7m)Z>C{vIGm;ZJP10&gDS23%iV_3o0tD_zQ=$-Dk!>^`qJsNkOP}BNq zp&#S5EE)!eU;8KlOLBW8yHU9c2)V0>UAMQtkefs;>vyGSc@hL}3W3&aDmwv&9m4~+@hPKTkS!=EfZ}?BZ)+l7*~AcM->^;ALTy?W{9L) zGA>_99BjxJV$REbvXpZS>kmoe!r7XOddKaZz>+*g+dE*VnF*hg66`}mm> zfE}Nf?bxR~aK8LPB*Ky*+v;WnKCJk-Y{h6imQ&eFrpi{g!O>wsjUTALMmO}Go*x1q zRs=urIf33ZyxQFIe+e7R1tO4=3{hl5|GrO$@Ef;STu?Wch+6fO4DAqiewVgQn|)?m z^ad2axU*3EewM5w$UIPylIT|-CU}_ew?6vSZ}!LCV_JwE(T0~`mPm#rlVK~FQjmd3 zf3HpAdynaHn#DdHSE0=dCA0p=$qlTg7ClrW1=D`vAwyadrq|efpJTs2qCQkUvudt9 zC{{Dd`iVWYeAp2(t^6I$Ycy=YPO`v}p&eQfp`G|r zL=~{A?94SzO?(9y(sxrwyWQ|v8ZVhpGWofpLR6%#>oyE$hkZHCvu^4pSjdXF4&QJ@ zTl1ep;;tLlidqzPZ9$fi*A=a(^`coe-iWBk#lKFolCz1w=Esrwzgf0gvL<56R%Hcv zKoqIur!u+MEm8su>6@t^+}yCpVoUZand0q<5WAgwGUh zS*8Tr?uZby0@T*WH4IIVVB~gy3e8W%@1-Mz-wo5%0#%R}UXCg9YY|LZP)G{H5J~_~ zvLi^qAGbwd+C-w0z;JDVK;-%X3dIk_&*`MI|6ca(49%{<p?vv(p2nd^zW9HIn&B*q59*_rP&Ar)?(z|#MrcP-=sqoD ztZ%iaC^XB-bBj%^_7tG6@GMR7EZ&j@sA|z$y{|1`khsmCc7~I!&Y;((`xo1E)>9;_ zp*aS^Cv1TSvCH@+2?`NQvl+NjggAiTNZ|ZWIc2xRVd#${yjJiq$Xw??>ALy_y+}S7 zt9|K)Rp=^s)JbWOxl{d)|HbphBY8B?&{#Ul~&#*b6A{68t5MnN^ ze6*dIjG19Qa=BD>0`jBehvV@Zw>{0xambdzu#}&G_!{5jPsK$X@2Q`-j=kEiV`&Ft zc2iD0VqHKXn&eLBUQx={$(^1CnY&fo`m=-nbT;P>V97Ey5b;?`>LhKyjb(h>Q3{nG&00H#c z!N}bYz-Iz9+;CDCp?!i#6eO7t4F&Zt6W;{?5ak3QCl2k>5&^bTPE$9uB+)czsS6z2Gg0}zBVolatu-MM`!MWhx zQSnbtgY6$FnJ!-+OZRoDyFx8BcT^||CR|A0Nu+s9JI>y$u(Z9ksudD~w=2QHbW!Mp z875#Vgo>UEI=4^lTOscEmfSbgJB6<$Rv;2?Cr`r(Xb z2?ssu2Ge$Eb@QKPBvuzSg)Ior$Mg1}HJ;Lb3o=3YbRA)ZEeMBe{BRFlnwaYdD=dVQ z3V;=5KYN`Dz|$ae>9FHggXx-6;Y!2p6%^9tmV}T}F@2NzX*DVcpk5@U!ZgR{C(n2# zrm86oW**R))1PGPuo^P}VCNNL@(%aTc%j}5G+fJ-m|8J3Ip6-fI$3V~y&Y`!Q7M>i z=w~R?1qv~^7Ien@f1xZVbG2b8uOvVL{YIeEofo}nZ>0E!@vq`noT9>%Ce}r%X{g{h zP(bdXTSAomtEaJNfDG@R8ls~OfBCTy#OHs*z z!evrej0!cRVR0kzcSL~uAy;m*30(_FjrjrP#ojbOShb|vSv&t$$A$2D`oRV+!v7U2hH)T* zBPxPb5}{j)<<6fqL>vnuza&%m{M|8ao2Ms=X|EY&b`dkfRwv*Pv!!ep zaSx%`2oB+G5ZZ=e4k(#+f`sG^{J0zbA;fGM#l=mCMHpl_L%N@JM(j<@iZlpafkk{Zn@As9Ws#?k0|C#4*!`sBFI)M_ z6~M|w_&PRy9avKlupkmsWDqmpCQ_uLK`7?3K{-D+&1DG=Qa6w~1GqGeQquw&VUVd@ z7mHM?(=;;=A`L<@KJlAWr)hj53^Fl3gvm4#xXig;U#>9y$m03JC<{i;m3yBdSbGPgHUp0@O>6 z+Rw0-Ucbb82Ds;$*j86}8iu%TijD8dtQ^4`=34wiCJauI8!@knH7WAcDDm5PkpR0b@>=CY3s zZR9D-tBm9`y!t zqgI1Dl@S1*IqJO^329h%(RDNtfV<6=jcZ`rQ+l|DUVKw-Fm&-9!dD0d7?du%pA{4g zodl&2ARu3GU+bFL;1`8W>*UKEpN1V>7u5SBfxz0U?&}5J%${9+Wa!c;cEo`G5wDlg zwz@tokZid_F5$qsY!?kjFH=y6OdT2GKUXKg3=3^4YbL$QYxG17UD8A^p^WAawqJ-m zZ)m6x+L?|&0t)tioP6G!(y|60cY2V&{$*GJ21(0lETnHCzzaTM{Up1U#V|kwK}aSz zNPUDK?$NQi2jqfilkllwPd`9HF{eWKa({Su)Sc2BMr~QO8uEDv8k8yw*f;vL;kMoR zaY0w$x3b;NhSq_@2f6}5;x7Nh?WpmG=?mAs80IB}PELc^b^aaC^R?*OnT6WKX6V)k znUn*8tNaTZTGC@Qhke<-G_=$LUr_*eslgx576%9Y_iE$ts;MDBkf6-u?Vqa$R1HJ< z%z9=3>^wghw>RSXlmh|hdCsC#6RTy}RXtx(0H<1VvPBJ7DchKeSyBoT4Dc>tr#;%( zPWK6{UCaas5|=mz^bMtesE-W&B$2KG0jw*%zR3FG+i0hqP{?TzyF${`LE-_c`(o`rdosl8`t11ljZI5V+_Vjp*MhoSd&Ttt{#Zxxa;9&@t#E{~J z!eZ(!AiNS*1?SUL$Y*)JQ-rz=ddrRB3X6)BiDqcTl=>^MlqUV$U2FWDkv@*HWd8t; zqg0?;bc=u2W+Z(A_d~84 z2K2s3cH+)3%~4e_s$$5=kWU&Y_aok1S4f9-8Ys<$G|gC`9*aMj(0)m}@l9kx!@1>( zREjvq31EopZ0Ji~UGIABY?$L=Nah9CNoeuf#D=|)fFb_(mE(L8PzB(9zO+@M`U6d67$+@sqv z#;j}f} zSpgxJx|6R2psSR!M+(+(XNrWRaOZe9%tp8CxDz~xeGJF5ugCNx;G8BBxTR1#h%9}_ znk=KSkp8G7&AC<9ZkCCglaxIb!q*aEU2R*|Z)(&S1&Qm41UJ5-%{44=Be*UOjs=ml zD7aQ3du)4+qEG=LmllPCg)ioMh_OadNRg0Cb0o0uXZ0^)pNT<0o{$``OQ&AzD zy1751IJ=aP73vypPLYsITf-qefv(S&t$51F;OTR zgEj5PNFoH&T4gwum!7Oqt1t=@Y1W{cded1WMM5%7uflxB8tD~i5K7a_f0fmnYou2~ zgkb7S|21FWv9WTNA|V;e8DCt-H!-Ty&rQo&f-6bQjz=A;Y(yKhh7@p+ij_2(5x&E? zNk}&BLKLu&j$I}C&AWDgp4~;)w5yczAQp>4f95XVQkT>;EeaJ4Lb3DEpScdH@M6=> z16UA=)fIg~C)0#R)9NaqAd#d_>;np&=BZQhAod9w7B(XEV~g3)GWk_%VoF?y-><}J z5s>CR{VPagdBo6gArv^G-`AfhC}fk2lFte>&nTV+k)+Zp`m=dW5^<19GED3oZ79Q3 zJcuP3CVm+$N|!I1XPBG|@ubeA-ULl))?}IHb!LVwNc+y&#-%eXq~nZPe>UvVbFXq+ zMbjCx2!l-GTrYD9F=Xo#ETq#I=DVfVh@po;CTWU7RVRu`^QH(i2qh(wyDRSYUm?}J z3a@w&i?N#Z4@d3nJ)fqrs%Q|pifWd|bLuuy!`^BH7Im~IWdbge!eLDXJP87^^TyFBt!fkJnV_f&o=x=zpi3ATMUQo zDP1lD@3!cAKee=Jc)O|sDj(PJVamr<$hTk6E9rFk%GfP~s!L-m%d2%x&%h<|FHcKc zgCTyYKcgCV&iBxZ9BtUUi|$-F)0%)1IK7aTkFuJ;BM9)b{OFpn*|2j|+sp_6?=a9` zuh{N%7Q;n$y`-f8M263T@y`Sa!RwVEJ&D<1z#HL8%hMopFOeA!c_$gKQ_HCsOKnoC zmO>%=AIqYxcm4ShKS|5y(s=DfB;fak_RnHPt^%`e3A6IU#g-}kB^G!f#M1Q5ZjH0_ zx9XMn4!V-eF|C#hm#!t_Xpp&GxvopsiM~713on)l#JU(&M9AH(Ui=%GWaJuTu&*2qlG|Zh##wc)5C$ zgWiemJk>EipaU|6$J$2w{9Y+QngpxQ>b4l;($zj1daRLugNlBa2 z`T5P3w2BD1t5sf{_hbpP%yQLbL}o!EDa>@e0qvEd&Ye1Mx=vwEnUK8rm)Ur<#m~8j z`q0ovZ~Ade8iejvU(Ln`^OBgM)d56_r9=pxq30V!Tnwj)RiBaxz}?|RFL!2z z-gWPF-sESI3|-2K;UZA|nIKDo{3^+Y1uG;3Z&v2e2%7&8?lV-26+lG~JV@QHemQ9W zbeu=ckQFL~603-iyXNR+~Prww|@>TQ3?0(F1cZ2wn%Lxs= z+(HZ#5OKL4e(E<+c4VK)Fk4noiYRE@2tVr5N~^mBPh>JfD^(DwSWvkM6~9G`rXz%m zVSc$JQ^BAEj}>pfYv!?tg2vTgir@Ar;$awl7vd2>;NKB^e#Bkh+iofPzG$Sy#LIvO zwGV?DrGB^P9{lnjhh#R57E$BVBM!m-FKtOCe}j zs|u*pog|oJp?$5=&Q28>Ceq7t;usf7l>aFmCVVU6)T~4$FvR3muw^u$=k!L0*-kw} zkE9Trlm;c_iV?r;!PjAn2sO(U6$>he4;^qR=Dud}Noi0*e9Ah_;#0Apaw&M1stMsQ z!#Vgux-bP~Ar-j8Em{|O+I!m@>^3++0Y<303P8l+Hh#L_p7lEq$D@P3d@jV) z?05m8mhvD*&5r*i-Ppqmrr))vBZ{i@pkd$&j1bgJh<=1$Q*}v^+v@f^^Fllg@1ZJ? zRL|gb`n*x_)btZL^r`K{m=5}3ruxdK|?-0LVesIK%4#a8@8rq zr6dtpSuCjAq;`WfjfE#cfNExMM(=&6H_49onVR83JSrN5Vl7G?w$0X}0th+kb$YY- z+wtK`x(RjKeL@>%$5T0eGwjX+O62hp7vj;W{zr#u6|bpND;k9E!L<0*Lq5_ZsuI(n zp^$_M3CSyv%(|eaQCC68fqrYHmz>BJnsW5qk9N$01?6+*@`!xAhM zGLi_vmM7eNtnL{BV8SD1h(Ska9?_{Iav~G_u$i%Amo$s!Q z6l_}cf(4PQgP(@&#uqfZz&?iv4CvS050ZP8(;cIhlEl=CpMaq7p;MqsSllEk-Rd*p z^Yv=Ghh?5jDiwfGyyz6&ea>lY3=0ymJy%^ z-_l191h#>19V6$i?FHiMH0$*GatdhmG;;`8>wQbl1jsAw8&DYmDit@%%AN7#m^V)g z_ZrrJRMw3c&@TkKENX`OGXq!k5B#9+S!v=2Lcmh0)yNOs-XT5JDXlfk3o2_t0oz;5 z56TJuu5PhIfa-lqdyxcmb>A`pOm8WDB5#pc-BO1DHCXyy?tW-sDG|W*bwcm`WcYg# z|JCaR&j8nZ;D8Qo3he40a0pPZxg0|KrfE>C-)S}smsI|$IN*D491O;4=3#Yjcm}w^ z8+71$U2iY~)L`wDJTI^ftaS`r2I9N4j?P zQo#f;y{$*bld-I7R=3qN!1c8wor|Pa`;%VEY!RKcn6~ZT=E2UcCj17|^{( zct5zTCs+4~XK3z7b#nW4EqPS;Jr{)`#m`rJ0?$fB`&Zes$N-naC!>e}VlGr+y< z>bpT+f6l`twpvEXm6+R@9OPl#R1=2&HIK0dUdNE0#u*N zCS&3qReyl*|+Y~Moa+i){x#i;q#$0-jm=?ii+ei%<5JI zKlPLYA@+;vr-uuAs<6d(#8chb8_lwF7KSDJil&5%a2WAX70mxG8XzKWSj?+HMg58k z={r>jFU^h@s)iM|icwT`NC;l5e$1U$A!S%XsX{9$2ZKoBPFrKAbhL~IB4AnKYa3V$IA&J%kqear$QAADu~f@ zdK=&oU5P`Rmt>)979)X!*3A&3*Nc9)5G6~Q%cGRQpmROwaGlLJ@(9Nnc10IbD59W& zxbPRW&#$MRt!);U1Xj{<*JjCjqq$CiK?gpgt8iKiN}mn*ETW)sCpeZXNS82KW;1NL zDILLAVqrgT|8 zEz5Q_`07+$!hfgCZ_H;9?7vpoPan$&Sk?uL5pX1}zz=HbcCVQNNKiluzu7-horPv8 z>^Y#rL$tB>jou~L%zluda5tm@FZ#F21;Wyw&67d_p$C7_RqQHDHS?F}fQ}qXpKd0{ z1`zm2588l3{hm$aSdg^Bf=;k%4>e11kf12iyCpUzTu zXvo5wx3{O$w%qw=ctS%%d`(y+L->vk^P;bY3x>VDno-nsV8~|i{kA<=$n3GH_(I2roQ|jRw$`nO?&Vlv&i5NK zCs%<%|9Oc)G&%OJHzh~$6V3WAp#9C8mg&LB|FXo$Zf`)TS!ZQu^H%19Ff+?(iQD<| zR*|%u%4u2y#(b3dY_gzR#rW2ebdJmLAc+PQGkhn~VL*5Hl!KLj-;hORB^dTe$uP=Z z*}+7^;R}r_<{35zd>HYu4#_{FB^SL#-SEVbCe_*y@G#+5Iv|^nCXUE0hWCXuuhtMD z0&_mo!O2{{8*N7CaHn!@Xm3OLL@L0LtPIf`=X8Bku{>|83@M3PQ>c$fQ@*_pU9O`~ zx@^i6B>_{i+`_*T37J;6o60Sj2+a9gom*(nEuClX_{sRZkNLxfvP?k+CS?_#`0dN~ zyWFZxRd{73vtfA`^|TC=UDoA^m|Jx!i6~9VI{pGXv zh~DXwwdI@B$oh4{F#8|$4@3<4b%CSlctnTVW4!B zcz)EUM~v02U=L1?4+nECCBg%Ek3ZlxIow0hDje80Ouh?#0SCDY{6jj)AiHFruNVOb z0P>d6bk60R_sHvJ@1g?C4z`GnV4!sDzo4X5`X7|xCX;yqs^A{J-H>QXs_{VJm{ z0l2d~9kyo1a|i%$&|g!!I%rA{!_&rA^(wsKG)@ffoDu&5t*Aq*8uIn|wR9YS3PQ8LVSMuc`<1VZg@{AtS#258%iPAbFlb%Yf3<^c)CJMqUYszL^| z`*NrvXecL`<^sdL>wpzU(m6Tx}DhAh54hEIfk8U?}xBpgYt>ec83B@#ChdrgW zPP`lpDrss_ExqB?s)*1NvC=tztynP(DmP=Iwpx8&y_A)Pq4|mcoht&atdvz7>nVwP zBTcD(Ea&OyXPt6Y5fQU{(FNqgB!8xghMPemC39rLgrDu$mnSSsn>IXr+CQ z{zzBA>+}UY4LWHXP2bR^=_*p|w9yd=H4!U%`Ce95YsJdZpd)f0Z39+9Yvl=#gOVu6 zbewp@<@Mcm$J*<-C#^EfD_Z8N?1F0~P+*&%02A$MvS*@^6&K7M(ng=FhJ#<_r zHlBvqNFCiYt*65@=%ghzHY1xVsSyaZv>l{1g$<9cDkAh!FXqkQI$o5mU>dJ-Be+h# zxgwV0l{bOw#7nk-S7J|8AJsPOe2QUZFP2G&N5b#Q8R#|mL<0Y6w1IY&%J$o^uPO#s z5nvP)s`AsG&!;rL*9YjDx84a5YE>QQ2fSkbvUwdBU{I-gSoDRP&JsG!dsq<%rK)_o zts>9mvBu{47_^|X`0ZaSr7&YAqSRaoG{op~%rw0pg@j>$ZVW2(8-YNtQU;R+LZf-g zL>!c=c&JC&n#Y4cpjW98X2e7^nx_V6&`Dw;7n#1c5x`!pDK(t zr$8tuR4EZ=yhJpbrvzxwsb)pu+?h~nJ}Xl3pq0eQkAH;H8gUA=f{q`PY)U84pp)bR z8juK)HS!swN(u{kpVB%Cgo47gSh=}5F%b#F8L1drR*jwojsKswH}7)vxXwJ~BWodR z->bMvq-?9(7Stjs+1+#c%pq$b%dX9pMNyVLgFynwOsD|7AeO31o-^OTe@=hjxi=!7 zh`15)BJUeOwNJNL2_SyYy|M2Rr901)?X5L2Dnx@$=(W()mGGp#*TN+5Lo08m#)L$D zEAL=XiM&Yev)RE5B7q;}+VqhA4tXj*tskYg9chS&+M%2~8a#<&Y9%|7JH!-`z>m^< z)t@Jq%IuKd76z3lJ!tSEqH2fqU=$QWUzi7Wd+iHHK&XYj5GDzQPxXBvkAqSab2K~> zDm%m+qo5G_Dap~d`hE(5Ko6r+-d9hrah}k7x5AD3(P>PCUdYdd=C?jSC#`Q3XVRG+ z;w<#-f)9nJz21kUWe>CGb{{s~{yt5%jn%KB3nbDe)MaT`qP{MRdlC^p=}7FrkNOcI z)suI}>QkLSdF;>}rYIrx)-wtGP?JzKFPoD3n#7=>5aOSvE%)RBlX5=ISMG_=q!M4= z>{Fitai1ZS>q3{IzFa3ghR`!{bCM#a>U$=j<*}7E>GiP{x9GtSHwU>VKR|;YVRS&> zB-d2bj}9yg8lhyQjd*=r#clYH=|Ke%Jr(;Ci4e?P^}f6N^!fdJ-#&gOxQYvX8n>5~ z{u>w|U*u2k|LNh2gBM@E`1U}s6&F&)?1%#TC8j@oaQEqx7Z0C&d;gxmE3O)h@i7Mc z^On!b3A|&xJbd67Ae(r3_~78-*H6BDl(0L-OGE+vg0=hL#nWfc61d{RJsB&2fPIeH z{2|#c;#;woIwk`lxG(NMf4n0X2ylN+qI7;HIijf8q#YS+!^gzIA>HRM-0w!T;X!yEiI6Wjo6Wq4gltLX43Av5#1Oynk?xcZuY2%)8|T2LRJp znO*bR(Ml5@M6O@V#j#6z4pAO-?^eG=5U@?!)7xD93}3u9+%fGP0o1E(F`eY;^OIox z+-yy=9LhpUf(o}6;k0mUeYf@^FhDl3Ld$)#w^&I@ zQ28mVY~+=v|LyEECKSp}z}nED{mjxn6Pe?8U2&iJ633;3k5|f>=x(LMhKGe*hRr9k zWOOUT4v;ZrG*&Rf#fY4zj7)MzMz=f#0xU&*%E{{P@foJ55udMijZXr=O3&OiK40bW z`D*9*WI}A|QQo|EOL+%Km}yhknHjf*9HS(YHin&e?Yf$vtI28M`% z5v}ydV_6-owE!@=W}*kCUkXFJ)l4Qhcw9dDgT-1NK*dn>4NTOqzw{s3q;2_ z^$d`CWN@^yNAyG-bQ>9XgyfnAO4a~fxefuY$+0VTLs;7}4_E-0T>DYirTdXk3WwIt zh6mBcDiL2D$ z6COmKIiN+O{vmEei#u!GW)1`f{L7Bdtz$pSVv5VoqWr)Dfdhp*PQl(`NT)we#`Fwp zc146{OIXNyEL8wPllzPOlQyw#{l%076&|_rcc!yCA58nJiigmX_>(LsaScF9!`E^$ zty>M?0AO;hZ9kIhp51C~5EAP6c&Gk9Q4Il9=l?j_SZmpO{fa`MGB2B{1`N9w~>QW95DyT#N)#bKDQiMC_ zHU@wR|5IppOJgd}PE%AbmJ@p1D(QW8o1Km+u-WBcnuMX-EktJMoP!-BC68BWe&|lN zjGUa-KsDq-9kkjtS1)FwN3;9 zo8y5Vbzdi0xLZ6p0GK?=dpViP>7s6Ad<_(A$&l_+WO(%0XTOxJHMV&)I!lw|uWl1BA%_`aJTAM-(Oklk3Ib`1SuemO2>3$DPwpmX18NJULlq>l{&~HG=&Sq0o~&lsmGHIo z7g+FvyY42v{?a7#S(>fkrP|AYfcHL33-x2I4`4yWS0&V=n+?+^zG|xy4=c)Wob9E? zVi^O=WT@*q-J6VuLB^-da-6HwrVLmR@hP*S{!3OAYg5L3GO5~*g#bcM zc$F=Y?&6gg1^Rk;Mbqzci)L*#X-V+IcPz}uqa{7jA+mIBYaiht6{3uNNiQ$1jxxX? z!vj(-GTDxRZUa(}0M{hNWJCi}GrEW;qPk7((cCm3VDk`ak-qNJZOCJSgU5qB{y^?4 z>o&-<;RTUrQAFDB;Une@Y!gaj4Sbur)3$db0x##yb~f`#?MQb0GAexS=Wp>7i^5k4#onY>3$ja-H9 zn64%~EaqvD1%D#vt-4KvIDlYo=;`5|m=++IuW5}*R-qm3v;Z)9@?v2=l7@Dhv;zTD zu5Yp=>Q>)~6yiFUKghbl-RfMAfSsI|_(SP?x4dM-gLuslk7=AvPf^i@+1VC1UB?|o zcu6}D1PVHwXX#D&CTUK)f^7FlgQOTFa%$By=Id zc=>7|SCBP#5`}$wHYHLX6hm6k8D1a1ai6Frtzs6GLR!(c`$;Pgf<{Oy`YJ?k>`qNu z2^h4vPPcJ;IvG!8f2>=b9#cT)HlG$HM%g&KTbu6@;BxDVSD+bTg#_uq7<#v5?BM?ik0JDa-o2pjm%rl?uv@s6^*lJ4sUbee28Jp%nx21l~{a#t2 zbS?D`0j^8C<*u9E$Y#gL$!QMmoGXYN=V2cgDYzmoVy-J2yKSPQh)6fl(MPGJoy%Kn zr}IA_Fm(1`ZlW{(^UR0rRCKh}0+0(#2{s?e!Fk78%n@>`oJOgkh8YwSuSO|3d)F~u zfq=C>UgdDQB3|VNc{9J140J1EAUe?KQ;QBH?$DBP1Vl#~eY~b;8Y|*8KGbOHE`Ad@ z>k4(OVLSsV#`84U;zGB18nK*U;943rt$mT@5y)2}SKIvx`^cHdO?N@NRxHd?1#OX=+Y> zGn>3grcuAq+{_XnMLkRP{?R-mZRVuwd}a&Urk0$rRLpF;@J1?QLFJtLhPHdkd11wR zZ$ZFdz`o#qKVC5tf4`wy6~><>si3%Z zvY-;vpafr5>(BU{i^$7$zJLUUOYmj=*_w{*%KAvLwpnrnC}^CAMwT9mJr*Sa!vP&0 z81vJlsPn+1pz+hi=&-ktU28>E%AssQv%!J8WN^)D-Jj7#dP$dE6DNWjaUk$B7NEN* zM21mR)xuy758ycmDsJfEkoEGD1e_^ zOolI~W4hRDCMO&;^`i}H^F@RK`+UTfqZm!jD8s|8zp$Loxr>CXv)o`(%lX57SZ+C> zU$XJCZkj3Gi8he}iUq_tcog}82cfI+FOSFbCRrR%+!G!XGA)OM-1Yd!&4POM>4hI( zpWTay8JVDmLh{<;F4vrJ|6mLQRB9c!MgWzN8c^s53d!J^5Tu9TyFS`Ut?6nN0O8MIE< zC(XQnNRxp>d5q_QqJ3`B6HI8{$TT;TWIIlM30^o!gM{MkRMAZ@$bzhx&F~yqke#Tf zLiZ#8d-n@!`ljRAnBKx%PZ~LVd9rIPCv4b|`M#t(fmf;e&c1spbZ@1;Q@xqVYPx<~ zvlgIG{jf!~pO5|@?;7Dw+o54Ws9EXc*El_SS6}0S2AxaZ(^bAMrs)ZmWd8YQ{qcxq z^OJI4U%N^sG((En?P>tE=)~t3;Tk2ww2;L_}7-7Y3Dk!5{C-3(JDWkJHx}6^n*Pbb%}v z0k_*Zeo*Pkf_B%<*L0^BA5qEfI@MHZ7GM)MgTd^pkZrgBt&VJVza9-qe)MJ!_^eT~Hh25eM*#5q!9om%wPE zq=nBYNc^1c{K;=IS1c%VIBPfnK%V2Tc-=6)PDl~gf(iz}@9?+zfloypBe3$Y=lR9! zk-7Ym<`(2czoy7gSQ`m31oj3rO}K~>Q-x+oj!yThR-xlPt5@mO6gO|_j_e(|6sgSy$%!V-JW4>PQU-?zyRtYPP7jxK9&RwQ6K=vOO;ch4P9=pw=X$0? z8y|#}rth;&ig{4G@cpKtI*lH6$#zyKDrFbgcqBpKUlSkG6Frl;ytY!2Laize2QBzg zxcI-$m*o0?_+mfan=b+fU#{ByQ@ukvk45)6P0~~FiVlS%n8Yd2pmf1~M;BtI7tASQ ztsvq+;9nGc*=tmESXu=_&lhn;dn20t#Z^p$FV~zk$Aj6dm@JCiTyRL>pmpABZIV~s z6di-22y;M3oYCqC|MrmfS&2HPE`P-|C|!adbXbC>s5;N1mRtb}8aLdJrp+-QUZkDb@x*i8%#@biaNR=CwZwFZR;4Xi#fbbP4b|2+1bVaIXqn_>n@7XYQe9- zf(mK{{w5s_)YS?gK>_ueHAiIbx_Zrlz>njJzDi!TtB)tkf(pE#3zE{EMs;2|5cub; zSG4P6EawaqdmCKPxPdVkuu<}9FUY=1zDGd=`Dk^rIXX(VV%6m%kf3nIxk+6YO6ART zASa>}{k}pxMKI{Vlg*s&qFu_~ew`;ELE)w|PVGl9OVJA#Mb905I87-i(nB8M|2u z0;uO4l^5|vji=brAKA)Sg8=tDb14C7!YNtDQ;f)CuxEh$bNV)?Dz@E4R2x1fE;h@g zKJG@e;X&l|UyXSgU&Lv*^mhO-+3)OZqIxtyrj zzA15GGvsw1Hq-Hyv3X+ngyyr;$AvXD4;Zeb7Kn)74}#u;CXz;dCuyE@70LMM>?J$T zN^}ck=->2VhO}U}guGBztkQUjRF+I=Uh}`^Jx_;xd|XZ(XzJQ>6h}a)1rPa4o|T!> zNg`S8)O#qI(ELz%=r#MJ@pLki0~p0htcS_S71BV%f{?GGpV8Vwe|?%X5B2$~M27yS z-e~iy&5|xxqI))MdFoHc^W)^c)Pw5my+r`l$Q(z-Y`;0q0ikwB_zs_`p^}}YhdX&J zuuy)#s9cEcf7y$+14I3`Q0Gdte@MOEq^v1+TX;^M;bSUvL!CXLQ-Vu=U+;}vx2dnQ zVZHxN&<-A(-|!V# zc>`7NaRP?zOJveGAxus3(Y_At)-ByZ=odA^lweT}07yl9vE&^~%dy)a($6FmJF-A=wRjN;Nty$|_sQN0%|xUNn+OpIcvlK!P)LMx>j z29THO2J?Un z6+R%ek-#6xy6{c^IZYkV$`-ZHROn?PR8(Q0NGXYgS6A?3p29vHPn*{waTJ9E0HGFW z5W0-tnXl5dRmGA4!sj{+gUmJjY~8#Z(=m%|wN6n8fe=bD4`M#@?3X9Wrj**q3p5Db zfJyeN&2q}y@I*=}ngT!yet`(Vi!0hxKU~uum{*G?*}|n*d2ykgkRU%if9Vp||)eRe&5Q@sC#J3>u&$*vuk)v3HEYJ-GY{ZTIoybIW zwmT5`Kcm(vd*E1cSUzb(KmqpL>SRpkEc4q~G*M!M+WZ({zPXt{23o)&!hTsJjO$vYsLvT4J*7>PKM;r7#J zAtzZ>32A}~IAg%}meYryiL6~|x#56*3GqUoW}_rcAD|F5KtbbbqR|}wMfjmX*q{tlk@gDrxYB2jNP+hC!7y=q|^7`C(AdxZ+ZUCQM%T^U;c?`;sS01cT0d zPKOs7%pqwySZ+@>$fX>`%(f%NMWsZA^6f~O)~x7_;=#0^4LB8ZV=cOp3DrB1D)qqW zSbNc3#e8pzYyySuP51K&Z;l)D%@t(dT*k4cN0ldPN`&Gyr^qi(BWXoxQ0$W|_$YAD zqE^RLli52kbv3NPfc=qUhbL(GdH|nIg-eS0>w-&dWLWTFYJo^&VSr-hYMTKP4E+nx zpJla;rvH>@nWY7Rf5Y*ex~m3+Uy4=hf?o*`dcW{`Z80BDQ7g_*7p2?Su;Sy~3K{*e z5sG>8?M6s6Y(Vef^~ogJ*izSfu$(}rx?wQw4QRidT%Og?ZCG2I#~jcvuk5E($J620 zS+WwU*n8>1#|nW}P_e%k*|J*2v7mC^*|HeWi_=1(E~YF8^xL4D2NC%p5NhW*WrUKZ zrOVUAKC&1yp?VFf>l3pE`ErsBt2On1K`_Qa>t>=we`a_2YFf8;IS`=;@0J7FMOli@ zI`0GyTGyR-G(haXrq+~}OOE7%xMq$g_f7JkhH^#U?yXz}7E};_ng`dTuoz zos5>f*C)wDgJ#%cgIaQgfyEaiHfe|wsY!=2o=H%+w4!H@$LrqR#|K~cAKiZ!Cx-Ozk^%JC@DO4E84bs}D?T6U@Bj%tPnwOb+ftS$U)da_@$ z-o3>=AfXxMNY>2!)3n{Ka>Bbvi9g?8-uE>4bR)zg-EFdN4)fPwG!sTew_+glqCCm9 zRza>hmqff)HNGZyKPAAb86MQ`xVStStoozPU`i_uG$%b-y!wNX)J#a{@mYXE7cJ(= zx=G%j(@c33qztD-mwoSgdf0P;{5LtGos%Ql5Z`3QsxJQ}KzMV_r4fB?%K~YN)X@z5 z@+cEHXhpuU*19ns3bktAVj%R;F4KtyS^=V%6jF8Va$prz=Ich@Z@q(xVYR8q%d>V< z33q6T7+dTy#taL-pnQ^pCvu{&t^`?5iN25W$@EY@(Kn)Lr=%Yf&#Bk-jdCV@LiXQz10~%zV5n=!ULj##u8g=D>D*BrpX!)n>x-N;+dee{c2ulqM%WHwW1HC}p1){>{a{LQ1hY z9wh5aI~LNH5WtNtg`TGBauSK28L4{zK7q)1&i63(`AL&Q?r)gKM)+T{GWgfCPh)^6 zbhqH)?`;GO>vW^RB0apS>GqTy&!CX?DeQki@lE6ERJb;U3s^|sUah9Rd-tFBhvpn# z(|>mVvH7=1YE9!#92?zjKp_bke!dOzJ4qISkUY;`KL7H`y*>>bg^Z$R;jrE_4*~k3 zN9Vh2HHANeTMY2Q^6~K=EN2MNH@xMG)p#>%3fqJ=meU}1fqk@J({^i7bTm6GW48hY@DCVHb2@Yg&`ehG8x)hHQ}cw5 z)Y4SBu~sV-(kAWrS9ZoRj!NNV*R*RvLiQ?qY|a_d;kLrWi)My9_A^02#+0_#%fX^w z=nZx)Z7~M|=eYFs4*CxtJboeKOH-e6P+Or!5RlJ<{P^iTIWMotZyDN9GWNk&kN!oN zUBxz(oPGD3=X+o?C1>AzxDPf{z`lU^KDhVvsf25quPnkXCZ|7m_~5CCmO8q@fbR3k z!J{YpNKdAK9pdHL)8{ge*I8~bpa;vJ-~U=fOI=Q63fRH&gQs_8wA5K{FrWv^zxzf; zOP%FR0oz*6d&;w&*xfDn7|@O7lOauCoiws5rKok&;U(pJkAlEuE=rRXeX;5t&Bg;c zYo(bD4&imXZk= z+BY*l>Gb=tyvt0p#r`a3EfuOaa@F*_rKY!crYJ+9DRNGF$YaNx!#L<%kA0)n*GX27 zY33KVxaOHqjPvSZMKhc7`S0EGsslnR_HJSBh@|(LMbX&JyTB|de!m&a={Qz0(%DTh zFrgUN;dylKR)t>mZixn-P3+@^wiGl{z zDEtLo^0DYm=;|{wpEvlO$Rny6#Zw}=jJj3z@U5s46{@#Nz7BsUWi>N)A<9~vWh`{x zZ_(`!fA^V)XwC5eowh+kzr}BSk3IdwKA58 zX;7kRT;mOI;1?3A=@t_-mM|EwsVD8(v?FRQ&u?fJk8>Z)(P+bh3QZXql|nRWc0J@0 z4g@~Z0!JljBeIC7y0nOCP`X67Y|}nNeu9~Em)u^X8KZ{aHci6c1_zxRvCheu*4Z;P z&GU3tBxE}r?@S0)@fVCQbc^s5((0j$bzP-<#uMnqFN|%!g zHBH?^5GPckLF}3pbC-r6EoqOZTz}P6*HTKdAY{E7jSn|;7I!*rhMbM1RA;X;8pJ*^ zUfFFw)A8|OcuG(Fj+)o2BRZN)uiB+&GBpD@;pBES%(!68psK>et4Kl3l8I3C6u>Vt zoHn%#HuNw@c2}#W35@vy1c`Ty1oMUMibBr;eeN?B`a*w|zdNL3MlTn%nK-vx)0K+p z2@1BG=;8LwY$i(+yleCb5F{?KC+-U2ECDoY?Xep%2Lk6=VEkrCov0((iPF@NG2KIe zzUa{7MViC73NjzMOvEeF^iQ*OmmgIfFPF_yDryGkNnEy2A%3SUo>qmLlg-;hn){47Vtgf&(;#N*ck}hpkS_FInLJ_d3EufHq0Lne%l?yzrcL#=AD>2?{bFQ!%D( z-ba&T(-F1*?4OwTdH67+sQ8|#`hpIJ)@UmoX522CLCgL^Uo)xZ-D%fnEQGm7ky}W= zkX;$g4lobesvOSnB~j1UK63Zx?L>V}M+|UAi((+VX+meeknLZ!P=cjbbIxR&B z0mYoN4{hA=e_0lMxaB{0%WHHvj9$f%NmZ~{zqBFD;6<5MLI5-(7fh< z&Es%Nr1T0wMF+87R*LWwE5X&nikUiPZ9mm~hSD6WbzoewYNK!bO&4o`3HPsh@rbIIE?dzr~7 z+B_dTb;rOW6}tGpS@qV#5sf8fjjCys_}u^s?nERDA{S|Ij}tjck3T4SAqbsl7!)KZ zwt~cFC3{x&ejH7i1(7R3gmQNF;EgJe6{8C@2vMB`Z}?(qv)(7Nvtn;P5J{{B9>gNA zs8h5@uRw#)$8>Ug-J?AQeEn9B4>$}bG!&x|?O-z9B=-@j+84q(_qKy!!LOwS%VU~V zq)kq|V{5#m3Wff+pRbI(ID1;da0{kvQGiX<=10aKPLBDyKf1YPNY*3|!6`-vErw)R zs8d}n)o0^brmJcJi)lf+07CJ$P^4AnA-zzO?JiWcfv!YF}&QN-DIeuPS^Eze?IMRbQjUVF875yVtaCE-LE%c+FI3|83$mt#tM6ivYYp zPrDvyi9TH|QmjF=#(f(f_WWJJo-mo*V$eZ#l}h)2ki$g*SS0JT;mKfrOgqY6%Xyyq zIxPZ1F{xk7p3pvT#OaI7utWV4BcYnay!puyy@u5v9C1U&d!XrvHmy|0iyJ${e7gWF z`bg#l6JRo1OljZ9n%a0_h+?9xEl*}#=qF{v{BGXRqtNz=VtPAbIZq>GhqBSihdr{# zV`gfo4VbS7Z~A6Ggou#(9!~)b3w~Kh5obXuGE}n)<(kq&MuLVFNlk5j>g2o6OmU@O zXn`dZ%1Il{KPqfJ*r5%Mh|o-G12@%78#mkJ2j(x*~s)u-9)A-%vs!$TT1(=!zG=ABS}THT8|D#Kxk%t6OP zO3x`jsVvm%b5I0?;(Nk(iekEnn9fTdZjwiARda>K$d*j#%36beW4E00OO)$T+MBMg zHA-aIAlrzx{z`ot5fh;){ia{glnBj5j8`Xpx<+G@6sLN>OJvv})7<^CpkANmk_p|! z_f_bh*)s;RqrQXh1u|@qY0j@eyFrvFV)bbr6QL=4gVSa(qRan=F9$R_;nF92LiN4D z0vHxZugycEhh#%hLN!akbyPhMM9EzuPF6_y1Znco(4wGO`+nUDJG^P6Ns zSGH+xd`A686GODueP3-_i3}U0?=(p@He9F^uOe(-ow?XxPepgY=D90^JuMjSd-><7iq^oOk`hTm)ssRp_`U>_ZwPI z+q@~p!7k;!2!|ytF);mMCLh(=Lkt)ubmi=pPpH{oSoFVscB_bn6)p8Zv7@txdcbp` z-xB*jOeb=K(H>&oFrh1ZFw0rGO{~5LV_DFV^Igjs9gC5(PWAI$4hAJT8l+1v`c$oP zwIJ&9`q5xagr@8z^Dk)RO&59C9T-BmzL%U~p`NrMq`sL?XwzTf@(yiCjD)Hjf3b0N zqVS|oXPF1dIIw>Fl~SRdr?Jsq{~)4zw=@P3n*U9-SF7Q2vRL;|##6eVq&Ha68w6`? zzb|e4`H$++h(-xE{=M49MsC;m?yZ=ffV^W01c$Ge(P-a&5f6$It?YCEH@gSYpG!m6(b7 zut)A3C>T$jxqccu^*aZ)2*9HMx+T{e57?qYEd6m$nLO2iUBBI87uUINJWi`^lWCu} zYKkQM_dOX`6oQ4@(vr3jzJ`s$vVEnc5P(Ipy`#ClewZkg|I5Mf`0QgvGzvVlgc@ z(2fD>lG(lG^t7+YdjGa3I}0+fPRL@?nq6ReY2v+gV$mt2}OtS~~5rqZ;F&Cf5v&F`MkPas8TM1cah&Gs7Jd!GvZy z>@CMaufF#wkWiJm$o#}c`ik}&Bpu)ST$FR6FYA6Y8?-pJH=YW&>+62Wgf5-=d$Z;T z8+)ViD4qRKrKt<f_6xpm5VyDZRmvH)R&KyK0X7oY1;5-;3*Zllwmf6r#6- z=+IsFYd;YlYUZrHj?H%d&jbtMYeASFmE|)Xay>vZdFw?I%|L|Q^+?W~CCYA=($rq9 zdI1T+$UoksImt@EF8&1~ zjhT>)Qj*&9(%o&lq-2DI;ML$GeVgBTrs+DhIp~29i@jUZF3Ns(gmfqG0uqAfX-n0Z z)-R~WNv=IpTwH0w+Oii@z`kO>r(1f+56VC3E)Gq-$=DzuP*AxlRWd&`E0`@Zh6SA) zxlTX1fkxA7-y+30sKs7!E}>weO0M+^Ea=2ux$pMnRfL1uyEYCpZxna>n~+gfFbr_7 znQys{vRNd%W?R#5k|~qGpmfeE&5V3J0jjtj)dUSL99sy;7tPmZ`80zo?x;=Rfdjs^ zoNnDnvr>1<9Ry@+IlUs=tobEbkx#o@9ys9Jdc=R8=Fjf+h(JjdTFpJO9k1k6Rd*GE zg35K1PVrZ%JDNVL%&I93S~lMNn+Ow_k!_<_S_wrD2?kA#U0xwaHvl_CZqGd zY1w>K(Jcn_%SPTsTPC2mBQG&OCPBm2>(Mu9*6LobCom|zW4%e^NpW3t>INe~wY@9; zMQV8W-W4cd+dR4cftp!S<95%JmI1CQ&yzLHKA01xrm)L9FElg3x^x_l*OlXU5ybP?l0c%F{QIGyV9c85T5MhO8gz2nch!B@l zh<*%FK8#CmtMg@)WEo9x7jExU>8%^KRa6I>^R8!$Ixv)dv#_F*$Z@SmcLyeIs6xM#%w;h2eYs12 z#x3D-GH$9YcWr3c;Ope{hxP!ANQBBdxrGc1&Y3HSdk+upKYbwNG+jHsz1TH>=AV`V z^fjQLJbm)w{`1EVpM3d9NNC20xkOBZ)MZE&bu>f7T*spza@&Z|c|qz_nhR8luR>`$ z4=lzUTOZ)Bl$z_(D`RGfp>%I_y>3c{?gj5JHy9%2v@x1HX;4tO;uY`@p`w|HMC8e+ z^f)NlyvXLzZcrCSXldrZ%UTf-YB$aN`XSAH)9vo#0o_}fKV+#{1fyfoV?(jt`9B2| zqPK!5Ehf@$*W9&Dt}@r;5-*deN-AWp=dx>g*he$hf0ia83xfPC!(h$V*om~%o+kShKo* zmk5oJ@a{_R&U~9VryZMh@D7G-HG z0_6&tah9hbca@E>khNvsc}q1-GGVH1r5qrOYfFUKqahCX)DooEdoNyHi+)0 zYkI`3znTvgv};bze<+6DvCWx(k__<+>-8zWn>5Uy5YP<1DX7yb!yObT=H(FC*RgQ@Z(2+OOH_S4efwf(mM*(fF8h zmQ07b+6W{lAPq+2=|J{w>(an-Kt~HiH$|@p^P!BSx)#Wzpn(>2lxCv37Sv$CMy)qW z`bc%P9#cRLR=<|B&9zn&25iJS-2#xe$aS&qQ6-J6HLlkXZ82&hK0DORhto;YMXIZb zVj8?btC`$CTi0q51YFb-+%L-e6LqyjU_k}71b>qb%j#+gkTQj4nRO&96&wi)$g@1+ z-cx?^C}>=FbvA!tI`o;4W?m<+wbx)}$R#*3c z1O?=tW==1_$_vrza*qRnkFicOe>vXASjTceN6l$Ir6)XBvJtDRIU^W!uDM=}`D!_) zd54u8S7~;VPkZnc6T zK>;-gDJR#G)XkPy4(L988(DQ!rY})I_UYU3<57*Aai~mRprGM%{YG?4D|7wE+m3v* zq$?8WDk}l6OI46y`3+a2E@|0;`YlU4I21yfg}A&_jl=pkGOgtMak=x_+g>fbD%Cc45d_=|g})2R%O$UnG@ZUC+;fz(<*|ALmtIU73h! zP(tsFzN3p+Y0~>RS<|ZPoe3PY&~KtIH`JycZjO$U{!CrJN%EkEQpn%RT?%!zmgRu{ zo~wiD)7Q;%IvO_gipqp8MM>s@G<$mUinv6Da#Viah{~n9{JimXK*W{vx8mASxhKu6n{>|U*F8wmogw>n$KuC&^4 zKu6x?d&ctVkh;7ZSWrRP=4xK#*t)W9FkpKRicLtR2c88Lq{4bayPSjzb*W%EprhZu zZg|OPAN_WapnzV3*^VX$@^!ri2Lj)FU>cOYc;HA-KrLZwh&}ZYBN%j$SGk)Y61pz0 z8VuOCUCSN1Aarx!GCe)2*?yk4+c^`esF{+kNL|fD5O9&FHVeMeR>W0Zo^l}YQRZGx zMoD+QuFP2u=;#r?rYjel*K{p-He#yl5lWs@+x+@J(c5+3=T6o2b_EW;`IuYMy~HA6 zDr3%YKu7=cHGj&_57|Sh*-h1T{m&8=$|##}=-oi!R$bXNn3R3GAGX1O{r>ut7HWI< zPU(#GWO$d3xU9aUyY}*zx;0T|PWQQ!QZ%>HOzD!zLs~MB9@R)m8l*0gSA3P} zlkw{pWL!nOg^N%n2@2<&!Z1Blr718LiJZn#1_Sna$EL>t2688}rjp6wmIFHHTb86f z7UoS{5jmP^*j&J)pm8PAurJsP70r}QS;fJib0gBBe~$Ynbd`Y2RGOh%St|lU@4D0D z2aj29crs45gK3(!Tu$l<0U_&E>f{BuXq$R zZaXjOSsz}(vT>Td39jk7<^JVNsNQs{AsO?-y_!Qdxn@d);vIUWV@P{+sY^HL9Zu{` zM6?W&6mdmD#voIP#2-j9#IMIc8B(Y6I6X(EIM^FAGF=aagTn+7*>qNK&bJXvXs2t4Y@yXezT`LDLA;|gFyr;^i_Z~N+&2)U1w#uZ-_KM@9 z9)xIZ!RE@NMhMH!QN418h4O80>iErq&T)@N4+fLzW+^-2y2Q0kN|#eAbZ>dx$(+u4 zOsC%r=A&t{6s0RNCD{ZD)eBygx7vyPtLPs2z|uv7f&y1N)}R^PhfV{9I5-S=zhnR(hEGeJ;>HDuYPA4#n2?n9)i~+A z?xU<5Cmi199}($xeC)tf$gmb78#)wons>zZPl%&BP1geG@5?60k6 z!B1TWu3ge0p%|J5em+seXnoUQP*Aw!ed3QF9tjP_9E%SwBhbO15^6*K;#>2Os!-B( z3`_AA0ikwdv!wH5hdr8&T#fDj_P_7mX^A1$yZ93WXDn227FFfQQE^9;ptQ?Qz3x>J z;`>dLEGlS9LF`zrX_@fz!(5MU%4=r*!_#z+i>9hqNXK|sajRg(V!Dy3thj4PU|L-7 z8!(iwiy)hM9^;y(eY@MBLi0{Z)0!0zuQYADN?3X&LUqo^W59r>#PX8MLG9)Ps-Bg z_sJS=iCf=Pw_t<7!-h0J(2w{YnRIS#KlveoLmw4A@&o;(YI@@A%m^}+-=h!WVo854>6N_6 z_?2vCG~-lBDrLi%4h!DdZ0JUAUd$4y{rTA!08&6J;sG(U&{lS1CXM3x&1N#gpy*W z$Oo261_gzXSNLPPzMZjKM*N(#Gra7k%2}C|uGM)_^E! z86@;517>>t^*}zrpcsHgm^Mv=g>LL8=GFJ;r$<8X677Gc4|{i~^myFABv(~vswErT z`j()eaT6NNd`?Tn&&|>2S4;u8<0!eV)`EbvYuipmNP6;lFOi%hQMR zqb7Am)91*ux4=Q`POQ~lb7+QqEs7Ef-7B$fUbqxXzJ+{lJd|~#h)eTTl4v``C2;Tw zIsAY|3u%(o<#3RofO2{;UgvRES57?&8b}#@k;GSB%0w{eT%ZJ8(RgRn`zn1?T<3`m zjP6T>g2HvL@R)878yt@_AzhEGBoq^&$9)U?+h=t7^8x!NDsRou3Iyp^;6dxd*Q;ZC z0QjhPV)q8FXlY|G>eIXsHy=V)v9rv>*0brS{*NLV27H8{*{Ov-4Z-MS1X7|@&Urp>A7i-yr(IN0e8Uq zo8?5!0@td)qVqh-O`w`CSSb~9Dumw?!nD`?q*>5vJpV^{ zt?75RDoZS+ZwqO+a*;*1rrBy0j-inCg~LS3imz_z({>X&GR|-$^ z1aINP7@6%>CzB((>zUTj`V;Cihy>Uv+ofR0`_z9$2N(EschCJJId@x|`UNbcKX@~n z_D0Q&Cw=Zcef*H$0Ol^UDRf;u2g}4i{wRVWe*?dw+d(I6M!tTosB}|^(3fNgzn_LN z!gin_+*V|}6xA;8_%OnIzt~KtJ9`g^kjIBMULowg7hmt@Jy7lPiTA%mykVMYd;U{2 zIsgh2+Ubam4>=qymX620`!@H#;D6t3W?T|PZus-rtC;~t(=QA#U~f{p4$S%cK#0wG zwrqyf9#Q@Hkj^qJH)dW!7t=V%-dk8tWlX0@$)t^awG+#epQa0@XPG+-@#jmr$i3MnT|uAz3F@x9lVWtT!_K2 z|5=Wy?9+$zR?=oPrnwC>!0Yq%5y`gEAKpSlYVCkKf5-xu4q^5w+?iOnL|$F}@ALx( zzyZ^vH6?Dj>e0rI!Mb;!4~x4Vc)U+WF}zxwT7>Vzwv%CiDLV3J&-n1p@~&C06fvck z(>lWffrbg!IJs7XH$5}YWNi_;ib+HuyyqzoVi)jBqa$P#^VJ9}WGo2+-W&6AAsuVI ziFpva1%t?4o}QsRv>K+*%qlVtFqR>_OUaP_8-(#cz`arCzRW(&3NMpZK{+Plq}ygl zQ3qz3jw%zpS>}|`fChIWu@yUu;ovq~0vraIL5(nAGcP2{6J4!yR$O>C59`~K)?3`jsR3eZYGHQz?Hx>Jrv{Xp`_=n_7<`-v2XR^DL3BcW;KWGZuZ7-#J zwT35?WIMLvn52W4_$mXTchh}MGj23-$=yHN0-iLliglWTU`mAIRr)RMTO9XjYT5l$ z6bHqUAPDd;#X;))54^p7z_&Mi{+SR_Y}+`fgF^L+|M>%|%U`5-V=5|f50H8u2c=*7 zA98}zNemWik8Z_jH4l`^t$0{+)dzf1oN7>Xr#(SR2OhM3<$w8n@cJJ0+Ln_AuW7eC z{z6eKk*%frHU-%8VQkL}x{AKt5XIQc!!kp1G%PqbSS|;rJ@daJZ!6kz8`Oyf3eZ2J zOXzxE9=s4(O*KcsEYyXUz>(a5(iuqMB{131(iuqM0lZ*bp3lFe)uCg#V?`66!f{Ul z{9OZI(a>G4gei_}aL5p)7Lj68gDbF%0QS7K_H;g^3S49X#euHGUIzjCdO*7aWz=2> z2~E=^ql6_Q7^G~1uIStECP^QmbAoz`gct9_?hN-73Ev#=BP)6e;P03ecs)qYC@BVM zGGz@xK);&IpURCkU7?l$s3|mGP1au~rMzqIb_ifi1kh(sW!CO)D-!^Pt$#`iOogqC zkl3b~CK1~iYZ1WOD4EI(w1og|8hkp; zA)=ydbIRcXGzG$*4iU_*IoBb8HJR+*WGG{{YbG-QAWeetC!CVP)~>PYAwb($oxBp% z&aq120sJZF+WX%N-tQFM+&IHhaNw>O+?(Neu`b;dr*ud&e*lia0p;cq4`?Y7+nhu z1qaULkgwPGh5uc12!{vI*q7Wf*wsD?4xDM+A0DMC)U|Q91VByF(7x7Y#{rB(0DF-$ zh5hUS?Gh4Es+cquSt`N+Z(~*t<~ql07#G<{nA5oenVGug&xaNvt(4QJovjR~+->@= zo;1?P&gpLmu+a>r{+TX58;@w&RHRea@lK!sZsPUP0dE)=9ggJ8YGXA&UuKAUM183^fM?2Q1 z93DW^wSPQVKTfaP?b@{m17Kq*-T5vuY1f*c!vkm%Co{8a;uwHH^6aTFvMbU6fHY;F zKN)4cxUOYCPyoNib@&syMCt{ehfUU66-!s58Aw?WG94uT@{bdGMI;%fckLj>90-^~ z{G^#r8`=ykV!vyr)I)$a885BSyJkEN51?ry=!0Y^(Y1}RgcSNvHnVCo2RnH z=~~%PaNtaddzL=<*0p#T0FWkeo;C7nl&*=x;Q=(w;q%>_Lx%v?r1|p!ZRZu4vupBL z0-)AbI(L@buGF=SeQpuJnmDCHy28?~amwKVG;IQXkTtMf+XOHGHnDm@2P}7sRZ9TW zTDzu2n&e@c&el2xz}8x-{dTn05CFA_wUPJqbWSV^51?sq=uC=T;}dzHYl9OgfE#OH zBv;{dwU)yJXyWw6CVkMMYq_!nKutaM?U%`dS=V~X03?zkL_}z3Bm;mn`SjcQV0oI% zPj}6yU;u35^t%&UNEgO-jZ;ei)Wm7F7SuHY3;;-D=f6$HQ`sl%YNsUtYO=riC>s-Z z&HjM`xUrZHD-Gm$v#Z6H0H`Tbw1h1Zt81C!@Bo@9pbyNB5@~7IC{B}# z&sVgEK-k@N)>D!oVv5Gg@#*VkDf33xq5%fLrknYiRy64$V>w~cwVUZ7KvQ3wR!dK4 zpS$@7y%#xl_HR56n*|P4CM?ItntN`FASsqwn}hpkxT}TrLX+k< zi-wxwQ!JR9&&qsQaVNFnKHWpQe$*sa26QliE(@NoX>NK^wj%Ih!pE&9JTu;i-1+T( z;=)_uBw!1z&)Z1*irx^WW2@_C*vP?*Vq>3U{Dv+^G~s1L2r_hU#JXlEm`ycmcF|bl zw+II`ly7@wz95CBx5l%<;w0@Mb?};PNIXu-x%TGhXiS~GVvH-!Y@ZS1DINM$6WY|i z+ssG#)0&E{ln~CH4oIl^n7&8vv>q=9v$x}IMu)yH>i9*-4Dn*gzji2L#SEU~VZld; zZ?{P@ErqceFFKe}sPtMCU zXNnto;o0{bSUMJ%kfZ*Fjm1awPN48iabqNu@{D3=(D)DGrVt>Clegx+IcpXSM{c;N=xh2)i7$OgBU4fVsCrLUJn zdhgx`q6$CZ!vtDgwz;g>CMeED!RbY@O7>Lf`T8%9Va=vxS6~YxQ}y~;@-IJjZnZs@o$l_ zzN4#H=-B|u*|L2sOaT1HZXKXAl-exI>e;tuS(_3pyXoVME1(dkaZ+_@){5oOR6>Cb z?N6YM|E_$c)T6ZH%1QK?I;2%Z3NvR^1hy!_DqCD=#)6);rt4nv`7`ab9V3Ex0)(3F ztIIF@Je5dSt|lAxwOyNSx)B-{*scu+;$zPJ7N@m+##}t5Lf3ZYye>bAxky?-ZLgw5 z6i6uk>~M70`)VXtY(6`?0^ndKArT(Hi{=BW+FvecFPEI$RqVHu+<*c8uMg>*fhYlr zb>QUezd-=_4!@q8A8=Ecx>}FcbS%<6R~0ZI|0I8xS7B>T4g2n{9RBcG@2fw5#!Jk6 z$~)O&qF7d7fK9fH1hcO>k$dz;Tv0}`T_%+gEC`)*LVWsEq^M&3A{8(UfUnT*7^)}+ zOFk=N{vq&+*(VP$apnK=I4IrlUw!l9@gx6r+)yaWtA|K6frR4w{>L=ELEecU#kz_M za6L-u7Qk)ld~)<|DUNql7htG|*cM;MUf0LAKtl1{@MJT8*}KdCEAo(HiO>eMQ5#W! z{@HLg>fN2ml{-bn%fT$vg$M8!Kk3+e$oGj*505S|q3Q8elN2pQJ8dvlp#=!V_fth9 zUbxIeF+6QojiFG!%s(Hl=;~Mc55E^75=T)%x$xdi!Gg*i_ba+SY-ulBo^nN&j)axo zkwh$4fNs&fKYt6lfI|10^H+?`tko(dea5V!G{h4Fq}+!mnFy`K1(N2_9T z&M`_(S{~G7j28UcB}S8JjGHV?OTyGSn9(~1+()2>Rc>oktVuYE_pLyLcNc>qONlb5 z=!=w<3<(O9T2uG36BYK8!DRk;AWsFUGDu)Jx55V=3Q0<`=v!J=O{bs~s~<5US9DAW zQoS7npDw9(8IQ8#hl<&@7?X*{TnLNE{gy5c$W(WYTn}xP%nmv1LsA@kpkfiCmkpxI zA-yM9G4B#nve=EV@bsfNfVqH&C-nW9G*MO*8!l2>W zSP@QP?Ur~2g(2x~`TZNh3NVBkpO7a^%<)wNS!^hFMWmo|Yblv1!7Rvn@0D7wd<@#w~1_U|`$THzKgVjk^4)>J_Jsk2`4xlP)w)*2F zd4zUf{s%e?$o%(pX58)Gm;WBVT|TXg_bMM(!btBD&2a_L?15%2W;S^GqHDq|3WjS+=M_wE5 zE4?E;Oc3?q$lkFzO7Fqx80nekF&DyD;`kbIffrps)uctJObe1sgxJq`Rbx7qZ+a`H zbCWeBP=KZSd_LUJX*#-f+ivGv_3pnJ4>xIRs;WmblyfTk+)Ka?>e6ICDr`!Myq$;=C~U9e>7Ek=2@FTB{js*-xRE~dqrA}Q@qbnfVLS|5QA;h z3eJxv_EOztkB%`+Xm*a@o*f9Ow_h5-kA!Y2g*Si<=z{P3>%qj1NqV*Oo!avKC1 z>Ys=}_us5(6>mIhj|x?XAo3?SqpSgYJ`ncM-L1mvI3KIV3R^8n>9B!I)tc7Z_+oUN zXEHN6WD9@(crd32f8~7dpH!s^RKyDY-lhVpep#?;i$S_P3j^8=N(5jF=UD_bF?0XT zgx-`NB%8`LYm)(#*}#)$0Ss-f|Do;76N=P7Gry+Wp?M+B{9Aac7c_`iQ7|D$Gr5`I9|tnSt7dWorA?EukfrI<5Fq~d zi{|B6p6k>Veoou6$2lEFoExrQ_3lk*sXe)uP_b8ngIY%;2EZ3Bc({I^Z}C;^fl1gN zli>?%Up4q-&C5i~!F<9;+eF^$8ZBVJ?swR+F8RjfPV?dPcxrmAO0z%|ZOdwhLie2e$=!R89to#3`7>8C7_cuo_BYS(AAI}hg}`f8 zNOL?$P`K_C9!(CHbVinCE>&s(1&wR)<6y#* z8F_4J_LUTTiE+?Enh*Qg*4w%?ai9X97D4xr=EP@E&Zo;JWG|uCeggs@d1}a)SuFc< zdrDn;dsMD5YBuQ5Xd z=f{Q8P*?K_9JH>uTGoD<`J;G7!~x3dU^ER1CUH>Mqpc3M0V`}+$hNCvFEC~vsgls5h@1=wo5cnZ2_~WFas!a=r zDr+QF)h-%QT_ycUDyv;IqS`7-?X0@0PHj)>U7NZ20p`MRCVPu^I`q zLaOH#Np*^})g-T)$!Jf#9fyJ+Ax&OqUAEdZu_P#jy2^Z>xKUeIft9K(PW$x2Wjb?L zrxI9Dxk<~8D>{Y7(~671sP}^Yd)UbJP0bRjrP!vbOoZZ<5e?4FgOw!vAiJ7SAr=FS zV*G(6LhJ&4HRcCEd;AYk9V@c54-AzE1qF5|e9TfpMbV+~fLz7kpcH(`RO)>Z3Rk@; z{PAc!O-9j*$skXV&IBI33Gv3?@r$Q>iZ_pg(j{-x`Uid*R_G|YVLo``l7&I#I-Mn& z%m!1t?s~VdqMt@Kc$DGW{YH#iK22qaG?ZNE>du(TEww3k$cu(kvz2` zU_sX0mw?hqF2(FHI3nIMC}eNq=kB(%QnpYWIs_#VJsQw$R6ypElUH<+d^7** z^v~m^%=Fcg5(&v$u8C zI3K^EQ<8hhsbE3G=Tv%xg)Xrjl|8G?sTmZqml63-X`>)b;mF(KHMOLxtwiE^7-W1D zKDSp+?j;Jrg2)y4Lbuh-`Gse>45#Qa10b9Uv`pw*+F+8$TCGr^LFliuopg$|M0pp0 zA%J&rM2nuh735yN_^IhjxX?CwBnlFjA@R+6Hf0%+)S3)c67ev|+=2{tfYO^N+5Nnl zx~HU;G9h}NuJq{fsTe+lDEv}fam-;|#6=LGFY(t8=PR>%nYK@giB3U}IS}}eezB%w zBGXlG$lDP4lxOd5@x14j%_bi5+reV893Od)wxD6b4Ij8?PO;k)ry?4+RNOvrn=&74 zcStDyjSti#m-&2a?~p(0&sLN0FJZx!jg}tPX2BK-SoEof1dBFwyL5kX+B#tnqPZFyEXmK*3IX_q%GUSJg=)sRt0w5^c=E_uG2xfD*F{abgLB+6PoY) zP*(FE<&)*)kV;H)4f~djU>>neSb(8^+XuDkruUQG0KetxARm64bf7}_6CbX3G?))h z`^V#Tv!Hh&`H!#7zeU<_IalIIEf%!$Vao@eU}h!yeBF_mm&mSq*|M45Gg_?R`HqAP z{cEFUxE|B1Pxr=$o8#x3d3vT#GYobJThSMI5WD2Xn&Ar)6|t-t{S<{93nDiXkq2~} zTe7sQnReMC<%n&9g}uK!3OZt&U?J6Z6m&!g`gFVhhQ{B?LFn3a0}CQP-JWjNiw#{+ zJs!T?Q@Tl_7o@x8C(|C!o36(6ShoGI$dih#ITB)ufcywt$bRa+=9z){n%ZaHifng< z&Wk&f`)6;qC?aE9wu-^Bk1XaG&&rx!-zpqMja#BET?XoE^Zu&ernJbORtcE$i!|^( z)BPNkjrmR+LqWG_OeO+z?xg0F?NDrLO+iIF0v!fiv*Aw6&ePsE`36+Q7+D}9T?vKa z2l3CB<74g_oc8DqB)&~e6p}4nBbgPfkY{Bk_-~*BTRz!lOCd7;Z*6|)YLU}|T^|?i z;wLozG2MTj z%JpDhxqMP@l%AiZ?V5ZlmjhexL=^77e732=)?XL%$N^Ox)3Iw$3U-e6UP4QXu<`GT zHh$|Sz-asas9@r7?Zxg2-)F)QbF8X1sh)mut|& zX=aJ1$A*3x{uZgA?s*w%91CZuz$)Yi^ZU(+uD~|-@V|s5TP7!D)RZkr$WXuS(uCCy zsaIvhxz{7K)q}L6w&X%N_L~;EsVK1D5BXn0dpEyRGSuBb%-D-8#QKj5nNmIGD0*L_ z!wT2ywpQ>{Knp5}CLYYYJ^Yu53&llbQF^Aian_;$Yh3+qteH1+`Ez=syKK{+wUuWv zcDC!lvN)IWOq+=!-dZGLXSZA`xlndvG)f7&tj~_tAB^eUI`g+sSLYJPic+VA4jWuv zjelhuv4Ry_CQ@ZBvE2&6haD~zVmk^JsLShi3mh5Rw`{(4VOo+v-Da&AF(Y4aWXvCF1ecUI;r@? zW1)(?Wdq#jPEp~-4Sn8f6OPHyMjYEP1zCL@x5+vv6yF)oH?!V-`X3RmzgJYH9MD!B z9wDg@rUUsdad)agfO_88`f$F^%vBr{HerLgpk(aK=qk3b+s5&LuDsbXjtv49U*y%J z;cP)qk1Xjw0d6H}mI37ZN4!gBP2*R8H^>8gB0N!)=YX=FfKwnt{&on1OG63={uPy2;IwEb7XVxj z0q$*PhXv6s8xhb-1V$nnA>rw*@Z%?&>GT02M?~_L)!j2SB^9!fpZtS8`xzl2c=gD< zB0x_F^d7i>2^SSxVFSTNYYv3iJ4egr2YM%cEK8l@0KVKI6)+&bd$gue=V9-`i)X@o zMP=tgTH6B!B6j4k9rboy48Uus7@OBVuU8E(OKuU z!B}7XpOOmMkAm#VOf=C#ym|7epstuP3A9AL2!|23X!n8{9(?`eTQhrY@4u33G>T1O zz!+`(kuo8A8$aOk(5kBFnt&rzGbm)=qlc;&C!9-PG}H%dj%k);dO!yOlZ9f%V9S%N zayu8=7mk0JEP7wl|8T=6GO?ocnZQ;`U_igg-*M*UksQBN<2t@^FJ93o#1x|ze-L3I zdx<-Br1#<(UH-J*$V{U+g=&I3Aqj%Qd*&y@>4dNQVA!IVGo?=?BVdsQ-}q=H!aAhC$+FdH*z zx+o@T5?09;$%hqb+C2J>ssoOb)QJ70jljc(j}z-3H$P11I{&gAift|lt`r%W1Z=q# z1*ZMcG_!5Z*rANN{nl+@C|?slc-&CCBM%NJ+HQeJ{a*DP6pDAm&)xMYCh>*0>UO{c zEqN=@P`4$L8do~;VItbL1$5o*YHi=NmG_-!6W$Sn_uD04&M!@5xZmFW`r#SYD5ln9 zU}jBO0me|@gW7IqjA^LyXR}p(k3h*Rh_I0TRV-^0?Tlzp?DLA5nGvlbFv->pE+*{d zv(>Y>&HR+KSTQGHXhF7;=G@hRkT};o~o#eIW{nV#I{NMiPHm5(KV@kNXD)@ABPZ$bRq5) zYuW*~-GC(eKMmn#gW(Ckb9LJLicXZ#gHsPn?TVs*7LbW4?FxvMzYAf*kNvTxsFsd< zCyF6uz_yxHQh`|?h48^Fwx&>3C}uwct<{)NF}f&wgSgf^RjVr48AS5fL0l{3=9ZNETb$wB%RCfGaRt6DE^@LB9@x zQ-h|otE$DQf8*iA_Ia7WJ;SI(28R8Y00@TBU9Y3&^$NR_3k6ECu_=ICEi3E5w5TEA zGt|9DgC9z_ChyV^q+CefoY;AK;mhUmW=8YJa(Y_R^Kuj$0c9j4uRxM!-tGQo zQC>A8qLNymWkLs&<2g;bFXdcxtx%vr=*M(@oABX_v$J!ubj}3euF&q!uQq&tJiRaS zG~0%$8Cx}OXqACV8qdFbHkim+nK}&zDr(U2_(l##D>W>rsF9!6s?@Ncl15>byG|q7 zH1IB`Io*9i z*MiB4dqN_UBM8`+J^MRar={DEL|#-}6q4b=fx->i+-#3F_8vZa^#u+f#vN)+5_^cv z`TozC3CUYhl6IfbtvZ9``9{T_g@7rD1}bC|PoIp}ubbsd5uv+!3T9dI4{srIJrj~L za{mybAx_a9BR8T#Rz~h05D~HHj*;t`ki7ht6|ENk^TE?6rFuy*S!}|atdo&)4RaVX zDSveuAVK4=r*y(tWJ5)7Meb=b1n{oW?vP`eyf+O^X@y5IcLKx-HSTnCkXvlRr`!Mm z4AqO#m+7Vy#STn_HpziMNQY67xZ*!AZm3gq9|4dmo(7>y_#K>#v$5jV2Lu-~U_r!t z^Qbv~&aZ&UJzKTj1R8{V%FtKo+i$fg<4};eF?Ctae*WcXut@WOVs|VcBHAPofI zX_)cKmZd7N=YuRfudbGoPBEvNvC6i@3b5m&EbQa)tXZCxEcxT!GLh7PEuUnzJb7{d z70q`%YKoa!G53=Z%Q2Jdz@`r~!oP0D8{gi=m5gHME`ycL5fZQ@Pbu@WN7P;5i)uu1 z-(N~e4cL-bK&X7;&OjVF`>TLTO0X+0RR@pXcBzULU`L)-2MyigRNP^+zqFDXTWmR9 zwUnqm+9EVy%YVrVzzaIlJSrt=oOuR&t9V-FVBx2kh2NRGMMrHJ```CwTR{j`U7P+e z8}uIi`SF*0CT~d-^^Gj>|EIzVM%enM0E5yEuf)TsqL$)zdjpYL0tdAVUX7zyRAGv} z}>i`J3ck$E5-*k;C zgcKr#0s0Dl@c0|3#syF@`~V;5?>!J+DCTJqR%$Q^_-ptHd12}i1^$#OP@EX&20t*yw7d?X(`TXb6d=V*t;{+F@H4~%WK*d)4pq$2+X;Y2B*Vh zBXdurC~}GocPXf7N1(%i8)-N*{UO8^`+HMJQQVRt{9zjApXnuH-s)(^|H1&pd{hc6 z8Xy&5$n`YrBN{jheZ^dE$|&j^Fl29~L7v&1ER^?E3c!YVmg;$=?<>_UxmEai7Tfz0 zwqyur1uc}txXZb(f)?m7;Qchc?U9%~;uVKmQdBXw#e5j?H)+VBKN8IMV3$q@E2hy> zXwjUq5)At^Wkf$O&NnJ%VpHTMz4|Evtahka1C-zifW`<&hJH-`?U#bCP{yq&YGo#7v+^^#5 zO~lXQt>p7<>M;4gDol0-R9M{n@3I);F!aQly9{=-8`f({AAbIpn#M5Nah=xnFRT#DI93ThQ1M9k#_L60UcHxr(xg&s4F)EYjF}LRX@C%dF%M!tTZ}08jSfZT`|Rwl5(l$z7aqWCi^=dMJ%;zp{Ksyn6L7_PyhB)i z0SB#%LQAeSDyFzwWx`71W%rwJ=k^~`L(w-WXarW|2d!YyISlIl(916(x-=ERghRX7 z5+Dd%Tf96rXZ9Y>7WDt}8#Xjq$|0;yfd{cGkyzp81x>BfB9&aaa1}y!@$BLJNM6gU z$!R5}2nV0e)2%Kmb9czM5ATWe(d09PwNZz^m<0a0MPu%bdG_?#=K`v}}%O2M)=Z|B4vX z6iOG|DkUt4{Cu%&=*-eucC!@ek#tc#2H^9H6?HaNbexO+SD3CT>%#OH1pG&f(>`y7 zGVyadbg!wKp#o)WS-B`?IU<^kuI+SKap`;BciMY2IcoA*YDJl`!Hr@{g2XlZ1!cBo zIa#0PGK!ielaVw?owL8oB@~^^Ou|xtzGA6XqSgnP!t9m-0)KpB(ATJ4~9LG#Z{y4pbUUAr7R-Oz1?aJz8Jbg9peYG0hJ3OF&ABjppG4^)= zYk3BP&Q15TdxzZfo72i*E~Xg#7sOH`6wkZg<~oY0pMs9%fPQXuLQ~y6^S>g-6kQ4% z)J0gJ0R58{y^te2dVe^3M4xn9Ed$6KtJ!)nvaika@!W&_s!>G;-$Jb2MIPj?+F$ba zURrsz%f)f8NRz9KK%^yL5V~ZA%zRR|_N{4|Q)M)_0( z!Ku>c?eU;k_ZP_AiWU*X#T^lxUbT5i)!5_7n}>6e(G=UQ1t_;eprQVu2;_e9;_kCT zdMNHt7qC_f0)DF%-`;zxRs=k(_@yx49vR<~Grm2$=@P&^K8g~s=B5Z7;w)}%G$V?* zNaiL4E_C0Qy8l0KZ`vi-ZKMfzYvEq3;x1~vvfQ@ZRu*m1c6WPbdS0qXN}LfFvx=5` z8%|bbR#lo=ndMx#=$!YQ{sH%+=A3!|UjLH!i2wpX;384TMePq3>*l@B6957MAP@)~ z;!J)gsgVWA{uES#T!V`Q+D^H&)?U=G3YNE134#+O@v8G9N#Y4a60HsX_fUZ4wZY>G zuWpNHgWhW~X9)|jd|M<4L=tVO=ta|g5^^kWsT%Mi#pUr|`n^f__N>6t0&kKanEud& z6RL~y;?{H&pHnTFHd$m%W1xiMyihzH&VLvxg-3f%b$JAe`R%NG9LXfzzzP@T|Rl;}_>J}5#cq2ap6Z;yBX49A-)#JqLyQ3PD7 zXqyhz4E2m?fhrOhffw1gd5~OIc8en5EIaO}`y(RAmX$q#5%_g#USRk3-_TW{S~W`? z0b$#QI6}bkn;#ncGxOGc03-0%Xpabcmp$B3^@x&1_3y^9oF(2g4`TY6|2qH`&bP-C z?c<)`!vp|9+W;D!^h)1ES+agM-&?^WEMZxJ$dlxzD{;p;uD|E7orO5#qpb?357#%ZuQ$^Z3;^CP`);0 zlfMj>a9na6_vsqT*rJt8d<0n2I5=TicTC%FaDrRArAp=uX&wtEELS6zoyLs>C0^Sc zl|dA~^+|igu>m{n5vSJ($KrxUlFzyFQ8`;4L+f~K(kW&+BjVg%Im{CeW6E3Yu+qnINQ>*v2 znOr&lol`EqA6sN;bT?De5o&8+KRJPeEp1)pulx8 zqqdv4!vB%t|E@h6V6uig5GW~VWIhUZi)YX`V1>P<*msfhd=EiR&#{e&*e%Y1PJi#f zoNdAVtt#W6PIfHLkmf`hkq-L*dh!a%uQ|uIWUmfKq#}K^7`DSD5QXp3L|lEzya)v| zFb`nZ8hAqWzJD{D1)*Sj!6U_-voarC@t!?5~bwE&-=JEMu%A$|V2QB1}v(Kyev#QM_N(*iH!td}`s;8HX zXtTI1oDc=oN6Go-AIxU*Fj|79Kg4C}syNHEl0g%ijR{yc&8qY{{af)A?0@t3M%`j0 z;kZEW^d_4-_>Zox0`H0a)-gC7K|eRaJ|1F?H+OW}jRMb!d}+Wvj6i=VFYMvU`qAFu za5x6fmie!$s6Q2qBo<#`DQ5MHu!t-lcv+5)$l_6EA{+#3Bq%BvV(rHfc@tK+uM2l) zfC!L5CzWfrfHp)?+!3tMy6UIZoGWlDV^YDaCROGnuCRY3;s$Tgaxzin1tZ)E^Z~H& zf12Q@;}5~Bp*1boBs@We2wdd2k&xqY?Aa+e<9Gr)Lkj231SieD@93#~f!p!~RtqY; zsXC`uezZD|z(tNruKd`sfZH>=4yvHG6@cn&`wmjr-j|n=Yh&C#=u!sKRC2(AL`n%H zMV?>~DO}xS3ky-7-44y1H@EE{bh(VOxc^peaTTBvNByFxL@H-?$GDX(utKXcyD3=V zz9O|b=}}79et#Hk%oN0hh7hXgA*K*s3*R>B+`by>!}ulsA3M+yLz9w|#1U$ebnCFY z_o9(%Vp&p;Dx_D#lERz4JB$ljU|T|rMnN5@P^#9Xoya(K;j*nMm`OtTqZ-w^ETLcu z;d^0);71dB99L|?U>V{xDpmmtwdLu+( zssX9sbWQkuL$4W7sN4jA%K1&B=ax7(a^*9KLZ({s!Qgm0c|7Rr69~(;q(>D}x2B*H ze%s#d_M7@M$C@J9Sp(SFwD;-KP}Pzvp*65Vt4t#`=cD1I`_*u$m#oX0Mg=U?N|kVT ze6$2#R+S8*kg0JsS;l3@RR=1RN|8+D&%^Fuy3!U6V1?E#i%9dHvMq-pPI@l7YLan;X z&dM#XK@_r!VYNp7s}h%G&c*{yXw<;fn3*g)aH(mD>Wye>OoMTLN8b&%tbGk&rG(z@ zOkPmn%kFSDTDZ((cYvXX=MXeWNmgk$Hs{MyI#8kXHU|PBs^@_A8h6{;r#g?#Nfk82 z6=FZT#TVPhy+K^N^UQ8jq=G4gz84bV-8}r!HQ~@od&|RC1kV6$6<7IaQ2M>0Jkt<94(n@v)8N~FAB%aWnH+0xB zjt(If#HpH30}_KG(AW9*-S*y#O`c(GPhnr8L}(?gMWQi^XKI2bNRhH*@5QP~6{wJY z=u65~K;qqdz1M9Wz3b)qYCLwRZbzj+uPU2!%LRxMZ}COt0ylm^Cv}8ivEJ_3@d>4f8uzjqXyJYh` zLBlwLF13|tkj2_OYK<#adhEHD#jDKD~8S)dX^<5D~b7u$uyc!kz&wsnmfCQ`)Th@wxh*I851E$4aR7~ z^u91ru7BE}!Y*#=8iJDH(a5YA6R5&Wt;bT)JFK;B+_Rr?kdX`=0e#aiEE35)dCjFDKZzea$<=SwvjA}{Vh5ABPVO0a~5#&}YfErc=03+Iy9 z%4WY2Bw-L+ZqwG??M0^w7qjIdnlN3kWw}c!T$DnWOs|?HF*t&LUeMzLl!S36zzIgM zrKezr^%c(8JniZg=wdx3023b3sr#eh_uWA}sxGEe9xG-^4{D3Ccr0NN&9xIg)!vI~ zt{@46*vM~iRHiXlE@mSglyIE2S{02Z1-DGt55wsOKm=D>8Uypu_>b`gw~Mub#}XE) zAvgSo)4|1R$U!AJ;z`639O3*y%7L_o&B|Jg!$C=v^h3?tam7wmdu1${w~ zgh8yhecsTh#jJRUCQM?*`Rtr3$zoRA;0U^m;t!`hPn2SYdb`*t9svp;tvqRbwLfpu z&@@=U*Vi0CVnkt-vBdqZUAK#kB>`B>LkrK&PQ%r=7*7BuJfeAz>8M_}v!eM!h$c+Z zi*U#mQz4xgV6hQJkc2_(3_K8%Ar4b0^O(uGwPtRVsXND3_pfygvG37 zh$c+3s+Zrs!ctFjEw;|qc)}*uOnyZiL*p{ElAVi0+t`{CL}84}cfUVuYlF62`3&AH zwg-bwbk*B(Yz9x*VlBZ%Z7b9gLKCLA7N63gRmHVjxeT7L$xNqlB4V+b4#Nocnzab@ zFq$)$xuj#?hy@aSCp#RKs)81jonQo8#+MyDL^=fpzu5R9NWvhqetO;SX_LGr>R&&U@9YdIiZExErMu)$MAy%w;b039PvnsD!i7DxAWgMKObC!95rIC^pNH?pt^f4o!%Q0N1X&1Q#CTtS ziG>hfh1F<~f^)|jDItRb7XfZgM}5kCWo~nYM;eifiQZli{HA~m{Y+?K|5$w#vNzWN zCCv~L=0!00BFB454!#ODQ3)kxATL3PEZiT>;%-(!K_XxU)~td+fLsl1 zLgaJ}1aJHpHPC<;DSmFNZe)_@yM24k({^V%IZWka__qSvU{pe2!#0s;5+cx`64^eV zA=};F0Y>Lp!u_w63fJTk>E4f|qYDsHl~ppwJh`$$bdf;ph*aoS8&@IU-+7XfqTqae zRGw6m#S9`zTo;sHJSD|y>LNrJ3B;mHUCgM4k`d+P#t6WLU+kIVZx8m~JVVwZWV492 zwF?rg7c|9vO(1f_EkUPEf4r6m(M5vKBH_Q;*?H3F;^D04pH|XglQbgJPZBb1;Ydxd zi|GL+w2i`d3R3Pwh^gK}BE>8s(a)mq>0P@s&iT1hZT7D#tEd!{NcPi|WLb;*&#RNG z!6QrD==!aeP_`}$;iXJxvRV-!h$d9tK@MJvrM)LOXxV~OeMM8=e@ zdWsZPl$$E0VXL!MF^fp_L88{SQ=*j5)Mc2QWi}nW$PkaOl+vj?LNW~0N@ToOGrmRy zB1dc;VSZk}$qsL;v5sjTk?L=v7UH*?Q`d0R{g;(!^b8`AE7lx-{m0WB1ursOkLu>B zS?Q?mUB1H0DXt(3v#hV>oAh+BAcsm+f>fvR*uoz7m}i3*gW;<|s`gjYV;x=7$GDh_T>*yS_Yd`kbO=_~sN^k_N9JS#v{tr9$s znMA6!>9p6`+-~o8pFMk^&y*DGSnA=+XQ^W#VYq=PN>1^-xkvfDpUa=ByB0WV72r_;UCP(w!U*_2zEDK9L|a7%iMot;>rfO&pd{ zu)!#wH+aI}j1S~3BH@j}8C6-3NkE_)gfXs^a6`V>?+x00goh}lDcIbU?-ip16Pok# z8Wct`6vUs%r;34a1pJd%;{!};_BRia*#g&YnH$izzJ8Fh+XX|1gPR=nKXZS~z!o7s zOum?spx}hI!V{gejz-%iCklhxr@{kr4>D`Q7%{ z5A4(`RRaY}eZe)o&T7PoBqCNNpEtiqTw7S+VHCU*#IfKa#(VM^j+FE{KV2&0f6368 z>Jkl5ps(}Q5-9COcIBqf&1S2LG9F%Z;{Q9WB*%=;f z9#8vy`tRMx4>>tL&S`bq+96SJA#99hN|&b)QEtQ^KY>U{fT228fnASbk}?SPO!DnJ zfBF)2@uQFnwvhjfMDC)(yPNm=UAmZtGS_Tw{rWeLz8fL1V}xsv;#4(zCr`LMYS*AL zgR71LLJ{yI4;2b%|E=n%U`_AA3gr?W5$98nkPwIJPKi{o?d1XI6N$M*tjeQ=V(~JH zeWgmOf}KK-S146LB|?4RK|-PaKtbtBo&sl?hbolEu!tx#nvLo(wP^Y=nl0oKu|Dy| z3Tx<355HY(0qo%lYsoW-NS}F(SR~lQgjoOkN3aGYmS+>uc)%F9kz?A-KykCe3f~Gpy zs%j&m5K%si%P@1ZtiY!gVut3?39n3?R@|^O&{Yncxik?sU=}Kfp-?RU>~a>&Jv= z!BmyZ*v7$NrY$?)J~bYf<195WWI`;G$NBz z9bZeFNqM_@vD+Lfe3CRs0Bs3Gj+;^tF9)uaYGl+XSXT*9UIqadex5t%wn1lp%37?{ zb`A@hm%zh|3|Fb_$9tQ5eY#w4)8v*=kklB)1_OK6m5ZjN24TY z9k38z(VyIJBVnXsE%38yhy<%a6-rum1vT*yj6I6QRkQ`WKpG}N>yd?;^edpo9u*%T zY|fPnHb68~f?lJG2-L*_5sYJjH_KG{%a)x1P(pwZTj>AB(vOWl2hKF=0Z+CvPMxv^ z7Kvg(Ls3rP5wSkkV%;6?l}J{$qRC5^p%USuI>Q(LDRnlBN5rB*BPg4D-88$>rn31) z0G4RN7+=JQn$GwzPpqI-G+l;Dgrmt&P^|EaL^YL7m;<~-H6<7^nbd40aMC#>HFcJOMC8{|BQb$N>;GR=m1Rp zHQ+4Mw7xi=bbf!_+1<0b+5g`kKCl1!Q>7FI8BzdX%H@$-pSt3_i_N_#-(Z0tnSsqvg8fbh5k;zVFW6%kM^I072aU=oIAxs@*dht?J9KmRD&%Dx zK|R$w7z{^x_|71{_HjWu8Ank6T36_TW8JZn@~vYHxL~<~A`-sy7aXHrMf)(0 zpq?J#NLG8Kffuwg0wvg|MqQ+O)^=vW{$-Iuk!ExTf5kv>9mgD?CD}8nx~MVtmQzEq{2x3ByrK+>1bFDjeAZ2nvu`OXp}e!*0l zzGTm;pIP8h%WLF&2D>-d>rXq~7Sf#B;0je6i!-%dy<8Bc4tAmydch2MMmc&&#u(%@ zv=w!P+i4U*!32H=0Yk~`<+>@sVAz@cip+OMMfPXaQC3Cf z7c7cQ`#4rb=3Q)xZ1|&;%r9~jnRc|Ss$|~rqR8|#Z&hS|+Na3$e&VXg{K`&|X|ug5 zGC%!PWO}x@Dl$L&yBgS1ldNMHT^(GIgeAb3ZI7`_-SP}F5UdB^Qox7m4+X)K!RL8u z1{c=z2Z%SoFt`ivzhW$yEb^xj7doSZAzU(Y3QZiV0?@u zF;LP@7nh9nwf+*?8AfmzLy$KWEtwMc^hgvwTw$cHy+y}*@9$`}?bn)Ai=uu{b%xU8vwAz!lIzF#Vn(xQgAkC*eWUDKm z*B;IHV`;0`8_lN|$*U`$*O!ek(gwf^OmX0YH}+M}D7ejtzmMz=Jqr-U;3+P8XSH06 z=(rF_MP{7lkLY_5S3!mk`93O|eJr3tcS&AvwGa_Umv*bN70i$YU?x9Rn`7s^o-%`90`!@@7l#&Mwd4 z_h~(cR`umMyw}xpXydy)haa{*hi?7lIs7GEoCtXG+=!!E&psF7C zmMu)+&2%hu=gCTo;`i5m%cN}BvW4;5d{zph*I~;NcwdDh&{4R{5_lbU1gmXtue^>x z`{b7`fmd5cpjY|J5_pYu1Ud?2Spu)EjzF8;WeL2RZcK(Rx&vgA#8j;NI-VI7%rM>e zvE{Y6K_KF~dp8k7vI?rhAO6qJ{_3y)ivA~amh+xdkMgVF^W%I#qx<_RXndbvqsc4J znsG^{wvd^~SlNg-AII%Ph?r$bg>85W7)b2GC_7v-qht}&EJF(^WEX_2;nP{JIDRME zF)ZRX&QzERR=zC7Fo&CH?@HBL$%1Bftp%V`Z`UG1gk?;l4Y7jdXr_3U)8Y#4C84Di z$o_N?g_tkbW`07uE;L8IF@>h9x?GOLyAE7g;GxFc3GQG;Q{b7+RG-I`s=FvfwMu*%yFfuc3G|%enI29EK$7JL&%k$BP`ct z15i-_*EleNV}w$vQk9GnvkinG3e_2_Yg>wA#im%n+AbZ>11UE7W2(7l-z zbUi99hwiQ42Xd(>rYhq-nw4Ste~g&xZgdE>Apf^O#o^uZ+)=dr%I~wrkKpIiwL#oZ zxbePHIeabuJSE3uc--O*xBm=TPG}RfOvBH*(z@^~!K;b7&@2Cy5_@Gx5$jI1Qexlw zDPrBmc?;_4<^D9iJfg_SwodHG>8ih*B6!F-zq zGAU-nHY!rI3aB$^E1EO6FYfJhh2)4(^g=7<{J zjAcmzACn`Yd|Il{7KANkOTvJn(Y`Q8?Ver^En65r1*D{ErfCw9CCk$IxByRc{0281 zt+q6Nq&zF7(S38-a`=Af2(+zUmcT2QBhWMcWeI$PI|8k_%M$peb_9BEv@C&dx1%J%`@PDAsDvDH{LW>dviECxOMy1L4PE!=9B7I&S84)`SblLGDvlwKUa9S=aS7pIMB1tpO5>)$vDFNaxP3p zaFAEpyJK=rPAbY$Q|=OW56BPb+TliW`pnetBw7zBgrB4dE4m}8!JJ84RLtCR$RffuB?A8(2LNZx(MiM( zFGCk!>bxu+;R)SYmp(x$X(r22szj24A%K0=?%@nWwADB#tiup#-`VZ#>(ORDo64UH z*!f*tjX8Q#HFlIU=`Rw6Hz@j`)tTKl6P(eDayrb{^Bsi9dx@Tm5hnVgTMc*rjB{M7 z$ub__l++HZWwC_j3~h1kVyjD`&nLTs5YTs<27JEJL7VK0{AcyDJ?b@dER$3$Q4b8% zazG+4Qs;I@d+~@cXC(-PfL^3Uf4}>>N(2jEu`8Ebno0PT|gHmOO^QUUrWviglp; z7YaXf061AKR>qbC6Qa|539rF#=9*9lf$qo_R?+e5LmYODn=-REo@h!BX&rt7DWvQEjp}8u`%0K`&J=khkyR)Lo^SLFQ3U#(ZhK$*Oy(Qq`Evm~*L}?= z<>Q8&PhSEM0p7s8+bBqt2&$UT5;`bKn?vzgLULvwo1Klen{OO)5CVFhW<04W#C%Q1 zKB8#yu)z;!O;P5n6bBX0P)^|*a$KvX`pTT^R|6mwa&f;u9FD3^?`5yi;pZEe83?<< z7Dx!rI7=RmmUA|vj4T3rML??=3)uOV$bu#ZSgFGZ)#ZcsXcr4i7{-1d6VJFa%{RbV zFqlLKCPZib5-_Z(`HYpv5ZJ5kQ5E#$kRfyGIbqiw93r8ebrG`5?$`7(bHVeoMks?q;YxmA z>5O?84IlH>se=%CQ4JIq98ZPjGg}@*V9(1n6}^|b>&;mWq`+{c5{iaqt=5Th7J#-W z0(~{;FxB{QI%!;tGM}*x;93q&$j&$iT4>GZY)+~ka#d;2cx;iywNe{onH^9=ss50z2v%dqoONmdq#7<9wGS{QIO-z0K=L62<$05 zifehk#M`FW#vtP0iXgTOqEMbnEMDgx1qq_(t6oqa5&V9&iRzk7ox>TQj!h+VKtsL2NiqP-ad}5zM9X#($^yIXiNaUZOMs zji3qDd9!O&-Tu|Dex=OAd?S-VX)%gGpD_=6dZ?dospKF8^x|KpNF=}C!ifNM>9SjKVS1YBuwxLDWEu*_S>W6$T}|tBQ?g=Gvn@Grc?-3 zLG#tUgAlndA#Y1&;WMAb2iA;r&pI8~#+Xgl%Qa4X%vU`Ii4Kn$Bq_>e$=_o6m`);ABrt$lhuAw&!yl z@aF<{j{d5eS2E5wmm!dr0TJM{415T8*fKRuxQrpNmvLT*&V@s>F#&F76`s%4;lNrB zOo*;XoX2YRs{}2zUv=eWZ#2OeQgsLT*KpA2RP)UgEE<&Gqe-dOh3crihkDh$U_L`8 zG=d})Yu|U_2iV6RL*vBAd_5RAt>Hel7#PRGPiq*S&hPu}T_ldB2N8V)S zfpnea7>#}F%gx&+5SqWPH}34c7z|(ayPX3zYU3X!Kh*1A-X5F%!`5(udoPtHXB<>b z5)D(|cua8B)?s^a&>cg=I@SH&Yb3}9>8US&vtWUKb7FzkzWnVhCw->F2gUiVp$I|h zPab%WeZ~K_8(Ow_RH(CG{?@oibVFsdtgBJi_4Jsh)7(s=lly!|FEXQJrpuF!sT?&$l9xEazAjzED!hk(sxp zhFHj+U-qR?Y%wRSJ4{v4h|=}finY)6#P|hFzOx{Nt$5wy5Xp{ zX@<6swFr36NXWmcz6AUZu* zM>NJP5uYw8VhX?hRAju%>@$Sia6%rylZC8As^Ky-Y^ghUNnHa7W0ADp*A^S?wl-TO z3)n)H)Ijyx9oF^gsnK;%og%aO<=?3iW!56D`+X_h&wigCR4=zXFWXoKc5wg3?)2aw zp5|v}Ax7zYNTO*KzKK-dykj3$cNreTtnKKeTbB_nj&tp__iepNx_4&|E7%@qzsE%( ze6B5lSATrRk%(Sb*c-u+UwzYUACnyK(s!CVQ^QVY=p)ZN{-OT#YYMo*4%*{mI$}bm zb^8t6*GJWMck~hqO15eji0#$$_AYL9*ZCMSmF-AJ2k^9x?FHJ5)Urr2<$D{QSZPbf zQ{%>?TRs>`$^?}9@>jT-pxee2(v)a8;3Aww)EEv`A%B}9%2;DhG)AmKzx#YVIhr^o z0joc`V{bsfZZzZ5?7MOcQzl=7t(~E*nUadOPDVr9W(uX=FbYa-_SLl4?|7;%GWd2H z>)&~)JW9QBPY~^pPda#!O4WV6*X0}6wK8U=8OdS=F!i~69uqVdh{j%js!1|a&LoKg zsn;Hu>r^po?i&?9Ygka%NMg01KN_!jC3U;Ccsp)kZfd4Or2K%-o&F65!m zWtvxA3_|@bHzD;Ys;~Agdnn?l)662?w3GVOl_NmIv<~H<#p0c>9#nrc`Sxh|1o2IT zy!J46AHA_^3V$6=`(pm2YBH0@?r`{OGQ8Cv@`!BdXJXc$nR&cpwE^1D<1t*0mYFMh z1V_V5k}`BbW;_9Y+_4{uEP_*ie7B7tj4eL(0F#ZOmFvV2f%a-!{%Qr|NGL&Oq!$S& ze5==w=tI2v>K&nphO6_~@qq^%84;s`pQvH@P#8Tz{WnhxmfJ}(24k1T4H`hOT*4Hb z6yXv8c)Z4@JOaAl0#+5DaTOW`kk5?}y-sjM96xDo$`nTGP{T1oz5Z4A%@A5Vely<0 zlb0m+TWt-UQ4rU$`37DX%8nY^F)O;fgQ?c59`=IWI8Ge6-x&9eXn$m80_1rT69|J; zUnM33tGOSGPd4-`AJXgK=cL)A|;U$m$sxD{7_7On}afp?%ca@3$kR%M1omdwy+Y zBiRC|`XU()dQjbGY*4<-ho)6O$*}l3q=Q#Y{ll4a_)WIt>>k(JS!Sp@U7Z#xvnx=* zf+^|#5A{cm$;E3D53Q1D2tx5JIeaXth)a?aTz$jnKZ;!8Z?7su3-zSu)DIPJ#`2aF zn(^xQJaMz5n}h$@%j5H@pF|0gn-gPCz0}2x6AJ7nMh8#z;Frn4d88d4pB{ajqoYf9V zTza1qG5@XuzukGu*rSE(maz{?f9QaLGH_v8xtc!sEEzg7#ny-Goap#FJU zOsAxF>zJj5QAWk~hOM?_InWYj=9Q{JfiP*0Uj&V+G3#@8JOLWiWYoYr?#yxv_Z1?j z?yyTI54G3f>FjEXh3Ir&Y8htX*PmcDggqeaHe%b+6d#Ur_qwhf_GrAoM8R|(2DnBZjLv91`6U4OW3s-7mD_NPkn zCvaVy7fnGGt3F>a>j^%Mg?Ndv<}Te9Ii!egGr6;`+ew4bPc8)xJ`MGe+=8n#g?vUm z1idsJ7|w_vFra!@rF{fdHMA#^Xvq;6y24^4|}{z;0NdH!gYSMr&o@oC#Mz z^GM@7I=Wo~CE>W=3n5PQS&=uY%hn z1g2pkV%+-L)9GM9+W3{F!kX0dOw9g`I?{4F+E>X;yJ971h+yIB)8Cq9I;p;y?4Y8L zru_-#TDW(x;X2Grc24AsVC#=DzuB9PC?4$%FT5XWUWnuj(=k>kbQ>`p_R$*fXlcWw zv1Lv4p45E21*mLM!QNJkBc5a1unqWnBi>k~#xb)LG|ur5;a$CQZ%o`Q{Jl-x=0p?B z`pgsgr{Ww9Cqo=tRz)wk6w=|_?{(+HuDe04&pxsL3p)$Z?$x&)FLE3~j&9%-gz!cboi zdJE4hLm6#DlAg1}HDdr_vLL%oKbMEjDs#4*3QyKA;|zQjMHhJ3Mj*17UR&;X-8|B6jN2xpO!USGg<2O zXLp}e_ej&WSkq`=ZVG1`{zn!rW(kDbX6071hF2799*3CCvDQw_8XP8OEM_39z7rZ$ zj5Fs58NpHbaWLSh_R9Dq8Wz(=Tt!o;1VQ~#U@s*;3;R3Y8Cj@qM84?%wcB1lM1dmyWQYr`TQ3o?5EZ=cwu4OCf(=o zOb!x>Y5r;1K49y_=E5dVrO?zLVA{@qV7+qhHFiyD;j)b-QWrxZME%8yq9)Dm^Ky|> zqr*&r9a;Umr`-dH3xB-{3K>*mmYQM~$ydaVXY!6VE%VQ2l*!L8&@j=t-~T;Ff!rKT zkHJx)JR5wWV3VbaEZm%Om}RZ%Wphj`QwwF0#3IjRKEPSWsQ=8dQf_+mgxBHIU?KShKRUO{L7%lXA1wtR#nSQ#_C&U~%!a%U{T(aOhk8VA+fla5(D9rZz6n z2v^yejeNBx0zzOgG+zA^wpn;68{3r70ukQd?Cd9MnK5e2@B(po<+2Z(@7_k0u zYdS{hdf(H+*6~%A4@JJ}9#TBD2{YDpo0&?xFA~QVoG9)kRQ1(6@)-HC92>;A=ENAc z2IFKc}cV!>+LDprQJ!^NP!g@PY3O(t%wMzUcd9~Igc|o=-!x-Y3tPpoh?b2 ziT@L`r3p0@jy^qm&X42-5K&%ePdj8LDSAL_UWw12zBRLVaioQ4($&r|N4)QyIcV#O zgJ@h6ZA!2NAdqL<(*qM~s=Do>XKx%B&fZK9D0&qEH9nNp2NCj^yN1($*yzAn$-THx z8G9>*a&fdr@EJ+*LcIC{4)_fnJU7xyT(pX?d)VYRs=%2;F~S#~_6T9>YmZ=K$8-#= z9XkZ$PrXw=4d=zqbpJ-!_)wsQ9VxdPQe5)ddMD6|1x!`(dsK- z0iFDD@FImH^;Mcg$>GvuH!JWmr4E@UaY>AEH*ui!8o!REx;gh}7YnM!3+^R$CnK=S zi0EP4S<=u(l&6-_ibNLRl(~OLac7Qix{;$f>R6!q!>`P}K)76Ha){VI%oKwY51_ng z-b_}1X5O80PQF?&M z*ve4Jx_g|*Gl+R6JWfZ2In4%G`M3$vdl(9o@(R5H%P>Z2lTK=E%TP;WPY|dD55FsG z0}ma_vhce8o*6;GegW)<-Pb&Y)g{gtQK2>8I#!QUzsu&DdMvsRCGS{tZDYO`3WX%Y z>lzMj!3~Nk#MvTUhLTxGq_`ne{n=N&$t%b&$AfX0mWCjlZtNl~&8RXJ@-#%C_f)UR zsA#A%NcO>puv}j?NcBy$7+qLqp(Cqwez)HqyukHfNRz2pi`H+rmZ}F={c}Xv_uq_r zLLETX=f9%ADno!GUfo4>+@Q5gE3N112St2U~>D7i6!G(`1 z_JU&j08`tAxXS%gm>)VjJ;4EEOg!9CW>9}%sIj!=)8A&AnW}?=#a62F)4=sjstFhm z7mtg%tr-`oJ}z0Iru}|Ol!DOEq$mL#Jj)~io&>a3|7d_)rT!_r`oa$2L;XV+ryj?{ zs%rPlgeRwU1_=F28k`7ujd0rbYQ>T{T|R@w^xGd`HEj>JNfpRy(s+;Y?F(eM{-Q$L zQ)`~FwAz4WY*5dYgRAE}A1 z?2Zt_f{-zULf{-eZty907mAj=>LPCjqu6pKAnW(PGEd<#7NW3X-`O2^bTZRl&TckJ z1UZm|8~kDY)j!{R`na|A?VV@a_o}b9?^fSF*t+)!|GxkDX|?tE?!D^4qiW}yd)1SF z+WF@3qw4nNKWzTGy8C$R*~5E}cJAyvc>IW}+Mfq`W)brSB5pXHKil&z-xqn->r(WA_TeS&hUGv6~&ZU4mjt=E%{Q^+nlb)8C#~KirzAu zzx*Yp8}>py9)hmOr>)_jWh2`Ze`a>+`R#|AK18fP&q_j*`yf{Ch7-ypQ6wbVL{)-i zCLJ7+dyBq^B#Pju#cd)2lTnV8>l~BwJX`T)#z$Wf?q311fx@~%xb8@Lipo#5nRQ}< zXu?r4!|GFrki--E)3aJA>@Hx$;;uyWlj<(s;vEf~v1SEW=Z`TDrJ-g#(Q|@~Rh3bO zziPuT9CCX!ObdvY=D8SQkk-Jahk;EskNJ$NW-ait$TfN~D?R7Ah>+g5_xW*IVK+dE zbUf^%QLUTlX2xzno9MHkln%$Jku4*6e@Kls$jid+6|pa2vu28D&6Ip?3FS`#L%rfr zb%*>n;edUXXh~3Ar3D!;pg*3=Ak-h)M2o~lkFWwa1BPf1mvY=9M;5kYV%t@qKGC`W zJPNJ;=ok)$30?R2&2El3`PPYhj%QGaCg>6RJ$p344Wg_HxxBg`e;!{!#QKcdqT z!~Mytb~NqDbe#S6Ut)iM0<7Nr4jyMSB=*LLz!`P^3$oK7fhZzLkrQQr!-0MH^aik+ zICk>iNvOB?{^1{#wLsA($K&7Mx<$ACZkkbLb2vJ^&$`;+7Bj>V&sMNaKl%*3v5Y!U7KohON%i+3m< zRTVT-W2QII7g9)kTd!^5fjhBfR0B_3N`w}MF`Y9lGgFbe^dX0yDnhKUKJH^@x;jK! z$rcCs(maj$FOrCKgI!|zk(rG6RbUhf5W(SCG>)vAv08qT>{LX*Mh~I4M%z^7X6&q+ zkTkl6LaRU7GJi{IT{mu4`=jAewM7!VOA=_qlNmOBxf`h{3{L$nahgd8KWVkc=0+yX zQP8f5?a~-gy5Jf5VFJ&hs=8l2kb5CDd><|O4UHloE zs>w4omGX#r8P`D1HzP5#ZNs7nW#bUH_ z&$*Sc4|{-o4tklE@dLO8A=1K_FKtQWPpFPr1`;T@#9LUsw$lb(U`U?Nr+Oxq;uxrsRMHzR3r;SY}F-4g5 z`(XeTvsQb&=rLKOt{Fkh6wRD4ibctU3Y{QIj9TAx>n+SD%w1`62RvH#{N53^8WV|y zGF?m>7N1(Z2{14jIO>F<3(R1oD(=Kd2Ei~4kNsSf7!ZEf>fqMoQsp!Ya(qbJTCNlh zMU->RLYp{S1)dpbW`kQCfxkdY81|@QR8;8m^{WuYZeL+-OSh{~@4ZYcdmNr?Zn%q# zb!M=34M7NYX^=pp40L#*qOcJh4MmqQ+X)|-cVSkjo)22sK%$!lXbVZ}!q>Csg3ego z-n7>;v0vmkD3ZoV_Kg+6%v-oVM4v))mNA;Mt3rV4PqyhMAB=_L>YlwXhn-w^ zX{n0x6Zu6WJ<{5f-$RcMC%OvxTdS>H1_x9B)Ra>mFt5D^K&Q((Paq<4SoV|0Y<%d+ z1wwTBQykvto1>TrV6b`DXDeO7iK75;v%PDN=LZjGu+*P!c}ZNJ{Dy9x!2r@!#LP~r zH@xXhbBBjnj6j+{U) z63Nl0OH7lS>IKWKQQtv$c{Czsg~Adp0J!GyCi@S=S}2&R2Qym(%^*fM1=3mo6z{cI z%#bBB;Mj!{Ba7?G{2@T~byK9*2vb0FjKXq}dE=C-s%eXQo_rZ51D0pl2qsR-)#~?$ zxe+n2ndjrfcAO17qfyfTCezU*v@^tDk?M6%X|SbIN8Lm0?>3q)6O4I+eF*^TUtni~ zG8CAzaCDdZ_zNt&CMIEYr^hMnVP4Ht2lYL`BtJU-k(otH^O~WY(TI|W8wyc?zlTh?Ev>;uMWchbEM-cUGNwtmf=@l4&3J}AbRy%w zCRi}ofJvGo!5-NC)ucTr7`0sTHb-mrYaJe01Ir;bOw1TE2m3vf_B(BiGApy7)DFY( zyC+@*DnA}mLUP@A*CE9icXzl~3oV8hz)#dPQ2hZ#ERNdH-ItiD8=9~JFeJ#HSV&r6 z46);i$)_u?-B^Po!2zOvZvY;fy_01f!*WiBR~8cPIt!aS6S49lKv(rO`w@cr_N{*d zF&#?JGY)>Ka5;sT2CLVRXB3VTs&5j5%_Ww8yg-BVXT9f^jDAYY2gJhsPKl+>UXj6%JvT96{mFNf=$_Ybv@kHu^?FiaFNnnEW?Qpz zpylBWQO`rdU; zdEh1zH@6H6_WyCw0d^F|p;7porVP)Ihwz%>4gf?BJ~wVeRT+PrJ>xDG3#lF*N6T`^ zYLkXrOtPoCt7e8IKkzq0-yBwbUD|=5{RD?P#&vqj1S-Ijfs;>(ZI6sk2p4n(^`F40 zZ++c0Ax1ErBRa_y5>k&fTb0~#$KC!u2}Of5UEPNHnK#XT&3yh021H1m+miw6&Sn$|Qxw8s8Ra6@-$Ifyc#6uG& zR2C!0aU}&aRK5$uo~($F;GK8S)%H%LnrjSCN&U@(l12P$4@@6%OT>qn3 zSIfxDK4zuL5&w6WjDKa$a-p8!G^13Uw1PteqpF54dTwuDb?wafBuz?jNH+sFlf4M^FM?| z#%wc{HKbq_W7E+DIq*GHd}Roh6P6`eri^>R4;qchLyS11gs4i~KZaffC_QJ%6w-{4 z_(DDwg$|(V%THaf3g2;Nd+yo2kTfh9J zu@;o1l?DSgSISysh>dOAv)|e>Y9w6OWRQK3s9a1OjEJ{Mh&8jt1|der(ILsqU`R2F z=GHTg#G^m0AT~+zUQx`tr-F9M1F{SXpawZ`ZqicdSP$;(rnblTUP~3V|;6g zLXa8DLcC)4V|5Rnm&bwBXY5#OM>Y`bA5Gx#!Iik0BC~=Kg;hlfVCtXT#RX|tw;Au4 z4~VSb-oS(hO9iI?Ytj6 zdr7yPG$zW(NK>&iurYtzke)-S$7nIKTacT}&=9_4vx^0uA^dEX`ZF)Pd5iKDuq>to zBKn$$PVu?A*)u+9*X#-D3{ZWFBYwGYuPY8&zG(KZ@I?ZY9ZjONZls&x_r9~nlTE|P)9O23uILR&eYR5z{26b44= zAbgKdQf9WuGZmKr#b&)_^4d-V=zD=2s$(iKGC?vYh@mktU$TK@uFH`SKba*28(&(L zYo|*=>N10E^#m1u|a1oC?H{@agd*pVf&JKx~K= zBzg7bVm2g3gsao=I}XravTx03xdLCX0Z{4|fZ^sTRpFmlKHM@$5hBPtipX!AcI)lp z2HN4qq(MK{w5>us@iY(Un(dtz8BVW~bJj((4|Hgn^@vW`HWAU|esDoJa} z)AD5;Eg9P&LLfQ86SED$^UEt%udvfU9i>t-WX@e=*c4oS;VGm0Vfh!9m9ne#_TNxb z(3x;t)86s^_oh|+ZlQTb0ZIK|x1A)Ms!XKu{&+LAel8|9Fs9sMA4-Yju2U@e(vziv z#Ab1Nvs7q$yf2Ha-QSaYB;8jYE!5#>W7juj zKiKd_eP#pEJ5YleHB+Jx{Jotk$5{1QnTfIGy{;}k$^E&aW!ha_Jml%Et2b&p0@0dXXJD(Sr0X< zAV#d$cfhebd>x+gyJqR(8^#?*$^Daz&)IeSCVK=}Uo@`fu;`ZCRFMoM+UR8R3`g9J zs*hnKb-Q7g@K~xKW(E#En-WXeyv&r^Xr7H=fdLB>kj#R{nMZp#3A_J}k%D66EIagZ z-F|IDpLBg>3}S&m4zm842tpk~9-E#)fsfejM&O#c*=5bj!zWXAhC+7&I@e5?faY3eN3YhyF#tkiJczVf>XVprPsK* z6l-QPb!JO@ByNrLW6`l%1WCYEB5zsU8tiD1?(N*-10Qf;4F&JF&>*Ai1M-cTlq-wQu7_oiEJE|LYtlYu1 zA+OTf9)pjbI~8ooHaH!Stk^F(3ix3WV;x-`pBYYOmJ8D-i&S5d(jZdWK0~qAaS*t7 z1m`%G)3n4;{j*?AXg`-G)L8X8rk;cvu2CGL{d6Uaf`#GPlqY07Z+~qe!;fMs89NP} zE+664=Y{G1oj;I*tO*OUq(<6N&~o-;&0~=2tM}m$rhu)AeVdeK*NoS$Dlr-E#izIy zZ9KuMPh%?0s3_cZDI5an%+?ppOLQM77`Bq7j3A>kD6Wih0ot5%$t0y<;i`Lkb6eOI zJRQ30cHj1-jwgnRSB^D z{ox*NxhhY~YsPEyxzxHTa}%<@X~n4?^34p@9ZzR^v-uJ;R752rstaiiBL{V6fi9zs z{o2NiO93Oy`nrhnogt$zZX$ym7wtFCO)QjBl#FdQ4g%cFfs~56CM-_bZ0@CrAv9SUbxXM8)!w>-VZVl2}t* z_=l-IqWw5xRaHo4Dklv>=j{06kOY)DEaQJbq@UqHji8t6Y-^d&Lf=c9CvymHHi=oo}wOguq1xs{ntxPcTO*Z|dMk!SIB`jBP`xmL(IlSFFqHE@~smm<* zd}-5JBmzV%rain-ZrE1zaclq}8Hy@wM!DVLGnYW6Ls<$ePU|-)#$ES-N(H@fzo(|A z1&b_Ku~vB+c=ct^iS&kM{tNDF=1xo8CvpIvEBZ$BXj8`HlwAzaEI-DrKfKF#Xwq|d zTrHnHe#e99`+-2(5a}k*NF|*qwr)aHZ@R=!&vGiW>nAm{P5aU?C8NS*XR$otXPbT#a%>CsjtpSCVmY< zOTd+VqeHG>Y*68Z0^(Q@n}i`2@2P?p46)`zo5yDsW?g-E*q&4m#*iXlrEN09%1KC3 z6L8HBk0}^RiIJ%Z=?lT9(gYrhR+jFsY6rI~a21@!N3=*#T$vL|0T+Gdco?I;;g;l{ z>LH<{jj=>{iPKW)?Y@Fx6UQ?V3hxLNRDJUn&~MQ*tiDVx#m7FG**mnqqDojabT*E1 zG7JVTNmKErf^p<@7G~hW^A=sNrFA$nj7V+j{KQ0Kaq1fZ8A0n6GhR#?i4(I<5reJC z00MRaf5Ga}#YjQ*t#^8SFM~V%5E`Tsy~O7zsSs+c`r=(i57XOSw1la$6=({59rFp4 zqYKJ+$$kL4kB-SVkA@}8Yz0aCH5lrL#qvPZ_Qc#VsN?m*|&8DCb-9ht5#y9y7N&GW3S3oeK z?rR0s1e0`_U172q_3205S2P7D=nDibC%jcx&M2T?2+%<^idpm&4y*p`ZUAjkI3#B+ zmqQWIx^cej%mg+3@)m#D6vQH8jT(w$4JwQ%=YvH}yiZ_!ysp(oJ__!yNSKVq(q`xJ zY`t*^x0?Rl+2EAt1pWz|sn${RfnOd=K5)1#u5X%bqEs-DxXU-}QAMJ`)rtLZDwnS- zQ|ux)-Glbto61IZaaiD|4i}9f4JeCO+Sk+DJ((;M z4k)KLvpDJ-f%@2GZFQH}q0}Eb=uk#8C)7>&hb7fI5KrLi%YkIuSkaK$Kq%FYaW>b z1G8v0O<|P;CzwCh;cSI4V*RlzJYTEa+eZim{n8t_{^fi5^W>DIND}!n?&0zrOLixT zQ~_(nxeih-A+Vu`8$d#%mQe^l4$X2%dC2-4jjTxeO89904Wc6_77`^+4u{chQ)W5X zB(+72@x1XI?zPO8HFgb0WI|K{GaH6753(EH=4(sW1pPnjfA!aYMgPO>cDVPahu=PZ zvPI{Db$rTI+`2%1B#d$|+py(`%8ssQDhQIZ7*3QXAgwpBk`QwvH&{!igGO@A z>e1@6+`J7wv#}VjKNscmX!TjMsYuAssLN75Oy97gqWdpYJC_7?qzV|o!TaU0*^=6} zwA6|(Ga`y!C7V&Ou$wsC+kvKpYnE&F*OvV+9oUL|=NU6m!fO%hYnJ^!Glc82SO%Q7 zK+jNRUs48(=wyIH9Sk`cM$^GywK7;lC&N=_2xVB8wnzvK%*DBDzHLF02-7QCqJ7>kA~(gGoiZympFb4b$+Lru&+6QPmWz`od#It?u{R z2TbQIg2@etn|1bHtf)6?#QNG}zFu+5FoeDFhNyv^@zIb-t1M-g3Y?xvEr>DeO*@Hv zM%PXK9v2~^#LzuAqoPy%Z7iS=eR7|Kz+iDbAt2m~O1{iwE8BGf`3SOZ6^Q55S8L38 z*gi&JzY=RvjS(zFI#^WHgXW;Oz{Rqw#+ zGj{uh>(g1KS4aU!cu(W z;cB*^!!^n*0w~b>st7@@+)xm1ZEWhSw6$YAOb-o1$b6ovKqio3sprryn2R1@eE$|a zgd9G8DB~NAXBQ2dJ?o_HT7etBQO)5b^qil064m=e#ag$5hPZLj3>=IOU)Tt*-#BKoDf?5)4RM`O(~hj)mPogt8RC|_pfmN zF>~COr?uC+v^7V8bb}7gFum*@G~j-+})9Ji`Xdx z_O1IQesH#vl#Z+IpXQmoEkUlhr*FqW7jreqBl6m~71#g5>kb9O?7fqqe zVnK4m!qy8J>ht9O1z&|N6`CNtr)0rsL-|SR1trW%G@F}<1~f-efBFP}l1qUvpcr5# zx{F|XcK(PMknv_H<6kJDdQ#sro6_aokA>76_1Yh3F&gU8l~5ww3EQw_nVH2acwxub zO|)U)>8-`q!Jcsqs{oqt7|&Va9D+-n5PdJ0*<}>vetr6JmD3cwTn4D;Ei>#>2Fa(9WK~ynfkVxF70Do2^>2{aGB{fB3YV%NT7l=Lb|Ojh zLPT4$7*<>|6IY#FuvW>W{u#&D$(0m>);Ci1WwZOA#R_6bn{ZkuGOh`)>FF~r9HQc1FDeoZxrC^`Gwd5% z4o3xtqd2A`V_AF$YQ*(-9TwKPbOe!mOl9Dqxohm2N$P8cP)Zivo2aqsHTLd=6?s7n zK6!FgH5Ob~fKRNV*ztft^mPTNj0agkXUgF#E;+_>=z~2_NV<*)Q`|v|u0?(Rl5QqsoJ>fQIW^^w#j;62hl8sx-;-xX5s3pOJm)`E z6`FDG_zF$Az5={Da_^s|_t{IPs4}HHiAvxoipGYj(4qt=qO0j1~&>kI=H-$ zo@+aq8Ly=Mj^8kfC}jc=S-K1Z-9m#Csd7jQ9whGS=nwQ2n-@)AVB-?>76>C1;a2=7 z`HG;p_8!SK%V@fgs_OzvmZG#s`id@QVfv(L$u#Ti%GGeTjQ7}lI{oEZ-2gjgYzVgb z^ND>E1J?7_!Q!)<|Z`0%_Zw1XA|;7gBHWf$4r zB$L5X1v8IOFc^#D(Rgw+(Z$M`Twg2`CKD!h@L=4Wwv67`bNQ~g8FI@7t*eq|=2h;4 zTMk5O6xPS&8+T#xa01F1e;q6jg_5_qC+Me}ka1L3N+<$fJ7tZ>l@v7f^veOcC)ZlPhlgBcxvGb+E?d%n(R3MuUi| z!bKWCjaq+BF}R&!^`PQg_fQX2{3g_MJmCuYhzfK(9Lq7s;h_J<>8kE3nG0X3k{TO~ zdF1;4VIAf6rN$cf+vCH}Z~cPeRq1cnM_ATsxQ}AUrcia%Z4bQo2#}}L0-T@}>5}01 zuzSq&)Ueu?Cedf3)?c_9#!HaPDuR`vVi_vCSIuIsnLIruz5+V49NPcPFfE+n=K*B^h|{X$G47k@A&BCe;SBRR zCSY+d?suN|2Jl_>Fz=5JsAjUCiv)7!dcT7X>rv`Y9{9gVEhwtlEop3$k25Z0AuM*m zIq5LvuEVI$+?Uu36zc|+6>B!W_Lgq{g$HmPCqm53tfhQpayAW&%dRyGy8bUzN|RKJ zt^vmF)0UNICwsW}_87yB58Zgx-K};55Gn3K4;|H#vauAX!JdUNHIaYFlHf9A?30IkmvvtRA3^KY&- zv;{2)8XF(dIZoT-fb1I<%N-ouqyuF`IDsf`i>Ss`zy<9*PY+G*bz&KMY&Yf?K<`+IFLaqiUbuGo(- zKWfQdgzE1FI_NAfRneQVf~x-;)6<^*_zOv)T764yhdcIGdpsxU?hRh{Mnj%BR&pT+ z>&+>M7|(q(?J9NetkC4B|CxoTFG3n%g$xx3o(>)xhnhbB*((*X7i?PNj0eBQ@z4?qo zQcOiq=v4(Rr6iZ08s^D#V~QDrk~rxoO$}Z{8i-X&7ogUEv&HaJiZHX)G)`a1a0v(8 zkW=k@cl=&ATgF=?8uF^!egW$(RTZP*wm!?C^aZ^WZ}#7)8pzlJKR%?q^#W${|25q8 z=$X2_MZ0Z79k({M)=8ZUH9zR+cB=JF{<7_Np>wro6t4GuGUKSKn~ifO+pvEx0c*tr-8XjF}A{ zvroZa+L|RU0l~$AmfB_?4#tx8ee4kqUp*hcIijdo-JqF7SfaPi-ZD(f!N_R%Haf4W zz>HhoS71^*0c122klwdQHemx#Ua(q9Qr@uMGK0FQH+Z;ZX%ge$Zjv@8HSqseZ9dFP zOy(MvOZX@JCSbHz>LG+a zU^oP+?ZgNx)4{a*+{E(2&e8otxca^Sh7-lC*-yrkH}T{n)9;QA225he;nZXA&6JB~S-rg}0)U#G3_dI*bU!#8PA4Yg8BV!`@mp*Af7k7% zyYQva(On@I4{HpJ-rz_p7{88Rg-~BSwU6tlfAtT_<`ks+8_5#Vd@a@a&i-hqQ!-_S zMc-7-y*|dNuTmE>Q#m~pU)i4=OPEhmLkdn8CS4~9*!uGQohR0B6ZWO^BtxqA7R+bx zDO%DtT>t|o(aw{Q3!kEJ{?aC zkT8dw>+wOqj04-uCp?bkPvF*PA2<$-Tih+p7GgLvC|I6g$>E~;gda{reJkw^_X{S8 zt-XVuUBxSn$*j`FhT%(HvT=kL@ty~72U7-2m9;x8qxhyF;iST5=0wKj00zDe|5wFX}Cn32whReA~Un5W64Et%jWU$RD+RTHy* z-?6){hlRDv;Ii&Np-dQhST7hFbu#c6tX_BQ6&+CL`u&jKLJE6#ZAS|SUa`g`Wme6b zQ7j+RB3UY3&0~{v26p`+i-RPclvjq6y;Ki9HH^g>E1Rx|g8cJ-3{DK~hU9}@ zp98`bStg#v^m^~EbKlqRKSGeG4P`KqBOO}B$^~7g4*J90$Zi*DLerL6B(nlCe|URF zim+iG((cKA3pc%M)y~XL8>M5J1DyKfulW(}j$qqkYB$a0HhEV1GhiQ&k)vPLX=dFh z@7t~SlJfirM!jwb)L>+bH8QD!Rk1P(qC7pO zDlLn}sn1w0R)zILL?z*tvIATfH#t1gdYGAh${d0|$G?S0V^Oijhj7+9bhOsF!*2UH zaUEA??q`&qhC(dZEtLnU&wYbG{7`n`u-nIdrNik64i;5y1>RWi{Z=T*`v}lVKv9gV zhrNSCb1nLe;LnUZ&JUDP@MjXVzWK*4=^zNrz3Y_;|HRlv>VM@BI*O19v*p&?qt&!3 zc1By^v7^^*ohESVE8m!>JTQD~(ZPE0@J06x*&Tc6A)Ll%tfuIV>UA2a-uUK!-utKL ze@m%H{fUaRhseKlt)|7g=&!0 zKaGU^4%3S#Bn0VnSZ$`;kB}#dLjRJcXqj%`05;wJspU)9p>?i8m}EL(j+kUsVVSW& zT9H2AG@l11F~F0d$0!UfZl)CR6vr7B1hO%eH@ga|zC>*H1{~LcLi<#((Zgj7L&Iml*4L@Lm@`XWnqYaGc&1EwB&Cs%U`LSE(YNTCPwC?rLM{ zV#x+sqN_E5jU?NNKK4%U*MF~dFSGiTjz!;?9>rhN6`1fTn@n*OSjXYvq~qs$on+8@ zM!&uPE*+N@Al9FtZpk`y%)Mn4qP$<>9!jK%*zZw@4@7vI?xhSh{R?Wmw55&wGW2DA zn)XhSC6BPqhu9%zCWraSlnwS* z5amIh5nO7$7oJrJ`{A?MeOqkTV2ad7BRicfq^N)9!(EJ_Fr{crrpRtxjtU zmt!9b0i14_;7)X$u+|Rxg2^(Rv0db1rV}Jt*!m|AEGr#x@qFgw!Zr!Q`u$c<&(bpP zHs70r0n&;xKw|laKUvrsunW2e{%F89O7Upv*wJF8&7A7dcl%w!1}6fhX(ycDz|SLRq2@>9$#wT=mARo z3*F#f;M_GIuwsoiC;oQ)X7N=g1O{t&MkwronJI`71v3{MEQ*8)(a`u(QkoHLg$Iwo ze>|PoU9RLxzQE_1wg3s-`pN^M+vYvB&_v$EWwr@x!Wjmz#%2aH_b(iT8Ss?;Ay0e)tVK)at)uDhJQWf(4u(i*(wuMSj;Acu! zM2ty-_*+Y=uP_;RSH!(1f>2r$zEZ*Jhw3Q>?xv(94bb}6sD{yytDe*pxmx?}T{^hU zi4(Ab!ZpBF5PORpwHA7@X)Uv-s$|Q|?XoRpq3Y{Tk+#0qeM#b&XYBtZ+BHWzY45#I zteJ5m&&o*kHS*YC`Pm)8J%Ilw&np;0&So&zqMQZ^GfIlz;;w+mVVYhM9|i{6utNR} z`Ujdr6*E)0_Vq9wOarRE9xR^?yz{$Vi{D0g>5=vwW&Gy_>;|v?xfj8H#3KBjm&im} zjd3v|m{A!YHe^Ec?Dt-`5R9ZFr!q6k6464~`d70gL^j*k)#ubH%==bSK0WuzEK#vp zj$?Lu#g$1`Gl#T-T;HB0@OOrLmdwp2$H^GI@wH@=GhV*Q>6M_#FL6C`wtE^*5p1D4 zKqjhXR?R7_`lp=8o{Y;qO2|dI2gkp!c6!IACnD4Bp1B*;RF0Wxws3?Vx0+xRLJ6}# zpL~l9*);KHOTZ+wd^a!pG!3R+g3q-m3)G9ksz37Aoo|J+WzJy3mgzFLjQwhC zP85d2V=$tFLVF0~{A*!|N;~rfV?C zh!$zFDkZL`&CE__k;icL>eGX>qjA;3-tR2Uj4c8j=K%uJuQjpo2%?F78wx8Ksv)wN@pJadT9v&HT8>^lui-=GPu}ub@b{|)@(qhwS!v?lV4CTmc z+TA-P)hw$=zR-G|*)m$p=3+8{4_ktnPi%_p24Z5c+|6}`W_#qXz3mJXsJn=T%4Ves zY9JORJa>QHi+{!w6;BEaqL8Q<(gnD9to^oPh0>r4Vkr071_4tKs30N?>JWESXR;bX z0pPhop~=;GU`J>|{pZPD0gICfyD;LyS}}mR2fm)fFKZ^u%w%nON-7k+o$cYaUZh0P z=AhEhiQ`g{5?jV+7bzgZrz}<8qDRC!rfooOGi!$?wnY6)MFX8mFF5XB7KA7t0=kos zeX-bi-QGFP5Y|E_3!9uQlJxq1`?LptLXWQ-H)Ap(lCp8_ZAjZ27SDYa6^kN)z=aEx z-yb672&Gh^7U3z9it@LUZl|&&i77Hs5(9_LtGs=*Ae#%s&*lN~OO8J%?t*kCR?KIM zLJaCAd_Qjar?D8KHGE&jhSAxk3Ery^iyV#Iw>;|bNb@;DTXJd})Shhw%3>(TkSaY& z2}$rCEk42&2|^jq-Qi+TuGS^~b?i;zcIoq-#$q|eO^_IgFocj%iW)U~IWI=^5W8Q* zFHfi?X1$k@eHC*XNYWyy$JRM5*hZTb_Z3>!Wq|1G+s$|xHEm+Gi_fUz?G9<9QDs#J4_P`jC{O1SIjFJ!3K60eA=#i5J!5*chBKJnmkO7VQhO7^i(@HA zr>$dh&YzPvM$&NK@wfI~qFANXs9AiKQ~}A2|Cym#FhE!dDp1GyGVYb7S?iuFi?8ju6m#< zoSR(i{0tjoANEIk|8xKo15z>Wi&qr`kr+v0V%aKnxBCbnRv`De`p>y~zM62`Ar=3k z{FL~|l>dW#2->FnlJ7%L?|ld#(@v(B(cns|<}G@2Yltb^jYVF;KL5xYJv=y z#VjMWmO?{%)uKX>D2_F!LDNo9rYAIhWn@RfI>{XYNQQKBBwq6MV$_HzCieMZ!#ssK8T++xSjyhZk*VM$*#5tz!fak6(k{Ri5 zz!{g@W?PiSqPX9fnDull#&^{gklcOAeNIa(e}V}i7VvoXaPuomD((H@Y@arBT+xJ- zD0Ni~5EUVYbQ6p6B<{RX{OWBbYr=)Btde#E1I&v_3At!msn+i&9GaO+AQ+8!hKWKUJ2E5?A2F9Wu=P)yU2T zmMx};m7hNMF=VX#D$5u}NdKeC7*m+I=yI^^kRtxWn~~Q7zNg}5)aP+Ceq1FZ6jZa@ z*)vV}mx~iYg?BeML4=ThWbVh7y3S${z@WB7nsFiI&N0Vz*){9Rg_X&JyWh;3=oR9n zlYewGF@=@!{#~(f6x}0frA>ofOyMGMch44%zVgYL#c1?unbK&`wHl^0bu~Oxki1>g zY915IA+Ojedj`{>zk*JU?jMegk%SvRq0}QVhj^=<4)0J7E7FCLiSes8&u>4AE7yh^3rk=*W?`*4Ew|`V{QNs zS=Sg)Si|y}kLj_xq^Xx^xA^SM;qG7yk-E64IqszzCL@mL;0UQt%&j$1NbDpNB#Q{I znDq;))-NIcNP-*O^7?K+*VPDWZ$M=jBF9xkfb*&ejQ=CrDhUSR+Hp6ZW4w!|# zp&Lj62sbCMDqHYGV{vI6TZt8mIJQC#!73#8hiIpHW;dLh_8x^*UCu%trVe0|;(klA zd9XQ6muJVFQo|&MC*3EED?_=-rJ1=OiixDg=tT8SWq!}Zx=@8LIKK|CMiF_ic<$B` zz9FM`iFo`jHxEBBclWn@KO^(f_Ng6pi56F8|FUw%NbaK-j7THQaQFqIY1A4cY&ewy zx>06al0+9g^C)p;9;<}zPu4Gh*|VV&N=E-8ag3>8!tI~rQY?3Q$)ln@Zx@)f0b((& zp)x&+?L1GYkZ#=bMy)y;=pi?zmI()Ax|RgwetkgypnlK=B1!Z>OA=SE#+dLBg~~;E zZiLXIYTXH}=gY}b&0N5A6P`IXF0X|W*a*ZLE`@5+H-C5ky!1UaDU_OTQe+L_lryH| z5}`cljtgk+>eBa7W9Bk)uxrir#xg=c?$=98b1$uo;CWS*8p}w8=SGMws#X}|Rnv9T zF|JsU3F)L*Ca$964!7u3lIgI7NaPlon0H|a$h~}!g{>_H-FmRaz*}3?pjR;IcK5I^ zVt5jBK;+WpkYoC+Tpr2&b{z%x!LJmHK`R5kEsuUId6kKKQn`JspPg~*xweOtAt1WD zOTL03dx8WO@-&E{cclFgYnsI7ow$`@Bt$vVBNR7sl%7}`RBZDG2#3Ir zgC3tjq~W+U^W)a)%*OZFz&pTw(R@rE!|{$kw}-R{yc-Kg2n4xssaE2wSFV9dnl(9Xnyk6g+Rd|F1I zQKx{3zGZ5kd5q-O(*}bw);x(#CojB=7S}G|6b)1UB|F(lH%On6d!WH4Q!Z|Mb7vqa;m%!_e>PY)D9 zo6+OBTXQU^Zfb8k>An~w>Nb3$aeGDT7bq1mSnx+oVNl&)-q8toqde9209P<41Fhp}b8 z<~eiX09hh-aoP~kel7fK`n`s(qrF+Y_Q1m^yTx>$_^-JgXsVf8S)#+|asmzw5Q<+3p@&12AFF=JcMG zP$hVQ2!dQ@Lw288S^ z@evY)WYZ}o$l4fwfHNhn9UgE-;1lbpC}YlIuG9DzOpQ??wo%W9bPpXH)0$}f zp=5$0H-FAcDzpvY#)RXZ&|iCC>X*=_Ln#%<-JlBkPcfmk=iqM?d1CmQw5Nv=I{7di z(`o(Q4_+f3v-Ku4sh{Eqq5l*U-joKVYr8R+y;WtZnQ)csFp4o^@hPCXPv_b}NKH;34vJZ;=CbNCwNA<@m~4(7aw`70>jZ=`&|%ZDI7IVva-ELJJ}Fx(yt zqlX(J!1?iNAC@@W1Xkp9K+)f_&fi{P64XA!(x1Qdo^dv zF!RDK#PL07olgsBq#1rb-BJrN*5(@*)O*YjEHF2Q!u@<2TQH?E!D&Dlwb_YdyX~UN zWEpgwdzDjGAtJ>Z2nmZ@HBY<$n$y%u=j1T%CatHIaVT&=uzr`1%!Et$QBfEYW^nH5 z>-^l=;ixWH;Og%4SnfKQ0LnvR8;c1d0M}(4fiL;{YS{SxHD4)@LD@hlYP5sQ8MIZx zzHLu5hNu0V(ATjv)v!qTM4$lj!L7_Fct;wDK%z?2v2!vNjgSIEUr z#iG4OaAmO`l5#w~h;lsDo!lP}PtwKL&A^6%O^fO5Y#`xNGCL5-YQ6 zaDi|i$-e-;MZmJSSE+%LGc`yYWDF#a9z>m0hLbF%eslmo%F{4O1rRqmGKh3{>;#Zl zwC5gtATU7QYX;B#X^x`2Y0S)P;zYT&6CsL&0b*ydcH9tdw8#~OGmVgFX<1odO2vMO zk4_B`?$Z_7M_;hF97K6YMh_2hD`M4*T*G}p@1i|@&0`=py1a~gxP+d^#x*2tqnk|O zs4!JaY~V}P=snMnBe)5k>hQpG(D1v0pVBEVE2W9ip3igTyEp=tyG>O3k*^lxl>Nl` zt71ZogdZd)D{WeHHjL{p5OvULBWl$wyD#BOtN~4%CAucf0?l;hr37fjiiGyHS`kVz zWJl31^H}c6vcjU>ZX6!BctXSMR=FphSihWH!jmr-!V}KIUDI=QnBQ!zG5`f%Y&nBv)5CL>q zXl>&qW{7+=R39EtI5!E_4pP{fj8w!%4^0!+v1H}7P(Q|SnNmRDU^ZdhjnEuEEU?6W za@LZNNv4EY4s48O4aec&csHJjVkCF>djQfT1pmM1$oR*k#>SLYp2TKjB5*Tr+(JBn zMRRxNu?$32L0)1eIilu~iNW@3qQ)Xen9-xqxB?Q3EqAF%5;yNiZ>xO(^*TTwm|i_| z7Q&iK`m@){5p*ecNs4a}&m3yKr zB2g>OuMj6{f4zs>G=HS;HHuhe5mBD@>}pJ+a9)ikCQz z7FLutU2I}#ssQM_q2@V~`z(ZcdIApF)$kP_sgwGCYjARa07<*Gl@P#O{7Yt53DVtI z@dcp7^f)7qi-|aY{#E^{6}H40I;X9kX>ve!RY|#`A4`z1B&BUZFZu3A7DP*4<7yLJ z#+~P=N#VND6+Tgz-=9InV5btftZC>&_FI%YkamA!sjp#~DU^2oaA0?x0@P??z`bP3 zhT(TlA>z`MC#S^a1-Tds`|z>|EUv20OA>V9jZltl9N>E0@0}Fpjf6y;QGy82U3-zE zqxN}UU@fyxKUDvF>){3UMFp_?{j6uhWuKVipphRUjc^}sDCB6-7f2^3%J=9WRlY~K zq_R}LN8e^Rn~by>=q3sQL|zMtXh@WB`X5!o>A$YG#{Q5Z7W65EWC*^T-DmF1bNk`SJ$6?CTQKE$kwDfKHvCO@ zCH9WbYL@~kF01fQICrb(LR-Q3@*RV$3~g-V;<5lTj!ijgn0yLTXrKb98;4hrSiA{N z!uz?tDtRGj65dh$kFTKMOj&BArBJ|fS=b?2f_L|Wud*F9zV9t6VLmORIszdDv#r#8 zS}wu5$xtF?LOF8v9(*Ds&)k`&jhY)P6~ONLyasDin+O|9lZ&vZby~W#aG9tznVXAn z5!Fq6$I}O|sF}wI4?DD|2uM*us-SYDHy56v@a{M4>LP2-GiP7W?FWB~hx@16aC|L{ ziZ?d&A?O{uB(Jg1QLuu1W7{o=c7TQl1lP0#M$8+Ctrb=@-|rQQ%awm%=is1K5%E@I zb68<2il<+B_hVpiA5$syTg1kab8?V*eiZb+e&@Tj6{UKJ&GZ_p1w|?p509a0Vq7=1 zBKB3pg`(uzz`qh2*NnmD+MopMCVfF>yOba!vn^J2T+GgHD%6oe+zsCXxGCl7Md zLatlKJtR~t##o-CctgQjH&JN^J>_R)%VRB#o#g~V}B;qn<$oAX!a}9#+*@i?-ey41$e!I)#LzF4D!onnB z1Yx~#1rh}AlQm)YsvJ9d5DHb8Bo4V15nM?W3XKfH@hEO?MHErp#9C*s(5*9m!J_|ire7)=$T5jBl)!6PV?2;3fV#miJ-0t-GD2Jk=BJGiGg=Z+P*rRS;cgM1+`y#UT)tYPo(dtY1y4_nZT?b=EEc?K;%4F_n>DnEpkuY(Ua8h z*bP09U1zmZJdiyM7YQBc;C98C?1|psXR;UdB0p2@L{wTKwP6v(-CsL7+oJK)0np2!`wqG7L%?SUFD>%x@75%PlCiR%uo#s0GkLcAg=ENofC<}@@sX6%fQ9lL*_iWLFu`Zt3d3)G< z4-e#P5gERmX5kQt@^N2Zn<8}Aam(;~_zbC!r3EycCSIN;!g8uYmbg}m<0dr#B96fr z$9FR%NBSUJ(`zxu{LsS^xp+-$V!u1jNaJ7U zw}sULy5DSI9b+@2N-~A)i`CQB1>O?9uJ6$7(kfRzF^F?v!>~nwwJk%0ha@3#e0>X- zX&t|jJawo&R>cs&0d3D30k6ebvKB2KE{TruIgK?>CfD#gzCWdKVmJ}u6#BN<%Mq0O z61x_B3nWZCQ2XhN91!>d;|VjfJ$-vCe;X<#T-y~(UcwDgqf9ZX`xk#1SX?%k48scd zF%^!C>-J!$i=*fmqr14XMLFD^aU|mi{b|G8 z$1ysPiEjI(i?hE4rJv9UI>U$gB~Kq*0Cd8T1qRZxJWy3T#?qGvFjmT6x<|Bx(3XS- zQ6M+EilH92;bkJ)+OtFb11w-JCtlYH^2$-?sP*;q<7p$0iFqnA0Q@ z^=(Ev^FRONf6<-2$OdIQ$WuPGK@JTlf#9AnRtz9XoIjuXQMZ_Z`v>utLS@ zWjbfwhS?1@BH_z4G5TUW`}({!2ZH+(7vtI2-)5_@24za4a8CUpGg9`g&UeeXi5a0AzSP|6ZL(y;+WQ8J{V1CTy z*D>JCyA4+TpZEUhzx)&ZFSP&ja~J3N-`ztg&hu}5M6TvWKtGUv-oSO{6h=+?si64y zwpED0Wvb8g*R})+H$f!(-gTn@F5?1xjRMSS2oeI(Ad_@{9=k@-ihlr^*BoROUTT1f98zNLD0g0T+)2oE1( zSggV6Fo1G+ak7V<9CJQrf=3a4)jB!C=?uGxl$bxma14h+i$HF{*A)ezy5?CjGg#Y_ zK#T_pFRZquXjmijd4>!T${ej%97+%E0B+JY7{R~sMZ*xD*@piN4*3k%VRf?Eeb_YO zUGx3^=$X+N4G4kYz7)bo&%R}M1YL>YWlZmS=T=xhMWSZT6sPRxuI?jL_r7OGb-99Y z3t`1dnmAI853TRx!&M^y+_W$uI&{fr^W-@|ugmmnW1SfX*}I1i9!8S?_}q#T2=2f7 zLXe{56SUd)T@2^`&YM#%%`zWTfFhuY-~E5+SL$gEg+9wdxztAx^xWQ7`p-a^Cs@z;~F z;SCG`FG5eCmi?+}Ym2$IwrJ@jzRjHSxixX>P+Bzs0QWUF@pBkBqU~8F&2{MFX%5un zR8{LI+di5T`;cMOeDmQ=ZTSJ<{>c2_ps8PyiS^+e-X@U0<1KF+ zBmEKlRmQ+ecu_-T`E_5<0+gFTu5m`qIQ=$D*|;aHO5j@KgrvM}_!P58Ck*_aR{U?so38nC>rNKp%B4D}eJX|HLfV4ACS(Eb8VS_mWv8jdZEX{^Z zfO0q1JSqv=cep{DIi?$xU+X+die^Iq9mqWYsmC3 z$TLH+1kqR}6nAr#`!a)X5`KRlXGCo}dW7TT!Q~wLu4_~e8Gdon-E+k_ZekT5sU=r9 zO#qJ{P#sO{`A}1_8dP`}jjB`;4!qN3?bsFj zsLos(cFz@nLcNLSf=9=gD&Ep)^6iEMo`#c^!4_YW&+TDM6_0^B(^yMm1$UnigB~HLZ;lv zd3P@l>1!bs(JAySdx;QCiM-D?>q#-Am3STP}J!p#*l z3B8?jML_Njx+b(amZGbtLqME zY5(mQD`2+eeXx&d+(fuhzC+LZZ1geIy%N`bOv|U$0xK?rre!|~G9(I@z8e07*2!(W z@*X+k`29!v8!@$#dxB`jkJv|DspaYzTKu-Jszq{_BNaD>brND8a13M6-m^n85qKwo z9rT)KFd*)e7j#8-2zOX0Wpf?@s}IDtVwB)i`R(F#SYQnx?#6nDPn1wri|`cfI6fCHxEhugq!L4L5K+cp?hB1@%-Y-AeK@CCNC(*$LW_IOgqGtwF5@A}8y?tG)JZ6w%xY|Bi!g>}uK)jc68mus3#O0#kB;cDDf;;W)#tpH@Lk55?Jj!~dSn6w%HP1=t(P zMC?$C(%>Qee}parn#%yKg<0XyE}arGm1I;bcSqKQ$8g?t`f>vmG8Q1cBA7#c_ruM8 zR-&8MH^y@#`MrT`>_S6JeaYUpe0AmldD(O+jsg;re=FLZhpFn0rg!PlldmsMUh zW~XU9}*G_^p+^eD(p0A+@Z=CgTUR*zE4^(47wK2Z0qGEv)ZJ!FIby zR*i$k!%9{^ZnD@QC|MP_`;3b=$Gk(zMxuw;t6HkL=tY3=)DS^MtBf2C_TZ`JKyf37 ziTsWJ=YE_;?_-yC{bjbeFgw4zKA+8ew>Ce&G{3x&y#vh93PYj-OkQub=da6}#1&3v#ToCY30 zf;L9p@9hq!Ml;1qtl^^wV13m$m4$;39}lv5{gJ3*`VFG84OwDYkgsXI?_Bk-;$Vl0 zSbSCUCd2;87uY}n6~f+mMRJX+OVONmBB*%drc{Qyb z;b4nCRXs0KT)#=&WC(xPUkC7Zv1`M$aSi*4-t<*0BB}QK^yu`_GpsLZfpyr%b^;=_ zF{*duScM@>oPCX4PwHVy!n!B4ZLgd46h28o1Ci73Sw@knzDN|!+Cfwhn>c8c9oR+4 z_0+|>vS_p?ynwk4U=A4+(cCAqxFrt7p$K(y#9`ArB7;oaL<#n{`?%8v>(xpFppGfc z7}_}%cy3I#d7=s7jwj~0bJV<&J7ERsbSyB2y98N%xaG>x=>dFMJ)2=U5sM|}rG%U* zp+}H3?FvWVj+6Ox_2MJHwn4Q<$ap!eCde&+J-vOvUz8cH(Z(NZwjMi zC>#(%7L^0U73g(rpuzZI_c@I&xu828Y_)$?yLj^_&AFzp}oK z8hbgB%S_k=MHQH0gRXG)HZcnGNeImlmQ-;g;w(7fx%(1Zw6F6KJ=T;BXw9jkQ-5-y zaxf;;kv6A2_)tPa=AP4k?;gE`-y*gRFa7PfbnjwfLJ&Fi3HafB@4ZFFueVZPkA#z| z*$6 zB9slXxYKXHhXZo2D=zM8?{JN!c#NUE)xhq~TKhd*si0gXuew>SjgaLnyRWv=HIA_N zy@Ni6a38OAULz+L9jt>FoDWdw_U?d0=Nf)pzv?p_5~9&$a2GztieLK=79o@OxCP^tR9@695b*+RO9AMZ=%P)g*j>$74K z?HXPOBe_FCsqTR=vxKCE=ziKh@^<)mfw-*``d!-^*YV;{t+zpP<7*5ZYXx*F{P%P; z$24(5^@wp5qNlxamBY9xum~h?z|vj@s)a7yJwaI97LNG$`^6ktHH;34KGBLXRx4n+ z=dq`h|4eC_`2sfN7m*7m(JttKy&dEzFU+fno{rY)_MCW*{7}(*{t^sR+l1XD11x_p)KqcYHBjgW z)DiOzEy5H<~4xn^)Apq(DoVMqJ5|dMKk&r`?Q$RQdvlTTkQqKSF(w%t z0(#fklB84dw4SJUF0@q}W*)L7kQ}*5=Zt9jqdTK0p%wKmQFEN=7J-<`pNELWspl-FD~1}n|!3AL{x zU7ph;EHdEaW95uKiiq4dI|oPPP_vR&OF0!nWek{lJg)cmY4ehHDB*86C?ikCBtu5knJZx`aI}%zL z$wMe^qtYQzBk6ec+PoSXqsUW|$0hO)T#+ z2m8OPMszpVXMPOl+U}uS8ce+s-t&lOI_C)} zl4;@5a~#Q=$zD(>AkMnbf|>edN(nhx6V$J*T|!ufv*u6;FTjbpM^AC^aa}}(cSATk z6LZ-T&~=l=BPR_@pil@dpb|X8G5ii+LJ557)9YIEaOl%kJ)tm$S3Sa#3;>UwpxM`9 zR>G$*+Y6cjU|jieyl}dZtt7E%9M0`=d~O&@S)vP^1zHfZy=F25kQECXa-U5{TO50? zxp{GLMpM#neC>~KFK~{c?0alURM6V&Da~nd4wWTun$DrJyP!3YL^v31G}~8j+ao5; zxpD6H6F%lg2xr1i?BG+4B6fmCeMv zuc6xq6gXo?K%+MBIBsH|eO91d7i3f$Lk^c!zUjrj?|6BX*y&Z>T`(&v05MT3i~7*L zqEqgw6=`Av@l0yPiU!rpYb~_~JmYsMjMF|Bi6{TeTXhK_0A00}&vdXOTyRNaK zI*5J63CB_=;-K;sXJHu@sxENuUVcF`trZceg38Nxkm$Smb3Q%+)3b70sK$;$W%HLn z-Cb=A?S^^XhC*Rr7fDm7K*nS1%x*yKU|Z^1u?XcRl{vP4Z(w5#UVaG>tYWRV_9%wO zR-w|l8RFtt!MF^+LcmB}ODXU5(jg~8aich!L)Prke*2WA>lz+c)hn?VrlZ%NIEnzs zkUfrzjt-N{WjcrN-eH%~R3kA9NM7jo@N@Uxd+%Qn$^8+FBy7%{3}Ai;3k;w0J$xme16sE07>>}~?_Xh!0%MQY1t`kN5$zV`t_GfuNkjWm zU>QUQ*kajDjN`l%TnBkME{2D5cgw}VQpq2cyE%A6F-h;Y-VL^PJDnp$j31qvA|x6@ zH7LE~nFWm&D1?TF1)8qb$0?@eUG;`%qR*8@-c}xiWHvjmAbNF=+TBzmp#@T7L!mGT z{h$5_AQl-sPR0graKfl^-Jh@`@;c#Vtx}BR1UDWtH-w2|O;EXt+`~0`iXmb?i{{2? z%b!FxWL>^Hctf&|J2`MR?;R0W?N`@uFbj@y55aU(Gs>ga{n7yW!>~fM$i+`l?VaMS z4C}*}*m>hqDbgjf1nxJb;>jihm0*jCfWqGKg(ca?WeL^to^VPhidTYkllmxbu4!Ka zDDz{=sDQDEqZ7DB{J7QGgRh2?u<+2t%^9@rWLb{YPP`UgW>wT2ljAg0p`fY^{?hPXw?2i@0nGfkE3*HK;kwkNenMs?i~ngJ)x7lYqU zjfwdnh)s#h!aZo>U}AW;0au1Ki4>dGPF#U z;FSgQW-Td_=UlMv9^Z2}I60zSPP!4PMH(9Q#BD+txsXaS&k?_X1&|NAh{y6@&mPPE zeY9-Uj!k%VroZM(h(gsBr`(+JV@%CEsVgC2DaIc#Ff~KG-w(idfAEyZ$P9O--^#+C z06zHGl+q^It0pbOEq?}yoAw38@4mz?sozPXz?@K;%6+v-P9^P~#}ph^xAk;Td$72-i3+QHt?G*c*d zg?Jbha)7Gzj$5=$MO3}zNnF)cu^#X4!k2b^9cYr(GeCmmh9RjqwvsT#DyXW^q$0fD z=8AyzBl?}KQlfWq{ajq8$t6&0vzDch)K3gm0HlBYZxA7Ep*0~5<{@aJu$fsBUebJCmY3xXk43N9qNPo;efl*)6au`&iq0g$P4}iLJzl9m z)!>v~fzDh>UOXg~$a&FDw?pCJr-VIU)kcXPOSh4QbmO!9Aa0xMN}or#8*Pvnj7jPU z&Rq+UDm)_YD5V(evSMivrC8YuMNIeE5+9$=^t`7mbs>~khY~5e;D#2c-+N!#{x!D6 zDhm_ixskQr`?%%DlvTD-ViByPiK@ngAYp0r7fSKZTip_eo^RDm4hC2w=IMH^YN%rc z4b)3k1ahOZF)kW*l*mX-pciZ$M4ts~&6sw2P zZA7?^>ow+zaone2vc}_<;v?jT%sZAIt|WG{PvGFU-trHvWB{RkM!}<%;Q*&c)G>#; zj!<2X_XqDDZcUqdCiYS*+mta{)3^g*V{tuu_+Xk^@+xAbfZ_q3SQ2X0=pg=%+R0@!m>d3~-13IDWN8e{ zkphmH6RJ$Aoxc~V&Na!OLt*CJ8tlmA_q5u$hLUb%rF`J8d!qPmiY_H9Fr8!74z+ z;WE)0^Tf0JO;fO)K<{xMj&l65-Fee~*G2A)So~}3G{Aq> zAplj5Lvh`2l@x)rUkGbOGifVd#byro8&rt&h;ZVWaSOfx0c1fstI=-&&?jFT&o^jcUUJ5HWyjRPt>-nnX@Uld(qO?OBYl8S zRElmVJLt0TS&f`%>w2A!*s*(_i=>dRg4Ld9T3=1t?D~+{M{Qx+Y>L}A;JCXR_=>!F zl%W;Nxqh2Bri7$|i0g4M+tP(IX{<=CJ)-Ljwwk;VS^Tagksz&!KyXTW#Zb0M%J% zmMf`9?lR|V5;xbK!O1pGi9(?ubp!s}($!hamk?%A9C?cBVQ^R)S)zCuc$MBNZ;T`s zMnX#l4Ql0^Hel!u<`iH#^%W^GI{j(8u7)vhj*OPk;QG!Pa1hs?A*H58Y$1&zV&6xm z=<=z~giWm@HHQfmt%P-tQ39~gkX_k_*^nm`kN_7x+7ikXU9LL@3W+o;MUf<|om`KV z!x0T03_bH1WB3Xf`6#s+yfs#i!La9p$pOW+$Wx7)pGe+ASk40+F`{{rBV+uD?eKe6 zBPTfD(?6{oVKvl9oWWvHfWq=do?v+?V;v0}+g8^w%rHY^f72dssxz{~n<@?g35(0{ zrCz2-Gt_-QsA(MRAe|c={ut|gRL8V`LKtPhz25Oifm%;(7h&D+Q564WHVe+~PWD~9 zzYVW80x0*Rv;Y$WB!u+zr5o>=qL=m%ru7NFdCK>+5dNn+S zcsGxRH9&TD9HH+-x-CZy$6bj-aj+f{xxvv3{K#J>#2v?c82{AaruCZeDUKW86vV7M z7~sS|wcZV1I@tEm5IB-r4B|*AMOE6x3Q~(2yb#LKDu;4RXaRJ}j%Bol30q07SZ-pY z-KSGTu|6V3x`wDy88%=vSj6CDe9^ z+q5yEf(62rJeFXJyf@tM!Muz)6Gl}KA`hT-EW+9GIH}&E%1*4INsqcXf|7HQ$16a& z$qny|iaRlBdi^2x@q{d!d3ci2Kc7e8xXH z{|jJA<*r<$7AE*ZZ=j0RP}iude_bmJ{s_y2hm4T*(t<&b8&wQT4U;t(NC(*JP_7)! zjcm-XZ)~lu&A(juk!po5931Z;^f`2OETkVo$QD@%&0X6dQ;Zl`xnfixsp1Jtvr57m zqaxHW5L!4l{$0O!azth@bNRkQY$fj<(@bOMs~STiHZnL&GlGJ8qXjc>5DPe(^)mem z$B<0-)sRo?rd1GkpDDs2rVT87vj6;#zms!{sy8Y>tndUREQ?&rs3*Xnr2POlv6w*2 z{?6M0atps{Vcqfi#16)UP8I)nl+~#cOme2YP>yU>IJj|f#Sokxrg0Ni0J;L9^AHH! zbL0Q=Bg5mkD;xMLTadeaP&aZwBgTd98pUovpN{Uw!y+--iwojPEceLe_qi_vN9KSq^vM?+>v=oemts|37ZkV2 z#&FlKwh1|Jt8OGpFhC1%Lk+!;NZz%|EpZKBbpyfi_@(fm4PXMW1CCq=a>u4@n2NKA z#P==9#~t>~@6axOtGi1+acrFxLqlq~%5o3=FhIl#5lgl(N9XW73ri^N4pgtM5}HAK zqd=VFxT`ObA4yKvgo@Iy>Eg}{t7ruvF0At`wxS=?ZxIoHX1<{sho`Ey=~4uk6o`IE z>Y-2RRorps*G-%hPn?T;bWK`3LTaSD6)>-;lfdb+bXK`p9ZPn^1B`M>te45U=3| zkMLWb&fh+RWCUbj8S)w%k{-nOsg$6A=ssN%?2K=m$u{0nTE!mzmFi*;hO+SD>J6>X zi)W9Tmc=5vFHJpd~uJ3^uiJ~ys-60N%O$tCI-F_9}7cIVt%Jg=kj=5ua=p9x$CagTg z$A+ffbR|Z|k!%W7oXtqMv1C>=TLU;dz`F|`$c_K!fBe6=$)2D6=YRZvQcGMK)+w16 zi7kjQpy);4o&m$%)@XS6pLcAK(N(M+KvnF$CRBtmtly@XhD`Lz1#7}|G&LiDsCEVq za}-sDo~ftBukrM8wvvj&5ct(`-$n=~#4oP_OY_O$F0P+D(7W3R$W3j)n!;Zc<^!J%ZK8tY+VSz* z!SN{tIh%o2XO0rx_y7pLt8yqT_>bShk`rL?j3S4@eq|#6#PZY+Dtgm1#2}cS=wm!R zO(44hqPLLft>S2M!V<)52s~@=Q(6X!z1~A!17);;?xtF1*-XSEHN;Pk=(u#jf0Ag+ zK&&rDtP16>%;=w>nc^z;x4V$d{wXf7wUa<%WfHimD`_Cz-5LFyg-dYhVg?>*<5C7( zEWlg!MsN}%JQRTER59kG`qEvzg6Ad!=c<2%n%^eYZJfm5YcXKq?d+cvce3hKAA=CO zCMT|dbk|=f545P~K@qNV5jcdiau1?T<%QlSx2wQ&e|**JV`ym-VhI?XLt0(z^-{|E zY_WaXqhm%W&{YP2-{7t3ggO#eDFq0Y29$fw|MD7)e%3vNX5wWTZzW4~L}!11O||_t zPO9=9C5ye@5tnI9%GB-b9V368DObW)z)La&OWlKrP(gCPeL;U`8-OK8DJ>6CDh@cs z(NtVg3q6NMnKT7BesA-BC!C9gGQ@qPg&;Kd;Oug+pKKLDm)U~%Wk7gg?e5^p3RKjz zN*%?7Ayc@AhbkEXx=-W+Rv*IO#>oW)w+22mOU7^TrCew;j2~LZ!X(Jk+Qdtx)#1*B z&`ccW5S;f^o)kK64x_JGs^lVGq`~|l&Z%=Fln@73DY~N=OID|)stXkXx;s*ixxkU- zmurlKBEWGRw?|^~J)=DUWP)Er3q9GY(REa|=RK&C;V5vJ}naP77a6{w?Q1G0mCq-24)I+XC>Q zLz9w$V;upt1gXjvhymT*1zHQkEAvZ_QYP{>lw|Yp3g$jbQk1A4iEv&c#b(h#l?ZNsyE>gGGNCgE%_q$pB8^MH< zquk;x50B0poS=7vdhSkmG?Ey%5-tdVr$Qy@Tk+`LK;~H5tjRWPJpwQ`#m%` z6ys_S;|3Nqa!nyH7`d)dc~(r&Tu19qXP4)V%0mtH7|vGM9M99wJcylJ!i8s<8aL5W$2&-d6$Qb%stGTMFj)2@a{!5+*aiivT1s)^)F!g{TtD}yqyEw3_1fc^~preSc{U@6g_g( z@?oqW+QY+%J)nCu)Rg)*%N96zmL-3&d(c&o3L3_+wKi!TA;DOwaLENYoUlf0 zmj|cCZ}@S3vpEeRo|d|DEe-kOOoi*XNlH=^gSnA~2pV*}^itoSx{P8$t)rPMD8-qm zfNnB)_@XJ0Wfsi_OQ80xKf&fGn~sV^WQ@rd5+Z|(+<3$CqhAzMa-B+gc94*}>N z#k>n-6J_({MDVlm_t-D#VZ)8iAsu&799m)LJsyf|dc1bYFgSsbYwJ+5cUb#ZwutX~ zyhS1K?HxKJX1ME2R7Jy!X(K#0!Ht3^a0W61YRslQ|MJ6E-11sgWsm;uen*QVCY0t7 z=koCYX)Z$Ec4~4qzJS!XdjWOy3CSILFYwqMYT$6PvmItx$v@hq}u$nRztYgoX z)d!6Qj1}0kR~N$HAi6?>_^$(un^;BF*+#0Y5F_CYM`YHTgZd+hyPoWBSq34m_u z&+;kwi+Bd+QM=zh*xqfM=C5VSR2k16%Uxe&(4vLG=F>iuX6qO?ZrK*E!&&mpMOcV^ zCQQEg+U&1}O>LHGdV@U3mi#>a=p51AATI9;eS`b&(C6IFteog~mbFfmSrz$9z4NI+ zu-r$)#|*6b`Dv>?Xu%auXU^ggmB?igCg5T2up+LzB|DMKo?#;rr(D7rHw@?SdzcJ} zpFbuVc!V#jN-GHR*YG8HX?VFHnduV^6%h+wB#Oe$??J z4Q=fl661(IK$C5BcHSIz(XU)PRv1`_zQLVN@HyKSt|L{&IX=d6BTEr7D#`&V;!;uT zFP5x2mUL-8uyAf%+$wRT5BH#Vn0{~%mK?1L16ahh9pg;?=y~w{rK%3#LW9pQL4>1suyUAn}C0AGm^7z5!j@!i; z=9&g-Sj^_Lj-t8C%N`dsV;e&Bf~i*>%ez!BkK;a@$uNf_LCbazrs*=>1wI^Dfy+ITgb0>bJfC1pxjOJhVb8o&0^N}5ao8iU~f0-Lj`i< zYgn>EUe-LaD#ZcrVCwkuN~SIAOfDsnF=+17bpjVn%$gs110U!8)d?s9PdWUO)fsg< zvYH&~{}UfqS;-#cM{TxPUDQ!kW#6VE;Vw-!4mpu*CO@@>XFYr-829x&ZA|%CwZXQ zp7Q&(Sj2L24E2)px>BNBynSQZp^j}+=>xQobh??M$SH`%r~QHMl=UXb09ytA6^t<0 zU$`fMuJbKU6HTmwVYoap(89xM8avD2^h8G;l*d6tm>@eCK=YE9uCt#orjXCF$BC4=^Zj{PY%h#MlpuO zAt%m8=WC-XICp0g_!8%cC?vbJ%;pzg z2yA4lj`>wNr3jRsz&M6N@iR3q*z(O8o;Ba$N?}8rI5!v?o?glYnjzfhKXjqFaezA7 z>yplo*H1i&y~n8@WP{v8i(_SDC9lpTR+8`{pqqFF3K)WcLN(RlP2H%$Fs{M(IY}y&qLd)CfapK{~0Ko3*rh<(YCCqU&84%ync-0#&t6` zug*Ae9KbExKYiEj*m0ehEQd2iSZ;KQfwLcg?9E`XRc$LIlxE&;epp8kWtsno>SOyP z(O^M`enpcpO!$t!-$qc}$D}gU!smN*vNs6YqqP$sO=MXdv?$!FPsuO3ZA;xq77KXp zI>&G!0l*C5bJvmD;=wk+rMWhHc0z*;?=*oyZg_-wY)}JAUa-#bm)Tyw_X{>R!NS^^ zzRV-%;)QV|X^F53Npe_u!Fxjnb0L~5F~|~C3{XCr2B@*_Vx2swN=cHKb`o@o6+w~Q$FmY%$*Wub8@n&06v*^KFJ5D1(Sx06 z6?MWvm5>|3aW~~q+l!O#KEfssrTWCilLA7rZBoF5j!SS6iu;4EEuto-oxv}0z!>Wf zTwBbJO;As8Me!2nW-0{nBvx|i5-6Cvk5gp_*fb2~@f#*StU`1xv3Cy+PUKFeSel#Z zT8oEZEXB@?!3vR@UQ`mjLG5FtyqQW0P*H3L+ZWWot*S~UoC0UGvZ6sBN#j*ikc|Q6 zmOhW0x0!mUdI*-g1n)B4Mu~>Zd050uOE%{bEO$wk&BXK33Ej?R;1h!~HwH?n=mp39 zag%TR!tpbI{*P4xa(BG%B6$M**wIaG;KuPQ!=1QwOgoQX5<5rUcQ-c)hfi){;TyRW z$FSnS@#RiSu6d37Dp5(vn(1Fvq8P`GZTei+;riVv|ML%D-iz&)zh?;Z$2j()q+w+r z&&{`e0sPVo4p+{)WEwZI?v+w_3{!+6APzjr#K|4IPFH^GAw3aX52ABJ+~|o_@bCgC zkh`x9up*n@GTESe5$^*@{tbxXJ47rU!r3UDcq%PkjY~`wF0@7xJRC%?NHb2tp)bQ& zD;|eW_%Q+860-rfA#3WvqIGs32wI|EKD%&Wq0A*Ovy+l@|GXG?Upm? zHE;OivLr!fp@ecoMNy``c6Xl+>r+|oXu)vJ9fTBjL+|u(-ILY5i9Mb(`k?^o zkeMB!m$7C9^1xUp-Z?qKMd=jFOxXkZE==f#!lec^S{xzB{IYL` zA)xTT>Nl9@gbv2HKbmpEb<(kCm%w#gXH`v7fDEoP&sCoE5({5H=`o}~>u+G(GoI_R zmmTcO$oT_0@UYgA&BXz7TJi!8&H#BY4yd@}p?r^4w?b3FkX9%`TR+illt2UkqY<%U zUNp`0nApz>V^6vvmWFCv+*qVrJiBNK+(1K31!7hO6L8({o$Tv4vC@#xhtf$Qo9ywy z{_l!NZUVaiz|Q=5V7`yap8pza5sAT}kq8^0P2L|r061U-ikEx5{3}v+HXmB$!JJ9&zG>1ZJalbUsY$m2OFKg4awI|t<}O%kghVe~IWP2Gy1aEG)QH@Kqi zkPm(3bl5OKVk;|54e1mL*#q)ZMOmIU3vHV7vTLut|0z{Xg+k)2sG2gT<^`cHy&qbc zomLbgSeYU=q25ykDTBJH1#+|z5vg}Q$uJtqaZotnm+;pLGhQh4GC{bHH+fun0fUUS zvn9H0?6^1JK$KfKBPRFCN+;I&LR~Fn2Qi+zwSVXvXK@n+0j0K;OL`SCczFTK@F zBg(ff{hpG*zAd=w65_ml^4f2K<>glh?N{RSb>@Ta$jd4mU>-j?-We9qn+Ufzvmp$- z-rH^b-`CwD;!u4^9*|M`@PWUmZgXQc`{KK$jX!1Yx^24Xb+7ySL|hcqCRcGr0fCvt zR5}S)qF=}AYg!sbaaT9>E5aW=IYAnKT`I+5mY@j62;TMhF^aw6<{jnOZLwF<2vWin zRD6gmt_~4~7{-loYNg!YdhH!nJH0+OcWmV9hG!wny@pA-sX9KeGLwG>hEslFT zh>AsnU7w0yNsrVJ{*(~REb>Hn|$L=O;|o!&ayeB z4J7vrBS{e)tNrdapRLY33#&&|qksCQ``X4tCQKaZ1br*;2!1c4=DD8vBYq;xPJ;Rhd?z~2@Lcy3!Om)hp3SKH$ zf#x!%a4#dS2 zl`TX1G3NN7ETvSM>ri%WgfNlZqX#CnM07tWma^71sj>A@-4+4OAtsfMUci69PiY*4 zgo^me_Y9RHvJAN@ub%!{<>mafW_g1NAIu^%-d6*9aO(4dU?^EQBf9hGuKOc};`?e zqGe+=+N#kbe(}kL72(O>-Lw?p z3G%!9EZvd;5!UFe*XBNEb!Hz|1WFR4a*sT|upR-D`)^Vx^vH7OJuK5%SV*+NO2!$C zWH~!XX>Mnb(_tA7b3Ob|%cP3JJ#WxrMa?2@{~VWNNa3Dmt!xH^i+sa$$y+!M!ojJb z1HB!u3Y}4&JZw;&;zX!O?rSd3lZOyrzX?Lywd}9qT@qT{$q8tG%)X+9o>-;WaO9G7 z0?GaFQljZ^u|0FN-`(jRXD@oaV>mK=;3tG@bzv1Z(5b<|;e&8K2S2 zB;|v6ts^f9L5H5azY@ssiMuEHtEGmsREMw-?&UqA3~}S zHMN7V5r0~b)24XylKYd+FUT>N{3JtJ=ASmv64j-HmXIEO`h;X2o&roMJRXq?643z? z=7r@fX1EMz2m5&DbA8b7Fg_|;@7aa59+2Gs;MRLat%s|~2RrCcPAIOiF^Jy&zp=Bj z-J#=#+}(R^{W6UF-05Wv3{~0j~1ir}SO$ zOwjuKJ%lcsUs&E)t18bo4fIE4-#+^WcOgmJeS;Z*r60!?dq;9Eg7#H;?M+2OPR%Y3 z5X+_==dvqH-Sfv6RWcyCn_RNzkI}0XathBR1yfb9UReJ;NB=w)R`kzI7UYLS+j}fB zD6xL;X9QQ_7GDIdK-C}1wM=R~A zwa(h`_F%Vi51SiuZVt}#ZohX(H=R<)71KQ_kRHJQl!Lq|(f|DPpZ?1~(f{0yT&Vi8G19VQEa8~cS1VQ# zkYL_r0hqgV)ZKY2hEu*;8g%wqFY%OeAa+i>KZ*NcUf`1<+0GjUqt7&|+~ z-Z`ttf5bBK=vj3LR~;D%F}unggSjiS8X8vMJL15qX=@BNz#B25;f?Q;NVx>V@Nyqp6;^F!nCPl~llU zci;kmnZ9$JVY8g>Ht}~f(7YX7hvG)9V8V*qIw_KQS zV9+nZfwiB}U1=05j~vYi{|QZ1D#gVK(>Jh>eJLPJ*!jiUf&5t%+5wTm0s?DK$wgWy z#gnh?D&ib%K~U~8PEsJ%Jlo<$s)rZW>`wsYzMy8uU*Ezvh7p332^d7=^U(vWi-~GK zv z%&~;~ke^eph#jh8o;?4wzSBEm$?Q1CS_zx2-G%Er1l zIeG*+%A`=V9;aQzH(1e9gsQk%)eljWxCAkv$12jMy3%LA3_VTRs zALLuVc09100Jx@mLcW$SrmCtchCd!$S6Cy#O`k`{_r z{xZsHm23LqMjD{p?^$@JG183iAl@ADG;xmluoR_|6TjY4v|@^k0pTh6Y2*8q z<)xX$#g$p~R&de;iJ}e*3l0=0Ux|G9K3=&rIa*eME{Emr&rkiab;z9?poiC>Ertp7T(+L_{#r%(;Q|Ok)dRAwf9U!)>Zx z&p`4=7u95%u7oww3%Tg!zomS-hP3I8{3*l`9&uzR6~)h<8qv)DpbAeE zZ0Kpen=0vidU5gqDECAP2YDz(M976-WLH6%;iO|0to2GUdD_G}ukIv3xi6()5R=v3 z;P|L_2sxe44RdU@%nUO`MQoqiorCj;Euh>}DbHikZM>=u@zl7P7E7w-_F)eTPTUAj z=V5#Me2Ss63olN=VB=d`3JPW&$A&1Zn&)$_|L%h0W@gLe0DYpb$67dO0~((v*w zKt8Yuqa*lrVI7oa`g(rdDlvh{fNLCZa__)L53y86ll>NNI2HCgnojnLWo((xa=T|M z9Bx5?vp+X(Oq#?AY(;^?sa(;3i@0pXbvMFOWD?M)v3<7%zj}9ni+kd*GEZVX`>x=V zZ80odpq!gS(=V!_1y3_V@NnH11<2Lk*V5Q=oR#EEA`cFFJN~F!0nm-(l0K+Vs3c)P zl|Op_2HUNssS`szPx3=<+#ZtbYz>YNjx|`Gq2#m%!`eIOui+WC#VJL-;Y*z3%lVL| zj8X({A)(~{>7bi4Dx$mhD!^0h#`{j^5H)>^U|brs58l7Q9SZHk7V?3$a5BDyKXL5^ z4qTAEN#V|TkY_G31^jXN>4ClW-@by66fhcF`avx2;j1^Nh~_v%T=a3afRl%`-ob@O zS}@W*c#s#2)4X1x%3yQUTK$OxNma$<_uY3?fCEJHA?oFS(Ib=u%||8KC0dTiLR1~f zA?beT><@2>!-2q4F2|y9u}0bb?+;s=7EFj#9xRWy=}4__NZOoGD4fE<1xS- z4-vrBt5=9|7qKvgEfH6pU}G5M4B<1dbBl}Yeq6;86dSK>ZjTY!$?@Lva;S4+BZ$wv zepRYlj^nP0UCj$C)aknaEtJJJ0&+j(G*>kjHEIkdR~h8!PzHQ$4K?V9l0#xlnu;dE%C0~1w5YKwg|9~}{;KOwT%-rlF9 zKp>;eW3t1O*ByJ3eptpBS5nz~8A{qKMg{zplCPGAW4PQB<5R!B$ z$G}j$g4{ubF1<#NTG&~ye~pXImElS=RWLN zgM0>YfI~uk)K&`+9`n!wHN0+|ysEY)R$dB}^SxkT+#iXHTz$y)fV{f+nOs;(jZQDc zA~*i?ZhzR}+l26G8Spm#lu{Is+_jKXPYh)Go`fCw^z}$pO+V`}wgQ?PUuF3CB-%}4 zm8%7Y@Fup;hw+y1+@u7iL&Bm%VZZwMz@FVlI~^YlzWwSeWL6x&_d(fiNcnv={Z*hk z@Q3&5U3dG(rA6A%r3jc*&hNq#qMWY2x}0+CO9ILMUEpOQ1}@#y^RB z^A^z`?X-6GyJYuP<(Eh-wW1;btGcuyhw3LvooGdrJy=9tXxv8J10+DsjGClE22lvMP zO%EbljhKk6NhK{QLb`ulKiOs<91SSGQ}}y1xQxircJ}Wm!O~w)ur{?683Uh62p5Il zoRt7GarcS#zko@{r-4(+FDLw~zL>V5YRr`tr3g?q$J>-=5@l6N5|W4^OVl_5bJx6; z>(hpO?)l_ej8mQ*kvxYdXSkOzMH@k^k#e-6t_g5=U$QU~GlzdK(1h)oAq_VGN1LrG z4xBM8R=YK(6AuxDpoDi;*YgWib7*2*M%_WLTXMy66aU^ldWo-N#djU$6}OKnJu7dC zJ+p{Z5CUxx&`KS(vixF*vQKzE&f<&^xi^(3t}=};oVw{%8Y&GM*N3dzN8rd)vtg2)Ybc>*I zsbUmWAk7%%x%x!0q`~^K`&ZSQi6hEEniDPNkwZt`(v8MqkxnRXefQhm5ob{SzyAIO z?$eonxw1CDHM9QH^6b{Dg^lk`gVh+?I7}dIC8(`3pn7Sqy;xYDS^H^gW^T@q)L3Se zNOGhS`tpUL14+?u__DuTTv=J$np^l`VQ$`3B4M3q7Y?a}fmFUR&$qb#{ld!)!&GC+ z9m3?nl;gJNSen^bTljHnX>)O7VRi8*Lslb&^$@Zms&voA;8*7{MRVtu{O){ikVnk(AZTVwC zxSDHALQ?b_FE$qz=eA~7me)77{yhKF*3!(Xk>Mu#tO8Q`t_k1b!n*CACbeN2MpE>v zf?ljclX1x41XRFYpSJ~Xj7>m_JtE~^UtE~Avq_C5TuGF;y$}wpkZ_WQ`XlktIid|8{ z8^ZMGR~O3!JY^c;GAzv_0@j*C4J0duQv7SPD@&_0FdSE`+GsGIBP2y1fnM5}Sy)~# z!Z#^>1Qqb-<`?HTVD)a`;D5YyX@DO?DgLN`I5)pG|I!dN79Vb-g{DDH@Vu(k2ZTKG-M zEk$G~#UGnrp7TpqtX|J6ofb?vM(2Orz&G0Y7aGcO7j zO9Q=T!Ia|)JuWp(gH{hXihP5f{IoC+%l+lr%2Ju6fz@6GseEJK&-{Q{a_zg#rTJys z8x2~^f+@$y!qV!>+6Gt1^mhYY5knR6FJhMQ_-2;T@~>~qSWVQt{0x_?t{9Lio_3~_AcG1GF#MBy%>$erovqbiYVY;t?rYv{# zdC}1oS1l3idKO&~R(V71DjaC%s9nK>HW_NCKCif14c0^@Jgv_){iZOHH?W{0Bt;+7 zXJt290}W=ulq2*=g(K}8JyP(bg&qlhsSE0nfT#7jq1BAtQZZSBS*8k7`9}21qO0p1 z8YuR4eY8+oM<#C689FW*M9Vz(KQ@gc{@=b2dtgd4Da9)chhO+pwq__}#52g5HOuDhMRrcyNkZlX5 z95)wNW@rhwKEFney{-ARwSxX{AbFLT%6L`2EqZ(!tSWLK#h&Cx;%uE=M6FD>G?*<* zc*-=v-!Mnnxzu2GF+3Vv;kpStHHbW-`)S9^aZI}&05Q=vdQ}xyhq_+6889oi#IR{egYxD@S^Ze?$ z$7Y12=u`AeCs4LLObr^uoRk5TYcl?d=6^%gKr@%{l<6{ka{<0og;CsVtJu6FTWQt0 z7aC}?2uab$)@Bx9`Ta1n1}~4Dwi?X!7EC!Vug&uprs*4uD1}kn(Y5)F&9&u=@t+zj zWw^2iEA{2drfvBKp1gpg$XDsf#`kOURv;UU-W*7=FY}{<=e-?;205-6qVkpJGCJ##{ zVB^vo8*o(6D~!MfD}RGkD1XUJYg~R~r}^?%Y`iuue_`Ksbdy6#7nXm(0@6$@4HyiT zw$QjdU7r6Ay6y+7rW<(m3TVo5)jwacm1r;zdoAb+s7^w!U-6EXwOp#{x2JaT_zS!PqFte2bmFrr*e`n;j!N`k{ z6n#XVmA8}|=)D-qCmpF@ZCSM6yna4ddwg3>{Wv$?ZX?iB1;wg`p_4yy?XE)373g?jZ2vNEG zIDR>U{l4#Kmgg1=K_llF#|BgRd>ej0v;O`1{Jiy(pQ8-}p7LCizWRQp5M!1w6VB=< z#!`GQ>xflcov$ByeintoDT|kcg%!+#D|5wQ-g8Jogs5DfN{cPR@R|MT)xz@J%B%I4 z>y^ZbQ)p+^a2ULn;%-GL);H!BY&==w;M4~dK#-N&>wU=_Yvz}8=zWi-98*$1c?y$b z!>Wf0AbLX227YzXVohQR3@)O zR#rC_mKOfq*6AENB;YBJ*CDGjh0}58&>@Va_`Y`#=CiT5@M3PkHrY9PCqh&%KWnb8 zt-M@VoR@$mG@os}bIh7$U}g4}&gxIIGqc~%)6BVGBkj*&=~z%@^tzc1`b`_BehxcC z;grRXWOC*qM5|-~pJOD)kVQ5ebegYFQ0HNbAeGH)!i|3~$$nxW>+Xdff0g5*#=JJcpmoE`BZ_R;o41fqxxxCUKMfd`Sz0pqRP#OVGdA!m7(+)wxV(8xfd@l>$oJ`oY?0zAWM<6S{sk#aQ>%C&wq z4tH%un2K^cnYvsQ6$5Ln?)iHdI=jeos@WDfrHtYJKZi$k=G83cqbanfWZK0Y={Z%4 z@@9q}ywdK!-a5qP8HPNeGHP^U9~X%eqSkl}94D0Qa%&%#$r+;6I<+h%!YNeJqqi7c zNk>p)TrpK{*hI>c4`^5hw@rB~Z)28P$~lEgWn4v?z49=`?Y9mIw@ z2uNL4ii%iq0YO2K1+nAo?ktS#?yNJrz}kE7z4zXYMx)VaG#ZUYqtR$I8e23PjYgxf z`#Ya|&wcORH_Oi3{o>C*KJwnqIp^N{Zaug4PPRJF6#-CP-4+=?eMSL%~;8*Qu|mn&LovP-gl+!D1it)KJkS3rUGAbRqK zv$dAQ&efWqr1U4W==6s+xpkqq#@RiI%~D^`-00v}uf5Gx?s6Spx>2qd^bhCVGl|Va z@#MPr(1wd^Ph(qep7TmZq9!G=WoN+8gN!SaiXt$k>xSA%$_4HR~Up}$Fsh7l1e<3T}6}wGp!9vB<^x|Q$w>oJJqw^#w19XkxMmOPQ9Pv zlCc_=%blL_Vc2SGog?~Pf_JaURJ#^CI`&#^HY56-&2I8e?&gY@*ws|chRU5i;%My^ zyib`Z8@s|`Ixwx~rHFQCv8S|HQbmYYAzlwAO4lSdBl?}yt~Hsu;(k`5nzvMj70rHL z?a$@W=G@A#5J&S*qVZ&jLW+qp(jqkBqT17#myKbKb?FxGqbABlNenyX&g4499rZ*t zev;mmRqZTwGmnyg{9!?&nkTU}qdsC$?s96%F8BRvZL9)tel&!|UDj?1u% zJE+-GP|4$EY>oEO!q-i5J&IRct8RY6BhqIY`((;k#lle;d_7 z*u@JKl(6ah`TK=(iyLy%A*=DCo5)QNswibzEx1IE#`@>+wueFUy9+&QSJj(O6yqfM zs85yVzjxW>tU*%hGw}o%=Z~28c!$6 zi&UR#z*+6u>Qqx3?SEL;lx~iTCYgH38@V58F?Sz$d4KiA(HJN*2EsU+Yv5uXyVY0R zoOWlgOKmHYXo;GP1W6j3KI@9DBH!TZ`hHHgi&>A_X6ljR;asBeP07l{DEF)AflD%6 zE+nJ!RaMoCR)gauFw$CW-D62zu1fk@MQzh+iL_PjN4n3Fe6CsUepu4lfTWFjyL64? z6vu}nU6*E77LO!XTM-GgyNuLb-u$c%o``;Dvq!dudk>5U?dPd{vNhruPy^0tSFtMh z-o-}Et1V^4q}A^1bOLlEMI!p0%`RCwH1&Shd^J^gS$Z>~+S%%! ztxqp$rIlQL@eB1kn?3CHEX8qLEj57NLgU4!J=Mbg3AzA-IFp}B|W{~VOP2F zg)3owk5wC!X0Do{=`oipw&rIEl!l4eAlDaXo6-%j3xrqG*gqRl?`(Eyt&U0b(Grye zowIh<`eDs<29~$hH{CBuLzQq;9Tp1aW^V2g%`V2h17pSG z)kL2)9GSH`Xbdd+!_}Vhenl={!-Sq6%|zd}v{96o8Ragf{ncb)v0I1dd(0BKT#^|s zl!Ydo`5txY`l^~%)}tos>6Nf+b(^kF@MZf)47TPHSRL_=*e#3s1iIB#FRsgouh4JA z616E(HuAZeW>Yn_Rx{OAm#J!(x;~^cmH7qd;K)k+IqFNzISWmdO~Z0GvoC4X&9S%jXM67_w(U)6V(yUm;Bn$dRGM5V^_s@FxQ zQ<0mZjlOIcnNrocw{~gmhP1y}yp8=KiMp}qa}ns(kZX{O#anX)B&ya*rI%Ch4|saY zYwnLN9-gnZ3f!~cV%xPL*R=R&+07w}&1K_3!uFQ&oD2=BTO04R(c~xlfL3*U(9_GA zlt2szcnUXI4gsaUD5NLPyy2~3z2|wGS+K7H z1kV39ChT(!WwKWRoz6@bbq2P-#wt-UiXDF887e9PtD}=9hKybpqi(G)%SqJxEbTK6 zl{(SOSFxw-JuCgxv=z7zuJ1M5&bSv2g(=E;-!*iI~-R>`#P&*0wFZg%HX|E_}5~OMWVQusJBA> zzSClzMtYTAHJPZ(Rni<^KLg>co`qUE7&Yyx+!=&Jpcp-N|^OJiOfzj?owSRGZd z)9VcNY|OK^dU2sH8}m~ps*Ot}ol#z9l{=H&^XY7%l}WWk~W^0>@hmMIV^-}gw?RS#ITrS^K?CD8V zu_gJK5&iBf_730ud@hKXjaF>`d@hL4w(o*4?_2TrBr3Iu6FW9R)F)!KD7h20p6#^k zIoG1rixT|juclg#TIwRJ+^>ten}(;j6S7*W1{zGi z|DooJ4lG!G=DgDix)8hgs=C$DM{s)GhZ{)OJOOWtLQiMDs6-~py9o_@B{48rl$}%FXXH!l{oov4r`x9vTfCVi zQBEpVIHSs)$#n|NQdqrG(#ATq(1(zqlo-X%PG_kTUDN{*ym#J zSfUh6X3Q^(-J0?(<2yJkDV>Ta_qzhvoA7hmo8a5)D)x%aB^m=Iik@$+Q&UT$pB?{C z-8Q4m<&DnG#bc}0QEN8)fCqgX3iAqSO+CRbmYJyzqf1c6(wJy8Y7`Se~sYERV`>;ZOw~V zC|=Rp4ZHOJ{9aL_DbOTs8b+;p_a(coY;DFTQ3F$=F%!jpsq5ZiHn0>O47ECjEJk&i zQSD;Z*P07M=@o`Vqxw*`)rQR)4Sy8)Z8fGv`883MT&jh$R-@Uq`Lr&at|$|I=4{1v z(o(Vc8EDw5=X}hM$1QEDuRHIwb*CbkYFa8s-K0dFITWvOUekG}b*gHPP23D!wMu@g z8v9Ml$PtVUOHx!Ashv?G+Im-)r5m&5=_={PrK|m*maST^FQpa+O;s(axm5?rmgYig zcDhA;=wha?3e>T(plJ7Tc}YWooSNEXs=kryYMT0obo0XEWYHI4vvr>CntqjJ+U^g|G_cy$aENLdcM3oPpmzH2kl!7T7W2&k- zTUWztGuLiDTX$=#Dwp#&YKIz0I|?u_=`?B{dtFK(~2H z&CBPSWT#~vy8EbZIlf8!3bCUDM6Ri^Fr~a)@_J!hV@uQ0T*J6reo6Vn@|c)f=)be* zNlisjGy*-sU;DG0qmvkLWu+I&3sJqA;6T3-8GZ5|GZ?C>ZC$5R*N$bR;m3o@5ol1%*rOYB*xG0Ta?T{p`aSupu)aN z?I|ZLrK{@v5};MM1hBQrv}6??%Bi(frSTi2!atbrX7^6Yq8?MHx?-2h=e)0#Ak*b@ zYN%g@NH>c{FX!o3l9m3Mrflp?+mc_&NvVat(?rVx(c-=mc}>%+Mtn6mDPl)tl}xWt zPL1@R7HEo^(G=oLmiDC(5`k*@H;V_P>}YEmi9u#%b;dYZ{0vqy2BDlYGu>%Q&6FmT z&Io2S25dxbUks2?)jem(zoTK-ilulJM#+lBh^X2@GuTW_(>sqf9Z>_Ce_ZwAg}h|` zaZ+lg?+o2z6g8mD<&tWx$vg`p*miRnh^dKTm9{=4E)^}+GKG-ZC7rKIFUh1Ta&>ha zKqEVcJN1lD1wOPM+S+bgs2&(;|HkK(r z7?KT8-YmP2H75jVDjQ9_$Rhp!AQZ}M~{{-rdkg8u_TF-P!mOY`!j8I*T zC)JTw8}*s`Tx?lX$!f#OsF8kij0TFb)OlvID{Q0fFPCRCE4+A=Y~eyVwbI{O*;6#7 za&`<%mJcE!qZ)rxMS@5mqw3e2)gUe-QzK<~9sS(SM)59((l(5Y+URX-)u?LCp|XCy zoeeY+s3o-FgOMYGJ_Kx*Bnr zFevs4fhM~B)Lz~x83QZhVldZa7EiYpF!`Odf9)(_Dx}&sR_)Sq+C#!j6`#@`0bfEJ z8JV%FmVG~_^BpbFB^#NDpxW#oww@JEWmw?k_pZwkwNtXdg>q`9yO?pBM7_2Ea`bdF z4Y&72O11z_N>%r(R4v|D(e9C~Nb{7J>>i1L>g`dP@#=qVX6<6hXlj&fW{rqy?N!Ob zlxV5dyeSoijO4t)mdu-0Ml}zuG#XM<8ym%h%{n_vk444`v^x1(S?Nd~((#TAz-3da z9G}w8(LyMvcGs5?cD?xYH1o=6(diXq?lZLbR!V<{7U$yGaIQJInEr5OOF`B@q!u=1 zWo|nw0T%=MRhpWm$aslY@~apT_f-}kAN?v?mljRjm2B;iP^~=|$iJgXwW{DJQu4jv zmTZevsD$d~hAa-3_Ni7ORlVUttHTA{jP{M=#w557cVwKdA0b*4L`B;bb|9w4x_KW{ zs|E2}v@Fdo@u%WSRtru_HE%#eCXU~h)J##8n$6*Yp;Jb`#0oieU+Sv%C6@}Rok5F4 zM`R3Qi-AchIl5d5o}6Up=^xQX8tLy{;xw-=T z-{quv@zwa_gEnsDEu}}p(|x;!T&gMCRF~PoREMFMOt8c=LmMq!Tu#;Z@`j{X7!dxF z83NgN7rQa3jR}rcMAgpV3K@Eu;q}faO-&0@IoDuv-@s5-=5y<1xEhb##J0bt{U)KT z8WuO5(H7=;BI#LUfLi1xN@&f=sRE-Uo?sS=NY0MI_KH+yPE|4O- zstPwIrdGxhC0D{@r7<;fc4kSsx+SHK<58F&6x9LNlh&j#4()_?`^IzTW!An zM#Xv-OU0j)={0{uKP5?WxS#|oG)$YVI!p_kG5H>H{IUBUE2O&1t?*N$jX{2qpc)?8 zX7*3X;BAo_67$__(+8K!tX6!dNgE@dP(lq3k~uJuH)U<6)Lr5eOwE|O2Oql^KMn%w zW$-q}K%S5qS#NrfPGK%nD?Jdf=VnxPZEW@F>OP_B1y112VW5gT?sDU9aw0YwgX{u|HEWb?h`yS15 z3xTWf%y-D*r<7SG-`QE>I|M>%Z~Qw)UAAaxODbD%>15oWs3mLFw@8nzUQTS!wLt}!ELtn2C1Rl>s(D@gVqrma`n$@3tc5~+r*RuYNcVfy+;tZxFGa8S(%g!s zT)8Y-lHKwLmQ=Lr>S=!~)0W~x@V;srzO1N>Y9A!p%}Tmdg;AB7 znOjk|AV>Y7k*L7&+Zd3>JX=a;EXv)oU$J)A*rb0P2 zHQ3FMr_J)IAciyNE?O`bgFS2*i>tRbic3U9&GgbQW7L}VdtLVzZ6(S2Xrfg^lSN8FLr>{33c+Rqe#YGz24L zkd%!LlITlio%&S0olBDR?PXQe<(4doS9fhx>Yk8G3~^;$zu*LEm1K=utek5Gl@)5SWoIQb zs1Z?H>(9?DX|7A>rSB=dTytl1n2!353c2cKnI=DPl>A02E}wpqaUHurMg=6JxH^D@U=HKBb0S0N4f)<$P)My9EH zsqJVr$du0fj2#yjqyt8gULa-3%DJ&9HB~R|<+RcjYa{tQAq~Z7?G0f|^PX#DTJyK` zRUPv4R&2LXC&%T~{06HuPc-E`PSbxXpU{+>=%sZV?OIeutr+=KS!$|`W8_K&>G=i4 zOiI{9Sv*Kt%cmO(ob_Q>F!gtO7BAL={1$;I*9-0&YN}6X8y5Q^Xd|`ba%z9n;>A{vu`UBlIoy?r2kSUWWg3=e^SK7M ztf5b!rO7NL@}e&qSJhC&#MJiC#a4?kJzF|V*0g;|?i0_nX@s44y2|gPwNb}KMAX{G zB5f=Mn+bMK%NB@=Iyq;_PR#{*E1j+N4JF81$f%_;{M(qCFN>{AbGt&E!m_A*){GhE zQT|bp!r^Q>1HFR4%HD&-6|5(umWP<}pA6NC<{&FG`QW?6ESGGu}a%E~kK4U+6nEr*9200+_K18`>3Ayh~irP|1?mFv13n~($CF?H(6bq#) z5*5?14A#fupv)>a-S`c{M3%^Bb7eAfCI`RAFSMJS*l?&ogD{XuTdlyDP@83xOTHfv zH(iri?iIH-yriv&s=4*1QA>+EP-;ojwRh<#7KyBQU9?q{xQ#hkpyQt%*N()s z(rU2lJap+=nDygHBd#yIt1G%jW9#JE#>uO(^<})o?)LzfZK&Oq|z<46i2zW)Xjak3eWYy4ym9$XOnCQ}V`EJ>I=>jibh1sTb!5`JP z!z{9Dc3`lb$L5v=@+XtHe$$zY-A$Ub=@dCNG}2Vo@?6|rY10{LDSHPACA+b*eyiPv z`_PwC!|ThSLUb6j)A@(mF|iDrb!dCQdPAWv_QVWl+LCcT4>UsX+&7m5TOKM~O& zY$*RU_NQfJOExR@Yq_CZZeUqP;)by`3oAW4Nn&fH)YL#-oN1yG9Zv-1qe^~WsLuNH zObN<|lT$-w?%704wvWj2j;2&qrfEec(~#niI)5^?vSOAQAx5JqSC@4lnj)pvM~eY@ zGPcbJvkp@(gcp~9{o|x?@D?#$kj+l*H;t5<9#$m>nO18@-fTd&FPI@p*DaCR-KM4W zeAY0mk02D@krWWP;imUUkR>V?vjR zn*m$ZA=$cbVX$vjx>oQiBu348(~)a2I>2}Yzw zNX?Eh55}-@|5wS8~k=PiDiV;@}|{17|X^Hg7?F` zlJs@8e`rm-aQ*_?B-Rj8Ym=&ZFxKYCKQi(ptIF%bFX_AkveIrP197=1HuiPv{b}VS zU$@?Eq1mdszQ!1jW^H^Ba{N9{0Ex4D9GD!*LQ% zfXPzULW(vjB`Z^%mn*2S__eGiiFUOUGznHpEsnNNCf*gO^S8>kX*xC>O=vpTsHQi; zbgofN*EfnY&AD*-3w1~^^p#;r)g<$2nQB=W8=F6n74g=b-(5%)XD6w~1~D5H z>Pt1+g`s5sU`!bPd7O2V_@yAhn6OxbnlCT@i%I&~Y1w$b6z`O*++e{@o%FzUI2CmG zMOM~bo24E8n)w7B{-~^mMJl6EpUa8i&STSMBRJwHCV2ucxQNMgOMK9gzzZG-Y5@AP zYRz<aD3aBs;$PV$S+MZruvY0jif~q(>*y(kmr*7YbayX(Apr^oaQ` z_9U&Xky6uxD$J8CkTEL(qocoIWKdo39otE|Ple@bV3N8r`DWJQ=%FDLEO|fV!@KN*i!fr0ndlAAsVuRY?L6U0pR9PWInYy-BW@I>xSvw~1vU z6H6Oe%q!_ikJ~HxiNX`gYIruRXy%>kX-4|lCK-a-mEn!+b4NSa32N7fs2Uv{d1caI z8s{2BCa!~~j2{*kiv&$sAgCt08xsr6%67?WL5ER(SA42bf)1mTQ}vs>XA>Rit;&=r zuS{X*)TES+g_sVimzpZyZJwZd5fL>wTK;KlnJ>o9VzZyaRGP9HSZt>mtQ2IuFWD!k zvup6GdHE(moo$5FuuRn9m!mlA41`Sk%M(_DmPrOqayyS-UPQiB%cNpzX?uONImBv| zKF>-Sc$#~ijD2$kk?EG@q)f=fG#(}SqSb^a%)R0?mC41TliQQz-cVG-CC5Vs+GGcV zY?X|~eYq?L^oPBP;%>y$#(KJVCu&O8ESXVY&|uWa-iVz4F%#6+R!Z&kS+LAhC9(?% zU9p&CYir|uyCgBOVrpSzjeRsbYBF`wmnIRzvXS+>^hwG_ z)@@i9lePt#mM!2VsF!X1)-$B3%H=d}OdT{j?C`SN@?>xmt>O|?tWjBw_t45*ZPSXh z%!%0jRj$BDm_joW<*=%gKS+8=Zi*UDQq?&@wLFQ?7)`b^l0LlIctvpym#DcK-!5H^ zeR#RcQ8p@g0ZH=Vt(XR5tej7Y788gC{KMolY5Qf~%UKULib_fZb(DCzvVPr>ppG&^ z&a`TH6$fG(m++$p;#MT!vYc zMxU5;3rS3aC_CJkadCaMR^spWQAewpD-|2U@43?39NoQ0CKnXF$ik!BQE6#m+NG{0*$E24jQ`oqadO`llPr7@Y&^q>Ezz zVhVMvVA#LNz@3)BcN-)w7`_e-lNJpBZ&Om*!=GuQ?#>jUV8lL@JJ-$6qKQ9LAg-a= z(56uES`tadEF3py5+zpUwpPIYzdN^Kxyvxvt4AM2a?k3G#AO zR_%?BzBAFD)?D9cPgJm*mE}8EXPBL)Oa}>FTPz3-YJp^Z>r7!AfEb0y|arcTL9 zhg&u}*fY9hrZ_e*WqE#ey`Q5+WvM~AiUr247Gr(}bCh(fr^&HB)n<=*1)aitw%`tR zaD76wu+THzwL!csrqZsLES2TpGGkPBxv&`0WV^r@f};40WWr<@F%8ZJGm4XXYPDGnDbWvY zHAn(W8xqakNo-j$wKcldKAMOdhZ0d}kVRPHj&G7STy~UWMf%!g>@e-k_mIDP=98qo z6Vw2Vuo*=(nIM?{o%qw_WODhi_zuK8&8cr4ud>-x6pefm>rPOuZzAi>tR`c9zIN)O z3oL@_D_EN5XX*siS174w`^#Ehw(F*5xaDpp8wJju+NQ?1FD8Mr$4Uh;GdfJPW-OSO za*K;)u)u;2k~55%p0gcu;w6b$AnDAyxt-XaWZi@3e?=Ac(=*9ebb>B9gVw-VH^~`h zR(@}MckRtCPEZZ)VrEy+WYU#g6Ee3UQ&zZ~T%b%P8P4KyC!Egmm2Et7(%;(ySpRxOT%umbe zvdd(4**mB-@ck}{O>8Cb{fdYNWkdO=2?brFC32fZqglknTnJx3OmtbJ>3#Yni7ql~ zX456|Z(}Fgxi&9Nd++76rRl=bcp{6QQu$lO)MA-FTBEWEM?A~ClAZ{KOGj@qpSna` zt){LEdYs}AXgt`9Y=R!A5mMWmmoP)dXYRsH}#^ z9Id6{(S8n=&5A5tdhK@9`(K3yFE$`Z`c(OP1F71GNObJ}adbN7*N1a2f{*%Ayom<{-^3OC6}9WbQ~pC9_si z9R#hrR2yFEC1~A6L~Rb0e;R{!>}#yaE9vdI{+9K51l@f5$9UtLU_22Bs^!ta3uB+& zg}jMg5+D(_zahH8Qq@3goUBSnvn<1leS)Q`#Tqn7>)X>)ivLakg2umiQ+R^L-w3Ih zjfksGoCl7*+4j&9KOf7^RPh3N@e>^-^RX3EYw{h97MqXt-*wCwtFs)FLI2eZY2-*5 z&t`)DtCLfso7h4xN7Kk4+-|5fZJPG&V(BTT<$CrKrKbp~v7TZqIByr#!Kg2GYCwWf zU)Cudowc4<+3_jm&x}UtF|liow!-YFk2t5o^5KrK@?w;vd^kak)!6VbEVEx@-ttN1 zv*s<|iq^qym1NJC6hzJnB-UYt(CGIUlT-+euDdvDciBXzk)#)5KBP3(c*Z#Nu)bN2 z!82noY=+U6>Z(Jde`d3cphkPA;DyPsZs=1;$%Te?%7-7ANiWld%>+kiaD0J$8iEzH zT?dKV)cX(#niga1uslw=SzN*X}h%X!ZOS?egJ-BA{#Wd+~XVTF(hbet(00GX`hT)TUDu3 z((NawBjgUl3BIqa=PEjbP862Z1w5 z99N}hq;@yT#R(z1Yh|-UmMK;1p*N+#3x(Xn>*a-np%5_*#SqNNqlUu%8-Gi%sEceE zlsvg8O-AmX$pj_ON~y)oDxHr?R*zXnfOHXPU8v_4(9n8yst6Zd@|Gx?(QDqeP%S2! zTHb>bkZm^zPhxm6B0&fm5t$tECx8;VCl@ulfUT{TS47gFH0plv^+Zy zRI8(c7izlE>~6w^Y1TEHM*V{mG6DuByklPwK~XO3J`5Rf=*ezKL?+nQ&#V0 z;0G9oaJ}3eAcy@&YUnWdGV*J8@I^+0KUB{9(z0N#>?@PUMp=4fN<_p>6?g@#^F)r{ z>%bbQsI1x_7ky{Go7~SSu1I^?sH_x}uvE#x(7GAhFDUj$UhG9}$y&*ZX#o1oYVC&8 zu>2RKmGWKdNy@*GQVSF7&69~7`*%!d%AS2UCtID*6=adGbUMWmB3lAw!iTwD;u#6U z^6I=lK1mb?q{1-pWWpdPme)4drSz6&orGr0J*P6Yr`#rx%5y25T+%FI2$px*N$Q~5 z^3puP@~)V;hN>*~+5}JQ#xmUPvPxffN@fe@jECXc`!A14j*}WQpQ%}F?}+q5H!VSq zFf;H$=pS^&0g=WBh?x2~I zv1rj4Ujk7oTdSA`caW{~WjH#GeK9koqbc1=GgJtM^&*k?tG)!oP$Q&9HZ>0>?)G1% z*3ej~wP1|a(EjE4BBGYc<)6lmi53%(^p-1|8{RqU;zDZoS(T}gd&_z(+4VS2oJECE zUOmy!P(1IQBtfm1h9IR{Oel8WT|Ac(PczPsOnrynP)|~b_7#(uv|?&~5Vg&5ie4c|W*adV-QAr%sg37EkB*q5wXW0-!C=hJ&c!YPPB0jA za%yy}dp0o+97XP}%u-2h<>tfr#E}5V^slV9_adDr09GyxfPFRrn1@EY=|k43w>tkE zH1V+`N)t5kIhVJ$$k{LKcO-12=^^T3tSnAtvq{U#+@eNS)cC!%1YcXlG~T21(L@`U zhxh={YNmgq-WSs_1@3t+HQ+?64xHW?5!Enk6?tXC;rz3?)ZEHSb7X<^BU$aBM`dM# z;cA!-q#2Vt2mJGBl4Jvw)1Zu)%X4ZMyRla$;$xS5*xfj>R$8a6q9r~-D{ZCJ?lAil zjlH@j%pc_FWj(hvDC>Nrc>hF{m1-+gOwEqfM`PFCd>Ee3V!9)CIUqkX86c?B8{2<;WAiwD_^?Ow9ZU3^h~`A#qk6cJUceNB5fFQQUR1zjz>XWgqs zl6*w7(_Ia0uKV6`Vd~dg)p#q6p;1umO-vHQP*ejj#sv*{c7ay4jDUfIgX1{R5Y z&>xUx#FD3@88|_IzzBs=7Y)Xy*G|g{1KFm{F9X+Bn1h!sVfnOYR@9Zu!B$KS4{x-O z#Emv#?&tds^} zQ~P8;$lQ4oTk9=_8827J`p%^!84n?~Hnx!mV~onAJ|{Z`X|kmmn>V*|)?Tg+4Hh(q z1->ya4Xc+4k`#C&rN%dDG*8C5sa!Z?N*tT!ZOmUTeMTx&&z`6$ncJ}6G309MalA3^{!#5_P(&LF9hh%S-XsukdRM%Ct zd&axbNU7DGEFdkiAON=BX)<|g(+|Ky<*3scP)`B!IKKVF7nj0atGR!Vi`v1>IjJ<-8#ODXMz^+4CQ0o+(#YJM-PS6-A~fj`H*CK6{m<_pCo8)ot#E>sC%}N-F=~)_h%K`1to5|bkOCIO=0t7G)h7@b-tm9#84lB0x0_sCJPbtNQmB-XZm^FD8)SX()@KSC1MUOr0(pYI-; z*&%s*(SBxver`lmLog}w%A^9-xaek)fb$X<-`g&cPeM`z zMO+-6u`{<46mcV@K`1v5#`tWRqBRrOEFs9)6YiuI(-DCBvpwqtnNRkc&IHztkXqls zJQ(ZK&D{g$xjBBDgq)r$9TLA|FB(c^Hx*M`JL;pc78GcC$r@t6K$|odr$O2r@ZzjT ztMEdGlPA3ln4k)`QW~D&_Q?ciQCil_N?Nm8MeepRhYHwyKzaugO;#eleLle?ejuo} zM+Gm8`N$;~Shs#+IZjoAg#DmaWfZjBuWXXU+DNJ8VOEDR>yIrX16@CpEtQaXDV-#f zA*3dU$hvbq__PB4dv zjM^T>zpZ8YM;VLPvT{w1WMtMU=%R$wQdzv~f7|+|#`aer2&vt53p`lEbHt;~1Y>N# z!Y?||R;ifUN$F!~sTJRO_%R!5IWF0Mb?$-no?=Eq>eV@Ft2=?d-%N1 zm?RS!so+D}yZp#R;q@glH{#Zp1x{Q(WH6_y7XsSUkG6{mR$518H56M!-6F%!mZ5q7~$#4GohO;K|LOjC-3k!+#hyP*<{WJN^nkCuNL+Y4q_ zmRDBJPOV^vzD^(L4Hl8*r(tr-;dEZilO(susM%qxpEq`m#|_s5O(Ack8z_A=nc6h5 z493y?NxVhenI6q*3C7W(q#EBMd}D&(%@alb=6Yi$AVEj8&{R{r?ju1*)X8ZedI!5S z7r2x8!m31$$&yw$8qXv}+DNJTp)%b@ic+MdgNaK?-}r4&Bz^h4d(D2Pu#;5l{bj|t>PkiCTEmZPj==EZmn2UcDK#<(MXR_Hlz5?3I@MDg_Hjmum^ zYknK6v16ySC#kW6^ANU>iB+4W%=A{+?V?P{nl$+c#&_b?Ug2n>rC_^f-j_%+ns9=e z4AUeSR+9;gICNP<;#P{tDhK;DOiK72!q_M~l0yozxYP?*q8x&h25N)^N}f!J?3Q5r ztge$_@etjZAYaG_YDhOU_^#&!`NGMm?Q-{QtkZonM=6-yK=oD9AEpz|`ZISyxP&3- zOEjhP9dWR$n1*1iKAHf;ssQk}BTdEc0il$7R)X(t_bAntE2x<^E3SO8% zEHHW_D^0>g&(t>-#W+c#tDM@~QjSG8dW^YXfX~|;+bwKdtuIjzYSH@w!lY-OAhr%d zw3q6}ndyaKF~m@PG{Mlh8*>-{Gb)n(W!p=gH}onxWHLej37Ozi%fIzIFLC}t{%+ei zoLRUPY#EFhj&1x;WH{LMzrNWRET!Eo1dgumjC|ddO>`u^!kp;qS~-p7=Ikp#k7g#> zl5D!CbZqcfNd|JO!@{g=E;EjIpOR!{Cm0xaFRXR*)cW$ipjT|xA4Z#(B#A3)7S-f1 zb6hgb$^v=m>QZ7VS;*bP!PgAxOa!uiM?68DX{FTYWcy?yIVY3m@Gs{GlujdmqzWs@ znZ|Vz45{J^va6|45A6&*;7$JRLJ2(JP3~%;A*))jQm~u178v(ISYGY1ysGVp{gFgmN;Gm9(YCwiZUK#t-@@ZS%YVvYPPh_Gm@B}!C zTB+&0BuU^2h|0!8fIeIL^mCaPIz*))1e;Br7Cj6izUw2wX47H~@edQ~_QIsESt?N9 zXh*F@c}7k+%*it88Y(m|f!dL0qB=BaWiHUsznQ>Qs=<`0uNP%&GuP~;~&X|-fP{l!rRUYjLLRgCgL1?nqlr31s9%sw9|cZAgJM032KwaM$0R8PEG=BiShD3bJ2cy&t2UYZm((ny)(0i%s& zl1ADIYDmTh2MwCg%o9&U6QPk&zueR&eO=jsVJ?>le&-hg)X}oVmMJ93fuU&dF~V1o zw9(b{#)$EG_+vroAbOb~!B|j4)Z}J#FHL{JEq2kqW-yazjD_8W=6q9ZAxe_&f{{{_ z8#b9IYt{bKoNI(*&dX%Rs}=pcNirEiYG^y-WixiBwaAKInONYBZZDRu3H>6wONy>; zmAkLWI_D%PVXRxscH?MRlEm6bX<&wkR@z?DS{xnb*afVb5XmV$O@8FXQ6I}u2_kQV z)ZV~_Xppt+vU*w;vWIKegUXZL-O?K~KCEcW5@g+osG3VfUYR(`;Mw%`rbU)C1-*Ou zv7G!BJ0w3r<>lnm=ur3UEH=qLV%A%pt$_XG#-{ zIgn9ngBEhxRHd7{iw@_40@R$BaaOw*R$3`Fv#EWupL+i6VArbKGDnnx?xaeZQ{KJr zoS-`yl~vo@M&Fqb1jpoxYrn0nJ>X6b6;A+vX%cr+ z34{hRBf%tjfHg@fi?b5)?uzz_r-^7uQ z^0%z4BcMGp-#lmwUgFh*kpe=B6YJISKHX&GKmA2|QTak_}MoAD&WYo|Q{%wrJ z9Hfh;?iqf}z}c`OlU|n3)Ov+oG?j8TsF>Q^NFQz7M5A<1Yct$XYWLy<(=jVDRl1zk zGnimHCX`g0TZC`yN5z5Ez*)DcMVYEHw`y0ri}AHrE5uJN%X+;~B#E{a(;y6%jk$~L zn-cAdn2TTLn4p7ZrPSDF_Q@u(8g=(fs3VQi66RYuY>D+0UKEq$Ta^ovS)YyJN;Hs6Sh*les=f42F!o^;Hs>+Qkt?ja zjyR$to#Y^a`E`6ru!xr`zAC1MM(Lx884LcWY0q45Z=icFcjC&*4I&q8J$FiE6GAo~ zh6G#BW8xZ?ak1AXOmoD73}RE$=FVwl1#MA)8k_6t{tp3CaShNE7a)CY0u&t~F)lOh zmh^I(7(8XYP{BafC=j(|-T`A}FRKSIN$HgR}JfXWDwzLKt}oc=%x z#6uwyBJm?nlZV0z$3kIWx(q5VAQu+<2NQ~*5tDPNW$l_*MiP7nE2Va~uusOIob|*! zs`X%+9Va?b#QE1cmu>Fk{!`@~`%3_cEt_Z|}T%8^miqxiS6%4P^RpUvo3 zJf@64&H5hB7$@5Wow!3}Y|LsBFXjn4aZXOH4|UHr-cxse%7B@&e35fi@LSGSO%j{+gTX+#8SYCLa&e)l zzR9o3+BmUoRr1a*Notl32VQxTYX^jKI1%gV#CQqWh9|KVQMG0-8@9^)$OSV2#g-C9 z&X-qneWu$jD>7OQY_1!IF5FDzr)C?qQmevht%q#u)68j-uwVFN@qx=x8-4@bMj0#; zR0|uy;9BdSYT~V`FS+ z%^4h5Io}OROwS@J7&#y|+SzHNXVJQ}S}!_scEj-Jx+7$9up=aDunlk3sx_$5zO!4| zYcePlD@c;pWm+laiDDU*cHdF=xcDV}!)NJEn2F+ z_Pu4BUV9!}Z;otlC&_ z4yPi^1T_oLQZqPdDmb}uy+DroU)F5P!f9Fj_$mCPOcLr z>*-~xP?AUY>V^f#xZPOx9~+w{i@Qi!Sq;u$d(wPU*oK+#seZ}R>qb7&D%!3#dK;|@ ztLe?;0`FONM{*sfdj}_{GX-E9R6aylElCeZcG3FfH%Yama%#5AoN%@|EU>bBCEmrC z-Q2dLW?6 zH(F>GX{rg9smM8m)lw(15w;L~@RlZ8p%=iwN z8DG-O__!Ir(n%JZ2_?*q9WXPgq?t)^Gh24R%$6n1Y#BGR zRR_#$Rnp8>aWh+Yz|7Vq&1~(Pnb?7HBQmX;nH7{9w0h-c;<)yg8<8n#CRT1Hj%$Cp z5t))^V&!Jyxb~MDktt~=R&FMaYk#>BnUZE=nAxVJnQbuBKWGT5<=BoTa<-+v`>~C6 zAH|YtvRg%m@zzDHED<6Kk_8W!QE2c_U9- zM;tzN{?g_IdmYeW>0tk=so`F+a-OD5r$q4c}Xv+N~z1xl>Ixws(F?$3kuNIIW#C zE2}fHJCZvXUe)9@cfz0Vr9%h9YxFp+U3n^+gWI8FDG}(3XwNpWui6WDhqbFNr@ga; zJMOgTU|Optr@0$pmW$(KBeESkmMoz%r@wP;GoC{)RXQ4StI28ZA}gP(SJe1RI6GL{ zovJ{$+#$SJF6r`u-9g<>mDAlhE9Z;X`;}A&Q$#g|n$5)@UZ6Xw*=ll{yV!{!KhPaa z52woM?y4{R?qLT@PN2(aU&r_?y(H;iTVoYDy`7CO(cdQ4(X=*qtDfgHch8EKKxS*= zXM=aJrHN>B7P`rtM!xuH?hcmuP?^);FL<@seeCFT$SxhLTZ)xBd!6cXu~xZ*?S;|f zw5~1p26_3WjcLEO8e`Nro!z+Z)Si+WO_2_!e5lOn?;)?2=48$$UY}3xSei%GIU8%m zju)NWG1a2QY3$Sx-}>6Y?`QNltz8;&4Tog%{tA!|)>%%K)7?W(dgX+#d^)zQtb^$s zRp)GUwWl$~t{~}Py%^|n+Sidam$6;09jq6vqEIjUEWL8mQN2b{px5leSsi+0``b?pA# zXv^8r(3>5|PHz{PabZjA>PT^?%IWTGcc*!(J6K9plhfRFMS&$du?ti?*ggchoc7Ku za+Ru_0hD-pnY7?Kybj&~Z-TeL+u&XB9(W&o06qjCfser_ z;8XA!_#Auzz7#Yc^p%io`Zce<1>b=mz>i>!E`l||+MpBY47z}BpgZUZdVxNmFX#^j zfOWwjus+xTYy<{_O~9sL2-pk^1H-`xFcORgV?Y@g2ets?!9*|#Yz4Lk+kh!xJFq?2 z5$ptZ1{GjBm;q*jSztFX8|)6|f<3@|umCIsi@;uBAFwaj9~=M<1ZhwWYCtVm0#4fqax4}Jtcfi=4d)&iZtI-m>a3c7;*@3CQ8aM--3C;%R zfb+ol;6iW_xCC4ZE(ceDtH9OZT5uh>0o({~2DgCQ!0q5pa2NOmxCi_a+y{OI9ss`v z4}sr+N5F5vW8in-3GjRH6!-&p2K*5`2mT~zKIjD@1^LgsdKvr$ybAsbUI%{zZ-T#r zx4}E$J@60k0r)5Q2>c6t0{#s?1OEYEfd7K8!2iHE;9KxL_yPO`*61c!3#<*+0i8it z&<*qeJwb2K2lNB|!9cJsSP!fZHUt}ijlm`$1%`m3U>MjOi~ys+XfPI(fpV|~m;fe% zEx}e`GS~)e3$_D0fE~e9urrtjrh{F;Ot3514a@<%gLz;NPze@*J;5TdH`oX42lfYx z!GWL(RD%qt1xrB|ECY3*0p!5JAP<^AGgtvufN z4V(_n1ZRPBz`5XjZ~?doTnsJ+mw_w5mEdY{4Y&?m4{iiEfm^_>;C65axC`73?g96L z`@sF+0q`Jr2s{iP0gr;mz~kTv@FaK&JPn=!&w}T`^WX*WB6tbB3|;}Rg4e+7;0^F5 zcniD@-UaW0_rV9?L+}y!7<>Xg1)qV>!5835@D=zPd;`7%--92)PhidNg0(;=uny<~ zx`OVY2j~TQgTA027yt%>L0~1{;G-K?-aJhJxW>b1)K&0%O2fFb4XF%m#D7TrdyJ2bEwU*c0pp_6GZc{lEcW zF-U_dPy;ex30Mja0?R->XaJ4iU{C-}U^!R;TEHRTFmO0H5*!7N0mp*l!3p3ba56X* zoCeMSXM(fAIp92SKDZEE1TF!Wg3G}b;3{x6xE5RoZU8reo53yMHgG$*6Wj%U0qz06 z1oweofd{~^!9(CT;1Td!@EG_Vcmn($JO%y$o&kRZ&w)RI7r>vvOW-fy74TQ^8u%M{ z1NOPgf`5Sb!9T%=;9uZl@Ne)b_z(CT{1Rv1Higq5Lh2<05$@H!6sl+Fa&G{hJoQ=1Q-cMgE62Cj00PM z@n9mD1hxWOgKfYRupQVQ><*QD1V@8oz;WPsa3VMf zoB~b-r-L)VS>SANE;tWd04@X)KPlG>zXTcxA^Wab5Met|vGWZL475o*v z4*mw-1b+u_gLlAt;2+=v@K5j&_!syD{2P1*{sX=M{{>%x|ABA7x8Qs51NaH7(NnM% zSR1SZI)kpD8|VRgg5IDH=m+|PfnZ&*9#|i22sQ#6gH1pR3;{#IFt9lo0Y-t*U@RyD z<<=$13?w21{qKbmVzu;2I@cq$bo}F9yEbwumY?Ehk!%D;ot~x6gV0j3yuRP zfD^&V;1qBgI31h`&I0FvbHVxG0&o$y7+eZ216P16!PVdza2>cF+z4(0w}4y0?cfe@ z7q}bT1MUU)f&0M&;6d;Zco;ka9tDqq$H5ceN$?bS8axA@1Hdp&HU^u56xa+51;fGSU?dm?#(=S4 z94H6l!2~b~Yzejolfe|QE!ZCH0CoaXK?RrwW`JG5EU+t>4d#HkU>=wcD#1dqC)f+@ z4fX~5fdjx|kOozt24uhzuoN5wmVtWE02;x;pa7b{aC z;IH5{@Hg-V_&azDyaV0^{{ZiUe}WIezre@f-{4d5AMiQ&FZdGt4}1;21>b=mz>i>! z-hws3+MpBY47z}BpgZUZdVxNmFX#^jfOWwjus+xTYy<{_O~9sL2-pk^1H-`xFcORg zV?Y@g2ets?!9*|#Yz4Lk+kh!xJFq?25$ptZ1{GjBm;q*jSztFX8|)6|f<3@|umCIs zi@;uBAFwaj9~=M<1ZhwWYCtVm0t2n}8G;0)~QNU~@16 zi~^&cYXb^$ZNu3$GX2kZ{!fjvMa zSOE3}i@@GsAFv5!?iB z0k?wN!5!c(a5uOI+zajl_k#z(gWw_XFn9z!3LXQGgD1d~;3@Dlcm_NRo&(Q=7r=|) zCGawM1-uGg1FwTOz?(HTw$I0-eA*pbO{;$HQ3NQ`K0K0%$U{^33%mH)3JTMb-+z4(4 zw}9Kg?ch#u7x)FZ2mBJ;2Yv+}0KWzgf!}~fz;D50;CJ8&@O$tS_yc$b{1H3{{sdkC ze+DmszkpZ3U%_kOZ{Q8^ckmW?2fPdZ0p17y1RsKbfsetz!KdIq;B)X_@Fn;k_!@i* zz5_piAHf>^1Z#q|K_}1|bOGH!chD2`0)0SV&>su{>w-aGeXs%82n+_BfK9;=uo)Nz zhJz7cBp40GfHE)+YyrlDiC_}g3TzFw0aL(sV0*A5*a_?mD!_Cw1Iz@oz;0kR*d5FT zdw}_10ayqYfxW;!U|+C5H~<_7(x4jDfLgEwWWhn84%CAjXasps0L@@ISP5Fdq2MrZ z1UM2L4UPfFf#bo6;3RMgI2D`@&H!hDv%$IGJa7TH5L^r{0hfWx!Ij`Da1FQ?Tn}yl zH-VeMt>89r2e=d54SoUc1-}IMgI|FM!LPx?;5Xn=@LTXW_#Jo>{2n|F{s5i@e+18i zKYhb-{XIeXt?e2y6^C0Vyy9 z3#U_Y=wSPTvXRiGMVKrL7bvS1mg0}UVt4hDJ91e(DLuo4^s z4h4sUBfwGMXmBhz4x9i^1Sf-2z-i!ga3(kloCD4U=YtEtMc`s^DYy(=0j>mBgKNNb z;CgT)xCz_>ZUwi4JHTDwZg3B{7u*N#2M>S;!9(C-@CbMmJO&;IPk<-EQ{ZXv40ski z2c8EnfEU3_;AQX%con<`UI%Z0H^E!rZSXF554;aP03U*nz{lVd@G1BVd=9<Qpx{lEY)5DWtAfepZhU@+JiYzk6f zGcXhk2b+VDU=$bw#)5I69E=AOz$CCG*cwa*Q^2-hd$0r82}}hQU>cYKb^)`%u3$Ep z1LlHxU_Ph>3&EaXFR(Y*7wiWP0EOli&1P6lxXadW@3eW-$ z0f&LZ!I9u7a11yW91l(aCxMf}so*ql1~?O(4bB1Qf%CzI;39AdxD;Ftt^ikotHHJ4 zI&cHH5!?)J0k?tM!JXhP@C$Gc_$9ax{0ck(ehnT1zX6Yc--5@$@4yq__uwh;2k;E| zBX|z{3A_OQ3|<0%0k43+g4e*`z#HK2;4SbDco+Nwybt~fJ_P>)AA^5`Pr-k{=itBK zOYlGNHTV{M2YvuQf;9#T)&y&VPM|aB0=j|jpeN`B`hdQmKNtYk1%tr)g64xZ5VAOH zBVKI`HUTLx1Plekz~*2C7zIXyv7ii;gDt=WFcEACwgQvEHeg$@9oPZv2&RIa!89-( z>;h(jUBPZ(4%i*c1ABlMn%Be)6N0&WGjgFC=o;BIgaxEI_9?gtNm2f;(&Vekle6g&nV2Ty<} z!BgOA@CeOfG(gb=ni^-UZ6MV3;KZpU?3O-)&m=W z4Z&crG1wHOz-C}57!EcEBf%&z28;#cKsgu>CV)v`ORzPV45ol>!S-MWuoIXHD!?=_ z1MC83fnC9DFbB*9^T2#i2^NAq!Cqi*urJsT8~_%BG^heKAOn_wrQjg24Ag@L&m{29Ci{sLYBe+93BzkxTv-@#kp9q=yr2Y4U+6MP8%1wID< z2A_iefX~5y!I$8F;A`+L_zwI4egta_608Z<2Ax1>&;@h@-9b;#3-kefL4Pm+tP2K# z^}z;UBQO|j0yYIhz-C|=7!F2&kzh0!1IoZSumu;dM31z;gq1oi^^fPKOK-~ezSNP}un18Tt%kOc>UI#3UC zpb_Lj0W^cOelg7?7t-~;d> z_y~LqJ^`PC&%o#43-BfQ3VaQ|0pEe|!H?i4u;zM#wLmAZ4(I~9g6^OP=mmO%zMvl% z00x3VU_Gz_*boc`8-qx~wgg*)$zTfD7Hki8 z06T%HpaM(-Gr%rj7T6Wc26Mn%Fb~WJm0%&*6YK@{2K$2jzyV+}NP{X+12SL5v{7kqKFl71@ykxsV%qkq-q>5QR|$#ZVk2Q3_>H z7UfX^l~5T~Q4KXv6SYwX^-v!T(Fje@6wT2BtTvoITTF%Jv=(xv6Xzj`(otCnIJR$wJoV-40} zJvL$!wqPr^V+VF&H}+y54&WdT;|Px7I8Nde&fqN0;{q<>GOpqpZr~)=!M?s zi+&h@ff$S-7>3~(iBTAXu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5 zjo6GW*oN)ciCx%(z1WWfIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0hj@%9 zc!uYAiC1`ow|I{a_=L~+if{OVpZFKQ@dp87{pBA7LJ$N+aD+f8ghp6|Lj*)bWJEzU zL`O`-LL9_Jd?Y|3Bt}vsLkgrsYNSCrq(??%LKb92cH}@V-VH80z6h}#v zLK&1rc~n3pR7O=)Lk-kKZPY!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTP;JjPQz z!wbB`YrMfbyvIj;!WVqScl^LF{EPqa2LWUMBt#-4K~f|~3Zz16q(wSpKt^On7Gy(qo4b(zy)I~isKtnV}6Es6}v_vbkL0hy(2XsPbbVWDxKu`2WAM`_i z48$M|!B7mx2#msLjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5Y{VvP z!B%X?4(!5i?8QDDz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lxJj5eB!BafP z3%tT>yu~|wz(;(>7ktBa{KPN(#(xM9=Pv;f2!Rn4!4Lu=5gK6-4&f0Ikq`w@5gjoQ z3$YOw@sI!skr+vk49SrasgMR~kscY437L@<*^mP{ksEoC5BX6Lg-`@VQ5+>u3Z+pN zg4(-tqozMkc(H%X|3%$`7{V)In zF&INI48t)Jqc8?zF&+~z36n7u(=Y=wF&lF*5A(4Qi?9Ssu^cO~3ahae>#zYEu^C&i z4coC3yRZj)u^$I;2#0YL$8Z8CaT;fE4(D+Zmv9AFaUC~s3%79>_wWD@@fc6=4A1cr zukZ$M@g5)W37_#5-|z!J@h^Vk4+6yf%RdN&Ab*(>AV9zXu4PbFaD+f8ghp6|Lj*)b zWJEzUL`O`-LL9_Jd?Y|3Bt}vsLkgrsYNSCrq(??%LKb92cH}@V-VH80z z6h}#vLK&1rc~n3pR7O=)Lk-kKZPY!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTP; zJjPQz!wbB`YrMfbyvIj;!WVqScl^LF{EPqa2La>#Bt#-4K~f|~3Zz16q(wSpKt^On7Gy(qo4b(zy)I~isKtnV}6Es6}v_vbkL0hy(2XsPbbVWDxKu`2W zAM`_i48$M|!B7mx2#msLjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5 zY{VvP!B%X?4(!5i?8QDDz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lxJj5eB z!BafP3%tT>yu~|wz(;(>7ktBa{KPN(#(xM9|1SX%2!Rn4!4Lu=5gK6-4&f0Ikq`w@ z5gjoQ3$YOw@sI!skr+vk49SrasgMR~kscY437L@<*^mP{ksEoC5BX6Lg-`@VQ5+>u z3Z+pNg4(-tqozMkc(H%X|3%$`7 z{V)InF&INI48t)Jqc8?zF&+~z36n7u(=Y=wF&lF*5A(4Qi?9Ssu^cO~3ahae>#zYE zu^C&i4coC3yRZj)u^$I;2#0YL$8Z8CaT;fE4(D+Zmv9AFaUC~s3%79>_wWD@@fc6= z4A1crukZ$M@g5)W37_#5-|z!J@h^Vk4+13k%RdN&AP9=!2!T)tjj#xZ2#AQth=OQ{ zj+lsrIEah*NPt90jHF106iA8GNP~1pkBrEKEXa!N$bnqQjl9T*0w{>WD1u@rj*=*a zGAN7ksDMhSjH;-H8mNidsDpZ_kA`T3CTNQ0Xn|H}jkaiq4(N!^=z?zOj-Kd+KIn`7 z7=S?-jG-8Y5g3Wl7=v*bkBOLsDVU1sn1NZCjk%bI1z3p1Sb}9(j+I!2HCT)F*nmyg zjIG#)9oUK8*n@r8kApabBRGoVIDu0*jk7q13%H2OxPoiAj+?lJJGhJccz{QEjHh^p z7kG)+c!PI%kB|6-FZhb@_<>*e7ysc80w(;+KM0H<2!`MYiBJfGun3O`h=j<9ifD*| zn23!yh==${h(t(&q)3hwNQKl$i*(3Qb zD2MW>h)Sq}s;G_{sD;|7i+X5)hG>i?Xolu!iB@QXwrGzI=!DMbif-tEp6HD}=!gCo zh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<np$odAJ9?lOdZRD;VE_hV zFos|lhGQf~VGPD%JSJcgCSxk5VFqSmHs)X+=3^liVF{LEIaXj5R%0#JVFNZ|GqzwG zwqqxDVGs6VKMvp!4&x|};RH_NG|u20&f_93;R>$eI&R<=ZsRWQ;Q=1vF`nQVp5rB6 z;SJv6JwD(QKI1FC;Rk-=U;M@&1W5dse-H>k5EQ`?0-+EZVG#}y5D}3P14F%b)K z5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSt1jSGsB~c1xP!{D; z0hLf0RZ$H!P!qLL2lY@N4bccq&=k$l0MjcJ<$t&&=>tN0D~|X zLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2b1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0 zuoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y}a1obr1=nyLH*pJha2NOS0FUq(Pw@;d@Di`_ z2JimTrRDp-T5f$*ea07j!*~3|FZ{-T2$1A20TBp+5fs4?0wEC^VGs`C5fPCP1yK&4bTXU(G<vF0UNOy zTd)n=u@k$n2Yay}2XF|7aTLdJ0w-}AXK)VZaS@kr1y^w$H*gELaToXS01xpPPw))S z@e;4_25<2mAMgpE@fF|j13&REe&Y`UB>l@j2!tRAir@%=Pza5%2!{xWh{%Y7Xo!xO zh=n+ai}*-@L`aOJNQM+hiPT7gbV!ek$b>A&itNaNT*!^Q$cF+bh{7m>VknN1D1|a8 zi}I*|N~nygsD>J-iQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i~bmZ zK^Tmo7={rTiP0E?aTt$@n1m^qis_hvS(uHvn1=;eh{affWmt}tScNrMi}l!mP1uaB z*oGb0iQU+Peb|qKID{iOisLweQ#g&YIEM?kh|9QwYq*Y^xP?2oi~D$hM|g~6nRGn1i{Pj|EtS#aN1ESb>#TjWt+@_1K6_*n+Lt zjvd&A-PntLIDmsVj3YRP<2Z>^ID@k|j|;ej%eabbxPhCvjXSu9`*?^)c!H;Rju&`^ z*LaI}_<)c2j4$|x@A!#d_>KP%Ao*VcA`k*2D1spbLLxN6ARNLYA|fFQq9QtCAQoaH zF5)2p5+X5@AQ_S)B~l>`(jq-FAQLhpE3zR6aw0eKARqFhAPS)filR75pcG1@EXtt* zDxxx~pc<;9CTgJ$>Y_dxpb;9QDVm`LTB0@DpdH$yBRZiAx}rOJpci_hFZy8s24XOV zU>JsDBt~Hj#$r4sU=k){DyCruW@0wxU>@dUAr@f?mSQzlE!JTJHexfjU>mk$ zCw5^E_F_K{;1CYuD30L-PU1Aq;2h55A}-+yuHrgw;1+JP#h&u3T03hC&g4js@DozVr|&>cO|3w_WR{V@Q8Fc?EI z3?ncSqcH~KFdh>z2~#i?(=h|HFdK6*4-2pmi?IaDupBF~3Tv#+fwuo+vi4Lh(C zyRirRupb9;2uE-f$8iFua2jWE4i|6{mvIHxa2+>s3wLlA_wfLa@EA|=3@`8!uki-& z@E#xW319FP-|+*#@Gt(u9|TPKmwyl#K@beV5fY&g24N8%5fBNH5f#x812GXBaS#vj zkr0WH1WAz`DUb@OkrwHY0U41QS&$9ckrTO)2YHbn1yBfuQ53~c0wqxzWl#>~Q4y6; z1yxZUHBbw+Q5W^l01eR?P0$R@(GsoD25r$E9ncA#(G}g$13l3jeb5j6F%W|=1Vb?# zBQOf1F&5)60TVG9Q!owFF%z>e2XiqW3$O@_u@uX&0xPi^Yp@RMu@RfF1zWKlJFpA8 zu^0Pr00(gxM{o?saT2F+24`^|7jOxeaTV8a12=IScW@8)@eq&j1W)lCFYpSl@fPp! z0Uz-hU+@jz@e{xB8~-6ds=ow8AOuEG1VadfL}-LTID|(;L_!oqMRdeKEW}1!#6tok zL}DaCG9*Vzq(T~`MS5gFCS*odWJ3<*L~i6kKIBJ16haXcMRAlsDU?Q8ltTqnL}gS# zHB?7U)IuH9MSV0tBQ!=+G(!utL~FD`JG4hfbV3(&MR)W-FZ4!V^uquQ#9$1;Fbu~? zjKUa<#du7>BuvIsOv4P!#B9vLJj};JEW#2j#d55`Dy+s@tiuLu#Aa;4Hf+aE?7|-G z#eN*XAsoh09K#8m#A%$tIh@BuT*4Jx#dX}kE!@Uk+`|Jr#A7_cGd#yjyuus2#e00f zCw#_Ne8Ug?#J~8BKM0WeFaIDAf*>e@BLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2 zF_Iz~QXnN#BMs6aJu)H_vLGw6BL{LJH}WDM3ZNhgqX>$jI7*@v%AhRDqXH_SGOD5) zYM>@+qYmn!J{qDCnxH9~qXk-_HQJ&bI-nyuqYJvBJ9?rQ`k*iRV*mzWFot3nMqngH zV+_V&JSJiireG?jV+LknHs)d;7GNP3V+odFIaXp7)?h8xV*@r}Gqz$Ic3>xVV-NOW zKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_??%*!&;{hJwF`nWXUf?BO;|<>7JwDU;KwZ2$<$C{~$1eAQ*xpBtjt!!Xi8(AQB=YDxx6LwhGIBIU=&7U zEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU8 z4&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!SdAs*ogp5i%P;1youE#Bb+KH@XJ z;2XZh>f_2hXhE7#7Kf< zNRE_9g)~Tu^vHlr$c(JWh8)O=+{lA`$d7_3gd!-4;wXVqD2=ixhYF~O%BX^BsE(Sb zg*vE<`e=YgXpE+4h8Adv)@XxvXpfHQgf8fc?&yJD=#9SUhXELf!5D&J7>&Der%*p8jpg+17d{WyR_ zIEh7&l6(>Q~3IFF0Cge$m;>$rhixQ)BGhX;6w$9RHgc#fBNg*SMM_xONM_>8ak zh9CHefAJfC5Fp)O{y`uFK~Mxo2!ujtghe<+Ktx1F6huRG#6&E_L0rT~0wh9WBtvVs zOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U z!BHH?37o=doW(g@z(rif638 z5B$Qv_z!;&F#TWtL0|+yFa$?PghCjEMR-I&Bt%A3L_-Y3L~O)CJj6#rBtjA-MRKG- zDx^kQq(cT|L}p|`He^RmkIh035R6-S0MRn9bE!0L` z)I$R_L}N5TGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#KlH~y48jl$#c+(kD2&EfjKc&> z#AHmtG)%`#%)%VZ#e6KlA}q#IEW?VwbV=TFrMwzzunz075u30DTd^HGunW7f7yEDk z2XPoja16(B5~pwmXK@}Ea0!=j71wYBH*p(xa1ZzK5RdQ#Pw^Zt@CvW-7Vq!@AMqJq z@D1Pb6Tk2q{~t+dSpN*WJXqGLk{FbZsb8ew#zxa(m2$1nF{~!>8ASi+(1VSM+!Xg|ZAR;0o3Zfx8Vj>peATHt~0TLlGk|G&W zASF^G4bmY!G9nYQAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag z4(g#k8ln-JpedT81zMps+M*pgpd&h?3%a2@dZHKlpfCDk00v<&hGG~-U?fIk48~zR zCSnq%U@E3#24-P4=3*WeU?CP`36^0wR$>*_U@g{T12$nZwqhH0U?+BC5B6a{4&o4w z;3$sc1Ww^J&f**{;36*L3a;TgZsHd1;4bdt0UqHop5hr^;3Zz;4c_5BKH?L;;48l4 z2Y%sS{D(gXnCUP7ATWX;7=j}tLLm&oB0M4>5+Wliq9F!iA~xb69^xY*5+MnaA~{kZ z6;dND(jfyfA~Uie8?qxOav=}$B0mbC5DKFxilGEbqBP2&9Ll32DxnIhqB?4z7HXp| z>Y)J|qA{AF8JeRdTA>ZvqCGmG6FQ?Sx}gVpqBr`WANpe;24M(>VmL-%6h>n##$f^` zVlt*+8m40=W?>HIVm=mN5f)=9mSF`}Vl~!a9oAzbHen04Vmo$V7j|PW_Tc~y;xLZj z7>?s4PT>sB;yf$b)>ykAf(KA}EUDD1lNajj||*3aE(6sDf&!j+&^2I;e~K zXn;m&jHYOY7HEmqXoGfWkB;bsF6fHx=z(77jlSrI0T_tE7=mFKj*%FJF&K;Sn1D%` zjH#H08JLOLn1gwkkA+x-C0L5(SbZ4cLgy*n(}?j-A+rJ=lx=IDkVqjH5V) z6F7;}ID>OIkBhj3E4Yg5xPe=^jk~yq2Y86bc!Fnmj+c0aH+YNp_<&FNjIa2HANYxX z@f&{-Aj@C=K_CP{Py|N^ghFV9ML0x2L_|guL_>7ML@dNXT*OBLBtl{&MKYv7N~A^_ zq(gdSL?&cGR%AyG(26hm>8L@AU(S(HZwR6=D`MK#nwP1Hsm)I)tV zL?bjoQ#3~lv_fmNMLTprM|4IPbVGOaL@)F~U-ZWS48mXx#W0M(NQ}l9jKg?L#3W3? zR7}SV%))HU#XKy)LM+A-EW>iF#44=8TCB$gY{F)2#Ww7~PVB}W?8AN>#33BPQ5?q! zoWg0G#W`HSMO?-eT*GzT#4X&xUEIe5Ji=o<#WTFXOT5M#yu*8Z#3y{gSA540{KCKZ z4}TCa>tFssU<5%h1V>1OLKuWactk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={iq()k# zLk46-W@JG&WJgZqLLTHreiT3<6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@LjyEK zV>CfCG)GIcLL0P2dvri2bVgTnLl5*sZ}dSw^v6I9!VnC_aE!nxjK)}u!vsvkWK6*{ zOvg;j!W_)Sd@R5sEXGnS!wRg#YOKLJtj9)d!WL}BcI?0|?8aW~!vP$`VI09R9LGtV z!Wo>!d0fCHT*g&g!wuZTZQQ{<+{Z&a!V^5jbG*PSyvAF+!v}oCXMDjoe8*4x!f*VC z0NMT$5P=XFK@kig5E7vg2H_AM5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y z0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTX zP03M4JFyFUuowGr0EciGM{x`%a1y6+ z2Ip`d7jX$!a23~a1GjJ+cX1C7@DPvj1kdmsFYyX*@D}g!0iW<0U-1n;@Du;yH~t_% z_P_jtKnQ}M2#yd4h0q9#aEO42h>R$RhUkciScrqTh>rwFgv3aSWJrOONR2c|hxEvZ zOvr+)$c`Myh1|%Cd?zL)hw+$*NtlAEn2s5k zh1r;kd02pjSd1lDhUHj^Rak?ySdR_Zgw5EBZPVATeyR}xQ_>TgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=g@5rM{vcqE zzx;#12!db;j*tk2FbIqAh=53ljHrl)7>J43h=X{DkAz5sBuI+nNP$#HjkHLI49JMg z$bxLhj-1GaJjjduD1bsJjG`!p5-5q%D1&k+kBX>-DyWL;sDWCjjk>6Z255-JXo6;F zj+SVJHfW3X=zvb>jIQX09_WeQ=!1UfkAWD3AsC9`7=ck3jjVj(u-A|4VTArd1Ak|8-#A{EjgEz%RyhG95HVid+;EXHF3CSfwBVj5;(CT3#} z=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R z;u5alDz4)OZs9iW;vOF0As*uip5ZxO;uYTDE#Bh;KH)RI;v0V8C;r86{6T5&nckOf(h z9XXH-xsez7Pyhu{7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl8+A|*_0bTG&;(7<94*ia zt8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_ z8CP%(*KrfKa0hpB9}n;dkMR`G@B%OK8gK9p@9`0z@C9G-9Y633|KdOVLBQO9`3Hd! z1i=s-ArT5;5EkJP0g(_HQ4tL>5EHQx2k{Ue36Tg%kQB+00;!N1X^{>YkP(@Y1=)}t zIgtx_kQez;0EJK(MNteTP!gq42IWv56;TOQP!-it1GP{abx{uu{_=Mb*HCVZCTND{ zXo*&6gSKdo4(No==!$OWfu87%KIn)37>Gd_f}t3W5g3Kh7>jY3fQgulDVT=on2A}K zgSnWG1z3c|Sc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~ z3%G>KxQc7Ift$FEJGh7Yc!)=Mf~R9uqMMQ!o|NF$1$O8*?!a z3$PH2u>{Mo94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}m zaRt|K9XD|ccW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@**@dLl`FaEiB~cn>P!8o$5tUE{RZ$%^Pz$wD7xmBp4bd1)&6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoja16(B5~pwmXK@}Ea0!=j z71wYBH*p(xa1ZzK5RdQ#Pw^Zt@CvW-7Vq!@AMqJq@D1Pb6Tk2q{~t+dSpN*WJXqGLk{Fb zZsb8ew#zxa(m2vFcJ{~!>8ASi+( z1VSM+!Xg|ZAR;0o3Zfx8Vj>peATHt~0TLlGk|G&WASF^G4bmY!G9nYQAS<#X2XY}d z@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k8ln-JpedT81zMps+M*pg zpd&h?3%a2@dZHKlpfCDk00v<&hGG~-U?fIk48~zRCSnq%U@E3#24-P4=3*WeU?CP` z36^0wR$>*_U@g{T12$nZwqhH0U?+BC5B6a{4&o4w;3$sc1Ww^J&f**{;36*L3a;Tg zZsHd1;4bdt0UqHop5hr^;3Zz;4c_5BKH?L;;48l42Y%sS{D(gXSnx0ZATWX;7=j}t zLLm&oB0M4>5+Wliq9F!iA~xb69^xY*5+MnaA~{kZ6;dND(jfyfA~Uie8?qxOav=}$ zB0mbC5DKFxilGEbqBP2&9Ll32DxnIhqB?4z7HXp|>Y)J|qA{AF8JeRdTA>ZvqCGmG z6FQ?Sx}gVpqBr`WANpe;24M(>VmL-%6h>n##$f^`Vlt*+8m40=W?>HIVm=mN5f)=9 zmSF`}Vl~!a9oAzbHen04Vmo$V7j|PW_Tc~y;xLZj7>?s4PT>sB;yf$b)>y zkAf(KA}EUDD1lNajj||*3aE(6sDf&!j+&^2I;e~KXn;m&jHYOY7HEmqXoGfWkB;bs zF6fHx=z(77jlSrI0T_tE7=mFKj*%FJF&K;Sn1D%`jH#H08JLOLn1gwkkA+x-C0L5( zSbZ4cLgy*n(}?j-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5xPe=^ zjk~yq2Y86bc!Fnmj+c0aH+YNp_<&FNjIa2HANYxX@f&{-pzvS*K_CP{Py|N^ghFV9 zML0x2L_|guL_>7ML@dNXT*OBLBtl{&MKYv7N~A^_q(gdSL?&cGR%AyG(26hm>8L@AU(S(HZwR6=D`MK#nwP1Hsm)I)tVL?bjoQ#3~lv_fmNMLTprM|4IP zbVGOaL@)F~U-ZWS48mXx#W0M(NQ}l9jKg?L#3W3?R7}SV%))HU#XKy)LM+A-EW>iF z#44=8TCB$gY{F)2#Ww7~PVB}W?8AN>#33BPQ5?q!oWg0G#W`HSMO?-eT*GzT#4X&x zUEIe5Ji=o<#WTFXOT5M#yu*8Z#3y{gSA540{KCKZ4}TD_$Y1_JU<5%h1V>1OLKuWa zctk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={iq()k#Lk46-W@JG&WJgZqLLTHreiT3< z6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@LjyEKV>CfCG)GIcLL0P2dvri2bVgTn zLl5*sZ}dSw^v6I9!VnC_aE!nxjK)}u!vsvkWK6*{Ovg;j!W_)Sd@R5sEXGnS!wRg# zYOKLJtj9)d!WL}BcI?0|?8aW~!vP$`VI09R9LGtV!Wo>!d0fCHT*g&g!wuZTZQQ{< z+{Z&a!V^5jbG*PSyvAF+!v}oCXMDjoe8*4x!f*VC07d^25P=XFK@kig5E7vg2H_AM z5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+cX1C7 z@DPvj1kdmsFYyX*@D}g!0iW<0U-1n;@Du;yH~t_%vA_I-KnQ}M2#yd4h0q9#aEO42 zh>R$RhUkciScrqTh>rwFgv3aSWJrOONR2c|hxEvZOvr+)$c`Myh1|%Cd?zL)hw+$*NtlAEn2s5kh1r;kd02pjSd1lDhUHj^Rak?y zSdR_Zgw5EBZPVATeyR}xQ_>T zgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=g@5rM{vcrSzx;#12!db;j*tk2FbIqAh=53l zjHrl)7=QV@h>I!5MjXULd?Z97BtcRnM+&4uYNSOvWI#q_Miyj4cH~4ZI8Cj7He<25QAvf|O9}1u#3Zn>$p*TvS6w071 z%A*1*p)#tX8fu^>YNHP7p*|X-5t^VWnxh3;p*7l~9Xg;RI-?7^p*wn_7y6(t{ziWc z#2^g8Pz=WijKXM)#W+mBL`=pMOv7}{#4OCgT+GJ;EW%r9K&&(#3`J?S)9iOT*75s#Wmc(P29#E+{1nRgNJy8$9RIL zc#ao%h1YnCcldyh_>3?3hVS@^U-*MSr2`0ppa_l-2!+rHi*Sg5h=`0Rh=%BhiCBn( zxQLGgNQA^lieyNElt_&cotDMWJeCfti^h4 zz$R?QR&2u#?8I*D!9MKAK^(#n9K~^*z$u)@S)9WKT*PHu!8KgRP29pA+{Jx7z(f3t z$M_FV@eD8U60h+F@9-WU@d;n>72oj#zwjG@$^;M?K@kig5E7vg2H_AM5fKSd5Eao8 z1F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&$jI7*@v z%AhRDqXH_SGOD5)YM>@+qYmn!J{qDCnxH9~qXk-_HQJ&bI-nyuqYJvBJ9?rQ`k*iV zMt=;%APm7!495tJ!f1@eI84AqOvV&U!*tBVEX=`N%*O&O!eT7NGOWN#ti~Fw!+LDQ zCTzi0Y{w4l!fx!vJ{-V79L5nG!*QI%DV)JsoW})R!ev~=HQc~W+{PW;!+rdNhj@g? zc!H;Rju&`^*LaI}_<)c2j4$|x@A!#d_=7-Y0|R$RhUkci zScrqTh>rwFgv3aSWJrOONR2c|hxEvZOvr+)$d12|6SiB~cn> zP!8o$5tUE{RZ$%^Pz$wD7xmBp4bd1)&kJp30=??-O&TR&>MZx5B)I! zgD@CFF$^Ox5~DE&<1ii*F$q&J71J>TvoITTF%Ju{5R0({%di|Pu?lOj7VEJAo3I&M zu?;)06T7ho`>-DeaR^6n6vuG_r*Il)aSj)75tnfV*Ki#-aSL~F7x(c15AiP^<3Bvb zGrYh{yv7^6!+U(hCw#$Ie8&&`!fymBA3$IPMKFXwNQ6chghO~lL?lE(R76J%#6oPu zMLZ-xLL^2KBtvqfL@J~~TBJt?WI|?SMK=6}9LR;-$cua^fPyHDA}EI9D2Y-igR&@( z3aEt2sETT+ftsj|I;e;GXoyB=f~IJW7HEamXp45}fR5;lF6f5t=!stFgTDA1{V@=O zFa$#}93wCaqcIlaFaZ-W8B;I~(=ijXFb8un9}BPui?I~TumUTw8f&l)>#-4=umxMO z9XqfKyRjGhZ~zB!7)Njn$8i#;a0X{_9v5&4mvI%>a054S8+ULI_wf%N;t?L>37+CP zUf>m8<1OCd13uz2zTg|a<0pRM4+2#PAP9mYI6@#4LL)4~Ap#;IGNK?Fq9Z0^Ar9gq zJ`x}i5+f;+Aq7$*HPRp*(jy}>Aq%o1JN`mWkIh035 zR6-S0MRn9bE!0L`)I$R_L}N5TGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#Km3gW7>L0b zf?*hrkr;(B7>n_kfJvB)shEZtn2Fh#gL#;bg;<0oSc>IXfmK+IwOEG@*oe*8f^FE2 zo!Esv*o*x*fI~Qpqd0~WIEm9ZgL62Ki@1a zBt#-4K~f|~3Zz16q(wSpKt^On7Gy(qk zMio>;b<{*H)InX;M*}oMV>CrGv_MO=MjNz4dvru6bU{~iM-TKuZ}de!^v3`U!e9)= zFpR)RjK&y@!+1=@Buv3nOven&!fedNJS@OMEXEQn!*Z;|Dy+d;tj7jy!e(s6HtfJo z?8YAK!+spZAsoR`9LEWq!fBkvIb6U+T*eh#!*$%mE!@Ff+{Xhv#J_lq|L_#g@B%OK z8gK9p@9`0z@C9G-9Y633zY(ZX0D%z{!4Lu=5gK6-4&f0Ikq`w@5gjoQ3$YOw@sI!s zkr+vk49SrasgMR~kscY437L@<+3*)~AQy5YFY=)P3ZgKIpcsmyBub$S%A!0fpb{#h zDypFdYN9skpdRX@AsV3xnxZ*cpcPu9E!v?2I-)bWpc}fQCwid|`r>c&$3P6i5Ddj| zjKC<2##oHQ1Wd$aOu;lv$4tz^9L&XhEWjcx#!@W93arFxtid|0$3|?z7Hq|K?7%MU z#$N2h0UX3(9KkUh$4Q*R8Jxv=T)-t<##LOy4cx?S+`&EE$3J+8M|g}Uc#7wEfme8q zw|IvS_=wN=f^YbapZJA82vj+MAP9=!2!T)tjj#xZ2#AQth=OQ{j+lsrIEah*NPt90 zjHF106iA8GNP~1pkBrEKEXa!N_zO9a3we+i`B4CcP#8r~3?)z!rBMduP#zUg2~|)P z)lmbrP#bko4-L=|jnM?n&>St%3T@C9?a=|9&>3CP4L#5kz0n8#@HYlvAO>RyhG95H zVid+;EXHF3CSfwBVj5;(CT3#}=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#c zFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)OZs9iW;vOF0AN-3)_zzF;4A1crukZ$M z@g5)W37_#5-|z!J@f&{-xJm#)5DdW)5}^&4bTXU(G<8+))1 z`*9G5a0Ewj94BxJr*RhNZ~+%_8CP%(*KrfKa0hpB9}n;l|Kc(J!&5xN3%tZ@yumxX z$47j^7ktHc{J<~#Mxd$z1V&Ht+dSpN*WJXqG!(YgOT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N~nygsD>J- ziQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i@(ty12G6gFciZv0;4b* zV=)dBFcFh61=BDcGcgNuFcpeATHt~0TLlGk|G&W zASF^G4bmY!G9nYQAS<%tFXTin_7>pqphT#~AQ5b`< z7>@~p46IE^znhx53IOSpooxQ-jRh1D3Zf8-peTx?1WKVa%Ay=9pdu=x3aX(x zYN8hEpf2j80UDt(nxYw6pe0(P4cehSI-(Q0pewqg2YR75`l28DV*mzWFot3nMqngH zV+_V&JSJiireG?jV+LknHs)d;7GNP3V+odFIaXp7)?h8xV*@r}Gqz$Ic3>xVV-NOW zKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_??%*!&;{hJxUp&Ttc#3CuftPrVH+YBl z_=r#Vg0J|FANYme2vj40zzB+92!W6YjW7s@@Q8>=h=Qnyju?oA*ocdGNPvV$j3h{g z6rrBDWCQ63dg36)V5)ldU9 zQ5$to5B1RyjnD*5(Ht$%3a!x=?a%=o(HULP4c*Zbz0e1J@i+QoAO>LwhGIBIU=&7U zEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU8 z4&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!SdA3Ve(JjN3|#dEyCE4;>Ayu*h8 zy0!iopf>N%qObUdANYyi_=CVT0|WO+h8T#6*ocF8h>wIw zgd|9cUssgK-#-iI{{bn2PC`fmxW1xtNCqSct_~f@N5al~{!}Sc~=8fKAwpt=NVg*oocP zgMHYKgE)jEIEv#qfm1k*vp9zfxQNTRf@`>ro4AELxQqLEfQR@OkMSR#;u&7xC0^qV z-r+qy;uF5$E573ge&II))e0amf+83~AS6N~48kEiA|eu^AS$9G24W#L;vyarAR!VX z36dc>QX&=7AT81(12Q2qvLYM)LJs6YZsbKi6hJ`~MiCT4ag;wbU;URMi+ELcl1Or^g&*Gb zh0z#`ahQOKn2afyhUu7zS(t;ln2!ZmgvD5jWmtigSdBGUhxOQqP1u61*p408h27YT zeK>%FIE*7WhT}MiQ#gaOIFAdsgv+>!Yq)`%xQ#owhx_;k5Ag_(@dQut953(+ukjY| z@Btt38DH=X-|-W_@CSiv2M`275gZ{93ZW4e;Sd245gAbs4bc%3u@DDw5g!SV2#Jvt z$&dmmks4``4(X8*nUDopksW^_CvqVV@*+P9pb!e9D2ky3N}@E%pd8AhA}XN@s-ik- zpcZPQF6yBH8lo|ppc$H@C0d~k+M+!=pc6WyE4rZvdZIV_pdbFm01U)n48brA$4HFA z7>vbuOu!^e##Bth49vuA%)va&$3iT^5-i1XtiUR)##*ey25iJ;Y{52c$4>0R9_+<_ z9KazQ#!(!@37o`foWVJq$3Z1V~p)s1G8CswvTB8lxp*=dH6S|-)x}yhrp*Q-XANpee24OIUVi-nXBt~Nl z#$h}rViKlcDyCxwW??qwVjdP?Ar@l^mSH(oVine4E!JZLHeoZiVjFf~Cw5~G_F+E` z;t-DDD30Re@BLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2 zF_Iz~QXnN#BMs6aJu)H_vLGw6<1geyF62R83~( ziBTAXu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5jo6GW*oN)ciCx%( zz1WWfIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0fAB9J;XgdVGd#yjyuus2 z#e00fCw#_Ne8Ug?#BcmT;CcZBK`;bINQ6QdghhBnKqN#)R767z#6)bwK|I7qLL@>G zBt>$hKq{n0TBJh;WJG3UK{jMZ4&+2`!w&4kZtTH6 z?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTQJ{ENr<4^Qz7FYpqt@doek z9v|@uU+@**@dLl`8-eNv5Ewxb3?UE_p%Dh*5FQZ`2~iLg(Gdf&5F2q34+)SEiID`! zkQ^zI3TcoQ>5&1MkQrH#4SyjAav?YJA|DE%APS=hilI14q7=%YEXtz-Dxor}q8e(T zCTgP&>Y+Xwq7j;)DVn1NTA?-Cq8&P*BRZoCx}iIIq8Iw0FaAb<48$M|!B7mx2#msL zjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5Y{VvP!B%X?4(!5i?8QDD zz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lx{DX&hgvWS-r+AJRc!k$^i+A{d zkNAu)_=fNJiC_4GKn(&2f}jYF5D10P2#autfQX2UD2RsWh>2K;gSd!~1W1I$NQz`g zfs{y%G)RZ^$cRkHf~?4nzmOBTkOz5@9|cedg;5m6Py!`U8f8!peS zsgN3Jkq#M<5t)$%*^nJMkQ2F)2lc0;NzIWl;_lP!W|;1=Ua;HBk$7 zP#5*l0FBTXP0 z9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&= zM{pF!aRR4s8fS417jO}maRt|K9XD|ccW@W?@c<9;FCODRJjFA-z)QTw8@$7Ne8eYw z!B>385B$P!1ZosOU<5@lgg{7yMi_)cctk`bL_t(UM-0S5Y{W%8BtSwWMiL}La->8m zq(NGwM+Rg6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoj za16(B5~pwmXK@}Ea0!=j71wYBH*p(xa1ZzK4<6zX9^(m~;yGU66<*^l-r)m2;xoSB z8@}Twe&G)SH4Y#Mf+9FVAQVC)EW#lIA|f)PAR3}0CSoBD;vzm0AQ2KHDUu-tQX)0d zARW>pBQhZivLZYFLQdpD9^^%S6hI*qMo|<)36w->ltDR^M@3XZ6;wra)IcrNMqSiH z12jZqG(j^oM@zIq8?;4xbU-I`Mptx05A;ND^g%!TjR6>l!5D&J7>&Der%*p8jpg+17d{WyR_IE zh7&l6(>Q~3IFF0Cge$m;>$rhixQ)BGhX?ov|Kbt;!xKEibG*bWyun+%#|M1EXMDvs z{J>BA#vcT35+ghvEKLS#fmG{itm#6}#%LwqDeA|ydlBu5IQLTaQ% zI%GgbWJVTbLw4jqPUJ=&vVsOvEHi z!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U!BHH? z37o=doW(g@z(rif66wmMiFYy|0@DA_s5ufk{U-2D3 z@C&~YsA&L!5fs4?0wEC^VGs`C5fPCP1yKZ2hV zp$VFzIa;6#AHmt zG)%`#%)%VZ#e6KlA}q#IEW-+{#A>X;I;_V=Y{C|7#dhq#F6_o$?85;Z#917Xc!)=Mj3;=C=Xilvc#XGshY$FO&-j9G_>Q0W zg+BA&itP9cIgtx_kQez;0EJK(MNteTP!gq42IWv56;TOQP!-it1GP{abx{uu&=8H$ z1kKPKEzt^X&=&2{0iDnpUC|9a&=bAU2mSCj24EltV+e*}I7VU=#$YVQV*(~&GNxi0 zW?&{}V-DtFJ{DpTmS8ECV+B@WHP&JsHee$*V+*!nJ9c6h_Fyme;{XofFplCFPT(X? z;|$K>JTBrAuHY)J;|6ZwHtymc9^fDRi%0kmPw))S@e;4_25<2mAMgpE@fF|j13&Q_ ze-OBN06`E8!4VRn5C&lp9uW`;kr5Tq5Cbt08*va1@sSXTkOWDQ94U|rsgV}xkO3Ky z8Cj4G*^vV|ksEoC5BX6Lg-`@VQ5+>u3Z+pNg4(-tqozMkc(H%X|3%$`7{m>r+FbIP&6vHqABQY9dFb?A}5tA?lQ!yPg zFblIW7xSq(ypUKqh2H zR%F9p$bnqQjl9T*0w{>WD1u@rj*=*aGAN7ksDMhSjH;-H8mNidsDpZ_kA`T3CTNQ0 zXn|H}jkaiq4(N!^=z?zOj-Kd+KIn_T(H{db2tzOw!!ZJ*FdAbq4ihjDlQ9L;FdZ`k z2$+4HrJjSin2!ZmgvD5jWmtigSdBGUhxOQqP1u61*p408h27YTeK>%FIE*7WhT}Mi zQ#gaOIFAdsgv+>!Yq)`%xQ#owhx_;k5Ag_(@dQut953(+ukjY|@Btt38DH=X-|-W_ z@CSif1`q^65gZ{93ZW4e;Sd245gAbs4bc%3u@DDw5g!SV2#Jvt$&dmmks4``4(X8* znUDopksW^_CvqVV@*+P9pb!e9D2ky3N}@E%pd8AhA}XN@s-ik-pcZPQF6yBH8lo|p zpc$H@C0d~k+M+!=pc6WyE4rZvdZIV_pdbFm01U)n48brA$4HFA7>vbuOu!^e##Bth z49vuA%)va&$3iT^5-i1XtiUR)##*ey25iJ;Y{52c$4>0R9_+<_9KazQ#!(!@37o`f zoWVJq$3Z1V~p)s1G z8CswvTB8lxp*=dH6S|-)x}yhrp*Q-XANpee24OIUVi-nXBt~Nl#$h}rViKlcDyCxw zW??qwVjdP?Ar@l^mSH(oVine4E!JZLHeoZiVjFf~Cw5~G_F+E`;t-DDD30RLd=h2IF+ z0mlkK5ey*^5}^?W;Se4X5eZQc710p`u@D<^5f2HF5Q&il$&ef=kqT*$7U_`znUEP- zkqv(#2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k8ln-JpedT8 z1zMps+M*pgpd&h?3%a2@dZHKlpfCPLe+R$RhUkciScrqTh>rwFgv3aSWJrOONR2c| zhxEvZOvr+)$d12|6SiB~cn>P!8o$5tUE{RZ$%^Pz$wD7xmBp z4bd1)&kJp30=??-O&TR&>MZx5B)I!gD@CFF$^Ox5~DE&<1ii*F$q&J z71J>TvoITTF%Ju{5R0({%di|Pu?lOj7VEJAo3I&Mu?;)06T7ho`>-DeaR^6n6vuG_ zr*Il)aSj)75tnfV*Ki#-aSL~F7x(c15AiP^<3BvbGrYh{yv7^6!+U(hCw#$Ie8&&` z!fym>7eHVHMKFXwNQ6chghO~lL?lE(R76J%#6oPuMLZ-xLL^2KBtvqfL@J~~TBJt? zWI|?SMK=6}9LR;-$cua^fPyHDA}EI9D2Y-igR&@(3aEt2sETT+ftsj|I;e;GXoyB= zf~IJW7HEamXp45}fR5;lF6f5t=!stFgTDA1{V@=OFa$#}93wCaqcIlaFaZ-W8B;I~ z(=ijXFb8un9}BPui?I~TumUTw8f&l)>#-4=umxMO9XqfKyRjGhZ~zB!7)Njn$8i#; za0X{_9v5&4mvI%>a054S8+ULI_wf%N;t?L>37+CPUf>m8<1OCd13uz2zTg|a<0pRM z4+6ChAP9mYI6@#4LL)4~Ap#;IGNK?Fq9Z0^Ar9gqJ`x}i5+f;+Aq7$*HPRp*(jy}> zAq%o1JN`mWkIh035R6-S0MRn9bE!0L`)I$R_L}N5T zGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#Km3gW7>L0bf?*hrkr;(B7>n_kfJvB)shEZt zn2Fh#gL#;bg;<0oSc>IXfmK+IwOEG@*oe*8f^FE2o!Esv*o*x*fI~Qpqd0~WIEm9Z zgL62Ki@1aBt#-4K~f|~3Zz16q(wSpKt^On z7Gy(qkMio>;b<{*H)InX;M*}oMV>CrG zv_MO=MjNz4dvru6bU{~iM-TKuZ}de!^v3`U!e9)=FpR)RjK&y@!+1=@Buv3nOven& z!fedNJS@OMEXEQn!*Z;|Dy+d;tj7jy!e(s6HtfJo?8YAK!+spZAsoR`9LEWq!fBkv zIb6U+T*eh#!*$%mE!@Ff+{Xhv#J_lq|L_#g@B%OK8gK9p@9`0z@C9G-9Y633zY(Zo z0D%z{!4Lu=5gK6-4&f0Ikq`w@5gjoQ3$YOw@sI!skr+vk49SrasgMR~kscY437L@< z+3*)~AQy5YFY=)P3ZgKIpcsmyBub$S%A!0fpb{#hDypFdYN9skpdRX@AsV3xnxZ*c zpcPu9E!v?2I-)bWpc}fQCwid|`r>c&$3P6i5Ddj|jKC<2##oHQ1Wd$aOu;lv$4tz^ z9L&XhEWjcx#!@W93arFxtid|0$3|?z7Hq|K?7%MU#$N2h0UX3(9KkUh$4Q*R8Jxv= zT)-t<##LOy4cx?S+`&EE$3J+8M|g}Uc#7wEfme8qw|IvS_=wN=f^YbapZJA82-GQn zAP9=!2!T)tjj#xZ2#AQth=OQ{j+lsrIEah*NPt90jHF106iA8GNP~1pkBrEKEXa!N z_zO9a3we+i`B4CcP#8r~3?)z!rBMduP#zUg2~|)P)lmbrP#bko4-L=|jnM?n&>St% z3T@C9?a=|9&>3CP4L#5kz0n8#@HYlvAO>RyhG95HVid+;EXHF3CSfwBVj5;(CT3#} z=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R z;u5alDz4)OZs9iW;vOF0AN-3)_zzF;4A1crukZ$M@g5)W37_#5-|z!J@f&{-xN`tO z5DdW)5}^&4bTXU(G<8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_ z8CP%(*KrfKa0hpB9}n;l|Kc(J!&5xN3%tZ@yumxX$47j^7ktHc{J<~#MxZVM1V&H< zLkNUKXoNvHghxa~LKH+rbi_a`#711iLjoj3VkAK_Bu7f5LK>t+dSpN*WJXqG!(YgO zT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N&y74##L5VMK#nwP1Hsm)I)tVL?bjoQ#3~l zv_fmNMLTprM|4IPbVGOaL@)F~U;K^!7>Gd_f}t3W5g3Kh7>jY3fQgulDVT=on2A}K zgSnWG1z3c|Sc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~ z3%G>KxQc7Ift$FEJGh7Y_y-U12#@guPw^Zt@CvW-7Vq!@AMqJq@D1Pb6Tk2Wfw~3| z1VIrTArK0o5fA_d#9$1;Fbu~?jKUa<#du7>BuvIsOv4P!#B9vL zJj};JEW#2j#d55`Dy+s@tiuLu#Aa;4Hf+aE?7|-G#eN*XAsoh09K#8m#A%$tIh@Bu zT*4Jx#dX}kE!@Uk+`|L>gMaY||KSOq;W=L772e=2-s1y4;WNJC8-Cy?e&Y`UcMBj0 zf+09UA{4?PEW#rKA|W!OA{t^KCSoHF;vqf~A`y}xDUu@vQXw_cA{{ayBQhfkvLQQi zASZGo5Aq>D3Zf8-peTx?1WKVa%Ay=9pdu=x3aX(xYN8hEpf2j80UDt(nxYw6pe0(P z4cehSI-(Q0pewqg2YR75`l28D2hgqcfB?O`I!H7GLopm9FbbnF7UM7h6EPW6Fb&f& z6SFV}b1@$aun3E>6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoja16(B5~pwm zXK@}Ea0!=j71wYBH*p(xa1ZzK4<6zX9^(m~;yGU66<*^l-r)m2;xoSB8@}Twe&G)S zbq^p2f+9FVAQVC)EW#lIA|f)PAR3}0CSoBD;vzm0AQ2KHDUu-tQX)0dARW>pBQhZi zvLZYFLQdpD9^^%S6hI*qMo|<)36w->ltDR^M@3XZ6;wra)IcrNMqSiH12jZqG(j^o zM@zIq8?;4xbU-I`Mptx05A;ND^g%!TjR6>l!5D&J7>&Der%*p8jpg+17d{WyR_IEh7&l6(>Q~3 zIFF0Cge$m;>$rhixQ)BGhX?ov|Kbt;!xKEibG*bWyun+%#|M1EXMDvs{J>BA#vcUk z5kL?GLvVydD1<>+ghvEKLS#fmG{itm#6}#%LwqDeA|ydlBu5IQLTaQ%I%GgbWJVTb zLw4jqPUJ=&vVsOvEHi!BkAg49vo8 z%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@ zz(rif66wmMiFYy|0@DA_s5ufk{U-2D3@C&~YsAm9y z5fs4?0wEC^VGs`C5fPCP1yKZ2hVp$VFzIa;6< zTB9x6p#wUiGrFJ~x}zt0p%41vZ}i7N48jl$#c+(kD2&EfjKc&>#AHmtG)%`#%)%VZ z#e6KlA}q#IEW-+{#A^Jnf_n-U16KerT-&y7+t#+-dfVQ%TlbV(+qP}nwr$(CjeEYA zZ!-U59+H_%l9gDEHCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~3%G>K zxQc7Ift$FEJGh7Yc!)=Mf~RQbD2MX+3l&irf1@g@p$2N=AJj%&{15ff01eRyP0$q0(E=^e3T@C9 z|DioPq7%BHE4rfxdZ9P^q8|oeAO>RyhG95HVid+;EXHF3CSfwBVj5;(CT3#}=3zb- zViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R;u5al zDz4)OZs9iW;vOF0As*uip5ZxO;uYTDE#Bh;KH)RI;v0V8Cw}7(f_4ui7(yT1R6=D`K~+>o4b;LvsDrwwhx+&z4bd1)&DHfV?c z&;cFM8C}o~-O&@h&8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_8CP%( z*KrfKa0hpB9}n;dkMR`G@B%OK8gK9p@9`0z@C9G-9Y633zY(NIAVCovArK0o5feN-fl(NZu^5L5n25=kf@zqJnV5w+n2Y&XfJIo0 zrC5d)Sc%nGgLPPsjo5@O*oy7gfnC^*z1W8XIEceIf@3(2lQ@MlIE(YRfJ?ZHtGI?6 zxQW}igL}A-hj@f1c#7wEfme8qw|IvS_=wN=f^YbapZJA82+}iY{-tB$b~$}i~J~nLMV)) zD25U!iP9*8aww0#P!W~!H>#o_mL2cB<|4<(d&=8H#1WnN#EzlCJ&<1VsAKIfM zI-v`?qC0w^7kZ;F`e6VDVlaka7=~jcMqv!bVmu~b5+-9RreOwVVm9Vr9_C{q7GVjN zVmVe|6;@*{)?ouSVl%d28@6L7c3}_pVm}Vx5Dw!gj^PAO;xx|S9M0n+F5wEU;yP~N z7H;D%?%@F*;xV4!8J^=MUf~Vi;ypg#6F%cBzTpRc;y3;vXscq5RK6U&CnbHXo=QngLe229ncY- z(FNVm9X-(teb5*EF#v-w7(+1(BQO%9F$Uu>9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo z94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}maRt|K9XD|c zcW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@**@dLl`8$o&p5){D^0-+EZVG#}y5D}3P z14F%b)K5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSt1jSGs zB~c1xP!{D;0TodRf1?Vjp*m`!7HXpo{)c*KfPc{ljnNd%&;kKyh1O_`c4&_d=!DMb zif-tEp6HD}=!gCoh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<bXihxkZ{L`Z_9NRAXph15ukbjW~=$c!w=hV00RT*!mG$d3Xjgu*C_Vkm)< zD2*~Ghw}If6;T;~qbjPQ25RCT)J9$W5B1Ri4bccq&=k$l0xi)BZO|6~p*=dH6S|-) zx}yhrp*Q-X9|m9`24e_@VK_!&6vkjI#$y5|VKSy-8fIW7W@8TKVLldO5td*nmSY80 zVKvrb9X4PiHe(C6VLNtW7xrK;_TvB!;V_Qk7*60MPU8&D;XE$l60YDXuHy!7;WqB# z9v;b<{*H)J7fr5B1Oh|Dq8ZqbZu91p?3ttkJo z37ydu-OvL)(Hnix5B)I^gD?a`F&rZ>3ZpR=<1hgeF&R@Z4bw3*kWK-!0yW`tqIXfmK+IwOEG@*oe*8f^FE2o!Esv*o*x*fI~Qpqd0~WIEm9ZgL62Ki@1a< zxQgqzfm^tZySRr3c!jx za0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^$c7xqiQLG8e8`W2 zD1;&?isC4NQYekGD2EF83zbkARZtbxQ3JK`59**U>Y+aVMME@36Es6}1fV5aqYc{O zKXgDxbVe6+LwEE)fMqm_1V=TsD0w!WIreGSTVcP!+Bi9 zC0xN(T*nRE!fo8eJv_ieJjN3|!*jgEE4;y5yvGN8!e@NNH~hd){Kg*y9S}$`gg{7y zMi_)cctk`bL_t(UM-0S5Y{W%8BtSwWMiL}La->8mq(NGwM+Rgo_38LTQvkc~nFtR6$kLKuy#}9n?d8G(;mbMKc7TC0e5m{zH3oLT7YCcl1JU^h19P z!e9);aE!uejKg?L!emUtbj-qR%)@*v!eT7La;(B?tiyV2#3pRTHtfVM?8QDDz(E|r zQJla@oWWUKz(riaRouW$+`(Nuz(YL2Q@p@Syun+1z(;(+SNyPVjVVMBeq~Gc3>y=U@s2fAdcWDPT(ZY z;4CiSA}-?!uHy!7;|}iQ0UqNCp5p~x;|<>7JwD$qXbH$49cSdDxor} zq8e(V7V4lb>Z1V~p)s1FIa;C>+Mq4kqXRml3%a8RdZQ2eV*mzY2!>+>Mq>=dV*(~) z3Z`QQW@8TKV*wUp36^68R$~p;V*@s03$|kic4H6r;{Xoh2#(_fPU8&D;{q<>GOpn| zZs9iW;XWSWF`nT$Ug0&~;XOX$6Tadbe&QE`3<)GCLLekUBMibL0wN;{q9HnBAvWS6 zJ`y1@k|8-#AvMw>9Wo#zvLGvRASd!5FAAU_il8WpqXbH$49cSdDxor}q8e(V7V4lb z>Z1V~p)s1FIa;C>+M*pgpd-4VD|(GNK_mVj(u-AwCizF_IxUQXw_c zAw4o7GqNE&av?YJAwLSCFp8l#N})8$p*$+05~`poYM>@+qYmn!J{qDCnxYv3&=PIX z7VXgiozVr|(F48F2mR0=gD@DwFdU;W8sjh?lQ0?6Fdefn8}l$9i?A5WupFzf8tbqg zo3I(%upPUw8~d;yhj19ja2%&_8s~5xmv9-^a2>aB8~1P@kMJ1J@Eou38t?EPpYR#q z@EyPK8$pK!5)2^_5@8S)5fBkk5EU^H6LAn136Ky;kQ6D95^0bY8ITc~kpN-78#HcS&$VukP~^37X?rdMNkwaP!eTO z78URpD&ucdLv_@`Kd6iUp#lCyV>Cf?v_LDgMmzk6j_8E0=!Tx?g}&&Aff$6L7>1D; zg|QfiiI{|`n1-2{g}IoAg;<28Sca8Yg|%3Rjo5^(*oK|hg}vB^gE)kvIEIrrg|j$^ zi@1cVxQ3g!g}bwdgr;bQ0JKCKv_*S#KxcG8cl1DS^g(|Nz+eo)aE!ocjKO$Jz+_Cpbj-kP z%)va&$097oGAzd`tj0R5$0lsXHf+Z(?8ZLq#~~cXF&xJ!oW?nv$0c0GHC)F{+`?Vl z!$Um6Q#`{E4ra4dZ91+VIT%!2!>(=Mq&)cVge>&3Z`NPW?~NJ zVgVLn36^37R$>j-Vgoi}3$|hhc480qVm}VxFpl6jPT(}o;5;tiGOpk{Zs0cV;65JU zF`nQ#Uf?y};2qxM6F%cBzTqc+A;_pef+7S$A`HSJ0wN*`q9O)jA`apr0TLn!k|G6C zA`Q|a12Q5DvLXj^A`kMS01BcAilPKcq72HS0{%i}{Ecd;j#~H!b@4wmz`tmWCTNZp zXoc2jhyTzKozNBC&=bAT7yU30gD@1sFcPCM7UM7xlQ0$2FcY&d7xS13ID$x}pbqq7V9F00v?RhGGOpVhqM&0w!V#reX$W zVh-kF0TyBjmSP1~Vhz?}JvLx7wqQGUU^n()KMvp!4&xY(;}lNg9M0nsF5?=m;}&k? z9`5529^)CF;}u@x9p2*;KI0p{;}?D-=(s?FAtXW}EW#loA|WcGAtquWF5)2}5+Ny) zAth2FEz%()G9fFnAt!PnFY=)v3ZW>9p(IM7EXv_8RK(w?g6gP&e^49$Lp}V9hG>GO zXn_E3~(h0z#?@tB0kn1<eK?3iIErI9iBmX>bGV30xQc7IiCegfdw7UPc#3CuiC1`w zcldyh_=2zafuHz;AmalGjt~fqFbIzbh>R$Rju?oIIEaq~NQ@*%juc3ZG)RvO$c!w= zjvUC1Jjjm%D2yT~juI%1GANGifX8dTBw7%sE-C{gvMxw=4gplXp45}fR5;b zuIPcD=!3o(fPol-p%{UY7=y8xfQgubshEM8n1i`kfQ49srC5QLScA3LfQ{IKt=NH` z*n_<|fP*-Kqd0++IE^znj|;erE4YpuxQ#owj|X^+CwPt*c#SuBj}Q2aFZhlh_>DgZ zHX)GU2!+rHhwzAm$cTpMh=tgQhxkZ@#7KtZNQKl$hxEvV%*cvt$bp>5jXcPY0w|0k zD2@^+jWQ^Y3aEt2sETT+iCUg+d z8~xB912G6gF$^Oy3S%)26EO)>F%2^@3v)3K3$X}Gu?#D*3Tv?r8?gynu?;)13wyB- z2XP2TaSSJM3TJT+7jX$!aSbg2 z5@8S)5fBkk5EU^H6R{Bo@sR+Dkp#(+0;!N1X^{>YkqKFm4LOkud65qVQ3yp*3?)$t zWl;`)p(6f96;wwJ{Da!~AL`*>G(;0LMGFL=HQL}mv_~g&MmKavFZ4z~^v56!#xM-W zD2&E9jK?HQ#xzXFEX>9{%*P@u#xg9&O02?KtiwiZ!d7g08a-=|Nq(ORQKxSk?cH}^AY zeLTQpJi&9kz-zq0dwjrWe8G48z;FCPu*rc0M<|3wID|(eL`F13M=ZofJj6#LBt|kM zM=GR7I;2M?WJWe*M=s<>KIBIs6h<)=M=6v>Ih035R6-S0MGe$MZPY?r8D>sDXb_8~;N+{ELQYf~IJJ0JKIM{D=1FgwE)O z?&yWy=!gCoguxhw;TVO{7>DtggvpqO>6nGtn1}gTgvD5fw>$rv6xQF|AgvWS>=XizJc!&4+gwObf@A!q^2s$;8 zULhgh(t(=WJrlrNQ-pHh)l?eY{-dR$cua^h(aieVkn7H zD2sCV3l;GbGNxfVW??qwVLldO5td>ZR$>*_VjVVO6SiU-c48OyVjm9T5RT#)PT~~K z;v6pG60YJJZsHd1;vOF25uV~1Ug8zr;vGKX6Tadbe&QE`Oba9^LLelF#$y5|V+y8Y z24-Up=3@aCV+odH1y*4-)?qz1VKcU2J9c3=_F+E`;V_QjI8Na-&fz>R;WDn_I&R@M z?%_Tj;W3`!IbPv4-r+qy;WNJBJAUCef=&-47(yZx!Xg|ZAR;0o3Zf$hVj(u-A|4VV z5t1SqQX&=7A{{a!6S5*3av~SO|$iwT&BDVU1sn1NZCjk%bI zg;<28Sca8Yg|%3Rjo5^(*oK|hg}vB^gE)kvIEIrrg|j$^i@1cVxQ3g!g}bwdgr;bQ0JKCK zv_*S#KxcG8cl1DS^g(|Nz+eo)aE!ocjKO$Jz+_Cpbj-kP%)xvtz+x=Ha;(5=tigJ0 zz-Da0cI?1z?7@B=dVLT>c5~g4(reg+XVK(Ms9u{CB7GnvPVL4V}71m%a)?))UVKcU38+KqP zc4H6rVLuMy5RTv|j^hMQ;WWO7Vh9K?&AR-;W3`#8D8KeUgHhk z;XOX$6TaXpzT*de;WvWJ3M43kBLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2F_Iz~ zQXnN#BMs6aJu)H_vLGw6BL{LJH}WDM3ZNhgqX>$jI7*@v%AhRDqXH_T68=UNR12h2 zK=nW^Ts5VCP#bmeKh#G9G(;mbK~pqG3$#Qlv_V_^hxX`*PUwQJ=#C!fh2H3kei(p( z7>pqphT#~AQ5b`<7>@~ghK>GL}WxkG(<;C#6ldz zMSLVcA|ysqBtr_ML~5i#I;2NNWI`5XMRw#sF62gD6wcr*&f@|u;WDn`8gAewZsQK_;XWSX5uV^F zp5p~x;Wggk9X{YAKI03%;X8if7ycl~oIrvhI6@*6!XPZdBLX5JGNK|HVjw1BBM#yr zJ`y4kk{~IPBLz|+HPRv-G9V)|BMY)2J8~iy@*pqrqW}t_Fp8oWN}wc4qYTQSJpMvO zRL0+^ifX8Vn)nB`Q5XM1eKbHrG(rZ4cLgy z*n(}?j-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5xPe=^jk|$#3b+@jP4a>C z7*FsVFYp>~@E#xV8DH=nKkyrW5NvKB!4V3f5f0%I36T*E(Gd%=5fAZ^2#Jvl$&m`F zkq+sR37L@%*^vvmkq`M%2!&A$#Zd~SQ4Zx%5tUE{RZ#;qQ5$to5B1RyjnEX$5P+6w zgSKdo4(N<7=#C!fjXvm)0T_%S7>*GbjWHOH37Cv2n2s5kjX9W)1z3zFSdJA~jWt-0 z4cLq=*p408jXl_p12~K$IF1uIjWalp3%HCcxQ-jRjXSuH2Y8Gpc#ao%jW>9Y5BQ8P z_>Ld=jXwxBFOc8}h0q9x@Q8%Sh=%Bhh1iIP_(+7rNQUG{h15ug^vHzF$cF65h1|%8 z{3wLND2C!Fh0-X8@~DVPsDi4fftsj|I;e;GXoyB=ie?BvOSC~-v_}VYMi+EP5A;SK z^v3`U#t;n02#m%UjK>5_#uQA)49vzH%*O&O#u6;Y3arK&tj7jy#ujYH4(!Gr?8gBd z#t|IH37p0moW})R#uZ%04cx{Z+{Xhv#uGfp3%te~yvGN8#ut3Y5B$a-1e+g7aD+l= zghO~lLS#fkbi_hz#6x@}LSiICa->3Pq(gdSLS|$`cH}~C?13IG%x}yhrqYwIH00v_ShGPUqV+_V) z0w!Y$reg+XV-DtH0TyEkmSY80V-41012$s|wqpl&V-NP@01o2_j^hMQ;|$K@0xshU zuHy!7;|}iQ0UqNCp5p~x;|<>913u#mzT*de;}3!@2qZW{AvD4vJR%`7q9HnBAvWS6 zJ`y1@k|8-#AvMw=Ju)FPvLQQiAvf|NKMJ8RilI14p)|^&JSw6Rs-P-rpeAag4(g#k z8ln-Jq8S3v5^c~H?a=|9(FNVn1HI7){V@Q8F$BXg0;4eo<1qn~F$L2x1G6y)^RWPn zu>{Mp0;{nG>#+fwu?5?)1G}*Y`*8q=aRkS40;h2X=Wzj-aRt|L1GjMp_wfLa@dVHD z05v|o zkQv#K9l4Mj`H&xlP#DEf9Hmei6n4pn1lIPfW=sX$rj2xP$w6fX8@(=XinFc!T%&fY11X@A!e= z_=8}J0tt>#2#s(Ek4T7&Xo!wjh>duNk3>j}WJr!wNR4zzk4(snY{-sW$c=o+k3uMn zVknMMD2;L`kBX>-DyWJYsEOLBgLMQXodi^L>sh4dvri&bU}CYKyUOxe+YeLTQpJi&9kz-zq0dwjrWe8G48z;FCPu*HD{M<|3wID|(e zL`F13M=ZofJj6#LBt|kMM=GR7I;2M?WJWe*M=s<>KIBIs6h<)=M=6v>Ih035R6-S0 zMGe$MZPYVj~{nBM}lK z8ImIvQX?JGBNH+s8?qx8aw8w|qYw(C7>c75N~0XgqarGy3aX+8YN9skpdRX@AsV46 znjru!(FSeN9v#pbUCMZwKafrV0|Iq0Hb@$Rp%{)47=_Uoi*cBMiI|Kjn1<bXihxkZ{L`V`yr%of|w`kL`N&61%nzv}vwSJp_ aTQ_N3zeStQP1+mH2 literal 1684669 zcmce5;^ux~DZW8c8b^i&g9zl2tWTMRHow>~&Vw zt;(#<%FNE2NwQ`!h8GJx8ctX;w)EGq*K4c+|FI2wZ5YNb;K$mAvA<;4@Gseby@utr zcLf+&*nnYwCnCwMOcij3UAKe(9jXQ%r{x}|W4{qSy;zo8rnDlr0t~j5*P>kB<^RHjv zbG+Uj^pCp7=hLgM#Qg6U*6f3_h*t)W^3kY!2$G+kPoFRH@x&B4e=^SdMR(9I&VLL^ zO39y$S6Y+t03|!0zRl{ukKO(lQW^D}=hMr*R{wa?I?f^erQv9BlDDC$7p#cq(<|-4 z@NCpQ?%>BaKlqjRzxT`6evls>U3=(Mf>%M(89-fEg9n#TTq@T2^r`ddrBU9?TSb1} zd3XBCI6ocsTI0OPhOKc2rJlZ+mA{?0po+m{)XuYFa&**vaz1^jJ?QmNE+gagrR~vS zKFSYobx~4iXZL*i+{&mJpKle@7f)LSq|1!Z&v*NWIX-_af70$v4s&9|L#L+~Y|TN$ z{m$g{pjbIPz~5JH?PYu8!6=7nUV#$GaEh!LpY?L8TC26`i=FXlFB^CAQ~I^v8c*=S z^fmKqF>Z~!?NYK!_?UixSg+IbPTm`42hc>nMIT?WiZ>>HgQ5&8)$*(MCp@0m z-%!JyUz)yXzgofT=hL_BKd#+!FM$n8?|gOo!fC5NY4y&>;J$*tqfEyz9s|+&Qs=jR zjF(z>o~FmI1F73T8j#|ACVH*&)y|iu*S7olwO$whf&H~d-64@&8ysD8CbNS2zt=6= zc@OrK4=aF`+dn3;-sz0T!{YllOcPqMt!ia3I=*qf)w#Fz`{#dv|5r?3 z$%m7JtX&k@QMYFbK7GZgSp0O={B+{IbhSS@MU%>o2BXu~*fj4;g*6{o+MfN}wQo>c z#cQVOE^Ty=SIke(k6Q;+*O&L{PxI4@?ZIJw{h&8!e}eDtc8f8@peK{*3y)g835o_6 z(s>7JdKUiXeCrR-J70m;+Vq#7>3n(m92L?0{I$-z_UCKvFVpAILR)8O7UuWq74y&R z=oIE`-~6KebNUkaTfIDkZ=pJzUb6o#&Rh1&cdRTKw`Zd?Yh-W#wb5WO{^`nJ<7Yqp zYj7GrJ+}nE*!d;URZQRLz>oFF zmz7F_8eKV^T(4K}42+FeqWx^==Pb^v?5nZ^xMT91_V=rwWGh8N$>I_sf0sa`0@{qitc^%46&&`9E z;XRD=$R;BgvPHPu?~aGv_9tiOpP83lasSS`$9;03Kepe#U|SUWDz`;%Q($!dE&r!uyp{7$u5_ck>__aYwiLqwwHnvKmu5w@)3js0vtgW}}}!vXZ=JFulH;bZF|%K0(w8H*$b@ z5w+)@yl%dEJnB+^M_w7-;)@9Nx|cJh^Bw#CtLA;Q(osvw_yr4%=rfxP4-vHPe@UIC z`PqJiE)NcB3DEVe! zK66SO_PS$dAD`Kx*ay^7GuyMncFh-WnL-$Ivk!=hAHHoLnrNMVFC+HnR>tsT7Qq&k ziUQ;B7kO*c?ohnr6^L3Ef9q<-7RU#64=kK1P~})$VM`l%%pIG1VC$KToIETm*vdAT zjE58Svt_XJya{$(>8Hw)$*GM*S2ISDsn9=00}HGa^?phZMv< z4BLgJwaUuiHb&%C-!(meQ#u8Mht_kTSXG@^QK{RYzMA#?6;o3b$eK8ozR3Fn9@%t$ zY$dX+rYA*oMWd_{_lO4e!;HKEesorYxM18lful0xxase5Sl>SEpA;+Y-e7Wwcx05X zKz}z{c=1NBdr;hPU)}g%<-052y@h_D3f_K{A4R-ggUR!%HQAM z-)WrghNG^__?hxir2*Wa-%*BUawhzcZ*uR}()Btzf zo1FGtWa&o1^a@6)ha7Nz$-X}x414*byqCE#9t~J*Jo}b?A@rc8JPyU_WR>*kfW?JJ(^=HS3Qe#w>0hA+SEquTzlvR?DdDM$33=7CEI zpg(M*lBwr#@1wyZIBI_q1lzBWC$JAFc;guSOV!V#{8J2A$5|(Dp?#N#ulsKx5mA!bqH^oXA~5aol-e^AzlOR234Z7 zvcdEdWIvFmw*5?tsaQqNv#(})e@aA0MRzRgkXJ8d%n z&M?e1kI{L#7o5xcVtY8WK}kFuHU)g$ypSx5M6c0P^n8=!tTz~Zg24PU^rh6& zs|TjWD22<*;*Zu?!w&<`#Ux3}f%uGUW(m!-53yh(rSIQ@*Z+Nr( zC!D-_5#7Mn$?!Poq+_fvPN?=F8V?p5@0C*4q`95gY-bjf!5qF)2nj4!Zpto$h4Z?Ny(6x+-z) zH?No9@Pq2BYZVdV7|K#+XxhkYV*oK83@{|DRQ(zZN@kp4ok)3^A5BK`d!1jiZNbE< z=G{azUOgla&XKMQWMBOh9haZgMi#*a_wIqol7-Pz7S3V(L7D-Ja79(>jU4S7tmj3r@2WU!EO+*PG4^IhMm?yj>v*WuEw8ykzeIh zWz{R&7rtD+fSDe61B`-8cfe!&iVx{wgyTbuPb)uZic6&#pAB>_qIgG5uxx4955eb_~^YJ?z<14Vw^?IZJoVIA0PS=se>?sV=tf&Fwml3*Q#T;0>| z82z^MhyDv?Z*QJWCI{22HY7GP8t_bao`wT8A-ns9>~Pe=m}B|^0x}YItMktE6*u=( zPA*;AannpZwbi-Yxza)Qd3qUzw`t!$wsUe_)UIhw$UJoWm`Ulu{*KT8WOC5?8glN_ z*BrL(jWOgnzw^xWo$$vFrnr!0hMZ4NzZgEm)Sd~~@r5+80Q~NUmhaYO`}ZX|EJe@==b>XV}C*iuI2{bEN+}*It^cxiF??_^ySe} z+rz*Z)y@hTFSgRn$46#ThypqKp57MUztZiCk$dNC`U)(_xcux1P5+Pa{piXSO5A8Cr9PK{(1>#}MQckub7mE%)jlF$ozsia5F!3 ze)4bNx5+_k`l1&IQ+s)~i;#q7;!OX8GT`seTla;(T}A@9`UeG%W*qrr%o<)Aw-8if z`uF5tH_*lmPX0FjZp&^;(Ruge-^4E{?!SdU${Bf4P@bkg`FHTj$=}C+P|lNo7k`qe z{d@QmpZ{I^$A4)5_>b%#|FQXFa`N}^CzpcEPbtOAo7M?imnq63AK4Q9Lm)0tqRI5d z-T-kSWqYftH}zpvMiQG=b7GhK(;Ll{k4xU+szV__AMtVVoPG9+YZp(sk9F--~@71}fBmKVE z6ykq^7Oes<8HlA<#OwFWJU&h4a6l>?M&h|G&xdo1bnyzYYYWh`(F(4(Lf)U7I;xPB zrVwF;fE zI-<|!W{ouZ2eUPL^1o8WUP1t2l7JjW27$uGL#rx$G!}CSa+$39kI&!3GE>CtJeK_f z41}=yw2LKg`SfKMGxKc1dnf-sihc4Q;6GTZi6sGUvB5J4I$LIa625-!xHmY!Naux4 z_Yk86{OziPDSx2s8uKELylwV1zc6yG2$t-P77yM?^j-!P@9bvsSH&KsL{HtSlee|XI-9Sqt} z>IJKp|9)=0T(l*<`E^tV&9PlasjjxW$~vsCYyeS} z;;^Y8uCFsgr~m)@Iyu%7J>Gv)_IPhRH*f!)wl9)R>+xQln=7)VmkmUN9Aq+i{sUVBXLAd2(HeN^>qsPXDI)zpnwvM$f6){o)PI9+sOrhA4{QKYmEuZML2OSp znZAk;m{wjR2W}%)&RXAj)(q+J2lWVdo|{Zxp;x`72AEMWKVcD+~zB!l3(XY zSNw{7T{P)oQp}KN`gEJHr!UdIh^#m}Js4nGwo4t|3w!oo(%YKVCh+ zVq==RaR0suqkN2iKX0au@fYOikq#c&1Sz&uxfw0YCjSEnvNe6RTkPikJD*LjWL|Q5 zdNpfdI&`f{S7YMs(%^vhWs&AOU%T_v1lzL8IW3aolKW@*{BoP8weXle!58iqQzuvX zUo@dYzf7jjVl4zI<>c?df=+sn`sDB9Z&D8@|0#ajI{DA&ztby5=IzloZ9{v7H%06~ z_){~x!@sPKFu?@*&8Po``LEH%$$yEze|GX;;lD^z|JUXZE4h$Ue!>G|Zn#V7gBQ-h165JM9)!c^c$b6Oh%{0`=!mLQ{Y7C$sfP-wC8| zz!ES`p@OC4b)O2nUl?OY0xdSsr2TSS^cDVAAbu0O)Ub~00(J701Z4TK!2F^a@24#I zWrty25Z`iKhyHz0yC;!v-?_s<#_FJJ;0kj^@@F4Abi!VU#-AGL>=sk4&~x#{SHcQ52xa}USEXN5)$81%S3UB3u3q!K zds*;*ndX&iKYz`s(0opBif`YgUnp@^`@P#}Ys6mRw*|&mM>*!d>r24qJC=zUxf4y{s?)oDNqmSxkEtQm z^`x)5Px&?R@wdjQ-koANG~0PXy?D@f&rGh#h+33k#XMFxLdknE0Pe zpE;pm>%EhIh$sS~@g*B~RB_#NW|5Hh##QPOkqa>Kr2UqnpU({PX9oDQiHQk2f2;Zo zv5r;TdEIIw?4mazcE z^x7}N;KzIYFB7k`S$bj7x%bKcNuRg{ex^X|xxDvnXybkK&#V|G8nT7b;ur7Z|2z7a z>)EH|K*js;|A{_S!V&M=r=U_O-YaoRP7``~Up*Url`1O77~Y33L?3ed@MSDx3Gd4* z(U-GB2Jh3Cqfcd|;Jx}Pz3SIGTZtbTc<;XvL33AOKXC5O`{E1H7m~tu{oV)fL?6uP z;l1y^Oy31fq`oirKKxqZLpF-2+xEWu*~E9E!}i|&d3x8^bE1d#UjHV&F07Q*EP7<` zi(ibs5S^ImguU0VN3W;*Teui{1@vDe57;_irZN=Y}44T1Q8|<6TdD%ibmaw(o!XQT*xTWE(#s z@AD)4aq=;}@X|fAJcK(SJE}K55cVv-``H-1PhpcC&(b>Bs&jKc(kfW|IDHB0ijS+6 z+uXIj(8FqPtc9mnE@NxIaRlcle*tPN2js(c+}45V>)F2BK8IX0mM1@=k!Svb=EkKIO_|ywk z8AZWPUceJ5>P@?3^qMHrA0l0Zm1CGdE_G}a>$Lj^=O_OR#R(UNRqt?in*c)rx*~b0-`@8Get<49Udz;%^lyS1!!y40Xul(Bi z^d>KGrX^ASD(P?EXkW(?fE!q_eMSe6tk9C@ueVncpwp+XqZ+5L?VQ~_8|SN|QR^(* z$G!nr>o1T#zeze+)rb!8ZHvBTrU>rjTL1#l%l1hTllN+>owGHpj^4!T z#2Ej#G<+=8MD#xxRTL78SzZDQMl3PIcQpn&&d5VAL40JaK5l}H&phN3gpprCnX%Eh zhx4GK+Wk$n*!D{w--BWbG;Oow=gD|~@Cml^MLZii57z5E8KVt&)f{6o;p-*ggI1!x zZ!JPsA~Km#pebG~nA$wdLZlkOEF9C2Z4E|)m_xTMeCF2>gD~gt9Xp;(FibRd2#3LcB(D@swM)$ zkqWznVA!{J&Nj`~w9Kl>cISn#CAIz8&21G+5|J6d07hEmhBLbEnPF{QEo+)gc0BA6 zCIFcahD#^2#Vl$=q-FmVM+M>|V;4dbWPIi!mmrLMb?2;3H>$~oy77U0d=q5HW!Le| zhgIpV#aJN5hmYOf%Qk5f)<@V^Ev)IUXq6krIsq1Qe8v2}>vFT)0(S-`HWQ3@8!^@) zGe4R=#sfHHXWS&t;sclbAVtD44|KVgf0~YjR9(iAkicRNIG3b*74TN;D6Ju~Fsj*BJf#jnFL)<0HUh{PiELt?%rcL5Vj^POS{G6@s&9kB z*kyfh@2qX#lIV@<+u=m`i8^S6AJhQphFVaAb{@1m4~7em{+ptz7+dYX$N0=^XC(+D zL+wZ!(DvLIT(ugUu0mf{_yUS4(9$v*ju#K@;h!5ggi{#LoGmQ|VyK6q~RfPe~KrL>|G% zVjjeX*=8}o1RKJUu*s_tc3=+zh#9^HhP(N3t9|wm>EprUVquehA5xl+nUCZUH5t&6c_-Eh)@VWj4}SUN5x}XmyfM>Hg+|s=i~w~<{|su z#x66sqPQmJwQm8$4Ahnnd=%SqueANk1#`RD-a;3ECZ>nD92#;10cV|gD|W@891Y)B1^;^DgwK*C{ z2#Prnrx}hqZK*9QN#mn2lhf74_U^q^X$OsT7JDPV+ zVFQCvT@9ej+q<`9V{TLf48-^}k&jZlpTkO4y?m z(cb><=B;(9{zf`tAjWq(az8IcM;;cl2q~6O)0Sedv?SL89`0`Luigx5p-~GckywH& zn7qY~JP^;<1TdH4&qXr^!@_vnPY+fl@&!g?DP)3SaA@7GM9w~1UzN6_MsL_AgFU&p zz{y*F;Da#-`Wf$M_@GVcf7FbMLSzw{4Wl#1203G?)LG9NWF;VTA>!bK2-e1q| zz%7c(SLtdqoE~6;?t^91d4LJJ50_2n0WuxZZ>-FFt3S%tK0@_9SiO5+I!txRMXf>u zP^R_j@S)*cVjX&bOoxeiES8zs9#j!iCYl0ePOO8=R&Pq5s%Ag}uVerikVfJ+*KcE7 zgg}4$VYdI#F1&{%P-E>NgOI{wKJ-A@&AZ!ccalu1_YRo^5_3>0oa+DH>fRmEgw-%I z)KrPW&~UQZt@RxQ2CMr)2d&1xA-IRb@UY-)ee2eYx=`cDKtnMabD@vRZm;jJZ#@t? zQp3DZ42Qw6WT9xE0&{K)B>)Db+zrO;H`jNwz0Kc|E<_EA!ovDMOkhg9DQ8;eFEIcZ zkTkoyzOl9?J4dy!DQCbyj7?b@JDZqotlr(5QyoE0P5?0j>DxWn+76~}RT~eItv(Lp z)7(t?`@V^zDYp=`CUwc=!0fuJ#`iUt%nE1CZ|rWaeYCcHZ)bH^YEKPbXnqv5F{h8n zgq|ArcY~f!Rb#rI3=ZQ{QZ{N2Y8aU`F$2T6h*2r--Q2ppx$&`R#VUB%*eVzXH<{#* zcck7`++?Bm35IcLp6dQqeZQiP{sONVVlfZaP=RNY79C`pd)Y^uw?E4E?(gny-$r*J zlyyfNEl0u43}B}JvZSZ}I?b-;CVzt@MB(5--^k+QMA8aE^DPNHx z%4TzQhpMNKEh zlfe=!V8Pz3ghXo0)~?x{71Ru7Gq972F0=LxOKlj`mCznWeCQdl1>*8kqr);ky8gn) zR(Qn3?VO=lK^Qk~(vn2FtP!i&aDkQV;#40b z1I`GGd0?fq9V($AwFShRssbGmHa0{x!j8681=uj4d$=SIN2sNuSJgp8v1I_p>OmZE zFF#$it9u5cTjq#KQQvBW87$IC;V~Nt<*}_l5lm{8&td`=v!G3Y1-Dr*#dIquflsFt zE(xEZe0(z+4Dsh4=G`k{7@KN@Ct)zQ~%J`2c%h^F>CbWTy+&8jX%cC$W=k4{^v5_PUN#y|?Q zrz)s-bh7)%7$wlv4xEg(8bNp{Tyz*K{Te&MCL6YlH;s_7K|~mABV+<$Wcb$lv8d`U zqOqvNViG8(oC_DlZxsDiP>hdm=pjyCMl(QwL-Cm)QH?+8^a4PpqKS|DYkTht2Gtow zda@V+=m$#x{h+K_SJDrc0QzAGiglelcOY=phM&-Yoqj2yDT{7b)(K?Q!o$^g48qE# zBD)NO09K0}r6o!jhK4htL$KPoKd>*`rRq$iBlJ)h8y%F%pi5g;_v(eX$ia_G6~Bg6 z_GMCYqZPChwNomh#bps5m;Ni^6OrrmyWA~p!bfKn*j$3QPy#cQUdMJ09y|*JP@@!I zmq|3{x|HEmbR4xJ;MF4pjUU+5I?((C4j80mSfE@vH3+ zhL}MUO-D`U26~Z5OhC$^vqhrfH&9NA!{C>3hHfW9p0`3vkP?=>K%|d(VM`E(z0~c~ zjZ9}k%WB7W+;%6sb12Oy4Er*vrH@p6q=>2HF`KF{oW{pzj!si7t=w zVcZz!we1pwVP6_`+nx65Fsjsfo4Jouf}@XEii7oW82n}Twm!oqBhAd) zI&pnT1;p^LnqO6@dy);f7xp2McPHyA#5P5}&yg41n$c-*hvmg6+lRBJgb784@}L#hjoK6=0!CqQ9P#FX8xed#{qgfh+W5JSEJ9^+ zoUmfaaYGX3QC*ecr^zWUz>^7cbpcd@y#|))kyN>f1BbG>;i`I-tF1j0#zwZ&{E8z# zPid}oKBG^-mq5$_<=r$fPlm&`d$jJOdpsFT3d&7l2qy^D;~B%$)=XqB0WI;XO0d~K z8VFK#u6G8h0b?F4kYgTbvyxP>sjHdl*d!!#!tXlH+xa+k;-$KtriRahV=heNIIhj2 zMmjaKT*D>+nGYV>@$K5!StwHNP->_ci&?5#+oL0FpyrLi2v_U~vZl2bKr&~g$^F5S zH7NjnJ}e-$C&91oxm^%KLbc18wa_)IFqskyA83)Pqcp8O@GiPe@qO(9^s5ZXg#JR_ zgsW6@xijUnu9vAW!C1*=9>wvFx<69qlYtK%gi$IKMuXF0LFr>TXUW zKq2U2wdw$wj2vodLXl4Oo??~(88{|#ZL#qDf*+yjt{Y6@YIhHdX`DQuVQ1j8sH01= zk(h;{n1uQVda)!)*`vBzWhNIRG9_;mNVqX|Y?vgH?#tO+Vc}!fr3XYQ#d&^^<-nNJ zsxINK)B#mm5bO7tz%^G$Vt$7nZ{8)KhaJ2gXD=jj~c+eFt)(a3``0QlZ3T+R_!3 z9)59GR6;Qc4Frv0M7~?i;3O?V_-sf}UX5e@g)f0>ax}G2bJ33UKD78B3AIhUpKaxj zg%zkB!weR}VnsPwS_e2)FqTD4clfD0TUrl^IpBMEhmYs_e4VL%ckK=z4=_Q8p&1-h zv^S$Uod?KtwAssUY0B{QR(i%(ZA7&KN=zn2*x-?FVFQ7%4%G%{(HS%*^6CyHNe!D9 zQYHg3oiRtVVJx%vp$M^5*H@C~aJwT@Oj2%yxZtN11Nxj;_3rjS1Mq?tWOt#JCI4W>4Ak(3fGB>Hkepk&_ zCazMmD2$DjYX%!VqcCkX_n$x}j0iWEW9mk@zzA`}R?-C5@84Jt;en-1a0w$UFRFE6 z{SpS_l1*SMXreFHZ6ex2>QES)+7V&Hkz*gj1{MH`qN}68c1++wF$-y&Smv+E7~Zc* zvm4douAdIaa_NXVMoN?&;1-BWj)0g;PRjy!2E}&2NAnpn^{(bM(p(`Vvm)zHtnKV3 zW}J#1U09G0dsrB{J{k>1l3G1bgs9uq+}%uIE`Zr%N(H!OuBZ?;aUs1%gbs)aT+K0o z++eDAgDH_LL$$lKl);?mFYUUS3=Sxg!T!Ds85oHvsP{33;I4a!t6v?WC#zq;F&WNO zab$g*5kix5tsX1Y@9@;rWtuVuokh%=SSm4tGBIWnti*TvxYE`(Oc}n9##GL4wKEEh>Yax^21yadm`qEty0O>Y{22Qta@i&> z)SE<}ql99Tvex)XtjK1yCh-zBd>S3_p*C6aZv z2$_RRkzs3oqAzPqR>3jZyKIR+x_5W2(;DsONA=A>ojFf7@;YQLf~iS+E%0iwMkih1 zKnu~{^>K2|Q5Hz2mw-%Xx>QRSj~>+AP_#S6l{bhNJ(;{Ti|?eH%j5yFOzwmex}=%1 zho#Iu;RRwZqZK~{vT72LOliDJ_59Xgf;^ZExzzcJT4fR=BQl{UkO5Qnr46PNfIdjFqF%1@pA-hL3oA`!re6l|YjjD5? zvp5sjTmaMYmIbi4(y_#HX%TQ}`-WCZ&9qRU(RG9@|L^A*One;zej3E)!!qsUl8rs!l-R z4CqX_&&mz9r~3Z&p0*-Tp$(u}TH8=44{y#Lvi(dvovJpJwoT?g!je|s!J$W$iYF}74^B^MYCo9~kb>Vq<+?I}r_n3x~RoYn;bF)!Xz?hNL(hswN3n_7D0sYESoXc& zJxyh>RV~qyaomsSosi=eGz&eoJ)c5Ayta4`@wYG7pM_ifJ%so^BBe2sjJsDwr8Kg4BjzZQabP=t*^Pma45sf8MNE{X4d z=v5NG7`IM`LI;cZABoDmi1y0bCzl7?7mR8@KBLYVkGT+k39fs%_3xzxB>p)-KY=GP!@y!ae?5Q)mXeh*T<;k9(3;6-|nBsiDCZ^hn=OYK2I z+?m`!Yv=<4MCLi*2h#h) zA-%t=WeZT5mD-b$4bPEanLFQbIE&B$rnv0cu0oZ1?=y?b0j9a=oY$pt89?ST7Eks8 z9X=f4=-^=Nueab?f-xeqkRH|Gl`tR&!{uglY!jITYeSl#I~YcX9l^6by-e__6I?U+1SoSN79>uy+-I+Q3{L3+)mX5OP#`iJ zY|OAlVUF4!YiUHRgE0x=ud~wcwZ`pEU=-?@q>d^=4W!!0K_+Ueu~Zg{@zINrREdqc z>PoUYSsWHKpbb?Fa)+*(IhalHp!D^adm;|>@K9uQbd5U7uA}krSQ@N5GECh^c^_Q1 z{iRGnT}@F-nuKP4*QU_XmF&VS8n-Ed$ZVJcA!+?*6p!5sPN-A2Ce+EA0%mUXe};R2 z(d-~NEmVy@Y6%&QS&*5vEI7=jhhrtuT2<#4>iHsEW_I#zx7#!$FNfrf>g<^cyy3LQlMLLaJH-j;U>$|WvWH1@E^M|cbKU}@vxbF%M;VKO8(R@S|wc>fBmgRV9&`{TJ%lsg2_pGTb^7%(MMS zn`)e=B!Y!Y^~)D4RpJnazxsKVEjXj$`aC6+0Z;b%7O@EXLtFpL>kmCVt}oXg;RzWq zEVnO@jceQ=2}EYYemU1-N;Y9detvjo0cEGrxfDM?yA%oAe6Z}Y1UC7Nie5wB1oGMnqG;W4%b{U!C) z48|PDbUU3UnzuUBI->%EmR#{95;BYM1Q}zt$}=SHpWGebm^?ZH+4rB#tx{sL2Hp61 zPdp7m#>V642$fkm#uBWFDr_EOrI4B3jjkzT4J2(mx^`I1;98pfb=d2+gEg>?Tbe** zHaA-GpCxqJc(jzjWo9?Rr#BM0ipC>+509DLXv6Gjyx$+Sx&<9;B$`I!(MAZ$oK%ar zZYW!A)6Ez;+M_&rT(uV3no&&!Mp(>4t={9Y_vi`H)RAXBlS5-J@?^wC|DnCYf<_%f z#rGRaFlM0~s?QQMGu2}%Jb+^+vOs1s7eonxRK3k0vS`f1wm@X|A}YC;RJC=D$&-n> zkm$NO>GsCq6t3z$M)^?>r~jkx2&~UX{L^Qidip8)AB)JQftO-Us#P|NGp$PE!72Z= zxIg2&JEixc;vFU@0LWLlWuNvem zDu>5Rtiw(CGwV-ez}mzS`dG|EiA`$EW=fKFKqK2R+UT`{<6hL^NljZzz%nyS=nmLk zimUgrn1@}xd$uH3FVSKylPy~smygC=Z1;P(EhRyuPKzY^FApkW!O2~t!4a%OIF3dv z6%@0uAH-l|pRR)x9P09!lq3wq3~cAFEm2eGnmo76H>(?F5?l#LW+mI>xe=O_S!+## zYeFM${?4dHN&@i5VE*ciN%#5T0rNGV7;SJeZ)Tw{+7gapu!!SA~f6UL+qjrOwg}V4G z0na#$kJ>W$5N&&y_bLAV2xk!qyHxw_1W$;^eCX8-pBdmJhJ=c={WUU+xKtYT^Fj;Y3O6m1OhA;2Z5ENNgW2F_A*CF7KUOHvSh<=mQ4sb zbW=+)SR96@s;}VVWvuE@FDZrLked)nB1-%w&Q57YY#ASI135lMjr9g`>wxY1xy z!lihke8pls299}-7Q>jd>8G zmpriX)qa0~Yd&dNpAbnMi_RbnV40ark;{Zv)_Q|t5-fI5M+UQ58Il>vhx?3SUQmxo z>a|J|5FT@pJ$hVjsjgJ2Iu4mFUWv(^fkruz;?Jurs8NPwMvMe}DenyqC&6G<%{$GO z(IGM)bttUWu+`~dQGMzxQfW#c=?#d_Y{m7@O zadi!egJKq3#8tAu_w0ANh0Tc=;pX$*HH-;ZW``#&**23WI^k5EwWP6x7f$jV?okE0!X3Qy*%p9wKbtIiZv!W$K;|2P1DJ8liD@Akz{)ON`@HZ=mrxOlE}#VpePw?H_I;K{;+6 z2uoJ`uR2bF$c$K)t*t*9FWJ^4A~Pa3bMnKH+rI@P zJvH8~k=Ms#w#u^c^j_<@+fEEEn_6}N$(%w$!@1v@^IY|M2}?X?tGpoD9UOncNPL<*r(#rL~U(&)>9F29V5&@l!&^yZNKw+DCOp z>;i&XRA#T0Sz!N>!7kQ#L|OSDr{?N zVFHl(kl)|zAL8WnIKQt((S4JAtWs1y5aVMsMPXTXY8)>0*}^x?uwCrDMn8+aIyVlm zx`_VbGf7BhBhTB%>1O?QZV!D)h^0n^r#T%;;*%v1nUSJ1$;inEA*ULhDWoMR^HOvs zdFfEJjr&_``A|vou_zx0YPfR=L^Y}h zr*!e1*Fq{3#zwZxU`P5>54uP|3!R~tzl)oevQ?AS5XDy4qxA4$Rcs%I%Z;qQ{khnm z;Px5;ug;~V;2jR*L+1uR4pCH{C(z{r1jHv5cAQC6$4+$wGM9+)nPH)>baQ|Go=}k* zXC*jFAl8x3u($a;a>Yqg1_Q(lT+8HB=RWc(C4$3Y{89oOo`e{sP|Si1L%`yf#V1sAEWKHTJ}PrpRzYT%NtWQ5^}Yj0Tcf5$D#h z-fIKD1n#($LO1y;0FmLq>q~$! zldrLa-)pL|!1G~-sg#F3majB*RYi?BjFpsTjKi6v=W8sDg<=+8n*053J6vtoR2s%& z9`5I<;@q=Dw!cX~A0sj+vKD1c3779zmzuSxsV)J?jF>%3GSZKt-%>Nh7hpA@%(a@u~;q)ZdtDAm}b=z*UBRfYxZjBZr(p0%dfDg;m7}xsLGo;t2Bxgw<05d(#cT3YJ%ve2O zb*A)H0RoSMUfwUlUIz)8r1sUN12g$0F3XQ08{(iEtlkb}$7^AdHJ_HQ{cIa_N`U8I=^UL1ARXn}m#DW0f@0!V##V=z5Hn(277~ zCa3v(OVYf^L{>`q7vw5xAiz-GJ2PnP)-HKWk+V#aYPlYj@(lf31c9Mg#aGNM+;%PGqW0h!NAhNHV5bo0lF0i~J`uw;+$weYVJ zk=ZEpHTGiIsK>rJIXViKTk8>%fvBbQVC#8pF@(ch2Csvy=e3>N(s>;$^I9w7I-p7H zo2z^4f>q6bC>2|RGN-It^Z5S8#`>;cT~x;&Eb~$zUfC2nFgo<4dpsFTWV6wulG$b@ zk(r&wRc0MyqV1@8^l)XKKw<_;#aM=NaiX7!(Z^N6GRqK*d5q1_icE8ba&m>^1w4;j z(&@OU)=EI;tK_1`d+T>MgrzifI;8Odq+Zo3-oJA zcmu?xr{38t>BYX!Y!l0<1clx^n{PeOEU}n{>fSt|9c*l7viazBpQMt2%tyYWC=ZYLDbG=<0gU(^-TTkJ+eSEhS7ieLXs_eMe)W@T>i~%akC~DEZ6DxIrTJ#~AvuqD!So>!~IjU;d9!e}`A+K(A8qZ$pUOlZx zIfIEgIiDe(!&K+hPiN4`c}yBbIB7GlGRBHoXcH$~ z;!;=`i&-kWrce?rSm3cY%;mA9P3<~>WKPV^xjK?BNImLV;dEt%n9N#P2BMo#olPyn zK`}>V8T26BpVzd-G8VH`-W^XU7Z+`TY3kj5JZ7tWuJ<(I<(vB47?qiYHlwpP7SN`_ zViuZ2vK|8^p(hF1^pRoO79}DxQZ!gHnvEx-Y3tEoEtv&l9*PDn&-~F~n!=9;t6m?! zCUn-c*RRl6jw)iq$R1aH*}hWftZBq10GSWc>is|UrPHwkvVGF^S2lc~` z4&{N4YP4QQ0h|PSe@W=TVRY0!m%ZS%B>qrMt^GO)N;GCdeBziI#3wZ@GCo1i;23Uo zADsr5k*hsJ4TXb>r7)-83FB3xtQrc7#0=;aoD}$dFam!!IOAUJ73z6PJZ3{o=h!y; zJ3Sl~j1W}_rN(qMWFA~SS76YKa(Q-*c_%4Xoif$z&TRR7Se6q#k>tKxbh<}!ps4ml zvuPb7Gh%vEGUDRMQTNF`+#uW?_T;J!HK#P2IY8zTAQlWtkm6QjL4}(!nYHp>&fK== zoKKp~2Q+3v-zDYS89WYhz-r$$o6G_-A0})i-)?@2&4GsjrOSfHz z$c&NY;L@it4lS4MWkJg+F_{(7u+;DVXp$#hBGr6lP4$RXkd+JxN8MD0z(Zqv z?qmoYs2^;pJuyP?i*Rth`vH&S*muE=p>r9o1k~7 z>ZNqyzA#N~s|1T>*&p0&1zRbb%Hp7yqw@S-x8O_D)bo3A%vFs^!|tW&m^A2Dw)e8t zBkWVhrD<}*k=huGv!a^Z5ineM41xULF-?g>UPR}m)_X0917j-0b%JWAHOhlI9ks#K zb2&67LxTa?&HM;AKSz2~>m{V|a3p~l6(fZd9BDo`frrBcaKVsZV~-Bm6BVNFWDZO3 zFc{d@!{K0pEAg`NAS>d%D{8FU9#9BUh&#hj+6a_6tuV*=7~2FF6UJdk;9?2D4ugRa z2|=KuKcrjNbrK;iPY$>Li1S;PH;CKt`J$<+!Sh4BZz_d(sRE) z5;IW!xZjJlPHU7{@1zdLKy+Z1NyS_~CR1X#TT;?Y2;HbR>JG#8p=yA9BreFQgJf1; zP%QpCT(+PdCR1X3U6#r$TuyMR#y?BBJ}8rtVcH74c{UCXMr~>`7Ks_Cd07TpxGHQ? zjR$b=UoWx}1HMs^H1OkMYy$D7eK>O%AA}jLO^y5j}3Z z6iLXbJF7ZvIxuFcS{&)rKHM5aBC0K}Rzv~GtVp{=^05wlcd7apg_bdyHzn|Aaauvr9pfeg#m> zK_d;v(aGDNB%HB2*;3QZnc&&sF&k2yKAYD)__nXkNDONGRzvE+GBL$;R?Kj-h#J$u zIk-#QBVGD?Mli=;F|3Y*(-~A2h=hnH#bB^lj;i+rH$B;lhY9M;%4{x&$c#d+=!BvL zc+A~V_*ouTT}X9{NVSgxv%M_t|T$7HHM znn}ipOy@O%yq{x?j-^SFyH&%OLE7Eo`Vk*;7H705ZgEa=25clJR`@JiPKKIp1Wj8L)QY>ud*HDzHeuA9ml+><3*gG6M; zD)zy1nX*>rj%&Q60b+ctGjcr*{k%1x+gN(}DdrG@7~vvOeJTV_z%qB0*4f<4Zm)?h zP925S_c|7gNh$?KJ9$)&8Dj?n#vGOL(a&KRqW0Db4dF3U)mv{Cd`7*{o0>#7Q$vIf8R$s`{}HKEgc5QtHQp zi{)9yMs?=}f{p6cz%C5qRhK%$s{J6os`*3&uUgn_62Ikmk_=>(G##SCS(fdxa%DR- zwI!;&X@=S&acx&V2KkZ2j|_0t%~;G*dCT2=D0}Lr-Hica{3>6y+iiE&2B$;JR|{>a z-m<2#`*_S&<*U4>HwOcm;8#b#I-|j4)+!{X0Dbu(ag55$m5tCl%SvJ~7PC}AkbAPk zAV?xIqmXN9fhxE}pjz2}bXr$a+ZShbRUQZm6E@$}0}&4Es49K5L$hh=4G`m3!xH-0 zBx;2W>ae7y6;)`=RP~_`5KsDT)b5{~vos|M z>joP>c1HQypnudoHb*RMVuKsDNgvvuM05Y4R+ugZT^ZJ&0LwGYS@2v8OqI)G?403v zh<>6FYW-ZG5CWWw0KdIE>1V6`v#3F;W0JTQd?;o>gzfztT(GG6(wQ9ImAZ)R1WRn< zY9d*ol6H;$$m5II)Hre`o8-cQa>Nx?klJsjISdZh4x$3a4yr~SH`Jqh^@6E{3O`np zI>MSoBDLh~jHHWs8roR}#`?l^7RiItMsnI@gN5#Q2LrjzPwhR^GKG-Lh(0927>n4T z52?jvZr7^3qG5@K@Qw{zRe;ERh);qtfiD(SO$MqOE@7D&F+MTd03~W^YIK<<^w5~c z`HkvH(CQlc4S~m8h%co~>rY}`s;lKR(HN9jg@lP%XCVoL7)MBGpDkHJACx6@J~JU( zL!TK)<$R`3?Jsa?=resdmIOX?FaMNgG7@K*sXntyJ`f|MD(aD7%z_w$AB1TBTSS8;AhX$) zWNl^x=aUP&P+QUru?!fqU?g4Yj~Nny?mOgLJb(R_!jC86~J&dbd-x& zibS2ki_AZcJ`={W1YU>AyuRm*H;FIeIps!izvoHJA1>1K1apYKozTsULV=6ei2-B1 z`SK(xY7u#Y8uD8-=iHaoq8X2+@>?{XEw@FNfXwFCR5WL>NKJ`(1K+~qONbY-aEr#$ z;81u-Nar#Ni~CSZzZJQ+@R<=96nhlur+B_V-*6eiT8t35mj|mp8vq*&2F6sbDKSno zj$%G_FHocl_+A<5nOJqo7K8#Yx-lBf@?=ts(I?>_av-9|>;&KqtrB=lN7iW`#|>6Zb`~ib*=VUN zFz^(KB}CDEW{SfDV>zgz0-_+#qjzw#sk{^``8Y!sHVnN%r#Sq^LC(lP-|r8@{qX9v zZjnNFK&&VV1ICzmA-8W2X%x<1tq>ejH|hDt6@W1h)x3FxZ4W6TwHr$ld1%Z;Rd1MZ z;K$%mo)AiHFljD<$81zVV4D=#`e-!oK}g9tBLT-WPJKkf{zKH0ItZIdRYEcyxdA8D zli>JswW4M-0gXv0uCXMWMXWqEIWUWd0hx*dwUR27NHqtAiSU@nH7C^5*1+D7AgW1C z*3Y6U5t)qqj+JU#9$})c&6`C7EGEEg0FsuI_PEReP)HDsUDZAh_o_%Ak;Y_N8o~y& zZmEtxY*0;JVGUOQ#IkN;S~*%vv!JXcCd-P+r9f7GMX%*X)91BHf~bXL)d$% zJ>+akzZ;8d6i*}FE?A=s$r8pjy7xI)Z;8pYv8;#{qeSb1vN9x-QvYyPP$#}RIqZ(< z0wZBQYMNghZxcZ=4Gpg?&BNBHzir}J!J~Sf6px3+MAR%oBEDRCE+;UXk0F_sx+F{c zql9pJz~!F|6#y{>Ic=h#Y7(l`$E^{%!C+u#0yvlHv^Cxvlq$-A`R60uP za9D&&LD2zV`dBTjaKIZB26q-^4zNkIzxgf7N2(zSTVHb$zwu#Ev;RAr{i8u5Z>M_r zLyRWJ-BWK&D6m)%bS3`p@ntOP0AMzeypDy~IwKsBL;*9VsH3c*I?$E&8-uZ2h^zdE zn5WExbNeqef~uNg0*$$_c`tstHW@`n0IJbry>wOp24!a0y3Y*vD!h%_3Dolu6tf`t z6|h9BvsLdolS!=2hO-XXHb%IHLkM=Ev0}RJAehBt=>nU?^UYg=Yyq3JV9bPNu7PA` z`PXm+)09DiIzKm4ojxja2bK~JG8V8De}IAD$Cq#`eCiahB{6wm%v4%NRz1ufwR*u`)<%{QLo#dWv$A7McR-B^%0@mbz>E2c zCG$x<<|{2f8y7{^VBce^p?O%$Q&}YOSgRB*x|v0KU}+|6D@$T>V9Zo{UL)^OcpG{n z&s#w;3x>?rBbrCBLLrPAkJi=?Au$J5nR*;ut{^${rpAl4R30ERN~vI*OOlF^n1iAl z#L2%i=;yeresH>dbQBV)-XakLCm@-T;(+)uZrY13HB&EHxezfUGe6et5`SV;q1s8B z&ml2BS$v5fk0{hwaTbXjPhg~Kn5f?9FTy-jUs1zTg0Vd0-ANvP0DW!@f|JD6gtS7& zn9NC@5F0CUdk{btp9iICF+9m9hGQ;j0Up=={+JFY6S`De^(;09WIhc4_h~93VSs8% zDM)tvI1EpnRRtg0pK2HN9Mby8I~k(nbd2iQlQbn1OCw04rKZhE#QIWdM^=(Vj$CyL zX+eUCol1_>da#CaFcd2bSzRkfIKENSN=X^~p$$1rqoSR#ZKyfDB({O!a+k^}r!oBO zdNbveP)t%*^4`)anUR>HR8q9!rV!!ucc9^Fbl!{JmBdOEV9dmp;U0$WtBGZJ zP|U)$gtSz=J*-JBl|aluj?8LooLKRr_arHGF%ol7xFR@AGFgNxYH*aWILKm)Y~h%V zlJJgguQ%_JMQIv?!}whDIG}9!F$dT9O|Izurf2x_xrwHHG%g&znUn)xeQfJ7^m?0_^1Rl^H)B~f64bD{*Y)9 zA619XB}r>y$v!G7M0J;XWs|{6OZHJ|bk;&`DVE$af>PA_sNlWjwu~e=Ya(qAXh6&K zQGN*=H1nrx0xx}zHBq5+DJmZo6!r6~2^2#17L_KDuk06eQdMmzwMf62MrTdbmLlOI zmRJgh&ZYR-viA;3i}w*WBJSM}gs)#J5SM_*Dos(giTGpp6 zSJWgIs!tD-NpS*mByX+H+tLOqy3hif3n4tw!|ox@P7h8jS;P~SfJ`Uqn4c!>c#%2| zV3`_oC9LlF_y~3FaIJdf5fYv{&4YN(ytz6(K$gi1F;llyG!HQujftuuO6DHXL~~v6 zr{=}$wQ29%2*J4+o_kLm8`ivgc3@0{rBbD-@CiBoXi%L;ogrUv;EosNk;9?ZhjWAT zk(|G89_0m~ETP{Rq5~ZlXbj>wN6Znk8l!QfI)PiOLIcHecm`qT5Jm6Q+#nnn(_n7B zl*CL`8p{`4>Jp23fjmSe^g1M46gM~#l+8ONiOHni7|Xt}v3Dy!YE61_eR1mzLeXhO>_kY+M4F3*bdsHeV??n@3s>jA^`9Yo9DL(()0R(2KO} z0UMplke zMpm9jvd@6ES@D9!US<7t^XAv%~V=oE4 zjyW_qg&3l@X@4ICjk)m5x$5zr+9h=v)xTnJZ`!>|PXGtL^>T_ccnHbzC6CV7~ z+<<&UCiJq}>p4G1Kn9NIp;NBoP;Aox%F;Gd0V1ei&6o7IRfBN)OPd`Qf zn|i4+I^8tN7B^3gm2fPU7jf9LzC@F29&tD@rm5DknQc1OQV$brh146gYDdGg{YT<5 zx!2a|rG%W#U5f|Ebe^xSo<0zIU7)Fz0z6>5nR*ci5#E8xAklEEHEs#g<|(BRl_d=n zo2bsk6zc$M=n^v;i_tkirVDJ=K22qC7PDE2%jAI(x#Wtd&&7<05t-179;v!{en&7i zPm&2pru0SywDp*B&RMj}xOx6nVlt^`v-HB<^{w0c9|AzX-F~pay?Mvz0WzIuh1j}Vj7Q;C(B@WH;U&oSTiqT` zM{ak7aWp5Z@R+Px^-f3U^ot`L$BY4R_q5g9AH;P87(^{qyj@i%?cx+p%ySL?hv|3TM zR2GYQU=0uR)+eLSf3Uu`FUZtxpq9)7WI8k}mJE@9B7>kdt9rH)kI6hWBCw0=thpLX zIHp2gjpf3#u)fs1TCGqHjA<}Lp^>^B57Fh0+3IkZ2kA*QKS9SLX6-@$sC(=geiFBy zc(Y$1rz|XGDZ~z!i4o>M9JL_iD1$BpovPKtyl9WQLvdZU55^pDzjTkr4it%~WPbN6 zkC_aim<6}qWvk=$@Gc_#);s?cdPZPSs3*HQ>GlpEMCZ<`XNj~%UiJGZ432Y3vYTh) zyts#J5ryj25mtPIy@$m3mw~@_cRd)6s7I{8)wgL)B)Qm7O zwf+N!0E%gF%w>jI#8xldiS=ErJ_7qHK^WO+#~}w-%cv(f)?j-V%OHD4R|(-(oOX0G zjvDu+tJ;TSA;^v3chd#a^(mqX)SfI5LjW;@6U22tGBK?BshFU|VSFb6?P(Zwk2^A= zYal@d#0=CIL$viLd3y)Gx%)&YNev}p89XHB!0o@p5#8~lUa=LUiyMBN_IG-%G39kc z$s1_D#Nl#Nh(+a&^`d%+M9D1*W0UJP*n?x-YO*ou^&<6Ls3mwoRsxRMs5`12N5_k+ z?kFXWDY$`R7H3O4XXDPG|Ir{ghP#0+c}UDbjtP=Hz=okPKQgal@?aR9qMFUEWkod( ziNUEE;KaoJk9TBNOjQgLvbgjUCqjC6RF_DMPKw#Y*s&Y;2JXH~N7Bi4%-JSF!Yrjyx78?pfF+90eIz=6W-L);5e^t|5N#E^(F$ab6^mDW*MU|nJ zL7eQ*_)+iE9N$23`KbzUx>6Lx%p2n|2IG>yq2ESTxZw{B)zVYD@Z56%#Vq7+=+SZ_ z7m36i*iS$NC0hl_lv298+Yi^}LX?H1vv5o$>kYQJzPq_5WLv1-7?A0t zGIw@2xAs?W-jy-@3qnEF4q$ zCbEyi-Im(4D?q06>kChp*|ZrhO|{f^w!dB9&i1#tS@_-O0`05=fJlQ|VY>gngN`UdW^Nz?kDT!SNtC_DWsc zq0kT>Gg0N)Te6x|p13C~L}H3J@W4y#L}Nd-M^B8H6Oc^zB0XzoxOGIX_E8-{8&lK0 z{E1gH48zb@EObAYxh^%woJ1y+0C+f%OEa1Q6AA-6Wei6HnJjCj3w@S*l7lB zU>MrzxtPeAf@bO<6b8QPu1!8298Q9xY}C}K{f4bW0x|weIc8_F1iGpeiSENV?8)?U z`}?@F@c_FTetQ1i6j@kvgZ8}~IsC(7rFELMy5Z(jbu9s1{xdi@VX5jcS-uo$KfE%0 z38V&d7U^TiD*XKtNDU^FVqxyh$b7s0E}cSjnog=K1-LLR&` z!WG=OI4wc1Ub3RmOK2_vj=kj>PP2ezrG1ng*}JYXaMO9Kg0R<8rV7CY)GSH`dQ0jF6e!RH{*K`O0M6ItYC7Ldp$+nHmFDU+#p+ z>Pj3{WCzNWaGOkNJV<_+730IMT;|Yh#w?A?#7L;{3lwH&k6WXDn8Q>(*i2~!EYo7T z#L>1pdHa*B(<(aI@T^@>*C^N5TqsVD692Q%xe)N+{F<4b#H=jhxmfS23!No@JA!6< zq{AKkVg4wVTixn3i?u{#GGs-VY;rox(2C`xSd$Pt0m*b#6RPtX3pF7hlqs>|-APDK z6TU(X0A?xF!(>8C1Uo`=%wz|10lmQYt9{NaN`cCxn0a7QERx02vT=Tz<*6(G)H8Et zawovK2vxH=^4=Pa2En8hT#6Rv_;sHZh(Oj0$M z?kOdjvT=Cv{X)&f2W3i3lQ~1`_6yv-D}!YB1=Rhqr5=pJLGBfP$8 zGSU;Nx78@rNdhj4r|6pHoQo;i17*s}&3B6dmbV4wx{#YM5t*#&S9|$!t9_O|#-SyH z$3>!7Tc}@6qH`fC$B3<&NN0h(HI|jUkYg06OjI4TkU~-Jh70V%Eza<#Nm8)Ww{2CajFkj={1+jD}?vZXu%+s7zWJ9hq6%gnAr8FVW~y;9LYx(Qq!k?!jSK zjz1SubcM-;nCoz+l^7VQiRW3)I~WsrHELIkWc^mK4t22_^-)>6Y9NNuNDG6LEFtAW z1F--%MNDgMsm>AD$+7){!~&OzvGUs0=ckiy;G@(D=ULTh;h3iCc}J5z9Lnh_I)9P4 zSg7aqL7B2LAbLs><#G*3pfYLI9_g|5(?ZOJ+M|cbgq6h>oxx)o*+IM5wI@gyGMoUH ziK`kdkXFuYkSSOfs!<=5Dc>z^wfLkv%!?10K`{3Ud~P)+-wOj)J>D76Yd*c}b} zr#Q7q&@Pnz3xS!sN{P`M)rioacV8$aCSjSjiY4%Tgdq~z6#8;=T!lOWVW9vv1@@vG>9 zkH_+eAhju7pac$}uRjSvUB^3iQUm#f&jxJ;u2925EUwz3ii92Y?a9bU!%@WMvF8xeOXJ z1@>O_20>s7}lI;}%xVhj`_;v+aa z*=p2aQs=dxOpB3digqwU%>D=`JPE1QBK#D8>jGC-Oj29qRnq#fwrA zaB*g}qtWNujvP7{WR|gF+)1f3*`$|ftR+4d<`-sE63(@td{xx<-CtgV_9?hXv-+YZ zK?7Q1M?lbAgj7`74HA`02=NG#DO1r_*W5iM;*KRmTMl&=aiU*Y0}u(x#&8xJO(By=oM$JB zPtDvpmJ7&@#`EW5W+8I{p!URTSXPP?0ff()KMJYGW%9K2ARi<7B9~??Mfwt%3xHHd zqLiHdO=w~MRELg#vBHeCuWLbwoXrixHU& z+nF5MQFtJV8VJuKGH6T!@4b(h)J3RctUsb{AfmabQbo3!LS#Y=)q}?c{PtOJ;)@!m zXq*hnv}l(RZDI@l{Oz(1m5H&oDthJAuKE&MRzm|_Vuoevl+1lIqc513AhSbdVz`4y z=E8N?f_i>;P>;*x2!iEH(ULCJB`B&kfJ_%PAbKkM;6)pdMP$OLR`Iyoj@I!kTB{W* z6GxJoO&6j*7nRf^GGSDcbp4s&TeKz(Ak)S2MJx0cmd_wEAy$7#OFhhE?>qnMk2EHe zVpUf7g4C(H*i301huF5pWRb0!>!;}S6;X|g+G>TW5QiK4mP1UaOdQ$lVKmfq_I^kNYtsPM($OejsdNUA>7vHbEwba~4jn8a6GnzZxt=KSS=4Y!P^OJ) z5pT#AvS=+DK&DGcIf~|7mLR1CW!lIU*yHJBB)h09V9Xh$<^Vilw2PBkOeT#wuG5ip zJ&Sf+gvVr&@kAR57BwERmmrd@A6yW+sBDB+D;p9s%WW72km;gPK-aPKo{}+{G;#&*1!=B}x`GmvX(J=TT^FK7E^0)C$7E3ii#hjp54+%k zLG+>#tOv`~k$THb9{!xoqUtR{nKqL6k=ZyJ4Q>~e*n?$itd*1jOZ85c7&Xkl=2%1L zf<$eZw(DSDX*O=j^zEW;*~ew_sNU(S=^k#57Dm2ky_cX&i?t(CJ^V&O^YgDAnF-BB zz{C-~XLtMfe;-CE<_lS0wd-*fEVE;VJpEd z29l`EU8{Yv6dC9)Mf(<(+0m=wtoCXtP&9CvzgLa%m<)s6hvM@36;l(!!KpGPCy|n{ zOp7Qfc-~|J^8X|5&7b5ru4`dAzKG9~xPaJqZ~;Y93!4@t>sj)1yZ{G)2pI#6F#}Pi zpWW{1u9<0~yQ|d;2E&N=ANa@T|M$DOoUFXLRNtym?c?8*D(T zyTZ(NPLF=DWNwTFZr?juO(*wN+u#EsVYJ7HKdU=WgAL`4SGMISEEZVED-A5`+MN4vXW z;b>ra=PTMAP2V+NQ!sK#;b7pn@D({QyrQ5gPoBp~X^<}=T*b2}Ulp^x@jPL&COiQg zc;5O-H&St0YAS5jVjdLm-`3ate3J+!Uem2*2~-GiV1eP{&dGQ(Qg<&D%VnI7ngy^N zO$-RGYdhs^M)PT^E)NbVJZ~|I32R1{S;90bST9tpFy=6l-77>FHK{;mtW~dBqTOs!4-<@+9@0u;VJ=rfY4YbLHJffZz62uJe*Eb9<2X$< zcY)2d1B-Th*E&R+i$;u+TBS+yLdmV~WT4=nXB9Bx-Mi z(jCGf4HwlH&&t(fiiwyg*bUl=7!X{S9;?6;)JyD@G&qj)ra=iyAcF0k$7^+we5xon z==V67^*9?E^l?5E@ZT|i z?8yEc3>@!0p>yx#ft?yK=#&ncdM?)UWZ&5+9RVJg zEAuz1lLeyNhdc_I|*q103 zb;Y+q50XFx+hzKW+MP+E0;{HmeGM#^f&|~+KHrb+)}W;a3~=9hPCGIb59c&SZ_rC| zFmT-5D`+WbcAOaU`Gd%sGugSamIns+g}q`i9WT{hR-D2HW2F!dJeTZr%CE(K;u@5` z1R~hpeL>gs=nc9!Q4Q800yK|>?&wozx;kQEXkfWO^9>!0IyD+-kV7FHc;0?Nk-h0| zm^dvB=G6=f4DZ^%rV`R5SBzeuf#uTvs+{ZFDW6b3u7@|QgKJRI5{O`XM}3zjYS2D# zFmSxJe@5f9!~m*6FXux6{~hy37}BqnP12yn0t_6K26dlQT(}ygp@IVbPc42pm1r== z^pJr5K%;5m}?E|WE%n3$TdJ#~VyYSklHB+r4GPY8?bm1v{D!4Ldmo^I<*k>r-H@Va(6abY!2ju=RovRx zTn$V6Ceu6O#Y z6SX_2PRs^Nxq@uK%X-Hg9}E%*uIVG4dZI&M}vC|L7&q>l3@N`6gP61j?yAky%Z?iO3A2@_pR z6I-GK4KV>UT!J0`WnEC!pUzi2lBl4ivo0~K0ora47My{e&o3;@4-NTCskp~F2x9QQ7;!Pqwg2A?Z7bF!9&_5hfyp#2UrtGWU zk>250_P)~F*pKwRzCqU_DEA3KO`rICKvbuxrW5K`Q$PewA1CBLnT0L3UpN0_b4gBM z=1diHLD~BW6jrHyQ8hu7&~7E*a-tXw^!zFTFgK0^wq)5=s=Y8u{!ynE%X32MFA_@a zpvsiY13kiubdEaJnPY@XRYNHdnYj_O_i#O*jA>WBc&;~i<3>&}9%6vV+YJ;@^AUU5 zso6LF8nK+35bR!otH^8QFb?Rs#Pr1cf^h;vi1`gB_*6Sksnz>Mb9K)!Ef&*S_39*6 z@E1{OsW4*&ITmPAEkN}?dpedQ7$q{e4RW}3RNc=g*;Om*v*TQ`{m*W#lwgCkewNqh zuLN%2YE}u~U^AZvsy<<=tbAMIzov;#v52$s+txPA^FY@vrt4Xm%Rj+Llp)0?;@IH7 z&E9%evPQtqqne0}!iFXQhk~0-!QO!OP-e$*X4D)v5%M!=u>W*e&d(CVaKSiPziI94 zFo64$;qrB2Ncmeqk)jt3szU(imEnpOR+qg8i{rK0Y~M93J`T{|9}QLmdy295cu{^|%%04aE43C9C#xnL9WvjC)2#j$RI{3E z29SIP7E6fWq2eZcahJTD2geBof>xdZ#R?cS*zd8I>?0W?2-+HkmX+Y)L&wk9o4fjY zp21?ZQ>xo8(u>-H86^Wv$jQ+_)y1O~O?qtm*PoMj2CIyM4Ot7IxnnT!T;g9X$`wDQ zFW8{T6KS+G6NN~SpBF+w&oUV_Fmc<_cJsV5+i5WHT%u4sblq<6kNQX4dI)T15p*Uc z(7^Pz{Vwja1l@jugZEt5=!rRnE>H>Cqo3GB@>^j+>kkwpCIyKET|Qn6<|nFv@0`&U zu(9m~%ZU!c5GDY@_TKUL<9Y9^!RU|lQ#n_&@*vnc((fCZ5D6SNRUh9QPR43gk*G`z z)TiN<@ioVjQObQF&FTMvBZK^o{|K$-&B~QpYBw!EORQkZ;A2Jn5jZ5=^z_I-xp0zkBgF;ZR$qsxgNcX#_~e2PUJ&I zcF1u+&@KP%YL#8>DKZ^`4&FzKb+GM9x8HHif61=pzI^eNQP&*i7F7oi7OB4O)2jM+ zP?k^2nK(X&h}Xvj@eQAtoK$Vr7u?ta_e~!sGByJS^*#TU7vv1RDjtrPG>KPbFAyLY zQ2J<*fCM~bux5xH4Cm!+sZPeI634er+crZHI3#@NYbRHc%J*2c`{Z=Z+x`Rf`0@{5 zd_l93Wp92)A-86|a&i2{Z@v(fgERxg+~#6l&C1gmZ3L{!VQ^QjV4mSaMS1da#<3xQ zHA(g%?fOG5rrH6CmUUQtY}+K|I3UQ@5jqYqF1{NqdQa)j@VN6Ao5SIF7IA;8uv6^I z-j04UW*7Gk`h9y0+GLOYi;oQM%VUajO=YV0WcR_|Z+ioE%9EL1uuKF9omzbG@iJs) zxaSY&+L0MNkX_?Sl!Hzb3_vh^1WF=t4ic1?$VDeS;Or+)Fr*^{!xSTd)g_+W&B;FkOI8xziDha%f0w)q63Hz0Ag z7#7r*@xo&ruO>F2pydJta18ThCOPn7ejB& z)aMseL<6D|pT+~-PiEuPo|a%kM!jeV90EYE&Squ}_1Uw7y@#~36=$WOiUGusBoRS) z5zi{Zm`u=p0U#nXXdt?U=M<4TYB!iAcOC`p7LX#w02b6Y@q(tdbD21;f>=VLQ6^9#Ru2-C%*+S0j9jV+NHJ|2GY7Ds{&AVA4_|I>lIcC2H1|Fb zZ57!ekH(Q;Y_tD|7F=qj7}Xn}^}819(g;;a*_oOwWoGz$#ww~S|g?A$Nd zv-h0(eH1|d)ci4WC}gd6Sx8oa`(1H zXIS8Pds$3qH8Q~yv-f00heDgRmKMQq#b{u9e>pWnr2XB4y-gE>XPe6{;0*5uY>2pl zx0DFGXdW9_aM%Vo5jz6~?NvOkXd4d?0TOXmh)Kfq#+0B1&k|OMNy4v-Nus-NLs%h# z@GitDlhQPFA4_L(b_&KB0E=u+@!x3l+_6Qmh-d<7!&7x@! zW8O7pp>l0>?XeC}#LaLF*eQ;luy||6Pl(Iu?pHz$%1b z=@9Bv$mswH3|E(bolwl~-}F@bM?vZnU8SVWu^`4+NkkC71H!nCk)$X^WRO5`4Fu|t z!7&BTP0RoV6HlP9Bn6P5yorb7mdnuxw1(GYv<)pWxA|W5?GfZ(Y75MTg48xKF1Jxb% z*#7=g#rEf7VF;6JyAo6Slvz+vU$E3Jl&D`$B_r^F&EbIHZ4g9FuV6aG%tvYA75uV= zrhqT%GMhMqBt;?6&#;gNT@;A^o54)GM8r(n7KI25R99`96xBD>W+j?o!Tde6TYv_# zYnDs}Zg^2p#L!usGQl=!$QHtZ?iQU$SW#40x;?n3oT|*PF{NaHJdW?oeSY^6{qyE;JsPp{xamhFjii`|gcq_I0mY`&OSr zWU$}#*s(S7W=`QYw|1lQfWp)Vz~Fvsxt&5>+UGzDT2?898R2^`5DJ zp9S|t395$!&>ZfQg9Foz)nK85Igoz~`5=-rLDL=pIF>I13fe1p{Lve_I&7FY2PJUn z1qP#JfS|jKM{@@S1q(8OU~E1f$SCtn>Xjo~ToD8R^yqWD;~mc%LQ8fq~|>K3HVEXnHT~LgT|?HV&$^U{Io=44pcylmP|vb;gWy zO#!Qf~JdcnGsBZD=fpU59Vi}A>i^#UG6aczUUpO zUt(TKasgpz@yP=O+r>5A)T@oW|7tu}_FywgL8ImXG?)A2;K20ZdNEPXbA=lIQOibC zvDpf40&yw@z5)!;uy3S*nrrN3?F}9cO9jW)7)mUm!UgYD_6GS<$0--=MKX|>*1>}H z$Lmy=DA;bG_Y6GV2jWjp2d|4nH!C>ctKZb99tLpVJ1q_m7ZmP{wi;v82-;5XeZvvr zf$7?t(L$9+Dv9ir*nj^&Kl+;=ssH@>k6^*W!fDbBG^pRU-^U3Q%(D_a1_$U@-b^RG zQ912Be7>7rw-mG>z%a>40fO!Z9(`C&X<$vQ+deg3B#AX7f}R05oH7Ij?QJ~%H8swI z#qi|Jo+JsG1+^GZj5&o1a%W;44?mUOrY2^9pt}iyPiA!U$^-9)BW7d4ViJH@N@G+I zyS%lBG#(7?MLLYPY2HSlpmlj`pV&DWsPU-ogc)USGL zUQFcY^=3X;^&Y8z<33&F^kNWPQnSFI*LljHDxv|bAW!FKwaf++q`HY%4&Lw1z^aXL5C3CXjDR~J@I6;3t^*?vH`11 z4jeM{Fu=;#)1fBZBmP)bI1EVf2dE&vL?@>8dK4X9{x)&^S};olg0?(9cyJji#mee& zJ1Pwaswf&rQhPlLNNKOa6p=d1@TY6 zchhcWO2Jf3ziC)14B+1VzMK`~*-_cE!<2(>_XevI?4J2WQZP<(V1}+18Vc^Ym%gRv zpO6%)Kp^=|y7=|5g2`lonr(f76NoUv zN5Lt&-VmeZW&f1+jcA#LWxL?KY{X7yq`Z4gQw&h^j=gqAE%VHH91_8DWJt`x!0{gb ztg7>jMyo7+f{{~>#^HhKV#xF*qY|_ao2b5YXYF08Xc8TF@Q^CUbV^6-qd`Lp zCWi;63)KxAJ$3s6v!0+S53Lu%fd_XY==QWn_xRA9EjSh}7yyQBbTZss8Bu|P^S$6} zzPZ)FiV+@|F0*gw0&nucWtJ59uGFT@LZ7lTf9cFJcV!H4@mOztgdPl6|}L3_z8 zW)Q*l(|&(A7@icPexD_(X6bEF*!!HmusyBrAUqsk|G3{*ZAgGzv-OxmwkW_Q&2(w# zs8|HZ4KzC(V3TImh6czDG+PwlzSZy3BEl<*M;1WWxWVPjQ2_y+RMTYZB!F(9+M;;4 zOA2Mz9@nA(_X_PI4bEsRp#CLij_HynGOYXwnnUxpE__M2B$ngU7#N_`u>dfg-`zySf>;a~_TM;1;IC_Va!@#) z^;F4Fhk#TFRhB`5zL4`I@IXkHORRcy5IoN&7-llI2nFOylhPz5&$X>dBQQ{XjH^L-C@VW`voS7d~ z5)N@hTu^qu?rBm%rj?zo`=H3c@A2EGvgyS=O$Ca9wFc{UqT zP?Uesm*PwZZ=&u@ur*^rvN!AWfD2l8x6^*1P7w5r13T|=1gmf0EnZVgHBtA)*#5_) zDF6rgJ*3$<;%JvlYKGJ;Y-%Zo6%N518zR)~Y+z#@Z(x9uPw*UmdTw$yB0+CH=JS#N zl$Q$+joD=b8`OP{=kU|RgSv%wF^xtg$LA{2BZbzVLnD4Bv@TaP?&h1>!*kVX38C>b zXv5F6#xb9w9iF#D;)6n=6~ogi=Wazs2#wbdzyGrL)wf@&z(mHUlEx54dBm!%V4$L4 zbgjtYf$;s*1GAzSE&JoyJUF-`Xe?`qecW0BYvn*N>W^s0m8HC`03R0uJ|OrFo<>FB2k*PC)G!(-lG)M&1Is&LnJ&tJLok_6a~LQvyf>VVdOP$#{nYUtSnE}@u7$M@ z^}b0%2n32tprB}`I=>2D(*!ArNIa;BW;~)Xu-Y-=rL_r-2L+mUkecyqwcxu!HA{6_ zYZ(-PUjR6jhZX(KGDEQN6xj(lAh-;IDFxz9WrpBXSw!Mvf#_Wj(YYbIqLd{>ut*be zSQx;&Tv)6pL2+u53kC(?SD>9P;7Au)K?RRez`$avWzk;@XtyaGM>V4I!9aCg%}wZV z+K&36HkNzzGu*%uY`a((Q|B{~c}~5N#aD^ja#~1m-jC8bo(&g;TEZJlOpZZdw2jEmtGEMElHw&EHx}Xh87Yjrh#E0Idzs?2|PJ0(Y`nUIx60UpWw* z3%>;hKiyVFCnfbtD^X_m9Z+yj<}4*S9Uj)bT*r4K9oZoN7UoX3^U>2bF~* zvy9a39smY4T`^m|vMi}PpdI4TiY{?2>^5KDrhwNE$$Y{?j>K%Bf;_s-b%Q)EOK_IV zN0iB`CSae@N_=&TCY>ju4|^tB;#bd~KYjGzS%3fF!NH?_mT`iWdWLIN37KFjehn|v zw*P47VCTgnCQ4)}Pr?RKpnw{6E#|6tvwBU|F-HL3to}?3L{aA|s_YdMWMr`+;FrDt z|95>f(ww;L?LOJxfAZ{)%rJs|C?75o!Z4!>R;<%>9v%p<`Gf@pQX#() zS{Pt_0tbjBp9crJTRxp~E1-cUMGYEIU&|;ZGoF-114z)aJk$n_64^8lD>RT@_S2}o z4!sg3D+sB?0SiQTe4-_tGBSyV}e6%QndLlTDR7>l@f;&vD@jd4a zYrE6}5sWvG+Q;N}x3^lT135Z-SOX+DE161agqdX}Clc~HAHM36)nS4a<+l%A6g^6% zm60|pzY!!jU5@URv_V5|S&0U>VU7lfV01Z(@AVucT&!!DqY)-p(I)lx=@h`EFts(F zhBa%G5}@GyXt<`E7nVIWxurY6dI$7VT^*$cNOL{FoU<{G)!7oQ~N;L@-{YWxzs(x>f6e>L0!gC+No=fKIIY}vOiLyOmtzV% zx7sp!j#-y^a$|=Z!KlkYB((BGV?w7bV67-zz?VOdhPa#9Z--0Cor$3(yt} zEtrJEgyt;_$AnF*R?Yi9D5{-sdi``YHmNu>g{b-1BngdFSK~4Dm*V&hUT@NN|`7`hv7K})07(Gz1el#N28g(-I`Z$sa;O6T zQq0hyT2lxDXGj_;3uM~GEGmd^gv7<0fm%`FNf+22I7waynx%E&Ui>z>Ev*9u?Nz9J zXw7^)DGzy4C2eG#i47tMuZ4v6%(kCON!6`mw2+{@5>iGR6N0)6jAU-Iy@`8x^r127 zW4iTQ?NHb(XN{Dkd8|ok2#plq%1Agax%;+c)Fhx+u%N!3p;mR7C0(#F1E`eEk#vm< z^6Plxk*Tv}^I?CwJZ8j_-Y}Ku5EG=XMB@QkeC+0Y|COBWoi1ExTYC4ig{@M=m<)Sd{upMkeg3TssE7gK7% zbyztH?xOs^X~SdHJ1j?MeeIbaj!6WE`#7Z5!~c|Kfn|P{epsCjr6^2EQ33}y4q78B zoy6M;=zMegM^u7>avB#kANM3I6T}5DZ@E{Vb{X zA^G{B&9c5ftU!!9SDIpk#&mn|N7deEdZ_N(gOCl{(rvzZnhjU{g}?6G`~)Esru+Hb zC%cd6Zew++rOoK+;Je_^NB8}Fj&*CT^gJ*0rh5T8 zB1th)H2*FIKghGtqdJ*}D5aw~iT_ z?PQZqt1Kz_a_^B^TiLZAQo}&;WD|(qgbsg7l0cB1CMBOO=Hp3u9GqknFIoU{lOo3= zkwiD{4yJV4j%8)%k{k;p-8J1IlC)csWB(@Y168cM!Rj|(eh$=xp+X|)xtG@COzHP3 zg0sv9Z5u(3X@eqX$#Ylan4rj3wRt%i56{$YuC_LLB&hbGe?-xI_%ROg;+IAAva6N@ zdhC$OKC3I`p3#N@Hc6vKfxB{wb1$o^jtScAa3!Jb#4M_&;w*?ux=30;1Z8$HETN3H z)z#_e#GZ(Fu~#IF^FWtv5fZxAtD}El&66N3kEwtnIT{`+?ywj4Y;jr@@mx)C@PJ{( zr8`82hTH5t`;^)~TNZO>2f-EvgUU((I23%qUb70a^;{61k>O=!Fa~I`{ps9fh12pz zhmp6ZE16ZqJ-mgik;6&q6`39^89${vMFB~zqQziL!M@6w3SL61VdrC`kOYdZE6PY?P}{`l^*swYGu3jlgvbI5|cGT1#8bCcH#-L90PQdj%?OY8T_<6K-39g9b2CDK&tg3rny5 zHnwid((9qt6G!&#gqRsPOz~2Ao+^WNT3r1%*3oKCz7@U42Yda4r~AF-a?(#N4N3~SK{DKVR4`wo zmYag-mE`VBt9mLRO?(@sr1^3vhS+^%pf#jQ1{?HrL8?JPdMi%ptK#gmTm%l?g6N$U zQYN(y801%v3%ba0Org5R0~Hxt-8dR}vI}Z8_he5)g7JFrbxF& z)z3IMo*>AJ16WNb_uU7F2BIq`)4{O!_3ne6-l4kVwI5yMBjHjQI!#G5a9ypw9gUC4 zS2-pV9Qe{80htd6ws$MGXv_W&o0m^hG;A~eV};QhPR6wNPWM|J?9p!cjOLWo*BDbq zmK02ReN2-^2?>(?zW=(C^rE1fiDt`!WYVE#exh06uSw&rBfjmA42k(vR?3#+G(aJa7f4((bPz-(;^B2NV#i@ zRaw3o7vE8E)*bzuUOEa7U5Ir!Ft3=pzXb%)@nNlwewa1l_SNxj)}l$ECu0|KwHOW- zymjr=E+Bx8&(d}=?xu8rKnH&8kAj0pf&jJwZjE^oTu}E(fMPS(zM-6o#}sspn@g|( z6`*d`Rxv?YCjaPA2pyl~jZLTd2LkB06{N*lC>o{+wo?M68mq9uOGbgZ3YiUPJ5`|3 zH`pM$NU>W5>Y7FP7}#7;3bgBcTuKF7e)9YXc%Uj%Mi)oJFMs`azh{}#X&D6p zbl4s-v<{vAr*oD}hPYpLST&{8;zPylz@9db;+SiK?au(JMudTfhD?s2)AW4~I?WLf zKu5aOx0`<_boUZDPpcmLOO`ubw)!b9s7u!-`v!$}*3qPyvMy^=$OBb&BH~J(DL?jU zRpfvFyT50m1V@3ygq5B^KBW$wqvvOt%HY*-8g>sH1 z8q&cH^}iFSx4mM2uFoAz(z#=UuDP|~_v>;1es%a7s9YH(47KC#`?Qa4Lq)Lf> zbGA$g9-mtQiD;o&FXYmM7c<~`&2;3}n{`bl!IcT?A3%RX0@5OBT`EH;plBL!eyvM_ z7`pYnhvGa~&uF|vL-s-Fw_E-I)@S69-@1KEv?`maFqlL{b4#63*z=?uQw! z{E1eFCaew~WDr7Gc0(zR6y(Hi&0#f-P?b zl;!5LHZ%UCW6snp^z`vfy&pnXoh?^i>nj=-J?r?sqplNX_7EI&*P1MRC20#jnCaI( zQbwrRW$LF+n2glxg3;5KQUgYaHGO$~D)n9y%|)>r#w;rxd~7Y3_P2aa2>yk{x+Vr2 z)A{e`WL8TBd8Ti!wXdKnbA56?N)xOQ{XYaYHLu%4Cw=3$!wf7qh33;p zt5}j3!X zPFV6wfh8B}+Dr05z%rYk;nMm4mPQRJA(wh|8pYJN0`^^XDuLA_LC_8#U0RQPI>`K$ z50ojNw2z`a4tRgsS8sOTNmXQ!Xx2zKSW*oOnGK~w!fmr#6G7U~1=ceJOq+CPY)fsH z3F0J!5c5j1zMRt_Bw&PCNp)GCEt5*msk-=dkSQsPr$1C#G(?cbvU}%`PmCK18ygRg z$LeqeIW&A*Wbdbq9$?SV{b5Ai-fe)5_y4#%9 z^tPR(lyf`5K^^pa$#WANa6<6CF_}y`MLyYmu=m^E-izl4&v%|b?f?1Fi~T3hpD|+! zW|ctGT_QeYpdsNhe@=UvFaNDX-v&s@A5cR9-bx#x;;<~aenD|xLd1*PStp!FU z|NI29ig3S5Wo1ESxW_6E^Ma0c1b#z;|tT&{}8nlt! z)XSIyl9Kh(dz?J*`{Z9gh;Bpcre5ZlAa9e!)bf206QXmASq@0rWHIx2UpeaX*;?lo zV@!~jEb^Y2qkgcPA|En9&ZZ1BCuP`Br1K2498yVigeLSB?p%`PfTZ77jY`!{c_yW! ziBsK7^q0keE@O37k}p>X)+Q^WZ0jZCh4e2f#7g?}y@MyaPriNha6{+*pDo5DHW)&=&R>0W|PV;OhE$TVXNgC_UKd%y3 z<-SP`oj_jJSx(?iSb=Y_T#5_UlS_;&c#aa86>nDwRrmSyb|3ul$xi>-%iXUYy_121zCetYDELAZLf=_;^MKm;z7fj_go@L&hE0VGj`%dxP1m zq@fe7G%+&>cKU(EvLXo#`kQ#AdTL~xS{e7(4GUt73gYWAaWS2*_!{8j*0cr_q}O87 zS2PV`NfjKn21>@v8WNNr;o-^@>U(m%Sq|w6@FZ(-rz#Nr}w=7MoR1z5U_mMx(xPFt5#B#bI!K3S3YGhqfrpTLX(4n5 zbfWw}S>{UygpRjHh69I)_tPTA%f7lPGB{EsIAU4B)u^b@A>)4ao^LgJkc#Fjz52pW zH%V3tBnIIOkn>?)PFc3XuFKt4faIf0LGg;<|Q6#>L# z>JAxkz8Jp_*I&D;J03iQGY98@q@XnkB$0U{MQvM?32QhKINjGnNrg`T+r^M>JgI%AO!a^RIrJjG0y^7LHCFk&S_|w zfQOJ^Xo)A?=+Ae~YCE)yz&D6UR;#W=IB{}Z9Bs>1LOqb7XM)k{CqKO z$1N#*NC^g(-lNsH&)3p+V3{O1S zjsuc1nM9#}At&(B?kbZw1LOoFJ*cm`bicf`9qGmBkdY}X7!>;=x+*KchJ;MU@L`}Y zq^peK43Lv){`JGNL>20)`DX+WlWFSov+1JJRZ|yGKoIYbes{i$geiCk;UhWs&|wfl+n7$Ao?{rER5J!&Wrw-Fa5V%S#Vk$I7DQ6qUHF_syrgcQntk2a%5YnaOjYc zDIc_&TZ~Gkq2=LqozLx#FYDKf#wQLRy@}L}4i0CdO*s%a%dk8s_(n4cYOt7(n{l7gl^csw=9XgR9)%#)mE@U`sl>GVXSOY5$=qhvA;NXldqU-&+cOyUfX6AV0Iq4Y4O?F1x7hm1^FIgjx_ zL;xESG8vN}`F7R1a0bZ9^hRt*>KBuiOY5%OG6IOnG6`aP=NZM1Q1{1tDlFv|Zd^SmbxY;*v1FJ#==j|k? z^0p2VE4cq~1FZ!Gb2_!*#bNDJ>)#fZ=A4(@XTCkBLUiezl*e?PlTVt++9l}!;RmX=0R_r(f4kAQb#BF@^_z4&XE1$usgC*Aw% zK+Fq$uy1w@dFosUUzZZZuZ@tIg#>)i_^SvhrIDgTMwi`=Hdo3BTdop}(0K`1bbx8~ zqFAb{fc)nA!4_)NotgII-=V@I9;1o!-E9lhf}&T zdv!K1=*9s0?LhyA6Pj^IOu^z}1*ki#>SGQcQtqW5UD6@f@f$BR=YN0tqrdr)`tQ3> z|KA_|=)VMuz!hv(kjDZwcdOSb;o4B17^6Y3G*f|PHB{J;kjxwR81>_?SwZY3Z#X`r zyf-EPqn`dJak%+^Zf<$?t0wIs5;#6Ik)V!D1UnO~$%eBt-|&hcm_9Q=L#~5O)lopr z`+7y2ra418tg0qHd*;{PV7)pCuj>%(@P%+jjyhUc!vQh(!nYx2G@!u^KV>GdOF&zz z#Zo}Z2RSLloAFAmGq5r#*wqX1YQ;Db$hi}~4$DL*`~|B&Ay%yvcKH8x_$p+~12+jt zCEX@>6h3T`&6*{}A)>Vq?rzj|);JQ#`DJL6>IRbD)A5qRF4HIN0TWI2RR=2RUY zME*KNO1-2esQtlkSj<;}3+9QS<&$LRW>yIPRVa8mmGondL$XBhN0K6tfG@U5!19C-+gCrhdZhr; zdjjdBT|F!AQ7{VDU@w0t<-Pz2m)IQdMeX|!W^<;XiS%gZ`h!c?3LyRBtXM6EJ@c<} zhT!8Y!R*k!sutm5EYMu?zoICIi(tK4FxAcQSTGQMFq^G(RQhMn4)%KLL!SZzP6`!` zFOI(^m_PteH!1j#1&55A@srq3^H(_qfmZ;O;Rh;+Z{c|*(d_z=pMbsuhE;Vz#2Fw( z%mFN@uh0%E-H^QO?a(6YqKPgqc{9uhyz*@(LEz7igKMpvabex`AZ4 z3WALZDlT7Y3BkZ}y_~Noq#Feod#)qs^&adTP>}k4mO8;ot%K3YbDsiGuznmp@bsGp z|GM8l_}4uO^P7?&*wuEJX$dI?=(+3OwSxB#p1*jM6e3tLcVI~&96GBYZ;I9mI5ZSo zb+WAu)MLCH2-d+INHXmP5{!4;!yaRQ=j%s1|Ga(hScjD*cF5qr=H9XVgJBdzQm|9+ zP?F3R6P!2P)0UG?q)eiqOM(u{;UrldDtMz3jwkw2kl5Dci$g=f`%ZC?@_r&vtzd-U z;A#y3aHxpdyWvSWrsbw?+dF`QHL6=Q_Y7iNwXRzR5{ywgQ?Y1Ux9b1}>lK$NHjioH zo^N{!JR}@OGGjGjmhYsP@DM+(`7|Q6t}!wsq+-kYJ4R zQLRw3D$?4n8WDW&mCN44@#4{JMRyBDvrIu8PkP^!mJlb&5JgLG$iO0@-z5!8b>#}( z9KRS$@%v&-H%0`(m?b5oN>B|bQg>Z((?m<1h@_=2`n^xX^3pb>(Oo z^;oUyip2wCB1eydz>}?VRDsoT1sh!LxV+u0M7qX-H*YI01%`B8i%Tl)9rG?r;8Bt< zo*E5oi849uwxuy};7hbL`hiYc8ixqhL@H-0Xa^g*wW@gr4t$9`T!c+qt31?bVACTk zK1Ns+dhx2i3YI*#9AV`_!JV+|A{qg-vaEpvU&68xT`SA7?T7?h)PA;NW25~^b-TVHjR!_$Oa6p9zQD(A+u1UO2DbaHfWy+LUKav|w0f!L&i@fsr$pgU61-@alr*tAf$Nv^ zGjfNX&S~h`+dCURnY|uN#^ilYH!=-|R==flK5CWYBnZem0yOE_yra z8XP*&F`kU*mP=+T!8Fl=SRE-q@LgnlYTCiL1Vhp+mj(mRWyX^@$|k8H#x!xNfi2w zTA0Q}RTC^7)}=70Z4qOl3bbSlYC&Yts3NqqD60!m`V!TlW%_~|@z!E6J1*3!b8v+4 zA2;_x+%>@mLJ9dP{#fws9Kk|;8k}$^t$dj zLKxs*a$hL_*kig=il;$vDj=e$kkTybY``1V+BIb{NML!}r6n}f?;04&KRErCLk{j9 z{rd*M1OdfW?k;IHb;iA{n&hs90secWdyiIXi^Z%Lub2wTzL&Qg2Mkv|23>mM%oX&{ z2^tR!To*$wKD-gM6FHu0OGwoRq?9I8%5p7AYKVlCyh|+lR=Y$f2f-zVUNU?XpsP}4 z{+{Rtw<}c)2KcI;nJ>Z+3ES1P3IoWhyqdqJY`t5foj5hF&Q8B zUeM1Tg$f!h76X2CQqW-n#5UR~L?k6592I|E^Fer9LW2mxD-eeiDnCM2I|P$7U?dZ$ z0YP^YkAm)KQGQ>{=rASY6u344D9Kr&f;cklgl@m$E~#w|YY;&g8FoSkDp(@h8dd}5 z>B^w%X-%g9K^K{`T%827ownvQh#;C32Y{01 zGmxN+47ysApEfHmZ4GJ=9ijFZF%Bp+&tLSYoe5eRfk_RBPGA}jbQhMzL^&$&J=uHI z|LWyqma>1^JmRvi8>RpX99Qi_w5~lbCzI5|wxALum;ylXUAB)FIX1z1NrH{Rf$Nfe z@D(*%vsEvO(IHq{NKpA`V7kJYj^Z(!^4%D~Z-j1`b@VeCP%vRmmFW7{deGEn|X`j;`$M zGF2}Axj2ifVUUt%(#Bhvx{lpqL&CM?i8`oc{-tdqbxMp*FtN5l(wu7)!$L*hr7y2L1!!!QPmVD_G4FkO>x|Yx#f)T9&@?ELw(co<0i(qAPy-#xq)pp;&jU1WFp#bP05DAY-XY%<`M3 zDp=>f>!)h2wh-2O)3raO!{5Au{Yg-{)5(i*lj%&9mgecSU`e7S-AFOy1M22P77RqJ zClip%VmAvQ;UYBDE$+tY4QstqG3|A|8If6AklC0J!hCU5gL#RSubV{fJYY312I_j2C z1A_2YY|`mqJfWo`-l7Y<0u55etPT{!iM*T_!6c_`UTQ!P-i%Ya7|vI#;9S3?SFS5R zzy$643EE;N%gNe^FV1RodlcXIUPLd&~gNx!j~UBiO>UPZpIlS|GK zx&`eIl_wHQykypxqE7-tz?CH(nJMUemHBZrn2v*Ri;{lJylmQ-6du?vb2f@uw&G#L zB_q@CC=5v``02Q(#5=ge`%gGJXhmm-70U$8W)5ZE?v z7bb7}dLc;rVKagM(Ph>qxS%hav!;L~jn`?;20YMpFK0LNcV;We*i>8%EIxGHuh-F! zngu~XI|f->?9G#g1d85guX`m*9o{K}nA(DHgAA@#4G5s*!{uLTYE=A&;_T3%-T3B> zXZ;md;r)b!RqwUm&=e9 z1BZ+ocx`9BpwRw3?a~k(8!uD#=D@nh0nh`%IDT??2rs7OOuOi}BHT zs9VoR`o12TM~#ovp_1SPdwA8NBH6lxO#)x7u_ah~OfXtCmtdcqk$hsHE zqS(}Q6G~t0Rzy-HjZelXA#9GGyw}Fl^|X(ugnq2U7W5%(mVP`t7y1Ae^tS@zQ|P?@ ziq6zEiQ1nryblT5YXL2VDWc;Uyl0n8$TO6H1Kmdf9r-`5`ZSmrQ9RvOG|i)k=&Tu# z46icODQL*J9?DRQ5Ojo=aZ46Ga@@cJ;U@thId9puEmgDnh%LtWB_rGne-0jUZijMa zE@V}dwrVn~OH;h0$KYEj2S*cy5}J&Tvx+R-yu(1&KXU2^QO)WYlx6U1TT zVjrTzJ-pWy_z0?!!+KrY!T6A%y<&@*8Gw*m@?sE7pCmh)0U-wi)n!ISyWVtVA*)T2 zJpbD)E4CxfMJrx~5V_c63&0uiKotV%;1JQ57ZB~BPY+B_tX+z(P_ zdY}Ged_=nd)JUC-gAuu8-kG6IVnYb>5*nk3CJpkEVSxyppZ{gJ`qH5D3*kVgCj%-M z&FVEx{nXHt6`O4*12G!NFu=8Bc8LzdKt|eNfSW-DxvL~5rIvh2K7fq4NhOI9K^mBM zX(}iqY;Inlf$R<{3-svLz^qntXE(`gIjki~P*8uMs1Kg*|CyZ2R138G;4e>hU+(tz zU+(Qae{t~WAxpAk$H=Fz1M8J@s`xZ|u)r8l-VJY9XZ;8NiRP^BMUw1`i zz(A#2Bu|L`w$I77ZIKdi^>kmdw6&)D(m83SQ^#|yHQjF<-7OXEkq)tphs)lxaxooD z9;!P+rp15{4J2FI6_OeJRG&j+*!E72eKZdECH-i{SIe)lp&*z3aMagb`V}(RZ>Q5w z2bqH?fs#3%DES5&{P)uQ6xWvQA2^{&wlzc&96D6oFo$7#2L)YYK+XgdM9KWZ>X>A_ zuaDo@p||-x#supXVqMeWm3{LgaVw5wa%*0;2+wo9BXTAG*ix>+t3(d$FHcaV1Y z)kSK(9on)jM)r0rGbtEOdDkmh+N=OgLaWai0;KxmdMz}L3@^u(tZ7#C0y&lgiax7X zv?x~V#VlI?mFxs>rOM-hvJJLU6?ehCd^)$4<&Y~1Cj#f8NO3^X2Y&A9OHb&EFk8H7 z&npNtD%mfu$+aXtlzdXB#LHcOK~`{Kx`!H-?NE=$0#zS*@0&|uJo_X{kRa@thqzHu zP<}S42}@7+YW%Wu)l11k)sV*h!WRH*p7L?OKX=%*U{jIlO?DP-{~g7VC~u>zCzwUTP^=-HU^l zdrzJ{e%>3MK8{X5O2%#ZRHx99dcQUHpF7!Kjr3rHjo;d}#%X+sk|(opjM1$UgAXPC z=quFxJRa_}8+~O6pvCW_{6{DA2Z#x-E`(&c)UJ=JV}UBaSMZ-d-9IT$zoDo!?)olMdr)My+W`u4v;jRMg-vv zJPSf~L@eSIj1Ym7=8ja%vEf zcRy3xjHipioK_*o>I*!I~$bE^nuW2E@Z+u$0pnu)$o$rA2f|4{)cHaT`%E-HJH6{;r z6#+7ER}joc9AsWoKmaxO+^fDC@--y?iSQVwV86$q<%Lw((2y=OwCyk~PRa?5qgeUv zrp);0(DA8L@7sccizy|!>LfUG<6!efNsvI*C+>A$6-|+r>J-;(l`1lVHD8CC7Zr0r z(;fG=uSr#Jy3>Q@mSB(0Vda$o8T_~0J3c@8`v-2Ak|8%bfIPdw1^12B3H3nA9iEO$ zE*4|mB}Jhq1Pe?Rj-k%Mg7|jz0*Gh*(*d;`+aGnVpfcPQGU#ts?|`0yP_M?paT6Eeo`mO3|D``gl2d|5MFqag#9VRo~$8_2q4TSxAgD|@P zVNUn9s>3YW%`s3Y$yg^zqA`1?1fI?P4uLM(XRq0H3r= zW`uQ0VswbOnGli47Re+>AiyGn+*Dv|KCAJ_o@u08&ExA8q%CbOM{*nxbSGhrD&u@d z2En$Rj}?_utE2*lgj9wkn)r?~Bxu@i`I;ZAL1_>9!D@!Ujl)NZQ_rE1_8b07hCY#W z$soP9ENb!~f-Z1I%1m%#y$wxAT&C>mXURsxt^z zQeAe!1;ERe?j#8V0JIhmV8a5eIPSZLq9vHN#W8>eJ?prtXI!CRRYKZ>W{ZPMUWH#T zspc{fuwt^mawOzav~jzZpDx-wT* z+;g#E+ID3*4%nqeP*uSE9<5tJ6$b>d#{EFGN2&2&+s2&%gZi3QV{_F!5tR+ea%Np4 z>cN7RwV&pDEkt!Ftdg{CKSOK?U;|$LkX}PE!F*=%qEp)eZ-xSLZm6BzWp7vC26{lh z_xk-&ISkex1Sg#hju}YE8_wJaGBOBOq8i7h5* z?<8m`xbrIt(WF%9i zXP3Q2LCyrMItZ5O9A;KY#IRA%GisXcjf}j+bf$+fKo2jsFN)=Qvg#eKkB$PbfOh4U z6o*20w2rtV&u1Sx-j$tKjP5c5OwB4Gp)Q-Mlh=FUvps4`5DcAsN}wu;y8wi$#-Wf>MostUD!e^=!k?b)jc z`oVleus*|+m&mvPzD|US?G~4w&O}u35b+^bucf-D;u0fRk>P+ja|9faQ?++h#^^`m zQnJl7O@q}+;pL;6GH@9|lfO-$vrz(J!wTTQU|dlrNgJJ69Iha zxSP?Di0mh6N~JP_V1IX*ikB~*n(Ro35bT{Ztk@PIIxO*_ea~J1q3;&4w~5dZxkc#Z zE*X{>YXH!fg1@ON2?7%6`Bk7tm64sYd^Ij?unG#%KGdJT+uoTkz)nf4=YvYrBqZpC zxvC?+hgDvB0F@HO;GyCDAT@aCXiXym`i@Qa1gqi!T%8U_0WCRusDOY>N4NIS@X&xd z4MV~nrk7$WB(3b`QXCLK$0vay@mRSSAJg3zBu@tdXM!Z-YPq103CeOM2AA71N!^wh zM*%Il5~J4rnT~EtjE0AX`M(W#R|Xzx#W^ zl1X8mZSpKoRP~+lvrF2=U-NNy+rBeP0zDXAE$AZDFt^BftmH_ByxUnvF+j@DdR#x4l4s}W4~iLtGGI@ z1RYUm``Kthwr5jLy)@B3EJyqvG{HE>!LFv0`|iUA4v6}N;Dyu}Logt8$Ux%(Rmu6EvQ+gPmq3r-8Kk!e1^a+QIAb zV*5e9JS#m8i29X#J5|CEUB5h9ozi*`v)I3F?wcI;#zGbn$>cd_#DsTyr}9D~$m_Wj zrmUyF)K^^fRfH4@jKb{q?_Jt2rrJW{lpHq3Humv3OJr1#`1xil>i5jaWu{QDcH+P{ z7D8=Ap9uo%8x{T9Vm<4ZVeIct8x>9iY1iINC&~@Er(zTK^hUpO(qTpt3|N4oyK#I7 zAVGPNeXo2s8Jl1l1b~=Lqk-r$p3_3;$ZzOpB?z4ah?vUaf$S2V)MW8CkzgtbgqX{~ zf$9n#q*%jKT4aw`js+2@fWgQZAm~28qYumB+VI(59!(1MnPs0~`v-W8ItvaNckvpY zJfPLS9??^Dj9`i@@C^Z2QUgbZfctod3DA)ZXso}lqP1{S2sWVrnU@jZL(EOQ$;3pJ zN#NfKpu7ZDsqW!Z@!|tGw_H;>@uMa2V;S=sA)k#Tk$n^r2XG^+4 z;XDL5WC*wpv)LNhTMdq%g$=1-&IcG~{SXtRxAC-M8a<;G++B*>Mi+1%Zy%BeP>eW* z3v!oY#oHSokS<@^YMSB@Gfg@?8BcVwJ0$fm)1*h^1)U;L%&e7dl~NBAq;43XO`)zq zjyanS0|LklrE)Qhif}th2MJ2oXlh9_D#lAXz)`$>@q`(-X`>mVg7^l?yLp6y5A2Vr zwF-hd36@KM!|RQz66B-kKtX#Ij~iNgEV8g5oFhOIoIuPIs;-n7w>6~TKI<2P&)y*d}b9s=u$Zj-P4Oj*Xc9wz2QeFcODIep- z^s^Lo_&6A73S1I^DG*}`AjeJD4pgA7$Pi7ZYZV%Zbh?Yxq9}TH2y)>4Zu@+e34_f` zAS&GkvoMntjqj|mkq+WMtbkJDX#B;L{l_^fQ(Taxi)}s;D>}WwboI|w7m-PYh4FXJ zRhS}!u%D$fa&NF$78#F5K|rtyR9MVHKFIrdh2)nr?{T_3oMybiGVjqjOE5bW-KUhL7bl%7*{px(IG@n%CnCqf~N>3<#H)O43&B@iFjO{iV31| z{YsT2ZW;QE`9p7Ky-@C%Uy*mf6ADMncfAEm-y2L+Lxha`LLhIaoUEs_XY1)H-=_(+zE|{ONag!cnup zuV_0}ngN1pGt&ynl(#N3GiHLoUvA7yuLStsYJz(bx3ina196|$i8H5l`%z30!PdK2 zn9s3|C~{oj%d+PnN^@)@io&(>1)Xycr8yv~SC@ShouHtrm-?AyHNj4!I2RLCkob3X z5|?x=dQ6U6S&@PPq*!E<3^LUs(qcaB4JTu@_wp4v`Yg`kd6D3>76-z>CxZ=owfOBl z@_3+5%O9zKqvljFy5L|52_ZgYywBhC9;1tW!-XwDyUyY2g;)kiQKK%;A~b7WmBVtP z+gWv7De^TIc#&|(gq$=BB&lgxoun{EtiZdMBT5vpNU{8Nt{z@PewWg{jlcpM1to|} zYT$9qQ@GJUzQ^&G_Fdye(%T=?J=n!xcAvi3+pz~QaNvkCRmJ5z;adR5qS==!5SGDL zw+$(5ck%o2T*amAQMitio?6IevwXpt3;?tee5lYsbRA!PJDyX-&Vn5G^_DZE6RgDn zhS7zXAiavG@xZ7!T=Vr6!74I9l9UD!gg5Xk2$L~C1@IdD0r2ewwoMf0Fy$g9rA(7IuFP(djhKhonT7V_f%8@q#1nb5-=smM+Wf)&dwZ1l)twTo#zeQYV50`}IIe=K+U?gqwH?5@->*=&MT>S^5Rr zZU9QMSEwM4iXTk{iUm1q=#efXZ)<#x3;}*irYi_Nw%{8HEm|@U5rprh(8Q9|qV zI#dux<=c$0`iYgsw&j~6X9d7psrw4Xks%<;aq3)(#p_^l-8RP^C}^*tUZ9%2Rx6df zITLI<10`9zEF>sZUemagLhAM0Z*;J8upk$b;DCv&URyA5*I+}!9Y@S0BzB`^9m!?| z78(LBf3G4?Jfv`nW)#sYN*+h@e{CL!YY3C*1Q?j!51H08x-4c%d91ED3^vsSyWn}& z5Eu$>#|qSfPCwd!l@xB3(qx*~vkDZWo4i*AKT;zp+W;}V_{1PB z4F<`PtwwupcWf8xY9Sy z;>shM!fXxyx~5}Cj9K7f3k+=md|-f}yUe~-j|454U?u>Fn9bsWjHhiu8A*nsE(O$`QSt`L4=YGlO;I7AbXs{OzyB|2_ft)bXk*uw(*O`eZ|T1ehLbYLw3d!gp|N6t;*f|E`Q&0$sxj&P?EV1STi23s!jG<7qRY`MXLR(7<(>*^#!W2UAW})6i`&qXh#K zx8iazoyQm0Hn(Dh_um(P^fy0J|AE*uC#}hhbcy9@Y*7|P0*BXF(J33%SasEW_;6tJvW>p3s=L36&@kH=9{9ZGgTC*o`2ZAHc&e%@*iEV` zJn(sCkffjz`fLr$poa!7uS(Om-Bsxd3`|~WS6`OARy8c`76}|Yr>bi1+pc-}tMI_* z4VG5LgnNuO9L#7O;Cr?AbV0HA6U|Y>&fkXv+l{I{^1faS_)t@@?wV?s0z`0rOitO_ z*QxhlajXwX?rG;p74u3(*wuex?V?~$++mu5sDuG}e&OD&(bGR(l(!cqiJbLm+HP*7OsE_Q2Jo=fMwMAc=>4QlFHL84z6S#_fjf^w-Kfyx zfTq85ZwEG{RVv!q(J{d(sKJc3S;{!V^M7__zbqSc-p%PGzl@T{GZ3s9I4*2i8cLM&SaxopO`X|MNS3$vH4hLB)!zX~6Y&&HiUPl)L zb=FQX2I$FJhvty|QK9{sSOe9Wb$kM-`N$bI$SYmN<9Z};uyTmCS>@qF%jfRRq!zs$ zG9ABB4snZPJ_r%`>p5_NtdI%{KXV{Sg*uvEEKcB9-MbnV^~8d8Na64d_+)QVU#Lns5H5 zV|k^%R$dOQY&6d+2bU#_u61cgrr|)w3civ;*A+zGyUh!}j|fUu7HRD&I11IgEE+7( zu(CL&V8{!8CZT!TVZlIj!7q#R;MOY1>O{H}DkM;_v@D8g8Mq%bPm2Wu(Pcj^bXc6$ zr+GP-tRJP*1GFU7s*Edeb1I;LikWX!MwPd@`7Bt5D5|(^h*-5{?ca(nM~^FQ^Y*X8 zL%Qx#bdsJ5P4MS2orI+;9cbsZSd54L*XlEC2n8-z3e0pQwWuJ!8j{DPlA@9$HE1Ba zKTtP)ozUT0{Yzi}s(11FrzgdX?hc;u3LzPf0n#RVGXd26JgKIfOz0k({+Rq@rgZKj z_D>NUHFUsvO-ULkOWJ8PUJeI~QQr)A_&~7}JB0*L^RY{gmunREenzfC#e$49phC-v zsbt)`G20>r==mt6M@@e-Y9up^jcNjXXt|NnGG8xGm_0<*))w4skSm7T`r=kt<6w4I^7)qj&RLg{BZC$madtHJPuF02ejK7s?|7IzDc z9v9S^Jk6<#Jvk(+A=}!HyLp(BpHoDU-YK&~2U5Xt=dG<(F~L^9uFXj^7OW|D$AVRw zZB3UX&FX#hnht`sclD6!GxRwsnn49Cyq%PzEE9CGa>SoTB3U=qNjb{!K+^~59HSwG%CxX#Z!?Ax zWShqVJsBIRmh6YH5#xcTPo0g{bQ3H^?{ICVUEg2N)qzOvjMv{{%#=3O1~RDoSymk# z*`aF;hXsu}xi-nJWqkt`YGYJTR<%*#F{pJLnjg+ z32P(ugLii^G}z6ooZ9W`k;EAkiGPHEJUES#;GUJM@ex08)DgEuM!N6BRyR-d$pwiO z0zm*fi}iV(;XQO{NaQ?D(D-}O9pyZr!G0~a!08}ZME#Sz(Wpzi#s%-KG;g1rM3~*5 zb;qr-!T$^JKcv8}$K(L+T2FPpPW>U>NFB=cpl9HfP{0R`u7!`@(H>4|fvsEkO=M8_ zerUm}Paho8_=;ttAij--%Z#j`DkOm#H)4n%R40#CeDA#Vh#|`YJ(pn}JwK$eW)WOC zEjjC!ZA^VoFkaz|G>V~N1Iq;Iswxd{<9ci;Eh;!Ka?X%Ya7q-po+DI{V7tWGqIOCU zhGr8TYolD5dQ3j43w?d9-f?la-7)J*SBuHIM+UE2xu%{s%YoF>#*?(NkV`XmiBh2>sN@+Z7u>!#dW zVDP%Jp|ypYgjKoa56z_eW%Wkj_)y_Shn|Xr1q7Ea32MHQ5Lm%k-vmJGC0d;=DuP~U zRE3$3i8wZr?y4dCI&63ZarlvP3A^9+xE}RsE(SoW9+jaY(XPGI-`c5?U)WlW8+=eO z@>F7e;8V6wB~Zb64{aP9b*BfkTlA~x5qE|ITF9Hk^sDYUwrt=VLU2bt%Gw4gi~>qr z-v7(GSkujB>Wm}na<<5bziJ3J!thZ+>4sG1%cFHL?cJiZWf?Un2;GR$5K<4sQn+X%KFhLg>m%f4p z{7Tb>aXn~|2bJZoQ9QveDvLn{r5l-mL5I1kIWSGf z)OqaA7sRtH(BlS*{7JJbl#~3hYuR_8t5<7ld zm^?FjWY8dXErtEoO|<+(Z?U9Y&+X7b?^#`^Td&$IUWd)Z7W0;R0UkaixY?7nz*6Oa zT7e}bzQVi3psHR4r^pJS+pSi#G!~nqJ0Xk$LfneCwTK#p=OS$*a%r*$5x5c!I`~?Y$&*)O{&`_05Ujt$A?Z7Rjv>O#@aPYgnl!;W2 z6mQ5EZolKU^ zgJ4S0r2>Nv1#ZO0az%AL8Sj-XmIgN(BcOpMw*|#CQE!y;64|18->Ao zgZ;k0lU60c0X69od#b7uYf`!_F9sb7g7ySjm4c`Scha6j3{a9TC0ea&0r|m@E=!3= z0WDu(v59VrrzN5x1$=bNPV@1cR@rO(9gpQ(9qHvKDJj%`zDezf_R7<%cEx#V<&;or zjwaDIS}KXg&eTp(+2do3!Fj0UbWr$VY|CmMAG;!M(Ryym>yQSDsutaq#p+Sj;?Bq1 zTCL~sRp!J*P~{w!^AA%sS;32wwPr`%WoIamaYCzeBFSl86tr6$lkJlMjyB}2)a4tOfl8_n%gS>Yl--3G5trE2zv<$`-lZQ){(NvVU) zvqrIpyJ6L^VC6PeqLy@8kcaARZ{rFVylw?n+t`Gg5s{>T8s2&&92wfT9ytdFoqpxva1JHS!6Kbij?*Pa3+uq3j_k8;ZHq;=%u?S$ z2oC{n{Z&tks?kjBnz_Z~E8XQM8KA>$$pla3mvdTg$<#7Imm6jVPpis%swb)T6vbpb z4e#-3JW9|JDrwjC!!SUH z8=eQ2Huefvb5 zsU+VczoYZbcTERsU#fT>dc%uv#cr`0oEeXV=%9CNu=u7&M68l3(?$n-M0nVvE68T~_EM#!QgK zvqL{Tp{D#?vcp3My_*(RR#}!MAF6M$8@n{ z=eKAiMcbTPxZBriU^|>{qF_kPHVDP0QFpgdjN_%c5{=i9Ef(HtWn`#e4Y%;dgsIk( z7Rcv3ceXg@CXrN;Kn!n3?Pif3Tt{j;YDW_+kQ3O3^wRELwS~o+w61IukwA=FyEPeQ zo>SXJ`ZOo4EYHaSmlvTeqC(Z?SB?wP+;*%l%^b{OHrm3&L!ieJ)QZqfQ@o+=R)i&h z2)8ieTSBcQF*~$h7>VE^Am{>3&QZk5H@R}#RTr3Mf~=rodk-gasH=({vp|ju8m8@N zBAK6$%^=Ix3zOILP@>n!aDGXS2}px1)KUhYot)(b=s4YG%mGlvU4;`WQ|C5xk1p zXM&mFIaJX!5kw^|lbCgOYnfo;$tx!njig6*N0rluhZWqit8S>&6XO{*pv7<M zIm?svYE+)i`g%!=09C_ExQ7*cA=d8Ftj( z`tT6o&RUqduLRiXIa9EO!%%IR@$n%cXkXML6#nfsTq@mFS#aPW zcm7bWg2*v*JCWH&2as!<9y5u|-@y#@wf ztK?)b8%>Hfqkvi^93D!{nrC1W_Gqv?A?*a@T8IE@jLS<}OX)*4ZS!DYr|T@XK<|;681W;?11zo=AIYi9s|tN=TgwwV1?OkuFteaHy!u z6TPm&WOSJ)1|2$*y_dRwEAS?j_MElZVR6B21~5T+P*xfo23HPBy_aj*9WwZny=OFi z=%n{#^M)j^8ZWav?}S&QBE3m_tKx7z_IAkNzjin}?0rT5A5vD(WOa5%PRk2ELKEEg zs8I9(DFX+(OZ@wY>Yq0I?`5bo6lgAhhP;kTx}1(>;vX7t00#s&9D$1Ss)9%NwE_8J z$W9Zc5D=7iV@kDTnBo-_)5wZCV69Gwj|%c2y@&I|v)Ouj7%cKPPp=0E%F8^x+Po|u z1vhnOQfaV2bQMIHE9l6Vj7o69Uqr>xKz1u4bBm3PQE=EO&saf%Hcn#{Y@$^fS!9Xp zQ5wy$NR~js{gC+tT0ErgJx5qlB!DpR@;^4Hg(Cog!sVO2)Lx(F>C;V0!ES4ld`m!r z)-}&+J2=zIG-;j#xFnrdC;jE-rgR=0=q@7Pl$^MN|IY>)S0RDKbvf=U-bgp;ay%%| zxI(YK^P5oLc1;R>hzCMuy!dcgQ{x#Vki3H&qC-}}MEV~ZiB_*)Kq&3!L_*94j{ z0PMPd+JIB;pRD0&()|Mm1n+vvhpRUX|M$(rD;U80`is}W(ddTyH4X?|*-@K5-Bi2^ z2_#owB=r?-LeK?OYd*02Ukyyfz(D0X0QK#R;?uAkY0?2Wpd`g#*TIb$O(`@GC|paW z$P-;=la|VZ0u3`3O)BS|7)t|zf|V}{-7w_&-lT0(2{A}Xk~n5nQxYDVs!9nh^Y^3q zN+S}7gp{~mUMH}Rkt55OCf#lT2RfG~x;btU4|bcRsX_vYOOyVp8jL9 ziUzlh)5He0Zc3s>Bx-1rDT$AT)R@79nvrW4=HB7lj1gIh*m^LLzyqPlE&l<1w4Cv6 zom(*+=)&}k3gv>c%Ug*S>2r7>4AVzdELvb`kv_nI&P=ze^cS;;ZR_b)ga)!Jhi5CA z^DG8u6ftVYcsz8M zI`7j3Lx(Jl1_O(ino$u2?rD)4iw2%cRcdHeaj7mLXSGXE+H(nVc;NC%1TC}E1{AF( z@<~sN65%0&@7*eGN8v`Nph?W7OJjlKqQ|i)rzZs;bqgwQmd3(?>79xxWD$(Oax4l8 z3|`45a|J1BQL+sfSUihSYd4|wI#%FXSPXC(ruoUBOC|-EW?Bx%;|`fLT#{)tJ`M)_ zt*mF@l1!8GG-yy;F&Vfd6Zu61!}3;41}@388n1%AqgG4?F3Gf>&%3mqfdiA*%0)Lj zv}onng$`cJF!^pBTz}o7WiVh!iO&+1w>B&q3@l#HI-vloV?NJp(X(1K@LaCi>*;{p zJyfJX)+z|LC33BH1(;x)Q($p@b8A;@6(HEIRcSM)4d#pDXw195$IVA~3^U8Qr0ZUhNJ*sTSv9&+rK)nZT^`yJHI!^oMT@fC?J1onGtN0F=A_6>4tluv5A@^p|GgW- z0YLA)e(J%)n=?0ERln_&oM9uyvJc%3_q9;voNs5@L(bj zaj#}z9(bR|mT^2AFc6*31iW(b{VyjU|I07$&}}iaiFLoF_X+JE*;Go&_HRNmM`iMm zFxl;x_HuRHpS*KG!DKiM9thvCgrCq>2$xee9yfnsc`Z0eEO~RVpnuNNe?|veCcCEL zmjo7+q$Kn}pm>Wm1k+T)texD!AJlV`YucZBO?O9%8PkG8ehyC?*!?Ys4jpfHrhLLD zZVQe)I=Frr1P&G5)_Ai2B`fi9t)b9Mb^PkAI(}8GcT zeAU1H=g>Nw!(pRL-g93$4ZfD(H)fB5J5}(V2}ka4T@3wt$diC{COsho^t=mBA4#lz zp6u}xlT&cW9^dttCm`rh^MrN<>W~K1vDL%`y=p>3hP{jtY-7}f1W@x14B$%&iSY|F zO~Ju`e3vVz2p?MBc3=MPo4a4$K^tWD_iF!PQVOoCaDcpWXW^m5$Nof8rJo5I9{Y3X z(Bb1uCgpB+#TTrG$C)k$=Pxn@mKThaa-sO_k`C0A@ z7Q7XZ;msm~^raN3y03w87VK{7LuHW+@oX8UT~S2n#gNhcsl# z=!Ld|Ife`o&~jAKlUY?%8Vyu8!(7n{(c!>vVlEg-XEJ5MK=fQlMCStdB^3qJlo=Wg zl_c5AvDk1D4V5N&Aod7WkSM4m$w6L!Hk?F5f#mjlHQVneQ@Ux8W}r6nW`5n!&4*J~ zS37QOp?!UH?*@JMfqKDUO)m(qY@Ep8M#OX#oYpWlvBU-O3&=4NG<%WVf^f(ehLeck z`$O~Vy5$!+p1k_(VSxPXe7%_5q5n_+Rd)rlGAmdVQ=glNCvZS;+Y!)2iaP3KZ!2X) z1*;e_k-!6?%TbDGNREI5f*Z(Dv)&z^3^{KX<;5d`W9d&3Z}E795^6QI1|ydq|Cw)6ImF*dlR)ylz~AevN#}kOC7nI ze4&n!(c1;fhs~YsX1}G`Kf170{}U_plFpsNGnKIq85&;8Y1qlB)`E+5G*&0SMg{lV zIqr7$h?=ULnmD})Feru z>?eK7XeDUgT*zm)3+}%y*X1doDymmuR^rS2s_In?4HeI;EX?dZx8NX@ zg>dB~;nG~xlN^)F!huUiZ4&auW=_g240N@3MCeeG@D8LsgLiOfXy~wpE5EZ?!=XdTOSZ1uKhSi; z`fL4E5N#t9lNbeu+AK~O7-LMZ>OLM-sVGG>bmtbOu93A4rp`|G(p$Gd9^ z?#M2s_shI5r}?RDSXKOdP@onjRiMZ>=ly58)>QT4qN~Jeco}FXZ`|sSz-vIk`v$YK zm8O%#1zk9n5zT-xc8nY-SgjfwNzpKhrg3M>&E45>A3_&(S3R1oX#O7( z@Q^{(El8)1i%`MSB`>P4aQfDU04o+D!8;|W!x0Y}v4CDQnDN=kN^sziK!M+XcE<`` z(_8>uhqk7*K34fk799h)tcnmHLXyQn({`%g%tOFfws7E(@Jh-S$DLZAW@aer9eJx} z&0wKHPa|Ca(eGR8sWyvGmh;18y?xkB4_ms*lUI&{S204!NJowXf|zfFiFaGN!>8eQ zb=3Ms3Liq4W$ZNHLRn@yT`%{0dP-2t>egB&#{ogqLGVSjXudl(lNsIXAj+qxo%A?S z`7mHmvw9MyST&d9){_Vv5^l%2kFT^X>Z9~#-r$1xR)ToD<11JNTmC|njM3)`7PP7S z>f?oBZ*-*mYFrQ}+>Dm{&*Nqm7}NpiIpoVvP*)gt5(m9hT{F zjBSBIoyd1f&uF#cIQ=;J1~SM~`QAqJK_lhc0E3za+P;|fTk7!AYs8DgkqTx)Zzigi zl^MTi9@Ha71)rgS9GZ*qAIr4rAQ}@>vI{T3>lLF3Acb`_q!b*I3Zs5)Mp#vT%5gy% zIdwh@)YV^$D_Z{TOu7scRMDD9r0O$WjuU!=e7d0JUVXc5wD!=9Dlbb3om2;NI_X`J zdBbn7_?L5tvpi5lRk2&qO1uyD@8=VxsGy7HPjb3cX)@n0cxg6)maCAq5H$xJrrL`jYt?PD$|`%Smytf8mdcDmUfmX}W`$VO3YcP>L_*`c1+?KhXp zD>|`GqY7GiRe!l>{-Roiy_pye`1p+ePxj8!Pv#g;Y#&G;;7S=9HK{bIlZO&ujgnl4w{ z88^?!CFMAvM@4&|A6ZgMaW8hs(TEVQ-#&@~S~|+>dbXc#cWT{%InT)D6|g{4M}1eR zpF({PX`o7tEi$F1W_NjIFB*0Qa6N@)2%to@%^4-8yttO4@n`_pqXiUD(@|O`>0@;g zin-9p(K)1nD%J1I*eF_=E}DxE(0UA{@u5TYI6HLE%OGO*plEkj09hc$kd!J?FI}HVxd!|K0RmkX(l_D$9sLljHB0X3b%~+1AF+~QAw3|CuqQPek z6*IG8S?f_~LrDZ}Dk1{HI~twljqO#mjm3e(4yi+cMh3fT zqhbpfpR+&xfB$v+2Y>Jb^?zYxE(Nu zwb6a$i$ysSqc2+Vb3h&R3K-n9*r-2Q&o*>0Tt!`DC4Tg?U}ZTDyA)buRPfRgzT~B9 zDWZMB7RNqX0}58;_90EFso6ETYI* z3u1T|BaVmhMQhmw)O`G&Gl@u_d1;SCsv-54c zJ<@~0%_Qzdc64C#hv)?!^7)J>+RLq99cQx&cr+Yng8Uq=+wCJ(f$H*O@Ids+eE)Ew z_O*sP#IN-k3&vS+PoY9G4wHuj?Jbq~{$_becNk36bZCOI!<_D1MM#-|1Ko{~Zm(!r z<_fM@Wtjt$K>~@+6Qxs=E4o!z?@Ei-_0&8i;3Sc&HJKXnlm(CZnag_f9$`oA}r}A2Je;jVnf9%Hs$orCv?k(ek);0 ztAZ3+dCm)ZYZl2=5u+uA3g(v+%!z~51^u-iVhal1H?q7m7#7=mOFA&I)x%sHa)S&7 zFC`Sv>ggG0>V10qJE;rMK7>ks6cb3uOf$b&QN4BT!WAxZ6-P>|c|L^RA zjutSlF0pTjV|*+8mk_y&`+{z3;H}J9+y)ukFDLSSu{|8Nyl_jp31K#K8Mn|~?AOc1 zqTxN%vDhs%*l#EDPDyx?m-Nd^a;|~9nALPUbGEUVH87Z8N#r@Tb+aUXmt-5*;C~~* zPaVgpdPIG9;5QbQOgENj2=SpKRrczFgtL@@1_tx3gar;_7kkMVxFqKa7rd#GPg#Ae zk_R^UQ<3Ho9W4+xAFHlgXt2L+t*&M}cC*Fg8~X3X_VHw~rM7NOb2R+$Sjo7|6hIj1 zI>4dh)r^j2Atq!?PU`e4(6HcsJ;Qx9J6wxbcgtf>SN<(9_@B4@rfAd_-#MS%E9oA` zd1i3ndNJanTitkgDYGgB7a0BK7-YzQP`7h|*KD@^r_3K5Lx=RpxU7%d|o`EH() z$+WCzs_Yv`a0>sVi$KS0=L{UUL>bbLbkW+1$L1=FIz%vvm_h-CY|DJ6DyCRGu!;Q9 zrL5cewWxws`E!V16t%F~#1q(6wGe>d6W&61CW@8lst9A?z$NlV%OTT8!Z)k(20-wM z(xaa*nyV+gS*R*KhX}?vhf#B0n?u&3i_#-K!k$&7XW)=GQS<0WTI?II=2<+j#bvji zJs!F23}T*Bk~Ejntioh%ym+GAf4nXB~`f>&bxozk& z*42!60;}320D@19pVfKcbwfLQm}6FrpFJcvu~J~G%ZBJ^zYZ<&^V#B(mG zuq~~}wWHb=fZ!9hRX^+99OK#6LxNL88M>ZcI&0PF-Qs~w)J3|oubn*_vn6(jU=%hr zzsoFE`KyNnr|_GUuU6Gb0D@1HAytg!_k8KNsthe&hHXD@=>j3 zjK#~d$x2`6rN;|}2R2!LH2+KM*nAeW&YD03qqHXdE^0+x{tR9Ro0u}MW+ObXiTIi7 zVN}IW0D@1{c-_B`=0~b(yoUs*@EDyydT5o$I7BdFM;oz_Z%*h2XElhDoF%*VvYn^^ z6Re^y{4la>RbSY^f$Jr8_pmD5iTVQ_+c9sjiY>kcJ3$?e9x1xNNmTH@C{xhjTaXrb zj{`}P8b~lc?-FZGbUXN(H~0nh!$BnY3?SHEcS$vyx)po5-{R3t*7O(b)^T77UI`5a zuey&y1*Uizf5AQ#2bJfyz+ivbed5?@;e5H7@orDS9DoDLa03?1iF~V~rnf)Ve8qBv ze0yN9i+tzGyfWV*ESPUQLurdsl0;b-jQ1Q&!rmSftRj9;0{etIbFs?!5uk!s#1Cwd z3=hFo#t%S(@s=};wl4*j%P52tv;+<%VP1y`PEn?cPhX*pIJucqk)aFtuQqi=o#~DHQ*g>U_dtW2j!Gl9Z!Vc7bI781{+aZL8 z0^S2fvV<2{z(VkDv2au`s4!4_|E}s;`+HtrIF1QmdOvF1v3!^c?nW$Cj_c*eQP^&y} z4}07jABo)ngPo7El)8!fpTqa8O|Kheg{a_7^k3r9zzF>pJ|ak!wCli!)oKh|J7DBF zW$W+N`xT?x+Mt5>9Tx%IAC8B)YQnuYhM6xo+2?>VF(tx>mV^x`tqkKM_?txqZ=&QW z1s%(gCp<R{jMi{2WN$`W_n^5^Wgq?UFPVrn1H|c0cEQ_3|p#fD{2!51#1weOoBwYR>UcW3C_Te z&F|?lt?*+B3+7vki}hr2Twmz_QGbaKft571^q~nBX*kfm7}2Q{g{-m`?2lC-X*P`p zvYRU1)#f<4O6TjZ`)|`_OacltI#2Gm%VoQdPAi?7rx*=nFR(nRd%on!sDi`C>0AK} zRJR#b+icsb*=E50yEI#X2f`bSFmjB7yVBBB%qgB%X*TYEVsHPO6TL!WAvZ5Bn)z}) zTe+J@Kc!0o`TpgS&W8mt?w&*h;R`XLxNM~)I(PF0x2!xb>1G$aqfxMN3J}TMDLmvY zCR^}5gwHxQgoZemEorB!qg8X)r^X-}rF!IrSNvqqLYl{ieH!`Ht{qjm~fhk#xDc}Y)B)p!J zp!@I4-AdL0N)#Am2za|wz;r$1yMs#x55*!hI)p^gE4uQpHhQtQykCm*y?Zj1A*`fx z*_~Yrid?>yq_zLZio2x$-b)Q&(8mFW?p2&_8oE}5SGDQ@6X1e84y!7Ws%tFc)nV14 zf;g_{bW!S|nZi2Zu&KJ9b7)BTNmTAE-BgWiD9+0V+X|i}18}kloo87f>=wR9Teny~ zlotb*4BER~(L#dql{Dp4z7JP2+Ucj&u%J%mcD?02i4k(EAVC@RT$;yxgJW&aMd4-1 zF4r?wxoXK29>}6tMu$j!pC+tSwXuu=gFXr;ldL@5bPhQ!ph zK{Uh#dE~*AXd@n;to2|E3CfhAH}vw|$lYPZYEVHObqXoTcQUiJokC!OG?iP`Mu{`o zBe<1C1#v33`!nQLV}dkQhv~dgqIgHB!yXv)sXTw*v|Cn#M<`*93DTRg{Sn7BOQyTJ z+8u%eRWt{%+FpJ53zoauIRJwQ!l)NbKVLAu+FrB<1YHyg=~p#Qp2}NBYeQj(3-YL2 zheXQ_oiFC+wrjg}0vZyct_;#``PF%~U6}wD)LGL%7TjZ*Ug3f~>eSHnM$F4<`xy!k zWKocyAESY3ZIA#aNaGxye)SvTOtNdf4h~tyIix$=<aixm)o$(b^%m0|jkVNA=?vab|1lXaEc9s4t<@>{i0ewS5VX3gRd@=p={j zqgl%bJGH?f#07brYu&ArD+krNcBmkZIx`zu*P=%y=c}1`Go!XM!+=2_wY^b6*S5VH z5Oh)f-O-^g-t5%YUxNt3sQ!L;oNW%WSZnLA0|jlA&vv$0^46v{p9T?xk^i>MnjR^Y z_X*efuSW%O)S+=nXo^nU1X|mn5zvqj4KG{TM$tgqqUU7mY%n~O1-jPyOzR{As|{yp=30v*<7_WB5EE>1Jtgi#OM%`vc!JA zJd-5?WC(B`@QEEL&lcYv_XjbDGSmYiP|&`G9=A)OX6C2>s1wl64og0-P;#~@HO|k1 zLq?qY{WLy;P@Q{#g4VTL5SX5f9olZis33O37nfwj#aoF9QrB3D1Xy7W=bwi*mKkVB zaMetv8*lM8jSK-U;3ShpBgmlvCyx#xvFmL&-yWk?#cJ1cs34B2np)%?Z5h{RTrA_d z@fAxk;yP*y7kN$?d(3rIMy*$8LG0#4kYuc-tPn3tHr7%W$ik&8H%H)pOs~fdog+xV zBA>4Ni!`(#kq+ELyT3_b&_~Wh^ogac+M4T8K^#>fN;2vyT99pr3v$=#4-(0xmZ6<~ z0SU^Kp%cq2BN#fjiWUePZ52&ocI9@&RkVOMw~7`fkwrUnDpg`4x2Zbp7rVlq$Ov`V z1A{*5e^FH$Z51uZb9xmG2}W8)3*eAHH(qwXjkb!$5kct2%fZilMquc8nE`?>3WZqi z8EX|SV0Ei=AdmXdARloRP4Zi4NQhcrNDwPowXJUe3+k-t$67^`Sx>H_A<}xs5*yY6)o~zy&^K+>Jsu2z{0pu zk3y%379DDP6do1CQKivIMqFKDnYOqfk8|zTfkMZs&b31Yan#7OMWB$owvlJRppQnn zZlNTkuANkJprDP~-tksnP|AGuC2EhvN=2C4+IbxTjXX!AgAo@&T&B&s3MeDzVrvy) zo@8F#Qi?nA_zxB9-~g(Xp10@PpzteE}9(VYX)JF4qc4^FGq%e zC`t$G1*{Dox(6Vj$0~=*eKa!}kdL?&l8|80VTDd14`-_*-z{7_MH*()phL+2y;#l< zbhuV7q*xZ(b=I6T=kdwb^9;{f{)4K_`EvV#4KVbBT&$bX`d)#(H}X394Q6`Y<; z2zO9m_`fs*y&uP<|M?*43I({v-n1Kh&1Da>x4{9nv3F#VVfNNAKsMIciF2F7tf5eV z`^VbK^e-wS%+dv?Y7@l>B;Y@*@#+4bMRPf$ZC#9_;6!qQA^-!+A8D53PTfzz82)mQ zyI3HOu4^rKnPKP_2i_O{Um&w`FQ9?6p8-IALosuD z)ozcwW-;CF=Jd)Icm97FNn47iNSrp;lJ;?2thVz9=MyJ+Anx5R%cU$J8nYBVR!qVNAhSoTggcv z>#dwDYSQRRrtdyvZCA-QloHc8@KPDSJg1Cbx~@l`HF%94*&6-^iRTu}{p8~(2f7h! zLHANEIc-4`ufDg@R{+7_)b<3w=p(&q+go!nn?GQ-E}4W(vI$HO-(bY*VkSmc(8Wt< zP9uTj=alAfJS`_^=WCn;{b06R((`Z5 z#3xWe;ZGb`Rv~r3T6$@lnWv-mb$}`}a-r#Y#U$ei(?MwSQ;XnMa} zldafH(m#$X2^3KDL60JHg#le4eOS&_$ue!zk+nr+P}vh(7R|-+YPxIX9R?%EmXHR@ zXwcCWmuWywPiWAfgI=>_rt9d~JH!*h9^-+wp18MYs5w4NSF_F4adyQk!pKoYQbFN| zF0aX`(mZbFM?J{Xqu1zy>Djpcm!gBxo|dTOp2^x9Ayjr~WixiJ}3 z_SBE-8Etr@Fig9{`O@^r^@H(1+b_DkFKEYTY#u56&vBhE!3LeGzueIw!6yDK|>+N>l zh_lWecZfN>6HFJdK-Zr;oTP^(hDfQ_?0Q_U>tKcMo*1Jh)O--+MLu$jkyKFF$nBZiJ-2)g6O@_tku~q$hc0@=q5y-g2sRg z8h_JY%844swO)>2;7Lws{&kOL(|r)(mUVU(BP&ibLNBc}b=IWa>=7TL+#gw=c{JZ&>~|qy>3?gp3aIMdm$Ti{>o)=((&cNdexNP4i)#l%!kK? zazdyLW=6X{CPTCGt(Y0@qk*y@LLBI!1l@a|d_#ZwjOHm4?_5+wh%7#|yzR?0k#@Ul zxc7IwgX@4Y-k*bql3*S&k(4ID7c?dxZ62|U0*Zp@*^zv-=-J5uO~EKNk^Z1bcXFh;R=4`{QAEJlwf%<`1Yo(N0p@;FF5RblRnl1EOA2_wlXB9xA#WCU@+Ar_<&; zv9-CtG8{{{0Q{c>e6I*vY@af7j4MLJL&WPjsqyQq9i3Yg3J2>ng~5l6xA~W_*u{47 zgl=F{8}67v3jBiuc1Q_1Am>N?YsgU@1fQIC6f;pBlNKl2CuV}QALpgnIyE=m%(QjP zHV@J!s37j$w76>;63_)|iGu8yEI3&gXMv=j6iA}!<&EfRb~_bV%JOP9=T z4m9UOyI5#br1|Sz`&YFyQhCHRO$pJSNmjDk{w5?z5!Q&4$WKgyDnnEUM zde7L&P8x1oy}^9{xtT+xztZcHVk)I$(ThhWj~STB|D)Q;9uYy-4|`TA#%pwekUov?vjh^|)6w`XHu!A}GhWg*SG1nhKAC*9 zShTeFhFmc&ijK7-9`yxgR3urpZfzgW_Ko$F%k7Gn()ijW8??O>x|_?%=j!lj(rU%M z_+qPZF6jExq%LExuTi{Hx|MUa5<~lrJxc@2HOC6Aw)ZP?9DPL{D0R|b$Sv;u3i!Mm zb`YPWcs<)q>Fx}5%?0a~oLzB948^v7ucMlYW`aGQ?^h6NWZK=4WJ%goq=jW%5o_tOg zoto*Htqx7Qp~Gqqc_iyN?=q|iB^fMcr_AyK4~N}Q%DCavQn&T!LN9?0sd04gVKLt|#~e#PjaA|!$^J1GmRvrs`tmvn2ytW`W51Y~bP zf(4Sg+DDQ^^+isukKR6d8i=w}R>%~yQ+(@I$H};1E@dbn#!mC+#U!Wtil<UgH~c&LYh*L0VT6qw^}b*<_U$-)P;Xkt2&tt`pq^cmqx7>n0SF=VXN67>sVtu8LU9!|8>qBq z=Au-hy(BT7?l_A?#s-OfA>19W4p$n^5+@y#m3I8`|LGHV+$IrEG&@ zevMYgzkgP$A?!)akM?S0pV^`&N6{5ZuG&d77 zdLc$^uvS+g>W|jT$6`)l^g;}HAge1(=;W!%j?u#eV}i7<$t&7VzM|Xo=wz1KkH%vE z=#y813-Y=wr}l?j(1l*-ANVjPNb4G1s1KgX=prP7u&#Ql(zEVK*xMMroBAy1K`h3lGO+uTEUQ3lO#{_A1gG#a$NZg-YydwmFeI0LcwRTsd^k}x?*XoSk zC}{>*Mo78axoTM4D^yqJ%?`i%<Z48`CF<))TcS5DFdCMe28Pruj`N;*sQ z^iJUB(7wnYgXersnw1(!Pac(A8lvx0(_<_}MJx z*q}^|O9LOrz$$6E;su8jeLfZ&i+OscfJFSA?rpB7w%Zhg_o#JJN z23qVX7^x*%1u5Q+bBYwU5+bHAVHGil9Twe1=|+fCGzmV~DdX^JV)5y9gBcr?WkQ5X z`_#I@AsKXKnsAkrHCJJYo~40|7@;uJ45{=_sTuNA(9}_yh{2)3&JysAD$}|^S7w?; zC5<{_XPIVkOiPyzL0M+9C9$S(mdO^eu8@iF(UQVhB0O7Guq8%y zOWky)&whW_G>d!Y?{vys-11et;$jhl1(!|^l#{J%nY5QAjZOU&Z|5kMqbZ=q*04~` zJ!2XDPfSYjH8|Z;7(R5^ox1i*T}olPc&mQ#lvueKLjpy1YR-NhieW~%TiPAS>R`}d zx3xLJPSfK|K*1e-W@4jAfI^1`TZebs)pGtsUCgT&(k9U<*y6Lo7AdSTDQxhgrXp&$vhA=EZlBWvvy#LxmlMWK_Tt z!+u3^yICv-EYM{4o+LCS95Iwu+&e6imLP*d?)9N@?MLg`W1709hYeZ4toQm(DyXw3 z@DN4%7hZnQpO<}6rvS2b@HD1Pkc2{c`KZY{R|rHFEuom zy_#4%+ayt7D0rZm;lvG3hzxE!PK>!xQN!{mKGtR7IwgPrN_abLwVHd))S#NKJ!SQ) zz8y|dK#d*YbGsy>L};Gk5l^3a5q&4?*B^%qWTz~V}T~S4=!md77#*X6)*4> z8jBG@Syw5BaUc{nb}5ED(1mdbi#O)J724aL@b>a?NKfREBvACCTF98Mck~)htNue% zg>*GEt8t(7k3j&UD?a|h5kdG)@@IPJk*;u2!)19PbwR%fhf)+4(V^dvk^r<8!8UyOQZ`GOvX;2Vxd6ypgXChIfm&YhOR zOJtkze1=hU3)<7PrFsUA40J9*k^+L>_9gBAL^svxg^H_ow&QPK7R(QNn5^q?d`NlM ze;NE~b=+T1_uI?Een+QUSp6<(2l}hjrC@-Zq-A#79qpD|UTvZaV#cuy$A^^H0(-a& zsic>5uN5;%!63X;1+6_f7LCQzvQ)APEi;FMG{Fx~MJ`Jn`d!(wSG8)3~61)qfFCC+a}KJd%gX zlMDY3+J}HX<##phLjt-x|GM(=jYlKp-y(xP2+LOFUUf0D1B05doF#ymxGrchuGbz; zcZ^UMI50B8t!H(`O!iKmhwPp=^&2FQ6cAxBLl(WK~nxt{Tx-AdfD zR|-RijMsBAsQhMpyi?M#EfZm|A>qA*gw=ArR9g%;+coV>pe1eArz)8^=v5L^K+qqN zptX9HwV83=zsdLIT3Wc#&yRheW);@-&eUpx%Hgm;@F!Fh-!~iTQch^VTy_FP@KKyb z+4x_l#~l?bpAq@{;Z}@+!G0rT-_K_)_l}QhI1L<_Zh0m(mrNUNbnC>N@${*8XFG-o zP6{@#ZTNf2x&^IJu256ZP!M?2a!;qgzTHx4mgfp@3J}3}Gsy9t&PP#|XKWu2FVH3M zz{T>mKkihSa<;0xIYjUUQH*AWShgynn1TYsbKZJwv)+nptWRI=aNcLp!1IRZ**{sY z8@e@ko_kTUpcTwHW)d43-tX3ssv`x>;3-l-0YyO@Lc62I{goAMhyepjP{xTMTT#Xq z&GQ^~)bLC``{v$cb|II13tFp7^Sx=*C02?h-U~gP#bANurq!bILU);Ln)t{e*?f#F8LK%J&Ww6X<$mLaiV;0bd=%ikg_zPUytp zqh>`%mUy4x&R~-TfZ%&B;9G6w(!g+EGgx2=?Y4d}mIo*#FgzRNW4+pQih`CTQ~nw% z#j#oKd9yg2Lqmb%c94(Fp`C5^G$fd>d44_}>;ViCoMGwgMysC+2@GNBe0N-qWjPH6 zjxYw$Ac_WGta=WQ0Tv8AVGV7ml~3$?A6`QPK=8c~c!c^nejT=;|Ce!Zj|aBU7h2(V z!y}wR0z=sDsJT$-+{4=)pn>V-z;bHkWzk$5uU5^&hR=(XEUu)RZ2=12=LPR>wtvWc zv0wz2DKN#T;lLHvti62DeRxdLP~ZqXUhU5t)#C#|@P!_)ejd}~Js#L@1*Me>xCLXL zOo4@nU<_-(!|ig!8UQpf1)ezl=F9t&+3~;^76*HxhXYrTEB)hqK4(rpxL!LnFa`do zf7`WNI^oR721no!u#=CERY&0SBi5V#Vbke!(>y+ix$TaC?=CD`~sie`nMMLw~^8V(Z3+h_~>S6tPOFC|Jh?UZ)BN4jFIbvq;7!rK4a?0)X8* z96E$#?cq{}i-%*`!+}Fa)*hSPIql)mAtY;$q>i!d;lLro)s?Sk>pH6}iL;PH>q-tA zBHo8jMG5uZVR{njVm9ZyUJKUo0LmP-n*oAc;Y7((7k3OToGf_1jFhjACIjG*@j5IS z30`h4`M&;wb#8!l7mG%QfP8V#lcWdvV%BJO061j0*b&*mh21cQ4UMIFbO?C|HjINw5QLp9l>O74LPZ zAT!g0r8Ds^U`dl)D#bID=%K?-Y8#eVN*q&NYRFoy#S?IQRK14Q0#^Iv`D z!xpAsYYbo#j2;uD&s?u(^U3e-esm{x%is2|8R@SL5yt`ka~?lozk=m~6oc@?=RJqd zU}&_0g`5CMJSyUJoI-G|;qF=||z` zDM|FK&J*d}1>>#|wn!CtAndIWAr`hypgj+o zhXPF@6U67x1^9DMr6c{~XuNX@KIn==VkA-lmS?2yI-r5(nWgfIoQNRLGRI~i|LKJma$k}#u%!`ld zi)xlf?Nb%fKo&J39ze*VsYGKd795Kj5s%p?%9B7+SMgEmw)yTT2gV~8U%&!UT`rzd zG_s3>0&?E$D7I*wyemh>D8tYg_dv>Q1Z;U+)^D=p;UbL@w<0`!1@ALo)o9$ zF}tXN^^i#)N^w9?r+w6n=7I%-5U|@CjsaqRYQEiWA1s@1XD!_o zuKqNk!kccWXK|RRm%SHLx}c4pWB59e6ZNg_mka|!!>mvx9!yjzxn`YE(LNR ztca~gAx(KcMTJQ=D71ZQnJZeIq3w0cRy+$(9Dp2NhvfnesL7P5YEzzGi6+^)75*K0 zpW0Y6*ZEF85j&>OrP-kH4dJ_{R;X{{BhJP3v!FaZ1C-Djt%`K+TcKpSH@i2j)p*mg z7_p8zWf3Ek(gbcsDNWj{Bl1a&|1q*g$pv+`Q$F-4WyBN`IIX5Z9?2WY8F%DfV_1m zcuZC>q!gC0o}&0-wVgkB>WU>R6#raUAeCF{g4xem%$bi;t$PTe^TRTo8#)1FU4m)7 zI;Yl<6ncMCpjTC@F8^JfO>~O+ROQm6!o3OSRW6yK+zvZkyiwbqe9Im^4O={6>i|>X zAwdE?vK8k^TRMO#?#dsh=aZy?rfwVUXJRkkIc%g!QhN52k7s*ZVv}$8c26p+$Hj9= zy3Fhy_CZz5P(Tf>r@8JfOBy*(@#IN~5RDEE;mC|>Fk5t)If|#VN>o^U=&&mw_RFAT z^lOT0U61bNVrow75%d%eV=2_sY@UWD%K}Z|+{k`%cS~EGR+HcB4d?gi?wbwYYH-?E zI%T621GK!v{MV+8c4ihF7GXFt?73WOWN?R(#idy8X(qX8A2y4>Z}^pF^)=aMk5fR6 zod>nvYm=s9O2LVQGIMx%sCb2aXjLTYanY8uATni3MAYHiDSm4FS+y;=dyTY=B_K9FntrRU0`$NuHE(8NKrhw)j;5Yh=72*> zlU%e3FbWr?6I_D4oU_ra5GV=>Jh5n$Bpc zH(&Cx;9CVUek@4xLb#cu?Dk#-(6sHAulAKr?Vf04PX>u4AxnL=rWRp##XHz%3RxlD zsWMXzdq$a{gG@7h)m`9fUrwULOJ{sfEb)L1B1?)~f0o!>awc1bbdXunO6l*Yvl8#g zJ5wvg2_dy4s~+zwja>V1aUtL+o$`>^=_5wR+GNZKjrdD*J5*ZzK;t6Sv%DA(eFO}=o4nZ z+IFay3=&_Ud-3%hu3y~!=-#gfFS+wE2l1$@)?54<>Jc9dCUB=kW@q&uBS&7SK>)d5- z0Fg7{or$|_>*&ONwzqli%&#+XaG~IoDqs@z!DD9fNLO`Uh}Yoi@@N4;_aelZ`blGz zBVFdfYWycv{sKf0ih6h19OnGey}GJk@IWRUhIaSK;;S>J1q9uz+?eXu4J`xe`_7n2 z|E|iU92exbBJ%H!#Laj=t>rb4pcLVobm`yQ?Uv6a)`f2d3u+PMR!edCzb?pWI8X_X zrE!sXBC^h74Iao|CTM|`2s{E9^rFI0Dw;cHv~?B60)kGK zB0b;0$SO-w!GTItkM)ywNz*=j@~^IXI7m>6_CsB|9KZTn*M4|RkP4G-w&LB0I+JR+ z4AqwUiX)buh69yors&E5^_)6mt81o!2trYIbcyQYC(-?|b!F!Vm74KpcWF8!k~M4 zOH1^n>T+lSvve!@C`K)v1_Yg`3~CC6d1qZ^&~TuN3^{T)kybcWzY}z#o2Y(0M>mn< zf?W71B^tY%=pb{H*T=(x4uP}Mtg9M(K!Q@1sM=gPWw>8lD3RI>c^ z6)~$Z`!V{ag9AZ=QW`Tp%vV|Q4It=5e_P#2&)cQC{9s^Vm3om_4FKDh=M62^sg9kDi749bLhR!e6J9GWz<&u`K=nc%Hm>l}NB%?c8 zd!oDbIzd7GQ%XgY>e|fN#eDMV<7R$T_qTt!ozWeJ`oQF+I*Bb`lqoo!;E^GxlnCP9 z_7F;(+T$AN($^7%UQn>5$O9%crSKu;eg9=bO439HCn7y)zZ}N_N$>fug(S7LH03=7 z+wVMPx1x{&g5L5U8$lc8LOEA1*n#Kql42rw2>Fr!Pzm{BvsYU*tm`!7;wj@4Y-IJY z2|alh$Pxv{KcHzaIu|E4*VYzTh5~|q=ra`CNeS9-kL{c{mIa%`J!-F+0+J$8bSh;> zx6{i#661;rNFb`yqr$on#-njPDrA8y5xseFo5GtOwy|H;M(<7{h7aoy5gt=tsD_1g3u_}$mIR_EK355AEjM(8 zVyU<2&1bYo%?FMJ`wTpKzs+JYi2R9%Q6g1weoC(|J_*ZI`DDYLtl;uP51i1~#dC_Z zM92Fq(ku_8iAE-wo5juSzgXr}ImZlCMm)HYLD5{Oc>55aJsrB4oZ z3eL!R$V8w>GeC|A4pHKL?DMrXF~?CNDHwr-!E{tf0S6>?c~aPg3^k4FNg)YDbrqee zaMSgH4kocq*r;|2IEp2y+v>)R>&%<9B*OtoUG#Hi;)0%W{+np{Rns%>p@FbuO%JRV4~fD89;c>v(m`mS1$DD^O{eo&V?DYB zJq?5<{qA1>9Md>{mmz|KvyYchW& zIq#*rSFI2qwSKxtpzo;yNCgTUWOog&yM!RsOM^Fy=*lT zE9E7dl2RgKR1n_+@%`o1hOXRio5=;OlCkbo$p)+xtAGUM8)-`QUVXGh|87CJ>Zf+l zknmeq|qVM?36uEccq-}D~J9K;b|f#Z)= zK4|Yl%46yk4o`mZzm)Z)gz0l9BM@5^3^;m&uK|m?WOg( zO<4C)yA+43tE_9_kk8O}>{?&+MD#G<3DG*(v~Pud+bTAV2DZ?aR*m|dm)|g3GPo4q zKdVBcJ&vp6o>%-~do3I1U(s9K>~VP!0?X@PiyI_wZOR1W`w~pcg|3Xa}v898!iQIwLxmMI(Vl)$>4s`i+m*POIk;6nLKT zJo~2M)69Q9#BDVS(1Q|D|2|HMI3%zHc{nsHeg=9_9yAKjgFGDC<0iU^XHa=Nqy&p< zTE?-ILjsG6xz-hQ0~Wj0X)!m(0+WilU(X%|epeB51rRt?Zun0$yk#_}Z$Mesvy01;mHPX(}%jFeK|1pm!ImYUH1coq$3Ffz!J9@Z|_8jgf zU)+26>yPZ8r_;-AyPh3H$Ft;sfWtH068F~(JcPW@g?!Z<9&OtP>Qy}@jxOMxua4s2 zRLKr7N1srWTwjVe%>a7&j>u4X%Ki-MQwJz9qX2M!T$`p-fUbZnT)WV*d%HKyP_4-eO&!lOgR z>;Ah~1~|jL50x4NWDzk;hhZG*p zeskV%mV$>69?pJ)dUD2amgRsX9?o3yDAI&ox5{vqCxIv)&RqJ@!2}ccQ5jG@bio->m&=6x4hXaQQ9?k--KHP*l zD#KY4A5w0piD$Z%qMb~q>W`v3Rxtl8mg*w76w`*rJ|i+&I554gGIH2%SNqBQnw}P& z=yg4vQF%*hNvr9=Ow;ZDn!<*J+u!c##qYnn|NE~#(QjR~w5k^!%P+XTMZ;*`93U89 zjS{r8N2!;#3hw^sU=2XQ{E}n-RKKC6@~Sseu)aaT@^XS!B7)P~7b)z^T4B8zW?uma zMsHsvP!5$~9cJGID473H-7`Ab(-8$`(1Ph_UNt=okYA>YHtCwuD}5yjUKEO_>I=qX z05UJAw04I8{#9*I|02F4iBz0)%ZU09vvYyt0z_9- z{DmWe&}UeWel@556XPuKA<%G62@2Y`k^D1};?u|TW_O^&G>rcggR47&`q3fe^<2{X zwCRCQwHFL80oG{*gA4($;Tvg*Z{+c>f~#|Z)yc1cLGQ{R^?{n*4Q-R*%Wp%=KLQ2q zZ74;G+5EfX^7NS>z_1KUOpv}oZLn zXPRg|(3WxG(gjys11V`?bIeV{g8Bt~0O}}u7BqvvNRqOEc?(HFmx!1Jn_PgBB(#vo zVN{y&QfzH$@>SV5k8y;q&ZB`u9wW+Y{k|WoC$*Fo5|po^3{aBh_fMnetqQK82UM~+ zLtKzY@u;Oc0BQ3Z%W%O=bSE(|LFz(3a@;m+8iyxB($LVK1kTdanF7}cv5eQ!Ghon1 zEf1yolHQT#tAn*Ij{^m*Gy0d?tFLJc)GpL+pu33|%7*4T2@HCdYf44?Ue#=WqP&OZ zIsyf)Yx;Z&>l>_~hcgiM=={>nHDrd5HE%BX?^m8`Yv*@MQkvy8E_)&{5`mIlstrYa50 za6umSDpa#>5~Z5hie5zw40;){T(2jbeyogG4iltqj9{JW(X8FjTqH;S}{73`sZEI$0lt^TSY7Gf|XmEjt zr-^3;3T}e!Hbja5D&EAWJQ3Ae^AD^@3KqEmmv+q@3Do>7`dl3)`&z#$x4A+wwd(JD zj6Lt)HWERzCdujTAcV@_L{Qm})I+w^-hi6PIEt)fLCQbLrv%@5ep%qCUbmvz8_tSb_fMnQZ3SV7H(4>B~gpf_r2l%7 zaw1nPxTrotOxN|82b$tu0#Cd7PDx~T8?Tp;q$*UlqdQyZe8$sI1}Z3vhaoy6U(yz_ zhHl5Dt#`4}#v6vDxu7kszdU_o3Uo>xvICvnh%fquH~c z7n^j?tXNKZkSNFUeLKu zbvj%9k+pLr+l3UCneypE1^3G-?s$g2WCKelF`tTm%dx6+m@d!iFlHjxC3{$6@*Fa9 ze$#1Cb!ZY@m|1Yuk4E6O_E_M#wVo|k7u&~^k7pN8R_@JpR;~r+1&XG_Uj!s5Uy6UH zyOf(1ccy}^vB1fYT2Rp5L~pn3rb4b^cIkrnJU21bI+0)p-h zB-M0w8dq&vpK24ZvMjhK8)z|c3=Iiy;v*)3MzTf%FWQ3h(}2rs2(TgIEqoP;c(~jz zu|2Xdx@9q+l}|AoIl{@FB(p-Mhb|#+)uvrBmT+ahh{z z&=ruNd=X;lcNG~fw=4Mqa>15yfUq2ML=ZlQwDfbl=2~#cAHJ7d1`ISVsuRs(xu4Hk z-gO%q)dM(Cg*l4*AQd^{y^rUSagv~d+$FXDEQA+qcn5^Eox?+(LbuRAj_MWxA_!gM zZ*#X-OHUix7|gObwDFHXL3d3Bu;pH77bNZ>VbXb&-m4H2$u<`Y_nfDUGg zpPu)jMr5cxJ#{gkL$ zgWJ#m4`i<)w%w&4!|HXpn(>1+1;>hj#p7fO81%2>laOAwyhP8dRl!sRz_R=v83K~| z*U9LmBvzls$iD*yy{}4vl@R7-2@I}E8ElA17J{mE$_K_T1dj{>$wJV{&QS;sIHtGL zNz*A^6nvn2)b?UrGuQ`Gz@UE>ZhP0IN{^}vjuirm*MJ0W2RS)uVn|m{?r}lxJ4{ZY zx?)TieQ<|Kf`Zofr(Fs5R5IYFB;$oG0LWKyz$bnLW_gV)6CP*W*#>4p9T;|5|*6LJ&M|B#7 zhupo4$b}$CKPH}_D_ErgP%;F1R1iloNF|A;Eox(s0|jjq4pfSD;*OZwxEtbv{1wd1>#1mt~;S}!(;AdDPKwJVayQG+-W^8-p<7|pKS!h4p(~6Y4MeVgu7652fJ29}As)zF|3>|Y z=&N^e$yz?Nf0G0Tz3Xs3<1gfYXM^|ZbkeG81$}AhpECq81^uSHat0O zh)5QKk3XS=F$%#WLqM_+bh2|4f&&KqjkUf$=;5+?L<8~WJF(VOu+NV_Y!kzQ>Dl0? z`E1W8>@i3C16<>3G_KE~?p2 z?$V#s?J@hw)sdDprgW_~Jvd8OcI@f0K|U2-aOIfCHT}C%8VGyW14v;`6f1^r3Jz2_ z5j~nb1LVAsm!qu5l$7-LN|k7Eh4%Yy}N`OK> z0z0YqQpT{8#!28u6>eZTup0Kfx03dE)uORX6!ZjAcJg4z$xY6*qFas_Q9*AYN2Ia9 z^IXWYUw+S7{%V--(jicV1dhOa+o*aB^j-r5hQP1(O~W658(8idCxtITFy_&P*9nt?)P^UunK0TfVnr^K3 zOFFGMx%1J-li7~Wuk!|}Bt{tkLmh#oc<2Ue<|i57z)}{7V03c^O5f1cY4hX)R@GA3j)H5q-=Mt4BKm(KW7xUZhxWB$Q z9uA|#JzIJKW`?z$EtcD>c6;PLGtf&-P6AA@3acJyY|o0Y%BmU-OfS3gYw0#Ux~|w9 zeU?iQC0ij<#TbEt*ZV1wT&=bjER#e1lmUY8)hM5Kc6#?@&R9!kBD!)Kz=Hd&h+E(0 zNyk6dyX{7{qb0NBT>>OFRJ>wUd`2(m9@}Q3rjO^xmY!PYzE!eEHReyDf*H2|T2-Ep zb)EfORiS9Z)-c;AVZnXd=K5>%MCKiJNIGEqhsTuri*{l|K zwnt&=f%#3rf*VoNiX-kXHgpfUxB_)pyoxcwDy*y;{&=5vm6bgtI7LqHpCP9KCRjyI zDFx+}UThlApFCtIr|b?_S=VqXNN}RJ821n-R227Gx(KWlH|q`SE%p#V&rfXy>`oq6 zv6As+9L-8tpzQ6uvU^Rtmn$zN6YWKU01h1;B}T=2-VzH5pa#U_alKK)G{!fq zSC#+;FZ!K22~G4YFZtrguzqKV2Bvq`$JJqJA3UVMGx@viQokdruNR+uOMhcoEm^%2 zh^DO;|CpeGq#t!lI?VPDrnI)nrwjk1VE#%-DA47(Anr9O?n~N0JDJVDJ1)h82_<2; zL=hwCmVt%taN&GZ86bd+*QGTmys4Kn6W1t}On8=Y#d z9maN5!vG;~=d3{|_tq49MXOoTaXQ5&o&|z_ECrd+KcCTESF5S=*y-U~FF1yAWja#8 z&5}W0p5UQSE6 z5@*Fr_L7$?Q0Nd41$rZrl1w+-N3$iLLm4a3M;s+gAWl=+w(Q+)P-SnthR?U^aw$>?tDVP03lJm zxxZZRR*muNcstZs^(JO15)_B|a|q(W{!JNaL+vu&7Ca3v;gTI%$pPzhijlG99Ad%< z^D~(hT6y2lq6sa%Pwx0X#$I$WQkSKR4;K5=GLh=)kqw_rn4eXpC4|hMmdV`F`(3Py zF*~bBO?RTiwwXVCiV`&)B>tkzit3xhEjL$ZwPipGxqo)5TspFK;7+=FN}3Hbgco{i z^m5R7y_LNmROkxoo2Tvy0cnXvzoaR1{pRLuK5xW!u`^gy(m~=+I=t0=69@bM9N$9) z8w5t7em&dFXr*sY4^`}&yXG%ydzfmZScn=c)OQj><_FS_$*ezMhL1ecbA(D=>h*N)Ou_LF0#7Sr6vER(;h!&mRy590_xXn3g zPfQ7^-LcbtM=?p?cXa;PDG4F-w^@tczov(>7kBl6&$~9%>wlZkBQC1JV50xu)2+ML z1aw*8T5SqTj@q2t_KQJ={^Ilu*-Wzh{6GIq`GFQ>CtoS=KiSMtE+4h+jIX1PUMXWb zNX&bB_|3<&wq1$_ZS-D3iV!lRv4MB4z>*)+7Aksq?tVj?cCYEIDRYXk#s+1~5S|Zu zVRmVLAhAh*^q`lfgw!%`{WRLye^zfbbdVTzx|4;WW-(dOkJahUvq4~4aepB$n0h#ZnAd&sx7V+i3zbT^Px(_L)E*y3*sENbCnE{&EZTF8CURYV#ML@%)% zEgExMioDpPq};L@3qe8qa*me!OTn>V0L2Ckc=v9{=4(i=OOQsb^Vx28L3gzrmf~W> zf_u<_6?02qQjfeF%^NNq@?iv&snLAG?wy#%1*735mp zxL4)38ZAe(;&&rd5)m4Rxbc?PGjY78%6JA2RNQzgdBtf}o-|s9NX{$O5h*kfapTe5 zC*puzmGKN5sBSSQ-!zZ3WAbqFX-$0gkf7v^5B*O6j}ulkJ^%zAcaP10>p5VeIBICL zG!b1A$nVatau1D`CfaSq0&*3RMoSaX@kKsaSw*DLK=dk1tV8Xd_7^Rhi{sUbZkpoL zdkG9e7Uid09V;Xrf4 z)6@7Sdd#=O;R`YZM36lfkUd@=M6Nm-mJ%)ln4nTmAC5|80YMcw1nmi)vPtv0lG1RX z35=&&HbGQpJPVkhQcD=4QdvMyJ?mWJf>uHVQ^yT*{T^ZQK;+G*?~4~qRptXAsC=H( z9zDTSl_!grAZnK55*a)Yz2r)1PMz-kl!k)pc}tPCj?ra*aYYAZdjs*H$A1A@v&LH)~O z`A~RYRTK;`LFk>`T%arHs^W!11ey21D;b!oJW!*7#77BgEJb#zqJ)71jgNiw?_4ba6pbz`iP-S+1?Tb0AU=n^fQ|*T{%Re9 zB5%G(!q8udX zf_#xDj+!rnmmrE~N9zn|@Id6d7|TO@Y(^eQ1ehQUO!zo*!MdCoJP`Q~%}REgsyZ|p z4J1BB&^0r{AFAq;fdkDg*Z9-FUmdQe*KtVdxMRIPBym{K`p}eY|EofiLj+k+UNQ#O zl~+30y8b}eg{sPtLqv{za9S_-d%F8qI7n58#zTV6`(oUmsq#hMoe5~7-b@`0>&$p} z*o<0zHCk-4O(RREDlY~uMI&3oN*Vk~$ z{)2Cg=y94+$B7mX`3Z@}9VfOkHcs?Gr=`X`js#Uf$3r4tzKNi-Eyua6ss$ItCnsSX z7zZLDb*S+RIfyvU=xw8R zq$>I?yGYm;vj|npdIU9LM+VUZ(uUTq0C7;5os#yjO`SAu+|GuFsIs{i$qY_|( z(7QeTIQAl!hfLCqz1Bo@Vy%gp6U!!Ht?nqg&YlNR0S;LUJS5rz(m~VT6)^XuC1|2) ztU4ME2O94ezS4z;t7`c@BJC}zyV65xs{g8%V%Z+c zfb z@#C)r*Eu-U4jV-r(DbJJI?{C9(}l0hs|uc%b8tOk3^-K0?LLcCsL_-xqJp+J<3ko11|c_e9mJ)>LM#VNglOKU>Veoc-AqTUI=k3~f< zn-yGn6e1QV(iD*MZuoH|C-Fo{Nlz>Agnm8ZRg!K$q7K^STC^6U`w>WBqi#RiY&RDx zc^T^He&kpn>W7^Lx1|af-``X4fNO}_Uv{1bvbt@h(qFa>Zy-jum1BXZx5HdTPEM

btPEZ}fO%C?Kah9+4QT{!Gv4 z@yK#O&`-mnj(mp_(I8e zfSkxiJnfdoOWQMa+0rZ!6~!c${7ikM6bA&o6-EvflUQQvzAz^$8QS;t*dhW*`B9$~ zdb4G|Z~1+&1y>!0u*ujc6@drBejFl1HX>1U=|k*H1@|(UUHG`0JkMcITmKP{iIhe<$kJX zK5TE1*|Fo;Q-85ZV9>uR>1lQieO1QZag4Z#J;Vh$uNov#&Zk#Z4T}e|7i3N^mzVq% z){Z>`MOoB<9dsgQ*3%In=w6h$TSr$-cWe+V%AP?4;VntHrwKdJ&+6FmQN(B=LCJ#~ z6)%<;!k$!Ba0@U&D%^&8NzzH{%FzOXj#r6Q+yGWp35y3Zo;S7jGd+x0B>)II9==!6 z8cR!9iX@S`|?|Bq({*RKG_HpjA=RA%c)sZ@Phy<~dn2TUEU+9>{q0rn3ku z`E*-V=mKDlZogfLn~W>z3?S%ub!ek*XH|7Da2cxgsL`a=aG>HIxhMC~OZH(4SLKlo z5rjN^MKQT5e6iJe9#d@7E!&%_m=a(jcic%1+vEJ2Rktc9F>s*bRXg!sLsiwbcp!U; z^}h5JbRt4`+!4~>{|Z4t%gfNDh+=eA83vdjec9#p*f#gnaE!LZ(fZ$#KSfe-w=978 zFf&30vCnOg|gD04)wpD{lOpnK>Z&S z_^uEvMJLfj=o;J=;*g+>ZJsOjYMY0^pnoOuyGKjfycPA2I_^E_4r$1>hwY)JN$NE# z?{TO#EU06nYk7Ox(jlT-wb4Uh(ErhHK@+X?|LFh)%j$0mDmHy);%I;Y;AaD1bxSS- zFW4HVK9}GcCq>ZEYxZLhXdDpSKn~PG%Au7V=Yox%Q64-JNN(HH(D(GsbRScx({Yb> z_K4-Cq@D*i+vOm^`D!u&T?;$g^X8?*-TQbgEV!R%-0fs>T=Pd&O1fh?P74RF*94b3 zuR>GrbpPpe$!GdYW;XMr92e|w3U+hsyq&5$_}it}ntZpQw&evx(9nRA{>P0G(@rkw zrm(5LQHy!lu#!%~g8N0Af1il%W94Qq84Sj`7J%S;E8+{vC893rw{%fUY^b1I@0$JO zn}*&%pz9meOR~*|=elGNpg~OdOX7j<1wlt!OE$a?7u6>vImKq+Kt^?!-X*5vDeCY>Hn8#M-%fNw5=4;RdUN&EB0`HbE;f`idq<<9Eid=~S5P6e^jJFn2=WlsrFIk5+-y2tySjZA%Q7@}8zo=l*SVSRyGZUG_~ne_(k707V0x7-=aW;>oIXe{LAMrggAdIy0OQpx&#CNl;M zJS;cS!%h_*$DVa!EG<2($ud*HqOp>Bq1!A*tD_n#%|hMY(ek3O!1791{;F@Cc?YXx zn4WP2feL0;R?&=UMOm@=Qo$m&XjZWh7V`3JXvKqYh=Oxw_VXxcD=2WVoE(=6K3c2D ziN;E^$UQGLED9^la=85Sv3&ceu)y-_PM<-Y+@soicydo2y`_<%xjLT_mUP_>lqsPO zSa83YSb}A@WE!Z8)+3_)|r3_(x^mLf&*W$sx46q3Cibox^_ zkz?-P`z>A3A7{AAzXQw+>7iZj)LvNL)Yg%DOpxCA?${ig$v^1-r76n;pU*4kF&hBg zuE$uQc`p3v@+cOA3WgXN77YcGXG0RI#LPVl7Hcvb3JDaq1jTf-Rj+3>QI~4uu>%Q8hCP8HEQ!3z#^{+SBk4itt;`$@O?x2Kdi7 z{P<|opAUfNCz@_@^u=<1aHfhS=Yr0A1Pt9$lB)v>Uw;FNdH7jcs6mi3FDC1q)R)zLZeVZ^+PSDDbHI z>@-lPF5aJZT78bO!1P?e6tfg;CQ4+-;DF&qz_4#-t=MQ+aC2OO!UBOK%*CG8Nx63o z%Z0%KgYsTjk*?TgRpT`84N-uu>UHq%yyl%&uNe&RsSI{4?ckeyP5+&!zpxAxY%TzR zZ6PEYh^QKhpFU(v1uNn}NHcxt+KV^Zl{&|+Ufgaccif-wZ;ZC!8qE;RPt;cB)zSYRS0sflt(!M|5vHL3ZBR6E1`vcV%HQL`WkFY}gU{gQ>C|covu-7w#sl3; zQSQ{wv_qRQ7EJDSWe|`ceO{8%}kKl{4k;WYIfVzDsi`Ai8T#| z@s<=G*j^NDiK|~qd^1mH0dstGzrga6PkhwzSwQeTFY>2M$_lO^-dKo~F*O{xZVRrq zxl%hGc~vNJ%)B)nBsgCdoX3qz5)NVtW(YfS8GwTKrcK^te6*xK#Mundz=RSsza{*0 zSP3$?3|G5dU-D5#6_Y(XHF^1< z;eD2ZTh%>Umjr;9h*;0~{=rd2C~$~)-D_u-NYtW&y+9tU%MhXkd((f#BqSZb;As{Q z*CoQC_gTWgvA{fXTLk!!@|OSd6Ej-5k6M~&Itqr^ z9#1IAz(Yt-RXEU6*ITcWR4K~RDP z0yG{{(R=nk=pVQL-@Or$Uu4{f$i&SDHFM6iOGM`PeR1Q)jT@2icroW^jny)tMg!4L zS((&Nw010^SiekW7s-MSaQBXpkR&O&h0MW+m^)02x^RmQwc?Yvk}#J`ZxKPr&8$kz zyr-6#H5!Px>&%zWy(LPLiHO`{88}e!G6lP^YL$uY!@AFEYfYd3qd`WnsR%$}6J)3; zA$Jq?$mMv(r;2O2iA4nALkQGy#@p)TX7GX);DCyim2J!dxmQ~Cxqaj9aH>~YAcF7~ zBGL$rf|n>B*goXHo>6C9y20mi zX*4k1;!M@19&@P-9JuayTowDle6|!2d>=*mC{{CD3fADJIHoBW`t(m}*Q+qW>UqjJ zU8wA>KB(m>DIVB9;AK4D^7$LdfGO9W3Jg46sUl5!Rxh9 zGKqSGZmncyuGK;v%zW0(>~gyFR!Y}p1twU%NIP3jHar)QI^i-!i9}h82u81er0YXoF^`cXkGZAOXkhZnrhZE<&iSxdlGYTm zX+$vIa7tyPNv1Ye|tDr;f(tkp&op+*E_q=b$7sUmd!)N7OJ&&l{=Jm;;W zR-5FoD67|FsfWBkP%FPo@xbQgmujSZBl)Ed41O=aq{nP3=nm6s<#{eBc)fg!9#NsG z(R|Cn%x6VzCt?3dJ-dJnpTLunXer$NL-JH|$`whkhAcFB1rccr5 z=dSc>hQXA+5Uw|mX%~xH5ljaI&er^NTfvQF4AsfRcJhdI(S6dSk6GqMbfrAd^>bD- z^_APR7kQ93b{5j8dtE z*Xko_LdO(MXOFZ)m%jUNK*lb)s386* zLL9oUWQ?+dmwzRSm6!I{U3&W~8z^szit_$6R$g;R+W7f%TDR$kI7vpftLQ$yK+J?z zBhuX+OFq14PE3XmF<<0c=0Y8UMWSOo^L<$ZWA4g>9^F3EvPlDuYL+SZ;c_+mvzN3tUx&A<1NOfwe6rNV8noNYf7l#;%+z`=FqWmeoJ8tckKJOpv}00}qz3 zTeNG9j~gW`j$)RzV4(SMy`Hy@rJ)&yh18O` zn?voxg8nBl`t#|Ef8jD;Q*l7IH8VAdEUXc5cOXLN5*BiO}sPEJHS6ukx66=GQdGDLU=ClP7^wdzq>1y?t? ziwM#?yq49ia(-zgtM}qH3^b7GT$@@|YK+>swg&|o^v@}c*_uB+PsVQV#B5rje=Y`x zl%I0*S}AT6V@f1vFT{-<$A%Cj3XrXqDbbCdk*=~rq7VlKwHLFt3l-Q{p{vKN6bw{< z%gvp3#gq9=UEWF;zi)EF$!Yl{H7#=?1!Q@RjNS>tX!S-0G?3|$X4W$5k2HNO5Zza| z8_<&f*<{`7EmxQ0`2qc_H96;FO-X;B0hw`h_HPdu++W1G^&;%`Se=~7b1%s}Uq)IW zf-ykNCvi2i#jC`(h9uI6gaCYp26b)l+-q))X#hAhe^FNdO9$l#$P#}{Hw*;qXQ92!23+v3mb3C+r|$Sdh?M21MQq2S&1Mx7RWMLX%{ z^jU&&N@lt?=bLMLSFMKyj;s9IQ#r!Stk4~#(7Y7R* z+9Sy<-nQjR9%*2J{9|SD*?K%*Z249%!SU#!(E${oU%lWrI#)(lKtB3nDL>E(d zr*BoXk^%D2>HZaOTSY~51LUD^udbS@VFLto9rJ^GuqwrTb_JG>ne#tx*Su|2ikSum ziVbq$@70hs43Kp{H7AFh@iBO%ek#QQwr)vk7d5Si@YeZOif0)VW1x>b|S z3Jf}?t>}C3E4uB0Hkk8MJSxRBh8E#jZ!a3;NzuTgqXOMKF>fR)00`*XPgg-YRmo2c z43M>-()HDTLQ=_3QygF$)y=fqm4*Sb&eT?!SGnuTD`jd97C4M$DqRH=rc*0^6-Y?mPzQR>&tLs0_XA5trU&-nY7StOKbvRTw`l-f|VS&R~C@_9C3uzc2 z>yg{~_4sN+TM}7{Q)%R8k$|t2hq*x|dP)vK6c~sKQ^A2s5 zKhq{ip4(SKHZagk^Pd#cp0^IwysNqytVMV9OkO72#dfW}bgZ89(X(VFs6kBUK6j!+ z$)}-`<$@+1Hwg_0ym=YPce6qj3>gaU1q#yPvm1OR9}J7AQ%G>qET3ngbVwZ*S~UNy z!Q!T8z~Fxn@T+f@A-UvZe^IeB)MDmW+uDxrQ4p-r=Tui6l=g*PoEj9Ip{3Q~Jjr_YeBn*CHeqQO z8wwr-mZn&CIa~NOEy;>@6+J@+dsxrGo%2o9vjzp{t@U;>-nQDOw2OIs9@*|938ESz z_2&=`RQEX*ba$i|G(6s4=Oo_+_Tf&^)3+yyP9SBwAn7^;Yvv_sbOC3I2+GjFYQe(m*}3--xu$_LP!M|tRzay@ z13Qo)z0D20n!ffwHcL(f%d>6@mqSJiv}u(a3q^IvQaF%($V;}FdVRR$OIBXFG#H37 z6YAA#k&dKdsa!aaW!`Cir9!K&B#7x1y)y&_@k47)`%FBlO9ojHyGBq8sI&0oPMg%F z&QL*}b=+1TLX=Bfu?Gz>L7RmF`$#12RgAShBuFDQoCPVjv~|s#p@KR~#f-S1u~tmQ z95hh*4M;x{iLHYG?=ZIsdAOi|u)e<32gSGc=i~LdMF|w$ z_(2=-y>pu-+(0sU8U7XGg8QN6K1@$W(exLqsrUIqGW!TRP96aU`zLYs=kw*+*h`uu z^HTzTKtsXDaRqAkohLvtx)KOTk-`62oPV)gL?lSoc?u+C;85{-T!jv7QyLQTOhEDt zKp?|GhmMb|j^Xv?*>bLZF&K+Uf?S;6M+I-@hu#z68kp*S7=?y{PuEZ!dyLy(GS2`s z-W225(2&J~^tstOp?E|S9o}74)nh>f80=rHp*eeqR-w)H{u0w{StOS1f&^mJ3RF5D zA6o83w5X8C1W3A}T>>;HSno$zBL$ai#ooo6!h$(g^RvsV_Gccaf=$@ytH=HrGWcUwM{H(AZ=$_fV6ewZZ$mPpZ=&=WGWdg-OZ8)K zW#o&hYsXv;4Fx~(+S^DisnlK0V zYlmzJE$@LOyP#yIa2cQ{%ZW_u$waGFISalQyLwKP0}d6we`YFzgru&2deBgiWo5op zsxZoqc%4+w%JR^mBi|Ci+(vVjVAIy|ma49uyup^r;9(0tPcv0V@r9O)`JH9mJk7_3 zhPX9I16_#N*bS?)&vldu=9erNCgnMGN25!SJoocy*}$cYMxE zF8HDV2%RC~A1)rq?nQo7!J`gpRxtMhs3LAwyZ7-1$Z6u|a(a2@ z?OYHfz5t3+XQ(K3U~u~g?^5a-+<^u4N0922S?Ao$!vsSs;N%tAfPywwVnUcLE_gQ4 zK#2hh>f2B{N~4szjgFO8aCRdwqNUY{NVIN3qgcY?$kO*)=?sftCq1pOu&Oe;j=mH$X0>a4)e*S8GLWNjB zcs}L#Bi1KWh((06rb~EEh#18WTP!c34Bc3{6 zH0`Mhv4D_Hy=N`5zT+sw0zw*zHB6`wa|t&~KiJhRp+N-UUHZJYm~Q5?v(`xeSLBnq zq;s|?##ik>87N5a1*Ejye(EKik}Sy5#933+d|H*AdD9CG(59%MeHfIM(xhaq&tYS( zB$#%~pyDNVkU@VxduL>7SRc^t=lGJYY=^lmE~sw@)c*C5l8Cf})x99{nB4i_(Uktsj|= zpL-*k20YtA2K|G;*!rRQ_|N=q2ff5}WUr((t)E$+CFkP}KTkq1EtG*3 z@B~D6Uh+wbrpm8@L7r3hbS}+|J6=d4je>Dl)AoUUZ!RnmYA4;?aooykwFp&nGzlytQ4 zV)}f!ndw80<98~IckiXh@Z;v$MF*i_-lNy*u>QD#yvKlol$@51xm(j#Px{cR?nIqU zM)a4#mX-{!TB|J|M~fN`;iZPyfeZ~lV;VY(SF_b}aY@IpJQ=SZZO5zg7MYNlLF6q_ z9eL=`@{65XwhLd4U=@Hy4XqMWWALGe*U#~o?q#5Qp>4907fHBJv3mW)kfDK67^f!L zlimU?QKlNL7atYe|Hin_t~XP47+CURI;X=`T6^igMG^O`?O z+HzD~d0yymSJB^F<`v=cri;L-QHn?9N}*Ezb2{6KD&z8OeoYH_=nQwY4U|>K`sT`# zF90Q?6!rU!I=hv|nBQ-n(tjv_qG1y6mLzkr07{#89&9mlaExp-%o-NV_ckw7La4Ud z?~PY0I^wD|KBKVDYDLn7EsQC${U=8)pry07y@=iftw9Ct-LSM(HjQN{IfZ4L#vW#m z(-k7;`e2{dc=D(1%sZ=65~;0SJ?0P@WquH&Ur>f~QGWQbn>_^v`KS5h!O%~zVj@G! zExr+;!671A0jueJ>K_%-Oa%ZL^dDuavswz=PSUn_o1Zz}$9cr+0%X>}CDRNtat)1= z-^m1YUQzBwlXlZFXO>JeNt;!2}-}5XvywQmfGb6 zC`g?ic)$$dvexMeIchE~bTvy0RM0xHcsQk_Ug=gx%Fr9`3`68XdT4Y@UZ*R_=z$D+ zrz;rg_NP{L_GoD@i^g@j0uL6%_p^|ZJ~3M#jOh?SK9-lvzUIXZAGe5_y62g9YfmH8 zDK4m;5R$43&d972LR?HxIf60KhrZe z;m?2tu@k9LYWfPzM=fpwkxDI262*z8qJTxmK9l<#r^Qsi=hE5^E0;X_rF7p

0%6IlVG3yqD!?xgb53KRn-mk` zL(J!}j5-}i4T{I}<@45o`JeTRCEwgC_%f9uFstNZL&YahalSZj9W2ftj~D0jc)OO& zE~k~Dz?hCW`YsW4=Im_!g1KgcB2sjSu=U|-rOzRkG*#fG2}8jwozNH=0i^sSr&8!i zq*HF9CfM@f0v1(_!vHaVk9SpzO?~W;{xkJd(*Y#P(a3dJUHxIVjbc74;(@v^i`CIm zFWO4D+|ur$gg&kxlJ%hYmS_UZkqF52l?(=Xf=)2`=G&+>* z@M#)4-MCLX98k5xr_~#ov$=t)QJ>~C&=!kPN6Yc~Vb-%#ecw#4p3hUHZa985eG}^P zd7$ni>-S5V&_7iFhZZevy(1?j(`RXhc%dLzTBiTvB7^&G$UUKO%3`%-9!bEgalsoY z^JKZWnDKAd4V5`X26wE?%PaoruBkFBT=3oxZGA}}%(mV)OUaibfw=))$WF@zCVV4U zW9$YR?4P3SbmqdER*9Z1zo%6sFPASP6F$#&cfk=f=I=QyJJkGXOAB25grIRXmIZ3; z@QkabV~1DQ5%c_?O`FFhf~JQN3sZevPuB~co(QhNjX)JtmZ5--9NXxJ-h^#jB53+J zQXn9fNX@n1B#>l33q5p1)_>VfL_&S-r)&h!y$n2K$z`OH}pM+ z0@K-2<%g5)iVkMtMv|;(OOs=T#oK=j91`q+gh}x0Nb<>7M6ZC0scD?e+@mpS1stWO zMah(xFKIE7ceqMjY6cAItc6gu*e9k7buw2%Cy~&O8@m6OnV?JyiB*0+3q;w3N_l~O zoYwaFjv&YyY;RI1CB=pSJ4R#zUeMWD%n~IA#?fYAi>8r5Za>~J^7Py;o;3;P-el#s z=n(P1eb4F)FLf+2P%SnAzj-?D0W;c-;;n^f%mY$vls_)OOzbfqXiPwg{a?TT!C(A9 z{XZySA<@>vW_-qEG!`5bFsS3rfS%xeQ)A6QBZHhZ1G)<6IrUlVv+=664i?1JZ3ZDa zM6fQAKQ`sJ@Yd}T18{+aF)MAD?FB%1Vyh6P4e-cxtX}&5kN{LMw%z-B3tGW&BVwI8v3QAK``E<-%*w<@&2I&y*t-O5#uL7}uQ3apPc?S2fa&*i z+#hcSjR{DxA%G2%teGyBlP%}3J4o`NLC^X_`wZn}@k4s+_J?r>h+&zsee{Ldg3J7| zZl)Z7LjnuX_9;8Gb!XJ;2IvqSBC=^&N^gS4XzfK1Aj(Y3#!{wS5=dfmJmJ%6UdigH z?i^1(3q`U8CTV zZ-WpPM%`4KjSackwu=k;nblYgv!!S#)2CX|*_h7e8Bz-Va=4`psjKT29YaS3;r+NI zPAe;Fw5*Kz;1KaijtE*bLT6L5l1pNhNJEMZ37_XlpxZc-;C>THYA#b@;UUDdUTw1x zAUfYqruu~0R>UHbSrP!HnYsOEJ_F=@o!KS#VRgoX(U;IAzkC7BMA-6TJ|iZC*uN_l zt88thGOzld4Xfl#koTFEcS#4AFDI?xVthrby6I%I<)s>-CmX)uK=Pee)nf{mHMatM z2)Q2>a=yLf9~vc703rz*8RTC?$!Yzq+TE*vt-(Wx(UYFDiGCHGlr6vG(@1mQzNcua@H z()VOqmh}C#CZ714^CTboebzWCs2}7|`%8@^M&8M+KtcR*4zZdP=FMG_5bvZmuprMf z_{-@v=WfK{8Wq%^ z-27>u&evRcS6u$zyL&~8uN~k1OUeeFf4BQhrF%HtoboP8uu0HD3ngYmP}i~$x#dzX zjp&5ZgXL?!I6-iDhD9$S&~icJ&n!xwM*lQ9LEdOFWy%x-^!&uW>$=+hoKEqMxtbuM zwt!qrEAxjT-Y)0}Tba*3gfI&80DGIQY;K@z9ByWkAoz4bp&zdg#z`&&FXe zxAaY>ESw7_;Vn!~S8G7Q8i}Ci(~B{sLrR5Nq{0+55J5u%sEOpv=Sz2jkXJ?nIkOKB zC6Rcc9@W!$Ttox$!a)ZAU0aRT8!pD)CBuT-Ml4E>GiXe3-nLI$&KdvWDY&S?V&pIq zBKYpuXDy#UAuYJx#De4yx--y`Hb!eVz3&GNv@rvUaz=bfKcF3(HLeDH$w3BxB-+v{ zgVp9>x}L0NdJzdz(Ll5f@S!C#Q?-6MyHXCoG&C?%WpTlM-@1zRxApccpcZ^>v_LsN z2UsviO1+7F8ET-^78l%+8B;tHI$#4crW_n9cpFg17Sqibbc5?eEr(<^U#|`L$l&KQ zw&_#!H5#6vt{LKSz21y%9s~6J(z=jRkUl*pv#5Wr4{5Q`@$!7@E#4Pw#eW_02Q=|{itPEAmU{CPAvQET zv=ytWEPHN9T_5ui!OC+B75az=4E8(=3?rRiQx*XBZVi)(KOf(m27?U^zp|#|wQx$C zF^zu?x1k!rjwy>Pv5XL|&V%e#eLR1lY?w>fVpVcxCcWmcogrKLm=maUa76h>Qd zyah33mh+ZXXV@SyTXwu#V)A;n;ip+mODsFCq|;DBtkj-?&KtF-W`o3R5E{29ZKyU4 zg?Afe)*g!u>2N{b-}3erwByBcW8`_wCAo=;cF7&GhSB?;Y1;iWuf(!V?*3>*SHid^i*!m63W&+(>T<+{(Oz($0dKYY^ zemsouO*H&MGP&J?sD49sWAQvo0)y&Q;Z^w;kK|?MB{bxY%FI|`scgEWinjU;^ywSwWOw?FRgxr`bg@kXcmJ}B4I2M7eQ>3giLE!S_SstP zy58)K*Rx4`yLo}T>{WJ_=*!-cG5wj24*8SU>#YR|oRJ7JS2q4uQUJ>FZ#m^Sm_4Ur zl`F`m(Sk@7pd>%{Nf9XT9OGSb{_`5YqX`n*8bWWMw^0ZD>hIZ1{CYJORu zCS7HeEU%_~6O3fCpqwa11#SOOpv`GU>AS4q3l7Nez+-L5t;q->bQalgyLh>v-K%fH zhKvf@{?;qzKAmzsJsh2&CD2Iicud#%Excum^2mvR6Ek2D8x;P{ZiS=S<1x-O}PbQ1ykU%Bj)|>R^HQ7UwbxuJQ|%8We~sl^;azHy=cUW5>_bwCZf2or}ib!8k4+}7Mj0|Xx8gH=+qGP zDSf$W>1a>+FddcRb;y!=)ZGn9nYfS=TK!g)^Ws_^K^KZ`rd93cgj&Bpc7A>;OQ%Uej`dF zq|p2OV!co4^TWw%wp^(ZL%x9*HzB)#8|wX0j`AO;ia0{V3hwZ`nNdzz1t`hCl&Oaq zebAu#pu?YL6LoA2bN1EE*G0gOQv8oHr7-7x7L?@G&6gyq0i}tx<-wG`Lrf6nEZ;{dO@zso#?Eo?3xGOHbzsS@s56a+C&|@@i9QiWscf+H^=H zdM>A%7fYTLH?Jop*`-H)OTKaYI3&=M=R-z|T0rcbEZR(O03TvB(B#i5;9+xtP0UQq z%qqlrpvwP_gQwNnrz>^*ENg1be8&knpym@VYGxC!L1!uXroTI4dIZqne|6)JCFwT` zW}0Tcy5$f-mmi0+$5+$MYBu$*NNc9uM@XQ@|1NWCz7rv1W#4k#*@kAm%M`IeVbWX-vDyzrn(|!+Ew;ppzpyxB&?!rfvwV0<%){GRj zyc`N>!8(c6@@%=$izQaAf%xXpdDj6A240e$bQ)efTQ&~p3r_|>%al>QIRzK_pa;i|#^ zvD*L|Lq~up8n_;Kzf$I}Zjf2{hnNUFEtk>7+`+3Z{$R1L0bY#>-iKj%FIH68pf44i zaaB~{3>3_FLuR@&j&Gq7MD`+5jR(H_alYw_$1lP8VY?_5Bv>Q%T}3_f@-B2OG+JIjg7u@&%9L=9y-75|sc=O`P7%QwvGIC*dG&gB?(GS!Y2yqO%)X6P zcxu?j4kTFbcs5>5U;Fn1w`&B%6fTdA`U~nQSx~COmcoJUmRGjT)Z4Q6-)odigMrDh zqP})C(ydf1mkS3r$4AZ2RBqL=1OdLHkA|RN{y4L!eJG2@?p&K7hl#by2x<{`7O9%# z&QQVa^yF3{qLs^Bu}2Ls!Ry2X`%EMRR_tedNU+9gIg3|rdF$44h6-*cKQr=zMq4pI zbI`yQv?KjYB<9v?M=mIsKlR&@^AJsfoQ%8!vIxY|+I2jS3ftY*-2)d7V zY2_kah4p83@{iuM$4~x|IDTpbCL%-y@x6ffd`j0J^MfcP@uiS9#RTb{fb?oQC44twWN*ft5)!xO>oeagOr*$7a8oII`7a%R+l|lOnI{t z`MhP^p+KWU#TUgYlFj&x1ptx5mrT*3?zoOc7x?`IqD2n|V#Dxx%qVEpOp z^>doTyJ)2g;npp8=Us9!->!KK5o~$3kekc72wx~h_eRXOn-yd5A?9yvG0YM{ZW*;C zYVv%RyrOS=Op;(doCV%#AI2gRW)?Qnmc6SjUm4n{FvbF5zqAF5Sxl`6TGI|l?;Dt4 zb%urAX)lMPgs2To=JR8mn-^s`AnF&kNV%5U&=-H^Sb{Iu7FA{_O#w-NYhR8@nlGQ{ z+%zv(gk+I-%HlMT_PGU!N%K#36C5#Q@pcMQ;E?fi`&vxKnx>-F?nPE-lD-%5cc&K1 z071o7W+v0=lhthHeIRJG$~XIm%4haP?^zWr z=+hCaFu`{#3sytSTP(v>;%y=X;8$G4siA9d4(WmtZs-i%e6U|T&nOd^%~ zRVhNq{RU8?x7T3+6|8IkMR~O;AH;qMq@7|-j>9TkaHJgI%Lz@nAo5p02}KT#FKCy! z;wNeg)=&X=hdPf$E{ocCGQMe9Ac3rpzCT~7V`omrlb6&?lxfbk7Z=|8bHQ*n#nHye z#mr&7BJyOsT6v40YOy+)MXYDn8}Ea9eO7}B*8AKVTG#n+`0d;PpI8OS_ma$2>=_Z)JlC)&~(QUo5Z2v|5KnA;Emm4l@I_keSX!nk}9;&77iw z`Cg>VbGl5G(F(@RI|{5J!5Q=Bh?(nqRSH_f8!>WyUeCt2xQ+GcVa&dQS(kkK8aR~k zcKYDyLNywS#^?Tp(1KZ)2pPu%8(NJ0H7E90YcVlYFn{cqQ!&%$#aXb-N-(8fR9=P) z_B%d%Sf~5DKQ|W9@>&f_tGeKuC@sT9X#@7HcCJWoThrDIcNcru>o&vAd)`m{noc!F zdSAf;wxSy6z$kqlf20>~hTrRn^XfkAjhnGP?~y;vu|E1w_w%ISD}uoMK!*Ku6+}9Y zh7@?c$HN>O1iiFiF`vKytf$WNzDRG~jQ4pxb{>Dk_|5Qpw*S@lmvibtFIxxw?p!bq1g;tCNJ-$7e~;I9$r|~q00mpffL%(OCW5@50V0$~ z8z~Q`v>$54Git$3J7DgRuuH4vS6jVkgW08WW0nv>-e;&?&sRp%?>D{WId43I30c4u zIg7=Hh@ayvD}vJU)RgPJ>(Tgma9N~aG9RFEDNzOp`X$~i6y&*(;5!vy<&vCc{W0E7 zEu&`Q;z3T*S*D#5QxXM+O>9(&J>{9AYLm`^h6LNBqtE%?TD3{%f3`-loT`0sApzw4BI2Tf9M3v}PpLr7bJiFIBn7R8Qiz*rH4GT^L920} z@+?ue)p*d5U_(5r(3}?$H$v4ApN9<*KS3SlJm{H1uwn~iqf)D7tYIAjDN-G9=v zM%|Defrpg)@Ftb>oU0t{czo4T2hOnUP%`Hl>*GUI5PxKeiL*tY8EFy4{tMb&%XlTz z=TTlC6ts64E$!i3OoPNz@`WOoG=l`?14ikFO}>0gGUbv>%VBe=wS`rIo27POL7h34 zstVdtOV?lRO)r+-V7;i{D7EZnTEWz>Xo5__>NnzNAy)Oj8cO2u>fJ6r*e-B5rnqg zUd|RXHE*XLYi*VU!Roa{bOsV*#~&SdNO%aj?3wLiK3nj$_9fB=K;>&l@gd@GAmWNn zvrFeMJG3o)Gu+U&z{?h0LQbpVf+i+7Gsy>Ll6JE}pdCNwyrKr*N-wK5!RntX@+=p` z*)da&xbS0NiJ2H+N({$80%}=w2G?}jN>kI3^WSNI%nUXbe1oKrX)vc|=1t>UaXaZ? zGo3Z(KRuaG$9&PQ(AO$yGi;Ey!)`Q>MS08{vs+3BaXPQex0^aroklr0r;@^e_)^H`z`#8HDX<2jDu!JQ9 zzR{Md1hSU8qiSi7EFXE@WYuc2)N#Ix|&Efr!zZsPSt9;d9ASL97sxFv;9Js8jJWpu&J*`Kb;^BayshOvaiaKG_QOXNF{bF8S$ zXOEx^_S@ft#E=nI%xT%|g~$@1n`qfFPRPt@+3qXqK2g?f-$cs}2q92l$MfYRIHBpL z?FdfD%o)PF#qwu9Zej@U^Ff|oTp5NP@A1UDZ+ChFaVJ6vkvXZY`^MFbdE!l^wjLeC z2|^B?x4Pm9ITbJdANdW=_E2uLO3yiGUNKgvc-B<3j$1I@>X! zt2h=LJ~c7Ff#8_W49P7eS?6o3wf?lUQGYRiXwhmFwWZ)-I+>@N=2^7-U%M4wU8~Pk zo0k13QGyB*e_bST{{2f{(zL7||}5&K~d9i)D>Ln}?*9Rk&Yur=)_&b6f=4=N)w$_KGKtht$OuJfwAS!?=C5cs=7Ytpyo6&*F% zp^K$A*C#r$+^5dm+k+%XIphY-r-bC+$R!V^7coZ_jJ_)hb_gL?ePS2m z;RP#g#Oi<#F@INNJ9@agpp)J9>G(dP!)0Ep7JRP}+cCxkk@_=Io=Dx2na>Hf4ZI?(t`Zi z^TomFfCYKMiLqjw!fDIAagY;YG?9-M`Ko^*wY0*7G zX2Ofl9twI9Yn2q3S?9%0HVD+7R3MN(OHo`7Pu393FH}+J(m~=b8`3*zG-jT4LpF5S zAW)Ayifxz*^tPr6y0nT$%=jQucWK2UPv|`J+4r=C?aI$;gx?2Tc!@ufEjcH|>e(+B z&1*IkbeF3!9lH4R1+AgbQzESH1-FJ)F>H($l65*(Aeru0-*Je<%iR<3RYb>$AzP=r z1+v%E4chGW3D+KF9I*J6poY8j3G>u?d1?g@T`>q+GSf)zQVc9n# zlMzDZuF$nsZ^feP4TUbo2a$TFv8c)&kzRxqu(;}Orz#&4=Ig{%;) zmo2!KrBpT@owpXwbPsb-!T3gG(>yMS3##3DK^@V@M+;11Q`KI~_+Rh+;4gll{vQ+v zvB?Z(2GjL&u8u9IU1aJ%%wL({reaeeA!O=h_HM0rR;%R-^{%g|VB!R$22q7aXdo$Y zME2|jee0U*zc5`*Ibt3c#OW0ux%PTJUM>85Nw^Eq#f;`lOc{tEOE1n-5M+F{41pZX z9!RlPBd(+A;<corLRwW6V@_Bu$GO#F>CdP%EOd-_pbj#{SVVuBAiKUGbAjbQ!CuNeselq zLg>_sp7L6SDV~0fPX&|+a^*~!azUM56H%;AyGN|LOLVv8G%`jgweta)Uv?K0+G{kW z6G8LWxCuU@$(nK=8T3W!IeaBp+}2n<=Ws!t$a>+v`Wv(!-&=1-ByR1}m)qfTyP8Z@ z(AlF)9?a zX7L*i8m#d+nOxrq-LEm5bSv$@SJhO?jFwEUZ+N|?GoRj&K1&9DJ6a6QrM$@&!|9-L zM~k7CeD8G!#y8SpBAigWqs7phZ?46-WO9AhiCr_^NQ)+YmQ1eCI`Ny(XUPimrIVYg zf7xHox0j3F_VTRSNdmhgP97Qb+0k&;2Rg4D&FI**P@Q1?wk*GiQ$br~wBo#AUBRu_ z#>RFrBAG7h0ynM85Qew z9vSrQvLm1QVj6G8jvgU&MtWmbG3rlCMb(UKK48< zV!NV4L#~d`MizSM4Mi4*3CbdQ zOV+UHd6ipui**~zTVh1eRT%L|*PDuXE)}$?6Es&>lh$NDqd?Nyn=Qtx>(=>{W()Xy zuWS{U1BI^&&Yw7Xv4p9bu(&Y^DLN#4!mU7C6Q`ru6RJN4@+8owx9#7)>mdHtE~ebIsPBfDzloEkS7EM+bdbHOWKA#qnu)% zQ>fQ(qEImrC{UXhh!&&ewQI@^=mfkKEn!K{)5XAgCm72zUo}vkDjHB6wfV_$0U6Z7 z|8jl##!8{7A^xALh^L*aUdFn3W9khzg>RwZGl=MJa^ zdk;B7#Hb=tI6w)(wyS%Sf-NZodr`Znuz5Y2tG|h;T}1 zKZUs(m&QL_yg1oxot)43s{C4HDIUmfGbQw+ zDkkgr_v;i5fH`!Om-~gQN0$PE?gLgjnp$*=Tuz z3DS?C62cUtnqXqAk7`z|1Z*;wPW78JBL)}pjQK&l%27$E2Z<6f;OW$@!|UE^9% z&<3Sck&D%5-BM~m&^`2Bh(;q<ZHyy`~qrxF8Q24eeIkkRVpvxQ6{K=nZS2UPft~M?EU$o&v9T}foF3-1KPA2#QU}4P0`s|p^$ zV6Z>1uUPiQGE#U+UWnr6kXzi8d;6b1yt@8p-Ix5o|KG3v^RGMe`Rr;v<5Ncew7aS& zOa0+*vo=A&!k~!%?QlHz2Eo58jcPCe`POk~^f=i+Y7d93E&Ovn?&KfFSF z+QZK1yORzpL_t?(Dpeh*ygd7(X-P3OP<`zEm~@`)C&SadumKlL8SUoeupqzhl7Bbq z4CBlN-RKTxjtSZi9omD=Vf*xm2a|$&Ean3kh(2jP!B)Nhdk% z_S#3?KX4DKOv)ia>Y7wP@rVbD$|eOEh#oj5)xSOI?2r0`AYK3g9ND?eN^AoKS&Nb!~H?`gzA(Smx2i@F zXRRD>I3!3PI(2v2>+bgta(D|S_ln~{fC}or9Idu>Qwj|Mz#k>a`Sfi2JV}^i6eP?! ziAsh8==YP&3pLr@qSfm!gTqS-f-)HJz8<&W9~KNWxA4oTd)(=tj*{c{GgcPC)CC|I zlZywk_r|N$_`0QHie!nJxdpLCTC(%mh`R z6{tGtdP5VzVPGj-8A+N3dVW%%XE-{b0L0phV4F?_MJW+9eV}#+(G?A=*7^848K0f; zZ(D+vWC3*b*ne5LI8*Qqp&pZl1Jf-l;*z!sz6eVt_zr6!c&Qw~Jhq@@b=g?iemJ?* zE3ufT{APD^GOwA!qzEX$kIZj0W6D4aCScG(1fU87uy0w|KQi2ZtRR+f|7d|zy^Aql z(^N&T!tnIcpX%$?AOQYrV+ijOPsx0at|+I@2m+v~5jNv3Gj0_lC=9^9rBaj0y0zCo zX1Ko>RGN9y$jwlI{7#0P?C~*u!Hk^sv?#a&is2tMg-<}hf8Wu6Iy(I7cg#M5?@sCa zo_!L71(sVri*GAQn2g&>6S)=(xjeho<;u6-H(xhrJ;KVd-Zx)2YCQv&&();$h|96w zd)zC2&x}_v;NQ`D$RmDlZTB;p;=PzXH@8BxXdskyd!x?aq<=&+==~neZ=8%CGh)GY z5DYW*d;tq={G-Y8>UuSM{$j(3%a1TK96Yd5@RqH=a`=gE;l{33Z{Ec2V zR%0jt{~!ZD?)JLJZB8H&a|J>uc1m z(zzND@cARbLIwup79#=;_Pgmz3-iAT?UY>8wKuGYf+d$Jic9Jvg7Mw-*%*_=n?qv) z2@LPk@&sDpO$QxNC-+^a%{@WT?(O@!JoaBei|}-NP4c8@8PC~eYjIBhCyjxub_BV# zdes!g2Li=C8WYSe$Mcr{$h6<5#NgS8K3OxSg86v_XTTV?988ej#?zW~^jLj2;M079 zfi*BfMgW5DeLSjCpAP*WRyaWf!uyQMf<0s47?WVA0tCk7z=7%x9yGu0ce+RZ zw=Y4+14x7oh#>UJcF=#yYpY(_G#sdIL6#}o;ZfiFTq#IS0TC&g!2_9%8iwp~`{*zU z3Rg91_?Shc^aX@lv;k6$2~y8xbV)r2t>-d81fdO9#ta@;)nH}8Ky&+iMpHp_EVUYc zQu1-G*5$v0S>KlAFp^V2}Z6A`b7o< z__r-Q#S!KLf^lC6u0R0&;}rU0HRZAeGyFcX#_)mvI6mV;$O^z3BLH4ad90}dtS|r! zE6>$QhIOrMKmZLZ2W_f?X4a5?r0QUKbvfqlEcj5zD$gK5t!^Ys(_-BNBFZ+B6auiH z5#?sPna$Vgq&qWZ+v+^)?5iQgVV4ht3ig~?m@jErJYBhIyT(FrsCZyscT_|K6zp2C z2s;I&xZwWid^u5@OlN98Eg7y>89?*z7Y47jT z6nnCF)b4#tBaRN^KHB~L4PcBrjtl{x;vM&~(cqNU-u4H{S4@Fmh6!l73LI!icpooy zj*hw~!!94;OVZ1j$t@UYJ^;;OyL*(V?G3DOl7VWBCqo0#XCUf6>h%X5wSJsx)qFr1 z5jUglRjk!KY>4<6B1i&F3DX+tF+qBplP3EI-NQp>ZOL>|K4S`)N7rkb&H#e$Ctm6Fvbe+UfEHORA3PoK zY89MY3qV$_#<)oY9YTCFpEg}?0|>geA#?a`m(Tb}CN^WWseu6h^XcVyHrLbYv@Pax zyr5mYbe-k+b)xpLCFviS7matf*(j*CbM%*h4(dKIk6+QjAd~CX$MFtX<&%(x8^{8OutwpHMYGJ{8o5?(%UX1Ao zP3BYutG$I)2~=?2Vw^O~G4oFF5o9wABD8J_3dSE#SF6Rc)%kj_%XbP0KCYQp4TXaO z=(kg7l_K#3K`@95u?-Bs-v{`?!Jyka9r8#j__Q4%uuvem<&gCHqxKU&6%b?~aUP2X zs<$lF6Xs)rA!&@^i5-W12;jqBe|UPLx^_k&NY)|*4j4*ctNT&g`*2aMx-|^I-$f~o z%!U^?;t2YbNC{FP5TG6GwGX%}RcZ$sB?8S;o2t-UlFLkf4bj(DH#J zzBs2+6H9Rb|6Ur}^q>3toItQ(B@AvB2^6S!+F?3sQ)V&f{0B2srHXgKK!nWUz+3!X zDRWRD0Je3|r(G_*maEl)!2vwN#erI7$4pbHMH?6&JUqLj61ai!!Na}$mB0-Qz!8fM z8%fAD3ZUWjkNavnk+)u8sgp$l1yUyp&z(`fe?&*vu!dDBb#lQ# zgvQki=QArct`rCGsEb}FOfoCg1%N<+x}d*@poJ zdPVIT2k@D8Izxk@SJbXxLU1}hr3r8a1Mti+L9brXFd7H&nPHB+8JCKNQ7{0{veFX#U4!AeZUePdWx;_M_0MvxXD3}oZI3@5W6{?oNomFsZVCc`TSFHgJ1pS%sk39QSbWa5Xa7R5I%g1N!tE$&PAh1E< z8BI~SU$UzO1%(1=e4Oc@P@_H~c{6otsRWm!24F0b>MrQs>{%>HQ`%XFstN$8bG$Pp2 z6;4xoc%XyJ>Yvqdeylu|TsDIO2@E!9_a1SAN(M7907o<(bdL8Q^E9YZG)-|L@D#_H zb*jQE9KfSB6D$4Mi%6APvqb_0A}S5nM{RHYQKg6qAP}Ib4f@_-v{F;kD1e4}hL2Cf z`HV{Du}GjmgHv7HsKEy3;eifqVHljISg9=-7=WWDh6C@*U!|JRD1f%Q2ggl}eTNz* z03WrRnENC@cTR$W{|`rlz~+_wA3#tKtE&@iS%9cyb&UdO_`mvNaM)!f|F=k>K#xpg zyyJH7J6dqUha8o9WETuX2-Krzqdjl=Q>93n;`s2V`$wI21D_RAoB+Pp9(j$clKNAF z19&tqS~)b}_OBEc3=F_AmVeqmJvyKRw!8_TN@IBk3p8j4&-|&kO6@?S02=0bcIY3A zTgf~I2H7!)7e{@9GJhb<`jzHj~grRAoSYUd`{z_qje+m<<*$OB$2(aI`*h9LE!#}x95GDe6 z;DF)XjDc?H;ekTX%0hgN0`$8U{j`@?4+7r`SU4Kk-lpehck=v+ zt0R}XUd_9xAiifkg<@apj81}h8D8EX*p_TzHkb3C+JAVMApM9va6WrZ#|(t5g3Wjq zCt!6!LHn_44K3Q!I@`?Xyi1h{UM=Yo^sj@HE(G_~axBx%ir^vQBmSaRb4?o+c?T&t zSb*b11US$jzZJg353Q9r7%OFjSN$nFzt%IlGWFNi@+{YE!ss46%6(Tw%+_Q+Bb(?w z!^0%lsVCUu>Y}6tkHUiXj{AbzsvNS444#ohSq*BGlrG@BqCtjtFlt@W3>Bnr&n}<8 zIA68Yfg#+J1xa!Gt}YwH0s1?1NqB2N**oph@-RN~7v#k1JnHm1gLa8q`H;~9$&ly6 zg8DXIAnN@-9i>Rkm(QRI&L07WPnrS7=;CFpL6-r7?h`1Z($PUO12v_QQ%s3#rRMaD z89|1C4;%qK8l`#7UNDjefKQsDfyk}LUgs%IFt(5Q+(Zq-W`Lk$Si7~Ym_Sk1l@-)H#rP0H+Iu|!J&mf@GA^(pt_3(4HXTep7sacQPG04 zQh*Ynvyd6(lBW3dc01~-4-Y$oaMUcRx@Fp1$I-y{?#t=*>*eaa_44(cj%s6pRPa?B zZ|j2LA1M?lKE&VG%Zp8fMo?WqU^EUKsD4PN*-R-DQqu@D zk<;}i6a}-pDS*}=f`R9~^r!vD?Llx~q@Xq;EEWnJ?}CG_2lcl_3+C`+6e$uIY$*o4 z{qN`-Aghdur2rH--cEHKB!|a*y{I77jFiFP039|uNazSG55Jm?fCPrOQVrDGG4lv~ zHKJaj0Qvn4ISH*J_&N~BPqD!AA!7-xBnVKsJO&L+Zh1nU>gC}q@1$yu_JfO51fRYm zMM;5B3Pce4v-)7r_EyMLiy#gdc+mFLPgPba#Y{c>o#^^=`b5vyhgP!_kidW*B#bH5dJrB@;7|ImN&EPO zZ^x+SPYxJL0Xuz1eYs!V)$9Z$FuZp;Uaeoy{Vcfa#&uaib>nrN`rseH0?A)RE*|}Q z_ve}H4$Jg?;Qh7!w}0!X;IpQO=-xSMF#VfB%VWCtg8oqRdAE0dQ@Y^J-JM3Ie|2Yh zmF~rzcQ5HiBXzg9n(V)%Yibky57zJnUl}qK;|p<6RN=ks@#%tQx@U{$YdSRZim?i2 zU^5txm7{|8{p|VKVz%)<7z>6f+4~+}3J0Rw*@G_^%hz;s;oO^E7K|%143Er#j1aEr zcJbNwfi>$8I*=f|m8sMI67UJ`Ey*Cf0%nMy`|y&ygTA;PJW1N8Bia$vr)BZ0%I z4|N21P?C!EVX<;}g3{FBDJoB|<4tkZ;L%tpkKgDn2qs|HC?<}TP zEQiI4@jN~0tAp$CPf0r?W{Dt zzO|{Fa|s4LvEn#r;9})bhq<%*sazh76y*qFa%B#U1db0fo2flD^l^|CL@?zPGZ>)2 z;#i9|*7)bxRV+!06yuC#Ntjb}Kz~Oipog8*bTkE@C%~$j=2Mt_zvzi(94@XJ= z@Q^mF^HK?RX~n9C;eqc?#&_Dw8nD}ZBq>}Z4RGPW=0wt`-J_$XdIXCFo_8+SGxgbZ zJ$XULW;5Rw4C&LCP0GQ5fd3xwr+?Z~Ry<`4lGbBT83Ule@#BnS#3D)dO+KhQSmCumCKo-K^dwc%55F!id*F6dY1&;S!j)6}i>6N49 z=Ai%b&^`?I}KdGQv zV*pvT95O#0tZ=BVGiDYk*K%AGpj+K);~c}Tpj%@A`LB&`?~Z%HBrtal=X(3pM$5} zYg9e$76s@Z81JCXpz3y$V2CeBgSnfyK;TII{kBIs(%uEH-{Ep@n z0GL12m|kP~YWIf&hUl~vqmgcL<8iL6MhyUsZ)uIAASD-kj9@Yi0!KZqjcO2p`aUr} z8qn?Uy*_2-{>I;OSsup$gKFFQm&oKnxz^{R0R1+hA0Hm5#S8tX$&mI``uEBU1`v+b zLo6_Q?uYUK4(_; zgV|5T%v;tDDFkp;j?mB9r&X>OcTs?DY;h2LOe$*&g8)>O0r%CF%6#ZjE(1;hfNAX8 zc@`v;W$l|naNOQO=cvsWM3%)(A%JWAm(I`*)+UzqUtj>)Sc1NF`X^zQR%{@EtLA9> zl(ZkxqFV2W$8vKt4hXP~7ps|@$DKi!2hFlxoS^_6$|J*#^2$>XU>jdPX^;4|MrD0j z0|3+1U}W%8wg$aVo+&OZ>o}_C%L4-ey~YNEgQtA%r>qS$05DDD8PtwE1_7ul!|2nP zE&46CT!z75fNv~3d|W#Ur4YbXnF|pctpFGS$|qqu?7I9iOM6ISMx7CDI1l60c7LPqXC^e#N?LkNeu!} zjlVq|)Nau!1aR+?zn%1l-Dh+yJuUK63&DaeLSv%eUp-0V$=mBSPX=arefxc(6@Q%-mjEdGd_(7{95JpZuEDBQ7g zW&f~fV9V-kc+!5_Q(3>~9#t&qVu9(FwWRs=;Pm8c=7)lh>VXj*s63uN4dxo+(NN$~ z@$6*K?I$OX27GaAxpC6((*84U2P@|s`2Gm=BER_^PU zc^_I;6h27~Xw#H;3TL@|%|dY8UjJ#^ONq%F@WD(u zPs=cXtVWCGujJ|qK*6KaFFwVQ_v4Yi86rig} zr;A0wgIT6rM6wXT)wTKbFbQXxO4g>u@R1*PsV88P%Oe{MAZtG%zDRs7=_eTou(h4( z&%t=Cq@4i)T=gw`kktB?tzQS8^0wjrw!VXA? z-97M*^{s-fL4ciEr9YziEar7ptYT1ru5xcvAbr_kLPvcD8*$3z-Z3<=DNjs)=LIR} zi53F5A6VR>njJXk@?mkgFC_-u0)azo?{vOR_D^eR2Sk8d?+eUO;VOs#*FP+zq^%XM zf&i{=M~BIA8ma#4^B?@h57hs2M{6aWK0^bEc6t>J54yu|yS%lQbb1E`=qj-qM&e<) z#0m&NRfc&QUu|5@9u5ewmExz7wZP>R1A(E^;z_!-hJ}@qs40Sn8f2KIQCW(qn%`5b z2X=j}oI6_xs8z|r(^I;EzP;~FgqG{lGYlZB?(u28?oq!EJT*vu)*g)piT)VKr?koq zk{Jx}RXS;Y7<5jK$Q;Zk%B7PW2Mj7qn_tv%(!oJV<-)WF1P*2OXZ5VEUk9EVE{*4# z^^|X5FE?CD0f4D2O($1ftT(Gfo!DCX#87%4Q=uFO3`+H6yE>n(SS6NIodN(;#UMJU z_iDU(!9dHkYanpcSBvd@UJKPAxTw>`tJ!L~sDTOupsE;@{_TvxmWx3a0=TNSXnR#X zA4>s%scLIJTTFe>a$c&g-A=yFmZOfJq@n-y%Di;<;B zU|}VjUR==Tw%My`GCSuny<*8YAUIWWYzyy|s$6pHq5%CNLtoD4%h$>J`jR4ncZrGM z)RCA0FFZ)_s!nlzz0PSW<AC@BU1Z) zPqwS+i3$meM@H8@Ay1B;dpg3Q*97^+`{7XUf;EPXh_c zus&DIB{y#E`qYT|gzL@plGSEyLX8N*(1FacM~t$z1ErWCy^o5w4rCti(tW{ESOAK9 zkVOUYy{p;e<$P)nBeomL+`d-gLk7mM=0N(KkGqc^tNW4~8#fz zvMN~6>skm?$_OCX-nWk`wr9uuV~${s)V?25DKzlBbG2O0zQ;I&d8nWhG%p(lh6DJ& z{L{AfMSU8=0bc@uND+sXMkde4ErA zpVCDu!GSk|2|>q%8HTHoFKsEOacDKZMLe`DV$WZ>BpBQ~3W4D2d&XKyIepKpzIRsB ztCh-x#{>Eg1}PYJ;pH?!xJZ!tA+8c>4UXv6f)QQp!B_;#(=0+tV{S%q@W6H3KACa_ zCx{7>6^jvNW9JCovd@C=`Bf zkZAb~BpC16hf~Jm&T+7$T9C(Em?$Se!TOPX9IV4fv{3w%&#DWOKZ_Hm1uA$0Z|!xx znf%)IsS&|<*Xm2lNqai{<<5f4+M+~DnPP%7@Sz^1oBWe+Z67j_U<|E#;@u@t->M1` zd_f6Aqt-5=fdpd^bq3xt%-T^$0fH^?n!!k|tz>bhw%4SX1)RZlsRlSTW-jM&F9>(F zIa5qmZIQ$7BelKLKUhF;kEcb7wn_&V+=1T?X&Ecu8C%Rpayrm>vIyXKoC^WJ*)d_lJW z?2iUV$sWRpiQPQIuPVRg7cR9zWiA00_Pxr;pP8pL`*ZU{y(kMZ*C5 z-Sh#1Zto4a+X=>k5qKcQ7>))!7FTCbNMLv`D}!!9tnCOk@x%*Zpuq8t!*R+7vx1LP zISd2@e5W4vA0P3UQ`t%y2@FmN=)6p3qsk>vK)`oPKwAhILG= zKoR`Mr#wlijIV$q_;j=gDxf;PV}GZH)v=rvf zDZ()9JbKbh88lLafi7KbDBfwL2*c@c@KrNq&`5EHuN!0d+WM*!v!8Z*-d4KGG21|) z6z^v-I|&b;6Ko@mhwT&#ERN462Zs%{3XK$Fpqc+>Y9modU_h2eeYaXn9vqicEq8L! zVoaxzGdij>0S!!)rER9IPETKZd`gFv(si%i9xPFwOCV`h9fJcK^-c8i$)I!CedgWU zC(6aITCzz)Nf~n$Z#U~fsrcWYaHOevtCYKPB*RgA??NGIjp2- zGB29~FrWxN9S_YKNM(El1pIe1{dCPj`P?R20F4BO_c+7vSQ#YoFqh(Yu~N{-Gd}Gj z>0P4~8VRL%KP$xvO)Pnql0@7nM~VfO4>Fej=$`BkysK~p$48_9o<{);JdW4;cT-pP zDg^|5$E!|zUH)mWa(!qdFgRZIWayv1TG^`%6gW^Ddk5`5{^^^4 zVg{?uVz9vSQCc&Kf6#uK&`Gd|gErk^%h&`nXOU(ZVuJOd$NKMdpjblRwkTER#NFNN zT?&X9EV$u|kN3O!RDX3QA1iD%Uu1CLLi0{;_1(g^^F-8Se#Nc(`ONd+h^TRYi&s9%zR6yNzj4VPddqy_7QJ$g75W_ zHWvX!xju1tkNW+SJxVX=yehSn(Lavw+e%)dxFf*eM=Mm14fd(Le4tmY6*^$xL1a;l zA$sCzwaCKYz-7y%xDFms$Yx$&u}m2lcy6Qa)KAfa;05b}V(!B5z=oVh7n!;vR;Fq> zkA;eJ9B{kU;UFk*ARcRSI+iOEG^)j84-kAGy0tVM(H9S1EXl|`4E~19pn(b5)v$jQ z3Nt_A}a5&O3~1nN@~`a@ZEC4I6BWsn|j@Fz}$wycn;O z+10BiMxPc69Cz1$n$s-CH?5QQVA!F1zm9rAjwt!inWC7nTO1OU_c-N2Xa8vQ-ARSK zG@moW1gR~jAy058d&$-Pkj~2KL4xuj9_GI%bj|vbg+IZX5+#hsLMqN63g-&8P7(Q-)+o8;(dvxmE z^)nFU9RzC(E5t|ne-;#Jd z1u_(Xe_+A;+T`A6bxG_F2rN=aGN8kOy94iFiAp3E2_*M*NyuY*9a`8yXRguut|W{; zg4IaeWKl$rzO9~p+#XW5dcu1o!TtiqV?hGw&i(;kY*YnWg8=$7sP56y7dk%UaYyC8 z{o`Y5a;lFg9l~4}PzA}ug@7Mh0iM+aTM7cJ^#~&X9`^VSk}ALo1Hifws-g{tN3Zzz zxw4HgLy3Za!>nHw{F_ku=xF$gf4i&#Zcw27JyfLrbHd>zA2NK;0ZtA9w|sR1_q%A? zf(18?_4%Xnps4eLW1@!LmM13D>!yUy=l9{K0j$zhei6^e)oh9mZR^o0~H?e*yj*8VZgy0E|?nPm0&^I$=LC#CPvwJk(Q z2jB(1DjAb{tR5Q3?qy_T+|Hvu-QKQpK2}J{G(||q@j$3U71b{331fKKhVJ6z5Y&q# z89^3F-p@=n>INVCBy*;rtx}*!8BCye2T|3GWN<*B^G#DYgnE~vY%0i+a!Gi%QHLb! zID(S!3a>+wRr&3-%7>K99(9s~#|f<^U`<3aCE-;&2ZPb>aw?TD24s@C&^Vce1Ko#; z?qtv(^=V=v(jq03dM=d*1sdJ^^51wpmF<0fED(j|;XJjQQ5vEC5V}vdq2z6FVsbBZ-J33mD zzKWXh@#A)vXD4N|+8jvG>IsbCnWIjdZ{R39fe}Xpscs7CBL|(sHf{80&8}=y@Ss4W zJD2pgXTSaRKhd}DL3f{1mF-+2aG?7{buRAjbg|EHLk03=CEsinl;JJ_1@osdW~B1oq?=^?Qb_LLg8xB` z|Df~4-*GKjnNrA|VuJURC@;-3?vMHdzB)=WY$~R-PN`|hlYyJViurF zveYNw;2;Xg%AGe4sQ=~b8)~=46cfDBULd>K(4A(e9fvbmut$9!8%tg8 z+CC3ZFq;}z%cN3Y8?_(l8?2wv=XZbEdHEVI04`K;+^19IlhE&LD{z6Kz*ygtI{fZ9 zD1UkD=YWFwUESX3?t{pk;gSh6-n=p#;JAL54n{%ED|{0G1j6pwu0kQBs-5hO93W8 z-){!pzySTn&`udNt7FMG2-0_;q=TA$1uv6^xX1N2P!)5qK_)s!og09%dsnD9#28YRT`FA%PVtx!U2|E#KN z*a{`Yrb7%Gu!%wmv7bI`zzYWoC5FvYiE1`^`Yh7!iIE>qS`|Axlhpe6&`+)^VQZAY zCPTkNu7(}!k-NhuBfi_V8utHB+nayMbsTrTvH)V=H-ej1k1fxPTNX&sdY*UYO%n^* z7SMo!hDhppUQKmXb$1E1u@(T$bLKzLkK_OMMP%kTZ$@O^>Zn`QKF1=u?#<6PGIG7S zG9|P7+l`bRN6Fb6DLdb$Whd5z-_kg#>~uD&2|Xsad?O|E+hWQ5ZX+Idl+5n$HsWzd z$=Mt6$#Iqd-VQ<1bfdFQ#CaDDi6TOCmSondmX zqWZF2{k=@3WYt%XpFaQg)U8^k0;~Qu@s+NS>F6xQ1KePpd{{Ba`|6*OScXSt7dAAig9*0i%%HaeDlZB@3>*(f+Cg~Ntlmu;Xm zZVzeYdF$(!&()cbuQ!oQY>AYBJ)acpdETNE?jAjtd)h5Cw*;4`=-*1>Pb2%guho$YmUg;6+8{#hXNel$Xtk^+v#cDcS1!>@R_xGbi_^2B zM28i>NPKZ}y>8j|TJMcAAC_ECEXfW8wJgx97Z#_2{wmR-Au+mLh|a%R(w6P5RrKo= z5bK{O*3cn5FZZ7C%6FPR{I*c~4cFr)I9(qW@h8}^_lWmFKULf4H)cnLhaESQ2)x>R z^!&9PRJCj&tIr1k2(7f%rAMJb^by`*t(T$e^mle&yxwyg&s96PUaiae0uB97rLSA$ z>>2}h*D3>SfMmmhwBCR9Eq}So4#0Z#K8R4G-r17Tdct`f^)LPxdwh6Ugqn?b)9 zrSudG`h7Hr+R0iEJ*9K-{vb>-6a{bQG9sX11hrUoo_O-~x!NlF z)KYO69O20@fx7Q?Ch$7X?U$|J$zyFyy*Psz72R&igD*tZ*sv)?x0~|0tWY*=3ejN- z^|4M!AX#2aAA0um`9n11m-U9wrI1;5Q5j~ zn)v13JzlR6Ot{MCr>j}+Z9<(knQ1@OxD@nWv%jcoTA;6qkk zjHd1WjK_uxNwIoX&Tx?Pu6jS7@bIvl0a@8qkplP?PKWk>|6tHQlx)i~w=@|d1Zb*N z2tDZ+&pETq5D9w1fxrbPFg<)LDv{3(od`i@0FZYWxla>6t={`yr!|@O4*Kr}-ZE02 z;xibeoO|5Ug37AyNjVU>@8YuP59U-jhU4yH&~vrBOlC_%BH~j5Legc`{o{FWJf&(w z_-)m!T2TbNGoBnz`-eyKwcr&+z`KLNQG3)?lRc|iUQqydm3MbMnz!CfY5JwbaqEn` zatdbE%DcpapvzlzIe68)m2x29YFK`-$S22Etzi=k@E1Aj=2ep6mTV3f`v;x?sI&QC zFmBKDGXht&Il%z$st*4<--F$n&5u<^TD9uPV32afjE>Pf$|JIBX00fIJ2%l3E)H5u zR}QS|rUV1L>o4_(lRZyi~F|H+*SRYV1RcGqWhhS?|4ezG_6j%b0qW1stsa^2SHaI(3jx+ zU_2d)bX~PNh!CK?s|Y>l?|1vM)3dUxDh%+KxF{8Rh?XPd(vlPqz@B&5nH<1=uwvJF zLg5uqjv1{EtVV@gH9I+W`J&VjU$vT5DA?`%>pxFLzF5`20RgP*!O(C0k)W>HgYg7F zVJm%(3Tgve83C;8EzXZ!}t{i`OWLP5q=u%&Lxsue64 z0N>!k5`N4*WLZ0xmP7%9giC{W?dhoWnZIfpq#Oviyz{OMzOz57D%2_2ICe0TfR!yS1}wPCWoMlmHq z^HZVu%{HwYef0bxpS`vF^(zrm!*M7zx|#~@&xE!=+nz3(;*~ynL5blwjvDa{3-vof z{pt40uOF*}zf3uaQZ!Fn(4h5^)Oyb6&KF{7sna-176elyRHc98O-d!@=KjsFQ2#{4 znXY7My*O^o_`|d%J0XSxH)_&WL81Ihsk}pn6qCar)@5wN1bm%-2@Nam3M>41_p0)+ z)b{1{jyR}MotV@uFTR$W7Y!RvYNE&_XnZU+=r-^cr$BZDfTi0}jux)~teDW1o_s}h z)T4*r%AK~&JsELOld+^FesrxysmL^srDQ@^#qt^5XQnHpHDU=I)Ko0_+O7?!rMqS- zGNF50yx`&1 zYdU6*VxAq`V>oK5reX;4Dfk2nobOM=f(i@^WZM%>-60n|7D?Z{?NLxD%W}mpm2V?$ zUVBL965Vf}(~4<*@Wz_Dk-1EFZ|_Cx^-Fmhjx`&mvQJ?aqmOK%~D~w zkyD2F52E;I%7o3A^0YZYKnx|JyL&LX-cMF<%dz&U~z z0t-5K5*@mii|$F-RcjS3308_yMT6G;k`~`AE@EaGnpmpmh|v5j(ZqhdhqUv7Hv*}X z!7NpLNw|Q8`gN%;PgpmMJiFjJ2}$os{G3X2B=#Q(cQ(zD5r(*2OX9M(Er*i~L)^uv zFbDikQ$FSQ?MJPegtAoKrG(ncsL;NdXuqZl3RS5#%y1N=7f?{So2g`(-|}%*ikepv zIsb}NYY*l>jz@Bg-7p!hq5}$Ia@9TWwvPwdVlKm^se(t0r1M*u>8sNt2K38Le*R;& zRN63?tSk=@kZ;c4xD~lukH35P*j;leN}{DA4FF%{Ga7_$K!{68_Az8B@gqG;${vzsJTpYc0fg@=B-C!hckU6z>#1t*EMIfW^#Zi47|wQ2 zyF}|N1}GG7i8#_x1lw|W#L_KV9!1ZD-sSoDO>eZd{p^Lhkk3-nxS&4K5(>~a5;R@v zs_u=oRLn)bM?nPkzxsYx?$c;wzoP(sA=tksssh85zYmxCr8+F|DxkSXEG=>7k-f4z zzTMuDW;b$&qre>@IUnx4eE9m=lc$emcfCn+CMby9_3o*jFYl2O3{{)$iNM~~?i z5}8vi{REx90R#BO0DmsYhSexOU{Z7+5d+wp!15l>S9F?=ymZ;}U6&c|_JevBWbS1$ zdH%7Cye!d@l}5;_egi4b;ESx(B&#MU#442R>Pa4{CM8?*Aa~6>@$u8AJ1<`C$PaMK z*PC`;1ZjcNghC?$fFN)^#9;T)v+b9ERIRgRLNAL#BtasS@yGv`r$v)84i504cFN&R zYNukBef;tzjrczQqq@ncNtR7eus^uxYwBI^DgQTd4>-Wz@(CP%&b?&$7|>}fU=Rv* zEnhXXfx0$e6#VH|FSphG$4x5ofB`&|fv1n3?7jMC=ZUP&o0Nfy1c^I772<zvdDI0XRD9)vG)L%^U?1Bw#yT6eQY*Mz%9VgJ1odJaerPm>~d% zHsBeZHIRLNG^wH^2m+ykqu*c47N$uB=P5u3Z|`oa@vJ6JaS(t*rACLG@hJ%+C7V=g z-~b;!ns(*vUz3j}LI4^Pl7_f9laLVvflz$tHX^z%?A7D->zRrKiBJiLd+O6MgeLW* zy6zqhYPq&h=EWvCeHS2DACmR?3z1=(Br72R4Ox*!9v;k%`JlBYzI?-tF2T*yl=H_^&Ehz4(>m3^7Evcck4kDtkj zr6#%GL11xcUGop^CatUd#11*f{g|g`lbn;FU_TtAKd2iyh9LllYJtDhbK{#-3l#|x zp<3|kz(t+kq*@3Vz(d0B?L1Yhv6>{TrvM%5{JrmK9Vv#K(zdoqoiAVz3S&X;+0NHA zh%dWRO~!&!7Gy#m`qNh%=yW>>z#$LuZ=1?*S2q*2tiPxcO^A@Z<|QA}s-sNFl73n#f*|noAVB-rXI}qNZ`PUiC#7UG98u?S zNisgHCBuZAspPA)HiAS+{CR33L>Gl^iRH>w)u{aED4*`mN^lU zpZM$&#Flu}vII)!oH7;C>{4C@xjh<<>0pP9ByIDx%M?ol|eK}fC=O9v@Pf(zOEQkD*hrwQ6@-QwAtS1)L?we@IMj`SN^dPneDIjc_Rxms<%jt;Zx zbo8FFb##~oo!iQ9-~IldWF2JqE~<5$gF)$zdyO`HJbp==lv__;@4Z$7Lxv9{C8cT5 z`cP^;+j;o%`K#w@j@+5!$tK8Ab&fDo)` z5W0o;;-i^}nqfHu2xX;NOsczh@n!FzH|>o&`M`$ZBMT6rCW(mKeL4hb+B@9(=8uoR zZ@K&I9=~e6q}^O1hK5EiaJ*z46RIBz)z>dy(rhJPg!W`d_WCTD#%txek_u%R-|!Ai z2Feu}>%=!@LiJ7>-$&o?x*g2I!-oECorfb2Y9FO)v^{V8DeVP(_>EqiU>M)2lax^C zewymiyskU7XqTJS?LE1e*3g5glg_wMznQ9Yipsjw&?41IdKh%>hS#{j(1{YQ?T37I zo=8kX8&S|wK7F0e7agI+YPG8fp29I{s z1~bD}>Vo@m5z_;TmP-gDW3Gh7*06X{w!Y(WjjmSzocvl=diL4_+FY_{W_g-aDUE9l%3f*gIJfF)nwYA+f zF(ei=xTo*mdPNNv?RwvqpBJ{atE5x$YP7O#)oW^r4c7c^TE&ZRdd;>w7#43uh%6Qy zwTMLQxKCFp^3kOtOWNA0I!8Jjl(^*zBVNuP@MV~$0rPHl98q@C-6QXzF z3VNYN($EqCBAhFU5d1mboh$|ePS-FA+}d9pWY_Zi>EtP3jT0u+X$WH`?dhyHoo)5r z(@iZ~Wc3U8LpJGQm=B*Edq^~585>6YXO4n=k*>BJlSS-7xAC^M{S|HGRR`>Sf3kB< zu%}iArv27p8aG<>t-80fCx-z3zf-U;)%uUW|H--BL7R>Eh;-57OgC@+iTa4lmxjnZdi{cqf8rtc zZDcxOe{b{lmn32G9}Fgka!4mJ)BOOnJYZ+H^+NV54mWRfSrlgfH;dV-9^vmU8cLGc z$UU9@4yyS z+Nt<86@!`om%*?9`g-?|t?egn-Q9EQ9zAt~cf#JI&HJ`S6^4IqF#Orhs~1mc`P?H{ z6}*s}R`)k=a;67ke`he3rdwOIJ9GEZHXkDmy*p_W|hg1&zBf~Is-eRT@C zR*J#QEt5ZyQ{@oa|2z$6R#GtWzuHVJ3>W>sr(&QQMzRzi>ML$PtLyTfLh;G;;7iL_ z1O?vPp)Vl*k`RUG6uu&a7L2sC@-OH(xt)hes@nD$N$|a80S@B zn58`LZPS$S&MTV4dMM9cJcaTsv|ywq_wCWZ3(fRDlt&<)Lhh@CV4kH*@p|{G=X7gN z>jjOh?8rl0PoYbp)L^KkhxvM!Zfkf&{j`U?B9qomJU`ywNgVV<<daFyR_U!~>>qcZf4f`$NIn%~l^%?>^qAZjj;>%&p~n<;VBF7Y8&BTlI1|~? zu=~t5d*RVA;g_{0412R#`%qc&VpHvQq{EO;*^pWL{nim(el?(rl4y5z>!8=BoxREi z!}1-?it|gg0x-iRiGFJ`9n+5gd0!dw`ebLA4M`+m%HQh1!5gjKd)iV>d$wCTbqt*X z%`AGRC}cN_PSFur_teZ{A(-W61=EB>B=~lZ*`(d+wI;MttN&gZ*WOSfE|G(YztYan z!bravCM-2^X>vwSR9^dy2Ee4*d`kQ8TkaN<5&cUfs9_97bC(*HiJj=Nx9tIM#MYb4 zH|?=R1}3>Kdz#Ne$vtj$d!0d>4viwCTA>mXUNcPKnY^}C5N5i1y=>-q*cwsuB5X5! zkF97MRA5k+(_%CRz4!eN)n+B1Z7QeLiov{J>*&Q0^q}Q4sPLGff1r`YGEmZiQ8$0= z`-|!Syz`><75$IgziQZ$1Avpp9~BKkchX1HCw@x(OF5@ySPun8rWJvZyMb5PlBa)G zmreXXC)dabpGi3wWNzU#mZ9}zG)XFw(6BxagiI*lAobCYgZ}>3pP%l0)q44wmUhsc za(|*tczSKDVf~>4dAV97RBu+QB{jqP^^zJ;P`S=`Z}mq97iSvCG0eK7vUrtFyKFEPp9o;!8YvZcYzd`F`%Al&*p+@@hhFp;xc#0 zX^a5xLYvQ%JZej*#R(ytA_o}o=N-O37A70ASO}KG2?e${eLR(21*_>4E~hgL_;Yl& z*!#Zp%YQq$?)RZ2+JgW--(Gb4i z1=W!6D2PN70=x_Rbgb8`)9(wYA@LASk^uw$9KCkbdoSP?Ke$jD&7cH4>vdMn75jY- zrN9mZ@P&PU#;W|rvN$A!lW@R*KePX%?44QC@5cucN(k^SbY4uy2Yq!$*MC2`d{Bpy zg9&hCRrL0tH|nZ`E{lhus&|1jlQ0$a zXfb*tvap59fh5&oD(bL3KU$f}fh5&oKt0nLb_LVo(P38+yD{!(c^FUt4b44=kwk{T z#B=<(Ba4@zO7NjFEP(`ARp&!c4Na$QoU)KFL z!@#ZzUZ=N}_UA58AX*cDEF)$q;USz>@i0W`QfEAzP&GrNv?3Q7y606$B@uxTxz!nu zI*TbC1vKCC9|JNrhLPZ$phPnPh+m$)>^9T*;`2@1bF8aII9dp64K+at%ouQ;#Upx4fE!xuI3S;= z-d2CO`kBNbnDlW#RqX!3fo_frHE!1jlk9*3`%Jel>l;g+=+6|h>KyvS6m^#zWEX=jk8;I@=+zi3~F=@@f@AL0;s@%hH;$^eJ_N4Y%LN_y~V$?C)iu;oM0VZhH~ z_!$52N{hd$gcn|K%nL#Sru?$rl%pPB3L(qHl9fFXw31I+P=P_8MNZ}$U1jcV+%>EK zLzZ}^R9kG`Gf;s+h5D0*o~X~K`WTz5KO-I{6soKlr0V9O)xnGm}bLy_1d z{}^3z>S_#ml3u`;B>U4-kpvc!N%mo@MV4JZ`#2<|ZbY|i`9pq$*pgwy7;d>c0~B(} zr!_C;9?kSZ*7ZNFD=tKnQH+E3sB=uq$LC`;^u7L2fyKVA5kg5?4rg!6b=~@DDbSEkDmq$L|4#Nl*RSY26Jklm zp{dM5mvjA$Q*jHTJS^YhWES<@ah;!}S3gAi?z*P_OzI zXwe|eph>%z)LGOMp0=mQzZHRVl`UYQb|(bj+2PTg20~XE0#l-bQPLJK#Ma zp%obn2+5EqIIwIx-wRExn2 zv5U{5KST8Vhnf&HN6&{Xs0ApZ7jlpP)qj0V3)A#gztSj6y>&qG5!O>3BOu0ob{7zmM&Y5c*OB1Yy+ z|cO(ad z49Qej1gC%nq2az-ZMUwF148I_Wx!&7(E3Ab)|WlnB~3LvxHMW76_OX}ONe%SO!{)^ zwqYhW29yaEaZoth8!hClieYgQhf!RD0Qmv61S7fr-qHu)KoaUOpk8q|y_UAb8Hz|6 zR%oOTst6o(M)Q?BF)omVI}9Rlo_o!mp-f3bw<`pb z6~<5ue(<4$p#cQ&dHQ=otG|SY4H+;5(`biE+57?8fX%@)+o8ZddpH=&Y+}(H1FJ1)BL@F%QF1rAQ{GYUZ zK#;El*<^YQs!Wf+#{{{?sx*r@e$(&$MQu(p38Jox;cRcs2cgu2hD{75>Yx&YeKWO*-%-8V1f@6*ysAg!=tV=-_YFoP>Sq80H5ir zo}!@=rXUJg)tDFQ;dq*Ds4(<^VnEFfI9PnOdQtD_F%*g_FqiCKhke7a%^tXF{%zeJS|U>Yx`9kokf1F97ms@Ez*-KcRoce`Y60Ufm}bUB)i z39a+Aykeranpz5q4<_?RK!N?!zWgFIbTa$$bC3XlUF_3VgDyEs)=-wrjDXTu{F*4x z*GQvYHxG@ufKma!MuoF~nT_RCk)cuIFoNqK(Jk&Vi;L>?|K@sj_AkHvEsgunwkF5( zBZ7>lhrj*&x5y?%?v^6~e*R7G_}zFa*Blx$M+hdY1}d`2jtBGc=fZ5mjsOlLz~BIU zaX^(rhw2D9U1i89F`(iD2ZeKkG4B8tmKz!XA4;-42;lQHyLqV3nKJl01XE~_0{a?X zD$E}mYB3qQq(nUy-YOU~`wavM<2SP0E?Fgq464HyMI#*XJUjStC`TR*WsJi}JVSsy z&+}XRW4X`YkSrmX00Sl1own?%8rc*qV>2pYPiIG~?~NJKlp6(8Y>xu_tlOBKwoC>$ za~MUXP2xaatk98obmZ$>HPRU!c@DUY|CZ*je{VY*|C3p2Zw9RBFXL^>bo^N7=7l8hK ztskbfWktMXxp)&3q6VzEqpg_ezRHrt`%Nrxe5ik>)v02e_PVWMZ#Y&T5dD+8OiN+Q za_5$mg>|2nfrV|(hJ*GrYgumf<^&yB^TDV$pUUwn!yuRoB;xKdpq?46zR{6_NFpJ? zJ3kubqwac=L$oZhBniO5_C0id7eE(^`1yaLmmvl6xyR;^qI-($7@j#$xM#dIydQe z-mLy1iS2f@(G{+0Y=+>nY%(1L_VLgxdTWmh9QhAPhmQtb2;=JS&`huOf5B?)~n zNe(Djd|@(Z&w1`t|@CgW^W)>3L*D2etUfIpaw zXMOpBW=Tj6q_B(u_1t7a2SBgfG4`P(*Mk5)AI>KeiD=0og=5Wt0{h&A_Jqx4b!`|9 zDxH`XNFbk?%w_l0Fg{H|q$3DX@!rXyB@6GJJkD!E2=FdVj$2`mzHqEzMNkz|T3Z1j za&B_m8SKke+>(V|C(Vkkis%1Qh!+V7P3=dpt?YU>M@|6`(ZJr z94(ABIKhWfTnCEaDV;$umX(_U>_Z7~00I0{we!l*fl)_yCi|=|OlglHj}{6C7-~s` zla>MoThG(#uc@ws4YflErr;h0Hkt0{F;+L-hg0+b1OD=Kz$I|d(+hhH4R;b$iX=$r zd@x;%)c$KjwswIe+hHPgMx(~EN-|JgAVKvQP|wo|oYS7FkqyZif=O~ffqib)tVn3wXvs;oR(~H+U_M>j?2P861lBOx$zc?fAV7XF8_p-I z7Z464p$-G;d8Rg~??SMQ%qXzW%|_h@ll4B7BzsT=9(UfTjVYG=;6h2T2LXI#=Ke0M zkuZ!Xr(p{sYL&#<8F!yn9K`1^5}o$J&d+`rP!{@JP%V|64<^9@1<#zB&15k#^cN|J zWD)|rv)oY@hFS^;g^@&t0C|a#^wHB_eNlQ9GQ$TTM9vj%;;>{rcbkoZ^947l_53$o z5hQ0x3>|215{E1ZIACi1qCt~2pHe6dXAr=bW{dqW*B}zrVtouL1>(<9`W>%hiXWiYnOLV-LzqlsmaK}??JP@2skfG?0|M(xo^ejyt?jc@{vA0z(! zyglW0`@(QTy&8fkxJSYCi}T)q2JLkVZ18#vDEScwg$wiE&|Tsq%(plvgj4(g1O7aH zZ4CQrh}z;DA56hL3hcAlwpl|X!C@4Y_TB<{#XX)aCcHXtb&nL#TYy30(^O(>|9IZx zT}X6l&46Yhgrs31Mlm*!%-}HLV_||n6{ci>VIFw70TNv!@A_1yBQMa9ryT!&{*IQ} z3ul{hybq_cPk;e`(O-n4=hQ7l_J{`|D4-O;uQ8LJ&CbKM}E|)sK9`LpR&)v_i&B8ASuq z7YZiOn&e{Yu9tCVDHcwT8F#KGgjUG76toyiM&>$mdG_HdI&*o63Q~JcNa%bpAHV6z zRl|niEEh<|!C^qX;9lteC_9vv_K7hRE@v|g_z&i^TT-$uMspwub{J4EI_f^1P%Fx< zrPX5&2h8aX2ZhT{fzA`B#kxYnlBlfVgXSs$37s?Z)u+-Zh~y?yY3JyYz`6Q5ur#eM zl%#qP487#RU0N?C{9(x{b#MoRzz6w?PfJeWiy)-k?rI27&kbMc|^)mcv5r z++sS=Uzdi|@S!B%g8;q~UUBEph*%if@-%Eg#Gio|69iKEA}hO;3tN)%P{it5ux#3+ zSyz<<3`_N8=#m`35WF6P%qDaTl&rU(p4`2S!JWNj#XyGSErc2GkNsLR*{L>kjdDU! zIT3*PPZx3o&oCLhSV(v^c6WBM=&wA8&S4agAh7T3+ulg7UNd}qaTtMg5FjtSYft$K zbGa_WP@f>2K;y^C;&*K|m1nS+!ze64VDb5Pz4jZrC_)r#!$(~RCcyy(_N8~d{r&0q zo&J8-)l|lqUoVh34JWcbO$ELpTlhFyPO>n;r5E z9l~&n<9#p*4=Av21ol?kx08g+ zx{H_nM@g$Ne`lz>0ZA8c<2MP0?iD=FW~aY8x#C9HlAM^Nj_LNcJ?QhTMkL7nU35EBFHY)IW>>?>s-$>y->eB?Qx4hXVULUK-Nv z6I#PCXsUvjw6=iGG$)I}U=7U>yr>B@H1D#ZwDX|X+j>0c4e4-&J^HsurSDJ9$rXea z#4yAGRk{^qV8u-a_@&sht=@ZDO)V@i^zkOgE?5?435DMMOs{n2^6tqIH_3tx^$&A( z+KbkcWy6riY~mgbZC7SyZMj(2SY{|#=3hpE?aGXM$u|We4Gr;Ow3pxqX?`O z6RcJ%w4`=5AGo9zuuwZkXAQL{a=OOQ=J-&8A3y+~r@x!b+=gHp?NDG}q?i1046?Lg$_|`^}G74qyKSoiv)nssAv$1j^jroS~W!%3aSt3 zrjC z7wOrQ9NK#qeh^vS(2oH}3rZ+tKcqu?=*n$c{zZo^x~p1g5C73v4u}}OL>S`~>v#~n zmA+8WGV~;hS^))_JE;tXeP}UF`@Qahds?KEsa2MPCgU%KuhAg#)uQ(UbXRwF>^^Cqk ztAUYp1AK*3i@+M-hydIN`Q_1HuI|KHr(a$Ec(YAwi1=P`ZmX!~RfiH8c8f8BB&6j!1&};~eG7+NAS)9N5C?&UqR%GZ^ zoh3;SxyJ_aBfp=9Mvo5pBUUIG8VeDv0uFL__(i%NYU)0fTfCKNv~qV$h-EM-MGN#= zbZQ&jAUUG%OqpDkij>Ta*^QQ$OBkfCyIAqlgMM$&l`4j#rDTK>4g_xS8@#-I+8(re zG;Af($IzV=3IYU)i~Ne84oXKx4ONI>%L%2+{ET)wW#yDe-nb_FE`|f%mk6d* zXvP?J#?vu<^s8-zYsIiaLhWaWAr*H1I;j@Pw|eh;a*>1KOdQ0u!blg_sKA<^*IUEe z!DN9l4EwEaj+cQwx0OAdXGEbkbeLg7p5KBq92AN%$8{FdDOK?YK+SAP2kIBp&$nybf{n8OEEWjzL|N) z2iGe}!%}C&agyAuQ4fbcwceF}kLF$H)H4~&j?W6>j=%uvV~$(`hxlh@@s^K*$XSL- z^^+V>82|y;aX+<#cG~i6bMA&Ew|rtO1STwTgTTXpSeE;=>7!J$u2q&(C=@?Il#_?} zdJ&FaA@TECqy&cr)FbgZuRkjkYQwx7oLwr^kqNb!&v|sA$_Y)QT9d#E4)G5WRsQ^= z#=3Z_n_-L}F{ZwJuN|&5sY65iQ}F^Ve|leMfZ;H+6AjROSV7%5pV*ZBh0jerXcx3l zmof|rzep4)hM^FJ5usW8K(-lsCx3<_u6eE|*|Gv`iIqBC|8{zndJczv%8HV(m3mnKcElEZcEq1lBG;|ef(IUSt|H^j20gX;)b!a~m$^L-DzWe7 z$4CnkOG_@b)Xh_={t#TKRvFoi%(~KDkY1sUsFzOR(2w66^KofNc&+b^3JJ9w~B{*;xF$sS;6cn!0ryxxqZN;n7(;CI1;e&exg@VS-pt0apaQ*DQcT1y{ zt0XY!Tz2REQE!>fhZh;aGUUTY1;&nc_=7os->l%1&hP<^lnDt-o-Rv(2B8~KXwZI_ z=~$dq)By}Km9yT;m5Gg=MI6Ad#yGq^R8#4eVbWp*90>wfAh6$W%W)yg;9H6BK)}Z| z;0?30cdKvSgn7PP1ic7@Omq`%%u?4GGY z)%ccKq*@(f6-9<>>CieN%z{WP>GYjFYx91!jg<6?mI+a1@}S+NieMu`6%9f$JG)0z z69}EARZ4_GCT0PCLjNyRnx+m|5D{@%Y%(qm2ANnr>Ri^edQ5XzEcf)|hN?$Tg7w!> z7-?Onj)0|6FO|iBf<)z@g&eGH>>%O*9_^=tl6xJw1EQ(@0R@SeS*P?#r;kf+npweu zNOaP4C|jwfPGSz=(Mj_$Z3dUKc1@iWP>_g)Z9e91TThBKtvDhqli?zm)f`P_A}q@6 zw`aXCzu0R3;rCs4492PzR0!`H^^8?e@i(n+MkTPc%Kq=Z+*n*HRzYQBaUqquxP1O# zb8(5REH0lv*j!v9D^vOMi_OI)vI;7ji_4c^)TPS?%gcUbWpVk#?>85h$b!n%P+kj( zV)$Yx6#M`J|CZppp1vsehVR2#5l@2>Vp4EcvzVw3*KB`S9$h+Fq8JH@(_AWbPaPgh3Mu?#I~SXi0s;`Dy}#8 z>AC=#cqVb|b#ZYDemb zT}w>|crL}X8l4~HPN6k*hz6bOB0fLJ>3T!&GX~G2L$I=n+IYU63c;XK<%InQ?ak(d z1PHY%C-B3~KmFc1+E}`Pmg`U+8}tw4*_zF30??pyC&qe8hoHNI5>=cGb4rmRJ(m)p zcQ3w6PkoOv^P;6?F4w1$3C&wkb1_2v)9#jGHa8Mv3@aYAuF{*NvE~0GvY@4}>H|Y0 z0ck!xB8d&~11RCs;rny4pZ~Ku-vti#ry%etEs~#GgWiD@G3D$U5l@2>wF{}zw10Rc zr3_O60g=b2<#EuWRCii@$b>rA)RgL3gaQbBc+LO3DX*n8D8Xyt*`~ZEaL~H6Ps@Y}JgWdxjMV@GJX2KA?>rLpp$4O*9#HadKFn=qUu~Yy6n&t^(X}fR}(L7~n7P z3)w~=!^(02b^su6@}XK>#J}*5*c-cxUud(+bT)t2>%Hl=W#eU7 zbrB&h5#nD0iMU;lkNdRbW%Y^67+h)v7*r|`vIa#-j&3*iV8lV`S~Q5pxYbR8hF(kz zEu-UE(6|@ha=+s*ktqzVFv6)!A(_y;9p84(>5`&D`GsuwVvC4E4$CjT_ON$<+Hd?Nu0BvKU@Q2Q=v1kMGfEwI~Cro?-2LF@{_#EOxIah1= zeyfoSFsM{sEL9fGy$Bj~s{F@Kj`E`;n&-a+2(=3o`9XI3fT49zEnCC@e6e%bZ?;Q{ z1NwxI1VC>@D1FjqXKEO_FgY6_NZhU@{B^ywReR-9nZ=-0v7``RUfAl=Szf#XM7BSc z;xB|03qm(tjNC&yf381WeJiQ-njk^s!%U>Ln6*{SY50JtmkK-xUaJJNyEYBkx1i%N zz+d1Ovco+Mof`pm03ff>qdAR=j+zuV9~Q-;!T^3Xyihn)$1tOv(ZktqvAcAsdP5Wj zLm#yY`RnSR8ceGQWhrX{b`Ut^Oy@|hIbD4mmkGdKt~)rvFkY^!%0YWJQ)d}m>I`ZB z)mFQsZpg5>!G-iWqk>d+$KT{-&W4e4Z<8V)MVG+lnfktOWHUpw&Gg#_Y<3i&VKdEZ zt(=cDKQjd2%OL^jw+-0rC_rEIXq`0-8-ue1WCpOo74(xdxJmLk2*AN!I%-Y0xQV^Y z0QRbn4Q;g=(ESbqZK>gO>VX6NHQ;FlC2b!Ud`rh7=LZl3LJsLuew62SHYtgolA-B# zBVl+mG*f^MiK%b1Xp)%eRZPJd^waPDX>E%=1r`VNa3h0s>k93|8xE;&C(_XJ&B+Ykf|qFU%~hx6PROFA=t9KO zmzE+C1NtqdcV=6UY0nEC%l|~*k!Fks5n@af4N5-?N_=6&jJjELWzu9oS3b1d>GN_Z z%y8^uprxvHWLV%lN!Ix(BjHI)E8-oM3I>qo7Z!>%&1@3Zn*qGLvn@|TA>Nl#m)4YQ|fz&d* zP)y3eDyY1h^1(YI(>GQLEU38JkjfR^pG^DaO6A!yxRA$3@}P#?$IvsH*9kD_pjM&{hHniFvQ(Frk(Y6!`L+RuYG>BQvDQJanlI#`ky4M$!SQm_^c8}4x+ z+8N6eymfsX7-iJguDF;S#z>S#?TT|u+OWu-e`=v{b*&DL~JW26Mx>W2giS*l*> zVn@0bchgtl(Zrhk@>Konw^YpD&bM4PF9?fUecut9^}a6W^^4E@ug~f6wYJY z@<%_+w%X~5fNA^j{mCoW3%C&f zEJgU6#vW)gPv*WCCU<}adHh|X!wWQE5Ut?RUVTlVsZomrtqda6s6!dwT@qcx@p}m< z6ZIPKBebcMN9_?^=o0>1y_83a7EY;9{Wwvb(v7}6VAz_`2me&2uxW^-R#}rzQm2D9 zMZ7ns&Sa=lUm{w}SF&fz?kvl`Dui}-L_+U=(0fZKyHZ6?2RfJ1*q*r@CsobCkiN)r zPE+{Ra1^%-7({>omA)nEr!JiV#s3gw)0YqhuE-GsIwjBKn7$~;>=E_67umrWrcS&^ zL>bM4*foev`kgoGFbUIFS3xJBAaNb1tsc>W+m6cNOXAX{(|Fu%Gr!$m^apePGq{b0 zU-*nz@E~-#Gd-Trk>UKmB2f%o5g*jME1>{=#XldunY9O!ZAowkOxOVf_?^z|Ev><% zlgr%Q3v|%+P#sZX83iGRmngv?b)BVXz>e12&@xjs&TW}POjS}21a7jxfRYLdvL|m? zD!_mk5lMo`C4Q$co@Xi6DP0ZYxpau1@+A+gnhqHZF}TMus7{H3vqY}73>c-cDc~UI z999^bT-9M}MDj+*U5mW+@X71lhkM_@cr5I?a}MeVBGHR zj^!~imhMolrHN3yUnzdwn?K~mD$n=-qKk`V)ooEzF`;@Zs6H7_X(s(K58eoWTIPsy zy_5!}+d+v8c}gdz=TeremrDs8w5|oM7teQg_a46#F|yPKxeQ29xCw>ti`mdpW(y(} z3_3`kZ+CW!Le0`Ar9tU>h|#zGQJyxIRymJPL_q^(myVI+{@++G$Y@q}D^{j5pjn3O zu84*zkp-12!C(8-ZIbb@G-CfQ~1NJ9ihc1n~xudnepl#!_ z@LN9o3tA;Cv_F;FbSNhegO&e|oW%zlY$|6}ET|x7@so|_ECqxfyv9CLm31?(1rYerYrYC< z%dFL`Jo3B|9j{L;sGw)X-*xoKGwRaEj=Nh>WaMT&tDFhd4?~%$-Wbl_cGT)B%b-VI zdNL$5(JOgZIUyZLZPqJEV9>ciW4E&&582Y)S#%wZOgBrvI1TT6;^{9;gw`#o(ND9f{!H5n&mp{2RD+ovry z8_z+WidgE@JfuU%)jQdQrl&$vrzY)Kk%e;;sp+6l)SjL2PP2`t zrl;0w(wSJNpy{Y}nzIQlQQdevJ+)4gWxC}>=UhQ52l@*Q5_GY0Gr1H03v`(9}0 z-yttIr`0kd9`^o58jlPK&8yIKXKM&0OOHN}QOAS8M_u9~;-}nHU9x2I1^0*q8%2cJ zF_8zgn~05jI%%tQ8kYWUAx0GpI>>1(M;DOFimF*oizsNobKTxSi!MSwYz=8(L?lo% z&q*HCP)G1nckf>=XBnf&y{CZCL+#M*4cf;oni!s_IXTPdZ%Hk|K?|wX9WUr4j*Zj{ z5d{s@3%$;f97JkXFE|X?D5G>D%R9Aws96~eAn@_^Mt8N+!9ui(QsgqrS9hKe6$>he z1+6#Ii_@FMB7nfZ63YGo4TQ*kpk@3ukAdfajy!ZQSkQe;Be{0FS&5G*XrN5E5yV-? z6%COT&B}zpK?`5e{BTb9hU-Bv%REBvvy=uUc#fV8#|yO=u$ku~3L3~;^k8-@55a7f zw*siZ-%JT4K7+tV2|Q{K4)SDgRst&)RM0xoj!fUNkkjJLTE_$i9i#?7>dR|$o25no z75Q>BW(|IFw?e2%SoTd%F0HYQKIi2EB*XwI!CRaQeY|EVk-(sXeB~Zx-Jxdrs$xOq zTJRS?nRR6A(ac{ULE#=0Xw`XdI&AsDcDW1FKFXN(Bm0U7Mbuh!PG8>YHmkKF3L5Ym z#h{c;eEosyZd$U+Xl-3xGM~7K7nrTE7G|;=s#y*<$u8N}_u5ogE zX7z3L&HCArhnS#5x~D^Zg?6(NS+SskzR;*WS^ZiS)P8P%hOf&!2Xxf$bo=b2Eem0@ z`Zs_I{LQqs#7|q>iy?+1*>+fVisw~3L0~sZ+h`mpP&b~An`rd=U zM@buvm3NwzG=~8jd4Dwiq3=4sqQ+~M_bV1uV%{H5)iqwtz5{5VD{(+aADtW1IQ)>N zbF)6Wz(EUrboY>^f%er%VY5DZN`ulzp+rpDquyX^e>|sKj#};ykwljLbH0RlP}W}5p6}PNAA5Tt2x8g$gW8rN-CgG)JhkVztv156hB^&xE<22+V zzhj$~afbmLeVS4UZ`P*)2@02j_jKvDtgp_i@3d?qA5!mQaZ_)2Gtl)a=q8e#dZ>2OS;XBGd<4*%2)a*Mdfk6j8 zo3-Ee<{R-DNKin#!a1+Exv?LCgBH?}AzsQ10^dCRb%X6Cb^XEVnHE8vg zsMpreU=%daQ>Fw`6=$=avgd#v)8cs2Yx60=A_@)DBC?=@8m2J6-0XWu%_$=m3!06c zx88N+%tEtRR4l{-?TdS&G@A9AK!O5VO82`PFc8Vntffp~&_THmJx{uuxaS6&WzV)* zxzCwU#rF$MFSKaFvAr0CVO1$>UvZFDHw7qkW4e(po#`xG+A!S$Nh`dg)lGV(NHYbH zpm2+(MBDCEUAKUW`NXXrm&+>Ci40$6(6!bh3f_Kxm|1D1R$z>xkp4Ki%Mq0)}bE5r>06)|8*T%jQ^@@_b1Na(Jccfo|<)$aaqt4kw4 z`TZ`2&s`4evyPwueubYOjutuFFcK=*5dyTcd&KW#r*y4qcSQmGLXm4Y5?-xj?fVVrB&Kod{7J}eYGRHyc4qhCL=@N*Nm|+1A z7(z?{As1st-%BO2rZG!!kUGy(;`B8nikcxGsgr#`0rsPA|KNZRSlM~idic%u%k77> zHMI4wuXq0_ge;9i0C}&~QXzaN5q`R}`#9IMq*RS&1BBU>^?DQ*c4QZWU&Z|;sGZ_#Hn-Ki_vzosdeQz3j6aUAhKM0PQB$`Dv&7f*t~ zb-Y7^QFI}RoEtWLbs)Hq01F~9AJXnfYU8_`%NPO(xik9MtkrLVU;=PA{dqZbTT9EI z?IAxfmvpge&-BQN5TgX=Q)6gnDxDfH7x)<}A`To`g1$mDjU9QwqC;Azt zJA}Cj26(FM0-ir~d3;c&qG6;am#9#Xp^`dtC#KN7i0&{RKKM~&7sCg<5aPN`z#!#v zI-P3sj%GL2dgE1ddPM>J2HQYx>bz%>JI3D~de%U|WX+HLNp`~EMtuW;f;Du! zoja#+N|}7byK!6Ni96hMQ@*JefHnU)Cia$mnNB97slW~$Pf;}L&&{*Xi8`?DH)Y%C zc%wMh<=rRT_1$JHE2zM(UzF_Pd3GeHuxH6Rg^^QJ&?-*}I_&sW440D&PhF{j&z>90%(LzsQ#*%YFBd8{^ zl^GEaOFoSN>Of9?D)3=?t@*SkjaYJuV`S7Bk&~gHrbc|rpZAhkuuf`}*sy`V0+I8h z4~B16Ikh$dPI5rNLb(+CX^+ob$^E~H*r#mRko0#B+M~{Ki+Xm{cy6VCh}^hFo1QYI z0IW$`1o1LYI?zH8b-CagEkX?)c6=6-lsf-(ZI9~$x`L7Qah8k~M@UV+D4~~H;IhW) zSWuy1L6SQwL*3zdt;~cqa%YhZ8~!f3aEp$Or}3hLJ{>8#pfQahFAXa86aLh^)?TUs zoBp9>lN;-C=CzKTd$NTQ-*3XKvJ5Os`Y}~Zk|1=%tSHKB^kZuIuqCNi>fV)|sx|7B zdI4Bdn`Zo3=W-zb&*`OEE(6PI(`<4)KN^qdBU|o(+E|(;e5)<=VRbtBC)mP#*z&if zQbwK9R(O|>)0HE3dz&a=nF8$jq_W2~20Sp0`bRir$;4$u)U*dV80sI#pj*Bv^4t5T za7GS9B^qwAc{_x-duPSX% zWW3i+Z%Kx}j{R&hpk0nXEXMPmEb!~bUVx#Ve3!aBN#mvS@&0%$huPNnE>%?MCSM`` zjm18l^vH+8i`r$$K`W-LHmk5uKG*HPrL!S~j9~^}&yIQspm)0C4&R!-^=RCALQU(d zg}#i}GHDnXe(s|LEXnPW>_+7(AmpwhcHQ3oLM{@u%-@xwY1VVjWrnsVPw18b zP6FwJ=k-0DU07QQXlq)Z8`#!cScjcaf?olZnX#fwoJ4ojU*CHVqEc&KUHK%f0Vxv%n(Vp zy()WTG>h> zVMXu*?-S@v!>!FN|Cg}ATp$7|$q+?0^zZw02=BPb;)1%lMAWLMWN3%D^S!ifTI@61 zqC24Y#+`*)_p@XkLFR#qltjP!F~P%xU-{@)@9dAe$21W;q6II(ERhUL2E$e|r62>7 z{!W|3=N{ALG>d)Ou0o3!N@o4flN(q~EqbU%3a0(cLxwabOt-Q5KF5B4M181yWYt`G zP^@N@^%Hw)`LH8oTKOK0Ycy=YPO`v}p&eQfp`GV2a&@4K@}ZT-JL!=O=A2L?uh5YH#AhELh=+FC zv{ZtQ7o7LiSw7}At43e5VZgoI0KWW0xPHlagRH2RYCG%_S&sH8$T}=!LuKdfq=7HC zi7H@K*_mscn)nJZr0=GVcB|pDG+r{GWb$)Gg{Vkf*KHWi4*PPLXWi6Iu#gpT9lqg+ zw&p*I#9cS86}2ep+JY=2uPa(n>qWC{yb)26i+`DBC1(>q=F5@!zgf0gGAClnR%Hcv zKoqIuRhiuD7AXOS^v%={Zfsa&u_bGjO!4+ah}}-b7NcBl$pnB&4onE%b4><~h0V75 z-BEjMZ@m5L;m*#gQFI^9Vd;1c5sLS-=db-$NUQ&n}wjVAL zjYw$T?u};jWi;te=%AwUoVsUisb|SM5#jq=@z06~xto<7&05W9;kAgI;cU1Hpv1s~ z)a4!>CO{W5_J2@)NW*Bp3mW(p1muhSn7=M%D{a^cpk@gw4$xV0*ZE%j zvP=oK-4P*Z2B@vKYZ#g!!N~0Z6`G%j_oX9*-wngn0#%R}UXCg9OA$<3P)G{HCzJr5 zWJi#IKW>Y_w1`9}f#KKyfyng(6p9~;*J-D-e=hrWhGth_a@7P3<+~yX=5|D?8~T(2 zlIun+RAqdtD`JK2`teP`P`-RXSL4tnU;Mv9&9Iln2ldfQC>l*YcX^3WBebI^bf2a% z*0nW1e z&>REd6SlyE*k!y)f}A?DJ` zN85?Xm>K3HmrGSUAU{f89FO0)-;}0bfCrdFcNmVomo%7?|g5Ds>-9UVF)peI6X!##a)?~c}i|u?KoD1$9 z760@!*#41{>GJWhbY7P_E7VeRM}?AL!iDsmM4G>8$Jw0~mbSN6wL(Jhb|pBNE()D6 z!vIW$P_e9tkh@vEOCyQ%J`EM5lRK8IUKcs=Aa$dXn)bSj)fXOB;Z?K(4np^<7iTm| zIOtI~n3hAUlm9GVVs%kd*n;qUJZ}$L<0-ATAQOa7*AZ6Of^ay-59iROiMfuj!a_Ky z09aA>v)8ErJPk6J4m)l(n2tFWt~8upK_OjkNeC$w!#Am)R-=Ld>P1p240C*b@`zVr zsv6Q@<^k{iD-w1R%^P)HHjTGPT{j2yDr>HQcfpt-88Y(yr z6p(x9ln`bA>S^p5Aj3QJBlvnuKPOXo=l&M0aO}E0{M|7vo2M&^X{{M$b`dkfQYYXLv!!ep zaSx%`2oB+G5ZZ>%98fat1PRF-c)1(?A;fGM#l=mCMHpl_L%P?xqmquHhYEnyi8Kh^ z!h7A(q@-jRDFQ($MI5B6IK@Y4ecCuqkp`hFu!xUl6X|2CEb{bmAmF(WyH`s7vX!q~ z0jx}fk7Luvfi)EY3nDQ^1~CI}B1I}1gkmlml=E}bT$bP-#)Aa?n1Fy7xP?Ao^U&^f4ANFX3zbY%V?QDs_sqLS+npk8v+ zeulO5`X$ygz&+2zwmQ1g@QLe&*!Y~x$`MQf_R8UOvPFq;IMsEo#lIBRyEld8XuV#y z5t<=6nr0|P>NP?$1n8@WbU-7GVGU^kpX#q#zBoCscZtA&e%;Y|8$p3@X{;qb0YTxS zQ^?Mnx8!Qc7AM1>r>mPc@RH4%gQZ-QT*Mk_JQ5jNm^`3Gr6S`tl>rN}x$I*@ z3waNvfT1cU4}ucouq={%#F!BbRA6u;BIqe;~LoZlrFBJ8{d>03|)MO@D)M<2BpjHwSt17 zlb{p=1mp|uv96g7eo@%8PQJ|XY1q+qLA^f`2&}#89xv!*_Uz~*LzhOeBL?)3c)pC5 z)%9tDWXo-G2^-dByJ*;YnSw%O>c|lPsoDuFT)HlNLo%~A$zM(t^Za1k-iYT@4g{R%Ig3(FtfpmG^?XGEoNCF*7ByU@Y-1{BNhwG$z`KN<_Gn={ zohPt%F%uw2T;dqe6G{P59~t^dB3%OlSXX*|k@dy5(Mmg^kkcS`hu)*ZwYarvwfw(Z zEfE{TJW$0zy_6#%$gvAgU14YMsi`)@>fs8a6jLT7Kdj#N|0-oUQzHV)m8hgb_LD?* zL|gLuZfmkj%$2(|6-rBIWXS)b3PXL{BU++8J>H_Pg>p@2I1H!aDI03=Foa8DNby2p zF?AOZUJ0v$^JyyNvpkD>Ma9ZQGc;mK{S{bBgMRL;HNMVBZ%0|OegNB1 zDp0Mu=R*4DRftNO7OUV7QKSv0UsbqT15)}@Gk65B*VdCS+&yn)>I+Q?=?2i?|na0^K3eJ-sAI=`f?11nx!W zrgZLVGf7afVM0;^^6?}m^oZA~0c-FuB&nF(o8kB$Uqgr@u};NQK*N9}GrG52E6K~8 zg!np{QDGshlfZu>(8{VQ^~th^f9)j5@h~JQ70y(=$>*D9j##IDEYo2|(kE~)a@8=P z`%SVPcZOk(s)A7!Lr#W#(m=VFcyV1J9oA`}G#An|Vu5-rzA~Zpl62ym$b^P{%N3~< zagGzf5ZBqzm%O^(_1f7m$HS1!3$ByU;<Bq`6QqU!25vv68w?W=3C-~ zA>XdiJT4W1QMzDqVf027GUnO^Go!uV-Mg4ts0`p@K)g-ot80{ zm91fP8sU8|*DzRq2d{M&Q(jztK&REoB4yY~2!@nOfsnh4SN--fn&8N)Ps4^KK!lzo zLhwVp8y~w<0p%x@<&!Zuuq+vv5WNLa8qq05(el+&(o1lVis|Q{6(ZL({R9wl_tKcr zE#P!|DV2JeH!Yw1b+Jp3ki4Bp(p~C2DJE0TFiQ-CNIi;R_t+IBr4BVWg?5PmGmI&)=+cJMsqsAymTu&sp@fB^ZVS*dMb#ZVkh@?fq zwF=o~+iMhs3JAHhC>$(&G1s3MYZQeP3CT2f(p9(qz~{~8PK||hnmgk=8_k`H3gOhv z{Sn34rG%_d*Kl)+gk;(p4(SSXy}xXY)(|*I-9*l&`lc|SWSO?ADSm+lq1ca!LfJQ1 z(|(L3LNKjWhEsXy$r`l^qacxH4XUX(oi$P zQ)l|ee1ONs%2|qpWGrWVa2=n-sCGX$EoTX?BsDu8b*QotZO|H0z(Fcj(qu+>hVLdJ z*|ZB$z(P89mFS&!?fyJFi>_%`Ddj;d7KQ%I9loUwscBjiDjI}h=b=Ay9a7=Nrkw|{ zAQG!9dO$nVghtcqDxe^dq)zMu3Z3SuQ}H172^tnQBJ^X6+0ZihRcc~NT!`PV#Ay>O<FX_UO7-xvZk; zh*^X|CULHpIfWRq^$8ZzX$p` zJcz|u&H9IR?~mP-x?um#FkLVXs~1CX@U8@&+Xye9hJknr>)q|4o&oZw{Ykjp!ksDP zZkQ=wcVU@+jVv!1|BRQ{ROo^MRPDBgw9b&W{?q+S+1X<27*IgNfIF23`jb{LQ25v~ zVi2RMVxAx&cuxrSdFAeb-p66-?kth4pb(X@9QEe!##4Eg@S3p%5`w?1VmVt3hwUjH zE(7nj=y*RhwQ0D!ssbt>*YRP>$5qI;U(hY-bok2HO@pdKV=U9FbxzN~CGjs$OI(8? zeyKmB8h6g;(2E>xSi6hvT-ei^fD$;}kd}XCHGxME;Ai>LHDR-1<*2rq5dhv{pg&%* z-RUfbi|lwwO96-sp9SNe2@-%gexsigUr1|W<2DTWIRtThhi+XNv&E6 zh3MaxMO*Ls^CP~JmiMLc+>1!S?+opq#fn@7X5A8I<(rEwL;6cB@IZ*A>6@JzXX$U% zEAbh0C7ENIEf+3bOUBV4bGvd~myQ#Cccdp?ECYyjF{+4=yIaZ8P$h*sph+_sH_Nnj zonXp@P;4Y z0flJdNIH3z&MuY3d>u!E2dTu7RIBvVhNE>H8E_Cv;zZ3Q-LEG<3)YDfc#uj;+MM>! zZ?>dWM95vO^5VQFOPFPpt1crl3ld3TrsEB0trT_c)PB=-3UkVYjt@R9WZ@%dr)7L?lj#do+ z5>^}98~~h~@kd32(B10MY7gO~dROo1(LHE+!B$2@m8h%Y&u(9p{* z#6STNm+RqGzksqM`%H$>vVu}XLE}bvsY^4h?hrhY$qcPjL8M|qKS?@ zh1jGtC?Qvj_+}424qHU1S+1y9P(gfXgG({@HH%M5gA(FX)@c@>iUpNR!MjvV2!9#& z!57knDIg;c({DV5An48VFh~W3_XksX&Rt^#M}h)M2^XEhnUT#(Ndkk;Ip<6HDPTB+ zNB3{JGOWH_s3AC{0(ZDY^CC}sZ+nB?1{)~A2vt`Bh&bHFtNZO)zw>ZBI_S&mLQKt$ z7Z7SG4`S5p_&4dq9-c7$wmltDRHX+EAFjX%LCu8dM|hj6ON!i9x8Io;;%T@KRe_{> z2CviSg@UK1pTMC{{ny}hZ{naoqb=y7U>l}k6r>dQ0EX_TD#(nEet+t;ba_cW7R-*P^83xOItwU~$4gv@N2mIi4%IAPQ>Rum2;GBe@zF!x(j=-9(?>%g z2^A8OS0I^nK}}y>1tA9lp2j5nEA(Fx4Z}%M2rANvIe^ECcSwWIPmwExjAeu+SSVy9 z5rQ!nQin0>Z88^@xDbz-!@oqiaC4bMAt4#-_Sw;bI(qM9qt>);k1)u@s`s7mu80(D zTJ?ejk*k9rhwa7(G`qk)hX@Sl*WC-rxytE^QA<{t5S32#nehI4 zwcNupP9~KKKqy{xitaq;G&Y6_3FR$^0QDx_elno0q&q{--6txN+fbPT;M|2j_=pQn zgV1$6qMDENWG!mQRR}I*z=FsbJ*~F-@H-QLyF!bKW=HLTp9cDm-~8lne!~Bky5EqQ z011{SMCe?_D?HsKJ!9yHAaKU7KC)s&vKgYL_KSIY60UWvWdx|f zxAfBkfou5bt6S_4pnBiZS|kBo-M35t(_2cv$WtU%x6~m(4VJ!_s~;LzN(3-{ozQzf8U9Yh zfAu=SGr;v8IG|0N0=v2g90Js9E{D*%Y5J(u_cR+mmsI|$IN*D491O;4r2I9N4j?P zQo#f;y{$*bld-I7R=3qN!1c8w?Te&yQRFPs>a`;%VEY!RKcj9wE&dWNUcCj17|^{( zcs;nRCs+4~XK3z7b#nW4EqOxI1p{)`#m`rJ0?$fB`&Zes$N-nVqK>e}VlGr+y< z>bpT+x8Btuof3**Dz{gcSNtLFq703!x$t+?yflFY4IPG3vX zZ?ZGJdM)V?u+~$lmY2nBb*e*v>f6l`%|*5kXlON*u=<1e=?_pn) z&8Lfz{H$2LhV%?r>vOSgY{3Ms=BN)=j3IT%C|hq{BYIh4yt@(XnxhiWdQ z&kR?uUDXO5CII&dwe57R43Fpcrd!+H?hAiv@CzDx5x%oz&J^X{m;R#QWeZ;Vt$)Fa z4O^h#u;BJ^*5@la9+J=JJwMqklnvX20>a0-fP>bJ@Zyt)J6=u*S>{PRJQb=~P(h5I z)7=1%=tvw|yd(=2gzD1A2IvxtJmo#0rmAYH;_na!}| zu8=sAm#Dq%Oy};#s`2dLh>m_%J6cU@juFaGfd{oK!x^4-WOZoiE&H%ag*c#JP3f|H zTBhx4@YSxmg#S*N-f5iYYiClOC6e4nA7%DUe>zx(A^v>%=vCZ z=Hx0c=)Wv6hz7^r^`_(~zM@&51+>3;(=t66`Cpe9+3gJ|HS4VGY~IRT5N2jMEpa;^ z-YSxIQ#nm*z?hFRpG_8Ysu-VIl8$j1E+o;QVutTTIt<9Y;cw$;g*s1|u`zEb4H)w? z9f<>4@IYr>g++(Lme(7~GfD!c{3mS+wPJ3_iqD{+v(?$D#c;on=G7V^ zL}1QmIyjljXQRz%AMRAn4ef0xpGXB5l9eI4l_4cjYYO!dX~?(Np~H3b zPM1xYq9kBSmRtBek&tP1yQ$ogiNKs+>D)q#Z)rbs#}CHmea!DSlw}GsFe$6>#Jexs z?{cd)RpFJD%!cJ%)YCFdc3GDvVs6!`B%(Aa>$nQn@(M^%D{iXenyVo3zF3;k^}}cF z5#7@#Ys)vMk@f3@VfH`h7eoyCc7dbmcto4pkX^FRSB!uI z0C~|P_27kJ3Rf6Si++-!!n>ocgOBSO0_0-<&{zS?ph1GH>LCzWCPIzkG1^MHino%nK#s*nM# zz8tCu8p=szXu*mIz3cJaR;%}ek}}Lg#o$`X!Jv}*(XD3g_TMV4b^Mqhp_s<&u&1=v ziI;;xB~2}=r8k^f6%l$ORyyae6)T28u;GbQW1Fj*(c@qxPP9 zk1DIIr5B0N6Zw+nZWxz^ktvumzP!i>s zwi9o-97iJbM9kWp=kTT92$pp$wns}*+8JI%!Fb&B&%oY6LQQKX}FXW%D{Nz@Sp~u;_ss&JsG!dsq<%rK)_o zr6SMew#Mf97_^|X_|0D{r7&V9qSRaoG{op~%rw0pgoI&zZVW2(8-YNtQU-$sLZf-g zL>!c=c&JO+n#Y4cpjW98M#Mxknx_V6&`Dw;Cz;lWMKy&`)h;{;CZf>1c5x`!pDK(t zr$8tuR4EZgyhJpbrvzxwsYXTO*qKmjJ}Of2pq0eQfBy)jHR2R#1s(rQvMHTFgHDnQ z=z~OvtdY+cRZ>{U^OV+6AQTj?#mdc%iHS%U_DIFhvTF1!Xe8;*<769aO`HnRpi}i) zXy{7Bqri~pauH}7)vxXwJ~k+qPu?^RqSO19N)3u=*+ z?Cv>z=8(0JCD-Q4qA1Jm!5{%-CR6}k5KC1h&zW!FKgZv9?v02iB5p*y$omFR?b9t* z0*K#pZ|r*{_u1^=1(Cpya&3A@e}_C3pVp7k+m19uMD0+{9SxpDF}0GN$Q@#eNZ?25 zz3R`COJ#OQZwrG;lpZvA5mB{6dN2wKp)bq>yS?^>BOug5UkH&>PH8b1&vTL(nh>KuHrWQhxDL=h@Oi5i9`tIu6p0zefs?Vy>A{r6I{iGK8@SU zO8*TEkT3G5_y6?p#led&UVL*P*oq6OVs=CU{Swn3KDhhz$%}_izPW!-;1yR5#`qWm z{&~x1+VCL0 zLt29&pOzL##YXJNNCyD(Ix}ha-H2|C8cmjT5I22&MN`>@vYoS_#4$WPAq`=CxA?H( zL44N`kEVmVZ*~hF2m*% zSu(nnVF$>VG8!wG;bKJ2Q${AaBcofM0s)pHKILR}_xKD`)QHblyT&I0V5Mj78lSK7 z_=n^eAs$yQRDXB+Rra?97bYLXJ_ANgKn?%(yk=`t*ozYvbd5qQG~nPXj~5 zz=&3Q;6VTr<%F(=Uag-D)Ni96T(c#5D1}37 zXTyVNW0i=nj^yZ|tM?88uC+8RSKaFABU3IxG&zgrLHJmmOsI}I%QHYWw!R)rWzp(r zs|gPx&m7RAQU4G(qQ#xHZZii01O8>l=hm^GWiiENXHkA&fxv;n9j9RLFr?ETCu4es zHM=50vn4EKJ(el}p~?M4{z;oyxBg;Ef(nmZ`8(5Doe!q{RmDT-N&HC`l(+^UrQvHi znbxfaZ~!p5*0vwXb@4W)KLfyY{?kW0`fms+HNAzj zbF7Y;0IKspjnvNmGXP9ivm7s*4INoe9*F8(vjhzIT+32AnlEI7(5;pY43K$LPoMJJ zdV^PTMXKAVK7xSFt(f_k9&;D1ZMRm;BfxdJZILEn=X_xZ8FeX#2NhHzfa-GFA}PY1 za~lJ|g#RhDyQMLeXQwHu7t0AfZk6;tyUk9=6xi%?FipbH?G_?4bk4z!k&?%&G(U7F zTSiV!YoHo(p$=N@nkyIpYh6xDP3@f1Vmn<4e#1M(MWS^s!4?5qxz^#!nhOF>B_+byj; z0$jG0KHP2IzyT8GZu17jjOPtFji!^i94>TABNH4paxKekdAi2Yt(FA=RIUg4v%E-k zt5X64WF9Z^z($VmyN#D@ctKo^$1+Mg5>0qX+-;;hH6!hqI2-&W*)`YAMjIYPPIrD> zo@Ta1mDerZK>(FYr}=EMlpVNkrPCw8<(}tkJUbfohvq2?VRE;gr@(;Exr(k)-z|Pk zctL!bma2{^X2OHWHPr0o(d4KR-gm1_9RN(@_se;*8@{WR93DijpXRjcB5dqdKbhb$ zFPqEk#xude<9yE_>^AcV0;rrnc`Bqwr}DBX5#3_6366O(!GZ`+yqGWe9f|p1CgWJM z>B@x{Djo(Io(VBB^m_BGne#tIVrq5-mxLl5q(tRzD>xbIKK!b&o;eacuEWPFw;KP%@F^TGobM0gxy zensPj`M6B z`U@=h!CiNgUVmwl`7F)W@KWt%K)`z+riJ>k)(5a4;;Rzs(anbG6JNDeiH8+sIL`J` zW3h~ZWir(Do$gJ>!yw~RW;xDPYEuR*i1?IQQU4_?inS@@VUY113;u>XYnfDS$3g%h zC%np*NO$o{i~@ZAINjXkCgs!t88|o37)I zBD|y>2m%Ei&a?C;e3LY%-SUD1fXOY8{fGuSa+;xA3lu@X<~qlIoKN6)t8-!s=r%U8 z37D?2VE|xq$)IO#sJADhqFc!TK~fjfK{B7&m1+r~ntVJ<2f7{eu?Y_%d%qgeR8VqI zrJJ1~fXdsjR`h)7s816D^j?r%G4H2u&g**8C?hSvvow>T=d% zVZ3}bkSoZVJBh+RJ)06K4~ikJ=nSuq-?&dylU6YcN+GT2+x?`K2SFpG6@3+=H+H8c ztpp5OT<(J)MlFvOm_XPLC;|bDK|#5~FOK-L1{{2ynT7O784qGpoRWZ|XSW7j}lm zsnD^$DFdO&;|4ZnKU+;x5>!l^;5J3Zu5@e@l5Lfsru%QYQ{xRd+#?`A(w$A+dISyt z|9KvhKjO`bvQN-$3qoLk?BZa@jd{e)Hs+bncG{Q+0&F#Ze+7#}B00dCk z|IKW$+GX9vh8M)l%5E{b5i@a|S2y#ln0Cvn4gf1Tl{RzA4e1Phw^Z^7a58=Kw(S)M*mD$BBa+@lGLwGm889orp$22u3 zznM+mB-5y0Yi?!FkoMBKcMyYl&+ZFF3=qa{EMDXgYRT%Rk7Y)6tE;HTy?)$jlbK_tqS8$lT=XL zI$2POX;6YMtM#XR&PC+qI$uD7!X@~!{&Y=8c4d8}SlcW)0u(gPLnBKM#U6{2fZ>1+ z4~+R~Qq+0iQPBADVszMB$gZ`bD&JRqU%XDp4v6dlh4iv!8 zEhfX4(=lD_HIow#n)=ZOwfQ2#fPFq<%TbIbXO!XL)?Zl8=iEg?)>&>aspb6PJ}kE! z&@b6|SvSp;?nIkN0mTAh96XBrz=P1$_?O4yd6O&-DDDZ537M8dLhgF}<7Pp<`t-t& zug>m8#EeYPLm_!>@$z`Ho=oWiG#W3B@+(?2(diIYt-#B~Xw`hw=QK?^Nws1z4`P?$ z8Sh8nyR$?dSFDsGyl~6IAafl*<8LOj1=r%Tqon9*f{{siAmpy%rz}^9LB*z95Hc}` zgVas@kh)Gw@0u)ZngUSD9SIVWJ~GYsbiA5&BS^v8$P~a#j#g)y>8o)+o7}j-?ecB--sof*LDQg=9SS^X-3(f% z>yu{QKcvaPp*+U(K+!(8=m{n?Z)BRANwOWMz639vq(MUQcB<&67i2+J%w~9wEXYpO zQ=$8j|GoPKHGR|ZY)o%qt|yHgzC77AmJ>E?$b4VYoxrP9eP`c26}q=l->KfrWHnvC ztyv3DsD9X@+RsP-k9Uo5r|r-UMAKN`UIiYssGX;YLh8=sa}%m| z-UW8mcZ`Ap<-h1-nblSKuT>(>MjEY6WBf3DA zi-6nh96zXZWkI{^=4-msi;t*ecb#ggGz+kao55iA)ktT!p*AVms-r3XWg*a@bkQj- zc({_>8myV#&Q(By!aGoq({zgCFD_slSBtRa>VoHTl86kdS;Qz9Za(t!t(P2sH8>hC z$H^j$rU>K;9)-C1k(G>VcEzM?nn8{KK%S!xG;eCk=AJcEmoBJ{@rVQX#RxuJ%S&K1 zQPRR^6eNC1cmCwJm@5{PIh-{d03grtSG;bRUMHl8Ye5AA;CJ}j{J^K8juBXS*z^42 z^~hX)NplNwqF+;FD6EZy7y^3(nkHOCiK#*}BuA(FRjbhPp4F@LYKj}SV9iz7u9>?D z1RFcyZ%6iyT#D3YgXBb$W*#M=Qz?T(gk4#j4yT7pIuAD(*$Fq{l%^@M0H>0|pmROb zp^XnhO4Ik*CdE9cUHER(P@P7Px@0>m6qT|IY&?=6@UMxF>4~1nTwYtLNTF60hl3V; zDO~(t=Sy<^KYXzt@68v1gD+R@{;A#}oyVg4oF?fhctwZ85lrF~Xi&P~zM~5<(+lPl zu~raqAn-2=zU(zBIxMXMq34UZqP-E#{^Ba8!Ix{!n&ZK2R!kN}ZZ0?^aL_vMwKmBs zZ;FmVQG_|5BhF}bgnxTT`>aGAQ~MCQ&gSjQA@4>1&tf-N7Lq*@A)ZZ z0>uJFK`8-3@4EXbiw&kFIYk{^kdwSrjka}+*To!OrzUw&yX@@Z{~VsKlXVxxXtm&1 zU_k}70)LZ^2I^`Bkf4Bi&6*=JcU`^aK;XymL|-MZ+SSLCWkCgA&;?29PNO<690>e# z)+^feF_v=%ioFdkXxzXU4A?07v=?MwCEuf?PpqQ+C~=#Ok=tU-W#p1G8OG~tx2<0(euG1xOe{waN%Qx)6pBB~7^6BnCh zQXh9C+VCK9`me^kj4$G}TlzZynCy3c-&{8<Epthng+ zXC=A?GW2iyFhg3fTS8taD^_VdMJh`sG_Uzz^PZ6JoK9V(RezU$pMUFCDy}a7HM;2(VMj()~1w9D#r(;f|C#;g8G)5sIw|6X0fHA=8Av?Ux0&COohk^;D_ zP8YV)eOZeQ*^x#@eM`pb2^i|KEYPITlD5$0+PjqnfrWC2b#wUD$9q=I*ZW-nL;bI_ z{RoNyd9rK3AONJIy;$;&rRCUd5b0+UiXB;?xLUl3ge1)Y;QM56g=Qksg-wJA1Uz*% zR?TKP9Gj(d-tV6t=}~ny9K-1ph|r@(FnmiFS1!ObA6~Q{r0?_~+bDvdB@aK^Eu+12*Eu{!V0~ zI@=ux{GU*3l|68*I4qyEA)o+zZgn!IbC&sSESe~>L2Z7FFkrvCI-!@Hdf7u%ihX}J zq$7I>z+^OkM%%TLT^@?~$jFwGpz{@z8nj$DIZq3|e6E|Cr{of zOoLMF4fV@pEmrT1L6tOk!-H_8Uc;bD8g!TAzWgvKXk2lrLK7x0`}t@^(|ySkC4xcc zJ*UG94d#$E9W1w}8st)rVrJWs;-XTbLiu*2Olwy3M)6?U&jy@|xv>^q$%N{iNR@iv zbgaGTu42BoMK*y#_on;#gg3{H`Q{3;Z!Y6l)1%50H6=pvnp5N#r;)UxG${5-7JL*q zXi=+Us>$pfn7SI)V8H&!vBMKId_92Arott~{B^;lHZm;uFttFWu`oa}bG6L?35Na! z=+Cm+M$>=Fv&_GU@r;E~UY*_JeZiS5g z*a*cu`F0~D8aAN!@cLwuY;39PJy=elQ{6C__6D?HPA<=C=r*ja&0`Memsj>vs^jVK z>nvFbRqVZV;bVosDyZ1si)>k~;#g2Q?`&BN=*4NFP#05{1Nv>y&4Y;i5D2w%oH9a5 z)6(T>Vjo$InNYn3)%A&4gM2wjhSi$-zaSXnpmj6RqCc~{d^N3GyBvs6gm=pU?V>D2 zXPtKf2d(SQI~pMNUsG#J%Oyv0L0mJ(llvxlP(!(*Z}(QN0t+gLKXT2yY_!}gWM8>1 z{sazM7Z86Y3Ph&Yv|ojYvmo%V1U_#wOHVgx`pQKOz@QVw8CQ5CzQ|U1Qypgk2d#_2 zr%XmOA69h8kf3l?Doo}_jc`UY?rT*sG${ETy{1FiS-n?RhttU~$ASt_ zq%>$zQduo(2bYKGB`2zkm+E*DG^jZY8m&I5nv0T_AVTvUqnRB|RjdG;fFXUvany6G z`RHV{?7cooCK@!u9vjq>BMdCQ7_mu16irP!l<`c0!le~Gb39)6?mj;Fs{iQz6Ct6Q zDzU+>2MG!qS7MEWXJ6dCFH|&DbBl_FLFc^F8BUvu4qPr_IiTMLojOwMG40}+&uOiq z;=&iliKC2`_!1^muS-=bkQEoOv@1Fu)GoMR9xa<$(!0^rVtEug5croP{_2F*8bwCX zGy-J_%Yw>Pr$Y4`RmpVFxuQ|abz&NnkSFN7(fDYvnXb7JZ#J?=py|{X^%5pjF9!dP zz8lGt0h(H&sAWh{K&~UdPUwc_!&8n&kye^!w5SvDTGg^kEq7EiJgD6Yv1e`JZ_|_g zn)U82?g0tSC`Ynp=AWkRZj}?>MN0hn{_?)3!KWJ`9_enAb#s`%2BVoUD!LT|p%>*z zuC)qs)wv|%wW{$ox%(*rR?YCBcE`o#$zatVZ3a_XX`ngj$>P=Tg`{ReI*-o+6uM|J zPu5NH{+wpYqabBCCA#c{*VDtE3*^7a5$&8D(T4aYD^_*+F9E`vYc7rGYg-mbQ>2b& z;Fm|4z(FhWjkVT|@ldE$`xXPChjy7xG|&nV#iWp`YnKD7s4`zS@_y?bR1B+4MP8n@ zn@YGtOT^e>k1=Lg@CD_Q96XT|g>@y!a!T}lluxFI@`=6?O*miXABFz8MPv z^uo&B#YH!CB{R;NVKE1`<0FA7(5W^PmRHgl1NwWb@1`_4@tHZm&POTxyzp->_7zf! z&G8^vU)r&dzJvg7bSd;SRhN@U^vp=r`}YY%#&f=hvCmJM9CCldJT}7rl9j=~oP8Pt zM4`I{4}WhXU|6Rc4HoI)RZX|2!tWRP83yNaow=E-feT{ChK2+8-@CpT5*x)eMOmmP-H4Blh+T9A-6={BBk zW~Q7@jwVBD4P=CNO}Cr|u?y^@{hGF0i=w01VHvv>D1d*!aGKMhLx5(oir=7^9G#jc zbflK1%8j*Jp^!Fd$G@^Oj&W29C%dLy3lg$d*<*9gkPf#MCSEi%+_9et3Nog&y4F+_d zR}LOM*++UZ1?&(n&z?S)dA!bYg8@BQ{`~$|B3kNlB2&N)mLEL5E2E{(a)SXqSpMzT zGFs{^XA0QXa^6#(?ZobGxyOKRET0T%`s$>ST`5Jan+`82-+L4UE^|?utmunX?`Sq2 z$XP4RY;Xwg>qo(Z(w#`@c-)Xn%gL~xNoqEJwo4{pXy1;sX~}HX%uCXWOEF^3dN%z< z{I}pj`BL<+NDWCt|Ew4Htv|{fT=8i~uuUQn0-MkCTlHzxp!JLj`B_o~P z6ay2AaUGsV=WcblsT0&?O&>-h{3`GxK?a--8lFO)DRS(~aDp8?&tK{qOw^CL!V;7>V)mg?u z_x%>#{_wY-iip-65722FH1u2imfCys`%~|CS@+Yo6W@e|zvcM;^tb)tr_$$r#kWI4 zzr}BYQ@Rp$YsneOYGPlip_Yhiry0#R+9v-{%I;P> z2`s#A(UsNH-gHC##J#8uT?s;ql*8;?u&x)y!O_wS6nwktG-%Ox*|%r(M2^+W?prHk znV1G8n#MKW@CJS%p_*LiMIPgA=rXv> zS-1!P|Dy4Ke zsZi6@Jp^$=B^t!8SuuBM_|cN~c*^xxO?54$Bnv{;tI_yyLuYZP(`LxoSW0#FDx*Q{ z6XTWL_A?zH4~D1o#P6tiy*i?!$@HpSdL~mdfD=w`N5hN@#tf<|OuUK|)GV0@MNa|z zGQ(+8%V0wfb7Xh5YMQ{9FF=rZ$4D?=*sdt_9MI=JW1%nfSNXd`I%f28L7Rzl%Qao8 zn4X|uyNMod-^^yRG{L(@j{rg95_{sV5Y7@nv(_HF5py7Lo(0BlhSZ5VlAS0`4H?rt z1n7$nJznG~py>i8aA1J{sl_K5NAWxghw~X{{DuHP-sG>S6!ZtH)A{h2E;r;jmo0q~ z1Wf;czToME=19a<*Zx7E0FJ0yy`IqJ_U2X%x;sFKbnS4lh@?Txv{dx9*|;qxMK+yS+eKwE<9OO&`$={#VfW?Pwx;Bs+J`6H-ItAEQot~f|V`@11ZXY#VgaO`U zclvyfHC#?h#gbATr&!mrMPdmJVy2FuuXnE_JOpTy^qV8psmW`3||uUeC;E5f8I{i=XAsXXS65=vYYlbyKX$8;JUbRKS^i)&K&ra zvAt_LM_72tlR}A?Qd8Gwbchx=L)vn~70XQr>+HE(&BU~)loSDlj~^tWr!)?p^D%_1 zccGgc+TyH4!+`gs0V|s0qth!~jmWsxYyjNmxd1~vD#_F>Sy&4XHVNR#RF!F+y7x2)4r zln_wNIs4GY4gZ&A!G~M^bGN)khr{Sq3|YPuHH*hcu>=a$tMrByw@uvPcmEXLDW)+% zaC#XIQs?nQ&Lu)bkwyqBL<|V{_i4gnVO)7a)zat%{nac7%hLzsolsNMQ66RGwt%7j zp$~GfXqxFZeMJ@RVN$<{h6TZY@A|z7bL8SuqMO!{;OS+rI(s?de~aR(7}NRiQVukD7who!=Kgdn4LX;+J+qgY zjH1o+!Bck(EK;G1|C?2BJsinstK!Xs~N$`d*mNx5sB0DSg<^z$$THrw} z@`^e|d-Mu42z^W^x7R(|W5CyM_4t6pa6&^d8qp3W(@k<8p{ji$oO5qG7#93WTChB( zSw-69#5=aeOR7-lfBX5$$cwY5H4L|4$`%FKL~VX#{Nd!7ulu8$TZUv!@(`S2gwSG0 zhJ`xS)lz*no@KhK7O^y2My{knoBFE4*YK;P9aHr+S{xQoD7Sk}>*k`O-jCNzh4$YjUeiif-@XXI z3-q+>ftKjg)gr|jL~Go)@nO&373>L<$t?yQR9C5V{|7l-6o5stP8*&K=Et<7?6sWd zsjt%_AQY4O#q0^~^G2M$$P7EwFEJ9TNz9v{9MNl7{lO78WV{EOj%d?Lb-cK-L(I1e zz@m?2UN8YBv&EG5jjXAS7ltS%+S>AD#)W=THq7tl4Lu5NpD3ocBbM_tLUt${t$f%c zdpu^QhT4Gndhn)i_CtsWsqgU=z_8%wg%oiXlp;elt5B{fO=Ki!SdrA!=BG}+`^*$q z`h^x)LZO_r!Th7b)`K0|;D`v#q&9F<&9retzJ0huZ4e`&nv^|zsW}Z#*QaL1NMyAg z%3j8W{?9~CqXJKpMt#~t)t^mP=H?z@fnrN|OX)9>VS~)=w7<}t$u-w4Q7bT-CL5&d zb9)gDD`fkFpB@iI1k|@b5fF+uMBE>ZXoEt!c}Ft^TP|51*P=$-jCsOTc(;QZa8RSM zaMa7ARWceZ3oX@LNU_dvFev>(Dy{l7n?0l#IB0lCqh@-Bg5JCn%1^6%F-K)MERi|r zcu46vBCL(h^=a_uo&5r30+xh@NevvQ+|nZJxY7i z^|eNc3>#z{(biw7ZzEzNG^OA43z`z4xrp)Vq)*pqY?9(s?{|p|8)TZhUl!Es(_Av4 zoA|y8{WE*UKz7u3@V!8W4KmI76=*kz5=E>&&0``oWp8lW3`TVM-|*#tMkieQWKXER zH&_6}0_nARNc51bNM0MM_c|s*Q;wC*FYNggT7#EOV*OY-r9xZQqxSwlj%ty}_4Q~3 zgrb~bq^{43N9Dt2#+%8PG#VZcH?+2zl<)c(#%&6)DM?GrAxaua`j?|6iBGh zmUWD+Tvl`s6(F zOz6rs&5h5f|7c=}_PXz@O)HUMgY=ySYKuPYf}f6-$wrBK-z5{ea=dGPV<#kKi&j70 z6-cPc-a2hjpnIOSb{^|{>n(6tlE%9|I$_#$QS5h#_m~M?IqF-EzuVAG4H@V4<1mkd znw($2*Zqh0@89qL*GN)Sdp9Jk@)+8WlHiDxM86(0m@P6%T9D-0mXn`1^_MOYD-{VuH-e#W>idycglHq$LKX-_PWuI(vu#!-TG!-SP=F8w`v7*UxSh(XgVW9w>Hn_D~Oa zF7#Vs|NH4gZZO(I>>DO@We;XKOSg&D_h2jwI&!{iIiq7Sa@MJSzRSU&Bu9gE=|!Ka zHLey!U0y#LjET^cy=49cjlAh154!_H2-o+LGc44THiXnS^9gPGOI+Te4T+IZmE$iq zj!qPw^yw_~AQ=bNkH1nXwDUAJ+UxH{RPUC?AVTxMiS}wWTuv72{>gYs_mlJnD|&-q zjqUfPjX(chJsQy{!N$K=+t|qM8sEMZ^GF1i{hwPbi}xw{N_sqhHCZ)w zF(3BGodX5qsWaD4W2b)Sz!m{m^k28+dgB3GREVWN?kSU}8nEj(TkPUG*Nw+%wQVx( z(^gH9g#WfD9(BDaOQoo`Cd z746Ww*e;^6jIL@JQNG!%Xai>!S^Kgq6M<#_xF!AKd}q?KE&hh}HLi%it%9)l*IO*6 zL&uQqyy2fd`{Xf9Oh&o--dpKi9HJF4jP1V7s+ zGS?1$>Q+ANk-3VG5@kDU>vNUIZBa|7U3OGs9Mt5Rp)qEYoi?stGmL;xlx=3%#a&vP zt#31PF7#zjE&Psp8p-->eNQc=LR-#rQFkRh7*RjZwfJg!b8oRwb!xP&i|QUA$%nqnX^RM%~G1$ zt5q)`AsG3`n=~g`3E0KIK!n__;2(cErxP-ifhMv+(6n}KE=nq7Zv@#H9kVWNHq=y) zZK5#~l2J-hdtSP`ZI_gckPy5Ye57ylJI^#-r#1&Y5Mr@+YuZKG&yJAppdHLwngSP zWw_Xw5})*RG@Xtl4vS3a+Inj>9gk(#zk9u98Q@+p{?MMgBNL@@eWJKy+XN2viN|Dg z-Zw3qk1D#wfPUG?yJ*V<6nEq$=Eo#x*m^zsCe2#i>-7W%rFX11X*?;ei%#8O1gN%m z#lJ`m@7}ut1#Fuq*WXh!D{9>CdD1e#HRXA-rr8H`!qgOYdFO>@CYW3%hR>WC4{D|a z(6{v5?06s@(cFBO%Q#TV=h#aojq3Og1pc`-y&yqX67*gS(H8)_*Xg=!E|EHsjv>qa?(2Ovh6$}yL zk_yp}A1}nsjFK#)3GTw}eTu!I4k47=(6Hg7vJHG{g@cM1P^?0qZGtDmf={+v zP;+Iq-U>s9CBHb^61f>dv1hxRDPfG%k~a{0(vH34jetgc{Hz=wtHG=BV3p;LCuc8^ zo*fwx8&>@CEGx1cqF7DqVu{EjzM?p4=Ih?kU^bafk`o-78AVr77>F#d0*g4f>f?aF zW`kq~(DVtnOIjxMZe@DwhHVwqf#$sH*`f{%W#25U=p=GnE7IM8NgJxrFC}vs41Hhj z(w}ilc$|!zD$89P8aDVkIsKtMz#3gX_wgZob(2susHj&Cn^&7b+F zr2u^m=qFE~ytx1T@xv!yJQ5O`F=8$e(;#&jQbirj5HZ*BD2UuPB6MDmI+f-EmEx;V zn$81@F~`;i_$#I6y7bDJSz;*N8(puPQlWdn`^yc6NI7kc=1v+E6s~v${6nZ{CL$4e zGAca|N;WUDIkX$pg%Mhs`R}q;1ccg6GrxXFGv9Q(`*=Y2R^|^`Y8JuhSoGLXtatuT z0fp$TAWDmg^xHLeZIi3aHMzvgB&w1M+3UINS|0Y%%=Mq8NyvgAKg%#!^EGxNEq4)& zkPv(?co@DdT;!){r2;95+YAixk3*33H~s9^D$SBP6`L61+3tCeCT5)7qQ^4^p>{l-;G|T2S+e913acTgM4CZV3$OpT*L=dPa8< z^JRJ7dC}5nj%u*eZ6*{2V2Z8!T~Pj|x1paOnox{{W6!e4DDh#)hjB>%!%?4Zk8YOo z-b8H+v@Jr6ny15vPl`rZPRWvQ&Yq-*iR}?0C18$iotzu|vI-@0dWDT~PjO_NNRYFjA>$l}@(A$B=Vm({wFi&ff6v|WpUkg^S; z`{|knp?7R^=AR@({K9&D%I_u(^Ctu}gKr9Kg#-ogcO85=cr9uy z%~DW8W(2U8=nC;Qy(L8V;IB>w3ps1785P>#*6;)cjdM*_;Z{u*k~3=3(hza z6wZ5vMa9O85}!GszXQ6=O_~iO1#~zJ{w}zuvKVLzZvjjcSbV{ehm$1@^+g%bEcfMb z2Ld1QZRQaKUbEg;!1E-BxBe=u=TGTa@Hm+~(oFlcXgC`DKuI%xP$QDO_fuB_A{ca} zN30`zqPuuxX;2C&)68YU*QN|}GCD8B?jzj|2lUHGcm9-a{*(4=w)z!P-Ls&A+GsRB zrko|yp{_Op2?|Jq(RezLz1zApupH3Q0?|#;>%n{|BdM+h@+fGa1s$cCsICPy7_d?6 zjgmf6U9HCykb~8)UziSkCZw6y$?I*&gBsGFzNOcXUJYdJU6=NO1r_w3=$mxis;>9s zK;TDS6nZz+UL<{+ScOMgdx|TQ$YJwIq+)Y|=oM7^;#i0=)a=K!wOR<&)$9fXHcI-5 zJufEkb>$EwD4>^lLdTy9kyO{qj9}0~ES)qJ+g$S^XfR--Hb0RQ8+ElgLBK^>o2*7n z(rVY0H3tG8`E#;*HCav4tGVm)XJA1EF+Uw2$@r7V6^NV8Dj`bS!f+UnDQT)!FY+&_LZ&>WS6W zJs?2=xu==a3$XG+w7T5mK;UDn)68Fv_c7M79MDm7nosEo&y{S%>T1pi2AylJ7h}F! zj%nUuCC62oog{e;Dsa$3jnvFbLUlD#U_k}_vSx0(1$j@uu3sj3Pz(8(_l3)uf!cg* zNl-v7wU9Heb+r^hz{O}Z?da8wMwtRK>JR!XAEwmRA07n_#5;YFHJ^3y4pKoOJA+%T zU`S9v4MNJvwIp@3C6)uaPv1sX9hK=z6p(%THvD*0BWD~c(-$ac_*}mc-O|cjzwx#s z-z@2h1iH#f!0S>KBv^jK)u>BacA$RC(hd%VkY*t+uTv8s^pK0p+M|%E%SDz0I%ZAG zr-dIbt$hXNdZ(Y762)KwHn*>>f zR2MrD3_9pn(&DOoY`(5vX)s`WABbHTa#s2fV9-I&kHi;AUw7a2QBoQ=*tbYsfU}RqohAm*Kd+MsG$_{w{n+4U9Dv~ zpugwpVEXiRvz(5G4ZWf=p-WMcxggD+-n=3%QK1}_pEsg%sV+Znd>s(6<$$A_ed^gh zJ+iF{mFZzPh!ynw?GzeS?;>jIdj5e06|}tO8`@PeU-3p&AywD%CP3)w$;{C0}!%G_UtIk4AfS0E3Rt1&eX=v{Pj+FdWd)HYU4Q>)J+wfa|T!ma!|X zHXP8Acln;Nd^)5q?*p3p8Q;X++1SPtmu zx33#sGTKMK9V95A*I>4z$$@-bufc)9_a2xAWiK8$5)@EN*cxI_eZ&X`9pqK+CWwTt z%c}+h_HEa4hb{=+9JowRk7~A`=k0dRgeq#Lq$^TaGZ6$_e z*OO7wU9T&1mIFF^gsUxBd=hQa8`VaJW-S@dub-i7IgKs|OmUJ(% zNSMl)GaS&-|9s7#^7BLXP-=ElbzT3nM1?ZS<{Nr9P`FiBHVr0apYDfkFkrvGKBa}) z-n~;gV?7z(r6Vq@FX*nl{H1P9lo^!WD7%FU=}T6coT7KRC&}J1&74pw7f6Z3eEgd3 zCnMKH%G5{%5+tr!FKDS?F<8>op_z=PH=24PX^9lgtu#}*Wb%-f45UXjQj!L#i{uqw zW%^|N`UM$R5pUrlR7rxuIj1m84^?Rjj71`+v6R7pecrL@ae#r`$*iela=7Jy&iR%l zX^(|@6IVozW*RmZ@F-|pi8SmB_CiH7Wm8shFzDQfbm*Vs{s~fY7_{ z^!UMJmK&aolkH%drY)C~Jg9wCQtOZSZP!6MXw)2-I72rg!vf@$=GAz~52=e(tjjAN z1&!OzOM2FaSFmiHW^aOPx^B6DITNZkooYzN{BW=4kWH?c5}|m9Ug;Rp9$o6v4SI(Y zdlL~YgCs>EwIgzn zqEU_^xu&N=^jiFTDk&2>X(S{S`6xzYl3+qmq$(H98O<2zoqqlYCTr87Dlf(rh^E@!*MYy)6L*8K}0s4)tmEe1XG$9loivi zkuAv(zZ%<2`*U69W1z z_^1aVT3fKW@~9EQvU60goMEAS+nYLmv!HX_icCp1fkO3ySLLmCBL6D7M?SE0(V(Ef)s8i2M)#r9Kp{EY*u^D7 zNVGf@f*&S=^ehBTMhrIVW<}{KTvQx^m#~s{!iO0lJ&o1;KmF`hBwbA(MPI>yK!!Be z6H%DOU_F$J+Ff#QTbx@eBtxk&zc*j@vUwlHooLeZg1ZqK;@q;Q{`O{@>3Tx9#EAq~ zT*@d}tp<2JjCfB5v}W3?AcP6J&PC)-s|gMc1Kuwgz=z?}5~sLvL84kM039YIWqmbH zIjnzJP{^=L==pd>2`^&2i>h=rfkO4BkDeuM*m*TB)zrGC*d}u-8Z)8E9S-|z zt6A_<*MV!7bVw+Mrh%VN6fs)gG#C^VE_t8$J`#49#-5cSh1LHWGXA}8WNZm z*ZT$xI6wm(#yA$#`TB zIona8DeG$T)zqt^ZO{xb&q!BbTUA$!X)^J(7gdXes;slf*UdclcK13f0&h{yJ>HYD z^!a_VhTG!h_`A(`weB5mCex7_geAjjeOm!kTwCKafrs~~J@F$x8N6)Xq&qt_qXOwn z$$|(Debk@Ock=+HSWsL|mqcjEhC~2%q-jCpqZ6J{`;?Hb#Qo>r|KP8F!2kD`zx(kI ze()drNfe>eW(?WzDSjx5|9)%`c-W9;4Ehn@Ba_ap?I&YIaOk6=N5-I^R83Euohw0x z@_Y0_TrBC&CB2e28NZUvjAooFNu~T4(_z6on+@H_&5KzgwLd%i0ze9AMLZy87TU^g z%%o8~zu8PiywE*QO;wy`GGU#u5e4?XYrg0I`K^cq#WOky*)nqOXM5m&=7$==-p}{I z{k*{a-5$8V^W49FMI%5#R9vKYw3*X`lyv0M<}!mo#GZRKp1mN96V&8| z7y|Mw+FQzNo2wpOSwcs*@Tag|(ZfYJYrOv}fkO3W_<^~U+x;m-72`)wG4A=l>|M=Z z=9;wch7L(MzxSjmnb5orl^*Xrheh$wNwLo98Pdy`2)!HrxAq|i8~wsX#Y~ZhB!cGU z4Tpr{1^;9Ihfq??6#2kX$)KPR@(O=U*SAxbd6;yX>+_0aLi3&1^p;I8YZDcv*aURm z00HW)*L3;na(u+Ky8Gv_p`9Zl)-x6=jm6MBLfR6AH$C~3)<#!fBtH+Z00jM^K(E0Vd{yCno%*e zUW&#xG;BZ(`GA%#PSVJ%t06rK8c454wD~rbs7o)9QiZ3~cJ4<3Bq$(9xX+Wiqb^4T z7F4deB>b1nczOD8e$=GSX!;y^_7*s3-HEl@YYxqjuSHQpp?f9P%?p=e$+wWtjfb*s z6me<3N)l~{xC9P9A%`E(Xdz9qx*QG?6i`kN#_K%J>dL7{K?5m+FOvAGOPL4;oePwJ zD;n>NdS9k*it9YFfzf@5P*Aw;6&};=VT0pwCZy|;m4sp<^tf+ffBTFse?DN}MCGj+ zT7e+l3Os0i_noC@Lh zgfQ(jKWP@U8qfa`UTgZDt;!M$>Dxlutz2Z$t!cJeg<~jWec>>Xvf`^-`n27I4ox1@ znIrRByzH!n(ZK~i-Q9El zNY35XrhWkn=?~t_roB-!<4K=;Pai+zH-NdzYzkdh&%rYBk3WiF$lt)P=yuQvn~|@d zD=OU-BJ?F0!tbYHjIbRj2)7m4E=9G=J3fr?-Y+)O>CWB*BINO*jaLYJ@5R@( zeB%Aj5pS4g+MfRujShgqgmyY&<3kQdi>2dn@4n6bFZkbgn;Dk`ksJPe_G)H;(ew)g z4A`60t^;%aJ`iGao-LapwMSGxKBTh@%Z-_r5XPOn1>?%9F!g6;Qx7(W&T?Vj|9T7d zMN%;8PT8nGJ$@vt`Qux#hBaV@DPwtR(@!4W6Ndch?HEETFy)hSjL_x(4IMu|l{G4JB7WXRMvkOl)Gy1i6MmUJ{yTUJ z@s!BHIMZ>+vo~GulGd63`WB3GGBD=ja!gHDt_l{Z_wR4R9OSvcTP^6xR*`b!w~%rLNyOJjWh3d#TV5sn+gmWr3&Eh4 zdK|yYs)M&tj|(vv_CL!pm3{h<-b&hx#x%EK26%nGJ|fvR`u$soNUa@k=l59v(;>`0 zg*y}LmdLBC|DAro061WJw5G%@S3TO;Ft<1CRH~D27*yQ;YC@*mg1uFhxiH z>=_^4S>844l_I7Tb6RIuAkZ-38YkCk@TO^2)V!j%I zg^VRZz!N+?Uy> zS>a{UDk#TfoOIg^DeAy1(@|xDH_Mz78qnZQB(`E_F&x}xOMt@wGpG>;Z03bTd7`Uz z&Wa1qhCFA#GRcM{IN`OMZ@MrLUw_XF3?eHiHYIw96c$LQxcQHtE>8c4y}R-M{r`UTA3qr!4trmGc~?k&dUgfJ z!HgQh!=rQVgU93bKtL6lE`=Hfz?TNgW793^eUVRcDpt*XaBFq~gUa9fpM9}B-ta{2 zJ-6)i^?15?V7AYvwWngv&{Grfts1cDmJbb^o|#^=h+f4~oX3=na8RgT@jrh+b@_|* zZcIfb?g3KIA-{5Fa0l{ z4_@D+UfXiA;5F@b$6qLlC9<_t-=+Y2K8)>oL08eY8=@GSd01vhj)n#22FvB(v}gWT z$MJb)LB%k%jc zv^sPwcdTgQQ#kG^fWK?tD;m1Xl`zGT4GtNi)FM)BYH$UX5x}0e)}GFXRDp{upg7Q# z*y|ubUk_+^pp4oJA)#rSWR$Q(1cQ`K&=r0A?Ih_VbWTuDk?`Vu*qz~?BH^3kePl&X z0sI}40S5fa-p(=MTfwmB!O@mK|IYd-+ZB98nfTlp$(;lcFkl40HjGU{)AIf z*xEH#Jp^bQtCLrP+BsG!Jb*vuTzmgJ!TYVEn;U0X3J%;AgL^X^FV>}-;uNzgqU_!m zB#4+KyZ>e(tJ|(gW&l8%Bzr*D`Y!J!k=r%NJOpTyWNEjjYm#wz0IzZsVIVxJ+9od| zIYB|@l97qJLGkjG;&B715pf`JnSb%scs@2a^OjN2w*RArm&wqpj|>DN)?mFB1=UW;BCyx!CdE<4dWsk33EDEATv|f{Q1x# zq?K~|w6m4rl)Fv;)ssdV**X0U0XCY!)F0^Lv+;ySy?t*v-(AL`YfsxMEG5|Y86EIB=#ueY9hJ%HaVtUHiv__2cxq-L74GFaS1|(w*-jlXk87IXr+SaWXTzCXN9J zB+s4-BfBCE07z5z`IAxBi|bnU0|oGFT!%lQOQc@ldDvvFRk3s>nt_xBA=5$PFaJ29 zS45Iwde;t8%z=O@#7~;}w4u$wBKEs>N<9Q-w|rE_P=?MhwS*yk1jtcg=Pq$@1#8mAl{K+`7B2U!E#wM_s6 zU=yncbii`AShWN|t+i`fq)8s8>1?fI0Bo(L+HXf|4FOP_SQ~jyPv^v<@Bo?yht8zf zH9nCCx;8k00=TjEMRFBRS8F*ufF@2~Y|;lEx|S+$T*EqEVKuw%xYe8KjzyN?WcK+*RJe7UI zu69}ipeFm9kFqgw*X$oCfE$bHu+l(|H@jMF34oe1MN8NsvAUKi4iBJ-0{X!0D3O+S zjes*#avzT6%qkv;Wk3fL=(6DXn&ze#Wh(+7 zCVbp#!ZYKI$erKpCoa4dP6D>j`n-*_FX;_oI<~rQhK(G|C^q&v#;@seL=#>{gdjur zMyzXwg4tA~W*3b$ev5EGL;1E><_l72dTTrzEKbrMQU|ZuhQ#BPoNI56j>gp4E5^9u z%=Q^Ep341cqkLi2#PV4b2ZGz%l6r5fZt7K1wp0EG%7}jiBb_KQ& z!xHTv5SoLOXsQVmsKz9ec%^a2UVS=wF%N@F% z`ZfUxHQ&}8Le242w7vSp!9)nPQ&(x-~ako7f2i2FE) zDejHi-UtOO6#o_(>sz{tg`N$doGshO!UVv-@74i2L#fTOte$;qmbEFtvYS56xB?1s z8YfkkX02EbO(hiA(EbG4`0vVBNJQf$iFGAU@{YZ*f}NXUxS@Ds*jU z&g=4{n2V$Z)b=V`M1h3jPYy?iy)Q>{#pctqD*z5=5)$D7yl6h4s{Q4H_HxO|UB!Mo z$qg9b|N4;58Hf^~SO-qd{u=~<@9^un`2jbDsjKy9O~)eLb5#KY@{jU&c@?(i)UfaF z%Hj8)_P+e{r@X|>r@WIbCW>VR2H0fFNHF`F6S+rk#1&-}+htN2!Gh2^C&Z^uMT#oc zFH!-+0Qd^+j-iTTu;jBM<{tvDn0@j96IcE(kAu<;|JBzo9zXJ5#|?#|yn2XK6G$k& z?|)3w8|0n%QLL-D0N10WZUNk;&L>Cjmg0C~(!?3nUcJ4No@nm%Y3E zzakGQmI!T78?_My=${N{qu$+_T)9(Jyd2CzU3dU*@sp0dhkTz1_3-Ed6Pg}hHA&G@ zw9^J-6e&eyEsji!qsK%!ROs+;8aOfJ}AQ$o0@x$?TBB zJ|xA#2PzgJdf6bV9MXG&74t4JC5zn%3r|0a1DFeVctYQwNfTv7vEd@6WhN9PV9JMS z;4j#ehulw~%aw#BiWT7$)^3ScP#BW#mfyc2tN=r(@d2Zl?jMA8&5k5*b3V4w-U_26#B+vlzJRlSCM>uNa8% zFd@qY)L~vz6O*)=`^p7@zQurLL)T5tWue@k0id@UP_Cc$Wk8_AfGiV!Jy@M&<#1n_ z(8D303m?SvEoL2U+G*tb(PeVhtSgVMNwRdAu>LAdHPO z;l4U4i3CjfICaAP?qEziAm+)@mp|?+QLMXO1IA>HlQ%}rXYZ?Vitw!_Jf~&GYgog=P@$~T&=Zk$6PY;K@7>IH4Ob=^y91}63STf>6TsP8ecrf`sIUuE28BQT( zSwn`mS(Y=`c;vO=zS29w!vs+uj_e(qqx2q}j**^u9&;glC62EV7kJSHR83lh%CsQK zM2P)_S2d<%`KGsGIyYHE0tHyA&*#Gpou;E(x9xV$Rqy_r@o{Y}9-yH}*u zIK}%M1!$Xb1u@u0t>FAobpOqoR`JH8_NY*G2qJ%SGs+sU=L2C6-Q6mzj`OifjW0&Wc_uTHL$>hej|X#l@K?_F{z+A;Kt-(J?`gNTkwiu+#voN5| zphN(+aGpg_6EpYUOz2JdL9(e_vo;w(nGHO77QoQv`XAcPJYFj@H(80+OjlxnO4Tzo z^l38J>j&%NoT-|(_KZ|GFri5OGxKY@9hw*7%)f=FdO?GT6$KN5G?SYN{&65PylN&l zP}(#Z3t5^z4FTeRzi3{L<+)B>;pen1dz{l@#JS<>Rqx(}mfDkh2^D)KIH+|rVgP*6 zf`{wp`4(Tr9+-sfF&VzF_Em#V*1Sx#9Ly(tv`yr_uF(Pp?0$zG8`EWja<7r%46}$4 zO91qOhxTchE$mfvKy$F60DhUj-^?d(Xt!FPO%#{s3BCY9;{4F=clv@a1sCQkF1K-E zZAOeapx<%7_;PZ5pNVDw9j9rf$=|u01A&kH{p>Ww*X3`^0sXSGzMQQ!dscD>0t+he;hTAS=|G(i zmIFFcfVOz2QB;=#4wUlyclm^?C@yt;2Lk_+OM^b&=Kd_XW$=G0I?H(ycvPnGjQ77L z?NX%%P|&yrKMp25nUTkqW?xCcmly{vr1`L)ZN05a69+2rX%Tb}X-<3w<$StqLiQ4B z?KdFsk*9`ynZ>d%x2M#lw@2j~qh^y%0oQ6c6g1FQ4f{v*+M1l`u4}76f&%KMA-{Si z61uK#vK-KZ{Y3xm?*+fseoHDUBoBD)pg^Re!tX!dmk&gOLMYAT+dm0`+R|V^Ie*$D zuW{G%4G4VHd_#JZc79wa4Rtl2z(MPZt7Yw%nLmnWL>wUQ^hPk~gq*vgTR~*WsLfZF z1cgvXt!UMuFC}X04~K#V`ZvQqJ#UkV)b(!y3o0S5Hl~)3XEU)Xu7_>eLqXRiuy=@M;B7V_o&N z$c8`9R1|ky6swUyE2Mf}kyNKhTTSw+nT+<-+i@uP5z^#!)@7?r6H9_ZsH@E9i5sWlk!XJ;u(_|E_m<;j+=}h3kn-FjO9lv#lbTD;kQ^Q(#!75)g8i@Kbs?YPLu=nJ6j;1Q$wReF-R?|6pp+t zUQEQnlzFLYbYoL_jB%W#S=GXTPwK+A-_p$#T^tknty z8if8j+exQbOO$s37y@_~N3`h4TS4ySi=UdlgbQt>N1`Bc84_QwXH%9DNv+9HB@qvU z%q_@Z2PnOXlHJd%se4LlDHEdS=}M0tpNio_h{7+$6~`RbMO*{{`VxQraK19DmudT? znCKMrm;-?i=@)A{CNf?1hP(}tPkHw47SDTb*=*t=zZonh%kh!-XbTz^-0*>W<`la< zaVny5OU3O2w<+_%c87%G-}pd1a+%M!_73@@{%kb~{}L8#*=XruZ5C{ifJMLXkYLe< zZkO&aPJ4&$AHtq3Tc14YEPFBmSo157Xt$>S>ALw$n6zbknCEph$*RDvo1Q~<(RDgV zS7pD#hi(Z1`L{^>E$2!+sl|d;K5Y5G6U?kcpRYSI^Ag!r zFIzU#dq#^DJl~O!p?_`E4A*0N_37UDaC7{8Gf&U-X@j2ZdrCJ+^n!G^{AAkWdDGRH9?Q1>6?syzHAg~B5s)8&3)x?| zuX$!*zNYq>w<6nJq4VO-?4ag#rF-8`MNLNCk_(A;h<@lI;2B$rG1Bq`_6NO|;*GOgsE96<33H}?Xz?M(8*;0s% z|67|Mx?1G4VAsb*yZA|sf>HmrccUU9SoG_nMP`a>zP?8nQa1G5B6aQx_D%L~U#l#v z{fBMVnhQT^v$DB*DLrd^^0ti4RAKAiZnc#zH!MWy;ajsZ=)t~nUc5)^H3h@=pBEz` zSoB^o#=fGP739V*#fhXMslEQN8nDAPxF@F4^mUAlmFKQv6BU}e!A+3u1|?#!temGF zKYV=uk9>f+SWNeyr*b{mS1zB_8>Q!GX}cz$%H_b;I}wHZFQ09yu=Q8PJaRx4$8_x4 zlY*V2y_e9EB5eG-qK)6U2{78eKPs3w+`EYdL0IU@?2OuY>X!EIa}W8k{X?X$;wZcI z6{M(a;3ENt0XJnZ&R&%Aa-_IrGD3DZpi~g|U9L_-gug{9sC!<98ppy}DzFOq!Tf$RqAReCJ^U|W$(G3p z88u}~5;D|pyEI|-L+Vu-aqjg9ZS^3ns4clrj{T;EZYm1w_e1`d(B94Olniw@5Ht27 z3$gy=LZ(!YIf~ww=&-`|x~&!b6wrbSqKOCdZV&$@;zDr|S(Kh>Zk)9!z#3P-8*Apx zT>hNi=q}szXKm$KjGgT|uq@7{Jkw^Ph_@Dr*x4!bbF6*elaYLWC+Js{=v=PTPOhHy3$8E9>3dMKE^UbVx zpZ-V0>+cj*DF?Jwhet^2gXuuNOWd7m5TKqnwmzJ%GjkQkgiY9BE+`p0GrEc`?6z?{ zpet{7jAMg<#TR+?XgFKY(<4jzk3cJSIv})(68zy%khsR5Pv$g1Pup3iyn1p0k!1k+{t@qzS=0E{-wpBrp9oJBMg)-fcpm58Sc)Boa)uW!onr?NV z396Guz8Im&YIN3lZ7|js|EHuv_M;%XG80X-5O1D*DyS=FOad)YFT!EOE!w?ch6i6g z`Nqs%+xxHN8jWI87%)Z~f22%^-o_8OJhZARx+dTV)eH*R_voSO#R=!q7Y+3Rn`4?K znI6zVz+|CVG1&4XtK80o_J!l`CyU-!^grD2iA=00eI~G#5*W~L@^_qhc_ha#)wqst z+>2K<3Ngi~#UDgi$X?=39qGMzMwdUWH!{;GPNACMPDp~F@Sgd}a5~}Z{#b}sh30g? zC*5JB7^1|apjk#k{&pOQ<)4pf5sd0jk${S^SIV@U2Hdcrn&#zX{1<-W$^5I%aSw^q{bvpgT^Hxc z*MCTE6i|EZIqlNShPsP(AIch67&s~J2TdZd-GF2W^+^)YpNQb3D46mm{=Fs#c&|#P zlvEHaA0!rW9cE)DO&7%^O~NYKBKfc)O`AvGQgy&_k{Yp}v=MmN@Nr`Oz!IdH-lYlL^qQJC2nr61G89S6wx8J%A4CQO$2ag+ScjUnVMcXY9so$%fgF^9+ z__@12#U#G)R^1Mmpe1hw8tS%0QsYV|K1@X0wt%j?U9Ih#w(`CcZNfWZ@P4}l%=x*A z4ENi+Up+j-8pYIl49u)4E5I1)dr;f$j4=&W{%p3Y?-3}O1rZjqzl>#VqMZ>9ihW)& zGc%%91SZ+K!Nr8Ve3tt4k?nDJOj}VpTxLy)4?`}{(vTUAJ$(Gdv(H5VQH+=n*hu0J zOM<`^@p1p)KwjvkIL!kGqCh>dqD}lvDI^0t~8K*f8OC2*oCFV_Q&Hl-a;3 zs7F``Q)wCXoW8C~CHAL-76ZWA>B|`7CJgP;gc;TNh9TT}g&~;%`BBSAQK6 zf*%AU+26MMMD`_1&0$f3`lY}i{GEq*3W_kyXNkc4HJ?$pn+AhSq@7% zeAhTg&}SG>xc7Bm1~@bfcrT)bC6^hx8Z;MAZg?W$@q>R)*{v3*`9aL+I*k%3|VB>;k9bl2;sdA-8!F! zMnD+}$t#egnRmOtS(I1Jh^V9%XqnK#4k@<3L`s1H@;UnUz`X06 z#QyI(#lA;?dx5yT>9t_8;+~Mmiyhq*N~{ zCW}pYlXWsuu3-*iCgrbA10-nt^^{H+i)^Uqt;ju1h5+6*+8uICllP{fDXs7*=1zb( zp~jtV4swf4_>>zUfT4OZ`ZC>=qS%3n&?Y(X2k9^h5?B1^#SL|e?jrzF#nT{k3BQAr zaW+=m`heg<1}unpZyq(r&-oQFxo4}^n?Qq*PZ|0uefzC8WgH3;H>NJj+0VZi4Hju0 zQ0$HcL`0h;LeS@NUhqK7#;LS(9*@CL^=?uhfYx$Kx{7I0?`E-VNi>vynFZoe$n%D_ zF7Yy*C5bxZ-_P#UWK0q9Cor$11iOBoG3+?0#VEzBLI!Lx$_&RM8CdkQ3_u682ejv{ zm|Tjv!i-loC{=+yA7tTqQMHs}imB9$RkkHo_|G5y;IDqb{|AFU${>%&vu1f(GU<-GfZ+v?fS2Bv3y9`z~M@Ybu zJf+Of9#MCJFRBs6eSaw>HDF6#0ip7VI|Fg#?5_eUDZ#G1cpW@`+r=wZfE{^S9W-={ zQ*npQ{?bZnY_a8Z)l#DNXp7K*E&nAe059lF^Qe@hapoE9t>S5wgN47yEd18oEjnt; z*#EXS+X_Ok>e}@C*`W96&yT<0GkHszsBdI}|GyMgFv8Y11sIfWcqJZ26}1$%+Z%|~ z5;&+`@M;{rq6$;&B`>HLjHmMfMS9nO_PHIN%3Xbmu^Iv!H}HogLEyUhxO6IAv8M-& zTn9kNy^Ehd{<>>aA*2u?4A58bgU4S(H7>8BFuuwO_;)-&=>GD zjyc6L6DXNO5fYLi@(PzZR7aj;LB!{_S^B(5ZEiCl;C*i6PfKxDo7-X@#NM5mj`^#} zSYFevnD&*^LlFn;Ykcj4ecbUe{p$r?t0mVM731}Qu*qK_Lhc>9j(O4J{}H)aG4pN$ zTE0hsdS_;K7#x{eIy0?=Bx+6gWal@~XH}c$jUEDYj_?Mjr_vlt~ zI=7fazos(DeF!Y5Af6tK^TldSeP>~ORf(FBam$}Mb&|11qvL_26<+4vQXYvDF7SdS*que zzOPibGRy10s9&Z8cV)OeFZkHrA1=!4 zzbU##Ndr~1swf1rKG|v(74sZVcAR6UygJFl==L0Ua5^8BjNN;Vi-llT)@fSMO&z^2 zR%8>MPH$?9_R%V%Vhuw!3!d7#69zfTiaroYKx+?C-PMVPdBD_Lus zI!ykr3X@%#5EeK8yDWw{3_dp>ub0D~`Cnm?V)$u;no2CD0DXQww^!vnd6L|?qZk_^ ztfj{w;4kARjL*(@D(1}*K9dl~J1@~iZ-=}!h9~H!WBHb@Vg!odRwZEtU)&eGkBb(u zWeL;x;=&6R4};7_81uyZT%@;RiwHss5r=}rW&G&5x!re9o_H8!&U=}0BB9A!rO2Wa zQd2*3^5eoA&5BK)$=-4Yfz8+H2_|#@P4DS~Z->ce02GsPo?#Nf{}mIVcO&_>aN&+( z%E3cQf({AAbIpq0AfyKk=s2awT#5-m3ThQ1M9k$gIFBYT<-|cZu1A1-kwjPYz92o+ z#z!KA$%^_fGC8IQI_=!))3RRLcz2{n6woh|I&Hq1(P)0!U(rqV!g|Hrab&&ZK;is? zqMTVFj$~PdnmM22+7Jkcu?x54NG^rH3ae>JsV$M z%!AlZ79+}iqeGGTK0Uju#KA1wg$MB3VlsS5@6SCm|FL`61YEHM?huw=z(MPx(2~o0 zidp4WnXtHb+5P65x&4RKQ1nd-8i5u0L5oIo^ntoR^w^4sE=@%+;m|I&1PB7x7B7#@ zF}a7c1^vJLQVUI%atNza;6dz4Bv!cWKvV0qNG10iT!oNbuX>n1Rjh$(jF(7}FF=7u+f(EQtJc zv25s=&{}r06zP$4Q9TCW^NSUAHdb_kivCxat|{xn^cV#EM~l-w?>;i|b2@Ynn46&j zWo%iwC?*ynnvJgQbXaleJKpNqdo(#}@`+(ZnX$o*VoHLfinf6aY- za7tThX9X2SWn54ZIB5Ndewe(Wq8O#fjT{yM;`!xxvE+XEbNX-BB8jjzc483lm(1A3 zj)Q1pg;Y=!1{>V)QxYVuuf{{Fd#P4wO8~`oIxwtK2?)8Hbk(2PE?`#>4%}ZN>J+#C z1&Wg_LLqu5{M=nrS=3eBB@jS~Zptl6zoKh{r*A=8av^;y7<<1}SaA$7U=p7t6|%R( z@Bi7gpuCRhmH2+;${e;&&&hhlsg zAW0m@Oi2DPz4%>mzFk(H3;^xQ>SR29HST@68r?fQpno5UNRqC=thpa`LahU*@`J>LBbJY%X5^VYpb5pb!ZZ8~T&)H9+5sz_i2US!|qL2_By zEsB7%?6|Y-j|lNvR`vi!;Mb{nf!*7GP1j>;)ht=5hix0;2m#A)erRl<%v<*XjKE)` zO&n}4_Hb|0BTAsuzZ(Zzmbkk-i0Nnk?*LRd-yBc06MB9Z5C8;i188*mDSbO*$pY7W zZv~IAgk{~bBzMV6`f!uPK?%niIHr3ON^Xe%sD4ngz%?IBF#;gLe{Ve9#eN_i7qh{R z6I`{OI4)DN%JEQ!(f@7YCU5LH+&j$a>5C|-GUtKS}LQ&6IZ^0g_O{AI9&X=Q_b3MR5E8s^H?xpxf-$TG_v%UxK(ph22uFdC+!h$-tV+WoN^)@iwhb_ zKIh7lKLjg9(ufOLf`qYzWMk6pBPyF5PCNWBWiSd9!GCWG6T=D7`$(QU*&I)gDRPHy zp6c!G;K|b|youV57j!AcvV0j-;eJPPZ}q!vdwqc_Y=Mf*;0+Ol^IgS>aM$tU0roW) ziM*S^sxgJPQoQ#DFM6ZlfRcv)u|4`~+K%!H798)J!Ja}E8LlZA?zf*e<0*?Y3r*W> zWCtf~R~6esPS>L~svwABMkxhNxU?p1<3>tQwa16p z>PK%{k;QowgvaMs*FFM>{y&3&51N39rXXz zB0Q@Pz7J|7JEbK*9EcM~XRT zWdpe4Kf$U#kq4lpT3yj1R*xuUUH5d&Q~xCvY!;P1>3`AFG!A%c_RhvhY7TWNI-{G%RPcIqKW^q|KAquLG64uQ>n9by2v;<9m zhzrD3ah7Q%gC;Z^6R>WYRp~SOx8f<-pyuz5y2VJsae?0HO*VJ%A6;Dq-V^(+V{kZv zer|$&JOl%8?&wq$1)dZ6(tvvyfqq|J*uypMqrJo7a15R;^Iug_e<~PBEWW~0%<30m z5n0~zvK$?e#iMLJIH}c0+EXyZ+K(ghCaiE@7w*mgAsT~DD*tQ&ZHS_{BUqtz)laKA zSKw3@p@LaWs?14TVgEqH4c?;VWTMIoMz|B`17P9*IKfZn6M|PmYg({Lc!CTOxX5uM zA;;s`vr}*g@dS2;6waFoPMUq+(Np;Xx8(_}7F2jsbxyDRXmuWeiyW6+`LSaGw`X)k zQbBDi0M*&{9i*_mD=#De#JGLXrL3H(gn0$Yg%U`LJi#DRxVpy{7Q!;S9hy0BZreZT z!WCt4|E=8ODnKQU`bANRRL<;qco}g{xI5@DG1yQAym;r zOd-4$zHL&ReL2*p> zEpcw-%4ZOTOts{L!SQtRc+l5J1eR?{k1C{YO+h96roG$kH}z+ZHAS+s2C%bf@6$z^ zswG!KYhZ;|nMP{PN5e_?%i&NjS(i193RtL>D&ao$XbHZoDj7r}Q{!r~jLVLz4pb)*V54s(b{Xp>+tV^>tA;cA8)myPAK0R&}ciG*FSd_+gSd9*ncb#H1ycxp zFC@ar>*)TGc?PW{9U}^vQXbOgMjHQRThf6FrMIUL@4H^-psT$b^Vri=0WGA^U7L)M zR}>xNMRx=T4|ax;%u4&xN_GYr#Pp0Lp3t2)bl5SDP6-yoshUp%5`!Yp*ZKF|_TKYN zo?&fIVPB$5WhJdeqA`kRYJw(6kyB&u`Kn13sF1$zOUhM1;@x|-*KJ037sT>;tf;&R zXc6EY{s`fs*fH9?JH-7V1FVbU`D4i-OqFeMJbemSs4s`q3DT18kt4N`LU&2gHP!c>EoHK?z?HGihKW3X3HyQVMwUyDKS$1rq#g zwiL2ku+<*CXzQW0WJ296N(3l;7liMyeXN_iWb-^h!#IL2wUua)#o9b-jVo4q^ElBa zC99lfArzdHMQZAg-M!Cs3bn;*%HRn4TXX}H(%6FT7NtC32m!oku5{X>;ItUJr0(e& zD7#GIe>xx`xNHc%q6DrUSC}aOJ?&3n7dMrfzhrncGAqUe zsxVXQu~hU9Yi%2MPpSS}rjm_fYCz$;8uC5BB)M_Op-fqlbPjJeTU@wh*$7YAsJn4p zzHImS@QbR(l7TzXb`DEe)-8*#X$*&lx2&8C7Q>C7As2tCOp#m)O}H!X!~HX*7sP#BK40%7{r#_ymEJY(W%14YeVVntYf)Q-#DcE6si8D4&yLtt>SWgMSghzDh z{%H7pcMy-Ni|LfdidoWw+F~poOISp6?SxOY_hOnWNWvgC@@pKGX$+Q&*+>T^9A~Xo zMWac60rnFIDe3G zAn#zavKHfTP*M)DAB_#W#q0;e2)6VEyB=9VUl1f=5G!t>!Sk+LLJda<%NDB(C~drv%5DcPlK_83AD zWU(^axYI`O{V!%^4340S&eEA!oUk3kkD(f2F>4v336req<+m@f)YDvxt+O?ru!%L3 zUlGU9xUH;Y=OWQIwx$G87~}HY?+@GBpeDV`7fdt>l4o9V`pao?o z7{QkDWd{$DPC>yhHogdwFvzT*o;OFz#b*5;OIT!t`D43}l(CJe;9?_8046*)r-L3w zVx)19yfDc#@&&xO%i3=8okN>>m*;b3Ay1)5=PCdOF-s{w7Y9wBL-xkC6M{-s*7AbP@; zm0@&&Bjg#>58DU5y&r|zBMY_HCYG(iI!`q-LZZM7Duh4L_48;r*h0h;Ii$RBVNWec zQ>_sb0whU9pbzxt;k$9`KRx*{lLk9M7Qz=X-ql}XA;fo8H5#Pg+_6SV$e_SQfSc1% zpE6&W>sH~BM&x3mw-*GzDIh~X6I$3mR3C-x%{4$tGlYbB5e&Y_@s5&%?`lm{LWvp3 zOAsOp_Xo4Mn^jPd2v~tNs~`{{R|DI)9Ux`&m#={kIb8$68$U)3G~h*wU)ZV}ndJFy z-=6cd-I-1fQ~4PFt-v-Il@QplP2`z`2sEffwohlscDHwc(Rr3||7)efHMvB(cO&WO z0)$j$mCP|uuB;GUBoI3y6}r{NUB&lzo}{EGIA0%?C)H#zgGdtB1*I2HNwJ!`2+>6X zvFK74GpeCvL^-)J0&w9Md*=AtgT2?^B5M({Sw!2~1qs#*n&Q4D5IN$Opwp&5UQ2}N zBEct-@L%ujJZW_CaMttZm2}u7jmY$qgiKpFQq${VdO!(nqwt-Alsge(s<)6xF^fp_ z^XPke*Y1pSe(qG8{p-pqD#av{{WK+6*5dy2>f~zhh*TdZq~eN7H(<$3`s992jS`WF zJaIpxS5s}a8jBaAiv+Rtr+1zpZ}3ZGMtpdneN?Nl{xO3{vYBX`K$7ozlS8X;PrL2D zKH1(`neOBmMbclLEGgfiN^=Xf7HTFfaA`-oqsI~2s zDCIMC8760$O$RSB#N#Wabn1?f3k| zP>D*A>NFl(*yA4a?cn)f_;Qe{{nhlCh(P4hJoPW7s7mq(@sbe5vxPd52PVv0C zNBO*;$)Bpb7C36&=(l_VZD9fAc&17x7;ds)D-_;={jRpKLP)hzluy zG*N~4a`+0;og5DJ=5E10ksve}Eu2uT%ZnsU9F|eA!6=_Mc*5X}_v9@i;f=u=RauZp zK%g3gF|L$wL%!JW4cdK#hbW~f*xZ!w6{75eT>W-S$@x?9?h%0|iTc!8N_kYQ%{oB331z zH@`?+TUg*>6uc9}vEU-cJMtNhl=L}2T`J>$$9t%+=xGZ0+EmaLv^eIyB@B!PDDP4&h4075H9bq@)-Dyok`K4P;a8O zJSdPDK%lGUF>Ajw!5R47>7+Y;fRhHQM*djVj|tC$sVbStA=3Or%8`2W(RM?g!a-pk zc`S=a#HLQy&w~My2+=I4oicR=d*V{ad=)imL?)*?zLq$X@^eb!Bx#TU+7gHy zH>Dt64qPeK$f!}Ut`eZU3<56vJa^D-gUfM}=$y+#)isEY+67{>x{ zmZ|cWEjt6Cga9G7(ErTRkBvVE&NS))Pqs2now5ZMiDE%RQBL3yu|Cye-5u_gNLIF@ z$xD`@65*mc!x#T4bvBDf#G*kXD4ToTG`rHKviU{;mT1BlU&M%-&iF7-te{miU4}}8 zqsdTEtniCOHI+@61H42vB`8Fg3*YyS_p!|h|6LT)QsBLlZ<$j5U?73N5V5LYFxp;dPiMn|E8s36`n=Zq4|B4n-1&($1 zsoCK4f4YAGQ_6Me`{AHVd+wY6jDIvrR%Z8J)9GR zD2vp>(pxM+f4kG&o$9=93)Z;-65P|B-guEbMX5Rws1W@kcZsHeJvMr9P7vQ7zXkp%fIy19E5@-mK~p6VS8h9f=lEhw)=667;{`z+FE zDw!A5W``x{Z~bL@w36Cj9EaM+6+}wj1$BaP1oe$*t@aNm`;b!l02D!dYY<=ixS*Vj zBdC9?D|ErJ?$}BB#<2!mu-rfq3E%oFj#00oeHcejPmgdUt3A@d3tAb066{l>E>b;f zJF{T_vPdEFi|GFA#gPd~kl!3lwZH{2eJO<{7{NR>Zo1|cl-42%@>}CcSL@k=eSvWV z_0*&}^;u9}izLXWrxf57%>ftGHh~iCvq-Sg8#hMG1!pK8Oz_`Ey3U?XKn$rk4&y+RpJO{AWJb%wOWk{N2Z)v zCN<+Y+iG!&u;|X-%)}szEm$J=8?FDY+UEDO2iqL3Q=~UqUn;y`&xP0P{3bxUr;svA zo|CNQQ~SKpdY};JmF@FDw*R4!7M1NU0iw=Sy(r?)A->sqtRXYQQnmtz9`lXX)0LFl z`zzjPZ7ali+vK(@?;EW@Dx^hg@I`?5-AWK&28e%Bi1U{AcLCC_LRz%6y8+_fN)Yz~ zL>=M2sEnNeQJ>XY6!9=X?5(8Ky#P^1_$?~qQGoc@mB{$l08x*Li^}L-UvISZRjG?2 zP6HWVs8Y|{SAH8H>C5LAmCau^f3A&uXNeKNU@A>tvS-!LEbyr1HS!&U-5c!nr=4yK zX-;i$g{qCkncA*iE(lWxJJAZgUV{L0zZR*p=9=Q-IQQ3 zY)z0%uSG6Muxs5e*iN58)qoY+Q%u`dC0a#;7+h`Q7RU7}WpK5jTO8M$I)kgt-Qu|3 z;Jt^2JjMnScI~N`A=y4AiNz&v+>^-2qoc=DVXJ`-|!*t0MCY7Dc9g9IGPpE;dCr{838g7deVd zJ6cv%GVgd%WO|ynDl$LqQ)GHSaaCk~Wv9rr*$JnKAc?KB>)`M>;;6wF?g5b&E^E@?!3+wp<#2a83+=cgFF&0b~`O}Dt zo*6J%OQ~!B0OQR z>VjPl`RLy*a>48ND>wq4FJ6EvE%;u@i}hZ2FrJRE=pOI&^lYubtmesMaFO6zB*A|| zWh+YL!<)38<4PrE3=0;``Qmz5Dd>7wP~7XI_*Sh?7XmVE&Q{n-g5HRTyLcd8T3yM$ zSzM{ZOTJjRZm>aF5W=5tHKG(?;k= zqxdqS)$#ge&qY;Q?MYi5pI0W$_v34j=F=Xs)s@d{kLLTawAJg4=F^Mh)s@fd%f=XK z17HQFIPk$6`>JOY+-AhzM|Ovv1&Cts6c@d-S}sO(TnMBhGfwkI^u36yAj5}z9~I3$ z7EqzPB(Jwxh=`+0yH(i=X2=3CgHKR}@S?om!h|kbaNRrEV=7Vhp# z#gI~}pc)ZRu{(^80T*0VazerU9`reRv!!=um*?>Nw4Ot&`tls!>*_hQ@m-$758IwY zxBl`R{*o@wp?4>j=kRU5Ho@7<*=5OLkTn}{J<1(oj{=RK7k z+*d*4hxdR+ck@-y_|mM=oRufbxEoU&#!Nu0?7y3jwt}wh#&YQ1%nG_5m6k*I*6%&JR1{N{@g7ajF#SJ9 z%yl<9gj$gQTcG0bZh7t~T7KpCN#jTG^Xb|k?kC)MU#T3vmVc3wV=_E$@rK)fhAbzv z30kJ%XI*Js_?6(*L|y2W|4NCyGNg!gr&=koZ~YXp?r$q4_D!84)(iZV68kpxceW#- zZMwf7`9BM$A)+KRd%KUN-f-_?mxr!8QDgWjxcm_7uZVB8_7MWr2yW zV>Edz2qSTI6Rnu#dCS7eobJ5*uo=a`ucBbS%>o)d7g`04Z?1qwPl{GSnuQ|3+8Fyq*-%B4R6M>B!RQZkx)J@)n^OB7PBQ`K+$Ml zn4@-2FNc;bjGqEhQZ>^wiO7;=X?$FOr#XI&8;(|68b4B=mD1?GxokOnzjOrJRxeB7 zmCF(68UL~bzQG-V*4$+Yd{a9DJvUmGz&G*+8hNSM2>HHgO$fFT8zHYR92+43Gx!>@ z5%T_Gu@Un13^pAbAuqRDi^N9A*E6V8Y{WTvdH#R}`Emx0@134Q?`afl!k@t5cQibQ zUhyx_;aB~hL(jIC=WtW(X?=$Bq+mUJ^aG_xd2@4fQw?R9zfO+FU);LY8SafYjn&>9 zjt*|!zID(aj>mAHnkgy=6fLazv2ypIo_Hd9nrkJXi86&`kP`D}!o$r~fB^eF}CFM9rB)x+vMmVK} z^Nq*>hyWww@(9a&oSaj*^O+@&A+VR-ql#i3DF21R&l~_wR*RLf<-mmK^j^Yi@Y}g2 z6oMd-XX!9;b1a>&N<4LPTxm8C$I+*;CDLi8KzZqy!sG_ z9pk3V?2RXy(nDH@pFj%fx__g3(d)icYBOJt^++v75{k35Zb6EqC^}}&26h+%d%iP8 z9!X>sih<`FJwp_MeyiKw*FKZ^MtS~Rz|M7F@k#l(A?MSV07QT{Fz+@BQYC__=Cgzj ziqhs#e3p=$*~eyQqwVG!ha7}}o~Id4Y6>x5)3J{znmlaq!&y_5`6|Uh#WR#sxP~0p zs;Ry*=lazENQGS7?+=Hgs?&SXYjpVe24)7rZm6ovxS*YfeyopfrV;0 zD5;iHedIpq=v)Nz&ATjs0KV1VeZ7o3k3aWd@%icb?3&sSyi9*(mVxt);RH5g0eGrE zq$`5e*fD3F8UU$=3rFn(ObL#Kk%+C_eEtVP5XcQswAs+Z z5!;y7&!@Qr#nv9)ScVdkv-C^T1v#I6_80N%QU%~x{?h!iR z-g7MQRD;d8qu{X60}YnYTtK3-32FxM<4Y|e3{1AM-`w~8q*YIdGJNSGaG=~&z z5T8oyw#?T>A}`5lsiAO?o=^D%L8{^GaeD+E!AwRq;d~n6F$DG!&7FA*zLPS~^JxfS z*-K|4`+SaRuu~qT37yYL$M^@8F_M&IgMV0! zXU##yp0ziRqpPpxGqCiv$a|U>MA1gboH|ZRs=y0%<#>qPKzM>>zMGteU1&asmq%+( zb=Q%M!}#!s>sY5coU=haQj3tJg06%V(w&zmO+X`PLUrEk8dbM{{p(*V^Dy7YWKdd+ zBG6~d!=4`M=UXZ{2m!tL*C`Uo@Aoif(5RwBp3kx3fLaVB1nZ+NPBe4}d*soK56aKi zybcKyd_oE+4yOI~C^@puOTkEuarMl&``0NILRHXwb?+cV?n}tql3Do7XYqkGW8Je( z$F(tL)Ae$V6Cd+ck3pitV+Kh|^7gpji|S^+m;>{@z+I%NXbYAn^}eDb9FedmID)_D-!3in*Az4OYK)(dC?n9Fosm! z0sb`{G&hs%J!0E`F%sh~;vmB$bZ+*Ub+XO=M*Y(Doz2}4B z%YL_Wz(#HS!{mp0{qx&nvwzqcPH^v~(&UVTs!5_@>Kl&boih+zcUmeNd3_R@3F7=-*!XG7LN*b_VeEv7m04D z%(}EmDggCQ9(7-SRy{z_3r=`YPKHMqygSts?pxL8 z)nr)R#yqOitq{gO829;BB$DME%fc5*DmgOqwzM1uqCWR6O@JywCHVJm|9uM=_D=SP zIE^r#9@8=m-aoWueD*XG%H&k#_U7N4ik%Hv-+W@}s%=A8vFZ>ViEiM`03!u|*&B?y2S$=6SiNpIs%@H~?PDzh-ZK*NuPQmCOnbCCyCq*) zeYJ-WeyFeCk@EMeE0Jor%nV!V&RtU10K!-#t@oA1M!T)eR>=akP$e}`y>^Fny?SbN9aN{tY<~Xt zszjN!i0gizOZT(irw7%`?aqrfmVq7Izp*<#IEbhDnOTTY`W}*KT7_>S)i>|hht*w% z$1rOEU($N7ttz&zEHY2qxl1%yDL?>3-lJV5I@#vNhMv^iCrM~j+`^Q}*I;XB zXltgVqOFtB(6*UEsW*&*Qk#7_?e#mJs*4Q1oyPiiUMi1LZ`>0^JLHoNUZhfWU+s1I z#&xZXnQ2C{SOH9Z?w-d4%>|;d*Pm*V%#<@p;y~)P2j)6e%$oZ~#m^cR)V0!&j0<-L z1tHWIFpV8yCTU^^QHb*dZ}vrW8BQFcF;x!RUoh%V?1=YSwSz^jSpz(Ee!ea8&apyV zA!g_@`|DEoAZ2`9$s)#B^^J%YhSS`(gmSay%NM%j^QxmqsW&1YiNSI^NycF8(zrnb2$oBjf|DX#0sxQK*px>=7hJ%q;xn#7qX6=` z5u(=#j)>zYtxcK2NF8c8MyS`n?7kjCi^s3Wn|Shq#D1f#p)(5NIyT?H3q#paLpx?g zmv=DLdfCHXup7sT1NR%_z7g$@%uIkhPhtXLkm{?%WMDPdMf1>l&2`x_7F(*#WkoWR zOlEUfGVQ``+%zGY$6a_rnFOuAcE>^ca=2YQdOWbWz~i1z#XGI}tMY9wf6h%Na-?zfz+N~TiHmq0II%7hJzkd_Zb_MZ}XvP)lV`k zz7FZ&Ra5_P<{W;LEjhc#wRV;ns!ms@h05#-6tG}Qy8lD{fn##ksaPi3YapvDSws%K^9lI@g6e6rn{as*t2898L@?51V&g z$?$-Jg!uIhyph8gpA}yv+p1THN`@7x-Ya0v+(PW zuo}W15Oy1}?P!V*$GLl5*A9EM=v1Uu_l)oQM8N{c`W$--9>_ihK- zDC2bBkIJhAE1-F#aULDrE&+1v_Aw(Kl+$Ei(iJgB zhcKUOT7j%j-{*o4>d1Da)#*`D-^nom=61B4S2M)Vba*LCVEF|KHdUUwy0olE5;Gev2EA} ze7zBGEK=i`Sqd8Gc!=<>Ub#0WZWjLDrfzeh31)rfiTqP>j)s#VjxDRA7hDSI@a^}y z^I_NBpw?%f*ne{Wb2^XBK=MU|rY4hRD=sL1tr;y~ed-Se8D(_V1(Q+SajV(purB6v zO(&4`X-sJu9E5HHG@kCF255I!m2eJY>JcJdk6d5ac7K@pv`M4}Me<*_q$RW@JLNq~ z0A|S%Fw|GQM3rjycST(S$&3|RST2t=Q!-(wuLp9G8*qmWAZz3YDak0jfuanwaG9k* zte_`W8b?qViuzh0-HxY*LS1meVWd#1RJu4KWx%&l6%ktf?l%5I%b?!(JRd-d;Z_?u zQp*+NX4R9u<5qX?5Yy{^4>KByG;H*yIjSbrn`TkeAM9*BsfZjWVTioq2obmtT%T)- z3HKe%!sVUN#H>oph$0Zv{L&QjlC-32c-5S9jJ;{q^04(etwYWzxL3wOmkn!YX`_&2 zfEUK;G*1PTVK9qvXz8@0wM>ess_9S5nyr~E_4>DWpH%lq)3#XCXkcy%XB+-U7A|H9 zgxhB2R_#_$@(?(oH zQ>X+%{Xt+aB|Z!LJKq^usBT2QXV$Ouj8>n|zz|Kd=a6sKTFdyAcvamp1ohwDMch6X z+Z@bcX2FvRt~tBi;AQ#rmn7`R)--rwVcaI&XYfo85{YU4ylfw^bz*a2lc!Q>>h~~h z=RdGsx%UdYrnGR`#uBNEp%9|}@!@Upq_i)tL9=(4pZ;TT< zu`sm)ruzM_iMINVc#TVmJMefo9GL#wFgCmtc}778s+k^_%b8f;NNw>?bTY`F%aWC} z(~)t%8y$L_V}3Eap$x3FQ$sUN*HuNHLo;(7-y#dM49mW}u8%$Aky**G^qfIzKIo!` zrDpHlrhm?c;?rO9EN9!vgaOp7g<(K*qK`@Il<5Clt}$MSw3+e0BjF73NM$y(mzE39 zxT7dp9?c<3W5MC75Wlnxw(!3fcX!f1jMoVM)Ri$u_nEE2^b5vn1{VoFZAh?p{EXHd z&&-;`=v3??nPUiGZNc~HmWkIs@;3YzwD^gpq_c%Jlg9rnVVhG_C#;{M%F@GiR75Pi zdPd<0ap3+O3$qh!I8n5OqW-&W9Q`zZRW^Qo%yWV52VXsSv}1begRge(J$*>?8?)cm z8#;k$?tqC{D#Pv^8%eYEk?{StmFtw^rdD#qTk~^lSL6jCVCf9v8V#7Sx_Gv)huk?_ zqbD>MFEm*52>2p(-&sQwV=ReGph21vBPLM1Yv8H(iZMS2Ak|PsfeEL!*gxha-5Rs^Ir1X99xv1U zCs8}R`ph>1jiSCyWZF}iiP$)S1UrUr-(fsciIWlb;ztKK^o}icy%{7Vd2zrQsdqjbIRX<_U5D$9o=Uv&>Dp4x;N z>$=TMrQH{aV+&3c_Y$i5>K%EE{8)|+Vq9}#j9Y_oGN`=3{J%QtZ;soqaQ2E4vPs{u zm8^j4cPUiLNi%-5Z4PPfQ+_7Mb2*SlqSHg8ROnI2H|DgtVJD60=5QJNASH1)~`QzY43PMYKrO9qq;AKi3 zGEL%=7~^i@KkK04mpH0x#C`poD6 z>x))|z_?zrq`Yl}MMyM>$(Rn|rNijB!Hz9b6Rf^uIe7!h5TLAQ&6`LQq-waJ<07d9 zALa=O38wzNCEB*xi|lc&|M>SGD!$?9GyYF|G-|*83=xw@!_jNL(8AX|&6D{gW;m)A z3}~h-S|E#5U$s)*CBHYV%H^o%IegW5M(LyU0F$wmp^|m?IFDx#^GtZ0jtX;{4Y2ZY z6QuVr6e#5tdIOeWjMOHb)Yz7xmd2hSPzxS@SJnm|I+SJMb^Sdvf`a`5*blp}cnYga zoH3$8Yrb`?9;ber%{BE{bRSCIvFO^yd@U3TNru-o9NdB%6jg|`MY;?nvyez}L#X%ovFQ?VAU-*7Ee53c%Wh_LU!9`}SgfUM7dNq<#_07bmIi|DvPYuB7E z#vNLGU@GjAnM}2!Fp-r=A;KEk1I&MPXRGC)uNhW& zgnP%RBgV%)PtRtD0m4J(2RA64uH#r6TFwhM8U`=>BJbar}z1ICzm zxTDOVe$P;2Y0Ia-%``Jr2L+3*ROP3E>zh;)Fdi-*7js)PE>eA5vO-P!{gfyLp`l4p z0yub0*$Z-8xg|?^GJY#9K0n6CzoY^##7-VN8KsZli zvXTys$M0slLCp~!`q1{C00O5l4Q1G5mv@hct=qr<^*{WsC0RXGon~VA<^5Z?H~+!1 zHL+yKdmD);+B)xSMk#!?HC;{y$QU60w_iR|6J6OIA%+DZV+e)7IegsUQ|>MlEqU2R z-V8>u+#)t)q_XX&e!*!N{K|5w9}xg)L*;*Z@vgZwO?R;RpGsxC72%h{CAH*MlM4^iKsaR81Z#Qbhm zlo%mMH+P2LL#-&L%!hUOaMLul}2Q3@i zruZ`xOwVsW)bt@@{b^Pbn%@WEayOh%CXXT^(LSmYEHm%mpxj&ZMI=!KM=fr15tyWM zq+I8ioTu7~FEd2?ig5o5hz%5$7Q%H$GE`K4w#}>)6Gsyclo?i^MT8`t(4U^wLScge zgBEusqMuZE@fL4t;FvWlz&d}7sVI#$X zHbV?-s(H-ETs3QfqeX7gi&^P8Pe+9GzP-|q%L=;zQe@;|H;roDOgA%j1KLEN1*LR2 zMvZJ4$pJ)av_Xy*_OOV337a)jL~EwxYfC793K;4YkE%Q5!U@OhvqVdR>MAWrdIA0M zTn3?j-{x8*E_#GTxEU}+d$^S27WuNUBNN-M0`-ZO2H;U>^#{lBF-+)wO}c)9fX!yul)4#Yi1Fr-%^MzevmsSbMGgEor#6guikb2F~ zJ~mkpiRJR{_n)_>lx#v=I=Xoa3JL_aT| zD12h*LX7$YqffWY*!NVn7%OBQKq_G_=^pmCa03z@m>BL)UbdrYPp0GSxBnWu{1agH z=67&9n<23`Mi9=Z^Iwpl2026#Op3H91Dp@+!>u=f)x^n@|4u@^x%ZF%sH_EwHaQ-D zaqAXc{JUvJmCfPk;MVP1PO)TXioTU4#G8BVT?LfMY$HHNV{Gc|+RDV|_4%zkUxr=& zojs&Q?(R>Hvzr!=P8K<}X)zPKzOhBL_jjHoHZR_ykW^LBOpTe|Kwn59@ol}fg$M4? zmQf8naaj>s7{+wkw9HIJ>e5FYda4MqzWTV2&FSh8nI&5s=S%Z6;=f2D(j|6@&BxS?!O8 zN7WWd@HR=H4Nqp+^yO}3qcAx2+r()mA^fD(9-B*d|- z#z(r8(`yYQ)Muy!{7+QR**&Zh_~3L8>)9wUc@mOir@ z5eoiF#J3P6zWpb}zkmQ&aqwyQ6U{w+X|Y2Lcz5w>;Tl?Anr4=sa3 zkQTi_pxC6C!mjJR@5~S^7D3@Ukowvdwk9bgXBUgn%01^+##ZbBQab2mTE-9H7KF$Q zW4^Q{kw2k2W*JDJ+!BXfT>OsxEV`#Wtf)--LMc$7rXh+{*4xb+yfTvq--lCKqYPAi zX{(Pwh#-9vcj+tqYirNOH^Ht&7ZqjP37$4KnZy)f*6)TfRLolK@uJ5hlDcLDF;g^i z$S4*i6D@RtC^2e%)2+8KpD@>@$u;n3+4Flx*lkSY7Rq!nX;^$}^(Mf;WZF+BF0r*rh=Njgrveg^D6a za5@xS!t5x#XWoTbp?W@OVGoHe8=zeztqWhxo(no-b$ip^%#Z`EKg5=ipX#o$YI$}9<%YGCl?6O<&SZGqi;@QB8I`HUZ1UW z1&59Tz|HoqJ)s{woWW9myyYcvsq!1Tc?JVWQxP+psowCW_stz1W-$V78vN)8?n2|H z&}yIA2r|q8S8{WX9-v_i2>t@s2A6em`}1cuZLTWkquJ&~ z%Go_axZ$qj?_UH2Shx&h-*DcrPLzAla3uH&8I1UP_r>WYY;@4y^!Je$; zVVI-`qRgVvDJh#~b54@ckl72V01Jy^{}&sDZ+Zj1^c9tM*07Rg3JpPKBPZaLROr5n z;1vK;-7<`(209h-(Z7*k7K_+#>F^O>XoUr{Im=9Qxl zlhDo(gGH*>J*B~xN*#3%vBleHx=cLg3HBubtbd7}2})96j>FM)?&Hs}@S2#M(VZS= zwTF2%QytXz0F(Ua1W0BUEzN7b60Nlu)UxKE(x(3E8C10S37N4chuX4cR!&mU^b!88 z2`v<5^|iDH8x@TX;u4i9UCNjy;R-(Wd^YJB_Rxup|C(UIU}Gj}js$yP_g9nlpkUN; z`P&?=*{^kYWDP8b)G#q)$QJvS$M2qa5vcrlOgYJQ-(80kV_e_i zUM;j3UI0H)(?Iom6tp;MLw8?brfz7$3c!#cdtxDJfic96D<+?=ymn&^jsypY`n>^o zZ1zr;bqvc<8D3dP#Oo|)W^f4a9UPJ~3^tco`tbq{&Zm9td&;PHE~-J{)xW*NH=j_X0xbjST0|nEO);2DS{J<@PDd`< z!2~!^4;pgZaLm@lKjBmjDB-i z^>t|ng7y;}>KNDQEfc5!PX-P@CAK{>J|W!E71VzMr@r-7*Mu0sbdKmSS4c=b)@)UB z#~pY3`y><%&UBA!V+vF>(Mv3`JQ`A=`?D}14QSstf72?*U84?%H=@+yi>V*Y)&nt~ zjV&-P(hThS_gn5~T42FrH|5SM>{L;0v>ZFjbr26toKRVe9LJRu%ux9{5PP^HLV|bR zL08*5Vc&t;nAo!xpPWJ#bvp8)uMo&2fytZIBy#;vVqGmGFZ-C4Do6a^T{8ZaInIT8 zg42w$ancG74UDQ9KJU4`ebu!yeF_ApU7b1_{YDr7oKtjgg_BH z*Fdd5*AB>XGW35~6a?#cEm$R*jy=Vks&s=ZO?vd z%czlXW0OJlL85XuaWEp@CLz|$78`^Z9Y^ORGlL<;D4L7UI1-Qkw1U_uMS}(dFHwt6 zpFFINaZndiLOYR{H{&rSGaC>?sm7EL2W}Q2)Z@v9D<&3PJ*?GKZD(eKCzn(Jk>pUg zZ3rw!*`iEDQ09-H+8hcwQa{QlGJ7 ztsU7wuzxgx#|O9KYKqJXMif>RC4i}aau;``VcllDV?H3Vf_noK9xN4@{#Sc^h{5JB zA(P<(XIm84gE)U=;=rZ0aa_-zPo78`Xj{{B(9}OQclVNRIcZFkk&&iiX<%dit|2{# zQjgJMWVawUm!Tni$z~S|JVW@|EcGW|cJmgcEMQqo2}JZY5uM_5b+c!D(5~4N(ix!o z6i57W<6c)BvV7BInbGz{GLKkaF|0g`v&%#l;pbKa9GAtt@?Bg93kQqcd!ubMirR-m zN*T?ag;eV#20k^6R9z$kjg@{YkA=2!K&ft8ktqy}GD7$sp`^@gk!LC{0gBCf%jC74 z2GDl`IaJ3~Vq}73P7p(5V!mVp$y}EsA$~GT2sXa7D%Vbzg6w4mQS~gU6(vr9jsps@ zV4v|)+>k@Y+cRaPJJedkmpHk=K}Lv3nY0tJneBxXt|@eeuKrD<6lQal-F^_!t^+CS za@!v)yCFq0=F`o8l?r6MfH@V2A>q^GM?SF=DS+4zD@gM8&Bbg;j0jh!;ddOMzhvK< z(Q*a8U<07kEdayiQ>wy0vV6E`kRn8odK8i0IPKQk#U-@yMJEO6RTAtoq3d_<8`jFO z;*`Izq9()~z-in?KFS$ZX)$xq#H=r2%0N8YCcP`wV-L-ky!_m3N+mPX&5TNlCtsgk~^l_hFq6)*BBTi%-SzGuv7;funxac?}0xZ;vu%P`V7!^U$wT zkm^3sY9|oXAAVybsH_B(N`vxghy>6qX+?qh5p2Lr==vRzFJ%Ly9qE!Nszo=`3hQmL zc5Fb_zkgy_Dq*QU9ge=hTAR7?Us*>WRgfPuIGd!k*l88YWCGHeR2zVMXM{jmH?%Ss8>di$@bDdPUcz?VZT0a#N8yHh=vG=7!a@{GGeCf$jL2k1|w{){@g^P=X9A9KgWw>)6 zCYK6}4R=kAkJ~DbOO}G ztS^0Qc=QCQvi$_xx4bWl#NFSMdnDag9xc@2XJgklWk1;PMtx=j(K}Fs88uU)5d6KJ zE5}&%S(%Bk<-K6Znl9!{th{wGH)#wCZeiq~=u{uPen&^JtY(>H_F8E{a@F!4w+G$y zX{3_Lr;&g$RB<(Gz4nAy!Yz{PmY%lkk7uNHEm;pWs~|?K*LT3NJA4(M@w;Z};Ty&^ zM#=q?jL+G1{3d$@SYI@*=CJ6N+f9wNEgvlTJG8r68LDMN7wAb(^V(X8(G-J`RS_R88`Pi`pQ1u1+HEgg;@;Y-7sVY{% z!b|`Xd<<8UPOuCi?^St-$R0%1(&hG11ZlzeEEo}Wh*;l1N@`9B(WxF0Qz(R!EZIpj z!-6zvB0;gpMgMx8I-#-_e6(0@X%%T6Zx1=eiRR*hT`n47J6*&_B7$%-J#Hn=+Gh5?d^7=nZ9cYTZGzVC-lc~JG_=z>EdHjlj4+93 zSdjRx`AotD=|0CDd!oVt)bHULC%mMXQah>}cC6gNwIQ$4+8%?Co;ww6$~HJ1kgV7* zISTk;5n~_sqy2OxjDm&X*_0<_Ja2z(A;XViD;YZtoGu^X)aQli{+&ONf~*M(5~W7k zQP6VsW6fib>Z|wR5T<~wihY}uY1fR`t|~DZ?!~9L7HvGis!wAo&8R5cbtxPI>CDy_ z%}aD2C>XYqrHmk>GbpZ%atGR+bIBy7VBxlVdwE;f737-rRWJ!weH9mO^2tit28K05 z%oh4LXkl1PuW=ijA#cf$ky23yR$u+Y6o-NlRDm${Y6tgzz%|9GvWOV_J(S73^%C(B zx-|=Q_IsEer?47HOxl~B?!M}B8AIvk#3UB!S$L$8fY1|Uw-0|Jpw65FMJ0ZKzuQyf z2|PI}w_xLl{BkxR+Qld53F`Om8Ubbn>E4v@&20&={r%w{F1jku%xlJL^SRWzDRUFD zzG=m&9`fZ3)g4b~db9ZwGgL$+BB~2%4I>A2W`QoFjs4ojj7tF{%=)^B@|_{0Fm57) z92f03&rB?oQk0BsHVy(@&ViJQx+W}6{f-M`qqH)l7?u4AteC!#?x5I%?#skZXU0v0 zq0HO}a|@sH8tR#JG$%+5jaWO&7evMKlIsiA9Z9Sy?)<~l9?^arv8pO0GnJDDp>uY8 zcSr)t9G3AvAkxopphnP3b+)xkXrb?=&67C`6iqGUZWH${1TQcxB!gQ?Hu0j9nnp5+SFwhe7>~lED`}C7SkTyC^u{?`ZzWK zkPJl?Hly6`@R>`X(xEH`7N_-F6yvUYK&67-xZhJ#(}G2ot5~Z%4ZQlY=R|r#Gyetm zHFK>ct`s?d&lP>6d9*3xamp?RXqF%2*6-itYc%OOJg%0{9>3$k^xZ%pZHRP}XQYzO z6k9hZP>f5f6#22zMvi5&m4vA05uzJkkl9C2qtb_r@_P-$QZ4ienv%w-_03rlh%OD^thnP;qiXQ-F89R=q2FFzR@99FgB=gLIH6sh)u!} zi}zH)3x-(pq0Qqn3$w1iJ8Vy?2V+PPu+lb}VdW&Gs0p~{hsP8QrNqe8g!F~rQ)vQ^ zMJr49SG9u+7Ptyd<0D!mD6Y(jq=1V)b3BYu-*8KEPxX+{(Z*OJyufLx^mbptu!-ZD z2!(fq3aY+&3+T7#8CG8=m*Qie%uXfWKh%=x(H-`qn!=zL&wB zeh3XxiC*G!lvD^cR(%FzYoyJSCr-ABjd%SXc!X10Q) z{Tht;Awa`{0t7;^JBNbhx(HpjM0DWFeoQKKs?!_Aw_gAH;qBOe9#S0qeEV`;PVc(&d+gj-Gj?rd<%a{~W_%~b2C z`M@uaCGR=h7S}gTHc=`VNL=R|_NXG!;OfMFIF-xSl__=;Tr{4W$h?HlDY`({NoEG; zWJmiTb8QEAz`zp5)DD&NpD;o7^J<4D5x4{CfG;kAy_6PeYDq?2-Dk0im=YPR`m?*U z^`rXqo9;n-?{#G(yErWHV~2~zkOq{+EA8v)?Ve1Q2?vzZn^_$7jX-_uvbMTQ>`?0W z9dsz8nG@u|P07_t7) z6`pTa?(HLlf_~`@T>tXD{8@5JQY49d8TW8`jwQR3M5=(b;#>!*mJry`!wn#zQOhWV zABSc+q&#GOjz(4_eIK6AOtFCx^pmw<)t6Y?9id#(3U%4)}U>KqI+k^=S23Zq){#*-wm@os05$wEC>sOC)3{(q$#E!z5mRj=PO!(rI^PS;()=W294fUB>wJLe8x9dJ(~ zS0>ZthU7{NlMgGEI>xK1G( zKaDxbqMbqk))&6DJ9aWN*^ma1%@tL~%tk=A>K#~p#%{lGeLAc366s+MX}C7FLU+YQ ztx^ND{_s2EseGg2c0F7Wjxhv|IcJTIY%&$>!lb6%1r<-byq)2Z7|8@6mRNg~9&R|o z{=b>p^L!ui`n3C+blVkFev>!^!@L)NhGQiLD?`}Zo#LVeEIpIV1%p+Rxrtg|eS{;~ zok!Rgc-TG;MY%$vkfRivA4wrH%N^0Zh7d6xg}X6B$c!lpF`I0zalXZZUY%g|Sd_fn z|7Cji5otPSSxgpm5d~`iA}-W&ghfS%^W?m+6yJEbnl0#XjWUY>3bei|LXayr6ogwF zn>s6P?HCW!L&FdRqB@uMH)Wn^SJu5J9*jd4*32R&Oc_3+w!#bdY885D3ET@!5O9( zy@O^vQNd{AZ$p`ZS6{zph**Gt2$gY~zKLU3Gie;n6>Ih*qY8phZx9WznC8LVdtAs5 zyZdm@_n@7K0j351Guj_REFE2|8wF2gItE?oix3()EN+Gy&!TlU|{u3eCrg1UBI9FniWlAJJol#q+RPK`bPx{9g_Wm8P` zm3wBYu>?Yrf27mhyfXIhBE$@5~?Tl zJ+moY-u+le%~7xYffl2o9$g6~!kw@UOO}~gyo48aj6J?vpKt!XHDg9unOeZ=kG?&| zwmb3>V8laM#~0PTK&5}Pd7BzfbvgQ+qaJ45=C!&mmtv}~?12AE3ZaSi>cXmeWeuoO zuFP)zobBe|>y1AlIT@Mi%HG9D)%AfA<)}|8Hlwosd1Y1roiyU9FQM-}VeU|;K8~eB z*NDCh=dS;2r4lx|>T4t=o;M}Eq$H&at5kbFTAgH!U9bJ=2{^)*dr+(i7kVp1ut=_3ZfNwZfYlzG%rN7HH%@zB{Ol=$pvebOzNL; ze4SiLA!vOgRbMu{|5>achO`N%bt2=M@S2`J=94KSurlVw_3O| zctiokN<%U$Br(@~U9RY&6vCr2xTc9tf?r&h7Ksmp#NF4UTo*d{44NPOrItv@? zBW8VSNkglA0UwQCn*@it9SXL;;0{AZaMa2sHVE1jMQ4>Y#H=rX9l_L`_>f!R?e6h# zPutYroNQAmhk=FX&n0AM4QMkW>N7_;r76RRdJR->-s>E6xj%8LplWB-JHQEk7hL}- zzyHgyHZOKZBW#yQW)`Ja8OtNWD8151^~HPipt9}91W(cKZ(Y=Wpt6pR8PFRr_#Nd-BS5;%dbp`muDvBKs7(`!J zaLRa)6?CQ?zT%Q&EQdbW1BImPh%m(+wCGyY=Px;DwY_XiZ{udB(o%cy$G9sHn_$ur zJP+$%yvE7IHkngX4p}Ul1avsK`tm(_W)zV)P{MQmQ&piE=Z>$?lz07RB9 z!$7yt;6$n%(t-zxyE^&=jX zEt0;Xi&>aHX<9PPI=gZ;oGs%$HlI#^xmGv8ju{(*ZT>Rk!_caj8P~B_sTmWI7?*`$ zD$3K`t%MI6MnX_#12i?_zK^H+;7G=0=!KXJvGs)0W^g@XL>@pkbi`9Um3Sw7B~$JOtt%S}e@Z zq?|lS^D7PVhBvbvlA_ekTkg|XTO;85<~`SBrn%t%Gu1?` zb9UeEa};Z=@2zP&>;dbWST0kxQ!tt>5Ex?GOfyG-Z({$&XFPu~CKoPzqIf~oMrJQB zxq&kqwf={2?}m;)c1Kv4cB@^xp(YoQ+7-QsV}fgc%D~eDnqt!F0E`|71Nx(dL}zq5 zhI*uuJd;aiw&W)f)Q`VA#QEPL_5s^SF9PO&>HS;vtN&L0%YXd)|3&Q{AsYAJs!=aO>^=2>=hyvfIl$m=f8*l{WXHh2GxDaBaiCo zzpn0#pF;)yFh#_tOs=@`kC1w$*TEW-GeaQF7!4w-3KwboG-~}R#o%^^)q{#}-9tT8 z@taW3@q{bn11iw*a4g3hhlBoWr>nZFWG;NAN@{E{=8^0Fhjonor$%c1?x4Aa6HejZQ;fH9^<}g9)c*o8O|`DV*(cU;(q5@ZvfwA5A*)$fNCcD zxkw;quJ=3WupXuU=z;%>)Pka#-IB&8`8eZ37Q$i|oRbby?mCS6%zcTyK(TI6S+Qp0 zYj5fHUw8n=aU#Ub%v#DvCTG*Yxa?Z9pzHrar8G&k=o(<$K5bcfcCv?iZ;vtD_|T1) z-Q8+;G<=CI8lE^_U}W2RN*4;emt$M5-v2gE@(d z`;R<*=;}GguQyjd87H(K_Ghkq0?_&#G5gidI{)TcLtD^-pt12Go#V7U4#>V?vE0GY zO*&aNgcFG3wuow61zgb1^YqZUz{;8FxRAZp!WCLVB*}V-(9gEVSdz-y$IFc3v|#~UaF$kV+B?J zH>RgO{qbj#Lbdva+zxl_t@e0M(%l=p=#7RvajfJ*4%VAf5HX(nX4+Ni-dUl^QU4PQ zQD1~KzzVzkW%C=kL+KJtT=}D$xu7HTzdy2@4GFCJqu?4LlY5?;nxtS#E~6EKt{cWA z`qgBLT$7<5XQq2NP&FCevZdv5W*1|PQv&cP)Ozz<4oNW;L7`U_w3L!udTN*_(~T)+ z3`*jpqck;m4QU`&DP4eC|7?rlr+hliRMR+pCBr2ga6?YD@7?ix-E0|ek!Z-vZu>c` zw^UV(hTHlqgVGoDPQ2NFt!f}+3;g(y^41HO$^X}I*Q0yV1a-_&i*&ykjnAQCWTs}G z*q9+#&ITY2hfKpAQE1Tc7@gSD^9*L2)18FW8PBT;T+~x!gG5eiMyl6|6F&Pe58au4 zo3dAxF*D`$Wt_3*7QFg~%LdGQe`>*ffoa9~hh@xc@R)rH{?gVgaR~@64z$!Z`*1Lp ztnXuwaQO1s`1KJ*#p(vlB*GHCb@rBFS`J1=!#B}+RRw0;^1cF-+6f?|nSk`ZMY0JS zc=DXpQj+q9^_CgbO})XxElZOa2X~XSF{y$7ziRVgUScxWuw24F;Wr^$O_9fOXUOzI zsXMq^5IS!gtO3RsbbVX zvJt8(A!7%m5{#28taXP3JHRr*A;U>jcsM*~=x8ujR0YexCKaR9Ke04sFt(8~)kElE z>znrAV2abQq}H~|4T|oWnO-!zoC1U#%%+&z=HT`AYuv5+iWp%Hj4u#rE^%r{a~6zZ z?(?vE(VP~|`x-~p19d8hYx;`&9IIx0)kwBhu-Ojx+gvFsrw+2Hv^AlbSLh$uAx>#n-cXAiwqXyE={>e|4 zZI4Fn;u*N8N$f_@VA5*m9Emo?1?GPi!PsShJj>v;;88l3(Tkk$j3aWJ%7LnUk6nYV z#xIx{rDXSDLSp1^>_#joKjR4WI#-QJ%D+e)WU2rGn$Vc$9bw4VA+QTJuK^P9GhBwa z_Di~ey`Vu17^x<~M8Fe0uU`}xFam6l#nos!QG}O1!-f+KQlGxfi=-E}g(wNLDU2GV>)Fm57 zcoFY;@OCg|z*Jeg!!n9*8WK(_Y-UbmTn=F1>+pYt%?Q;QVIy&rJ{<69_KvTVPLjCr zJqr#+3LIgRD)A$APTvtWy>v~vNy9_St{u9cCp@;Q? zp;0FTkHPA7$6nC^b*|s{`7NZdch`2baNredOj2gmycxyvF)fm%($zdRNoQc!@3S~a z(n)z`IN3|}&{M-$oUyX$dMMamK;>bnq-21pIAi&^+@}c}VQ#93MH-xJXF{s4F#+pV z@DfeesU&cjbal?BU(D{R@;;a0hx+XY{4tQwA11tH8;&(trau@b=TX~UrV}F6)mH|O z9jZYx+lTEvA7TW(G^7Z09U*i^Ra(K0aL(Yw&~8XR==C`uT#;qsSxm3@?mG8<{q7?K ziP}&G6FJhMRjgdlb?Tr$+>PvZktQ^4nME=yAoGW}XQT)l<{|B#?6+{!yH@SY?6grj zmN~$wKm3Xx(e4PgJ*IZkTyB$Rr9T7q@fbP!Rh?$mjq<+jO7b z7!5a=D1rjZMG%%G0ajnSXMJwu17s$u%r&#^Z)ZJKSWd#ZYev! zb#ar!Bdv#->8H#g=yUvAh%^=zYkUZ2twTp^ojdHdj}zB%W#)cH>1im$g56Sikow%$ z_`?rn7Y@69+*dlBj^JQX)mGq*_1LTneb10e&os_bQB>IX3MR&N2_U7?2NX+V@I#sI!)lzSH3n+d0_a) zqNDs551)5mlijh09>QsS#%hY*s9vX$>W#1e=e<8a`#VZK>Q7XhJw%3%XLMptl`W$+ zLN!LtfUey^ArM3Z0z}4_Yi0#>gaL!DN3~9U#gSPkqX@fgXV5KA*{*Fj8lq75Ss?WHe&))AK$t`6AohzTG+Wd6knVwb;)=>!c`8to9v*( zb#0ueWEOP&{?|J@PdI<|9Z)9h-8KHy#+_OBD7N#$>L_rnru>3w;QBq1$i$q%;cF8q z2HT$R@OPcw0is=J*V7|Fl7Rny+AM#tn}q($2b<6k>gz z_^kp_FS;83oUDe7C*#C6vITLtu!x>MoDp1NF^&-{iEV^V>*zr1Ze}<*Q3eHC-yi{= zSe}OmYSQp=LkM#|;ds=;(OT;4sztt|*B4aYP^bn;{nJRu?=Zc1LPC&Eht+1f{RnxY zDD*FBik9j24PevlpIW|z9a`rqgh{3o=7>pF6_yzbq!sD&P4jtR5(7LLdW^!*;$}(_ zPjQ@KK_DAbd9$ma>PyrDyzH2cu^J$F9=9RhGw$2Z1_OOPVL|^q!CDZa6z@7ohY7;K zWWaG9D6~%n8$DdcFf@DyY<-=|i#dbk3v~?R>;xC$Va zgVw#w>Qg!vePenQe@$0l!l!I9#Zh1#hli7npX+s!LF*a)_WrwcTvmWse}uXv>(DXx zmQjfEeuaA|ktSllMa!A$UT+_>a`NcifLWm=iMZIXkNLYC3+DPci*>^RA}k|sN+#aP7i@;EIY8Vi zCI43Oe{0}8{;ez-RO1w^z35}~Dce2@sa|{V@XnLpijSYP&vK=#=3-oeBwWFadz}J` zd>UZAdN0y;K1iyrUW*~?n|EyR7&=%)hvNR+y-!g#*k3`E2YE(tsr6oXRw3+%-_Gva zV!H-Yq&^zi>1-iI{c|TDWHBfHoGj6?hz-L0F%IK5aO-O%6;VMY^q#Q&r>h^<7dzITCkPv=`TKl05JBCWa!Vn2msg%TJ5xl*5J0u~9`j!dqa-db)q(B9C(D!Ie zGt!U|xa{5*qoeCPW9_5|ID|+b52&3Km)r*kENJFX%*>8m>0J)RCRBY5SA)9jiSBnQ z>jm?dIT)g9yhxYL*I^+ol8H+;KUek{=-$VZ5prpDT4T5z`&bCzbi)L9qT__McF-40 zmf?);A{R5AAj!hkKY3tT>4=NxGbb0eNf6fWH+p)OmT|ZF-W&{&R+Iq}%ReMn=V*M` zJH~B%NVcnwb-jngXCq_z`z<6L!*V4ZTv<>FVIrs;Z2j&7PkPsIhSOyw6Q4C&y-YEz zlIb30N7Eso?}i1koLksj|wgr+7NeN;p3mR>Jbw|=tz7-<$`esmDPZ|j-&(ppp z;vO2&GeyJpjEPVHS)Zr9Pa#0R0U=V)V0{@M?#c90zk5b`rtzVa+9TDU*d4+LfbY3w z1v#VrcA7DX#NR_EIvO5W5M?YfCNU?52CT0?umnv3Hn;-NcMnswkjed%qYvQ_2TPeX zXO!G{I#bjOmRtkYS8Y2q=r2;aeaomy&+PE{Qu{^^Q0iam2LBA_uK9o!YqUA>x8pa9 zuR0+xSi3VqVGqnqL5wJvx!_BR1GC0FtVKF_oTNZ{62 z9uVC&@2Q0*@+L0B#hC~6Lvu!aM(*>>X+W_?7D%dN7Anr#7$#n)x-c)>ABITkoSkJeZI9VREh#WQ?eprOcKQ3T2g(9$+){B?i~?? z(wgv<3RXWX6mnaZ`Vhv{G%Q1$g- z`E1~w-|brbHo{AfwC^b6KQCZ6c=a#52=*fu;R{|O6J<5V#fV@=WxU^z3C*+Ld(}cP zl8&6p%q&Yp3t{VD&yojx`Gt+G0Y&dQ;!6t+fW`W9S;MG6*1{tzx;?0(TNoe_Q zUi4`iOuYo3Yf%=c7ll=S;IBL13TMll!G9PV3H9n(qdIgTu+;soy;PS;p)p@ z<1nu1s!0k)Ch)o=w@3;4%$z+(uK}?I2LbFeqmbrA9fUYXk5TP$-oT7UVHU9gsW0%n z!}@xuoJPM9dW^%72p?#Vbb#st`mM0&>Zb98ve%3&+{sR<@XUOe5>HA}6jpQ7@9Dyl zBih(KI!4!zLOd7f_YJ)IQ{%~_A0GDhFb5m%Q&tSihhy22ql;>XriF-o!fKU{zf#a? zkDEvvfy`=sR&%5v>nl$zQ56tD3NtquciSUe)k=#^WepdYn}kp`c};u!ugNt3|Gd3< za~wyqC-~-dix+O*q^?vS)6#n?N+ftmv$JC$0E(E#)i^}y*{;C~K#{B_fI?RRq#(03 zdmkYF+a9x7v)M2AKFR*vJv=fzGb@lxptsFhL}gX}JPr>J4-Y@&^vDIR*O^*IhuNG> z2C!j^GxM=ck==kz43@jTuF$NH{I$28fdu+4Y@xhaDS{fXMG4Q{UH9yt@kYg)!h#4S zYKBY!3XiqlR-8~8OhF9gKHDH*ngL}*xIrDDMs+5qAv6G%8#J0so%?o$Cd7Z9+!e5h zOxT4I7tV?S%-!?-B>Hk@!p==C^{U}8j3hBH7Rjre0q}tB5cai z$ zbkzj!Rj@^lM&?^yb$F!t93d?^wGDdDIs#=elrW@9i&BCUyhV#cm?B0fov;ma2pd_|9XJ3S~*B!AbB59vGtxXH!-=y<*|0R+w&wM2zO}(lAQz5G42!HLu3brZy3C?XmuEoo=|c8Qqq?_8U5(7 za2h`#Q&;F7C1vAXR)6R>Uz*NFZW@}$qPsQbJs4@!~r8;GvzBw1PWdkx2U5NR%M_s4{*?@E?q#;P*kllW15IG zN|HfoYak9KbxA|B4YAY1-@xvE1c~tx9zxCq{?D)!sV|dCpmOOYIK|(mcuY$yU_rhq z(a6o`8qqxJK^6?TFG$Gxz#VPBv$6>o65<<<+xi6uuUxYQ;92{3^q3? zTk|w%u>T4cq7xzMpyWMcX0?VfnBJETmyl9-6G9hZDTgPmBQnmPk#3Bn?!M!1ZC#>R zq}AwITuQ2d>0K0ClzVIoSJkkrVX{rX63lA@8e=RRN)=0cb}6_+#(he# zNxtB#xBr0WF8w+3v>bnnH0#IJ-oYO_f))uQ$PeNXys+2a-`;JT5o;#IJdnG%$cVhg zF3LkIiW8m4hpZ%u70KXV+S43p@to99RP;SrMfwTm5w8epZnbQkHdBfq#JUAFR4Vvg;7U7|WMUYV zWQYnP$0iTq#ut09;duL6Vj{V77yWuOLzn1M&UMubRpH#^V&@m=7<3KAmlB($zt+_SWl=a3UUBW4=$Qa;*4plWl2FzlXky=NgA+u^x!ARuCnv=oM zPEe*N41T3&M?yQv4FO1obbKi1d+n@6baxkp1~lp2?z`?TQYfpVxs(i~53s#gudNJ>`Lby?)6>mWw(GP9E5)70t z*76p?IBtvyp#LyQBa=A#a4D3jiMNR}Y~2CRU0NhH(pSJ4muj;u%3@KxZ%piZx)$SF zwFM-1S8|`z5z9v~!Nmd=&mJnjGN;nrA7cA-nB$HnxI{@;`2bN9Vn{c!C{N;W-M|9#Y!X9(Pw+7&bp@S;ANCGHQjBCzWK~i^R?OxwZfddj8k#vEV@en3 z_w~2=VN?i0_9s|&qJt0Egy37K_Ig;~>z6A^gkvv7o}c>zg11mw#mL z$CbM7Vqm}^wuGBe5OU{;{krU#b>-aJz8O&FZsZssm zSQ$x}@e@Kl0(0=U+Uf8O8F+sLg`wA-Zg7?rILwo5si86Ty1;svb%a|*`L(Vk@6xy(S<}f`Lm$dZ~*)5K} zIoKU+!BZENn&Vljp)w*o2O*?BF}LdLw(igV!o!;%=XQrooH49C8RZu>hM3)UH_Hx`A355NT|u7?K+* zpT_UXSl6FfLXX3x`q^hFmv*$vIR>t4wu%jl{m48 zVJqYitU_{sjBc7|c0=5>wo5Numqhd6aNv9;<}xPxdc> z+1SttB}V@uag6C;!t9@>VdZZxW+fjs!e z^fF;!O!tz2+;8{kAM_8hKsbpWXiMVG)mRfAqR_br&y5gz)U8{A>e+I#R8uZsx(QD? zRxYoE7FZ9&8YYEmqHq50{(0#I4Jm}0A5vru;FL3F;u5Yr>4^(y?())$XfSgg+26J5 zdSf0TAots)rMc&pNASF=OO1IX!gC`;F6vfT<5k;r(>1PG;0c+em?th{;tsYbD#=V( zf+cc|Ow_xu1f(t>cwuXcLAUO0G4R$F4d^9oy4_c}7cq1adq8B;WtU_6th79m``tPk z?ww!B7lTd)TrH1&EP0iQ_N3DGzJ7Mct!LUE(uRQOZZG)`hU^LASjgKTmfoSxLo8_$ zmv>@ThLRBFNRLq56b?m4m^`b8UBpigu@jq7PUJ@xD*h!MUO|8=Ay~$D0xZg3`zs1N zl!@sSLMESS5y{baux)d3Pd|E1o3wROfWX<%R>To3Q_}P{B z-P98Q0j>&(p#)3u@A%oH-`j%cWJxdIp^1LV)_;gPZbQnFJyD_JmJVgQOuRPyVU5Uzh ztHJm5ZXg!p;IvZm-=?9&Z^|BKiJ^?l9cuW9=?Rv5LM{p7uFfGnp7sX$vU#7-I44Ag zk|~lh2*We&{i|IvP8k>5&?$+2+gS4KhN3>#dIS?HtPIu_qzkDNY}_4 zNbhJj@wU6Uga=4Q)IR9+ki|6i$-2JZ{e>?M$V;noW)r4VU0GBH;dr-;1^iCQR)D(e zOGGQ1LrMX}2SlA5-+v49163RDYrA5xfL~W!Is98GfGv?@@h)DZpiCi9<->l1))e;I%RQ05K)49bRyT z;S=YmC}Y&2N-Va_Q9kaD2H0ht>2tofT zCU{*2l*)EvF?+4bbTeTp*JTuA#OzZ*b)U{l`4A}`LNVe?%x1{+1L_g`s!)s7sl;%5 zC5N$M`U-=+lD~^3$3CEn-5`T3*W5BULZeUyO$x95L^jDg5xHh(+&H|Aw|(Zx8}(i-4{|lXj}H~ zp&2Q`aT6AJg5szmD$J5>i^s&)(VN-d-EG>Dh6ZK{#ovH&!sO#$6qqq-E76I~(+Gp32Lx?KQL9mO`NhBrw8r@BEy z%t~JrUWVVu0A2#{CZQ~MXtiz4Pvwc3uM&z}+P= zFG}jOkBb8ZzJHB)E*z2VH9(ERI0dNc35)UF&DES*hMgB?A@=XV=zLm0Bgyc~$(Cw} zu{7T}r`cl)K?8GRXxuL+u?ACW6O0CwQJal8cG}LXO_qY5b1!qsDtM$=1tFnvtK@0- zUvrvTnVcNPU8nQZGJ*mJ1nY14NKLqa9~GG)p$6xczRoY59ro&i2Cn8lkL9j{5)dM zeH!swl(Ff-Bhoi14x<&sL_8!3518^neHfs-{SvwOsabUQ2wGVzhol{k&!ZiWb!O19 z3cz$bu5$AqLsbLoNX`Q@V+qcWhQc->#-hZq0Xdt+r3?isVIqX^lQR;267}6;4JAB6 zJ@y`ormKmI!qC-_EiRfdx+rG9k)Kg!cENevJ)IWmZJckBj`IJD;$d>}ADK5GWgeKkj3-n3@s zHF2Vp?SzZsU;y7)oE0oV+@mkpDhE*>lF@?$ zR7I@Xk!zR_=v|Db?|BU5MwgdShfB!w+PH#*ZB)q=h6>ZQ#09=|jo$MVas)TQTOA&F z8npZ_;inYEWw|u5+Vg#`T#F-Mxtl~vKXPd?PT5Zse^X3|k+6g0#7dXeoDJjZGk6_z z+VEO6$L;tx<%K4B1h1$~>04w5+fgw`&JSE#AXPT!ya!XR?s9oMRP$D{_;Z$@Brq)9K;!bmN*|yEcgl(;`3Ol6Qwc!swx=edqu>E_QOMfCOY9K&YN!q#P&hXUsvV@T zH5sXh8a*^aSVxnU*Fygo!(~bW3aInA<+sRoZ{ zP81`#+b;k}n-J{(o<_z$CNVaqROLymHYOZ5^T93n16VY7YaYiybQQ!)l!=dMcw}R+ z^P1?f@DXYK%3YA=8^lwW zn!MvdWnY9bRQ79}S~+bPP0mI6p&gsV0cYs6D2}@$R0dxoP3hjTPo*B1;RfP=nEv16YYEOk80lo6sat=@4@#OVv~_J1Jgt-)d_P;%!hBmscLYKjW=E;{wp@aBlc7aQ3GK+md$5TRKl5ao zF>0=?Q~q3G*7?s=Ep$6eN3&?Z{ZtD z#>qkE>7$`{^*cYUttiz)tftpEEhti21@An!w+p`Xdp8Q^^wfgNYuMZKXxC#rKgkgmB#vMoyaG$IRbuY?sqX(u? zfl2I;YZ1YeM6S@tARMpa=2}D%)lIB*UUm9p@ydQ+I)*1Tlqzg96{eu(JUI;A-CEZw zPQqcaQRuTUlf~D|mZ9awlUR-IZWJ39Y(zJrW>MsUYz=1C66VTNb|2)T%^}?+-9+;v zKQ6>L*8_d{r0jPOdbk+1*3uf+nTkAv>nK6z9C!28#ROm!XL9QE-lZvX~bf01vqq%NWf^|1u zf)cB>G9UxWkoVt+L;iCZIDYG}H-HZpa{KM&szRw{H5{N7wZJoJ8t!+YnRz>MH6pb6 zw?Mb2%5R6yC6OG!g#68edp?qm--fmX*4Xd<>K)`U6#rb9fP{Zk5SZVTFA{JoKEz#P zve$o&jq+Dw%yOdn8up!#Yl}0zmC)Svl|aB|ng8dW9j|{KK3;NtIyljLF}T#7E=QNlbtF+Z61;obKG0-@Xu+AE zE<(&|Nq9k3QBw$agXl>GCcWnJ-5T|z;L=*K^whZK??pWW0l{$pl{*L5*beSjsZI~1 zloU>%Q9Iz*th>w~yzBOR2V}dlhjZW`?HNY46+dPOxjm2t*+6IycK- zFN+Bb_9Rfd2x_I0l=nYqUio#G6{428mKb7WEPUhnZ>rqGj&TNsbR4j8jxM*v{MYo9)^pA4ivau z5tBX98~j50q89Qq-A;I=6;c}(QQY0N;{$eH^i}($zI{7Ga2?I(RXH9LVV_&kGHk+w zGR!NTbpYVE5&Fa(33%>La_0V_-#&c94l|TI7o3G@pmZasaq4RYpg}jKL2!obBd-Tv z478^2*-Ml}qry&tcj5+Fyw*eXTp9(>%0NgMoI5}zR?HM6ZLF$RF8UZQ3c%eF=6G%H`5{4<4n|J;&z(* z>_1{w$CxHA5kRsasFRX|e;>_bKyXhMJs8X4nVq)>z4x#{z803@;xr2fNR*FyeQom4 zT}PGS_plk#9Lor(J578%OSt7!xh!$76vs`f14QhDF^+nnkT%Ga)aR;|F|~w-9n9BI zUVLU%KMWQQ9!L5hThp?bV}9x3h+Hhwnz--IGt&6i`E8+U0o~^tILFw`sFF+}`*QVU zb%C!$uj)IryR^!kPb}h`*|2QkU~StF;UP(ggs*R*nAXu7$y0~k<5Ua=9MJWwVencs zOWLBvLy_nhpVL_LW^x6;NgQb$hVWMJPJf=q_qIY@a~c zHgi=Y=I*$U#BSU7xVy?D!@*I(${Rgr)@K(MvUwq$J!8@k3lji3g0DoS+g1(DpPj`h z^IT|)K@0e?c=+vMdtm#W5JCC6D7(8ej$|C6KdqblI93NT(QO}h5&K&Z`U#1kJABw* z^7O$4KqnNkK!KzzFI1I|G4~}LjFsfC-9tJ;=tx3>D3BXn#Zr&Q@FEe~dS#dT2WY_D zPQ0!g^?gP%^FRLme^Sj}WP`F3M3El8@oSF#ij}J9c0mUh9wp?>nR&V1bJ0Ws0+IL+yqb5%*=<7=1IIe0$cO z1Hpa8&3N+d_t`2mLaLmANbe(Z#uRNY)3Y2GG*{BrL8`$BJh_kCKp_qHCmQrZ5UZ-2 zafcr?=&%p-lBs?I|E7mR6;4gw6%DZ@$ z_udg#QzBsaNi1)miaB{tQ(7v>J1(+{nZHQgnEuwbAYmPdSl(M~6u@QNfN#-&S@k@E z{~1`3!sfAA@n-4ieP?>yfZlh1cYhRm-+|9Weuv#Kn>i%@XX{az?dkj9o{`5G!Sfiv zXu73BQKbj;{}}nF|MXAvKUrOP**aQ%FpD#S`;>bPu7qG3I&1{(GD{uvkZ z^nD;`Z|`F@hjJFJ;4cuJX_%MsPLmZC2~S4A4HpSdfPK%qG|VtKGWz0WO6ZIt6X+0` zcRV4;%w>48A~_3aadpFZB<<>GFmd;>K4n9=e;?~(4Mv9ngu}DrSGdVB@i`N`obapG z@gbr!>?KlS{|xIg1cerX+=A~b8bE!`vt(w_wk3fWuNXd9ZA;T|M&@{i3?9nttyf%A z_w7n#7ZJLl9BhV?c>8`BmmsBP=a^p zlF#PJn}L?g^k-w;83)_r#Lxxe$~gj=)BVQSoU zKg^FloNj^df#CI_`;S0(t)nH`aX!pe)_HapR^Tx0OY~%Kv`N%`*`*%Xb^qZr007_l z2Uv9AY^t;)89~S81Mq z&-45c!@Y?#?_CJEqy7m_xHQDy!0iye3as+U=svVNMFWyhy+m+4#6CeH&AZn@+j$O` zRMcRNduX-#2ISx;UQel){yjQt{{Y~=ug+gj(~t4Kn6x@Ya^BXrc$ z#pz{}4(%BfxL-S4xTQqE4;Bzxh&T)}XQ4+{Fn{;}1HiM;BZy^xYTDXjT3cImbQ0TU zPV%W$aq5t?Vgdl}TOQ)4P;f-rvq+ljP~mBI)Z|oE>&M&Pn-lktVby&1;X`fd1Hk=> z>3@fzeoiJc>bVn{<1{UF- zUGWrqJ)4Xragmr9MM6QS6#Y(C zZ>r`Rn*b-Z5i}-r5pQ^>&O#~k4ns1Q_j%cYJ!cz@3ZeO@MOO);uaP+7GCp>rdaKe!$_xRXCg` z?AM727aVsdm=xfychq@xY-afq6GcnRxYpq5Uy)~qdF#O8IBsGUA8904I86YrACNkn*7#7-b>_PN z4ScOzhbJiCaL}5z+EC)YCbE&J4Oi$`v?}t`_nr{>DNkNV(+!rHxWuB1Xiw|3aUUZn z+%Won`%W_fko}0rTA`A-<_M(Bz`|9GhqV=hnn00yY>|+Ku;ck@Q(DOYT zeGGlC#C0Fj@oBX{6$PQ`*iVcMjzZB_Lq8#PaviUHN6t9@{*nHMPp#yhATr~JY@@D} za&;6fe%p7|BDsr^h#SK>2|f=9!x*$**(I59yc5R`dd*WXAnucAR3baLJ1ms4Igfy< zcf_}Bl%T2n+eLI(pc+8jwe=21lu%ZS@D$@XL7&06*!g!T8IYN{8k!ck5=(Fpk&MCI zm+Ik|wYRtXFita*4ze$WEb5#IS@!R^h=%~P!(5Ab3fYDf2ggE2r2UbM3p-@<&Dbjw zSBC7ka|6FUg5y42c;HS^H=%elt8twz%ov8f0uUmS39SmDc)Pv~;z(yg{--h7gvba} zSoTBCvD{_Q^0>TU#4i$I*~rLd^Wi1fN?1Ag1(W|H?%Wgv>WBBX#Kj!Lg3`zSM~4(_ z$~MAYbw!IBuJ|CdbKEEAn|rU0+3u!;%DAc>Ih+);{}`0(UODfq1<&bh$05;7y&)|89yhY zkWs=`nA1F)qM=K{K$|*BIns&#CI7db z;Y83@E|QTnmMh*PKN&n@4j{VJdrRQKS+@}cfFHql=jBGA2GTe2fp117#JqA#s*%J1 zHPiZsJNLxu7bd+5n5Tii;Ib?6)qUUD)DVG+Q5iWLyn>~g9mNeFCh|A>pZj$dy$_$Y_2=2*!tDI= z`g}I?!`l4((){v9_Izb6Tm5hA90ecDNpn?EbXYX>-ywlJ~01uu~nW&Kz420)od6A&`;!d%MHg(M+=v$N0zz zSYP#{W#M4P$AfHMeyqHYR|yTZif18+9eti!kV@YS??go9i9RQEhfasMV!%n&B8 zzYbvVV(W$(;~FXyz3IDHL{b6x>EX$PCpco#8S9{p8wEINV`1+|WQ8G^2!D;NPikaK z!n#LvbFcUHsH06YhE7feo*R>!o@h_FSb_udNzU9*4$v(_kJ)2}X;f^I5rg)txL60Dr+7*y;S|AxbyrD>{ zT*G4$WALYag=?r+h_tXvJh9IR$)HQBc&PyNYvA}xm|9NM#>`bf4BsbCX8hxC!pqu2 zivS+#;|H_&-YFy_;Rx_a{C@R1d8{`V% zw~1AlZ$cP`aH@(25#iv3=kAJo(Vp%{^jNbtU^J%=Pkit~mELb=^|DSFZ}JORC+P7Aqb!P9Q?4q_ueAu*IVhYM?$b__Ln1y6lGr!|65|r(U9t8 zP*{bDeNel{7RbJ*q{(Rr$K9aZFtDs;*x1)M;?9kM;Blu?zpNqMe9H@!1}vl-1@YsK z*D$G*>PHL$z2)_xCbDoC!9Vci_qMo9CP3s~Ff8d2P|D@4=d)rS?HYy$!?{C2sqcYcW(krQ zq7t=zr0(!81MyfV{(dPKPj4%A+`%3<6T zs0bwA!P0dGx`ip-J%(r87NY$7{bHJ|8cK&aplHV!s}-=^(^)agt`QYF6Yv(cfx;!o z>Y-6G_>-J?Bv?J->@n0&hY|pLd~2tmLDaZpgY=-vYSF02V6>|IXUfdXHQ111L~2fA zTrdHzc95pLu&*X&Iy$S{Q1KkeO|I!ZBIba>L24@epnD+dn3?m0mHKp&0TGGQENQY) zAm~t(LgEDKvE(r`sta+l1aE3oL&x^i*-&6_C&m=p*(W)IX<0s7E$?O5)Z` z)Iokx@pBA!yFxm@Sb4dzLPL59Z=ncU!L_l*o|Bh42ng<;rYqsxODK6y?83LfGSlpo z3jT?X5|~m6Zk0p4-D(r-6(cHa_f35IFM`3(QsPy~+0n`FG zZ9{_+n^Q26kWG=ZMOC7?i)%uJ2x2$TqvZDSYund^#gl%kB+UCL6OYY@2ASfL;nxXF zkQoJ;YV|3hBkGnz??%!u0&=5k_%7aWFnQ2fVb8AG-fF1!RYvwABxOouA~9j~@NdUm z3^-l+n59@lw-<(?J|YyMP5ulzxDlqiGZ!fjnW2Xv#wLR}pm&`u$vYKq>xq8nOj~tl z<{?`G$8= z@Ul4WTU8^m)8(D7ID`n2T<{C5J%(Vy5%>&;u+pBM5c|r~bI2d19b>t%wMBf6m+cMQNJ0uDe+ap5R2l?oYt zAX7f>i>kM`8Z65IzV9V0H?^+MVyfeCxrEw3IPC0D_>Y;_guv4tLr5N}qhJBa{TD>^ zzUd*KgMyP48G)T3_cf}XQteUXAH(Y2&0bN`j}69>ACL^bJRo%%LebvWHB!HGD0e@U z>1byIBz8ucxA__e)DFw1bNITSn$5H$DTF=8Lrg;n@AgcCF|E!zUBI9ZH3Y1jgVf`0+E z;0Yq}J6wkn_%f$gwdW!3({?=}Fot(M!jdEa4<2FI*P&LzrZ3kEngn26=_A5$x{$df zacCS)+vE5=F_gYU4>${SAZC5dBncob7CPh}tB$rgHnh2Ua}cH}892W65!?%$rYL)X zD~SrSHi1fWvIs?G&YPxCR5lm129gv9i;Z^s3feZxq&aPb-hRRnzu!{mt%M=X$M@{u z`N=T%Rd=k3eIqgZiiFT^|0k_?4hF$F5DD}Aww2Aqx36K^2jn|rS3sjN@HlQ_o^4hj zyDrG+HkKUfRle!Pw(t0Ol(^|t*^)L{jIitOC`F;AR_XoNh<@6lBcpI7D7J~=MnAQZub@Hgn4^%2@L7~J^m7f z3fSwAoVMJ=TP{inaOo)J>&Fn4YCte&Q?~!$Q{u z&fUptB-2?Do+{|PdopV_1HDLwLK!k% zTc=I~dI#N7&x%DTH>s3k?e`ik#$e?aAHgcB_0Aqe57{bI3Y{TZ>@FC$;Wuy?sjDgF zvtEjGA`~}@@Ep=+5BJ(9%w1RTxT;@?yD(k7KIkX{AVu~lZaOAR>dSNv-o3*uqv=Ls z7m(D@?_uZez4z9?B9i+P4oSG2IUYd$5GqiB^1S9Cm*+Ky)_HV%SY=;G7&%GlXYJt| zu^iB`UDt4g=Kk;!XA~%Vd@ev!jt}X!C^t3meoPYDw*to?ieZa+H?fZMR&XEW<+vFh z&fP9I14ktvEq8tJhJ2FVZ@n9A?RGkca2h{6F-=Gegi26)$5R$GI-n351{P>~S|2B$ zmUq<`o{2eED)P3{F-YdJ^AfyQU(vXmZX~2YYHcVK7NP&sM*-rH!Rusf@CHFfmFND1 z7LoS}FKd@#94EN(nz<&F$kzm&t4KdwW2P7)rf1RI7+v`j%Z9|uw+C;C*HM-O;d$?f zaMgWv4Fj{_DD5GbZfZv9XvJSzAb%Xzh!&an$+5jtEX=Sz{D_?oKD8pEny!Z5>*& zHWYE8M{_HFT3TFNofTawmaBKAIf5r}mGfL93T0@UD#0ro=G9sfBu}|v-B(=dZg6}^ zx13ZIsYMbR{X{__tXyy^YgY4NI5b_6x}(8682%Xoq7mHPrAS zLns6l6HAvLm|^rkDY;-J?t#PwOU6azc?<)q4u2$r9z{MQ=-_o0ys)&VI^=Orn+>QU zxp7Z7n!X8XW{V;}ddG!zmJm^i`3q3)HZu1}5P(qO*m|adbv-(e$eFTtTaBUROiRi& z{6S!-i;`&y9dlfD^LM*pG9}0{=#bxzmzyosk1iD zx4BSP_HYGqY%9?x^xENajBcKDIFv(`2R@f-=E?8?%QsXj+{({7Y;?5CMo-`A7zx{h zCpiP;?lv+YvrS;s_q6N=l^E#L`sp2@t}98&7@K=QO(5tS<*!|xy z#R62xIBKQ{>F$7f`z@_f{{jZvlfyXQ9sCXD89URYkRJH!TwQYU;!VU@hSelUe$a=* zx~nj$d0Mfikws0Ryf9FvQ2Y}9&jYQ98aJqhYVYw%4XOsG3=0%eYV8m)0xJ5%25|giE}6s#S~oA2K9UIE62aawOD0iVmvpp)_Wh1{FqXeYm}G; z>qw%iH6chi8vTW`{PR_}_@U=lHIst@&WL%&UMm{vXh8$Dk`;m6=xmIOfgL4c#3qmn z){i5Ruj-re7tHvLT8rB;q9 zW3;AG24G`xJ-dHznnv<6e5IrSy}_>06|x?8eB5IW;y%q6KQpAHbzxNc>!y^m^3%xP43UK{EnCL^1k~$GB8oj#i;O3_6!;S`zQ7ceU*gE zZX01uxff8pz!OJ8?HUE*@2H+!MuWQHA4;J&j3skppd1O{m~ujtNw@R&Lf5$``Ev-& zoVGeUGVwdwZB(M9qO6n>{B^ICOfIqIr`u45bsvYOycC+*Y)%x+HI631Qbxufwc$1;Ydr?UL}o> z&y+Y;2r&voC27GVE)U8XUY3WOrt@*krQKGZ}QfLX+a$$ANRntAVAr~4I}}n zfx>zugfJX-o@+=z0WtInfNoqk*z(=0S8&RSV zC`jFa|F-mW7Sl^Gvj~nnOZ6}~9E~iY_!xMZ-YQ>=Bo0PGmJ}NF$`5V8&>PGtz;fy< z5@HnnX{WA+GH*gg%V;ot=M)f#Yhy@hXyIE(tB9!YAz5@esxzTe>q^aGLPslM-9xkh zRA|Yr>_KhF6AFlf3x~FZHbwPy$3Q|n%}QP*32i5rV`XWfDj|vC)qQ`M{I}Rvlux>d{6(Ra)s3pBXI_cK>-TK z8+n4`rL1)fY^+;d!7{@Rjr&a--c)C0hc}fS0um0F;Y+QjM?2JAzo=;)>>!;R4E|W_ z9I9i+Kf#Q$;9l=|q(EAuwu`Xt4`_=2GMfd>?oReYyT1*qHXJDTqO<@L1LWrJp_*Bz zGuUY(t|yi}HRi!6xdkXU9+@r3KLvv^jy&WzpM+ybOs@IS#$tlwPX>#<*U`~t0%UQV z3+7DI%>?7iz=z!FMHF~8Gj6`tsgI*LWa=HJ6?!!+g?KmjhBZKTcO0Sbgu5+`8iu

gI6I8H3a3%L8m?G;9&wEfW zW10!2Dlm};&^{L7?0TG3YfPGk408cQQqGT2Qsf`WLX12bO`3pj@LBK-Qo6PIa8h~jciqD@Zh4#5R4vXa1&YprUI_>Uhy^2L!{Me7UinkHcMQR%OMYcuY2in|^gn$aq^-lqf*~Qh*0) zXh|Y@*9x~pCBEtbg5mLNp@T7i3cv<9G95^nO}Q`?V-d0MTjGyfY@6SqTl`jcmu%v= zIxD({)G(Fh7W!d;@D(B|*}@#f;dv^|p>#V?eY#3W2Az!p;T*?ZevbS|5?vEIO24Ms zo#)ok3P9AX^Hgj{Kc?TpBmUHULp6e@s;}u%1h6R(`5~!?KBZSt=FXp+I4PbO7hh4O zw0MQoNOvn>UQj22(`PApwNeMKvGZ57B0yRFdyIZseOH&*F9HV^WTe4zV;l52R=qDC z!C?j}r5V-4Vh?mwDfF+qFMjAFs{vg?NsW#WR4@>$;Rdhp8=jmmK!aoiq+l81H7+DQ zh@VqwK>^Wyx+K^c7oEvA-cnk{9{!c?ViAV6@ZstWozRQ1M@`#e5#1P{lf4y()z@1( z4hYyKd!rBFu`;)Y8L4t4ikNN!5ywO&Tj4MvZo%jgxrpL~g0c=)8>nGC)OY<1#7N|Y z$>t6*NNkb=D#`ZCaKC7AF)B0Li9Y6r;h|-$a!hD>ijNCTEp{bJ$Dv#bRK#W^%viFk znX3WB4)E=Q2Xf>8@$df&#q9anfBgIZE4@VBuue(6NL)dL1w}9V@eCO5rh3D}{=8$I zj4tEs08+)-YeI@JhRxd)lOYwo^1zx<9Zk;&AnKjL!yZLlp=WAo@n<}JTzSSzEY6&D z3IQ*9XH*B(Tb_?_({*H1bJa*>UN~nl1X9J*zuAxNz2iRS)N1pDPZ zU~WD>*hK}peJ$TcKyGRS+7$jGHy_w+=n@q~t{fe`9UPsIle1Z9b@nKcjrV}yrz(fS zf&b_&G&unVol)d4*sDzBpE#cSMMZCV3NZ+_C;Av~PZP+l0Pig%daDRcPH2L74UT8+ zJxa?!zSpmi*FY&+KzCg=vuq}!BR#}V4=G%_U_VKWWgx6CMpPBbU7FE9L1v1(*x&Ag zH~S~3VQV*m#K|Pks_vwLbhl^pa~A60Qeg&OY2(rc6c*sCdc!!06&@PEd#Wh&QGcl% zui&}KKy%eULeFm!)ony#a9Ip!csqN?#ha`;-Nzz?tjP&iK)S2Xln$h*r-LS3yb?Rq(@;!XwYQ_fZgD&nS?qV zSIGr%mIjo2%K!2ijDFTVfMnuh8DAxfcSL7zfJ?Q#HX>EIM#*BYcgSrTlQwlbua1zv z&a^9`E8rzrf~Dz!N2nmV-#w$hvkkzKp_Gn?Xcar0A~Y3sY9Z$^D3hiENAGRk?}Tx& z(1v)9v=M~n?w#Hawv(;G=`vgJwhS;YwA~$)tUyQ2sMHZmSTcn=Jk-eu(0w8`SiK8> z8<7ieZVmJ>EE&JSMY%9$SU+@*g-Vd8wTX{PtHX^6VVKy>AsFweJt=fl4x_J`tE3h$ z(qR4==hV3tT8O|^^6n`5lGPch>PAI??v}J;F3`yG;u<5N2{0VT{;DKMXRWc=6i)CmWAlKgpnfjN*w%id5N2R#z9JN9zjT|S$fn$mZF*5 zXyLobzvWygW;he}yVD2@7?sMVKyBQT?pD%gT>utzNK#U8tRbKlBUR}FF`&D>KxbiC zWq$2Z%0w62r)x(gGrjC0EIIE#tq+YL)2nvYq_p|ypoCzh%n@At2aYEM_@z6kT6N_6sG<6h; z;Y|sU?&=aUI8rIE*rEJhveqamxCzVMA%$ODR=dBlJ{)`JTqpLV zmh*^F%vBR%TV%`Bla;o0II@Da!E+NJ4OYZvmysbW zpKHX*bWvro^~y$g)ERLh8fgX*miuB(fV1a&Jq$Pm<7yA<1{ySSO~El3xvtT97EF*_ z?c+VH#Df0bSTMza?iM67!RNX=pDuX>a1z7Bd&zCYK&`E(N+m|y86 zGJ3^wByq|O^duTJl4X<@4Au@TWBi3k03A!>B0hud_I5BTw8I%t`M_`@?q#CQX7P!Eb1&C#@(2Q*I!>` zLLO>J)cAB6!q!?lZ`#bihH{LwK2iEXZQx#vusDW?j3Hm^G*`9N z5s(|lf64M7X4G7-z+WJg&DbDe*q;Od8(rp|syX<-X9fq1W^;by4MB?p( ziNoB<>dGN$E743Vp1V#_2Au(^`lKRfEJaCbiX1s?c{kP%o#EkxJ)nCqRF(QZ%NE#q zmN|d1yWdr#Z)jJzLyy~4N4ivQj;{ioyIQT@@SYr%GlLr%k3wpJ&t!z5TM6(+d=hX`xm)4(M=q8R9xB*N`52G_pF%pSguiI!}~E zYJPYxEA@{q?mECp#Mh)N?B#{RcmLc8HM>O^#rGtkGal*v;suFOEn26HsQc{I+wljfw&IvF&8-MOrkN#(?g3 z8|`hjjGUUbTDe{q5bh8U9+T zOqKHNvE0=~1}$nBtUm2QXts_}am$W)9hxQET!aPRXTs#d*XDjTTxv5<(;H+#w#3h3 zkIoU@HKOHBp>I(C4s*`q%)*I&XQ|fdGK(T#)H~k_1j~Iy^q2xmetz0&4_YvVQ_NYs zq7u0*!UjCd99G12H{>Rgsb{!|M3hU2al>*BzlX{IPyX|7hsQ0o11C13hb6^|i1$M^ z^y{dyWj5=*eob=TT}1FD{{<4l%(xTp?sj{H(2qKHq@kmoLt-7#2S~Dw&d!^IF6Nbc z#{vTf(Ko2+1e>!R;W}JZ+~Z>`H?kBVqoeGQA|@5p{$kFmqe++c0}JQI#jFy0`tS^T zgXss)V9C&`K<*;6N0h_lVdNVU{|#&!T=>L}WgWRNj8=~5KAA_AU}%S!NdIeEHA+x- zfPGvb`Lm7baGkxV@=O#1!g59TQ?nwq>Hgw9>?tIKL7pWe{hC*zs-z#ytmf6H0I?pKlhD`?xjfwj`v1)^yCubw;`*9EyM-T_AxG zW_^)=35PaAvyQ4$UOq&Dklb}9MqYA-V<4{|6nES%`Y_j2P{Uz1-*pttU0n9K=o#w} zA{R`*>S*4jet8`C*-VB#90^*sdr(c6sgk!SsCgJHD~`S0f@L`omln3UGF3uxV=MTF zsmveXGrGpMRRmMAx?T!3sKcX0Icvb&-4!XZ0Uk*Hdj;>T%ObXR5#-O=R*9lxCF-v~P4SbyUr4!Hu-g5XQD>Ld$WHoV!|4+PMWhM2%KdQ6E;-ZeI zD%&;{3AHp?IpjpLp$$}nkEJ7@GNb}G5{ue+ggTmjNjgMW?k2I5C`fRiqB3rf3m}3q zW~q$8Av?l#_Pk-*AcMKzBJ_wm#ZG*6I~eGOYpG#;K3id&~r%k&}-A^dpAxRaaOAb zC%9_MqvB%H>XfYCc%UK|T$ zMQ0r|$*>XiaM=DS9!j>x;P6UBZ;@(yd_WpDnlZ!=IT0J3pN*=Nk1AkydsE2;n{s}* zX9pm}jr4~&JJlJC;v^T~+^tREi=QLBknGhmt6y9Y*zi^z^{aAA5h#toID$a&J2fBJ z^2-_CHQ%A6upyg>8w>+aFXar)5blc~yO7)nppNdkWb)(l6K`Vg5!HiikgqV}IN4av ztFwufIJ^kxCSHOB6v043CDr>k?W2Rpqh6p6qhIR-{Lhq~ps)2G-lwy}*V}h5J zVC_z&iIJT~au!Ek2Um#*oh6Zm$Je zcxcJ)m3_F70APmjdFn`P@nRdGXs*qk zosb~ICrx0G8y;>R8#I8D7p!yib@r;?`xTd)pu*CbzRW%6;)8J`Zi%o8Npe_t!Fodq zbHSS{vB(l#3{c*i2B@*@VwpUsN=cH~b`sRR!}DlR0+Nj9CuxU+MXSE_uw{p zAl)ZwyeYsX+a?7}$hZV8LUDi8vqdz-bTjxh0*rC~K-pq8Y=ZOzcN8yiZl;10PvRt( zZh?ZiyND{=$E9ItkH0YSZWSVHiF$W`|5$1=#oXLX)>=F`V<~pt3>Jtq^dgez4H_TA z<;_G=fQo!OSihk8ZB=zLVH7xJlobu~NCvN>gRBfNZJG0Uc$W5&t3$QLzHA)O* zPKQ~{jAU~kcoHhnJZP=0sH|NO&`_oBPy?-_#mV}!jZ(QvYl_vV|v0sd$PgDYoUGJ~5q_ev`~ zhG{|(5CM;}aq`5jQ^{`)(i6t@Ai6iigPu4A4{v}1xw|?5D{|>An+>KH{yyO3&p{Zr zL-^9cosH6or_$opC}OH`VKkE9ArQSH%{VcKz6@op7!IGX{p36^0HwBgI2^{J4LDam zF)X(O@qL8%Q4Da^HPwsZxi3y>LlG6n(e?n!h*CilCPNcY!I6#KF;gT|4>EuZ4m$6@ zd2sJZq3enSv)dsKCRq1!yYPLc#E2*IksrM6mNV%!ANc@>`U@Uek{~lvLO7zMXw$29 zcaMVgsV%p(VJLG4CPi)NogT_PS=pPo<2hv>3ZM>|+2MMLY8{>mTJT%6z?zG`tu^hx zgt7kxQKOpx$@28AS{6xq_!fq*11yQw9SqpnZH$4NdLgZ+!B= zSSH>&K188(@@1y%fm{m{vY}AapvH*91({#=!!QIC_E-G|`<#%2^6f)2j=4{|_UsY3 zj_IswND7d_bmnQ5H@(Ec*Kc|Z>0|v3jC;a+UG}_#dl`v8pn!+9j$AGdkkgV6a4-hQ zd$B{sEf3{qw0abpGKP#o3EJ9;ZlVRk09cLi74xiVw#USMR#>AVVK>eck*(hv$4KF4TFTlC4aE1B~e#WpF zAk_w?&t^aOHUc#%^Ef%0dqt31Ga|2-&E<()ko?Lwk*z$&K-$R@)TN_?7*uMO`5}+z zr2G)okazaWB~22iAff1AiiWxsL7|4UC^slkcfdhkIXPUIAhDHYriSDc3fTklsG=-S zn}spW>9T3BzWpiHO@%_@tf-r^r{)czDZLv;nT=NDB3PLsHX+_q4Jm`VsRc5$5g`)q z8p$vk+Oc1V@JrZhg)&|!%rZf^k2iT;c?JWIwX-EEHg?n-up`QioFX>&%1$TF`9ivy z$@XJBcVh`3J9~TWgHG=l`R?*QkA)VL6pBRB51~wN6nf1d?z7E8w^`3Xy@MliPh>GR z73lgx$ClR<$6}#f-Rpp*`)AJC@3H)QFw4j4>ZvQrzf|a?LeVWPNv(W(UwR^7>g&=$ zn8{i@ue&YLXbtrmVjFM9vZy&$*S73Sj z6+-8g==nZ#pgZ!i3Jp*mKR((S=FppPw>P^X6uaKrZT#Q&-6A5WJ|qvwD1G?A7pmLb zn9aWYVQJ&5>|M7_gi>9j@=epB@H7bR6)fD%c69MP>5mN2&Y!c?X6ed;k481 z<8sG(u09;D>dP?E8y-JLaJM$VD?f$@l-=T}w*#+O4A>=d1VGMNn~*y}NIR3e69feJ z8((!pKyk}xM(D#q2|gDHAau=S)v@Di96XNMgD**3=NX0nS~Uc?Uxc zI~*HZ=7f?)4Q2#p*%G3S2VBA2JvLpDHo%U!*rKv!a6i@@2g*`PrMV7e*M zQd>mzL2;C|x=D?zkLs}qXbwK96nX*s{T`)p5F*sXmwslb6=7V+=!7rNhY=Nw%F!{b zp?Up1d4!@O3-|>Feb{$VjKUCJJbeL%qqDpoRzd|b2?c%(PVD%@H1!?q_^t!bGSsb7 z%XG|+3H2~v2AWW`4CSU?0)C6&3sMk7-{VrHx|&<9#b>BmEb1)C^23JYD9w#`-R`nKIjZ5>^gL{unj}z9X$Qu9HQziR+Kx#e4 zv79^=|Ks2Pp8-oUT*`Z$pUANI@)mvUb0-jLHfu*6+SB(QMzpCDisUZpUm$c<8;ej1 z3TZ>hP1DT;N9mj2lu6}S?sEP&$c^bsAa}fPC?ynaeW{WXVBBvRjTuG9t!%@pGis3; zONnCg$$6A=x>U^=&DPEQw}T#4Dcz+bsZ~1?`j@_4(Y>z0Q=NHA-)QZ@J-!WTZ$>g9 zTJ=ScdQ@PK0HsuN)jm5h{}VmfQ2_ zKG@e^g3xs>+iUoigbsHS0qw)=D@N#%6^ad4E^#N2-2W~un*JWwGlzTKo$gWgtk*k& zA;UX(Ydh~klX`lAJ}Uhc}c)RI3LI*C$b{LC5w-S zFHnFN4#s4JfNxX9m_2SXiSHWv)2W}%iT94DFc=eL!lj0X73?`3c zDD(W|CQ_ohb&wJ=qmLgE&%;uHErr)3azVm7K-|1=oW%~8A$G8jXFk^l{SND+V)UMz z+voww{dXR{Cp3B}MLyWUgmOZ0^^Jk|_WzBWmF*6N8}f9&Y9nWFpYo2g>G33^fB=$i zRc$@Dv3!ED6#4N45_he`<;qUbl6{o&-lOzguuRbT`#qR0n_pPoSgUH!cMar6<=j5` z4z-YE?7qVez}$~;#onRBMbNz}pS`I`$f?;y0I^)!aW1Q3_`5m`vuNbsNxH!6^QyHDa)kV6S8bT z5_|YY%QKU*U2?;^tsH@Ai8KR1u|e z*v@TRe2Q&RbeX45A@uiv1x}5x`Lm+Yog>;&K!{Z{`}noaPe%f-=jQOkl(z(`3TG62y=&BQUZCY zMb~m(>dSpd%Py^iJyKt-I6Q!H`Emtd?!sYr=dI{V`5|f0*<*QVEsf0%Nja9god1o^ z-O?7e=yGxo+sOdB{*JxLNVu=+>lGa=0O~>IhQ87o4E7`-Yr9~MNEm7wh?Y3Q%}z0SU9(w@z}%JS1BN>1qrvgEKaUy_U5{ds zxg#)8%#lGc=cS{)LF@kg)_uF0n(|0R(`DJ z$MCGhX~+<)cdRa|@i7`w9}r284Wbjud97c&huC%uy@bh7U#nnP59BWRKVlwv@TA&> zs}7F@pIxOLgSkty>Kay{cgT)a(^eU5N-u!PZRYc1DxJkzX|PLjVAQy_ar$9va9}T& z6Ze_=R$1(L9A(WQZRq)6&xg{Q$*U)A3d~~Rl-eC_7rw?Neru=0skCr|Whf@xP8FcC zV+Ba18mxuWkI4fcsTYn)hNgPf!q~bDQ&IuX-GT`KYWmJmhRbrQZQ^S*&@LHFh?EYtT;?q68vdJL6j6_;=1`V2L=m`ONWAv0T5Yo0za6L6N+0LtqTPoLn_ z$|KRwv=&-WwK%&|wnNquf9m>F=hlzV(i)S6 z`y)WPFKO8E*Y~iEVTB+v0gH%iJ{rKfnCSL>doValw*lq;Roa4+0h#PDO%E?3`L6cBqJX^uXHf&eSd#?(Xw2 zJ%HgZAErLCk7gb62oo_w&ete@>5apcgLQs<^Zu|>v!u$26~@nU6pX=ZV8Wfrp)j5L9xXu`sQ0}aYgA|HN_ zS8h#?RygB?Bb6r!9x`ID-jS-BAYr*b%x%yChbP50|5NIrB?Ri^1mSmV8rvtIsN%BO3H*JHim z#2HYP_k5yB9eh{1=C3!=Wnzj2nJob`bL2+aJ0wky?xs4~m#v?0fAH=rE0Ug&_Wo$P ziJUAq!b6Ec5};7~IAUAoQqRLh@+0loz0y{dN zs~$bXj;?HCDzQRF91Nnnz~U4=vIeDk!l1e}fO4Pl7V!v|@O0(Z+J?<|H@kOuvcuQS z1x;C)q;Oq&rWQc$@-2Yc6|$RbgFW7Ixxz0i*UF+ zYzQd#9S`|qupuns$WAJPpDi^anSG!NZxpQPX}+5(?tFZH`~WETNE!!zD0xIk!7tLQ zAj}Zym<4UUl1&~r(ax(U2~h59X&BgKwKq6A>>Yql=X1pzS1mKc6j5Q@$My>0ENlxX z_gLEVP-GjQs)Ii@D%0XfwcI}F;lPQC@DvZ*+v6yP$|*cQ0fUQg9VrNyb%YI(TQ%?J z5c%G(nU0}bTl?+q!PZt~d(LlpJ*MU5O@JJ*38f?0b)g-UcKUjD-6}SL%78Ksh}_%v z-b2il(PqEJ7fywXkEWZwVi{fLvs~}l3c)RKaQ1QIMx{waU@Hm?PUVgUT=-=xuDceV zB9nkVjrF@N*wwpxTRam7m3b2D>30R2Y>Q!G0_EHsnto9gEm)f2f`@Wna~kJMS7 zp(I*^VQmfiD|m)$aY|8d=q2L#a(YNpMkxZfkWg~(WYEniDx$mdGQgAX#`{j^06l#R zXIxse_ujuj4TbhW3;DoWh>UOHPn5ktzy;}>vs?Hkxg0i(X9 zA4J97fBEJF-W&(;i$2O05P3-F9TYs$hLP;SgS=s!=JgVF2DhYE>rW&|s%j>`?|z^L z?8BQ6UN8TX9-$=|K5EG>k!6o8c-5gDlJ19MfA~@y1_a)6*%yVIHOl6HA8ctxFu_u} zvpn9WkXk>GbUC3=h{D0Cz;a8oY#xTek!ZEOOi;HZ2 zT*VO-7q6^tj}fusqgPMMuFi>zAdY+erqs6_$6XP$2cTTGyrSPQN$ky*eTf zFzhK25B-+hRZL$KE~2@FuiQ}xNv4#2V8~xVY7k*cuh63wZr1CUanZdplr&Re6M)=* z-DCm4u#_PagUpVmU$d|qU*#e}#<f&cou#^U!UW!?6{FmMSu;AMS^JyFKHvW`W6p-ANkW)_-Wcr?% z9r^S%q^hQ!br`h*nj2qb_&5^nI#HF<0z>E~uFr?jE#bLIaZCq?ML}V|`DNe6?qi&e z4hP?V^9?d94q*GBY&RtQzM1|eklOdb`}D56`P0%OUFcE)Y?@Fx5A$$d!w*{Tj`xrO zy1lKL5aRJn95||om9X43B3`5buAKs9PS(_T9uH5TAGJO6meJf4D06-%Gn_=1%y~oR zF_Dxe?(d-e3yv;?;<>g2%H-GhC-H3FAo7Pht)0Ct>Ah9?B@#!is0jeMCm?wX%DC>< zywsv1=S~F5kZm`lL;C2X+u5_bV&XiT?-T=)teyDeAwY8S;J@w3<1#-ZCE9FD3Es+y z<*K*WOmi$Z^)q!K($1NuCw}dqZrtBA5ZOw^glA1EX-N^%{psqEt7xy7eN^aKeoNe$MMMQ5kSzjQuA@8sqfZD=1ty8=L>PSJ~n(DU2z?8I3KI?*{4rHMbId!7Rn2B1L^*JCV#GXh zn8+J?(O7KKG5M|Ue&0Lf466Uv-@imXo%!c0Yx7$(>pw5gZoORCcwq*t#?nSqfsB=) zw#tBNrM>cOVR>fl=dGE!IYXqzF{4BzM=GH&pBp-m6#bfS`}4(>m9?$8g&!B@=1nIO z+KEo#kWLs#r8nm3Ev~;f+CaSdA3c zLx>eom8$k^X=QG6am5g8-ZKxTG$yoXRb8raq94{Jg;P40J)M;`(~pEIehM!DNU=vf z_Ug*Zc?(}-{~6K&!BPr36Km(mV;-zXV}0}4`mF6n^V#-bN<(KGk2lt4X60I?Qvaz-~UnK%+=p;ktB}Pf39y(>a*abev~Pm|s-8Aej{%Yt6)Lz8vL-~?2_UZ1xOZ;VYqiajFjUSC|8 zwYy1;BV37l@_qRSGrdh@h!7AgrQmz8vAMcwj^LT6iCqt&jd9FAWCA=Y&{`~TMDFII@jc^;5=HUTr)u9HQ6+ZOkkzuNUE)v_66g_;d4%^Bd55HxT$AA6**Y$54tt z>L1R{ugyO<1RAV6gQXNk{L|+%1%cYU2Mne7V;=v9#g%6>i>3<=)|~}Y8rp~DnWZz! z4o`uh6kq#rKDvjeP|!WD%q`4rY%R^N{b0M$U>!tA+Jg~(wz)btvti+z%rZ69Ln;2n zxy{wBjlvR6Tp**XWlyvR-k~kn?bd0`%! z`}4Jxr81EQT6-0w(i?j*^CNc2wI4Q@=9lekG#D)lrZh$tmR48RHn>A(z8lDj7^;YW z9=nXkH@l3se|=-dN}}fNXQ;gW%d3ksvzUg0*{lhE1Xac_7|zauA6d?>FLf6$Z33^sZn* zn+&~En^)Ye24|uYp7!U8epA@U8)#4wlA@34v$7ejfdsQ)N+Zljg(2+>Gg7dmg&7HU zsdJi9tKNTAr(_0dA<9GR%7Gjv@th_-p`zi%$B zZp}PfUs>EN=;jUh%7Q74QGN{7>*dUvJ;XQA4-J-5xXw=(o^L&$SzO0ier;>Da2RMH zn=3Ju;tlgM94XEP-$N<>7!%!C*(zK08t}FSQySM7S7zu4w?4l{hP|!%wY7r$Z@_t# zm`d@od|R~mG&oh{K#D!dkHpwIyNF(yX=$)qmhhC)1b@Rc%EqMzcO6AIr8DZkSXtj( zJM-DpU@3(w@{}$h%xE>(_ah{WULK;R=z^r^!b>IFTT@;#mbVe^O@-a9!EP8sY1;+= zd@RF^@1Yc5#-?=IYC1ONtTnbY^XK_}dWQQXnB`HjuB<@2$h8Z4!7X$@NH^Oa3I@(nC`0Y{N9)02%C zYx9;N8?4?ONU<;Sqk`qV$#_!}0i(E6xVnZher6fE`wVGqmR}mI+cKcin)F{)yQMW) zw+c1U5MN8>~Y6OKMu< z_8UFTx4+`zwQ>6k_pYOx>`J<@{38yKW@BkU!C>hKjmy*J`5z$bezan`fmN@7rc^Hb z=PR}o4fcT?NU?nnR#(;+&aVdnO{t&VX0&_Jqe?pa09|{BprZs=;Zu z2&Z(WNHTkccZ+Uc>})jH*~)-Q>q>rqXZW_k%8QT`eMFv>uaq0ey%@^ldk1nj!ju0y zIgnqKEPL!fzOXVk|7_DCR{L2 zqZT15tx=&hJF`B&VozBK0dN`}kES%Pc^WJ8YqRsSIL^%!uB8*^&{IhnP^CB`6w6bU zP-J|qZ_LjY=_O)OPNi1@R?6d^ zGOhsN-(|Jnglc*!LB&%#p4aDpnxEY)`zxG**CRxw<=64^8Qk~1m|31%EI5svVI3Px zrRT@+#mxGP_4#>gCqKg&20W#6Mds?oO2Nl0p(dO*PmHDbp4Z{4xH@0o_53sv3a3;& zCoHUB7hIVuI`f`^6Cy;V^{I^5A{3w5pIg9xw^LUd|`239GWnEcJR)yYnFkP zve$H0f1aJ0eKAiv=YsXLKZB-YL6xGH&8*OGT0iwO=phQHRQyUNV;)?zN(%59R&oqk zq=rDJ`3eDb7HScsQuC5<IaIxfM>S_|bv~ z$}+SLyGNa2v;v-|bBxku2u$XrgM6&K(B3K~9Z5LTC6bQ3Mr8%mjz)4wBs6TbIa6UU zX@7+JbgvH#4uz8gW?@f7yFC##f+spAzg}mwPvxnczTu>C&a}IQ zG;-xJ->5^lDh*#@rm3x0iFv^J1Q;&n{YHjanDyE@GuoTI96f61Q@u z1!uRLu`Ab>$(Q3jvxz#C#Aeliv)X|htvz$=qERb`h4nW*R#?{B`9zoa9$(YLc9aSscV%UflY1ND+(Ho{AapLw} zFH)_zZrf-I&CXa46RWIz?Lo#DzQII|Xp*=E+MUs^7_G=<^0CqKy67V!s+~C#$KVSB zUZN(d-KY%2_3|#in{dDI+fidT_?(+(cU`4zsNF?&pxj|*?~#^I7=*dwS>Go~BOc1G zCCY)BmZl{VclmZxeUrUA)wABpB1l+}i*;L0y`SPzuO% zay@o*?zPTrM)W(IUF4m7n=4*p*HJSYDtGpXqqUd!vNBOIc9p{nU|K9o5$(=mcj>XD zi4dkIj#g)!PG_cf@M>9BKB$zu|7?r35>@St4u~5q zbPu#rDcfP$cN6r9oA=wGR)(_eFr5!ZM%}8jdXXgq#+2jJ9|Cco0{5eMLS~J z7NgdLv)nbz5-+Zan%Gdb#SS|B=OAHwh3^Wz{H-(x;SeuWP{gM1=kF8BEvwJUfUMe! zZX!29sG^u@wcrvt8tb3N+a3nZA1-vSS=(qnQH+z6tD2Su@||mBK$Me>r(P?-auPK~KuCpo9ONiP!7?`(F;FrcaPhvw_3!OJk35!KFC*Gyf-@)ml@br-)-zq8rRex9W; zj_afa(67*VvFvVUm13}9l$hXS2x}in8Lg6@-srHieDQ@(!ulSoRu;`%Geg&7KCal3 zpCwQlCStvOzBtoZQ6Kw&@H(3NXCmsI%}y<~F^MuQQBBY_YiF$w*34jFRZC;j{gZT5 z31{UIOR>p$mzC*ezV*`NZ){l?4hYfAmwQCBi*e7uSmAs%QMQINvlb_ffkl71+FjnS z&gQCF(DS32C~u1!MR|!)?qb?kP3D)meR#gdERoA4nc;j%Xu_HAR$Eb5S>3{Z)I=k_ zB6h8AGxP~^wr|8>OD=(R5#Na2l9*4ROKsJ%+O+rz{Z1@VpCWZ5m#uCxO;bxPQ*Bj= zs&=W{olTF+oNGP0V6ZOA6Us}Ra%ZxW+bj{awk}q_onB{1;zpw+ZoU<<4^gc%ABS2f zF&3QNF16YEUNRs zSXa2^uazZ>&@)q{y|43|`i}B#^CtPsXq#K2V)J>`>!Q=4z)jK0ST>AIvF6;{yR>0_ zg}+(6mGdEqhOy{#5$I8$t(Omrx8w>))T|XtFQ?w0@N}2gd_T5udcMvYaL0fQ9~%!6wx`VJWNJ{=(tM|tEU0U9jlW6o=+-DprclLS)uL|dFiCUF581<)a zoA{PxYO$;#D|;4eeec7vBy;7q20|toCC->jiH&37!I>u0FMo2E=ond>Llc;CVd*Ym z5#QYk_TH}hX{{<}|7|#dmx7ni7y7kYX>`Mmxmb6GYQHP%+K`ndsc;p4osCu_`dy;- zmmJUFrIKztoL5K3I_qKqAvDs$GkYjK4vV3hO=BG^5 z8W&4CqrAi_cP6{$Dl+*N7S$5XD~i=ZquZ~By>jW=3bxfPYhmP{XeG9&Q8iE!n*#L7 zrDbbmRoa|mHOu;5;Y_rLI>|IWVy48JacSKxmzEXG`obnJQSKIxH_H9g?v_ut>|08d zy+z8C=q_+AbsB=S3lvMsK@ zsR`5E$8JdI?#vg|$V6o~p<%Bk1||!N)4DY26{s!}OIcx*IhmKXiR=}h4u;BIri#6~ z7Vh_0XZGqE{mFPo8v1JA`?W3{%&OK!tC#Ih!h^|eo_!_iKg_O%(1^3%!&-OiVo}?P zDoJwN&V;ipC6s+HI=LSLHH=hglMpq+*pbs@$2}DBmQN)vG0~ z>{APU2nlM5QS9t=lr}Mb=|Z9wKGM~;*w(3DXQ!KeF7%EiO2K5t{JPksG1ol4ozs%y zsfcoaD1f~QKc&41zP-+3uh3kgIZ&eL`PMo#HaGai@&7e!Gum9)=-5;^w^|piW|Kd! z>ekeNAL6H3ZZx`M%Z*)EuV7Ps!A8DBYZS%v$Y}R-X`|Jd>c$mbtMUK3`OKj5rUm6SQIlM(hqG3r#kJ}5PTa023w`Ep#f>VYVe<>nu(hxGm>-W@(O6e| z{^F-13|+fQeybY$%t*@>jP=V?G#IJrC=qQv zt4b;wGNl!jGK#CH@`GBkcD=roS{OJ@wWJnQ9xO+i^QpNN&Ei8BGrd)ymYoF!r;kgE z8Vcmp)E3k9jl{7pk!4MouibPIp&uWpV`V!+jv z9w^U8^=g6_+`3dW!I97)_b8LUy(H;jLo3&1<>Pyk#uf{&3aReSWmZSDbX28d$M}i| zRwPtm_cHmrr4-1= z?zAnMOHN8H^qwJF7K;{_OO!QDuWIqt;G~FMkySLkLOC_kcSfKoYDQCtJ6YP6LP!Lv z*B#fYfdfwMSFOxL@RJsnX4T7F#f;)T3u`EgQeruQs8V-z)@-R1HsZOJ?f zBG`I&8HlNgVdb_xBravmRkDPT+N~m2S+P8wD$CZ^asiE;9G2YBQH-1w^$Zpr#fX5K z>a&|W%o>f3jx6jkFi&;Sk%g6U+ULlXYB`f9^URK3)8lD&7hZl+G`o$6>fU^z8F!SH zrKZU!Z&6ytKyn>PIyJANzNx~DVYIArkj#ri(e?-lwK8gs{GE}p_@QPbJT^5eBinX@ zCkB^`SIE7c)h1@z%p=da&YFxrx-8nvM+DXWP#epX9}Fo5C~uNe$XXJDG?jxUUSt!b zsfehx?sFmsRU*}0JQn_*o#II-5~{S%98P;ko9d0Gv`V6xfAhjzv`RWDwa`1T5NQxK z_Y0P0iUu7CmmYKF?`XwvO67=y7vkbdMM9PKl0;??Y*ep~b?Pb_IAiUpE;`mxA(s~O ztPU@+1NFK53aJ}WzkdStMo85UlHRi-CEK1*WM-(Y#gpbpn~l13T{gBYs%W!eWzD695iuQ1!oLcE?t?VV5Qdv6(rpO18kXem?s3JimkWuv; z!ek!g|AypCqKvr%};p|}krqc(clRyC?xOQ`IhZ(|3IgsSbeSf=Ll%C_nrWX1wsI3;436o;45@@2^toF)I(HK}67lQ?+ zuz0$)g30fs|7&9fQz6y9xoVf5(_Rv0n)sBC2*?TTWMsvvO3wY5!FRMm7wu#sf@-sG z*n5^am0^XG-@744)K1X~7s{!bu42Y%67|{x$ko$LblhH!6zu_=l&bDiu3EfY(czKo zNb{5z9Uh5*>g`sZ_S%2#X61rMl}yD zHyTpY8XCleEjrU>#3FMAdYxR2>~y3I>3l~f;BqKcu1{&>Y$23WyMttgT_-+0Exa;Y zbb7^@%Z6s(O7U!Hb}pX53(U>MjEBpc^RoXTwWKj4YugzKxERn}X>5`z<0W3vTrnap zR~925%@u7+3l{E*_V!4q*6xet@2FC3D)@=id@r~~`(hO;qPnR*gTtk5s#Qo;4_;z* zxPY74zH!``1lQ?~%+oa!qE$guwBBF`Vrs05mzmluh~J`lMP|9b6j!uaa8jyy6FM?+ z{5Gd%i>lOIE*A`)GMW>s<<@;^tJ;=aDx`J>E)^Y-If$(WCaL7=a;bQ7lcA@7L@Q~e zzgN{d%}LGBWd&QO1Er>VWgD7v62IiFoD*;vQ087xo8-n?so$AO$tL*@ap5d&{My4_ zD5(}Uoe|NQ(m73JN|-{Da*;1xCarIixL~ridCtGfP4nWb@#hDve37@99t}^|9qY5H z#!O>vdS}xdhGMe75-$v`^mK7KRo}y#l47A>_)As@n$mul|jG+8#SET6rl4`s!iE92OHPh+zGgLgf zX}KjmHg8Lmp@FCx>o?QsGI?pt60u%kJ{DF;kzHGZ8xvD2V~LWh;j!A78aX$;yrQZ( zrH(F`6JBNEHEG)>3q>fcf!ScT35?vHn;N;WdEp!rdAS$awN0jJvMypT?vs+lJtC~u2NjmVvbrttZb8(= zd#2OnN?N8qHBC;O%iUAafx1cgh#J=tcoA=C^ZOaPPF#&2uqBeG3YW+ky4uTQULpqseq4#VIiH5j92 z$aj9^J5I~Pd`>YO&reNF%jd;0ofhwHwjonxa(~l8Jsj zt=1l<#m<=Ihg^T`@?*6$ciGi`YP2%RFA!A2BU>&0DVe-2RYPLFYfZ%=rLw9OKWWm+ z%qNskg9Bv^Oyo^nn=NgZ_ykk4rtL{)_u$7tK)nLq${ffOQX?DB4ALnqWoo4x0`?wF zKLcBt7DhzWLSMT=B6|UBxmD$z%rBcVUf{Q0d&$tBtJ1-{FREOE6bMRL-2C76<=0VMzs$V?Pe!ks?4ZL&CaeaS)8T)&`4D2;-Y7yXe6AJni;-O zS17}hqZ3m`Cz>e}vFak$BO4Z$1BYCsUU{47c5=80E69Z7z>-X zR;o)xM9uWjoH1%m|2@F{2=63|M#fd*C0r}x^cIEHRw-?n)yZI@Oii0So3U87Vx~eS26Hwb|v% zR;J zZSLW`&GCRY3mOa66vuv4O zh?W506%`%txr(~3CPtK;~qjT)Eaiiegp{BZuO#L!H1g)fY zTu$weTDHvUG1g^*DVMvl@L(NBsdW9SOfFmRwl(w$v^1KHL|*hovP*M8*{aCY z_=XacEo9Wv82&b<7RhES)7`EXr?6})pEGNgd6YlOQaGH=V4z13SUG!;xPkSA)bbEB z|C6a&!5U92Ac(d{er*_t&E(o$rb@+sTt zyNoE6A|c;9ld85tlDpP=(1M19GMD?hDotj%T{JiBd(Y@k4`cb$pG)Lc}G!NKuxh8wg!i`yqp-cUne(rxiJ z6?S0Ur0tMBbFGZ+Tb5Q+oopX$>}(qUWo>QCMW+=%Ybz?$V!yES^U6*^PRi|Hjhtif zJBc>rWS~GT_g<(Pqnox061O2M8+81;4%juz{GtsT_HELn zU8l&Yp^>JsmgmC$O1sWTPuVj_C^?Ol@q6u7+=srD8XhE*3ejQA&g2iZV`3S0$xYRn zcxNFBigw9XOic~1u#d);?2XPeh<`zbz`2UmDf3S$IqFnF6$wj`NXWf=bS-|NO_H4v zSq(woX}n8WeJQ(HQOpJDSt+Cc$&GO?n3dzsl-LFBAy|ej=hl7%YDp`!mvVB%7W3HGH95zQD4Q#0_I> zHdcCelEl_Xsj2?DInzWXI-dyYN2UBcUzPFKnG)0wC#Qx=+_Q<893PSG9gV5VbmQuD zx<17}>iWsF^0GN*h8T^ee7dY1(G)4QK3WXOld)|w%sNc@AiTH)>_1KlCvOqcc{%LV zcGF0y>0y;}k!h6<xiaxRR9CLno-6;gyF@FeY@1xS6n39-3*Gz-+-y9=#aKF=yGZ6#Mo{ zf*3kEwOs0+jd{0B>Ry(ZD_zA2m$8d|m7FVYF(EFx-or2J`&%Ji6R$Gb^0xLVGZ z2YZ}Tky9ywD?o%A{bnJ-MAQhW*)it97&c!2O4%_aXJI&`V&}A0jF4L1vWf>|+4w(jdYD&|zOK;^t%>u^-#44Y8ba3E1?#W3{(Ag(`lKq}8ng4{ zkF-3=uJYP2OPzN>cG|6BA}$|_jb(G4zpR`jo9o;Wn#oml)y8-TX2NaWSy zz~V?cXLpmB00e#~S{Sb;C-6HVqX|F6v`}~fOxdy)QuI+N*_rCRTtS1yuVpt$bf}%6 zOR!REakPCh@h(H1e^kCz)3NDjLetp>HN6F&V|dr(1rw4Z@DKz&vN+D zO)&M2h^pbCkymP6JS~#ZIa9jrZXmI~u^WO#em^em!JJ%tTon`7P)v!vHX#X|KMX>g zXVVmW=|pW9O@Rx#4^fiM6ayi6!xBn;-WJzxcQ=G!)A)kKO+UCzN$&CB(0ClauXGhKvaVv^9X&_ zDC=qID%lttTR)H;@z$I_Tu2mWC#l8;vKkcXOEuVyp%njMP8k04IO`_yYe9lJVW9>! zUt0JtCh6x^$ied!c&B9N1{-#2WdyF%sbIh_va;{mZ0+#(%qJM|M`blE(inyMTuBU1 z9-AQ>!4XF>$rE_NMNF1k;**X9UhqIr1JIXUYi8h77N`_Mk)kdQ|C&ZAf^9GAPEt)x z65FcF#B_-}-C}Ax9zpH^(B9DTC>phYcc_*sDk)Fo{2W>9p`AK-;2Pq!u z=Nf!(QlfsY!TH!nRml+$W2T&gy;+%2igTwroo>1 zf3bP3ifK%xJuzC0d091=y@Jy4%eKsw(*Ni{E*x?Y>u{)(Yi{r>e3GFKLTY<-6%WR; z+qc4YfT|T~8QRIR^cpGM`8*%rG!YLwdc=Gedy?MPNU7<8W#&mX$e5jg(b-=xGpNe@ zj_oAFr~E24FifOv$tmB<9FdS^Z?l)%(k`p zc3ir|(Iau;N{1~e5w@dNW#QC2Njn;m)l@09ff{G@nV|WtiAmMBxc#H9UjMnt10% znvrp~Nrs?xWuD{4+|dDcg4Q)6szx`9yfSGpgL@4k3)ewc#t#dtMS`v@5LA<0jfur( zXS)=&V8AH9E4{- zEq@wYCdW8gY|e9-MpJeJi|q;~D|y-POYsTX>}tGfUb#uoW*Z?jEDLq`<*3fO0wK%( z@`RP3XOfANe4WRyFCt&8XHqe>w39yC5@I#Vm}iYlJk58VjD2$lkr|d{rB2AgG#(|% z(JI0dmR@n1%Hm?d&Fx7_Zz!talItM@ZE}J^j!MSjzDl+O`qSP-aW`UWV`JUC6E!7! zmdq?L=rF3~Y(&=2%mnSVl~Oys7Oyl-iJU@0S1cx(nwt37E=f$Rm|7TFZ68f8&Q90L zP$qBNHkrrBOhU?0b-Gr@(j;P7H!}W^K1tokxC85A()K_zGI_iNb#koVx`;GY`8bW6 zQwN<6C%o*jJek}?o45oGYgAU_J+wSq)3~}q)!vWxRaLQ4T720ZEeaR!oC2R_>=niwVSH z{xBs?`hHpWa@K=`qLLCp8zr8ujNf)7XrqjfGi@G>VcEKCABg?DIrCbSc+$fG(m++$p_W|f4bhx(Yc^bhA8%5Or?%h4ErxKai=Hn-3Ey(hOa}zq!q*e zx2Y)|;mnHfj>(H|e$J=O=jzaD=5!ZuE=-J!J%iu1fU@#_gaJiVNA>&W6 z6AZ=zK{Z_xys(3@Y_?Hqz1|W?FDf?NsLZ-?1E*qImh`;dB7sv88MQowzm3u80v<1; z&ctxgmCM!pF0~|sE`-$H29*d3ULU8xx|1jh+>aeoiN-&k<1#guTOfma3D) z4eBkw&D6`h(o5h3^)?Vx6FUYkOiXRpCEM?1AyC|?_2O+Yjdqc}~RhZP%s?2UkiGFCSUJ_XPkZ9>nV#|uDtl4uA7?W zw!4{P6gYco8XMxim;}xqD;31d=rGZmwRmC5Z7!C{0vkF=&M;mb#<-fa(~xxD;Ix+5*nVZmfMqBu{+D<9FcLqxH~9= zawT8SlQTtLl}%8ttdyFZV4qC<%Ve3hSz=|!ozBt6xg^tUy7Nn9deCZ#IO}{~7({ik zj!DHd5JUCRgo2aCCUM>Rp>3bzR$0+)hgHPX>SVEM)`c1N%%d~F7cN(z+tdzcgr*e{ zH&1wIEg0v?g%SSxd4h2sG8%+&{B2@w+G>~ljVrtsTR!+CCkJ%jMzH!}mOtaoN`lo7 zC#ON!)jgYFxC$o|;l^gxb8W#-+jBkUrzN$Sm9o0*T~r$QewW76UHJ?ZsR^Q?!GBhD-Epz8Or zqSXd%lrgG z?ue)cNJ@+ZNLzI?$K$ST`Gy$5paAY|{!(*(mNd4xrcpW6@Bsd{MQ^c;St837k%-E# zbqo_t`$Q29MAe@8>YQo|&9*R93f#&juw2HGNgo{B)}6qu>Pu@N%#2hvA*xOj4ld@% z=$TVjBW9B%Hs+?v2Y#D~R=;0OFxQRBYIw}mS{fc5=V00F$kIL7?nJ$xD|C3V2|?0a zv7#D)%}k)|t1wsWvx#}o{$$2a@t5xsv;fGcq5gAZ-5?k1x4oVtBS(I{`jo_g$f$u1 zb7st)>2(jXQeH5$mme4F9#l-#4$()GICJJrTR5qu;e9ab%hWAjQSDFE5{&w+lv*5R zpNzp7TqG!)Qe>Nhbh~VIpox;TBMFtPT1j&d^zPDZc&V45cNY=0IaK~M2JPI}Sd&*W z+H>PA>+=YP`Su^!Qv7Ag5FOU~M(NVM< zTQRjJ`DnD*a;$&XvSO^xa!dx}S2LxND`h;J3C6EZPK|D1E4^GzBa?7@pw{$hI<||Y zr`(q7*-Mn3BBaK;i?QIoT~r6NzSyk+31)p6r*w42dS2zkr_?_)8)d}AsX6)zbD}=t zoC@oQyTZzgQIh)M1T|J;!^^PDd5wjuCY8=vxN0)JgFPzAnJ=k`+!aWy!v>+jA1@|p z5E|TYanyV{M5mEt6k;+`I%_;*TzXj7B-h}XxfeFWXiIa|uGv4USw>K!y=(Bo6j(R) z$*1IlhIYw^ADBfiGlWeCS7>m3fn*KA3i_^t#ck?kM1rmb84b)3{x;#*y?nuZ85Ej@ zZc~zFD;100SPQ1zE7Q$vt@R9wregI~#nk2qeYCBjOg-GtL|Y8~XVXUq)mGMC%vjnp zouJw}Iki1VZ3IK}^2qc$$ZNc{RTZ+Q*t3?PhzEjdZdCBXM0SysH(9o;FkV=uxyBE` zZ%kx^u9olk#zqVYx>_rxmPgtrW7alR>XdZn$r%W_%W#7HmHk`=chHH#V)?6LYI=k| z8ryUAMmljKv1rz8inPrHN>(r;b}D2Oy&PBY(mlb5*q08Iz{Exdq3HC2V_!wS#}-_} z;8X?2!lToJ1lKUcRc8Go#G97ZZRFL*QSba!AIT_MKk)Dw{295iKf=~;09zn48oHbei)G;1f7U1j`#~e2}&9= z8sjbbTN79Y^YY{$I>lDdw${m3iFR$z4g}TesNjW~ZZM~taABH#&1Snqu!TB|t1RVv z`I{uJBBNFZ`da~_-A6DetMk|36Aa4g+zNa@;}EWsZwJU_|B)6t48F|#+8lh5(cll2 z`@Xa;m{0bV$YXS;-(6`0@isV*YCAs4^&iE?T?GTGx;Xp=M-0@{n)7N6qK-3 z%Ei!nD%-Cp_D5dqMQzbm$%<(J`pjwR3#VcI&r2`myVjG`eRBYrVuX5{6Y(Ie&hVC=5u2Vc^MxL2fLsX{t@>SDJMZ znmPBp^3-1PHGx!)kJ8CUnk5Xu_Aa|f9W+~BnkU%a6%*G`mBe0~;Az`fg1cRI>FY_! zOy1n_FkDCfr7_8I(qiV))ywQRBE8VfNKhio3VaYbUzvt=|5h!UkTdgJC6_YGWp5@l z;!x*1nr4JkZFV=fkzNJap2xdFH(;|n=;mZDS}@0#Kol$1DyG35Xxn_5j?Um*%xoEG z%COQ*6@qEKNaXycFTpg_2&s`R&4Y=%{mZl(8Y{IH%+c!Gz8zmg)KaPZY3!J2u>i?v zxxA_V?V~Trr{>QoPmSD1_G8JZ$A#i7%8&BeiTe7&b?+nzYQ;1JDb->^F@L^zE+w93 zo*!BI4)aiNQizTflbEz(YI2n9v*JDmYf>*stf-VZxNI&cxWXW6o9h(4N|4MpVlKM# zojqxd=S8oMn5V6-v<|^!%&yMGJ_4LzGUnve=ven`VjMV%+*?_tlGe(thm*yT0Lb#M z?6>zKohSfSE)0NuHUU_OMtkT(_NlkH{v34iu`5awbn#hNwztXJ9QFqiHqwj`bu(55 zr?NSuCP+bWDMJo{t)Eqg6X@Z;Xg) z7$!$vnQ%D&Y&Nx^yxd$_Amd1OJLpwe>0r7V76a+V+7 zQGWeSunH6rRja*Cf4DHBQcMLyEqi9&YekY|qB-fV2Da97@3=5E_trMw3S(##6nYbr z#4r@q0F1E#FxqVT2EJSkn$%a0GID@LA|H$gWE-)R>1Y8?Fdi^MVbn!~vFY{Gvco`* zY4gj#wH21&mCM;a?U@yIMN6<1Q^Ug>?4vQQwKH-I+V0ObF5{r7aF>31h7&XuPEIZF z>Yk11RM=)UF+r+rrU7?9F=G`OAIj*u#{7dB=0&@)20mRMug{4BW#u$b6Pz9sC_UR^ zciGy8gs%&yQ{&9fT9|M&WaVGlJn6Ag8iXzFlg*F?3n#WTS_%tZHlOjGOGyeILTYVn z0}sX+jY(ZrP72axOEwEtpja@a06`X?9X$e%Xf^694P zY>5mz>>Ui=F^ACBYTx~z#MWweLD=REtL+70L@C&4N4;>nt%BX84b96WOS!hlOT7fU zNkd6Zz|r9w6HyuQM6W}#UzTX8UNl$LR5=xyrmx-NZ+#u9%A9;7PDULO zr%PBtn&m*67wse!1R*s$rGW=qM7{42+uc91?cR7Lvh_63a_+3QL92{6)@*2I3!qxP0xQ7(vXDQ%|+(Q#b%q8A-{YLi+2jkpaElqf>`DAExoS9&p z8xhqIOp3fRsX#L>y4fV)yadMgwp%1iNQ$6}i=#7k=T?F$ZiF-lrRKpHpDRnWX5pGG z1ZjK2owQ;)15kgqXFV_L$$rzkMdV|}Li_JDbAihoT)ZqJngi9fIx4aJI^ zim9z#^wC%gDzv<053ygNO`40-pu$}6;;cuT@O+w^C%pogpb5898lK_y$pmLsjfuPzR6}&L!BOkfIy7d#wb*d61><6tXv!GRe zW0NG-MoKLYvpS4fe{LC>==z0hg@nXQ=_G{=AvHNf_MPj+&*idBOr{M)O$O4^uT<1F z%fvhu$%5HjqDUeYWbF!`;%RGq%YI89Caqji7CU8>#Hx`}tEGJER$@hKRxWOHw*qfU zmARXq%lBEDmdP{sB1+Z|{w{?vTZErvjQo954JXpi?#G}muV{F30FWS*pshHYH>0@ZA1>bp?nf2A}*jJi2 zQfhF7eKPhU`$~0Bsq|aYMw@w54#7;s%lDj1 zRdW+eQ;UO{Y(DS1p%TnwMMUk7mOqW{#dFI`%gg7cR&zpMmk;y{7Lo0zVRFmmbY9Gp zB)7<@*C5jWBm8X{iPG0es_oI%61u`Hmb#lNw_#c+{~+t*?keSIw42&7 zzB1dC!mQ1Sj?gS6OLk(&ZCtFvaqks7Gwf$4+ypXAgW#h$UfL%~gFsRPGA#V$jtNZo zy`9*hkziDxZ>q0o^6VxV@*t!phZ_yX+9H3yhAcRzrY#9QLy-tG083ZL2K0#{>?GBC zU)eFPx>Av~)-ZF;6&POpl9Xv9r6$JPYcxy@%iOKZcCU@u<=yh4Q&@4E>+F|fqV+0C z#Z@^C#kLX(d%~8w6?)Da#TCdjQ9OM)<1*LKn%~A+?AR^sNm}gSK7?&#VbvBXv%D1! zyQovLCrvWJ_)fgmE1XR<=k4&!%ZVhj2`8w@Fhhc2HJQMOLzg`yZl{Rsa=|D=Jd_ z<=9KDH}xvGWHQ0{37H_PAXXrMA0` zz|q~Ek=$L=$UxGo%!zW>%4saO=3D`Kv@pq$WHUTvV1vI(3Xt0!78YgmG2{5~DM?Xw zf`M`O!df>^EpP7&M#X0TVYGWmlDM*GQB4jr*Co@fES8t9EhVN>gxq&H$jzY5L?Gi2 z#1picR!WUdu}>zF^U@Vu{^cBjGHB!#!muSB8l-V8{hP^^GQQ9vH>Qe3O1|EGEX5#jP&?7;dVda_ zz(E}m)qo6-yfXG@%8cA_n3ZkP)ih{c0=1#cM0IG; zN?f3$|7HSLt_D-4yuWa#3&PdA<1ZhQxy%~ZBv#rML%CvvrFu`og2x*kJF%KrP zWo@5}7-6|A)hi20I!J;oazVQ5vn`PN;9dBwt7ek*VccaSu5UR>+!0c<6V3I0)+Vo0 z(me5MrE5xYqDaz9<<%u6`_ZJZlSay14;bw%lXTKfP(w04xMbFUGOIj@izuU0gBlN2(9 z)XztFIgt2Zm$Bm<5NfK)#rGXhD zTIqX9YjJd#YZtI;LL|5JH2RSjM}4eBC5XHcQhWWEph5Ps%kF8}$R6%p4;oKScgtwZ z_^_feOHgzpqG~P`d1c}#lV>y5n-SU46pZfW$8z&m?2`NhjhB;CqeI=Zv)Cx-i1ie; zbNf@If~$ty@8$57Tr3)mbb_mfJYfyNaPOrF2CDVGh3Jv};BtCTq9nM(KN^?>m(#bb zMME{j`&Sbxu3Dq`Nn4ha0zs+-a}N2nzfziD&Vh_t8@PmzO_jT~yXbT-s6b6QnP;_m zW2Kc+Gh5mxo7Icv2B%itkvXCi3@266-16?_bAsVyR90>85PfGt5L}Zht_kxoP1y?| zpX)Ve_VmZOv}|{hGTuVC%x2VfhReumxW=d{^Uj28AxAe-OBT(=QzWwx{E69mw{9C8 zGLHo@TKEziGWVr5ER+4Wno8z_Oq^YC4m8?4SwN_#FcM6XCm4e}71_$HJ&xi}j}nZ* z3pHr)N(%qQ1kqgNt*ccz?B>Tc$_QIR70gVVe5ZPXnQ4>rsE=rBvI$|XldxVS`|0SW zCVRz1=t~RhV^hYTge9quA`=t}`P*1svSiK-cl8Ut0J*S&WS3&GXjWNj()bAzh-Y9| zmiPT{wk5EOjM^Q=-^Q-JvRyh@nf9;B`v~ZdOr8gQfqdqL!r(8;CFl#B zoLb+^J)00LwMtuboUN{iZAM8DO=Q&25dJnsVh+-!)AkB8GjKMnPFJkVrE9#(E}Dut z8&phfZmN$qZlY0!r!{H5P-@TO1j{k2)0MiN)-#x3IVO};o7;qMY^LHss^_lT)Y5ci ziQBcS!^QaCtJUJCmTkRWD3V0mifIrwlY_ZS?VBR~i9&_H zE2cr%Znb^1Q7@M-fiK}IR<2_-E!HAe)>3k0JaTInAqjf;HPyLx^zc?n!!g`GnP3!d z;oW=2BC~w~tHI6%*;4JLe}cIWyRf;BQLbEJ*LB1Z9T_AC3CyqKTY^QrSoKvgH8e^e zP0ZNvKSM|6`t=5e=kiTl*||aFf}`h7i5x=6#KVx_=y^)ZSDUfKq{^Qn(6|iuT6lWGbH9^rr(lLPNUr0VL}<42;5u;7Nw|>IeR)i zPBvN6&G5HZICe~yZv{#;pyNXeGp&WiVj;-W=sOCQ=B8JY@)iC-TQnyrNg}3U7)BW6 zu^^Gkr|mt#oFLF$ODCHj7#Al!c~IFfDW%*?sAESqY|vp0I{y zEB8`DWR%+clJp2#R=@F-K*w%!OVE80)!;I>G4{zAl6Wp!Sf-oYOcQReIgL)0qLD{S z3s=A&KQ1(Eobr^!QMg=3+xFI@o@7my2! z{Rb0@pc9jOsb%k)S4R@$gOyUd+t?>#Q0{tS9o2d;&509TDB}KWT}w9s2pS3bhk`Y2 zQCzH%P%#a{R{Chduv9Miv#VhH&ROUg4ScEcb9)b_7x4tX)Id-Tj|*NH)AoWHSLp0F zKlY8qJeYhO8Xr9*7?mTVrbqF&vC3fxx1P=HS3IW7Kh6Fg?ii=o1%tRlWp2!F5-;Wn z260YKtq*n2Hr~_bPqWLOypAq+b&^j($v2JsZpqvaoS#}+D*igT)4-nB%I21rPAt`* ztCfDUW&0xcs^GVrtC}P>gM!IGshRG}5OP_*v98f?%38UxZEf<-E=g*(4hLR&Q)>H# zaySv|7{qu9*@`Ez1yQwTKQ?TY`H>4&0tzi9ikvU6=6cPvM^yV ztx}7^YOR|b>(jz%lCV$sWATB@RU3W>-AWxS5L63;XUX7<8yrxUay#mSt&+V%xfbet zD`Qu*R? zYN}J2^*vJs`iH-pvbLlpcE5R3j=1FufUrAG;rvf zc6neR;J%S=zMAftYo)5SEUi{2NFqvmERNWP=CkY5g3qo`O{M1K^Rj55J$zk;BMW+Z zw`ZVKoKvwTwUt4tFQq}~7im!!YyI*Ik@+N>{b-mM=_G|HBCGa#&*8IjCRPi~hsff_ zWb>o_wskv<1+p%E&7{w&lj{XBJhR#!lw{!K22rw~UX}_adGxGqSb>b&jcxz2xoNVv ziAZzUh_o?}lW*K)geaC16K0JcLV zBf@4$MnH0k)~~-wnkAJ}vz_LJtIc7BmD4NnA-?>+Xoa<6E<)2~PezS2K+>?v+5%}> z?mm|}H@qG_jF6R{;FYQ*5mGrdJFd7{Gw_$iH@VQ#IPrP}`BJc|(#k@Ix zGb1Y~rYc2m;|im^dPPNJeXQwE5@nTBt6i3gn$-O4>Rl)yJ*9No_8&62} zZYFby@IpE2V`O0{VoL6Pm2TfJiA7DRkecdEtrs08t>(;_X&Ux!Hc*94Xe*xMh={5l zsH0IiFWV$Dd5Ogm^M!dysxJ1|@eetTTzgRu1XTH^OUx!sHNiF&xreYy8l`OBeBijN z6)0G>Z)IIFlu#R6#BG>0e0N`yNh!^9SrsW*$SIl;Dx}6XjvI@tWOS$4 zS4~@)|3_ui#$d{;y%RINT9&@ud;zVJD^WA!+hJyWQ8VM?X8cAcS!^a0HDgz7BMC6E z9kH2M)XcJ3`GdNXlc+v|y5}1H502h6UVi^ z-iS<5GqHLzaa`N$jmQ)=6RS59$F;rQh)hv4v3fIcT-)o7$P_hGP;aKRxq40IeV zDe-!-42m zvv@{Y>Z2thO{e#e5%<&yjoFDcnKd%)I^z71r*9+Y~%)~a@^$!YFTor#^DpW41q8$C{I$Ml-2bnF|+?F_GKa+*8f&-c=yo#8cl zoYu}f6|BMS+`g0ubVamh8aY?(g}dF_RhQG=QNkT}TC_8*Rg=@)g)qy9<6|?jUD}r{ zp)#kxV@(sDLoZd@8*;13Y3?LDpQ~0^`&&5MS=*heK(~BDc$s{p%L{fpbvso~cgKv} zFJ9+2QteC;)f8$rAO7$H-CoUBlhfSEE(H03ZfANpRZe$jec=xe+gWo0T~7N(#%Jjz zNjv)*tH|l?XncwOF|qchwfVN{`A&1!jCcuTwI+TycsqNVh&E@Ti>ztn3a{pFXPpm~ zIsJWtSIb;xN0&o(YhT+^sMOi(P@9eQ%I)kgj2@?TL-}ryS8iHa_G_&(Mvc?ih0mSZ zTT-Jb($16*l{x+0FtuMSiP*Uk7#F&43#0-nUTU|q<~UVOcL%QX^%S?Wt{Xj0Yqxy5ahX;~ zPkB4*V^p29Aro0y52(n=#@1Y{QkJ!^3G@{@JDudBqGd88^5W6X)OV_!?u{Dd%1?ju zKs#%vRpj(`m(>#4wIWSHMQmg{y?sgJ>2p>#vgdcBJ!gAEZ%!aPy`5ymg(I!&BE_95 zr@Ny)o#v@-XDwAtPIKqgdA97tKA_sp{vpuiw0B%1S0Kwr>Z6I>&Ty+Hr@8AIwsG6f zrbM;3b9@`o<}7T;X3(hWc8=UoqdJ?KPC7q-`T#TN&o{`a?lsbB$O16CHt}g4JXBmz z{C~Lo|KQPJ3@8EPz&2n!mi!G7QXa3DAcRDdc_4Qjx0kO2pST2KeFpaJAS9yEbfU=3&nhk?Vv zk>DtB3^*1X4^99lfs?_h;52XsI1`)=&H?9v^TCDSB5(<~6kHCj09S#l!L{Hza09pz z+zf63w}IQi9pFxI7q}bT1MUU)f&0M&;6d;Zco;ka9tDqq$H5ceN$?bS8axA@12WNt_z&YSta6Y&ITm&u#mx9Z{72ry6HMj;` z2d)P602_lrU@+Je zY!0>nDKG>K1;fDBU<4QiMuV}S1eAhpzyvT6YzroXDPViB1K1Jl40Zw2z;rMJ%mllE z*b-+z4(4w}9Kg?cfe@C%6mT4ekN=g8RVz-~sR;cnCZU9s!Sn z$H3#@3GgI%3Oo&-0ndWx!1Le*@FI8#ybN9euY%XW>);LWCU^_H4c-Cog7?7t-~;d> z_y~LqJ^`PC&%o#4OYjx=27C*?2S0!x!FpW<8-NYLMxZ0;47z}BpgZUZdVxNmFX#^j zfQ`W*Fc@qKHV0dP6c_@Af?;55FanGMqrq5E0!qO)U;>y3wgr>H6tF$m0qh8N2D^Z1 zU^S!9uVnC2M2&<;2=;5sz4glfE6GER)Shk z53=A8kOPgN39JTdz@gwUa0ECK91V^E$ARO)iQpt~3OE&<4$c5)fwRH6;5={vxDZ?n zE&-Q;%fXf4DsT`~utqehKaazXA_{UxSChZ@?qq zx8O1GJMaYfJ$MTI0Xzf#2%ZCf0xy6+gO|Wxz$@Ud;5G0!@CNuhcnkakyaWCT-UI&v zAAo;@kHCMxC*Z%}Gw=oY5_}E50pEe|!T-RIVEt}_4L}F55$FUugRY<(=mC0y-k=ZY z2l|77U}LZe7z{Q8n}aPu3Ty?2g5h9mFcORcW58H24wQoNU;>x~wguaPDPStt0qg{J z2D^f3pbX3av%qd(4%i*c1@piHun;T)ci>6zd+;>)19%qv5j+q61YQJx1}}rZfLFm^!Rz2};7#y%@HY4dco+N= zybt~bJ_P>;AA|pZPr-k|=im$Q75Ex_3%&zCfd7H@x(n6^8-fm?Bj^OWfUclB=mC0x z-k>k&2L^zFU=Y{@Yzj65TYxRW5U>>(28M$XU?dm~#()wq4r~L)gNa}gm<+Z9+k>fK zN3avv1?&o@gEBA^%mTB)9IywN3+96bU{A0JECx%!Qm{AJ7wiWP00)ADKn17*)u09} z2N`fMs0DQ(3mQNUXt&AGjYp03HMn zfrr5(;8E}xcpN+do&-;Ur@=GeS@0Zq9=rfv1TTS?!7JcZ@EUj>yaC<>Z-KYLJK$aL z9(W&o06qjCfser_;8XA!_#Au*z5?HXZ^8HA2k;|UuZLg*up!t8bOfD27tjrK2R%VA z&il3~UWXfKgyH7z;{3DcA-~029HsU^18jwg)?a z9l_3E7cdP>2Q$D-up5{Sb_aWad0;+R2=)Z!U@_PWECu_3eZl_V0I&=k1S&xlNP`-% z0%X8SPz&lo790X{pb<2I)nE-c6dVSQ07rtO!7<=Ca6C8>oCHn*r-IYL8Q?5%HaHiY z2QB~?f{Vc=;4*MIxDs3it^wDA>%k4+CU7&j72F1X2JQeq2X}#AfP26%!F}LY-~sS! z@DTV7cm(_wJO+LTo&diGPk}#xXTTr9bKpfq#H^ zz(2uz;9uYa@Ne)D_z(C5{1ufaFqJMcaDANUch-&3#w=m0hXoj_;M6?6kV zKu^#c^a1@qe=rbi3^oCS!De7{uq8-=t-w$)9Bd6nf>B@$7z@UMQZOD&0F%JBU^_4c zOa(iDoxsjuS1=8fff-;H*bU49yMwu49#{Ytf<>SlECG9gy}>?UKd?VI5G(@~pb}Jr zG*}K+fP=wGPzUNk12_caK_gfNR)c16C^#G(0geJkgJZ#Q-~@0YI2oJ*P6MZdGr?Kl z9B?i;A6x(~0vCfz!DZkIa3#1JTm!BH*Ml3uP2d)AE4Ur}4BQER4(9^@F@5#cpUr=JPCdeo(6va&w@XK=fR)Ai{Q`TW$+j9D)=jS9sCWv3H}b= z2LAx>f`5Yd!N0(V;NRe5@E`Cg_%HYzd;z`!UxRPKci;!`Kd@de!TMlB&;fJ=oj@1R z6?6wZKrhf6^acIE05A{?0-JzM!De6!uq7A*wgSVza4-Ul1f#(iPy)t*ZNPXi5ljM; z!FFJKFcs_wb^^PAUBPrv24;d;U^bWo_5gFie6RrQ2^N9HUKyVPK z09BwG)PUt60}ckYpblg~1IU3qXacLi8qf?51BZhn!BOBCa4a|;oB&P&CxcVLY2XZS zCO8|M1I`2IgA2h$;1X~txEx#ot^!wsYr%Ek25=*|8QcPH1Gj@az@6YOa5uOI+zajl z_k#z(gWw_XFn9z!3LXQGgD1d~;3@Dlcm_NRo&(Q=7r=|)CGawM1-uGg1FwTOz?o}e5o277^}U>~qA*dH7KmVtvn zC8z>vPy<$g3|I+jK|RQVLqHBRf+nyUtO19D!@v>XNN_Yb1{?>D2PcA)z$xHVa5^{x zoCVGX=YsRV1>iz(F}MU=1}+Czf~&wa;977!xB=V*ZU(o4+rZDj9pLBSF7OL*5BMdx z5Bv%|0DcV~0>1%|fZu}0!0*5l;P>Du@CWb=_#=1@{0Y1O{tR9Me*v$6zk=7m-@qH- z@8B))5AY87CwLG13w!|n4L$<@0iS^Xg3rJg;7jl|_y&9jz6bvUKZ5o92sQv6z($}G z=nT4oZlDL~33`J*pdaWD27-;jCSWkw3~Uaz1Szl;7z&1it-(kz3XB0`!8lL~#)Ao9 z64(}O2d03jU${29Cq{sLYFe+93D zzkxTw-@)79AK+c^Pw+nY7x)nT8+;7@13m@+1)qa2z*pdF@GbZb`~dz3*6S-+A8ZIZ zfR3OO=mNTe?w|+g1$u+NpdT0j27*Cg6R;`R3~T|m1Vg}9U>FzC3}m=4OoOfU<~26Mn3U@n*s7Jxm$BCr@N0ZYN&U|+Bw zH~<_74gwXR3RHs{upDH-!Jrn@fh=eMIgkfUU=>&cn!#bLEz)9d_ za4I+roB_@RXM=OVdEk6-A-D)!0xkuYgDb#Q;A(I!xDMO^ZUi@jTflALc5nx{6Wj&v z2KRt_!F}L<@BnxaJOmyFkAO$PW8iV{1b7lW1)c`afM>yT;Cb)@coDn=UIwp#SHWxG zb?^pw6TAi92Je7(!F%9+@B#P`d;~rQpMX!nXW(=2CHM+_1HJ{{gCD?;V7-2V4ZwzA zBhV3a23i#yy+9w(7xV`Mz{X$@7z{QAn}aPt3Jd{5!7#8j7y(9s(O@hn0i|FY zFab;i+k(kp3fLa(0CogBgI&NhFdfVQGr?|PHrO5P0p@}EU?JEOl!L`!FR&Es1NH^` zg9E@aa1f{jRUi#&zzUE7D?u%&2U&0k$bm-C1XhDJ;81WFI076Ajt0ko zZU=XOJHcJxZg3B{7u*N#2M>S;!9(C-@CbMmJO&;IPk<-EQ{ZXv40ski2c8EnfEU3_ z;AQX%con<`UI%Z0H^E!rZSW3w7rY1F2OoeB!AIa@@Co=7dN`Z0TaMPuq~Jjrhx6i4q!*HGuQ=81Jl6_Fca(sW`o_q9$+4r4;F$wK{;3q z_5w@6K44$4KR5s^0|$XhPzBPU2CM)XuoBdQdXNQ&fE;K9O<*-x0}cg;fg`|?;An6R zI1U^SP6Q``Q^2XzXgwh-+?E<@4-{x58xT_NAMi@6Lfj7Y4!CT-T;2rQ!@E-UV_yGJHd<6ajJ^}v)pMfvHm*8vg4fqax z5B>*!1nUnJYydidjX)>R8FU5RKo8Ip^ag!EKhPfx1RH}*z+kW$*c@yLQeZ1E6buJj zgOOkq7z4(FaiA282NS>~ur1gQOaW8D4qzv+GuRbO17%=vfQ4WY zC3CQ8aM--3C;%Rfb+ol;6iW_xCC4ZE(ceDtH9OZT5uh> z0o({~2DgCQ!0q4;a3{D6+zsvl_k#Pt{on!cAb1Eo3?2cGg2%w);0f>~cnUlXo&nE- z=fLye1@Izx3A_wm0k4AB!0X@*@FsW*ybay~?}GQh```ocA@~S<3_by$g3rL`;7jlo z_y&9nz6U>mAHjMX3pM~7f{j2&&>3_A-9UHH6Z8UoKwr=w3;-L0L0~Z06l@N*04Xp8 z3<$aSr~xZL2CM|NpdMtwAs`1DK@(UF)__C7 zVc-aGBsdxz1C9g7gA>6?;1qBwI31h;&H`tHbHRDw0&pR?7+eA_1DAsqm~;v`#`-20)GEf03K{ZH&mHO zXaoCVGS=YsRW1>hoZF}M_52Ce{Cf~&zb z;5u+UxDnh0ZUMJ~+riJko#5x-Ztx3mFZd<6AN&eD2!0J72EPH1g5QG2!SBG6;P>EZ z@CWcL_#=28{0Y1W{tR9Qe*v$8zk=7n-@u#T@8E6l5AZJdCwL$H3w#Lv4L%0{0iS~Z zg3rMh;4APo_!fKzegOXi>un-fA8ZIZfR3OO=mNTe?w|+g1$u+NpdT0j27*Cg6R;`R z3~cd#6xzcQ7zh*uz+_`P8{4*R+s?+eZQHhO+qP}n-t;?kP0bg)!yqo=BLNa2F_Iz~ zQXnN#BMs6aJu)H_vLGw6BL{LJH}WDM3ZNhgqX>$jI7*@v%AhRDqXH_SGOD5)YM>@+ zqYmn!J{q7Q8lwrCp*dQj722RJ+M@$Hp)TK!CSn? z2YkY3e8o5Xz)$?f9|Vl?mwyl#K@beV5fY&g24N8%5fBNH5f%R;I$|IeVk0i%ApsI1 zF_It|k|QNjAq~MSl#yAPmM(48sVF z#AuAcIE=?cOu`gQ#dOTTEX>AS%)VOCTzx5Y{L%h#BS`t zKJ3Rq9KsPC#c`a#DV)YxoWliN#ARH;HC)F{+`=8)#eF=$BRs}aJi`mT#B034JG{q7 ze8Lxe#drL`FZ@P;n12a~KnRSW2!;>{iO>jxa0rixh=eGJifD+An23cqh>Q40fJ8`) zq)3JoNQu-)gLFubjL3v6$cpU9fn3OqyvT2TD2wu_fJ&&0s;Gt< zsEOLBgLjIQX09_WeQ=!1UfkAWD3AsC9`7=ck3 zjje@BLqSrG{PbrA|N6nBMSaSG{itm#6}#%LwqDeA|ydl zBu5IQLTaQ%I%GgbWJVTbLw4juF62R8)=!M?si+&h@ff$S-7>3~(iBTAX zu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5jo6GW*oN)ciCx%(z1WWf zIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0hj@%9c!uYAiC1`ow|I{a_=L~+ zif{OVpZJYG2pIb>{~$1eAQ*xpBtjt!!Xi8(AQB=YD*i=u#6T>>MqI>00whFYBtbGH zM@pnZ8l**fWI!flMpk4)4&+2`uD9h7lNv(HMhq z7>|jVgejPc>6n38n2ouZhXq)O#aM!6SdNugg*8}<_1J(-*o>{%h8@_6-PnVD*pGua zgd;eL<2Zp+IE}M7hYPrf%eaDTxQ?5+g*&*5`*?syc#Nlbh8K8=*LZ_>c#n_xgfIAt z@A!dV_>BN@{t^&@5Ewxb3?UE_p%Dh*5FQZ`2~iLg(GVRm5esn;7x9q*iI5mckqjx2 z5~+~}>5v{7kqKFl71@ykxsV%qkq-q>5QR|$#ZVk2Q3_>H7UfX^l~5T~Q4KXv6SYwX z^-v!T&=8H$1kKPKEzt^X&=&2{0iDnpUC|9a&=bAU2mR0=12G6gFciZv0;B#iDL{aL z0bKLZs<9Y{37Cke@BLqSrG{PbrA|N6nBMSaSG{itm#6}#%LwqDe zA|ydlBu5IQLTaQ%I%GgbWJVTbLw4juF62R8)=!M?si+&h@ff$S-7>3~( ziBTAXu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5jo6GW*oN)ciCx%( zz1WWfIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0hj@%9c!uYAiC1`ow|I{a z_=L~+if{OVpZJYG2pI1#{~$1eAQ*xpBtjt!!Xi8(AQB=YD*i=u#6T>>MqI>00whFY zBtbGHM@pnZ8l**fWI!flMpk4)4&+2`uD9h7lNv z(HMhq7>|jVgejPc>6n38n2ouZhXq)O#aM!6SdNugg*8}<_1J(-*o>{%h8@_6-PnVD z*pGuagd;eL<2Zp+IE}M7hYPrf%eaDTxQ?5+g*&*5`*?syc#Nlbh8K8=*LZ_>c#n_x zgfIAt@A!dV_>BPZ{}K>^5Ewxb3?UE_p%Dh*5FQZ`2~iLg(GVRm5esn;7x9q*iI5mc zkqjx25~+~}>5v{7kqKFl71@ykxsV%qkq-q>5QR|$#ZVk2Q3_>H7UfX^l~5T~Q4KXv z6SYwX^-v!T&=8H$1kKPKEzt^X&=&2{0iDnpUC|9a&=bAU2mR0=12G6gFciZv0;4b* zV=)dBFcFh61=BDcGcgNuFcf);Kk*BH5Fo){{y`uFK~Mxo2!ujtghe<+Ktx1F6#R>5h=G`hjW~#h_(+IENP?tD zjuc3R)JThT$bgKg4(-tqozMkc(H%X|3%$`7{V)InF&INI48t)Jqc8?z zF&+~z36n7u(=Y=wF&lF*5A(4Qi?9Ssu^cO~3ahae>#zYEu^C&i4coC3yRZj)u^$I; z2#0YL$8Z8CaT;fE4(D+Zmv9AFaUC~s3%79>_wWD@@fc6=4A1crukZ$M@g5)W37_#5 z-|z!J@f&{-FyUYRL0|+yFa$?PghCjEMR-I&Bt%A3{EO&_fmn!*xQK@YNQlHpf@DaJ zlt_g%NQ?ByfK14YtjLBO$cfy@gM7%3f+&O{D2n1Jfl?@qvM7fNsEEp_f@-Lany7_3 zsEhje4-L@>P0$q0(E_c|8g0=I9ncY-(FNVm9X-(teb5*EF#v-w7(+1(BQO%9F$Uu> z9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&= zM{pF!aRR4s8fS417jO}maRt|K9XD|ccW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@** z@dLl`8vzpiB_IMJFoGf&LLekUBMibJJR%|zq97`wAv$6r7UCc-;v)ePAu*C78B!o6 zQX>u0Aw4o86S5#HvLgp_Avf|O9}1u#3Zn>$p*TvS6w071%A*1*p)#tX8fu^>YNHP7 zp*|X*AsV9znxQ#bq7~YpE!v|4I-xVVq8oakCwij~`k_AtVi1O4D28JMMqxC@VjL!5 zA|_)BreQi}Vix9LF6Lta7GW`#Vi{IoC01h%)?qz1ViUGtE4E_?c40U6Vjm9RAP(aQ zj^Q{?;uOx{EY9NsF5xn+;u>z?CT`;n?%_Tj;t`(UDW3nOQ}Y*pwcL88dV{xkj}Q2S z&-jXO_<^7JjXwyO_%Ht;FoGZ$f+HkCAq>JIJR%?xA|opPMRdeKEW}1!#6tokL}DaC zG9*Vzq(T~`MS5gFCS*odWJ3<*L~i6kKIBJ16haXcMRAlsDU?Q8ltTqnL}gS#HB?7U z)IuH9MSc8-hG>K)Xo}`&fmUdZwrGbA=!nkff^O)Jp6G=>=!^asfI%3Hp%{h{7>Uss zgK-#-iI{{bn2PC`fmxW1xtNCqSct_~f@N5al~{!}Sc~=8fKAwpt=NVg*oocPgMHYK zgE)jEIEv#qfm1k*vp9zfxQNTRf@`>ro4AELxQqLEfJbSt%3T@C9?a=|9&>3CP4L#5kz0n8#&>sUa2tzOw!!ZJ*FdAbq z4ihjDlQ9L;FdZ{73v)0R^RWPnuoz3R3@fk_tFZ>_upS$+30trg+pz0kaqAOt~B1V;#jLTH3VI7C21L`D?+i)e^}n23!yh==${h(t(&q)3hw zNQKl$i*(3QbD2MW>h)Sq}s;G_{sD;|7 zi+cDE4bTXU(G<vF0UNOyTd)n=u@k$n2Yay}2XF|7 zaTLdJ0w-}AXK)VZaS@kr1y^w$H*gELaToXS01xpPPw))S@e;4_25<2mAMgpE@fF|j z13&Q_e-JR)U;aU01VJzaM@WQ17=%T5L_j1&MpXQZ=!k(>h>f_2hXhE7#7KfTvoITTF%Ju{5R0({%di|Pu?lOj7VEJAo3I&Mu?;)06T7ho`>-DeaR^6n z6vuG_r*Il)aSj)75tnfV*Ki#-aSL~F7x(c1kMI~z@eD8U60h+F@9-WU@d;n>72oj# zzwjFYlK&+j0wFMhA{as-Btjz$!XZ2&A`+q?Dxx7eVj>peATHt~0TLlGk|G&WASF^G z4bmY!G9nYQAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k z8lWK>qY0X!Ia;C>+Mq4kqXRmjGrFQ1dY~tIqYwI_KL%nDhF~a$V+2NFG{#~aCSW2a zV+y8WI%Z-P=3p-7V*wUnF_vN(R$wJoV-40}JvL$!wqPr^V+VF&H}+y54&WdT;|Px7 zI8Nde&fqN0;{q<>GOpqpZr~5u^#kr`Q#4cUJsDBt~Hj#$r4sU=k){ zDyCruW@0wxU>@dUAr@f?mSQzlE!JTJHexfjU>mk$Cw5^E_F_K{;1CYuD30L- zPU1Aq;2h55A}-+yuHrgw;1+JI8Cj7HIgk^%kq7yZ9|cheMNkyQQ39n<8f8%q6;KhCQ3cgd9W_x4bx;@e@gEwZ z5t^VWnxh3;p*7l~9Xg;RI-?7^p*wn_7y6(t`eOhFVK9bb7)D?uMq>=dVLT>c5~g4( zreg+XVK(Ms9u{CB7GnvPVL4V}71m%a)?))UVKcU38+KqPc4H6rVLuMy5RTv|j^hMQ z;WWO7Vh9K?&AR-;W3`#8D8KeUgHhk;XOX$6TaXpzT*de;Wq-L z`b$6rLSO_%FoZxzghm*ILwH0)Bt$_}L_>7ML@dNXT*OBLBtl{&MKYv7N~A^_q(gdS zL?&cGR%AyG(26hm>8L@AU(S(HZwR6=D`MK#nwP1Hsm)I)tVKtnV} z6Es6}v_vbkL0hy(2XsPbbVWDxKu`2WAM`_i48$M|!B7mx2#msLjKw%iz(h>O6imZ( z%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5Y{VvP!B%X?4(!5i?8QDDz(E|w5gfyDoWv=d z!C9Qg1zf^qT*Woqz)jr79o)lxJj5eB!BafP3%tT>yu~|wz(;(>7ktBa{KPN(L4eeM z`3Hdz1VIrTArK0o5fBuvIsOv4P! z#B9vLJj};JEW#2j#d55`Dy+s@tiuLu#Aa;4Hf+aE?7|-G#eN*XAsoh09K#8m#A%$t zIh@BuT*4Jx#dX}kE!@Uk+`|Jr#A7_cGd#yjyuus2#e00fCw#_Ne8Ug?#BcmTz%+mP z2Z0d;!4MoF5ei`t7U2;Akq{YC@h_qy24W#L;vyarAR!VX36dc>QX&=7AT81(12Q2q zvLYLDASZGo5Aq>D3Zf8-peTx?1WKVa%Ay=9pdu=x3aX(xYN8hEpf2j;KQu%mG(l4| zM+>wbU;URMi+ELcl1Or^g&#|fOmX`ID5 zT);(K#uZ${b=<@)+`(Pk#{)dVV?4z(yueGm#v8oDdwj$ve8E?I#}E9%Zv;sDmw*U_ zzzB+92!W6YjW7s@@Q8>=h=QnyhUkciScrqTh>rwFgv3aSWJrOONR2c|hxEvZOvr+) z$c`Myh1|%Cd?i?Xolu! ziB@QXwrGzI=!DMbif-tEp6HD}=!gCoh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<T48%li#6dj7M?xe*5+p@(q(Ca9Mp~pp24qBLWI;A$ zM^5BI9^^%S6hI*qMo|<)36w->ltDR^M@3XZ6;wra)IcrNMqSjye`tV4XpE+4h8Adv z)@XxvXpfHQgf8fc?&yJD=#9SUhXELf!5D&J7>6EPbB6$gxVmVe|6;@*{)?ouSVl%d28@6L7c3}_pVm}Vx5Dw!gj^PAO;xx|S z9M0n+F5wEU;yP~N7H;D%?%@F*;xV4!8J^=MUf~Vi;ypg#6F%cBzTpRc;y3;vVEVuO zgTM%aUc0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*_9~z<&nxH9~ zqXk-_HQJ&bI-nyuqYJvBJ9?rQ`k*iRV*mzWFot3nMqngHV+_V&JSJiireG?jV+Lkn zHs)d;7GNP3V+odFIaXp7)?h8xV*@r}Gqz$Ic3>xVV-NOWKMvv$j^HSc;{;COG|u82 zF5n_A;|i|fI&R_??%*!&;{hJwF`nWXUf?BO;|<>7JwDHv(k%OF#rd zU<5@lgg{7yMi_)cctk`bL_t(ULv+MMEW|-v#76=oLSiIEGNeFCq(&N~LwaOHCS*ZY zWJeC&)J7fDLwz(rLo`McG(&T= zL@TsGTeL?9bV6rzMK|<7PxM9~^h19P#2^g8Pz=WijKXM)#W+mBL`=pMOv7}{#4OCg zT+GJ;EW%r9K&&(#3`J?S)9iO zT*75s#Wmc(P29#E+{1l5#3MYxQ#{8Dyuxd|#XEe!M|{Q?e8YGA#4r3ofQ*0n2Z0a- zK@l7w5DK9Y7U2*95fK?t@Gqhv24W&M;vgR4BOwwY36df?QXmylBQ4S)12Q5rvLG9> zBPVhp5Aq^E3ZM`QqbQ1@1WKYb%Ag#|qarGy3aX+yYM>Tsqb};w#Z~Q^POn>vVsOvEHi!BkAg49vo8%*8w` zz(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@z(rif z6385B$P!1jziCfCz-Z2#R0` zfshD|FbIe6h=@ptf~bgw=!l6}h=aI@j|51B#7K%{NP(0{jWkGy^vH-z$bziMjvUB^ z+{lZ3D1d?}j3Ow8;wXtyD1)*nj|!-S%BYHJsDYZOjXJ1@`e=ZLXpAOkhURFAR%nB^ zXpau)gwE)SZs>uY=#4(;hyECdK^TIe7>*Gbh0z#`ahQOKn2afyhUu7zS(t;ln2!Zm zgvD5jWmtigSdBGUhxOQqP1u61*p408h27YTeK>%FIE*7WhT}MiQ#gaOIFAdsgv+>! zYq)`%xQ#owhx>SlM|gs#c#ao%h1YnCcldyh_>3?3hVS@^U-*LnS^n}50wD;3A~-@I z6hb2`!XW}8A~K@jUqnL;#6)bwK|I7qLL@>GBt>$hKq{n0TBJh;WJG3UK{jMZPUJ!! zZ4cLgy*n(}?j-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5 zxPe=^jk~yq2Y86bc!Fnmj+c0aH+YNp_<&FNjIa2HANYyi_=A91|MCw4BM5>aI6@*6 z!XPZdBLX5JGNR&NL`Mw7LTtoEJS0FuBt{Y>Lvo})W?5lh(>6Frf7~9Xoc2ji+1RM zj_8ao=!Wj-iC*Y~zUYqu7=*zXieVUmkr<6J7>Dtgh)I}&shEx#n1$Jxi+Napg;#-4=umxMO9XqfKyRjGhZ~zB!7)Njn$8i#;a0X{_9v5&4mvI%>a054S z8+ULI_wf*q@B~ls953(+ukjY|@Btt38DH=X-|-W_@CO01|K%S9LJ$N+aD+f8ghp6| zLj*)bWJJNgh=v%5iP(sPc!-aLNQ5LvisVRvR7j1qNQVr_h|I`>Y{-tB$b~$}i~J~n zLMV))D25U!iP9*8aww0AsDvu0it4C=TBwb>sE7a10FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+ zcX1C7@DPvj1kdmsFYyX*@D}g!0iW<0U-1n;@DsoB2LW^Z5jXcPQ{3wV* zD1xFWjuI$^(kP2^sDO&7j4G&x>ZplYsDrwwkN?mRjnD*5(Ht$%3a!x=?a%=o(HULP z4c*Zbz0e1J(H{da2!k;c!!QCPF&bkq4&yNqlQ0ESFȽ$rm7^RNI5u^3CR49l?+ ztFQ)Zu^t<+37fGM+pq&Wu^W4^5BqTthj0W(aU3Ub3a4=v=WqcRaT!-|4cBoKw{Qn{ zaUT!x2#@g;&+q~-@fvUN4)5_1pYR1=@f|<#3%?N{=U)OM5CS78f*}M#A~eDv9Ks_a zA|VQ*A{wG2CSoBD;vzm0AQ2KHDUu-tQX)0dARW>pBQhZivLZWjAQy5YFY=)P3ZgKI zpcsmyBub$S%A!0fpb{#hDypFdYN9skpdRX@0UDw)nxGk)qa|9Q4cekTI-nCeqbs_h z2YRA6`k){BV;}}$2!>)fMqm_1V=TsD0w!WIreGSTVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo z;~^g537+CPUf>m8<1OCd13uz2zTg|a<0pRM4+7-+%RdN&AP9=!2!T)tjj#xZ2#AQt zh=P9+4KWZCu@MLH5FZJV2uY9>$&mu7kQ!-`4jGUUnUMwAkR3UZ3we+i`B4CcP#8r~ z3?)z!rBMduP#zUg2~|)P)lmbr{_=MbS6i-&diW0w&6T7end$At}a0rKS6vuD^Cvh5Qa1Q5j5tncUS8*LTa0|C_ z7x(Z05AhgJ@C?uK60h(EZ}A=<@Cl#s72og!Kk*xX5HR;&{y|^_K`;bINQ6QdghhBn zKqN#)RQ!wRh=Ev$jkt)11W1U)NP=WYj+97+G)Rl|$bd}9jI79p9LR~>$b)>ykAf(K zA}EUDD1lNajj||*3aE(6sDf&!j+&^2I;e~K_zw-y2u;uw&Cvp_&>C&g4js@DozVr| z&>cO|3w_WR{V@Q8Fc?EI3?ncSqcH~KFdh>z2~#i?(=h|HFdK6*4-2pmi?IaDupBF~ z3Tv#+fwuo+vi4Lh(CyRirRupb9;2uE-f$8iFua2jWE4i|6{mvIHxa2+>s3wLlA z_wfLa@EA|=3@`8!uki-&@E#xW319FP-|+*#@EZa0{3Rd)Auxg>7(yTY+XwpdlKg37VlfTA~%&pe@>?13IBIx}qC; zpeK5x5Bi}$24WC~U?_%T1V&*r#$p^MU?L`C3Z`K?W?~lRU@qok0Ty8~mSP!JU?o;# z4c1{jHewUDU@Nv`2Xc z0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*_9~z<&nxH9~qXk-_HQJ&bI-nyuqYJvBJ9?rQ z`k*iRV*mzWFot3nMqngHV+_V&JSJiireG?jV+LknHs)d;7GNP3V+odFIaXp7)?h8x zV*@r}Gqz$Ic3>xVV-NOWKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_??%*!&;{hJw zF`nWXUf?BO;|<>7JwDHv;7UOF#rdU<5@lgg{7yMi_)cctk`bL_t(U zLv+MMEW|-v#76=oLSiIEGNeFCq(&N~LwaOHCS*ZYWJeC&)J7fDLwz(rLo`McG(&T=L@TsGTeL?9bV6rzMK|<7PxM9~ z^h19P#2^g8Pz=WijKXM)#W+mBL`=pMOv7}{#4OCgT+GJ;EW%r9K&&(#3`J?S)9iOT*75s#Wmc(P29#E+{1l5#3MYx zQ#{8Dyuxd|#XEe!M|{Q?e8YGA#4r3ofC7K{2Z0a-K@l7w5DK9Y7U2*95fK?t@Gqhv z24W&M;vgR4BOwwY36df?QXmylBQ4S)12Q5rvLG9>BPVhp5Aq^E3ZM`QqbQ1@1WKYb z%Ag#|qarGy3aX+yYM>Tsqb};w#Z~Q^Pf`9o3fe{435F8;93Skfy;Sm9m5E)VNFQOv` zVj(u-A|4VTArd1Ak|8-#A{EjgEz%vVsOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+ zY{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@z(rif6385B$P!1Ss^EfCz-Z2#R0`fshD|FbIe6h=@ptf~bgw=!l6} zh=aI@j|51B#7K%{NP(0{jWkGy^vH-z$bziMjvUB^+{lZ3D1d?}j3Ow8;wXtyD1)*n zj|!-S%BYHJsDYZOjXJ1@`e=ZLXpAOkhURFAR%nB^Xpau)gwE)SZs>uY=#4(;hyECd zK^TIe7>*Gbh0z#`ahQOKn2afyhUu7zS(t;ln2!ZmgvD5jWmtigSdBGUhxOQqP1u61 z*p408h27YTeK>%FIE*7WhT}MiQ#gaOIFAdsgv+>!Yq)`%xQ#owhx>SlM|gs#c#ao% zh1YnCcldyh_>3?3hVS@^U-*Lnh5zyo0wD;3A~-@I6hb2`!XW}8A~K@jUqnL;#6)bw zK|I7qLL@>GBt>$hKq{n0TBJh;WJG3UK{jMZPUJ!!Z4cLgy*n(}? zj-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5xPe=^jk~yq2Y86bc!Fnmj+c0a zH+YNp_<&FNjIa2HANYyi_=A8&{_+n3BM5>aI6@*6!XPZdBLX5JGNR&NL`Mw7LTtoE zJS0FuBt{Y>Lvo})W?5lh(>6Frf7~9Xoc2ji+1RMj_8ao=!Wj-iC*Y~zUYqu7=*zX zieVUmkr<6J7>Dtgh)I}&shEx#n1$Jxi+Napg;#-4=umxMO9XqfK zyRjGhZ~zB!7)Njn$8i#;a0X{_9v5&4mvI%>a054S8+ULI_wf*q@B~ls953(+ukjY| z@Btt38DH=X-|-W_@CN~k{pBA7LJ$N+aD+f8ghp6|Lj*)bMLJ|aMr1}7WJ7l3L@wk(UgSps6hdJXMKP2>Nt8wzltXz` zL?u)~Ra8d})Ix34MLqn7255xFXo_ZNftF~EHfV?T=!j0}g0AR}9_WSM=!Q9BgRvNo37CY*n2Kqbfti?%Ihcp}ScpYff~8oF6WO+h8T#6*ocF8h>wIwgd|9cgh7u@=(kO#+D36M$ges_t>ZpNQsExX) zhX!bf#%O|OXpWX>g*Ir5_UM34=!~xDh92mN-sppV=#POIgdrG;;TVBY7>%(QhY6U7 z$(Vv^n2wp4g*lju`B;EOSd67uh80+e)mVddSdWd^ge};L?bv}`*p0o|hXXi>!#ILt zIF6Gzg)=yd^SFRZxQwf~h8wtv+qi>!xQ_>Th(~ygCwPiyc#ao%iPw08cX*GF_=GR` zitqS=U-*qcWdaC{pa_N#2#L@LgK!9sh=_zJh>GZlfmn!*xQK@YNQlHpf@A@7Z<9Pg z--D-ArA8X0LwaOHCS*ZYWJeC& z)J7fDLwz(vBQ!x%G)D`xLTj`|J9I!tbVe6+LwEEJ43h=X{DkAz5sBuI+n zNP$#HjkHLI49JMg$bxLhj-1GaJjjduD1bsJjG`!p5-5q%D1&k+kBX>-DyWL;sDWCj zjk>6Z255-JXo6;Fj+SVJHfW3X=zvb>jIQX09_WeQ=!1UfkAWD3AsC9`7=ck3jjc#n_x zgfIAt@A!dV_>Dm20tk$t2!;>{iO>jxa0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#b zNQE>=i}c8VOvsF^$c7xqiQLG8e8`W2D1;&?isC4NQYekGD2EEDh{~vfYN(EysD(PH zi~4AQMre$tXoePOiPmU?c4&`|=!7olitgxvUg(X!=!XFqh`|_wVHl2)7=T*o8gVi~Tr&LpY41 zIEE8AiPJcPb2yKSxP&XXitD(6Teyw8xQD;+0Dt2V{=pOci)Z)`FYpSl@fPp!0Uz-h zU+@jz@e{xB2Z7255ClOH93c=2p%E705CIVp8Bq`o(Ge4|5C?G)9|@2MiIEh^kOC=@ z8flOY>5&nckOf(h9XXH-xsez7Pyhu{7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl8+A|* z_0bTG&;(7<94*iat8+))1`*9G5a0Ewj z94BxJr*RhNZ~+%_8CP%(*KrfKa0hpBAAjK?{>EecgQxfx&+#8#;uYTDE#Bh;KH)RI z;v0V8Cw}7(0#^ti2!bIvLLwBxAS}Wo0wN(Yq9Ph%ASPlX4&os`5+V_jASsd~1yUh3 z(jpx)AR{s(3$h_Qav~SY^SR zpdlKg37VlfTA~%&pe@>?13IBIx}qC;peK5x5Bi}$24WC~U?_%T1V&*r#$p^MU?L`C z3Z`K?W?~lRU@qok0Ty8~mSP!JU?o;#4c1{jHewUDU@Nv`2X7JwDHv&}*ATWX=7(yTZ1V~ zp)s1G8CswvTB8lxp*=dH6S|-)x}yhrp*Q-X9|m9`24e_@VK_!&6vkjI#$y5|VKSy- z8fIW7W@8TKVLldO5td*nmSY80VKvrb9X4PiHe(C6VLNtW7xrK;_TvB!;V_Qk7*60M zPU8&D;XE$l60YDXuHy!7;WqB#9{$1u{EbKW2T$-Xp5Z^dz$?7QTfD;ue8gvb!8d%z zPyE6k1gaE35ClbVgg_{SMp%SH1Vlt+L_st}M@+;*9K=O@BtRl0Mp7h03Zz78q(M5Q zM@D2q7GyDgZTseRs2!`MYiBJfGun3O`h=j<9ifD*|n23!yh==${h(t(&q)3hwNQKl$i*(3< zjL3{E$cF65iCoBoyvUCND1^c&iee~%k|>QbD2MW>h)Sq}s;G_{sD;|7i+X5)hG>i? zXolu!iB@QXwrGzI=!DMbif-tEp6HD}=!gCoh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<=h=Qnyju?oA*ocdGNPvV$j3h{g5jXcPQ{3wV*D1xFWjuI$^(kP2^sDO&7j4G&x>ZplYsDrwwj|OOj#%PLW zXn~e!jW%e9_UMRC=z^~3jvnZR-sp>d7=VEoj3F3?;TVZg7=y7Gj|rHB$(V|1n1Pv? zjX9Wy`B;cWSc0Wkjulvi)mV#l*no}Lj4jxP?bwN3*n_>;j{`V_!#Ij#IDwNmjWalh z^SFphxPq&=jvKgz+qjE+_zMs4Hy+_1Ji)(shX3#aukadg@eUvG5ufn|-|!tj@e6+t zsA>Q~5EQ`?0-+EZVG#}y5D}3P14F%b)K5Et>00Ev(oNs$aGkP@kp2I-I<8IcKD zkQLdH1G$hJd65qVP!NSt1jSGsB~c1xP!{D;0hLf0RZ$H!P!qLL2lY@N4bccq&=k$l z0MjcJ<$t&&=>tN0D~|XLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2 zb1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0uoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y} za1obr1=nyLH*pJha2NOS7arnoJjOqGihuDO|KTNG;SJv6JwD(QKI1FC;Rk-=H~t`S zwE%)37=j}tLLm&oB0M4>5+Wliq9F!iA~xb69^xY*5+MnaA~{kZ6;dND(jfyfA~Uie z8?qxOav=}$B0mbC5DKFxilGEbqBP2&9Ll32DxnIhqB?4z7HXp|>Y)J|qA{AF8JeRd zTA>ZvqCGmG6FQ?Sx}gVpqBr`WANpe;24M(>VmL-%6h>n##$f^`Vlt*+8m40=W?>HI zVm=mN5f)=9mSF`}Vl~!a9oAzbHen04Vmo$V7j|PW_Tc~y;xLZj7>?s4PT>sB;yfUg9<0;2qxMBR=5^zT!K6;1_-)Q1t); zBPfC)1VSP-!XO;NBO)Rp3Zf!9Vjvb`BQD}00TLoHk{}t9BPCKH4bmb#G9VK&BP+5Y z2XZ1e@*p4bqaX^Q2#TUON}v=bRDUlj!kPhjQ5t)z$ zS&C1yLA9Pz=RU5~WZEWl9Wo#zG9wGJ zAvp)iV~7)qcdN}~+Qp*$+05~`pos-p&Kp*HHG9vYw_8lwrCp*dQj z722RJ+M@$Hp)6wcr*&f@|u z;WDn`8gAewZsQK_;XWSVAs*o|p5Q5-1<<|C^8k%`zfirxYrMrfe85M1#ut3Ucl^XJ z{6U~v0R%x%1V;#jLTH3VI7C21L`D=uLv+MMEW|-v#76=oLSiIEGNeFCq(&N~LwaOH zCS*ZYWJeC&)J7fDLwz(vBQ!x% zG)D`xLTj`|J9I!tbVe6+LwEEJ43h=X{DkAz5sBuI+nNP$#HjkHLI49JMg z$bxLhj-1GaJjjduD1bsJjG`!p5-5q%D1&k+kBX>-DyWL;sDWCjjk>6Z255-JXo6;F zj+SVJHfW3X=zvb>jIQX09_WeQ=!1UfkAWD3AsC9`7=ck3jjc#n_xgfIAt@A!dV_>Dky z0tk$t2!;>{iO>jxa0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^ z$c7xqiQLG8e8`W2D1;&?isC4NQYekGD2EEDh{~vfYN(EysD(PHi~4AQMre$tXoePO ziPmU?c4&`|=!7olitgxvUg(X!=!XFqh`|_wVHl2)7=T*o8gVi~Tr&LpY41IEE8AiPJcPb2yKS zxP&XXitD(6Teyw8xQD;+0Dt2V{=pOci)Z)`FYpSl@fPp!0Uz-hU+@jz@e{xB2Z8Da z5ClOH93c=2p%E705CIVp8Bq`o(Ge4|5C?G)9|@2MiIEh^kOC=@8flOY>5&nckOf(h z9XXH-xsez7Pyhu{7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl8+A|*_0bTG&;(7<94*ia zt8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_ z8CP&EfbMOs2k26CQ*|46a1ZzK01xp9kMRUg@eI%L0x$6zZ}1N9@e!Z!1z+(UKky5` z5vX1Ofe{qJ5CS0)8etF);Smv$5Cu^Y9Wf9Ku@M*XkN^ph7)g)}$&nJNkOpay9vP4c znUNLQkOMi98+niq`B4ysPy|I$93@Z+rBN2;PyrQD8C6gX)ln0*PzQBU9}Un5jnNd% z&;l*d8g0-H?a>jP&;?!59X-$sz0nu_FaQHF7(*}&!!Z)0Fa~2W9uqJLlQ9+3Fat9& z8*?xZ^RW<%umnr794oL2tFadAumKyf8C$Ro+p!b7um^jw9|v#peATHt~0TLlGk|G&WASF^G4bmY!G9nYQ zAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k8ln-JpedT8 z1zMps+M*pgpd&h?3%a2@dZHKlpfCDk00v<&hGG~-U?fIk48~zRCSnq%U@E3#24-P4 z=3*WeU?CP`36^0wR$>*_U@g{T12$nZwqhH0U?+BC5B6a{4&o4w;3$sc1Ww^J&f**{ z;36*L3a;TgZsHd1;4bdtFFeHGc#MDW6#wEm{=-YW!W+EBdwjqre8yLN!w>w#Z~Q^v z1_1;?Fa$?PghCjEMR-I&Bt%A3L_-Y3L~O)CJj6#rBtjA-MRKG-Dx^kQq(cT|L}p|` zHe^RmkIh035R6-S0MRn9bE!0L`)I$R_L}N5TGc-p_ zv_c!SMSFBWCv-+vbVCpHL~ry#KlH~y48jl$#c+(kD2&EfjKc&>#AHmtG)%`#%)%VZ z#e6KlA}q#IEW-+{#A>X;I;_V=Y{C|7#dhq#F6_o$?85;Z#916wJj5eB#uGfnGd#x&yu@p~!8^RiM|{E;e8qSCz%TqppoRei zMo>MqI>00whFYBtbGHM@pnZ8l**fWI!flMpk4) z4&+2`vbuOu!^e##Bth49vuA%)va& z$3iT^5-i1XtiUR)##*ey25iJ;Y{52c$4>0R9_+<_9KazQ#!(!@37o`foWVJq$33?3hVS@^U-*MSjRFXQ zpa_l-2!+rHi*Sg5h=`0Rh=%BhiCBn(xQLGgNQA^lieyNElt_&ifX8Vny8IBsE7J!h(>6Frf7~9Xoc2j zi+1RMj_8ao=!Wj-iC*Y~zUYqu7=*zXieVUmkr<6J7>Dtgh)I}&shEx#n1$Jxi+Nap zg;$&mu7kQ!-`4jGUUnUMwAkR3UZ z3we+i`B4CcP#8r~3?)z!rBMduP#zUg2~|)P)lmbrP#bko4-L=|jnM?n&>St%3T@C9 z?a=|9&>3CP4L#5kz0n8#&>sUa2tzOw!!ZJ*FdAbq4ihjDlQ9L;FdZ{73v)0R^RWPn zuoz3R3@fk_tFZ>_upS$+30trg+pz72oj#zwjG@ngkFSK@kig z5E7vg2H_AM5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a z1GjJ+cX1DY;Q{`}Bm9FW_!rOcA70=UUgIs^;R8P6Grr&(zT+o;;ST~e4Il`DA~-@I z6hb2`!XW}8A~K>N8lod6Vj&LVB0drz5fURQk|70BA~n(=9nvEsG9e4HB0F**7jh#n z@}U3c7LN}&wOqC6^~5-OuAs-XsIqBiQF9_phZ8lefAqB&Zi6dZ7>cqCW;;5C&r?hG7IoVl>8J9L8fJCSeMuVmfAE7G`5E=3xOAVlkFr z8J1%uR$&d+Vm&rs6ETK!CSn?2YkY3e8o5Xz)$?f9|Ud|KoA5&aD+rC zgh5z@M+8JdWJE9zb9OMKFXwNQ6ch zghO~lL?lE(R76J%#6oPuMLZ-xLL^2KBtvqfL@J~~TBJt?WI|?SMKPUJ=&$cTbyh>nw z!YG1bD2|dSg)%6M@~D7HsEn$ph8n1e+NgtisE>wdgeGW;=4gRdXpOdLhYsk7&gg<} z=#HM~g+Azu{uqEk7>uD9h7lNv(HMhq7>|jVgejPc>6n38n2ouZhXq)O#aM!6SdNug zg*8}<_1J(-*o>{%h8@_6-PnVD*pGuagd;eL<2Zp+IE}M7hYPrf%eaDTxQ?5+g*&*5 z`}hkF@i!jhA3Vjsc#i+@60h(EZ}A=<@Cl#s72og!Kk*xX5V&OkK@beV5fY&g24N8% z5fBNH5f#x812GXBaS#vjkr0WH1WAz`DUb@OkrwHY0U41QS&$9ckrTO)2YHbn1yBfu zQ53~c0wqxzWl#>~Q4y6;1yxZUHBbw+Q5W^l01eR?P0$R@(GsoD25r$E9ncA#(G}g$ z13l3jeb5j6F%W|=1Vb?#BQOf1F&5)6A%K9luM_3Tn1X4Tj+vN+Ihc$2Sb#-XjHOtH z6c#n_xgfIAt@A!dV_>DlV0tk$t2!;>{iO>jx za0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^$c7xqiQLG8e8`W2 zD1;&?isC4NQYekGD2EEDh{~vfYN(EysD(PHi~4AQMre$tXoePOiPmU?c4&`|=!7ol zitgxvUg(X!=!XFqh`|_wVHl2)7=T*o8gVi~Tr&LpY41IEE8AiPJcPb2yKSxP&XXitD(6Teyw8 zxQD;+0Dt2V{=pOci)Z)`FYpSl@fPp!0Uz-hU+@jz@e{xB2Z34#5ClOH93c=2p%E70 z5CIVp8Bq`o(Ge4|5C?G)9|@2MiIEh^kOC=@8flOY>5&nckOf(h9XXH-xsez7Pyhu{ z7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl8+A|*_0bTG&;(7<94*iat8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_8CP%(*KrfKa0hpB zAAjK?{>EecgQxfx&+#8#;uYTDE#Bh;KH)RI;v0V8Cw}7(0=Eeu2!bIvLLwBxAS}Wo z0wN(Yq9Ph%ASPlX4&os`5+V_jASsd~1yUh3(jpx)AR{s(3$h_Qav~SY^SRpdlKg37VlfTA~%&pe@>?13IBIx}qC; zpeK5x5Bi}$24WC~U?_%T1V&*r#$p^MU?L`C3Z`K?W?~lRU@qok0Ty8~mSP!JU?o;# z4c1{jHewUDU@Nv`2X7JwDHv+W{ATWX=7(yTRyhG95HVid+;EXHF3CSfwBVj5;(CT3#}=3zb-ViA^L zDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)O zZs9iW;vW9O1N@Cg_y-VH80z6h}#vLK&1rc~n3pR7O=)Lk-kKZPY!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^ z!X4bjef))o_#2P$51!&*JjZ`{iC1`ow|I{a_=L~+if{OVpZJYG2;4q^AP9!w2#HV# zgRlsX2#AEph>B>4ftZMmIEaV%NQgv8f}}`}6i9{CNQ-pHfQ-nDEXaoJ$cbFYgS^O( z0w{#SD2iezfs!bVGAM`gsEA6af~u&F8mNWZsEc}NfQD#{CTND{Xo*&6gSKdo4(No= z=!$OWfu87%KIn)37>Gd_f}t3W5g3Kh7>jY3fQgulDVT=on2A}KgSnWG1z3c|Sc+v> zft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~3%G>KxQc7Ift$FE zJGh7Ycz}m^gvWS-r+9|vc!8IAjW>9Q_xOlU_=2zajvx4i-w4zpfWQcfUjSDh1iITcu0VRNQ@*%hU7?zR7iugNRJH2gv`i_Y{-F}$c;S6hx{mr zLMVcwD2@^+h0-XCa;SicsEjJ8hU%z^TBw7%sE-C{gvMx!W@v$yXpJ^#hxX`*PUwQJ z=#C!fh2H3kei(p(7>pqphT#~AQ5b`<7>@~p46IE^znhx53IOSpooxQ-jRh1f);Kk*BH5U67SK@b$d5dxtQ8etI* z5fBlP5e3l@9WfCLaS#{rkpPL17)g-~DUcGWkp}6I9vP7dS&$XkkpsDq8+nlr1yB%$ zQ3S9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo94oO3 zYp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}maRt|K9XD|ccW@W? z@fRNAZ#>37c#41V9RJ}ZUf~Vi;ypg#6F%cBzTpRc;y3;vaHjx*AQ*xpBtjt!!Xi8( zAQB=YDxx6LwhGIBIU=&7UEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{Q zU>(+DBQ{|RwqiSWU>9~{FZSU84&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!Sd z0UqKJ9^(m~;u)Uf1zzGc-rybH<0C%d3%=qze&82=BT(l60wXAbAp}AqG{PVp!XqLg zAqt`*I$|IeVk0i%ApsI1F_It|k|QNjAq~np$odAJ9?lO zdZRD;VE_hVFos|lhGQf~VGPD%JSJcgCSxk5VFqSmHs)X+=3^liVF{LEIaXj5R%0#J zVFNZ|GqzwGwqqxDVGs6VKMvp!4&x|};RH_NG|u20&f_93;R>$eI&R<=ZsRWQ;V(SE z-*|+7@C5(j8UDiyyuxd|#XEe!M|{Q?e8YGA#4r3ope_LfK~Mxo2!ujtghe<+Ktx1F z6huRG#6&E_L0rT~0wh9WBtvVsOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x z25iD+Y{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@z(rif68akh9CHe-}r;TT>}V$UY{-tB$b~$}i~J~nLMV))D25UN z1dPU&luM%w%Aq_eq7tg0DypLfYN0mjq8=KcAsV9znxQ#bq7~YpE!v|4I-xVVq8oak zCwij~`k_AtVi1O4D28JMMqxC@VjL!5A|_)BreQi}Vix9LF6Lta7GW`#Vi{IoC01h% z)?qz1ViUGtE4E_?c40U6Vjm9RAP(aQj^Q{?;uOx{EY9NsF5xn+;u>z?CT`;n?%_Tj z;2|F2F`nQlp5ZxO;3Zz;4c_5BKH?L;;48l42Y%r<0(A=@FoGf&LLekUBMibJJR%|z zq97`wBL-q2HsT^45+ETGBMFirIZ`4O(jYC;BLgxaGqNHZav&#iBMYy&_qX8PBF`A+oTA(FbqYc`jJvyQjx}Yn%qX&AS zH~OL<24EltV+e*}I7VU=#$YVQV*(~&GNxi0W?&{}V-DtFJ{DpTmS8ECV+B@WHP&Js zHee$*V+*!nJ9c6h_Fyme;{XofFplCFPT(X?;|$K>JTBrAuHY)J;|6ZwHtymc{=x(N zjYs$gPw+3E;Xk~Ayu$~4#AkfLH+;uW{K6ju>K;H41VwO!Kq!PpScF3aL_}mn zK{P~1OvFMQ#6^50Kq4eYQY1qPq(o|@K{}*IMr1-3WJPx5KrZA)UgSdo6hvVZK`|6Z zNt8kvltp<|KqXX0Ra8R_)I@F6K|Rz*Lo`AYG(~f?Kr6IHTeL$5bVO%#LAL<9x9J|B z&8t0Cz0n8#&>sUa2tzOw!!ZJ*FdAbq4ihjDlQ9L;FdZ{73v)0R^RWPnuoz3R3@fk_ ztFZ>_upS$+30trg+pz72oj#zwjG@dIS&{K@kig5E7vg2H_AM z5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+cX1DY z;Q{`}Bm9FW_!rOcA70=UUgIs^;R8P6Grr&(zT+o;;SU1!3?K-CA~-@I6hb2`!XW}8 zA~K>N8lod6Vj&LVB0drz5fURQk|70BA~n(=9nvEsG9e4HB0F**7jh#n@}U3c7LN}&wOqC6^~5-OuAs-XsIqBiQF9_phZ8lefAqB&Zi6 zdZ7>cqCW;;5C&r?hG7IoVl>8J9L8fJCSeMuVmfAE7G`5E=3xOAVlkFr8J1%uR$&d+ zVm&rs6ETK!CSn?2YkY3e8o5Xz)$?f9|Z0dKoA5&aD+rCgh5z@M+8Jd zWJEubF0l;ZMD@_TWz(uZpO{FZQHhO+qP}) z{a(H^=YO1snRDjM47Ot@c3}_pVm}Vx5Dw!gj^PAO;xx|S9M0n+F5wEU;yP~N7H;D% z?%@F*;xV4!8J^=MUf~Vi;ypg#6F%cBzTpRcB3PFof+HkCAq>JIJR%?xA|ooIAqHY1 zHsT;2;v*pvAqkQqIZ_}MQX?(WAp2g zPzL4jCn}&KDxos|MpabDKd6aXsEs=K5B1Oh4bd1)&#|fOmX`ID5T);(K#uZ${b=<@)+`(Pk z#{)dVV?4z(yueGm#v8oDdwj$ve8E?I#}E8Mu&zObKuCl}7=%N3L_{P+K~zLX48%fg z#6>(LKtd!&5+p-%q(myDL0Y6o24q5JWJNaQKu+XF9^^xQ6vS^Rj3OwCVkm)`_0a&0&=^h849(F3teN-fl(NZu^5L5n25=kf@zqJnV5w+n2Y&XfJIo0rC5d)Sc%nG zgLPPsjo5@O*oy7gfnC^*z1W8XIEceIf@3(2lQ@MlIE(YRfJ?ZHtGI?6xQW}igL}A- zhj@f1c#7wEfme8qw|IvS_=wN=f^YbapZJB~-GT^#Pza5%2!{xWh{%Y7Xo!xOh=n+a zi}*-@L`aOJNQM+hiPT7gbV!ek$b>A&itNaNT*!^Q$cF+bh(aig-%%9BQ39n<8f8!x zf1*4p;xAN26;wqv{DT^(g?~{8bx{xX(GZQ$1Wgfu=4gplXoI$Bj}GXFPUwQJ=#C!f zh2H3kei(p(7>pqphT#~AQ5b`<7>@~p46IE^znhx53IOSpooxQ-jRh1#Bue2AltDTC zi3+HQN~ny#Q5Dtk4{D+oYNHPRLp?M=Lo`McG(!Mdpe0(P4cehS0?`qj(FNVm9X-(t zeb5*EF#v-w7(+1(BQO%9F$Uu>9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo94oO3Yp@pU zu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}maRt|K9XD|ccW@W?@c@tT z7*FvGFYpqt@doek9v|@uU+@**@dLjQtVa+b5E7vg2H_AM5fKSd5Eao81F;YraS;y* zkPwNH1j&#bDUk|kkQV8Y0hy2)S&$k7)qcdO5+cdMLCp5 z1^k6dsDi&y4b@QtHSsTMqb~kKeKbHLG)7Z2Lvyr1E3`&iv_l63q7yo!E4rZvdZIV_ zpdb2UAO>LwhGIBIU=&7UEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{QU>(+D zBQ{|RwqiSWU>9~{FZSU84&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!SdAs*og zp5i%P;1youE#Bb+KH@XJ;2XZN8lod6Vj&LVB0drz z5fURQk|70BA~n(=9nvEsG9e4HB0F**7jh#n@}U3cN9f<3wzMj4dFpD2%t z_zRU$1yxZE|DXnH;a}82UDQK;G(;mbK~n^vIa;C>+Mq4kqXRmk6S|-)x}yhrp*Q-X z9|m9`24e_@VK_!&6vkjI#$y5|VKSy-8fIW7W@8TKVLldO5td*nmSY80VKvrb9X4Pi zHe(C6VLNtW7xrK;_TvB!;V_Qk7*60MPU8&D;XE$l60YDXuHy!7;WqB#9v+S z5-Q_wR7G|CgPN#?+Ngv7P!A2z5RK6U%@BYVXo=QngLY_-Ky*ZBbU`m5W0ghXhBK{$j*L_|UqL`8JOKrF;YT*N~HBt+sM z0t1o+=_*b#DFsp@HPRp*(jy}>Aq%o1J8~cwaw9MDp#Tb^5DMdW6h(2AKq-_)8I;AJ zD36Nx3zbm?RZ$K9payE;U(`We)I)tVL?bjoQv{$nTA~%&pe@>?13ID;x}Yn%qX&AS zH~OL<24EltV+e)?5g0H$NE1F%8jUd+hw+$*NtlAEn2s5kh1r;kd02pjSd1lDhUHj^ zRak?ySdR_Zgw5EBZPVATeyR} zxQ_>TgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=g=h=Qnyju?oA z*ocdGNPvV$j3h{g5jXcPQ{3wXuP#8r}6va>iB~coG zpe)LvJSyNXR6-T}jcTZl8mNhXQ5$vfAL^q48lf?oq8XZ_1zMps+M*pgAP}9<8C}s0 zJF#@A78e=gI6EG2zF$L2w9WyZtb1)b4u>gy(7)!AXE3gu) zu?Fj~9viU-rX8+)-22XGLFaRkS394B!KXK)thaRHZb8CP))H*gcTaR>Ks z9}n>ePw*7a@dB^#8gKCqAMg>M@de-T9Y664!TSag0-+EZVG#}y5D}3P14F%b)K z5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSs7{8+^ilYQdp)|^% zEdE4!RK#DXj4G&#YWN2=Pz(Q}4(g&F>Z2hVp$VEI0L{@7t{Mo z94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}maRt|K9XD|c zcW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@**@dLjQtX~iz5E7vg2H_AM5fKSd5Eao8 z1F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&$k7)qcd zO5+cdMLCp51^k6dsDi&y4b@QtHSsTMqb~kKeKbHLG)7Z2Lvyr1E3`&iv_l63q7yo! zE4rZvdZIV_pdb2UAO>LwhGIBIU=&7UEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXc zR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU84&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX z;2!SdAs*ogp5i%P;1youE#Bb+KH@XJ;2XZVg0#RzkRl@r zq9X=kBM#yt0TLq#k|PCDBMs6c12Q8EvLgp_BM6NW@v$yXoI%sfIxIc7j#Dt^hO`_#{dk*5Ddo%jK&y@#{^8q z6imkq%*Gtd!+b2lVl2aQtio!n#X4-nCTztv?8GkY#XcOwAsodqoWv=d#W`HWC0xZd z+{7*1#XUU4BRs`3yu>TK#XEe&Cw#>>{KPMW7!X8Agh5zDKtx1ARK!3`#6eudM*<{9 z5+p|oq(&N~M+Rg@7Gy^b$p*TvRG|HkJDxe}NqYA2_I%=X8YNHP7p*|X+ zF`6L&Ezt^X(GG#=h%V@g9_Wca=!*duh#?q?5g3Uv7>fy*h$)zg8JLMVn2QBih$UEx z6$rj2xPyDRk4JcnXLycR zc#U^>kB|6-ulRX+{FVt#1lNl3%tY|yu}B6#20+U z5Bx;%!9j#TXoNv{L_lOjL3G4GY{Wr)BtT*$L2{%(YNSDWWI$$QL3ZRoZsb9J6hI*q zMo|<)Nt8kvltp<|KqXX0Ra8R_)I@F6K|Rz*BQ!=c1fV5ap$*!i0|L<*UCMZw z9|JHLLogg8FdAbp9uqJbQ!pJfFdK6)9}BP;ORyX(uo`Qy9viS3Td*BFup4`@9|v$4 zM{pb`a2jWD9v5&KS8yFSa2t1U9}n;tPw*Ts@EULM4)5^^pYaXf@e9F*1Q8OU5EkJO z5s?rT(GU}{5Et=~5Q&fkNs$66kp^jz0U416S&;)dkq3EE00mJPMNkaIQ3|C|7UfU@ z6;T;gPz}{l6SYtWbx|J;&=^e+faYk0)@XGd_ieVUuQ5b`< zn1G3xf~lB+nV5sQSb&9Cj3ro(6w>$rv6xQF|AgvWS>=XizJc!&4+gwObf@A!paLxTv3PzZ}~h=@ptifD+5Scr>w zNQgv8ieyNMR7i_-$cRkHifqVC&f9v#pLozV^5(F?uN5B)I+gE0)lF$$wG4&yNilQ9j`F$=RX z5A(4Ii?IyLu?nlP4(qWAo3Rbsu?xGg5BqTlhj9$YaSEq#4(D+RmvIf(aSOL`5BKp9 zkMI=F@Di`^7Vq#8pYRpm@Dslfd{_`65E@|+9uW{3Q4k$55F2q29|@2cNst^VkQ!-_ z9vP4sS&$t$kQ;fB9|cedg;5m6P!gq324ztm6;KJ4Q5Drt12s__bx;rW(Fl#v3;}3~ zR%nZM2t-G8L09xZPxL`w48TAP!BC9ANQ}l9jK>5_#uQA)49vzH%*O&O#u6;Y3arK& ztj7jy#ujYH4(!Gr?8gBd#t|IDah$?woWprs!ev~;b=<;j+{1l5!eczcbG*W9yu*8Z z!e@NLcl^XJgcu$~NQ6OHghvEKMifLx48%qp#6x@}L?R?XQY1$Tq(W+>MLJ|aMr1}7 zWJ7l3L@wk-J`}`nD1zTn93@a1f1n)xL`D3CD)<}K@egX@U)05aXn=-jf~IJW7HEw& zXpau)h)(E=Zs>_#=!NVHk-~7>jY3h)I}=X_$#wn2UK>h(%b6Wmt(-ScA3L zfQ{IKt=NH`*n_<|fP*-Kqd0++ID@mefQz_-tGI!ixQ#owj|X^!$9RV4c!k$^hxhn| z&-jM#_=R92f(VIF2#auth)9TvXo!heh>Lhgh(t(=WJrlrNQ-pHh)l?eY{-dR$cua^ zh~H2IzoR%xpfvtKIsA!=_zP9=H>%?w)WW~0i~rC74bcQm(Ht$%8g0-X9ncA#(GA_v z3%$_~{V@oGF$}{o3ZpR&<1q=7F%8o(3$rl~^RWnvu?)+x3ahaW>#+%&u?^d?3%juo z`*8?|aSX?C3a4=n=Wz*_aShjT3%79(_wfji@eI%L3a{}F@9_zr@eSYc3&BPP5fY&g z7U2*Pkq{Np5EHQw7x9n~iI5b@kP@ko7U_@?nUEFPkQ2F(7x_>Szo7_zM{$%uY5ak* zD2EEDh)Sr8s;Gt01n~^j^YGP;tbB> z0xseTuHpu6;tuZO0UqKBp5g^w;tk&713uylzTyXdBKW8vLLfB4AUq-Z1`FqZtCw60Oh{?GT8L=z^~3fu87%KIo4D7>pqpju9A*F&K{tn2afyjv1JZ zIhcRCoxP;5NhU>V6+qj4O zc!bAzhUa*N*La8b_=L~+hVS@=V55TwiBJfOaEORVh>B>4iCBn>cu0suNQz`giBw2~ zw8(&r$bziMft<*LyeNQzD2yT~hTZplYsDrwwj|OOrCI~=t zv_fmNLwj^YCv-(O^h7W8ML!J0APmJYjKnC6#W+mFBuvFL%)~6r!CWlBLM*{jtiVdF z!CI`x25iO_Y{w4l#vbg)0UX8=9LEWq#u=Q)1zg4zT*nRE#vRLwaOFW@JNlvgROvV&U#|+HI9L&c8EW%*WIkMio>;b<{*H)InX;M*}oQ69k|+TA?-Cp*=dH6S|@sdZHKlq8|og5QbtH zMq(7kVjL!75~gArW?~lRVjdP^5td>ZR$>*_VjVVO6SiU-c3>y=U@s2fAdcWDPT(ZY z;4CiSBCg;nZr~>F;4U8EA)eqVUf?C(;4MDjBfj7(e&8p9j|(CMLL&^qBLX5L3Zf$h zVj~XXBLNa436dc>QX&=7AT2T=BeEbXav&%2ATJ7_APS=hilI14p)|^(9Ll2tDxor} zq8e(TCTgP&>Y+Xw1`+i6eIw(hXoePOi8g49_UM34=!|aYj$Y`Ee&~-u7>r>Uj!_tm zaTt$Dn2c$dj#-$Ed66D(j$a5iK8TPAg)j(<2#AO%h>949iP(sP zc!-ZgNQ`7ij#NmEbV!d($c${rj$Fu%e8`XAPzb-HC`zCt{y-W0iSqahmGC#J;vdw& zzo?D>P!A2!2u;xpEzlBe&=wsKh|cJO?&yKu=!5pgeIE`~SkBhj3tGI@nxP`m8 zhlhBCr+9{!c!jrkhmZJ#ulRJ2Dh>HYBh$Kjg6iA6Q zNQ(@}h%Cs89LR}0$cq9fh{7m>VknMMD2=ixhYF~O%BX^BsE(Sbg*vE<`e=a0Xo3JV zM=P{OJG4hfbV65jLr?TVU-ZL348l+h!$^$6Sd7C&Ou|%5!%WP=T+G8lEW%PO!%D2e zTCBrHY{FJ-!%pnNUhKm`9KsPC#R;6m8JxuhT*MVz#SPrV9o)qOJj4?`#S6T|8@$B_ ze8d-g#Si>M@QFc$Kxl+Pctk*CL_u`KKy1W8d?Y|(BtdedKx(8xdSpOmWI=Z1KyKtg zeiT3<6h=`LLrIiE8I(nNR6r$EMpaZp4b((!)ImMeM~@E#xV8DH=nKM-tE5Wx`& zp%D(@5ebnI4bc$`u@MjPkqC*A49SrSsgVxpkqMcR4cU zgFjIof1wioMpgWS8u%Br@gM4;AsV46nxO?+q7B-j0|L<*UCMZw9|JHLLogg8 zFdAbp9uqJbQ!pJfFdK6)9}BP;ORyX(uo`Qy9viS3Td*BFup4`@9|v$4M{pb`a2jWD z9v5&KS8yFSa2t1U9}n;tPw*Ts@EULM9v|=-U+^725NvV~!4V3f5f0%I36T*E(Gd%= z5fAZ^2#Jvl$&m`Fkq+sR37L@%*^vvmkq`Ot8w%lf6h#S?#2+YwKT#fkp%VT^Rs4e* z_!qVDAL^kY8lfqgp#@r^4ceju0?`>=&>cO{8-36p127mvFdQQ=8e=dH<1q=7F%8o( z3$rl~^RWnvu?)+x3ahaW>#+%&u?^d?3%juo`*8?|aSX?C3a4=n=Wz*_aShjT3%79( z_wfji@eI%L3a{}F@9_zr@eSYc3&ExY5fY&g7U2*Pkq{Np5EHQw7x9n~iI5b@kP@ko z7U_@?nUEFPkQ2F(7x_>C1yLA9Pz=RU3Z+pN z=4gf1XovO)L`QT%SM)$n^g&+?z(5SaP>jGxjKNq;z(h>JR7}SV%*Gtd#{w+I5-i6G zti~Fw#|CW17Hr23?8YAK#{nG15gf+}oW>cP#|2!*6NV#ghm*ILwH0&WJE)B#6oPuLwqDcVkARyq(W+>LwaOFW@JNl zGd_f}t3W5g3Kh7>DtggvpqO>6nGtn1}gTgvD5fw>$rv6xQF|Ah(~yeXLyNMc#C)Vh)?*6 zZ}^E{2r(^)kO+gYh=7QQf~bgrn23Y8NPvV$f}}`+lt_cL$bgK&U?%2ZE*4-RmS8DXU?tXIEjC~ywqPrEU?=uqFAm@! zj^HRx;3UrAEH2<8t^^Sna5YE|kFQHNaSL~F7x(c1kMI~z@eD8U60h+F@9-WU@d;n> z72oj#zYuJC5Fro}p%Dh*5FQZ`2~iLg(Gdf&5F2q34+)SEiID`!kQ^zI3TcoQ>5&1M zkQrH#4LOh#xseC?kRJu{8w#TcilP`wpd?D;50phYlt%^pg-WP`zfld#pK{y|OD zLT%K+f2fBBXo$vWf@TOn3$#RQv_U(xM<6<)GrFJ~x}zt0p%40^KL%hB24g6OVFX5E zG{#^Y#$zHTVG5>VI%Z%NW@9eqVF4CmF_vIi5P<>9gEYA-rPWx2by$y$*n}phJIE6Dfi}SdEOSp`yxP}|JiQBk?d$^B>c!Vc-isyKNS9p!L zc!v-8h|l$cTbyh>nwLMV*iQ53~d0;NzIWl$D>qC6_%FH}YqR7ExX zgBqxXe^Cc@Q4jUe5RK3TO%Z_RXo*&6gSKdo4(NzZ=z^~3jvnZR-sp>d7=VEoj3F3? z;TVZg7=y7Gj|rHB$(V|1n1Pv?jX9Wy`B;cWSc0Wkjulvi)mV#l*no}Lj4jxP?bwN3 z*n_>;j{`V_!#Ij#IDwNmjWalh^SFphxPq&=jvKgz+qjE+cz}m^j3;=8=Xi-%c!Rfi zj}Q2S&-jXO_<^4YHYB>4ftZMmIEaV%NQgv8f}}`}6i9{C zNQ-pHfQ-nDEXaoJ$cbFYgS^O(0{9JuPz1lD7>c7LO5qQbK{@=13aE%msEof+71i+% zYN8fuqYnNMjcJ<$t&&=>tN0D~|XLoo~^ zFcPCN2IDXu6EO)>Fcs4=1G6w2b1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0uoJtn z2m7!e2XP2Ta1_UJ0;hrq3^*O6P4cXC0T*!vS8)S3aR+zt01xp5Pw@gT@dj`40Uz-N zU-1J!5qx$KArKm25FQZ_8Bq`&F%TPZ5FZJU7)g*EDUcdzkRBP38Cj4WIglH9kRJt5 z2!&A;#ZVHZPzGgD9u-gtl~EPdPy;nl8+A|*_0b58(F_4-iB@Qfb_hgAbU|12Ku`2R zUkt!N48c&0z(|b2SWLh~Ou5&1Mkp#RN>m6imeo%)}hb#R4qE z5-i0Eti&3u#RhD|7Hq{1?8F}I#Q_||5gf${oWvQN#RXi%608a-=|Nq(ORQKxSk? zcH}^Avcx25Yea8?gmj zu>(7?2YYb<2XO>PaRMiC24`^r7jXqwaRWDT2Y2xR5Ag&~@d7XL25<2JAMpiW@dG~* ze0~ri5E@|+9uW{3Q4k$55F2q29|@2cNst^VkQ!-_9vP4sS&$t$kQ;fB9|cedg;5m6 zP!gq324ztm6;KJ4Q5Drt12s__bx;rW(Fl#v3;}3~R%nZM2t-G8L09xZPxL`w48TAP z!BC9ANQ}W)Ou$4;!Bot^Ow7StEWko6!BVWiO02M+&4y8l*=CWJVTbM-Jph9^^*>6hdJXMKP2_DU?B3lt%?rLS&)J7fDLwz(tV>CkmTA~%&q8$R!5na#~JJ1=*1UxseC?Q2>Qd7)4PGB~c1xP!{D;0hLf0RZ$H!P!qLL2lY@NjnEj) z5P+6wg|=viKy*YGbVU#JL?86U01U(s48;hH#2Adl1Wd#fOvMb$#2n1U0xZN5EX4|} z#2T!{25iI@Y{d@j#2)O$0UX2;9K{Ko#2K8$1zf}xT*VFC#2wtl13bhNJjDyV#2dWD z2YkdAe8ms^MDRsHgg|J7L3l(!WJE!9#6WDsL3|`YVkALwq(Ewhf^;y} zLF$N3=z^~3jvnZR-sp>d7=VEoj3F3?;TVZg7=y7Gj|rHB$(V|1n1Pv?jX9Wy`B;cW zSc0Wkjulvi)mV#l*no}Lj4jxP?bwN3*n_>;j{`V_!#Ij#IDwNmjWalh^SFphxPq&= zjvKgz+qjE+cz}m^j3;=8=Xi-%c!Rfij}Q2S&-jXO_<^4Ywm6932#HV#gRlsX2#AEp xh#Ev-;P8aaT6JjDu6>)P&02M?+p1p6Mh)vWYt^w)s}8N(bs67dd|>@7{{wmUM~46a diff --git a/docs/_build/doctrees/index.doctree b/docs/_build/doctrees/index.doctree index 3775feb75a53e54c65910f03db9d6fad5d887ac1..3a9aae71c3d09acbcf7ea4bf44bf2110887b4373 100644 GIT binary patch delta 137 zcmX@Fxm}Z`fo1BNjVu<7-0J$F#i>Qb`dP*0lYJR&8JA49XOf@1iqU!US!PQPg|y6^ zR0U7}%_dB)jOx4!IhjdCiA9wPY57H5Q(C7qPN|)uk-^%7DlvHj^F29Em{vU`b#TGW ID_GP808siaMF0Q* delta 161 zcmdn4d0vyHfo1BEjVu<7g1Y*l#i>Qb`dQ@}nI(zYsYR3B8EqL?O^#!dpS*<8nWHE* zF(orEU19P@X3NP6OstH>n>CnR8O=o%ax#;O5{oJo((;SAV5+9HPHCJ{J4GXdwFkR` b$y1o`NwF)WW#*(7>mjLz3T>XiqAmacSA{pt diff --git a/docs/_build/doctrees/installing.doctree b/docs/_build/doctrees/installing.doctree index 23cebf75b2c90c6a51ec34cbd48905c371bfb45b..61c61a96e86df86cb53eb039cab2a1c4d5e31e22 100644 GIT binary patch delta 1308 zcmb7DT}YEr81{T_`*fS`$GPc#^wWvVoGu7O)Up!8utq;hn3-;Ecy`ilxJ})KKV6s> zyO7>bh$zUbZlsXi1yMv7L7-4n7e+zd)J+6|6y0>r_ig^57~Q;_^PcB<-uHRWIrln# zbt-2Riz8Jl%66o2dwOEQ(U^zC#?!s%s{-a#Ew+<2*ThNDg_Zar=KDn)+}gvcstTpS zU~_<;=h0&*;YBD@YNihlUP;DrBrLSzcsv?w_ITudePnd#$l$<$;EIHYlR`Kc3XcGsi6mJv?DtRDl;te-||Tz z%E`etqJ`yxI+KpB@>v4mTx`d+*wLkfcX?kpVuf|H6<+7paKs4*4dtNY`D#+juwyAb zv&AkZ5)Sz4LlIBb6tPkOw5vOrfX&p9XUG(Q7wYTixFke0wxXjNGG$2zi+DaN7q21|N3+}1Z4 zSwfzk7dyPP&OCh9pGJ2XDKATcK7(^FA_%? z-a{@a;UHkCUoR z&k5=xC@AQn8(Vk%0YM;CbY*CQM0F7&1Vt3|K4(rEdGqj|_xb&P&-47A_xv1sFle}; zzq?$wVmQiNoxyM_I++S8QxHo>#-o$jVfIDOdhoEZ%WSczP<%m!lh|oIW{oz@sk3S$ z7~nZB8SB{#d~5KU7xfd7cvOX#_`#^6Z2oG5Pawe-CQ6!JCH%Ar40Pay7N`z6aL%$N zzz)W&0|NXaf#zKSMPNlmaCOlM>2$I$7#vMZj71K_5*BQ=$J0c-PTUU(oma>CHqv6lwKULv|)R($zD!uY9w=6sl=6%o9qNH?o%4LxYD>= z>7O<{gwIYnTNw-EW7m0hX;}=IMyM4@31f>mE{5qtvx-LJx)<@Oc#5S8fd10Je!z33 zAvRwCT-_fixck}t0$|)dyPx83_Y8Yh0DM%|&wD>&>o!Q5b-wbm%z@v`K3pnqGQG=< z@`gLq;auGtMccYRtE+g(gbjvIDo5C7Zj>dz^lgT19zUf{dwRr;J>H%L_dE&qhxcLK z^@;ySD;uX#D;6@@Me9TW}{qMe7#qM6=)dL|i7(Vw9ZSB7<2qsbcOwg#6o cP)h(!*9L3Qs)@p8PO*h#Ns&*~892`V0vH(!n*aa+ diff --git a/docs/_build/html/.buildinfo b/docs/_build/html/.buildinfo index ce936236..1b318f88 100644 --- a/docs/_build/html/.buildinfo +++ b/docs/_build/html/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 65f4399708de4ec123415b7aaea1b846 +config: 8dd736fc547b45a6a09dfaf65e8e237b tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_build/html/_sources/api.rst.txt b/docs/_build/html/_sources/api.rst.txt index 64d3bab8..273483a5 100644 --- a/docs/_build/html/_sources/api.rst.txt +++ b/docs/_build/html/_sources/api.rst.txt @@ -39,7 +39,7 @@ find the first grib message with a matching name: >>> grb = grbs.select(name='Maximum temperature')[0] -extract the data values using the 'values' key grb.keys() will return a list of the available keys): +extract the data values using the ``values`` key (``grb.keys()`` will return a list of the available keys): >>> maxt = grb.values # same as grb['values'] # The data is returned as a numpy array, or if missing values or a bitmap @@ -68,6 +68,24 @@ extract data and get lat/lon values for a subset over North America: >>> data.shape, lats.min(), lats.max(), lons.min(), lons.max() (26, 53) 21.904439458 69.5216630593 221.25 318.75 +modify the values associated with existing keys: + + >>> grb['forecastTime'] = 240 + >>> grb.dataDate = 20100101 + +get the binary string associated with the coded message: + + >>> msg = grb.tostring() + >>> grbs.close() # close the grib file. + +write the modified message to a new GRIB file: + + >>> grbout = open('test.grb','wb') + >>> grbout.write(msg) + >>> grbout.close() + >>> pygrib.open('test.grb').readline() + 1:Surface pressure:Pa (instant):regular_gg:surface:level 0:fcst time 240 hrs:from 201001011200 + Module docstrings ----------------- diff --git a/docs/_build/html/_sources/index.rst.txt b/docs/_build/html/_sources/index.rst.txt index 2247cb27..1bcd5239 100644 --- a/docs/_build/html/_sources/index.rst.txt +++ b/docs/_build/html/_sources/index.rst.txt @@ -3,7 +3,7 @@ pygrib High-level python interface to `ECCODES `__ library for -reading `GRIB `__ files. +`GRIB `__ file IO. Contents -------- diff --git a/docs/_build/html/_sources/installing.rst.txt b/docs/_build/html/_sources/installing.rst.txt index 2fa8a920..c0f2118b 100644 --- a/docs/_build/html/_sources/installing.rst.txt +++ b/docs/_build/html/_sources/installing.rst.txt @@ -8,6 +8,7 @@ Required dependencies - `ECCODES `__ C library version 2.19.1 or higher. - `numpy `__ - `pyproj `__ +- `cython `__ (only needed at build-time) Instructions @@ -20,7 +21,7 @@ The easiest way to get everything installed is to use conda_ command line tool:: .. _conda: http://conda.io/ If you don't use conda, be sure you have the required dependencies -installed first. Then, install cftime with pip:: +installed first. Then, install pygrib with pip:: $ ECCODES_DIR=path/to/eccodes pip install pygrib diff --git a/docs/_build/html/_static/jquery-3.4.1.js b/docs/_build/html/_static/jquery-3.4.1.js deleted file mode 100644 index 773ad95c..00000000 --- a/docs/_build/html/_static/jquery-3.4.1.js +++ /dev/null @@ -1,10598 +0,0 @@ -/*! - * jQuery JavaScript Library v3.4.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2019-05-01T21:04Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var document = window.document; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var concat = arr.concat; - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.4.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }, - - // Support: Android <=4.0 only - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a global context - globalEval: function( code, options ) { - DOMEval( code, { nonce: options && options.nonce } ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // Support: Android <=4.0 only - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.4 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2019-04-08 - */ -(function( window ) { - -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ({}).hasOwnProperty, - arr = [], - pop = arr.pop, - push_native = arr.push, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[i] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - high < 0 ? - // BMP codepoint - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - (arr = slice.call( preferredDoc.childNodes )), - preferredDoc.childNodes - ); - // Support: Android<4.0 - // Detect silently failing push.apply - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - push_native.apply( target, slice.call(els) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { - - // ID selector - if ( (m = match[1]) ) { - - // Document context - if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) && - - // Support: IE 8 only - // Exclude object elements - (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && rdescend.test( selector ) ) { - - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", (nid = expando) ); - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[i] = "#" + nid + " " + toSelector( groups[i] ); - } - newSelector = groups.join( "," ); - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key + " " ] = value); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement("fieldset"); - - try { - return !!fn( el ); - } catch (e) { - return false; - } finally { - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split("|"), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction(function( argument ) { - argument = +argument; - return markFunction(function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ (j = matchIndexes[i]) ] ) { - seed[j] = !(matches[j] = seed[j]); - } - } - }); - }); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = (elem.ownerDocument || elem).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9-11, Edge - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - if ( preferredDoc !== document && - (subWindow = document.defaultView) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert(function( el ) { - el.className = "i"; - return !el.getAttribute("className"); - }); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( el ) { - el.appendChild( document.createComment("") ); - return !el.getElementsByTagName("*").length; - }); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert(function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - }); - - // ID filter and find - if ( support.getById ) { - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute("id") === attrId; - }; - }; - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter["ID"] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode("id"); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( (elem = elems[i++]) ) { - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find["TAG"] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( (elem = results[i++]) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert(function( el ) { - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll("[msallowcapture^='']").length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll("[selected]").length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push("~="); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll(":checked").length ) { - rbuggyQSA.push(":checked"); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push(".#.+[+~]"); - } - }); - - assert(function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement("input"); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll("[name=d]").length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll(":enabled").length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll(":disabled").length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll("*,:x"); - rbuggyQSA.push(",.*:"); - }); - } - - if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector) )) ) { - - assert(function( el ) { - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - }); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - )); - } : - function( a, b ) { - if ( b ) { - while ( (b = b.parentNode) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { - - // Choose the first element that is related to our preferred document - if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { - return -1; - } - if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - return a === document ? -1 : - b === document ? 1 : - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( (cur = cur.parentNode) ) { - ap.unshift( cur ); - } - cur = b; - while ( (cur = cur.parentNode) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[i] === bp[i] ) { - i++; - } - - return i ? - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[i], bp[i] ) : - - // Otherwise nodes in our document sort first - ap[i] === preferredDoc ? -1 : - bp[i] === preferredDoc ? 1 : - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch (e) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - // Set document vars if needed - if ( ( context.ownerDocument || context ) !== document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - // Set document vars if needed - if ( ( elem.ownerDocument || elem ) !== document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return (sel + "").replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( (elem = results[i++]) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - // If no nodeType, this is expected to be an array - while ( (node = elem[i++]) ) { - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[1] = match[1].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); - - if ( match[2] === "~=" ) { - match[3] = " " + match[3] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[1] = match[1].toLowerCase(); - - if ( match[1].slice( 0, 3 ) === "nth" ) { - // nth-* requires argument - if ( !match[3] ) { - Sizzle.error( match[0] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); - match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); - - // other types prohibit arguments - } else if ( match[3] ) { - Sizzle.error( match[0] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[6] && match[2]; - - if ( matchExpr["CHILD"].test( match[0] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[3] ) { - match[2] = match[4] || match[5] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - // Get excess from tokenize (recursively) - (excess = tokenize( unquoted, true )) && - // advance to the next closing parenthesis - (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { - - // excess is a negative index - match[0] = match[0].slice( 0, excess ); - match[2] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { return true; } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && - classCache( className, function( elem ) { - return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); - }); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - }; - }, - - "CHILD": function( type, what, argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( (node = node[ dir ]) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( (node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - (diff = nodeIndex = 0) || start.pop()) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - // Use previously-cached element index if available - if ( useCache ) { - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction(function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[i] ); - seed[ idx ] = !( matches[ idx ] = matched[i] ); - } - }) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - // Potentially complex pseudos - "not": markFunction(function( selector ) { - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction(function( seed, matches, context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( (elem = unmatched[i]) ) { - seed[i] = !(matches[i] = elem); - } - } - }) : - function( elem, context, xml ) { - input[0] = elem; - matcher( input, null, xml, results ); - // Don't keep the element (issue #299) - input[0] = null; - return !results.pop(); - }; - }), - - "has": markFunction(function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - }), - - "contains": markFunction(function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - }), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - // lang value must be a valid identifier - if ( !ridentifier.test(lang || "") ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( (elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); - return false; - }; - }), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); - }, - - "selected": function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos["empty"]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo(function() { - return [ 0 ]; - }), - - "last": createPositionalPseudo(function( matchIndexes, length ) { - return [ length - 1 ]; - }), - - "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - }), - - "even": createPositionalPseudo(function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "odd": createPositionalPseudo(function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }), - - "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - }) - } -}; - -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || (match = rcomma.exec( soFar )) ) { - if ( match ) { - // Don't consume trailing commas as valid - soFar = soFar.slice( match[0].length ) || soFar; - } - groups.push( (tokens = []) ); - } - - matched = false; - - // Combinators - if ( (match = rcombinators.exec( soFar )) ) { - matched = match.shift(); - tokens.push({ - value: matched, - // Cast descendant combinators to space - type: match[0].replace( rtrim, " " ) - }); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || - (match = preFilters[ type ]( match ))) ) { - matched = match.shift(); - tokens.push({ - value: matched, - type: type, - matches: match - }); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[i].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( (elem = elem[ dir ]) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || (elem[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( (oldCache = uniqueCache[ key ]) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return (newCache[ 2 ] = oldCache[ 2 ]); - } else { - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[i]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[0]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[i], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( (elem = unmatched[i]) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction(function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( (elem = temp[i]) ) { - matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) ) { - // Restore matcherIn since elem is not yet a final match - temp.push( (matcherIn[i] = elem) ); - } - } - postFinder( null, (matcherOut = []), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( (elem = matcherOut[i]) && - (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { - - seed[temp] = !(results[temp] = elem); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - }); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[0].type ], - implicitRelative = leadingRelative || Expr.relative[" "], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - (checkContext = context).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( (matcher = Expr.relative[ tokens[i].type ]) ) { - matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; - } else { - matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[j].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), - len = elems.length; - - if ( outermost ) { - outermostContext = context === document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && (elem = elems[i]) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - if ( !context && elem.ownerDocument !== document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context || document, xml) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - // They will have gone through all possible matchers - if ( (elem = !matcher && elem) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( (matcher = setMatchers[j++]) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !(unmatched[i] || setMatched[i]) ) { - setMatched[i] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[i] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( (selector = compiled.selector || selector) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[0] = match[0].slice( 0 ); - if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { - - context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[i]; - - // Abort if we hit a combinator - if ( Expr.relative[ (type = token.type) ] ) { - break; - } - if ( (find = Expr.find[ type ]) ) { - // Search, expanding context for leading sibling combinators - if ( (seed = find( - token.matches[0].replace( runescape, funescape ), - rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context - )) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( el ) { - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; -}); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute("href") === "#" ; -}) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - }); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -}) ) { - addHandle( "value", function( elem, name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - }); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( el ) { - return el.getAttribute("disabled") == null; -}) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - (val = elem.getAttributeNode( name )) && val.specified ? - val.value : - null; - } - }); -} - -return Sizzle; - -})( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( typeof elem.contentDocument !== "undefined" ) { - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - -var swap = function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // Support: IE <=9 only - option: [ 1, "" ], - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -// Support: IE <=9 only -wrapMap.optgroup = wrapMap.option; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; -} )(); - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Don't attach events to noData or text/comment nodes (but allow plain objects) - if ( !elemData ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = {}; - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - // Make a writable jQuery.Event from the native event object - var event = jQuery.event.fix( nativeEvent ); - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - /* eslint-disable max-len */ - - // See https://github.com/eslint/eslint/issues/3229 - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, - - /* eslint-enable */ - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.access( src ); - pdataCur = dataPriv.set( dest, pdataOld ); - events = pdataOld.events; - - if ( events ) { - delete pdataCur.handle; - pdataCur.events = {}; - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = concat.apply( [], args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - } ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html.replace( rxhtmlTag, "<$1>" ); - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - // Support: IE 9-11 only - // Also use offsetWidth/offsetHeight for when box sizing is unreliable - // We use getClientRects() to check for hidden/disconnected. - // In those cases, the computed value can be trusted to be border-box - if ( ( !support.boxSizingReliable() && isBorderBox || - val === "auto" || - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue && type !== false ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - var doc = this.ownerDocument || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = Date.now(); - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - - -jQuery._evalUrl = function( url, options ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " @@ -78,7 +79,7 @@

Example usage
>>> grb = grbs.select(name='Maximum temperature')[0]
 
-

extract the data values using the ‘values’ key grb.keys() will return a list of the available keys):

+

extract the data values using the values key (grb.keys() will return a list of the available keys):

+

modify the values associated with existing keys:

+
>>> grb['forecastTime'] = 240
+>>> grb.dataDate = 20100101
+
+
+

get the binary string associated with the coded message:

+
>>> msg = grb.tostring()
+>>> grbs.close() # close the grib file.
+
+
+

write the modified message to a new GRIB file:

+
>>> grbout = open('test.grb','wb')
+>>> grbout.write(msg)
+>>> grbout.close()
+>>> pygrib.open('test.grb').readline()
+1:Surface pressure:Pa (instant):regular_gg:surface:level 0:fcst time 240 hrs:from 201001011200
+
+

Module docstrings

+

pygrib module

pygrib.fromstring(string)
-

Create a gribmessage instance from a python bytes object +

Create a gribmessage instance from a python bytes object representing a binary grib message (the reverse of gribmessage.tostring()).

@@ -169,8 +189,9 @@

Example usage
-expand_grid()
-

toggle expansion of 1D reduced grid data to a regular (2D) grid

+expand_grid(True or False) +

toggle expansion of 1D reduced grid data to a regular (2D) grid (on +by default).

@@ -189,7 +210,7 @@

Example usage
keys()
-

return keys associated with a grib message (a dictionary-like object)

+

return keys associated with a grib message in a list

@@ -197,15 +218,15 @@

Example usagelatlons()

compute lats and lons (in degrees) of grid. Currently handles regular lat/lon, global gaussian, mercator, stereographic, -lambert conformal, albers equal-area, space-view, azimuthal +lambert conformal, albers equal-area, space-view, azimuthal equidistant, reduced gaussian, reduced lat/lon, lambert azimuthal equal-area, rotated lat/lon and rotated gaussian grids.

Returns
-

lats,lons numpy arrays

+

lats,lons numpy arrays +containing latitudes and longitudes of grid (in degrees).

-

containing latitudes and longitudes of grid (in degrees).

@@ -457,19 +478,19 @@

Example usage pygrib.reload(grb)

Recreate gribmessage object, updating all the keys to be consistent -with each other. For example, if the forecastTime key is changed, -recreating the gribmessage object with this function will cause -the analDate and verifDate keys to be updated accordingly.

-

Equivalent to fromstring(grb.tostring())

+with each other. For example, if the forecastTime key is changed, +recreating the gribmessage object with this function will cause +the analDate and verifDate keys to be updated accordingly.

+

Equivalent to fromstring(grb.tostring())

pygrib.setdates(grb)
-

set fcstimeunits, analDate and validDate attributes using -julianDay, forecastTime and indicatorOfUnitOfTimeRange. -Called automatically when gribmessage instance created, -but can be called manually to update keys if one of +

set fcstimeunits, analDate and validDate attributes using +the julianDay, forecastTime and indicatorOfUnitOfTimeRange keys. +Called automatically when gribmessage instance created, +but can be called manually to update keys if one of them is modified after instance creation.

diff --git a/docs/_build/html/genindex.html b/docs/_build/html/genindex.html index 83e01f20..04cbc289 100644 --- a/docs/_build/html/genindex.html +++ b/docs/_build/html/genindex.html @@ -8,6 +8,7 @@ Index — pygrib documentation + diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html index b75c9be8..fda42557 100644 --- a/docs/_build/html/index.html +++ b/docs/_build/html/index.html @@ -8,6 +8,7 @@ pygrib — pygrib documentation + @@ -43,7 +44,7 @@

Navigation

pygrib

High-level python interface to ECCODES library for -reading GRIB files.

+GRIB file IO.

Contents

diff --git a/docs/_build/html/installing.html b/docs/_build/html/installing.html index 3dcf3e6c..c41ee04e 100644 --- a/docs/_build/html/installing.html +++ b/docs/_build/html/installing.html @@ -8,6 +8,7 @@ Installation — pygrib documentation + @@ -52,6 +53,7 @@

Required dependencies

ECCODES C library version 2.19.1 or higher.

  • numpy

  • pyproj

  • +
  • cython (only needed at build-time)

  • diff --git a/docs/_build/html/py-modindex.html b/docs/_build/html/py-modindex.html index d9f2b5d2..faa881ff 100644 --- a/docs/_build/html/py-modindex.html +++ b/docs/_build/html/py-modindex.html @@ -8,6 +8,7 @@ Python Module Index — pygrib documentation + diff --git a/docs/_build/html/search.html b/docs/_build/html/search.html index eb5711c5..885af4d1 100644 --- a/docs/_build/html/search.html +++ b/docs/_build/html/search.html @@ -8,6 +8,7 @@ Search — pygrib documentation + diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js index cedaafae..6f9d8b72 100644 --- a/docs/_build/html/searchindex.js +++ b/docs/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"220":0,"221":0,"223":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:0,also:0,alter:0,america:0,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:2,call:0,callabl:0,can:0,cannot:0,caus:0,cftime:2,chang:[0,2],check:2,clone:2,close:0,cntl:0,code:0,command:2,common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:[0,2],each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:2,extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:[0,2],flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:0,from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:2,height:0,heightaboveground:0,high:1,higher:2,howev:0,hrs:0,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:2,instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:2,latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:2,list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:0,open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:2,path:2,pip:2,place:2,point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:[0,1],readlin:0,recommend:2,recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:1,res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:2,surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:0,thing:0,time:0,togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:[0,2],tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:0,usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:2,via:0,view:0,wai:2,warn:0,when:[0,2],where:2,whether:0,which:0,wind:0,within:0,work:0,write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:2,tabl:1,usag:0}}) \ No newline at end of file +Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"20100101":0,"201001011200":0,"220":0,"221":0,"223":0,"240":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"new":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:0,also:0,alter:0,america:0,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:2,call:0,callabl:0,can:0,cannot:0,caus:0,chang:[0,2],check:2,clone:2,close:0,cntl:0,code:0,command:2,common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,datad:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:[0,2],each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:2,extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:[0,2],flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:0,from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grbout:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:2,height:0,heightaboveground:0,high:1,higher:2,howev:0,hrs:0,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:2,instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:2,latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:2,list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,msg:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,need:2,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:[0,2],open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:2,path:2,pip:2,place:2,point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:0,readlin:0,recommend:2,recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:1,res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:2,surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:0,thing:0,time:[0,2],togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:[0,2],tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:0,usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:2,via:0,view:0,wai:2,warn:0,when:[0,2],where:2,whether:0,which:0,wind:0,within:0,work:0,write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:2,tabl:1,usag:0}}) \ No newline at end of file From d62d1f295a5565acb04439f90553a002886032df Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Sun, 20 Dec 2020 21:40:07 -0700 Subject: [PATCH 20/44] update --- Changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changelog b/Changelog index c6d748b4..cb23731f 100644 --- a/Changelog +++ b/Changelog @@ -9,6 +9,8 @@ version 2.1.2 (git tag v2.1.2rel) get/reset ECCODES_DEFINITION_PATH (default is either ECCODES_DEFINITION_PATH if it is set in the environment, or if not pygrib.__file__/../ecodes/definitions). +* include binary wheels for linux in pypi release. +* add template definition for RAP grib files (issue #134). version 2.1.1 (git tag v2.1.1rel) ================================= From de7a1e2f7d4a29dc43a6fe08d46023326ca347ca Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 10:46:45 -0700 Subject: [PATCH 21/44] update --- eccodes/definitions/grib2/section.3.def | 2 +- eccodes/definitions/grib2/template.3.32769.def | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eccodes/definitions/grib2/section.3.def b/eccodes/definitions/grib2/section.3.def index 1e88c592..b748078d 100644 --- a/eccodes/definitions/grib2/section.3.def +++ b/eccodes/definitions/grib2/section.3.def @@ -64,6 +64,7 @@ concept gridType { "regular_ll" = { gridDefinitionTemplateNumber=0; PLPresent=0; } "reduced_ll" = { gridDefinitionTemplateNumber=0; PLPresent=1; } "rotated_ll" = { gridDefinitionTemplateNumber=1; PLPresent=0; } + "rotated_ll_nceprap" = { gridDefinitionTemplateNumber=32679; PLPresent=0; } "stretched_ll" = { gridDefinitionTemplateNumber=2; PLPresent=0; } "stretched_rotated_ll" = { gridDefinitionTemplateNumber=3; PLPresent=0; } "mercator" = { gridDefinitionTemplateNumber=10; PLPresent=0; } @@ -111,7 +112,6 @@ concept gridType { "polar_stereographic_bf" = { gridDefinitionTemplateNumber=62; PLPresent=0; } "unknown" = {PLPresent=0;} "unknown_PLPresent" = {PLPresent=1;} - "rotated_arakawa_none_staggered" = { gridDefinitionTemplateNumber=32679; PLPresent=0; } } : dump; alias ls.gridType=gridType; diff --git a/eccodes/definitions/grib2/template.3.32769.def b/eccodes/definitions/grib2/template.3.32769.def index 9fca2730..ee63af41 100644 --- a/eccodes/definitions/grib2/template.3.32769.def +++ b/eccodes/definitions/grib2/template.3.32769.def @@ -2,4 +2,4 @@ include "grib2/template.3.shape_of_the_earth.def"; include "grib2/template.3.latlon.def"; -include "grib2/template.3.rotation.def"; +#include "grib2/template.3.rotation.def"; From 602a3fbfb6419a3b3487d651760a289f63ebb4e3 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 12:18:29 -0700 Subject: [PATCH 22/44] update --- Changelog | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index cb23731f..d8cf94da 100644 --- a/Changelog +++ b/Changelog @@ -10,7 +10,9 @@ version 2.1.2 (git tag v2.1.2rel) (default is either ECCODES_DEFINITION_PATH if it is set in the environment, or if not pygrib.__file__/../ecodes/definitions). * include binary wheels for linux in pypi release. -* add template definition for RAP grib files (issue #134). +* add template definition for RAP grib files (issue #134). Not fully + implemented, but at least file can be read (gridType=unknown, latlons + method doesn't yet work).. version 2.1.1 (git tag v2.1.1rel) ================================= From 9c75bf79a49e6f90d80602a33dbecb4f825b03c2 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 12:40:41 -0700 Subject: [PATCH 23/44] use ubuntu 20.04 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 747473a6..02fbe90d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: build-linux: name: Python (${{ matrix.python-version }}) - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: PROJ_DIR: /usr PROJ_LIB: /usr/share/proj From 9f4a6d53b884a1a97bbde22522c7831087250824 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 14:41:18 -0700 Subject: [PATCH 24/44] run test in /tmp --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02fbe90d..fa2fcb6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,9 @@ jobs: - name: Install pygrib dependencies via pip run: | - python -m pip install "numpy>1.10" + python -m pip install numpy python -m pip install cython - python -m pip install "pyproj<3.0.0" + python -m pip install pyproj python -m pip install wheel python -m pip install pyshp python -m pip install six @@ -50,6 +50,7 @@ jobs: - name: Test run: | - cd test + cp -R test sampledata conftest.py /tmp + cd /tmp/test export MPLBACKEND=agg pytest test*py --mpl --mpl-baseline-path=baseline_images From cc3068c262d15c0db44abb87236bfc83248cb036 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 14:51:47 -0700 Subject: [PATCH 25/44] update --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa2fcb6c..f879f455 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: PROJ_LIB: /usr/share/proj strategy: matrix: - python-version: ["3.7", "3.8", "3.9"] + python-version: ["3.6", "3.7", "3.8", "3.9"] steps: - uses: actions/checkout@v2 @@ -50,7 +50,9 @@ jobs: - name: Test run: | - cp -R test sampledata conftest.py /tmp + cp -r test/ /tmp + cp -r sampledata/ /tmp + cp conftest.py /tmp cd /tmp/test export MPLBACKEND=agg pytest test*py --mpl --mpl-baseline-path=baseline_images From 70e60a8566fd73fd2ccf022fd4f6efa3abf7fed5 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 14:58:18 -0700 Subject: [PATCH 26/44] pyproj < 3 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f879f455..8fc622e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: run: | python -m pip install numpy python -m pip install cython - python -m pip install pyproj + python -m pip install "pyproj<3.0.0" python -m pip install wheel python -m pip install pyshp python -m pip install six From 5af8e2202735fdf92c6b98f56db197820dbc7c74 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:05:18 -0700 Subject: [PATCH 27/44] update --- .github/workflows/build.yml | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8fc622e6..11db8ec8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,16 +33,16 @@ jobs: run: | python -m pip install numpy python -m pip install cython - python -m pip install "pyproj<3.0.0" - python -m pip install wheel - python -m pip install pyshp - python -m pip install six - python -m pip install shapely --no-binary shapely - python -m pip install matplotlib - python -m pip install cartopy - python -m pip install scipy - python -m pip install pyspharm - python -m pip install pytest pytest-mpl + python -m pip install pyproj + #python -m pip install wheel + #python -m pip install pyshp + #python -m pip install six + #python -m pip install shapely --no-binary shapely + #python -m pip install matplotlib + #python -m pip install cartopy + #python -m pip install scipy + #python -m pip install pyspharm + #python -m pip install pytest pytest-mpl - name: Install pygrib run: | @@ -50,9 +50,12 @@ jobs: - name: Test run: | - cp -r test/ /tmp - cp -r sampledata/ /tmp - cp conftest.py /tmp - cd /tmp/test - export MPLBACKEND=agg - pytest test*py --mpl --mpl-baseline-path=baseline_images + cd test + python test.py + python test_latlons.py + #cp -r test/ /tmp + #cp -r sampledata/ /tmp + #cp conftest.py /tmp + #cd /tmp/test + #export MPLBACKEND=agg + #pytest test*py --mpl --mpl-baseline-path=baseline_images From d58830d3c02b77577db0d0d0d70eb4c4ed3df2f3 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:10:55 -0700 Subject: [PATCH 28/44] update --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 11db8ec8..0f332d02 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: build-linux: name: Python (${{ matrix.python-version }}) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: PROJ_DIR: /usr PROJ_LIB: /usr/share/proj From 2fc1aa6adbe6503db8d00e7a84d2359d754e8b62 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:25:27 -0700 Subject: [PATCH 29/44] update --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f332d02..753c4a20 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,6 +51,7 @@ jobs: - name: Test run: | cd test + export ECCODES_DEFINITION_PATH=/usr/local/share/eccodes/definitions python test.py python test_latlons.py #cp -r test/ /tmp From 94153583d69d2e887fec614b068cc7c36bff6986 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:33:23 -0700 Subject: [PATCH 30/44] update --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 753c4a20..e8e631e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: - name: Test run: | cd test - export ECCODES_DEFINITION_PATH=/usr/local/share/eccodes/definitions + export ECCODES_DEFINITION_PATH=/usr/share/eccodes/definitions python test.py python test_latlons.py #cp -r test/ /tmp From 3342a92dab0cd1b47cd237f7337cb0600e38e51e Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:59:07 -0700 Subject: [PATCH 31/44] don't install definitions unless PYGRIB_WHEEL env var is set --- pygrib/_pygrib.pyx | 15 ++++++++++++--- setup.py | 3 ++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/pygrib/_pygrib.pyx b/pygrib/_pygrib.pyx index a8953a9c..a6151586 100644 --- a/pygrib/_pygrib.pyx +++ b/pygrib/_pygrib.pyx @@ -256,12 +256,21 @@ def set_definitions_path(eccodes_definition_path): grib_context_set_definitions_path(NULL, definition_path) _eccodes_datadir = eccodes_definition_path +# if ECCODES_DEFINITION_PATH set in environment, use it. +# check to see if definitions path is in installation path (binary wheel installation), if so use it. +# otherwise do not set (use definitions installed with linked library( if 'ECCODES_DEFINITION_PATH' in os.environ: _datadir = os.environ['ECCODES_DEFINITION_PATH'] else: - _datadir = os.sep.join([os.path.join(os.path.dirname(__file__),'..'), - 'eccodes/definitions']) -set_definitions_path(_datadir) + _tmp_path = os.path.join('eccodes','definitions') + _definitions_path = os.path.join(os.path.join(os.path.dirname(__file__),'..'),_tmp_path) + if os.path.isdir(_definitions_path): + _datadir = os.sep.join([_definitions_path]) + else: + _datadir = None +if _datadir is not None: + set_definitions_path(_datadir) + def get_definitions_path(): global _eccodes_datadir return _eccodes_datadir diff --git a/setup.py b/setup.py index 14412ef6..673e9ffd 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,8 @@ def package_files(directory): package_data = {} -package_data[""] = package_files("eccodes") +if os.environ.get("PYGRIB_WHEEL") is not None: + package_data[""] = package_files("eccodes") cmdclass = {"build_ext": NumpyBuildExtCommand} From f39dd7a5cefdd076041a2d23e6c10867707577b0 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 15:59:48 -0700 Subject: [PATCH 32/44] don't set ECCODES_DEFINITION_PATH --- .github/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8e631e0..0f332d02 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,6 @@ jobs: - name: Test run: | cd test - export ECCODES_DEFINITION_PATH=/usr/share/eccodes/definitions python test.py python test_latlons.py #cp -r test/ /tmp From e8296d8451f9bc2d33266b53362379227e45c8e9 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 16:04:19 -0700 Subject: [PATCH 33/44] install pytest --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f332d02..be7b98d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,6 +34,8 @@ jobs: python -m pip install numpy python -m pip install cython python -m pip install pyproj + python -m pip install pytest + #python -m pip install pytest pytest-mpl #python -m pip install wheel #python -m pip install pyshp #python -m pip install six @@ -42,7 +44,6 @@ jobs: #python -m pip install cartopy #python -m pip install scipy #python -m pip install pyspharm - #python -m pip install pytest pytest-mpl - name: Install pygrib run: | From a8f87e7f5ccd2b4ffca3c0450189af6590951f76 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 16:10:03 -0700 Subject: [PATCH 34/44] try mpl tests again --- .github/workflows/build.yml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be7b98d5..0b1d25d2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,15 +35,15 @@ jobs: python -m pip install cython python -m pip install pyproj python -m pip install pytest - #python -m pip install pytest pytest-mpl - #python -m pip install wheel - #python -m pip install pyshp - #python -m pip install six - #python -m pip install shapely --no-binary shapely - #python -m pip install matplotlib - #python -m pip install cartopy - #python -m pip install scipy - #python -m pip install pyspharm + python -m pip install pytest-mpl + python -m pip install wheel + python -m pip install pyshp + python -m pip install six + python -m pip install shapely --no-binary shapely + python -m pip install matplotlib + python -m pip install cartopy + python -m pip install scipy + python -m pip install pyspharm - name: Install pygrib run: | @@ -51,12 +51,12 @@ jobs: - name: Test run: | - cd test - python test.py - python test_latlons.py - #cp -r test/ /tmp - #cp -r sampledata/ /tmp - #cp conftest.py /tmp - #cd /tmp/test - #export MPLBACKEND=agg - #pytest test*py --mpl --mpl-baseline-path=baseline_images + #cd test + #python test.py + #python test_latlons.py + cp -r test/ /tmp + cp -r sampledata/ /tmp + cp conftest.py /tmp + cd /tmp/test + export MPLBACKEND=agg + pytest test*py --mpl --mpl-baseline-path=baseline_images From ef279be1afcd3e2972396ce42c3fa128fb1bef15 Mon Sep 17 00:00:00 2001 From: jswhit Date: Mon, 21 Dec 2020 16:17:11 -0700 Subject: [PATCH 35/44] update --- Changelog | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Changelog b/Changelog index d8cf94da..b5e0dc70 100644 --- a/Changelog +++ b/Changelog @@ -5,13 +5,12 @@ version 2.1.2 (git tag v2.1.2rel) * changes gribmessage.projparams['proj'] from 'cyl' to 'longlat' for non-projection projections (e.g. 'regular_ll'). Issue #167. * reorganize to include eccodes definitions inside package. + when wheels are build (PYGRIB_WHEEL env var is set). Add set_definitions_path/get_defintions_path module functions - get/reset ECCODES_DEFINITION_PATH - (default is either ECCODES_DEFINITION_PATH if it is set in the - environment, or if not pygrib.__file__/../ecodes/definitions). + to get/reset ECCODES_DEFINITION_PATH. * include binary wheels for linux in pypi release. -* add template definition for RAP grib files (issue #134). Not fully - implemented, but at least file can be read (gridType=unknown, latlons +* add grid template definition for RAP grib files in binary wheels (issue #134). + Not fully implemented, but at least file can be read (gridType=unknown, latlons method doesn't yet work).. version 2.1.1 (git tag v2.1.1rel) From 37d659e7723f5e4e6af9b8e1dd58a38b6b22574c Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 18:40:58 -0700 Subject: [PATCH 36/44] rename directory --- eccodes/{definitions => definitions.save}/boot.def | 0 eccodes/{definitions => definitions.save}/common/c-1.table | 0 eccodes/{definitions => definitions.save}/common/c-11.table | 0 .../common/statistics_grid.def | 0 .../common/statistics_spectral.def | 0 eccodes/{definitions => definitions.save}/empty_template.def | 0 eccodes/{definitions => definitions.save}/grib1/0.ecmf.table | 0 eccodes/{definitions => definitions.save}/grib1/0.eidb.table | 0 eccodes/{definitions => definitions.save}/grib1/0.eswi.table | 0 eccodes/{definitions => definitions.save}/grib1/0.rjtd.table | 0 eccodes/{definitions => definitions.save}/grib1/1.table | 0 eccodes/{definitions => definitions.save}/grib1/10.table | 0 eccodes/{definitions => definitions.save}/grib1/11-2.table | 0 eccodes/{definitions => definitions.save}/grib1/11.table | 0 eccodes/{definitions => definitions.save}/grib1/12.table | 0 eccodes/{definitions => definitions.save}/grib1/13.table | 0 eccodes/{definitions => definitions.save}/grib1/2.0.1.table | 0 eccodes/{definitions => definitions.save}/grib1/2.0.2.table | 0 eccodes/{definitions => definitions.save}/grib1/2.0.3.table | 0 eccodes/{definitions => definitions.save}/grib1/2.128.table | 0 eccodes/{definitions => definitions.save}/grib1/2.233.1.table | 0 eccodes/{definitions => definitions.save}/grib1/2.233.253.table | 0 eccodes/{definitions => definitions.save}/grib1/2.253.128.table | 0 eccodes/{definitions => definitions.save}/grib1/2.34.200.table | 0 eccodes/{definitions => definitions.save}/grib1/2.46.254.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.1.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.128.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.129.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.130.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.131.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.133.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.134.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.135.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.136.table | 0 eccodes/{definitions => definitions.save}/grib1/2.82.253.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.128.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.129.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.130.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.131.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.132.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.133.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.140.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.150.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.151.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.160.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.162.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.170.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.171.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.172.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.173.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.174.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.175.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.180.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.190.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.200.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.201.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.210.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.211.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.213.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.215.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.220.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.228.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.230.table | 0 eccodes/{definitions => definitions.save}/grib1/2.98.235.table | 0 eccodes/{definitions => definitions.save}/grib1/2.table | 0 eccodes/{definitions => definitions.save}/grib1/3.233.table | 0 eccodes/{definitions => definitions.save}/grib1/3.82.table | 0 eccodes/{definitions => definitions.save}/grib1/3.98.table | 0 eccodes/{definitions => definitions.save}/grib1/3.table | 0 eccodes/{definitions => definitions.save}/grib1/4.table | 0 eccodes/{definitions => definitions.save}/grib1/5.table | 0 eccodes/{definitions => definitions.save}/grib1/6.table | 0 eccodes/{definitions => definitions.save}/grib1/7.table | 0 eccodes/{definitions => definitions.save}/grib1/8.table | 0 eccodes/{definitions => definitions.save}/grib1/9.table | 0 eccodes/{definitions => definitions.save}/grib1/boot.def | 0 eccodes/{definitions => definitions.save}/grib1/cfName.def | 0 eccodes/{definitions => definitions.save}/grib1/cfVarName.def | 0 .../{definitions => definitions.save}/grib1/cluster_domain.def | 0 .../{definitions => definitions.save}/grib1/data.grid_ieee.def | 0 .../{definitions => definitions.save}/grib1/data.grid_jpeg.def | 0 .../grib1/data.grid_second_order.def | 0 .../grib1/data.grid_second_order_SPD1.def | 0 .../grib1/data.grid_second_order_SPD2.def | 0 .../grib1/data.grid_second_order_SPD3.def | 0 .../grib1/data.grid_second_order_constant_width.def | 0 .../grib1/data.grid_second_order_general_grib1.def | 0 .../grib1/data.grid_second_order_no_SPD.def | 0 .../grib1/data.grid_second_order_row_by_row.def | 0 .../grib1/data.grid_simple.def | 0 .../grib1/data.grid_simple_matrix.def | 0 .../grib1/data.spectral_complex.def | 0 .../grib1/data.spectral_ieee.def | 0 .../grib1/data.spectral_simple.def | 0 .../grib1/gds_not_present_bitmap.def | 0 .../grib1/grid.192.78.3.10.table | 0 .../grib1/grid.192.78.3.9.table | 0 eccodes/{definitions => definitions.save}/grib1/grid_21.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_22.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_23.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_24.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_25.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_26.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_61.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_62.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_63.def | 0 eccodes/{definitions => definitions.save}/grib1/grid_64.def | 0 .../grib1/grid_definition_0.def | 0 .../grib1/grid_definition_1.def | 0 .../grib1/grid_definition_10.def | 0 .../grib1/grid_definition_13.def | 0 .../grib1/grid_definition_14.def | 0 .../grib1/grid_definition_192.78.def | 0 .../grib1/grid_definition_192.98.def | 0 .../grib1/grid_definition_193.98.def | 0 .../grib1/grid_definition_20.def | 0 .../grib1/grid_definition_24.def | 0 .../grib1/grid_definition_3.def | 0 .../grib1/grid_definition_30.def | 0 .../grib1/grid_definition_34.def | 0 .../grib1/grid_definition_4.def | 0 .../grib1/grid_definition_5.def | 0 .../grib1/grid_definition_50.def | 0 .../grib1/grid_definition_60.def | 0 .../grib1/grid_definition_70.def | 0 .../grib1/grid_definition_8.def | 0 .../grib1/grid_definition_80.def | 0 .../grib1/grid_definition_90.def | 0 .../grib1/grid_definition_gaussian.def | 0 .../grib1/grid_definition_lambert.def | 0 .../grib1/grid_definition_latlon.def | 0 .../grib1/grid_definition_spherical_harmonics.def | 0 .../grib1/grid_first_last_resandcomp.def | 0 .../{definitions => definitions.save}/grib1/grid_rotation.def | 0 .../{definitions => definitions.save}/grib1/grid_stretching.def | 0 eccodes/{definitions => definitions.save}/grib1/local.1.def | 0 eccodes/{definitions => definitions.save}/grib1/local.13.table | 0 eccodes/{definitions => definitions.save}/grib1/local.214.1.def | 0 .../{definitions => definitions.save}/grib1/local.214.244.def | 0 .../{definitions => definitions.save}/grib1/local.214.245.def | 0 eccodes/{definitions => definitions.save}/grib1/local.214.def | 0 eccodes/{definitions => definitions.save}/grib1/local.253.def | 0 eccodes/{definitions => definitions.save}/grib1/local.254.def | 0 eccodes/{definitions => definitions.save}/grib1/local.34.1.def | 0 eccodes/{definitions => definitions.save}/grib1/local.34.def | 0 eccodes/{definitions => definitions.save}/grib1/local.46.def | 0 eccodes/{definitions => definitions.save}/grib1/local.54.def | 0 eccodes/{definitions => definitions.save}/grib1/local.7.1.def | 0 eccodes/{definitions => definitions.save}/grib1/local.7.def | 0 eccodes/{definitions => definitions.save}/grib1/local.78.def | 0 eccodes/{definitions => definitions.save}/grib1/local.80.def | 0 eccodes/{definitions => definitions.save}/grib1/local.82.0.def | 0 eccodes/{definitions => definitions.save}/grib1/local.82.82.def | 0 eccodes/{definitions => definitions.save}/grib1/local.82.83.def | 0 eccodes/{definitions => definitions.save}/grib1/local.82.def | 0 eccodes/{definitions => definitions.save}/grib1/local.85.def | 0 eccodes/{definitions => definitions.save}/grib1/local.96.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.1.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.10.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.11.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.12.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.13.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.14.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.15.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.16.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.17.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.18.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.19.def | 0 .../{definitions => definitions.save}/grib1/local.98.190.def | 0 .../{definitions => definitions.save}/grib1/local.98.191.def | 0 .../{definitions => definitions.save}/grib1/local.98.192.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.2.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.20.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.21.def | 0 .../{definitions => definitions.save}/grib1/local.98.218.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.23.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.24.def | 0 .../{definitions => definitions.save}/grib1/local.98.244.def | 0 .../{definitions => definitions.save}/grib1/local.98.245.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.25.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.26.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.27.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.28.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.29.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.3.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.30.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.31.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.32.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.33.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.35.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.36.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.37.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.38.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.39.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.4.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.40.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.49.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.5.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.50.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.6.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.7.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.8.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.9.def | 0 eccodes/{definitions => definitions.save}/grib1/local.98.def | 0 .../{definitions => definitions.save}/grib1/local/ecmf/3.table | 0 .../{definitions => definitions.save}/grib1/local/ecmf/5.table | 0 .../grib1/local/edzw/2.0.3.table | 0 .../{definitions => definitions.save}/grib1/local/edzw/5.table | 0 .../grib1/local/edzw/generatingProcessIdentifier.table | 0 .../grib1/local/rjtd/252.table | 0 .../{definitions => definitions.save}/grib1/local/rjtd/3.table | 0 .../{definitions => definitions.save}/grib1/local/rjtd/5.table | 0 .../grib1/localConcepts/ammc/name.def | 0 .../grib1/localConcepts/ammc/paramId.def | 0 .../grib1/localConcepts/ammc/shortName.def | 0 .../grib1/localConcepts/ammc/units.def | 0 .../grib1/localConcepts/cnmc/name.def | 0 .../grib1/localConcepts/cnmc/paramId.def | 0 .../grib1/localConcepts/cnmc/shortName.def | 0 .../grib1/localConcepts/cnmc/units.def | 0 .../grib1/localConcepts/ecmf/cfName.def | 0 .../grib1/localConcepts/ecmf/cfVarName.def | 0 .../grib1/localConcepts/ecmf/name.def | 0 .../grib1/localConcepts/ecmf/paramId.def | 0 .../grib1/localConcepts/ecmf/shortName.def | 0 .../grib1/localConcepts/ecmf/stepType.def | 0 .../grib1/localConcepts/ecmf/stepTypeForConversion.def | 0 .../grib1/localConcepts/ecmf/typeOfLevel.def | 0 .../grib1/localConcepts/ecmf/units.def | 0 .../grib1/localConcepts/edzw/name.def | 0 .../grib1/localConcepts/edzw/paramId.def | 0 .../grib1/localConcepts/edzw/shortName.def | 0 .../grib1/localConcepts/edzw/stepType.def | 0 .../grib1/localConcepts/edzw/typeOfLevel.def | 0 .../grib1/localConcepts/edzw/units.def | 0 .../grib1/localConcepts/efkl/cfVarName.def | 0 .../grib1/localConcepts/efkl/name.def | 0 .../grib1/localConcepts/efkl/paramId.def | 0 .../grib1/localConcepts/efkl/shortName.def | 0 .../grib1/localConcepts/efkl/units.def | 0 .../grib1/localConcepts/eidb/name.def | 0 .../grib1/localConcepts/eidb/paramId.def | 0 .../grib1/localConcepts/eidb/shortName.def | 0 .../grib1/localConcepts/eidb/typeOfLevel.def | 0 .../grib1/localConcepts/eidb/units.def | 0 .../grib1/localConcepts/ekmi/name.def | 0 .../grib1/localConcepts/ekmi/paramId.def | 0 .../grib1/localConcepts/ekmi/shortName.def | 0 .../grib1/localConcepts/ekmi/units.def | 0 .../grib1/localConcepts/enmi/name.def | 0 .../grib1/localConcepts/enmi/paramId.def | 0 .../grib1/localConcepts/enmi/shortName.def | 0 .../grib1/localConcepts/enmi/units.def | 0 .../grib1/localConcepts/eswi/aerosolConcept.def | 0 .../grib1/localConcepts/eswi/aerosolbinnumber.table | 0 .../grib1/localConcepts/eswi/landTypeConcept.def | 0 .../grib1/localConcepts/eswi/landtype.table | 0 .../grib1/localConcepts/eswi/name.def | 0 .../grib1/localConcepts/eswi/paramId.def | 0 .../grib1/localConcepts/eswi/shortName.def | 0 .../grib1/localConcepts/eswi/sort.table | 0 .../grib1/localConcepts/eswi/sortConcept.def | 0 .../grib1/localConcepts/eswi/timeRepresConcept.def | 0 .../grib1/localConcepts/eswi/timerepres.table | 0 .../grib1/localConcepts/eswi/typeOfLevel.def | 0 .../grib1/localConcepts/eswi/units.def | 0 .../grib1/localConcepts/kwbc/name.def | 0 .../grib1/localConcepts/kwbc/paramId.def | 0 .../grib1/localConcepts/kwbc/shortName.def | 0 .../grib1/localConcepts/kwbc/units.def | 0 .../grib1/localConcepts/lfpw/faFieldName.def | 0 .../grib1/localConcepts/lfpw/faLevelName.def | 0 .../grib1/localConcepts/lfpw/faModelName.def | 0 .../grib1/localConcepts/lfpw/name.def | 0 .../grib1/localConcepts/lfpw/paramId.def | 0 .../grib1/localConcepts/lfpw/shortName.def | 0 .../grib1/localConcepts/lfpw/units.def | 0 .../grib1/localConcepts/lowm/name.def | 0 .../grib1/localConcepts/lowm/paramId.def | 0 .../grib1/localConcepts/lowm/shortName.def | 0 .../grib1/localConcepts/lowm/units.def | 0 .../grib1/localConcepts/rjtd/cfVarName.def | 0 .../grib1/localConcepts/rjtd/name.def | 0 .../grib1/localConcepts/rjtd/paramId.def | 0 .../grib1/localConcepts/rjtd/shortName.def | 0 .../grib1/localConcepts/rjtd/stepType.def | 0 .../grib1/localConcepts/rjtd/typeOfLevel.def | 0 .../grib1/localConcepts/rjtd/units.def | 0 .../grib1/localConcepts/sbsj/name.def | 0 .../grib1/localConcepts/sbsj/paramId.def | 0 .../grib1/localConcepts/sbsj/shortName.def | 0 .../grib1/localConcepts/sbsj/units.def | 0 .../grib1/localDefinitionNumber.34.table | 0 .../grib1/localDefinitionNumber.82.table | 0 .../grib1/localDefinitionNumber.96.table | 0 .../grib1/localDefinitionNumber.98.table | 0 .../grib1/local_no_mars.98.1.def | 0 .../grib1/local_no_mars.98.24.def | 0 eccodes/{definitions => definitions.save}/grib1/ls.def | 0 .../{definitions => definitions.save}/grib1/ls_labeling.82.def | 0 .../grib1/mars_labeling.23.def | 0 .../{definitions => definitions.save}/grib1/mars_labeling.4.def | 0 .../grib1/mars_labeling.82.def | 0 .../{definitions => definitions.save}/grib1/mars_labeling.def | 0 eccodes/{definitions => definitions.save}/grib1/name.def | 0 eccodes/{definitions => definitions.save}/grib1/ocean.1.table | 0 eccodes/{definitions => definitions.save}/grib1/param.pl | 0 eccodes/{definitions => definitions.save}/grib1/paramId.def | 0 eccodes/{definitions => definitions.save}/grib1/precision.table | 0 .../{definitions => definitions.save}/grib1/predefined_grid.def | 0 eccodes/{definitions => definitions.save}/grib1/regimes.table | 0 .../grib1/resolution_flags.def | 0 .../{definitions => definitions.save}/grib1/scanning_mode.def | 0 eccodes/{definitions => definitions.save}/grib1/section.0.def | 0 eccodes/{definitions => definitions.save}/grib1/section.1.def | 0 eccodes/{definitions => definitions.save}/grib1/section.2.def | 0 eccodes/{definitions => definitions.save}/grib1/section.3.def | 0 eccodes/{definitions => definitions.save}/grib1/section.4.def | 0 eccodes/{definitions => definitions.save}/grib1/section.5.def | 0 .../grib1/sensitive_area_domain.def | 0 eccodes/{definitions => definitions.save}/grib1/shortName.def | 0 eccodes/{definitions => definitions.save}/grib1/stepType.def | 0 .../grib1/stepTypeForConversion.def | 0 eccodes/{definitions => definitions.save}/grib1/tube_domain.def | 0 eccodes/{definitions => definitions.save}/grib1/typeOfLevel.def | 0 eccodes/{definitions => definitions.save}/grib1/units.def | 0 eccodes/{definitions => definitions.save}/grib2/boot.def | 0 .../{definitions => definitions.save}/grib2/boot_multifield.def | 0 eccodes/{definitions => definitions.save}/grib2/cfName.def | 0 eccodes/{definitions => definitions.save}/grib2/cfVarName.def | 0 .../grib2/crraLocalVersion.table | 0 .../grib2/crra_suiteName.table | 0 eccodes/{definitions => definitions.save}/grib2/d | 0 .../{definitions => definitions.save}/grib2/dimension.0.table | 0 .../grib2/dimensionTableNumber.table | 0 .../{definitions => definitions.save}/grib2/dimensionType.table | 0 .../grib2/grib2LocalSectionNumber.82.table | 0 .../grib2/grib2LocalSectionNumber.85.table | 0 .../grib2/grib2LocalSectionNumber.98.table | 0 .../grib2/lcwfv_suiteName.table | 0 eccodes/{definitions => definitions.save}/grib2/local.82.0.def | 0 eccodes/{definitions => definitions.save}/grib2/local.82.82.def | 0 eccodes/{definitions => definitions.save}/grib2/local.82.83.def | 0 eccodes/{definitions => definitions.save}/grib2/local.82.def | 0 eccodes/{definitions => definitions.save}/grib2/local.85.0.def | 0 eccodes/{definitions => definitions.save}/grib2/local.85.1.def | 0 eccodes/{definitions => definitions.save}/grib2/local.85.2.def | 0 eccodes/{definitions => definitions.save}/grib2/local.85.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.0.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.1.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.11.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.12.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.14.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.15.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.16.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.18.def | 0 .../{definitions => definitions.save}/grib2/local.98.192.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.20.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.21.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.24.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.25.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.26.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.28.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.30.def | 0 .../{definitions => definitions.save}/grib2/local.98.300.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.36.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.38.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.39.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.41.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.42.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.5.def | 0 .../{definitions => definitions.save}/grib2/local.98.500.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.7.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.9.def | 0 eccodes/{definitions => definitions.save}/grib2/local.98.def | 0 .../{definitions => definitions.save}/grib2/local.crra.1.def | 0 .../{definitions => definitions.save}/grib2/local.tigge.1.def | 0 .../grib2/local/1098/2.1.table | 0 .../grib2/local/1098/centres.table | 0 .../grib2/local/1098/models.table | 0 .../grib2/local/1098/template.2.0.def | 0 eccodes/{definitions => definitions.save}/grib2/local/2.0.table | 0 .../grib2/localConcepts/cnmc/modelName.def | 0 .../grib2/localConcepts/cnmc/name.def | 0 .../grib2/localConcepts/cnmc/paramId.def | 0 .../grib2/localConcepts/cnmc/shortName.def | 0 .../grib2/localConcepts/cnmc/units.def | 0 .../grib2/localConcepts/ecmf/cfName.def | 0 .../grib2/localConcepts/ecmf/cfName.legacy.def | 0 .../grib2/localConcepts/ecmf/cfVarName.def | 0 .../grib2/localConcepts/ecmf/cfVarName.legacy.def | 0 .../grib2/localConcepts/ecmf/name.def | 0 .../grib2/localConcepts/ecmf/name.legacy.def | 0 .../grib2/localConcepts/ecmf/paramId.def | 0 .../grib2/localConcepts/ecmf/paramId.legacy.def | 0 .../grib2/localConcepts/ecmf/shortName.def | 0 .../grib2/localConcepts/ecmf/shortName.legacy.def | 0 .../grib2/localConcepts/ecmf/units.def | 0 .../grib2/localConcepts/ecmf/units.legacy.def | 0 .../grib2/localConcepts/ecmf/unstructuredGrid.def | 0 .../grib2/localConcepts/ecmf/unstructuredGridSubtype.def | 0 .../grib2/localConcepts/ecmf/unstructuredGridType.def | 0 .../grib2/localConcepts/edzw/default_step_units.def | 0 .../grib2/localConcepts/edzw/modelName.def | 0 .../grib2/localConcepts/edzw/name.def | 0 .../grib2/localConcepts/edzw/paramId.def | 0 .../grib2/localConcepts/edzw/shortName.def | 0 .../grib2/localConcepts/edzw/units.def | 0 .../grib2/localConcepts/efkl/name.def | 0 .../grib2/localConcepts/efkl/paramId.def | 0 .../grib2/localConcepts/efkl/shortName.def | 0 .../grib2/localConcepts/efkl/units.def | 0 .../grib2/localConcepts/egrr/cfVarName.def | 0 .../grib2/localConcepts/egrr/name.def | 0 .../grib2/localConcepts/egrr/paramId.def | 0 .../grib2/localConcepts/egrr/shortName.def | 0 .../grib2/localConcepts/egrr/units.def | 0 .../grib2/localConcepts/ekmi/name.def | 0 .../grib2/localConcepts/ekmi/paramId.def | 0 .../grib2/localConcepts/ekmi/shortName.def | 0 .../grib2/localConcepts/ekmi/units.def | 0 .../grib2/localConcepts/eswi/name.def | 0 .../grib2/localConcepts/eswi/paramId.def | 0 .../grib2/localConcepts/eswi/shortName.def | 0 .../grib2/localConcepts/eswi/units.def | 0 .../grib2/localConcepts/kwbc/name.def | 0 .../grib2/localConcepts/kwbc/paramId.def | 0 .../grib2/localConcepts/kwbc/shortName.def | 0 .../grib2/localConcepts/kwbc/units.def | 0 .../grib2/localConcepts/lfpw/faFieldName.def | 0 .../grib2/localConcepts/lfpw/faLevelName.def | 0 .../grib2/localConcepts/lfpw/faModelName.def | 0 .../grib2/localConcepts/lfpw/name.def | 0 .../grib2/localConcepts/lfpw/paramId.def | 0 .../grib2/localConcepts/lfpw/shortName.def | 0 .../grib2/localConcepts/lfpw/units.def | 0 .../grib2/localConcepts/lfpw1/name.def | 0 .../grib2/localConcepts/lfpw1/paramId.def | 0 .../grib2/localConcepts/lfpw1/shortName.def | 0 .../grib2/localConcepts/lfpw1/units.def | 0 .../grib2/localConcepts/lssw/modelName.def | 0 eccodes/{definitions => definitions.save}/grib2/ls.def | 0 .../{definitions => definitions.save}/grib2/ls_labeling.82.def | 0 .../grib2/mars_labeling.82.def | 0 .../{definitions => definitions.save}/grib2/mars_labeling.def | 0 eccodes/{definitions => definitions.save}/grib2/meta.def | 0 eccodes/{definitions => definitions.save}/grib2/modelName.def | 0 eccodes/{definitions => definitions.save}/grib2/name.def | 0 eccodes/{definitions => definitions.save}/grib2/paramId.def | 0 eccodes/{definitions => definitions.save}/grib2/parameters.def | 0 eccodes/{definitions => definitions.save}/grib2/products_0.def | 0 eccodes/{definitions => definitions.save}/grib2/products_1.def | 0 eccodes/{definitions => definitions.save}/grib2/products_10.def | 0 eccodes/{definitions => definitions.save}/grib2/products_11.def | 0 eccodes/{definitions => definitions.save}/grib2/products_2.def | 0 eccodes/{definitions => definitions.save}/grib2/products_3.def | 0 eccodes/{definitions => definitions.save}/grib2/products_4.def | 0 eccodes/{definitions => definitions.save}/grib2/products_5.def | 0 eccodes/{definitions => definitions.save}/grib2/products_6.def | 0 eccodes/{definitions => definitions.save}/grib2/products_7.def | 0 eccodes/{definitions => definitions.save}/grib2/products_8.def | 0 eccodes/{definitions => definitions.save}/grib2/products_9.def | 0 .../{definitions => definitions.save}/grib2/products_crra.def | 0 .../{definitions => definitions.save}/grib2/products_s2s.def | 0 .../{definitions => definitions.save}/grib2/products_tigge.def | 0 .../{definitions => definitions.save}/grib2/products_uerra.def | 0 eccodes/{definitions => definitions.save}/grib2/rules.def | 0 eccodes/{definitions => definitions.save}/grib2/section.0.def | 0 eccodes/{definitions => definitions.save}/grib2/section.1.def | 0 eccodes/{definitions => definitions.save}/grib2/section.2.def | 0 eccodes/{definitions => definitions.save}/grib2/section.3.def | 0 eccodes/{definitions => definitions.save}/grib2/section.4.def | 0 eccodes/{definitions => definitions.save}/grib2/section.5.def | 0 eccodes/{definitions => definitions.save}/grib2/section.6.def | 0 eccodes/{definitions => definitions.save}/grib2/section.7.def | 0 eccodes/{definitions => definitions.save}/grib2/section.8.def | 0 eccodes/{definitions => definitions.save}/grib2/sections.def | 0 eccodes/{definitions => definitions.save}/grib2/shortName.def | 0 .../{definitions => definitions.save}/grib2/tables/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/0/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/0/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/0/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/0/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/0/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/0/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/0/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.0.table | 0 .../grib2/tables/0/4.1.0.table | 0 .../grib2/tables/0/4.1.1.table | 0 .../grib2/tables/0/4.1.10.table | 0 .../grib2/tables/0/4.1.2.table | 0 .../grib2/tables/0/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.15.table | 0 .../grib2/tables/0/4.151.table | 0 .../grib2/tables/0/4.2.0.0.table | 0 .../grib2/tables/0/4.2.0.1.table | 0 .../grib2/tables/0/4.2.0.13.table | 0 .../grib2/tables/0/4.2.0.14.table | 0 .../grib2/tables/0/4.2.0.15.table | 0 .../grib2/tables/0/4.2.0.18.table | 0 .../grib2/tables/0/4.2.0.19.table | 0 .../grib2/tables/0/4.2.0.190.table | 0 .../grib2/tables/0/4.2.0.191.table | 0 .../grib2/tables/0/4.2.0.2.table | 0 .../grib2/tables/0/4.2.0.20.table | 0 .../grib2/tables/0/4.2.0.3.table | 0 .../grib2/tables/0/4.2.0.4.table | 0 .../grib2/tables/0/4.2.0.5.table | 0 .../grib2/tables/0/4.2.0.6.table | 0 .../grib2/tables/0/4.2.0.7.table | 0 .../grib2/tables/0/4.2.1.0.table | 0 .../grib2/tables/0/4.2.1.1.table | 0 .../grib2/tables/0/4.2.10.0.table | 0 .../grib2/tables/0/4.2.10.1.table | 0 .../grib2/tables/0/4.2.10.2.table | 0 .../grib2/tables/0/4.2.10.3.table | 0 .../grib2/tables/0/4.2.10.4.table | 0 .../grib2/tables/0/4.2.2.0.table | 0 .../grib2/tables/0/4.2.2.3.table | 0 .../grib2/tables/0/4.2.3.0.table | 0 .../grib2/tables/0/4.2.3.1.table | 0 .../grib2/tables/0/4.201.table | 0 .../grib2/tables/0/4.202.table | 0 .../grib2/tables/0/4.203.table | 0 .../grib2/tables/0/4.204.table | 0 .../grib2/tables/0/4.205.table | 0 .../grib2/tables/0/4.206.table | 0 .../grib2/tables/0/4.207.table | 0 .../grib2/tables/0/4.208.table | 0 .../grib2/tables/0/4.209.table | 0 .../grib2/tables/0/4.210.table | 0 .../grib2/tables/0/4.211.table | 0 .../grib2/tables/0/4.212.table | 0 .../grib2/tables/0/4.213.table | 0 .../grib2/tables/0/4.215.table | 0 .../grib2/tables/0/4.216.table | 0 .../grib2/tables/0/4.217.table | 0 .../grib2/tables/0/4.220.table | 0 .../grib2/tables/0/4.221.table | 0 .../grib2/tables/0/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/0/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.40.table | 0 .../grib2/tables/0/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.5.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/0/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/0/6.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/1/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/1/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/1/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/1/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.0.table | 0 .../grib2/tables/1/4.1.0.table | 0 .../grib2/tables/1/4.1.1.table | 0 .../grib2/tables/1/4.1.10.table | 0 .../grib2/tables/1/4.1.2.table | 0 .../grib2/tables/1/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.15.table | 0 .../grib2/tables/1/4.151.table | 0 .../grib2/tables/1/4.2.0.0.table | 0 .../grib2/tables/1/4.2.0.1.table | 0 .../grib2/tables/1/4.2.0.13.table | 0 .../grib2/tables/1/4.2.0.14.table | 0 .../grib2/tables/1/4.2.0.15.table | 0 .../grib2/tables/1/4.2.0.18.table | 0 .../grib2/tables/1/4.2.0.19.table | 0 .../grib2/tables/1/4.2.0.190.table | 0 .../grib2/tables/1/4.2.0.191.table | 0 .../grib2/tables/1/4.2.0.2.table | 0 .../grib2/tables/1/4.2.0.20.table | 0 .../grib2/tables/1/4.2.0.3.table | 0 .../grib2/tables/1/4.2.0.4.table | 0 .../grib2/tables/1/4.2.0.5.table | 0 .../grib2/tables/1/4.2.0.6.table | 0 .../grib2/tables/1/4.2.0.7.table | 0 .../grib2/tables/1/4.2.1.0.table | 0 .../grib2/tables/1/4.2.1.1.table | 0 .../grib2/tables/1/4.2.10.0.table | 0 .../grib2/tables/1/4.2.10.1.table | 0 .../grib2/tables/1/4.2.10.2.table | 0 .../grib2/tables/1/4.2.10.3.table | 0 .../grib2/tables/1/4.2.10.4.table | 0 .../grib2/tables/1/4.2.2.0.table | 0 .../grib2/tables/1/4.2.2.3.table | 0 .../grib2/tables/1/4.2.3.0.table | 0 .../grib2/tables/1/4.2.3.1.table | 0 .../grib2/tables/1/4.201.table | 0 .../grib2/tables/1/4.202.table | 0 .../grib2/tables/1/4.203.table | 0 .../grib2/tables/1/4.204.table | 0 .../grib2/tables/1/4.205.table | 0 .../grib2/tables/1/4.206.table | 0 .../grib2/tables/1/4.207.table | 0 .../grib2/tables/1/4.208.table | 0 .../grib2/tables/1/4.209.table | 0 .../grib2/tables/1/4.210.table | 0 .../grib2/tables/1/4.211.table | 0 .../grib2/tables/1/4.212.table | 0 .../grib2/tables/1/4.213.table | 0 .../grib2/tables/1/4.215.table | 0 .../grib2/tables/1/4.216.table | 0 .../grib2/tables/1/4.217.table | 0 .../grib2/tables/1/4.220.table | 0 .../grib2/tables/1/4.221.table | 0 .../grib2/tables/1/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/1/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.40.table | 0 .../grib2/tables/1/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.5.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/1/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/1/6.0.table | 0 .../{definitions => definitions.save}/grib2/tables/10/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/10/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/10/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/10/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/10/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/10/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.1.table | 0 .../grib2/tables/10/3.10.table | 0 .../grib2/tables/10/3.11.table | 0 .../grib2/tables/10/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.2.table | 0 .../grib2/tables/10/3.20.table | 0 .../grib2/tables/10/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/10/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.0.table | 0 .../grib2/tables/10/4.1.0.table | 0 .../grib2/tables/10/4.1.1.table | 0 .../grib2/tables/10/4.1.10.table | 0 .../grib2/tables/10/4.1.192.table | 0 .../grib2/tables/10/4.1.2.table | 0 .../grib2/tables/10/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.1.table | 0 .../grib2/tables/10/4.10.table | 0 .../grib2/tables/10/4.11.table | 0 .../grib2/tables/10/4.12.table | 0 .../grib2/tables/10/4.13.table | 0 .../grib2/tables/10/4.14.table | 0 .../grib2/tables/10/4.15.table | 0 .../grib2/tables/10/4.151.table | 0 .../grib2/tables/10/4.192.table | 0 .../grib2/tables/10/4.2.0.0.table | 0 .../grib2/tables/10/4.2.0.1.table | 0 .../grib2/tables/10/4.2.0.13.table | 0 .../grib2/tables/10/4.2.0.14.table | 0 .../grib2/tables/10/4.2.0.15.table | 0 .../grib2/tables/10/4.2.0.16.table | 0 .../grib2/tables/10/4.2.0.18.table | 0 .../grib2/tables/10/4.2.0.19.table | 0 .../grib2/tables/10/4.2.0.190.table | 0 .../grib2/tables/10/4.2.0.191.table | 0 .../grib2/tables/10/4.2.0.2.table | 0 .../grib2/tables/10/4.2.0.20.table | 0 .../grib2/tables/10/4.2.0.3.table | 0 .../grib2/tables/10/4.2.0.4.table | 0 .../grib2/tables/10/4.2.0.5.table | 0 .../grib2/tables/10/4.2.0.6.table | 0 .../grib2/tables/10/4.2.0.7.table | 0 .../grib2/tables/10/4.2.1.0.table | 0 .../grib2/tables/10/4.2.1.1.table | 0 .../grib2/tables/10/4.2.1.2.table | 0 .../grib2/tables/10/4.2.10.0.table | 0 .../grib2/tables/10/4.2.10.1.table | 0 .../grib2/tables/10/4.2.10.191.table | 0 .../grib2/tables/10/4.2.10.2.table | 0 .../grib2/tables/10/4.2.10.3.table | 0 .../grib2/tables/10/4.2.10.4.table | 0 .../grib2/tables/10/4.2.2.0.table | 0 .../grib2/tables/10/4.2.2.3.table | 0 .../grib2/tables/10/4.2.2.4.table | 0 .../grib2/tables/10/4.2.3.0.table | 0 .../grib2/tables/10/4.2.3.1.table | 0 .../grib2/tables/10/4.201.table | 0 .../grib2/tables/10/4.202.table | 0 .../grib2/tables/10/4.203.table | 0 .../grib2/tables/10/4.204.table | 0 .../grib2/tables/10/4.205.table | 0 .../grib2/tables/10/4.206.table | 0 .../grib2/tables/10/4.207.table | 0 .../grib2/tables/10/4.208.table | 0 .../grib2/tables/10/4.209.table | 0 .../grib2/tables/10/4.210.table | 0 .../grib2/tables/10/4.211.table | 0 .../grib2/tables/10/4.212.table | 0 .../grib2/tables/10/4.213.table | 0 .../grib2/tables/10/4.215.table | 0 .../grib2/tables/10/4.216.table | 0 .../grib2/tables/10/4.217.table | 0 .../grib2/tables/10/4.218.table | 0 .../grib2/tables/10/4.219.table | 0 .../grib2/tables/10/4.220.table | 0 .../grib2/tables/10/4.221.table | 0 .../grib2/tables/10/4.222.table | 0 .../grib2/tables/10/4.223.table | 0 .../grib2/tables/10/4.224.table | 0 .../grib2/tables/10/4.225.table | 0 .../grib2/tables/10/4.227.table | 0 .../grib2/tables/10/4.230.table | 0 .../grib2/tables/10/4.233.table | 0 .../grib2/tables/10/4.234.table | 0 .../grib2/tables/10/4.235.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/10/4.9.table | 0 .../grib2/tables/10/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.4.table | 0 .../grib2/tables/10/5.40.table | 0 .../grib2/tables/10/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.5.table | 0 .../grib2/tables/10/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/10/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/10/6.0.table | 0 .../grib2/tables/10/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/11/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/11/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/11/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/11/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/11/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/11/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.1.table | 0 .../grib2/tables/11/3.10.table | 0 .../grib2/tables/11/3.11.table | 0 .../grib2/tables/11/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.2.table | 0 .../grib2/tables/11/3.20.table | 0 .../grib2/tables/11/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/11/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.0.table | 0 .../grib2/tables/11/4.1.0.table | 0 .../grib2/tables/11/4.1.1.table | 0 .../grib2/tables/11/4.1.10.table | 0 .../grib2/tables/11/4.1.192.table | 0 .../grib2/tables/11/4.1.2.table | 0 .../grib2/tables/11/4.1.3.table | 0 .../grib2/tables/11/4.10.table | 0 .../grib2/tables/11/4.11.table | 0 .../grib2/tables/11/4.12.table | 0 .../grib2/tables/11/4.13.table | 0 .../grib2/tables/11/4.14.table | 0 .../grib2/tables/11/4.15.table | 0 .../grib2/tables/11/4.192.table | 0 .../grib2/tables/11/4.2.0.0.table | 0 .../grib2/tables/11/4.2.0.1.table | 0 .../grib2/tables/11/4.2.0.13.table | 0 .../grib2/tables/11/4.2.0.14.table | 0 .../grib2/tables/11/4.2.0.15.table | 0 .../grib2/tables/11/4.2.0.16.table | 0 .../grib2/tables/11/4.2.0.18.table | 0 .../grib2/tables/11/4.2.0.19.table | 0 .../grib2/tables/11/4.2.0.190.table | 0 .../grib2/tables/11/4.2.0.191.table | 0 .../grib2/tables/11/4.2.0.2.table | 0 .../grib2/tables/11/4.2.0.20.table | 0 .../grib2/tables/11/4.2.0.3.table | 0 .../grib2/tables/11/4.2.0.4.table | 0 .../grib2/tables/11/4.2.0.5.table | 0 .../grib2/tables/11/4.2.0.6.table | 0 .../grib2/tables/11/4.2.0.7.table | 0 .../grib2/tables/11/4.2.1.0.table | 0 .../grib2/tables/11/4.2.1.1.table | 0 .../grib2/tables/11/4.2.1.2.table | 0 .../grib2/tables/11/4.2.10.0.table | 0 .../grib2/tables/11/4.2.10.1.table | 0 .../grib2/tables/11/4.2.10.191.table | 0 .../grib2/tables/11/4.2.10.2.table | 0 .../grib2/tables/11/4.2.10.3.table | 0 .../grib2/tables/11/4.2.10.4.table | 0 .../grib2/tables/11/4.2.2.0.table | 0 .../grib2/tables/11/4.2.2.3.table | 0 .../grib2/tables/11/4.2.2.4.table | 0 .../grib2/tables/11/4.2.3.0.table | 0 .../grib2/tables/11/4.2.3.1.table | 0 .../grib2/tables/11/4.201.table | 0 .../grib2/tables/11/4.202.table | 0 .../grib2/tables/11/4.203.table | 0 .../grib2/tables/11/4.204.table | 0 .../grib2/tables/11/4.205.table | 0 .../grib2/tables/11/4.206.table | 0 .../grib2/tables/11/4.207.table | 0 .../grib2/tables/11/4.208.table | 0 .../grib2/tables/11/4.209.table | 0 .../grib2/tables/11/4.210.table | 0 .../grib2/tables/11/4.211.table | 0 .../grib2/tables/11/4.212.table | 0 .../grib2/tables/11/4.213.table | 0 .../grib2/tables/11/4.215.table | 0 .../grib2/tables/11/4.216.table | 0 .../grib2/tables/11/4.217.table | 0 .../grib2/tables/11/4.218.table | 0 .../grib2/tables/11/4.219.table | 0 .../grib2/tables/11/4.220.table | 0 .../grib2/tables/11/4.221.table | 0 .../grib2/tables/11/4.222.table | 0 .../grib2/tables/11/4.223.table | 0 .../grib2/tables/11/4.224.table | 0 .../grib2/tables/11/4.225.table | 0 .../grib2/tables/11/4.227.table | 0 .../grib2/tables/11/4.230.table | 0 .../grib2/tables/11/4.233.table | 0 .../grib2/tables/11/4.234.table | 0 .../grib2/tables/11/4.236.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/11/4.9.table | 0 .../grib2/tables/11/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.4.table | 0 .../grib2/tables/11/5.40.table | 0 .../grib2/tables/11/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.5.table | 0 .../grib2/tables/11/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/11/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/11/6.0.table | 0 .../grib2/tables/11/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/12/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/12/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.1.table | 0 .../grib2/tables/12/3.10.table | 0 .../grib2/tables/12/3.11.table | 0 .../grib2/tables/12/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.2.table | 0 .../grib2/tables/12/3.20.table | 0 .../grib2/tables/12/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/12/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.0.table | 0 .../grib2/tables/12/4.1.0.table | 0 .../grib2/tables/12/4.1.1.table | 0 .../grib2/tables/12/4.1.10.table | 0 .../grib2/tables/12/4.1.192.table | 0 .../grib2/tables/12/4.1.2.table | 0 .../grib2/tables/12/4.1.3.table | 0 .../grib2/tables/12/4.10.table | 0 .../grib2/tables/12/4.11.table | 0 .../grib2/tables/12/4.12.table | 0 .../grib2/tables/12/4.13.table | 0 .../grib2/tables/12/4.14.table | 0 .../grib2/tables/12/4.15.table | 0 .../grib2/tables/12/4.192.table | 0 .../grib2/tables/12/4.2.0.0.table | 0 .../grib2/tables/12/4.2.0.1.table | 0 .../grib2/tables/12/4.2.0.13.table | 0 .../grib2/tables/12/4.2.0.14.table | 0 .../grib2/tables/12/4.2.0.15.table | 0 .../grib2/tables/12/4.2.0.16.table | 0 .../grib2/tables/12/4.2.0.18.table | 0 .../grib2/tables/12/4.2.0.19.table | 0 .../grib2/tables/12/4.2.0.190.table | 0 .../grib2/tables/12/4.2.0.191.table | 0 .../grib2/tables/12/4.2.0.2.table | 0 .../grib2/tables/12/4.2.0.20.table | 0 .../grib2/tables/12/4.2.0.3.table | 0 .../grib2/tables/12/4.2.0.4.table | 0 .../grib2/tables/12/4.2.0.5.table | 0 .../grib2/tables/12/4.2.0.6.table | 0 .../grib2/tables/12/4.2.0.7.table | 0 .../grib2/tables/12/4.2.1.0.table | 0 .../grib2/tables/12/4.2.1.1.table | 0 .../grib2/tables/12/4.2.1.2.table | 0 .../grib2/tables/12/4.2.10.0.table | 0 .../grib2/tables/12/4.2.10.1.table | 0 .../grib2/tables/12/4.2.10.191.table | 0 .../grib2/tables/12/4.2.10.2.table | 0 .../grib2/tables/12/4.2.10.3.table | 0 .../grib2/tables/12/4.2.10.4.table | 0 .../grib2/tables/12/4.2.2.0.table | 0 .../grib2/tables/12/4.2.2.3.table | 0 .../grib2/tables/12/4.2.2.4.table | 0 .../grib2/tables/12/4.2.3.0.table | 0 .../grib2/tables/12/4.2.3.1.table | 0 .../grib2/tables/12/4.201.table | 0 .../grib2/tables/12/4.202.table | 0 .../grib2/tables/12/4.203.table | 0 .../grib2/tables/12/4.204.table | 0 .../grib2/tables/12/4.205.table | 0 .../grib2/tables/12/4.206.table | 0 .../grib2/tables/12/4.207.table | 0 .../grib2/tables/12/4.208.table | 0 .../grib2/tables/12/4.209.table | 0 .../grib2/tables/12/4.210.table | 0 .../grib2/tables/12/4.211.table | 0 .../grib2/tables/12/4.212.table | 0 .../grib2/tables/12/4.213.table | 0 .../grib2/tables/12/4.215.table | 0 .../grib2/tables/12/4.216.table | 0 .../grib2/tables/12/4.217.table | 0 .../grib2/tables/12/4.218.table | 0 .../grib2/tables/12/4.219.table | 0 .../grib2/tables/12/4.220.table | 0 .../grib2/tables/12/4.221.table | 0 .../grib2/tables/12/4.222.table | 0 .../grib2/tables/12/4.223.table | 0 .../grib2/tables/12/4.224.table | 0 .../grib2/tables/12/4.225.table | 0 .../grib2/tables/12/4.227.table | 0 .../grib2/tables/12/4.230.table | 0 .../grib2/tables/12/4.233.table | 0 .../grib2/tables/12/4.234.table | 0 .../grib2/tables/12/4.236.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/12/4.9.table | 0 .../grib2/tables/12/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.4.table | 0 .../grib2/tables/12/5.40.table | 0 .../grib2/tables/12/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.5.table | 0 .../grib2/tables/12/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/12/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/12/6.0.table | 0 .../grib2/tables/12/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/13/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/13/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.1.table | 0 .../grib2/tables/13/3.10.table | 0 .../grib2/tables/13/3.11.table | 0 .../grib2/tables/13/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.2.table | 0 .../grib2/tables/13/3.20.table | 0 .../grib2/tables/13/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/13/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.0.table | 0 .../grib2/tables/13/4.1.0.table | 0 .../grib2/tables/13/4.1.1.table | 0 .../grib2/tables/13/4.1.10.table | 0 .../grib2/tables/13/4.1.192.table | 0 .../grib2/tables/13/4.1.2.table | 0 .../grib2/tables/13/4.1.3.table | 0 .../grib2/tables/13/4.10.table | 0 .../grib2/tables/13/4.11.table | 0 .../grib2/tables/13/4.12.table | 0 .../grib2/tables/13/4.13.table | 0 .../grib2/tables/13/4.14.table | 0 .../grib2/tables/13/4.15.table | 0 .../grib2/tables/13/4.192.table | 0 .../grib2/tables/13/4.2.0.0.table | 0 .../grib2/tables/13/4.2.0.1.table | 0 .../grib2/tables/13/4.2.0.13.table | 0 .../grib2/tables/13/4.2.0.14.table | 0 .../grib2/tables/13/4.2.0.15.table | 0 .../grib2/tables/13/4.2.0.16.table | 0 .../grib2/tables/13/4.2.0.17.table | 0 .../grib2/tables/13/4.2.0.18.table | 0 .../grib2/tables/13/4.2.0.19.table | 0 .../grib2/tables/13/4.2.0.190.table | 0 .../grib2/tables/13/4.2.0.191.table | 0 .../grib2/tables/13/4.2.0.2.table | 0 .../grib2/tables/13/4.2.0.20.table | 0 .../grib2/tables/13/4.2.0.3.table | 0 .../grib2/tables/13/4.2.0.4.table | 0 .../grib2/tables/13/4.2.0.5.table | 0 .../grib2/tables/13/4.2.0.6.table | 0 .../grib2/tables/13/4.2.0.7.table | 0 .../grib2/tables/13/4.2.1.0.table | 0 .../grib2/tables/13/4.2.1.1.table | 0 .../grib2/tables/13/4.2.1.2.table | 0 .../grib2/tables/13/4.2.10.0.table | 0 .../grib2/tables/13/4.2.10.1.table | 0 .../grib2/tables/13/4.2.10.191.table | 0 .../grib2/tables/13/4.2.10.2.table | 0 .../grib2/tables/13/4.2.10.3.table | 0 .../grib2/tables/13/4.2.10.4.table | 0 .../grib2/tables/13/4.2.2.0.table | 0 .../grib2/tables/13/4.2.2.3.table | 0 .../grib2/tables/13/4.2.2.4.table | 0 .../grib2/tables/13/4.2.3.0.table | 0 .../grib2/tables/13/4.2.3.1.table | 0 .../grib2/tables/13/4.201.table | 0 .../grib2/tables/13/4.202.table | 0 .../grib2/tables/13/4.203.table | 0 .../grib2/tables/13/4.204.table | 0 .../grib2/tables/13/4.205.table | 0 .../grib2/tables/13/4.206.table | 0 .../grib2/tables/13/4.207.table | 0 .../grib2/tables/13/4.208.table | 0 .../grib2/tables/13/4.209.table | 0 .../grib2/tables/13/4.210.table | 0 .../grib2/tables/13/4.211.table | 0 .../grib2/tables/13/4.212.table | 0 .../grib2/tables/13/4.213.table | 0 .../grib2/tables/13/4.215.table | 0 .../grib2/tables/13/4.216.table | 0 .../grib2/tables/13/4.217.table | 0 .../grib2/tables/13/4.218.table | 0 .../grib2/tables/13/4.219.table | 0 .../grib2/tables/13/4.220.table | 0 .../grib2/tables/13/4.221.table | 0 .../grib2/tables/13/4.222.table | 0 .../grib2/tables/13/4.223.table | 0 .../grib2/tables/13/4.224.table | 0 .../grib2/tables/13/4.225.table | 0 .../grib2/tables/13/4.227.table | 0 .../grib2/tables/13/4.230.table | 0 .../grib2/tables/13/4.233.table | 0 .../grib2/tables/13/4.234.table | 0 .../grib2/tables/13/4.236.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/13/4.9.table | 0 .../grib2/tables/13/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.4.table | 0 .../grib2/tables/13/5.40.table | 0 .../grib2/tables/13/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.5.table | 0 .../grib2/tables/13/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/13/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/13/6.0.table | 0 .../grib2/tables/13/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/14/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/14/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.1.table | 0 .../grib2/tables/14/3.10.table | 0 .../grib2/tables/14/3.11.table | 0 .../grib2/tables/14/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.2.table | 0 .../grib2/tables/14/3.20.table | 0 .../grib2/tables/14/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/14/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.0.table | 0 .../grib2/tables/14/4.1.0.table | 0 .../grib2/tables/14/4.1.1.table | 0 .../grib2/tables/14/4.1.10.table | 0 .../grib2/tables/14/4.1.192.table | 0 .../grib2/tables/14/4.1.2.table | 0 .../grib2/tables/14/4.1.3.table | 0 .../grib2/tables/14/4.10.table | 0 .../grib2/tables/14/4.11.table | 0 .../grib2/tables/14/4.12.table | 0 .../grib2/tables/14/4.13.table | 0 .../grib2/tables/14/4.14.table | 0 .../grib2/tables/14/4.15.table | 0 .../grib2/tables/14/4.192.table | 0 .../grib2/tables/14/4.2.0.0.table | 0 .../grib2/tables/14/4.2.0.1.table | 0 .../grib2/tables/14/4.2.0.13.table | 0 .../grib2/tables/14/4.2.0.14.table | 0 .../grib2/tables/14/4.2.0.15.table | 0 .../grib2/tables/14/4.2.0.16.table | 0 .../grib2/tables/14/4.2.0.17.table | 0 .../grib2/tables/14/4.2.0.18.table | 0 .../grib2/tables/14/4.2.0.19.table | 0 .../grib2/tables/14/4.2.0.190.table | 0 .../grib2/tables/14/4.2.0.191.table | 0 .../grib2/tables/14/4.2.0.2.table | 0 .../grib2/tables/14/4.2.0.20.table | 0 .../grib2/tables/14/4.2.0.3.table | 0 .../grib2/tables/14/4.2.0.4.table | 0 .../grib2/tables/14/4.2.0.5.table | 0 .../grib2/tables/14/4.2.0.6.table | 0 .../grib2/tables/14/4.2.0.7.table | 0 .../grib2/tables/14/4.2.1.0.table | 0 .../grib2/tables/14/4.2.1.1.table | 0 .../grib2/tables/14/4.2.1.2.table | 0 .../grib2/tables/14/4.2.10.0.table | 0 .../grib2/tables/14/4.2.10.1.table | 0 .../grib2/tables/14/4.2.10.191.table | 0 .../grib2/tables/14/4.2.10.2.table | 0 .../grib2/tables/14/4.2.10.3.table | 0 .../grib2/tables/14/4.2.10.4.table | 0 .../grib2/tables/14/4.2.2.0.table | 0 .../grib2/tables/14/4.2.2.3.table | 0 .../grib2/tables/14/4.2.2.4.table | 0 .../grib2/tables/14/4.2.3.0.table | 0 .../grib2/tables/14/4.2.3.1.table | 0 .../grib2/tables/14/4.201.table | 0 .../grib2/tables/14/4.202.table | 0 .../grib2/tables/14/4.203.table | 0 .../grib2/tables/14/4.204.table | 0 .../grib2/tables/14/4.205.table | 0 .../grib2/tables/14/4.206.table | 0 .../grib2/tables/14/4.207.table | 0 .../grib2/tables/14/4.208.table | 0 .../grib2/tables/14/4.209.table | 0 .../grib2/tables/14/4.210.table | 0 .../grib2/tables/14/4.211.table | 0 .../grib2/tables/14/4.212.table | 0 .../grib2/tables/14/4.213.table | 0 .../grib2/tables/14/4.215.table | 0 .../grib2/tables/14/4.216.table | 0 .../grib2/tables/14/4.217.table | 0 .../grib2/tables/14/4.218.table | 0 .../grib2/tables/14/4.219.table | 0 .../grib2/tables/14/4.220.table | 0 .../grib2/tables/14/4.221.table | 0 .../grib2/tables/14/4.222.table | 0 .../grib2/tables/14/4.223.table | 0 .../grib2/tables/14/4.224.table | 0 .../grib2/tables/14/4.225.table | 0 .../grib2/tables/14/4.227.table | 0 .../grib2/tables/14/4.230.table | 0 .../grib2/tables/14/4.233.table | 0 .../grib2/tables/14/4.234.table | 0 .../grib2/tables/14/4.236.table | 0 .../grib2/tables/14/4.241.table | 0 .../grib2/tables/14/4.242.table | 0 .../grib2/tables/14/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/14/4.9.table | 0 .../grib2/tables/14/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.4.table | 0 .../grib2/tables/14/5.40.table | 0 .../grib2/tables/14/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.5.table | 0 .../grib2/tables/14/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/14/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/14/6.0.table | 0 .../grib2/tables/14/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/15/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/15/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.1.table | 0 .../grib2/tables/15/3.10.table | 0 .../grib2/tables/15/3.11.table | 0 .../grib2/tables/15/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.2.table | 0 .../grib2/tables/15/3.20.table | 0 .../grib2/tables/15/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/15/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.0.table | 0 .../grib2/tables/15/4.1.0.table | 0 .../grib2/tables/15/4.1.1.table | 0 .../grib2/tables/15/4.1.10.table | 0 .../grib2/tables/15/4.1.192.table | 0 .../grib2/tables/15/4.1.2.table | 0 .../grib2/tables/15/4.1.3.table | 0 .../grib2/tables/15/4.10.table | 0 .../grib2/tables/15/4.11.table | 0 .../grib2/tables/15/4.12.table | 0 .../grib2/tables/15/4.13.table | 0 .../grib2/tables/15/4.14.table | 0 .../grib2/tables/15/4.15.table | 0 .../grib2/tables/15/4.192.table | 0 .../grib2/tables/15/4.2.0.0.table | 0 .../grib2/tables/15/4.2.0.1.table | 0 .../grib2/tables/15/4.2.0.13.table | 0 .../grib2/tables/15/4.2.0.14.table | 0 .../grib2/tables/15/4.2.0.15.table | 0 .../grib2/tables/15/4.2.0.16.table | 0 .../grib2/tables/15/4.2.0.17.table | 0 .../grib2/tables/15/4.2.0.18.table | 0 .../grib2/tables/15/4.2.0.19.table | 0 .../grib2/tables/15/4.2.0.190.table | 0 .../grib2/tables/15/4.2.0.191.table | 0 .../grib2/tables/15/4.2.0.2.table | 0 .../grib2/tables/15/4.2.0.20.table | 0 .../grib2/tables/15/4.2.0.3.table | 0 .../grib2/tables/15/4.2.0.4.table | 0 .../grib2/tables/15/4.2.0.5.table | 0 .../grib2/tables/15/4.2.0.6.table | 0 .../grib2/tables/15/4.2.0.7.table | 0 .../grib2/tables/15/4.2.1.0.table | 0 .../grib2/tables/15/4.2.1.1.table | 0 .../grib2/tables/15/4.2.1.2.table | 0 .../grib2/tables/15/4.2.10.0.table | 0 .../grib2/tables/15/4.2.10.1.table | 0 .../grib2/tables/15/4.2.10.191.table | 0 .../grib2/tables/15/4.2.10.2.table | 0 .../grib2/tables/15/4.2.10.3.table | 0 .../grib2/tables/15/4.2.10.4.table | 0 .../grib2/tables/15/4.2.2.0.table | 0 .../grib2/tables/15/4.2.2.3.table | 0 .../grib2/tables/15/4.2.2.4.table | 0 .../grib2/tables/15/4.2.2.5.table | 0 .../grib2/tables/15/4.2.3.0.table | 0 .../grib2/tables/15/4.2.3.1.table | 0 .../grib2/tables/15/4.201.table | 0 .../grib2/tables/15/4.202.table | 0 .../grib2/tables/15/4.203.table | 0 .../grib2/tables/15/4.204.table | 0 .../grib2/tables/15/4.205.table | 0 .../grib2/tables/15/4.206.table | 0 .../grib2/tables/15/4.207.table | 0 .../grib2/tables/15/4.208.table | 0 .../grib2/tables/15/4.209.table | 0 .../grib2/tables/15/4.210.table | 0 .../grib2/tables/15/4.211.table | 0 .../grib2/tables/15/4.212.table | 0 .../grib2/tables/15/4.213.table | 0 .../grib2/tables/15/4.215.table | 0 .../grib2/tables/15/4.216.table | 0 .../grib2/tables/15/4.217.table | 0 .../grib2/tables/15/4.218.table | 0 .../grib2/tables/15/4.219.table | 0 .../grib2/tables/15/4.220.table | 0 .../grib2/tables/15/4.221.table | 0 .../grib2/tables/15/4.222.table | 0 .../grib2/tables/15/4.223.table | 0 .../grib2/tables/15/4.224.table | 0 .../grib2/tables/15/4.225.table | 0 .../grib2/tables/15/4.227.table | 0 .../grib2/tables/15/4.230.table | 0 .../grib2/tables/15/4.233.table | 0 .../grib2/tables/15/4.234.table | 0 .../grib2/tables/15/4.236.table | 0 .../grib2/tables/15/4.240.table | 0 .../grib2/tables/15/4.241.table | 0 .../grib2/tables/15/4.242.table | 0 .../grib2/tables/15/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/15/4.9.table | 0 .../grib2/tables/15/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.4.table | 0 .../grib2/tables/15/5.40.table | 0 .../grib2/tables/15/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.5.table | 0 .../grib2/tables/15/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/15/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/15/6.0.table | 0 .../grib2/tables/15/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/16/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/16/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.1.table | 0 .../grib2/tables/16/3.10.table | 0 .../grib2/tables/16/3.11.table | 0 .../grib2/tables/16/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.2.table | 0 .../grib2/tables/16/3.20.table | 0 .../grib2/tables/16/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/16/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.0.table | 0 .../grib2/tables/16/4.1.0.table | 0 .../grib2/tables/16/4.1.1.table | 0 .../grib2/tables/16/4.1.10.table | 0 .../grib2/tables/16/4.1.192.table | 0 .../grib2/tables/16/4.1.2.table | 0 .../grib2/tables/16/4.1.3.table | 0 .../grib2/tables/16/4.10.table | 0 .../grib2/tables/16/4.11.table | 0 .../grib2/tables/16/4.12.table | 0 .../grib2/tables/16/4.13.table | 0 .../grib2/tables/16/4.14.table | 0 .../grib2/tables/16/4.15.table | 0 .../grib2/tables/16/4.192.table | 0 .../grib2/tables/16/4.2.0.0.table | 0 .../grib2/tables/16/4.2.0.1.table | 0 .../grib2/tables/16/4.2.0.13.table | 0 .../grib2/tables/16/4.2.0.14.table | 0 .../grib2/tables/16/4.2.0.15.table | 0 .../grib2/tables/16/4.2.0.16.table | 0 .../grib2/tables/16/4.2.0.17.table | 0 .../grib2/tables/16/4.2.0.18.table | 0 .../grib2/tables/16/4.2.0.19.table | 0 .../grib2/tables/16/4.2.0.190.table | 0 .../grib2/tables/16/4.2.0.191.table | 0 .../grib2/tables/16/4.2.0.2.table | 0 .../grib2/tables/16/4.2.0.20.table | 0 .../grib2/tables/16/4.2.0.3.table | 0 .../grib2/tables/16/4.2.0.4.table | 0 .../grib2/tables/16/4.2.0.5.table | 0 .../grib2/tables/16/4.2.0.6.table | 0 .../grib2/tables/16/4.2.0.7.table | 0 .../grib2/tables/16/4.2.1.0.table | 0 .../grib2/tables/16/4.2.1.1.table | 0 .../grib2/tables/16/4.2.1.2.table | 0 .../grib2/tables/16/4.2.10.0.table | 0 .../grib2/tables/16/4.2.10.1.table | 0 .../grib2/tables/16/4.2.10.191.table | 0 .../grib2/tables/16/4.2.10.2.table | 0 .../grib2/tables/16/4.2.10.3.table | 0 .../grib2/tables/16/4.2.10.4.table | 0 .../grib2/tables/16/4.2.2.0.table | 0 .../grib2/tables/16/4.2.2.3.table | 0 .../grib2/tables/16/4.2.2.4.table | 0 .../grib2/tables/16/4.2.2.5.table | 0 .../grib2/tables/16/4.2.3.0.table | 0 .../grib2/tables/16/4.2.3.1.table | 0 .../grib2/tables/16/4.2.3.2.table | 0 .../grib2/tables/16/4.2.3.3.table | 0 .../grib2/tables/16/4.2.3.4.table | 0 .../grib2/tables/16/4.2.3.5.table | 0 .../grib2/tables/16/4.2.3.6.table | 0 .../grib2/tables/16/4.201.table | 0 .../grib2/tables/16/4.202.table | 0 .../grib2/tables/16/4.203.table | 0 .../grib2/tables/16/4.204.table | 0 .../grib2/tables/16/4.205.table | 0 .../grib2/tables/16/4.206.table | 0 .../grib2/tables/16/4.207.table | 0 .../grib2/tables/16/4.208.table | 0 .../grib2/tables/16/4.209.table | 0 .../grib2/tables/16/4.210.table | 0 .../grib2/tables/16/4.211.table | 0 .../grib2/tables/16/4.212.table | 0 .../grib2/tables/16/4.213.table | 0 .../grib2/tables/16/4.215.table | 0 .../grib2/tables/16/4.216.table | 0 .../grib2/tables/16/4.217.table | 0 .../grib2/tables/16/4.218.table | 0 .../grib2/tables/16/4.219.table | 0 .../grib2/tables/16/4.220.table | 0 .../grib2/tables/16/4.221.table | 0 .../grib2/tables/16/4.222.table | 0 .../grib2/tables/16/4.223.table | 0 .../grib2/tables/16/4.224.table | 0 .../grib2/tables/16/4.225.table | 0 .../grib2/tables/16/4.227.table | 0 .../grib2/tables/16/4.230.table | 0 .../grib2/tables/16/4.233.table | 0 .../grib2/tables/16/4.234.table | 0 .../grib2/tables/16/4.236.table | 0 .../grib2/tables/16/4.240.table | 0 .../grib2/tables/16/4.241.table | 0 .../grib2/tables/16/4.242.table | 0 .../grib2/tables/16/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/16/4.9.table | 0 .../grib2/tables/16/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.4.table | 0 .../grib2/tables/16/5.40.table | 0 .../grib2/tables/16/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.5.table | 0 .../grib2/tables/16/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/16/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/16/6.0.table | 0 .../grib2/tables/16/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/17/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/17/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.1.table | 0 .../grib2/tables/17/3.10.table | 0 .../grib2/tables/17/3.11.table | 0 .../grib2/tables/17/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.2.table | 0 .../grib2/tables/17/3.20.table | 0 .../grib2/tables/17/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/17/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.0.table | 0 .../grib2/tables/17/4.1.0.table | 0 .../grib2/tables/17/4.1.1.table | 0 .../grib2/tables/17/4.1.10.table | 0 .../grib2/tables/17/4.1.192.table | 0 .../grib2/tables/17/4.1.2.table | 0 .../grib2/tables/17/4.1.3.table | 0 .../grib2/tables/17/4.10.table | 0 .../grib2/tables/17/4.11.table | 0 .../grib2/tables/17/4.12.table | 0 .../grib2/tables/17/4.13.table | 0 .../grib2/tables/17/4.14.table | 0 .../grib2/tables/17/4.15.table | 0 .../grib2/tables/17/4.192.table | 0 .../grib2/tables/17/4.2.0.0.table | 0 .../grib2/tables/17/4.2.0.1.table | 0 .../grib2/tables/17/4.2.0.13.table | 0 .../grib2/tables/17/4.2.0.14.table | 0 .../grib2/tables/17/4.2.0.15.table | 0 .../grib2/tables/17/4.2.0.16.table | 0 .../grib2/tables/17/4.2.0.17.table | 0 .../grib2/tables/17/4.2.0.18.table | 0 .../grib2/tables/17/4.2.0.19.table | 0 .../grib2/tables/17/4.2.0.190.table | 0 .../grib2/tables/17/4.2.0.191.table | 0 .../grib2/tables/17/4.2.0.2.table | 0 .../grib2/tables/17/4.2.0.20.table | 0 .../grib2/tables/17/4.2.0.3.table | 0 .../grib2/tables/17/4.2.0.4.table | 0 .../grib2/tables/17/4.2.0.5.table | 0 .../grib2/tables/17/4.2.0.6.table | 0 .../grib2/tables/17/4.2.0.7.table | 0 .../grib2/tables/17/4.2.1.0.table | 0 .../grib2/tables/17/4.2.1.1.table | 0 .../grib2/tables/17/4.2.1.2.table | 0 .../grib2/tables/17/4.2.10.0.table | 0 .../grib2/tables/17/4.2.10.1.table | 0 .../grib2/tables/17/4.2.10.191.table | 0 .../grib2/tables/17/4.2.10.2.table | 0 .../grib2/tables/17/4.2.10.3.table | 0 .../grib2/tables/17/4.2.10.4.table | 0 .../grib2/tables/17/4.2.2.0.table | 0 .../grib2/tables/17/4.2.2.3.table | 0 .../grib2/tables/17/4.2.2.4.table | 0 .../grib2/tables/17/4.2.2.5.table | 0 .../grib2/tables/17/4.2.3.0.table | 0 .../grib2/tables/17/4.2.3.1.table | 0 .../grib2/tables/17/4.2.3.2.table | 0 .../grib2/tables/17/4.2.3.3.table | 0 .../grib2/tables/17/4.2.3.4.table | 0 .../grib2/tables/17/4.2.3.5.table | 0 .../grib2/tables/17/4.2.3.6.table | 0 .../grib2/tables/17/4.201.table | 0 .../grib2/tables/17/4.202.table | 0 .../grib2/tables/17/4.203.table | 0 .../grib2/tables/17/4.204.table | 0 .../grib2/tables/17/4.205.table | 0 .../grib2/tables/17/4.206.table | 0 .../grib2/tables/17/4.207.table | 0 .../grib2/tables/17/4.208.table | 0 .../grib2/tables/17/4.209.table | 0 .../grib2/tables/17/4.210.table | 0 .../grib2/tables/17/4.211.table | 0 .../grib2/tables/17/4.212.table | 0 .../grib2/tables/17/4.213.table | 0 .../grib2/tables/17/4.215.table | 0 .../grib2/tables/17/4.216.table | 0 .../grib2/tables/17/4.217.table | 0 .../grib2/tables/17/4.218.table | 0 .../grib2/tables/17/4.219.table | 0 .../grib2/tables/17/4.220.table | 0 .../grib2/tables/17/4.221.table | 0 .../grib2/tables/17/4.222.table | 0 .../grib2/tables/17/4.223.table | 0 .../grib2/tables/17/4.224.table | 0 .../grib2/tables/17/4.225.table | 0 .../grib2/tables/17/4.227.table | 0 .../grib2/tables/17/4.230.table | 0 .../grib2/tables/17/4.233.table | 0 .../grib2/tables/17/4.234.table | 0 .../grib2/tables/17/4.236.table | 0 .../grib2/tables/17/4.240.table | 0 .../grib2/tables/17/4.241.table | 0 .../grib2/tables/17/4.242.table | 0 .../grib2/tables/17/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/17/4.9.table | 0 .../grib2/tables/17/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.4.table | 0 .../grib2/tables/17/5.40.table | 0 .../grib2/tables/17/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.5.table | 0 .../grib2/tables/17/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/17/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/17/6.0.table | 0 .../grib2/tables/17/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/18/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/18/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.1.table | 0 .../grib2/tables/18/3.10.table | 0 .../grib2/tables/18/3.11.table | 0 .../grib2/tables/18/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.2.table | 0 .../grib2/tables/18/3.20.table | 0 .../grib2/tables/18/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/18/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.0.table | 0 .../grib2/tables/18/4.1.0.table | 0 .../grib2/tables/18/4.1.1.table | 0 .../grib2/tables/18/4.1.10.table | 0 .../grib2/tables/18/4.1.192.table | 0 .../grib2/tables/18/4.1.2.table | 0 .../grib2/tables/18/4.1.3.table | 0 .../grib2/tables/18/4.10.table | 0 .../grib2/tables/18/4.11.table | 0 .../grib2/tables/18/4.12.table | 0 .../grib2/tables/18/4.13.table | 0 .../grib2/tables/18/4.14.table | 0 .../grib2/tables/18/4.15.table | 0 .../grib2/tables/18/4.192.table | 0 .../grib2/tables/18/4.2.0.0.table | 0 .../grib2/tables/18/4.2.0.1.table | 0 .../grib2/tables/18/4.2.0.13.table | 0 .../grib2/tables/18/4.2.0.14.table | 0 .../grib2/tables/18/4.2.0.15.table | 0 .../grib2/tables/18/4.2.0.16.table | 0 .../grib2/tables/18/4.2.0.17.table | 0 .../grib2/tables/18/4.2.0.18.table | 0 .../grib2/tables/18/4.2.0.19.table | 0 .../grib2/tables/18/4.2.0.190.table | 0 .../grib2/tables/18/4.2.0.191.table | 0 .../grib2/tables/18/4.2.0.2.table | 0 .../grib2/tables/18/4.2.0.20.table | 0 .../grib2/tables/18/4.2.0.3.table | 0 .../grib2/tables/18/4.2.0.4.table | 0 .../grib2/tables/18/4.2.0.5.table | 0 .../grib2/tables/18/4.2.0.6.table | 0 .../grib2/tables/18/4.2.0.7.table | 0 .../grib2/tables/18/4.2.1.0.table | 0 .../grib2/tables/18/4.2.1.1.table | 0 .../grib2/tables/18/4.2.1.2.table | 0 .../grib2/tables/18/4.2.10.0.table | 0 .../grib2/tables/18/4.2.10.1.table | 0 .../grib2/tables/18/4.2.10.191.table | 0 .../grib2/tables/18/4.2.10.2.table | 0 .../grib2/tables/18/4.2.10.3.table | 0 .../grib2/tables/18/4.2.10.4.table | 0 .../grib2/tables/18/4.2.2.0.table | 0 .../grib2/tables/18/4.2.2.3.table | 0 .../grib2/tables/18/4.2.2.4.table | 0 .../grib2/tables/18/4.2.2.5.table | 0 .../grib2/tables/18/4.2.3.0.table | 0 .../grib2/tables/18/4.2.3.1.table | 0 .../grib2/tables/18/4.2.3.2.table | 0 .../grib2/tables/18/4.2.3.3.table | 0 .../grib2/tables/18/4.2.3.4.table | 0 .../grib2/tables/18/4.2.3.5.table | 0 .../grib2/tables/18/4.2.3.6.table | 0 .../grib2/tables/18/4.201.table | 0 .../grib2/tables/18/4.202.table | 0 .../grib2/tables/18/4.203.table | 0 .../grib2/tables/18/4.204.table | 0 .../grib2/tables/18/4.205.table | 0 .../grib2/tables/18/4.206.table | 0 .../grib2/tables/18/4.207.table | 0 .../grib2/tables/18/4.208.table | 0 .../grib2/tables/18/4.209.table | 0 .../grib2/tables/18/4.210.table | 0 .../grib2/tables/18/4.211.table | 0 .../grib2/tables/18/4.212.table | 0 .../grib2/tables/18/4.213.table | 0 .../grib2/tables/18/4.215.table | 0 .../grib2/tables/18/4.216.table | 0 .../grib2/tables/18/4.217.table | 0 .../grib2/tables/18/4.218.table | 0 .../grib2/tables/18/4.219.table | 0 .../grib2/tables/18/4.220.table | 0 .../grib2/tables/18/4.221.table | 0 .../grib2/tables/18/4.222.table | 0 .../grib2/tables/18/4.223.table | 0 .../grib2/tables/18/4.224.table | 0 .../grib2/tables/18/4.225.table | 0 .../grib2/tables/18/4.227.table | 0 .../grib2/tables/18/4.230.table | 0 .../grib2/tables/18/4.233.table | 0 .../grib2/tables/18/4.234.table | 0 .../grib2/tables/18/4.236.table | 0 .../grib2/tables/18/4.240.table | 0 .../grib2/tables/18/4.241.table | 0 .../grib2/tables/18/4.242.table | 0 .../grib2/tables/18/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/18/4.9.table | 0 .../grib2/tables/18/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.4.table | 0 .../grib2/tables/18/5.40.table | 0 .../grib2/tables/18/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.5.table | 0 .../grib2/tables/18/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/18/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/18/6.0.table | 0 .../grib2/tables/18/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/19/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/19/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.1.table | 0 .../grib2/tables/19/3.10.table | 0 .../grib2/tables/19/3.11.table | 0 .../grib2/tables/19/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.2.table | 0 .../grib2/tables/19/3.20.table | 0 .../grib2/tables/19/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/19/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.0.table | 0 .../grib2/tables/19/4.1.0.table | 0 .../grib2/tables/19/4.1.1.table | 0 .../grib2/tables/19/4.1.10.table | 0 .../grib2/tables/19/4.1.192.table | 0 .../grib2/tables/19/4.1.2.table | 0 .../grib2/tables/19/4.1.3.table | 0 .../grib2/tables/19/4.10.table | 0 .../grib2/tables/19/4.11.table | 0 .../grib2/tables/19/4.12.table | 0 .../grib2/tables/19/4.13.table | 0 .../grib2/tables/19/4.14.table | 0 .../grib2/tables/19/4.15.table | 0 .../grib2/tables/19/4.192.table | 0 .../grib2/tables/19/4.2.0.0.table | 0 .../grib2/tables/19/4.2.0.1.table | 0 .../grib2/tables/19/4.2.0.13.table | 0 .../grib2/tables/19/4.2.0.14.table | 0 .../grib2/tables/19/4.2.0.15.table | 0 .../grib2/tables/19/4.2.0.16.table | 0 .../grib2/tables/19/4.2.0.17.table | 0 .../grib2/tables/19/4.2.0.18.table | 0 .../grib2/tables/19/4.2.0.19.table | 0 .../grib2/tables/19/4.2.0.190.table | 0 .../grib2/tables/19/4.2.0.191.table | 0 .../grib2/tables/19/4.2.0.2.table | 0 .../grib2/tables/19/4.2.0.20.table | 0 .../grib2/tables/19/4.2.0.3.table | 0 .../grib2/tables/19/4.2.0.4.table | 0 .../grib2/tables/19/4.2.0.5.table | 0 .../grib2/tables/19/4.2.0.6.table | 0 .../grib2/tables/19/4.2.0.7.table | 0 .../grib2/tables/19/4.2.1.0.table | 0 .../grib2/tables/19/4.2.1.1.table | 0 .../grib2/tables/19/4.2.1.2.table | 0 .../grib2/tables/19/4.2.10.0.table | 0 .../grib2/tables/19/4.2.10.1.table | 0 .../grib2/tables/19/4.2.10.191.table | 0 .../grib2/tables/19/4.2.10.2.table | 0 .../grib2/tables/19/4.2.10.3.table | 0 .../grib2/tables/19/4.2.10.4.table | 0 .../grib2/tables/19/4.2.2.0.table | 0 .../grib2/tables/19/4.2.2.3.table | 0 .../grib2/tables/19/4.2.2.4.table | 0 .../grib2/tables/19/4.2.2.5.table | 0 .../grib2/tables/19/4.2.3.0.table | 0 .../grib2/tables/19/4.2.3.1.table | 0 .../grib2/tables/19/4.2.3.2.table | 0 .../grib2/tables/19/4.2.3.3.table | 0 .../grib2/tables/19/4.2.3.4.table | 0 .../grib2/tables/19/4.2.3.5.table | 0 .../grib2/tables/19/4.2.3.6.table | 0 .../grib2/tables/19/4.201.table | 0 .../grib2/tables/19/4.202.table | 0 .../grib2/tables/19/4.203.table | 0 .../grib2/tables/19/4.204.table | 0 .../grib2/tables/19/4.205.table | 0 .../grib2/tables/19/4.206.table | 0 .../grib2/tables/19/4.207.table | 0 .../grib2/tables/19/4.208.table | 0 .../grib2/tables/19/4.209.table | 0 .../grib2/tables/19/4.210.table | 0 .../grib2/tables/19/4.211.table | 0 .../grib2/tables/19/4.212.table | 0 .../grib2/tables/19/4.213.table | 0 .../grib2/tables/19/4.215.table | 0 .../grib2/tables/19/4.216.table | 0 .../grib2/tables/19/4.217.table | 0 .../grib2/tables/19/4.218.table | 0 .../grib2/tables/19/4.219.table | 0 .../grib2/tables/19/4.220.table | 0 .../grib2/tables/19/4.221.table | 0 .../grib2/tables/19/4.222.table | 0 .../grib2/tables/19/4.223.table | 0 .../grib2/tables/19/4.224.table | 0 .../grib2/tables/19/4.225.table | 0 .../grib2/tables/19/4.227.table | 0 .../grib2/tables/19/4.230.table | 0 .../grib2/tables/19/4.233.table | 0 .../grib2/tables/19/4.234.table | 0 .../grib2/tables/19/4.236.table | 0 .../grib2/tables/19/4.240.table | 0 .../grib2/tables/19/4.241.table | 0 .../grib2/tables/19/4.242.table | 0 .../grib2/tables/19/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/19/4.9.table | 0 .../grib2/tables/19/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.4.table | 0 .../grib2/tables/19/5.40.table | 0 .../grib2/tables/19/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.5.table | 0 .../grib2/tables/19/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/19/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/19/6.0.table | 0 .../grib2/tables/19/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/2/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/2/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/2/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/2/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/2/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/2/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/2/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.0.table | 0 .../grib2/tables/2/4.1.0.table | 0 .../grib2/tables/2/4.1.1.table | 0 .../grib2/tables/2/4.1.10.table | 0 .../grib2/tables/2/4.1.2.table | 0 .../grib2/tables/2/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.15.table | 0 .../grib2/tables/2/4.151.table | 0 .../grib2/tables/2/4.2.0.0.table | 0 .../grib2/tables/2/4.2.0.1.table | 0 .../grib2/tables/2/4.2.0.13.table | 0 .../grib2/tables/2/4.2.0.14.table | 0 .../grib2/tables/2/4.2.0.15.table | 0 .../grib2/tables/2/4.2.0.18.table | 0 .../grib2/tables/2/4.2.0.19.table | 0 .../grib2/tables/2/4.2.0.190.table | 0 .../grib2/tables/2/4.2.0.191.table | 0 .../grib2/tables/2/4.2.0.2.table | 0 .../grib2/tables/2/4.2.0.20.table | 0 .../grib2/tables/2/4.2.0.3.table | 0 .../grib2/tables/2/4.2.0.4.table | 0 .../grib2/tables/2/4.2.0.5.table | 0 .../grib2/tables/2/4.2.0.6.table | 0 .../grib2/tables/2/4.2.0.7.table | 0 .../grib2/tables/2/4.2.1.0.table | 0 .../grib2/tables/2/4.2.1.1.table | 0 .../grib2/tables/2/4.2.10.0.table | 0 .../grib2/tables/2/4.2.10.1.table | 0 .../grib2/tables/2/4.2.10.2.table | 0 .../grib2/tables/2/4.2.10.3.table | 0 .../grib2/tables/2/4.2.10.4.table | 0 .../grib2/tables/2/4.2.2.0.table | 0 .../grib2/tables/2/4.2.2.3.table | 0 .../grib2/tables/2/4.2.3.0.table | 0 .../grib2/tables/2/4.2.3.1.table | 0 .../grib2/tables/2/4.201.table | 0 .../grib2/tables/2/4.202.table | 0 .../grib2/tables/2/4.203.table | 0 .../grib2/tables/2/4.204.table | 0 .../grib2/tables/2/4.205.table | 0 .../grib2/tables/2/4.206.table | 0 .../grib2/tables/2/4.207.table | 0 .../grib2/tables/2/4.208.table | 0 .../grib2/tables/2/4.209.table | 0 .../grib2/tables/2/4.210.table | 0 .../grib2/tables/2/4.211.table | 0 .../grib2/tables/2/4.212.table | 0 .../grib2/tables/2/4.213.table | 0 .../grib2/tables/2/4.215.table | 0 .../grib2/tables/2/4.216.table | 0 .../grib2/tables/2/4.217.table | 0 .../grib2/tables/2/4.220.table | 0 .../grib2/tables/2/4.221.table | 0 .../grib2/tables/2/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/2/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.40.table | 0 .../grib2/tables/2/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.5.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/2/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/2/6.0.table | 0 .../{definitions => definitions.save}/grib2/tables/20/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/20/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.1.table | 0 .../grib2/tables/20/3.10.table | 0 .../grib2/tables/20/3.11.table | 0 .../grib2/tables/20/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.2.table | 0 .../grib2/tables/20/3.20.table | 0 .../grib2/tables/20/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/20/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.0.table | 0 .../grib2/tables/20/4.1.0.table | 0 .../grib2/tables/20/4.1.1.table | 0 .../grib2/tables/20/4.1.10.table | 0 .../grib2/tables/20/4.1.192.table | 0 .../grib2/tables/20/4.1.2.table | 0 .../grib2/tables/20/4.1.3.table | 0 .../grib2/tables/20/4.10.table | 0 .../grib2/tables/20/4.11.table | 0 .../grib2/tables/20/4.12.table | 0 .../grib2/tables/20/4.13.table | 0 .../grib2/tables/20/4.14.table | 0 .../grib2/tables/20/4.15.table | 0 .../grib2/tables/20/4.192.table | 0 .../grib2/tables/20/4.2.0.0.table | 0 .../grib2/tables/20/4.2.0.1.table | 0 .../grib2/tables/20/4.2.0.13.table | 0 .../grib2/tables/20/4.2.0.14.table | 0 .../grib2/tables/20/4.2.0.15.table | 0 .../grib2/tables/20/4.2.0.16.table | 0 .../grib2/tables/20/4.2.0.17.table | 0 .../grib2/tables/20/4.2.0.18.table | 0 .../grib2/tables/20/4.2.0.19.table | 0 .../grib2/tables/20/4.2.0.190.table | 0 .../grib2/tables/20/4.2.0.191.table | 0 .../grib2/tables/20/4.2.0.2.table | 0 .../grib2/tables/20/4.2.0.20.table | 0 .../grib2/tables/20/4.2.0.3.table | 0 .../grib2/tables/20/4.2.0.4.table | 0 .../grib2/tables/20/4.2.0.5.table | 0 .../grib2/tables/20/4.2.0.6.table | 0 .../grib2/tables/20/4.2.0.7.table | 0 .../grib2/tables/20/4.2.1.0.table | 0 .../grib2/tables/20/4.2.1.1.table | 0 .../grib2/tables/20/4.2.1.2.table | 0 .../grib2/tables/20/4.2.10.0.table | 0 .../grib2/tables/20/4.2.10.1.table | 0 .../grib2/tables/20/4.2.10.191.table | 0 .../grib2/tables/20/4.2.10.2.table | 0 .../grib2/tables/20/4.2.10.3.table | 0 .../grib2/tables/20/4.2.10.4.table | 0 .../grib2/tables/20/4.2.2.0.table | 0 .../grib2/tables/20/4.2.2.3.table | 0 .../grib2/tables/20/4.2.2.4.table | 0 .../grib2/tables/20/4.2.2.5.table | 0 .../grib2/tables/20/4.2.3.0.table | 0 .../grib2/tables/20/4.2.3.1.table | 0 .../grib2/tables/20/4.2.3.2.table | 0 .../grib2/tables/20/4.2.3.3.table | 0 .../grib2/tables/20/4.2.3.4.table | 0 .../grib2/tables/20/4.2.3.5.table | 0 .../grib2/tables/20/4.2.3.6.table | 0 .../grib2/tables/20/4.201.table | 0 .../grib2/tables/20/4.202.table | 0 .../grib2/tables/20/4.203.table | 0 .../grib2/tables/20/4.204.table | 0 .../grib2/tables/20/4.205.table | 0 .../grib2/tables/20/4.206.table | 0 .../grib2/tables/20/4.207.table | 0 .../grib2/tables/20/4.208.table | 0 .../grib2/tables/20/4.209.table | 0 .../grib2/tables/20/4.210.table | 0 .../grib2/tables/20/4.211.table | 0 .../grib2/tables/20/4.212.table | 0 .../grib2/tables/20/4.213.table | 0 .../grib2/tables/20/4.215.table | 0 .../grib2/tables/20/4.216.table | 0 .../grib2/tables/20/4.217.table | 0 .../grib2/tables/20/4.218.table | 0 .../grib2/tables/20/4.219.table | 0 .../grib2/tables/20/4.220.table | 0 .../grib2/tables/20/4.221.table | 0 .../grib2/tables/20/4.222.table | 0 .../grib2/tables/20/4.223.table | 0 .../grib2/tables/20/4.224.table | 0 .../grib2/tables/20/4.225.table | 0 .../grib2/tables/20/4.227.table | 0 .../grib2/tables/20/4.230.table | 0 .../grib2/tables/20/4.233.table | 0 .../grib2/tables/20/4.234.table | 0 .../grib2/tables/20/4.236.table | 0 .../grib2/tables/20/4.240.table | 0 .../grib2/tables/20/4.241.table | 0 .../grib2/tables/20/4.242.table | 0 .../grib2/tables/20/4.243.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/20/4.9.table | 0 .../grib2/tables/20/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.4.table | 0 .../grib2/tables/20/5.40.table | 0 .../grib2/tables/20/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.5.table | 0 .../grib2/tables/20/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/20/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/20/6.0.table | 0 .../grib2/tables/20/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/21/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/21/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.1.table | 0 .../grib2/tables/21/3.10.table | 0 .../grib2/tables/21/3.11.table | 0 .../grib2/tables/21/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.2.table | 0 .../grib2/tables/21/3.20.table | 0 .../grib2/tables/21/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/21/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.0.table | 0 .../grib2/tables/21/4.1.0.table | 0 .../grib2/tables/21/4.1.1.table | 0 .../grib2/tables/21/4.1.10.table | 0 .../grib2/tables/21/4.1.192.table | 0 .../grib2/tables/21/4.1.2.table | 0 .../grib2/tables/21/4.1.3.table | 0 .../grib2/tables/21/4.10.table | 0 .../grib2/tables/21/4.11.table | 0 .../grib2/tables/21/4.12.table | 0 .../grib2/tables/21/4.13.table | 0 .../grib2/tables/21/4.14.table | 0 .../grib2/tables/21/4.15.table | 0 .../grib2/tables/21/4.16.table | 0 .../grib2/tables/21/4.192.table | 0 .../grib2/tables/21/4.2.0.0.table | 0 .../grib2/tables/21/4.2.0.1.table | 0 .../grib2/tables/21/4.2.0.13.table | 0 .../grib2/tables/21/4.2.0.14.table | 0 .../grib2/tables/21/4.2.0.15.table | 0 .../grib2/tables/21/4.2.0.16.table | 0 .../grib2/tables/21/4.2.0.17.table | 0 .../grib2/tables/21/4.2.0.18.table | 0 .../grib2/tables/21/4.2.0.19.table | 0 .../grib2/tables/21/4.2.0.190.table | 0 .../grib2/tables/21/4.2.0.191.table | 0 .../grib2/tables/21/4.2.0.2.table | 0 .../grib2/tables/21/4.2.0.20.table | 0 .../grib2/tables/21/4.2.0.3.table | 0 .../grib2/tables/21/4.2.0.4.table | 0 .../grib2/tables/21/4.2.0.5.table | 0 .../grib2/tables/21/4.2.0.6.table | 0 .../grib2/tables/21/4.2.0.7.table | 0 .../grib2/tables/21/4.2.1.0.table | 0 .../grib2/tables/21/4.2.1.1.table | 0 .../grib2/tables/21/4.2.1.2.table | 0 .../grib2/tables/21/4.2.10.0.table | 0 .../grib2/tables/21/4.2.10.1.table | 0 .../grib2/tables/21/4.2.10.191.table | 0 .../grib2/tables/21/4.2.10.2.table | 0 .../grib2/tables/21/4.2.10.3.table | 0 .../grib2/tables/21/4.2.10.4.table | 0 .../grib2/tables/21/4.2.2.0.table | 0 .../grib2/tables/21/4.2.2.3.table | 0 .../grib2/tables/21/4.2.2.4.table | 0 .../grib2/tables/21/4.2.2.5.table | 0 .../grib2/tables/21/4.2.3.0.table | 0 .../grib2/tables/21/4.2.3.1.table | 0 .../grib2/tables/21/4.2.3.2.table | 0 .../grib2/tables/21/4.2.3.3.table | 0 .../grib2/tables/21/4.2.3.4.table | 0 .../grib2/tables/21/4.2.3.5.table | 0 .../grib2/tables/21/4.2.3.6.table | 0 .../grib2/tables/21/4.201.table | 0 .../grib2/tables/21/4.202.table | 0 .../grib2/tables/21/4.203.table | 0 .../grib2/tables/21/4.204.table | 0 .../grib2/tables/21/4.205.table | 0 .../grib2/tables/21/4.206.table | 0 .../grib2/tables/21/4.207.table | 0 .../grib2/tables/21/4.208.table | 0 .../grib2/tables/21/4.209.table | 0 .../grib2/tables/21/4.210.table | 0 .../grib2/tables/21/4.211.table | 0 .../grib2/tables/21/4.212.table | 0 .../grib2/tables/21/4.213.table | 0 .../grib2/tables/21/4.215.table | 0 .../grib2/tables/21/4.216.table | 0 .../grib2/tables/21/4.217.table | 0 .../grib2/tables/21/4.218.table | 0 .../grib2/tables/21/4.219.table | 0 .../grib2/tables/21/4.220.table | 0 .../grib2/tables/21/4.221.table | 0 .../grib2/tables/21/4.222.table | 0 .../grib2/tables/21/4.223.table | 0 .../grib2/tables/21/4.224.table | 0 .../grib2/tables/21/4.225.table | 0 .../grib2/tables/21/4.227.table | 0 .../grib2/tables/21/4.230.table | 0 .../grib2/tables/21/4.233.table | 0 .../grib2/tables/21/4.234.table | 0 .../grib2/tables/21/4.236.table | 0 .../grib2/tables/21/4.238.table | 0 .../grib2/tables/21/4.240.table | 0 .../grib2/tables/21/4.241.table | 0 .../grib2/tables/21/4.242.table | 0 .../grib2/tables/21/4.243.table | 0 .../grib2/tables/21/4.244.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/21/4.9.table | 0 .../grib2/tables/21/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.4.table | 0 .../grib2/tables/21/5.40.table | 0 .../grib2/tables/21/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.5.table | 0 .../grib2/tables/21/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/21/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/21/6.0.table | 0 .../grib2/tables/21/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/22/1.4.table | 0 .../grib2/tables/22/3.15.table | 0 .../grib2/tables/22/4.10.table | 0 .../grib2/tables/22/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/22/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/22/4.5.table | 0 .../grib2/tables/22/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/23/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/23/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.1.table | 0 .../grib2/tables/23/3.10.table | 0 .../grib2/tables/23/3.11.table | 0 .../grib2/tables/23/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.2.table | 0 .../grib2/tables/23/3.20.table | 0 .../grib2/tables/23/3.21.table | 0 .../grib2/tables/23/3.25.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/23/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.0.table | 0 .../grib2/tables/23/4.1.0.table | 0 .../grib2/tables/23/4.1.1.table | 0 .../grib2/tables/23/4.1.10.table | 0 .../grib2/tables/23/4.1.192.table | 0 .../grib2/tables/23/4.1.2.table | 0 .../grib2/tables/23/4.1.3.table | 0 .../grib2/tables/23/4.10.table | 0 .../grib2/tables/23/4.11.table | 0 .../grib2/tables/23/4.12.table | 0 .../grib2/tables/23/4.13.table | 0 .../grib2/tables/23/4.14.table | 0 .../grib2/tables/23/4.15.table | 0 .../grib2/tables/23/4.16.table | 0 .../grib2/tables/23/4.192.table | 0 .../grib2/tables/23/4.2.0.0.table | 0 .../grib2/tables/23/4.2.0.1.table | 0 .../grib2/tables/23/4.2.0.13.table | 0 .../grib2/tables/23/4.2.0.14.table | 0 .../grib2/tables/23/4.2.0.15.table | 0 .../grib2/tables/23/4.2.0.16.table | 0 .../grib2/tables/23/4.2.0.17.table | 0 .../grib2/tables/23/4.2.0.18.table | 0 .../grib2/tables/23/4.2.0.19.table | 0 .../grib2/tables/23/4.2.0.190.table | 0 .../grib2/tables/23/4.2.0.191.table | 0 .../grib2/tables/23/4.2.0.2.table | 0 .../grib2/tables/23/4.2.0.20.table | 0 .../grib2/tables/23/4.2.0.3.table | 0 .../grib2/tables/23/4.2.0.4.table | 0 .../grib2/tables/23/4.2.0.5.table | 0 .../grib2/tables/23/4.2.0.6.table | 0 .../grib2/tables/23/4.2.0.7.table | 0 .../grib2/tables/23/4.2.1.0.table | 0 .../grib2/tables/23/4.2.1.1.table | 0 .../grib2/tables/23/4.2.1.2.table | 0 .../grib2/tables/23/4.2.10.0.table | 0 .../grib2/tables/23/4.2.10.1.table | 0 .../grib2/tables/23/4.2.10.191.table | 0 .../grib2/tables/23/4.2.10.2.table | 0 .../grib2/tables/23/4.2.10.3.table | 0 .../grib2/tables/23/4.2.10.4.table | 0 .../grib2/tables/23/4.2.2.0.table | 0 .../grib2/tables/23/4.2.2.3.table | 0 .../grib2/tables/23/4.2.2.4.table | 0 .../grib2/tables/23/4.2.2.5.table | 0 .../grib2/tables/23/4.2.3.0.table | 0 .../grib2/tables/23/4.2.3.1.table | 0 .../grib2/tables/23/4.2.3.2.table | 0 .../grib2/tables/23/4.2.3.3.table | 0 .../grib2/tables/23/4.2.3.4.table | 0 .../grib2/tables/23/4.2.3.5.table | 0 .../grib2/tables/23/4.2.3.6.table | 0 .../grib2/tables/23/4.201.table | 0 .../grib2/tables/23/4.202.table | 0 .../grib2/tables/23/4.203.table | 0 .../grib2/tables/23/4.204.table | 0 .../grib2/tables/23/4.205.table | 0 .../grib2/tables/23/4.206.table | 0 .../grib2/tables/23/4.207.table | 0 .../grib2/tables/23/4.208.table | 0 .../grib2/tables/23/4.209.table | 0 .../grib2/tables/23/4.210.table | 0 .../grib2/tables/23/4.211.table | 0 .../grib2/tables/23/4.212.table | 0 .../grib2/tables/23/4.213.table | 0 .../grib2/tables/23/4.215.table | 0 .../grib2/tables/23/4.216.table | 0 .../grib2/tables/23/4.217.table | 0 .../grib2/tables/23/4.218.table | 0 .../grib2/tables/23/4.219.table | 0 .../grib2/tables/23/4.220.table | 0 .../grib2/tables/23/4.221.table | 0 .../grib2/tables/23/4.222.table | 0 .../grib2/tables/23/4.223.table | 0 .../grib2/tables/23/4.224.table | 0 .../grib2/tables/23/4.225.table | 0 .../grib2/tables/23/4.227.table | 0 .../grib2/tables/23/4.230.table | 0 .../grib2/tables/23/4.233.table | 0 .../grib2/tables/23/4.234.table | 0 .../grib2/tables/23/4.236.table | 0 .../grib2/tables/23/4.240.table | 0 .../grib2/tables/23/4.241.table | 0 .../grib2/tables/23/4.242.table | 0 .../grib2/tables/23/4.243.table | 0 .../grib2/tables/23/4.244.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/23/4.9.table | 0 .../grib2/tables/23/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.2.table | 0 .../grib2/tables/23/5.25.table | 0 .../grib2/tables/23/5.26.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.4.table | 0 .../grib2/tables/23/5.40.table | 0 .../grib2/tables/23/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.5.table | 0 .../grib2/tables/23/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/23/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/23/6.0.table | 0 .../grib2/tables/23/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/24/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/24/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.1.table | 0 .../grib2/tables/24/3.10.table | 0 .../grib2/tables/24/3.11.table | 0 .../grib2/tables/24/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.2.table | 0 .../grib2/tables/24/3.20.table | 0 .../grib2/tables/24/3.21.table | 0 .../grib2/tables/24/3.25.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/24/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.0.table | 0 .../grib2/tables/24/4.1.0.table | 0 .../grib2/tables/24/4.1.1.table | 0 .../grib2/tables/24/4.1.10.table | 0 .../grib2/tables/24/4.1.192.table | 0 .../grib2/tables/24/4.1.2.table | 0 .../grib2/tables/24/4.1.3.table | 0 .../grib2/tables/24/4.10.table | 0 .../grib2/tables/24/4.11.table | 0 .../grib2/tables/24/4.12.table | 0 .../grib2/tables/24/4.13.table | 0 .../grib2/tables/24/4.14.table | 0 .../grib2/tables/24/4.15.table | 0 .../grib2/tables/24/4.16.table | 0 .../grib2/tables/24/4.192.table | 0 .../grib2/tables/24/4.2.0.0.table | 0 .../grib2/tables/24/4.2.0.1.table | 0 .../grib2/tables/24/4.2.0.13.table | 0 .../grib2/tables/24/4.2.0.14.table | 0 .../grib2/tables/24/4.2.0.15.table | 0 .../grib2/tables/24/4.2.0.16.table | 0 .../grib2/tables/24/4.2.0.17.table | 0 .../grib2/tables/24/4.2.0.18.table | 0 .../grib2/tables/24/4.2.0.19.table | 0 .../grib2/tables/24/4.2.0.190.table | 0 .../grib2/tables/24/4.2.0.191.table | 0 .../grib2/tables/24/4.2.0.2.table | 0 .../grib2/tables/24/4.2.0.20.table | 0 .../grib2/tables/24/4.2.0.3.table | 0 .../grib2/tables/24/4.2.0.4.table | 0 .../grib2/tables/24/4.2.0.5.table | 0 .../grib2/tables/24/4.2.0.6.table | 0 .../grib2/tables/24/4.2.0.7.table | 0 .../grib2/tables/24/4.2.1.0.table | 0 .../grib2/tables/24/4.2.1.1.table | 0 .../grib2/tables/24/4.2.1.2.table | 0 .../grib2/tables/24/4.2.10.0.table | 0 .../grib2/tables/24/4.2.10.1.table | 0 .../grib2/tables/24/4.2.10.191.table | 0 .../grib2/tables/24/4.2.10.2.table | 0 .../grib2/tables/24/4.2.10.3.table | 0 .../grib2/tables/24/4.2.10.4.table | 0 .../grib2/tables/24/4.2.2.0.table | 0 .../grib2/tables/24/4.2.2.3.table | 0 .../grib2/tables/24/4.2.2.4.table | 0 .../grib2/tables/24/4.2.2.5.table | 0 .../grib2/tables/24/4.2.3.0.table | 0 .../grib2/tables/24/4.2.3.1.table | 0 .../grib2/tables/24/4.2.3.2.table | 0 .../grib2/tables/24/4.2.3.3.table | 0 .../grib2/tables/24/4.2.3.4.table | 0 .../grib2/tables/24/4.2.3.5.table | 0 .../grib2/tables/24/4.2.3.6.table | 0 .../grib2/tables/24/4.201.table | 0 .../grib2/tables/24/4.202.table | 0 .../grib2/tables/24/4.203.table | 0 .../grib2/tables/24/4.204.table | 0 .../grib2/tables/24/4.205.table | 0 .../grib2/tables/24/4.206.table | 0 .../grib2/tables/24/4.207.table | 0 .../grib2/tables/24/4.208.table | 0 .../grib2/tables/24/4.209.table | 0 .../grib2/tables/24/4.210.table | 0 .../grib2/tables/24/4.211.table | 0 .../grib2/tables/24/4.212.table | 0 .../grib2/tables/24/4.213.table | 0 .../grib2/tables/24/4.215.table | 0 .../grib2/tables/24/4.216.table | 0 .../grib2/tables/24/4.217.table | 0 .../grib2/tables/24/4.218.table | 0 .../grib2/tables/24/4.219.table | 0 .../grib2/tables/24/4.220.table | 0 .../grib2/tables/24/4.221.table | 0 .../grib2/tables/24/4.222.table | 0 .../grib2/tables/24/4.223.table | 0 .../grib2/tables/24/4.224.table | 0 .../grib2/tables/24/4.225.table | 0 .../grib2/tables/24/4.227.table | 0 .../grib2/tables/24/4.230.table | 0 .../grib2/tables/24/4.233.table | 0 .../grib2/tables/24/4.234.table | 0 .../grib2/tables/24/4.236.table | 0 .../grib2/tables/24/4.238.table | 0 .../grib2/tables/24/4.240.table | 0 .../grib2/tables/24/4.241.table | 0 .../grib2/tables/24/4.242.table | 0 .../grib2/tables/24/4.243.table | 0 .../grib2/tables/24/4.244.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/24/4.9.table | 0 .../grib2/tables/24/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.2.table | 0 .../grib2/tables/24/5.25.table | 0 .../grib2/tables/24/5.26.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.4.table | 0 .../grib2/tables/24/5.40.table | 0 .../grib2/tables/24/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.5.table | 0 .../grib2/tables/24/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/24/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/24/6.0.table | 0 .../grib2/tables/24/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/25/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/25/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.1.table | 0 .../grib2/tables/25/3.10.table | 0 .../grib2/tables/25/3.11.table | 0 .../grib2/tables/25/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.2.table | 0 .../grib2/tables/25/3.20.table | 0 .../grib2/tables/25/3.21.table | 0 .../grib2/tables/25/3.25.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/25/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.0.table | 0 .../grib2/tables/25/4.1.0.table | 0 .../grib2/tables/25/4.1.1.table | 0 .../grib2/tables/25/4.1.10.table | 0 .../grib2/tables/25/4.1.192.table | 0 .../grib2/tables/25/4.1.2.table | 0 .../grib2/tables/25/4.1.20.table | 0 .../grib2/tables/25/4.1.3.table | 0 .../grib2/tables/25/4.1.4.table | 0 .../grib2/tables/25/4.10.table | 0 .../grib2/tables/25/4.11.table | 0 .../grib2/tables/25/4.12.table | 0 .../grib2/tables/25/4.13.table | 0 .../grib2/tables/25/4.14.table | 0 .../grib2/tables/25/4.15.table | 0 .../grib2/tables/25/4.16.table | 0 .../grib2/tables/25/4.192.table | 0 .../grib2/tables/25/4.2.0.0.table | 0 .../grib2/tables/25/4.2.0.1.table | 0 .../grib2/tables/25/4.2.0.13.table | 0 .../grib2/tables/25/4.2.0.14.table | 0 .../grib2/tables/25/4.2.0.15.table | 0 .../grib2/tables/25/4.2.0.16.table | 0 .../grib2/tables/25/4.2.0.17.table | 0 .../grib2/tables/25/4.2.0.18.table | 0 .../grib2/tables/25/4.2.0.19.table | 0 .../grib2/tables/25/4.2.0.190.table | 0 .../grib2/tables/25/4.2.0.191.table | 0 .../grib2/tables/25/4.2.0.2.table | 0 .../grib2/tables/25/4.2.0.20.table | 0 .../grib2/tables/25/4.2.0.3.table | 0 .../grib2/tables/25/4.2.0.4.table | 0 .../grib2/tables/25/4.2.0.5.table | 0 .../grib2/tables/25/4.2.0.6.table | 0 .../grib2/tables/25/4.2.0.7.table | 0 .../grib2/tables/25/4.2.1.0.table | 0 .../grib2/tables/25/4.2.1.1.table | 0 .../grib2/tables/25/4.2.1.2.table | 0 .../grib2/tables/25/4.2.10.0.table | 0 .../grib2/tables/25/4.2.10.1.table | 0 .../grib2/tables/25/4.2.10.191.table | 0 .../grib2/tables/25/4.2.10.2.table | 0 .../grib2/tables/25/4.2.10.3.table | 0 .../grib2/tables/25/4.2.10.4.table | 0 .../grib2/tables/25/4.2.2.0.table | 0 .../grib2/tables/25/4.2.2.3.table | 0 .../grib2/tables/25/4.2.2.4.table | 0 .../grib2/tables/25/4.2.2.5.table | 0 .../grib2/tables/25/4.2.20.0.table | 0 .../grib2/tables/25/4.2.20.1.table | 0 .../grib2/tables/25/4.2.20.2.table | 0 .../grib2/tables/25/4.2.3.0.table | 0 .../grib2/tables/25/4.2.3.1.table | 0 .../grib2/tables/25/4.2.3.2.table | 0 .../grib2/tables/25/4.2.3.3.table | 0 .../grib2/tables/25/4.2.3.4.table | 0 .../grib2/tables/25/4.2.3.5.table | 0 .../grib2/tables/25/4.2.3.6.table | 0 .../grib2/tables/25/4.2.4.0.table | 0 .../grib2/tables/25/4.2.4.1.table | 0 .../grib2/tables/25/4.2.4.10.table | 0 .../grib2/tables/25/4.2.4.2.table | 0 .../grib2/tables/25/4.2.4.3.table | 0 .../grib2/tables/25/4.2.4.4.table | 0 .../grib2/tables/25/4.2.4.5.table | 0 .../grib2/tables/25/4.2.4.6.table | 0 .../grib2/tables/25/4.2.4.7.table | 0 .../grib2/tables/25/4.2.4.8.table | 0 .../grib2/tables/25/4.2.4.9.table | 0 .../grib2/tables/25/4.201.table | 0 .../grib2/tables/25/4.202.table | 0 .../grib2/tables/25/4.203.table | 0 .../grib2/tables/25/4.204.table | 0 .../grib2/tables/25/4.205.table | 0 .../grib2/tables/25/4.206.table | 0 .../grib2/tables/25/4.207.table | 0 .../grib2/tables/25/4.208.table | 0 .../grib2/tables/25/4.209.table | 0 .../grib2/tables/25/4.210.table | 0 .../grib2/tables/25/4.211.table | 0 .../grib2/tables/25/4.212.table | 0 .../grib2/tables/25/4.213.table | 0 .../grib2/tables/25/4.215.table | 0 .../grib2/tables/25/4.216.table | 0 .../grib2/tables/25/4.217.table | 0 .../grib2/tables/25/4.218.table | 0 .../grib2/tables/25/4.219.table | 0 .../grib2/tables/25/4.220.table | 0 .../grib2/tables/25/4.221.table | 0 .../grib2/tables/25/4.222.table | 0 .../grib2/tables/25/4.223.table | 0 .../grib2/tables/25/4.224.table | 0 .../grib2/tables/25/4.225.table | 0 .../grib2/tables/25/4.227.table | 0 .../grib2/tables/25/4.228.table | 0 .../grib2/tables/25/4.230.table | 0 .../grib2/tables/25/4.233.table | 0 .../grib2/tables/25/4.234.table | 0 .../grib2/tables/25/4.236.table | 0 .../grib2/tables/25/4.238.table | 0 .../grib2/tables/25/4.240.table | 0 .../grib2/tables/25/4.241.table | 0 .../grib2/tables/25/4.242.table | 0 .../grib2/tables/25/4.243.table | 0 .../grib2/tables/25/4.244.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/25/4.9.table | 0 .../grib2/tables/25/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.2.table | 0 .../grib2/tables/25/5.25.table | 0 .../grib2/tables/25/5.26.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.4.table | 0 .../grib2/tables/25/5.40.table | 0 .../grib2/tables/25/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.5.table | 0 .../grib2/tables/25/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/25/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/25/6.0.table | 0 .../grib2/tables/25/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/26/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.5.table | 0 .../{definitions => definitions.save}/grib2/tables/26/1.6.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.1.table | 0 .../grib2/tables/26/3.10.table | 0 .../grib2/tables/26/3.11.table | 0 .../grib2/tables/26/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.2.table | 0 .../grib2/tables/26/3.20.table | 0 .../grib2/tables/26/3.21.table | 0 .../grib2/tables/26/3.25.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/26/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.0.table | 0 .../grib2/tables/26/4.1.0.table | 0 .../grib2/tables/26/4.1.1.table | 0 .../grib2/tables/26/4.1.10.table | 0 .../grib2/tables/26/4.1.192.table | 0 .../grib2/tables/26/4.1.2.table | 0 .../grib2/tables/26/4.1.20.table | 0 .../grib2/tables/26/4.1.3.table | 0 .../grib2/tables/26/4.1.4.table | 0 .../grib2/tables/26/4.10.table | 0 .../grib2/tables/26/4.11.table | 0 .../grib2/tables/26/4.12.table | 0 .../grib2/tables/26/4.13.table | 0 .../grib2/tables/26/4.14.table | 0 .../grib2/tables/26/4.15.table | 0 .../grib2/tables/26/4.16.table | 0 .../grib2/tables/26/4.192.table | 0 .../grib2/tables/26/4.2.0.0.table | 0 .../grib2/tables/26/4.2.0.1.table | 0 .../grib2/tables/26/4.2.0.13.table | 0 .../grib2/tables/26/4.2.0.14.table | 0 .../grib2/tables/26/4.2.0.15.table | 0 .../grib2/tables/26/4.2.0.16.table | 0 .../grib2/tables/26/4.2.0.17.table | 0 .../grib2/tables/26/4.2.0.18.table | 0 .../grib2/tables/26/4.2.0.19.table | 0 .../grib2/tables/26/4.2.0.190.table | 0 .../grib2/tables/26/4.2.0.191.table | 0 .../grib2/tables/26/4.2.0.2.table | 0 .../grib2/tables/26/4.2.0.20.table | 0 .../grib2/tables/26/4.2.0.3.table | 0 .../grib2/tables/26/4.2.0.4.table | 0 .../grib2/tables/26/4.2.0.5.table | 0 .../grib2/tables/26/4.2.0.6.table | 0 .../grib2/tables/26/4.2.0.7.table | 0 .../grib2/tables/26/4.2.1.0.table | 0 .../grib2/tables/26/4.2.1.1.table | 0 .../grib2/tables/26/4.2.1.2.table | 0 .../grib2/tables/26/4.2.10.0.table | 0 .../grib2/tables/26/4.2.10.1.table | 0 .../grib2/tables/26/4.2.10.191.table | 0 .../grib2/tables/26/4.2.10.2.table | 0 .../grib2/tables/26/4.2.10.3.table | 0 .../grib2/tables/26/4.2.10.4.table | 0 .../grib2/tables/26/4.2.2.0.table | 0 .../grib2/tables/26/4.2.2.3.table | 0 .../grib2/tables/26/4.2.2.4.table | 0 .../grib2/tables/26/4.2.2.5.table | 0 .../grib2/tables/26/4.2.20.0.table | 0 .../grib2/tables/26/4.2.20.1.table | 0 .../grib2/tables/26/4.2.20.2.table | 0 .../grib2/tables/26/4.2.3.0.table | 0 .../grib2/tables/26/4.2.3.1.table | 0 .../grib2/tables/26/4.2.3.2.table | 0 .../grib2/tables/26/4.2.3.3.table | 0 .../grib2/tables/26/4.2.3.4.table | 0 .../grib2/tables/26/4.2.3.5.table | 0 .../grib2/tables/26/4.2.3.6.table | 0 .../grib2/tables/26/4.2.4.0.table | 0 .../grib2/tables/26/4.2.4.1.table | 0 .../grib2/tables/26/4.2.4.10.table | 0 .../grib2/tables/26/4.2.4.2.table | 0 .../grib2/tables/26/4.2.4.3.table | 0 .../grib2/tables/26/4.2.4.4.table | 0 .../grib2/tables/26/4.2.4.5.table | 0 .../grib2/tables/26/4.2.4.6.table | 0 .../grib2/tables/26/4.2.4.7.table | 0 .../grib2/tables/26/4.2.4.8.table | 0 .../grib2/tables/26/4.2.4.9.table | 0 .../grib2/tables/26/4.201.table | 0 .../grib2/tables/26/4.202.table | 0 .../grib2/tables/26/4.203.table | 0 .../grib2/tables/26/4.204.table | 0 .../grib2/tables/26/4.205.table | 0 .../grib2/tables/26/4.206.table | 0 .../grib2/tables/26/4.207.table | 0 .../grib2/tables/26/4.208.table | 0 .../grib2/tables/26/4.209.table | 0 .../grib2/tables/26/4.210.table | 0 .../grib2/tables/26/4.211.table | 0 .../grib2/tables/26/4.212.table | 0 .../grib2/tables/26/4.213.table | 0 .../grib2/tables/26/4.214.table | 0 .../grib2/tables/26/4.215.table | 0 .../grib2/tables/26/4.216.table | 0 .../grib2/tables/26/4.217.table | 0 .../grib2/tables/26/4.218.table | 0 .../grib2/tables/26/4.219.table | 0 .../grib2/tables/26/4.220.table | 0 .../grib2/tables/26/4.221.table | 0 .../grib2/tables/26/4.222.table | 0 .../grib2/tables/26/4.223.table | 0 .../grib2/tables/26/4.224.table | 0 .../grib2/tables/26/4.225.table | 0 .../grib2/tables/26/4.227.table | 0 .../grib2/tables/26/4.228.table | 0 .../grib2/tables/26/4.230.table | 0 .../grib2/tables/26/4.233.table | 0 .../grib2/tables/26/4.234.table | 0 .../grib2/tables/26/4.236.table | 0 .../grib2/tables/26/4.238.table | 0 .../grib2/tables/26/4.240.table | 0 .../grib2/tables/26/4.241.table | 0 .../grib2/tables/26/4.242.table | 0 .../grib2/tables/26/4.243.table | 0 .../grib2/tables/26/4.244.table | 0 .../grib2/tables/26/4.246.table | 0 .../grib2/tables/26/4.247.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/26/4.9.table | 0 .../grib2/tables/26/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.2.table | 0 .../grib2/tables/26/5.25.table | 0 .../grib2/tables/26/5.26.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.4.table | 0 .../grib2/tables/26/5.40.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.5.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/26/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/26/6.0.table | 0 .../grib2/tables/26/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/3/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/3/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/3/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/3/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/3/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/3/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/3/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.0.table | 0 .../grib2/tables/3/4.1.0.table | 0 .../grib2/tables/3/4.1.1.table | 0 .../grib2/tables/3/4.1.10.table | 0 .../grib2/tables/3/4.1.2.table | 0 .../grib2/tables/3/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.15.table | 0 .../grib2/tables/3/4.151.table | 0 .../grib2/tables/3/4.2.0.0.table | 0 .../grib2/tables/3/4.2.0.1.table | 0 .../grib2/tables/3/4.2.0.13.table | 0 .../grib2/tables/3/4.2.0.14.table | 0 .../grib2/tables/3/4.2.0.15.table | 0 .../grib2/tables/3/4.2.0.18.table | 0 .../grib2/tables/3/4.2.0.19.table | 0 .../grib2/tables/3/4.2.0.190.table | 0 .../grib2/tables/3/4.2.0.191.table | 0 .../grib2/tables/3/4.2.0.2.table | 0 .../grib2/tables/3/4.2.0.20.table | 0 .../grib2/tables/3/4.2.0.3.table | 0 .../grib2/tables/3/4.2.0.4.table | 0 .../grib2/tables/3/4.2.0.5.table | 0 .../grib2/tables/3/4.2.0.6.table | 0 .../grib2/tables/3/4.2.0.7.table | 0 .../grib2/tables/3/4.2.1.0.table | 0 .../grib2/tables/3/4.2.1.1.table | 0 .../grib2/tables/3/4.2.10.0.table | 0 .../grib2/tables/3/4.2.10.1.table | 0 .../grib2/tables/3/4.2.10.2.table | 0 .../grib2/tables/3/4.2.10.3.table | 0 .../grib2/tables/3/4.2.10.4.table | 0 .../grib2/tables/3/4.2.2.0.table | 0 .../grib2/tables/3/4.2.2.3.table | 0 .../grib2/tables/3/4.2.3.0.table | 0 .../grib2/tables/3/4.2.3.1.table | 0 .../grib2/tables/3/4.201.table | 0 .../grib2/tables/3/4.202.table | 0 .../grib2/tables/3/4.203.table | 0 .../grib2/tables/3/4.204.table | 0 .../grib2/tables/3/4.205.table | 0 .../grib2/tables/3/4.206.table | 0 .../grib2/tables/3/4.207.table | 0 .../grib2/tables/3/4.208.table | 0 .../grib2/tables/3/4.209.table | 0 .../grib2/tables/3/4.210.table | 0 .../grib2/tables/3/4.211.table | 0 .../grib2/tables/3/4.212.table | 0 .../grib2/tables/3/4.213.table | 0 .../grib2/tables/3/4.215.table | 0 .../grib2/tables/3/4.216.table | 0 .../grib2/tables/3/4.217.table | 0 .../grib2/tables/3/4.220.table | 0 .../grib2/tables/3/4.221.table | 0 .../grib2/tables/3/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/3/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.40.table | 0 .../grib2/tables/3/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.5.table | 0 .../grib2/tables/3/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/3/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/3/6.0.table | 0 .../grib2/tables/3/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/4/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/4/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/4/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/4/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/4/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/4/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/4/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.0.table | 0 .../grib2/tables/4/4.1.0.table | 0 .../grib2/tables/4/4.1.1.table | 0 .../grib2/tables/4/4.1.10.table | 0 .../grib2/tables/4/4.1.192.table | 0 .../grib2/tables/4/4.1.2.table | 0 .../grib2/tables/4/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.15.table | 0 .../grib2/tables/4/4.151.table | 0 .../grib2/tables/4/4.2.0.0.table | 0 .../grib2/tables/4/4.2.0.1.table | 0 .../grib2/tables/4/4.2.0.13.table | 0 .../grib2/tables/4/4.2.0.14.table | 0 .../grib2/tables/4/4.2.0.15.table | 0 .../grib2/tables/4/4.2.0.18.table | 0 .../grib2/tables/4/4.2.0.19.table | 0 .../grib2/tables/4/4.2.0.190.table | 0 .../grib2/tables/4/4.2.0.191.table | 0 .../grib2/tables/4/4.2.0.2.table | 0 .../grib2/tables/4/4.2.0.20.table | 0 .../grib2/tables/4/4.2.0.3.table | 0 .../grib2/tables/4/4.2.0.4.table | 0 .../grib2/tables/4/4.2.0.5.table | 0 .../grib2/tables/4/4.2.0.6.table | 0 .../grib2/tables/4/4.2.0.7.table | 0 .../grib2/tables/4/4.2.1.0.table | 0 .../grib2/tables/4/4.2.1.1.table | 0 .../grib2/tables/4/4.2.10.0.table | 0 .../grib2/tables/4/4.2.10.1.table | 0 .../grib2/tables/4/4.2.10.2.table | 0 .../grib2/tables/4/4.2.10.3.table | 0 .../grib2/tables/4/4.2.10.4.table | 0 .../grib2/tables/4/4.2.192.0.table | 0 .../grib2/tables/4/4.2.192.1.table | 0 .../grib2/tables/4/4.2.192.10.table | 0 .../grib2/tables/4/4.2.192.100.table | 0 .../grib2/tables/4/4.2.192.101.table | 0 .../grib2/tables/4/4.2.192.102.table | 0 .../grib2/tables/4/4.2.192.103.table | 0 .../grib2/tables/4/4.2.192.104.table | 0 .../grib2/tables/4/4.2.192.105.table | 0 .../grib2/tables/4/4.2.192.106.table | 0 .../grib2/tables/4/4.2.192.107.table | 0 .../grib2/tables/4/4.2.192.108.table | 0 .../grib2/tables/4/4.2.192.109.table | 0 .../grib2/tables/4/4.2.192.11.table | 0 .../grib2/tables/4/4.2.192.110.table | 0 .../grib2/tables/4/4.2.192.111.table | 0 .../grib2/tables/4/4.2.192.112.table | 0 .../grib2/tables/4/4.2.192.113.table | 0 .../grib2/tables/4/4.2.192.114.table | 0 .../grib2/tables/4/4.2.192.115.table | 0 .../grib2/tables/4/4.2.192.116.table | 0 .../grib2/tables/4/4.2.192.117.table | 0 .../grib2/tables/4/4.2.192.118.table | 0 .../grib2/tables/4/4.2.192.119.table | 0 .../grib2/tables/4/4.2.192.12.table | 0 .../grib2/tables/4/4.2.192.120.table | 0 .../grib2/tables/4/4.2.192.121.table | 0 .../grib2/tables/4/4.2.192.122.table | 0 .../grib2/tables/4/4.2.192.123.table | 0 .../grib2/tables/4/4.2.192.124.table | 0 .../grib2/tables/4/4.2.192.125.table | 0 .../grib2/tables/4/4.2.192.126.table | 0 .../grib2/tables/4/4.2.192.127.table | 0 .../grib2/tables/4/4.2.192.128.table | 0 .../grib2/tables/4/4.2.192.129.table | 0 .../grib2/tables/4/4.2.192.13.table | 0 .../grib2/tables/4/4.2.192.130.table | 0 .../grib2/tables/4/4.2.192.131.table | 0 .../grib2/tables/4/4.2.192.132.table | 0 .../grib2/tables/4/4.2.192.133.table | 0 .../grib2/tables/4/4.2.192.134.table | 0 .../grib2/tables/4/4.2.192.135.table | 0 .../grib2/tables/4/4.2.192.136.table | 0 .../grib2/tables/4/4.2.192.137.table | 0 .../grib2/tables/4/4.2.192.138.table | 0 .../grib2/tables/4/4.2.192.139.table | 0 .../grib2/tables/4/4.2.192.14.table | 0 .../grib2/tables/4/4.2.192.140.table | 0 .../grib2/tables/4/4.2.192.141.table | 0 .../grib2/tables/4/4.2.192.142.table | 0 .../grib2/tables/4/4.2.192.143.table | 0 .../grib2/tables/4/4.2.192.144.table | 0 .../grib2/tables/4/4.2.192.145.table | 0 .../grib2/tables/4/4.2.192.146.table | 0 .../grib2/tables/4/4.2.192.147.table | 0 .../grib2/tables/4/4.2.192.148.table | 0 .../grib2/tables/4/4.2.192.149.table | 0 .../grib2/tables/4/4.2.192.15.table | 0 .../grib2/tables/4/4.2.192.150.table | 0 .../grib2/tables/4/4.2.192.151.table | 0 .../grib2/tables/4/4.2.192.152.table | 0 .../grib2/tables/4/4.2.192.153.table | 0 .../grib2/tables/4/4.2.192.154.table | 0 .../grib2/tables/4/4.2.192.155.table | 0 .../grib2/tables/4/4.2.192.156.table | 0 .../grib2/tables/4/4.2.192.157.table | 0 .../grib2/tables/4/4.2.192.158.table | 0 .../grib2/tables/4/4.2.192.159.table | 0 .../grib2/tables/4/4.2.192.16.table | 0 .../grib2/tables/4/4.2.192.160.table | 0 .../grib2/tables/4/4.2.192.161.table | 0 .../grib2/tables/4/4.2.192.162.table | 0 .../grib2/tables/4/4.2.192.163.table | 0 .../grib2/tables/4/4.2.192.164.table | 0 .../grib2/tables/4/4.2.192.165.table | 0 .../grib2/tables/4/4.2.192.166.table | 0 .../grib2/tables/4/4.2.192.167.table | 0 .../grib2/tables/4/4.2.192.168.table | 0 .../grib2/tables/4/4.2.192.169.table | 0 .../grib2/tables/4/4.2.192.17.table | 0 .../grib2/tables/4/4.2.192.170.table | 0 .../grib2/tables/4/4.2.192.171.table | 0 .../grib2/tables/4/4.2.192.172.table | 0 .../grib2/tables/4/4.2.192.173.table | 0 .../grib2/tables/4/4.2.192.174.table | 0 .../grib2/tables/4/4.2.192.175.table | 0 .../grib2/tables/4/4.2.192.176.table | 0 .../grib2/tables/4/4.2.192.177.table | 0 .../grib2/tables/4/4.2.192.178.table | 0 .../grib2/tables/4/4.2.192.179.table | 0 .../grib2/tables/4/4.2.192.18.table | 0 .../grib2/tables/4/4.2.192.180.table | 0 .../grib2/tables/4/4.2.192.181.table | 0 .../grib2/tables/4/4.2.192.182.table | 0 .../grib2/tables/4/4.2.192.183.table | 0 .../grib2/tables/4/4.2.192.184.table | 0 .../grib2/tables/4/4.2.192.185.table | 0 .../grib2/tables/4/4.2.192.186.table | 0 .../grib2/tables/4/4.2.192.187.table | 0 .../grib2/tables/4/4.2.192.188.table | 0 .../grib2/tables/4/4.2.192.189.table | 0 .../grib2/tables/4/4.2.192.19.table | 0 .../grib2/tables/4/4.2.192.190.table | 0 .../grib2/tables/4/4.2.192.191.table | 0 .../grib2/tables/4/4.2.192.192.table | 0 .../grib2/tables/4/4.2.192.193.table | 0 .../grib2/tables/4/4.2.192.194.table | 0 .../grib2/tables/4/4.2.192.195.table | 0 .../grib2/tables/4/4.2.192.196.table | 0 .../grib2/tables/4/4.2.192.197.table | 0 .../grib2/tables/4/4.2.192.198.table | 0 .../grib2/tables/4/4.2.192.199.table | 0 .../grib2/tables/4/4.2.192.2.table | 0 .../grib2/tables/4/4.2.192.20.table | 0 .../grib2/tables/4/4.2.192.200.table | 0 .../grib2/tables/4/4.2.192.201.table | 0 .../grib2/tables/4/4.2.192.202.table | 0 .../grib2/tables/4/4.2.192.203.table | 0 .../grib2/tables/4/4.2.192.204.table | 0 .../grib2/tables/4/4.2.192.205.table | 0 .../grib2/tables/4/4.2.192.206.table | 0 .../grib2/tables/4/4.2.192.207.table | 0 .../grib2/tables/4/4.2.192.208.table | 0 .../grib2/tables/4/4.2.192.209.table | 0 .../grib2/tables/4/4.2.192.21.table | 0 .../grib2/tables/4/4.2.192.210.table | 0 .../grib2/tables/4/4.2.192.211.table | 0 .../grib2/tables/4/4.2.192.212.table | 0 .../grib2/tables/4/4.2.192.213.table | 0 .../grib2/tables/4/4.2.192.214.table | 0 .../grib2/tables/4/4.2.192.215.table | 0 .../grib2/tables/4/4.2.192.216.table | 0 .../grib2/tables/4/4.2.192.217.table | 0 .../grib2/tables/4/4.2.192.218.table | 0 .../grib2/tables/4/4.2.192.219.table | 0 .../grib2/tables/4/4.2.192.22.table | 0 .../grib2/tables/4/4.2.192.220.table | 0 .../grib2/tables/4/4.2.192.221.table | 0 .../grib2/tables/4/4.2.192.222.table | 0 .../grib2/tables/4/4.2.192.223.table | 0 .../grib2/tables/4/4.2.192.224.table | 0 .../grib2/tables/4/4.2.192.225.table | 0 .../grib2/tables/4/4.2.192.226.table | 0 .../grib2/tables/4/4.2.192.227.table | 0 .../grib2/tables/4/4.2.192.228.table | 0 .../grib2/tables/4/4.2.192.229.table | 0 .../grib2/tables/4/4.2.192.23.table | 0 .../grib2/tables/4/4.2.192.230.table | 0 .../grib2/tables/4/4.2.192.231.table | 0 .../grib2/tables/4/4.2.192.232.table | 0 .../grib2/tables/4/4.2.192.233.table | 0 .../grib2/tables/4/4.2.192.234.table | 0 .../grib2/tables/4/4.2.192.235.table | 0 .../grib2/tables/4/4.2.192.236.table | 0 .../grib2/tables/4/4.2.192.237.table | 0 .../grib2/tables/4/4.2.192.238.table | 0 .../grib2/tables/4/4.2.192.239.table | 0 .../grib2/tables/4/4.2.192.24.table | 0 .../grib2/tables/4/4.2.192.240.table | 0 .../grib2/tables/4/4.2.192.241.table | 0 .../grib2/tables/4/4.2.192.242.table | 0 .../grib2/tables/4/4.2.192.243.table | 0 .../grib2/tables/4/4.2.192.244.table | 0 .../grib2/tables/4/4.2.192.245.table | 0 .../grib2/tables/4/4.2.192.246.table | 0 .../grib2/tables/4/4.2.192.247.table | 0 .../grib2/tables/4/4.2.192.248.table | 0 .../grib2/tables/4/4.2.192.249.table | 0 .../grib2/tables/4/4.2.192.25.table | 0 .../grib2/tables/4/4.2.192.250.table | 0 .../grib2/tables/4/4.2.192.251.table | 0 .../grib2/tables/4/4.2.192.252.table | 0 .../grib2/tables/4/4.2.192.253.table | 0 .../grib2/tables/4/4.2.192.254.table | 0 .../grib2/tables/4/4.2.192.255.table | 0 .../grib2/tables/4/4.2.192.26.table | 0 .../grib2/tables/4/4.2.192.27.table | 0 .../grib2/tables/4/4.2.192.28.table | 0 .../grib2/tables/4/4.2.192.29.table | 0 .../grib2/tables/4/4.2.192.3.table | 0 .../grib2/tables/4/4.2.192.30.table | 0 .../grib2/tables/4/4.2.192.31.table | 0 .../grib2/tables/4/4.2.192.32.table | 0 .../grib2/tables/4/4.2.192.33.table | 0 .../grib2/tables/4/4.2.192.34.table | 0 .../grib2/tables/4/4.2.192.35.table | 0 .../grib2/tables/4/4.2.192.36.table | 0 .../grib2/tables/4/4.2.192.37.table | 0 .../grib2/tables/4/4.2.192.38.table | 0 .../grib2/tables/4/4.2.192.39.table | 0 .../grib2/tables/4/4.2.192.4.table | 0 .../grib2/tables/4/4.2.192.40.table | 0 .../grib2/tables/4/4.2.192.41.table | 0 .../grib2/tables/4/4.2.192.42.table | 0 .../grib2/tables/4/4.2.192.43.table | 0 .../grib2/tables/4/4.2.192.44.table | 0 .../grib2/tables/4/4.2.192.45.table | 0 .../grib2/tables/4/4.2.192.46.table | 0 .../grib2/tables/4/4.2.192.47.table | 0 .../grib2/tables/4/4.2.192.48.table | 0 .../grib2/tables/4/4.2.192.49.table | 0 .../grib2/tables/4/4.2.192.5.table | 0 .../grib2/tables/4/4.2.192.50.table | 0 .../grib2/tables/4/4.2.192.51.table | 0 .../grib2/tables/4/4.2.192.52.table | 0 .../grib2/tables/4/4.2.192.53.table | 0 .../grib2/tables/4/4.2.192.54.table | 0 .../grib2/tables/4/4.2.192.55.table | 0 .../grib2/tables/4/4.2.192.56.table | 0 .../grib2/tables/4/4.2.192.57.table | 0 .../grib2/tables/4/4.2.192.58.table | 0 .../grib2/tables/4/4.2.192.59.table | 0 .../grib2/tables/4/4.2.192.6.table | 0 .../grib2/tables/4/4.2.192.60.table | 0 .../grib2/tables/4/4.2.192.61.table | 0 .../grib2/tables/4/4.2.192.62.table | 0 .../grib2/tables/4/4.2.192.63.table | 0 .../grib2/tables/4/4.2.192.64.table | 0 .../grib2/tables/4/4.2.192.65.table | 0 .../grib2/tables/4/4.2.192.66.table | 0 .../grib2/tables/4/4.2.192.67.table | 0 .../grib2/tables/4/4.2.192.68.table | 0 .../grib2/tables/4/4.2.192.69.table | 0 .../grib2/tables/4/4.2.192.7.table | 0 .../grib2/tables/4/4.2.192.70.table | 0 .../grib2/tables/4/4.2.192.71.table | 0 .../grib2/tables/4/4.2.192.72.table | 0 .../grib2/tables/4/4.2.192.73.table | 0 .../grib2/tables/4/4.2.192.74.table | 0 .../grib2/tables/4/4.2.192.75.table | 0 .../grib2/tables/4/4.2.192.76.table | 0 .../grib2/tables/4/4.2.192.77.table | 0 .../grib2/tables/4/4.2.192.78.table | 0 .../grib2/tables/4/4.2.192.79.table | 0 .../grib2/tables/4/4.2.192.8.table | 0 .../grib2/tables/4/4.2.192.80.table | 0 .../grib2/tables/4/4.2.192.81.table | 0 .../grib2/tables/4/4.2.192.82.table | 0 .../grib2/tables/4/4.2.192.83.table | 0 .../grib2/tables/4/4.2.192.84.table | 0 .../grib2/tables/4/4.2.192.85.table | 0 .../grib2/tables/4/4.2.192.86.table | 0 .../grib2/tables/4/4.2.192.87.table | 0 .../grib2/tables/4/4.2.192.88.table | 0 .../grib2/tables/4/4.2.192.89.table | 0 .../grib2/tables/4/4.2.192.9.table | 0 .../grib2/tables/4/4.2.192.90.table | 0 .../grib2/tables/4/4.2.192.91.table | 0 .../grib2/tables/4/4.2.192.92.table | 0 .../grib2/tables/4/4.2.192.93.table | 0 .../grib2/tables/4/4.2.192.94.table | 0 .../grib2/tables/4/4.2.192.95.table | 0 .../grib2/tables/4/4.2.192.96.table | 0 .../grib2/tables/4/4.2.192.97.table | 0 .../grib2/tables/4/4.2.192.98.table | 0 .../grib2/tables/4/4.2.192.99.table | 0 .../grib2/tables/4/4.2.2.0.table | 0 .../grib2/tables/4/4.2.2.3.table | 0 .../grib2/tables/4/4.2.3.0.table | 0 .../grib2/tables/4/4.2.3.1.table | 0 .../grib2/tables/4/4.201.table | 0 .../grib2/tables/4/4.202.table | 0 .../grib2/tables/4/4.203.table | 0 .../grib2/tables/4/4.204.table | 0 .../grib2/tables/4/4.205.table | 0 .../grib2/tables/4/4.206.table | 0 .../grib2/tables/4/4.207.table | 0 .../grib2/tables/4/4.208.table | 0 .../grib2/tables/4/4.209.table | 0 .../grib2/tables/4/4.210.table | 0 .../grib2/tables/4/4.211.table | 0 .../grib2/tables/4/4.212.table | 0 .../grib2/tables/4/4.213.table | 0 .../grib2/tables/4/4.215.table | 0 .../grib2/tables/4/4.216.table | 0 .../grib2/tables/4/4.217.table | 0 .../grib2/tables/4/4.220.table | 0 .../grib2/tables/4/4.221.table | 0 .../grib2/tables/4/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/4/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.40.table | 0 .../grib2/tables/4/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.5.table | 0 .../grib2/tables/4/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/4/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/4/6.0.table | 0 .../grib2/tables/4/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/5/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/5/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/5/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/5/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/5/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/5/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/5/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.0.table | 0 .../grib2/tables/5/4.1.0.table | 0 .../grib2/tables/5/4.1.1.table | 0 .../grib2/tables/5/4.1.10.table | 0 .../grib2/tables/5/4.1.192.table | 0 .../grib2/tables/5/4.1.2.table | 0 .../grib2/tables/5/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.15.table | 0 .../grib2/tables/5/4.151.table | 0 .../grib2/tables/5/4.192.table | 0 .../grib2/tables/5/4.2.0.0.table | 0 .../grib2/tables/5/4.2.0.1.table | 0 .../grib2/tables/5/4.2.0.13.table | 0 .../grib2/tables/5/4.2.0.14.table | 0 .../grib2/tables/5/4.2.0.15.table | 0 .../grib2/tables/5/4.2.0.18.table | 0 .../grib2/tables/5/4.2.0.19.table | 0 .../grib2/tables/5/4.2.0.190.table | 0 .../grib2/tables/5/4.2.0.191.table | 0 .../grib2/tables/5/4.2.0.2.table | 0 .../grib2/tables/5/4.2.0.20.table | 0 .../grib2/tables/5/4.2.0.3.table | 0 .../grib2/tables/5/4.2.0.4.table | 0 .../grib2/tables/5/4.2.0.5.table | 0 .../grib2/tables/5/4.2.0.6.table | 0 .../grib2/tables/5/4.2.0.7.table | 0 .../grib2/tables/5/4.2.1.0.table | 0 .../grib2/tables/5/4.2.1.1.table | 0 .../grib2/tables/5/4.2.10.0.table | 0 .../grib2/tables/5/4.2.10.1.table | 0 .../grib2/tables/5/4.2.10.191.table | 0 .../grib2/tables/5/4.2.10.2.table | 0 .../grib2/tables/5/4.2.10.3.table | 0 .../grib2/tables/5/4.2.10.4.table | 0 .../grib2/tables/5/4.2.192.0.table | 0 .../grib2/tables/5/4.2.192.1.table | 0 .../grib2/tables/5/4.2.192.10.table | 0 .../grib2/tables/5/4.2.192.100.table | 0 .../grib2/tables/5/4.2.192.101.table | 0 .../grib2/tables/5/4.2.192.102.table | 0 .../grib2/tables/5/4.2.192.103.table | 0 .../grib2/tables/5/4.2.192.104.table | 0 .../grib2/tables/5/4.2.192.105.table | 0 .../grib2/tables/5/4.2.192.106.table | 0 .../grib2/tables/5/4.2.192.107.table | 0 .../grib2/tables/5/4.2.192.108.table | 0 .../grib2/tables/5/4.2.192.109.table | 0 .../grib2/tables/5/4.2.192.11.table | 0 .../grib2/tables/5/4.2.192.110.table | 0 .../grib2/tables/5/4.2.192.111.table | 0 .../grib2/tables/5/4.2.192.112.table | 0 .../grib2/tables/5/4.2.192.113.table | 0 .../grib2/tables/5/4.2.192.114.table | 0 .../grib2/tables/5/4.2.192.115.table | 0 .../grib2/tables/5/4.2.192.116.table | 0 .../grib2/tables/5/4.2.192.117.table | 0 .../grib2/tables/5/4.2.192.118.table | 0 .../grib2/tables/5/4.2.192.119.table | 0 .../grib2/tables/5/4.2.192.12.table | 0 .../grib2/tables/5/4.2.192.120.table | 0 .../grib2/tables/5/4.2.192.121.table | 0 .../grib2/tables/5/4.2.192.122.table | 0 .../grib2/tables/5/4.2.192.123.table | 0 .../grib2/tables/5/4.2.192.124.table | 0 .../grib2/tables/5/4.2.192.125.table | 0 .../grib2/tables/5/4.2.192.126.table | 0 .../grib2/tables/5/4.2.192.127.table | 0 .../grib2/tables/5/4.2.192.128.table | 0 .../grib2/tables/5/4.2.192.129.table | 0 .../grib2/tables/5/4.2.192.13.table | 0 .../grib2/tables/5/4.2.192.130.table | 0 .../grib2/tables/5/4.2.192.131.table | 0 .../grib2/tables/5/4.2.192.132.table | 0 .../grib2/tables/5/4.2.192.133.table | 0 .../grib2/tables/5/4.2.192.134.table | 0 .../grib2/tables/5/4.2.192.135.table | 0 .../grib2/tables/5/4.2.192.136.table | 0 .../grib2/tables/5/4.2.192.137.table | 0 .../grib2/tables/5/4.2.192.138.table | 0 .../grib2/tables/5/4.2.192.139.table | 0 .../grib2/tables/5/4.2.192.14.table | 0 .../grib2/tables/5/4.2.192.140.table | 0 .../grib2/tables/5/4.2.192.141.table | 0 .../grib2/tables/5/4.2.192.142.table | 0 .../grib2/tables/5/4.2.192.143.table | 0 .../grib2/tables/5/4.2.192.144.table | 0 .../grib2/tables/5/4.2.192.145.table | 0 .../grib2/tables/5/4.2.192.146.table | 0 .../grib2/tables/5/4.2.192.147.table | 0 .../grib2/tables/5/4.2.192.148.table | 0 .../grib2/tables/5/4.2.192.149.table | 0 .../grib2/tables/5/4.2.192.15.table | 0 .../grib2/tables/5/4.2.192.150.table | 0 .../grib2/tables/5/4.2.192.151.table | 0 .../grib2/tables/5/4.2.192.152.table | 0 .../grib2/tables/5/4.2.192.153.table | 0 .../grib2/tables/5/4.2.192.154.table | 0 .../grib2/tables/5/4.2.192.155.table | 0 .../grib2/tables/5/4.2.192.156.table | 0 .../grib2/tables/5/4.2.192.157.table | 0 .../grib2/tables/5/4.2.192.158.table | 0 .../grib2/tables/5/4.2.192.159.table | 0 .../grib2/tables/5/4.2.192.16.table | 0 .../grib2/tables/5/4.2.192.160.table | 0 .../grib2/tables/5/4.2.192.161.table | 0 .../grib2/tables/5/4.2.192.162.table | 0 .../grib2/tables/5/4.2.192.163.table | 0 .../grib2/tables/5/4.2.192.164.table | 0 .../grib2/tables/5/4.2.192.165.table | 0 .../grib2/tables/5/4.2.192.166.table | 0 .../grib2/tables/5/4.2.192.167.table | 0 .../grib2/tables/5/4.2.192.168.table | 0 .../grib2/tables/5/4.2.192.169.table | 0 .../grib2/tables/5/4.2.192.17.table | 0 .../grib2/tables/5/4.2.192.170.table | 0 .../grib2/tables/5/4.2.192.171.table | 0 .../grib2/tables/5/4.2.192.172.table | 0 .../grib2/tables/5/4.2.192.173.table | 0 .../grib2/tables/5/4.2.192.174.table | 0 .../grib2/tables/5/4.2.192.175.table | 0 .../grib2/tables/5/4.2.192.176.table | 0 .../grib2/tables/5/4.2.192.177.table | 0 .../grib2/tables/5/4.2.192.178.table | 0 .../grib2/tables/5/4.2.192.179.table | 0 .../grib2/tables/5/4.2.192.18.table | 0 .../grib2/tables/5/4.2.192.180.table | 0 .../grib2/tables/5/4.2.192.181.table | 0 .../grib2/tables/5/4.2.192.182.table | 0 .../grib2/tables/5/4.2.192.183.table | 0 .../grib2/tables/5/4.2.192.184.table | 0 .../grib2/tables/5/4.2.192.185.table | 0 .../grib2/tables/5/4.2.192.186.table | 0 .../grib2/tables/5/4.2.192.187.table | 0 .../grib2/tables/5/4.2.192.188.table | 0 .../grib2/tables/5/4.2.192.189.table | 0 .../grib2/tables/5/4.2.192.19.table | 0 .../grib2/tables/5/4.2.192.190.table | 0 .../grib2/tables/5/4.2.192.191.table | 0 .../grib2/tables/5/4.2.192.192.table | 0 .../grib2/tables/5/4.2.192.193.table | 0 .../grib2/tables/5/4.2.192.194.table | 0 .../grib2/tables/5/4.2.192.195.table | 0 .../grib2/tables/5/4.2.192.196.table | 0 .../grib2/tables/5/4.2.192.197.table | 0 .../grib2/tables/5/4.2.192.198.table | 0 .../grib2/tables/5/4.2.192.199.table | 0 .../grib2/tables/5/4.2.192.2.table | 0 .../grib2/tables/5/4.2.192.20.table | 0 .../grib2/tables/5/4.2.192.200.table | 0 .../grib2/tables/5/4.2.192.201.table | 0 .../grib2/tables/5/4.2.192.202.table | 0 .../grib2/tables/5/4.2.192.203.table | 0 .../grib2/tables/5/4.2.192.204.table | 0 .../grib2/tables/5/4.2.192.205.table | 0 .../grib2/tables/5/4.2.192.206.table | 0 .../grib2/tables/5/4.2.192.207.table | 0 .../grib2/tables/5/4.2.192.208.table | 0 .../grib2/tables/5/4.2.192.209.table | 0 .../grib2/tables/5/4.2.192.21.table | 0 .../grib2/tables/5/4.2.192.210.table | 0 .../grib2/tables/5/4.2.192.211.table | 0 .../grib2/tables/5/4.2.192.212.table | 0 .../grib2/tables/5/4.2.192.213.table | 0 .../grib2/tables/5/4.2.192.214.table | 0 .../grib2/tables/5/4.2.192.215.table | 0 .../grib2/tables/5/4.2.192.216.table | 0 .../grib2/tables/5/4.2.192.217.table | 0 .../grib2/tables/5/4.2.192.218.table | 0 .../grib2/tables/5/4.2.192.219.table | 0 .../grib2/tables/5/4.2.192.22.table | 0 .../grib2/tables/5/4.2.192.220.table | 0 .../grib2/tables/5/4.2.192.221.table | 0 .../grib2/tables/5/4.2.192.222.table | 0 .../grib2/tables/5/4.2.192.223.table | 0 .../grib2/tables/5/4.2.192.224.table | 0 .../grib2/tables/5/4.2.192.225.table | 0 .../grib2/tables/5/4.2.192.226.table | 0 .../grib2/tables/5/4.2.192.227.table | 0 .../grib2/tables/5/4.2.192.228.table | 0 .../grib2/tables/5/4.2.192.229.table | 0 .../grib2/tables/5/4.2.192.23.table | 0 .../grib2/tables/5/4.2.192.230.table | 0 .../grib2/tables/5/4.2.192.231.table | 0 .../grib2/tables/5/4.2.192.232.table | 0 .../grib2/tables/5/4.2.192.233.table | 0 .../grib2/tables/5/4.2.192.234.table | 0 .../grib2/tables/5/4.2.192.235.table | 0 .../grib2/tables/5/4.2.192.236.table | 0 .../grib2/tables/5/4.2.192.237.table | 0 .../grib2/tables/5/4.2.192.238.table | 0 .../grib2/tables/5/4.2.192.239.table | 0 .../grib2/tables/5/4.2.192.24.table | 0 .../grib2/tables/5/4.2.192.240.table | 0 .../grib2/tables/5/4.2.192.241.table | 0 .../grib2/tables/5/4.2.192.242.table | 0 .../grib2/tables/5/4.2.192.243.table | 0 .../grib2/tables/5/4.2.192.244.table | 0 .../grib2/tables/5/4.2.192.245.table | 0 .../grib2/tables/5/4.2.192.246.table | 0 .../grib2/tables/5/4.2.192.247.table | 0 .../grib2/tables/5/4.2.192.248.table | 0 .../grib2/tables/5/4.2.192.249.table | 0 .../grib2/tables/5/4.2.192.25.table | 0 .../grib2/tables/5/4.2.192.250.table | 0 .../grib2/tables/5/4.2.192.251.table | 0 .../grib2/tables/5/4.2.192.252.table | 0 .../grib2/tables/5/4.2.192.253.table | 0 .../grib2/tables/5/4.2.192.254.table | 0 .../grib2/tables/5/4.2.192.255.table | 0 .../grib2/tables/5/4.2.192.26.table | 0 .../grib2/tables/5/4.2.192.27.table | 0 .../grib2/tables/5/4.2.192.28.table | 0 .../grib2/tables/5/4.2.192.29.table | 0 .../grib2/tables/5/4.2.192.3.table | 0 .../grib2/tables/5/4.2.192.30.table | 0 .../grib2/tables/5/4.2.192.31.table | 0 .../grib2/tables/5/4.2.192.32.table | 0 .../grib2/tables/5/4.2.192.33.table | 0 .../grib2/tables/5/4.2.192.34.table | 0 .../grib2/tables/5/4.2.192.35.table | 0 .../grib2/tables/5/4.2.192.36.table | 0 .../grib2/tables/5/4.2.192.37.table | 0 .../grib2/tables/5/4.2.192.38.table | 0 .../grib2/tables/5/4.2.192.39.table | 0 .../grib2/tables/5/4.2.192.4.table | 0 .../grib2/tables/5/4.2.192.40.table | 0 .../grib2/tables/5/4.2.192.41.table | 0 .../grib2/tables/5/4.2.192.42.table | 0 .../grib2/tables/5/4.2.192.43.table | 0 .../grib2/tables/5/4.2.192.44.table | 0 .../grib2/tables/5/4.2.192.45.table | 0 .../grib2/tables/5/4.2.192.46.table | 0 .../grib2/tables/5/4.2.192.47.table | 0 .../grib2/tables/5/4.2.192.48.table | 0 .../grib2/tables/5/4.2.192.49.table | 0 .../grib2/tables/5/4.2.192.5.table | 0 .../grib2/tables/5/4.2.192.50.table | 0 .../grib2/tables/5/4.2.192.51.table | 0 .../grib2/tables/5/4.2.192.52.table | 0 .../grib2/tables/5/4.2.192.53.table | 0 .../grib2/tables/5/4.2.192.54.table | 0 .../grib2/tables/5/4.2.192.55.table | 0 .../grib2/tables/5/4.2.192.56.table | 0 .../grib2/tables/5/4.2.192.57.table | 0 .../grib2/tables/5/4.2.192.58.table | 0 .../grib2/tables/5/4.2.192.59.table | 0 .../grib2/tables/5/4.2.192.6.table | 0 .../grib2/tables/5/4.2.192.60.table | 0 .../grib2/tables/5/4.2.192.61.table | 0 .../grib2/tables/5/4.2.192.62.table | 0 .../grib2/tables/5/4.2.192.63.table | 0 .../grib2/tables/5/4.2.192.64.table | 0 .../grib2/tables/5/4.2.192.65.table | 0 .../grib2/tables/5/4.2.192.66.table | 0 .../grib2/tables/5/4.2.192.67.table | 0 .../grib2/tables/5/4.2.192.68.table | 0 .../grib2/tables/5/4.2.192.69.table | 0 .../grib2/tables/5/4.2.192.7.table | 0 .../grib2/tables/5/4.2.192.70.table | 0 .../grib2/tables/5/4.2.192.71.table | 0 .../grib2/tables/5/4.2.192.72.table | 0 .../grib2/tables/5/4.2.192.73.table | 0 .../grib2/tables/5/4.2.192.74.table | 0 .../grib2/tables/5/4.2.192.75.table | 0 .../grib2/tables/5/4.2.192.76.table | 0 .../grib2/tables/5/4.2.192.77.table | 0 .../grib2/tables/5/4.2.192.78.table | 0 .../grib2/tables/5/4.2.192.79.table | 0 .../grib2/tables/5/4.2.192.8.table | 0 .../grib2/tables/5/4.2.192.80.table | 0 .../grib2/tables/5/4.2.192.81.table | 0 .../grib2/tables/5/4.2.192.82.table | 0 .../grib2/tables/5/4.2.192.83.table | 0 .../grib2/tables/5/4.2.192.84.table | 0 .../grib2/tables/5/4.2.192.85.table | 0 .../grib2/tables/5/4.2.192.86.table | 0 .../grib2/tables/5/4.2.192.87.table | 0 .../grib2/tables/5/4.2.192.88.table | 0 .../grib2/tables/5/4.2.192.89.table | 0 .../grib2/tables/5/4.2.192.9.table | 0 .../grib2/tables/5/4.2.192.90.table | 0 .../grib2/tables/5/4.2.192.91.table | 0 .../grib2/tables/5/4.2.192.92.table | 0 .../grib2/tables/5/4.2.192.93.table | 0 .../grib2/tables/5/4.2.192.94.table | 0 .../grib2/tables/5/4.2.192.95.table | 0 .../grib2/tables/5/4.2.192.96.table | 0 .../grib2/tables/5/4.2.192.97.table | 0 .../grib2/tables/5/4.2.192.98.table | 0 .../grib2/tables/5/4.2.192.99.table | 0 .../grib2/tables/5/4.2.2.0.table | 0 .../grib2/tables/5/4.2.2.3.table | 0 .../grib2/tables/5/4.2.3.0.table | 0 .../grib2/tables/5/4.2.3.1.table | 0 .../grib2/tables/5/4.201.table | 0 .../grib2/tables/5/4.202.table | 0 .../grib2/tables/5/4.203.table | 0 .../grib2/tables/5/4.204.table | 0 .../grib2/tables/5/4.205.table | 0 .../grib2/tables/5/4.206.table | 0 .../grib2/tables/5/4.207.table | 0 .../grib2/tables/5/4.208.table | 0 .../grib2/tables/5/4.209.table | 0 .../grib2/tables/5/4.210.table | 0 .../grib2/tables/5/4.211.table | 0 .../grib2/tables/5/4.212.table | 0 .../grib2/tables/5/4.213.table | 0 .../grib2/tables/5/4.215.table | 0 .../grib2/tables/5/4.216.table | 0 .../grib2/tables/5/4.217.table | 0 .../grib2/tables/5/4.218.table | 0 .../grib2/tables/5/4.219.table | 0 .../grib2/tables/5/4.220.table | 0 .../grib2/tables/5/4.221.table | 0 .../grib2/tables/5/4.222.table | 0 .../grib2/tables/5/4.223.table | 0 .../grib2/tables/5/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/5/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.40.table | 0 .../grib2/tables/5/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.5.table | 0 .../grib2/tables/5/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/5/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/5/6.0.table | 0 .../grib2/tables/5/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/6/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/6/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/6/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/6/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/6/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/6/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/6/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.0.table | 0 .../grib2/tables/6/4.1.0.table | 0 .../grib2/tables/6/4.1.1.table | 0 .../grib2/tables/6/4.1.10.table | 0 .../grib2/tables/6/4.1.192.table | 0 .../grib2/tables/6/4.1.2.table | 0 .../grib2/tables/6/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.15.table | 0 .../grib2/tables/6/4.151.table | 0 .../grib2/tables/6/4.192.table | 0 .../grib2/tables/6/4.2.0.0.table | 0 .../grib2/tables/6/4.2.0.1.table | 0 .../grib2/tables/6/4.2.0.13.table | 0 .../grib2/tables/6/4.2.0.14.table | 0 .../grib2/tables/6/4.2.0.15.table | 0 .../grib2/tables/6/4.2.0.16.table | 0 .../grib2/tables/6/4.2.0.18.table | 0 .../grib2/tables/6/4.2.0.19.table | 0 .../grib2/tables/6/4.2.0.190.table | 0 .../grib2/tables/6/4.2.0.191.table | 0 .../grib2/tables/6/4.2.0.2.table | 0 .../grib2/tables/6/4.2.0.20.table | 0 .../grib2/tables/6/4.2.0.3.table | 0 .../grib2/tables/6/4.2.0.4.table | 0 .../grib2/tables/6/4.2.0.5.table | 0 .../grib2/tables/6/4.2.0.6.table | 0 .../grib2/tables/6/4.2.0.7.table | 0 .../grib2/tables/6/4.2.1.0.table | 0 .../grib2/tables/6/4.2.1.1.table | 0 .../grib2/tables/6/4.2.10.0.table | 0 .../grib2/tables/6/4.2.10.1.table | 0 .../grib2/tables/6/4.2.10.191.table | 0 .../grib2/tables/6/4.2.10.2.table | 0 .../grib2/tables/6/4.2.10.3.table | 0 .../grib2/tables/6/4.2.10.4.table | 0 .../grib2/tables/6/4.2.192.0.table | 0 .../grib2/tables/6/4.2.192.1.table | 0 .../grib2/tables/6/4.2.192.10.table | 0 .../grib2/tables/6/4.2.192.100.table | 0 .../grib2/tables/6/4.2.192.101.table | 0 .../grib2/tables/6/4.2.192.102.table | 0 .../grib2/tables/6/4.2.192.103.table | 0 .../grib2/tables/6/4.2.192.104.table | 0 .../grib2/tables/6/4.2.192.105.table | 0 .../grib2/tables/6/4.2.192.106.table | 0 .../grib2/tables/6/4.2.192.107.table | 0 .../grib2/tables/6/4.2.192.108.table | 0 .../grib2/tables/6/4.2.192.109.table | 0 .../grib2/tables/6/4.2.192.11.table | 0 .../grib2/tables/6/4.2.192.110.table | 0 .../grib2/tables/6/4.2.192.111.table | 0 .../grib2/tables/6/4.2.192.112.table | 0 .../grib2/tables/6/4.2.192.113.table | 0 .../grib2/tables/6/4.2.192.114.table | 0 .../grib2/tables/6/4.2.192.115.table | 0 .../grib2/tables/6/4.2.192.116.table | 0 .../grib2/tables/6/4.2.192.117.table | 0 .../grib2/tables/6/4.2.192.118.table | 0 .../grib2/tables/6/4.2.192.119.table | 0 .../grib2/tables/6/4.2.192.12.table | 0 .../grib2/tables/6/4.2.192.120.table | 0 .../grib2/tables/6/4.2.192.121.table | 0 .../grib2/tables/6/4.2.192.122.table | 0 .../grib2/tables/6/4.2.192.123.table | 0 .../grib2/tables/6/4.2.192.124.table | 0 .../grib2/tables/6/4.2.192.125.table | 0 .../grib2/tables/6/4.2.192.126.table | 0 .../grib2/tables/6/4.2.192.127.table | 0 .../grib2/tables/6/4.2.192.128.table | 0 .../grib2/tables/6/4.2.192.129.table | 0 .../grib2/tables/6/4.2.192.13.table | 0 .../grib2/tables/6/4.2.192.130.table | 0 .../grib2/tables/6/4.2.192.131.table | 0 .../grib2/tables/6/4.2.192.132.table | 0 .../grib2/tables/6/4.2.192.133.table | 0 .../grib2/tables/6/4.2.192.134.table | 0 .../grib2/tables/6/4.2.192.135.table | 0 .../grib2/tables/6/4.2.192.136.table | 0 .../grib2/tables/6/4.2.192.137.table | 0 .../grib2/tables/6/4.2.192.138.table | 0 .../grib2/tables/6/4.2.192.139.table | 0 .../grib2/tables/6/4.2.192.14.table | 0 .../grib2/tables/6/4.2.192.140.table | 0 .../grib2/tables/6/4.2.192.141.table | 0 .../grib2/tables/6/4.2.192.142.table | 0 .../grib2/tables/6/4.2.192.143.table | 0 .../grib2/tables/6/4.2.192.144.table | 0 .../grib2/tables/6/4.2.192.145.table | 0 .../grib2/tables/6/4.2.192.146.table | 0 .../grib2/tables/6/4.2.192.147.table | 0 .../grib2/tables/6/4.2.192.148.table | 0 .../grib2/tables/6/4.2.192.149.table | 0 .../grib2/tables/6/4.2.192.15.table | 0 .../grib2/tables/6/4.2.192.150.table | 0 .../grib2/tables/6/4.2.192.151.table | 0 .../grib2/tables/6/4.2.192.152.table | 0 .../grib2/tables/6/4.2.192.153.table | 0 .../grib2/tables/6/4.2.192.154.table | 0 .../grib2/tables/6/4.2.192.155.table | 0 .../grib2/tables/6/4.2.192.156.table | 0 .../grib2/tables/6/4.2.192.157.table | 0 .../grib2/tables/6/4.2.192.158.table | 0 .../grib2/tables/6/4.2.192.159.table | 0 .../grib2/tables/6/4.2.192.16.table | 0 .../grib2/tables/6/4.2.192.160.table | 0 .../grib2/tables/6/4.2.192.161.table | 0 .../grib2/tables/6/4.2.192.162.table | 0 .../grib2/tables/6/4.2.192.163.table | 0 .../grib2/tables/6/4.2.192.164.table | 0 .../grib2/tables/6/4.2.192.165.table | 0 .../grib2/tables/6/4.2.192.166.table | 0 .../grib2/tables/6/4.2.192.167.table | 0 .../grib2/tables/6/4.2.192.168.table | 0 .../grib2/tables/6/4.2.192.169.table | 0 .../grib2/tables/6/4.2.192.17.table | 0 .../grib2/tables/6/4.2.192.170.table | 0 .../grib2/tables/6/4.2.192.171.table | 0 .../grib2/tables/6/4.2.192.172.table | 0 .../grib2/tables/6/4.2.192.173.table | 0 .../grib2/tables/6/4.2.192.174.table | 0 .../grib2/tables/6/4.2.192.175.table | 0 .../grib2/tables/6/4.2.192.176.table | 0 .../grib2/tables/6/4.2.192.177.table | 0 .../grib2/tables/6/4.2.192.178.table | 0 .../grib2/tables/6/4.2.192.179.table | 0 .../grib2/tables/6/4.2.192.18.table | 0 .../grib2/tables/6/4.2.192.180.table | 0 .../grib2/tables/6/4.2.192.181.table | 0 .../grib2/tables/6/4.2.192.182.table | 0 .../grib2/tables/6/4.2.192.183.table | 0 .../grib2/tables/6/4.2.192.184.table | 0 .../grib2/tables/6/4.2.192.185.table | 0 .../grib2/tables/6/4.2.192.186.table | 0 .../grib2/tables/6/4.2.192.187.table | 0 .../grib2/tables/6/4.2.192.188.table | 0 .../grib2/tables/6/4.2.192.189.table | 0 .../grib2/tables/6/4.2.192.19.table | 0 .../grib2/tables/6/4.2.192.190.table | 0 .../grib2/tables/6/4.2.192.191.table | 0 .../grib2/tables/6/4.2.192.192.table | 0 .../grib2/tables/6/4.2.192.193.table | 0 .../grib2/tables/6/4.2.192.194.table | 0 .../grib2/tables/6/4.2.192.195.table | 0 .../grib2/tables/6/4.2.192.196.table | 0 .../grib2/tables/6/4.2.192.197.table | 0 .../grib2/tables/6/4.2.192.198.table | 0 .../grib2/tables/6/4.2.192.199.table | 0 .../grib2/tables/6/4.2.192.2.table | 0 .../grib2/tables/6/4.2.192.20.table | 0 .../grib2/tables/6/4.2.192.200.table | 0 .../grib2/tables/6/4.2.192.201.table | 0 .../grib2/tables/6/4.2.192.202.table | 0 .../grib2/tables/6/4.2.192.203.table | 0 .../grib2/tables/6/4.2.192.204.table | 0 .../grib2/tables/6/4.2.192.205.table | 0 .../grib2/tables/6/4.2.192.206.table | 0 .../grib2/tables/6/4.2.192.207.table | 0 .../grib2/tables/6/4.2.192.208.table | 0 .../grib2/tables/6/4.2.192.209.table | 0 .../grib2/tables/6/4.2.192.21.table | 0 .../grib2/tables/6/4.2.192.210.table | 0 .../grib2/tables/6/4.2.192.211.table | 0 .../grib2/tables/6/4.2.192.212.table | 0 .../grib2/tables/6/4.2.192.213.table | 0 .../grib2/tables/6/4.2.192.214.table | 0 .../grib2/tables/6/4.2.192.215.table | 0 .../grib2/tables/6/4.2.192.216.table | 0 .../grib2/tables/6/4.2.192.217.table | 0 .../grib2/tables/6/4.2.192.218.table | 0 .../grib2/tables/6/4.2.192.219.table | 0 .../grib2/tables/6/4.2.192.22.table | 0 .../grib2/tables/6/4.2.192.220.table | 0 .../grib2/tables/6/4.2.192.221.table | 0 .../grib2/tables/6/4.2.192.222.table | 0 .../grib2/tables/6/4.2.192.223.table | 0 .../grib2/tables/6/4.2.192.224.table | 0 .../grib2/tables/6/4.2.192.225.table | 0 .../grib2/tables/6/4.2.192.226.table | 0 .../grib2/tables/6/4.2.192.227.table | 0 .../grib2/tables/6/4.2.192.228.table | 0 .../grib2/tables/6/4.2.192.229.table | 0 .../grib2/tables/6/4.2.192.23.table | 0 .../grib2/tables/6/4.2.192.230.table | 0 .../grib2/tables/6/4.2.192.231.table | 0 .../grib2/tables/6/4.2.192.232.table | 0 .../grib2/tables/6/4.2.192.233.table | 0 .../grib2/tables/6/4.2.192.234.table | 0 .../grib2/tables/6/4.2.192.235.table | 0 .../grib2/tables/6/4.2.192.236.table | 0 .../grib2/tables/6/4.2.192.237.table | 0 .../grib2/tables/6/4.2.192.238.table | 0 .../grib2/tables/6/4.2.192.239.table | 0 .../grib2/tables/6/4.2.192.24.table | 0 .../grib2/tables/6/4.2.192.240.table | 0 .../grib2/tables/6/4.2.192.241.table | 0 .../grib2/tables/6/4.2.192.242.table | 0 .../grib2/tables/6/4.2.192.243.table | 0 .../grib2/tables/6/4.2.192.244.table | 0 .../grib2/tables/6/4.2.192.245.table | 0 .../grib2/tables/6/4.2.192.246.table | 0 .../grib2/tables/6/4.2.192.247.table | 0 .../grib2/tables/6/4.2.192.248.table | 0 .../grib2/tables/6/4.2.192.249.table | 0 .../grib2/tables/6/4.2.192.25.table | 0 .../grib2/tables/6/4.2.192.250.table | 0 .../grib2/tables/6/4.2.192.251.table | 0 .../grib2/tables/6/4.2.192.252.table | 0 .../grib2/tables/6/4.2.192.253.table | 0 .../grib2/tables/6/4.2.192.254.table | 0 .../grib2/tables/6/4.2.192.255.table | 0 .../grib2/tables/6/4.2.192.26.table | 0 .../grib2/tables/6/4.2.192.27.table | 0 .../grib2/tables/6/4.2.192.28.table | 0 .../grib2/tables/6/4.2.192.29.table | 0 .../grib2/tables/6/4.2.192.3.table | 0 .../grib2/tables/6/4.2.192.30.table | 0 .../grib2/tables/6/4.2.192.31.table | 0 .../grib2/tables/6/4.2.192.32.table | 0 .../grib2/tables/6/4.2.192.33.table | 0 .../grib2/tables/6/4.2.192.34.table | 0 .../grib2/tables/6/4.2.192.35.table | 0 .../grib2/tables/6/4.2.192.36.table | 0 .../grib2/tables/6/4.2.192.37.table | 0 .../grib2/tables/6/4.2.192.38.table | 0 .../grib2/tables/6/4.2.192.39.table | 0 .../grib2/tables/6/4.2.192.4.table | 0 .../grib2/tables/6/4.2.192.40.table | 0 .../grib2/tables/6/4.2.192.41.table | 0 .../grib2/tables/6/4.2.192.42.table | 0 .../grib2/tables/6/4.2.192.43.table | 0 .../grib2/tables/6/4.2.192.44.table | 0 .../grib2/tables/6/4.2.192.45.table | 0 .../grib2/tables/6/4.2.192.46.table | 0 .../grib2/tables/6/4.2.192.47.table | 0 .../grib2/tables/6/4.2.192.48.table | 0 .../grib2/tables/6/4.2.192.49.table | 0 .../grib2/tables/6/4.2.192.5.table | 0 .../grib2/tables/6/4.2.192.50.table | 0 .../grib2/tables/6/4.2.192.51.table | 0 .../grib2/tables/6/4.2.192.52.table | 0 .../grib2/tables/6/4.2.192.53.table | 0 .../grib2/tables/6/4.2.192.54.table | 0 .../grib2/tables/6/4.2.192.55.table | 0 .../grib2/tables/6/4.2.192.56.table | 0 .../grib2/tables/6/4.2.192.57.table | 0 .../grib2/tables/6/4.2.192.58.table | 0 .../grib2/tables/6/4.2.192.59.table | 0 .../grib2/tables/6/4.2.192.6.table | 0 .../grib2/tables/6/4.2.192.60.table | 0 .../grib2/tables/6/4.2.192.61.table | 0 .../grib2/tables/6/4.2.192.62.table | 0 .../grib2/tables/6/4.2.192.63.table | 0 .../grib2/tables/6/4.2.192.64.table | 0 .../grib2/tables/6/4.2.192.65.table | 0 .../grib2/tables/6/4.2.192.66.table | 0 .../grib2/tables/6/4.2.192.67.table | 0 .../grib2/tables/6/4.2.192.68.table | 0 .../grib2/tables/6/4.2.192.69.table | 0 .../grib2/tables/6/4.2.192.7.table | 0 .../grib2/tables/6/4.2.192.70.table | 0 .../grib2/tables/6/4.2.192.71.table | 0 .../grib2/tables/6/4.2.192.72.table | 0 .../grib2/tables/6/4.2.192.73.table | 0 .../grib2/tables/6/4.2.192.74.table | 0 .../grib2/tables/6/4.2.192.75.table | 0 .../grib2/tables/6/4.2.192.76.table | 0 .../grib2/tables/6/4.2.192.77.table | 0 .../grib2/tables/6/4.2.192.78.table | 0 .../grib2/tables/6/4.2.192.79.table | 0 .../grib2/tables/6/4.2.192.8.table | 0 .../grib2/tables/6/4.2.192.80.table | 0 .../grib2/tables/6/4.2.192.81.table | 0 .../grib2/tables/6/4.2.192.82.table | 0 .../grib2/tables/6/4.2.192.83.table | 0 .../grib2/tables/6/4.2.192.84.table | 0 .../grib2/tables/6/4.2.192.85.table | 0 .../grib2/tables/6/4.2.192.86.table | 0 .../grib2/tables/6/4.2.192.87.table | 0 .../grib2/tables/6/4.2.192.88.table | 0 .../grib2/tables/6/4.2.192.89.table | 0 .../grib2/tables/6/4.2.192.9.table | 0 .../grib2/tables/6/4.2.192.90.table | 0 .../grib2/tables/6/4.2.192.91.table | 0 .../grib2/tables/6/4.2.192.92.table | 0 .../grib2/tables/6/4.2.192.93.table | 0 .../grib2/tables/6/4.2.192.94.table | 0 .../grib2/tables/6/4.2.192.95.table | 0 .../grib2/tables/6/4.2.192.96.table | 0 .../grib2/tables/6/4.2.192.97.table | 0 .../grib2/tables/6/4.2.192.98.table | 0 .../grib2/tables/6/4.2.192.99.table | 0 .../grib2/tables/6/4.2.2.0.table | 0 .../grib2/tables/6/4.2.2.3.table | 0 .../grib2/tables/6/4.2.2.4.table | 0 .../grib2/tables/6/4.2.3.0.table | 0 .../grib2/tables/6/4.2.3.1.table | 0 .../grib2/tables/6/4.201.table | 0 .../grib2/tables/6/4.202.table | 0 .../grib2/tables/6/4.203.table | 0 .../grib2/tables/6/4.204.table | 0 .../grib2/tables/6/4.205.table | 0 .../grib2/tables/6/4.206.table | 0 .../grib2/tables/6/4.207.table | 0 .../grib2/tables/6/4.208.table | 0 .../grib2/tables/6/4.209.table | 0 .../grib2/tables/6/4.210.table | 0 .../grib2/tables/6/4.211.table | 0 .../grib2/tables/6/4.212.table | 0 .../grib2/tables/6/4.213.table | 0 .../grib2/tables/6/4.215.table | 0 .../grib2/tables/6/4.216.table | 0 .../grib2/tables/6/4.217.table | 0 .../grib2/tables/6/4.218.table | 0 .../grib2/tables/6/4.219.table | 0 .../grib2/tables/6/4.220.table | 0 .../grib2/tables/6/4.221.table | 0 .../grib2/tables/6/4.222.table | 0 .../grib2/tables/6/4.223.table | 0 .../grib2/tables/6/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/6/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.40.table | 0 .../grib2/tables/6/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.5.table | 0 .../grib2/tables/6/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/6/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/6/6.0.table | 0 .../grib2/tables/6/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/7/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/7/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/7/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/7/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/7/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/7/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/7/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.0.table | 0 .../grib2/tables/7/4.1.0.table | 0 .../grib2/tables/7/4.1.1.table | 0 .../grib2/tables/7/4.1.10.table | 0 .../grib2/tables/7/4.1.192.table | 0 .../grib2/tables/7/4.1.2.table | 0 .../grib2/tables/7/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.15.table | 0 .../grib2/tables/7/4.151.table | 0 .../grib2/tables/7/4.192.table | 0 .../grib2/tables/7/4.2.0.0.table | 0 .../grib2/tables/7/4.2.0.1.table | 0 .../grib2/tables/7/4.2.0.13.table | 0 .../grib2/tables/7/4.2.0.14.table | 0 .../grib2/tables/7/4.2.0.15.table | 0 .../grib2/tables/7/4.2.0.16.table | 0 .../grib2/tables/7/4.2.0.18.table | 0 .../grib2/tables/7/4.2.0.19.table | 0 .../grib2/tables/7/4.2.0.190.table | 0 .../grib2/tables/7/4.2.0.191.table | 0 .../grib2/tables/7/4.2.0.2.table | 0 .../grib2/tables/7/4.2.0.20.table | 0 .../grib2/tables/7/4.2.0.3.table | 0 .../grib2/tables/7/4.2.0.4.table | 0 .../grib2/tables/7/4.2.0.5.table | 0 .../grib2/tables/7/4.2.0.6.table | 0 .../grib2/tables/7/4.2.0.7.table | 0 .../grib2/tables/7/4.2.1.0.table | 0 .../grib2/tables/7/4.2.1.1.table | 0 .../grib2/tables/7/4.2.10.0.table | 0 .../grib2/tables/7/4.2.10.1.table | 0 .../grib2/tables/7/4.2.10.191.table | 0 .../grib2/tables/7/4.2.10.2.table | 0 .../grib2/tables/7/4.2.10.3.table | 0 .../grib2/tables/7/4.2.10.4.table | 0 .../grib2/tables/7/4.2.192.0.table | 0 .../grib2/tables/7/4.2.192.1.table | 0 .../grib2/tables/7/4.2.192.10.table | 0 .../grib2/tables/7/4.2.192.100.table | 0 .../grib2/tables/7/4.2.192.101.table | 0 .../grib2/tables/7/4.2.192.102.table | 0 .../grib2/tables/7/4.2.192.103.table | 0 .../grib2/tables/7/4.2.192.104.table | 0 .../grib2/tables/7/4.2.192.105.table | 0 .../grib2/tables/7/4.2.192.106.table | 0 .../grib2/tables/7/4.2.192.107.table | 0 .../grib2/tables/7/4.2.192.108.table | 0 .../grib2/tables/7/4.2.192.109.table | 0 .../grib2/tables/7/4.2.192.11.table | 0 .../grib2/tables/7/4.2.192.110.table | 0 .../grib2/tables/7/4.2.192.111.table | 0 .../grib2/tables/7/4.2.192.112.table | 0 .../grib2/tables/7/4.2.192.113.table | 0 .../grib2/tables/7/4.2.192.114.table | 0 .../grib2/tables/7/4.2.192.115.table | 0 .../grib2/tables/7/4.2.192.116.table | 0 .../grib2/tables/7/4.2.192.117.table | 0 .../grib2/tables/7/4.2.192.118.table | 0 .../grib2/tables/7/4.2.192.119.table | 0 .../grib2/tables/7/4.2.192.12.table | 0 .../grib2/tables/7/4.2.192.120.table | 0 .../grib2/tables/7/4.2.192.121.table | 0 .../grib2/tables/7/4.2.192.122.table | 0 .../grib2/tables/7/4.2.192.123.table | 0 .../grib2/tables/7/4.2.192.124.table | 0 .../grib2/tables/7/4.2.192.125.table | 0 .../grib2/tables/7/4.2.192.126.table | 0 .../grib2/tables/7/4.2.192.127.table | 0 .../grib2/tables/7/4.2.192.128.table | 0 .../grib2/tables/7/4.2.192.129.table | 0 .../grib2/tables/7/4.2.192.13.table | 0 .../grib2/tables/7/4.2.192.130.table | 0 .../grib2/tables/7/4.2.192.131.table | 0 .../grib2/tables/7/4.2.192.132.table | 0 .../grib2/tables/7/4.2.192.133.table | 0 .../grib2/tables/7/4.2.192.134.table | 0 .../grib2/tables/7/4.2.192.135.table | 0 .../grib2/tables/7/4.2.192.136.table | 0 .../grib2/tables/7/4.2.192.137.table | 0 .../grib2/tables/7/4.2.192.138.table | 0 .../grib2/tables/7/4.2.192.139.table | 0 .../grib2/tables/7/4.2.192.14.table | 0 .../grib2/tables/7/4.2.192.140.table | 0 .../grib2/tables/7/4.2.192.141.table | 0 .../grib2/tables/7/4.2.192.142.table | 0 .../grib2/tables/7/4.2.192.143.table | 0 .../grib2/tables/7/4.2.192.144.table | 0 .../grib2/tables/7/4.2.192.145.table | 0 .../grib2/tables/7/4.2.192.146.table | 0 .../grib2/tables/7/4.2.192.147.table | 0 .../grib2/tables/7/4.2.192.148.table | 0 .../grib2/tables/7/4.2.192.149.table | 0 .../grib2/tables/7/4.2.192.15.table | 0 .../grib2/tables/7/4.2.192.150.table | 0 .../grib2/tables/7/4.2.192.151.table | 0 .../grib2/tables/7/4.2.192.152.table | 0 .../grib2/tables/7/4.2.192.153.table | 0 .../grib2/tables/7/4.2.192.154.table | 0 .../grib2/tables/7/4.2.192.155.table | 0 .../grib2/tables/7/4.2.192.156.table | 0 .../grib2/tables/7/4.2.192.157.table | 0 .../grib2/tables/7/4.2.192.158.table | 0 .../grib2/tables/7/4.2.192.159.table | 0 .../grib2/tables/7/4.2.192.16.table | 0 .../grib2/tables/7/4.2.192.160.table | 0 .../grib2/tables/7/4.2.192.161.table | 0 .../grib2/tables/7/4.2.192.162.table | 0 .../grib2/tables/7/4.2.192.163.table | 0 .../grib2/tables/7/4.2.192.164.table | 0 .../grib2/tables/7/4.2.192.165.table | 0 .../grib2/tables/7/4.2.192.166.table | 0 .../grib2/tables/7/4.2.192.167.table | 0 .../grib2/tables/7/4.2.192.168.table | 0 .../grib2/tables/7/4.2.192.169.table | 0 .../grib2/tables/7/4.2.192.17.table | 0 .../grib2/tables/7/4.2.192.170.table | 0 .../grib2/tables/7/4.2.192.171.table | 0 .../grib2/tables/7/4.2.192.172.table | 0 .../grib2/tables/7/4.2.192.173.table | 0 .../grib2/tables/7/4.2.192.174.table | 0 .../grib2/tables/7/4.2.192.175.table | 0 .../grib2/tables/7/4.2.192.176.table | 0 .../grib2/tables/7/4.2.192.177.table | 0 .../grib2/tables/7/4.2.192.178.table | 0 .../grib2/tables/7/4.2.192.179.table | 0 .../grib2/tables/7/4.2.192.18.table | 0 .../grib2/tables/7/4.2.192.180.table | 0 .../grib2/tables/7/4.2.192.181.table | 0 .../grib2/tables/7/4.2.192.182.table | 0 .../grib2/tables/7/4.2.192.183.table | 0 .../grib2/tables/7/4.2.192.184.table | 0 .../grib2/tables/7/4.2.192.185.table | 0 .../grib2/tables/7/4.2.192.186.table | 0 .../grib2/tables/7/4.2.192.187.table | 0 .../grib2/tables/7/4.2.192.188.table | 0 .../grib2/tables/7/4.2.192.189.table | 0 .../grib2/tables/7/4.2.192.19.table | 0 .../grib2/tables/7/4.2.192.190.table | 0 .../grib2/tables/7/4.2.192.191.table | 0 .../grib2/tables/7/4.2.192.192.table | 0 .../grib2/tables/7/4.2.192.193.table | 0 .../grib2/tables/7/4.2.192.194.table | 0 .../grib2/tables/7/4.2.192.195.table | 0 .../grib2/tables/7/4.2.192.196.table | 0 .../grib2/tables/7/4.2.192.197.table | 0 .../grib2/tables/7/4.2.192.198.table | 0 .../grib2/tables/7/4.2.192.199.table | 0 .../grib2/tables/7/4.2.192.2.table | 0 .../grib2/tables/7/4.2.192.20.table | 0 .../grib2/tables/7/4.2.192.200.table | 0 .../grib2/tables/7/4.2.192.201.table | 0 .../grib2/tables/7/4.2.192.202.table | 0 .../grib2/tables/7/4.2.192.203.table | 0 .../grib2/tables/7/4.2.192.204.table | 0 .../grib2/tables/7/4.2.192.205.table | 0 .../grib2/tables/7/4.2.192.206.table | 0 .../grib2/tables/7/4.2.192.207.table | 0 .../grib2/tables/7/4.2.192.208.table | 0 .../grib2/tables/7/4.2.192.209.table | 0 .../grib2/tables/7/4.2.192.21.table | 0 .../grib2/tables/7/4.2.192.210.table | 0 .../grib2/tables/7/4.2.192.211.table | 0 .../grib2/tables/7/4.2.192.212.table | 0 .../grib2/tables/7/4.2.192.213.table | 0 .../grib2/tables/7/4.2.192.214.table | 0 .../grib2/tables/7/4.2.192.215.table | 0 .../grib2/tables/7/4.2.192.216.table | 0 .../grib2/tables/7/4.2.192.217.table | 0 .../grib2/tables/7/4.2.192.218.table | 0 .../grib2/tables/7/4.2.192.219.table | 0 .../grib2/tables/7/4.2.192.22.table | 0 .../grib2/tables/7/4.2.192.220.table | 0 .../grib2/tables/7/4.2.192.221.table | 0 .../grib2/tables/7/4.2.192.222.table | 0 .../grib2/tables/7/4.2.192.223.table | 0 .../grib2/tables/7/4.2.192.224.table | 0 .../grib2/tables/7/4.2.192.225.table | 0 .../grib2/tables/7/4.2.192.226.table | 0 .../grib2/tables/7/4.2.192.227.table | 0 .../grib2/tables/7/4.2.192.228.table | 0 .../grib2/tables/7/4.2.192.229.table | 0 .../grib2/tables/7/4.2.192.23.table | 0 .../grib2/tables/7/4.2.192.230.table | 0 .../grib2/tables/7/4.2.192.231.table | 0 .../grib2/tables/7/4.2.192.232.table | 0 .../grib2/tables/7/4.2.192.233.table | 0 .../grib2/tables/7/4.2.192.234.table | 0 .../grib2/tables/7/4.2.192.235.table | 0 .../grib2/tables/7/4.2.192.236.table | 0 .../grib2/tables/7/4.2.192.237.table | 0 .../grib2/tables/7/4.2.192.238.table | 0 .../grib2/tables/7/4.2.192.239.table | 0 .../grib2/tables/7/4.2.192.24.table | 0 .../grib2/tables/7/4.2.192.240.table | 0 .../grib2/tables/7/4.2.192.241.table | 0 .../grib2/tables/7/4.2.192.242.table | 0 .../grib2/tables/7/4.2.192.243.table | 0 .../grib2/tables/7/4.2.192.244.table | 0 .../grib2/tables/7/4.2.192.245.table | 0 .../grib2/tables/7/4.2.192.246.table | 0 .../grib2/tables/7/4.2.192.247.table | 0 .../grib2/tables/7/4.2.192.248.table | 0 .../grib2/tables/7/4.2.192.249.table | 0 .../grib2/tables/7/4.2.192.25.table | 0 .../grib2/tables/7/4.2.192.250.table | 0 .../grib2/tables/7/4.2.192.251.table | 0 .../grib2/tables/7/4.2.192.252.table | 0 .../grib2/tables/7/4.2.192.253.table | 0 .../grib2/tables/7/4.2.192.254.table | 0 .../grib2/tables/7/4.2.192.255.table | 0 .../grib2/tables/7/4.2.192.26.table | 0 .../grib2/tables/7/4.2.192.27.table | 0 .../grib2/tables/7/4.2.192.28.table | 0 .../grib2/tables/7/4.2.192.29.table | 0 .../grib2/tables/7/4.2.192.3.table | 0 .../grib2/tables/7/4.2.192.30.table | 0 .../grib2/tables/7/4.2.192.31.table | 0 .../grib2/tables/7/4.2.192.32.table | 0 .../grib2/tables/7/4.2.192.33.table | 0 .../grib2/tables/7/4.2.192.34.table | 0 .../grib2/tables/7/4.2.192.35.table | 0 .../grib2/tables/7/4.2.192.36.table | 0 .../grib2/tables/7/4.2.192.37.table | 0 .../grib2/tables/7/4.2.192.38.table | 0 .../grib2/tables/7/4.2.192.39.table | 0 .../grib2/tables/7/4.2.192.4.table | 0 .../grib2/tables/7/4.2.192.40.table | 0 .../grib2/tables/7/4.2.192.41.table | 0 .../grib2/tables/7/4.2.192.42.table | 0 .../grib2/tables/7/4.2.192.43.table | 0 .../grib2/tables/7/4.2.192.44.table | 0 .../grib2/tables/7/4.2.192.45.table | 0 .../grib2/tables/7/4.2.192.46.table | 0 .../grib2/tables/7/4.2.192.47.table | 0 .../grib2/tables/7/4.2.192.48.table | 0 .../grib2/tables/7/4.2.192.49.table | 0 .../grib2/tables/7/4.2.192.5.table | 0 .../grib2/tables/7/4.2.192.50.table | 0 .../grib2/tables/7/4.2.192.51.table | 0 .../grib2/tables/7/4.2.192.52.table | 0 .../grib2/tables/7/4.2.192.53.table | 0 .../grib2/tables/7/4.2.192.54.table | 0 .../grib2/tables/7/4.2.192.55.table | 0 .../grib2/tables/7/4.2.192.56.table | 0 .../grib2/tables/7/4.2.192.57.table | 0 .../grib2/tables/7/4.2.192.58.table | 0 .../grib2/tables/7/4.2.192.59.table | 0 .../grib2/tables/7/4.2.192.6.table | 0 .../grib2/tables/7/4.2.192.60.table | 0 .../grib2/tables/7/4.2.192.61.table | 0 .../grib2/tables/7/4.2.192.62.table | 0 .../grib2/tables/7/4.2.192.63.table | 0 .../grib2/tables/7/4.2.192.64.table | 0 .../grib2/tables/7/4.2.192.65.table | 0 .../grib2/tables/7/4.2.192.66.table | 0 .../grib2/tables/7/4.2.192.67.table | 0 .../grib2/tables/7/4.2.192.68.table | 0 .../grib2/tables/7/4.2.192.69.table | 0 .../grib2/tables/7/4.2.192.7.table | 0 .../grib2/tables/7/4.2.192.70.table | 0 .../grib2/tables/7/4.2.192.71.table | 0 .../grib2/tables/7/4.2.192.72.table | 0 .../grib2/tables/7/4.2.192.73.table | 0 .../grib2/tables/7/4.2.192.74.table | 0 .../grib2/tables/7/4.2.192.75.table | 0 .../grib2/tables/7/4.2.192.76.table | 0 .../grib2/tables/7/4.2.192.77.table | 0 .../grib2/tables/7/4.2.192.78.table | 0 .../grib2/tables/7/4.2.192.79.table | 0 .../grib2/tables/7/4.2.192.8.table | 0 .../grib2/tables/7/4.2.192.80.table | 0 .../grib2/tables/7/4.2.192.81.table | 0 .../grib2/tables/7/4.2.192.82.table | 0 .../grib2/tables/7/4.2.192.83.table | 0 .../grib2/tables/7/4.2.192.84.table | 0 .../grib2/tables/7/4.2.192.85.table | 0 .../grib2/tables/7/4.2.192.86.table | 0 .../grib2/tables/7/4.2.192.87.table | 0 .../grib2/tables/7/4.2.192.88.table | 0 .../grib2/tables/7/4.2.192.89.table | 0 .../grib2/tables/7/4.2.192.9.table | 0 .../grib2/tables/7/4.2.192.90.table | 0 .../grib2/tables/7/4.2.192.91.table | 0 .../grib2/tables/7/4.2.192.92.table | 0 .../grib2/tables/7/4.2.192.93.table | 0 .../grib2/tables/7/4.2.192.94.table | 0 .../grib2/tables/7/4.2.192.95.table | 0 .../grib2/tables/7/4.2.192.96.table | 0 .../grib2/tables/7/4.2.192.97.table | 0 .../grib2/tables/7/4.2.192.98.table | 0 .../grib2/tables/7/4.2.192.99.table | 0 .../grib2/tables/7/4.2.2.0.table | 0 .../grib2/tables/7/4.2.2.3.table | 0 .../grib2/tables/7/4.2.2.4.table | 0 .../grib2/tables/7/4.2.3.0.table | 0 .../grib2/tables/7/4.2.3.1.table | 0 .../grib2/tables/7/4.201.table | 0 .../grib2/tables/7/4.202.table | 0 .../grib2/tables/7/4.203.table | 0 .../grib2/tables/7/4.204.table | 0 .../grib2/tables/7/4.205.table | 0 .../grib2/tables/7/4.206.table | 0 .../grib2/tables/7/4.207.table | 0 .../grib2/tables/7/4.208.table | 0 .../grib2/tables/7/4.209.table | 0 .../grib2/tables/7/4.210.table | 0 .../grib2/tables/7/4.211.table | 0 .../grib2/tables/7/4.212.table | 0 .../grib2/tables/7/4.213.table | 0 .../grib2/tables/7/4.215.table | 0 .../grib2/tables/7/4.216.table | 0 .../grib2/tables/7/4.217.table | 0 .../grib2/tables/7/4.218.table | 0 .../grib2/tables/7/4.219.table | 0 .../grib2/tables/7/4.220.table | 0 .../grib2/tables/7/4.221.table | 0 .../grib2/tables/7/4.222.table | 0 .../grib2/tables/7/4.223.table | 0 .../grib2/tables/7/4.224.table | 0 .../grib2/tables/7/4.230.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/7/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.40.table | 0 .../grib2/tables/7/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.5.table | 0 .../grib2/tables/7/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/7/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/7/6.0.table | 0 .../grib2/tables/7/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/8/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/8/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/8/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/8/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/8/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/8/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/8/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.0.table | 0 .../grib2/tables/8/4.1.0.table | 0 .../grib2/tables/8/4.1.1.table | 0 .../grib2/tables/8/4.1.10.table | 0 .../grib2/tables/8/4.1.192.table | 0 .../grib2/tables/8/4.1.2.table | 0 .../grib2/tables/8/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.15.table | 0 .../grib2/tables/8/4.151.table | 0 .../grib2/tables/8/4.192.table | 0 .../grib2/tables/8/4.2.0.0.table | 0 .../grib2/tables/8/4.2.0.1.table | 0 .../grib2/tables/8/4.2.0.13.table | 0 .../grib2/tables/8/4.2.0.14.table | 0 .../grib2/tables/8/4.2.0.15.table | 0 .../grib2/tables/8/4.2.0.16.table | 0 .../grib2/tables/8/4.2.0.18.table | 0 .../grib2/tables/8/4.2.0.19.table | 0 .../grib2/tables/8/4.2.0.190.table | 0 .../grib2/tables/8/4.2.0.191.table | 0 .../grib2/tables/8/4.2.0.2.table | 0 .../grib2/tables/8/4.2.0.20.table | 0 .../grib2/tables/8/4.2.0.3.table | 0 .../grib2/tables/8/4.2.0.4.table | 0 .../grib2/tables/8/4.2.0.5.table | 0 .../grib2/tables/8/4.2.0.6.table | 0 .../grib2/tables/8/4.2.0.7.table | 0 .../grib2/tables/8/4.2.1.0.table | 0 .../grib2/tables/8/4.2.1.1.table | 0 .../grib2/tables/8/4.2.1.2.table | 0 .../grib2/tables/8/4.2.10.0.table | 0 .../grib2/tables/8/4.2.10.1.table | 0 .../grib2/tables/8/4.2.10.191.table | 0 .../grib2/tables/8/4.2.10.2.table | 0 .../grib2/tables/8/4.2.10.3.table | 0 .../grib2/tables/8/4.2.10.4.table | 0 .../grib2/tables/8/4.2.192.0.table | 0 .../grib2/tables/8/4.2.192.1.table | 0 .../grib2/tables/8/4.2.192.10.table | 0 .../grib2/tables/8/4.2.192.100.table | 0 .../grib2/tables/8/4.2.192.101.table | 0 .../grib2/tables/8/4.2.192.102.table | 0 .../grib2/tables/8/4.2.192.103.table | 0 .../grib2/tables/8/4.2.192.104.table | 0 .../grib2/tables/8/4.2.192.105.table | 0 .../grib2/tables/8/4.2.192.106.table | 0 .../grib2/tables/8/4.2.192.107.table | 0 .../grib2/tables/8/4.2.192.108.table | 0 .../grib2/tables/8/4.2.192.109.table | 0 .../grib2/tables/8/4.2.192.11.table | 0 .../grib2/tables/8/4.2.192.110.table | 0 .../grib2/tables/8/4.2.192.111.table | 0 .../grib2/tables/8/4.2.192.112.table | 0 .../grib2/tables/8/4.2.192.113.table | 0 .../grib2/tables/8/4.2.192.114.table | 0 .../grib2/tables/8/4.2.192.115.table | 0 .../grib2/tables/8/4.2.192.116.table | 0 .../grib2/tables/8/4.2.192.117.table | 0 .../grib2/tables/8/4.2.192.118.table | 0 .../grib2/tables/8/4.2.192.119.table | 0 .../grib2/tables/8/4.2.192.12.table | 0 .../grib2/tables/8/4.2.192.120.table | 0 .../grib2/tables/8/4.2.192.121.table | 0 .../grib2/tables/8/4.2.192.122.table | 0 .../grib2/tables/8/4.2.192.123.table | 0 .../grib2/tables/8/4.2.192.124.table | 0 .../grib2/tables/8/4.2.192.125.table | 0 .../grib2/tables/8/4.2.192.126.table | 0 .../grib2/tables/8/4.2.192.127.table | 0 .../grib2/tables/8/4.2.192.128.table | 0 .../grib2/tables/8/4.2.192.129.table | 0 .../grib2/tables/8/4.2.192.13.table | 0 .../grib2/tables/8/4.2.192.130.table | 0 .../grib2/tables/8/4.2.192.131.table | 0 .../grib2/tables/8/4.2.192.132.table | 0 .../grib2/tables/8/4.2.192.133.table | 0 .../grib2/tables/8/4.2.192.134.table | 0 .../grib2/tables/8/4.2.192.135.table | 0 .../grib2/tables/8/4.2.192.136.table | 0 .../grib2/tables/8/4.2.192.137.table | 0 .../grib2/tables/8/4.2.192.138.table | 0 .../grib2/tables/8/4.2.192.139.table | 0 .../grib2/tables/8/4.2.192.14.table | 0 .../grib2/tables/8/4.2.192.140.table | 0 .../grib2/tables/8/4.2.192.141.table | 0 .../grib2/tables/8/4.2.192.142.table | 0 .../grib2/tables/8/4.2.192.143.table | 0 .../grib2/tables/8/4.2.192.144.table | 0 .../grib2/tables/8/4.2.192.145.table | 0 .../grib2/tables/8/4.2.192.146.table | 0 .../grib2/tables/8/4.2.192.147.table | 0 .../grib2/tables/8/4.2.192.148.table | 0 .../grib2/tables/8/4.2.192.149.table | 0 .../grib2/tables/8/4.2.192.15.table | 0 .../grib2/tables/8/4.2.192.150.table | 0 .../grib2/tables/8/4.2.192.151.table | 0 .../grib2/tables/8/4.2.192.152.table | 0 .../grib2/tables/8/4.2.192.153.table | 0 .../grib2/tables/8/4.2.192.154.table | 0 .../grib2/tables/8/4.2.192.155.table | 0 .../grib2/tables/8/4.2.192.156.table | 0 .../grib2/tables/8/4.2.192.157.table | 0 .../grib2/tables/8/4.2.192.158.table | 0 .../grib2/tables/8/4.2.192.159.table | 0 .../grib2/tables/8/4.2.192.16.table | 0 .../grib2/tables/8/4.2.192.160.table | 0 .../grib2/tables/8/4.2.192.161.table | 0 .../grib2/tables/8/4.2.192.162.table | 0 .../grib2/tables/8/4.2.192.163.table | 0 .../grib2/tables/8/4.2.192.164.table | 0 .../grib2/tables/8/4.2.192.165.table | 0 .../grib2/tables/8/4.2.192.166.table | 0 .../grib2/tables/8/4.2.192.167.table | 0 .../grib2/tables/8/4.2.192.168.table | 0 .../grib2/tables/8/4.2.192.169.table | 0 .../grib2/tables/8/4.2.192.17.table | 0 .../grib2/tables/8/4.2.192.170.table | 0 .../grib2/tables/8/4.2.192.171.table | 0 .../grib2/tables/8/4.2.192.172.table | 0 .../grib2/tables/8/4.2.192.173.table | 0 .../grib2/tables/8/4.2.192.174.table | 0 .../grib2/tables/8/4.2.192.175.table | 0 .../grib2/tables/8/4.2.192.176.table | 0 .../grib2/tables/8/4.2.192.177.table | 0 .../grib2/tables/8/4.2.192.178.table | 0 .../grib2/tables/8/4.2.192.179.table | 0 .../grib2/tables/8/4.2.192.18.table | 0 .../grib2/tables/8/4.2.192.180.table | 0 .../grib2/tables/8/4.2.192.181.table | 0 .../grib2/tables/8/4.2.192.182.table | 0 .../grib2/tables/8/4.2.192.183.table | 0 .../grib2/tables/8/4.2.192.184.table | 0 .../grib2/tables/8/4.2.192.185.table | 0 .../grib2/tables/8/4.2.192.186.table | 0 .../grib2/tables/8/4.2.192.187.table | 0 .../grib2/tables/8/4.2.192.188.table | 0 .../grib2/tables/8/4.2.192.189.table | 0 .../grib2/tables/8/4.2.192.19.table | 0 .../grib2/tables/8/4.2.192.190.table | 0 .../grib2/tables/8/4.2.192.191.table | 0 .../grib2/tables/8/4.2.192.192.table | 0 .../grib2/tables/8/4.2.192.193.table | 0 .../grib2/tables/8/4.2.192.194.table | 0 .../grib2/tables/8/4.2.192.195.table | 0 .../grib2/tables/8/4.2.192.196.table | 0 .../grib2/tables/8/4.2.192.197.table | 0 .../grib2/tables/8/4.2.192.198.table | 0 .../grib2/tables/8/4.2.192.199.table | 0 .../grib2/tables/8/4.2.192.2.table | 0 .../grib2/tables/8/4.2.192.20.table | 0 .../grib2/tables/8/4.2.192.200.table | 0 .../grib2/tables/8/4.2.192.201.table | 0 .../grib2/tables/8/4.2.192.202.table | 0 .../grib2/tables/8/4.2.192.203.table | 0 .../grib2/tables/8/4.2.192.204.table | 0 .../grib2/tables/8/4.2.192.205.table | 0 .../grib2/tables/8/4.2.192.206.table | 0 .../grib2/tables/8/4.2.192.207.table | 0 .../grib2/tables/8/4.2.192.208.table | 0 .../grib2/tables/8/4.2.192.209.table | 0 .../grib2/tables/8/4.2.192.21.table | 0 .../grib2/tables/8/4.2.192.210.table | 0 .../grib2/tables/8/4.2.192.211.table | 0 .../grib2/tables/8/4.2.192.212.table | 0 .../grib2/tables/8/4.2.192.213.table | 0 .../grib2/tables/8/4.2.192.214.table | 0 .../grib2/tables/8/4.2.192.215.table | 0 .../grib2/tables/8/4.2.192.216.table | 0 .../grib2/tables/8/4.2.192.217.table | 0 .../grib2/tables/8/4.2.192.218.table | 0 .../grib2/tables/8/4.2.192.219.table | 0 .../grib2/tables/8/4.2.192.22.table | 0 .../grib2/tables/8/4.2.192.220.table | 0 .../grib2/tables/8/4.2.192.221.table | 0 .../grib2/tables/8/4.2.192.222.table | 0 .../grib2/tables/8/4.2.192.223.table | 0 .../grib2/tables/8/4.2.192.224.table | 0 .../grib2/tables/8/4.2.192.225.table | 0 .../grib2/tables/8/4.2.192.226.table | 0 .../grib2/tables/8/4.2.192.227.table | 0 .../grib2/tables/8/4.2.192.228.table | 0 .../grib2/tables/8/4.2.192.229.table | 0 .../grib2/tables/8/4.2.192.23.table | 0 .../grib2/tables/8/4.2.192.230.table | 0 .../grib2/tables/8/4.2.192.231.table | 0 .../grib2/tables/8/4.2.192.232.table | 0 .../grib2/tables/8/4.2.192.233.table | 0 .../grib2/tables/8/4.2.192.234.table | 0 .../grib2/tables/8/4.2.192.235.table | 0 .../grib2/tables/8/4.2.192.236.table | 0 .../grib2/tables/8/4.2.192.237.table | 0 .../grib2/tables/8/4.2.192.238.table | 0 .../grib2/tables/8/4.2.192.239.table | 0 .../grib2/tables/8/4.2.192.24.table | 0 .../grib2/tables/8/4.2.192.240.table | 0 .../grib2/tables/8/4.2.192.241.table | 0 .../grib2/tables/8/4.2.192.242.table | 0 .../grib2/tables/8/4.2.192.243.table | 0 .../grib2/tables/8/4.2.192.244.table | 0 .../grib2/tables/8/4.2.192.245.table | 0 .../grib2/tables/8/4.2.192.246.table | 0 .../grib2/tables/8/4.2.192.247.table | 0 .../grib2/tables/8/4.2.192.248.table | 0 .../grib2/tables/8/4.2.192.249.table | 0 .../grib2/tables/8/4.2.192.25.table | 0 .../grib2/tables/8/4.2.192.250.table | 0 .../grib2/tables/8/4.2.192.251.table | 0 .../grib2/tables/8/4.2.192.252.table | 0 .../grib2/tables/8/4.2.192.253.table | 0 .../grib2/tables/8/4.2.192.254.table | 0 .../grib2/tables/8/4.2.192.255.table | 0 .../grib2/tables/8/4.2.192.26.table | 0 .../grib2/tables/8/4.2.192.27.table | 0 .../grib2/tables/8/4.2.192.28.table | 0 .../grib2/tables/8/4.2.192.29.table | 0 .../grib2/tables/8/4.2.192.3.table | 0 .../grib2/tables/8/4.2.192.30.table | 0 .../grib2/tables/8/4.2.192.31.table | 0 .../grib2/tables/8/4.2.192.32.table | 0 .../grib2/tables/8/4.2.192.33.table | 0 .../grib2/tables/8/4.2.192.34.table | 0 .../grib2/tables/8/4.2.192.35.table | 0 .../grib2/tables/8/4.2.192.36.table | 0 .../grib2/tables/8/4.2.192.37.table | 0 .../grib2/tables/8/4.2.192.38.table | 0 .../grib2/tables/8/4.2.192.39.table | 0 .../grib2/tables/8/4.2.192.4.table | 0 .../grib2/tables/8/4.2.192.40.table | 0 .../grib2/tables/8/4.2.192.41.table | 0 .../grib2/tables/8/4.2.192.42.table | 0 .../grib2/tables/8/4.2.192.43.table | 0 .../grib2/tables/8/4.2.192.44.table | 0 .../grib2/tables/8/4.2.192.45.table | 0 .../grib2/tables/8/4.2.192.46.table | 0 .../grib2/tables/8/4.2.192.47.table | 0 .../grib2/tables/8/4.2.192.48.table | 0 .../grib2/tables/8/4.2.192.49.table | 0 .../grib2/tables/8/4.2.192.5.table | 0 .../grib2/tables/8/4.2.192.50.table | 0 .../grib2/tables/8/4.2.192.51.table | 0 .../grib2/tables/8/4.2.192.52.table | 0 .../grib2/tables/8/4.2.192.53.table | 0 .../grib2/tables/8/4.2.192.54.table | 0 .../grib2/tables/8/4.2.192.55.table | 0 .../grib2/tables/8/4.2.192.56.table | 0 .../grib2/tables/8/4.2.192.57.table | 0 .../grib2/tables/8/4.2.192.58.table | 0 .../grib2/tables/8/4.2.192.59.table | 0 .../grib2/tables/8/4.2.192.6.table | 0 .../grib2/tables/8/4.2.192.60.table | 0 .../grib2/tables/8/4.2.192.61.table | 0 .../grib2/tables/8/4.2.192.62.table | 0 .../grib2/tables/8/4.2.192.63.table | 0 .../grib2/tables/8/4.2.192.64.table | 0 .../grib2/tables/8/4.2.192.65.table | 0 .../grib2/tables/8/4.2.192.66.table | 0 .../grib2/tables/8/4.2.192.67.table | 0 .../grib2/tables/8/4.2.192.68.table | 0 .../grib2/tables/8/4.2.192.69.table | 0 .../grib2/tables/8/4.2.192.7.table | 0 .../grib2/tables/8/4.2.192.70.table | 0 .../grib2/tables/8/4.2.192.71.table | 0 .../grib2/tables/8/4.2.192.72.table | 0 .../grib2/tables/8/4.2.192.73.table | 0 .../grib2/tables/8/4.2.192.74.table | 0 .../grib2/tables/8/4.2.192.75.table | 0 .../grib2/tables/8/4.2.192.76.table | 0 .../grib2/tables/8/4.2.192.77.table | 0 .../grib2/tables/8/4.2.192.78.table | 0 .../grib2/tables/8/4.2.192.79.table | 0 .../grib2/tables/8/4.2.192.8.table | 0 .../grib2/tables/8/4.2.192.80.table | 0 .../grib2/tables/8/4.2.192.81.table | 0 .../grib2/tables/8/4.2.192.82.table | 0 .../grib2/tables/8/4.2.192.83.table | 0 .../grib2/tables/8/4.2.192.84.table | 0 .../grib2/tables/8/4.2.192.85.table | 0 .../grib2/tables/8/4.2.192.86.table | 0 .../grib2/tables/8/4.2.192.87.table | 0 .../grib2/tables/8/4.2.192.88.table | 0 .../grib2/tables/8/4.2.192.89.table | 0 .../grib2/tables/8/4.2.192.9.table | 0 .../grib2/tables/8/4.2.192.90.table | 0 .../grib2/tables/8/4.2.192.91.table | 0 .../grib2/tables/8/4.2.192.92.table | 0 .../grib2/tables/8/4.2.192.93.table | 0 .../grib2/tables/8/4.2.192.94.table | 0 .../grib2/tables/8/4.2.192.95.table | 0 .../grib2/tables/8/4.2.192.96.table | 0 .../grib2/tables/8/4.2.192.97.table | 0 .../grib2/tables/8/4.2.192.98.table | 0 .../grib2/tables/8/4.2.192.99.table | 0 .../grib2/tables/8/4.2.2.0.table | 0 .../grib2/tables/8/4.2.2.3.table | 0 .../grib2/tables/8/4.2.2.4.table | 0 .../grib2/tables/8/4.2.3.0.table | 0 .../grib2/tables/8/4.2.3.1.table | 0 .../grib2/tables/8/4.201.table | 0 .../grib2/tables/8/4.202.table | 0 .../grib2/tables/8/4.203.table | 0 .../grib2/tables/8/4.204.table | 0 .../grib2/tables/8/4.205.table | 0 .../grib2/tables/8/4.206.table | 0 .../grib2/tables/8/4.207.table | 0 .../grib2/tables/8/4.208.table | 0 .../grib2/tables/8/4.209.table | 0 .../grib2/tables/8/4.210.table | 0 .../grib2/tables/8/4.211.table | 0 .../grib2/tables/8/4.212.table | 0 .../grib2/tables/8/4.213.table | 0 .../grib2/tables/8/4.215.table | 0 .../grib2/tables/8/4.216.table | 0 .../grib2/tables/8/4.217.table | 0 .../grib2/tables/8/4.218.table | 0 .../grib2/tables/8/4.219.table | 0 .../grib2/tables/8/4.220.table | 0 .../grib2/tables/8/4.221.table | 0 .../grib2/tables/8/4.222.table | 0 .../grib2/tables/8/4.223.table | 0 .../grib2/tables/8/4.224.table | 0 .../grib2/tables/8/4.230.table | 0 .../grib2/tables/8/4.233.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/8/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.40.table | 0 .../grib2/tables/8/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.5.table | 0 .../grib2/tables/8/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/8/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/8/6.0.table | 0 .../grib2/tables/8/stepType.table | 0 .../{definitions => definitions.save}/grib2/tables/9/0.0.table | 0 .../{definitions => definitions.save}/grib2/tables/9/1.0.table | 0 .../{definitions => definitions.save}/grib2/tables/9/1.1.table | 0 .../{definitions => definitions.save}/grib2/tables/9/1.2.table | 0 .../{definitions => definitions.save}/grib2/tables/9/1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/9/1.4.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.0.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.1.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.10.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.11.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.15.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.2.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.20.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.21.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.3.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.4.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.5.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.6.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.7.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.8.table | 0 .../{definitions => definitions.save}/grib2/tables/9/3.9.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.0.table | 0 .../grib2/tables/9/4.1.0.table | 0 .../grib2/tables/9/4.1.1.table | 0 .../grib2/tables/9/4.1.10.table | 0 .../grib2/tables/9/4.1.192.table | 0 .../grib2/tables/9/4.1.2.table | 0 .../grib2/tables/9/4.1.3.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.1.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.10.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.11.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.12.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.13.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.14.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.15.table | 0 .../grib2/tables/9/4.151.table | 0 .../grib2/tables/9/4.192.table | 0 .../grib2/tables/9/4.2.0.0.table | 0 .../grib2/tables/9/4.2.0.1.table | 0 .../grib2/tables/9/4.2.0.13.table | 0 .../grib2/tables/9/4.2.0.14.table | 0 .../grib2/tables/9/4.2.0.15.table | 0 .../grib2/tables/9/4.2.0.16.table | 0 .../grib2/tables/9/4.2.0.18.table | 0 .../grib2/tables/9/4.2.0.19.table | 0 .../grib2/tables/9/4.2.0.190.table | 0 .../grib2/tables/9/4.2.0.191.table | 0 .../grib2/tables/9/4.2.0.2.table | 0 .../grib2/tables/9/4.2.0.20.table | 0 .../grib2/tables/9/4.2.0.3.table | 0 .../grib2/tables/9/4.2.0.4.table | 0 .../grib2/tables/9/4.2.0.5.table | 0 .../grib2/tables/9/4.2.0.6.table | 0 .../grib2/tables/9/4.2.0.7.table | 0 .../grib2/tables/9/4.2.1.0.table | 0 .../grib2/tables/9/4.2.1.1.table | 0 .../grib2/tables/9/4.2.1.2.table | 0 .../grib2/tables/9/4.2.10.0.table | 0 .../grib2/tables/9/4.2.10.1.table | 0 .../grib2/tables/9/4.2.10.191.table | 0 .../grib2/tables/9/4.2.10.2.table | 0 .../grib2/tables/9/4.2.10.3.table | 0 .../grib2/tables/9/4.2.10.4.table | 0 .../grib2/tables/9/4.2.192.0.table | 0 .../grib2/tables/9/4.2.192.1.table | 0 .../grib2/tables/9/4.2.192.10.table | 0 .../grib2/tables/9/4.2.192.100.table | 0 .../grib2/tables/9/4.2.192.101.table | 0 .../grib2/tables/9/4.2.192.102.table | 0 .../grib2/tables/9/4.2.192.103.table | 0 .../grib2/tables/9/4.2.192.104.table | 0 .../grib2/tables/9/4.2.192.105.table | 0 .../grib2/tables/9/4.2.192.106.table | 0 .../grib2/tables/9/4.2.192.107.table | 0 .../grib2/tables/9/4.2.192.108.table | 0 .../grib2/tables/9/4.2.192.109.table | 0 .../grib2/tables/9/4.2.192.11.table | 0 .../grib2/tables/9/4.2.192.110.table | 0 .../grib2/tables/9/4.2.192.111.table | 0 .../grib2/tables/9/4.2.192.112.table | 0 .../grib2/tables/9/4.2.192.113.table | 0 .../grib2/tables/9/4.2.192.114.table | 0 .../grib2/tables/9/4.2.192.115.table | 0 .../grib2/tables/9/4.2.192.116.table | 0 .../grib2/tables/9/4.2.192.117.table | 0 .../grib2/tables/9/4.2.192.118.table | 0 .../grib2/tables/9/4.2.192.119.table | 0 .../grib2/tables/9/4.2.192.12.table | 0 .../grib2/tables/9/4.2.192.120.table | 0 .../grib2/tables/9/4.2.192.121.table | 0 .../grib2/tables/9/4.2.192.122.table | 0 .../grib2/tables/9/4.2.192.123.table | 0 .../grib2/tables/9/4.2.192.124.table | 0 .../grib2/tables/9/4.2.192.125.table | 0 .../grib2/tables/9/4.2.192.126.table | 0 .../grib2/tables/9/4.2.192.127.table | 0 .../grib2/tables/9/4.2.192.128.table | 0 .../grib2/tables/9/4.2.192.129.table | 0 .../grib2/tables/9/4.2.192.13.table | 0 .../grib2/tables/9/4.2.192.130.table | 0 .../grib2/tables/9/4.2.192.131.table | 0 .../grib2/tables/9/4.2.192.132.table | 0 .../grib2/tables/9/4.2.192.133.table | 0 .../grib2/tables/9/4.2.192.134.table | 0 .../grib2/tables/9/4.2.192.135.table | 0 .../grib2/tables/9/4.2.192.136.table | 0 .../grib2/tables/9/4.2.192.137.table | 0 .../grib2/tables/9/4.2.192.138.table | 0 .../grib2/tables/9/4.2.192.139.table | 0 .../grib2/tables/9/4.2.192.14.table | 0 .../grib2/tables/9/4.2.192.140.table | 0 .../grib2/tables/9/4.2.192.141.table | 0 .../grib2/tables/9/4.2.192.142.table | 0 .../grib2/tables/9/4.2.192.143.table | 0 .../grib2/tables/9/4.2.192.144.table | 0 .../grib2/tables/9/4.2.192.145.table | 0 .../grib2/tables/9/4.2.192.146.table | 0 .../grib2/tables/9/4.2.192.147.table | 0 .../grib2/tables/9/4.2.192.148.table | 0 .../grib2/tables/9/4.2.192.149.table | 0 .../grib2/tables/9/4.2.192.15.table | 0 .../grib2/tables/9/4.2.192.150.table | 0 .../grib2/tables/9/4.2.192.151.table | 0 .../grib2/tables/9/4.2.192.152.table | 0 .../grib2/tables/9/4.2.192.153.table | 0 .../grib2/tables/9/4.2.192.154.table | 0 .../grib2/tables/9/4.2.192.155.table | 0 .../grib2/tables/9/4.2.192.156.table | 0 .../grib2/tables/9/4.2.192.157.table | 0 .../grib2/tables/9/4.2.192.158.table | 0 .../grib2/tables/9/4.2.192.159.table | 0 .../grib2/tables/9/4.2.192.16.table | 0 .../grib2/tables/9/4.2.192.160.table | 0 .../grib2/tables/9/4.2.192.161.table | 0 .../grib2/tables/9/4.2.192.162.table | 0 .../grib2/tables/9/4.2.192.163.table | 0 .../grib2/tables/9/4.2.192.164.table | 0 .../grib2/tables/9/4.2.192.165.table | 0 .../grib2/tables/9/4.2.192.166.table | 0 .../grib2/tables/9/4.2.192.167.table | 0 .../grib2/tables/9/4.2.192.168.table | 0 .../grib2/tables/9/4.2.192.169.table | 0 .../grib2/tables/9/4.2.192.17.table | 0 .../grib2/tables/9/4.2.192.170.table | 0 .../grib2/tables/9/4.2.192.171.table | 0 .../grib2/tables/9/4.2.192.172.table | 0 .../grib2/tables/9/4.2.192.173.table | 0 .../grib2/tables/9/4.2.192.174.table | 0 .../grib2/tables/9/4.2.192.175.table | 0 .../grib2/tables/9/4.2.192.176.table | 0 .../grib2/tables/9/4.2.192.177.table | 0 .../grib2/tables/9/4.2.192.178.table | 0 .../grib2/tables/9/4.2.192.179.table | 0 .../grib2/tables/9/4.2.192.18.table | 0 .../grib2/tables/9/4.2.192.180.table | 0 .../grib2/tables/9/4.2.192.181.table | 0 .../grib2/tables/9/4.2.192.182.table | 0 .../grib2/tables/9/4.2.192.183.table | 0 .../grib2/tables/9/4.2.192.184.table | 0 .../grib2/tables/9/4.2.192.185.table | 0 .../grib2/tables/9/4.2.192.186.table | 0 .../grib2/tables/9/4.2.192.187.table | 0 .../grib2/tables/9/4.2.192.188.table | 0 .../grib2/tables/9/4.2.192.189.table | 0 .../grib2/tables/9/4.2.192.19.table | 0 .../grib2/tables/9/4.2.192.190.table | 0 .../grib2/tables/9/4.2.192.191.table | 0 .../grib2/tables/9/4.2.192.192.table | 0 .../grib2/tables/9/4.2.192.193.table | 0 .../grib2/tables/9/4.2.192.194.table | 0 .../grib2/tables/9/4.2.192.195.table | 0 .../grib2/tables/9/4.2.192.196.table | 0 .../grib2/tables/9/4.2.192.197.table | 0 .../grib2/tables/9/4.2.192.198.table | 0 .../grib2/tables/9/4.2.192.199.table | 0 .../grib2/tables/9/4.2.192.2.table | 0 .../grib2/tables/9/4.2.192.20.table | 0 .../grib2/tables/9/4.2.192.200.table | 0 .../grib2/tables/9/4.2.192.201.table | 0 .../grib2/tables/9/4.2.192.202.table | 0 .../grib2/tables/9/4.2.192.203.table | 0 .../grib2/tables/9/4.2.192.204.table | 0 .../grib2/tables/9/4.2.192.205.table | 0 .../grib2/tables/9/4.2.192.206.table | 0 .../grib2/tables/9/4.2.192.207.table | 0 .../grib2/tables/9/4.2.192.208.table | 0 .../grib2/tables/9/4.2.192.209.table | 0 .../grib2/tables/9/4.2.192.21.table | 0 .../grib2/tables/9/4.2.192.210.table | 0 .../grib2/tables/9/4.2.192.211.table | 0 .../grib2/tables/9/4.2.192.212.table | 0 .../grib2/tables/9/4.2.192.213.table | 0 .../grib2/tables/9/4.2.192.214.table | 0 .../grib2/tables/9/4.2.192.215.table | 0 .../grib2/tables/9/4.2.192.216.table | 0 .../grib2/tables/9/4.2.192.217.table | 0 .../grib2/tables/9/4.2.192.218.table | 0 .../grib2/tables/9/4.2.192.219.table | 0 .../grib2/tables/9/4.2.192.22.table | 0 .../grib2/tables/9/4.2.192.220.table | 0 .../grib2/tables/9/4.2.192.221.table | 0 .../grib2/tables/9/4.2.192.222.table | 0 .../grib2/tables/9/4.2.192.223.table | 0 .../grib2/tables/9/4.2.192.224.table | 0 .../grib2/tables/9/4.2.192.225.table | 0 .../grib2/tables/9/4.2.192.226.table | 0 .../grib2/tables/9/4.2.192.227.table | 0 .../grib2/tables/9/4.2.192.228.table | 0 .../grib2/tables/9/4.2.192.229.table | 0 .../grib2/tables/9/4.2.192.23.table | 0 .../grib2/tables/9/4.2.192.230.table | 0 .../grib2/tables/9/4.2.192.231.table | 0 .../grib2/tables/9/4.2.192.232.table | 0 .../grib2/tables/9/4.2.192.233.table | 0 .../grib2/tables/9/4.2.192.234.table | 0 .../grib2/tables/9/4.2.192.235.table | 0 .../grib2/tables/9/4.2.192.236.table | 0 .../grib2/tables/9/4.2.192.237.table | 0 .../grib2/tables/9/4.2.192.238.table | 0 .../grib2/tables/9/4.2.192.239.table | 0 .../grib2/tables/9/4.2.192.24.table | 0 .../grib2/tables/9/4.2.192.240.table | 0 .../grib2/tables/9/4.2.192.241.table | 0 .../grib2/tables/9/4.2.192.242.table | 0 .../grib2/tables/9/4.2.192.243.table | 0 .../grib2/tables/9/4.2.192.244.table | 0 .../grib2/tables/9/4.2.192.245.table | 0 .../grib2/tables/9/4.2.192.246.table | 0 .../grib2/tables/9/4.2.192.247.table | 0 .../grib2/tables/9/4.2.192.248.table | 0 .../grib2/tables/9/4.2.192.249.table | 0 .../grib2/tables/9/4.2.192.25.table | 0 .../grib2/tables/9/4.2.192.250.table | 0 .../grib2/tables/9/4.2.192.251.table | 0 .../grib2/tables/9/4.2.192.252.table | 0 .../grib2/tables/9/4.2.192.253.table | 0 .../grib2/tables/9/4.2.192.254.table | 0 .../grib2/tables/9/4.2.192.255.table | 0 .../grib2/tables/9/4.2.192.26.table | 0 .../grib2/tables/9/4.2.192.27.table | 0 .../grib2/tables/9/4.2.192.28.table | 0 .../grib2/tables/9/4.2.192.29.table | 0 .../grib2/tables/9/4.2.192.3.table | 0 .../grib2/tables/9/4.2.192.30.table | 0 .../grib2/tables/9/4.2.192.31.table | 0 .../grib2/tables/9/4.2.192.32.table | 0 .../grib2/tables/9/4.2.192.33.table | 0 .../grib2/tables/9/4.2.192.34.table | 0 .../grib2/tables/9/4.2.192.35.table | 0 .../grib2/tables/9/4.2.192.36.table | 0 .../grib2/tables/9/4.2.192.37.table | 0 .../grib2/tables/9/4.2.192.38.table | 0 .../grib2/tables/9/4.2.192.39.table | 0 .../grib2/tables/9/4.2.192.4.table | 0 .../grib2/tables/9/4.2.192.40.table | 0 .../grib2/tables/9/4.2.192.41.table | 0 .../grib2/tables/9/4.2.192.42.table | 0 .../grib2/tables/9/4.2.192.43.table | 0 .../grib2/tables/9/4.2.192.44.table | 0 .../grib2/tables/9/4.2.192.45.table | 0 .../grib2/tables/9/4.2.192.46.table | 0 .../grib2/tables/9/4.2.192.47.table | 0 .../grib2/tables/9/4.2.192.48.table | 0 .../grib2/tables/9/4.2.192.49.table | 0 .../grib2/tables/9/4.2.192.5.table | 0 .../grib2/tables/9/4.2.192.50.table | 0 .../grib2/tables/9/4.2.192.51.table | 0 .../grib2/tables/9/4.2.192.52.table | 0 .../grib2/tables/9/4.2.192.53.table | 0 .../grib2/tables/9/4.2.192.54.table | 0 .../grib2/tables/9/4.2.192.55.table | 0 .../grib2/tables/9/4.2.192.56.table | 0 .../grib2/tables/9/4.2.192.57.table | 0 .../grib2/tables/9/4.2.192.58.table | 0 .../grib2/tables/9/4.2.192.59.table | 0 .../grib2/tables/9/4.2.192.6.table | 0 .../grib2/tables/9/4.2.192.60.table | 0 .../grib2/tables/9/4.2.192.61.table | 0 .../grib2/tables/9/4.2.192.62.table | 0 .../grib2/tables/9/4.2.192.63.table | 0 .../grib2/tables/9/4.2.192.64.table | 0 .../grib2/tables/9/4.2.192.65.table | 0 .../grib2/tables/9/4.2.192.66.table | 0 .../grib2/tables/9/4.2.192.67.table | 0 .../grib2/tables/9/4.2.192.68.table | 0 .../grib2/tables/9/4.2.192.69.table | 0 .../grib2/tables/9/4.2.192.7.table | 0 .../grib2/tables/9/4.2.192.70.table | 0 .../grib2/tables/9/4.2.192.71.table | 0 .../grib2/tables/9/4.2.192.72.table | 0 .../grib2/tables/9/4.2.192.73.table | 0 .../grib2/tables/9/4.2.192.74.table | 0 .../grib2/tables/9/4.2.192.75.table | 0 .../grib2/tables/9/4.2.192.76.table | 0 .../grib2/tables/9/4.2.192.77.table | 0 .../grib2/tables/9/4.2.192.78.table | 0 .../grib2/tables/9/4.2.192.79.table | 0 .../grib2/tables/9/4.2.192.8.table | 0 .../grib2/tables/9/4.2.192.80.table | 0 .../grib2/tables/9/4.2.192.81.table | 0 .../grib2/tables/9/4.2.192.82.table | 0 .../grib2/tables/9/4.2.192.83.table | 0 .../grib2/tables/9/4.2.192.84.table | 0 .../grib2/tables/9/4.2.192.85.table | 0 .../grib2/tables/9/4.2.192.86.table | 0 .../grib2/tables/9/4.2.192.87.table | 0 .../grib2/tables/9/4.2.192.88.table | 0 .../grib2/tables/9/4.2.192.89.table | 0 .../grib2/tables/9/4.2.192.9.table | 0 .../grib2/tables/9/4.2.192.90.table | 0 .../grib2/tables/9/4.2.192.91.table | 0 .../grib2/tables/9/4.2.192.92.table | 0 .../grib2/tables/9/4.2.192.93.table | 0 .../grib2/tables/9/4.2.192.94.table | 0 .../grib2/tables/9/4.2.192.95.table | 0 .../grib2/tables/9/4.2.192.96.table | 0 .../grib2/tables/9/4.2.192.97.table | 0 .../grib2/tables/9/4.2.192.98.table | 0 .../grib2/tables/9/4.2.192.99.table | 0 .../grib2/tables/9/4.2.2.0.table | 0 .../grib2/tables/9/4.2.2.3.table | 0 .../grib2/tables/9/4.2.2.4.table | 0 .../grib2/tables/9/4.2.3.0.table | 0 .../grib2/tables/9/4.2.3.1.table | 0 .../grib2/tables/9/4.201.table | 0 .../grib2/tables/9/4.202.table | 0 .../grib2/tables/9/4.203.table | 0 .../grib2/tables/9/4.204.table | 0 .../grib2/tables/9/4.205.table | 0 .../grib2/tables/9/4.206.table | 0 .../grib2/tables/9/4.207.table | 0 .../grib2/tables/9/4.208.table | 0 .../grib2/tables/9/4.209.table | 0 .../grib2/tables/9/4.210.table | 0 .../grib2/tables/9/4.211.table | 0 .../grib2/tables/9/4.212.table | 0 .../grib2/tables/9/4.213.table | 0 .../grib2/tables/9/4.215.table | 0 .../grib2/tables/9/4.216.table | 0 .../grib2/tables/9/4.217.table | 0 .../grib2/tables/9/4.218.table | 0 .../grib2/tables/9/4.219.table | 0 .../grib2/tables/9/4.220.table | 0 .../grib2/tables/9/4.221.table | 0 .../grib2/tables/9/4.222.table | 0 .../grib2/tables/9/4.223.table | 0 .../grib2/tables/9/4.224.table | 0 .../grib2/tables/9/4.227.table | 0 .../grib2/tables/9/4.230.table | 0 .../grib2/tables/9/4.233.table | 0 .../grib2/tables/9/4.234.table | 0 .../grib2/tables/9/4.235.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.3.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.4.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.5.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.6.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.7.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.8.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.9.table | 0 .../{definitions => definitions.save}/grib2/tables/9/4.91.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.0.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.1.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.2.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.3.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.4.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.40.table | 0 .../grib2/tables/9/5.40000.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.5.table | 0 .../grib2/tables/9/5.50002.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.6.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.7.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.8.table | 0 .../{definitions => definitions.save}/grib2/tables/9/5.9.table | 0 .../{definitions => definitions.save}/grib2/tables/9/6.0.table | 0 .../grib2/tables/9/stepType.table | 0 .../grib2/tables/local/ecmf/1.1.table | 0 .../grib2/tables/local/ecmf/1/4.2.0.20.table | 0 .../grib2/tables/local/ecmf/1/4.2.2.0.table | 0 .../grib2/tables/local/ecmf/1/4.230.table | 0 .../grib2/tables/local/ecmf/1/4.233.table | 0 .../grib2/tables/local/ecmf/4/1.2.table | 0 .../grib2/tables/local/ecmf/obstat.1.0.table | 0 .../grib2/tables/local/ecmf/obstat.10.0.table | 0 .../grib2/tables/local/ecmf/obstat.11.0.table | 0 .../grib2/tables/local/ecmf/obstat.2.0.table | 0 .../grib2/tables/local/ecmf/obstat.3.0.table | 0 .../grib2/tables/local/ecmf/obstat.4.0.table | 0 .../grib2/tables/local/ecmf/obstat.5.0.table | 0 .../grib2/tables/local/ecmf/obstat.6.0.table | 0 .../grib2/tables/local/ecmf/obstat.7.0.table | 0 .../grib2/tables/local/ecmf/obstat.8.0.table | 0 .../grib2/tables/local/ecmf/obstat.9.0.table | 0 .../grib2/tables/local/ecmf/obstat.reporttype.table | 0 .../grib2/tables/local/ecmf/obstat.varno.table | 0 .../grib2/tables/local/edzw/1.1.table | 0 .../grib2/tables/local/edzw/1/1.4.table | 0 .../grib2/tables/local/edzw/1/4.0.table | 0 .../grib2/tables/local/edzw/1/4.1.0.table | 0 .../grib2/tables/local/edzw/1/4.11.table | 0 .../grib2/tables/local/edzw/1/4.2.0.0.table | 0 .../grib2/tables/local/edzw/1/4.2.0.1.table | 0 .../grib2/tables/local/edzw/1/4.2.0.13.table | 0 .../grib2/tables/local/edzw/1/4.2.0.14.table | 0 .../grib2/tables/local/edzw/1/4.2.0.15.table | 0 .../grib2/tables/local/edzw/1/4.2.0.16.table | 0 .../grib2/tables/local/edzw/1/4.2.0.17.table | 0 .../grib2/tables/local/edzw/1/4.2.0.18.table | 0 .../grib2/tables/local/edzw/1/4.2.0.19.table | 0 .../grib2/tables/local/edzw/1/4.2.0.191.table | 0 .../grib2/tables/local/edzw/1/4.2.0.192.table | 0 .../grib2/tables/local/edzw/1/4.2.0.193.table | 0 .../grib2/tables/local/edzw/1/4.2.0.194.table | 0 .../grib2/tables/local/edzw/1/4.2.0.195.table | 0 .../grib2/tables/local/edzw/1/4.2.0.196.table | 0 .../grib2/tables/local/edzw/1/4.2.0.197.table | 0 .../grib2/tables/local/edzw/1/4.2.0.198.table | 0 .../grib2/tables/local/edzw/1/4.2.0.199.table | 0 .../grib2/tables/local/edzw/1/4.2.0.2.table | 0 .../grib2/tables/local/edzw/1/4.2.0.20.table | 0 .../grib2/tables/local/edzw/1/4.2.0.254.table | 0 .../grib2/tables/local/edzw/1/4.2.0.3.table | 0 .../grib2/tables/local/edzw/1/4.2.0.4.table | 0 .../grib2/tables/local/edzw/1/4.2.0.5.table | 0 .../grib2/tables/local/edzw/1/4.2.0.6.table | 0 .../grib2/tables/local/edzw/1/4.2.0.7.table | 0 .../grib2/tables/local/edzw/1/4.2.1.0.table | 0 .../grib2/tables/local/edzw/1/4.2.10.0.table | 0 .../grib2/tables/local/edzw/1/4.2.10.3.table | 0 .../grib2/tables/local/edzw/1/4.2.2.0.table | 0 .../grib2/tables/local/edzw/1/4.2.2.3.table | 0 .../grib2/tables/local/edzw/1/4.2.215.19.table | 0 .../grib2/tables/local/edzw/1/4.2.215.2.table | 0 .../grib2/tables/local/edzw/1/4.2.215.5.table | 0 .../grib2/tables/local/edzw/1/4.2.215.7.table | 0 .../grib2/tables/local/edzw/1/4.2.3.0.table | 0 .../grib2/tables/local/edzw/1/4.2.3.1.table | 0 .../grib2/tables/local/edzw/1/4.3.table | 0 .../grib2/tables/local/edzw/1/4.5.table | 0 .../grib2/tables/local/edzw/1/4.6.table | 0 .../grib2/tables/local/edzw/1/4.7.table | 0 .../grib2/tables/local/edzw/1/4.9.table | 0 .../grib2/tables/local/edzw/1/backgroundProcess.table | 0 .../grib2/tables/local/edzw/1/generatingProcessIdentifier.table | 0 .../grib2/tables/local/kwbc/1/4.5.table | 0 .../{definitions => definitions.save}/grib2/template.1.0.def | 0 .../{definitions => definitions.save}/grib2/template.1.1.def | 0 .../{definitions => definitions.save}/grib2/template.1.2.def | 0 .../grib2/template.1.calendar.def | 0 .../grib2/template.1.offset.def | 0 .../{definitions => definitions.save}/grib2/template.3.0.def | 0 .../{definitions => definitions.save}/grib2/template.3.1.def | 0 .../{definitions => definitions.save}/grib2/template.3.10.def | 0 .../{definitions => definitions.save}/grib2/template.3.100.def | 0 .../{definitions => definitions.save}/grib2/template.3.1000.def | 0 .../{definitions => definitions.save}/grib2/template.3.101.def | 0 .../{definitions => definitions.save}/grib2/template.3.110.def | 0 .../{definitions => definitions.save}/grib2/template.3.1100.def | 0 .../{definitions => definitions.save}/grib2/template.3.12.def | 0 .../{definitions => definitions.save}/grib2/template.3.120.def | 0 .../{definitions => definitions.save}/grib2/template.3.1200.def | 0 .../{definitions => definitions.save}/grib2/template.3.13.def | 0 .../{definitions => definitions.save}/grib2/template.3.130.def | 0 .../{definitions => definitions.save}/grib2/template.3.140.def | 0 .../{definitions => definitions.save}/grib2/template.3.2.def | 0 .../{definitions => definitions.save}/grib2/template.3.20.def | 0 .../{definitions => definitions.save}/grib2/template.3.23.def | 0 .../{definitions => definitions.save}/grib2/template.3.3.def | 0 .../{definitions => definitions.save}/grib2/template.3.30.def | 0 .../{definitions => definitions.save}/grib2/template.3.31.def | 0 .../grib2/template.3.32769.def | 2 +- .../{definitions => definitions.save}/grib2/template.3.33.def | 0 .../{definitions => definitions.save}/grib2/template.3.4.def | 0 .../{definitions => definitions.save}/grib2/template.3.40.def | 0 .../{definitions => definitions.save}/grib2/template.3.41.def | 0 .../{definitions => definitions.save}/grib2/template.3.42.def | 0 .../{definitions => definitions.save}/grib2/template.3.43.def | 0 .../{definitions => definitions.save}/grib2/template.3.5.def | 0 .../{definitions => definitions.save}/grib2/template.3.50.def | 0 .../{definitions => definitions.save}/grib2/template.3.51.def | 0 .../{definitions => definitions.save}/grib2/template.3.52.def | 0 .../{definitions => definitions.save}/grib2/template.3.53.def | 0 .../{definitions => definitions.save}/grib2/template.3.61.def | 0 .../{definitions => definitions.save}/grib2/template.3.62.def | 0 .../{definitions => definitions.save}/grib2/template.3.63.def | 0 .../{definitions => definitions.save}/grib2/template.3.90.def | 0 .../{definitions => definitions.save}/grib2/template.3.bf.def | 0 .../grib2/template.3.gaussian.def | 0 .../{definitions => definitions.save}/grib2/template.3.grid.def | 0 .../{definitions => definitions.save}/grib2/template.3.lam.def | 0 .../grib2/template.3.latlon.def | 0 .../grib2/template.3.latlon_vares.def | 0 .../grib2/template.3.resolution_flags.def | 0 .../grib2/template.3.rotation.def | 0 .../grib2/template.3.scanning_mode.def | 0 .../grib2/template.3.shape_of_the_earth.def | 0 .../grib2/template.3.spherical_harmonics.def | 0 .../grib2/template.3.stretching.def | 0 .../{definitions => definitions.save}/grib2/template.4.0.def | 0 .../{definitions => definitions.save}/grib2/template.4.1.def | 0 .../{definitions => definitions.save}/grib2/template.4.10.def | 0 .../{definitions => definitions.save}/grib2/template.4.1000.def | 0 .../{definitions => definitions.save}/grib2/template.4.1001.def | 0 .../{definitions => definitions.save}/grib2/template.4.1002.def | 0 .../{definitions => definitions.save}/grib2/template.4.11.def | 0 .../{definitions => definitions.save}/grib2/template.4.1100.def | 0 .../{definitions => definitions.save}/grib2/template.4.1101.def | 0 .../{definitions => definitions.save}/grib2/template.4.12.def | 0 .../{definitions => definitions.save}/grib2/template.4.13.def | 0 .../{definitions => definitions.save}/grib2/template.4.14.def | 0 .../{definitions => definitions.save}/grib2/template.4.15.def | 0 .../{definitions => definitions.save}/grib2/template.4.2.def | 0 .../{definitions => definitions.save}/grib2/template.4.20.def | 0 .../{definitions => definitions.save}/grib2/template.4.2000.def | 0 .../{definitions => definitions.save}/grib2/template.4.254.def | 0 .../{definitions => definitions.save}/grib2/template.4.3.def | 0 .../{definitions => definitions.save}/grib2/template.4.30.def | 0 .../{definitions => definitions.save}/grib2/template.4.31.def | 0 .../{definitions => definitions.save}/grib2/template.4.311.def | 0 .../{definitions => definitions.save}/grib2/template.4.32.def | 0 .../{definitions => definitions.save}/grib2/template.4.33.def | 0 .../{definitions => definitions.save}/grib2/template.4.34.def | 0 .../{definitions => definitions.save}/grib2/template.4.35.def | 0 .../{definitions => definitions.save}/grib2/template.4.4.def | 0 .../{definitions => definitions.save}/grib2/template.4.40.def | 0 .../grib2/template.4.40033.def | 0 .../grib2/template.4.40034.def | 0 .../{definitions => definitions.save}/grib2/template.4.41.def | 0 .../{definitions => definitions.save}/grib2/template.4.42.def | 0 .../{definitions => definitions.save}/grib2/template.4.43.def | 0 .../{definitions => definitions.save}/grib2/template.4.44.def | 0 .../{definitions => definitions.save}/grib2/template.4.45.def | 0 .../{definitions => definitions.save}/grib2/template.4.46.def | 0 .../{definitions => definitions.save}/grib2/template.4.47.def | 0 .../{definitions => definitions.save}/grib2/template.4.48.def | 0 .../{definitions => definitions.save}/grib2/template.4.49.def | 0 .../{definitions => definitions.save}/grib2/template.4.5.def | 0 .../{definitions => definitions.save}/grib2/template.4.51.def | 0 .../{definitions => definitions.save}/grib2/template.4.53.def | 0 .../{definitions => definitions.save}/grib2/template.4.54.def | 0 .../{definitions => definitions.save}/grib2/template.4.55.def | 0 .../{definitions => definitions.save}/grib2/template.4.56.def | 0 .../{definitions => definitions.save}/grib2/template.4.57.def | 0 .../{definitions => definitions.save}/grib2/template.4.58.def | 0 .../{definitions => definitions.save}/grib2/template.4.59.def | 0 .../{definitions => definitions.save}/grib2/template.4.6.def | 0 .../{definitions => definitions.save}/grib2/template.4.60.def | 0 .../{definitions => definitions.save}/grib2/template.4.61.def | 0 .../{definitions => definitions.save}/grib2/template.4.67.def | 0 .../{definitions => definitions.save}/grib2/template.4.68.def | 0 .../{definitions => definitions.save}/grib2/template.4.7.def | 0 .../{definitions => definitions.save}/grib2/template.4.70.def | 0 .../{definitions => definitions.save}/grib2/template.4.71.def | 0 .../{definitions => definitions.save}/grib2/template.4.72.def | 0 .../{definitions => definitions.save}/grib2/template.4.73.def | 0 .../{definitions => definitions.save}/grib2/template.4.76.def | 0 .../{definitions => definitions.save}/grib2/template.4.77.def | 0 .../{definitions => definitions.save}/grib2/template.4.78.def | 0 .../{definitions => definitions.save}/grib2/template.4.79.def | 0 .../{definitions => definitions.save}/grib2/template.4.8.def | 0 .../{definitions => definitions.save}/grib2/template.4.80.def | 0 .../{definitions => definitions.save}/grib2/template.4.81.def | 0 .../{definitions => definitions.save}/grib2/template.4.82.def | 0 .../{definitions => definitions.save}/grib2/template.4.83.def | 0 .../{definitions => definitions.save}/grib2/template.4.84.def | 0 .../{definitions => definitions.save}/grib2/template.4.85.def | 0 .../{definitions => definitions.save}/grib2/template.4.9.def | 0 .../{definitions => definitions.save}/grib2/template.4.91.def | 0 .../grib2/template.4.categorical.def | 0 .../grib2/template.4.circular_cluster.def | 0 .../grib2/template.4.derived.def | 0 .../{definitions => definitions.save}/grib2/template.4.eps.def | 0 .../grib2/template.4.horizontal.def | 0 .../grib2/template.4.parameter.def | 0 .../grib2/template.4.parameter_aerosol.def | 0 .../grib2/template.4.parameter_aerosol_44.def | 0 .../grib2/template.4.parameter_aerosol_optical.def | 0 .../grib2/template.4.parameter_aerosol_optical_source.def | 0 .../grib2/template.4.parameter_aerosol_source.def | 0 .../grib2/template.4.parameter_chemical.def | 0 .../grib2/template.4.parameter_chemical_distribution.def | 0 .../grib2/template.4.parameter_chemical_source.def | 0 .../grib2/template.4.parameter_partition.def | 0 .../grib2/template.4.parameter_postproc.def | 0 .../grib2/template.4.parameter_tile.def | 0 .../grib2/template.4.percentile.def | 0 .../grib2/template.4.point_in_time.def | 0 .../grib2/template.4.probability.def | 0 .../grib2/template.4.rectangular_cluster.def | 0 .../grib2/template.4.reforecast.def | 0 .../grib2/template.4.statistical.def | 0 .../{definitions => definitions.save}/grib2/template.5.0.def | 0 .../{definitions => definitions.save}/grib2/template.5.1.def | 0 .../{definitions => definitions.save}/grib2/template.5.2.def | 0 .../{definitions => definitions.save}/grib2/template.5.3.def | 0 .../{definitions => definitions.save}/grib2/template.5.4.def | 0 .../{definitions => definitions.save}/grib2/template.5.40.def | 0 .../grib2/template.5.40000.def | 0 .../grib2/template.5.40010.def | 0 .../{definitions => definitions.save}/grib2/template.5.41.def | 0 .../{definitions => definitions.save}/grib2/template.5.42.def | 0 .../{definitions => definitions.save}/grib2/template.5.50.def | 0 .../grib2/template.5.50000.def | 0 .../grib2/template.5.50001.def | 0 .../grib2/template.5.50002.def | 0 .../{definitions => definitions.save}/grib2/template.5.51.def | 0 .../{definitions => definitions.save}/grib2/template.5.53.def | 0 .../{definitions => definitions.save}/grib2/template.5.6.def | 0 .../{definitions => definitions.save}/grib2/template.5.61.def | 0 .../grib2/template.5.original_values.def | 0 .../grib2/template.5.packing.def | 0 .../grib2/template.5.second_order.def | 0 .../{definitions => definitions.save}/grib2/template.7.0.def | 0 .../{definitions => definitions.save}/grib2/template.7.1.def | 0 .../{definitions => definitions.save}/grib2/template.7.2.def | 0 .../{definitions => definitions.save}/grib2/template.7.3.def | 0 .../{definitions => definitions.save}/grib2/template.7.4.def | 0 .../{definitions => definitions.save}/grib2/template.7.40.def | 0 .../grib2/template.7.40000.def | 0 .../grib2/template.7.40010.def | 0 .../{definitions => definitions.save}/grib2/template.7.41.def | 0 .../{definitions => definitions.save}/grib2/template.7.42.def | 0 .../{definitions => definitions.save}/grib2/template.7.50.def | 0 .../grib2/template.7.50000.def | 0 .../grib2/template.7.50001.def | 0 .../grib2/template.7.50002.def | 0 .../{definitions => definitions.save}/grib2/template.7.51.def | 0 .../{definitions => definitions.save}/grib2/template.7.53.def | 0 .../{definitions => definitions.save}/grib2/template.7.6.def | 0 .../{definitions => definitions.save}/grib2/template.7.61.def | 0 .../grib2/template.7.second_order.def | 0 .../grib2/template.second_order.def | 0 .../grib2/tiggeLocalVersion.table | 0 eccodes/{definitions => definitions.save}/grib2/tigge_name.def | 0 .../{definitions => definitions.save}/grib2/tigge_parameter.def | 0 .../grib2/tigge_short_name.def | 0 .../grib2/tigge_suiteName.table | 0 .../grib2/typeOfLevelConcept.def | 0 .../grib2/typeOfUnstructuredGridConcept.def | 0 eccodes/{definitions => definitions.save}/grib2/units.def | 0 .../grib2/unstructuredGridConcept.def | 0 .../grib2/unstructuredGridSubtype.def | 0 .../grib2/unstructuredGridType.def | 0 .../grib2/unstructuredGridUUID.def | 0 eccodes/{definitions => definitions.save}/grib3/boot.def | 0 eccodes/{definitions => definitions.save}/grib3/centre.table | 0 eccodes/{definitions => definitions.save}/grib3/cfName.def | 0 eccodes/{definitions => definitions.save}/grib3/cfVarName.def | 0 .../{definitions => definitions.save}/grib3/dimension.0.table | 0 .../grib3/dimensionTableNumber.table | 0 .../{definitions => definitions.save}/grib3/dimensionType.table | 0 .../grib3/grib2LocalSectionNumber.82.table | 0 .../grib3/grib2LocalSectionNumber.85.table | 0 .../grib3/grib2LocalSectionNumber.98.table | 0 eccodes/{definitions => definitions.save}/grib3/local.82.0.def | 0 eccodes/{definitions => definitions.save}/grib3/local.82.82.def | 0 eccodes/{definitions => definitions.save}/grib3/local.82.83.def | 0 eccodes/{definitions => definitions.save}/grib3/local.82.def | 0 eccodes/{definitions => definitions.save}/grib3/local.85.0.def | 0 eccodes/{definitions => definitions.save}/grib3/local.85.1.def | 0 eccodes/{definitions => definitions.save}/grib3/local.85.2.def | 0 eccodes/{definitions => definitions.save}/grib3/local.85.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.0.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.1.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.11.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.14.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.15.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.16.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.18.def | 0 .../{definitions => definitions.save}/grib3/local.98.192.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.20.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.21.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.24.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.25.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.26.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.28.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.30.def | 0 .../{definitions => definitions.save}/grib3/local.98.300.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.36.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.38.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.39.def | 0 .../{definitions => definitions.save}/grib3/local.98.500.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.7.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.9.def | 0 eccodes/{definitions => definitions.save}/grib3/local.98.def | 0 .../{definitions => definitions.save}/grib3/local.tigge.1.def | 0 .../grib3/local/1098/2.1.table | 0 .../grib3/local/1098/centres.table | 0 .../grib3/local/1098/models.table | 0 .../grib3/local/1098/template.2.0.def | 0 .../grib3/local/1098/template.2.0.def~ | 0 eccodes/{definitions => definitions.save}/grib3/local/2.0.table | 0 .../grib3/local/edzw/2.0.3.table | 0 .../{definitions => definitions.save}/grib3/local/edzw/3.table | 0 .../{definitions => definitions.save}/grib3/local/edzw/5.table | 0 .../grib3/local/edzw/generatingProcessIdentifier.table | 0 .../grib3/localConcepts/ecmf/cfName.def | 0 .../grib3/localConcepts/ecmf/cfVarName.def | 0 .../grib3/localConcepts/ecmf/name.def | 0 .../grib3/localConcepts/ecmf/paramId.def | 0 .../grib3/localConcepts/ecmf/shortName.def | 0 .../grib3/localConcepts/ecmf/units.def | 0 eccodes/{definitions => definitions.save}/grib3/ls.def | 0 .../{definitions => definitions.save}/grib3/ls_labeling.82.def | 0 .../grib3/mars_labeling.82.def | 0 .../{definitions => definitions.save}/grib3/mars_labeling.def | 0 eccodes/{definitions => definitions.save}/grib3/meta.def | 0 eccodes/{definitions => definitions.save}/grib3/modelName.def | 0 eccodes/{definitions => definitions.save}/grib3/name.def | 0 eccodes/{definitions => definitions.save}/grib3/paramId.def | 0 eccodes/{definitions => definitions.save}/grib3/parameters.def | 0 eccodes/{definitions => definitions.save}/grib3/products_0.def | 0 eccodes/{definitions => definitions.save}/grib3/products_1.def | 0 eccodes/{definitions => definitions.save}/grib3/products_2.def | 0 eccodes/{definitions => definitions.save}/grib3/products_3.def | 0 eccodes/{definitions => definitions.save}/grib3/products_4.def | 0 eccodes/{definitions => definitions.save}/grib3/products_5.def | 0 eccodes/{definitions => definitions.save}/grib3/products_6.def | 0 eccodes/{definitions => definitions.save}/grib3/products_7.def | 0 eccodes/{definitions => definitions.save}/grib3/products_8.def | 0 eccodes/{definitions => definitions.save}/grib3/products_9.def | 0 .../{definitions => definitions.save}/grib3/products_s2s.def | 0 .../{definitions => definitions.save}/grib3/products_tigge.def | 0 .../{definitions => definitions.save}/grib3/products_uerra.def | 0 eccodes/{definitions => definitions.save}/grib3/rules.def | 0 eccodes/{definitions => definitions.save}/grib3/section.00.def | 0 eccodes/{definitions => definitions.save}/grib3/section.01.def | 0 eccodes/{definitions => definitions.save}/grib3/section.02.def | 0 eccodes/{definitions => definitions.save}/grib3/section.03.def | 0 eccodes/{definitions => definitions.save}/grib3/section.04.def | 0 eccodes/{definitions => definitions.save}/grib3/section.05.def | 0 eccodes/{definitions => definitions.save}/grib3/section.06.def | 0 eccodes/{definitions => definitions.save}/grib3/section.07.def | 0 eccodes/{definitions => definitions.save}/grib3/section.08.def | 0 eccodes/{definitions => definitions.save}/grib3/section.09.def | 0 eccodes/{definitions => definitions.save}/grib3/section.10.def | 0 eccodes/{definitions => definitions.save}/grib3/section.11.def | 0 eccodes/{definitions => definitions.save}/grib3/sections.def | 0 eccodes/{definitions => definitions.save}/grib3/shortName.def | 0 .../{definitions => definitions.save}/grib3/tables/0.0.table | 0 .../{definitions => definitions.save}/grib3/tables/0/0.0.table | 0 .../{definitions => definitions.save}/grib3/tables/0/1.0.table | 0 .../{definitions => definitions.save}/grib3/tables/0/1.1.table | 0 .../{definitions => definitions.save}/grib3/tables/0/1.2.table | 0 .../{definitions => definitions.save}/grib3/tables/0/1.3.table | 0 .../{definitions => definitions.save}/grib3/tables/0/1.4.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.0.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.1.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.10.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.11.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.15.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.2.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.20.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.21.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.3.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.4.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.5.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.6.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.7.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.8.table | 0 .../{definitions => definitions.save}/grib3/tables/0/3.9.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.0.table | 0 .../grib3/tables/0/4.1.0.table | 0 .../grib3/tables/0/4.1.1.table | 0 .../grib3/tables/0/4.1.10.table | 0 .../grib3/tables/0/4.1.2.table | 0 .../grib3/tables/0/4.1.3.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.1.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.10.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.11.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.12.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.13.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.14.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.15.table | 0 .../grib3/tables/0/4.151.table | 0 .../grib3/tables/0/4.2.0.0.table | 0 .../grib3/tables/0/4.2.0.1.table | 0 .../grib3/tables/0/4.2.0.13.table | 0 .../grib3/tables/0/4.2.0.14.table | 0 .../grib3/tables/0/4.2.0.15.table | 0 .../grib3/tables/0/4.2.0.18.table | 0 .../grib3/tables/0/4.2.0.19.table | 0 .../grib3/tables/0/4.2.0.190.table | 0 .../grib3/tables/0/4.2.0.191.table | 0 .../grib3/tables/0/4.2.0.2.table | 0 .../grib3/tables/0/4.2.0.20.table | 0 .../grib3/tables/0/4.2.0.3.table | 0 .../grib3/tables/0/4.2.0.4.table | 0 .../grib3/tables/0/4.2.0.5.table | 0 .../grib3/tables/0/4.2.0.6.table | 0 .../grib3/tables/0/4.2.0.7.table | 0 .../grib3/tables/0/4.2.1.0.table | 0 .../grib3/tables/0/4.2.1.1.table | 0 .../grib3/tables/0/4.2.10.0.table | 0 .../grib3/tables/0/4.2.10.1.table | 0 .../grib3/tables/0/4.2.10.2.table | 0 .../grib3/tables/0/4.2.10.3.table | 0 .../grib3/tables/0/4.2.10.4.table | 0 .../grib3/tables/0/4.2.2.0.table | 0 .../grib3/tables/0/4.2.2.3.table | 0 .../grib3/tables/0/4.2.3.0.table | 0 .../grib3/tables/0/4.2.3.1.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.2.table | 0 .../grib3/tables/0/4.201.table | 0 .../grib3/tables/0/4.202.table | 0 .../grib3/tables/0/4.203.table | 0 .../grib3/tables/0/4.204.table | 0 .../grib3/tables/0/4.205.table | 0 .../grib3/tables/0/4.206.table | 0 .../grib3/tables/0/4.207.table | 0 .../grib3/tables/0/4.208.table | 0 .../grib3/tables/0/4.209.table | 0 .../grib3/tables/0/4.210.table | 0 .../grib3/tables/0/4.211.table | 0 .../grib3/tables/0/4.212.table | 0 .../grib3/tables/0/4.213.table | 0 .../grib3/tables/0/4.215.table | 0 .../grib3/tables/0/4.216.table | 0 .../grib3/tables/0/4.217.table | 0 .../grib3/tables/0/4.220.table | 0 .../grib3/tables/0/4.221.table | 0 .../grib3/tables/0/4.230.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.3.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.4.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.5.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.6.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.7.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.8.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.9.table | 0 .../{definitions => definitions.save}/grib3/tables/0/4.91.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.0.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.1.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.2.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.3.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.4.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.40.table | 0 .../grib3/tables/0/5.40000.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.5.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.6.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.7.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.8.table | 0 .../{definitions => definitions.save}/grib3/tables/0/5.9.table | 0 .../{definitions => definitions.save}/grib3/tables/0/6.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/0.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/1.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/1.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/1.2.table | 0 .../{definitions => definitions.save}/grib3/tables/1/1.3.table | 0 .../{definitions => definitions.save}/grib3/tables/1/1.4.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.10.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.11.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.15.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.2.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.20.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.21.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.3.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.4.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.5.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.6.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.7.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.8.table | 0 .../{definitions => definitions.save}/grib3/tables/1/3.9.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.10.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.11.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.12.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.13.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.14.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.15.table | 0 .../grib3/tables/1/4.151.table | 0 .../grib3/tables/1/4.2.0.15.table | 0 .../grib3/tables/1/4.2.0.18.table | 0 .../grib3/tables/1/4.2.0.19.table | 0 .../grib3/tables/1/4.2.0.190.table | 0 .../grib3/tables/1/4.2.0.191.table | 0 .../grib3/tables/1/4.2.0.2.table | 0 .../grib3/tables/1/4.2.0.20.table | 0 .../grib3/tables/1/4.2.0.3.table | 0 .../grib3/tables/1/4.2.0.4.table | 0 .../grib3/tables/1/4.2.0.5.table | 0 .../grib3/tables/1/4.2.0.6.table | 0 .../grib3/tables/1/4.2.0.7.table | 0 .../grib3/tables/1/4.2.10.0.table | 0 .../grib3/tables/1/4.2.10.1.table | 0 .../grib3/tables/1/4.2.10.2.table | 0 .../grib3/tables/1/4.2.10.3.table | 0 .../grib3/tables/1/4.2.10.4.table | 0 .../grib3/tables/1/4.2.2.0.table | 0 .../grib3/tables/1/4.2.2.3.table | 0 .../grib3/tables/1/4.2.3.0.table | 0 .../grib3/tables/1/4.2.3.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.2.table | 0 .../grib3/tables/1/4.201.table | 0 .../grib3/tables/1/4.202.table | 0 .../grib3/tables/1/4.203.table | 0 .../grib3/tables/1/4.204.table | 0 .../grib3/tables/1/4.205.table | 0 .../grib3/tables/1/4.206.table | 0 .../grib3/tables/1/4.207.table | 0 .../grib3/tables/1/4.208.table | 0 .../grib3/tables/1/4.209.table | 0 .../grib3/tables/1/4.210.table | 0 .../grib3/tables/1/4.211.table | 0 .../grib3/tables/1/4.212.table | 0 .../grib3/tables/1/4.213.table | 0 .../grib3/tables/1/4.215.table | 0 .../grib3/tables/1/4.216.table | 0 .../grib3/tables/1/4.217.table | 0 .../grib3/tables/1/4.220.table | 0 .../grib3/tables/1/4.221.table | 0 .../grib3/tables/1/4.230.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.3.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.4.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.5.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.6.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.7.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.8.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.9.table | 0 .../{definitions => definitions.save}/grib3/tables/1/4.91.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.2.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.3.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.4.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.40.table | 0 .../grib3/tables/1/5.40000.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.5.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.6.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.7.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.8.table | 0 .../{definitions => definitions.save}/grib3/tables/1/5.9.table | 0 .../{definitions => definitions.save}/grib3/tables/1/6.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/6.1.table | 0 .../{definitions => definitions.save}/grib3/tables/1/6.2.table | 0 .../{definitions => definitions.save}/grib3/tables/1/6.3.table | 0 .../{definitions => definitions.save}/grib3/tables/1/7.0.table | 0 .../{definitions => definitions.save}/grib3/tables/1/7.1.table | 0 .../grib3/tables/1/7.2.0.table | 0 .../grib3/tables/1/7.2.1.table | 0 .../grib3/tables/1/7.2.10.table | 0 .../grib3/tables/1/7.2.2.table | 0 .../grib3/tables/1/7.2.3.table | 0 .../grib3/tables/1/7.3.0.0.table | 0 .../grib3/tables/1/7.3.0.1.table | 0 .../grib3/tables/1/7.3.0.13.table | 0 .../grib3/tables/1/7.3.0.14.table | 0 .../grib3/tables/1/7.3.0.15.table | 0 .../grib3/tables/1/7.3.0.16.table | 0 .../grib3/tables/1/7.3.0.17.table | 0 .../grib3/tables/1/7.3.0.18.table | 0 .../grib3/tables/1/7.3.0.19.table | 0 .../grib3/tables/1/7.3.0.2.table | 0 .../grib3/tables/1/7.3.0.20.table | 0 .../grib3/tables/1/7.3.0.3.table | 0 .../grib3/tables/1/7.3.0.4.table | 0 .../grib3/tables/1/7.3.0.5.table | 0 .../grib3/tables/1/7.3.0.6.table | 0 .../grib3/tables/1/7.3.0.7.table | 0 .../grib3/tables/1/7.3.1.0.table | 0 .../grib3/tables/1/7.3.1.1.table | 0 .../grib3/tables/1/7.3.1.2.table | 0 .../grib3/tables/local/ecmf/4/1.2.table | 0 .../grib3/tables/local/ecmf/obstat.1.0.table | 0 .../grib3/tables/local/ecmf/obstat.10.0.table | 0 .../grib3/tables/local/ecmf/obstat.11.0.table | 0 .../grib3/tables/local/ecmf/obstat.2.0.table | 0 .../grib3/tables/local/ecmf/obstat.3.0.table | 0 .../grib3/tables/local/ecmf/obstat.4.0.table | 0 .../grib3/tables/local/ecmf/obstat.5.0.table | 0 .../grib3/tables/local/ecmf/obstat.6.0.table | 0 .../grib3/tables/local/ecmf/obstat.7.0.table | 0 .../grib3/tables/local/ecmf/obstat.8.0.table | 0 .../grib3/tables/local/ecmf/obstat.9.0.table | 0 .../grib3/tables/local/ecmf/obstat.reporttype.table | 0 .../grib3/tables/local/ecmf/obstat.varno.table | 0 .../{definitions => definitions.save}/grib3/template.10.0.def | 0 .../{definitions => definitions.save}/grib3/template.3.0.def | 0 .../{definitions => definitions.save}/grib3/template.3.110.def | 0 .../{definitions => definitions.save}/grib3/template.3.140.def | 0 .../{definitions => definitions.save}/grib3/template.3.20.def | 0 .../grib3/template.3.resolution_flags.def | 0 .../{definitions => definitions.save}/grib3/template.4.0.def | 0 .../{definitions => definitions.save}/grib3/template.4.1.def | 0 .../{definitions => definitions.save}/grib3/template.4.2.def | 0 .../{definitions => definitions.save}/grib3/template.4.3.def | 0 .../grib3/template.4.horizontal.def | 0 .../grib3/template.4.resolution_flags.def | 0 .../grib3/template.4.scanning_mode.def | 0 .../{definitions => definitions.save}/grib3/template.5.0.def | 0 .../{definitions => definitions.save}/grib3/template.5.1.def | 0 .../{definitions => definitions.save}/grib3/template.6.0.def | 0 .../{definitions => definitions.save}/grib3/template.6.1.def | 0 .../{definitions => definitions.save}/grib3/template.6.2.def | 0 .../{definitions => definitions.save}/grib3/template.7.0.def | 0 .../{definitions => definitions.save}/grib3/template.7.1.def | 0 .../{definitions => definitions.save}/grib3/template.7.2.def | 0 .../{definitions => definitions.save}/grib3/template.7.3.def | 0 .../{definitions => definitions.save}/grib3/template.7.4.def | 0 .../{definitions => definitions.save}/grib3/template.8.0.def | 0 .../{definitions => definitions.save}/grib3/template.8.1.def | 0 .../grib3/template.8.missing_value.def | 0 .../grib3/template.8.original_values.def | 0 .../grib3/template.8.packing.def | 0 .../{definitions => definitions.save}/grib3/template.9.0.def | 0 .../grib3/template.component.3.0.def | 0 .../grib3/template.component.4.0.def | 0 .../grib3/template.component.4.1.def | 0 .../grib3/template.component.4.2.def | 0 .../grib3/template.component.4.3.def | 0 .../grib3/template.component.5.0.def | 0 .../grib3/template.component.5.1.def | 0 .../grib3/template.component.6.0.def | 0 .../grib3/template.component.6.1.def | 0 .../grib3/template.component.6.2.def | 0 .../grib3/template.component.6.3.def | 0 .../grib3/template.component.7.0.def | 0 .../grib3/template.component.7.1.def | 0 .../grib3/template.component.7.2.def | 0 .../grib3/template.component.7.3.def | 0 .../grib3/template.component.7.4.def | 0 .../grib3/template.component.8.0.def | 0 .../grib3/template.component.8.1.def | 0 .../grib3/template.component.9.0.def | 0 .../grib3/template_components/4.8.regular_latitudes.def | 0 .../grib3/tiggeLocalVersion.table | 0 eccodes/{definitions => definitions.save}/grib3/tigge_name.def | 0 .../{definitions => definitions.save}/grib3/tigge_parameter.def | 0 .../grib3/tigge_short_name.def | 0 .../grib3/tigge_suiteName.table | 0 eccodes/{definitions => definitions.save}/grib3/units.def | 0 eccodes/{definitions => definitions.save}/mars_param.table | 0 eccodes/{definitions => definitions.save}/param_id.table | 0 eccodes/{definitions => definitions.save}/param_limits.def | 0 .../{definitions => definitions.save}/parameters_version.def | 0 eccodes/{definitions => definitions.save}/stepUnits.table | 0 5852 files changed, 1 insertion(+), 1 deletion(-) rename eccodes/{definitions => definitions.save}/boot.def (100%) rename eccodes/{definitions => definitions.save}/common/c-1.table (100%) rename eccodes/{definitions => definitions.save}/common/c-11.table (100%) rename eccodes/{definitions => definitions.save}/common/statistics_grid.def (100%) rename eccodes/{definitions => definitions.save}/common/statistics_spectral.def (100%) rename eccodes/{definitions => definitions.save}/empty_template.def (100%) rename eccodes/{definitions => definitions.save}/grib1/0.ecmf.table (100%) rename eccodes/{definitions => definitions.save}/grib1/0.eidb.table (100%) rename eccodes/{definitions => definitions.save}/grib1/0.eswi.table (100%) rename eccodes/{definitions => definitions.save}/grib1/0.rjtd.table (100%) rename eccodes/{definitions => definitions.save}/grib1/1.table (100%) rename eccodes/{definitions => definitions.save}/grib1/10.table (100%) rename eccodes/{definitions => definitions.save}/grib1/11-2.table (100%) rename eccodes/{definitions => definitions.save}/grib1/11.table (100%) rename eccodes/{definitions => definitions.save}/grib1/12.table (100%) rename eccodes/{definitions => definitions.save}/grib1/13.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.128.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.233.1.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.233.253.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.253.128.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.34.200.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.46.254.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.1.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.128.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.129.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.130.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.131.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.133.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.134.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.135.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.136.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.82.253.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.128.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.129.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.130.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.131.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.132.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.133.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.140.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.150.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.151.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.160.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.162.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.170.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.171.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.172.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.173.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.174.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.175.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.180.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.190.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.200.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.201.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.210.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.211.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.213.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.215.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.220.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.228.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.230.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.98.235.table (100%) rename eccodes/{definitions => definitions.save}/grib1/2.table (100%) rename eccodes/{definitions => definitions.save}/grib1/3.233.table (100%) rename eccodes/{definitions => definitions.save}/grib1/3.82.table (100%) rename eccodes/{definitions => definitions.save}/grib1/3.98.table (100%) rename eccodes/{definitions => definitions.save}/grib1/3.table (100%) rename eccodes/{definitions => definitions.save}/grib1/4.table (100%) rename eccodes/{definitions => definitions.save}/grib1/5.table (100%) rename eccodes/{definitions => definitions.save}/grib1/6.table (100%) rename eccodes/{definitions => definitions.save}/grib1/7.table (100%) rename eccodes/{definitions => definitions.save}/grib1/8.table (100%) rename eccodes/{definitions => definitions.save}/grib1/9.table (100%) rename eccodes/{definitions => definitions.save}/grib1/boot.def (100%) rename eccodes/{definitions => definitions.save}/grib1/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/cluster_domain.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_ieee.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_jpeg.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_SPD1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_SPD2.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_SPD3.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_constant_width.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_general_grib1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_no_SPD.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_second_order_row_by_row.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_simple.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.grid_simple_matrix.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.spectral_complex.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.spectral_ieee.def (100%) rename eccodes/{definitions => definitions.save}/grib1/data.spectral_simple.def (100%) rename eccodes/{definitions => definitions.save}/grib1/gds_not_present_bitmap.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid.192.78.3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib1/grid.192.78.3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_21.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_22.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_23.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_24.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_25.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_26.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_61.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_62.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_63.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_64.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_0.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_10.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_13.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_14.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_192.78.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_192.98.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_193.98.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_20.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_24.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_3.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_30.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_34.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_4.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_5.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_50.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_60.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_70.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_8.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_80.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_90.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_gaussian.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_lambert.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_latlon.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_definition_spherical_harmonics.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_first_last_resandcomp.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_rotation.def (100%) rename eccodes/{definitions => definitions.save}/grib1/grid_stretching.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.13.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local.214.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.214.244.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.214.245.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.214.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.253.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.254.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.34.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.34.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.46.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.54.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.7.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.7.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.78.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.80.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.82.0.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.82.82.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.82.83.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.82.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.85.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.96.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.10.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.11.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.12.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.13.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.14.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.15.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.16.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.17.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.18.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.19.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.190.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.191.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.192.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.2.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.20.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.21.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.218.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.23.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.24.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.244.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.245.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.25.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.26.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.27.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.28.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.29.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.3.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.30.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.31.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.32.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.33.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.35.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.36.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.37.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.38.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.39.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.4.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.40.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.49.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.5.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.50.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.6.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.7.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.8.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.9.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local.98.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local/ecmf/3.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/ecmf/5.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/edzw/2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/edzw/5.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/edzw/generatingProcessIdentifier.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/rjtd/252.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/rjtd/3.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local/rjtd/5.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ammc/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ammc/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ammc/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ammc/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/cnmc/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/cnmc/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/cnmc/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/cnmc/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/stepType.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/stepTypeForConversion.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ecmf/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/stepType.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/edzw/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/efkl/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/efkl/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/efkl/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/efkl/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/efkl/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eidb/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eidb/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eidb/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eidb/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eidb/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ekmi/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ekmi/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ekmi/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/ekmi/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/enmi/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/enmi/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/enmi/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/enmi/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/aerosolConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/aerosolbinnumber.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/landTypeConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/landtype.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/sort.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/sortConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/timeRepresConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/timerepres.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/eswi/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/kwbc/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/kwbc/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/kwbc/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/kwbc/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/faFieldName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/faLevelName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/faModelName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lfpw/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lowm/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lowm/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lowm/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/lowm/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/stepType.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/rjtd/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/sbsj/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/sbsj/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/sbsj/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localConcepts/sbsj/units.def (100%) rename eccodes/{definitions => definitions.save}/grib1/localDefinitionNumber.34.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localDefinitionNumber.82.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localDefinitionNumber.96.table (100%) rename eccodes/{definitions => definitions.save}/grib1/localDefinitionNumber.98.table (100%) rename eccodes/{definitions => definitions.save}/grib1/local_no_mars.98.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/local_no_mars.98.24.def (100%) rename eccodes/{definitions => definitions.save}/grib1/ls.def (100%) rename eccodes/{definitions => definitions.save}/grib1/ls_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib1/mars_labeling.23.def (100%) rename eccodes/{definitions => definitions.save}/grib1/mars_labeling.4.def (100%) rename eccodes/{definitions => definitions.save}/grib1/mars_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib1/mars_labeling.def (100%) rename eccodes/{definitions => definitions.save}/grib1/name.def (100%) rename eccodes/{definitions => definitions.save}/grib1/ocean.1.table (100%) rename eccodes/{definitions => definitions.save}/grib1/param.pl (100%) rename eccodes/{definitions => definitions.save}/grib1/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib1/precision.table (100%) rename eccodes/{definitions => definitions.save}/grib1/predefined_grid.def (100%) rename eccodes/{definitions => definitions.save}/grib1/regimes.table (100%) rename eccodes/{definitions => definitions.save}/grib1/resolution_flags.def (100%) rename eccodes/{definitions => definitions.save}/grib1/scanning_mode.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.0.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.1.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.2.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.3.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.4.def (100%) rename eccodes/{definitions => definitions.save}/grib1/section.5.def (100%) rename eccodes/{definitions => definitions.save}/grib1/sensitive_area_domain.def (100%) rename eccodes/{definitions => definitions.save}/grib1/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib1/stepType.def (100%) rename eccodes/{definitions => definitions.save}/grib1/stepTypeForConversion.def (100%) rename eccodes/{definitions => definitions.save}/grib1/tube_domain.def (100%) rename eccodes/{definitions => definitions.save}/grib1/typeOfLevel.def (100%) rename eccodes/{definitions => definitions.save}/grib1/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/boot.def (100%) rename eccodes/{definitions => definitions.save}/grib2/boot_multifield.def (100%) rename eccodes/{definitions => definitions.save}/grib2/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/crraLocalVersion.table (100%) rename eccodes/{definitions => definitions.save}/grib2/crra_suiteName.table (100%) rename eccodes/{definitions => definitions.save}/grib2/d (100%) rename eccodes/{definitions => definitions.save}/grib2/dimension.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/dimensionTableNumber.table (100%) rename eccodes/{definitions => definitions.save}/grib2/dimensionType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/grib2LocalSectionNumber.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/grib2LocalSectionNumber.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/grib2LocalSectionNumber.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/lcwfv_suiteName.table (100%) rename eccodes/{definitions => definitions.save}/grib2/local.82.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.82.82.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.82.83.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.82.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.85.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.85.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.85.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.85.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.11.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.12.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.14.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.15.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.16.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.18.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.192.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.20.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.21.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.24.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.25.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.26.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.28.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.30.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.300.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.36.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.38.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.39.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.41.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.42.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.5.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.500.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.7.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.9.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.98.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.crra.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local.tigge.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local/1098/2.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/local/1098/centres.table (100%) rename eccodes/{definitions => definitions.save}/grib2/local/1098/models.table (100%) rename eccodes/{definitions => definitions.save}/grib2/local/1098/template.2.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/local/2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/cnmc/modelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/cnmc/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/cnmc/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/cnmc/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/cnmc/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/cfName.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/cfVarName.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/name.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/paramId.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/shortName.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/units.legacy.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/unstructuredGrid.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/unstructuredGridSubtype.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ecmf/unstructuredGridType.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/default_step_units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/modelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/edzw/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/efkl/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/efkl/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/efkl/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/efkl/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/egrr/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/egrr/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/egrr/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/egrr/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/egrr/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ekmi/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ekmi/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ekmi/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/ekmi/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/eswi/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/eswi/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/eswi/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/eswi/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/kwbc/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/kwbc/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/kwbc/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/kwbc/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/faFieldName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/faLevelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/faModelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw1/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw1/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw1/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lfpw1/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/localConcepts/lssw/modelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/ls.def (100%) rename eccodes/{definitions => definitions.save}/grib2/ls_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib2/mars_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib2/mars_labeling.def (100%) rename eccodes/{definitions => definitions.save}/grib2/meta.def (100%) rename eccodes/{definitions => definitions.save}/grib2/modelName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib2/parameters.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_10.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_11.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_5.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_6.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_7.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_8.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_9.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_crra.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_s2s.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_tigge.def (100%) rename eccodes/{definitions => definitions.save}/grib2/products_uerra.def (100%) rename eccodes/{definitions => definitions.save}/grib2/rules.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.5.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.6.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.7.def (100%) rename eccodes/{definitions => definitions.save}/grib2/section.8.def (100%) rename eccodes/{definitions => definitions.save}/grib2/sections.def (100%) rename eccodes/{definitions => definitions.save}/grib2/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/0/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/1/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/10/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/11/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/12/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/13/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/14/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/15/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/16/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/17/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/18/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/19/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/2/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/20/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/21/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/22/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/23/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/24/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.20.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.20.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.20.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.2.4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/25/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/1.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.2.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.20.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.20.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.20.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.2.4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/26/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/3/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/4/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/5/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/6/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/7/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/8/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.10.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.100.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.101.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.102.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.103.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.104.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.105.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.106.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.107.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.108.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.109.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.110.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.111.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.112.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.113.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.114.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.115.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.116.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.117.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.118.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.119.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.12.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.120.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.121.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.122.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.123.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.124.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.125.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.126.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.127.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.128.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.129.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.130.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.131.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.132.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.133.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.134.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.135.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.136.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.137.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.138.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.139.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.140.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.141.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.142.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.143.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.144.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.145.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.146.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.147.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.148.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.149.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.150.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.151.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.152.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.153.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.154.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.155.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.156.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.157.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.158.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.159.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.160.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.161.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.162.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.163.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.164.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.165.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.166.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.167.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.168.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.169.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.170.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.171.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.172.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.173.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.174.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.175.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.176.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.177.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.178.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.179.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.180.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.181.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.182.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.183.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.184.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.185.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.186.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.187.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.188.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.189.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.190.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.200.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.21.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.214.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.22.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.225.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.226.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.228.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.229.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.23.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.231.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.232.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.236.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.237.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.238.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.239.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.24.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.240.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.241.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.242.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.243.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.244.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.245.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.246.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.247.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.248.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.249.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.25.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.250.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.251.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.252.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.253.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.255.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.26.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.27.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.28.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.29.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.30.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.31.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.32.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.33.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.34.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.35.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.36.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.37.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.38.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.39.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.41.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.42.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.43.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.44.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.45.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.46.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.47.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.48.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.49.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.50.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.51.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.52.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.53.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.54.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.55.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.56.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.57.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.58.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.59.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.60.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.61.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.62.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.63.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.64.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.65.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.66.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.67.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.68.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.69.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.70.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.71.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.72.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.73.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.74.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.75.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.76.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.77.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.78.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.79.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.80.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.81.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.82.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.83.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.84.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.85.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.86.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.87.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.88.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.89.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.90.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.92.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.93.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.94.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.95.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.96.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.97.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.98.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.192.99.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.2.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.218.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.219.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.222.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.223.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.224.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.227.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.234.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.235.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.50002.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/9/stepType.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/1/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/1/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/1/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/1/4.233.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/4/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.11.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.7.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.8.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.9.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.reporttype.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/ecmf/obstat.varno.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.192.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.193.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.194.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.195.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.196.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.197.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.198.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.199.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.254.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.215.19.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.215.2.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.215.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.215.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/backgroundProcess.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/edzw/1/generatingProcessIdentifier.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tables/local/kwbc/1/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib2/template.1.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.1.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.1.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.1.calendar.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.1.offset.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.10.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.100.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.1000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.101.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.110.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.1100.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.12.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.120.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.1200.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.13.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.130.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.140.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.20.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.23.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.30.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.31.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.32769.def (79%) rename eccodes/{definitions => definitions.save}/grib2/template.3.33.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.40.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.41.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.42.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.43.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.5.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.50.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.51.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.52.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.53.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.61.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.62.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.63.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.90.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.bf.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.gaussian.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.grid.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.lam.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.latlon.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.latlon_vares.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.resolution_flags.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.rotation.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.scanning_mode.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.shape_of_the_earth.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.spherical_harmonics.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.3.stretching.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.10.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1001.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1002.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.11.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1100.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.1101.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.12.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.13.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.14.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.15.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.20.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.2000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.254.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.30.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.31.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.311.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.32.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.33.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.34.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.35.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.40.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.40033.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.40034.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.41.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.42.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.43.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.44.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.45.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.46.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.47.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.48.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.49.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.5.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.51.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.53.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.54.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.55.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.56.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.57.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.58.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.59.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.6.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.60.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.61.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.67.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.68.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.7.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.70.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.71.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.72.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.73.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.76.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.77.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.78.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.79.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.8.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.80.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.81.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.82.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.83.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.84.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.85.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.9.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.91.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.categorical.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.circular_cluster.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.derived.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.eps.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.horizontal.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_aerosol.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_aerosol_44.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_aerosol_optical.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_aerosol_optical_source.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_aerosol_source.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_chemical.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_chemical_distribution.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_chemical_source.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_partition.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_postproc.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.parameter_tile.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.percentile.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.point_in_time.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.probability.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.rectangular_cluster.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.reforecast.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.4.statistical.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.40.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.40000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.40010.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.41.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.42.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.50.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.50000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.50001.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.50002.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.51.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.53.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.6.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.61.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.original_values.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.packing.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.5.second_order.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.0.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.1.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.2.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.3.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.4.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.40.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.40000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.40010.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.41.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.42.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.50.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.50000.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.50001.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.50002.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.51.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.53.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.6.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.61.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.7.second_order.def (100%) rename eccodes/{definitions => definitions.save}/grib2/template.second_order.def (100%) rename eccodes/{definitions => definitions.save}/grib2/tiggeLocalVersion.table (100%) rename eccodes/{definitions => definitions.save}/grib2/tigge_name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/tigge_parameter.def (100%) rename eccodes/{definitions => definitions.save}/grib2/tigge_short_name.def (100%) rename eccodes/{definitions => definitions.save}/grib2/tigge_suiteName.table (100%) rename eccodes/{definitions => definitions.save}/grib2/typeOfLevelConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib2/typeOfUnstructuredGridConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib2/units.def (100%) rename eccodes/{definitions => definitions.save}/grib2/unstructuredGridConcept.def (100%) rename eccodes/{definitions => definitions.save}/grib2/unstructuredGridSubtype.def (100%) rename eccodes/{definitions => definitions.save}/grib2/unstructuredGridType.def (100%) rename eccodes/{definitions => definitions.save}/grib2/unstructuredGridUUID.def (100%) rename eccodes/{definitions => definitions.save}/grib3/boot.def (100%) rename eccodes/{definitions => definitions.save}/grib3/centre.table (100%) rename eccodes/{definitions => definitions.save}/grib3/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/dimension.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/dimensionTableNumber.table (100%) rename eccodes/{definitions => definitions.save}/grib3/dimensionType.table (100%) rename eccodes/{definitions => definitions.save}/grib3/grib2LocalSectionNumber.82.table (100%) rename eccodes/{definitions => definitions.save}/grib3/grib2LocalSectionNumber.85.table (100%) rename eccodes/{definitions => definitions.save}/grib3/grib2LocalSectionNumber.98.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local.82.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.82.82.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.82.83.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.82.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.85.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.85.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.85.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.85.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.11.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.14.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.15.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.16.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.18.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.192.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.20.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.21.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.24.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.25.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.26.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.28.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.30.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.300.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.36.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.38.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.39.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.500.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.7.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.9.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.98.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local.tigge.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local/1098/2.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/1098/centres.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/1098/models.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/1098/template.2.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/local/1098/template.2.0.def~ (100%) rename eccodes/{definitions => definitions.save}/grib3/local/2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/edzw/2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/edzw/3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/edzw/5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/local/edzw/generatingProcessIdentifier.table (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/cfName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/cfVarName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/name.def (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/localConcepts/ecmf/units.def (100%) rename eccodes/{definitions => definitions.save}/grib3/ls.def (100%) rename eccodes/{definitions => definitions.save}/grib3/ls_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib3/mars_labeling.82.def (100%) rename eccodes/{definitions => definitions.save}/grib3/mars_labeling.def (100%) rename eccodes/{definitions => definitions.save}/grib3/meta.def (100%) rename eccodes/{definitions => definitions.save}/grib3/modelName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/name.def (100%) rename eccodes/{definitions => definitions.save}/grib3/paramId.def (100%) rename eccodes/{definitions => definitions.save}/grib3/parameters.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_4.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_5.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_6.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_7.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_8.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_9.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_s2s.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_tigge.def (100%) rename eccodes/{definitions => definitions.save}/grib3/products_uerra.def (100%) rename eccodes/{definitions => definitions.save}/grib3/rules.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.00.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.01.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.02.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.03.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.04.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.05.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.06.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.07.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.08.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.09.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.10.def (100%) rename eccodes/{definitions => definitions.save}/grib3/section.11.def (100%) rename eccodes/{definitions => definitions.save}/grib3/sections.def (100%) rename eccodes/{definitions => definitions.save}/grib3/shortName.def (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/0/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/1.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/1.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.11.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.20.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.21.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/3.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.11.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.12.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.13.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.14.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.151.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.190.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.191.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.10.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.10.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.10.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.10.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.3.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.201.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.202.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.203.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.204.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.205.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.206.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.207.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.208.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.209.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.210.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.211.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.212.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.213.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.215.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.216.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.217.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.220.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.221.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.230.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/4.91.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.40.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.40000.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.8.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/5.9.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/6.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/6.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/6.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.2.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.2.10.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.2.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.2.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.13.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.14.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.15.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.16.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.17.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.18.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.19.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.20.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.3.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.4.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.5.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.6.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.0.7.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.1.1.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/1/7.3.1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/4/1.2.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.1.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.10.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.11.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.2.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.3.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.4.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.5.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.6.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.7.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.8.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.9.0.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.reporttype.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tables/local/ecmf/obstat.varno.table (100%) rename eccodes/{definitions => definitions.save}/grib3/template.10.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.3.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.3.110.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.3.140.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.3.20.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.3.resolution_flags.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.horizontal.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.resolution_flags.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.4.scanning_mode.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.5.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.5.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.6.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.6.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.6.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.7.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.7.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.7.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.7.3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.7.4.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.8.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.8.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.8.missing_value.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.8.original_values.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.8.packing.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.9.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.3.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.4.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.4.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.4.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.4.3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.5.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.5.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.6.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.6.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.6.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.6.3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.7.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.7.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.7.2.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.7.3.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.7.4.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.8.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.8.1.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template.component.9.0.def (100%) rename eccodes/{definitions => definitions.save}/grib3/template_components/4.8.regular_latitudes.def (100%) rename eccodes/{definitions => definitions.save}/grib3/tiggeLocalVersion.table (100%) rename eccodes/{definitions => definitions.save}/grib3/tigge_name.def (100%) rename eccodes/{definitions => definitions.save}/grib3/tigge_parameter.def (100%) rename eccodes/{definitions => definitions.save}/grib3/tigge_short_name.def (100%) rename eccodes/{definitions => definitions.save}/grib3/tigge_suiteName.table (100%) rename eccodes/{definitions => definitions.save}/grib3/units.def (100%) rename eccodes/{definitions => definitions.save}/mars_param.table (100%) rename eccodes/{definitions => definitions.save}/param_id.table (100%) rename eccodes/{definitions => definitions.save}/param_limits.def (100%) rename eccodes/{definitions => definitions.save}/parameters_version.def (100%) rename eccodes/{definitions => definitions.save}/stepUnits.table (100%) diff --git a/eccodes/definitions/boot.def b/eccodes/definitions.save/boot.def similarity index 100% rename from eccodes/definitions/boot.def rename to eccodes/definitions.save/boot.def diff --git a/eccodes/definitions/common/c-1.table b/eccodes/definitions.save/common/c-1.table similarity index 100% rename from eccodes/definitions/common/c-1.table rename to eccodes/definitions.save/common/c-1.table diff --git a/eccodes/definitions/common/c-11.table b/eccodes/definitions.save/common/c-11.table similarity index 100% rename from eccodes/definitions/common/c-11.table rename to eccodes/definitions.save/common/c-11.table diff --git a/eccodes/definitions/common/statistics_grid.def b/eccodes/definitions.save/common/statistics_grid.def similarity index 100% rename from eccodes/definitions/common/statistics_grid.def rename to eccodes/definitions.save/common/statistics_grid.def diff --git a/eccodes/definitions/common/statistics_spectral.def b/eccodes/definitions.save/common/statistics_spectral.def similarity index 100% rename from eccodes/definitions/common/statistics_spectral.def rename to eccodes/definitions.save/common/statistics_spectral.def diff --git a/eccodes/definitions/empty_template.def b/eccodes/definitions.save/empty_template.def similarity index 100% rename from eccodes/definitions/empty_template.def rename to eccodes/definitions.save/empty_template.def diff --git a/eccodes/definitions/grib1/0.ecmf.table b/eccodes/definitions.save/grib1/0.ecmf.table similarity index 100% rename from eccodes/definitions/grib1/0.ecmf.table rename to eccodes/definitions.save/grib1/0.ecmf.table diff --git a/eccodes/definitions/grib1/0.eidb.table b/eccodes/definitions.save/grib1/0.eidb.table similarity index 100% rename from eccodes/definitions/grib1/0.eidb.table rename to eccodes/definitions.save/grib1/0.eidb.table diff --git a/eccodes/definitions/grib1/0.eswi.table b/eccodes/definitions.save/grib1/0.eswi.table similarity index 100% rename from eccodes/definitions/grib1/0.eswi.table rename to eccodes/definitions.save/grib1/0.eswi.table diff --git a/eccodes/definitions/grib1/0.rjtd.table b/eccodes/definitions.save/grib1/0.rjtd.table similarity index 100% rename from eccodes/definitions/grib1/0.rjtd.table rename to eccodes/definitions.save/grib1/0.rjtd.table diff --git a/eccodes/definitions/grib1/1.table b/eccodes/definitions.save/grib1/1.table similarity index 100% rename from eccodes/definitions/grib1/1.table rename to eccodes/definitions.save/grib1/1.table diff --git a/eccodes/definitions/grib1/10.table b/eccodes/definitions.save/grib1/10.table similarity index 100% rename from eccodes/definitions/grib1/10.table rename to eccodes/definitions.save/grib1/10.table diff --git a/eccodes/definitions/grib1/11-2.table b/eccodes/definitions.save/grib1/11-2.table similarity index 100% rename from eccodes/definitions/grib1/11-2.table rename to eccodes/definitions.save/grib1/11-2.table diff --git a/eccodes/definitions/grib1/11.table b/eccodes/definitions.save/grib1/11.table similarity index 100% rename from eccodes/definitions/grib1/11.table rename to eccodes/definitions.save/grib1/11.table diff --git a/eccodes/definitions/grib1/12.table b/eccodes/definitions.save/grib1/12.table similarity index 100% rename from eccodes/definitions/grib1/12.table rename to eccodes/definitions.save/grib1/12.table diff --git a/eccodes/definitions/grib1/13.table b/eccodes/definitions.save/grib1/13.table similarity index 100% rename from eccodes/definitions/grib1/13.table rename to eccodes/definitions.save/grib1/13.table diff --git a/eccodes/definitions/grib1/2.0.1.table b/eccodes/definitions.save/grib1/2.0.1.table similarity index 100% rename from eccodes/definitions/grib1/2.0.1.table rename to eccodes/definitions.save/grib1/2.0.1.table diff --git a/eccodes/definitions/grib1/2.0.2.table b/eccodes/definitions.save/grib1/2.0.2.table similarity index 100% rename from eccodes/definitions/grib1/2.0.2.table rename to eccodes/definitions.save/grib1/2.0.2.table diff --git a/eccodes/definitions/grib1/2.0.3.table b/eccodes/definitions.save/grib1/2.0.3.table similarity index 100% rename from eccodes/definitions/grib1/2.0.3.table rename to eccodes/definitions.save/grib1/2.0.3.table diff --git a/eccodes/definitions/grib1/2.128.table b/eccodes/definitions.save/grib1/2.128.table similarity index 100% rename from eccodes/definitions/grib1/2.128.table rename to eccodes/definitions.save/grib1/2.128.table diff --git a/eccodes/definitions/grib1/2.233.1.table b/eccodes/definitions.save/grib1/2.233.1.table similarity index 100% rename from eccodes/definitions/grib1/2.233.1.table rename to eccodes/definitions.save/grib1/2.233.1.table diff --git a/eccodes/definitions/grib1/2.233.253.table b/eccodes/definitions.save/grib1/2.233.253.table similarity index 100% rename from eccodes/definitions/grib1/2.233.253.table rename to eccodes/definitions.save/grib1/2.233.253.table diff --git a/eccodes/definitions/grib1/2.253.128.table b/eccodes/definitions.save/grib1/2.253.128.table similarity index 100% rename from eccodes/definitions/grib1/2.253.128.table rename to eccodes/definitions.save/grib1/2.253.128.table diff --git a/eccodes/definitions/grib1/2.34.200.table b/eccodes/definitions.save/grib1/2.34.200.table similarity index 100% rename from eccodes/definitions/grib1/2.34.200.table rename to eccodes/definitions.save/grib1/2.34.200.table diff --git a/eccodes/definitions/grib1/2.46.254.table b/eccodes/definitions.save/grib1/2.46.254.table similarity index 100% rename from eccodes/definitions/grib1/2.46.254.table rename to eccodes/definitions.save/grib1/2.46.254.table diff --git a/eccodes/definitions/grib1/2.82.1.table b/eccodes/definitions.save/grib1/2.82.1.table similarity index 100% rename from eccodes/definitions/grib1/2.82.1.table rename to eccodes/definitions.save/grib1/2.82.1.table diff --git a/eccodes/definitions/grib1/2.82.128.table b/eccodes/definitions.save/grib1/2.82.128.table similarity index 100% rename from eccodes/definitions/grib1/2.82.128.table rename to eccodes/definitions.save/grib1/2.82.128.table diff --git a/eccodes/definitions/grib1/2.82.129.table b/eccodes/definitions.save/grib1/2.82.129.table similarity index 100% rename from eccodes/definitions/grib1/2.82.129.table rename to eccodes/definitions.save/grib1/2.82.129.table diff --git a/eccodes/definitions/grib1/2.82.130.table b/eccodes/definitions.save/grib1/2.82.130.table similarity index 100% rename from eccodes/definitions/grib1/2.82.130.table rename to eccodes/definitions.save/grib1/2.82.130.table diff --git a/eccodes/definitions/grib1/2.82.131.table b/eccodes/definitions.save/grib1/2.82.131.table similarity index 100% rename from eccodes/definitions/grib1/2.82.131.table rename to eccodes/definitions.save/grib1/2.82.131.table diff --git a/eccodes/definitions/grib1/2.82.133.table b/eccodes/definitions.save/grib1/2.82.133.table similarity index 100% rename from eccodes/definitions/grib1/2.82.133.table rename to eccodes/definitions.save/grib1/2.82.133.table diff --git a/eccodes/definitions/grib1/2.82.134.table b/eccodes/definitions.save/grib1/2.82.134.table similarity index 100% rename from eccodes/definitions/grib1/2.82.134.table rename to eccodes/definitions.save/grib1/2.82.134.table diff --git a/eccodes/definitions/grib1/2.82.135.table b/eccodes/definitions.save/grib1/2.82.135.table similarity index 100% rename from eccodes/definitions/grib1/2.82.135.table rename to eccodes/definitions.save/grib1/2.82.135.table diff --git a/eccodes/definitions/grib1/2.82.136.table b/eccodes/definitions.save/grib1/2.82.136.table similarity index 100% rename from eccodes/definitions/grib1/2.82.136.table rename to eccodes/definitions.save/grib1/2.82.136.table diff --git a/eccodes/definitions/grib1/2.82.253.table b/eccodes/definitions.save/grib1/2.82.253.table similarity index 100% rename from eccodes/definitions/grib1/2.82.253.table rename to eccodes/definitions.save/grib1/2.82.253.table diff --git a/eccodes/definitions/grib1/2.98.128.table b/eccodes/definitions.save/grib1/2.98.128.table similarity index 100% rename from eccodes/definitions/grib1/2.98.128.table rename to eccodes/definitions.save/grib1/2.98.128.table diff --git a/eccodes/definitions/grib1/2.98.129.table b/eccodes/definitions.save/grib1/2.98.129.table similarity index 100% rename from eccodes/definitions/grib1/2.98.129.table rename to eccodes/definitions.save/grib1/2.98.129.table diff --git a/eccodes/definitions/grib1/2.98.130.table b/eccodes/definitions.save/grib1/2.98.130.table similarity index 100% rename from eccodes/definitions/grib1/2.98.130.table rename to eccodes/definitions.save/grib1/2.98.130.table diff --git a/eccodes/definitions/grib1/2.98.131.table b/eccodes/definitions.save/grib1/2.98.131.table similarity index 100% rename from eccodes/definitions/grib1/2.98.131.table rename to eccodes/definitions.save/grib1/2.98.131.table diff --git a/eccodes/definitions/grib1/2.98.132.table b/eccodes/definitions.save/grib1/2.98.132.table similarity index 100% rename from eccodes/definitions/grib1/2.98.132.table rename to eccodes/definitions.save/grib1/2.98.132.table diff --git a/eccodes/definitions/grib1/2.98.133.table b/eccodes/definitions.save/grib1/2.98.133.table similarity index 100% rename from eccodes/definitions/grib1/2.98.133.table rename to eccodes/definitions.save/grib1/2.98.133.table diff --git a/eccodes/definitions/grib1/2.98.140.table b/eccodes/definitions.save/grib1/2.98.140.table similarity index 100% rename from eccodes/definitions/grib1/2.98.140.table rename to eccodes/definitions.save/grib1/2.98.140.table diff --git a/eccodes/definitions/grib1/2.98.150.table b/eccodes/definitions.save/grib1/2.98.150.table similarity index 100% rename from eccodes/definitions/grib1/2.98.150.table rename to eccodes/definitions.save/grib1/2.98.150.table diff --git a/eccodes/definitions/grib1/2.98.151.table b/eccodes/definitions.save/grib1/2.98.151.table similarity index 100% rename from eccodes/definitions/grib1/2.98.151.table rename to eccodes/definitions.save/grib1/2.98.151.table diff --git a/eccodes/definitions/grib1/2.98.160.table b/eccodes/definitions.save/grib1/2.98.160.table similarity index 100% rename from eccodes/definitions/grib1/2.98.160.table rename to eccodes/definitions.save/grib1/2.98.160.table diff --git a/eccodes/definitions/grib1/2.98.162.table b/eccodes/definitions.save/grib1/2.98.162.table similarity index 100% rename from eccodes/definitions/grib1/2.98.162.table rename to eccodes/definitions.save/grib1/2.98.162.table diff --git a/eccodes/definitions/grib1/2.98.170.table b/eccodes/definitions.save/grib1/2.98.170.table similarity index 100% rename from eccodes/definitions/grib1/2.98.170.table rename to eccodes/definitions.save/grib1/2.98.170.table diff --git a/eccodes/definitions/grib1/2.98.171.table b/eccodes/definitions.save/grib1/2.98.171.table similarity index 100% rename from eccodes/definitions/grib1/2.98.171.table rename to eccodes/definitions.save/grib1/2.98.171.table diff --git a/eccodes/definitions/grib1/2.98.172.table b/eccodes/definitions.save/grib1/2.98.172.table similarity index 100% rename from eccodes/definitions/grib1/2.98.172.table rename to eccodes/definitions.save/grib1/2.98.172.table diff --git a/eccodes/definitions/grib1/2.98.173.table b/eccodes/definitions.save/grib1/2.98.173.table similarity index 100% rename from eccodes/definitions/grib1/2.98.173.table rename to eccodes/definitions.save/grib1/2.98.173.table diff --git a/eccodes/definitions/grib1/2.98.174.table b/eccodes/definitions.save/grib1/2.98.174.table similarity index 100% rename from eccodes/definitions/grib1/2.98.174.table rename to eccodes/definitions.save/grib1/2.98.174.table diff --git a/eccodes/definitions/grib1/2.98.175.table b/eccodes/definitions.save/grib1/2.98.175.table similarity index 100% rename from eccodes/definitions/grib1/2.98.175.table rename to eccodes/definitions.save/grib1/2.98.175.table diff --git a/eccodes/definitions/grib1/2.98.180.table b/eccodes/definitions.save/grib1/2.98.180.table similarity index 100% rename from eccodes/definitions/grib1/2.98.180.table rename to eccodes/definitions.save/grib1/2.98.180.table diff --git a/eccodes/definitions/grib1/2.98.190.table b/eccodes/definitions.save/grib1/2.98.190.table similarity index 100% rename from eccodes/definitions/grib1/2.98.190.table rename to eccodes/definitions.save/grib1/2.98.190.table diff --git a/eccodes/definitions/grib1/2.98.200.table b/eccodes/definitions.save/grib1/2.98.200.table similarity index 100% rename from eccodes/definitions/grib1/2.98.200.table rename to eccodes/definitions.save/grib1/2.98.200.table diff --git a/eccodes/definitions/grib1/2.98.201.table b/eccodes/definitions.save/grib1/2.98.201.table similarity index 100% rename from eccodes/definitions/grib1/2.98.201.table rename to eccodes/definitions.save/grib1/2.98.201.table diff --git a/eccodes/definitions/grib1/2.98.210.table b/eccodes/definitions.save/grib1/2.98.210.table similarity index 100% rename from eccodes/definitions/grib1/2.98.210.table rename to eccodes/definitions.save/grib1/2.98.210.table diff --git a/eccodes/definitions/grib1/2.98.211.table b/eccodes/definitions.save/grib1/2.98.211.table similarity index 100% rename from eccodes/definitions/grib1/2.98.211.table rename to eccodes/definitions.save/grib1/2.98.211.table diff --git a/eccodes/definitions/grib1/2.98.213.table b/eccodes/definitions.save/grib1/2.98.213.table similarity index 100% rename from eccodes/definitions/grib1/2.98.213.table rename to eccodes/definitions.save/grib1/2.98.213.table diff --git a/eccodes/definitions/grib1/2.98.215.table b/eccodes/definitions.save/grib1/2.98.215.table similarity index 100% rename from eccodes/definitions/grib1/2.98.215.table rename to eccodes/definitions.save/grib1/2.98.215.table diff --git a/eccodes/definitions/grib1/2.98.220.table b/eccodes/definitions.save/grib1/2.98.220.table similarity index 100% rename from eccodes/definitions/grib1/2.98.220.table rename to eccodes/definitions.save/grib1/2.98.220.table diff --git a/eccodes/definitions/grib1/2.98.228.table b/eccodes/definitions.save/grib1/2.98.228.table similarity index 100% rename from eccodes/definitions/grib1/2.98.228.table rename to eccodes/definitions.save/grib1/2.98.228.table diff --git a/eccodes/definitions/grib1/2.98.230.table b/eccodes/definitions.save/grib1/2.98.230.table similarity index 100% rename from eccodes/definitions/grib1/2.98.230.table rename to eccodes/definitions.save/grib1/2.98.230.table diff --git a/eccodes/definitions/grib1/2.98.235.table b/eccodes/definitions.save/grib1/2.98.235.table similarity index 100% rename from eccodes/definitions/grib1/2.98.235.table rename to eccodes/definitions.save/grib1/2.98.235.table diff --git a/eccodes/definitions/grib1/2.table b/eccodes/definitions.save/grib1/2.table similarity index 100% rename from eccodes/definitions/grib1/2.table rename to eccodes/definitions.save/grib1/2.table diff --git a/eccodes/definitions/grib1/3.233.table b/eccodes/definitions.save/grib1/3.233.table similarity index 100% rename from eccodes/definitions/grib1/3.233.table rename to eccodes/definitions.save/grib1/3.233.table diff --git a/eccodes/definitions/grib1/3.82.table b/eccodes/definitions.save/grib1/3.82.table similarity index 100% rename from eccodes/definitions/grib1/3.82.table rename to eccodes/definitions.save/grib1/3.82.table diff --git a/eccodes/definitions/grib1/3.98.table b/eccodes/definitions.save/grib1/3.98.table similarity index 100% rename from eccodes/definitions/grib1/3.98.table rename to eccodes/definitions.save/grib1/3.98.table diff --git a/eccodes/definitions/grib1/3.table b/eccodes/definitions.save/grib1/3.table similarity index 100% rename from eccodes/definitions/grib1/3.table rename to eccodes/definitions.save/grib1/3.table diff --git a/eccodes/definitions/grib1/4.table b/eccodes/definitions.save/grib1/4.table similarity index 100% rename from eccodes/definitions/grib1/4.table rename to eccodes/definitions.save/grib1/4.table diff --git a/eccodes/definitions/grib1/5.table b/eccodes/definitions.save/grib1/5.table similarity index 100% rename from eccodes/definitions/grib1/5.table rename to eccodes/definitions.save/grib1/5.table diff --git a/eccodes/definitions/grib1/6.table b/eccodes/definitions.save/grib1/6.table similarity index 100% rename from eccodes/definitions/grib1/6.table rename to eccodes/definitions.save/grib1/6.table diff --git a/eccodes/definitions/grib1/7.table b/eccodes/definitions.save/grib1/7.table similarity index 100% rename from eccodes/definitions/grib1/7.table rename to eccodes/definitions.save/grib1/7.table diff --git a/eccodes/definitions/grib1/8.table b/eccodes/definitions.save/grib1/8.table similarity index 100% rename from eccodes/definitions/grib1/8.table rename to eccodes/definitions.save/grib1/8.table diff --git a/eccodes/definitions/grib1/9.table b/eccodes/definitions.save/grib1/9.table similarity index 100% rename from eccodes/definitions/grib1/9.table rename to eccodes/definitions.save/grib1/9.table diff --git a/eccodes/definitions/grib1/boot.def b/eccodes/definitions.save/grib1/boot.def similarity index 100% rename from eccodes/definitions/grib1/boot.def rename to eccodes/definitions.save/grib1/boot.def diff --git a/eccodes/definitions/grib1/cfName.def b/eccodes/definitions.save/grib1/cfName.def similarity index 100% rename from eccodes/definitions/grib1/cfName.def rename to eccodes/definitions.save/grib1/cfName.def diff --git a/eccodes/definitions/grib1/cfVarName.def b/eccodes/definitions.save/grib1/cfVarName.def similarity index 100% rename from eccodes/definitions/grib1/cfVarName.def rename to eccodes/definitions.save/grib1/cfVarName.def diff --git a/eccodes/definitions/grib1/cluster_domain.def b/eccodes/definitions.save/grib1/cluster_domain.def similarity index 100% rename from eccodes/definitions/grib1/cluster_domain.def rename to eccodes/definitions.save/grib1/cluster_domain.def diff --git a/eccodes/definitions/grib1/data.grid_ieee.def b/eccodes/definitions.save/grib1/data.grid_ieee.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_ieee.def rename to eccodes/definitions.save/grib1/data.grid_ieee.def diff --git a/eccodes/definitions/grib1/data.grid_jpeg.def b/eccodes/definitions.save/grib1/data.grid_jpeg.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_jpeg.def rename to eccodes/definitions.save/grib1/data.grid_jpeg.def diff --git a/eccodes/definitions/grib1/data.grid_second_order.def b/eccodes/definitions.save/grib1/data.grid_second_order.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order.def rename to eccodes/definitions.save/grib1/data.grid_second_order.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD1.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_SPD1.def rename to eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD2.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_SPD2.def rename to eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_SPD3.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_SPD3.def rename to eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_constant_width.def b/eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_constant_width.def rename to eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_general_grib1.def b/eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_general_grib1.def rename to eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_no_SPD.def b/eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_no_SPD.def rename to eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def diff --git a/eccodes/definitions/grib1/data.grid_second_order_row_by_row.def b/eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_second_order_row_by_row.def rename to eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def diff --git a/eccodes/definitions/grib1/data.grid_simple.def b/eccodes/definitions.save/grib1/data.grid_simple.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_simple.def rename to eccodes/definitions.save/grib1/data.grid_simple.def diff --git a/eccodes/definitions/grib1/data.grid_simple_matrix.def b/eccodes/definitions.save/grib1/data.grid_simple_matrix.def similarity index 100% rename from eccodes/definitions/grib1/data.grid_simple_matrix.def rename to eccodes/definitions.save/grib1/data.grid_simple_matrix.def diff --git a/eccodes/definitions/grib1/data.spectral_complex.def b/eccodes/definitions.save/grib1/data.spectral_complex.def similarity index 100% rename from eccodes/definitions/grib1/data.spectral_complex.def rename to eccodes/definitions.save/grib1/data.spectral_complex.def diff --git a/eccodes/definitions/grib1/data.spectral_ieee.def b/eccodes/definitions.save/grib1/data.spectral_ieee.def similarity index 100% rename from eccodes/definitions/grib1/data.spectral_ieee.def rename to eccodes/definitions.save/grib1/data.spectral_ieee.def diff --git a/eccodes/definitions/grib1/data.spectral_simple.def b/eccodes/definitions.save/grib1/data.spectral_simple.def similarity index 100% rename from eccodes/definitions/grib1/data.spectral_simple.def rename to eccodes/definitions.save/grib1/data.spectral_simple.def diff --git a/eccodes/definitions/grib1/gds_not_present_bitmap.def b/eccodes/definitions.save/grib1/gds_not_present_bitmap.def similarity index 100% rename from eccodes/definitions/grib1/gds_not_present_bitmap.def rename to eccodes/definitions.save/grib1/gds_not_present_bitmap.def diff --git a/eccodes/definitions/grib1/grid.192.78.3.10.table b/eccodes/definitions.save/grib1/grid.192.78.3.10.table similarity index 100% rename from eccodes/definitions/grib1/grid.192.78.3.10.table rename to eccodes/definitions.save/grib1/grid.192.78.3.10.table diff --git a/eccodes/definitions/grib1/grid.192.78.3.9.table b/eccodes/definitions.save/grib1/grid.192.78.3.9.table similarity index 100% rename from eccodes/definitions/grib1/grid.192.78.3.9.table rename to eccodes/definitions.save/grib1/grid.192.78.3.9.table diff --git a/eccodes/definitions/grib1/grid_21.def b/eccodes/definitions.save/grib1/grid_21.def similarity index 100% rename from eccodes/definitions/grib1/grid_21.def rename to eccodes/definitions.save/grib1/grid_21.def diff --git a/eccodes/definitions/grib1/grid_22.def b/eccodes/definitions.save/grib1/grid_22.def similarity index 100% rename from eccodes/definitions/grib1/grid_22.def rename to eccodes/definitions.save/grib1/grid_22.def diff --git a/eccodes/definitions/grib1/grid_23.def b/eccodes/definitions.save/grib1/grid_23.def similarity index 100% rename from eccodes/definitions/grib1/grid_23.def rename to eccodes/definitions.save/grib1/grid_23.def diff --git a/eccodes/definitions/grib1/grid_24.def b/eccodes/definitions.save/grib1/grid_24.def similarity index 100% rename from eccodes/definitions/grib1/grid_24.def rename to eccodes/definitions.save/grib1/grid_24.def diff --git a/eccodes/definitions/grib1/grid_25.def b/eccodes/definitions.save/grib1/grid_25.def similarity index 100% rename from eccodes/definitions/grib1/grid_25.def rename to eccodes/definitions.save/grib1/grid_25.def diff --git a/eccodes/definitions/grib1/grid_26.def b/eccodes/definitions.save/grib1/grid_26.def similarity index 100% rename from eccodes/definitions/grib1/grid_26.def rename to eccodes/definitions.save/grib1/grid_26.def diff --git a/eccodes/definitions/grib1/grid_61.def b/eccodes/definitions.save/grib1/grid_61.def similarity index 100% rename from eccodes/definitions/grib1/grid_61.def rename to eccodes/definitions.save/grib1/grid_61.def diff --git a/eccodes/definitions/grib1/grid_62.def b/eccodes/definitions.save/grib1/grid_62.def similarity index 100% rename from eccodes/definitions/grib1/grid_62.def rename to eccodes/definitions.save/grib1/grid_62.def diff --git a/eccodes/definitions/grib1/grid_63.def b/eccodes/definitions.save/grib1/grid_63.def similarity index 100% rename from eccodes/definitions/grib1/grid_63.def rename to eccodes/definitions.save/grib1/grid_63.def diff --git a/eccodes/definitions/grib1/grid_64.def b/eccodes/definitions.save/grib1/grid_64.def similarity index 100% rename from eccodes/definitions/grib1/grid_64.def rename to eccodes/definitions.save/grib1/grid_64.def diff --git a/eccodes/definitions/grib1/grid_definition_0.def b/eccodes/definitions.save/grib1/grid_definition_0.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_0.def rename to eccodes/definitions.save/grib1/grid_definition_0.def diff --git a/eccodes/definitions/grib1/grid_definition_1.def b/eccodes/definitions.save/grib1/grid_definition_1.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_1.def rename to eccodes/definitions.save/grib1/grid_definition_1.def diff --git a/eccodes/definitions/grib1/grid_definition_10.def b/eccodes/definitions.save/grib1/grid_definition_10.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_10.def rename to eccodes/definitions.save/grib1/grid_definition_10.def diff --git a/eccodes/definitions/grib1/grid_definition_13.def b/eccodes/definitions.save/grib1/grid_definition_13.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_13.def rename to eccodes/definitions.save/grib1/grid_definition_13.def diff --git a/eccodes/definitions/grib1/grid_definition_14.def b/eccodes/definitions.save/grib1/grid_definition_14.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_14.def rename to eccodes/definitions.save/grib1/grid_definition_14.def diff --git a/eccodes/definitions/grib1/grid_definition_192.78.def b/eccodes/definitions.save/grib1/grid_definition_192.78.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_192.78.def rename to eccodes/definitions.save/grib1/grid_definition_192.78.def diff --git a/eccodes/definitions/grib1/grid_definition_192.98.def b/eccodes/definitions.save/grib1/grid_definition_192.98.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_192.98.def rename to eccodes/definitions.save/grib1/grid_definition_192.98.def diff --git a/eccodes/definitions/grib1/grid_definition_193.98.def b/eccodes/definitions.save/grib1/grid_definition_193.98.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_193.98.def rename to eccodes/definitions.save/grib1/grid_definition_193.98.def diff --git a/eccodes/definitions/grib1/grid_definition_20.def b/eccodes/definitions.save/grib1/grid_definition_20.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_20.def rename to eccodes/definitions.save/grib1/grid_definition_20.def diff --git a/eccodes/definitions/grib1/grid_definition_24.def b/eccodes/definitions.save/grib1/grid_definition_24.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_24.def rename to eccodes/definitions.save/grib1/grid_definition_24.def diff --git a/eccodes/definitions/grib1/grid_definition_3.def b/eccodes/definitions.save/grib1/grid_definition_3.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_3.def rename to eccodes/definitions.save/grib1/grid_definition_3.def diff --git a/eccodes/definitions/grib1/grid_definition_30.def b/eccodes/definitions.save/grib1/grid_definition_30.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_30.def rename to eccodes/definitions.save/grib1/grid_definition_30.def diff --git a/eccodes/definitions/grib1/grid_definition_34.def b/eccodes/definitions.save/grib1/grid_definition_34.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_34.def rename to eccodes/definitions.save/grib1/grid_definition_34.def diff --git a/eccodes/definitions/grib1/grid_definition_4.def b/eccodes/definitions.save/grib1/grid_definition_4.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_4.def rename to eccodes/definitions.save/grib1/grid_definition_4.def diff --git a/eccodes/definitions/grib1/grid_definition_5.def b/eccodes/definitions.save/grib1/grid_definition_5.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_5.def rename to eccodes/definitions.save/grib1/grid_definition_5.def diff --git a/eccodes/definitions/grib1/grid_definition_50.def b/eccodes/definitions.save/grib1/grid_definition_50.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_50.def rename to eccodes/definitions.save/grib1/grid_definition_50.def diff --git a/eccodes/definitions/grib1/grid_definition_60.def b/eccodes/definitions.save/grib1/grid_definition_60.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_60.def rename to eccodes/definitions.save/grib1/grid_definition_60.def diff --git a/eccodes/definitions/grib1/grid_definition_70.def b/eccodes/definitions.save/grib1/grid_definition_70.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_70.def rename to eccodes/definitions.save/grib1/grid_definition_70.def diff --git a/eccodes/definitions/grib1/grid_definition_8.def b/eccodes/definitions.save/grib1/grid_definition_8.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_8.def rename to eccodes/definitions.save/grib1/grid_definition_8.def diff --git a/eccodes/definitions/grib1/grid_definition_80.def b/eccodes/definitions.save/grib1/grid_definition_80.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_80.def rename to eccodes/definitions.save/grib1/grid_definition_80.def diff --git a/eccodes/definitions/grib1/grid_definition_90.def b/eccodes/definitions.save/grib1/grid_definition_90.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_90.def rename to eccodes/definitions.save/grib1/grid_definition_90.def diff --git a/eccodes/definitions/grib1/grid_definition_gaussian.def b/eccodes/definitions.save/grib1/grid_definition_gaussian.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_gaussian.def rename to eccodes/definitions.save/grib1/grid_definition_gaussian.def diff --git a/eccodes/definitions/grib1/grid_definition_lambert.def b/eccodes/definitions.save/grib1/grid_definition_lambert.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_lambert.def rename to eccodes/definitions.save/grib1/grid_definition_lambert.def diff --git a/eccodes/definitions/grib1/grid_definition_latlon.def b/eccodes/definitions.save/grib1/grid_definition_latlon.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_latlon.def rename to eccodes/definitions.save/grib1/grid_definition_latlon.def diff --git a/eccodes/definitions/grib1/grid_definition_spherical_harmonics.def b/eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def similarity index 100% rename from eccodes/definitions/grib1/grid_definition_spherical_harmonics.def rename to eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def diff --git a/eccodes/definitions/grib1/grid_first_last_resandcomp.def b/eccodes/definitions.save/grib1/grid_first_last_resandcomp.def similarity index 100% rename from eccodes/definitions/grib1/grid_first_last_resandcomp.def rename to eccodes/definitions.save/grib1/grid_first_last_resandcomp.def diff --git a/eccodes/definitions/grib1/grid_rotation.def b/eccodes/definitions.save/grib1/grid_rotation.def similarity index 100% rename from eccodes/definitions/grib1/grid_rotation.def rename to eccodes/definitions.save/grib1/grid_rotation.def diff --git a/eccodes/definitions/grib1/grid_stretching.def b/eccodes/definitions.save/grib1/grid_stretching.def similarity index 100% rename from eccodes/definitions/grib1/grid_stretching.def rename to eccodes/definitions.save/grib1/grid_stretching.def diff --git a/eccodes/definitions/grib1/local.1.def b/eccodes/definitions.save/grib1/local.1.def similarity index 100% rename from eccodes/definitions/grib1/local.1.def rename to eccodes/definitions.save/grib1/local.1.def diff --git a/eccodes/definitions/grib1/local.13.table b/eccodes/definitions.save/grib1/local.13.table similarity index 100% rename from eccodes/definitions/grib1/local.13.table rename to eccodes/definitions.save/grib1/local.13.table diff --git a/eccodes/definitions/grib1/local.214.1.def b/eccodes/definitions.save/grib1/local.214.1.def similarity index 100% rename from eccodes/definitions/grib1/local.214.1.def rename to eccodes/definitions.save/grib1/local.214.1.def diff --git a/eccodes/definitions/grib1/local.214.244.def b/eccodes/definitions.save/grib1/local.214.244.def similarity index 100% rename from eccodes/definitions/grib1/local.214.244.def rename to eccodes/definitions.save/grib1/local.214.244.def diff --git a/eccodes/definitions/grib1/local.214.245.def b/eccodes/definitions.save/grib1/local.214.245.def similarity index 100% rename from eccodes/definitions/grib1/local.214.245.def rename to eccodes/definitions.save/grib1/local.214.245.def diff --git a/eccodes/definitions/grib1/local.214.def b/eccodes/definitions.save/grib1/local.214.def similarity index 100% rename from eccodes/definitions/grib1/local.214.def rename to eccodes/definitions.save/grib1/local.214.def diff --git a/eccodes/definitions/grib1/local.253.def b/eccodes/definitions.save/grib1/local.253.def similarity index 100% rename from eccodes/definitions/grib1/local.253.def rename to eccodes/definitions.save/grib1/local.253.def diff --git a/eccodes/definitions/grib1/local.254.def b/eccodes/definitions.save/grib1/local.254.def similarity index 100% rename from eccodes/definitions/grib1/local.254.def rename to eccodes/definitions.save/grib1/local.254.def diff --git a/eccodes/definitions/grib1/local.34.1.def b/eccodes/definitions.save/grib1/local.34.1.def similarity index 100% rename from eccodes/definitions/grib1/local.34.1.def rename to eccodes/definitions.save/grib1/local.34.1.def diff --git a/eccodes/definitions/grib1/local.34.def b/eccodes/definitions.save/grib1/local.34.def similarity index 100% rename from eccodes/definitions/grib1/local.34.def rename to eccodes/definitions.save/grib1/local.34.def diff --git a/eccodes/definitions/grib1/local.46.def b/eccodes/definitions.save/grib1/local.46.def similarity index 100% rename from eccodes/definitions/grib1/local.46.def rename to eccodes/definitions.save/grib1/local.46.def diff --git a/eccodes/definitions/grib1/local.54.def b/eccodes/definitions.save/grib1/local.54.def similarity index 100% rename from eccodes/definitions/grib1/local.54.def rename to eccodes/definitions.save/grib1/local.54.def diff --git a/eccodes/definitions/grib1/local.7.1.def b/eccodes/definitions.save/grib1/local.7.1.def similarity index 100% rename from eccodes/definitions/grib1/local.7.1.def rename to eccodes/definitions.save/grib1/local.7.1.def diff --git a/eccodes/definitions/grib1/local.7.def b/eccodes/definitions.save/grib1/local.7.def similarity index 100% rename from eccodes/definitions/grib1/local.7.def rename to eccodes/definitions.save/grib1/local.7.def diff --git a/eccodes/definitions/grib1/local.78.def b/eccodes/definitions.save/grib1/local.78.def similarity index 100% rename from eccodes/definitions/grib1/local.78.def rename to eccodes/definitions.save/grib1/local.78.def diff --git a/eccodes/definitions/grib1/local.80.def b/eccodes/definitions.save/grib1/local.80.def similarity index 100% rename from eccodes/definitions/grib1/local.80.def rename to eccodes/definitions.save/grib1/local.80.def diff --git a/eccodes/definitions/grib1/local.82.0.def b/eccodes/definitions.save/grib1/local.82.0.def similarity index 100% rename from eccodes/definitions/grib1/local.82.0.def rename to eccodes/definitions.save/grib1/local.82.0.def diff --git a/eccodes/definitions/grib1/local.82.82.def b/eccodes/definitions.save/grib1/local.82.82.def similarity index 100% rename from eccodes/definitions/grib1/local.82.82.def rename to eccodes/definitions.save/grib1/local.82.82.def diff --git a/eccodes/definitions/grib1/local.82.83.def b/eccodes/definitions.save/grib1/local.82.83.def similarity index 100% rename from eccodes/definitions/grib1/local.82.83.def rename to eccodes/definitions.save/grib1/local.82.83.def diff --git a/eccodes/definitions/grib1/local.82.def b/eccodes/definitions.save/grib1/local.82.def similarity index 100% rename from eccodes/definitions/grib1/local.82.def rename to eccodes/definitions.save/grib1/local.82.def diff --git a/eccodes/definitions/grib1/local.85.def b/eccodes/definitions.save/grib1/local.85.def similarity index 100% rename from eccodes/definitions/grib1/local.85.def rename to eccodes/definitions.save/grib1/local.85.def diff --git a/eccodes/definitions/grib1/local.96.def b/eccodes/definitions.save/grib1/local.96.def similarity index 100% rename from eccodes/definitions/grib1/local.96.def rename to eccodes/definitions.save/grib1/local.96.def diff --git a/eccodes/definitions/grib1/local.98.1.def b/eccodes/definitions.save/grib1/local.98.1.def similarity index 100% rename from eccodes/definitions/grib1/local.98.1.def rename to eccodes/definitions.save/grib1/local.98.1.def diff --git a/eccodes/definitions/grib1/local.98.10.def b/eccodes/definitions.save/grib1/local.98.10.def similarity index 100% rename from eccodes/definitions/grib1/local.98.10.def rename to eccodes/definitions.save/grib1/local.98.10.def diff --git a/eccodes/definitions/grib1/local.98.11.def b/eccodes/definitions.save/grib1/local.98.11.def similarity index 100% rename from eccodes/definitions/grib1/local.98.11.def rename to eccodes/definitions.save/grib1/local.98.11.def diff --git a/eccodes/definitions/grib1/local.98.12.def b/eccodes/definitions.save/grib1/local.98.12.def similarity index 100% rename from eccodes/definitions/grib1/local.98.12.def rename to eccodes/definitions.save/grib1/local.98.12.def diff --git a/eccodes/definitions/grib1/local.98.13.def b/eccodes/definitions.save/grib1/local.98.13.def similarity index 100% rename from eccodes/definitions/grib1/local.98.13.def rename to eccodes/definitions.save/grib1/local.98.13.def diff --git a/eccodes/definitions/grib1/local.98.14.def b/eccodes/definitions.save/grib1/local.98.14.def similarity index 100% rename from eccodes/definitions/grib1/local.98.14.def rename to eccodes/definitions.save/grib1/local.98.14.def diff --git a/eccodes/definitions/grib1/local.98.15.def b/eccodes/definitions.save/grib1/local.98.15.def similarity index 100% rename from eccodes/definitions/grib1/local.98.15.def rename to eccodes/definitions.save/grib1/local.98.15.def diff --git a/eccodes/definitions/grib1/local.98.16.def b/eccodes/definitions.save/grib1/local.98.16.def similarity index 100% rename from eccodes/definitions/grib1/local.98.16.def rename to eccodes/definitions.save/grib1/local.98.16.def diff --git a/eccodes/definitions/grib1/local.98.17.def b/eccodes/definitions.save/grib1/local.98.17.def similarity index 100% rename from eccodes/definitions/grib1/local.98.17.def rename to eccodes/definitions.save/grib1/local.98.17.def diff --git a/eccodes/definitions/grib1/local.98.18.def b/eccodes/definitions.save/grib1/local.98.18.def similarity index 100% rename from eccodes/definitions/grib1/local.98.18.def rename to eccodes/definitions.save/grib1/local.98.18.def diff --git a/eccodes/definitions/grib1/local.98.19.def b/eccodes/definitions.save/grib1/local.98.19.def similarity index 100% rename from eccodes/definitions/grib1/local.98.19.def rename to eccodes/definitions.save/grib1/local.98.19.def diff --git a/eccodes/definitions/grib1/local.98.190.def b/eccodes/definitions.save/grib1/local.98.190.def similarity index 100% rename from eccodes/definitions/grib1/local.98.190.def rename to eccodes/definitions.save/grib1/local.98.190.def diff --git a/eccodes/definitions/grib1/local.98.191.def b/eccodes/definitions.save/grib1/local.98.191.def similarity index 100% rename from eccodes/definitions/grib1/local.98.191.def rename to eccodes/definitions.save/grib1/local.98.191.def diff --git a/eccodes/definitions/grib1/local.98.192.def b/eccodes/definitions.save/grib1/local.98.192.def similarity index 100% rename from eccodes/definitions/grib1/local.98.192.def rename to eccodes/definitions.save/grib1/local.98.192.def diff --git a/eccodes/definitions/grib1/local.98.2.def b/eccodes/definitions.save/grib1/local.98.2.def similarity index 100% rename from eccodes/definitions/grib1/local.98.2.def rename to eccodes/definitions.save/grib1/local.98.2.def diff --git a/eccodes/definitions/grib1/local.98.20.def b/eccodes/definitions.save/grib1/local.98.20.def similarity index 100% rename from eccodes/definitions/grib1/local.98.20.def rename to eccodes/definitions.save/grib1/local.98.20.def diff --git a/eccodes/definitions/grib1/local.98.21.def b/eccodes/definitions.save/grib1/local.98.21.def similarity index 100% rename from eccodes/definitions/grib1/local.98.21.def rename to eccodes/definitions.save/grib1/local.98.21.def diff --git a/eccodes/definitions/grib1/local.98.218.def b/eccodes/definitions.save/grib1/local.98.218.def similarity index 100% rename from eccodes/definitions/grib1/local.98.218.def rename to eccodes/definitions.save/grib1/local.98.218.def diff --git a/eccodes/definitions/grib1/local.98.23.def b/eccodes/definitions.save/grib1/local.98.23.def similarity index 100% rename from eccodes/definitions/grib1/local.98.23.def rename to eccodes/definitions.save/grib1/local.98.23.def diff --git a/eccodes/definitions/grib1/local.98.24.def b/eccodes/definitions.save/grib1/local.98.24.def similarity index 100% rename from eccodes/definitions/grib1/local.98.24.def rename to eccodes/definitions.save/grib1/local.98.24.def diff --git a/eccodes/definitions/grib1/local.98.244.def b/eccodes/definitions.save/grib1/local.98.244.def similarity index 100% rename from eccodes/definitions/grib1/local.98.244.def rename to eccodes/definitions.save/grib1/local.98.244.def diff --git a/eccodes/definitions/grib1/local.98.245.def b/eccodes/definitions.save/grib1/local.98.245.def similarity index 100% rename from eccodes/definitions/grib1/local.98.245.def rename to eccodes/definitions.save/grib1/local.98.245.def diff --git a/eccodes/definitions/grib1/local.98.25.def b/eccodes/definitions.save/grib1/local.98.25.def similarity index 100% rename from eccodes/definitions/grib1/local.98.25.def rename to eccodes/definitions.save/grib1/local.98.25.def diff --git a/eccodes/definitions/grib1/local.98.26.def b/eccodes/definitions.save/grib1/local.98.26.def similarity index 100% rename from eccodes/definitions/grib1/local.98.26.def rename to eccodes/definitions.save/grib1/local.98.26.def diff --git a/eccodes/definitions/grib1/local.98.27.def b/eccodes/definitions.save/grib1/local.98.27.def similarity index 100% rename from eccodes/definitions/grib1/local.98.27.def rename to eccodes/definitions.save/grib1/local.98.27.def diff --git a/eccodes/definitions/grib1/local.98.28.def b/eccodes/definitions.save/grib1/local.98.28.def similarity index 100% rename from eccodes/definitions/grib1/local.98.28.def rename to eccodes/definitions.save/grib1/local.98.28.def diff --git a/eccodes/definitions/grib1/local.98.29.def b/eccodes/definitions.save/grib1/local.98.29.def similarity index 100% rename from eccodes/definitions/grib1/local.98.29.def rename to eccodes/definitions.save/grib1/local.98.29.def diff --git a/eccodes/definitions/grib1/local.98.3.def b/eccodes/definitions.save/grib1/local.98.3.def similarity index 100% rename from eccodes/definitions/grib1/local.98.3.def rename to eccodes/definitions.save/grib1/local.98.3.def diff --git a/eccodes/definitions/grib1/local.98.30.def b/eccodes/definitions.save/grib1/local.98.30.def similarity index 100% rename from eccodes/definitions/grib1/local.98.30.def rename to eccodes/definitions.save/grib1/local.98.30.def diff --git a/eccodes/definitions/grib1/local.98.31.def b/eccodes/definitions.save/grib1/local.98.31.def similarity index 100% rename from eccodes/definitions/grib1/local.98.31.def rename to eccodes/definitions.save/grib1/local.98.31.def diff --git a/eccodes/definitions/grib1/local.98.32.def b/eccodes/definitions.save/grib1/local.98.32.def similarity index 100% rename from eccodes/definitions/grib1/local.98.32.def rename to eccodes/definitions.save/grib1/local.98.32.def diff --git a/eccodes/definitions/grib1/local.98.33.def b/eccodes/definitions.save/grib1/local.98.33.def similarity index 100% rename from eccodes/definitions/grib1/local.98.33.def rename to eccodes/definitions.save/grib1/local.98.33.def diff --git a/eccodes/definitions/grib1/local.98.35.def b/eccodes/definitions.save/grib1/local.98.35.def similarity index 100% rename from eccodes/definitions/grib1/local.98.35.def rename to eccodes/definitions.save/grib1/local.98.35.def diff --git a/eccodes/definitions/grib1/local.98.36.def b/eccodes/definitions.save/grib1/local.98.36.def similarity index 100% rename from eccodes/definitions/grib1/local.98.36.def rename to eccodes/definitions.save/grib1/local.98.36.def diff --git a/eccodes/definitions/grib1/local.98.37.def b/eccodes/definitions.save/grib1/local.98.37.def similarity index 100% rename from eccodes/definitions/grib1/local.98.37.def rename to eccodes/definitions.save/grib1/local.98.37.def diff --git a/eccodes/definitions/grib1/local.98.38.def b/eccodes/definitions.save/grib1/local.98.38.def similarity index 100% rename from eccodes/definitions/grib1/local.98.38.def rename to eccodes/definitions.save/grib1/local.98.38.def diff --git a/eccodes/definitions/grib1/local.98.39.def b/eccodes/definitions.save/grib1/local.98.39.def similarity index 100% rename from eccodes/definitions/grib1/local.98.39.def rename to eccodes/definitions.save/grib1/local.98.39.def diff --git a/eccodes/definitions/grib1/local.98.4.def b/eccodes/definitions.save/grib1/local.98.4.def similarity index 100% rename from eccodes/definitions/grib1/local.98.4.def rename to eccodes/definitions.save/grib1/local.98.4.def diff --git a/eccodes/definitions/grib1/local.98.40.def b/eccodes/definitions.save/grib1/local.98.40.def similarity index 100% rename from eccodes/definitions/grib1/local.98.40.def rename to eccodes/definitions.save/grib1/local.98.40.def diff --git a/eccodes/definitions/grib1/local.98.49.def b/eccodes/definitions.save/grib1/local.98.49.def similarity index 100% rename from eccodes/definitions/grib1/local.98.49.def rename to eccodes/definitions.save/grib1/local.98.49.def diff --git a/eccodes/definitions/grib1/local.98.5.def b/eccodes/definitions.save/grib1/local.98.5.def similarity index 100% rename from eccodes/definitions/grib1/local.98.5.def rename to eccodes/definitions.save/grib1/local.98.5.def diff --git a/eccodes/definitions/grib1/local.98.50.def b/eccodes/definitions.save/grib1/local.98.50.def similarity index 100% rename from eccodes/definitions/grib1/local.98.50.def rename to eccodes/definitions.save/grib1/local.98.50.def diff --git a/eccodes/definitions/grib1/local.98.6.def b/eccodes/definitions.save/grib1/local.98.6.def similarity index 100% rename from eccodes/definitions/grib1/local.98.6.def rename to eccodes/definitions.save/grib1/local.98.6.def diff --git a/eccodes/definitions/grib1/local.98.7.def b/eccodes/definitions.save/grib1/local.98.7.def similarity index 100% rename from eccodes/definitions/grib1/local.98.7.def rename to eccodes/definitions.save/grib1/local.98.7.def diff --git a/eccodes/definitions/grib1/local.98.8.def b/eccodes/definitions.save/grib1/local.98.8.def similarity index 100% rename from eccodes/definitions/grib1/local.98.8.def rename to eccodes/definitions.save/grib1/local.98.8.def diff --git a/eccodes/definitions/grib1/local.98.9.def b/eccodes/definitions.save/grib1/local.98.9.def similarity index 100% rename from eccodes/definitions/grib1/local.98.9.def rename to eccodes/definitions.save/grib1/local.98.9.def diff --git a/eccodes/definitions/grib1/local.98.def b/eccodes/definitions.save/grib1/local.98.def similarity index 100% rename from eccodes/definitions/grib1/local.98.def rename to eccodes/definitions.save/grib1/local.98.def diff --git a/eccodes/definitions/grib1/local/ecmf/3.table b/eccodes/definitions.save/grib1/local/ecmf/3.table similarity index 100% rename from eccodes/definitions/grib1/local/ecmf/3.table rename to eccodes/definitions.save/grib1/local/ecmf/3.table diff --git a/eccodes/definitions/grib1/local/ecmf/5.table b/eccodes/definitions.save/grib1/local/ecmf/5.table similarity index 100% rename from eccodes/definitions/grib1/local/ecmf/5.table rename to eccodes/definitions.save/grib1/local/ecmf/5.table diff --git a/eccodes/definitions/grib1/local/edzw/2.0.3.table b/eccodes/definitions.save/grib1/local/edzw/2.0.3.table similarity index 100% rename from eccodes/definitions/grib1/local/edzw/2.0.3.table rename to eccodes/definitions.save/grib1/local/edzw/2.0.3.table diff --git a/eccodes/definitions/grib1/local/edzw/5.table b/eccodes/definitions.save/grib1/local/edzw/5.table similarity index 100% rename from eccodes/definitions/grib1/local/edzw/5.table rename to eccodes/definitions.save/grib1/local/edzw/5.table diff --git a/eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table similarity index 100% rename from eccodes/definitions/grib1/local/edzw/generatingProcessIdentifier.table rename to eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table diff --git a/eccodes/definitions/grib1/local/rjtd/252.table b/eccodes/definitions.save/grib1/local/rjtd/252.table similarity index 100% rename from eccodes/definitions/grib1/local/rjtd/252.table rename to eccodes/definitions.save/grib1/local/rjtd/252.table diff --git a/eccodes/definitions/grib1/local/rjtd/3.table b/eccodes/definitions.save/grib1/local/rjtd/3.table similarity index 100% rename from eccodes/definitions/grib1/local/rjtd/3.table rename to eccodes/definitions.save/grib1/local/rjtd/3.table diff --git a/eccodes/definitions/grib1/local/rjtd/5.table b/eccodes/definitions.save/grib1/local/rjtd/5.table similarity index 100% rename from eccodes/definitions/grib1/local/rjtd/5.table rename to eccodes/definitions.save/grib1/local/rjtd/5.table diff --git a/eccodes/definitions/grib1/localConcepts/ammc/name.def b/eccodes/definitions.save/grib1/localConcepts/ammc/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ammc/name.def rename to eccodes/definitions.save/grib1/localConcepts/ammc/name.def diff --git a/eccodes/definitions/grib1/localConcepts/ammc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ammc/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/ammc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ammc/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/ammc/units.def b/eccodes/definitions.save/grib1/localConcepts/ammc/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ammc/units.def rename to eccodes/definitions.save/grib1/localConcepts/ammc/units.def diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/name.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/cnmc/name.def rename to eccodes/definitions.save/grib1/localConcepts/cnmc/name.def diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/cnmc/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/cnmc/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/cnmc/units.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/cnmc/units.def rename to eccodes/definitions.save/grib1/localConcepts/cnmc/units.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/cfName.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/cfVarName.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/name.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/name.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/stepType.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/stepType.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/stepTypeForConversion.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/typeOfLevel.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def diff --git a/eccodes/definitions/grib1/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ecmf/units.def rename to eccodes/definitions.save/grib1/localConcepts/ecmf/units.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/name.def b/eccodes/definitions.save/grib1/localConcepts/edzw/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/name.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/name.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/paramId.def b/eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/shortName.def b/eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/stepType.def b/eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/stepType.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/typeOfLevel.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def diff --git a/eccodes/definitions/grib1/localConcepts/edzw/units.def b/eccodes/definitions.save/grib1/localConcepts/edzw/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/edzw/units.def rename to eccodes/definitions.save/grib1/localConcepts/edzw/units.def diff --git a/eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/efkl/cfVarName.def rename to eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def diff --git a/eccodes/definitions/grib1/localConcepts/efkl/name.def b/eccodes/definitions.save/grib1/localConcepts/efkl/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/efkl/name.def rename to eccodes/definitions.save/grib1/localConcepts/efkl/name.def diff --git a/eccodes/definitions/grib1/localConcepts/efkl/paramId.def b/eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/efkl/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/efkl/shortName.def b/eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/efkl/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/efkl/units.def b/eccodes/definitions.save/grib1/localConcepts/efkl/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/efkl/units.def rename to eccodes/definitions.save/grib1/localConcepts/efkl/units.def diff --git a/eccodes/definitions/grib1/localConcepts/eidb/name.def b/eccodes/definitions.save/grib1/localConcepts/eidb/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eidb/name.def rename to eccodes/definitions.save/grib1/localConcepts/eidb/name.def diff --git a/eccodes/definitions/grib1/localConcepts/eidb/paramId.def b/eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eidb/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/eidb/shortName.def b/eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eidb/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eidb/typeOfLevel.def rename to eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def diff --git a/eccodes/definitions/grib1/localConcepts/eidb/units.def b/eccodes/definitions.save/grib1/localConcepts/eidb/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eidb/units.def rename to eccodes/definitions.save/grib1/localConcepts/eidb/units.def diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/name.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ekmi/name.def rename to eccodes/definitions.save/grib1/localConcepts/ekmi/name.def diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ekmi/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ekmi/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/ekmi/units.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/ekmi/units.def rename to eccodes/definitions.save/grib1/localConcepts/ekmi/units.def diff --git a/eccodes/definitions/grib1/localConcepts/enmi/name.def b/eccodes/definitions.save/grib1/localConcepts/enmi/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/enmi/name.def rename to eccodes/definitions.save/grib1/localConcepts/enmi/name.def diff --git a/eccodes/definitions/grib1/localConcepts/enmi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/enmi/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/enmi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/enmi/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/enmi/units.def b/eccodes/definitions.save/grib1/localConcepts/enmi/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/enmi/units.def rename to eccodes/definitions.save/grib1/localConcepts/enmi/units.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/aerosolConcept.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table b/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/aerosolbinnumber.table rename to eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table diff --git a/eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/landTypeConcept.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/landtype.table b/eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/landtype.table rename to eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table diff --git a/eccodes/definitions/grib1/localConcepts/eswi/name.def b/eccodes/definitions.save/grib1/localConcepts/eswi/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/name.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/name.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/sort.table b/eccodes/definitions.save/grib1/localConcepts/eswi/sort.table similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/sort.table rename to eccodes/definitions.save/grib1/localConcepts/eswi/sort.table diff --git a/eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/sortConcept.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/timeRepresConcept.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/timerepres.table b/eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/timerepres.table rename to eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table diff --git a/eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/typeOfLevel.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def diff --git a/eccodes/definitions/grib1/localConcepts/eswi/units.def b/eccodes/definitions.save/grib1/localConcepts/eswi/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/eswi/units.def rename to eccodes/definitions.save/grib1/localConcepts/eswi/units.def diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/name.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/kwbc/name.def rename to eccodes/definitions.save/grib1/localConcepts/kwbc/name.def diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/kwbc/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/kwbc/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/kwbc/units.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/kwbc/units.def rename to eccodes/definitions.save/grib1/localConcepts/kwbc/units.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/faFieldName.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/faLevelName.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/faModelName.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/name.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/name.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/name.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/paramId.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/shortName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/lfpw/units.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lfpw/units.def rename to eccodes/definitions.save/grib1/localConcepts/lfpw/units.def diff --git a/eccodes/definitions/grib1/localConcepts/lowm/name.def b/eccodes/definitions.save/grib1/localConcepts/lowm/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lowm/name.def rename to eccodes/definitions.save/grib1/localConcepts/lowm/name.def diff --git a/eccodes/definitions/grib1/localConcepts/lowm/paramId.def b/eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lowm/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/lowm/shortName.def b/eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lowm/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/lowm/units.def b/eccodes/definitions.save/grib1/localConcepts/lowm/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/lowm/units.def rename to eccodes/definitions.save/grib1/localConcepts/lowm/units.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/cfVarName.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/name.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/name.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/name.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/paramId.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/shortName.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/stepType.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/stepType.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/typeOfLevel.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def diff --git a/eccodes/definitions/grib1/localConcepts/rjtd/units.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/rjtd/units.def rename to eccodes/definitions.save/grib1/localConcepts/rjtd/units.def diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/name.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/name.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/sbsj/name.def rename to eccodes/definitions.save/grib1/localConcepts/sbsj/name.def diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/paramId.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/sbsj/paramId.def rename to eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/shortName.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/sbsj/shortName.def rename to eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def diff --git a/eccodes/definitions/grib1/localConcepts/sbsj/units.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/units.def similarity index 100% rename from eccodes/definitions/grib1/localConcepts/sbsj/units.def rename to eccodes/definitions.save/grib1/localConcepts/sbsj/units.def diff --git a/eccodes/definitions/grib1/localDefinitionNumber.34.table b/eccodes/definitions.save/grib1/localDefinitionNumber.34.table similarity index 100% rename from eccodes/definitions/grib1/localDefinitionNumber.34.table rename to eccodes/definitions.save/grib1/localDefinitionNumber.34.table diff --git a/eccodes/definitions/grib1/localDefinitionNumber.82.table b/eccodes/definitions.save/grib1/localDefinitionNumber.82.table similarity index 100% rename from eccodes/definitions/grib1/localDefinitionNumber.82.table rename to eccodes/definitions.save/grib1/localDefinitionNumber.82.table diff --git a/eccodes/definitions/grib1/localDefinitionNumber.96.table b/eccodes/definitions.save/grib1/localDefinitionNumber.96.table similarity index 100% rename from eccodes/definitions/grib1/localDefinitionNumber.96.table rename to eccodes/definitions.save/grib1/localDefinitionNumber.96.table diff --git a/eccodes/definitions/grib1/localDefinitionNumber.98.table b/eccodes/definitions.save/grib1/localDefinitionNumber.98.table similarity index 100% rename from eccodes/definitions/grib1/localDefinitionNumber.98.table rename to eccodes/definitions.save/grib1/localDefinitionNumber.98.table diff --git a/eccodes/definitions/grib1/local_no_mars.98.1.def b/eccodes/definitions.save/grib1/local_no_mars.98.1.def similarity index 100% rename from eccodes/definitions/grib1/local_no_mars.98.1.def rename to eccodes/definitions.save/grib1/local_no_mars.98.1.def diff --git a/eccodes/definitions/grib1/local_no_mars.98.24.def b/eccodes/definitions.save/grib1/local_no_mars.98.24.def similarity index 100% rename from eccodes/definitions/grib1/local_no_mars.98.24.def rename to eccodes/definitions.save/grib1/local_no_mars.98.24.def diff --git a/eccodes/definitions/grib1/ls.def b/eccodes/definitions.save/grib1/ls.def similarity index 100% rename from eccodes/definitions/grib1/ls.def rename to eccodes/definitions.save/grib1/ls.def diff --git a/eccodes/definitions/grib1/ls_labeling.82.def b/eccodes/definitions.save/grib1/ls_labeling.82.def similarity index 100% rename from eccodes/definitions/grib1/ls_labeling.82.def rename to eccodes/definitions.save/grib1/ls_labeling.82.def diff --git a/eccodes/definitions/grib1/mars_labeling.23.def b/eccodes/definitions.save/grib1/mars_labeling.23.def similarity index 100% rename from eccodes/definitions/grib1/mars_labeling.23.def rename to eccodes/definitions.save/grib1/mars_labeling.23.def diff --git a/eccodes/definitions/grib1/mars_labeling.4.def b/eccodes/definitions.save/grib1/mars_labeling.4.def similarity index 100% rename from eccodes/definitions/grib1/mars_labeling.4.def rename to eccodes/definitions.save/grib1/mars_labeling.4.def diff --git a/eccodes/definitions/grib1/mars_labeling.82.def b/eccodes/definitions.save/grib1/mars_labeling.82.def similarity index 100% rename from eccodes/definitions/grib1/mars_labeling.82.def rename to eccodes/definitions.save/grib1/mars_labeling.82.def diff --git a/eccodes/definitions/grib1/mars_labeling.def b/eccodes/definitions.save/grib1/mars_labeling.def similarity index 100% rename from eccodes/definitions/grib1/mars_labeling.def rename to eccodes/definitions.save/grib1/mars_labeling.def diff --git a/eccodes/definitions/grib1/name.def b/eccodes/definitions.save/grib1/name.def similarity index 100% rename from eccodes/definitions/grib1/name.def rename to eccodes/definitions.save/grib1/name.def diff --git a/eccodes/definitions/grib1/ocean.1.table b/eccodes/definitions.save/grib1/ocean.1.table similarity index 100% rename from eccodes/definitions/grib1/ocean.1.table rename to eccodes/definitions.save/grib1/ocean.1.table diff --git a/eccodes/definitions/grib1/param.pl b/eccodes/definitions.save/grib1/param.pl similarity index 100% rename from eccodes/definitions/grib1/param.pl rename to eccodes/definitions.save/grib1/param.pl diff --git a/eccodes/definitions/grib1/paramId.def b/eccodes/definitions.save/grib1/paramId.def similarity index 100% rename from eccodes/definitions/grib1/paramId.def rename to eccodes/definitions.save/grib1/paramId.def diff --git a/eccodes/definitions/grib1/precision.table b/eccodes/definitions.save/grib1/precision.table similarity index 100% rename from eccodes/definitions/grib1/precision.table rename to eccodes/definitions.save/grib1/precision.table diff --git a/eccodes/definitions/grib1/predefined_grid.def b/eccodes/definitions.save/grib1/predefined_grid.def similarity index 100% rename from eccodes/definitions/grib1/predefined_grid.def rename to eccodes/definitions.save/grib1/predefined_grid.def diff --git a/eccodes/definitions/grib1/regimes.table b/eccodes/definitions.save/grib1/regimes.table similarity index 100% rename from eccodes/definitions/grib1/regimes.table rename to eccodes/definitions.save/grib1/regimes.table diff --git a/eccodes/definitions/grib1/resolution_flags.def b/eccodes/definitions.save/grib1/resolution_flags.def similarity index 100% rename from eccodes/definitions/grib1/resolution_flags.def rename to eccodes/definitions.save/grib1/resolution_flags.def diff --git a/eccodes/definitions/grib1/scanning_mode.def b/eccodes/definitions.save/grib1/scanning_mode.def similarity index 100% rename from eccodes/definitions/grib1/scanning_mode.def rename to eccodes/definitions.save/grib1/scanning_mode.def diff --git a/eccodes/definitions/grib1/section.0.def b/eccodes/definitions.save/grib1/section.0.def similarity index 100% rename from eccodes/definitions/grib1/section.0.def rename to eccodes/definitions.save/grib1/section.0.def diff --git a/eccodes/definitions/grib1/section.1.def b/eccodes/definitions.save/grib1/section.1.def similarity index 100% rename from eccodes/definitions/grib1/section.1.def rename to eccodes/definitions.save/grib1/section.1.def diff --git a/eccodes/definitions/grib1/section.2.def b/eccodes/definitions.save/grib1/section.2.def similarity index 100% rename from eccodes/definitions/grib1/section.2.def rename to eccodes/definitions.save/grib1/section.2.def diff --git a/eccodes/definitions/grib1/section.3.def b/eccodes/definitions.save/grib1/section.3.def similarity index 100% rename from eccodes/definitions/grib1/section.3.def rename to eccodes/definitions.save/grib1/section.3.def diff --git a/eccodes/definitions/grib1/section.4.def b/eccodes/definitions.save/grib1/section.4.def similarity index 100% rename from eccodes/definitions/grib1/section.4.def rename to eccodes/definitions.save/grib1/section.4.def diff --git a/eccodes/definitions/grib1/section.5.def b/eccodes/definitions.save/grib1/section.5.def similarity index 100% rename from eccodes/definitions/grib1/section.5.def rename to eccodes/definitions.save/grib1/section.5.def diff --git a/eccodes/definitions/grib1/sensitive_area_domain.def b/eccodes/definitions.save/grib1/sensitive_area_domain.def similarity index 100% rename from eccodes/definitions/grib1/sensitive_area_domain.def rename to eccodes/definitions.save/grib1/sensitive_area_domain.def diff --git a/eccodes/definitions/grib1/shortName.def b/eccodes/definitions.save/grib1/shortName.def similarity index 100% rename from eccodes/definitions/grib1/shortName.def rename to eccodes/definitions.save/grib1/shortName.def diff --git a/eccodes/definitions/grib1/stepType.def b/eccodes/definitions.save/grib1/stepType.def similarity index 100% rename from eccodes/definitions/grib1/stepType.def rename to eccodes/definitions.save/grib1/stepType.def diff --git a/eccodes/definitions/grib1/stepTypeForConversion.def b/eccodes/definitions.save/grib1/stepTypeForConversion.def similarity index 100% rename from eccodes/definitions/grib1/stepTypeForConversion.def rename to eccodes/definitions.save/grib1/stepTypeForConversion.def diff --git a/eccodes/definitions/grib1/tube_domain.def b/eccodes/definitions.save/grib1/tube_domain.def similarity index 100% rename from eccodes/definitions/grib1/tube_domain.def rename to eccodes/definitions.save/grib1/tube_domain.def diff --git a/eccodes/definitions/grib1/typeOfLevel.def b/eccodes/definitions.save/grib1/typeOfLevel.def similarity index 100% rename from eccodes/definitions/grib1/typeOfLevel.def rename to eccodes/definitions.save/grib1/typeOfLevel.def diff --git a/eccodes/definitions/grib1/units.def b/eccodes/definitions.save/grib1/units.def similarity index 100% rename from eccodes/definitions/grib1/units.def rename to eccodes/definitions.save/grib1/units.def diff --git a/eccodes/definitions/grib2/boot.def b/eccodes/definitions.save/grib2/boot.def similarity index 100% rename from eccodes/definitions/grib2/boot.def rename to eccodes/definitions.save/grib2/boot.def diff --git a/eccodes/definitions/grib2/boot_multifield.def b/eccodes/definitions.save/grib2/boot_multifield.def similarity index 100% rename from eccodes/definitions/grib2/boot_multifield.def rename to eccodes/definitions.save/grib2/boot_multifield.def diff --git a/eccodes/definitions/grib2/cfName.def b/eccodes/definitions.save/grib2/cfName.def similarity index 100% rename from eccodes/definitions/grib2/cfName.def rename to eccodes/definitions.save/grib2/cfName.def diff --git a/eccodes/definitions/grib2/cfVarName.def b/eccodes/definitions.save/grib2/cfVarName.def similarity index 100% rename from eccodes/definitions/grib2/cfVarName.def rename to eccodes/definitions.save/grib2/cfVarName.def diff --git a/eccodes/definitions/grib2/crraLocalVersion.table b/eccodes/definitions.save/grib2/crraLocalVersion.table similarity index 100% rename from eccodes/definitions/grib2/crraLocalVersion.table rename to eccodes/definitions.save/grib2/crraLocalVersion.table diff --git a/eccodes/definitions/grib2/crra_suiteName.table b/eccodes/definitions.save/grib2/crra_suiteName.table similarity index 100% rename from eccodes/definitions/grib2/crra_suiteName.table rename to eccodes/definitions.save/grib2/crra_suiteName.table diff --git a/eccodes/definitions/grib2/d b/eccodes/definitions.save/grib2/d similarity index 100% rename from eccodes/definitions/grib2/d rename to eccodes/definitions.save/grib2/d diff --git a/eccodes/definitions/grib2/dimension.0.table b/eccodes/definitions.save/grib2/dimension.0.table similarity index 100% rename from eccodes/definitions/grib2/dimension.0.table rename to eccodes/definitions.save/grib2/dimension.0.table diff --git a/eccodes/definitions/grib2/dimensionTableNumber.table b/eccodes/definitions.save/grib2/dimensionTableNumber.table similarity index 100% rename from eccodes/definitions/grib2/dimensionTableNumber.table rename to eccodes/definitions.save/grib2/dimensionTableNumber.table diff --git a/eccodes/definitions/grib2/dimensionType.table b/eccodes/definitions.save/grib2/dimensionType.table similarity index 100% rename from eccodes/definitions/grib2/dimensionType.table rename to eccodes/definitions.save/grib2/dimensionType.table diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.82.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table similarity index 100% rename from eccodes/definitions/grib2/grib2LocalSectionNumber.82.table rename to eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.85.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table similarity index 100% rename from eccodes/definitions/grib2/grib2LocalSectionNumber.85.table rename to eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table diff --git a/eccodes/definitions/grib2/grib2LocalSectionNumber.98.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table similarity index 100% rename from eccodes/definitions/grib2/grib2LocalSectionNumber.98.table rename to eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table diff --git a/eccodes/definitions/grib2/lcwfv_suiteName.table b/eccodes/definitions.save/grib2/lcwfv_suiteName.table similarity index 100% rename from eccodes/definitions/grib2/lcwfv_suiteName.table rename to eccodes/definitions.save/grib2/lcwfv_suiteName.table diff --git a/eccodes/definitions/grib2/local.82.0.def b/eccodes/definitions.save/grib2/local.82.0.def similarity index 100% rename from eccodes/definitions/grib2/local.82.0.def rename to eccodes/definitions.save/grib2/local.82.0.def diff --git a/eccodes/definitions/grib2/local.82.82.def b/eccodes/definitions.save/grib2/local.82.82.def similarity index 100% rename from eccodes/definitions/grib2/local.82.82.def rename to eccodes/definitions.save/grib2/local.82.82.def diff --git a/eccodes/definitions/grib2/local.82.83.def b/eccodes/definitions.save/grib2/local.82.83.def similarity index 100% rename from eccodes/definitions/grib2/local.82.83.def rename to eccodes/definitions.save/grib2/local.82.83.def diff --git a/eccodes/definitions/grib2/local.82.def b/eccodes/definitions.save/grib2/local.82.def similarity index 100% rename from eccodes/definitions/grib2/local.82.def rename to eccodes/definitions.save/grib2/local.82.def diff --git a/eccodes/definitions/grib2/local.85.0.def b/eccodes/definitions.save/grib2/local.85.0.def similarity index 100% rename from eccodes/definitions/grib2/local.85.0.def rename to eccodes/definitions.save/grib2/local.85.0.def diff --git a/eccodes/definitions/grib2/local.85.1.def b/eccodes/definitions.save/grib2/local.85.1.def similarity index 100% rename from eccodes/definitions/grib2/local.85.1.def rename to eccodes/definitions.save/grib2/local.85.1.def diff --git a/eccodes/definitions/grib2/local.85.2.def b/eccodes/definitions.save/grib2/local.85.2.def similarity index 100% rename from eccodes/definitions/grib2/local.85.2.def rename to eccodes/definitions.save/grib2/local.85.2.def diff --git a/eccodes/definitions/grib2/local.85.def b/eccodes/definitions.save/grib2/local.85.def similarity index 100% rename from eccodes/definitions/grib2/local.85.def rename to eccodes/definitions.save/grib2/local.85.def diff --git a/eccodes/definitions/grib2/local.98.0.def b/eccodes/definitions.save/grib2/local.98.0.def similarity index 100% rename from eccodes/definitions/grib2/local.98.0.def rename to eccodes/definitions.save/grib2/local.98.0.def diff --git a/eccodes/definitions/grib2/local.98.1.def b/eccodes/definitions.save/grib2/local.98.1.def similarity index 100% rename from eccodes/definitions/grib2/local.98.1.def rename to eccodes/definitions.save/grib2/local.98.1.def diff --git a/eccodes/definitions/grib2/local.98.11.def b/eccodes/definitions.save/grib2/local.98.11.def similarity index 100% rename from eccodes/definitions/grib2/local.98.11.def rename to eccodes/definitions.save/grib2/local.98.11.def diff --git a/eccodes/definitions/grib2/local.98.12.def b/eccodes/definitions.save/grib2/local.98.12.def similarity index 100% rename from eccodes/definitions/grib2/local.98.12.def rename to eccodes/definitions.save/grib2/local.98.12.def diff --git a/eccodes/definitions/grib2/local.98.14.def b/eccodes/definitions.save/grib2/local.98.14.def similarity index 100% rename from eccodes/definitions/grib2/local.98.14.def rename to eccodes/definitions.save/grib2/local.98.14.def diff --git a/eccodes/definitions/grib2/local.98.15.def b/eccodes/definitions.save/grib2/local.98.15.def similarity index 100% rename from eccodes/definitions/grib2/local.98.15.def rename to eccodes/definitions.save/grib2/local.98.15.def diff --git a/eccodes/definitions/grib2/local.98.16.def b/eccodes/definitions.save/grib2/local.98.16.def similarity index 100% rename from eccodes/definitions/grib2/local.98.16.def rename to eccodes/definitions.save/grib2/local.98.16.def diff --git a/eccodes/definitions/grib2/local.98.18.def b/eccodes/definitions.save/grib2/local.98.18.def similarity index 100% rename from eccodes/definitions/grib2/local.98.18.def rename to eccodes/definitions.save/grib2/local.98.18.def diff --git a/eccodes/definitions/grib2/local.98.192.def b/eccodes/definitions.save/grib2/local.98.192.def similarity index 100% rename from eccodes/definitions/grib2/local.98.192.def rename to eccodes/definitions.save/grib2/local.98.192.def diff --git a/eccodes/definitions/grib2/local.98.20.def b/eccodes/definitions.save/grib2/local.98.20.def similarity index 100% rename from eccodes/definitions/grib2/local.98.20.def rename to eccodes/definitions.save/grib2/local.98.20.def diff --git a/eccodes/definitions/grib2/local.98.21.def b/eccodes/definitions.save/grib2/local.98.21.def similarity index 100% rename from eccodes/definitions/grib2/local.98.21.def rename to eccodes/definitions.save/grib2/local.98.21.def diff --git a/eccodes/definitions/grib2/local.98.24.def b/eccodes/definitions.save/grib2/local.98.24.def similarity index 100% rename from eccodes/definitions/grib2/local.98.24.def rename to eccodes/definitions.save/grib2/local.98.24.def diff --git a/eccodes/definitions/grib2/local.98.25.def b/eccodes/definitions.save/grib2/local.98.25.def similarity index 100% rename from eccodes/definitions/grib2/local.98.25.def rename to eccodes/definitions.save/grib2/local.98.25.def diff --git a/eccodes/definitions/grib2/local.98.26.def b/eccodes/definitions.save/grib2/local.98.26.def similarity index 100% rename from eccodes/definitions/grib2/local.98.26.def rename to eccodes/definitions.save/grib2/local.98.26.def diff --git a/eccodes/definitions/grib2/local.98.28.def b/eccodes/definitions.save/grib2/local.98.28.def similarity index 100% rename from eccodes/definitions/grib2/local.98.28.def rename to eccodes/definitions.save/grib2/local.98.28.def diff --git a/eccodes/definitions/grib2/local.98.30.def b/eccodes/definitions.save/grib2/local.98.30.def similarity index 100% rename from eccodes/definitions/grib2/local.98.30.def rename to eccodes/definitions.save/grib2/local.98.30.def diff --git a/eccodes/definitions/grib2/local.98.300.def b/eccodes/definitions.save/grib2/local.98.300.def similarity index 100% rename from eccodes/definitions/grib2/local.98.300.def rename to eccodes/definitions.save/grib2/local.98.300.def diff --git a/eccodes/definitions/grib2/local.98.36.def b/eccodes/definitions.save/grib2/local.98.36.def similarity index 100% rename from eccodes/definitions/grib2/local.98.36.def rename to eccodes/definitions.save/grib2/local.98.36.def diff --git a/eccodes/definitions/grib2/local.98.38.def b/eccodes/definitions.save/grib2/local.98.38.def similarity index 100% rename from eccodes/definitions/grib2/local.98.38.def rename to eccodes/definitions.save/grib2/local.98.38.def diff --git a/eccodes/definitions/grib2/local.98.39.def b/eccodes/definitions.save/grib2/local.98.39.def similarity index 100% rename from eccodes/definitions/grib2/local.98.39.def rename to eccodes/definitions.save/grib2/local.98.39.def diff --git a/eccodes/definitions/grib2/local.98.41.def b/eccodes/definitions.save/grib2/local.98.41.def similarity index 100% rename from eccodes/definitions/grib2/local.98.41.def rename to eccodes/definitions.save/grib2/local.98.41.def diff --git a/eccodes/definitions/grib2/local.98.42.def b/eccodes/definitions.save/grib2/local.98.42.def similarity index 100% rename from eccodes/definitions/grib2/local.98.42.def rename to eccodes/definitions.save/grib2/local.98.42.def diff --git a/eccodes/definitions/grib2/local.98.5.def b/eccodes/definitions.save/grib2/local.98.5.def similarity index 100% rename from eccodes/definitions/grib2/local.98.5.def rename to eccodes/definitions.save/grib2/local.98.5.def diff --git a/eccodes/definitions/grib2/local.98.500.def b/eccodes/definitions.save/grib2/local.98.500.def similarity index 100% rename from eccodes/definitions/grib2/local.98.500.def rename to eccodes/definitions.save/grib2/local.98.500.def diff --git a/eccodes/definitions/grib2/local.98.7.def b/eccodes/definitions.save/grib2/local.98.7.def similarity index 100% rename from eccodes/definitions/grib2/local.98.7.def rename to eccodes/definitions.save/grib2/local.98.7.def diff --git a/eccodes/definitions/grib2/local.98.9.def b/eccodes/definitions.save/grib2/local.98.9.def similarity index 100% rename from eccodes/definitions/grib2/local.98.9.def rename to eccodes/definitions.save/grib2/local.98.9.def diff --git a/eccodes/definitions/grib2/local.98.def b/eccodes/definitions.save/grib2/local.98.def similarity index 100% rename from eccodes/definitions/grib2/local.98.def rename to eccodes/definitions.save/grib2/local.98.def diff --git a/eccodes/definitions/grib2/local.crra.1.def b/eccodes/definitions.save/grib2/local.crra.1.def similarity index 100% rename from eccodes/definitions/grib2/local.crra.1.def rename to eccodes/definitions.save/grib2/local.crra.1.def diff --git a/eccodes/definitions/grib2/local.tigge.1.def b/eccodes/definitions.save/grib2/local.tigge.1.def similarity index 100% rename from eccodes/definitions/grib2/local.tigge.1.def rename to eccodes/definitions.save/grib2/local.tigge.1.def diff --git a/eccodes/definitions/grib2/local/1098/2.1.table b/eccodes/definitions.save/grib2/local/1098/2.1.table similarity index 100% rename from eccodes/definitions/grib2/local/1098/2.1.table rename to eccodes/definitions.save/grib2/local/1098/2.1.table diff --git a/eccodes/definitions/grib2/local/1098/centres.table b/eccodes/definitions.save/grib2/local/1098/centres.table similarity index 100% rename from eccodes/definitions/grib2/local/1098/centres.table rename to eccodes/definitions.save/grib2/local/1098/centres.table diff --git a/eccodes/definitions/grib2/local/1098/models.table b/eccodes/definitions.save/grib2/local/1098/models.table similarity index 100% rename from eccodes/definitions/grib2/local/1098/models.table rename to eccodes/definitions.save/grib2/local/1098/models.table diff --git a/eccodes/definitions/grib2/local/1098/template.2.0.def b/eccodes/definitions.save/grib2/local/1098/template.2.0.def similarity index 100% rename from eccodes/definitions/grib2/local/1098/template.2.0.def rename to eccodes/definitions.save/grib2/local/1098/template.2.0.def diff --git a/eccodes/definitions/grib2/local/2.0.table b/eccodes/definitions.save/grib2/local/2.0.table similarity index 100% rename from eccodes/definitions/grib2/local/2.0.table rename to eccodes/definitions.save/grib2/local/2.0.table diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/modelName.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/cnmc/modelName.def rename to eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/name.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/cnmc/name.def rename to eccodes/definitions.save/grib2/localConcepts/cnmc/name.def diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/paramId.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/cnmc/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/shortName.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/cnmc/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/cnmc/units.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/cnmc/units.def rename to eccodes/definitions.save/grib2/localConcepts/cnmc/units.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/cfName.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/cfName.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/name.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/name.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/name.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/paramId.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/shortName.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/units.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/units.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/units.legacy.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def diff --git a/eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ecmf/unstructuredGridType.def rename to eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def b/eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/default_step_units.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/modelName.def b/eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/modelName.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/name.def b/eccodes/definitions.save/grib2/localConcepts/edzw/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/name.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/name.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/paramId.def b/eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/shortName.def b/eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/edzw/units.def b/eccodes/definitions.save/grib2/localConcepts/edzw/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/edzw/units.def rename to eccodes/definitions.save/grib2/localConcepts/edzw/units.def diff --git a/eccodes/definitions/grib2/localConcepts/efkl/name.def b/eccodes/definitions.save/grib2/localConcepts/efkl/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/efkl/name.def rename to eccodes/definitions.save/grib2/localConcepts/efkl/name.def diff --git a/eccodes/definitions/grib2/localConcepts/efkl/paramId.def b/eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/efkl/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/efkl/shortName.def b/eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/efkl/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/efkl/units.def b/eccodes/definitions.save/grib2/localConcepts/efkl/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/efkl/units.def rename to eccodes/definitions.save/grib2/localConcepts/efkl/units.def diff --git a/eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def b/eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/egrr/cfVarName.def rename to eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def diff --git a/eccodes/definitions/grib2/localConcepts/egrr/name.def b/eccodes/definitions.save/grib2/localConcepts/egrr/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/egrr/name.def rename to eccodes/definitions.save/grib2/localConcepts/egrr/name.def diff --git a/eccodes/definitions/grib2/localConcepts/egrr/paramId.def b/eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/egrr/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/egrr/shortName.def b/eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/egrr/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/egrr/units.def b/eccodes/definitions.save/grib2/localConcepts/egrr/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/egrr/units.def rename to eccodes/definitions.save/grib2/localConcepts/egrr/units.def diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/name.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ekmi/name.def rename to eccodes/definitions.save/grib2/localConcepts/ekmi/name.def diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/paramId.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ekmi/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/shortName.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ekmi/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/ekmi/units.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/ekmi/units.def rename to eccodes/definitions.save/grib2/localConcepts/ekmi/units.def diff --git a/eccodes/definitions/grib2/localConcepts/eswi/name.def b/eccodes/definitions.save/grib2/localConcepts/eswi/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/eswi/name.def rename to eccodes/definitions.save/grib2/localConcepts/eswi/name.def diff --git a/eccodes/definitions/grib2/localConcepts/eswi/paramId.def b/eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/eswi/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/eswi/shortName.def b/eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/eswi/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/eswi/units.def b/eccodes/definitions.save/grib2/localConcepts/eswi/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/eswi/units.def rename to eccodes/definitions.save/grib2/localConcepts/eswi/units.def diff --git a/eccodes/definitions/grib2/localConcepts/kwbc/name.def b/eccodes/definitions.save/grib2/localConcepts/kwbc/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/kwbc/name.def rename to eccodes/definitions.save/grib2/localConcepts/kwbc/name.def diff --git a/eccodes/definitions/grib2/localConcepts/kwbc/paramId.def b/eccodes/definitions.save/grib2/localConcepts/kwbc/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/kwbc/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/kwbc/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/kwbc/shortName.def b/eccodes/definitions.save/grib2/localConcepts/kwbc/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/kwbc/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/kwbc/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/kwbc/units.def b/eccodes/definitions.save/grib2/localConcepts/kwbc/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/kwbc/units.def rename to eccodes/definitions.save/grib2/localConcepts/kwbc/units.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/faFieldName.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/faFieldName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/faFieldName.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/faFieldName.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/faLevelName.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/faLevelName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/faLevelName.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/faLevelName.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/faModelName.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/faModelName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/faModelName.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/faModelName.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/name.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/name.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/name.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/paramId.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/shortName.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw/units.def b/eccodes/definitions.save/grib2/localConcepts/lfpw/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw/units.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw/units.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw1/name.def b/eccodes/definitions.save/grib2/localConcepts/lfpw1/name.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw1/name.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw1/name.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw1/paramId.def b/eccodes/definitions.save/grib2/localConcepts/lfpw1/paramId.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw1/paramId.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw1/paramId.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw1/shortName.def b/eccodes/definitions.save/grib2/localConcepts/lfpw1/shortName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw1/shortName.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw1/shortName.def diff --git a/eccodes/definitions/grib2/localConcepts/lfpw1/units.def b/eccodes/definitions.save/grib2/localConcepts/lfpw1/units.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lfpw1/units.def rename to eccodes/definitions.save/grib2/localConcepts/lfpw1/units.def diff --git a/eccodes/definitions/grib2/localConcepts/lssw/modelName.def b/eccodes/definitions.save/grib2/localConcepts/lssw/modelName.def similarity index 100% rename from eccodes/definitions/grib2/localConcepts/lssw/modelName.def rename to eccodes/definitions.save/grib2/localConcepts/lssw/modelName.def diff --git a/eccodes/definitions/grib2/ls.def b/eccodes/definitions.save/grib2/ls.def similarity index 100% rename from eccodes/definitions/grib2/ls.def rename to eccodes/definitions.save/grib2/ls.def diff --git a/eccodes/definitions/grib2/ls_labeling.82.def b/eccodes/definitions.save/grib2/ls_labeling.82.def similarity index 100% rename from eccodes/definitions/grib2/ls_labeling.82.def rename to eccodes/definitions.save/grib2/ls_labeling.82.def diff --git a/eccodes/definitions/grib2/mars_labeling.82.def b/eccodes/definitions.save/grib2/mars_labeling.82.def similarity index 100% rename from eccodes/definitions/grib2/mars_labeling.82.def rename to eccodes/definitions.save/grib2/mars_labeling.82.def diff --git a/eccodes/definitions/grib2/mars_labeling.def b/eccodes/definitions.save/grib2/mars_labeling.def similarity index 100% rename from eccodes/definitions/grib2/mars_labeling.def rename to eccodes/definitions.save/grib2/mars_labeling.def diff --git a/eccodes/definitions/grib2/meta.def b/eccodes/definitions.save/grib2/meta.def similarity index 100% rename from eccodes/definitions/grib2/meta.def rename to eccodes/definitions.save/grib2/meta.def diff --git a/eccodes/definitions/grib2/modelName.def b/eccodes/definitions.save/grib2/modelName.def similarity index 100% rename from eccodes/definitions/grib2/modelName.def rename to eccodes/definitions.save/grib2/modelName.def diff --git a/eccodes/definitions/grib2/name.def b/eccodes/definitions.save/grib2/name.def similarity index 100% rename from eccodes/definitions/grib2/name.def rename to eccodes/definitions.save/grib2/name.def diff --git a/eccodes/definitions/grib2/paramId.def b/eccodes/definitions.save/grib2/paramId.def similarity index 100% rename from eccodes/definitions/grib2/paramId.def rename to eccodes/definitions.save/grib2/paramId.def diff --git a/eccodes/definitions/grib2/parameters.def b/eccodes/definitions.save/grib2/parameters.def similarity index 100% rename from eccodes/definitions/grib2/parameters.def rename to eccodes/definitions.save/grib2/parameters.def diff --git a/eccodes/definitions/grib2/products_0.def b/eccodes/definitions.save/grib2/products_0.def similarity index 100% rename from eccodes/definitions/grib2/products_0.def rename to eccodes/definitions.save/grib2/products_0.def diff --git a/eccodes/definitions/grib2/products_1.def b/eccodes/definitions.save/grib2/products_1.def similarity index 100% rename from eccodes/definitions/grib2/products_1.def rename to eccodes/definitions.save/grib2/products_1.def diff --git a/eccodes/definitions/grib2/products_10.def b/eccodes/definitions.save/grib2/products_10.def similarity index 100% rename from eccodes/definitions/grib2/products_10.def rename to eccodes/definitions.save/grib2/products_10.def diff --git a/eccodes/definitions/grib2/products_11.def b/eccodes/definitions.save/grib2/products_11.def similarity index 100% rename from eccodes/definitions/grib2/products_11.def rename to eccodes/definitions.save/grib2/products_11.def diff --git a/eccodes/definitions/grib2/products_2.def b/eccodes/definitions.save/grib2/products_2.def similarity index 100% rename from eccodes/definitions/grib2/products_2.def rename to eccodes/definitions.save/grib2/products_2.def diff --git a/eccodes/definitions/grib2/products_3.def b/eccodes/definitions.save/grib2/products_3.def similarity index 100% rename from eccodes/definitions/grib2/products_3.def rename to eccodes/definitions.save/grib2/products_3.def diff --git a/eccodes/definitions/grib2/products_4.def b/eccodes/definitions.save/grib2/products_4.def similarity index 100% rename from eccodes/definitions/grib2/products_4.def rename to eccodes/definitions.save/grib2/products_4.def diff --git a/eccodes/definitions/grib2/products_5.def b/eccodes/definitions.save/grib2/products_5.def similarity index 100% rename from eccodes/definitions/grib2/products_5.def rename to eccodes/definitions.save/grib2/products_5.def diff --git a/eccodes/definitions/grib2/products_6.def b/eccodes/definitions.save/grib2/products_6.def similarity index 100% rename from eccodes/definitions/grib2/products_6.def rename to eccodes/definitions.save/grib2/products_6.def diff --git a/eccodes/definitions/grib2/products_7.def b/eccodes/definitions.save/grib2/products_7.def similarity index 100% rename from eccodes/definitions/grib2/products_7.def rename to eccodes/definitions.save/grib2/products_7.def diff --git a/eccodes/definitions/grib2/products_8.def b/eccodes/definitions.save/grib2/products_8.def similarity index 100% rename from eccodes/definitions/grib2/products_8.def rename to eccodes/definitions.save/grib2/products_8.def diff --git a/eccodes/definitions/grib2/products_9.def b/eccodes/definitions.save/grib2/products_9.def similarity index 100% rename from eccodes/definitions/grib2/products_9.def rename to eccodes/definitions.save/grib2/products_9.def diff --git a/eccodes/definitions/grib2/products_crra.def b/eccodes/definitions.save/grib2/products_crra.def similarity index 100% rename from eccodes/definitions/grib2/products_crra.def rename to eccodes/definitions.save/grib2/products_crra.def diff --git a/eccodes/definitions/grib2/products_s2s.def b/eccodes/definitions.save/grib2/products_s2s.def similarity index 100% rename from eccodes/definitions/grib2/products_s2s.def rename to eccodes/definitions.save/grib2/products_s2s.def diff --git a/eccodes/definitions/grib2/products_tigge.def b/eccodes/definitions.save/grib2/products_tigge.def similarity index 100% rename from eccodes/definitions/grib2/products_tigge.def rename to eccodes/definitions.save/grib2/products_tigge.def diff --git a/eccodes/definitions/grib2/products_uerra.def b/eccodes/definitions.save/grib2/products_uerra.def similarity index 100% rename from eccodes/definitions/grib2/products_uerra.def rename to eccodes/definitions.save/grib2/products_uerra.def diff --git a/eccodes/definitions/grib2/rules.def b/eccodes/definitions.save/grib2/rules.def similarity index 100% rename from eccodes/definitions/grib2/rules.def rename to eccodes/definitions.save/grib2/rules.def diff --git a/eccodes/definitions/grib2/section.0.def b/eccodes/definitions.save/grib2/section.0.def similarity index 100% rename from eccodes/definitions/grib2/section.0.def rename to eccodes/definitions.save/grib2/section.0.def diff --git a/eccodes/definitions/grib2/section.1.def b/eccodes/definitions.save/grib2/section.1.def similarity index 100% rename from eccodes/definitions/grib2/section.1.def rename to eccodes/definitions.save/grib2/section.1.def diff --git a/eccodes/definitions/grib2/section.2.def b/eccodes/definitions.save/grib2/section.2.def similarity index 100% rename from eccodes/definitions/grib2/section.2.def rename to eccodes/definitions.save/grib2/section.2.def diff --git a/eccodes/definitions/grib2/section.3.def b/eccodes/definitions.save/grib2/section.3.def similarity index 100% rename from eccodes/definitions/grib2/section.3.def rename to eccodes/definitions.save/grib2/section.3.def diff --git a/eccodes/definitions/grib2/section.4.def b/eccodes/definitions.save/grib2/section.4.def similarity index 100% rename from eccodes/definitions/grib2/section.4.def rename to eccodes/definitions.save/grib2/section.4.def diff --git a/eccodes/definitions/grib2/section.5.def b/eccodes/definitions.save/grib2/section.5.def similarity index 100% rename from eccodes/definitions/grib2/section.5.def rename to eccodes/definitions.save/grib2/section.5.def diff --git a/eccodes/definitions/grib2/section.6.def b/eccodes/definitions.save/grib2/section.6.def similarity index 100% rename from eccodes/definitions/grib2/section.6.def rename to eccodes/definitions.save/grib2/section.6.def diff --git a/eccodes/definitions/grib2/section.7.def b/eccodes/definitions.save/grib2/section.7.def similarity index 100% rename from eccodes/definitions/grib2/section.7.def rename to eccodes/definitions.save/grib2/section.7.def diff --git a/eccodes/definitions/grib2/section.8.def b/eccodes/definitions.save/grib2/section.8.def similarity index 100% rename from eccodes/definitions/grib2/section.8.def rename to eccodes/definitions.save/grib2/section.8.def diff --git a/eccodes/definitions/grib2/sections.def b/eccodes/definitions.save/grib2/sections.def similarity index 100% rename from eccodes/definitions/grib2/sections.def rename to eccodes/definitions.save/grib2/sections.def diff --git a/eccodes/definitions/grib2/shortName.def b/eccodes/definitions.save/grib2/shortName.def similarity index 100% rename from eccodes/definitions/grib2/shortName.def rename to eccodes/definitions.save/grib2/shortName.def diff --git a/eccodes/definitions/grib2/tables/0.0.table b/eccodes/definitions.save/grib2/tables/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0.0.table rename to eccodes/definitions.save/grib2/tables/0.0.table diff --git a/eccodes/definitions/grib2/tables/0/0.0.table b/eccodes/definitions.save/grib2/tables/0/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/0.0.table rename to eccodes/definitions.save/grib2/tables/0/0.0.table diff --git a/eccodes/definitions/grib2/tables/0/1.0.table b/eccodes/definitions.save/grib2/tables/0/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/1.0.table rename to eccodes/definitions.save/grib2/tables/0/1.0.table diff --git a/eccodes/definitions/grib2/tables/0/1.1.table b/eccodes/definitions.save/grib2/tables/0/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/1.1.table rename to eccodes/definitions.save/grib2/tables/0/1.1.table diff --git a/eccodes/definitions/grib2/tables/0/1.2.table b/eccodes/definitions.save/grib2/tables/0/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/1.2.table rename to eccodes/definitions.save/grib2/tables/0/1.2.table diff --git a/eccodes/definitions/grib2/tables/0/1.3.table b/eccodes/definitions.save/grib2/tables/0/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/1.3.table rename to eccodes/definitions.save/grib2/tables/0/1.3.table diff --git a/eccodes/definitions/grib2/tables/0/1.4.table b/eccodes/definitions.save/grib2/tables/0/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/1.4.table rename to eccodes/definitions.save/grib2/tables/0/1.4.table diff --git a/eccodes/definitions/grib2/tables/0/3.0.table b/eccodes/definitions.save/grib2/tables/0/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.0.table rename to eccodes/definitions.save/grib2/tables/0/3.0.table diff --git a/eccodes/definitions/grib2/tables/0/3.1.table b/eccodes/definitions.save/grib2/tables/0/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.1.table rename to eccodes/definitions.save/grib2/tables/0/3.1.table diff --git a/eccodes/definitions/grib2/tables/0/3.10.table b/eccodes/definitions.save/grib2/tables/0/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.10.table rename to eccodes/definitions.save/grib2/tables/0/3.10.table diff --git a/eccodes/definitions/grib2/tables/0/3.11.table b/eccodes/definitions.save/grib2/tables/0/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.11.table rename to eccodes/definitions.save/grib2/tables/0/3.11.table diff --git a/eccodes/definitions/grib2/tables/0/3.15.table b/eccodes/definitions.save/grib2/tables/0/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.15.table rename to eccodes/definitions.save/grib2/tables/0/3.15.table diff --git a/eccodes/definitions/grib2/tables/0/3.2.table b/eccodes/definitions.save/grib2/tables/0/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.2.table rename to eccodes/definitions.save/grib2/tables/0/3.2.table diff --git a/eccodes/definitions/grib2/tables/0/3.20.table b/eccodes/definitions.save/grib2/tables/0/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.20.table rename to eccodes/definitions.save/grib2/tables/0/3.20.table diff --git a/eccodes/definitions/grib2/tables/0/3.21.table b/eccodes/definitions.save/grib2/tables/0/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.21.table rename to eccodes/definitions.save/grib2/tables/0/3.21.table diff --git a/eccodes/definitions/grib2/tables/0/3.3.table b/eccodes/definitions.save/grib2/tables/0/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.3.table rename to eccodes/definitions.save/grib2/tables/0/3.3.table diff --git a/eccodes/definitions/grib2/tables/0/3.4.table b/eccodes/definitions.save/grib2/tables/0/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.4.table rename to eccodes/definitions.save/grib2/tables/0/3.4.table diff --git a/eccodes/definitions/grib2/tables/0/3.5.table b/eccodes/definitions.save/grib2/tables/0/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.5.table rename to eccodes/definitions.save/grib2/tables/0/3.5.table diff --git a/eccodes/definitions/grib2/tables/0/3.6.table b/eccodes/definitions.save/grib2/tables/0/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.6.table rename to eccodes/definitions.save/grib2/tables/0/3.6.table diff --git a/eccodes/definitions/grib2/tables/0/3.7.table b/eccodes/definitions.save/grib2/tables/0/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.7.table rename to eccodes/definitions.save/grib2/tables/0/3.7.table diff --git a/eccodes/definitions/grib2/tables/0/3.8.table b/eccodes/definitions.save/grib2/tables/0/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.8.table rename to eccodes/definitions.save/grib2/tables/0/3.8.table diff --git a/eccodes/definitions/grib2/tables/0/3.9.table b/eccodes/definitions.save/grib2/tables/0/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/3.9.table rename to eccodes/definitions.save/grib2/tables/0/3.9.table diff --git a/eccodes/definitions/grib2/tables/0/4.0.table b/eccodes/definitions.save/grib2/tables/0/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.0.table rename to eccodes/definitions.save/grib2/tables/0/4.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.0.table b/eccodes/definitions.save/grib2/tables/0/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.0.table rename to eccodes/definitions.save/grib2/tables/0/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.1.table b/eccodes/definitions.save/grib2/tables/0/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.1.table rename to eccodes/definitions.save/grib2/tables/0/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.10.table b/eccodes/definitions.save/grib2/tables/0/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.10.table rename to eccodes/definitions.save/grib2/tables/0/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.2.table b/eccodes/definitions.save/grib2/tables/0/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.2.table rename to eccodes/definitions.save/grib2/tables/0/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.3.table b/eccodes/definitions.save/grib2/tables/0/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.3.table rename to eccodes/definitions.save/grib2/tables/0/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/0/4.1.table b/eccodes/definitions.save/grib2/tables/0/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.1.table rename to eccodes/definitions.save/grib2/tables/0/4.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.10.table b/eccodes/definitions.save/grib2/tables/0/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.10.table rename to eccodes/definitions.save/grib2/tables/0/4.10.table diff --git a/eccodes/definitions/grib2/tables/0/4.11.table b/eccodes/definitions.save/grib2/tables/0/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.11.table rename to eccodes/definitions.save/grib2/tables/0/4.11.table diff --git a/eccodes/definitions/grib2/tables/0/4.12.table b/eccodes/definitions.save/grib2/tables/0/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.12.table rename to eccodes/definitions.save/grib2/tables/0/4.12.table diff --git a/eccodes/definitions/grib2/tables/0/4.13.table b/eccodes/definitions.save/grib2/tables/0/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.13.table rename to eccodes/definitions.save/grib2/tables/0/4.13.table diff --git a/eccodes/definitions/grib2/tables/0/4.14.table b/eccodes/definitions.save/grib2/tables/0/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.14.table rename to eccodes/definitions.save/grib2/tables/0/4.14.table diff --git a/eccodes/definitions/grib2/tables/0/4.15.table b/eccodes/definitions.save/grib2/tables/0/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.15.table rename to eccodes/definitions.save/grib2/tables/0/4.15.table diff --git a/eccodes/definitions/grib2/tables/0/4.151.table b/eccodes/definitions.save/grib2/tables/0/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.151.table rename to eccodes/definitions.save/grib2/tables/0/4.151.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/0/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/0/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/0/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/0/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/0/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/0/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/0/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/0/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/0/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/0/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/0/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/0/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/0/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/0/4.201.table b/eccodes/definitions.save/grib2/tables/0/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.201.table rename to eccodes/definitions.save/grib2/tables/0/4.201.table diff --git a/eccodes/definitions/grib2/tables/0/4.202.table b/eccodes/definitions.save/grib2/tables/0/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.202.table rename to eccodes/definitions.save/grib2/tables/0/4.202.table diff --git a/eccodes/definitions/grib2/tables/0/4.203.table b/eccodes/definitions.save/grib2/tables/0/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.203.table rename to eccodes/definitions.save/grib2/tables/0/4.203.table diff --git a/eccodes/definitions/grib2/tables/0/4.204.table b/eccodes/definitions.save/grib2/tables/0/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.204.table rename to eccodes/definitions.save/grib2/tables/0/4.204.table diff --git a/eccodes/definitions/grib2/tables/0/4.205.table b/eccodes/definitions.save/grib2/tables/0/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.205.table rename to eccodes/definitions.save/grib2/tables/0/4.205.table diff --git a/eccodes/definitions/grib2/tables/0/4.206.table b/eccodes/definitions.save/grib2/tables/0/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.206.table rename to eccodes/definitions.save/grib2/tables/0/4.206.table diff --git a/eccodes/definitions/grib2/tables/0/4.207.table b/eccodes/definitions.save/grib2/tables/0/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.207.table rename to eccodes/definitions.save/grib2/tables/0/4.207.table diff --git a/eccodes/definitions/grib2/tables/0/4.208.table b/eccodes/definitions.save/grib2/tables/0/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.208.table rename to eccodes/definitions.save/grib2/tables/0/4.208.table diff --git a/eccodes/definitions/grib2/tables/0/4.209.table b/eccodes/definitions.save/grib2/tables/0/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.209.table rename to eccodes/definitions.save/grib2/tables/0/4.209.table diff --git a/eccodes/definitions/grib2/tables/0/4.210.table b/eccodes/definitions.save/grib2/tables/0/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.210.table rename to eccodes/definitions.save/grib2/tables/0/4.210.table diff --git a/eccodes/definitions/grib2/tables/0/4.211.table b/eccodes/definitions.save/grib2/tables/0/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.211.table rename to eccodes/definitions.save/grib2/tables/0/4.211.table diff --git a/eccodes/definitions/grib2/tables/0/4.212.table b/eccodes/definitions.save/grib2/tables/0/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.212.table rename to eccodes/definitions.save/grib2/tables/0/4.212.table diff --git a/eccodes/definitions/grib2/tables/0/4.213.table b/eccodes/definitions.save/grib2/tables/0/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.213.table rename to eccodes/definitions.save/grib2/tables/0/4.213.table diff --git a/eccodes/definitions/grib2/tables/0/4.215.table b/eccodes/definitions.save/grib2/tables/0/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.215.table rename to eccodes/definitions.save/grib2/tables/0/4.215.table diff --git a/eccodes/definitions/grib2/tables/0/4.216.table b/eccodes/definitions.save/grib2/tables/0/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.216.table rename to eccodes/definitions.save/grib2/tables/0/4.216.table diff --git a/eccodes/definitions/grib2/tables/0/4.217.table b/eccodes/definitions.save/grib2/tables/0/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.217.table rename to eccodes/definitions.save/grib2/tables/0/4.217.table diff --git a/eccodes/definitions/grib2/tables/0/4.220.table b/eccodes/definitions.save/grib2/tables/0/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.220.table rename to eccodes/definitions.save/grib2/tables/0/4.220.table diff --git a/eccodes/definitions/grib2/tables/0/4.221.table b/eccodes/definitions.save/grib2/tables/0/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.221.table rename to eccodes/definitions.save/grib2/tables/0/4.221.table diff --git a/eccodes/definitions/grib2/tables/0/4.230.table b/eccodes/definitions.save/grib2/tables/0/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.230.table rename to eccodes/definitions.save/grib2/tables/0/4.230.table diff --git a/eccodes/definitions/grib2/tables/0/4.3.table b/eccodes/definitions.save/grib2/tables/0/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.3.table rename to eccodes/definitions.save/grib2/tables/0/4.3.table diff --git a/eccodes/definitions/grib2/tables/0/4.4.table b/eccodes/definitions.save/grib2/tables/0/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.4.table rename to eccodes/definitions.save/grib2/tables/0/4.4.table diff --git a/eccodes/definitions/grib2/tables/0/4.5.table b/eccodes/definitions.save/grib2/tables/0/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.5.table rename to eccodes/definitions.save/grib2/tables/0/4.5.table diff --git a/eccodes/definitions/grib2/tables/0/4.6.table b/eccodes/definitions.save/grib2/tables/0/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.6.table rename to eccodes/definitions.save/grib2/tables/0/4.6.table diff --git a/eccodes/definitions/grib2/tables/0/4.7.table b/eccodes/definitions.save/grib2/tables/0/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.7.table rename to eccodes/definitions.save/grib2/tables/0/4.7.table diff --git a/eccodes/definitions/grib2/tables/0/4.8.table b/eccodes/definitions.save/grib2/tables/0/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.8.table rename to eccodes/definitions.save/grib2/tables/0/4.8.table diff --git a/eccodes/definitions/grib2/tables/0/4.9.table b/eccodes/definitions.save/grib2/tables/0/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.9.table rename to eccodes/definitions.save/grib2/tables/0/4.9.table diff --git a/eccodes/definitions/grib2/tables/0/4.91.table b/eccodes/definitions.save/grib2/tables/0/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/4.91.table rename to eccodes/definitions.save/grib2/tables/0/4.91.table diff --git a/eccodes/definitions/grib2/tables/0/5.0.table b/eccodes/definitions.save/grib2/tables/0/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.0.table rename to eccodes/definitions.save/grib2/tables/0/5.0.table diff --git a/eccodes/definitions/grib2/tables/0/5.1.table b/eccodes/definitions.save/grib2/tables/0/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.1.table rename to eccodes/definitions.save/grib2/tables/0/5.1.table diff --git a/eccodes/definitions/grib2/tables/0/5.2.table b/eccodes/definitions.save/grib2/tables/0/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.2.table rename to eccodes/definitions.save/grib2/tables/0/5.2.table diff --git a/eccodes/definitions/grib2/tables/0/5.3.table b/eccodes/definitions.save/grib2/tables/0/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.3.table rename to eccodes/definitions.save/grib2/tables/0/5.3.table diff --git a/eccodes/definitions/grib2/tables/0/5.4.table b/eccodes/definitions.save/grib2/tables/0/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.4.table rename to eccodes/definitions.save/grib2/tables/0/5.4.table diff --git a/eccodes/definitions/grib2/tables/0/5.40.table b/eccodes/definitions.save/grib2/tables/0/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.40.table rename to eccodes/definitions.save/grib2/tables/0/5.40.table diff --git a/eccodes/definitions/grib2/tables/0/5.40000.table b/eccodes/definitions.save/grib2/tables/0/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.40000.table rename to eccodes/definitions.save/grib2/tables/0/5.40000.table diff --git a/eccodes/definitions/grib2/tables/0/5.5.table b/eccodes/definitions.save/grib2/tables/0/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.5.table rename to eccodes/definitions.save/grib2/tables/0/5.5.table diff --git a/eccodes/definitions/grib2/tables/0/5.6.table b/eccodes/definitions.save/grib2/tables/0/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.6.table rename to eccodes/definitions.save/grib2/tables/0/5.6.table diff --git a/eccodes/definitions/grib2/tables/0/5.7.table b/eccodes/definitions.save/grib2/tables/0/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.7.table rename to eccodes/definitions.save/grib2/tables/0/5.7.table diff --git a/eccodes/definitions/grib2/tables/0/5.8.table b/eccodes/definitions.save/grib2/tables/0/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.8.table rename to eccodes/definitions.save/grib2/tables/0/5.8.table diff --git a/eccodes/definitions/grib2/tables/0/5.9.table b/eccodes/definitions.save/grib2/tables/0/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/5.9.table rename to eccodes/definitions.save/grib2/tables/0/5.9.table diff --git a/eccodes/definitions/grib2/tables/0/6.0.table b/eccodes/definitions.save/grib2/tables/0/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/0/6.0.table rename to eccodes/definitions.save/grib2/tables/0/6.0.table diff --git a/eccodes/definitions/grib2/tables/1.0.table b/eccodes/definitions.save/grib2/tables/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1.0.table rename to eccodes/definitions.save/grib2/tables/1.0.table diff --git a/eccodes/definitions/grib2/tables/1/0.0.table b/eccodes/definitions.save/grib2/tables/1/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/0.0.table rename to eccodes/definitions.save/grib2/tables/1/0.0.table diff --git a/eccodes/definitions/grib2/tables/1/1.0.table b/eccodes/definitions.save/grib2/tables/1/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/1.0.table rename to eccodes/definitions.save/grib2/tables/1/1.0.table diff --git a/eccodes/definitions/grib2/tables/1/1.1.table b/eccodes/definitions.save/grib2/tables/1/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/1.1.table rename to eccodes/definitions.save/grib2/tables/1/1.1.table diff --git a/eccodes/definitions/grib2/tables/1/1.2.table b/eccodes/definitions.save/grib2/tables/1/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/1.2.table rename to eccodes/definitions.save/grib2/tables/1/1.2.table diff --git a/eccodes/definitions/grib2/tables/1/1.3.table b/eccodes/definitions.save/grib2/tables/1/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/1.3.table rename to eccodes/definitions.save/grib2/tables/1/1.3.table diff --git a/eccodes/definitions/grib2/tables/1/1.4.table b/eccodes/definitions.save/grib2/tables/1/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/1.4.table rename to eccodes/definitions.save/grib2/tables/1/1.4.table diff --git a/eccodes/definitions/grib2/tables/1/3.0.table b/eccodes/definitions.save/grib2/tables/1/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.0.table rename to eccodes/definitions.save/grib2/tables/1/3.0.table diff --git a/eccodes/definitions/grib2/tables/1/3.1.table b/eccodes/definitions.save/grib2/tables/1/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.1.table rename to eccodes/definitions.save/grib2/tables/1/3.1.table diff --git a/eccodes/definitions/grib2/tables/1/3.10.table b/eccodes/definitions.save/grib2/tables/1/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.10.table rename to eccodes/definitions.save/grib2/tables/1/3.10.table diff --git a/eccodes/definitions/grib2/tables/1/3.11.table b/eccodes/definitions.save/grib2/tables/1/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.11.table rename to eccodes/definitions.save/grib2/tables/1/3.11.table diff --git a/eccodes/definitions/grib2/tables/1/3.15.table b/eccodes/definitions.save/grib2/tables/1/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.15.table rename to eccodes/definitions.save/grib2/tables/1/3.15.table diff --git a/eccodes/definitions/grib2/tables/1/3.2.table b/eccodes/definitions.save/grib2/tables/1/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.2.table rename to eccodes/definitions.save/grib2/tables/1/3.2.table diff --git a/eccodes/definitions/grib2/tables/1/3.20.table b/eccodes/definitions.save/grib2/tables/1/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.20.table rename to eccodes/definitions.save/grib2/tables/1/3.20.table diff --git a/eccodes/definitions/grib2/tables/1/3.21.table b/eccodes/definitions.save/grib2/tables/1/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.21.table rename to eccodes/definitions.save/grib2/tables/1/3.21.table diff --git a/eccodes/definitions/grib2/tables/1/3.3.table b/eccodes/definitions.save/grib2/tables/1/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.3.table rename to eccodes/definitions.save/grib2/tables/1/3.3.table diff --git a/eccodes/definitions/grib2/tables/1/3.4.table b/eccodes/definitions.save/grib2/tables/1/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.4.table rename to eccodes/definitions.save/grib2/tables/1/3.4.table diff --git a/eccodes/definitions/grib2/tables/1/3.5.table b/eccodes/definitions.save/grib2/tables/1/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.5.table rename to eccodes/definitions.save/grib2/tables/1/3.5.table diff --git a/eccodes/definitions/grib2/tables/1/3.6.table b/eccodes/definitions.save/grib2/tables/1/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.6.table rename to eccodes/definitions.save/grib2/tables/1/3.6.table diff --git a/eccodes/definitions/grib2/tables/1/3.7.table b/eccodes/definitions.save/grib2/tables/1/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.7.table rename to eccodes/definitions.save/grib2/tables/1/3.7.table diff --git a/eccodes/definitions/grib2/tables/1/3.8.table b/eccodes/definitions.save/grib2/tables/1/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.8.table rename to eccodes/definitions.save/grib2/tables/1/3.8.table diff --git a/eccodes/definitions/grib2/tables/1/3.9.table b/eccodes/definitions.save/grib2/tables/1/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/3.9.table rename to eccodes/definitions.save/grib2/tables/1/3.9.table diff --git a/eccodes/definitions/grib2/tables/1/4.0.table b/eccodes/definitions.save/grib2/tables/1/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.0.table rename to eccodes/definitions.save/grib2/tables/1/4.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.0.table b/eccodes/definitions.save/grib2/tables/1/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.0.table rename to eccodes/definitions.save/grib2/tables/1/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.1.table b/eccodes/definitions.save/grib2/tables/1/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.1.table rename to eccodes/definitions.save/grib2/tables/1/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.10.table b/eccodes/definitions.save/grib2/tables/1/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.10.table rename to eccodes/definitions.save/grib2/tables/1/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.2.table b/eccodes/definitions.save/grib2/tables/1/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.2.table rename to eccodes/definitions.save/grib2/tables/1/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.3.table b/eccodes/definitions.save/grib2/tables/1/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.3.table rename to eccodes/definitions.save/grib2/tables/1/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/1/4.1.table b/eccodes/definitions.save/grib2/tables/1/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.1.table rename to eccodes/definitions.save/grib2/tables/1/4.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.10.table b/eccodes/definitions.save/grib2/tables/1/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.10.table rename to eccodes/definitions.save/grib2/tables/1/4.10.table diff --git a/eccodes/definitions/grib2/tables/1/4.11.table b/eccodes/definitions.save/grib2/tables/1/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.11.table rename to eccodes/definitions.save/grib2/tables/1/4.11.table diff --git a/eccodes/definitions/grib2/tables/1/4.12.table b/eccodes/definitions.save/grib2/tables/1/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.12.table rename to eccodes/definitions.save/grib2/tables/1/4.12.table diff --git a/eccodes/definitions/grib2/tables/1/4.13.table b/eccodes/definitions.save/grib2/tables/1/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.13.table rename to eccodes/definitions.save/grib2/tables/1/4.13.table diff --git a/eccodes/definitions/grib2/tables/1/4.14.table b/eccodes/definitions.save/grib2/tables/1/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.14.table rename to eccodes/definitions.save/grib2/tables/1/4.14.table diff --git a/eccodes/definitions/grib2/tables/1/4.15.table b/eccodes/definitions.save/grib2/tables/1/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.15.table rename to eccodes/definitions.save/grib2/tables/1/4.15.table diff --git a/eccodes/definitions/grib2/tables/1/4.151.table b/eccodes/definitions.save/grib2/tables/1/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.151.table rename to eccodes/definitions.save/grib2/tables/1/4.151.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/1/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/1/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/1/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/1/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/1/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/1/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/1/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/1/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/1/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/1/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/1/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/1/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/1/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/1/4.201.table b/eccodes/definitions.save/grib2/tables/1/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.201.table rename to eccodes/definitions.save/grib2/tables/1/4.201.table diff --git a/eccodes/definitions/grib2/tables/1/4.202.table b/eccodes/definitions.save/grib2/tables/1/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.202.table rename to eccodes/definitions.save/grib2/tables/1/4.202.table diff --git a/eccodes/definitions/grib2/tables/1/4.203.table b/eccodes/definitions.save/grib2/tables/1/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.203.table rename to eccodes/definitions.save/grib2/tables/1/4.203.table diff --git a/eccodes/definitions/grib2/tables/1/4.204.table b/eccodes/definitions.save/grib2/tables/1/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.204.table rename to eccodes/definitions.save/grib2/tables/1/4.204.table diff --git a/eccodes/definitions/grib2/tables/1/4.205.table b/eccodes/definitions.save/grib2/tables/1/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.205.table rename to eccodes/definitions.save/grib2/tables/1/4.205.table diff --git a/eccodes/definitions/grib2/tables/1/4.206.table b/eccodes/definitions.save/grib2/tables/1/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.206.table rename to eccodes/definitions.save/grib2/tables/1/4.206.table diff --git a/eccodes/definitions/grib2/tables/1/4.207.table b/eccodes/definitions.save/grib2/tables/1/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.207.table rename to eccodes/definitions.save/grib2/tables/1/4.207.table diff --git a/eccodes/definitions/grib2/tables/1/4.208.table b/eccodes/definitions.save/grib2/tables/1/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.208.table rename to eccodes/definitions.save/grib2/tables/1/4.208.table diff --git a/eccodes/definitions/grib2/tables/1/4.209.table b/eccodes/definitions.save/grib2/tables/1/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.209.table rename to eccodes/definitions.save/grib2/tables/1/4.209.table diff --git a/eccodes/definitions/grib2/tables/1/4.210.table b/eccodes/definitions.save/grib2/tables/1/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.210.table rename to eccodes/definitions.save/grib2/tables/1/4.210.table diff --git a/eccodes/definitions/grib2/tables/1/4.211.table b/eccodes/definitions.save/grib2/tables/1/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.211.table rename to eccodes/definitions.save/grib2/tables/1/4.211.table diff --git a/eccodes/definitions/grib2/tables/1/4.212.table b/eccodes/definitions.save/grib2/tables/1/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.212.table rename to eccodes/definitions.save/grib2/tables/1/4.212.table diff --git a/eccodes/definitions/grib2/tables/1/4.213.table b/eccodes/definitions.save/grib2/tables/1/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.213.table rename to eccodes/definitions.save/grib2/tables/1/4.213.table diff --git a/eccodes/definitions/grib2/tables/1/4.215.table b/eccodes/definitions.save/grib2/tables/1/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.215.table rename to eccodes/definitions.save/grib2/tables/1/4.215.table diff --git a/eccodes/definitions/grib2/tables/1/4.216.table b/eccodes/definitions.save/grib2/tables/1/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.216.table rename to eccodes/definitions.save/grib2/tables/1/4.216.table diff --git a/eccodes/definitions/grib2/tables/1/4.217.table b/eccodes/definitions.save/grib2/tables/1/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.217.table rename to eccodes/definitions.save/grib2/tables/1/4.217.table diff --git a/eccodes/definitions/grib2/tables/1/4.220.table b/eccodes/definitions.save/grib2/tables/1/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.220.table rename to eccodes/definitions.save/grib2/tables/1/4.220.table diff --git a/eccodes/definitions/grib2/tables/1/4.221.table b/eccodes/definitions.save/grib2/tables/1/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.221.table rename to eccodes/definitions.save/grib2/tables/1/4.221.table diff --git a/eccodes/definitions/grib2/tables/1/4.230.table b/eccodes/definitions.save/grib2/tables/1/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.230.table rename to eccodes/definitions.save/grib2/tables/1/4.230.table diff --git a/eccodes/definitions/grib2/tables/1/4.3.table b/eccodes/definitions.save/grib2/tables/1/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.3.table rename to eccodes/definitions.save/grib2/tables/1/4.3.table diff --git a/eccodes/definitions/grib2/tables/1/4.4.table b/eccodes/definitions.save/grib2/tables/1/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.4.table rename to eccodes/definitions.save/grib2/tables/1/4.4.table diff --git a/eccodes/definitions/grib2/tables/1/4.5.table b/eccodes/definitions.save/grib2/tables/1/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.5.table rename to eccodes/definitions.save/grib2/tables/1/4.5.table diff --git a/eccodes/definitions/grib2/tables/1/4.6.table b/eccodes/definitions.save/grib2/tables/1/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.6.table rename to eccodes/definitions.save/grib2/tables/1/4.6.table diff --git a/eccodes/definitions/grib2/tables/1/4.7.table b/eccodes/definitions.save/grib2/tables/1/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.7.table rename to eccodes/definitions.save/grib2/tables/1/4.7.table diff --git a/eccodes/definitions/grib2/tables/1/4.8.table b/eccodes/definitions.save/grib2/tables/1/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.8.table rename to eccodes/definitions.save/grib2/tables/1/4.8.table diff --git a/eccodes/definitions/grib2/tables/1/4.9.table b/eccodes/definitions.save/grib2/tables/1/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.9.table rename to eccodes/definitions.save/grib2/tables/1/4.9.table diff --git a/eccodes/definitions/grib2/tables/1/4.91.table b/eccodes/definitions.save/grib2/tables/1/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/4.91.table rename to eccodes/definitions.save/grib2/tables/1/4.91.table diff --git a/eccodes/definitions/grib2/tables/1/5.0.table b/eccodes/definitions.save/grib2/tables/1/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.0.table rename to eccodes/definitions.save/grib2/tables/1/5.0.table diff --git a/eccodes/definitions/grib2/tables/1/5.1.table b/eccodes/definitions.save/grib2/tables/1/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.1.table rename to eccodes/definitions.save/grib2/tables/1/5.1.table diff --git a/eccodes/definitions/grib2/tables/1/5.2.table b/eccodes/definitions.save/grib2/tables/1/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.2.table rename to eccodes/definitions.save/grib2/tables/1/5.2.table diff --git a/eccodes/definitions/grib2/tables/1/5.3.table b/eccodes/definitions.save/grib2/tables/1/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.3.table rename to eccodes/definitions.save/grib2/tables/1/5.3.table diff --git a/eccodes/definitions/grib2/tables/1/5.4.table b/eccodes/definitions.save/grib2/tables/1/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.4.table rename to eccodes/definitions.save/grib2/tables/1/5.4.table diff --git a/eccodes/definitions/grib2/tables/1/5.40.table b/eccodes/definitions.save/grib2/tables/1/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.40.table rename to eccodes/definitions.save/grib2/tables/1/5.40.table diff --git a/eccodes/definitions/grib2/tables/1/5.40000.table b/eccodes/definitions.save/grib2/tables/1/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.40000.table rename to eccodes/definitions.save/grib2/tables/1/5.40000.table diff --git a/eccodes/definitions/grib2/tables/1/5.5.table b/eccodes/definitions.save/grib2/tables/1/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.5.table rename to eccodes/definitions.save/grib2/tables/1/5.5.table diff --git a/eccodes/definitions/grib2/tables/1/5.6.table b/eccodes/definitions.save/grib2/tables/1/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.6.table rename to eccodes/definitions.save/grib2/tables/1/5.6.table diff --git a/eccodes/definitions/grib2/tables/1/5.7.table b/eccodes/definitions.save/grib2/tables/1/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.7.table rename to eccodes/definitions.save/grib2/tables/1/5.7.table diff --git a/eccodes/definitions/grib2/tables/1/5.8.table b/eccodes/definitions.save/grib2/tables/1/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.8.table rename to eccodes/definitions.save/grib2/tables/1/5.8.table diff --git a/eccodes/definitions/grib2/tables/1/5.9.table b/eccodes/definitions.save/grib2/tables/1/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/5.9.table rename to eccodes/definitions.save/grib2/tables/1/5.9.table diff --git a/eccodes/definitions/grib2/tables/1/6.0.table b/eccodes/definitions.save/grib2/tables/1/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/1/6.0.table rename to eccodes/definitions.save/grib2/tables/1/6.0.table diff --git a/eccodes/definitions/grib2/tables/10/0.0.table b/eccodes/definitions.save/grib2/tables/10/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/0.0.table rename to eccodes/definitions.save/grib2/tables/10/0.0.table diff --git a/eccodes/definitions/grib2/tables/10/1.0.table b/eccodes/definitions.save/grib2/tables/10/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/1.0.table rename to eccodes/definitions.save/grib2/tables/10/1.0.table diff --git a/eccodes/definitions/grib2/tables/10/1.1.table b/eccodes/definitions.save/grib2/tables/10/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/1.1.table rename to eccodes/definitions.save/grib2/tables/10/1.1.table diff --git a/eccodes/definitions/grib2/tables/10/1.2.table b/eccodes/definitions.save/grib2/tables/10/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/1.2.table rename to eccodes/definitions.save/grib2/tables/10/1.2.table diff --git a/eccodes/definitions/grib2/tables/10/1.3.table b/eccodes/definitions.save/grib2/tables/10/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/1.3.table rename to eccodes/definitions.save/grib2/tables/10/1.3.table diff --git a/eccodes/definitions/grib2/tables/10/1.4.table b/eccodes/definitions.save/grib2/tables/10/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/1.4.table rename to eccodes/definitions.save/grib2/tables/10/1.4.table diff --git a/eccodes/definitions/grib2/tables/10/3.0.table b/eccodes/definitions.save/grib2/tables/10/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.0.table rename to eccodes/definitions.save/grib2/tables/10/3.0.table diff --git a/eccodes/definitions/grib2/tables/10/3.1.table b/eccodes/definitions.save/grib2/tables/10/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.1.table rename to eccodes/definitions.save/grib2/tables/10/3.1.table diff --git a/eccodes/definitions/grib2/tables/10/3.10.table b/eccodes/definitions.save/grib2/tables/10/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.10.table rename to eccodes/definitions.save/grib2/tables/10/3.10.table diff --git a/eccodes/definitions/grib2/tables/10/3.11.table b/eccodes/definitions.save/grib2/tables/10/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.11.table rename to eccodes/definitions.save/grib2/tables/10/3.11.table diff --git a/eccodes/definitions/grib2/tables/10/3.15.table b/eccodes/definitions.save/grib2/tables/10/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.15.table rename to eccodes/definitions.save/grib2/tables/10/3.15.table diff --git a/eccodes/definitions/grib2/tables/10/3.2.table b/eccodes/definitions.save/grib2/tables/10/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.2.table rename to eccodes/definitions.save/grib2/tables/10/3.2.table diff --git a/eccodes/definitions/grib2/tables/10/3.20.table b/eccodes/definitions.save/grib2/tables/10/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.20.table rename to eccodes/definitions.save/grib2/tables/10/3.20.table diff --git a/eccodes/definitions/grib2/tables/10/3.21.table b/eccodes/definitions.save/grib2/tables/10/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.21.table rename to eccodes/definitions.save/grib2/tables/10/3.21.table diff --git a/eccodes/definitions/grib2/tables/10/3.3.table b/eccodes/definitions.save/grib2/tables/10/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.3.table rename to eccodes/definitions.save/grib2/tables/10/3.3.table diff --git a/eccodes/definitions/grib2/tables/10/3.4.table b/eccodes/definitions.save/grib2/tables/10/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.4.table rename to eccodes/definitions.save/grib2/tables/10/3.4.table diff --git a/eccodes/definitions/grib2/tables/10/3.5.table b/eccodes/definitions.save/grib2/tables/10/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.5.table rename to eccodes/definitions.save/grib2/tables/10/3.5.table diff --git a/eccodes/definitions/grib2/tables/10/3.6.table b/eccodes/definitions.save/grib2/tables/10/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.6.table rename to eccodes/definitions.save/grib2/tables/10/3.6.table diff --git a/eccodes/definitions/grib2/tables/10/3.7.table b/eccodes/definitions.save/grib2/tables/10/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.7.table rename to eccodes/definitions.save/grib2/tables/10/3.7.table diff --git a/eccodes/definitions/grib2/tables/10/3.8.table b/eccodes/definitions.save/grib2/tables/10/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.8.table rename to eccodes/definitions.save/grib2/tables/10/3.8.table diff --git a/eccodes/definitions/grib2/tables/10/3.9.table b/eccodes/definitions.save/grib2/tables/10/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/3.9.table rename to eccodes/definitions.save/grib2/tables/10/3.9.table diff --git a/eccodes/definitions/grib2/tables/10/4.0.table b/eccodes/definitions.save/grib2/tables/10/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.0.table rename to eccodes/definitions.save/grib2/tables/10/4.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.0.table b/eccodes/definitions.save/grib2/tables/10/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.0.table rename to eccodes/definitions.save/grib2/tables/10/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.1.table b/eccodes/definitions.save/grib2/tables/10/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.1.table rename to eccodes/definitions.save/grib2/tables/10/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.10.table b/eccodes/definitions.save/grib2/tables/10/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.10.table rename to eccodes/definitions.save/grib2/tables/10/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.192.table b/eccodes/definitions.save/grib2/tables/10/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.192.table rename to eccodes/definitions.save/grib2/tables/10/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.2.table b/eccodes/definitions.save/grib2/tables/10/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.2.table rename to eccodes/definitions.save/grib2/tables/10/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.3.table b/eccodes/definitions.save/grib2/tables/10/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.3.table rename to eccodes/definitions.save/grib2/tables/10/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/10/4.1.table b/eccodes/definitions.save/grib2/tables/10/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.1.table rename to eccodes/definitions.save/grib2/tables/10/4.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.10.table b/eccodes/definitions.save/grib2/tables/10/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.10.table rename to eccodes/definitions.save/grib2/tables/10/4.10.table diff --git a/eccodes/definitions/grib2/tables/10/4.11.table b/eccodes/definitions.save/grib2/tables/10/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.11.table rename to eccodes/definitions.save/grib2/tables/10/4.11.table diff --git a/eccodes/definitions/grib2/tables/10/4.12.table b/eccodes/definitions.save/grib2/tables/10/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.12.table rename to eccodes/definitions.save/grib2/tables/10/4.12.table diff --git a/eccodes/definitions/grib2/tables/10/4.13.table b/eccodes/definitions.save/grib2/tables/10/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.13.table rename to eccodes/definitions.save/grib2/tables/10/4.13.table diff --git a/eccodes/definitions/grib2/tables/10/4.14.table b/eccodes/definitions.save/grib2/tables/10/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.14.table rename to eccodes/definitions.save/grib2/tables/10/4.14.table diff --git a/eccodes/definitions/grib2/tables/10/4.15.table b/eccodes/definitions.save/grib2/tables/10/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.15.table rename to eccodes/definitions.save/grib2/tables/10/4.15.table diff --git a/eccodes/definitions/grib2/tables/10/4.151.table b/eccodes/definitions.save/grib2/tables/10/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.151.table rename to eccodes/definitions.save/grib2/tables/10/4.151.table diff --git a/eccodes/definitions/grib2/tables/10/4.192.table b/eccodes/definitions.save/grib2/tables/10/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.192.table rename to eccodes/definitions.save/grib2/tables/10/4.192.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/10/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/10/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/10/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/10/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/10/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/10/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/10/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/10/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/10/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/10/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/10/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/10/4.201.table b/eccodes/definitions.save/grib2/tables/10/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.201.table rename to eccodes/definitions.save/grib2/tables/10/4.201.table diff --git a/eccodes/definitions/grib2/tables/10/4.202.table b/eccodes/definitions.save/grib2/tables/10/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.202.table rename to eccodes/definitions.save/grib2/tables/10/4.202.table diff --git a/eccodes/definitions/grib2/tables/10/4.203.table b/eccodes/definitions.save/grib2/tables/10/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.203.table rename to eccodes/definitions.save/grib2/tables/10/4.203.table diff --git a/eccodes/definitions/grib2/tables/10/4.204.table b/eccodes/definitions.save/grib2/tables/10/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.204.table rename to eccodes/definitions.save/grib2/tables/10/4.204.table diff --git a/eccodes/definitions/grib2/tables/10/4.205.table b/eccodes/definitions.save/grib2/tables/10/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.205.table rename to eccodes/definitions.save/grib2/tables/10/4.205.table diff --git a/eccodes/definitions/grib2/tables/10/4.206.table b/eccodes/definitions.save/grib2/tables/10/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.206.table rename to eccodes/definitions.save/grib2/tables/10/4.206.table diff --git a/eccodes/definitions/grib2/tables/10/4.207.table b/eccodes/definitions.save/grib2/tables/10/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.207.table rename to eccodes/definitions.save/grib2/tables/10/4.207.table diff --git a/eccodes/definitions/grib2/tables/10/4.208.table b/eccodes/definitions.save/grib2/tables/10/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.208.table rename to eccodes/definitions.save/grib2/tables/10/4.208.table diff --git a/eccodes/definitions/grib2/tables/10/4.209.table b/eccodes/definitions.save/grib2/tables/10/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.209.table rename to eccodes/definitions.save/grib2/tables/10/4.209.table diff --git a/eccodes/definitions/grib2/tables/10/4.210.table b/eccodes/definitions.save/grib2/tables/10/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.210.table rename to eccodes/definitions.save/grib2/tables/10/4.210.table diff --git a/eccodes/definitions/grib2/tables/10/4.211.table b/eccodes/definitions.save/grib2/tables/10/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.211.table rename to eccodes/definitions.save/grib2/tables/10/4.211.table diff --git a/eccodes/definitions/grib2/tables/10/4.212.table b/eccodes/definitions.save/grib2/tables/10/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.212.table rename to eccodes/definitions.save/grib2/tables/10/4.212.table diff --git a/eccodes/definitions/grib2/tables/10/4.213.table b/eccodes/definitions.save/grib2/tables/10/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.213.table rename to eccodes/definitions.save/grib2/tables/10/4.213.table diff --git a/eccodes/definitions/grib2/tables/10/4.215.table b/eccodes/definitions.save/grib2/tables/10/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.215.table rename to eccodes/definitions.save/grib2/tables/10/4.215.table diff --git a/eccodes/definitions/grib2/tables/10/4.216.table b/eccodes/definitions.save/grib2/tables/10/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.216.table rename to eccodes/definitions.save/grib2/tables/10/4.216.table diff --git a/eccodes/definitions/grib2/tables/10/4.217.table b/eccodes/definitions.save/grib2/tables/10/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.217.table rename to eccodes/definitions.save/grib2/tables/10/4.217.table diff --git a/eccodes/definitions/grib2/tables/10/4.218.table b/eccodes/definitions.save/grib2/tables/10/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.218.table rename to eccodes/definitions.save/grib2/tables/10/4.218.table diff --git a/eccodes/definitions/grib2/tables/10/4.219.table b/eccodes/definitions.save/grib2/tables/10/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.219.table rename to eccodes/definitions.save/grib2/tables/10/4.219.table diff --git a/eccodes/definitions/grib2/tables/10/4.220.table b/eccodes/definitions.save/grib2/tables/10/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.220.table rename to eccodes/definitions.save/grib2/tables/10/4.220.table diff --git a/eccodes/definitions/grib2/tables/10/4.221.table b/eccodes/definitions.save/grib2/tables/10/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.221.table rename to eccodes/definitions.save/grib2/tables/10/4.221.table diff --git a/eccodes/definitions/grib2/tables/10/4.222.table b/eccodes/definitions.save/grib2/tables/10/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.222.table rename to eccodes/definitions.save/grib2/tables/10/4.222.table diff --git a/eccodes/definitions/grib2/tables/10/4.223.table b/eccodes/definitions.save/grib2/tables/10/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.223.table rename to eccodes/definitions.save/grib2/tables/10/4.223.table diff --git a/eccodes/definitions/grib2/tables/10/4.224.table b/eccodes/definitions.save/grib2/tables/10/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.224.table rename to eccodes/definitions.save/grib2/tables/10/4.224.table diff --git a/eccodes/definitions/grib2/tables/10/4.225.table b/eccodes/definitions.save/grib2/tables/10/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.225.table rename to eccodes/definitions.save/grib2/tables/10/4.225.table diff --git a/eccodes/definitions/grib2/tables/10/4.227.table b/eccodes/definitions.save/grib2/tables/10/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.227.table rename to eccodes/definitions.save/grib2/tables/10/4.227.table diff --git a/eccodes/definitions/grib2/tables/10/4.230.table b/eccodes/definitions.save/grib2/tables/10/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.230.table rename to eccodes/definitions.save/grib2/tables/10/4.230.table diff --git a/eccodes/definitions/grib2/tables/10/4.233.table b/eccodes/definitions.save/grib2/tables/10/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.233.table rename to eccodes/definitions.save/grib2/tables/10/4.233.table diff --git a/eccodes/definitions/grib2/tables/10/4.234.table b/eccodes/definitions.save/grib2/tables/10/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.234.table rename to eccodes/definitions.save/grib2/tables/10/4.234.table diff --git a/eccodes/definitions/grib2/tables/10/4.235.table b/eccodes/definitions.save/grib2/tables/10/4.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.235.table rename to eccodes/definitions.save/grib2/tables/10/4.235.table diff --git a/eccodes/definitions/grib2/tables/10/4.3.table b/eccodes/definitions.save/grib2/tables/10/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.3.table rename to eccodes/definitions.save/grib2/tables/10/4.3.table diff --git a/eccodes/definitions/grib2/tables/10/4.4.table b/eccodes/definitions.save/grib2/tables/10/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.4.table rename to eccodes/definitions.save/grib2/tables/10/4.4.table diff --git a/eccodes/definitions/grib2/tables/10/4.5.table b/eccodes/definitions.save/grib2/tables/10/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.5.table rename to eccodes/definitions.save/grib2/tables/10/4.5.table diff --git a/eccodes/definitions/grib2/tables/10/4.6.table b/eccodes/definitions.save/grib2/tables/10/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.6.table rename to eccodes/definitions.save/grib2/tables/10/4.6.table diff --git a/eccodes/definitions/grib2/tables/10/4.7.table b/eccodes/definitions.save/grib2/tables/10/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.7.table rename to eccodes/definitions.save/grib2/tables/10/4.7.table diff --git a/eccodes/definitions/grib2/tables/10/4.8.table b/eccodes/definitions.save/grib2/tables/10/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.8.table rename to eccodes/definitions.save/grib2/tables/10/4.8.table diff --git a/eccodes/definitions/grib2/tables/10/4.9.table b/eccodes/definitions.save/grib2/tables/10/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.9.table rename to eccodes/definitions.save/grib2/tables/10/4.9.table diff --git a/eccodes/definitions/grib2/tables/10/4.91.table b/eccodes/definitions.save/grib2/tables/10/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/4.91.table rename to eccodes/definitions.save/grib2/tables/10/4.91.table diff --git a/eccodes/definitions/grib2/tables/10/5.0.table b/eccodes/definitions.save/grib2/tables/10/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.0.table rename to eccodes/definitions.save/grib2/tables/10/5.0.table diff --git a/eccodes/definitions/grib2/tables/10/5.1.table b/eccodes/definitions.save/grib2/tables/10/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.1.table rename to eccodes/definitions.save/grib2/tables/10/5.1.table diff --git a/eccodes/definitions/grib2/tables/10/5.2.table b/eccodes/definitions.save/grib2/tables/10/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.2.table rename to eccodes/definitions.save/grib2/tables/10/5.2.table diff --git a/eccodes/definitions/grib2/tables/10/5.3.table b/eccodes/definitions.save/grib2/tables/10/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.3.table rename to eccodes/definitions.save/grib2/tables/10/5.3.table diff --git a/eccodes/definitions/grib2/tables/10/5.4.table b/eccodes/definitions.save/grib2/tables/10/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.4.table rename to eccodes/definitions.save/grib2/tables/10/5.4.table diff --git a/eccodes/definitions/grib2/tables/10/5.40.table b/eccodes/definitions.save/grib2/tables/10/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.40.table rename to eccodes/definitions.save/grib2/tables/10/5.40.table diff --git a/eccodes/definitions/grib2/tables/10/5.40000.table b/eccodes/definitions.save/grib2/tables/10/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.40000.table rename to eccodes/definitions.save/grib2/tables/10/5.40000.table diff --git a/eccodes/definitions/grib2/tables/10/5.5.table b/eccodes/definitions.save/grib2/tables/10/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.5.table rename to eccodes/definitions.save/grib2/tables/10/5.5.table diff --git a/eccodes/definitions/grib2/tables/10/5.50002.table b/eccodes/definitions.save/grib2/tables/10/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.50002.table rename to eccodes/definitions.save/grib2/tables/10/5.50002.table diff --git a/eccodes/definitions/grib2/tables/10/5.6.table b/eccodes/definitions.save/grib2/tables/10/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.6.table rename to eccodes/definitions.save/grib2/tables/10/5.6.table diff --git a/eccodes/definitions/grib2/tables/10/5.7.table b/eccodes/definitions.save/grib2/tables/10/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.7.table rename to eccodes/definitions.save/grib2/tables/10/5.7.table diff --git a/eccodes/definitions/grib2/tables/10/5.8.table b/eccodes/definitions.save/grib2/tables/10/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.8.table rename to eccodes/definitions.save/grib2/tables/10/5.8.table diff --git a/eccodes/definitions/grib2/tables/10/5.9.table b/eccodes/definitions.save/grib2/tables/10/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/5.9.table rename to eccodes/definitions.save/grib2/tables/10/5.9.table diff --git a/eccodes/definitions/grib2/tables/10/6.0.table b/eccodes/definitions.save/grib2/tables/10/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/6.0.table rename to eccodes/definitions.save/grib2/tables/10/6.0.table diff --git a/eccodes/definitions/grib2/tables/10/stepType.table b/eccodes/definitions.save/grib2/tables/10/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/10/stepType.table rename to eccodes/definitions.save/grib2/tables/10/stepType.table diff --git a/eccodes/definitions/grib2/tables/11/0.0.table b/eccodes/definitions.save/grib2/tables/11/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/0.0.table rename to eccodes/definitions.save/grib2/tables/11/0.0.table diff --git a/eccodes/definitions/grib2/tables/11/1.0.table b/eccodes/definitions.save/grib2/tables/11/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/1.0.table rename to eccodes/definitions.save/grib2/tables/11/1.0.table diff --git a/eccodes/definitions/grib2/tables/11/1.1.table b/eccodes/definitions.save/grib2/tables/11/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/1.1.table rename to eccodes/definitions.save/grib2/tables/11/1.1.table diff --git a/eccodes/definitions/grib2/tables/11/1.2.table b/eccodes/definitions.save/grib2/tables/11/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/1.2.table rename to eccodes/definitions.save/grib2/tables/11/1.2.table diff --git a/eccodes/definitions/grib2/tables/11/1.3.table b/eccodes/definitions.save/grib2/tables/11/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/1.3.table rename to eccodes/definitions.save/grib2/tables/11/1.3.table diff --git a/eccodes/definitions/grib2/tables/11/1.4.table b/eccodes/definitions.save/grib2/tables/11/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/1.4.table rename to eccodes/definitions.save/grib2/tables/11/1.4.table diff --git a/eccodes/definitions/grib2/tables/11/3.0.table b/eccodes/definitions.save/grib2/tables/11/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.0.table rename to eccodes/definitions.save/grib2/tables/11/3.0.table diff --git a/eccodes/definitions/grib2/tables/11/3.1.table b/eccodes/definitions.save/grib2/tables/11/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.1.table rename to eccodes/definitions.save/grib2/tables/11/3.1.table diff --git a/eccodes/definitions/grib2/tables/11/3.10.table b/eccodes/definitions.save/grib2/tables/11/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.10.table rename to eccodes/definitions.save/grib2/tables/11/3.10.table diff --git a/eccodes/definitions/grib2/tables/11/3.11.table b/eccodes/definitions.save/grib2/tables/11/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.11.table rename to eccodes/definitions.save/grib2/tables/11/3.11.table diff --git a/eccodes/definitions/grib2/tables/11/3.15.table b/eccodes/definitions.save/grib2/tables/11/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.15.table rename to eccodes/definitions.save/grib2/tables/11/3.15.table diff --git a/eccodes/definitions/grib2/tables/11/3.2.table b/eccodes/definitions.save/grib2/tables/11/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.2.table rename to eccodes/definitions.save/grib2/tables/11/3.2.table diff --git a/eccodes/definitions/grib2/tables/11/3.20.table b/eccodes/definitions.save/grib2/tables/11/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.20.table rename to eccodes/definitions.save/grib2/tables/11/3.20.table diff --git a/eccodes/definitions/grib2/tables/11/3.21.table b/eccodes/definitions.save/grib2/tables/11/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.21.table rename to eccodes/definitions.save/grib2/tables/11/3.21.table diff --git a/eccodes/definitions/grib2/tables/11/3.3.table b/eccodes/definitions.save/grib2/tables/11/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.3.table rename to eccodes/definitions.save/grib2/tables/11/3.3.table diff --git a/eccodes/definitions/grib2/tables/11/3.4.table b/eccodes/definitions.save/grib2/tables/11/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.4.table rename to eccodes/definitions.save/grib2/tables/11/3.4.table diff --git a/eccodes/definitions/grib2/tables/11/3.5.table b/eccodes/definitions.save/grib2/tables/11/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.5.table rename to eccodes/definitions.save/grib2/tables/11/3.5.table diff --git a/eccodes/definitions/grib2/tables/11/3.6.table b/eccodes/definitions.save/grib2/tables/11/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.6.table rename to eccodes/definitions.save/grib2/tables/11/3.6.table diff --git a/eccodes/definitions/grib2/tables/11/3.7.table b/eccodes/definitions.save/grib2/tables/11/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.7.table rename to eccodes/definitions.save/grib2/tables/11/3.7.table diff --git a/eccodes/definitions/grib2/tables/11/3.8.table b/eccodes/definitions.save/grib2/tables/11/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.8.table rename to eccodes/definitions.save/grib2/tables/11/3.8.table diff --git a/eccodes/definitions/grib2/tables/11/3.9.table b/eccodes/definitions.save/grib2/tables/11/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/3.9.table rename to eccodes/definitions.save/grib2/tables/11/3.9.table diff --git a/eccodes/definitions/grib2/tables/11/4.0.table b/eccodes/definitions.save/grib2/tables/11/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.0.table rename to eccodes/definitions.save/grib2/tables/11/4.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.0.table b/eccodes/definitions.save/grib2/tables/11/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.0.table rename to eccodes/definitions.save/grib2/tables/11/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.1.table b/eccodes/definitions.save/grib2/tables/11/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.1.table rename to eccodes/definitions.save/grib2/tables/11/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.10.table b/eccodes/definitions.save/grib2/tables/11/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.10.table rename to eccodes/definitions.save/grib2/tables/11/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.192.table b/eccodes/definitions.save/grib2/tables/11/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.192.table rename to eccodes/definitions.save/grib2/tables/11/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.2.table b/eccodes/definitions.save/grib2/tables/11/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.2.table rename to eccodes/definitions.save/grib2/tables/11/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/11/4.1.3.table b/eccodes/definitions.save/grib2/tables/11/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.1.3.table rename to eccodes/definitions.save/grib2/tables/11/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/11/4.10.table b/eccodes/definitions.save/grib2/tables/11/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.10.table rename to eccodes/definitions.save/grib2/tables/11/4.10.table diff --git a/eccodes/definitions/grib2/tables/11/4.11.table b/eccodes/definitions.save/grib2/tables/11/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.11.table rename to eccodes/definitions.save/grib2/tables/11/4.11.table diff --git a/eccodes/definitions/grib2/tables/11/4.12.table b/eccodes/definitions.save/grib2/tables/11/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.12.table rename to eccodes/definitions.save/grib2/tables/11/4.12.table diff --git a/eccodes/definitions/grib2/tables/11/4.13.table b/eccodes/definitions.save/grib2/tables/11/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.13.table rename to eccodes/definitions.save/grib2/tables/11/4.13.table diff --git a/eccodes/definitions/grib2/tables/11/4.14.table b/eccodes/definitions.save/grib2/tables/11/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.14.table rename to eccodes/definitions.save/grib2/tables/11/4.14.table diff --git a/eccodes/definitions/grib2/tables/11/4.15.table b/eccodes/definitions.save/grib2/tables/11/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.15.table rename to eccodes/definitions.save/grib2/tables/11/4.15.table diff --git a/eccodes/definitions/grib2/tables/11/4.192.table b/eccodes/definitions.save/grib2/tables/11/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.192.table rename to eccodes/definitions.save/grib2/tables/11/4.192.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/11/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/11/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/11/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/11/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/11/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/11/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/11/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/11/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/11/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/11/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/11/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/11/4.201.table b/eccodes/definitions.save/grib2/tables/11/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.201.table rename to eccodes/definitions.save/grib2/tables/11/4.201.table diff --git a/eccodes/definitions/grib2/tables/11/4.202.table b/eccodes/definitions.save/grib2/tables/11/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.202.table rename to eccodes/definitions.save/grib2/tables/11/4.202.table diff --git a/eccodes/definitions/grib2/tables/11/4.203.table b/eccodes/definitions.save/grib2/tables/11/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.203.table rename to eccodes/definitions.save/grib2/tables/11/4.203.table diff --git a/eccodes/definitions/grib2/tables/11/4.204.table b/eccodes/definitions.save/grib2/tables/11/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.204.table rename to eccodes/definitions.save/grib2/tables/11/4.204.table diff --git a/eccodes/definitions/grib2/tables/11/4.205.table b/eccodes/definitions.save/grib2/tables/11/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.205.table rename to eccodes/definitions.save/grib2/tables/11/4.205.table diff --git a/eccodes/definitions/grib2/tables/11/4.206.table b/eccodes/definitions.save/grib2/tables/11/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.206.table rename to eccodes/definitions.save/grib2/tables/11/4.206.table diff --git a/eccodes/definitions/grib2/tables/11/4.207.table b/eccodes/definitions.save/grib2/tables/11/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.207.table rename to eccodes/definitions.save/grib2/tables/11/4.207.table diff --git a/eccodes/definitions/grib2/tables/11/4.208.table b/eccodes/definitions.save/grib2/tables/11/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.208.table rename to eccodes/definitions.save/grib2/tables/11/4.208.table diff --git a/eccodes/definitions/grib2/tables/11/4.209.table b/eccodes/definitions.save/grib2/tables/11/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.209.table rename to eccodes/definitions.save/grib2/tables/11/4.209.table diff --git a/eccodes/definitions/grib2/tables/11/4.210.table b/eccodes/definitions.save/grib2/tables/11/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.210.table rename to eccodes/definitions.save/grib2/tables/11/4.210.table diff --git a/eccodes/definitions/grib2/tables/11/4.211.table b/eccodes/definitions.save/grib2/tables/11/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.211.table rename to eccodes/definitions.save/grib2/tables/11/4.211.table diff --git a/eccodes/definitions/grib2/tables/11/4.212.table b/eccodes/definitions.save/grib2/tables/11/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.212.table rename to eccodes/definitions.save/grib2/tables/11/4.212.table diff --git a/eccodes/definitions/grib2/tables/11/4.213.table b/eccodes/definitions.save/grib2/tables/11/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.213.table rename to eccodes/definitions.save/grib2/tables/11/4.213.table diff --git a/eccodes/definitions/grib2/tables/11/4.215.table b/eccodes/definitions.save/grib2/tables/11/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.215.table rename to eccodes/definitions.save/grib2/tables/11/4.215.table diff --git a/eccodes/definitions/grib2/tables/11/4.216.table b/eccodes/definitions.save/grib2/tables/11/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.216.table rename to eccodes/definitions.save/grib2/tables/11/4.216.table diff --git a/eccodes/definitions/grib2/tables/11/4.217.table b/eccodes/definitions.save/grib2/tables/11/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.217.table rename to eccodes/definitions.save/grib2/tables/11/4.217.table diff --git a/eccodes/definitions/grib2/tables/11/4.218.table b/eccodes/definitions.save/grib2/tables/11/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.218.table rename to eccodes/definitions.save/grib2/tables/11/4.218.table diff --git a/eccodes/definitions/grib2/tables/11/4.219.table b/eccodes/definitions.save/grib2/tables/11/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.219.table rename to eccodes/definitions.save/grib2/tables/11/4.219.table diff --git a/eccodes/definitions/grib2/tables/11/4.220.table b/eccodes/definitions.save/grib2/tables/11/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.220.table rename to eccodes/definitions.save/grib2/tables/11/4.220.table diff --git a/eccodes/definitions/grib2/tables/11/4.221.table b/eccodes/definitions.save/grib2/tables/11/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.221.table rename to eccodes/definitions.save/grib2/tables/11/4.221.table diff --git a/eccodes/definitions/grib2/tables/11/4.222.table b/eccodes/definitions.save/grib2/tables/11/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.222.table rename to eccodes/definitions.save/grib2/tables/11/4.222.table diff --git a/eccodes/definitions/grib2/tables/11/4.223.table b/eccodes/definitions.save/grib2/tables/11/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.223.table rename to eccodes/definitions.save/grib2/tables/11/4.223.table diff --git a/eccodes/definitions/grib2/tables/11/4.224.table b/eccodes/definitions.save/grib2/tables/11/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.224.table rename to eccodes/definitions.save/grib2/tables/11/4.224.table diff --git a/eccodes/definitions/grib2/tables/11/4.225.table b/eccodes/definitions.save/grib2/tables/11/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.225.table rename to eccodes/definitions.save/grib2/tables/11/4.225.table diff --git a/eccodes/definitions/grib2/tables/11/4.227.table b/eccodes/definitions.save/grib2/tables/11/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.227.table rename to eccodes/definitions.save/grib2/tables/11/4.227.table diff --git a/eccodes/definitions/grib2/tables/11/4.230.table b/eccodes/definitions.save/grib2/tables/11/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.230.table rename to eccodes/definitions.save/grib2/tables/11/4.230.table diff --git a/eccodes/definitions/grib2/tables/11/4.233.table b/eccodes/definitions.save/grib2/tables/11/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.233.table rename to eccodes/definitions.save/grib2/tables/11/4.233.table diff --git a/eccodes/definitions/grib2/tables/11/4.234.table b/eccodes/definitions.save/grib2/tables/11/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.234.table rename to eccodes/definitions.save/grib2/tables/11/4.234.table diff --git a/eccodes/definitions/grib2/tables/11/4.236.table b/eccodes/definitions.save/grib2/tables/11/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.236.table rename to eccodes/definitions.save/grib2/tables/11/4.236.table diff --git a/eccodes/definitions/grib2/tables/11/4.3.table b/eccodes/definitions.save/grib2/tables/11/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.3.table rename to eccodes/definitions.save/grib2/tables/11/4.3.table diff --git a/eccodes/definitions/grib2/tables/11/4.4.table b/eccodes/definitions.save/grib2/tables/11/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.4.table rename to eccodes/definitions.save/grib2/tables/11/4.4.table diff --git a/eccodes/definitions/grib2/tables/11/4.5.table b/eccodes/definitions.save/grib2/tables/11/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.5.table rename to eccodes/definitions.save/grib2/tables/11/4.5.table diff --git a/eccodes/definitions/grib2/tables/11/4.6.table b/eccodes/definitions.save/grib2/tables/11/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.6.table rename to eccodes/definitions.save/grib2/tables/11/4.6.table diff --git a/eccodes/definitions/grib2/tables/11/4.7.table b/eccodes/definitions.save/grib2/tables/11/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.7.table rename to eccodes/definitions.save/grib2/tables/11/4.7.table diff --git a/eccodes/definitions/grib2/tables/11/4.8.table b/eccodes/definitions.save/grib2/tables/11/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.8.table rename to eccodes/definitions.save/grib2/tables/11/4.8.table diff --git a/eccodes/definitions/grib2/tables/11/4.9.table b/eccodes/definitions.save/grib2/tables/11/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.9.table rename to eccodes/definitions.save/grib2/tables/11/4.9.table diff --git a/eccodes/definitions/grib2/tables/11/4.91.table b/eccodes/definitions.save/grib2/tables/11/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/4.91.table rename to eccodes/definitions.save/grib2/tables/11/4.91.table diff --git a/eccodes/definitions/grib2/tables/11/5.0.table b/eccodes/definitions.save/grib2/tables/11/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.0.table rename to eccodes/definitions.save/grib2/tables/11/5.0.table diff --git a/eccodes/definitions/grib2/tables/11/5.1.table b/eccodes/definitions.save/grib2/tables/11/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.1.table rename to eccodes/definitions.save/grib2/tables/11/5.1.table diff --git a/eccodes/definitions/grib2/tables/11/5.2.table b/eccodes/definitions.save/grib2/tables/11/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.2.table rename to eccodes/definitions.save/grib2/tables/11/5.2.table diff --git a/eccodes/definitions/grib2/tables/11/5.3.table b/eccodes/definitions.save/grib2/tables/11/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.3.table rename to eccodes/definitions.save/grib2/tables/11/5.3.table diff --git a/eccodes/definitions/grib2/tables/11/5.4.table b/eccodes/definitions.save/grib2/tables/11/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.4.table rename to eccodes/definitions.save/grib2/tables/11/5.4.table diff --git a/eccodes/definitions/grib2/tables/11/5.40.table b/eccodes/definitions.save/grib2/tables/11/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.40.table rename to eccodes/definitions.save/grib2/tables/11/5.40.table diff --git a/eccodes/definitions/grib2/tables/11/5.40000.table b/eccodes/definitions.save/grib2/tables/11/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.40000.table rename to eccodes/definitions.save/grib2/tables/11/5.40000.table diff --git a/eccodes/definitions/grib2/tables/11/5.5.table b/eccodes/definitions.save/grib2/tables/11/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.5.table rename to eccodes/definitions.save/grib2/tables/11/5.5.table diff --git a/eccodes/definitions/grib2/tables/11/5.50002.table b/eccodes/definitions.save/grib2/tables/11/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.50002.table rename to eccodes/definitions.save/grib2/tables/11/5.50002.table diff --git a/eccodes/definitions/grib2/tables/11/5.6.table b/eccodes/definitions.save/grib2/tables/11/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.6.table rename to eccodes/definitions.save/grib2/tables/11/5.6.table diff --git a/eccodes/definitions/grib2/tables/11/5.7.table b/eccodes/definitions.save/grib2/tables/11/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.7.table rename to eccodes/definitions.save/grib2/tables/11/5.7.table diff --git a/eccodes/definitions/grib2/tables/11/5.8.table b/eccodes/definitions.save/grib2/tables/11/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.8.table rename to eccodes/definitions.save/grib2/tables/11/5.8.table diff --git a/eccodes/definitions/grib2/tables/11/5.9.table b/eccodes/definitions.save/grib2/tables/11/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/5.9.table rename to eccodes/definitions.save/grib2/tables/11/5.9.table diff --git a/eccodes/definitions/grib2/tables/11/6.0.table b/eccodes/definitions.save/grib2/tables/11/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/6.0.table rename to eccodes/definitions.save/grib2/tables/11/6.0.table diff --git a/eccodes/definitions/grib2/tables/11/stepType.table b/eccodes/definitions.save/grib2/tables/11/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/11/stepType.table rename to eccodes/definitions.save/grib2/tables/11/stepType.table diff --git a/eccodes/definitions/grib2/tables/12/0.0.table b/eccodes/definitions.save/grib2/tables/12/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/0.0.table rename to eccodes/definitions.save/grib2/tables/12/0.0.table diff --git a/eccodes/definitions/grib2/tables/12/1.0.table b/eccodes/definitions.save/grib2/tables/12/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.0.table rename to eccodes/definitions.save/grib2/tables/12/1.0.table diff --git a/eccodes/definitions/grib2/tables/12/1.1.table b/eccodes/definitions.save/grib2/tables/12/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.1.table rename to eccodes/definitions.save/grib2/tables/12/1.1.table diff --git a/eccodes/definitions/grib2/tables/12/1.2.table b/eccodes/definitions.save/grib2/tables/12/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.2.table rename to eccodes/definitions.save/grib2/tables/12/1.2.table diff --git a/eccodes/definitions/grib2/tables/12/1.3.table b/eccodes/definitions.save/grib2/tables/12/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.3.table rename to eccodes/definitions.save/grib2/tables/12/1.3.table diff --git a/eccodes/definitions/grib2/tables/12/1.4.table b/eccodes/definitions.save/grib2/tables/12/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.4.table rename to eccodes/definitions.save/grib2/tables/12/1.4.table diff --git a/eccodes/definitions/grib2/tables/12/1.5.table b/eccodes/definitions.save/grib2/tables/12/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.5.table rename to eccodes/definitions.save/grib2/tables/12/1.5.table diff --git a/eccodes/definitions/grib2/tables/12/1.6.table b/eccodes/definitions.save/grib2/tables/12/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/1.6.table rename to eccodes/definitions.save/grib2/tables/12/1.6.table diff --git a/eccodes/definitions/grib2/tables/12/3.0.table b/eccodes/definitions.save/grib2/tables/12/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.0.table rename to eccodes/definitions.save/grib2/tables/12/3.0.table diff --git a/eccodes/definitions/grib2/tables/12/3.1.table b/eccodes/definitions.save/grib2/tables/12/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.1.table rename to eccodes/definitions.save/grib2/tables/12/3.1.table diff --git a/eccodes/definitions/grib2/tables/12/3.10.table b/eccodes/definitions.save/grib2/tables/12/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.10.table rename to eccodes/definitions.save/grib2/tables/12/3.10.table diff --git a/eccodes/definitions/grib2/tables/12/3.11.table b/eccodes/definitions.save/grib2/tables/12/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.11.table rename to eccodes/definitions.save/grib2/tables/12/3.11.table diff --git a/eccodes/definitions/grib2/tables/12/3.15.table b/eccodes/definitions.save/grib2/tables/12/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.15.table rename to eccodes/definitions.save/grib2/tables/12/3.15.table diff --git a/eccodes/definitions/grib2/tables/12/3.2.table b/eccodes/definitions.save/grib2/tables/12/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.2.table rename to eccodes/definitions.save/grib2/tables/12/3.2.table diff --git a/eccodes/definitions/grib2/tables/12/3.20.table b/eccodes/definitions.save/grib2/tables/12/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.20.table rename to eccodes/definitions.save/grib2/tables/12/3.20.table diff --git a/eccodes/definitions/grib2/tables/12/3.21.table b/eccodes/definitions.save/grib2/tables/12/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.21.table rename to eccodes/definitions.save/grib2/tables/12/3.21.table diff --git a/eccodes/definitions/grib2/tables/12/3.3.table b/eccodes/definitions.save/grib2/tables/12/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.3.table rename to eccodes/definitions.save/grib2/tables/12/3.3.table diff --git a/eccodes/definitions/grib2/tables/12/3.4.table b/eccodes/definitions.save/grib2/tables/12/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.4.table rename to eccodes/definitions.save/grib2/tables/12/3.4.table diff --git a/eccodes/definitions/grib2/tables/12/3.5.table b/eccodes/definitions.save/grib2/tables/12/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.5.table rename to eccodes/definitions.save/grib2/tables/12/3.5.table diff --git a/eccodes/definitions/grib2/tables/12/3.6.table b/eccodes/definitions.save/grib2/tables/12/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.6.table rename to eccodes/definitions.save/grib2/tables/12/3.6.table diff --git a/eccodes/definitions/grib2/tables/12/3.7.table b/eccodes/definitions.save/grib2/tables/12/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.7.table rename to eccodes/definitions.save/grib2/tables/12/3.7.table diff --git a/eccodes/definitions/grib2/tables/12/3.8.table b/eccodes/definitions.save/grib2/tables/12/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.8.table rename to eccodes/definitions.save/grib2/tables/12/3.8.table diff --git a/eccodes/definitions/grib2/tables/12/3.9.table b/eccodes/definitions.save/grib2/tables/12/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/3.9.table rename to eccodes/definitions.save/grib2/tables/12/3.9.table diff --git a/eccodes/definitions/grib2/tables/12/4.0.table b/eccodes/definitions.save/grib2/tables/12/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.0.table rename to eccodes/definitions.save/grib2/tables/12/4.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.0.table b/eccodes/definitions.save/grib2/tables/12/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.0.table rename to eccodes/definitions.save/grib2/tables/12/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.1.table b/eccodes/definitions.save/grib2/tables/12/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.1.table rename to eccodes/definitions.save/grib2/tables/12/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.10.table b/eccodes/definitions.save/grib2/tables/12/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.10.table rename to eccodes/definitions.save/grib2/tables/12/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.192.table b/eccodes/definitions.save/grib2/tables/12/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.192.table rename to eccodes/definitions.save/grib2/tables/12/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.2.table b/eccodes/definitions.save/grib2/tables/12/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.2.table rename to eccodes/definitions.save/grib2/tables/12/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/12/4.1.3.table b/eccodes/definitions.save/grib2/tables/12/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.1.3.table rename to eccodes/definitions.save/grib2/tables/12/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/12/4.10.table b/eccodes/definitions.save/grib2/tables/12/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.10.table rename to eccodes/definitions.save/grib2/tables/12/4.10.table diff --git a/eccodes/definitions/grib2/tables/12/4.11.table b/eccodes/definitions.save/grib2/tables/12/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.11.table rename to eccodes/definitions.save/grib2/tables/12/4.11.table diff --git a/eccodes/definitions/grib2/tables/12/4.12.table b/eccodes/definitions.save/grib2/tables/12/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.12.table rename to eccodes/definitions.save/grib2/tables/12/4.12.table diff --git a/eccodes/definitions/grib2/tables/12/4.13.table b/eccodes/definitions.save/grib2/tables/12/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.13.table rename to eccodes/definitions.save/grib2/tables/12/4.13.table diff --git a/eccodes/definitions/grib2/tables/12/4.14.table b/eccodes/definitions.save/grib2/tables/12/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.14.table rename to eccodes/definitions.save/grib2/tables/12/4.14.table diff --git a/eccodes/definitions/grib2/tables/12/4.15.table b/eccodes/definitions.save/grib2/tables/12/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.15.table rename to eccodes/definitions.save/grib2/tables/12/4.15.table diff --git a/eccodes/definitions/grib2/tables/12/4.192.table b/eccodes/definitions.save/grib2/tables/12/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.192.table rename to eccodes/definitions.save/grib2/tables/12/4.192.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/12/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/12/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/12/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/12/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/12/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/12/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/12/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/12/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/12/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/12/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/12/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/12/4.201.table b/eccodes/definitions.save/grib2/tables/12/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.201.table rename to eccodes/definitions.save/grib2/tables/12/4.201.table diff --git a/eccodes/definitions/grib2/tables/12/4.202.table b/eccodes/definitions.save/grib2/tables/12/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.202.table rename to eccodes/definitions.save/grib2/tables/12/4.202.table diff --git a/eccodes/definitions/grib2/tables/12/4.203.table b/eccodes/definitions.save/grib2/tables/12/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.203.table rename to eccodes/definitions.save/grib2/tables/12/4.203.table diff --git a/eccodes/definitions/grib2/tables/12/4.204.table b/eccodes/definitions.save/grib2/tables/12/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.204.table rename to eccodes/definitions.save/grib2/tables/12/4.204.table diff --git a/eccodes/definitions/grib2/tables/12/4.205.table b/eccodes/definitions.save/grib2/tables/12/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.205.table rename to eccodes/definitions.save/grib2/tables/12/4.205.table diff --git a/eccodes/definitions/grib2/tables/12/4.206.table b/eccodes/definitions.save/grib2/tables/12/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.206.table rename to eccodes/definitions.save/grib2/tables/12/4.206.table diff --git a/eccodes/definitions/grib2/tables/12/4.207.table b/eccodes/definitions.save/grib2/tables/12/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.207.table rename to eccodes/definitions.save/grib2/tables/12/4.207.table diff --git a/eccodes/definitions/grib2/tables/12/4.208.table b/eccodes/definitions.save/grib2/tables/12/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.208.table rename to eccodes/definitions.save/grib2/tables/12/4.208.table diff --git a/eccodes/definitions/grib2/tables/12/4.209.table b/eccodes/definitions.save/grib2/tables/12/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.209.table rename to eccodes/definitions.save/grib2/tables/12/4.209.table diff --git a/eccodes/definitions/grib2/tables/12/4.210.table b/eccodes/definitions.save/grib2/tables/12/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.210.table rename to eccodes/definitions.save/grib2/tables/12/4.210.table diff --git a/eccodes/definitions/grib2/tables/12/4.211.table b/eccodes/definitions.save/grib2/tables/12/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.211.table rename to eccodes/definitions.save/grib2/tables/12/4.211.table diff --git a/eccodes/definitions/grib2/tables/12/4.212.table b/eccodes/definitions.save/grib2/tables/12/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.212.table rename to eccodes/definitions.save/grib2/tables/12/4.212.table diff --git a/eccodes/definitions/grib2/tables/12/4.213.table b/eccodes/definitions.save/grib2/tables/12/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.213.table rename to eccodes/definitions.save/grib2/tables/12/4.213.table diff --git a/eccodes/definitions/grib2/tables/12/4.215.table b/eccodes/definitions.save/grib2/tables/12/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.215.table rename to eccodes/definitions.save/grib2/tables/12/4.215.table diff --git a/eccodes/definitions/grib2/tables/12/4.216.table b/eccodes/definitions.save/grib2/tables/12/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.216.table rename to eccodes/definitions.save/grib2/tables/12/4.216.table diff --git a/eccodes/definitions/grib2/tables/12/4.217.table b/eccodes/definitions.save/grib2/tables/12/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.217.table rename to eccodes/definitions.save/grib2/tables/12/4.217.table diff --git a/eccodes/definitions/grib2/tables/12/4.218.table b/eccodes/definitions.save/grib2/tables/12/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.218.table rename to eccodes/definitions.save/grib2/tables/12/4.218.table diff --git a/eccodes/definitions/grib2/tables/12/4.219.table b/eccodes/definitions.save/grib2/tables/12/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.219.table rename to eccodes/definitions.save/grib2/tables/12/4.219.table diff --git a/eccodes/definitions/grib2/tables/12/4.220.table b/eccodes/definitions.save/grib2/tables/12/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.220.table rename to eccodes/definitions.save/grib2/tables/12/4.220.table diff --git a/eccodes/definitions/grib2/tables/12/4.221.table b/eccodes/definitions.save/grib2/tables/12/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.221.table rename to eccodes/definitions.save/grib2/tables/12/4.221.table diff --git a/eccodes/definitions/grib2/tables/12/4.222.table b/eccodes/definitions.save/grib2/tables/12/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.222.table rename to eccodes/definitions.save/grib2/tables/12/4.222.table diff --git a/eccodes/definitions/grib2/tables/12/4.223.table b/eccodes/definitions.save/grib2/tables/12/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.223.table rename to eccodes/definitions.save/grib2/tables/12/4.223.table diff --git a/eccodes/definitions/grib2/tables/12/4.224.table b/eccodes/definitions.save/grib2/tables/12/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.224.table rename to eccodes/definitions.save/grib2/tables/12/4.224.table diff --git a/eccodes/definitions/grib2/tables/12/4.225.table b/eccodes/definitions.save/grib2/tables/12/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.225.table rename to eccodes/definitions.save/grib2/tables/12/4.225.table diff --git a/eccodes/definitions/grib2/tables/12/4.227.table b/eccodes/definitions.save/grib2/tables/12/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.227.table rename to eccodes/definitions.save/grib2/tables/12/4.227.table diff --git a/eccodes/definitions/grib2/tables/12/4.230.table b/eccodes/definitions.save/grib2/tables/12/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.230.table rename to eccodes/definitions.save/grib2/tables/12/4.230.table diff --git a/eccodes/definitions/grib2/tables/12/4.233.table b/eccodes/definitions.save/grib2/tables/12/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.233.table rename to eccodes/definitions.save/grib2/tables/12/4.233.table diff --git a/eccodes/definitions/grib2/tables/12/4.234.table b/eccodes/definitions.save/grib2/tables/12/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.234.table rename to eccodes/definitions.save/grib2/tables/12/4.234.table diff --git a/eccodes/definitions/grib2/tables/12/4.236.table b/eccodes/definitions.save/grib2/tables/12/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.236.table rename to eccodes/definitions.save/grib2/tables/12/4.236.table diff --git a/eccodes/definitions/grib2/tables/12/4.3.table b/eccodes/definitions.save/grib2/tables/12/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.3.table rename to eccodes/definitions.save/grib2/tables/12/4.3.table diff --git a/eccodes/definitions/grib2/tables/12/4.4.table b/eccodes/definitions.save/grib2/tables/12/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.4.table rename to eccodes/definitions.save/grib2/tables/12/4.4.table diff --git a/eccodes/definitions/grib2/tables/12/4.5.table b/eccodes/definitions.save/grib2/tables/12/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.5.table rename to eccodes/definitions.save/grib2/tables/12/4.5.table diff --git a/eccodes/definitions/grib2/tables/12/4.6.table b/eccodes/definitions.save/grib2/tables/12/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.6.table rename to eccodes/definitions.save/grib2/tables/12/4.6.table diff --git a/eccodes/definitions/grib2/tables/12/4.7.table b/eccodes/definitions.save/grib2/tables/12/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.7.table rename to eccodes/definitions.save/grib2/tables/12/4.7.table diff --git a/eccodes/definitions/grib2/tables/12/4.8.table b/eccodes/definitions.save/grib2/tables/12/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.8.table rename to eccodes/definitions.save/grib2/tables/12/4.8.table diff --git a/eccodes/definitions/grib2/tables/12/4.9.table b/eccodes/definitions.save/grib2/tables/12/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.9.table rename to eccodes/definitions.save/grib2/tables/12/4.9.table diff --git a/eccodes/definitions/grib2/tables/12/4.91.table b/eccodes/definitions.save/grib2/tables/12/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/4.91.table rename to eccodes/definitions.save/grib2/tables/12/4.91.table diff --git a/eccodes/definitions/grib2/tables/12/5.0.table b/eccodes/definitions.save/grib2/tables/12/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.0.table rename to eccodes/definitions.save/grib2/tables/12/5.0.table diff --git a/eccodes/definitions/grib2/tables/12/5.1.table b/eccodes/definitions.save/grib2/tables/12/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.1.table rename to eccodes/definitions.save/grib2/tables/12/5.1.table diff --git a/eccodes/definitions/grib2/tables/12/5.2.table b/eccodes/definitions.save/grib2/tables/12/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.2.table rename to eccodes/definitions.save/grib2/tables/12/5.2.table diff --git a/eccodes/definitions/grib2/tables/12/5.3.table b/eccodes/definitions.save/grib2/tables/12/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.3.table rename to eccodes/definitions.save/grib2/tables/12/5.3.table diff --git a/eccodes/definitions/grib2/tables/12/5.4.table b/eccodes/definitions.save/grib2/tables/12/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.4.table rename to eccodes/definitions.save/grib2/tables/12/5.4.table diff --git a/eccodes/definitions/grib2/tables/12/5.40.table b/eccodes/definitions.save/grib2/tables/12/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.40.table rename to eccodes/definitions.save/grib2/tables/12/5.40.table diff --git a/eccodes/definitions/grib2/tables/12/5.40000.table b/eccodes/definitions.save/grib2/tables/12/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.40000.table rename to eccodes/definitions.save/grib2/tables/12/5.40000.table diff --git a/eccodes/definitions/grib2/tables/12/5.5.table b/eccodes/definitions.save/grib2/tables/12/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.5.table rename to eccodes/definitions.save/grib2/tables/12/5.5.table diff --git a/eccodes/definitions/grib2/tables/12/5.50002.table b/eccodes/definitions.save/grib2/tables/12/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.50002.table rename to eccodes/definitions.save/grib2/tables/12/5.50002.table diff --git a/eccodes/definitions/grib2/tables/12/5.6.table b/eccodes/definitions.save/grib2/tables/12/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.6.table rename to eccodes/definitions.save/grib2/tables/12/5.6.table diff --git a/eccodes/definitions/grib2/tables/12/5.7.table b/eccodes/definitions.save/grib2/tables/12/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.7.table rename to eccodes/definitions.save/grib2/tables/12/5.7.table diff --git a/eccodes/definitions/grib2/tables/12/5.8.table b/eccodes/definitions.save/grib2/tables/12/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.8.table rename to eccodes/definitions.save/grib2/tables/12/5.8.table diff --git a/eccodes/definitions/grib2/tables/12/5.9.table b/eccodes/definitions.save/grib2/tables/12/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/5.9.table rename to eccodes/definitions.save/grib2/tables/12/5.9.table diff --git a/eccodes/definitions/grib2/tables/12/6.0.table b/eccodes/definitions.save/grib2/tables/12/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/6.0.table rename to eccodes/definitions.save/grib2/tables/12/6.0.table diff --git a/eccodes/definitions/grib2/tables/12/stepType.table b/eccodes/definitions.save/grib2/tables/12/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/12/stepType.table rename to eccodes/definitions.save/grib2/tables/12/stepType.table diff --git a/eccodes/definitions/grib2/tables/13/0.0.table b/eccodes/definitions.save/grib2/tables/13/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/0.0.table rename to eccodes/definitions.save/grib2/tables/13/0.0.table diff --git a/eccodes/definitions/grib2/tables/13/1.0.table b/eccodes/definitions.save/grib2/tables/13/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.0.table rename to eccodes/definitions.save/grib2/tables/13/1.0.table diff --git a/eccodes/definitions/grib2/tables/13/1.1.table b/eccodes/definitions.save/grib2/tables/13/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.1.table rename to eccodes/definitions.save/grib2/tables/13/1.1.table diff --git a/eccodes/definitions/grib2/tables/13/1.2.table b/eccodes/definitions.save/grib2/tables/13/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.2.table rename to eccodes/definitions.save/grib2/tables/13/1.2.table diff --git a/eccodes/definitions/grib2/tables/13/1.3.table b/eccodes/definitions.save/grib2/tables/13/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.3.table rename to eccodes/definitions.save/grib2/tables/13/1.3.table diff --git a/eccodes/definitions/grib2/tables/13/1.4.table b/eccodes/definitions.save/grib2/tables/13/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.4.table rename to eccodes/definitions.save/grib2/tables/13/1.4.table diff --git a/eccodes/definitions/grib2/tables/13/1.5.table b/eccodes/definitions.save/grib2/tables/13/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.5.table rename to eccodes/definitions.save/grib2/tables/13/1.5.table diff --git a/eccodes/definitions/grib2/tables/13/1.6.table b/eccodes/definitions.save/grib2/tables/13/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/1.6.table rename to eccodes/definitions.save/grib2/tables/13/1.6.table diff --git a/eccodes/definitions/grib2/tables/13/3.0.table b/eccodes/definitions.save/grib2/tables/13/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.0.table rename to eccodes/definitions.save/grib2/tables/13/3.0.table diff --git a/eccodes/definitions/grib2/tables/13/3.1.table b/eccodes/definitions.save/grib2/tables/13/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.1.table rename to eccodes/definitions.save/grib2/tables/13/3.1.table diff --git a/eccodes/definitions/grib2/tables/13/3.10.table b/eccodes/definitions.save/grib2/tables/13/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.10.table rename to eccodes/definitions.save/grib2/tables/13/3.10.table diff --git a/eccodes/definitions/grib2/tables/13/3.11.table b/eccodes/definitions.save/grib2/tables/13/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.11.table rename to eccodes/definitions.save/grib2/tables/13/3.11.table diff --git a/eccodes/definitions/grib2/tables/13/3.15.table b/eccodes/definitions.save/grib2/tables/13/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.15.table rename to eccodes/definitions.save/grib2/tables/13/3.15.table diff --git a/eccodes/definitions/grib2/tables/13/3.2.table b/eccodes/definitions.save/grib2/tables/13/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.2.table rename to eccodes/definitions.save/grib2/tables/13/3.2.table diff --git a/eccodes/definitions/grib2/tables/13/3.20.table b/eccodes/definitions.save/grib2/tables/13/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.20.table rename to eccodes/definitions.save/grib2/tables/13/3.20.table diff --git a/eccodes/definitions/grib2/tables/13/3.21.table b/eccodes/definitions.save/grib2/tables/13/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.21.table rename to eccodes/definitions.save/grib2/tables/13/3.21.table diff --git a/eccodes/definitions/grib2/tables/13/3.3.table b/eccodes/definitions.save/grib2/tables/13/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.3.table rename to eccodes/definitions.save/grib2/tables/13/3.3.table diff --git a/eccodes/definitions/grib2/tables/13/3.4.table b/eccodes/definitions.save/grib2/tables/13/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.4.table rename to eccodes/definitions.save/grib2/tables/13/3.4.table diff --git a/eccodes/definitions/grib2/tables/13/3.5.table b/eccodes/definitions.save/grib2/tables/13/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.5.table rename to eccodes/definitions.save/grib2/tables/13/3.5.table diff --git a/eccodes/definitions/grib2/tables/13/3.6.table b/eccodes/definitions.save/grib2/tables/13/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.6.table rename to eccodes/definitions.save/grib2/tables/13/3.6.table diff --git a/eccodes/definitions/grib2/tables/13/3.7.table b/eccodes/definitions.save/grib2/tables/13/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.7.table rename to eccodes/definitions.save/grib2/tables/13/3.7.table diff --git a/eccodes/definitions/grib2/tables/13/3.8.table b/eccodes/definitions.save/grib2/tables/13/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.8.table rename to eccodes/definitions.save/grib2/tables/13/3.8.table diff --git a/eccodes/definitions/grib2/tables/13/3.9.table b/eccodes/definitions.save/grib2/tables/13/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/3.9.table rename to eccodes/definitions.save/grib2/tables/13/3.9.table diff --git a/eccodes/definitions/grib2/tables/13/4.0.table b/eccodes/definitions.save/grib2/tables/13/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.0.table rename to eccodes/definitions.save/grib2/tables/13/4.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.0.table b/eccodes/definitions.save/grib2/tables/13/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.0.table rename to eccodes/definitions.save/grib2/tables/13/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.1.table b/eccodes/definitions.save/grib2/tables/13/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.1.table rename to eccodes/definitions.save/grib2/tables/13/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.10.table b/eccodes/definitions.save/grib2/tables/13/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.10.table rename to eccodes/definitions.save/grib2/tables/13/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.192.table b/eccodes/definitions.save/grib2/tables/13/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.192.table rename to eccodes/definitions.save/grib2/tables/13/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.2.table b/eccodes/definitions.save/grib2/tables/13/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.2.table rename to eccodes/definitions.save/grib2/tables/13/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/13/4.1.3.table b/eccodes/definitions.save/grib2/tables/13/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.1.3.table rename to eccodes/definitions.save/grib2/tables/13/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/13/4.10.table b/eccodes/definitions.save/grib2/tables/13/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.10.table rename to eccodes/definitions.save/grib2/tables/13/4.10.table diff --git a/eccodes/definitions/grib2/tables/13/4.11.table b/eccodes/definitions.save/grib2/tables/13/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.11.table rename to eccodes/definitions.save/grib2/tables/13/4.11.table diff --git a/eccodes/definitions/grib2/tables/13/4.12.table b/eccodes/definitions.save/grib2/tables/13/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.12.table rename to eccodes/definitions.save/grib2/tables/13/4.12.table diff --git a/eccodes/definitions/grib2/tables/13/4.13.table b/eccodes/definitions.save/grib2/tables/13/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.13.table rename to eccodes/definitions.save/grib2/tables/13/4.13.table diff --git a/eccodes/definitions/grib2/tables/13/4.14.table b/eccodes/definitions.save/grib2/tables/13/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.14.table rename to eccodes/definitions.save/grib2/tables/13/4.14.table diff --git a/eccodes/definitions/grib2/tables/13/4.15.table b/eccodes/definitions.save/grib2/tables/13/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.15.table rename to eccodes/definitions.save/grib2/tables/13/4.15.table diff --git a/eccodes/definitions/grib2/tables/13/4.192.table b/eccodes/definitions.save/grib2/tables/13/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.192.table rename to eccodes/definitions.save/grib2/tables/13/4.192.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/13/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/13/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/13/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/13/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/13/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/13/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/13/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/13/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/13/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/13/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/13/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/13/4.201.table b/eccodes/definitions.save/grib2/tables/13/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.201.table rename to eccodes/definitions.save/grib2/tables/13/4.201.table diff --git a/eccodes/definitions/grib2/tables/13/4.202.table b/eccodes/definitions.save/grib2/tables/13/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.202.table rename to eccodes/definitions.save/grib2/tables/13/4.202.table diff --git a/eccodes/definitions/grib2/tables/13/4.203.table b/eccodes/definitions.save/grib2/tables/13/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.203.table rename to eccodes/definitions.save/grib2/tables/13/4.203.table diff --git a/eccodes/definitions/grib2/tables/13/4.204.table b/eccodes/definitions.save/grib2/tables/13/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.204.table rename to eccodes/definitions.save/grib2/tables/13/4.204.table diff --git a/eccodes/definitions/grib2/tables/13/4.205.table b/eccodes/definitions.save/grib2/tables/13/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.205.table rename to eccodes/definitions.save/grib2/tables/13/4.205.table diff --git a/eccodes/definitions/grib2/tables/13/4.206.table b/eccodes/definitions.save/grib2/tables/13/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.206.table rename to eccodes/definitions.save/grib2/tables/13/4.206.table diff --git a/eccodes/definitions/grib2/tables/13/4.207.table b/eccodes/definitions.save/grib2/tables/13/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.207.table rename to eccodes/definitions.save/grib2/tables/13/4.207.table diff --git a/eccodes/definitions/grib2/tables/13/4.208.table b/eccodes/definitions.save/grib2/tables/13/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.208.table rename to eccodes/definitions.save/grib2/tables/13/4.208.table diff --git a/eccodes/definitions/grib2/tables/13/4.209.table b/eccodes/definitions.save/grib2/tables/13/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.209.table rename to eccodes/definitions.save/grib2/tables/13/4.209.table diff --git a/eccodes/definitions/grib2/tables/13/4.210.table b/eccodes/definitions.save/grib2/tables/13/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.210.table rename to eccodes/definitions.save/grib2/tables/13/4.210.table diff --git a/eccodes/definitions/grib2/tables/13/4.211.table b/eccodes/definitions.save/grib2/tables/13/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.211.table rename to eccodes/definitions.save/grib2/tables/13/4.211.table diff --git a/eccodes/definitions/grib2/tables/13/4.212.table b/eccodes/definitions.save/grib2/tables/13/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.212.table rename to eccodes/definitions.save/grib2/tables/13/4.212.table diff --git a/eccodes/definitions/grib2/tables/13/4.213.table b/eccodes/definitions.save/grib2/tables/13/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.213.table rename to eccodes/definitions.save/grib2/tables/13/4.213.table diff --git a/eccodes/definitions/grib2/tables/13/4.215.table b/eccodes/definitions.save/grib2/tables/13/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.215.table rename to eccodes/definitions.save/grib2/tables/13/4.215.table diff --git a/eccodes/definitions/grib2/tables/13/4.216.table b/eccodes/definitions.save/grib2/tables/13/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.216.table rename to eccodes/definitions.save/grib2/tables/13/4.216.table diff --git a/eccodes/definitions/grib2/tables/13/4.217.table b/eccodes/definitions.save/grib2/tables/13/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.217.table rename to eccodes/definitions.save/grib2/tables/13/4.217.table diff --git a/eccodes/definitions/grib2/tables/13/4.218.table b/eccodes/definitions.save/grib2/tables/13/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.218.table rename to eccodes/definitions.save/grib2/tables/13/4.218.table diff --git a/eccodes/definitions/grib2/tables/13/4.219.table b/eccodes/definitions.save/grib2/tables/13/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.219.table rename to eccodes/definitions.save/grib2/tables/13/4.219.table diff --git a/eccodes/definitions/grib2/tables/13/4.220.table b/eccodes/definitions.save/grib2/tables/13/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.220.table rename to eccodes/definitions.save/grib2/tables/13/4.220.table diff --git a/eccodes/definitions/grib2/tables/13/4.221.table b/eccodes/definitions.save/grib2/tables/13/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.221.table rename to eccodes/definitions.save/grib2/tables/13/4.221.table diff --git a/eccodes/definitions/grib2/tables/13/4.222.table b/eccodes/definitions.save/grib2/tables/13/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.222.table rename to eccodes/definitions.save/grib2/tables/13/4.222.table diff --git a/eccodes/definitions/grib2/tables/13/4.223.table b/eccodes/definitions.save/grib2/tables/13/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.223.table rename to eccodes/definitions.save/grib2/tables/13/4.223.table diff --git a/eccodes/definitions/grib2/tables/13/4.224.table b/eccodes/definitions.save/grib2/tables/13/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.224.table rename to eccodes/definitions.save/grib2/tables/13/4.224.table diff --git a/eccodes/definitions/grib2/tables/13/4.225.table b/eccodes/definitions.save/grib2/tables/13/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.225.table rename to eccodes/definitions.save/grib2/tables/13/4.225.table diff --git a/eccodes/definitions/grib2/tables/13/4.227.table b/eccodes/definitions.save/grib2/tables/13/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.227.table rename to eccodes/definitions.save/grib2/tables/13/4.227.table diff --git a/eccodes/definitions/grib2/tables/13/4.230.table b/eccodes/definitions.save/grib2/tables/13/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.230.table rename to eccodes/definitions.save/grib2/tables/13/4.230.table diff --git a/eccodes/definitions/grib2/tables/13/4.233.table b/eccodes/definitions.save/grib2/tables/13/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.233.table rename to eccodes/definitions.save/grib2/tables/13/4.233.table diff --git a/eccodes/definitions/grib2/tables/13/4.234.table b/eccodes/definitions.save/grib2/tables/13/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.234.table rename to eccodes/definitions.save/grib2/tables/13/4.234.table diff --git a/eccodes/definitions/grib2/tables/13/4.236.table b/eccodes/definitions.save/grib2/tables/13/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.236.table rename to eccodes/definitions.save/grib2/tables/13/4.236.table diff --git a/eccodes/definitions/grib2/tables/13/4.3.table b/eccodes/definitions.save/grib2/tables/13/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.3.table rename to eccodes/definitions.save/grib2/tables/13/4.3.table diff --git a/eccodes/definitions/grib2/tables/13/4.4.table b/eccodes/definitions.save/grib2/tables/13/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.4.table rename to eccodes/definitions.save/grib2/tables/13/4.4.table diff --git a/eccodes/definitions/grib2/tables/13/4.5.table b/eccodes/definitions.save/grib2/tables/13/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.5.table rename to eccodes/definitions.save/grib2/tables/13/4.5.table diff --git a/eccodes/definitions/grib2/tables/13/4.6.table b/eccodes/definitions.save/grib2/tables/13/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.6.table rename to eccodes/definitions.save/grib2/tables/13/4.6.table diff --git a/eccodes/definitions/grib2/tables/13/4.7.table b/eccodes/definitions.save/grib2/tables/13/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.7.table rename to eccodes/definitions.save/grib2/tables/13/4.7.table diff --git a/eccodes/definitions/grib2/tables/13/4.8.table b/eccodes/definitions.save/grib2/tables/13/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.8.table rename to eccodes/definitions.save/grib2/tables/13/4.8.table diff --git a/eccodes/definitions/grib2/tables/13/4.9.table b/eccodes/definitions.save/grib2/tables/13/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.9.table rename to eccodes/definitions.save/grib2/tables/13/4.9.table diff --git a/eccodes/definitions/grib2/tables/13/4.91.table b/eccodes/definitions.save/grib2/tables/13/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/4.91.table rename to eccodes/definitions.save/grib2/tables/13/4.91.table diff --git a/eccodes/definitions/grib2/tables/13/5.0.table b/eccodes/definitions.save/grib2/tables/13/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.0.table rename to eccodes/definitions.save/grib2/tables/13/5.0.table diff --git a/eccodes/definitions/grib2/tables/13/5.1.table b/eccodes/definitions.save/grib2/tables/13/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.1.table rename to eccodes/definitions.save/grib2/tables/13/5.1.table diff --git a/eccodes/definitions/grib2/tables/13/5.2.table b/eccodes/definitions.save/grib2/tables/13/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.2.table rename to eccodes/definitions.save/grib2/tables/13/5.2.table diff --git a/eccodes/definitions/grib2/tables/13/5.3.table b/eccodes/definitions.save/grib2/tables/13/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.3.table rename to eccodes/definitions.save/grib2/tables/13/5.3.table diff --git a/eccodes/definitions/grib2/tables/13/5.4.table b/eccodes/definitions.save/grib2/tables/13/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.4.table rename to eccodes/definitions.save/grib2/tables/13/5.4.table diff --git a/eccodes/definitions/grib2/tables/13/5.40.table b/eccodes/definitions.save/grib2/tables/13/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.40.table rename to eccodes/definitions.save/grib2/tables/13/5.40.table diff --git a/eccodes/definitions/grib2/tables/13/5.40000.table b/eccodes/definitions.save/grib2/tables/13/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.40000.table rename to eccodes/definitions.save/grib2/tables/13/5.40000.table diff --git a/eccodes/definitions/grib2/tables/13/5.5.table b/eccodes/definitions.save/grib2/tables/13/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.5.table rename to eccodes/definitions.save/grib2/tables/13/5.5.table diff --git a/eccodes/definitions/grib2/tables/13/5.50002.table b/eccodes/definitions.save/grib2/tables/13/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.50002.table rename to eccodes/definitions.save/grib2/tables/13/5.50002.table diff --git a/eccodes/definitions/grib2/tables/13/5.6.table b/eccodes/definitions.save/grib2/tables/13/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.6.table rename to eccodes/definitions.save/grib2/tables/13/5.6.table diff --git a/eccodes/definitions/grib2/tables/13/5.7.table b/eccodes/definitions.save/grib2/tables/13/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.7.table rename to eccodes/definitions.save/grib2/tables/13/5.7.table diff --git a/eccodes/definitions/grib2/tables/13/5.8.table b/eccodes/definitions.save/grib2/tables/13/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.8.table rename to eccodes/definitions.save/grib2/tables/13/5.8.table diff --git a/eccodes/definitions/grib2/tables/13/5.9.table b/eccodes/definitions.save/grib2/tables/13/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/5.9.table rename to eccodes/definitions.save/grib2/tables/13/5.9.table diff --git a/eccodes/definitions/grib2/tables/13/6.0.table b/eccodes/definitions.save/grib2/tables/13/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/6.0.table rename to eccodes/definitions.save/grib2/tables/13/6.0.table diff --git a/eccodes/definitions/grib2/tables/13/stepType.table b/eccodes/definitions.save/grib2/tables/13/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/13/stepType.table rename to eccodes/definitions.save/grib2/tables/13/stepType.table diff --git a/eccodes/definitions/grib2/tables/14/0.0.table b/eccodes/definitions.save/grib2/tables/14/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/0.0.table rename to eccodes/definitions.save/grib2/tables/14/0.0.table diff --git a/eccodes/definitions/grib2/tables/14/1.0.table b/eccodes/definitions.save/grib2/tables/14/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.0.table rename to eccodes/definitions.save/grib2/tables/14/1.0.table diff --git a/eccodes/definitions/grib2/tables/14/1.1.table b/eccodes/definitions.save/grib2/tables/14/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.1.table rename to eccodes/definitions.save/grib2/tables/14/1.1.table diff --git a/eccodes/definitions/grib2/tables/14/1.2.table b/eccodes/definitions.save/grib2/tables/14/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.2.table rename to eccodes/definitions.save/grib2/tables/14/1.2.table diff --git a/eccodes/definitions/grib2/tables/14/1.3.table b/eccodes/definitions.save/grib2/tables/14/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.3.table rename to eccodes/definitions.save/grib2/tables/14/1.3.table diff --git a/eccodes/definitions/grib2/tables/14/1.4.table b/eccodes/definitions.save/grib2/tables/14/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.4.table rename to eccodes/definitions.save/grib2/tables/14/1.4.table diff --git a/eccodes/definitions/grib2/tables/14/1.5.table b/eccodes/definitions.save/grib2/tables/14/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.5.table rename to eccodes/definitions.save/grib2/tables/14/1.5.table diff --git a/eccodes/definitions/grib2/tables/14/1.6.table b/eccodes/definitions.save/grib2/tables/14/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/1.6.table rename to eccodes/definitions.save/grib2/tables/14/1.6.table diff --git a/eccodes/definitions/grib2/tables/14/3.0.table b/eccodes/definitions.save/grib2/tables/14/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.0.table rename to eccodes/definitions.save/grib2/tables/14/3.0.table diff --git a/eccodes/definitions/grib2/tables/14/3.1.table b/eccodes/definitions.save/grib2/tables/14/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.1.table rename to eccodes/definitions.save/grib2/tables/14/3.1.table diff --git a/eccodes/definitions/grib2/tables/14/3.10.table b/eccodes/definitions.save/grib2/tables/14/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.10.table rename to eccodes/definitions.save/grib2/tables/14/3.10.table diff --git a/eccodes/definitions/grib2/tables/14/3.11.table b/eccodes/definitions.save/grib2/tables/14/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.11.table rename to eccodes/definitions.save/grib2/tables/14/3.11.table diff --git a/eccodes/definitions/grib2/tables/14/3.15.table b/eccodes/definitions.save/grib2/tables/14/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.15.table rename to eccodes/definitions.save/grib2/tables/14/3.15.table diff --git a/eccodes/definitions/grib2/tables/14/3.2.table b/eccodes/definitions.save/grib2/tables/14/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.2.table rename to eccodes/definitions.save/grib2/tables/14/3.2.table diff --git a/eccodes/definitions/grib2/tables/14/3.20.table b/eccodes/definitions.save/grib2/tables/14/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.20.table rename to eccodes/definitions.save/grib2/tables/14/3.20.table diff --git a/eccodes/definitions/grib2/tables/14/3.21.table b/eccodes/definitions.save/grib2/tables/14/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.21.table rename to eccodes/definitions.save/grib2/tables/14/3.21.table diff --git a/eccodes/definitions/grib2/tables/14/3.3.table b/eccodes/definitions.save/grib2/tables/14/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.3.table rename to eccodes/definitions.save/grib2/tables/14/3.3.table diff --git a/eccodes/definitions/grib2/tables/14/3.4.table b/eccodes/definitions.save/grib2/tables/14/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.4.table rename to eccodes/definitions.save/grib2/tables/14/3.4.table diff --git a/eccodes/definitions/grib2/tables/14/3.5.table b/eccodes/definitions.save/grib2/tables/14/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.5.table rename to eccodes/definitions.save/grib2/tables/14/3.5.table diff --git a/eccodes/definitions/grib2/tables/14/3.6.table b/eccodes/definitions.save/grib2/tables/14/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.6.table rename to eccodes/definitions.save/grib2/tables/14/3.6.table diff --git a/eccodes/definitions/grib2/tables/14/3.7.table b/eccodes/definitions.save/grib2/tables/14/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.7.table rename to eccodes/definitions.save/grib2/tables/14/3.7.table diff --git a/eccodes/definitions/grib2/tables/14/3.8.table b/eccodes/definitions.save/grib2/tables/14/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.8.table rename to eccodes/definitions.save/grib2/tables/14/3.8.table diff --git a/eccodes/definitions/grib2/tables/14/3.9.table b/eccodes/definitions.save/grib2/tables/14/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/3.9.table rename to eccodes/definitions.save/grib2/tables/14/3.9.table diff --git a/eccodes/definitions/grib2/tables/14/4.0.table b/eccodes/definitions.save/grib2/tables/14/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.0.table rename to eccodes/definitions.save/grib2/tables/14/4.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.0.table b/eccodes/definitions.save/grib2/tables/14/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.0.table rename to eccodes/definitions.save/grib2/tables/14/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.1.table b/eccodes/definitions.save/grib2/tables/14/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.1.table rename to eccodes/definitions.save/grib2/tables/14/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.10.table b/eccodes/definitions.save/grib2/tables/14/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.10.table rename to eccodes/definitions.save/grib2/tables/14/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.192.table b/eccodes/definitions.save/grib2/tables/14/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.192.table rename to eccodes/definitions.save/grib2/tables/14/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.2.table b/eccodes/definitions.save/grib2/tables/14/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.2.table rename to eccodes/definitions.save/grib2/tables/14/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/14/4.1.3.table b/eccodes/definitions.save/grib2/tables/14/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.1.3.table rename to eccodes/definitions.save/grib2/tables/14/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/14/4.10.table b/eccodes/definitions.save/grib2/tables/14/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.10.table rename to eccodes/definitions.save/grib2/tables/14/4.10.table diff --git a/eccodes/definitions/grib2/tables/14/4.11.table b/eccodes/definitions.save/grib2/tables/14/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.11.table rename to eccodes/definitions.save/grib2/tables/14/4.11.table diff --git a/eccodes/definitions/grib2/tables/14/4.12.table b/eccodes/definitions.save/grib2/tables/14/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.12.table rename to eccodes/definitions.save/grib2/tables/14/4.12.table diff --git a/eccodes/definitions/grib2/tables/14/4.13.table b/eccodes/definitions.save/grib2/tables/14/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.13.table rename to eccodes/definitions.save/grib2/tables/14/4.13.table diff --git a/eccodes/definitions/grib2/tables/14/4.14.table b/eccodes/definitions.save/grib2/tables/14/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.14.table rename to eccodes/definitions.save/grib2/tables/14/4.14.table diff --git a/eccodes/definitions/grib2/tables/14/4.15.table b/eccodes/definitions.save/grib2/tables/14/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.15.table rename to eccodes/definitions.save/grib2/tables/14/4.15.table diff --git a/eccodes/definitions/grib2/tables/14/4.192.table b/eccodes/definitions.save/grib2/tables/14/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.192.table rename to eccodes/definitions.save/grib2/tables/14/4.192.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/14/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/14/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/14/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/14/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/14/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/14/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/14/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/14/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/14/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/14/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/14/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/14/4.201.table b/eccodes/definitions.save/grib2/tables/14/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.201.table rename to eccodes/definitions.save/grib2/tables/14/4.201.table diff --git a/eccodes/definitions/grib2/tables/14/4.202.table b/eccodes/definitions.save/grib2/tables/14/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.202.table rename to eccodes/definitions.save/grib2/tables/14/4.202.table diff --git a/eccodes/definitions/grib2/tables/14/4.203.table b/eccodes/definitions.save/grib2/tables/14/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.203.table rename to eccodes/definitions.save/grib2/tables/14/4.203.table diff --git a/eccodes/definitions/grib2/tables/14/4.204.table b/eccodes/definitions.save/grib2/tables/14/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.204.table rename to eccodes/definitions.save/grib2/tables/14/4.204.table diff --git a/eccodes/definitions/grib2/tables/14/4.205.table b/eccodes/definitions.save/grib2/tables/14/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.205.table rename to eccodes/definitions.save/grib2/tables/14/4.205.table diff --git a/eccodes/definitions/grib2/tables/14/4.206.table b/eccodes/definitions.save/grib2/tables/14/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.206.table rename to eccodes/definitions.save/grib2/tables/14/4.206.table diff --git a/eccodes/definitions/grib2/tables/14/4.207.table b/eccodes/definitions.save/grib2/tables/14/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.207.table rename to eccodes/definitions.save/grib2/tables/14/4.207.table diff --git a/eccodes/definitions/grib2/tables/14/4.208.table b/eccodes/definitions.save/grib2/tables/14/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.208.table rename to eccodes/definitions.save/grib2/tables/14/4.208.table diff --git a/eccodes/definitions/grib2/tables/14/4.209.table b/eccodes/definitions.save/grib2/tables/14/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.209.table rename to eccodes/definitions.save/grib2/tables/14/4.209.table diff --git a/eccodes/definitions/grib2/tables/14/4.210.table b/eccodes/definitions.save/grib2/tables/14/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.210.table rename to eccodes/definitions.save/grib2/tables/14/4.210.table diff --git a/eccodes/definitions/grib2/tables/14/4.211.table b/eccodes/definitions.save/grib2/tables/14/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.211.table rename to eccodes/definitions.save/grib2/tables/14/4.211.table diff --git a/eccodes/definitions/grib2/tables/14/4.212.table b/eccodes/definitions.save/grib2/tables/14/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.212.table rename to eccodes/definitions.save/grib2/tables/14/4.212.table diff --git a/eccodes/definitions/grib2/tables/14/4.213.table b/eccodes/definitions.save/grib2/tables/14/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.213.table rename to eccodes/definitions.save/grib2/tables/14/4.213.table diff --git a/eccodes/definitions/grib2/tables/14/4.215.table b/eccodes/definitions.save/grib2/tables/14/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.215.table rename to eccodes/definitions.save/grib2/tables/14/4.215.table diff --git a/eccodes/definitions/grib2/tables/14/4.216.table b/eccodes/definitions.save/grib2/tables/14/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.216.table rename to eccodes/definitions.save/grib2/tables/14/4.216.table diff --git a/eccodes/definitions/grib2/tables/14/4.217.table b/eccodes/definitions.save/grib2/tables/14/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.217.table rename to eccodes/definitions.save/grib2/tables/14/4.217.table diff --git a/eccodes/definitions/grib2/tables/14/4.218.table b/eccodes/definitions.save/grib2/tables/14/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.218.table rename to eccodes/definitions.save/grib2/tables/14/4.218.table diff --git a/eccodes/definitions/grib2/tables/14/4.219.table b/eccodes/definitions.save/grib2/tables/14/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.219.table rename to eccodes/definitions.save/grib2/tables/14/4.219.table diff --git a/eccodes/definitions/grib2/tables/14/4.220.table b/eccodes/definitions.save/grib2/tables/14/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.220.table rename to eccodes/definitions.save/grib2/tables/14/4.220.table diff --git a/eccodes/definitions/grib2/tables/14/4.221.table b/eccodes/definitions.save/grib2/tables/14/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.221.table rename to eccodes/definitions.save/grib2/tables/14/4.221.table diff --git a/eccodes/definitions/grib2/tables/14/4.222.table b/eccodes/definitions.save/grib2/tables/14/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.222.table rename to eccodes/definitions.save/grib2/tables/14/4.222.table diff --git a/eccodes/definitions/grib2/tables/14/4.223.table b/eccodes/definitions.save/grib2/tables/14/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.223.table rename to eccodes/definitions.save/grib2/tables/14/4.223.table diff --git a/eccodes/definitions/grib2/tables/14/4.224.table b/eccodes/definitions.save/grib2/tables/14/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.224.table rename to eccodes/definitions.save/grib2/tables/14/4.224.table diff --git a/eccodes/definitions/grib2/tables/14/4.225.table b/eccodes/definitions.save/grib2/tables/14/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.225.table rename to eccodes/definitions.save/grib2/tables/14/4.225.table diff --git a/eccodes/definitions/grib2/tables/14/4.227.table b/eccodes/definitions.save/grib2/tables/14/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.227.table rename to eccodes/definitions.save/grib2/tables/14/4.227.table diff --git a/eccodes/definitions/grib2/tables/14/4.230.table b/eccodes/definitions.save/grib2/tables/14/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.230.table rename to eccodes/definitions.save/grib2/tables/14/4.230.table diff --git a/eccodes/definitions/grib2/tables/14/4.233.table b/eccodes/definitions.save/grib2/tables/14/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.233.table rename to eccodes/definitions.save/grib2/tables/14/4.233.table diff --git a/eccodes/definitions/grib2/tables/14/4.234.table b/eccodes/definitions.save/grib2/tables/14/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.234.table rename to eccodes/definitions.save/grib2/tables/14/4.234.table diff --git a/eccodes/definitions/grib2/tables/14/4.236.table b/eccodes/definitions.save/grib2/tables/14/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.236.table rename to eccodes/definitions.save/grib2/tables/14/4.236.table diff --git a/eccodes/definitions/grib2/tables/14/4.241.table b/eccodes/definitions.save/grib2/tables/14/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.241.table rename to eccodes/definitions.save/grib2/tables/14/4.241.table diff --git a/eccodes/definitions/grib2/tables/14/4.242.table b/eccodes/definitions.save/grib2/tables/14/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.242.table rename to eccodes/definitions.save/grib2/tables/14/4.242.table diff --git a/eccodes/definitions/grib2/tables/14/4.243.table b/eccodes/definitions.save/grib2/tables/14/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.243.table rename to eccodes/definitions.save/grib2/tables/14/4.243.table diff --git a/eccodes/definitions/grib2/tables/14/4.3.table b/eccodes/definitions.save/grib2/tables/14/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.3.table rename to eccodes/definitions.save/grib2/tables/14/4.3.table diff --git a/eccodes/definitions/grib2/tables/14/4.4.table b/eccodes/definitions.save/grib2/tables/14/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.4.table rename to eccodes/definitions.save/grib2/tables/14/4.4.table diff --git a/eccodes/definitions/grib2/tables/14/4.5.table b/eccodes/definitions.save/grib2/tables/14/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.5.table rename to eccodes/definitions.save/grib2/tables/14/4.5.table diff --git a/eccodes/definitions/grib2/tables/14/4.6.table b/eccodes/definitions.save/grib2/tables/14/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.6.table rename to eccodes/definitions.save/grib2/tables/14/4.6.table diff --git a/eccodes/definitions/grib2/tables/14/4.7.table b/eccodes/definitions.save/grib2/tables/14/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.7.table rename to eccodes/definitions.save/grib2/tables/14/4.7.table diff --git a/eccodes/definitions/grib2/tables/14/4.8.table b/eccodes/definitions.save/grib2/tables/14/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.8.table rename to eccodes/definitions.save/grib2/tables/14/4.8.table diff --git a/eccodes/definitions/grib2/tables/14/4.9.table b/eccodes/definitions.save/grib2/tables/14/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.9.table rename to eccodes/definitions.save/grib2/tables/14/4.9.table diff --git a/eccodes/definitions/grib2/tables/14/4.91.table b/eccodes/definitions.save/grib2/tables/14/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/4.91.table rename to eccodes/definitions.save/grib2/tables/14/4.91.table diff --git a/eccodes/definitions/grib2/tables/14/5.0.table b/eccodes/definitions.save/grib2/tables/14/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.0.table rename to eccodes/definitions.save/grib2/tables/14/5.0.table diff --git a/eccodes/definitions/grib2/tables/14/5.1.table b/eccodes/definitions.save/grib2/tables/14/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.1.table rename to eccodes/definitions.save/grib2/tables/14/5.1.table diff --git a/eccodes/definitions/grib2/tables/14/5.2.table b/eccodes/definitions.save/grib2/tables/14/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.2.table rename to eccodes/definitions.save/grib2/tables/14/5.2.table diff --git a/eccodes/definitions/grib2/tables/14/5.3.table b/eccodes/definitions.save/grib2/tables/14/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.3.table rename to eccodes/definitions.save/grib2/tables/14/5.3.table diff --git a/eccodes/definitions/grib2/tables/14/5.4.table b/eccodes/definitions.save/grib2/tables/14/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.4.table rename to eccodes/definitions.save/grib2/tables/14/5.4.table diff --git a/eccodes/definitions/grib2/tables/14/5.40.table b/eccodes/definitions.save/grib2/tables/14/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.40.table rename to eccodes/definitions.save/grib2/tables/14/5.40.table diff --git a/eccodes/definitions/grib2/tables/14/5.40000.table b/eccodes/definitions.save/grib2/tables/14/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.40000.table rename to eccodes/definitions.save/grib2/tables/14/5.40000.table diff --git a/eccodes/definitions/grib2/tables/14/5.5.table b/eccodes/definitions.save/grib2/tables/14/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.5.table rename to eccodes/definitions.save/grib2/tables/14/5.5.table diff --git a/eccodes/definitions/grib2/tables/14/5.50002.table b/eccodes/definitions.save/grib2/tables/14/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.50002.table rename to eccodes/definitions.save/grib2/tables/14/5.50002.table diff --git a/eccodes/definitions/grib2/tables/14/5.6.table b/eccodes/definitions.save/grib2/tables/14/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.6.table rename to eccodes/definitions.save/grib2/tables/14/5.6.table diff --git a/eccodes/definitions/grib2/tables/14/5.7.table b/eccodes/definitions.save/grib2/tables/14/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.7.table rename to eccodes/definitions.save/grib2/tables/14/5.7.table diff --git a/eccodes/definitions/grib2/tables/14/5.8.table b/eccodes/definitions.save/grib2/tables/14/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.8.table rename to eccodes/definitions.save/grib2/tables/14/5.8.table diff --git a/eccodes/definitions/grib2/tables/14/5.9.table b/eccodes/definitions.save/grib2/tables/14/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/5.9.table rename to eccodes/definitions.save/grib2/tables/14/5.9.table diff --git a/eccodes/definitions/grib2/tables/14/6.0.table b/eccodes/definitions.save/grib2/tables/14/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/6.0.table rename to eccodes/definitions.save/grib2/tables/14/6.0.table diff --git a/eccodes/definitions/grib2/tables/14/stepType.table b/eccodes/definitions.save/grib2/tables/14/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/14/stepType.table rename to eccodes/definitions.save/grib2/tables/14/stepType.table diff --git a/eccodes/definitions/grib2/tables/15/0.0.table b/eccodes/definitions.save/grib2/tables/15/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/0.0.table rename to eccodes/definitions.save/grib2/tables/15/0.0.table diff --git a/eccodes/definitions/grib2/tables/15/1.0.table b/eccodes/definitions.save/grib2/tables/15/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.0.table rename to eccodes/definitions.save/grib2/tables/15/1.0.table diff --git a/eccodes/definitions/grib2/tables/15/1.1.table b/eccodes/definitions.save/grib2/tables/15/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.1.table rename to eccodes/definitions.save/grib2/tables/15/1.1.table diff --git a/eccodes/definitions/grib2/tables/15/1.2.table b/eccodes/definitions.save/grib2/tables/15/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.2.table rename to eccodes/definitions.save/grib2/tables/15/1.2.table diff --git a/eccodes/definitions/grib2/tables/15/1.3.table b/eccodes/definitions.save/grib2/tables/15/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.3.table rename to eccodes/definitions.save/grib2/tables/15/1.3.table diff --git a/eccodes/definitions/grib2/tables/15/1.4.table b/eccodes/definitions.save/grib2/tables/15/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.4.table rename to eccodes/definitions.save/grib2/tables/15/1.4.table diff --git a/eccodes/definitions/grib2/tables/15/1.5.table b/eccodes/definitions.save/grib2/tables/15/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.5.table rename to eccodes/definitions.save/grib2/tables/15/1.5.table diff --git a/eccodes/definitions/grib2/tables/15/1.6.table b/eccodes/definitions.save/grib2/tables/15/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/1.6.table rename to eccodes/definitions.save/grib2/tables/15/1.6.table diff --git a/eccodes/definitions/grib2/tables/15/3.0.table b/eccodes/definitions.save/grib2/tables/15/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.0.table rename to eccodes/definitions.save/grib2/tables/15/3.0.table diff --git a/eccodes/definitions/grib2/tables/15/3.1.table b/eccodes/definitions.save/grib2/tables/15/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.1.table rename to eccodes/definitions.save/grib2/tables/15/3.1.table diff --git a/eccodes/definitions/grib2/tables/15/3.10.table b/eccodes/definitions.save/grib2/tables/15/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.10.table rename to eccodes/definitions.save/grib2/tables/15/3.10.table diff --git a/eccodes/definitions/grib2/tables/15/3.11.table b/eccodes/definitions.save/grib2/tables/15/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.11.table rename to eccodes/definitions.save/grib2/tables/15/3.11.table diff --git a/eccodes/definitions/grib2/tables/15/3.15.table b/eccodes/definitions.save/grib2/tables/15/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.15.table rename to eccodes/definitions.save/grib2/tables/15/3.15.table diff --git a/eccodes/definitions/grib2/tables/15/3.2.table b/eccodes/definitions.save/grib2/tables/15/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.2.table rename to eccodes/definitions.save/grib2/tables/15/3.2.table diff --git a/eccodes/definitions/grib2/tables/15/3.20.table b/eccodes/definitions.save/grib2/tables/15/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.20.table rename to eccodes/definitions.save/grib2/tables/15/3.20.table diff --git a/eccodes/definitions/grib2/tables/15/3.21.table b/eccodes/definitions.save/grib2/tables/15/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.21.table rename to eccodes/definitions.save/grib2/tables/15/3.21.table diff --git a/eccodes/definitions/grib2/tables/15/3.3.table b/eccodes/definitions.save/grib2/tables/15/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.3.table rename to eccodes/definitions.save/grib2/tables/15/3.3.table diff --git a/eccodes/definitions/grib2/tables/15/3.4.table b/eccodes/definitions.save/grib2/tables/15/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.4.table rename to eccodes/definitions.save/grib2/tables/15/3.4.table diff --git a/eccodes/definitions/grib2/tables/15/3.5.table b/eccodes/definitions.save/grib2/tables/15/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.5.table rename to eccodes/definitions.save/grib2/tables/15/3.5.table diff --git a/eccodes/definitions/grib2/tables/15/3.6.table b/eccodes/definitions.save/grib2/tables/15/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.6.table rename to eccodes/definitions.save/grib2/tables/15/3.6.table diff --git a/eccodes/definitions/grib2/tables/15/3.7.table b/eccodes/definitions.save/grib2/tables/15/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.7.table rename to eccodes/definitions.save/grib2/tables/15/3.7.table diff --git a/eccodes/definitions/grib2/tables/15/3.8.table b/eccodes/definitions.save/grib2/tables/15/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.8.table rename to eccodes/definitions.save/grib2/tables/15/3.8.table diff --git a/eccodes/definitions/grib2/tables/15/3.9.table b/eccodes/definitions.save/grib2/tables/15/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/3.9.table rename to eccodes/definitions.save/grib2/tables/15/3.9.table diff --git a/eccodes/definitions/grib2/tables/15/4.0.table b/eccodes/definitions.save/grib2/tables/15/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.0.table rename to eccodes/definitions.save/grib2/tables/15/4.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.0.table b/eccodes/definitions.save/grib2/tables/15/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.0.table rename to eccodes/definitions.save/grib2/tables/15/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.1.table b/eccodes/definitions.save/grib2/tables/15/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.1.table rename to eccodes/definitions.save/grib2/tables/15/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.10.table b/eccodes/definitions.save/grib2/tables/15/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.10.table rename to eccodes/definitions.save/grib2/tables/15/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.192.table b/eccodes/definitions.save/grib2/tables/15/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.192.table rename to eccodes/definitions.save/grib2/tables/15/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.2.table b/eccodes/definitions.save/grib2/tables/15/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.2.table rename to eccodes/definitions.save/grib2/tables/15/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/15/4.1.3.table b/eccodes/definitions.save/grib2/tables/15/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.1.3.table rename to eccodes/definitions.save/grib2/tables/15/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/15/4.10.table b/eccodes/definitions.save/grib2/tables/15/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.10.table rename to eccodes/definitions.save/grib2/tables/15/4.10.table diff --git a/eccodes/definitions/grib2/tables/15/4.11.table b/eccodes/definitions.save/grib2/tables/15/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.11.table rename to eccodes/definitions.save/grib2/tables/15/4.11.table diff --git a/eccodes/definitions/grib2/tables/15/4.12.table b/eccodes/definitions.save/grib2/tables/15/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.12.table rename to eccodes/definitions.save/grib2/tables/15/4.12.table diff --git a/eccodes/definitions/grib2/tables/15/4.13.table b/eccodes/definitions.save/grib2/tables/15/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.13.table rename to eccodes/definitions.save/grib2/tables/15/4.13.table diff --git a/eccodes/definitions/grib2/tables/15/4.14.table b/eccodes/definitions.save/grib2/tables/15/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.14.table rename to eccodes/definitions.save/grib2/tables/15/4.14.table diff --git a/eccodes/definitions/grib2/tables/15/4.15.table b/eccodes/definitions.save/grib2/tables/15/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.15.table rename to eccodes/definitions.save/grib2/tables/15/4.15.table diff --git a/eccodes/definitions/grib2/tables/15/4.192.table b/eccodes/definitions.save/grib2/tables/15/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.192.table rename to eccodes/definitions.save/grib2/tables/15/4.192.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/15/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/15/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/15/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/15/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/15/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/15/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/15/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/15/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/15/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/15/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/15/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/15/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/15/4.201.table b/eccodes/definitions.save/grib2/tables/15/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.201.table rename to eccodes/definitions.save/grib2/tables/15/4.201.table diff --git a/eccodes/definitions/grib2/tables/15/4.202.table b/eccodes/definitions.save/grib2/tables/15/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.202.table rename to eccodes/definitions.save/grib2/tables/15/4.202.table diff --git a/eccodes/definitions/grib2/tables/15/4.203.table b/eccodes/definitions.save/grib2/tables/15/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.203.table rename to eccodes/definitions.save/grib2/tables/15/4.203.table diff --git a/eccodes/definitions/grib2/tables/15/4.204.table b/eccodes/definitions.save/grib2/tables/15/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.204.table rename to eccodes/definitions.save/grib2/tables/15/4.204.table diff --git a/eccodes/definitions/grib2/tables/15/4.205.table b/eccodes/definitions.save/grib2/tables/15/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.205.table rename to eccodes/definitions.save/grib2/tables/15/4.205.table diff --git a/eccodes/definitions/grib2/tables/15/4.206.table b/eccodes/definitions.save/grib2/tables/15/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.206.table rename to eccodes/definitions.save/grib2/tables/15/4.206.table diff --git a/eccodes/definitions/grib2/tables/15/4.207.table b/eccodes/definitions.save/grib2/tables/15/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.207.table rename to eccodes/definitions.save/grib2/tables/15/4.207.table diff --git a/eccodes/definitions/grib2/tables/15/4.208.table b/eccodes/definitions.save/grib2/tables/15/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.208.table rename to eccodes/definitions.save/grib2/tables/15/4.208.table diff --git a/eccodes/definitions/grib2/tables/15/4.209.table b/eccodes/definitions.save/grib2/tables/15/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.209.table rename to eccodes/definitions.save/grib2/tables/15/4.209.table diff --git a/eccodes/definitions/grib2/tables/15/4.210.table b/eccodes/definitions.save/grib2/tables/15/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.210.table rename to eccodes/definitions.save/grib2/tables/15/4.210.table diff --git a/eccodes/definitions/grib2/tables/15/4.211.table b/eccodes/definitions.save/grib2/tables/15/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.211.table rename to eccodes/definitions.save/grib2/tables/15/4.211.table diff --git a/eccodes/definitions/grib2/tables/15/4.212.table b/eccodes/definitions.save/grib2/tables/15/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.212.table rename to eccodes/definitions.save/grib2/tables/15/4.212.table diff --git a/eccodes/definitions/grib2/tables/15/4.213.table b/eccodes/definitions.save/grib2/tables/15/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.213.table rename to eccodes/definitions.save/grib2/tables/15/4.213.table diff --git a/eccodes/definitions/grib2/tables/15/4.215.table b/eccodes/definitions.save/grib2/tables/15/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.215.table rename to eccodes/definitions.save/grib2/tables/15/4.215.table diff --git a/eccodes/definitions/grib2/tables/15/4.216.table b/eccodes/definitions.save/grib2/tables/15/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.216.table rename to eccodes/definitions.save/grib2/tables/15/4.216.table diff --git a/eccodes/definitions/grib2/tables/15/4.217.table b/eccodes/definitions.save/grib2/tables/15/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.217.table rename to eccodes/definitions.save/grib2/tables/15/4.217.table diff --git a/eccodes/definitions/grib2/tables/15/4.218.table b/eccodes/definitions.save/grib2/tables/15/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.218.table rename to eccodes/definitions.save/grib2/tables/15/4.218.table diff --git a/eccodes/definitions/grib2/tables/15/4.219.table b/eccodes/definitions.save/grib2/tables/15/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.219.table rename to eccodes/definitions.save/grib2/tables/15/4.219.table diff --git a/eccodes/definitions/grib2/tables/15/4.220.table b/eccodes/definitions.save/grib2/tables/15/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.220.table rename to eccodes/definitions.save/grib2/tables/15/4.220.table diff --git a/eccodes/definitions/grib2/tables/15/4.221.table b/eccodes/definitions.save/grib2/tables/15/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.221.table rename to eccodes/definitions.save/grib2/tables/15/4.221.table diff --git a/eccodes/definitions/grib2/tables/15/4.222.table b/eccodes/definitions.save/grib2/tables/15/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.222.table rename to eccodes/definitions.save/grib2/tables/15/4.222.table diff --git a/eccodes/definitions/grib2/tables/15/4.223.table b/eccodes/definitions.save/grib2/tables/15/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.223.table rename to eccodes/definitions.save/grib2/tables/15/4.223.table diff --git a/eccodes/definitions/grib2/tables/15/4.224.table b/eccodes/definitions.save/grib2/tables/15/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.224.table rename to eccodes/definitions.save/grib2/tables/15/4.224.table diff --git a/eccodes/definitions/grib2/tables/15/4.225.table b/eccodes/definitions.save/grib2/tables/15/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.225.table rename to eccodes/definitions.save/grib2/tables/15/4.225.table diff --git a/eccodes/definitions/grib2/tables/15/4.227.table b/eccodes/definitions.save/grib2/tables/15/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.227.table rename to eccodes/definitions.save/grib2/tables/15/4.227.table diff --git a/eccodes/definitions/grib2/tables/15/4.230.table b/eccodes/definitions.save/grib2/tables/15/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.230.table rename to eccodes/definitions.save/grib2/tables/15/4.230.table diff --git a/eccodes/definitions/grib2/tables/15/4.233.table b/eccodes/definitions.save/grib2/tables/15/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.233.table rename to eccodes/definitions.save/grib2/tables/15/4.233.table diff --git a/eccodes/definitions/grib2/tables/15/4.234.table b/eccodes/definitions.save/grib2/tables/15/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.234.table rename to eccodes/definitions.save/grib2/tables/15/4.234.table diff --git a/eccodes/definitions/grib2/tables/15/4.236.table b/eccodes/definitions.save/grib2/tables/15/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.236.table rename to eccodes/definitions.save/grib2/tables/15/4.236.table diff --git a/eccodes/definitions/grib2/tables/15/4.240.table b/eccodes/definitions.save/grib2/tables/15/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.240.table rename to eccodes/definitions.save/grib2/tables/15/4.240.table diff --git a/eccodes/definitions/grib2/tables/15/4.241.table b/eccodes/definitions.save/grib2/tables/15/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.241.table rename to eccodes/definitions.save/grib2/tables/15/4.241.table diff --git a/eccodes/definitions/grib2/tables/15/4.242.table b/eccodes/definitions.save/grib2/tables/15/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.242.table rename to eccodes/definitions.save/grib2/tables/15/4.242.table diff --git a/eccodes/definitions/grib2/tables/15/4.243.table b/eccodes/definitions.save/grib2/tables/15/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.243.table rename to eccodes/definitions.save/grib2/tables/15/4.243.table diff --git a/eccodes/definitions/grib2/tables/15/4.3.table b/eccodes/definitions.save/grib2/tables/15/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.3.table rename to eccodes/definitions.save/grib2/tables/15/4.3.table diff --git a/eccodes/definitions/grib2/tables/15/4.4.table b/eccodes/definitions.save/grib2/tables/15/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.4.table rename to eccodes/definitions.save/grib2/tables/15/4.4.table diff --git a/eccodes/definitions/grib2/tables/15/4.5.table b/eccodes/definitions.save/grib2/tables/15/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.5.table rename to eccodes/definitions.save/grib2/tables/15/4.5.table diff --git a/eccodes/definitions/grib2/tables/15/4.6.table b/eccodes/definitions.save/grib2/tables/15/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.6.table rename to eccodes/definitions.save/grib2/tables/15/4.6.table diff --git a/eccodes/definitions/grib2/tables/15/4.7.table b/eccodes/definitions.save/grib2/tables/15/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.7.table rename to eccodes/definitions.save/grib2/tables/15/4.7.table diff --git a/eccodes/definitions/grib2/tables/15/4.8.table b/eccodes/definitions.save/grib2/tables/15/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.8.table rename to eccodes/definitions.save/grib2/tables/15/4.8.table diff --git a/eccodes/definitions/grib2/tables/15/4.9.table b/eccodes/definitions.save/grib2/tables/15/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.9.table rename to eccodes/definitions.save/grib2/tables/15/4.9.table diff --git a/eccodes/definitions/grib2/tables/15/4.91.table b/eccodes/definitions.save/grib2/tables/15/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/4.91.table rename to eccodes/definitions.save/grib2/tables/15/4.91.table diff --git a/eccodes/definitions/grib2/tables/15/5.0.table b/eccodes/definitions.save/grib2/tables/15/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.0.table rename to eccodes/definitions.save/grib2/tables/15/5.0.table diff --git a/eccodes/definitions/grib2/tables/15/5.1.table b/eccodes/definitions.save/grib2/tables/15/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.1.table rename to eccodes/definitions.save/grib2/tables/15/5.1.table diff --git a/eccodes/definitions/grib2/tables/15/5.2.table b/eccodes/definitions.save/grib2/tables/15/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.2.table rename to eccodes/definitions.save/grib2/tables/15/5.2.table diff --git a/eccodes/definitions/grib2/tables/15/5.3.table b/eccodes/definitions.save/grib2/tables/15/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.3.table rename to eccodes/definitions.save/grib2/tables/15/5.3.table diff --git a/eccodes/definitions/grib2/tables/15/5.4.table b/eccodes/definitions.save/grib2/tables/15/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.4.table rename to eccodes/definitions.save/grib2/tables/15/5.4.table diff --git a/eccodes/definitions/grib2/tables/15/5.40.table b/eccodes/definitions.save/grib2/tables/15/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.40.table rename to eccodes/definitions.save/grib2/tables/15/5.40.table diff --git a/eccodes/definitions/grib2/tables/15/5.40000.table b/eccodes/definitions.save/grib2/tables/15/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.40000.table rename to eccodes/definitions.save/grib2/tables/15/5.40000.table diff --git a/eccodes/definitions/grib2/tables/15/5.5.table b/eccodes/definitions.save/grib2/tables/15/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.5.table rename to eccodes/definitions.save/grib2/tables/15/5.5.table diff --git a/eccodes/definitions/grib2/tables/15/5.50002.table b/eccodes/definitions.save/grib2/tables/15/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.50002.table rename to eccodes/definitions.save/grib2/tables/15/5.50002.table diff --git a/eccodes/definitions/grib2/tables/15/5.6.table b/eccodes/definitions.save/grib2/tables/15/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.6.table rename to eccodes/definitions.save/grib2/tables/15/5.6.table diff --git a/eccodes/definitions/grib2/tables/15/5.7.table b/eccodes/definitions.save/grib2/tables/15/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/5.7.table rename to eccodes/definitions.save/grib2/tables/15/5.7.table diff --git a/eccodes/definitions/grib2/tables/15/6.0.table b/eccodes/definitions.save/grib2/tables/15/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/6.0.table rename to eccodes/definitions.save/grib2/tables/15/6.0.table diff --git a/eccodes/definitions/grib2/tables/15/stepType.table b/eccodes/definitions.save/grib2/tables/15/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/15/stepType.table rename to eccodes/definitions.save/grib2/tables/15/stepType.table diff --git a/eccodes/definitions/grib2/tables/16/0.0.table b/eccodes/definitions.save/grib2/tables/16/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/0.0.table rename to eccodes/definitions.save/grib2/tables/16/0.0.table diff --git a/eccodes/definitions/grib2/tables/16/1.0.table b/eccodes/definitions.save/grib2/tables/16/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.0.table rename to eccodes/definitions.save/grib2/tables/16/1.0.table diff --git a/eccodes/definitions/grib2/tables/16/1.1.table b/eccodes/definitions.save/grib2/tables/16/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.1.table rename to eccodes/definitions.save/grib2/tables/16/1.1.table diff --git a/eccodes/definitions/grib2/tables/16/1.2.table b/eccodes/definitions.save/grib2/tables/16/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.2.table rename to eccodes/definitions.save/grib2/tables/16/1.2.table diff --git a/eccodes/definitions/grib2/tables/16/1.3.table b/eccodes/definitions.save/grib2/tables/16/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.3.table rename to eccodes/definitions.save/grib2/tables/16/1.3.table diff --git a/eccodes/definitions/grib2/tables/16/1.4.table b/eccodes/definitions.save/grib2/tables/16/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.4.table rename to eccodes/definitions.save/grib2/tables/16/1.4.table diff --git a/eccodes/definitions/grib2/tables/16/1.5.table b/eccodes/definitions.save/grib2/tables/16/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.5.table rename to eccodes/definitions.save/grib2/tables/16/1.5.table diff --git a/eccodes/definitions/grib2/tables/16/1.6.table b/eccodes/definitions.save/grib2/tables/16/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/1.6.table rename to eccodes/definitions.save/grib2/tables/16/1.6.table diff --git a/eccodes/definitions/grib2/tables/16/3.0.table b/eccodes/definitions.save/grib2/tables/16/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.0.table rename to eccodes/definitions.save/grib2/tables/16/3.0.table diff --git a/eccodes/definitions/grib2/tables/16/3.1.table b/eccodes/definitions.save/grib2/tables/16/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.1.table rename to eccodes/definitions.save/grib2/tables/16/3.1.table diff --git a/eccodes/definitions/grib2/tables/16/3.10.table b/eccodes/definitions.save/grib2/tables/16/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.10.table rename to eccodes/definitions.save/grib2/tables/16/3.10.table diff --git a/eccodes/definitions/grib2/tables/16/3.11.table b/eccodes/definitions.save/grib2/tables/16/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.11.table rename to eccodes/definitions.save/grib2/tables/16/3.11.table diff --git a/eccodes/definitions/grib2/tables/16/3.15.table b/eccodes/definitions.save/grib2/tables/16/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.15.table rename to eccodes/definitions.save/grib2/tables/16/3.15.table diff --git a/eccodes/definitions/grib2/tables/16/3.2.table b/eccodes/definitions.save/grib2/tables/16/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.2.table rename to eccodes/definitions.save/grib2/tables/16/3.2.table diff --git a/eccodes/definitions/grib2/tables/16/3.20.table b/eccodes/definitions.save/grib2/tables/16/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.20.table rename to eccodes/definitions.save/grib2/tables/16/3.20.table diff --git a/eccodes/definitions/grib2/tables/16/3.21.table b/eccodes/definitions.save/grib2/tables/16/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.21.table rename to eccodes/definitions.save/grib2/tables/16/3.21.table diff --git a/eccodes/definitions/grib2/tables/16/3.3.table b/eccodes/definitions.save/grib2/tables/16/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.3.table rename to eccodes/definitions.save/grib2/tables/16/3.3.table diff --git a/eccodes/definitions/grib2/tables/16/3.4.table b/eccodes/definitions.save/grib2/tables/16/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.4.table rename to eccodes/definitions.save/grib2/tables/16/3.4.table diff --git a/eccodes/definitions/grib2/tables/16/3.5.table b/eccodes/definitions.save/grib2/tables/16/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.5.table rename to eccodes/definitions.save/grib2/tables/16/3.5.table diff --git a/eccodes/definitions/grib2/tables/16/3.6.table b/eccodes/definitions.save/grib2/tables/16/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.6.table rename to eccodes/definitions.save/grib2/tables/16/3.6.table diff --git a/eccodes/definitions/grib2/tables/16/3.7.table b/eccodes/definitions.save/grib2/tables/16/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.7.table rename to eccodes/definitions.save/grib2/tables/16/3.7.table diff --git a/eccodes/definitions/grib2/tables/16/3.8.table b/eccodes/definitions.save/grib2/tables/16/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.8.table rename to eccodes/definitions.save/grib2/tables/16/3.8.table diff --git a/eccodes/definitions/grib2/tables/16/3.9.table b/eccodes/definitions.save/grib2/tables/16/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/3.9.table rename to eccodes/definitions.save/grib2/tables/16/3.9.table diff --git a/eccodes/definitions/grib2/tables/16/4.0.table b/eccodes/definitions.save/grib2/tables/16/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.0.table rename to eccodes/definitions.save/grib2/tables/16/4.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.0.table b/eccodes/definitions.save/grib2/tables/16/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.0.table rename to eccodes/definitions.save/grib2/tables/16/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.1.table b/eccodes/definitions.save/grib2/tables/16/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.1.table rename to eccodes/definitions.save/grib2/tables/16/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.10.table b/eccodes/definitions.save/grib2/tables/16/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.10.table rename to eccodes/definitions.save/grib2/tables/16/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.192.table b/eccodes/definitions.save/grib2/tables/16/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.192.table rename to eccodes/definitions.save/grib2/tables/16/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.2.table b/eccodes/definitions.save/grib2/tables/16/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.2.table rename to eccodes/definitions.save/grib2/tables/16/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/16/4.1.3.table b/eccodes/definitions.save/grib2/tables/16/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.1.3.table rename to eccodes/definitions.save/grib2/tables/16/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.10.table b/eccodes/definitions.save/grib2/tables/16/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.10.table rename to eccodes/definitions.save/grib2/tables/16/4.10.table diff --git a/eccodes/definitions/grib2/tables/16/4.11.table b/eccodes/definitions.save/grib2/tables/16/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.11.table rename to eccodes/definitions.save/grib2/tables/16/4.11.table diff --git a/eccodes/definitions/grib2/tables/16/4.12.table b/eccodes/definitions.save/grib2/tables/16/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.12.table rename to eccodes/definitions.save/grib2/tables/16/4.12.table diff --git a/eccodes/definitions/grib2/tables/16/4.13.table b/eccodes/definitions.save/grib2/tables/16/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.13.table rename to eccodes/definitions.save/grib2/tables/16/4.13.table diff --git a/eccodes/definitions/grib2/tables/16/4.14.table b/eccodes/definitions.save/grib2/tables/16/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.14.table rename to eccodes/definitions.save/grib2/tables/16/4.14.table diff --git a/eccodes/definitions/grib2/tables/16/4.15.table b/eccodes/definitions.save/grib2/tables/16/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.15.table rename to eccodes/definitions.save/grib2/tables/16/4.15.table diff --git a/eccodes/definitions/grib2/tables/16/4.192.table b/eccodes/definitions.save/grib2/tables/16/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.192.table rename to eccodes/definitions.save/grib2/tables/16/4.192.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/16/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/16/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/16/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/16/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/16/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/16/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/16/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/16/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/16/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/16/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/16/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/16/4.201.table b/eccodes/definitions.save/grib2/tables/16/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.201.table rename to eccodes/definitions.save/grib2/tables/16/4.201.table diff --git a/eccodes/definitions/grib2/tables/16/4.202.table b/eccodes/definitions.save/grib2/tables/16/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.202.table rename to eccodes/definitions.save/grib2/tables/16/4.202.table diff --git a/eccodes/definitions/grib2/tables/16/4.203.table b/eccodes/definitions.save/grib2/tables/16/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.203.table rename to eccodes/definitions.save/grib2/tables/16/4.203.table diff --git a/eccodes/definitions/grib2/tables/16/4.204.table b/eccodes/definitions.save/grib2/tables/16/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.204.table rename to eccodes/definitions.save/grib2/tables/16/4.204.table diff --git a/eccodes/definitions/grib2/tables/16/4.205.table b/eccodes/definitions.save/grib2/tables/16/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.205.table rename to eccodes/definitions.save/grib2/tables/16/4.205.table diff --git a/eccodes/definitions/grib2/tables/16/4.206.table b/eccodes/definitions.save/grib2/tables/16/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.206.table rename to eccodes/definitions.save/grib2/tables/16/4.206.table diff --git a/eccodes/definitions/grib2/tables/16/4.207.table b/eccodes/definitions.save/grib2/tables/16/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.207.table rename to eccodes/definitions.save/grib2/tables/16/4.207.table diff --git a/eccodes/definitions/grib2/tables/16/4.208.table b/eccodes/definitions.save/grib2/tables/16/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.208.table rename to eccodes/definitions.save/grib2/tables/16/4.208.table diff --git a/eccodes/definitions/grib2/tables/16/4.209.table b/eccodes/definitions.save/grib2/tables/16/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.209.table rename to eccodes/definitions.save/grib2/tables/16/4.209.table diff --git a/eccodes/definitions/grib2/tables/16/4.210.table b/eccodes/definitions.save/grib2/tables/16/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.210.table rename to eccodes/definitions.save/grib2/tables/16/4.210.table diff --git a/eccodes/definitions/grib2/tables/16/4.211.table b/eccodes/definitions.save/grib2/tables/16/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.211.table rename to eccodes/definitions.save/grib2/tables/16/4.211.table diff --git a/eccodes/definitions/grib2/tables/16/4.212.table b/eccodes/definitions.save/grib2/tables/16/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.212.table rename to eccodes/definitions.save/grib2/tables/16/4.212.table diff --git a/eccodes/definitions/grib2/tables/16/4.213.table b/eccodes/definitions.save/grib2/tables/16/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.213.table rename to eccodes/definitions.save/grib2/tables/16/4.213.table diff --git a/eccodes/definitions/grib2/tables/16/4.215.table b/eccodes/definitions.save/grib2/tables/16/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.215.table rename to eccodes/definitions.save/grib2/tables/16/4.215.table diff --git a/eccodes/definitions/grib2/tables/16/4.216.table b/eccodes/definitions.save/grib2/tables/16/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.216.table rename to eccodes/definitions.save/grib2/tables/16/4.216.table diff --git a/eccodes/definitions/grib2/tables/16/4.217.table b/eccodes/definitions.save/grib2/tables/16/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.217.table rename to eccodes/definitions.save/grib2/tables/16/4.217.table diff --git a/eccodes/definitions/grib2/tables/16/4.218.table b/eccodes/definitions.save/grib2/tables/16/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.218.table rename to eccodes/definitions.save/grib2/tables/16/4.218.table diff --git a/eccodes/definitions/grib2/tables/16/4.219.table b/eccodes/definitions.save/grib2/tables/16/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.219.table rename to eccodes/definitions.save/grib2/tables/16/4.219.table diff --git a/eccodes/definitions/grib2/tables/16/4.220.table b/eccodes/definitions.save/grib2/tables/16/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.220.table rename to eccodes/definitions.save/grib2/tables/16/4.220.table diff --git a/eccodes/definitions/grib2/tables/16/4.221.table b/eccodes/definitions.save/grib2/tables/16/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.221.table rename to eccodes/definitions.save/grib2/tables/16/4.221.table diff --git a/eccodes/definitions/grib2/tables/16/4.222.table b/eccodes/definitions.save/grib2/tables/16/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.222.table rename to eccodes/definitions.save/grib2/tables/16/4.222.table diff --git a/eccodes/definitions/grib2/tables/16/4.223.table b/eccodes/definitions.save/grib2/tables/16/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.223.table rename to eccodes/definitions.save/grib2/tables/16/4.223.table diff --git a/eccodes/definitions/grib2/tables/16/4.224.table b/eccodes/definitions.save/grib2/tables/16/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.224.table rename to eccodes/definitions.save/grib2/tables/16/4.224.table diff --git a/eccodes/definitions/grib2/tables/16/4.225.table b/eccodes/definitions.save/grib2/tables/16/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.225.table rename to eccodes/definitions.save/grib2/tables/16/4.225.table diff --git a/eccodes/definitions/grib2/tables/16/4.227.table b/eccodes/definitions.save/grib2/tables/16/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.227.table rename to eccodes/definitions.save/grib2/tables/16/4.227.table diff --git a/eccodes/definitions/grib2/tables/16/4.230.table b/eccodes/definitions.save/grib2/tables/16/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.230.table rename to eccodes/definitions.save/grib2/tables/16/4.230.table diff --git a/eccodes/definitions/grib2/tables/16/4.233.table b/eccodes/definitions.save/grib2/tables/16/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.233.table rename to eccodes/definitions.save/grib2/tables/16/4.233.table diff --git a/eccodes/definitions/grib2/tables/16/4.234.table b/eccodes/definitions.save/grib2/tables/16/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.234.table rename to eccodes/definitions.save/grib2/tables/16/4.234.table diff --git a/eccodes/definitions/grib2/tables/16/4.236.table b/eccodes/definitions.save/grib2/tables/16/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.236.table rename to eccodes/definitions.save/grib2/tables/16/4.236.table diff --git a/eccodes/definitions/grib2/tables/16/4.240.table b/eccodes/definitions.save/grib2/tables/16/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.240.table rename to eccodes/definitions.save/grib2/tables/16/4.240.table diff --git a/eccodes/definitions/grib2/tables/16/4.241.table b/eccodes/definitions.save/grib2/tables/16/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.241.table rename to eccodes/definitions.save/grib2/tables/16/4.241.table diff --git a/eccodes/definitions/grib2/tables/16/4.242.table b/eccodes/definitions.save/grib2/tables/16/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.242.table rename to eccodes/definitions.save/grib2/tables/16/4.242.table diff --git a/eccodes/definitions/grib2/tables/16/4.243.table b/eccodes/definitions.save/grib2/tables/16/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.243.table rename to eccodes/definitions.save/grib2/tables/16/4.243.table diff --git a/eccodes/definitions/grib2/tables/16/4.3.table b/eccodes/definitions.save/grib2/tables/16/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.3.table rename to eccodes/definitions.save/grib2/tables/16/4.3.table diff --git a/eccodes/definitions/grib2/tables/16/4.4.table b/eccodes/definitions.save/grib2/tables/16/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.4.table rename to eccodes/definitions.save/grib2/tables/16/4.4.table diff --git a/eccodes/definitions/grib2/tables/16/4.5.table b/eccodes/definitions.save/grib2/tables/16/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.5.table rename to eccodes/definitions.save/grib2/tables/16/4.5.table diff --git a/eccodes/definitions/grib2/tables/16/4.6.table b/eccodes/definitions.save/grib2/tables/16/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.6.table rename to eccodes/definitions.save/grib2/tables/16/4.6.table diff --git a/eccodes/definitions/grib2/tables/16/4.7.table b/eccodes/definitions.save/grib2/tables/16/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.7.table rename to eccodes/definitions.save/grib2/tables/16/4.7.table diff --git a/eccodes/definitions/grib2/tables/16/4.8.table b/eccodes/definitions.save/grib2/tables/16/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.8.table rename to eccodes/definitions.save/grib2/tables/16/4.8.table diff --git a/eccodes/definitions/grib2/tables/16/4.9.table b/eccodes/definitions.save/grib2/tables/16/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.9.table rename to eccodes/definitions.save/grib2/tables/16/4.9.table diff --git a/eccodes/definitions/grib2/tables/16/4.91.table b/eccodes/definitions.save/grib2/tables/16/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/4.91.table rename to eccodes/definitions.save/grib2/tables/16/4.91.table diff --git a/eccodes/definitions/grib2/tables/16/5.0.table b/eccodes/definitions.save/grib2/tables/16/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.0.table rename to eccodes/definitions.save/grib2/tables/16/5.0.table diff --git a/eccodes/definitions/grib2/tables/16/5.1.table b/eccodes/definitions.save/grib2/tables/16/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.1.table rename to eccodes/definitions.save/grib2/tables/16/5.1.table diff --git a/eccodes/definitions/grib2/tables/16/5.2.table b/eccodes/definitions.save/grib2/tables/16/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.2.table rename to eccodes/definitions.save/grib2/tables/16/5.2.table diff --git a/eccodes/definitions/grib2/tables/16/5.3.table b/eccodes/definitions.save/grib2/tables/16/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.3.table rename to eccodes/definitions.save/grib2/tables/16/5.3.table diff --git a/eccodes/definitions/grib2/tables/16/5.4.table b/eccodes/definitions.save/grib2/tables/16/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.4.table rename to eccodes/definitions.save/grib2/tables/16/5.4.table diff --git a/eccodes/definitions/grib2/tables/16/5.40.table b/eccodes/definitions.save/grib2/tables/16/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.40.table rename to eccodes/definitions.save/grib2/tables/16/5.40.table diff --git a/eccodes/definitions/grib2/tables/16/5.40000.table b/eccodes/definitions.save/grib2/tables/16/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.40000.table rename to eccodes/definitions.save/grib2/tables/16/5.40000.table diff --git a/eccodes/definitions/grib2/tables/16/5.5.table b/eccodes/definitions.save/grib2/tables/16/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.5.table rename to eccodes/definitions.save/grib2/tables/16/5.5.table diff --git a/eccodes/definitions/grib2/tables/16/5.50002.table b/eccodes/definitions.save/grib2/tables/16/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.50002.table rename to eccodes/definitions.save/grib2/tables/16/5.50002.table diff --git a/eccodes/definitions/grib2/tables/16/5.6.table b/eccodes/definitions.save/grib2/tables/16/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.6.table rename to eccodes/definitions.save/grib2/tables/16/5.6.table diff --git a/eccodes/definitions/grib2/tables/16/5.7.table b/eccodes/definitions.save/grib2/tables/16/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/5.7.table rename to eccodes/definitions.save/grib2/tables/16/5.7.table diff --git a/eccodes/definitions/grib2/tables/16/6.0.table b/eccodes/definitions.save/grib2/tables/16/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/6.0.table rename to eccodes/definitions.save/grib2/tables/16/6.0.table diff --git a/eccodes/definitions/grib2/tables/16/stepType.table b/eccodes/definitions.save/grib2/tables/16/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/16/stepType.table rename to eccodes/definitions.save/grib2/tables/16/stepType.table diff --git a/eccodes/definitions/grib2/tables/17/0.0.table b/eccodes/definitions.save/grib2/tables/17/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/0.0.table rename to eccodes/definitions.save/grib2/tables/17/0.0.table diff --git a/eccodes/definitions/grib2/tables/17/1.0.table b/eccodes/definitions.save/grib2/tables/17/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.0.table rename to eccodes/definitions.save/grib2/tables/17/1.0.table diff --git a/eccodes/definitions/grib2/tables/17/1.1.table b/eccodes/definitions.save/grib2/tables/17/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.1.table rename to eccodes/definitions.save/grib2/tables/17/1.1.table diff --git a/eccodes/definitions/grib2/tables/17/1.2.table b/eccodes/definitions.save/grib2/tables/17/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.2.table rename to eccodes/definitions.save/grib2/tables/17/1.2.table diff --git a/eccodes/definitions/grib2/tables/17/1.3.table b/eccodes/definitions.save/grib2/tables/17/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.3.table rename to eccodes/definitions.save/grib2/tables/17/1.3.table diff --git a/eccodes/definitions/grib2/tables/17/1.4.table b/eccodes/definitions.save/grib2/tables/17/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.4.table rename to eccodes/definitions.save/grib2/tables/17/1.4.table diff --git a/eccodes/definitions/grib2/tables/17/1.5.table b/eccodes/definitions.save/grib2/tables/17/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.5.table rename to eccodes/definitions.save/grib2/tables/17/1.5.table diff --git a/eccodes/definitions/grib2/tables/17/1.6.table b/eccodes/definitions.save/grib2/tables/17/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/1.6.table rename to eccodes/definitions.save/grib2/tables/17/1.6.table diff --git a/eccodes/definitions/grib2/tables/17/3.0.table b/eccodes/definitions.save/grib2/tables/17/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.0.table rename to eccodes/definitions.save/grib2/tables/17/3.0.table diff --git a/eccodes/definitions/grib2/tables/17/3.1.table b/eccodes/definitions.save/grib2/tables/17/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.1.table rename to eccodes/definitions.save/grib2/tables/17/3.1.table diff --git a/eccodes/definitions/grib2/tables/17/3.10.table b/eccodes/definitions.save/grib2/tables/17/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.10.table rename to eccodes/definitions.save/grib2/tables/17/3.10.table diff --git a/eccodes/definitions/grib2/tables/17/3.11.table b/eccodes/definitions.save/grib2/tables/17/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.11.table rename to eccodes/definitions.save/grib2/tables/17/3.11.table diff --git a/eccodes/definitions/grib2/tables/17/3.15.table b/eccodes/definitions.save/grib2/tables/17/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.15.table rename to eccodes/definitions.save/grib2/tables/17/3.15.table diff --git a/eccodes/definitions/grib2/tables/17/3.2.table b/eccodes/definitions.save/grib2/tables/17/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.2.table rename to eccodes/definitions.save/grib2/tables/17/3.2.table diff --git a/eccodes/definitions/grib2/tables/17/3.20.table b/eccodes/definitions.save/grib2/tables/17/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.20.table rename to eccodes/definitions.save/grib2/tables/17/3.20.table diff --git a/eccodes/definitions/grib2/tables/17/3.21.table b/eccodes/definitions.save/grib2/tables/17/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.21.table rename to eccodes/definitions.save/grib2/tables/17/3.21.table diff --git a/eccodes/definitions/grib2/tables/17/3.3.table b/eccodes/definitions.save/grib2/tables/17/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.3.table rename to eccodes/definitions.save/grib2/tables/17/3.3.table diff --git a/eccodes/definitions/grib2/tables/17/3.4.table b/eccodes/definitions.save/grib2/tables/17/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.4.table rename to eccodes/definitions.save/grib2/tables/17/3.4.table diff --git a/eccodes/definitions/grib2/tables/17/3.5.table b/eccodes/definitions.save/grib2/tables/17/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.5.table rename to eccodes/definitions.save/grib2/tables/17/3.5.table diff --git a/eccodes/definitions/grib2/tables/17/3.6.table b/eccodes/definitions.save/grib2/tables/17/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.6.table rename to eccodes/definitions.save/grib2/tables/17/3.6.table diff --git a/eccodes/definitions/grib2/tables/17/3.7.table b/eccodes/definitions.save/grib2/tables/17/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.7.table rename to eccodes/definitions.save/grib2/tables/17/3.7.table diff --git a/eccodes/definitions/grib2/tables/17/3.8.table b/eccodes/definitions.save/grib2/tables/17/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.8.table rename to eccodes/definitions.save/grib2/tables/17/3.8.table diff --git a/eccodes/definitions/grib2/tables/17/3.9.table b/eccodes/definitions.save/grib2/tables/17/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/3.9.table rename to eccodes/definitions.save/grib2/tables/17/3.9.table diff --git a/eccodes/definitions/grib2/tables/17/4.0.table b/eccodes/definitions.save/grib2/tables/17/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.0.table rename to eccodes/definitions.save/grib2/tables/17/4.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.0.table b/eccodes/definitions.save/grib2/tables/17/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.0.table rename to eccodes/definitions.save/grib2/tables/17/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.1.table b/eccodes/definitions.save/grib2/tables/17/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.1.table rename to eccodes/definitions.save/grib2/tables/17/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.10.table b/eccodes/definitions.save/grib2/tables/17/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.10.table rename to eccodes/definitions.save/grib2/tables/17/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.192.table b/eccodes/definitions.save/grib2/tables/17/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.192.table rename to eccodes/definitions.save/grib2/tables/17/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.2.table b/eccodes/definitions.save/grib2/tables/17/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.2.table rename to eccodes/definitions.save/grib2/tables/17/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/17/4.1.3.table b/eccodes/definitions.save/grib2/tables/17/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.1.3.table rename to eccodes/definitions.save/grib2/tables/17/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.10.table b/eccodes/definitions.save/grib2/tables/17/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.10.table rename to eccodes/definitions.save/grib2/tables/17/4.10.table diff --git a/eccodes/definitions/grib2/tables/17/4.11.table b/eccodes/definitions.save/grib2/tables/17/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.11.table rename to eccodes/definitions.save/grib2/tables/17/4.11.table diff --git a/eccodes/definitions/grib2/tables/17/4.12.table b/eccodes/definitions.save/grib2/tables/17/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.12.table rename to eccodes/definitions.save/grib2/tables/17/4.12.table diff --git a/eccodes/definitions/grib2/tables/17/4.13.table b/eccodes/definitions.save/grib2/tables/17/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.13.table rename to eccodes/definitions.save/grib2/tables/17/4.13.table diff --git a/eccodes/definitions/grib2/tables/17/4.14.table b/eccodes/definitions.save/grib2/tables/17/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.14.table rename to eccodes/definitions.save/grib2/tables/17/4.14.table diff --git a/eccodes/definitions/grib2/tables/17/4.15.table b/eccodes/definitions.save/grib2/tables/17/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.15.table rename to eccodes/definitions.save/grib2/tables/17/4.15.table diff --git a/eccodes/definitions/grib2/tables/17/4.192.table b/eccodes/definitions.save/grib2/tables/17/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.192.table rename to eccodes/definitions.save/grib2/tables/17/4.192.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/17/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/17/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/17/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/17/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/17/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/17/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/17/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/17/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/17/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/17/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/17/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/17/4.201.table b/eccodes/definitions.save/grib2/tables/17/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.201.table rename to eccodes/definitions.save/grib2/tables/17/4.201.table diff --git a/eccodes/definitions/grib2/tables/17/4.202.table b/eccodes/definitions.save/grib2/tables/17/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.202.table rename to eccodes/definitions.save/grib2/tables/17/4.202.table diff --git a/eccodes/definitions/grib2/tables/17/4.203.table b/eccodes/definitions.save/grib2/tables/17/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.203.table rename to eccodes/definitions.save/grib2/tables/17/4.203.table diff --git a/eccodes/definitions/grib2/tables/17/4.204.table b/eccodes/definitions.save/grib2/tables/17/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.204.table rename to eccodes/definitions.save/grib2/tables/17/4.204.table diff --git a/eccodes/definitions/grib2/tables/17/4.205.table b/eccodes/definitions.save/grib2/tables/17/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.205.table rename to eccodes/definitions.save/grib2/tables/17/4.205.table diff --git a/eccodes/definitions/grib2/tables/17/4.206.table b/eccodes/definitions.save/grib2/tables/17/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.206.table rename to eccodes/definitions.save/grib2/tables/17/4.206.table diff --git a/eccodes/definitions/grib2/tables/17/4.207.table b/eccodes/definitions.save/grib2/tables/17/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.207.table rename to eccodes/definitions.save/grib2/tables/17/4.207.table diff --git a/eccodes/definitions/grib2/tables/17/4.208.table b/eccodes/definitions.save/grib2/tables/17/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.208.table rename to eccodes/definitions.save/grib2/tables/17/4.208.table diff --git a/eccodes/definitions/grib2/tables/17/4.209.table b/eccodes/definitions.save/grib2/tables/17/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.209.table rename to eccodes/definitions.save/grib2/tables/17/4.209.table diff --git a/eccodes/definitions/grib2/tables/17/4.210.table b/eccodes/definitions.save/grib2/tables/17/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.210.table rename to eccodes/definitions.save/grib2/tables/17/4.210.table diff --git a/eccodes/definitions/grib2/tables/17/4.211.table b/eccodes/definitions.save/grib2/tables/17/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.211.table rename to eccodes/definitions.save/grib2/tables/17/4.211.table diff --git a/eccodes/definitions/grib2/tables/17/4.212.table b/eccodes/definitions.save/grib2/tables/17/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.212.table rename to eccodes/definitions.save/grib2/tables/17/4.212.table diff --git a/eccodes/definitions/grib2/tables/17/4.213.table b/eccodes/definitions.save/grib2/tables/17/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.213.table rename to eccodes/definitions.save/grib2/tables/17/4.213.table diff --git a/eccodes/definitions/grib2/tables/17/4.215.table b/eccodes/definitions.save/grib2/tables/17/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.215.table rename to eccodes/definitions.save/grib2/tables/17/4.215.table diff --git a/eccodes/definitions/grib2/tables/17/4.216.table b/eccodes/definitions.save/grib2/tables/17/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.216.table rename to eccodes/definitions.save/grib2/tables/17/4.216.table diff --git a/eccodes/definitions/grib2/tables/17/4.217.table b/eccodes/definitions.save/grib2/tables/17/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.217.table rename to eccodes/definitions.save/grib2/tables/17/4.217.table diff --git a/eccodes/definitions/grib2/tables/17/4.218.table b/eccodes/definitions.save/grib2/tables/17/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.218.table rename to eccodes/definitions.save/grib2/tables/17/4.218.table diff --git a/eccodes/definitions/grib2/tables/17/4.219.table b/eccodes/definitions.save/grib2/tables/17/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.219.table rename to eccodes/definitions.save/grib2/tables/17/4.219.table diff --git a/eccodes/definitions/grib2/tables/17/4.220.table b/eccodes/definitions.save/grib2/tables/17/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.220.table rename to eccodes/definitions.save/grib2/tables/17/4.220.table diff --git a/eccodes/definitions/grib2/tables/17/4.221.table b/eccodes/definitions.save/grib2/tables/17/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.221.table rename to eccodes/definitions.save/grib2/tables/17/4.221.table diff --git a/eccodes/definitions/grib2/tables/17/4.222.table b/eccodes/definitions.save/grib2/tables/17/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.222.table rename to eccodes/definitions.save/grib2/tables/17/4.222.table diff --git a/eccodes/definitions/grib2/tables/17/4.223.table b/eccodes/definitions.save/grib2/tables/17/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.223.table rename to eccodes/definitions.save/grib2/tables/17/4.223.table diff --git a/eccodes/definitions/grib2/tables/17/4.224.table b/eccodes/definitions.save/grib2/tables/17/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.224.table rename to eccodes/definitions.save/grib2/tables/17/4.224.table diff --git a/eccodes/definitions/grib2/tables/17/4.225.table b/eccodes/definitions.save/grib2/tables/17/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.225.table rename to eccodes/definitions.save/grib2/tables/17/4.225.table diff --git a/eccodes/definitions/grib2/tables/17/4.227.table b/eccodes/definitions.save/grib2/tables/17/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.227.table rename to eccodes/definitions.save/grib2/tables/17/4.227.table diff --git a/eccodes/definitions/grib2/tables/17/4.230.table b/eccodes/definitions.save/grib2/tables/17/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.230.table rename to eccodes/definitions.save/grib2/tables/17/4.230.table diff --git a/eccodes/definitions/grib2/tables/17/4.233.table b/eccodes/definitions.save/grib2/tables/17/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.233.table rename to eccodes/definitions.save/grib2/tables/17/4.233.table diff --git a/eccodes/definitions/grib2/tables/17/4.234.table b/eccodes/definitions.save/grib2/tables/17/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.234.table rename to eccodes/definitions.save/grib2/tables/17/4.234.table diff --git a/eccodes/definitions/grib2/tables/17/4.236.table b/eccodes/definitions.save/grib2/tables/17/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.236.table rename to eccodes/definitions.save/grib2/tables/17/4.236.table diff --git a/eccodes/definitions/grib2/tables/17/4.240.table b/eccodes/definitions.save/grib2/tables/17/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.240.table rename to eccodes/definitions.save/grib2/tables/17/4.240.table diff --git a/eccodes/definitions/grib2/tables/17/4.241.table b/eccodes/definitions.save/grib2/tables/17/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.241.table rename to eccodes/definitions.save/grib2/tables/17/4.241.table diff --git a/eccodes/definitions/grib2/tables/17/4.242.table b/eccodes/definitions.save/grib2/tables/17/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.242.table rename to eccodes/definitions.save/grib2/tables/17/4.242.table diff --git a/eccodes/definitions/grib2/tables/17/4.243.table b/eccodes/definitions.save/grib2/tables/17/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.243.table rename to eccodes/definitions.save/grib2/tables/17/4.243.table diff --git a/eccodes/definitions/grib2/tables/17/4.3.table b/eccodes/definitions.save/grib2/tables/17/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.3.table rename to eccodes/definitions.save/grib2/tables/17/4.3.table diff --git a/eccodes/definitions/grib2/tables/17/4.4.table b/eccodes/definitions.save/grib2/tables/17/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.4.table rename to eccodes/definitions.save/grib2/tables/17/4.4.table diff --git a/eccodes/definitions/grib2/tables/17/4.5.table b/eccodes/definitions.save/grib2/tables/17/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.5.table rename to eccodes/definitions.save/grib2/tables/17/4.5.table diff --git a/eccodes/definitions/grib2/tables/17/4.6.table b/eccodes/definitions.save/grib2/tables/17/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.6.table rename to eccodes/definitions.save/grib2/tables/17/4.6.table diff --git a/eccodes/definitions/grib2/tables/17/4.7.table b/eccodes/definitions.save/grib2/tables/17/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.7.table rename to eccodes/definitions.save/grib2/tables/17/4.7.table diff --git a/eccodes/definitions/grib2/tables/17/4.8.table b/eccodes/definitions.save/grib2/tables/17/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.8.table rename to eccodes/definitions.save/grib2/tables/17/4.8.table diff --git a/eccodes/definitions/grib2/tables/17/4.9.table b/eccodes/definitions.save/grib2/tables/17/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.9.table rename to eccodes/definitions.save/grib2/tables/17/4.9.table diff --git a/eccodes/definitions/grib2/tables/17/4.91.table b/eccodes/definitions.save/grib2/tables/17/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/4.91.table rename to eccodes/definitions.save/grib2/tables/17/4.91.table diff --git a/eccodes/definitions/grib2/tables/17/5.0.table b/eccodes/definitions.save/grib2/tables/17/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.0.table rename to eccodes/definitions.save/grib2/tables/17/5.0.table diff --git a/eccodes/definitions/grib2/tables/17/5.1.table b/eccodes/definitions.save/grib2/tables/17/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.1.table rename to eccodes/definitions.save/grib2/tables/17/5.1.table diff --git a/eccodes/definitions/grib2/tables/17/5.2.table b/eccodes/definitions.save/grib2/tables/17/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.2.table rename to eccodes/definitions.save/grib2/tables/17/5.2.table diff --git a/eccodes/definitions/grib2/tables/17/5.3.table b/eccodes/definitions.save/grib2/tables/17/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.3.table rename to eccodes/definitions.save/grib2/tables/17/5.3.table diff --git a/eccodes/definitions/grib2/tables/17/5.4.table b/eccodes/definitions.save/grib2/tables/17/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.4.table rename to eccodes/definitions.save/grib2/tables/17/5.4.table diff --git a/eccodes/definitions/grib2/tables/17/5.40.table b/eccodes/definitions.save/grib2/tables/17/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.40.table rename to eccodes/definitions.save/grib2/tables/17/5.40.table diff --git a/eccodes/definitions/grib2/tables/17/5.40000.table b/eccodes/definitions.save/grib2/tables/17/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.40000.table rename to eccodes/definitions.save/grib2/tables/17/5.40000.table diff --git a/eccodes/definitions/grib2/tables/17/5.5.table b/eccodes/definitions.save/grib2/tables/17/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.5.table rename to eccodes/definitions.save/grib2/tables/17/5.5.table diff --git a/eccodes/definitions/grib2/tables/17/5.50002.table b/eccodes/definitions.save/grib2/tables/17/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.50002.table rename to eccodes/definitions.save/grib2/tables/17/5.50002.table diff --git a/eccodes/definitions/grib2/tables/17/5.6.table b/eccodes/definitions.save/grib2/tables/17/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.6.table rename to eccodes/definitions.save/grib2/tables/17/5.6.table diff --git a/eccodes/definitions/grib2/tables/17/5.7.table b/eccodes/definitions.save/grib2/tables/17/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/5.7.table rename to eccodes/definitions.save/grib2/tables/17/5.7.table diff --git a/eccodes/definitions/grib2/tables/17/6.0.table b/eccodes/definitions.save/grib2/tables/17/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/6.0.table rename to eccodes/definitions.save/grib2/tables/17/6.0.table diff --git a/eccodes/definitions/grib2/tables/17/stepType.table b/eccodes/definitions.save/grib2/tables/17/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/17/stepType.table rename to eccodes/definitions.save/grib2/tables/17/stepType.table diff --git a/eccodes/definitions/grib2/tables/18/0.0.table b/eccodes/definitions.save/grib2/tables/18/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/0.0.table rename to eccodes/definitions.save/grib2/tables/18/0.0.table diff --git a/eccodes/definitions/grib2/tables/18/1.0.table b/eccodes/definitions.save/grib2/tables/18/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.0.table rename to eccodes/definitions.save/grib2/tables/18/1.0.table diff --git a/eccodes/definitions/grib2/tables/18/1.1.table b/eccodes/definitions.save/grib2/tables/18/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.1.table rename to eccodes/definitions.save/grib2/tables/18/1.1.table diff --git a/eccodes/definitions/grib2/tables/18/1.2.table b/eccodes/definitions.save/grib2/tables/18/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.2.table rename to eccodes/definitions.save/grib2/tables/18/1.2.table diff --git a/eccodes/definitions/grib2/tables/18/1.3.table b/eccodes/definitions.save/grib2/tables/18/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.3.table rename to eccodes/definitions.save/grib2/tables/18/1.3.table diff --git a/eccodes/definitions/grib2/tables/18/1.4.table b/eccodes/definitions.save/grib2/tables/18/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.4.table rename to eccodes/definitions.save/grib2/tables/18/1.4.table diff --git a/eccodes/definitions/grib2/tables/18/1.5.table b/eccodes/definitions.save/grib2/tables/18/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.5.table rename to eccodes/definitions.save/grib2/tables/18/1.5.table diff --git a/eccodes/definitions/grib2/tables/18/1.6.table b/eccodes/definitions.save/grib2/tables/18/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/1.6.table rename to eccodes/definitions.save/grib2/tables/18/1.6.table diff --git a/eccodes/definitions/grib2/tables/18/3.0.table b/eccodes/definitions.save/grib2/tables/18/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.0.table rename to eccodes/definitions.save/grib2/tables/18/3.0.table diff --git a/eccodes/definitions/grib2/tables/18/3.1.table b/eccodes/definitions.save/grib2/tables/18/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.1.table rename to eccodes/definitions.save/grib2/tables/18/3.1.table diff --git a/eccodes/definitions/grib2/tables/18/3.10.table b/eccodes/definitions.save/grib2/tables/18/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.10.table rename to eccodes/definitions.save/grib2/tables/18/3.10.table diff --git a/eccodes/definitions/grib2/tables/18/3.11.table b/eccodes/definitions.save/grib2/tables/18/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.11.table rename to eccodes/definitions.save/grib2/tables/18/3.11.table diff --git a/eccodes/definitions/grib2/tables/18/3.15.table b/eccodes/definitions.save/grib2/tables/18/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.15.table rename to eccodes/definitions.save/grib2/tables/18/3.15.table diff --git a/eccodes/definitions/grib2/tables/18/3.2.table b/eccodes/definitions.save/grib2/tables/18/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.2.table rename to eccodes/definitions.save/grib2/tables/18/3.2.table diff --git a/eccodes/definitions/grib2/tables/18/3.20.table b/eccodes/definitions.save/grib2/tables/18/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.20.table rename to eccodes/definitions.save/grib2/tables/18/3.20.table diff --git a/eccodes/definitions/grib2/tables/18/3.21.table b/eccodes/definitions.save/grib2/tables/18/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.21.table rename to eccodes/definitions.save/grib2/tables/18/3.21.table diff --git a/eccodes/definitions/grib2/tables/18/3.3.table b/eccodes/definitions.save/grib2/tables/18/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.3.table rename to eccodes/definitions.save/grib2/tables/18/3.3.table diff --git a/eccodes/definitions/grib2/tables/18/3.4.table b/eccodes/definitions.save/grib2/tables/18/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.4.table rename to eccodes/definitions.save/grib2/tables/18/3.4.table diff --git a/eccodes/definitions/grib2/tables/18/3.5.table b/eccodes/definitions.save/grib2/tables/18/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.5.table rename to eccodes/definitions.save/grib2/tables/18/3.5.table diff --git a/eccodes/definitions/grib2/tables/18/3.6.table b/eccodes/definitions.save/grib2/tables/18/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.6.table rename to eccodes/definitions.save/grib2/tables/18/3.6.table diff --git a/eccodes/definitions/grib2/tables/18/3.7.table b/eccodes/definitions.save/grib2/tables/18/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.7.table rename to eccodes/definitions.save/grib2/tables/18/3.7.table diff --git a/eccodes/definitions/grib2/tables/18/3.8.table b/eccodes/definitions.save/grib2/tables/18/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.8.table rename to eccodes/definitions.save/grib2/tables/18/3.8.table diff --git a/eccodes/definitions/grib2/tables/18/3.9.table b/eccodes/definitions.save/grib2/tables/18/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/3.9.table rename to eccodes/definitions.save/grib2/tables/18/3.9.table diff --git a/eccodes/definitions/grib2/tables/18/4.0.table b/eccodes/definitions.save/grib2/tables/18/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.0.table rename to eccodes/definitions.save/grib2/tables/18/4.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.0.table b/eccodes/definitions.save/grib2/tables/18/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.0.table rename to eccodes/definitions.save/grib2/tables/18/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.1.table b/eccodes/definitions.save/grib2/tables/18/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.1.table rename to eccodes/definitions.save/grib2/tables/18/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.10.table b/eccodes/definitions.save/grib2/tables/18/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.10.table rename to eccodes/definitions.save/grib2/tables/18/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.192.table b/eccodes/definitions.save/grib2/tables/18/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.192.table rename to eccodes/definitions.save/grib2/tables/18/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.2.table b/eccodes/definitions.save/grib2/tables/18/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.2.table rename to eccodes/definitions.save/grib2/tables/18/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/18/4.1.3.table b/eccodes/definitions.save/grib2/tables/18/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.1.3.table rename to eccodes/definitions.save/grib2/tables/18/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.10.table b/eccodes/definitions.save/grib2/tables/18/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.10.table rename to eccodes/definitions.save/grib2/tables/18/4.10.table diff --git a/eccodes/definitions/grib2/tables/18/4.11.table b/eccodes/definitions.save/grib2/tables/18/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.11.table rename to eccodes/definitions.save/grib2/tables/18/4.11.table diff --git a/eccodes/definitions/grib2/tables/18/4.12.table b/eccodes/definitions.save/grib2/tables/18/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.12.table rename to eccodes/definitions.save/grib2/tables/18/4.12.table diff --git a/eccodes/definitions/grib2/tables/18/4.13.table b/eccodes/definitions.save/grib2/tables/18/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.13.table rename to eccodes/definitions.save/grib2/tables/18/4.13.table diff --git a/eccodes/definitions/grib2/tables/18/4.14.table b/eccodes/definitions.save/grib2/tables/18/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.14.table rename to eccodes/definitions.save/grib2/tables/18/4.14.table diff --git a/eccodes/definitions/grib2/tables/18/4.15.table b/eccodes/definitions.save/grib2/tables/18/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.15.table rename to eccodes/definitions.save/grib2/tables/18/4.15.table diff --git a/eccodes/definitions/grib2/tables/18/4.192.table b/eccodes/definitions.save/grib2/tables/18/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.192.table rename to eccodes/definitions.save/grib2/tables/18/4.192.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/18/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/18/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/18/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/18/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/18/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/18/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/18/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/18/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/18/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/18/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/18/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/18/4.201.table b/eccodes/definitions.save/grib2/tables/18/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.201.table rename to eccodes/definitions.save/grib2/tables/18/4.201.table diff --git a/eccodes/definitions/grib2/tables/18/4.202.table b/eccodes/definitions.save/grib2/tables/18/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.202.table rename to eccodes/definitions.save/grib2/tables/18/4.202.table diff --git a/eccodes/definitions/grib2/tables/18/4.203.table b/eccodes/definitions.save/grib2/tables/18/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.203.table rename to eccodes/definitions.save/grib2/tables/18/4.203.table diff --git a/eccodes/definitions/grib2/tables/18/4.204.table b/eccodes/definitions.save/grib2/tables/18/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.204.table rename to eccodes/definitions.save/grib2/tables/18/4.204.table diff --git a/eccodes/definitions/grib2/tables/18/4.205.table b/eccodes/definitions.save/grib2/tables/18/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.205.table rename to eccodes/definitions.save/grib2/tables/18/4.205.table diff --git a/eccodes/definitions/grib2/tables/18/4.206.table b/eccodes/definitions.save/grib2/tables/18/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.206.table rename to eccodes/definitions.save/grib2/tables/18/4.206.table diff --git a/eccodes/definitions/grib2/tables/18/4.207.table b/eccodes/definitions.save/grib2/tables/18/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.207.table rename to eccodes/definitions.save/grib2/tables/18/4.207.table diff --git a/eccodes/definitions/grib2/tables/18/4.208.table b/eccodes/definitions.save/grib2/tables/18/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.208.table rename to eccodes/definitions.save/grib2/tables/18/4.208.table diff --git a/eccodes/definitions/grib2/tables/18/4.209.table b/eccodes/definitions.save/grib2/tables/18/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.209.table rename to eccodes/definitions.save/grib2/tables/18/4.209.table diff --git a/eccodes/definitions/grib2/tables/18/4.210.table b/eccodes/definitions.save/grib2/tables/18/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.210.table rename to eccodes/definitions.save/grib2/tables/18/4.210.table diff --git a/eccodes/definitions/grib2/tables/18/4.211.table b/eccodes/definitions.save/grib2/tables/18/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.211.table rename to eccodes/definitions.save/grib2/tables/18/4.211.table diff --git a/eccodes/definitions/grib2/tables/18/4.212.table b/eccodes/definitions.save/grib2/tables/18/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.212.table rename to eccodes/definitions.save/grib2/tables/18/4.212.table diff --git a/eccodes/definitions/grib2/tables/18/4.213.table b/eccodes/definitions.save/grib2/tables/18/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.213.table rename to eccodes/definitions.save/grib2/tables/18/4.213.table diff --git a/eccodes/definitions/grib2/tables/18/4.215.table b/eccodes/definitions.save/grib2/tables/18/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.215.table rename to eccodes/definitions.save/grib2/tables/18/4.215.table diff --git a/eccodes/definitions/grib2/tables/18/4.216.table b/eccodes/definitions.save/grib2/tables/18/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.216.table rename to eccodes/definitions.save/grib2/tables/18/4.216.table diff --git a/eccodes/definitions/grib2/tables/18/4.217.table b/eccodes/definitions.save/grib2/tables/18/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.217.table rename to eccodes/definitions.save/grib2/tables/18/4.217.table diff --git a/eccodes/definitions/grib2/tables/18/4.218.table b/eccodes/definitions.save/grib2/tables/18/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.218.table rename to eccodes/definitions.save/grib2/tables/18/4.218.table diff --git a/eccodes/definitions/grib2/tables/18/4.219.table b/eccodes/definitions.save/grib2/tables/18/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.219.table rename to eccodes/definitions.save/grib2/tables/18/4.219.table diff --git a/eccodes/definitions/grib2/tables/18/4.220.table b/eccodes/definitions.save/grib2/tables/18/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.220.table rename to eccodes/definitions.save/grib2/tables/18/4.220.table diff --git a/eccodes/definitions/grib2/tables/18/4.221.table b/eccodes/definitions.save/grib2/tables/18/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.221.table rename to eccodes/definitions.save/grib2/tables/18/4.221.table diff --git a/eccodes/definitions/grib2/tables/18/4.222.table b/eccodes/definitions.save/grib2/tables/18/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.222.table rename to eccodes/definitions.save/grib2/tables/18/4.222.table diff --git a/eccodes/definitions/grib2/tables/18/4.223.table b/eccodes/definitions.save/grib2/tables/18/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.223.table rename to eccodes/definitions.save/grib2/tables/18/4.223.table diff --git a/eccodes/definitions/grib2/tables/18/4.224.table b/eccodes/definitions.save/grib2/tables/18/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.224.table rename to eccodes/definitions.save/grib2/tables/18/4.224.table diff --git a/eccodes/definitions/grib2/tables/18/4.225.table b/eccodes/definitions.save/grib2/tables/18/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.225.table rename to eccodes/definitions.save/grib2/tables/18/4.225.table diff --git a/eccodes/definitions/grib2/tables/18/4.227.table b/eccodes/definitions.save/grib2/tables/18/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.227.table rename to eccodes/definitions.save/grib2/tables/18/4.227.table diff --git a/eccodes/definitions/grib2/tables/18/4.230.table b/eccodes/definitions.save/grib2/tables/18/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.230.table rename to eccodes/definitions.save/grib2/tables/18/4.230.table diff --git a/eccodes/definitions/grib2/tables/18/4.233.table b/eccodes/definitions.save/grib2/tables/18/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.233.table rename to eccodes/definitions.save/grib2/tables/18/4.233.table diff --git a/eccodes/definitions/grib2/tables/18/4.234.table b/eccodes/definitions.save/grib2/tables/18/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.234.table rename to eccodes/definitions.save/grib2/tables/18/4.234.table diff --git a/eccodes/definitions/grib2/tables/18/4.236.table b/eccodes/definitions.save/grib2/tables/18/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.236.table rename to eccodes/definitions.save/grib2/tables/18/4.236.table diff --git a/eccodes/definitions/grib2/tables/18/4.240.table b/eccodes/definitions.save/grib2/tables/18/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.240.table rename to eccodes/definitions.save/grib2/tables/18/4.240.table diff --git a/eccodes/definitions/grib2/tables/18/4.241.table b/eccodes/definitions.save/grib2/tables/18/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.241.table rename to eccodes/definitions.save/grib2/tables/18/4.241.table diff --git a/eccodes/definitions/grib2/tables/18/4.242.table b/eccodes/definitions.save/grib2/tables/18/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.242.table rename to eccodes/definitions.save/grib2/tables/18/4.242.table diff --git a/eccodes/definitions/grib2/tables/18/4.243.table b/eccodes/definitions.save/grib2/tables/18/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.243.table rename to eccodes/definitions.save/grib2/tables/18/4.243.table diff --git a/eccodes/definitions/grib2/tables/18/4.3.table b/eccodes/definitions.save/grib2/tables/18/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.3.table rename to eccodes/definitions.save/grib2/tables/18/4.3.table diff --git a/eccodes/definitions/grib2/tables/18/4.4.table b/eccodes/definitions.save/grib2/tables/18/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.4.table rename to eccodes/definitions.save/grib2/tables/18/4.4.table diff --git a/eccodes/definitions/grib2/tables/18/4.5.table b/eccodes/definitions.save/grib2/tables/18/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.5.table rename to eccodes/definitions.save/grib2/tables/18/4.5.table diff --git a/eccodes/definitions/grib2/tables/18/4.6.table b/eccodes/definitions.save/grib2/tables/18/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.6.table rename to eccodes/definitions.save/grib2/tables/18/4.6.table diff --git a/eccodes/definitions/grib2/tables/18/4.7.table b/eccodes/definitions.save/grib2/tables/18/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.7.table rename to eccodes/definitions.save/grib2/tables/18/4.7.table diff --git a/eccodes/definitions/grib2/tables/18/4.8.table b/eccodes/definitions.save/grib2/tables/18/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.8.table rename to eccodes/definitions.save/grib2/tables/18/4.8.table diff --git a/eccodes/definitions/grib2/tables/18/4.9.table b/eccodes/definitions.save/grib2/tables/18/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.9.table rename to eccodes/definitions.save/grib2/tables/18/4.9.table diff --git a/eccodes/definitions/grib2/tables/18/4.91.table b/eccodes/definitions.save/grib2/tables/18/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/4.91.table rename to eccodes/definitions.save/grib2/tables/18/4.91.table diff --git a/eccodes/definitions/grib2/tables/18/5.0.table b/eccodes/definitions.save/grib2/tables/18/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.0.table rename to eccodes/definitions.save/grib2/tables/18/5.0.table diff --git a/eccodes/definitions/grib2/tables/18/5.1.table b/eccodes/definitions.save/grib2/tables/18/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.1.table rename to eccodes/definitions.save/grib2/tables/18/5.1.table diff --git a/eccodes/definitions/grib2/tables/18/5.2.table b/eccodes/definitions.save/grib2/tables/18/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.2.table rename to eccodes/definitions.save/grib2/tables/18/5.2.table diff --git a/eccodes/definitions/grib2/tables/18/5.3.table b/eccodes/definitions.save/grib2/tables/18/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.3.table rename to eccodes/definitions.save/grib2/tables/18/5.3.table diff --git a/eccodes/definitions/grib2/tables/18/5.4.table b/eccodes/definitions.save/grib2/tables/18/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.4.table rename to eccodes/definitions.save/grib2/tables/18/5.4.table diff --git a/eccodes/definitions/grib2/tables/18/5.40.table b/eccodes/definitions.save/grib2/tables/18/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.40.table rename to eccodes/definitions.save/grib2/tables/18/5.40.table diff --git a/eccodes/definitions/grib2/tables/18/5.40000.table b/eccodes/definitions.save/grib2/tables/18/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.40000.table rename to eccodes/definitions.save/grib2/tables/18/5.40000.table diff --git a/eccodes/definitions/grib2/tables/18/5.5.table b/eccodes/definitions.save/grib2/tables/18/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.5.table rename to eccodes/definitions.save/grib2/tables/18/5.5.table diff --git a/eccodes/definitions/grib2/tables/18/5.50002.table b/eccodes/definitions.save/grib2/tables/18/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.50002.table rename to eccodes/definitions.save/grib2/tables/18/5.50002.table diff --git a/eccodes/definitions/grib2/tables/18/5.6.table b/eccodes/definitions.save/grib2/tables/18/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.6.table rename to eccodes/definitions.save/grib2/tables/18/5.6.table diff --git a/eccodes/definitions/grib2/tables/18/5.7.table b/eccodes/definitions.save/grib2/tables/18/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/5.7.table rename to eccodes/definitions.save/grib2/tables/18/5.7.table diff --git a/eccodes/definitions/grib2/tables/18/6.0.table b/eccodes/definitions.save/grib2/tables/18/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/6.0.table rename to eccodes/definitions.save/grib2/tables/18/6.0.table diff --git a/eccodes/definitions/grib2/tables/18/stepType.table b/eccodes/definitions.save/grib2/tables/18/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/18/stepType.table rename to eccodes/definitions.save/grib2/tables/18/stepType.table diff --git a/eccodes/definitions/grib2/tables/19/0.0.table b/eccodes/definitions.save/grib2/tables/19/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/0.0.table rename to eccodes/definitions.save/grib2/tables/19/0.0.table diff --git a/eccodes/definitions/grib2/tables/19/1.0.table b/eccodes/definitions.save/grib2/tables/19/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.0.table rename to eccodes/definitions.save/grib2/tables/19/1.0.table diff --git a/eccodes/definitions/grib2/tables/19/1.1.table b/eccodes/definitions.save/grib2/tables/19/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.1.table rename to eccodes/definitions.save/grib2/tables/19/1.1.table diff --git a/eccodes/definitions/grib2/tables/19/1.2.table b/eccodes/definitions.save/grib2/tables/19/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.2.table rename to eccodes/definitions.save/grib2/tables/19/1.2.table diff --git a/eccodes/definitions/grib2/tables/19/1.3.table b/eccodes/definitions.save/grib2/tables/19/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.3.table rename to eccodes/definitions.save/grib2/tables/19/1.3.table diff --git a/eccodes/definitions/grib2/tables/19/1.4.table b/eccodes/definitions.save/grib2/tables/19/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.4.table rename to eccodes/definitions.save/grib2/tables/19/1.4.table diff --git a/eccodes/definitions/grib2/tables/19/1.5.table b/eccodes/definitions.save/grib2/tables/19/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.5.table rename to eccodes/definitions.save/grib2/tables/19/1.5.table diff --git a/eccodes/definitions/grib2/tables/19/1.6.table b/eccodes/definitions.save/grib2/tables/19/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/1.6.table rename to eccodes/definitions.save/grib2/tables/19/1.6.table diff --git a/eccodes/definitions/grib2/tables/19/3.0.table b/eccodes/definitions.save/grib2/tables/19/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.0.table rename to eccodes/definitions.save/grib2/tables/19/3.0.table diff --git a/eccodes/definitions/grib2/tables/19/3.1.table b/eccodes/definitions.save/grib2/tables/19/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.1.table rename to eccodes/definitions.save/grib2/tables/19/3.1.table diff --git a/eccodes/definitions/grib2/tables/19/3.10.table b/eccodes/definitions.save/grib2/tables/19/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.10.table rename to eccodes/definitions.save/grib2/tables/19/3.10.table diff --git a/eccodes/definitions/grib2/tables/19/3.11.table b/eccodes/definitions.save/grib2/tables/19/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.11.table rename to eccodes/definitions.save/grib2/tables/19/3.11.table diff --git a/eccodes/definitions/grib2/tables/19/3.15.table b/eccodes/definitions.save/grib2/tables/19/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.15.table rename to eccodes/definitions.save/grib2/tables/19/3.15.table diff --git a/eccodes/definitions/grib2/tables/19/3.2.table b/eccodes/definitions.save/grib2/tables/19/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.2.table rename to eccodes/definitions.save/grib2/tables/19/3.2.table diff --git a/eccodes/definitions/grib2/tables/19/3.20.table b/eccodes/definitions.save/grib2/tables/19/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.20.table rename to eccodes/definitions.save/grib2/tables/19/3.20.table diff --git a/eccodes/definitions/grib2/tables/19/3.21.table b/eccodes/definitions.save/grib2/tables/19/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.21.table rename to eccodes/definitions.save/grib2/tables/19/3.21.table diff --git a/eccodes/definitions/grib2/tables/19/3.3.table b/eccodes/definitions.save/grib2/tables/19/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.3.table rename to eccodes/definitions.save/grib2/tables/19/3.3.table diff --git a/eccodes/definitions/grib2/tables/19/3.4.table b/eccodes/definitions.save/grib2/tables/19/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.4.table rename to eccodes/definitions.save/grib2/tables/19/3.4.table diff --git a/eccodes/definitions/grib2/tables/19/3.5.table b/eccodes/definitions.save/grib2/tables/19/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.5.table rename to eccodes/definitions.save/grib2/tables/19/3.5.table diff --git a/eccodes/definitions/grib2/tables/19/3.6.table b/eccodes/definitions.save/grib2/tables/19/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.6.table rename to eccodes/definitions.save/grib2/tables/19/3.6.table diff --git a/eccodes/definitions/grib2/tables/19/3.7.table b/eccodes/definitions.save/grib2/tables/19/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.7.table rename to eccodes/definitions.save/grib2/tables/19/3.7.table diff --git a/eccodes/definitions/grib2/tables/19/3.8.table b/eccodes/definitions.save/grib2/tables/19/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.8.table rename to eccodes/definitions.save/grib2/tables/19/3.8.table diff --git a/eccodes/definitions/grib2/tables/19/3.9.table b/eccodes/definitions.save/grib2/tables/19/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/3.9.table rename to eccodes/definitions.save/grib2/tables/19/3.9.table diff --git a/eccodes/definitions/grib2/tables/19/4.0.table b/eccodes/definitions.save/grib2/tables/19/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.0.table rename to eccodes/definitions.save/grib2/tables/19/4.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.0.table b/eccodes/definitions.save/grib2/tables/19/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.0.table rename to eccodes/definitions.save/grib2/tables/19/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.1.table b/eccodes/definitions.save/grib2/tables/19/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.1.table rename to eccodes/definitions.save/grib2/tables/19/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.10.table b/eccodes/definitions.save/grib2/tables/19/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.10.table rename to eccodes/definitions.save/grib2/tables/19/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.192.table b/eccodes/definitions.save/grib2/tables/19/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.192.table rename to eccodes/definitions.save/grib2/tables/19/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.2.table b/eccodes/definitions.save/grib2/tables/19/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.2.table rename to eccodes/definitions.save/grib2/tables/19/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/19/4.1.3.table b/eccodes/definitions.save/grib2/tables/19/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.1.3.table rename to eccodes/definitions.save/grib2/tables/19/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.10.table b/eccodes/definitions.save/grib2/tables/19/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.10.table rename to eccodes/definitions.save/grib2/tables/19/4.10.table diff --git a/eccodes/definitions/grib2/tables/19/4.11.table b/eccodes/definitions.save/grib2/tables/19/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.11.table rename to eccodes/definitions.save/grib2/tables/19/4.11.table diff --git a/eccodes/definitions/grib2/tables/19/4.12.table b/eccodes/definitions.save/grib2/tables/19/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.12.table rename to eccodes/definitions.save/grib2/tables/19/4.12.table diff --git a/eccodes/definitions/grib2/tables/19/4.13.table b/eccodes/definitions.save/grib2/tables/19/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.13.table rename to eccodes/definitions.save/grib2/tables/19/4.13.table diff --git a/eccodes/definitions/grib2/tables/19/4.14.table b/eccodes/definitions.save/grib2/tables/19/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.14.table rename to eccodes/definitions.save/grib2/tables/19/4.14.table diff --git a/eccodes/definitions/grib2/tables/19/4.15.table b/eccodes/definitions.save/grib2/tables/19/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.15.table rename to eccodes/definitions.save/grib2/tables/19/4.15.table diff --git a/eccodes/definitions/grib2/tables/19/4.192.table b/eccodes/definitions.save/grib2/tables/19/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.192.table rename to eccodes/definitions.save/grib2/tables/19/4.192.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/19/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/19/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/19/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/19/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/19/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/19/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/19/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/19/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/19/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/19/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/19/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/19/4.201.table b/eccodes/definitions.save/grib2/tables/19/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.201.table rename to eccodes/definitions.save/grib2/tables/19/4.201.table diff --git a/eccodes/definitions/grib2/tables/19/4.202.table b/eccodes/definitions.save/grib2/tables/19/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.202.table rename to eccodes/definitions.save/grib2/tables/19/4.202.table diff --git a/eccodes/definitions/grib2/tables/19/4.203.table b/eccodes/definitions.save/grib2/tables/19/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.203.table rename to eccodes/definitions.save/grib2/tables/19/4.203.table diff --git a/eccodes/definitions/grib2/tables/19/4.204.table b/eccodes/definitions.save/grib2/tables/19/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.204.table rename to eccodes/definitions.save/grib2/tables/19/4.204.table diff --git a/eccodes/definitions/grib2/tables/19/4.205.table b/eccodes/definitions.save/grib2/tables/19/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.205.table rename to eccodes/definitions.save/grib2/tables/19/4.205.table diff --git a/eccodes/definitions/grib2/tables/19/4.206.table b/eccodes/definitions.save/grib2/tables/19/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.206.table rename to eccodes/definitions.save/grib2/tables/19/4.206.table diff --git a/eccodes/definitions/grib2/tables/19/4.207.table b/eccodes/definitions.save/grib2/tables/19/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.207.table rename to eccodes/definitions.save/grib2/tables/19/4.207.table diff --git a/eccodes/definitions/grib2/tables/19/4.208.table b/eccodes/definitions.save/grib2/tables/19/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.208.table rename to eccodes/definitions.save/grib2/tables/19/4.208.table diff --git a/eccodes/definitions/grib2/tables/19/4.209.table b/eccodes/definitions.save/grib2/tables/19/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.209.table rename to eccodes/definitions.save/grib2/tables/19/4.209.table diff --git a/eccodes/definitions/grib2/tables/19/4.210.table b/eccodes/definitions.save/grib2/tables/19/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.210.table rename to eccodes/definitions.save/grib2/tables/19/4.210.table diff --git a/eccodes/definitions/grib2/tables/19/4.211.table b/eccodes/definitions.save/grib2/tables/19/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.211.table rename to eccodes/definitions.save/grib2/tables/19/4.211.table diff --git a/eccodes/definitions/grib2/tables/19/4.212.table b/eccodes/definitions.save/grib2/tables/19/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.212.table rename to eccodes/definitions.save/grib2/tables/19/4.212.table diff --git a/eccodes/definitions/grib2/tables/19/4.213.table b/eccodes/definitions.save/grib2/tables/19/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.213.table rename to eccodes/definitions.save/grib2/tables/19/4.213.table diff --git a/eccodes/definitions/grib2/tables/19/4.215.table b/eccodes/definitions.save/grib2/tables/19/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.215.table rename to eccodes/definitions.save/grib2/tables/19/4.215.table diff --git a/eccodes/definitions/grib2/tables/19/4.216.table b/eccodes/definitions.save/grib2/tables/19/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.216.table rename to eccodes/definitions.save/grib2/tables/19/4.216.table diff --git a/eccodes/definitions/grib2/tables/19/4.217.table b/eccodes/definitions.save/grib2/tables/19/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.217.table rename to eccodes/definitions.save/grib2/tables/19/4.217.table diff --git a/eccodes/definitions/grib2/tables/19/4.218.table b/eccodes/definitions.save/grib2/tables/19/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.218.table rename to eccodes/definitions.save/grib2/tables/19/4.218.table diff --git a/eccodes/definitions/grib2/tables/19/4.219.table b/eccodes/definitions.save/grib2/tables/19/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.219.table rename to eccodes/definitions.save/grib2/tables/19/4.219.table diff --git a/eccodes/definitions/grib2/tables/19/4.220.table b/eccodes/definitions.save/grib2/tables/19/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.220.table rename to eccodes/definitions.save/grib2/tables/19/4.220.table diff --git a/eccodes/definitions/grib2/tables/19/4.221.table b/eccodes/definitions.save/grib2/tables/19/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.221.table rename to eccodes/definitions.save/grib2/tables/19/4.221.table diff --git a/eccodes/definitions/grib2/tables/19/4.222.table b/eccodes/definitions.save/grib2/tables/19/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.222.table rename to eccodes/definitions.save/grib2/tables/19/4.222.table diff --git a/eccodes/definitions/grib2/tables/19/4.223.table b/eccodes/definitions.save/grib2/tables/19/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.223.table rename to eccodes/definitions.save/grib2/tables/19/4.223.table diff --git a/eccodes/definitions/grib2/tables/19/4.224.table b/eccodes/definitions.save/grib2/tables/19/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.224.table rename to eccodes/definitions.save/grib2/tables/19/4.224.table diff --git a/eccodes/definitions/grib2/tables/19/4.225.table b/eccodes/definitions.save/grib2/tables/19/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.225.table rename to eccodes/definitions.save/grib2/tables/19/4.225.table diff --git a/eccodes/definitions/grib2/tables/19/4.227.table b/eccodes/definitions.save/grib2/tables/19/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.227.table rename to eccodes/definitions.save/grib2/tables/19/4.227.table diff --git a/eccodes/definitions/grib2/tables/19/4.230.table b/eccodes/definitions.save/grib2/tables/19/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.230.table rename to eccodes/definitions.save/grib2/tables/19/4.230.table diff --git a/eccodes/definitions/grib2/tables/19/4.233.table b/eccodes/definitions.save/grib2/tables/19/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.233.table rename to eccodes/definitions.save/grib2/tables/19/4.233.table diff --git a/eccodes/definitions/grib2/tables/19/4.234.table b/eccodes/definitions.save/grib2/tables/19/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.234.table rename to eccodes/definitions.save/grib2/tables/19/4.234.table diff --git a/eccodes/definitions/grib2/tables/19/4.236.table b/eccodes/definitions.save/grib2/tables/19/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.236.table rename to eccodes/definitions.save/grib2/tables/19/4.236.table diff --git a/eccodes/definitions/grib2/tables/19/4.240.table b/eccodes/definitions.save/grib2/tables/19/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.240.table rename to eccodes/definitions.save/grib2/tables/19/4.240.table diff --git a/eccodes/definitions/grib2/tables/19/4.241.table b/eccodes/definitions.save/grib2/tables/19/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.241.table rename to eccodes/definitions.save/grib2/tables/19/4.241.table diff --git a/eccodes/definitions/grib2/tables/19/4.242.table b/eccodes/definitions.save/grib2/tables/19/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.242.table rename to eccodes/definitions.save/grib2/tables/19/4.242.table diff --git a/eccodes/definitions/grib2/tables/19/4.243.table b/eccodes/definitions.save/grib2/tables/19/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.243.table rename to eccodes/definitions.save/grib2/tables/19/4.243.table diff --git a/eccodes/definitions/grib2/tables/19/4.3.table b/eccodes/definitions.save/grib2/tables/19/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.3.table rename to eccodes/definitions.save/grib2/tables/19/4.3.table diff --git a/eccodes/definitions/grib2/tables/19/4.4.table b/eccodes/definitions.save/grib2/tables/19/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.4.table rename to eccodes/definitions.save/grib2/tables/19/4.4.table diff --git a/eccodes/definitions/grib2/tables/19/4.5.table b/eccodes/definitions.save/grib2/tables/19/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.5.table rename to eccodes/definitions.save/grib2/tables/19/4.5.table diff --git a/eccodes/definitions/grib2/tables/19/4.6.table b/eccodes/definitions.save/grib2/tables/19/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.6.table rename to eccodes/definitions.save/grib2/tables/19/4.6.table diff --git a/eccodes/definitions/grib2/tables/19/4.7.table b/eccodes/definitions.save/grib2/tables/19/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.7.table rename to eccodes/definitions.save/grib2/tables/19/4.7.table diff --git a/eccodes/definitions/grib2/tables/19/4.8.table b/eccodes/definitions.save/grib2/tables/19/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.8.table rename to eccodes/definitions.save/grib2/tables/19/4.8.table diff --git a/eccodes/definitions/grib2/tables/19/4.9.table b/eccodes/definitions.save/grib2/tables/19/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.9.table rename to eccodes/definitions.save/grib2/tables/19/4.9.table diff --git a/eccodes/definitions/grib2/tables/19/4.91.table b/eccodes/definitions.save/grib2/tables/19/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/4.91.table rename to eccodes/definitions.save/grib2/tables/19/4.91.table diff --git a/eccodes/definitions/grib2/tables/19/5.0.table b/eccodes/definitions.save/grib2/tables/19/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.0.table rename to eccodes/definitions.save/grib2/tables/19/5.0.table diff --git a/eccodes/definitions/grib2/tables/19/5.1.table b/eccodes/definitions.save/grib2/tables/19/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.1.table rename to eccodes/definitions.save/grib2/tables/19/5.1.table diff --git a/eccodes/definitions/grib2/tables/19/5.2.table b/eccodes/definitions.save/grib2/tables/19/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.2.table rename to eccodes/definitions.save/grib2/tables/19/5.2.table diff --git a/eccodes/definitions/grib2/tables/19/5.3.table b/eccodes/definitions.save/grib2/tables/19/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.3.table rename to eccodes/definitions.save/grib2/tables/19/5.3.table diff --git a/eccodes/definitions/grib2/tables/19/5.4.table b/eccodes/definitions.save/grib2/tables/19/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.4.table rename to eccodes/definitions.save/grib2/tables/19/5.4.table diff --git a/eccodes/definitions/grib2/tables/19/5.40.table b/eccodes/definitions.save/grib2/tables/19/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.40.table rename to eccodes/definitions.save/grib2/tables/19/5.40.table diff --git a/eccodes/definitions/grib2/tables/19/5.40000.table b/eccodes/definitions.save/grib2/tables/19/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.40000.table rename to eccodes/definitions.save/grib2/tables/19/5.40000.table diff --git a/eccodes/definitions/grib2/tables/19/5.5.table b/eccodes/definitions.save/grib2/tables/19/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.5.table rename to eccodes/definitions.save/grib2/tables/19/5.5.table diff --git a/eccodes/definitions/grib2/tables/19/5.50002.table b/eccodes/definitions.save/grib2/tables/19/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.50002.table rename to eccodes/definitions.save/grib2/tables/19/5.50002.table diff --git a/eccodes/definitions/grib2/tables/19/5.6.table b/eccodes/definitions.save/grib2/tables/19/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.6.table rename to eccodes/definitions.save/grib2/tables/19/5.6.table diff --git a/eccodes/definitions/grib2/tables/19/5.7.table b/eccodes/definitions.save/grib2/tables/19/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/5.7.table rename to eccodes/definitions.save/grib2/tables/19/5.7.table diff --git a/eccodes/definitions/grib2/tables/19/6.0.table b/eccodes/definitions.save/grib2/tables/19/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/6.0.table rename to eccodes/definitions.save/grib2/tables/19/6.0.table diff --git a/eccodes/definitions/grib2/tables/19/stepType.table b/eccodes/definitions.save/grib2/tables/19/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/19/stepType.table rename to eccodes/definitions.save/grib2/tables/19/stepType.table diff --git a/eccodes/definitions/grib2/tables/2/0.0.table b/eccodes/definitions.save/grib2/tables/2/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/0.0.table rename to eccodes/definitions.save/grib2/tables/2/0.0.table diff --git a/eccodes/definitions/grib2/tables/2/1.0.table b/eccodes/definitions.save/grib2/tables/2/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/1.0.table rename to eccodes/definitions.save/grib2/tables/2/1.0.table diff --git a/eccodes/definitions/grib2/tables/2/1.1.table b/eccodes/definitions.save/grib2/tables/2/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/1.1.table rename to eccodes/definitions.save/grib2/tables/2/1.1.table diff --git a/eccodes/definitions/grib2/tables/2/1.2.table b/eccodes/definitions.save/grib2/tables/2/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/1.2.table rename to eccodes/definitions.save/grib2/tables/2/1.2.table diff --git a/eccodes/definitions/grib2/tables/2/1.3.table b/eccodes/definitions.save/grib2/tables/2/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/1.3.table rename to eccodes/definitions.save/grib2/tables/2/1.3.table diff --git a/eccodes/definitions/grib2/tables/2/1.4.table b/eccodes/definitions.save/grib2/tables/2/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/1.4.table rename to eccodes/definitions.save/grib2/tables/2/1.4.table diff --git a/eccodes/definitions/grib2/tables/2/3.0.table b/eccodes/definitions.save/grib2/tables/2/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.0.table rename to eccodes/definitions.save/grib2/tables/2/3.0.table diff --git a/eccodes/definitions/grib2/tables/2/3.1.table b/eccodes/definitions.save/grib2/tables/2/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.1.table rename to eccodes/definitions.save/grib2/tables/2/3.1.table diff --git a/eccodes/definitions/grib2/tables/2/3.10.table b/eccodes/definitions.save/grib2/tables/2/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.10.table rename to eccodes/definitions.save/grib2/tables/2/3.10.table diff --git a/eccodes/definitions/grib2/tables/2/3.11.table b/eccodes/definitions.save/grib2/tables/2/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.11.table rename to eccodes/definitions.save/grib2/tables/2/3.11.table diff --git a/eccodes/definitions/grib2/tables/2/3.15.table b/eccodes/definitions.save/grib2/tables/2/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.15.table rename to eccodes/definitions.save/grib2/tables/2/3.15.table diff --git a/eccodes/definitions/grib2/tables/2/3.2.table b/eccodes/definitions.save/grib2/tables/2/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.2.table rename to eccodes/definitions.save/grib2/tables/2/3.2.table diff --git a/eccodes/definitions/grib2/tables/2/3.20.table b/eccodes/definitions.save/grib2/tables/2/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.20.table rename to eccodes/definitions.save/grib2/tables/2/3.20.table diff --git a/eccodes/definitions/grib2/tables/2/3.21.table b/eccodes/definitions.save/grib2/tables/2/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.21.table rename to eccodes/definitions.save/grib2/tables/2/3.21.table diff --git a/eccodes/definitions/grib2/tables/2/3.3.table b/eccodes/definitions.save/grib2/tables/2/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.3.table rename to eccodes/definitions.save/grib2/tables/2/3.3.table diff --git a/eccodes/definitions/grib2/tables/2/3.4.table b/eccodes/definitions.save/grib2/tables/2/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.4.table rename to eccodes/definitions.save/grib2/tables/2/3.4.table diff --git a/eccodes/definitions/grib2/tables/2/3.5.table b/eccodes/definitions.save/grib2/tables/2/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.5.table rename to eccodes/definitions.save/grib2/tables/2/3.5.table diff --git a/eccodes/definitions/grib2/tables/2/3.6.table b/eccodes/definitions.save/grib2/tables/2/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.6.table rename to eccodes/definitions.save/grib2/tables/2/3.6.table diff --git a/eccodes/definitions/grib2/tables/2/3.7.table b/eccodes/definitions.save/grib2/tables/2/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.7.table rename to eccodes/definitions.save/grib2/tables/2/3.7.table diff --git a/eccodes/definitions/grib2/tables/2/3.8.table b/eccodes/definitions.save/grib2/tables/2/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.8.table rename to eccodes/definitions.save/grib2/tables/2/3.8.table diff --git a/eccodes/definitions/grib2/tables/2/3.9.table b/eccodes/definitions.save/grib2/tables/2/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/3.9.table rename to eccodes/definitions.save/grib2/tables/2/3.9.table diff --git a/eccodes/definitions/grib2/tables/2/4.0.table b/eccodes/definitions.save/grib2/tables/2/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.0.table rename to eccodes/definitions.save/grib2/tables/2/4.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.0.table b/eccodes/definitions.save/grib2/tables/2/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.0.table rename to eccodes/definitions.save/grib2/tables/2/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.1.table b/eccodes/definitions.save/grib2/tables/2/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.1.table rename to eccodes/definitions.save/grib2/tables/2/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.10.table b/eccodes/definitions.save/grib2/tables/2/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.10.table rename to eccodes/definitions.save/grib2/tables/2/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.2.table b/eccodes/definitions.save/grib2/tables/2/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.2.table rename to eccodes/definitions.save/grib2/tables/2/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.3.table b/eccodes/definitions.save/grib2/tables/2/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.3.table rename to eccodes/definitions.save/grib2/tables/2/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/2/4.1.table b/eccodes/definitions.save/grib2/tables/2/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.1.table rename to eccodes/definitions.save/grib2/tables/2/4.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.10.table b/eccodes/definitions.save/grib2/tables/2/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.10.table rename to eccodes/definitions.save/grib2/tables/2/4.10.table diff --git a/eccodes/definitions/grib2/tables/2/4.11.table b/eccodes/definitions.save/grib2/tables/2/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.11.table rename to eccodes/definitions.save/grib2/tables/2/4.11.table diff --git a/eccodes/definitions/grib2/tables/2/4.12.table b/eccodes/definitions.save/grib2/tables/2/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.12.table rename to eccodes/definitions.save/grib2/tables/2/4.12.table diff --git a/eccodes/definitions/grib2/tables/2/4.13.table b/eccodes/definitions.save/grib2/tables/2/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.13.table rename to eccodes/definitions.save/grib2/tables/2/4.13.table diff --git a/eccodes/definitions/grib2/tables/2/4.14.table b/eccodes/definitions.save/grib2/tables/2/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.14.table rename to eccodes/definitions.save/grib2/tables/2/4.14.table diff --git a/eccodes/definitions/grib2/tables/2/4.15.table b/eccodes/definitions.save/grib2/tables/2/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.15.table rename to eccodes/definitions.save/grib2/tables/2/4.15.table diff --git a/eccodes/definitions/grib2/tables/2/4.151.table b/eccodes/definitions.save/grib2/tables/2/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.151.table rename to eccodes/definitions.save/grib2/tables/2/4.151.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/2/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/2/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/2/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/2/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/2/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/2/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/2/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/2/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/2/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/2/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/2/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/2/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/2/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/2/4.201.table b/eccodes/definitions.save/grib2/tables/2/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.201.table rename to eccodes/definitions.save/grib2/tables/2/4.201.table diff --git a/eccodes/definitions/grib2/tables/2/4.202.table b/eccodes/definitions.save/grib2/tables/2/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.202.table rename to eccodes/definitions.save/grib2/tables/2/4.202.table diff --git a/eccodes/definitions/grib2/tables/2/4.203.table b/eccodes/definitions.save/grib2/tables/2/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.203.table rename to eccodes/definitions.save/grib2/tables/2/4.203.table diff --git a/eccodes/definitions/grib2/tables/2/4.204.table b/eccodes/definitions.save/grib2/tables/2/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.204.table rename to eccodes/definitions.save/grib2/tables/2/4.204.table diff --git a/eccodes/definitions/grib2/tables/2/4.205.table b/eccodes/definitions.save/grib2/tables/2/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.205.table rename to eccodes/definitions.save/grib2/tables/2/4.205.table diff --git a/eccodes/definitions/grib2/tables/2/4.206.table b/eccodes/definitions.save/grib2/tables/2/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.206.table rename to eccodes/definitions.save/grib2/tables/2/4.206.table diff --git a/eccodes/definitions/grib2/tables/2/4.207.table b/eccodes/definitions.save/grib2/tables/2/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.207.table rename to eccodes/definitions.save/grib2/tables/2/4.207.table diff --git a/eccodes/definitions/grib2/tables/2/4.208.table b/eccodes/definitions.save/grib2/tables/2/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.208.table rename to eccodes/definitions.save/grib2/tables/2/4.208.table diff --git a/eccodes/definitions/grib2/tables/2/4.209.table b/eccodes/definitions.save/grib2/tables/2/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.209.table rename to eccodes/definitions.save/grib2/tables/2/4.209.table diff --git a/eccodes/definitions/grib2/tables/2/4.210.table b/eccodes/definitions.save/grib2/tables/2/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.210.table rename to eccodes/definitions.save/grib2/tables/2/4.210.table diff --git a/eccodes/definitions/grib2/tables/2/4.211.table b/eccodes/definitions.save/grib2/tables/2/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.211.table rename to eccodes/definitions.save/grib2/tables/2/4.211.table diff --git a/eccodes/definitions/grib2/tables/2/4.212.table b/eccodes/definitions.save/grib2/tables/2/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.212.table rename to eccodes/definitions.save/grib2/tables/2/4.212.table diff --git a/eccodes/definitions/grib2/tables/2/4.213.table b/eccodes/definitions.save/grib2/tables/2/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.213.table rename to eccodes/definitions.save/grib2/tables/2/4.213.table diff --git a/eccodes/definitions/grib2/tables/2/4.215.table b/eccodes/definitions.save/grib2/tables/2/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.215.table rename to eccodes/definitions.save/grib2/tables/2/4.215.table diff --git a/eccodes/definitions/grib2/tables/2/4.216.table b/eccodes/definitions.save/grib2/tables/2/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.216.table rename to eccodes/definitions.save/grib2/tables/2/4.216.table diff --git a/eccodes/definitions/grib2/tables/2/4.217.table b/eccodes/definitions.save/grib2/tables/2/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.217.table rename to eccodes/definitions.save/grib2/tables/2/4.217.table diff --git a/eccodes/definitions/grib2/tables/2/4.220.table b/eccodes/definitions.save/grib2/tables/2/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.220.table rename to eccodes/definitions.save/grib2/tables/2/4.220.table diff --git a/eccodes/definitions/grib2/tables/2/4.221.table b/eccodes/definitions.save/grib2/tables/2/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.221.table rename to eccodes/definitions.save/grib2/tables/2/4.221.table diff --git a/eccodes/definitions/grib2/tables/2/4.230.table b/eccodes/definitions.save/grib2/tables/2/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.230.table rename to eccodes/definitions.save/grib2/tables/2/4.230.table diff --git a/eccodes/definitions/grib2/tables/2/4.3.table b/eccodes/definitions.save/grib2/tables/2/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.3.table rename to eccodes/definitions.save/grib2/tables/2/4.3.table diff --git a/eccodes/definitions/grib2/tables/2/4.4.table b/eccodes/definitions.save/grib2/tables/2/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.4.table rename to eccodes/definitions.save/grib2/tables/2/4.4.table diff --git a/eccodes/definitions/grib2/tables/2/4.5.table b/eccodes/definitions.save/grib2/tables/2/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.5.table rename to eccodes/definitions.save/grib2/tables/2/4.5.table diff --git a/eccodes/definitions/grib2/tables/2/4.6.table b/eccodes/definitions.save/grib2/tables/2/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.6.table rename to eccodes/definitions.save/grib2/tables/2/4.6.table diff --git a/eccodes/definitions/grib2/tables/2/4.7.table b/eccodes/definitions.save/grib2/tables/2/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.7.table rename to eccodes/definitions.save/grib2/tables/2/4.7.table diff --git a/eccodes/definitions/grib2/tables/2/4.8.table b/eccodes/definitions.save/grib2/tables/2/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.8.table rename to eccodes/definitions.save/grib2/tables/2/4.8.table diff --git a/eccodes/definitions/grib2/tables/2/4.9.table b/eccodes/definitions.save/grib2/tables/2/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.9.table rename to eccodes/definitions.save/grib2/tables/2/4.9.table diff --git a/eccodes/definitions/grib2/tables/2/4.91.table b/eccodes/definitions.save/grib2/tables/2/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/4.91.table rename to eccodes/definitions.save/grib2/tables/2/4.91.table diff --git a/eccodes/definitions/grib2/tables/2/5.0.table b/eccodes/definitions.save/grib2/tables/2/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.0.table rename to eccodes/definitions.save/grib2/tables/2/5.0.table diff --git a/eccodes/definitions/grib2/tables/2/5.1.table b/eccodes/definitions.save/grib2/tables/2/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.1.table rename to eccodes/definitions.save/grib2/tables/2/5.1.table diff --git a/eccodes/definitions/grib2/tables/2/5.2.table b/eccodes/definitions.save/grib2/tables/2/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.2.table rename to eccodes/definitions.save/grib2/tables/2/5.2.table diff --git a/eccodes/definitions/grib2/tables/2/5.3.table b/eccodes/definitions.save/grib2/tables/2/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.3.table rename to eccodes/definitions.save/grib2/tables/2/5.3.table diff --git a/eccodes/definitions/grib2/tables/2/5.4.table b/eccodes/definitions.save/grib2/tables/2/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.4.table rename to eccodes/definitions.save/grib2/tables/2/5.4.table diff --git a/eccodes/definitions/grib2/tables/2/5.40.table b/eccodes/definitions.save/grib2/tables/2/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.40.table rename to eccodes/definitions.save/grib2/tables/2/5.40.table diff --git a/eccodes/definitions/grib2/tables/2/5.40000.table b/eccodes/definitions.save/grib2/tables/2/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.40000.table rename to eccodes/definitions.save/grib2/tables/2/5.40000.table diff --git a/eccodes/definitions/grib2/tables/2/5.5.table b/eccodes/definitions.save/grib2/tables/2/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.5.table rename to eccodes/definitions.save/grib2/tables/2/5.5.table diff --git a/eccodes/definitions/grib2/tables/2/5.6.table b/eccodes/definitions.save/grib2/tables/2/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.6.table rename to eccodes/definitions.save/grib2/tables/2/5.6.table diff --git a/eccodes/definitions/grib2/tables/2/5.7.table b/eccodes/definitions.save/grib2/tables/2/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.7.table rename to eccodes/definitions.save/grib2/tables/2/5.7.table diff --git a/eccodes/definitions/grib2/tables/2/5.8.table b/eccodes/definitions.save/grib2/tables/2/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.8.table rename to eccodes/definitions.save/grib2/tables/2/5.8.table diff --git a/eccodes/definitions/grib2/tables/2/5.9.table b/eccodes/definitions.save/grib2/tables/2/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/5.9.table rename to eccodes/definitions.save/grib2/tables/2/5.9.table diff --git a/eccodes/definitions/grib2/tables/2/6.0.table b/eccodes/definitions.save/grib2/tables/2/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/2/6.0.table rename to eccodes/definitions.save/grib2/tables/2/6.0.table diff --git a/eccodes/definitions/grib2/tables/20/0.0.table b/eccodes/definitions.save/grib2/tables/20/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/0.0.table rename to eccodes/definitions.save/grib2/tables/20/0.0.table diff --git a/eccodes/definitions/grib2/tables/20/1.0.table b/eccodes/definitions.save/grib2/tables/20/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.0.table rename to eccodes/definitions.save/grib2/tables/20/1.0.table diff --git a/eccodes/definitions/grib2/tables/20/1.1.table b/eccodes/definitions.save/grib2/tables/20/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.1.table rename to eccodes/definitions.save/grib2/tables/20/1.1.table diff --git a/eccodes/definitions/grib2/tables/20/1.2.table b/eccodes/definitions.save/grib2/tables/20/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.2.table rename to eccodes/definitions.save/grib2/tables/20/1.2.table diff --git a/eccodes/definitions/grib2/tables/20/1.3.table b/eccodes/definitions.save/grib2/tables/20/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.3.table rename to eccodes/definitions.save/grib2/tables/20/1.3.table diff --git a/eccodes/definitions/grib2/tables/20/1.4.table b/eccodes/definitions.save/grib2/tables/20/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.4.table rename to eccodes/definitions.save/grib2/tables/20/1.4.table diff --git a/eccodes/definitions/grib2/tables/20/1.5.table b/eccodes/definitions.save/grib2/tables/20/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.5.table rename to eccodes/definitions.save/grib2/tables/20/1.5.table diff --git a/eccodes/definitions/grib2/tables/20/1.6.table b/eccodes/definitions.save/grib2/tables/20/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/1.6.table rename to eccodes/definitions.save/grib2/tables/20/1.6.table diff --git a/eccodes/definitions/grib2/tables/20/3.0.table b/eccodes/definitions.save/grib2/tables/20/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.0.table rename to eccodes/definitions.save/grib2/tables/20/3.0.table diff --git a/eccodes/definitions/grib2/tables/20/3.1.table b/eccodes/definitions.save/grib2/tables/20/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.1.table rename to eccodes/definitions.save/grib2/tables/20/3.1.table diff --git a/eccodes/definitions/grib2/tables/20/3.10.table b/eccodes/definitions.save/grib2/tables/20/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.10.table rename to eccodes/definitions.save/grib2/tables/20/3.10.table diff --git a/eccodes/definitions/grib2/tables/20/3.11.table b/eccodes/definitions.save/grib2/tables/20/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.11.table rename to eccodes/definitions.save/grib2/tables/20/3.11.table diff --git a/eccodes/definitions/grib2/tables/20/3.15.table b/eccodes/definitions.save/grib2/tables/20/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.15.table rename to eccodes/definitions.save/grib2/tables/20/3.15.table diff --git a/eccodes/definitions/grib2/tables/20/3.2.table b/eccodes/definitions.save/grib2/tables/20/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.2.table rename to eccodes/definitions.save/grib2/tables/20/3.2.table diff --git a/eccodes/definitions/grib2/tables/20/3.20.table b/eccodes/definitions.save/grib2/tables/20/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.20.table rename to eccodes/definitions.save/grib2/tables/20/3.20.table diff --git a/eccodes/definitions/grib2/tables/20/3.21.table b/eccodes/definitions.save/grib2/tables/20/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.21.table rename to eccodes/definitions.save/grib2/tables/20/3.21.table diff --git a/eccodes/definitions/grib2/tables/20/3.3.table b/eccodes/definitions.save/grib2/tables/20/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.3.table rename to eccodes/definitions.save/grib2/tables/20/3.3.table diff --git a/eccodes/definitions/grib2/tables/20/3.4.table b/eccodes/definitions.save/grib2/tables/20/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.4.table rename to eccodes/definitions.save/grib2/tables/20/3.4.table diff --git a/eccodes/definitions/grib2/tables/20/3.5.table b/eccodes/definitions.save/grib2/tables/20/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.5.table rename to eccodes/definitions.save/grib2/tables/20/3.5.table diff --git a/eccodes/definitions/grib2/tables/20/3.6.table b/eccodes/definitions.save/grib2/tables/20/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.6.table rename to eccodes/definitions.save/grib2/tables/20/3.6.table diff --git a/eccodes/definitions/grib2/tables/20/3.7.table b/eccodes/definitions.save/grib2/tables/20/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.7.table rename to eccodes/definitions.save/grib2/tables/20/3.7.table diff --git a/eccodes/definitions/grib2/tables/20/3.8.table b/eccodes/definitions.save/grib2/tables/20/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.8.table rename to eccodes/definitions.save/grib2/tables/20/3.8.table diff --git a/eccodes/definitions/grib2/tables/20/3.9.table b/eccodes/definitions.save/grib2/tables/20/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/3.9.table rename to eccodes/definitions.save/grib2/tables/20/3.9.table diff --git a/eccodes/definitions/grib2/tables/20/4.0.table b/eccodes/definitions.save/grib2/tables/20/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.0.table rename to eccodes/definitions.save/grib2/tables/20/4.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.0.table b/eccodes/definitions.save/grib2/tables/20/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.0.table rename to eccodes/definitions.save/grib2/tables/20/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.1.table b/eccodes/definitions.save/grib2/tables/20/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.1.table rename to eccodes/definitions.save/grib2/tables/20/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.10.table b/eccodes/definitions.save/grib2/tables/20/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.10.table rename to eccodes/definitions.save/grib2/tables/20/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.192.table b/eccodes/definitions.save/grib2/tables/20/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.192.table rename to eccodes/definitions.save/grib2/tables/20/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.2.table b/eccodes/definitions.save/grib2/tables/20/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.2.table rename to eccodes/definitions.save/grib2/tables/20/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/20/4.1.3.table b/eccodes/definitions.save/grib2/tables/20/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.1.3.table rename to eccodes/definitions.save/grib2/tables/20/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.10.table b/eccodes/definitions.save/grib2/tables/20/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.10.table rename to eccodes/definitions.save/grib2/tables/20/4.10.table diff --git a/eccodes/definitions/grib2/tables/20/4.11.table b/eccodes/definitions.save/grib2/tables/20/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.11.table rename to eccodes/definitions.save/grib2/tables/20/4.11.table diff --git a/eccodes/definitions/grib2/tables/20/4.12.table b/eccodes/definitions.save/grib2/tables/20/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.12.table rename to eccodes/definitions.save/grib2/tables/20/4.12.table diff --git a/eccodes/definitions/grib2/tables/20/4.13.table b/eccodes/definitions.save/grib2/tables/20/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.13.table rename to eccodes/definitions.save/grib2/tables/20/4.13.table diff --git a/eccodes/definitions/grib2/tables/20/4.14.table b/eccodes/definitions.save/grib2/tables/20/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.14.table rename to eccodes/definitions.save/grib2/tables/20/4.14.table diff --git a/eccodes/definitions/grib2/tables/20/4.15.table b/eccodes/definitions.save/grib2/tables/20/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.15.table rename to eccodes/definitions.save/grib2/tables/20/4.15.table diff --git a/eccodes/definitions/grib2/tables/20/4.192.table b/eccodes/definitions.save/grib2/tables/20/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.192.table rename to eccodes/definitions.save/grib2/tables/20/4.192.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/20/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/20/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/20/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/20/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/20/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/20/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/20/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/20/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/20/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/20/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/20/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/20/4.201.table b/eccodes/definitions.save/grib2/tables/20/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.201.table rename to eccodes/definitions.save/grib2/tables/20/4.201.table diff --git a/eccodes/definitions/grib2/tables/20/4.202.table b/eccodes/definitions.save/grib2/tables/20/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.202.table rename to eccodes/definitions.save/grib2/tables/20/4.202.table diff --git a/eccodes/definitions/grib2/tables/20/4.203.table b/eccodes/definitions.save/grib2/tables/20/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.203.table rename to eccodes/definitions.save/grib2/tables/20/4.203.table diff --git a/eccodes/definitions/grib2/tables/20/4.204.table b/eccodes/definitions.save/grib2/tables/20/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.204.table rename to eccodes/definitions.save/grib2/tables/20/4.204.table diff --git a/eccodes/definitions/grib2/tables/20/4.205.table b/eccodes/definitions.save/grib2/tables/20/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.205.table rename to eccodes/definitions.save/grib2/tables/20/4.205.table diff --git a/eccodes/definitions/grib2/tables/20/4.206.table b/eccodes/definitions.save/grib2/tables/20/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.206.table rename to eccodes/definitions.save/grib2/tables/20/4.206.table diff --git a/eccodes/definitions/grib2/tables/20/4.207.table b/eccodes/definitions.save/grib2/tables/20/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.207.table rename to eccodes/definitions.save/grib2/tables/20/4.207.table diff --git a/eccodes/definitions/grib2/tables/20/4.208.table b/eccodes/definitions.save/grib2/tables/20/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.208.table rename to eccodes/definitions.save/grib2/tables/20/4.208.table diff --git a/eccodes/definitions/grib2/tables/20/4.209.table b/eccodes/definitions.save/grib2/tables/20/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.209.table rename to eccodes/definitions.save/grib2/tables/20/4.209.table diff --git a/eccodes/definitions/grib2/tables/20/4.210.table b/eccodes/definitions.save/grib2/tables/20/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.210.table rename to eccodes/definitions.save/grib2/tables/20/4.210.table diff --git a/eccodes/definitions/grib2/tables/20/4.211.table b/eccodes/definitions.save/grib2/tables/20/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.211.table rename to eccodes/definitions.save/grib2/tables/20/4.211.table diff --git a/eccodes/definitions/grib2/tables/20/4.212.table b/eccodes/definitions.save/grib2/tables/20/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.212.table rename to eccodes/definitions.save/grib2/tables/20/4.212.table diff --git a/eccodes/definitions/grib2/tables/20/4.213.table b/eccodes/definitions.save/grib2/tables/20/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.213.table rename to eccodes/definitions.save/grib2/tables/20/4.213.table diff --git a/eccodes/definitions/grib2/tables/20/4.215.table b/eccodes/definitions.save/grib2/tables/20/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.215.table rename to eccodes/definitions.save/grib2/tables/20/4.215.table diff --git a/eccodes/definitions/grib2/tables/20/4.216.table b/eccodes/definitions.save/grib2/tables/20/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.216.table rename to eccodes/definitions.save/grib2/tables/20/4.216.table diff --git a/eccodes/definitions/grib2/tables/20/4.217.table b/eccodes/definitions.save/grib2/tables/20/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.217.table rename to eccodes/definitions.save/grib2/tables/20/4.217.table diff --git a/eccodes/definitions/grib2/tables/20/4.218.table b/eccodes/definitions.save/grib2/tables/20/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.218.table rename to eccodes/definitions.save/grib2/tables/20/4.218.table diff --git a/eccodes/definitions/grib2/tables/20/4.219.table b/eccodes/definitions.save/grib2/tables/20/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.219.table rename to eccodes/definitions.save/grib2/tables/20/4.219.table diff --git a/eccodes/definitions/grib2/tables/20/4.220.table b/eccodes/definitions.save/grib2/tables/20/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.220.table rename to eccodes/definitions.save/grib2/tables/20/4.220.table diff --git a/eccodes/definitions/grib2/tables/20/4.221.table b/eccodes/definitions.save/grib2/tables/20/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.221.table rename to eccodes/definitions.save/grib2/tables/20/4.221.table diff --git a/eccodes/definitions/grib2/tables/20/4.222.table b/eccodes/definitions.save/grib2/tables/20/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.222.table rename to eccodes/definitions.save/grib2/tables/20/4.222.table diff --git a/eccodes/definitions/grib2/tables/20/4.223.table b/eccodes/definitions.save/grib2/tables/20/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.223.table rename to eccodes/definitions.save/grib2/tables/20/4.223.table diff --git a/eccodes/definitions/grib2/tables/20/4.224.table b/eccodes/definitions.save/grib2/tables/20/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.224.table rename to eccodes/definitions.save/grib2/tables/20/4.224.table diff --git a/eccodes/definitions/grib2/tables/20/4.225.table b/eccodes/definitions.save/grib2/tables/20/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.225.table rename to eccodes/definitions.save/grib2/tables/20/4.225.table diff --git a/eccodes/definitions/grib2/tables/20/4.227.table b/eccodes/definitions.save/grib2/tables/20/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.227.table rename to eccodes/definitions.save/grib2/tables/20/4.227.table diff --git a/eccodes/definitions/grib2/tables/20/4.230.table b/eccodes/definitions.save/grib2/tables/20/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.230.table rename to eccodes/definitions.save/grib2/tables/20/4.230.table diff --git a/eccodes/definitions/grib2/tables/20/4.233.table b/eccodes/definitions.save/grib2/tables/20/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.233.table rename to eccodes/definitions.save/grib2/tables/20/4.233.table diff --git a/eccodes/definitions/grib2/tables/20/4.234.table b/eccodes/definitions.save/grib2/tables/20/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.234.table rename to eccodes/definitions.save/grib2/tables/20/4.234.table diff --git a/eccodes/definitions/grib2/tables/20/4.236.table b/eccodes/definitions.save/grib2/tables/20/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.236.table rename to eccodes/definitions.save/grib2/tables/20/4.236.table diff --git a/eccodes/definitions/grib2/tables/20/4.240.table b/eccodes/definitions.save/grib2/tables/20/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.240.table rename to eccodes/definitions.save/grib2/tables/20/4.240.table diff --git a/eccodes/definitions/grib2/tables/20/4.241.table b/eccodes/definitions.save/grib2/tables/20/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.241.table rename to eccodes/definitions.save/grib2/tables/20/4.241.table diff --git a/eccodes/definitions/grib2/tables/20/4.242.table b/eccodes/definitions.save/grib2/tables/20/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.242.table rename to eccodes/definitions.save/grib2/tables/20/4.242.table diff --git a/eccodes/definitions/grib2/tables/20/4.243.table b/eccodes/definitions.save/grib2/tables/20/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.243.table rename to eccodes/definitions.save/grib2/tables/20/4.243.table diff --git a/eccodes/definitions/grib2/tables/20/4.3.table b/eccodes/definitions.save/grib2/tables/20/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.3.table rename to eccodes/definitions.save/grib2/tables/20/4.3.table diff --git a/eccodes/definitions/grib2/tables/20/4.4.table b/eccodes/definitions.save/grib2/tables/20/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.4.table rename to eccodes/definitions.save/grib2/tables/20/4.4.table diff --git a/eccodes/definitions/grib2/tables/20/4.5.table b/eccodes/definitions.save/grib2/tables/20/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.5.table rename to eccodes/definitions.save/grib2/tables/20/4.5.table diff --git a/eccodes/definitions/grib2/tables/20/4.6.table b/eccodes/definitions.save/grib2/tables/20/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.6.table rename to eccodes/definitions.save/grib2/tables/20/4.6.table diff --git a/eccodes/definitions/grib2/tables/20/4.7.table b/eccodes/definitions.save/grib2/tables/20/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.7.table rename to eccodes/definitions.save/grib2/tables/20/4.7.table diff --git a/eccodes/definitions/grib2/tables/20/4.8.table b/eccodes/definitions.save/grib2/tables/20/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.8.table rename to eccodes/definitions.save/grib2/tables/20/4.8.table diff --git a/eccodes/definitions/grib2/tables/20/4.9.table b/eccodes/definitions.save/grib2/tables/20/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.9.table rename to eccodes/definitions.save/grib2/tables/20/4.9.table diff --git a/eccodes/definitions/grib2/tables/20/4.91.table b/eccodes/definitions.save/grib2/tables/20/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/4.91.table rename to eccodes/definitions.save/grib2/tables/20/4.91.table diff --git a/eccodes/definitions/grib2/tables/20/5.0.table b/eccodes/definitions.save/grib2/tables/20/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.0.table rename to eccodes/definitions.save/grib2/tables/20/5.0.table diff --git a/eccodes/definitions/grib2/tables/20/5.1.table b/eccodes/definitions.save/grib2/tables/20/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.1.table rename to eccodes/definitions.save/grib2/tables/20/5.1.table diff --git a/eccodes/definitions/grib2/tables/20/5.2.table b/eccodes/definitions.save/grib2/tables/20/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.2.table rename to eccodes/definitions.save/grib2/tables/20/5.2.table diff --git a/eccodes/definitions/grib2/tables/20/5.3.table b/eccodes/definitions.save/grib2/tables/20/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.3.table rename to eccodes/definitions.save/grib2/tables/20/5.3.table diff --git a/eccodes/definitions/grib2/tables/20/5.4.table b/eccodes/definitions.save/grib2/tables/20/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.4.table rename to eccodes/definitions.save/grib2/tables/20/5.4.table diff --git a/eccodes/definitions/grib2/tables/20/5.40.table b/eccodes/definitions.save/grib2/tables/20/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.40.table rename to eccodes/definitions.save/grib2/tables/20/5.40.table diff --git a/eccodes/definitions/grib2/tables/20/5.40000.table b/eccodes/definitions.save/grib2/tables/20/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.40000.table rename to eccodes/definitions.save/grib2/tables/20/5.40000.table diff --git a/eccodes/definitions/grib2/tables/20/5.5.table b/eccodes/definitions.save/grib2/tables/20/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.5.table rename to eccodes/definitions.save/grib2/tables/20/5.5.table diff --git a/eccodes/definitions/grib2/tables/20/5.50002.table b/eccodes/definitions.save/grib2/tables/20/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.50002.table rename to eccodes/definitions.save/grib2/tables/20/5.50002.table diff --git a/eccodes/definitions/grib2/tables/20/5.6.table b/eccodes/definitions.save/grib2/tables/20/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.6.table rename to eccodes/definitions.save/grib2/tables/20/5.6.table diff --git a/eccodes/definitions/grib2/tables/20/5.7.table b/eccodes/definitions.save/grib2/tables/20/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/5.7.table rename to eccodes/definitions.save/grib2/tables/20/5.7.table diff --git a/eccodes/definitions/grib2/tables/20/6.0.table b/eccodes/definitions.save/grib2/tables/20/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/6.0.table rename to eccodes/definitions.save/grib2/tables/20/6.0.table diff --git a/eccodes/definitions/grib2/tables/20/stepType.table b/eccodes/definitions.save/grib2/tables/20/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/20/stepType.table rename to eccodes/definitions.save/grib2/tables/20/stepType.table diff --git a/eccodes/definitions/grib2/tables/21/0.0.table b/eccodes/definitions.save/grib2/tables/21/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/0.0.table rename to eccodes/definitions.save/grib2/tables/21/0.0.table diff --git a/eccodes/definitions/grib2/tables/21/1.0.table b/eccodes/definitions.save/grib2/tables/21/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.0.table rename to eccodes/definitions.save/grib2/tables/21/1.0.table diff --git a/eccodes/definitions/grib2/tables/21/1.1.table b/eccodes/definitions.save/grib2/tables/21/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.1.table rename to eccodes/definitions.save/grib2/tables/21/1.1.table diff --git a/eccodes/definitions/grib2/tables/21/1.2.table b/eccodes/definitions.save/grib2/tables/21/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.2.table rename to eccodes/definitions.save/grib2/tables/21/1.2.table diff --git a/eccodes/definitions/grib2/tables/21/1.3.table b/eccodes/definitions.save/grib2/tables/21/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.3.table rename to eccodes/definitions.save/grib2/tables/21/1.3.table diff --git a/eccodes/definitions/grib2/tables/21/1.4.table b/eccodes/definitions.save/grib2/tables/21/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.4.table rename to eccodes/definitions.save/grib2/tables/21/1.4.table diff --git a/eccodes/definitions/grib2/tables/21/1.5.table b/eccodes/definitions.save/grib2/tables/21/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.5.table rename to eccodes/definitions.save/grib2/tables/21/1.5.table diff --git a/eccodes/definitions/grib2/tables/21/1.6.table b/eccodes/definitions.save/grib2/tables/21/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/1.6.table rename to eccodes/definitions.save/grib2/tables/21/1.6.table diff --git a/eccodes/definitions/grib2/tables/21/3.0.table b/eccodes/definitions.save/grib2/tables/21/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.0.table rename to eccodes/definitions.save/grib2/tables/21/3.0.table diff --git a/eccodes/definitions/grib2/tables/21/3.1.table b/eccodes/definitions.save/grib2/tables/21/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.1.table rename to eccodes/definitions.save/grib2/tables/21/3.1.table diff --git a/eccodes/definitions/grib2/tables/21/3.10.table b/eccodes/definitions.save/grib2/tables/21/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.10.table rename to eccodes/definitions.save/grib2/tables/21/3.10.table diff --git a/eccodes/definitions/grib2/tables/21/3.11.table b/eccodes/definitions.save/grib2/tables/21/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.11.table rename to eccodes/definitions.save/grib2/tables/21/3.11.table diff --git a/eccodes/definitions/grib2/tables/21/3.15.table b/eccodes/definitions.save/grib2/tables/21/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.15.table rename to eccodes/definitions.save/grib2/tables/21/3.15.table diff --git a/eccodes/definitions/grib2/tables/21/3.2.table b/eccodes/definitions.save/grib2/tables/21/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.2.table rename to eccodes/definitions.save/grib2/tables/21/3.2.table diff --git a/eccodes/definitions/grib2/tables/21/3.20.table b/eccodes/definitions.save/grib2/tables/21/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.20.table rename to eccodes/definitions.save/grib2/tables/21/3.20.table diff --git a/eccodes/definitions/grib2/tables/21/3.21.table b/eccodes/definitions.save/grib2/tables/21/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.21.table rename to eccodes/definitions.save/grib2/tables/21/3.21.table diff --git a/eccodes/definitions/grib2/tables/21/3.3.table b/eccodes/definitions.save/grib2/tables/21/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.3.table rename to eccodes/definitions.save/grib2/tables/21/3.3.table diff --git a/eccodes/definitions/grib2/tables/21/3.4.table b/eccodes/definitions.save/grib2/tables/21/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.4.table rename to eccodes/definitions.save/grib2/tables/21/3.4.table diff --git a/eccodes/definitions/grib2/tables/21/3.5.table b/eccodes/definitions.save/grib2/tables/21/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.5.table rename to eccodes/definitions.save/grib2/tables/21/3.5.table diff --git a/eccodes/definitions/grib2/tables/21/3.6.table b/eccodes/definitions.save/grib2/tables/21/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.6.table rename to eccodes/definitions.save/grib2/tables/21/3.6.table diff --git a/eccodes/definitions/grib2/tables/21/3.7.table b/eccodes/definitions.save/grib2/tables/21/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.7.table rename to eccodes/definitions.save/grib2/tables/21/3.7.table diff --git a/eccodes/definitions/grib2/tables/21/3.8.table b/eccodes/definitions.save/grib2/tables/21/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.8.table rename to eccodes/definitions.save/grib2/tables/21/3.8.table diff --git a/eccodes/definitions/grib2/tables/21/3.9.table b/eccodes/definitions.save/grib2/tables/21/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/3.9.table rename to eccodes/definitions.save/grib2/tables/21/3.9.table diff --git a/eccodes/definitions/grib2/tables/21/4.0.table b/eccodes/definitions.save/grib2/tables/21/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.0.table rename to eccodes/definitions.save/grib2/tables/21/4.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.0.table b/eccodes/definitions.save/grib2/tables/21/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.0.table rename to eccodes/definitions.save/grib2/tables/21/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.1.table b/eccodes/definitions.save/grib2/tables/21/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.1.table rename to eccodes/definitions.save/grib2/tables/21/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.10.table b/eccodes/definitions.save/grib2/tables/21/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.10.table rename to eccodes/definitions.save/grib2/tables/21/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.192.table b/eccodes/definitions.save/grib2/tables/21/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.192.table rename to eccodes/definitions.save/grib2/tables/21/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.2.table b/eccodes/definitions.save/grib2/tables/21/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.2.table rename to eccodes/definitions.save/grib2/tables/21/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/21/4.1.3.table b/eccodes/definitions.save/grib2/tables/21/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.1.3.table rename to eccodes/definitions.save/grib2/tables/21/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.10.table b/eccodes/definitions.save/grib2/tables/21/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.10.table rename to eccodes/definitions.save/grib2/tables/21/4.10.table diff --git a/eccodes/definitions/grib2/tables/21/4.11.table b/eccodes/definitions.save/grib2/tables/21/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.11.table rename to eccodes/definitions.save/grib2/tables/21/4.11.table diff --git a/eccodes/definitions/grib2/tables/21/4.12.table b/eccodes/definitions.save/grib2/tables/21/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.12.table rename to eccodes/definitions.save/grib2/tables/21/4.12.table diff --git a/eccodes/definitions/grib2/tables/21/4.13.table b/eccodes/definitions.save/grib2/tables/21/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.13.table rename to eccodes/definitions.save/grib2/tables/21/4.13.table diff --git a/eccodes/definitions/grib2/tables/21/4.14.table b/eccodes/definitions.save/grib2/tables/21/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.14.table rename to eccodes/definitions.save/grib2/tables/21/4.14.table diff --git a/eccodes/definitions/grib2/tables/21/4.15.table b/eccodes/definitions.save/grib2/tables/21/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.15.table rename to eccodes/definitions.save/grib2/tables/21/4.15.table diff --git a/eccodes/definitions/grib2/tables/21/4.16.table b/eccodes/definitions.save/grib2/tables/21/4.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.16.table rename to eccodes/definitions.save/grib2/tables/21/4.16.table diff --git a/eccodes/definitions/grib2/tables/21/4.192.table b/eccodes/definitions.save/grib2/tables/21/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.192.table rename to eccodes/definitions.save/grib2/tables/21/4.192.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/21/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/21/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/21/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/21/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/21/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/21/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/21/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/21/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/21/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/21/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/21/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/21/4.201.table b/eccodes/definitions.save/grib2/tables/21/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.201.table rename to eccodes/definitions.save/grib2/tables/21/4.201.table diff --git a/eccodes/definitions/grib2/tables/21/4.202.table b/eccodes/definitions.save/grib2/tables/21/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.202.table rename to eccodes/definitions.save/grib2/tables/21/4.202.table diff --git a/eccodes/definitions/grib2/tables/21/4.203.table b/eccodes/definitions.save/grib2/tables/21/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.203.table rename to eccodes/definitions.save/grib2/tables/21/4.203.table diff --git a/eccodes/definitions/grib2/tables/21/4.204.table b/eccodes/definitions.save/grib2/tables/21/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.204.table rename to eccodes/definitions.save/grib2/tables/21/4.204.table diff --git a/eccodes/definitions/grib2/tables/21/4.205.table b/eccodes/definitions.save/grib2/tables/21/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.205.table rename to eccodes/definitions.save/grib2/tables/21/4.205.table diff --git a/eccodes/definitions/grib2/tables/21/4.206.table b/eccodes/definitions.save/grib2/tables/21/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.206.table rename to eccodes/definitions.save/grib2/tables/21/4.206.table diff --git a/eccodes/definitions/grib2/tables/21/4.207.table b/eccodes/definitions.save/grib2/tables/21/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.207.table rename to eccodes/definitions.save/grib2/tables/21/4.207.table diff --git a/eccodes/definitions/grib2/tables/21/4.208.table b/eccodes/definitions.save/grib2/tables/21/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.208.table rename to eccodes/definitions.save/grib2/tables/21/4.208.table diff --git a/eccodes/definitions/grib2/tables/21/4.209.table b/eccodes/definitions.save/grib2/tables/21/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.209.table rename to eccodes/definitions.save/grib2/tables/21/4.209.table diff --git a/eccodes/definitions/grib2/tables/21/4.210.table b/eccodes/definitions.save/grib2/tables/21/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.210.table rename to eccodes/definitions.save/grib2/tables/21/4.210.table diff --git a/eccodes/definitions/grib2/tables/21/4.211.table b/eccodes/definitions.save/grib2/tables/21/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.211.table rename to eccodes/definitions.save/grib2/tables/21/4.211.table diff --git a/eccodes/definitions/grib2/tables/21/4.212.table b/eccodes/definitions.save/grib2/tables/21/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.212.table rename to eccodes/definitions.save/grib2/tables/21/4.212.table diff --git a/eccodes/definitions/grib2/tables/21/4.213.table b/eccodes/definitions.save/grib2/tables/21/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.213.table rename to eccodes/definitions.save/grib2/tables/21/4.213.table diff --git a/eccodes/definitions/grib2/tables/21/4.215.table b/eccodes/definitions.save/grib2/tables/21/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.215.table rename to eccodes/definitions.save/grib2/tables/21/4.215.table diff --git a/eccodes/definitions/grib2/tables/21/4.216.table b/eccodes/definitions.save/grib2/tables/21/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.216.table rename to eccodes/definitions.save/grib2/tables/21/4.216.table diff --git a/eccodes/definitions/grib2/tables/21/4.217.table b/eccodes/definitions.save/grib2/tables/21/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.217.table rename to eccodes/definitions.save/grib2/tables/21/4.217.table diff --git a/eccodes/definitions/grib2/tables/21/4.218.table b/eccodes/definitions.save/grib2/tables/21/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.218.table rename to eccodes/definitions.save/grib2/tables/21/4.218.table diff --git a/eccodes/definitions/grib2/tables/21/4.219.table b/eccodes/definitions.save/grib2/tables/21/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.219.table rename to eccodes/definitions.save/grib2/tables/21/4.219.table diff --git a/eccodes/definitions/grib2/tables/21/4.220.table b/eccodes/definitions.save/grib2/tables/21/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.220.table rename to eccodes/definitions.save/grib2/tables/21/4.220.table diff --git a/eccodes/definitions/grib2/tables/21/4.221.table b/eccodes/definitions.save/grib2/tables/21/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.221.table rename to eccodes/definitions.save/grib2/tables/21/4.221.table diff --git a/eccodes/definitions/grib2/tables/21/4.222.table b/eccodes/definitions.save/grib2/tables/21/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.222.table rename to eccodes/definitions.save/grib2/tables/21/4.222.table diff --git a/eccodes/definitions/grib2/tables/21/4.223.table b/eccodes/definitions.save/grib2/tables/21/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.223.table rename to eccodes/definitions.save/grib2/tables/21/4.223.table diff --git a/eccodes/definitions/grib2/tables/21/4.224.table b/eccodes/definitions.save/grib2/tables/21/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.224.table rename to eccodes/definitions.save/grib2/tables/21/4.224.table diff --git a/eccodes/definitions/grib2/tables/21/4.225.table b/eccodes/definitions.save/grib2/tables/21/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.225.table rename to eccodes/definitions.save/grib2/tables/21/4.225.table diff --git a/eccodes/definitions/grib2/tables/21/4.227.table b/eccodes/definitions.save/grib2/tables/21/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.227.table rename to eccodes/definitions.save/grib2/tables/21/4.227.table diff --git a/eccodes/definitions/grib2/tables/21/4.230.table b/eccodes/definitions.save/grib2/tables/21/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.230.table rename to eccodes/definitions.save/grib2/tables/21/4.230.table diff --git a/eccodes/definitions/grib2/tables/21/4.233.table b/eccodes/definitions.save/grib2/tables/21/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.233.table rename to eccodes/definitions.save/grib2/tables/21/4.233.table diff --git a/eccodes/definitions/grib2/tables/21/4.234.table b/eccodes/definitions.save/grib2/tables/21/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.234.table rename to eccodes/definitions.save/grib2/tables/21/4.234.table diff --git a/eccodes/definitions/grib2/tables/21/4.236.table b/eccodes/definitions.save/grib2/tables/21/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.236.table rename to eccodes/definitions.save/grib2/tables/21/4.236.table diff --git a/eccodes/definitions/grib2/tables/21/4.238.table b/eccodes/definitions.save/grib2/tables/21/4.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.238.table rename to eccodes/definitions.save/grib2/tables/21/4.238.table diff --git a/eccodes/definitions/grib2/tables/21/4.240.table b/eccodes/definitions.save/grib2/tables/21/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.240.table rename to eccodes/definitions.save/grib2/tables/21/4.240.table diff --git a/eccodes/definitions/grib2/tables/21/4.241.table b/eccodes/definitions.save/grib2/tables/21/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.241.table rename to eccodes/definitions.save/grib2/tables/21/4.241.table diff --git a/eccodes/definitions/grib2/tables/21/4.242.table b/eccodes/definitions.save/grib2/tables/21/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.242.table rename to eccodes/definitions.save/grib2/tables/21/4.242.table diff --git a/eccodes/definitions/grib2/tables/21/4.243.table b/eccodes/definitions.save/grib2/tables/21/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.243.table rename to eccodes/definitions.save/grib2/tables/21/4.243.table diff --git a/eccodes/definitions/grib2/tables/21/4.244.table b/eccodes/definitions.save/grib2/tables/21/4.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.244.table rename to eccodes/definitions.save/grib2/tables/21/4.244.table diff --git a/eccodes/definitions/grib2/tables/21/4.3.table b/eccodes/definitions.save/grib2/tables/21/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.3.table rename to eccodes/definitions.save/grib2/tables/21/4.3.table diff --git a/eccodes/definitions/grib2/tables/21/4.4.table b/eccodes/definitions.save/grib2/tables/21/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.4.table rename to eccodes/definitions.save/grib2/tables/21/4.4.table diff --git a/eccodes/definitions/grib2/tables/21/4.5.table b/eccodes/definitions.save/grib2/tables/21/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.5.table rename to eccodes/definitions.save/grib2/tables/21/4.5.table diff --git a/eccodes/definitions/grib2/tables/21/4.6.table b/eccodes/definitions.save/grib2/tables/21/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.6.table rename to eccodes/definitions.save/grib2/tables/21/4.6.table diff --git a/eccodes/definitions/grib2/tables/21/4.7.table b/eccodes/definitions.save/grib2/tables/21/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.7.table rename to eccodes/definitions.save/grib2/tables/21/4.7.table diff --git a/eccodes/definitions/grib2/tables/21/4.8.table b/eccodes/definitions.save/grib2/tables/21/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.8.table rename to eccodes/definitions.save/grib2/tables/21/4.8.table diff --git a/eccodes/definitions/grib2/tables/21/4.9.table b/eccodes/definitions.save/grib2/tables/21/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.9.table rename to eccodes/definitions.save/grib2/tables/21/4.9.table diff --git a/eccodes/definitions/grib2/tables/21/4.91.table b/eccodes/definitions.save/grib2/tables/21/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/4.91.table rename to eccodes/definitions.save/grib2/tables/21/4.91.table diff --git a/eccodes/definitions/grib2/tables/21/5.0.table b/eccodes/definitions.save/grib2/tables/21/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.0.table rename to eccodes/definitions.save/grib2/tables/21/5.0.table diff --git a/eccodes/definitions/grib2/tables/21/5.1.table b/eccodes/definitions.save/grib2/tables/21/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.1.table rename to eccodes/definitions.save/grib2/tables/21/5.1.table diff --git a/eccodes/definitions/grib2/tables/21/5.2.table b/eccodes/definitions.save/grib2/tables/21/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.2.table rename to eccodes/definitions.save/grib2/tables/21/5.2.table diff --git a/eccodes/definitions/grib2/tables/21/5.3.table b/eccodes/definitions.save/grib2/tables/21/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.3.table rename to eccodes/definitions.save/grib2/tables/21/5.3.table diff --git a/eccodes/definitions/grib2/tables/21/5.4.table b/eccodes/definitions.save/grib2/tables/21/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.4.table rename to eccodes/definitions.save/grib2/tables/21/5.4.table diff --git a/eccodes/definitions/grib2/tables/21/5.40.table b/eccodes/definitions.save/grib2/tables/21/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.40.table rename to eccodes/definitions.save/grib2/tables/21/5.40.table diff --git a/eccodes/definitions/grib2/tables/21/5.40000.table b/eccodes/definitions.save/grib2/tables/21/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.40000.table rename to eccodes/definitions.save/grib2/tables/21/5.40000.table diff --git a/eccodes/definitions/grib2/tables/21/5.5.table b/eccodes/definitions.save/grib2/tables/21/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.5.table rename to eccodes/definitions.save/grib2/tables/21/5.5.table diff --git a/eccodes/definitions/grib2/tables/21/5.50002.table b/eccodes/definitions.save/grib2/tables/21/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.50002.table rename to eccodes/definitions.save/grib2/tables/21/5.50002.table diff --git a/eccodes/definitions/grib2/tables/21/5.6.table b/eccodes/definitions.save/grib2/tables/21/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.6.table rename to eccodes/definitions.save/grib2/tables/21/5.6.table diff --git a/eccodes/definitions/grib2/tables/21/5.7.table b/eccodes/definitions.save/grib2/tables/21/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/5.7.table rename to eccodes/definitions.save/grib2/tables/21/5.7.table diff --git a/eccodes/definitions/grib2/tables/21/6.0.table b/eccodes/definitions.save/grib2/tables/21/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/6.0.table rename to eccodes/definitions.save/grib2/tables/21/6.0.table diff --git a/eccodes/definitions/grib2/tables/21/stepType.table b/eccodes/definitions.save/grib2/tables/21/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/21/stepType.table rename to eccodes/definitions.save/grib2/tables/21/stepType.table diff --git a/eccodes/definitions/grib2/tables/22/1.4.table b/eccodes/definitions.save/grib2/tables/22/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/1.4.table rename to eccodes/definitions.save/grib2/tables/22/1.4.table diff --git a/eccodes/definitions/grib2/tables/22/3.15.table b/eccodes/definitions.save/grib2/tables/22/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/3.15.table rename to eccodes/definitions.save/grib2/tables/22/3.15.table diff --git a/eccodes/definitions/grib2/tables/22/4.10.table b/eccodes/definitions.save/grib2/tables/22/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/4.10.table rename to eccodes/definitions.save/grib2/tables/22/4.10.table diff --git a/eccodes/definitions/grib2/tables/22/4.230.table b/eccodes/definitions.save/grib2/tables/22/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/4.230.table rename to eccodes/definitions.save/grib2/tables/22/4.230.table diff --git a/eccodes/definitions/grib2/tables/22/4.4.table b/eccodes/definitions.save/grib2/tables/22/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/4.4.table rename to eccodes/definitions.save/grib2/tables/22/4.4.table diff --git a/eccodes/definitions/grib2/tables/22/4.5.table b/eccodes/definitions.save/grib2/tables/22/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/4.5.table rename to eccodes/definitions.save/grib2/tables/22/4.5.table diff --git a/eccodes/definitions/grib2/tables/22/4.91.table b/eccodes/definitions.save/grib2/tables/22/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/22/4.91.table rename to eccodes/definitions.save/grib2/tables/22/4.91.table diff --git a/eccodes/definitions/grib2/tables/23/0.0.table b/eccodes/definitions.save/grib2/tables/23/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/0.0.table rename to eccodes/definitions.save/grib2/tables/23/0.0.table diff --git a/eccodes/definitions/grib2/tables/23/1.0.table b/eccodes/definitions.save/grib2/tables/23/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.0.table rename to eccodes/definitions.save/grib2/tables/23/1.0.table diff --git a/eccodes/definitions/grib2/tables/23/1.1.table b/eccodes/definitions.save/grib2/tables/23/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.1.table rename to eccodes/definitions.save/grib2/tables/23/1.1.table diff --git a/eccodes/definitions/grib2/tables/23/1.2.table b/eccodes/definitions.save/grib2/tables/23/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.2.table rename to eccodes/definitions.save/grib2/tables/23/1.2.table diff --git a/eccodes/definitions/grib2/tables/23/1.3.table b/eccodes/definitions.save/grib2/tables/23/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.3.table rename to eccodes/definitions.save/grib2/tables/23/1.3.table diff --git a/eccodes/definitions/grib2/tables/23/1.4.table b/eccodes/definitions.save/grib2/tables/23/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.4.table rename to eccodes/definitions.save/grib2/tables/23/1.4.table diff --git a/eccodes/definitions/grib2/tables/23/1.5.table b/eccodes/definitions.save/grib2/tables/23/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.5.table rename to eccodes/definitions.save/grib2/tables/23/1.5.table diff --git a/eccodes/definitions/grib2/tables/23/1.6.table b/eccodes/definitions.save/grib2/tables/23/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/1.6.table rename to eccodes/definitions.save/grib2/tables/23/1.6.table diff --git a/eccodes/definitions/grib2/tables/23/3.0.table b/eccodes/definitions.save/grib2/tables/23/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.0.table rename to eccodes/definitions.save/grib2/tables/23/3.0.table diff --git a/eccodes/definitions/grib2/tables/23/3.1.table b/eccodes/definitions.save/grib2/tables/23/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.1.table rename to eccodes/definitions.save/grib2/tables/23/3.1.table diff --git a/eccodes/definitions/grib2/tables/23/3.10.table b/eccodes/definitions.save/grib2/tables/23/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.10.table rename to eccodes/definitions.save/grib2/tables/23/3.10.table diff --git a/eccodes/definitions/grib2/tables/23/3.11.table b/eccodes/definitions.save/grib2/tables/23/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.11.table rename to eccodes/definitions.save/grib2/tables/23/3.11.table diff --git a/eccodes/definitions/grib2/tables/23/3.15.table b/eccodes/definitions.save/grib2/tables/23/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.15.table rename to eccodes/definitions.save/grib2/tables/23/3.15.table diff --git a/eccodes/definitions/grib2/tables/23/3.2.table b/eccodes/definitions.save/grib2/tables/23/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.2.table rename to eccodes/definitions.save/grib2/tables/23/3.2.table diff --git a/eccodes/definitions/grib2/tables/23/3.20.table b/eccodes/definitions.save/grib2/tables/23/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.20.table rename to eccodes/definitions.save/grib2/tables/23/3.20.table diff --git a/eccodes/definitions/grib2/tables/23/3.21.table b/eccodes/definitions.save/grib2/tables/23/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.21.table rename to eccodes/definitions.save/grib2/tables/23/3.21.table diff --git a/eccodes/definitions/grib2/tables/23/3.25.table b/eccodes/definitions.save/grib2/tables/23/3.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.25.table rename to eccodes/definitions.save/grib2/tables/23/3.25.table diff --git a/eccodes/definitions/grib2/tables/23/3.3.table b/eccodes/definitions.save/grib2/tables/23/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.3.table rename to eccodes/definitions.save/grib2/tables/23/3.3.table diff --git a/eccodes/definitions/grib2/tables/23/3.4.table b/eccodes/definitions.save/grib2/tables/23/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.4.table rename to eccodes/definitions.save/grib2/tables/23/3.4.table diff --git a/eccodes/definitions/grib2/tables/23/3.5.table b/eccodes/definitions.save/grib2/tables/23/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.5.table rename to eccodes/definitions.save/grib2/tables/23/3.5.table diff --git a/eccodes/definitions/grib2/tables/23/3.6.table b/eccodes/definitions.save/grib2/tables/23/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.6.table rename to eccodes/definitions.save/grib2/tables/23/3.6.table diff --git a/eccodes/definitions/grib2/tables/23/3.7.table b/eccodes/definitions.save/grib2/tables/23/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.7.table rename to eccodes/definitions.save/grib2/tables/23/3.7.table diff --git a/eccodes/definitions/grib2/tables/23/3.8.table b/eccodes/definitions.save/grib2/tables/23/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.8.table rename to eccodes/definitions.save/grib2/tables/23/3.8.table diff --git a/eccodes/definitions/grib2/tables/23/3.9.table b/eccodes/definitions.save/grib2/tables/23/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/3.9.table rename to eccodes/definitions.save/grib2/tables/23/3.9.table diff --git a/eccodes/definitions/grib2/tables/23/4.0.table b/eccodes/definitions.save/grib2/tables/23/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.0.table rename to eccodes/definitions.save/grib2/tables/23/4.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.0.table b/eccodes/definitions.save/grib2/tables/23/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.0.table rename to eccodes/definitions.save/grib2/tables/23/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.1.table b/eccodes/definitions.save/grib2/tables/23/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.1.table rename to eccodes/definitions.save/grib2/tables/23/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.10.table b/eccodes/definitions.save/grib2/tables/23/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.10.table rename to eccodes/definitions.save/grib2/tables/23/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.192.table b/eccodes/definitions.save/grib2/tables/23/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.192.table rename to eccodes/definitions.save/grib2/tables/23/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.2.table b/eccodes/definitions.save/grib2/tables/23/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.2.table rename to eccodes/definitions.save/grib2/tables/23/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/23/4.1.3.table b/eccodes/definitions.save/grib2/tables/23/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.1.3.table rename to eccodes/definitions.save/grib2/tables/23/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.10.table b/eccodes/definitions.save/grib2/tables/23/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.10.table rename to eccodes/definitions.save/grib2/tables/23/4.10.table diff --git a/eccodes/definitions/grib2/tables/23/4.11.table b/eccodes/definitions.save/grib2/tables/23/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.11.table rename to eccodes/definitions.save/grib2/tables/23/4.11.table diff --git a/eccodes/definitions/grib2/tables/23/4.12.table b/eccodes/definitions.save/grib2/tables/23/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.12.table rename to eccodes/definitions.save/grib2/tables/23/4.12.table diff --git a/eccodes/definitions/grib2/tables/23/4.13.table b/eccodes/definitions.save/grib2/tables/23/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.13.table rename to eccodes/definitions.save/grib2/tables/23/4.13.table diff --git a/eccodes/definitions/grib2/tables/23/4.14.table b/eccodes/definitions.save/grib2/tables/23/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.14.table rename to eccodes/definitions.save/grib2/tables/23/4.14.table diff --git a/eccodes/definitions/grib2/tables/23/4.15.table b/eccodes/definitions.save/grib2/tables/23/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.15.table rename to eccodes/definitions.save/grib2/tables/23/4.15.table diff --git a/eccodes/definitions/grib2/tables/23/4.16.table b/eccodes/definitions.save/grib2/tables/23/4.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.16.table rename to eccodes/definitions.save/grib2/tables/23/4.16.table diff --git a/eccodes/definitions/grib2/tables/23/4.192.table b/eccodes/definitions.save/grib2/tables/23/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.192.table rename to eccodes/definitions.save/grib2/tables/23/4.192.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/23/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/23/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/23/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/23/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/23/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/23/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/23/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/23/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/23/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/23/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/23/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/23/4.201.table b/eccodes/definitions.save/grib2/tables/23/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.201.table rename to eccodes/definitions.save/grib2/tables/23/4.201.table diff --git a/eccodes/definitions/grib2/tables/23/4.202.table b/eccodes/definitions.save/grib2/tables/23/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.202.table rename to eccodes/definitions.save/grib2/tables/23/4.202.table diff --git a/eccodes/definitions/grib2/tables/23/4.203.table b/eccodes/definitions.save/grib2/tables/23/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.203.table rename to eccodes/definitions.save/grib2/tables/23/4.203.table diff --git a/eccodes/definitions/grib2/tables/23/4.204.table b/eccodes/definitions.save/grib2/tables/23/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.204.table rename to eccodes/definitions.save/grib2/tables/23/4.204.table diff --git a/eccodes/definitions/grib2/tables/23/4.205.table b/eccodes/definitions.save/grib2/tables/23/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.205.table rename to eccodes/definitions.save/grib2/tables/23/4.205.table diff --git a/eccodes/definitions/grib2/tables/23/4.206.table b/eccodes/definitions.save/grib2/tables/23/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.206.table rename to eccodes/definitions.save/grib2/tables/23/4.206.table diff --git a/eccodes/definitions/grib2/tables/23/4.207.table b/eccodes/definitions.save/grib2/tables/23/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.207.table rename to eccodes/definitions.save/grib2/tables/23/4.207.table diff --git a/eccodes/definitions/grib2/tables/23/4.208.table b/eccodes/definitions.save/grib2/tables/23/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.208.table rename to eccodes/definitions.save/grib2/tables/23/4.208.table diff --git a/eccodes/definitions/grib2/tables/23/4.209.table b/eccodes/definitions.save/grib2/tables/23/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.209.table rename to eccodes/definitions.save/grib2/tables/23/4.209.table diff --git a/eccodes/definitions/grib2/tables/23/4.210.table b/eccodes/definitions.save/grib2/tables/23/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.210.table rename to eccodes/definitions.save/grib2/tables/23/4.210.table diff --git a/eccodes/definitions/grib2/tables/23/4.211.table b/eccodes/definitions.save/grib2/tables/23/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.211.table rename to eccodes/definitions.save/grib2/tables/23/4.211.table diff --git a/eccodes/definitions/grib2/tables/23/4.212.table b/eccodes/definitions.save/grib2/tables/23/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.212.table rename to eccodes/definitions.save/grib2/tables/23/4.212.table diff --git a/eccodes/definitions/grib2/tables/23/4.213.table b/eccodes/definitions.save/grib2/tables/23/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.213.table rename to eccodes/definitions.save/grib2/tables/23/4.213.table diff --git a/eccodes/definitions/grib2/tables/23/4.215.table b/eccodes/definitions.save/grib2/tables/23/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.215.table rename to eccodes/definitions.save/grib2/tables/23/4.215.table diff --git a/eccodes/definitions/grib2/tables/23/4.216.table b/eccodes/definitions.save/grib2/tables/23/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.216.table rename to eccodes/definitions.save/grib2/tables/23/4.216.table diff --git a/eccodes/definitions/grib2/tables/23/4.217.table b/eccodes/definitions.save/grib2/tables/23/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.217.table rename to eccodes/definitions.save/grib2/tables/23/4.217.table diff --git a/eccodes/definitions/grib2/tables/23/4.218.table b/eccodes/definitions.save/grib2/tables/23/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.218.table rename to eccodes/definitions.save/grib2/tables/23/4.218.table diff --git a/eccodes/definitions/grib2/tables/23/4.219.table b/eccodes/definitions.save/grib2/tables/23/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.219.table rename to eccodes/definitions.save/grib2/tables/23/4.219.table diff --git a/eccodes/definitions/grib2/tables/23/4.220.table b/eccodes/definitions.save/grib2/tables/23/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.220.table rename to eccodes/definitions.save/grib2/tables/23/4.220.table diff --git a/eccodes/definitions/grib2/tables/23/4.221.table b/eccodes/definitions.save/grib2/tables/23/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.221.table rename to eccodes/definitions.save/grib2/tables/23/4.221.table diff --git a/eccodes/definitions/grib2/tables/23/4.222.table b/eccodes/definitions.save/grib2/tables/23/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.222.table rename to eccodes/definitions.save/grib2/tables/23/4.222.table diff --git a/eccodes/definitions/grib2/tables/23/4.223.table b/eccodes/definitions.save/grib2/tables/23/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.223.table rename to eccodes/definitions.save/grib2/tables/23/4.223.table diff --git a/eccodes/definitions/grib2/tables/23/4.224.table b/eccodes/definitions.save/grib2/tables/23/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.224.table rename to eccodes/definitions.save/grib2/tables/23/4.224.table diff --git a/eccodes/definitions/grib2/tables/23/4.225.table b/eccodes/definitions.save/grib2/tables/23/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.225.table rename to eccodes/definitions.save/grib2/tables/23/4.225.table diff --git a/eccodes/definitions/grib2/tables/23/4.227.table b/eccodes/definitions.save/grib2/tables/23/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.227.table rename to eccodes/definitions.save/grib2/tables/23/4.227.table diff --git a/eccodes/definitions/grib2/tables/23/4.230.table b/eccodes/definitions.save/grib2/tables/23/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.230.table rename to eccodes/definitions.save/grib2/tables/23/4.230.table diff --git a/eccodes/definitions/grib2/tables/23/4.233.table b/eccodes/definitions.save/grib2/tables/23/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.233.table rename to eccodes/definitions.save/grib2/tables/23/4.233.table diff --git a/eccodes/definitions/grib2/tables/23/4.234.table b/eccodes/definitions.save/grib2/tables/23/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.234.table rename to eccodes/definitions.save/grib2/tables/23/4.234.table diff --git a/eccodes/definitions/grib2/tables/23/4.236.table b/eccodes/definitions.save/grib2/tables/23/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.236.table rename to eccodes/definitions.save/grib2/tables/23/4.236.table diff --git a/eccodes/definitions/grib2/tables/23/4.240.table b/eccodes/definitions.save/grib2/tables/23/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.240.table rename to eccodes/definitions.save/grib2/tables/23/4.240.table diff --git a/eccodes/definitions/grib2/tables/23/4.241.table b/eccodes/definitions.save/grib2/tables/23/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.241.table rename to eccodes/definitions.save/grib2/tables/23/4.241.table diff --git a/eccodes/definitions/grib2/tables/23/4.242.table b/eccodes/definitions.save/grib2/tables/23/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.242.table rename to eccodes/definitions.save/grib2/tables/23/4.242.table diff --git a/eccodes/definitions/grib2/tables/23/4.243.table b/eccodes/definitions.save/grib2/tables/23/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.243.table rename to eccodes/definitions.save/grib2/tables/23/4.243.table diff --git a/eccodes/definitions/grib2/tables/23/4.244.table b/eccodes/definitions.save/grib2/tables/23/4.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.244.table rename to eccodes/definitions.save/grib2/tables/23/4.244.table diff --git a/eccodes/definitions/grib2/tables/23/4.3.table b/eccodes/definitions.save/grib2/tables/23/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.3.table rename to eccodes/definitions.save/grib2/tables/23/4.3.table diff --git a/eccodes/definitions/grib2/tables/23/4.4.table b/eccodes/definitions.save/grib2/tables/23/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.4.table rename to eccodes/definitions.save/grib2/tables/23/4.4.table diff --git a/eccodes/definitions/grib2/tables/23/4.5.table b/eccodes/definitions.save/grib2/tables/23/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.5.table rename to eccodes/definitions.save/grib2/tables/23/4.5.table diff --git a/eccodes/definitions/grib2/tables/23/4.6.table b/eccodes/definitions.save/grib2/tables/23/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.6.table rename to eccodes/definitions.save/grib2/tables/23/4.6.table diff --git a/eccodes/definitions/grib2/tables/23/4.7.table b/eccodes/definitions.save/grib2/tables/23/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.7.table rename to eccodes/definitions.save/grib2/tables/23/4.7.table diff --git a/eccodes/definitions/grib2/tables/23/4.8.table b/eccodes/definitions.save/grib2/tables/23/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.8.table rename to eccodes/definitions.save/grib2/tables/23/4.8.table diff --git a/eccodes/definitions/grib2/tables/23/4.9.table b/eccodes/definitions.save/grib2/tables/23/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.9.table rename to eccodes/definitions.save/grib2/tables/23/4.9.table diff --git a/eccodes/definitions/grib2/tables/23/4.91.table b/eccodes/definitions.save/grib2/tables/23/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/4.91.table rename to eccodes/definitions.save/grib2/tables/23/4.91.table diff --git a/eccodes/definitions/grib2/tables/23/5.0.table b/eccodes/definitions.save/grib2/tables/23/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.0.table rename to eccodes/definitions.save/grib2/tables/23/5.0.table diff --git a/eccodes/definitions/grib2/tables/23/5.1.table b/eccodes/definitions.save/grib2/tables/23/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.1.table rename to eccodes/definitions.save/grib2/tables/23/5.1.table diff --git a/eccodes/definitions/grib2/tables/23/5.2.table b/eccodes/definitions.save/grib2/tables/23/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.2.table rename to eccodes/definitions.save/grib2/tables/23/5.2.table diff --git a/eccodes/definitions/grib2/tables/23/5.25.table b/eccodes/definitions.save/grib2/tables/23/5.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.25.table rename to eccodes/definitions.save/grib2/tables/23/5.25.table diff --git a/eccodes/definitions/grib2/tables/23/5.26.table b/eccodes/definitions.save/grib2/tables/23/5.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.26.table rename to eccodes/definitions.save/grib2/tables/23/5.26.table diff --git a/eccodes/definitions/grib2/tables/23/5.3.table b/eccodes/definitions.save/grib2/tables/23/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.3.table rename to eccodes/definitions.save/grib2/tables/23/5.3.table diff --git a/eccodes/definitions/grib2/tables/23/5.4.table b/eccodes/definitions.save/grib2/tables/23/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.4.table rename to eccodes/definitions.save/grib2/tables/23/5.4.table diff --git a/eccodes/definitions/grib2/tables/23/5.40.table b/eccodes/definitions.save/grib2/tables/23/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.40.table rename to eccodes/definitions.save/grib2/tables/23/5.40.table diff --git a/eccodes/definitions/grib2/tables/23/5.40000.table b/eccodes/definitions.save/grib2/tables/23/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.40000.table rename to eccodes/definitions.save/grib2/tables/23/5.40000.table diff --git a/eccodes/definitions/grib2/tables/23/5.5.table b/eccodes/definitions.save/grib2/tables/23/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.5.table rename to eccodes/definitions.save/grib2/tables/23/5.5.table diff --git a/eccodes/definitions/grib2/tables/23/5.50002.table b/eccodes/definitions.save/grib2/tables/23/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.50002.table rename to eccodes/definitions.save/grib2/tables/23/5.50002.table diff --git a/eccodes/definitions/grib2/tables/23/5.6.table b/eccodes/definitions.save/grib2/tables/23/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.6.table rename to eccodes/definitions.save/grib2/tables/23/5.6.table diff --git a/eccodes/definitions/grib2/tables/23/5.7.table b/eccodes/definitions.save/grib2/tables/23/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/5.7.table rename to eccodes/definitions.save/grib2/tables/23/5.7.table diff --git a/eccodes/definitions/grib2/tables/23/6.0.table b/eccodes/definitions.save/grib2/tables/23/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/6.0.table rename to eccodes/definitions.save/grib2/tables/23/6.0.table diff --git a/eccodes/definitions/grib2/tables/23/stepType.table b/eccodes/definitions.save/grib2/tables/23/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/23/stepType.table rename to eccodes/definitions.save/grib2/tables/23/stepType.table diff --git a/eccodes/definitions/grib2/tables/24/0.0.table b/eccodes/definitions.save/grib2/tables/24/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/0.0.table rename to eccodes/definitions.save/grib2/tables/24/0.0.table diff --git a/eccodes/definitions/grib2/tables/24/1.0.table b/eccodes/definitions.save/grib2/tables/24/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.0.table rename to eccodes/definitions.save/grib2/tables/24/1.0.table diff --git a/eccodes/definitions/grib2/tables/24/1.1.table b/eccodes/definitions.save/grib2/tables/24/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.1.table rename to eccodes/definitions.save/grib2/tables/24/1.1.table diff --git a/eccodes/definitions/grib2/tables/24/1.2.table b/eccodes/definitions.save/grib2/tables/24/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.2.table rename to eccodes/definitions.save/grib2/tables/24/1.2.table diff --git a/eccodes/definitions/grib2/tables/24/1.3.table b/eccodes/definitions.save/grib2/tables/24/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.3.table rename to eccodes/definitions.save/grib2/tables/24/1.3.table diff --git a/eccodes/definitions/grib2/tables/24/1.4.table b/eccodes/definitions.save/grib2/tables/24/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.4.table rename to eccodes/definitions.save/grib2/tables/24/1.4.table diff --git a/eccodes/definitions/grib2/tables/24/1.5.table b/eccodes/definitions.save/grib2/tables/24/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.5.table rename to eccodes/definitions.save/grib2/tables/24/1.5.table diff --git a/eccodes/definitions/grib2/tables/24/1.6.table b/eccodes/definitions.save/grib2/tables/24/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/1.6.table rename to eccodes/definitions.save/grib2/tables/24/1.6.table diff --git a/eccodes/definitions/grib2/tables/24/3.0.table b/eccodes/definitions.save/grib2/tables/24/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.0.table rename to eccodes/definitions.save/grib2/tables/24/3.0.table diff --git a/eccodes/definitions/grib2/tables/24/3.1.table b/eccodes/definitions.save/grib2/tables/24/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.1.table rename to eccodes/definitions.save/grib2/tables/24/3.1.table diff --git a/eccodes/definitions/grib2/tables/24/3.10.table b/eccodes/definitions.save/grib2/tables/24/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.10.table rename to eccodes/definitions.save/grib2/tables/24/3.10.table diff --git a/eccodes/definitions/grib2/tables/24/3.11.table b/eccodes/definitions.save/grib2/tables/24/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.11.table rename to eccodes/definitions.save/grib2/tables/24/3.11.table diff --git a/eccodes/definitions/grib2/tables/24/3.15.table b/eccodes/definitions.save/grib2/tables/24/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.15.table rename to eccodes/definitions.save/grib2/tables/24/3.15.table diff --git a/eccodes/definitions/grib2/tables/24/3.2.table b/eccodes/definitions.save/grib2/tables/24/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.2.table rename to eccodes/definitions.save/grib2/tables/24/3.2.table diff --git a/eccodes/definitions/grib2/tables/24/3.20.table b/eccodes/definitions.save/grib2/tables/24/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.20.table rename to eccodes/definitions.save/grib2/tables/24/3.20.table diff --git a/eccodes/definitions/grib2/tables/24/3.21.table b/eccodes/definitions.save/grib2/tables/24/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.21.table rename to eccodes/definitions.save/grib2/tables/24/3.21.table diff --git a/eccodes/definitions/grib2/tables/24/3.25.table b/eccodes/definitions.save/grib2/tables/24/3.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.25.table rename to eccodes/definitions.save/grib2/tables/24/3.25.table diff --git a/eccodes/definitions/grib2/tables/24/3.3.table b/eccodes/definitions.save/grib2/tables/24/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.3.table rename to eccodes/definitions.save/grib2/tables/24/3.3.table diff --git a/eccodes/definitions/grib2/tables/24/3.4.table b/eccodes/definitions.save/grib2/tables/24/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.4.table rename to eccodes/definitions.save/grib2/tables/24/3.4.table diff --git a/eccodes/definitions/grib2/tables/24/3.5.table b/eccodes/definitions.save/grib2/tables/24/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.5.table rename to eccodes/definitions.save/grib2/tables/24/3.5.table diff --git a/eccodes/definitions/grib2/tables/24/3.6.table b/eccodes/definitions.save/grib2/tables/24/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.6.table rename to eccodes/definitions.save/grib2/tables/24/3.6.table diff --git a/eccodes/definitions/grib2/tables/24/3.7.table b/eccodes/definitions.save/grib2/tables/24/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.7.table rename to eccodes/definitions.save/grib2/tables/24/3.7.table diff --git a/eccodes/definitions/grib2/tables/24/3.8.table b/eccodes/definitions.save/grib2/tables/24/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.8.table rename to eccodes/definitions.save/grib2/tables/24/3.8.table diff --git a/eccodes/definitions/grib2/tables/24/3.9.table b/eccodes/definitions.save/grib2/tables/24/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/3.9.table rename to eccodes/definitions.save/grib2/tables/24/3.9.table diff --git a/eccodes/definitions/grib2/tables/24/4.0.table b/eccodes/definitions.save/grib2/tables/24/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.0.table rename to eccodes/definitions.save/grib2/tables/24/4.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.0.table b/eccodes/definitions.save/grib2/tables/24/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.0.table rename to eccodes/definitions.save/grib2/tables/24/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.1.table b/eccodes/definitions.save/grib2/tables/24/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.1.table rename to eccodes/definitions.save/grib2/tables/24/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.10.table b/eccodes/definitions.save/grib2/tables/24/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.10.table rename to eccodes/definitions.save/grib2/tables/24/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.192.table b/eccodes/definitions.save/grib2/tables/24/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.192.table rename to eccodes/definitions.save/grib2/tables/24/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.2.table b/eccodes/definitions.save/grib2/tables/24/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.2.table rename to eccodes/definitions.save/grib2/tables/24/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/24/4.1.3.table b/eccodes/definitions.save/grib2/tables/24/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.1.3.table rename to eccodes/definitions.save/grib2/tables/24/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.10.table b/eccodes/definitions.save/grib2/tables/24/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.10.table rename to eccodes/definitions.save/grib2/tables/24/4.10.table diff --git a/eccodes/definitions/grib2/tables/24/4.11.table b/eccodes/definitions.save/grib2/tables/24/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.11.table rename to eccodes/definitions.save/grib2/tables/24/4.11.table diff --git a/eccodes/definitions/grib2/tables/24/4.12.table b/eccodes/definitions.save/grib2/tables/24/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.12.table rename to eccodes/definitions.save/grib2/tables/24/4.12.table diff --git a/eccodes/definitions/grib2/tables/24/4.13.table b/eccodes/definitions.save/grib2/tables/24/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.13.table rename to eccodes/definitions.save/grib2/tables/24/4.13.table diff --git a/eccodes/definitions/grib2/tables/24/4.14.table b/eccodes/definitions.save/grib2/tables/24/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.14.table rename to eccodes/definitions.save/grib2/tables/24/4.14.table diff --git a/eccodes/definitions/grib2/tables/24/4.15.table b/eccodes/definitions.save/grib2/tables/24/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.15.table rename to eccodes/definitions.save/grib2/tables/24/4.15.table diff --git a/eccodes/definitions/grib2/tables/24/4.16.table b/eccodes/definitions.save/grib2/tables/24/4.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.16.table rename to eccodes/definitions.save/grib2/tables/24/4.16.table diff --git a/eccodes/definitions/grib2/tables/24/4.192.table b/eccodes/definitions.save/grib2/tables/24/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.192.table rename to eccodes/definitions.save/grib2/tables/24/4.192.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/24/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/24/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/24/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/24/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/24/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/24/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/24/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/24/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/24/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/24/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/24/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/24/4.201.table b/eccodes/definitions.save/grib2/tables/24/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.201.table rename to eccodes/definitions.save/grib2/tables/24/4.201.table diff --git a/eccodes/definitions/grib2/tables/24/4.202.table b/eccodes/definitions.save/grib2/tables/24/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.202.table rename to eccodes/definitions.save/grib2/tables/24/4.202.table diff --git a/eccodes/definitions/grib2/tables/24/4.203.table b/eccodes/definitions.save/grib2/tables/24/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.203.table rename to eccodes/definitions.save/grib2/tables/24/4.203.table diff --git a/eccodes/definitions/grib2/tables/24/4.204.table b/eccodes/definitions.save/grib2/tables/24/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.204.table rename to eccodes/definitions.save/grib2/tables/24/4.204.table diff --git a/eccodes/definitions/grib2/tables/24/4.205.table b/eccodes/definitions.save/grib2/tables/24/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.205.table rename to eccodes/definitions.save/grib2/tables/24/4.205.table diff --git a/eccodes/definitions/grib2/tables/24/4.206.table b/eccodes/definitions.save/grib2/tables/24/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.206.table rename to eccodes/definitions.save/grib2/tables/24/4.206.table diff --git a/eccodes/definitions/grib2/tables/24/4.207.table b/eccodes/definitions.save/grib2/tables/24/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.207.table rename to eccodes/definitions.save/grib2/tables/24/4.207.table diff --git a/eccodes/definitions/grib2/tables/24/4.208.table b/eccodes/definitions.save/grib2/tables/24/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.208.table rename to eccodes/definitions.save/grib2/tables/24/4.208.table diff --git a/eccodes/definitions/grib2/tables/24/4.209.table b/eccodes/definitions.save/grib2/tables/24/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.209.table rename to eccodes/definitions.save/grib2/tables/24/4.209.table diff --git a/eccodes/definitions/grib2/tables/24/4.210.table b/eccodes/definitions.save/grib2/tables/24/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.210.table rename to eccodes/definitions.save/grib2/tables/24/4.210.table diff --git a/eccodes/definitions/grib2/tables/24/4.211.table b/eccodes/definitions.save/grib2/tables/24/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.211.table rename to eccodes/definitions.save/grib2/tables/24/4.211.table diff --git a/eccodes/definitions/grib2/tables/24/4.212.table b/eccodes/definitions.save/grib2/tables/24/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.212.table rename to eccodes/definitions.save/grib2/tables/24/4.212.table diff --git a/eccodes/definitions/grib2/tables/24/4.213.table b/eccodes/definitions.save/grib2/tables/24/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.213.table rename to eccodes/definitions.save/grib2/tables/24/4.213.table diff --git a/eccodes/definitions/grib2/tables/24/4.215.table b/eccodes/definitions.save/grib2/tables/24/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.215.table rename to eccodes/definitions.save/grib2/tables/24/4.215.table diff --git a/eccodes/definitions/grib2/tables/24/4.216.table b/eccodes/definitions.save/grib2/tables/24/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.216.table rename to eccodes/definitions.save/grib2/tables/24/4.216.table diff --git a/eccodes/definitions/grib2/tables/24/4.217.table b/eccodes/definitions.save/grib2/tables/24/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.217.table rename to eccodes/definitions.save/grib2/tables/24/4.217.table diff --git a/eccodes/definitions/grib2/tables/24/4.218.table b/eccodes/definitions.save/grib2/tables/24/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.218.table rename to eccodes/definitions.save/grib2/tables/24/4.218.table diff --git a/eccodes/definitions/grib2/tables/24/4.219.table b/eccodes/definitions.save/grib2/tables/24/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.219.table rename to eccodes/definitions.save/grib2/tables/24/4.219.table diff --git a/eccodes/definitions/grib2/tables/24/4.220.table b/eccodes/definitions.save/grib2/tables/24/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.220.table rename to eccodes/definitions.save/grib2/tables/24/4.220.table diff --git a/eccodes/definitions/grib2/tables/24/4.221.table b/eccodes/definitions.save/grib2/tables/24/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.221.table rename to eccodes/definitions.save/grib2/tables/24/4.221.table diff --git a/eccodes/definitions/grib2/tables/24/4.222.table b/eccodes/definitions.save/grib2/tables/24/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.222.table rename to eccodes/definitions.save/grib2/tables/24/4.222.table diff --git a/eccodes/definitions/grib2/tables/24/4.223.table b/eccodes/definitions.save/grib2/tables/24/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.223.table rename to eccodes/definitions.save/grib2/tables/24/4.223.table diff --git a/eccodes/definitions/grib2/tables/24/4.224.table b/eccodes/definitions.save/grib2/tables/24/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.224.table rename to eccodes/definitions.save/grib2/tables/24/4.224.table diff --git a/eccodes/definitions/grib2/tables/24/4.225.table b/eccodes/definitions.save/grib2/tables/24/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.225.table rename to eccodes/definitions.save/grib2/tables/24/4.225.table diff --git a/eccodes/definitions/grib2/tables/24/4.227.table b/eccodes/definitions.save/grib2/tables/24/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.227.table rename to eccodes/definitions.save/grib2/tables/24/4.227.table diff --git a/eccodes/definitions/grib2/tables/24/4.230.table b/eccodes/definitions.save/grib2/tables/24/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.230.table rename to eccodes/definitions.save/grib2/tables/24/4.230.table diff --git a/eccodes/definitions/grib2/tables/24/4.233.table b/eccodes/definitions.save/grib2/tables/24/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.233.table rename to eccodes/definitions.save/grib2/tables/24/4.233.table diff --git a/eccodes/definitions/grib2/tables/24/4.234.table b/eccodes/definitions.save/grib2/tables/24/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.234.table rename to eccodes/definitions.save/grib2/tables/24/4.234.table diff --git a/eccodes/definitions/grib2/tables/24/4.236.table b/eccodes/definitions.save/grib2/tables/24/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.236.table rename to eccodes/definitions.save/grib2/tables/24/4.236.table diff --git a/eccodes/definitions/grib2/tables/24/4.238.table b/eccodes/definitions.save/grib2/tables/24/4.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.238.table rename to eccodes/definitions.save/grib2/tables/24/4.238.table diff --git a/eccodes/definitions/grib2/tables/24/4.240.table b/eccodes/definitions.save/grib2/tables/24/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.240.table rename to eccodes/definitions.save/grib2/tables/24/4.240.table diff --git a/eccodes/definitions/grib2/tables/24/4.241.table b/eccodes/definitions.save/grib2/tables/24/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.241.table rename to eccodes/definitions.save/grib2/tables/24/4.241.table diff --git a/eccodes/definitions/grib2/tables/24/4.242.table b/eccodes/definitions.save/grib2/tables/24/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.242.table rename to eccodes/definitions.save/grib2/tables/24/4.242.table diff --git a/eccodes/definitions/grib2/tables/24/4.243.table b/eccodes/definitions.save/grib2/tables/24/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.243.table rename to eccodes/definitions.save/grib2/tables/24/4.243.table diff --git a/eccodes/definitions/grib2/tables/24/4.244.table b/eccodes/definitions.save/grib2/tables/24/4.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.244.table rename to eccodes/definitions.save/grib2/tables/24/4.244.table diff --git a/eccodes/definitions/grib2/tables/24/4.3.table b/eccodes/definitions.save/grib2/tables/24/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.3.table rename to eccodes/definitions.save/grib2/tables/24/4.3.table diff --git a/eccodes/definitions/grib2/tables/24/4.4.table b/eccodes/definitions.save/grib2/tables/24/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.4.table rename to eccodes/definitions.save/grib2/tables/24/4.4.table diff --git a/eccodes/definitions/grib2/tables/24/4.5.table b/eccodes/definitions.save/grib2/tables/24/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.5.table rename to eccodes/definitions.save/grib2/tables/24/4.5.table diff --git a/eccodes/definitions/grib2/tables/24/4.6.table b/eccodes/definitions.save/grib2/tables/24/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.6.table rename to eccodes/definitions.save/grib2/tables/24/4.6.table diff --git a/eccodes/definitions/grib2/tables/24/4.7.table b/eccodes/definitions.save/grib2/tables/24/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.7.table rename to eccodes/definitions.save/grib2/tables/24/4.7.table diff --git a/eccodes/definitions/grib2/tables/24/4.8.table b/eccodes/definitions.save/grib2/tables/24/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.8.table rename to eccodes/definitions.save/grib2/tables/24/4.8.table diff --git a/eccodes/definitions/grib2/tables/24/4.9.table b/eccodes/definitions.save/grib2/tables/24/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.9.table rename to eccodes/definitions.save/grib2/tables/24/4.9.table diff --git a/eccodes/definitions/grib2/tables/24/4.91.table b/eccodes/definitions.save/grib2/tables/24/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/4.91.table rename to eccodes/definitions.save/grib2/tables/24/4.91.table diff --git a/eccodes/definitions/grib2/tables/24/5.0.table b/eccodes/definitions.save/grib2/tables/24/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.0.table rename to eccodes/definitions.save/grib2/tables/24/5.0.table diff --git a/eccodes/definitions/grib2/tables/24/5.1.table b/eccodes/definitions.save/grib2/tables/24/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.1.table rename to eccodes/definitions.save/grib2/tables/24/5.1.table diff --git a/eccodes/definitions/grib2/tables/24/5.2.table b/eccodes/definitions.save/grib2/tables/24/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.2.table rename to eccodes/definitions.save/grib2/tables/24/5.2.table diff --git a/eccodes/definitions/grib2/tables/24/5.25.table b/eccodes/definitions.save/grib2/tables/24/5.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.25.table rename to eccodes/definitions.save/grib2/tables/24/5.25.table diff --git a/eccodes/definitions/grib2/tables/24/5.26.table b/eccodes/definitions.save/grib2/tables/24/5.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.26.table rename to eccodes/definitions.save/grib2/tables/24/5.26.table diff --git a/eccodes/definitions/grib2/tables/24/5.3.table b/eccodes/definitions.save/grib2/tables/24/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.3.table rename to eccodes/definitions.save/grib2/tables/24/5.3.table diff --git a/eccodes/definitions/grib2/tables/24/5.4.table b/eccodes/definitions.save/grib2/tables/24/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.4.table rename to eccodes/definitions.save/grib2/tables/24/5.4.table diff --git a/eccodes/definitions/grib2/tables/24/5.40.table b/eccodes/definitions.save/grib2/tables/24/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.40.table rename to eccodes/definitions.save/grib2/tables/24/5.40.table diff --git a/eccodes/definitions/grib2/tables/24/5.40000.table b/eccodes/definitions.save/grib2/tables/24/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.40000.table rename to eccodes/definitions.save/grib2/tables/24/5.40000.table diff --git a/eccodes/definitions/grib2/tables/24/5.5.table b/eccodes/definitions.save/grib2/tables/24/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.5.table rename to eccodes/definitions.save/grib2/tables/24/5.5.table diff --git a/eccodes/definitions/grib2/tables/24/5.50002.table b/eccodes/definitions.save/grib2/tables/24/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.50002.table rename to eccodes/definitions.save/grib2/tables/24/5.50002.table diff --git a/eccodes/definitions/grib2/tables/24/5.6.table b/eccodes/definitions.save/grib2/tables/24/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.6.table rename to eccodes/definitions.save/grib2/tables/24/5.6.table diff --git a/eccodes/definitions/grib2/tables/24/5.7.table b/eccodes/definitions.save/grib2/tables/24/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/5.7.table rename to eccodes/definitions.save/grib2/tables/24/5.7.table diff --git a/eccodes/definitions/grib2/tables/24/6.0.table b/eccodes/definitions.save/grib2/tables/24/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/6.0.table rename to eccodes/definitions.save/grib2/tables/24/6.0.table diff --git a/eccodes/definitions/grib2/tables/24/stepType.table b/eccodes/definitions.save/grib2/tables/24/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/24/stepType.table rename to eccodes/definitions.save/grib2/tables/24/stepType.table diff --git a/eccodes/definitions/grib2/tables/25/0.0.table b/eccodes/definitions.save/grib2/tables/25/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/0.0.table rename to eccodes/definitions.save/grib2/tables/25/0.0.table diff --git a/eccodes/definitions/grib2/tables/25/1.0.table b/eccodes/definitions.save/grib2/tables/25/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.0.table rename to eccodes/definitions.save/grib2/tables/25/1.0.table diff --git a/eccodes/definitions/grib2/tables/25/1.1.table b/eccodes/definitions.save/grib2/tables/25/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.1.table rename to eccodes/definitions.save/grib2/tables/25/1.1.table diff --git a/eccodes/definitions/grib2/tables/25/1.2.table b/eccodes/definitions.save/grib2/tables/25/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.2.table rename to eccodes/definitions.save/grib2/tables/25/1.2.table diff --git a/eccodes/definitions/grib2/tables/25/1.3.table b/eccodes/definitions.save/grib2/tables/25/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.3.table rename to eccodes/definitions.save/grib2/tables/25/1.3.table diff --git a/eccodes/definitions/grib2/tables/25/1.4.table b/eccodes/definitions.save/grib2/tables/25/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.4.table rename to eccodes/definitions.save/grib2/tables/25/1.4.table diff --git a/eccodes/definitions/grib2/tables/25/1.5.table b/eccodes/definitions.save/grib2/tables/25/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.5.table rename to eccodes/definitions.save/grib2/tables/25/1.5.table diff --git a/eccodes/definitions/grib2/tables/25/1.6.table b/eccodes/definitions.save/grib2/tables/25/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/1.6.table rename to eccodes/definitions.save/grib2/tables/25/1.6.table diff --git a/eccodes/definitions/grib2/tables/25/3.0.table b/eccodes/definitions.save/grib2/tables/25/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.0.table rename to eccodes/definitions.save/grib2/tables/25/3.0.table diff --git a/eccodes/definitions/grib2/tables/25/3.1.table b/eccodes/definitions.save/grib2/tables/25/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.1.table rename to eccodes/definitions.save/grib2/tables/25/3.1.table diff --git a/eccodes/definitions/grib2/tables/25/3.10.table b/eccodes/definitions.save/grib2/tables/25/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.10.table rename to eccodes/definitions.save/grib2/tables/25/3.10.table diff --git a/eccodes/definitions/grib2/tables/25/3.11.table b/eccodes/definitions.save/grib2/tables/25/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.11.table rename to eccodes/definitions.save/grib2/tables/25/3.11.table diff --git a/eccodes/definitions/grib2/tables/25/3.15.table b/eccodes/definitions.save/grib2/tables/25/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.15.table rename to eccodes/definitions.save/grib2/tables/25/3.15.table diff --git a/eccodes/definitions/grib2/tables/25/3.2.table b/eccodes/definitions.save/grib2/tables/25/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.2.table rename to eccodes/definitions.save/grib2/tables/25/3.2.table diff --git a/eccodes/definitions/grib2/tables/25/3.20.table b/eccodes/definitions.save/grib2/tables/25/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.20.table rename to eccodes/definitions.save/grib2/tables/25/3.20.table diff --git a/eccodes/definitions/grib2/tables/25/3.21.table b/eccodes/definitions.save/grib2/tables/25/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.21.table rename to eccodes/definitions.save/grib2/tables/25/3.21.table diff --git a/eccodes/definitions/grib2/tables/25/3.25.table b/eccodes/definitions.save/grib2/tables/25/3.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.25.table rename to eccodes/definitions.save/grib2/tables/25/3.25.table diff --git a/eccodes/definitions/grib2/tables/25/3.3.table b/eccodes/definitions.save/grib2/tables/25/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.3.table rename to eccodes/definitions.save/grib2/tables/25/3.3.table diff --git a/eccodes/definitions/grib2/tables/25/3.4.table b/eccodes/definitions.save/grib2/tables/25/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.4.table rename to eccodes/definitions.save/grib2/tables/25/3.4.table diff --git a/eccodes/definitions/grib2/tables/25/3.5.table b/eccodes/definitions.save/grib2/tables/25/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.5.table rename to eccodes/definitions.save/grib2/tables/25/3.5.table diff --git a/eccodes/definitions/grib2/tables/25/3.6.table b/eccodes/definitions.save/grib2/tables/25/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.6.table rename to eccodes/definitions.save/grib2/tables/25/3.6.table diff --git a/eccodes/definitions/grib2/tables/25/3.7.table b/eccodes/definitions.save/grib2/tables/25/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.7.table rename to eccodes/definitions.save/grib2/tables/25/3.7.table diff --git a/eccodes/definitions/grib2/tables/25/3.8.table b/eccodes/definitions.save/grib2/tables/25/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.8.table rename to eccodes/definitions.save/grib2/tables/25/3.8.table diff --git a/eccodes/definitions/grib2/tables/25/3.9.table b/eccodes/definitions.save/grib2/tables/25/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/3.9.table rename to eccodes/definitions.save/grib2/tables/25/3.9.table diff --git a/eccodes/definitions/grib2/tables/25/4.0.table b/eccodes/definitions.save/grib2/tables/25/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.0.table rename to eccodes/definitions.save/grib2/tables/25/4.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.0.table b/eccodes/definitions.save/grib2/tables/25/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.0.table rename to eccodes/definitions.save/grib2/tables/25/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.1.table b/eccodes/definitions.save/grib2/tables/25/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.1.table rename to eccodes/definitions.save/grib2/tables/25/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.10.table b/eccodes/definitions.save/grib2/tables/25/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.10.table rename to eccodes/definitions.save/grib2/tables/25/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.192.table b/eccodes/definitions.save/grib2/tables/25/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.192.table rename to eccodes/definitions.save/grib2/tables/25/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.2.table b/eccodes/definitions.save/grib2/tables/25/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.2.table rename to eccodes/definitions.save/grib2/tables/25/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.20.table b/eccodes/definitions.save/grib2/tables/25/4.1.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.20.table rename to eccodes/definitions.save/grib2/tables/25/4.1.20.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.3.table b/eccodes/definitions.save/grib2/tables/25/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.3.table rename to eccodes/definitions.save/grib2/tables/25/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.1.4.table b/eccodes/definitions.save/grib2/tables/25/4.1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.1.4.table rename to eccodes/definitions.save/grib2/tables/25/4.1.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.10.table b/eccodes/definitions.save/grib2/tables/25/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.10.table rename to eccodes/definitions.save/grib2/tables/25/4.10.table diff --git a/eccodes/definitions/grib2/tables/25/4.11.table b/eccodes/definitions.save/grib2/tables/25/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.11.table rename to eccodes/definitions.save/grib2/tables/25/4.11.table diff --git a/eccodes/definitions/grib2/tables/25/4.12.table b/eccodes/definitions.save/grib2/tables/25/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.12.table rename to eccodes/definitions.save/grib2/tables/25/4.12.table diff --git a/eccodes/definitions/grib2/tables/25/4.13.table b/eccodes/definitions.save/grib2/tables/25/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.13.table rename to eccodes/definitions.save/grib2/tables/25/4.13.table diff --git a/eccodes/definitions/grib2/tables/25/4.14.table b/eccodes/definitions.save/grib2/tables/25/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.14.table rename to eccodes/definitions.save/grib2/tables/25/4.14.table diff --git a/eccodes/definitions/grib2/tables/25/4.15.table b/eccodes/definitions.save/grib2/tables/25/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.15.table rename to eccodes/definitions.save/grib2/tables/25/4.15.table diff --git a/eccodes/definitions/grib2/tables/25/4.16.table b/eccodes/definitions.save/grib2/tables/25/4.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.16.table rename to eccodes/definitions.save/grib2/tables/25/4.16.table diff --git a/eccodes/definitions/grib2/tables/25/4.192.table b/eccodes/definitions.save/grib2/tables/25/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.192.table rename to eccodes/definitions.save/grib2/tables/25/4.192.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/25/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/25/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/25/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/25/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/25/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.20.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.20.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.20.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.20.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.20.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.20.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.20.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/25/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.0.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.0.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.1.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.1.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.10.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.10.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.10.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.2.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.2.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.3.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.4.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.5.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.5.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.6.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.6.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.7.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.7.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.7.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.8.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.8.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.8.table diff --git a/eccodes/definitions/grib2/tables/25/4.2.4.9.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.2.4.9.table rename to eccodes/definitions.save/grib2/tables/25/4.2.4.9.table diff --git a/eccodes/definitions/grib2/tables/25/4.201.table b/eccodes/definitions.save/grib2/tables/25/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.201.table rename to eccodes/definitions.save/grib2/tables/25/4.201.table diff --git a/eccodes/definitions/grib2/tables/25/4.202.table b/eccodes/definitions.save/grib2/tables/25/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.202.table rename to eccodes/definitions.save/grib2/tables/25/4.202.table diff --git a/eccodes/definitions/grib2/tables/25/4.203.table b/eccodes/definitions.save/grib2/tables/25/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.203.table rename to eccodes/definitions.save/grib2/tables/25/4.203.table diff --git a/eccodes/definitions/grib2/tables/25/4.204.table b/eccodes/definitions.save/grib2/tables/25/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.204.table rename to eccodes/definitions.save/grib2/tables/25/4.204.table diff --git a/eccodes/definitions/grib2/tables/25/4.205.table b/eccodes/definitions.save/grib2/tables/25/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.205.table rename to eccodes/definitions.save/grib2/tables/25/4.205.table diff --git a/eccodes/definitions/grib2/tables/25/4.206.table b/eccodes/definitions.save/grib2/tables/25/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.206.table rename to eccodes/definitions.save/grib2/tables/25/4.206.table diff --git a/eccodes/definitions/grib2/tables/25/4.207.table b/eccodes/definitions.save/grib2/tables/25/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.207.table rename to eccodes/definitions.save/grib2/tables/25/4.207.table diff --git a/eccodes/definitions/grib2/tables/25/4.208.table b/eccodes/definitions.save/grib2/tables/25/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.208.table rename to eccodes/definitions.save/grib2/tables/25/4.208.table diff --git a/eccodes/definitions/grib2/tables/25/4.209.table b/eccodes/definitions.save/grib2/tables/25/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.209.table rename to eccodes/definitions.save/grib2/tables/25/4.209.table diff --git a/eccodes/definitions/grib2/tables/25/4.210.table b/eccodes/definitions.save/grib2/tables/25/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.210.table rename to eccodes/definitions.save/grib2/tables/25/4.210.table diff --git a/eccodes/definitions/grib2/tables/25/4.211.table b/eccodes/definitions.save/grib2/tables/25/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.211.table rename to eccodes/definitions.save/grib2/tables/25/4.211.table diff --git a/eccodes/definitions/grib2/tables/25/4.212.table b/eccodes/definitions.save/grib2/tables/25/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.212.table rename to eccodes/definitions.save/grib2/tables/25/4.212.table diff --git a/eccodes/definitions/grib2/tables/25/4.213.table b/eccodes/definitions.save/grib2/tables/25/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.213.table rename to eccodes/definitions.save/grib2/tables/25/4.213.table diff --git a/eccodes/definitions/grib2/tables/25/4.215.table b/eccodes/definitions.save/grib2/tables/25/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.215.table rename to eccodes/definitions.save/grib2/tables/25/4.215.table diff --git a/eccodes/definitions/grib2/tables/25/4.216.table b/eccodes/definitions.save/grib2/tables/25/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.216.table rename to eccodes/definitions.save/grib2/tables/25/4.216.table diff --git a/eccodes/definitions/grib2/tables/25/4.217.table b/eccodes/definitions.save/grib2/tables/25/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.217.table rename to eccodes/definitions.save/grib2/tables/25/4.217.table diff --git a/eccodes/definitions/grib2/tables/25/4.218.table b/eccodes/definitions.save/grib2/tables/25/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.218.table rename to eccodes/definitions.save/grib2/tables/25/4.218.table diff --git a/eccodes/definitions/grib2/tables/25/4.219.table b/eccodes/definitions.save/grib2/tables/25/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.219.table rename to eccodes/definitions.save/grib2/tables/25/4.219.table diff --git a/eccodes/definitions/grib2/tables/25/4.220.table b/eccodes/definitions.save/grib2/tables/25/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.220.table rename to eccodes/definitions.save/grib2/tables/25/4.220.table diff --git a/eccodes/definitions/grib2/tables/25/4.221.table b/eccodes/definitions.save/grib2/tables/25/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.221.table rename to eccodes/definitions.save/grib2/tables/25/4.221.table diff --git a/eccodes/definitions/grib2/tables/25/4.222.table b/eccodes/definitions.save/grib2/tables/25/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.222.table rename to eccodes/definitions.save/grib2/tables/25/4.222.table diff --git a/eccodes/definitions/grib2/tables/25/4.223.table b/eccodes/definitions.save/grib2/tables/25/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.223.table rename to eccodes/definitions.save/grib2/tables/25/4.223.table diff --git a/eccodes/definitions/grib2/tables/25/4.224.table b/eccodes/definitions.save/grib2/tables/25/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.224.table rename to eccodes/definitions.save/grib2/tables/25/4.224.table diff --git a/eccodes/definitions/grib2/tables/25/4.225.table b/eccodes/definitions.save/grib2/tables/25/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.225.table rename to eccodes/definitions.save/grib2/tables/25/4.225.table diff --git a/eccodes/definitions/grib2/tables/25/4.227.table b/eccodes/definitions.save/grib2/tables/25/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.227.table rename to eccodes/definitions.save/grib2/tables/25/4.227.table diff --git a/eccodes/definitions/grib2/tables/25/4.228.table b/eccodes/definitions.save/grib2/tables/25/4.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.228.table rename to eccodes/definitions.save/grib2/tables/25/4.228.table diff --git a/eccodes/definitions/grib2/tables/25/4.230.table b/eccodes/definitions.save/grib2/tables/25/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.230.table rename to eccodes/definitions.save/grib2/tables/25/4.230.table diff --git a/eccodes/definitions/grib2/tables/25/4.233.table b/eccodes/definitions.save/grib2/tables/25/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.233.table rename to eccodes/definitions.save/grib2/tables/25/4.233.table diff --git a/eccodes/definitions/grib2/tables/25/4.234.table b/eccodes/definitions.save/grib2/tables/25/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.234.table rename to eccodes/definitions.save/grib2/tables/25/4.234.table diff --git a/eccodes/definitions/grib2/tables/25/4.236.table b/eccodes/definitions.save/grib2/tables/25/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.236.table rename to eccodes/definitions.save/grib2/tables/25/4.236.table diff --git a/eccodes/definitions/grib2/tables/25/4.238.table b/eccodes/definitions.save/grib2/tables/25/4.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.238.table rename to eccodes/definitions.save/grib2/tables/25/4.238.table diff --git a/eccodes/definitions/grib2/tables/25/4.240.table b/eccodes/definitions.save/grib2/tables/25/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.240.table rename to eccodes/definitions.save/grib2/tables/25/4.240.table diff --git a/eccodes/definitions/grib2/tables/25/4.241.table b/eccodes/definitions.save/grib2/tables/25/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.241.table rename to eccodes/definitions.save/grib2/tables/25/4.241.table diff --git a/eccodes/definitions/grib2/tables/25/4.242.table b/eccodes/definitions.save/grib2/tables/25/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.242.table rename to eccodes/definitions.save/grib2/tables/25/4.242.table diff --git a/eccodes/definitions/grib2/tables/25/4.243.table b/eccodes/definitions.save/grib2/tables/25/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.243.table rename to eccodes/definitions.save/grib2/tables/25/4.243.table diff --git a/eccodes/definitions/grib2/tables/25/4.244.table b/eccodes/definitions.save/grib2/tables/25/4.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.244.table rename to eccodes/definitions.save/grib2/tables/25/4.244.table diff --git a/eccodes/definitions/grib2/tables/25/4.3.table b/eccodes/definitions.save/grib2/tables/25/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.3.table rename to eccodes/definitions.save/grib2/tables/25/4.3.table diff --git a/eccodes/definitions/grib2/tables/25/4.4.table b/eccodes/definitions.save/grib2/tables/25/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.4.table rename to eccodes/definitions.save/grib2/tables/25/4.4.table diff --git a/eccodes/definitions/grib2/tables/25/4.5.table b/eccodes/definitions.save/grib2/tables/25/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.5.table rename to eccodes/definitions.save/grib2/tables/25/4.5.table diff --git a/eccodes/definitions/grib2/tables/25/4.6.table b/eccodes/definitions.save/grib2/tables/25/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.6.table rename to eccodes/definitions.save/grib2/tables/25/4.6.table diff --git a/eccodes/definitions/grib2/tables/25/4.7.table b/eccodes/definitions.save/grib2/tables/25/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.7.table rename to eccodes/definitions.save/grib2/tables/25/4.7.table diff --git a/eccodes/definitions/grib2/tables/25/4.8.table b/eccodes/definitions.save/grib2/tables/25/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.8.table rename to eccodes/definitions.save/grib2/tables/25/4.8.table diff --git a/eccodes/definitions/grib2/tables/25/4.9.table b/eccodes/definitions.save/grib2/tables/25/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.9.table rename to eccodes/definitions.save/grib2/tables/25/4.9.table diff --git a/eccodes/definitions/grib2/tables/25/4.91.table b/eccodes/definitions.save/grib2/tables/25/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/4.91.table rename to eccodes/definitions.save/grib2/tables/25/4.91.table diff --git a/eccodes/definitions/grib2/tables/25/5.0.table b/eccodes/definitions.save/grib2/tables/25/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.0.table rename to eccodes/definitions.save/grib2/tables/25/5.0.table diff --git a/eccodes/definitions/grib2/tables/25/5.1.table b/eccodes/definitions.save/grib2/tables/25/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.1.table rename to eccodes/definitions.save/grib2/tables/25/5.1.table diff --git a/eccodes/definitions/grib2/tables/25/5.2.table b/eccodes/definitions.save/grib2/tables/25/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.2.table rename to eccodes/definitions.save/grib2/tables/25/5.2.table diff --git a/eccodes/definitions/grib2/tables/25/5.25.table b/eccodes/definitions.save/grib2/tables/25/5.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.25.table rename to eccodes/definitions.save/grib2/tables/25/5.25.table diff --git a/eccodes/definitions/grib2/tables/25/5.26.table b/eccodes/definitions.save/grib2/tables/25/5.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.26.table rename to eccodes/definitions.save/grib2/tables/25/5.26.table diff --git a/eccodes/definitions/grib2/tables/25/5.3.table b/eccodes/definitions.save/grib2/tables/25/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.3.table rename to eccodes/definitions.save/grib2/tables/25/5.3.table diff --git a/eccodes/definitions/grib2/tables/25/5.4.table b/eccodes/definitions.save/grib2/tables/25/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.4.table rename to eccodes/definitions.save/grib2/tables/25/5.4.table diff --git a/eccodes/definitions/grib2/tables/25/5.40.table b/eccodes/definitions.save/grib2/tables/25/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.40.table rename to eccodes/definitions.save/grib2/tables/25/5.40.table diff --git a/eccodes/definitions/grib2/tables/25/5.40000.table b/eccodes/definitions.save/grib2/tables/25/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.40000.table rename to eccodes/definitions.save/grib2/tables/25/5.40000.table diff --git a/eccodes/definitions/grib2/tables/25/5.5.table b/eccodes/definitions.save/grib2/tables/25/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.5.table rename to eccodes/definitions.save/grib2/tables/25/5.5.table diff --git a/eccodes/definitions/grib2/tables/25/5.50002.table b/eccodes/definitions.save/grib2/tables/25/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.50002.table rename to eccodes/definitions.save/grib2/tables/25/5.50002.table diff --git a/eccodes/definitions/grib2/tables/25/5.6.table b/eccodes/definitions.save/grib2/tables/25/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.6.table rename to eccodes/definitions.save/grib2/tables/25/5.6.table diff --git a/eccodes/definitions/grib2/tables/25/5.7.table b/eccodes/definitions.save/grib2/tables/25/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/5.7.table rename to eccodes/definitions.save/grib2/tables/25/5.7.table diff --git a/eccodes/definitions/grib2/tables/25/6.0.table b/eccodes/definitions.save/grib2/tables/25/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/6.0.table rename to eccodes/definitions.save/grib2/tables/25/6.0.table diff --git a/eccodes/definitions/grib2/tables/25/stepType.table b/eccodes/definitions.save/grib2/tables/25/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/25/stepType.table rename to eccodes/definitions.save/grib2/tables/25/stepType.table diff --git a/eccodes/definitions/grib2/tables/26/0.0.table b/eccodes/definitions.save/grib2/tables/26/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/0.0.table rename to eccodes/definitions.save/grib2/tables/26/0.0.table diff --git a/eccodes/definitions/grib2/tables/26/1.0.table b/eccodes/definitions.save/grib2/tables/26/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.0.table rename to eccodes/definitions.save/grib2/tables/26/1.0.table diff --git a/eccodes/definitions/grib2/tables/26/1.1.table b/eccodes/definitions.save/grib2/tables/26/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.1.table rename to eccodes/definitions.save/grib2/tables/26/1.1.table diff --git a/eccodes/definitions/grib2/tables/26/1.2.table b/eccodes/definitions.save/grib2/tables/26/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.2.table rename to eccodes/definitions.save/grib2/tables/26/1.2.table diff --git a/eccodes/definitions/grib2/tables/26/1.3.table b/eccodes/definitions.save/grib2/tables/26/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.3.table rename to eccodes/definitions.save/grib2/tables/26/1.3.table diff --git a/eccodes/definitions/grib2/tables/26/1.4.table b/eccodes/definitions.save/grib2/tables/26/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.4.table rename to eccodes/definitions.save/grib2/tables/26/1.4.table diff --git a/eccodes/definitions/grib2/tables/26/1.5.table b/eccodes/definitions.save/grib2/tables/26/1.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.5.table rename to eccodes/definitions.save/grib2/tables/26/1.5.table diff --git a/eccodes/definitions/grib2/tables/26/1.6.table b/eccodes/definitions.save/grib2/tables/26/1.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/1.6.table rename to eccodes/definitions.save/grib2/tables/26/1.6.table diff --git a/eccodes/definitions/grib2/tables/26/3.0.table b/eccodes/definitions.save/grib2/tables/26/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.0.table rename to eccodes/definitions.save/grib2/tables/26/3.0.table diff --git a/eccodes/definitions/grib2/tables/26/3.1.table b/eccodes/definitions.save/grib2/tables/26/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.1.table rename to eccodes/definitions.save/grib2/tables/26/3.1.table diff --git a/eccodes/definitions/grib2/tables/26/3.10.table b/eccodes/definitions.save/grib2/tables/26/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.10.table rename to eccodes/definitions.save/grib2/tables/26/3.10.table diff --git a/eccodes/definitions/grib2/tables/26/3.11.table b/eccodes/definitions.save/grib2/tables/26/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.11.table rename to eccodes/definitions.save/grib2/tables/26/3.11.table diff --git a/eccodes/definitions/grib2/tables/26/3.15.table b/eccodes/definitions.save/grib2/tables/26/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.15.table rename to eccodes/definitions.save/grib2/tables/26/3.15.table diff --git a/eccodes/definitions/grib2/tables/26/3.2.table b/eccodes/definitions.save/grib2/tables/26/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.2.table rename to eccodes/definitions.save/grib2/tables/26/3.2.table diff --git a/eccodes/definitions/grib2/tables/26/3.20.table b/eccodes/definitions.save/grib2/tables/26/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.20.table rename to eccodes/definitions.save/grib2/tables/26/3.20.table diff --git a/eccodes/definitions/grib2/tables/26/3.21.table b/eccodes/definitions.save/grib2/tables/26/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.21.table rename to eccodes/definitions.save/grib2/tables/26/3.21.table diff --git a/eccodes/definitions/grib2/tables/26/3.25.table b/eccodes/definitions.save/grib2/tables/26/3.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.25.table rename to eccodes/definitions.save/grib2/tables/26/3.25.table diff --git a/eccodes/definitions/grib2/tables/26/3.3.table b/eccodes/definitions.save/grib2/tables/26/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.3.table rename to eccodes/definitions.save/grib2/tables/26/3.3.table diff --git a/eccodes/definitions/grib2/tables/26/3.4.table b/eccodes/definitions.save/grib2/tables/26/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.4.table rename to eccodes/definitions.save/grib2/tables/26/3.4.table diff --git a/eccodes/definitions/grib2/tables/26/3.5.table b/eccodes/definitions.save/grib2/tables/26/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.5.table rename to eccodes/definitions.save/grib2/tables/26/3.5.table diff --git a/eccodes/definitions/grib2/tables/26/3.6.table b/eccodes/definitions.save/grib2/tables/26/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.6.table rename to eccodes/definitions.save/grib2/tables/26/3.6.table diff --git a/eccodes/definitions/grib2/tables/26/3.7.table b/eccodes/definitions.save/grib2/tables/26/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.7.table rename to eccodes/definitions.save/grib2/tables/26/3.7.table diff --git a/eccodes/definitions/grib2/tables/26/3.8.table b/eccodes/definitions.save/grib2/tables/26/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.8.table rename to eccodes/definitions.save/grib2/tables/26/3.8.table diff --git a/eccodes/definitions/grib2/tables/26/3.9.table b/eccodes/definitions.save/grib2/tables/26/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/3.9.table rename to eccodes/definitions.save/grib2/tables/26/3.9.table diff --git a/eccodes/definitions/grib2/tables/26/4.0.table b/eccodes/definitions.save/grib2/tables/26/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.0.table rename to eccodes/definitions.save/grib2/tables/26/4.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.0.table b/eccodes/definitions.save/grib2/tables/26/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.0.table rename to eccodes/definitions.save/grib2/tables/26/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.1.table b/eccodes/definitions.save/grib2/tables/26/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.1.table rename to eccodes/definitions.save/grib2/tables/26/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.10.table b/eccodes/definitions.save/grib2/tables/26/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.10.table rename to eccodes/definitions.save/grib2/tables/26/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.192.table b/eccodes/definitions.save/grib2/tables/26/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.192.table rename to eccodes/definitions.save/grib2/tables/26/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.2.table b/eccodes/definitions.save/grib2/tables/26/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.2.table rename to eccodes/definitions.save/grib2/tables/26/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.20.table b/eccodes/definitions.save/grib2/tables/26/4.1.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.20.table rename to eccodes/definitions.save/grib2/tables/26/4.1.20.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.3.table b/eccodes/definitions.save/grib2/tables/26/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.3.table rename to eccodes/definitions.save/grib2/tables/26/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.1.4.table b/eccodes/definitions.save/grib2/tables/26/4.1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.1.4.table rename to eccodes/definitions.save/grib2/tables/26/4.1.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.10.table b/eccodes/definitions.save/grib2/tables/26/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.10.table rename to eccodes/definitions.save/grib2/tables/26/4.10.table diff --git a/eccodes/definitions/grib2/tables/26/4.11.table b/eccodes/definitions.save/grib2/tables/26/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.11.table rename to eccodes/definitions.save/grib2/tables/26/4.11.table diff --git a/eccodes/definitions/grib2/tables/26/4.12.table b/eccodes/definitions.save/grib2/tables/26/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.12.table rename to eccodes/definitions.save/grib2/tables/26/4.12.table diff --git a/eccodes/definitions/grib2/tables/26/4.13.table b/eccodes/definitions.save/grib2/tables/26/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.13.table rename to eccodes/definitions.save/grib2/tables/26/4.13.table diff --git a/eccodes/definitions/grib2/tables/26/4.14.table b/eccodes/definitions.save/grib2/tables/26/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.14.table rename to eccodes/definitions.save/grib2/tables/26/4.14.table diff --git a/eccodes/definitions/grib2/tables/26/4.15.table b/eccodes/definitions.save/grib2/tables/26/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.15.table rename to eccodes/definitions.save/grib2/tables/26/4.15.table diff --git a/eccodes/definitions/grib2/tables/26/4.16.table b/eccodes/definitions.save/grib2/tables/26/4.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.16.table rename to eccodes/definitions.save/grib2/tables/26/4.16.table diff --git a/eccodes/definitions/grib2/tables/26/4.192.table b/eccodes/definitions.save/grib2/tables/26/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.192.table rename to eccodes/definitions.save/grib2/tables/26/4.192.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/26/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/26/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/26/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/26/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.2.5.table rename to eccodes/definitions.save/grib2/tables/26/4.2.2.5.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.20.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.20.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.20.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.20.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.20.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.20.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.20.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.3.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.4.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.5.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.5.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.3.6.table rename to eccodes/definitions.save/grib2/tables/26/4.2.3.6.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.0.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.0.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.1.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.1.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.10.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.10.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.10.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.2.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.2.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.3.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.4.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.5.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.5.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.6.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.6.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.7.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.7.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.7.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.8.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.8.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.8.table diff --git a/eccodes/definitions/grib2/tables/26/4.2.4.9.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.2.4.9.table rename to eccodes/definitions.save/grib2/tables/26/4.2.4.9.table diff --git a/eccodes/definitions/grib2/tables/26/4.201.table b/eccodes/definitions.save/grib2/tables/26/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.201.table rename to eccodes/definitions.save/grib2/tables/26/4.201.table diff --git a/eccodes/definitions/grib2/tables/26/4.202.table b/eccodes/definitions.save/grib2/tables/26/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.202.table rename to eccodes/definitions.save/grib2/tables/26/4.202.table diff --git a/eccodes/definitions/grib2/tables/26/4.203.table b/eccodes/definitions.save/grib2/tables/26/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.203.table rename to eccodes/definitions.save/grib2/tables/26/4.203.table diff --git a/eccodes/definitions/grib2/tables/26/4.204.table b/eccodes/definitions.save/grib2/tables/26/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.204.table rename to eccodes/definitions.save/grib2/tables/26/4.204.table diff --git a/eccodes/definitions/grib2/tables/26/4.205.table b/eccodes/definitions.save/grib2/tables/26/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.205.table rename to eccodes/definitions.save/grib2/tables/26/4.205.table diff --git a/eccodes/definitions/grib2/tables/26/4.206.table b/eccodes/definitions.save/grib2/tables/26/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.206.table rename to eccodes/definitions.save/grib2/tables/26/4.206.table diff --git a/eccodes/definitions/grib2/tables/26/4.207.table b/eccodes/definitions.save/grib2/tables/26/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.207.table rename to eccodes/definitions.save/grib2/tables/26/4.207.table diff --git a/eccodes/definitions/grib2/tables/26/4.208.table b/eccodes/definitions.save/grib2/tables/26/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.208.table rename to eccodes/definitions.save/grib2/tables/26/4.208.table diff --git a/eccodes/definitions/grib2/tables/26/4.209.table b/eccodes/definitions.save/grib2/tables/26/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.209.table rename to eccodes/definitions.save/grib2/tables/26/4.209.table diff --git a/eccodes/definitions/grib2/tables/26/4.210.table b/eccodes/definitions.save/grib2/tables/26/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.210.table rename to eccodes/definitions.save/grib2/tables/26/4.210.table diff --git a/eccodes/definitions/grib2/tables/26/4.211.table b/eccodes/definitions.save/grib2/tables/26/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.211.table rename to eccodes/definitions.save/grib2/tables/26/4.211.table diff --git a/eccodes/definitions/grib2/tables/26/4.212.table b/eccodes/definitions.save/grib2/tables/26/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.212.table rename to eccodes/definitions.save/grib2/tables/26/4.212.table diff --git a/eccodes/definitions/grib2/tables/26/4.213.table b/eccodes/definitions.save/grib2/tables/26/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.213.table rename to eccodes/definitions.save/grib2/tables/26/4.213.table diff --git a/eccodes/definitions/grib2/tables/26/4.214.table b/eccodes/definitions.save/grib2/tables/26/4.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.214.table rename to eccodes/definitions.save/grib2/tables/26/4.214.table diff --git a/eccodes/definitions/grib2/tables/26/4.215.table b/eccodes/definitions.save/grib2/tables/26/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.215.table rename to eccodes/definitions.save/grib2/tables/26/4.215.table diff --git a/eccodes/definitions/grib2/tables/26/4.216.table b/eccodes/definitions.save/grib2/tables/26/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.216.table rename to eccodes/definitions.save/grib2/tables/26/4.216.table diff --git a/eccodes/definitions/grib2/tables/26/4.217.table b/eccodes/definitions.save/grib2/tables/26/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.217.table rename to eccodes/definitions.save/grib2/tables/26/4.217.table diff --git a/eccodes/definitions/grib2/tables/26/4.218.table b/eccodes/definitions.save/grib2/tables/26/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.218.table rename to eccodes/definitions.save/grib2/tables/26/4.218.table diff --git a/eccodes/definitions/grib2/tables/26/4.219.table b/eccodes/definitions.save/grib2/tables/26/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.219.table rename to eccodes/definitions.save/grib2/tables/26/4.219.table diff --git a/eccodes/definitions/grib2/tables/26/4.220.table b/eccodes/definitions.save/grib2/tables/26/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.220.table rename to eccodes/definitions.save/grib2/tables/26/4.220.table diff --git a/eccodes/definitions/grib2/tables/26/4.221.table b/eccodes/definitions.save/grib2/tables/26/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.221.table rename to eccodes/definitions.save/grib2/tables/26/4.221.table diff --git a/eccodes/definitions/grib2/tables/26/4.222.table b/eccodes/definitions.save/grib2/tables/26/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.222.table rename to eccodes/definitions.save/grib2/tables/26/4.222.table diff --git a/eccodes/definitions/grib2/tables/26/4.223.table b/eccodes/definitions.save/grib2/tables/26/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.223.table rename to eccodes/definitions.save/grib2/tables/26/4.223.table diff --git a/eccodes/definitions/grib2/tables/26/4.224.table b/eccodes/definitions.save/grib2/tables/26/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.224.table rename to eccodes/definitions.save/grib2/tables/26/4.224.table diff --git a/eccodes/definitions/grib2/tables/26/4.225.table b/eccodes/definitions.save/grib2/tables/26/4.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.225.table rename to eccodes/definitions.save/grib2/tables/26/4.225.table diff --git a/eccodes/definitions/grib2/tables/26/4.227.table b/eccodes/definitions.save/grib2/tables/26/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.227.table rename to eccodes/definitions.save/grib2/tables/26/4.227.table diff --git a/eccodes/definitions/grib2/tables/26/4.228.table b/eccodes/definitions.save/grib2/tables/26/4.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.228.table rename to eccodes/definitions.save/grib2/tables/26/4.228.table diff --git a/eccodes/definitions/grib2/tables/26/4.230.table b/eccodes/definitions.save/grib2/tables/26/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.230.table rename to eccodes/definitions.save/grib2/tables/26/4.230.table diff --git a/eccodes/definitions/grib2/tables/26/4.233.table b/eccodes/definitions.save/grib2/tables/26/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.233.table rename to eccodes/definitions.save/grib2/tables/26/4.233.table diff --git a/eccodes/definitions/grib2/tables/26/4.234.table b/eccodes/definitions.save/grib2/tables/26/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.234.table rename to eccodes/definitions.save/grib2/tables/26/4.234.table diff --git a/eccodes/definitions/grib2/tables/26/4.236.table b/eccodes/definitions.save/grib2/tables/26/4.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.236.table rename to eccodes/definitions.save/grib2/tables/26/4.236.table diff --git a/eccodes/definitions/grib2/tables/26/4.238.table b/eccodes/definitions.save/grib2/tables/26/4.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.238.table rename to eccodes/definitions.save/grib2/tables/26/4.238.table diff --git a/eccodes/definitions/grib2/tables/26/4.240.table b/eccodes/definitions.save/grib2/tables/26/4.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.240.table rename to eccodes/definitions.save/grib2/tables/26/4.240.table diff --git a/eccodes/definitions/grib2/tables/26/4.241.table b/eccodes/definitions.save/grib2/tables/26/4.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.241.table rename to eccodes/definitions.save/grib2/tables/26/4.241.table diff --git a/eccodes/definitions/grib2/tables/26/4.242.table b/eccodes/definitions.save/grib2/tables/26/4.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.242.table rename to eccodes/definitions.save/grib2/tables/26/4.242.table diff --git a/eccodes/definitions/grib2/tables/26/4.243.table b/eccodes/definitions.save/grib2/tables/26/4.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.243.table rename to eccodes/definitions.save/grib2/tables/26/4.243.table diff --git a/eccodes/definitions/grib2/tables/26/4.244.table b/eccodes/definitions.save/grib2/tables/26/4.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.244.table rename to eccodes/definitions.save/grib2/tables/26/4.244.table diff --git a/eccodes/definitions/grib2/tables/26/4.246.table b/eccodes/definitions.save/grib2/tables/26/4.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.246.table rename to eccodes/definitions.save/grib2/tables/26/4.246.table diff --git a/eccodes/definitions/grib2/tables/26/4.247.table b/eccodes/definitions.save/grib2/tables/26/4.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.247.table rename to eccodes/definitions.save/grib2/tables/26/4.247.table diff --git a/eccodes/definitions/grib2/tables/26/4.3.table b/eccodes/definitions.save/grib2/tables/26/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.3.table rename to eccodes/definitions.save/grib2/tables/26/4.3.table diff --git a/eccodes/definitions/grib2/tables/26/4.4.table b/eccodes/definitions.save/grib2/tables/26/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.4.table rename to eccodes/definitions.save/grib2/tables/26/4.4.table diff --git a/eccodes/definitions/grib2/tables/26/4.5.table b/eccodes/definitions.save/grib2/tables/26/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.5.table rename to eccodes/definitions.save/grib2/tables/26/4.5.table diff --git a/eccodes/definitions/grib2/tables/26/4.6.table b/eccodes/definitions.save/grib2/tables/26/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.6.table rename to eccodes/definitions.save/grib2/tables/26/4.6.table diff --git a/eccodes/definitions/grib2/tables/26/4.7.table b/eccodes/definitions.save/grib2/tables/26/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.7.table rename to eccodes/definitions.save/grib2/tables/26/4.7.table diff --git a/eccodes/definitions/grib2/tables/26/4.8.table b/eccodes/definitions.save/grib2/tables/26/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.8.table rename to eccodes/definitions.save/grib2/tables/26/4.8.table diff --git a/eccodes/definitions/grib2/tables/26/4.9.table b/eccodes/definitions.save/grib2/tables/26/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.9.table rename to eccodes/definitions.save/grib2/tables/26/4.9.table diff --git a/eccodes/definitions/grib2/tables/26/4.91.table b/eccodes/definitions.save/grib2/tables/26/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/4.91.table rename to eccodes/definitions.save/grib2/tables/26/4.91.table diff --git a/eccodes/definitions/grib2/tables/26/5.0.table b/eccodes/definitions.save/grib2/tables/26/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.0.table rename to eccodes/definitions.save/grib2/tables/26/5.0.table diff --git a/eccodes/definitions/grib2/tables/26/5.1.table b/eccodes/definitions.save/grib2/tables/26/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.1.table rename to eccodes/definitions.save/grib2/tables/26/5.1.table diff --git a/eccodes/definitions/grib2/tables/26/5.2.table b/eccodes/definitions.save/grib2/tables/26/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.2.table rename to eccodes/definitions.save/grib2/tables/26/5.2.table diff --git a/eccodes/definitions/grib2/tables/26/5.25.table b/eccodes/definitions.save/grib2/tables/26/5.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.25.table rename to eccodes/definitions.save/grib2/tables/26/5.25.table diff --git a/eccodes/definitions/grib2/tables/26/5.26.table b/eccodes/definitions.save/grib2/tables/26/5.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.26.table rename to eccodes/definitions.save/grib2/tables/26/5.26.table diff --git a/eccodes/definitions/grib2/tables/26/5.3.table b/eccodes/definitions.save/grib2/tables/26/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.3.table rename to eccodes/definitions.save/grib2/tables/26/5.3.table diff --git a/eccodes/definitions/grib2/tables/26/5.4.table b/eccodes/definitions.save/grib2/tables/26/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.4.table rename to eccodes/definitions.save/grib2/tables/26/5.4.table diff --git a/eccodes/definitions/grib2/tables/26/5.40.table b/eccodes/definitions.save/grib2/tables/26/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.40.table rename to eccodes/definitions.save/grib2/tables/26/5.40.table diff --git a/eccodes/definitions/grib2/tables/26/5.5.table b/eccodes/definitions.save/grib2/tables/26/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.5.table rename to eccodes/definitions.save/grib2/tables/26/5.5.table diff --git a/eccodes/definitions/grib2/tables/26/5.6.table b/eccodes/definitions.save/grib2/tables/26/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.6.table rename to eccodes/definitions.save/grib2/tables/26/5.6.table diff --git a/eccodes/definitions/grib2/tables/26/5.7.table b/eccodes/definitions.save/grib2/tables/26/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/5.7.table rename to eccodes/definitions.save/grib2/tables/26/5.7.table diff --git a/eccodes/definitions/grib2/tables/26/6.0.table b/eccodes/definitions.save/grib2/tables/26/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/6.0.table rename to eccodes/definitions.save/grib2/tables/26/6.0.table diff --git a/eccodes/definitions/grib2/tables/26/stepType.table b/eccodes/definitions.save/grib2/tables/26/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/26/stepType.table rename to eccodes/definitions.save/grib2/tables/26/stepType.table diff --git a/eccodes/definitions/grib2/tables/3/0.0.table b/eccodes/definitions.save/grib2/tables/3/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/0.0.table rename to eccodes/definitions.save/grib2/tables/3/0.0.table diff --git a/eccodes/definitions/grib2/tables/3/1.0.table b/eccodes/definitions.save/grib2/tables/3/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/1.0.table rename to eccodes/definitions.save/grib2/tables/3/1.0.table diff --git a/eccodes/definitions/grib2/tables/3/1.1.table b/eccodes/definitions.save/grib2/tables/3/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/1.1.table rename to eccodes/definitions.save/grib2/tables/3/1.1.table diff --git a/eccodes/definitions/grib2/tables/3/1.2.table b/eccodes/definitions.save/grib2/tables/3/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/1.2.table rename to eccodes/definitions.save/grib2/tables/3/1.2.table diff --git a/eccodes/definitions/grib2/tables/3/1.3.table b/eccodes/definitions.save/grib2/tables/3/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/1.3.table rename to eccodes/definitions.save/grib2/tables/3/1.3.table diff --git a/eccodes/definitions/grib2/tables/3/1.4.table b/eccodes/definitions.save/grib2/tables/3/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/1.4.table rename to eccodes/definitions.save/grib2/tables/3/1.4.table diff --git a/eccodes/definitions/grib2/tables/3/3.0.table b/eccodes/definitions.save/grib2/tables/3/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.0.table rename to eccodes/definitions.save/grib2/tables/3/3.0.table diff --git a/eccodes/definitions/grib2/tables/3/3.1.table b/eccodes/definitions.save/grib2/tables/3/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.1.table rename to eccodes/definitions.save/grib2/tables/3/3.1.table diff --git a/eccodes/definitions/grib2/tables/3/3.10.table b/eccodes/definitions.save/grib2/tables/3/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.10.table rename to eccodes/definitions.save/grib2/tables/3/3.10.table diff --git a/eccodes/definitions/grib2/tables/3/3.11.table b/eccodes/definitions.save/grib2/tables/3/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.11.table rename to eccodes/definitions.save/grib2/tables/3/3.11.table diff --git a/eccodes/definitions/grib2/tables/3/3.15.table b/eccodes/definitions.save/grib2/tables/3/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.15.table rename to eccodes/definitions.save/grib2/tables/3/3.15.table diff --git a/eccodes/definitions/grib2/tables/3/3.2.table b/eccodes/definitions.save/grib2/tables/3/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.2.table rename to eccodes/definitions.save/grib2/tables/3/3.2.table diff --git a/eccodes/definitions/grib2/tables/3/3.20.table b/eccodes/definitions.save/grib2/tables/3/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.20.table rename to eccodes/definitions.save/grib2/tables/3/3.20.table diff --git a/eccodes/definitions/grib2/tables/3/3.21.table b/eccodes/definitions.save/grib2/tables/3/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.21.table rename to eccodes/definitions.save/grib2/tables/3/3.21.table diff --git a/eccodes/definitions/grib2/tables/3/3.3.table b/eccodes/definitions.save/grib2/tables/3/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.3.table rename to eccodes/definitions.save/grib2/tables/3/3.3.table diff --git a/eccodes/definitions/grib2/tables/3/3.4.table b/eccodes/definitions.save/grib2/tables/3/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.4.table rename to eccodes/definitions.save/grib2/tables/3/3.4.table diff --git a/eccodes/definitions/grib2/tables/3/3.5.table b/eccodes/definitions.save/grib2/tables/3/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.5.table rename to eccodes/definitions.save/grib2/tables/3/3.5.table diff --git a/eccodes/definitions/grib2/tables/3/3.6.table b/eccodes/definitions.save/grib2/tables/3/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.6.table rename to eccodes/definitions.save/grib2/tables/3/3.6.table diff --git a/eccodes/definitions/grib2/tables/3/3.7.table b/eccodes/definitions.save/grib2/tables/3/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.7.table rename to eccodes/definitions.save/grib2/tables/3/3.7.table diff --git a/eccodes/definitions/grib2/tables/3/3.8.table b/eccodes/definitions.save/grib2/tables/3/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.8.table rename to eccodes/definitions.save/grib2/tables/3/3.8.table diff --git a/eccodes/definitions/grib2/tables/3/3.9.table b/eccodes/definitions.save/grib2/tables/3/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/3.9.table rename to eccodes/definitions.save/grib2/tables/3/3.9.table diff --git a/eccodes/definitions/grib2/tables/3/4.0.table b/eccodes/definitions.save/grib2/tables/3/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.0.table rename to eccodes/definitions.save/grib2/tables/3/4.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.0.table b/eccodes/definitions.save/grib2/tables/3/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.0.table rename to eccodes/definitions.save/grib2/tables/3/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.1.table b/eccodes/definitions.save/grib2/tables/3/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.1.table rename to eccodes/definitions.save/grib2/tables/3/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.10.table b/eccodes/definitions.save/grib2/tables/3/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.10.table rename to eccodes/definitions.save/grib2/tables/3/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.2.table b/eccodes/definitions.save/grib2/tables/3/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.2.table rename to eccodes/definitions.save/grib2/tables/3/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.3.table b/eccodes/definitions.save/grib2/tables/3/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.3.table rename to eccodes/definitions.save/grib2/tables/3/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/3/4.1.table b/eccodes/definitions.save/grib2/tables/3/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.1.table rename to eccodes/definitions.save/grib2/tables/3/4.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.10.table b/eccodes/definitions.save/grib2/tables/3/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.10.table rename to eccodes/definitions.save/grib2/tables/3/4.10.table diff --git a/eccodes/definitions/grib2/tables/3/4.11.table b/eccodes/definitions.save/grib2/tables/3/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.11.table rename to eccodes/definitions.save/grib2/tables/3/4.11.table diff --git a/eccodes/definitions/grib2/tables/3/4.12.table b/eccodes/definitions.save/grib2/tables/3/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.12.table rename to eccodes/definitions.save/grib2/tables/3/4.12.table diff --git a/eccodes/definitions/grib2/tables/3/4.13.table b/eccodes/definitions.save/grib2/tables/3/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.13.table rename to eccodes/definitions.save/grib2/tables/3/4.13.table diff --git a/eccodes/definitions/grib2/tables/3/4.14.table b/eccodes/definitions.save/grib2/tables/3/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.14.table rename to eccodes/definitions.save/grib2/tables/3/4.14.table diff --git a/eccodes/definitions/grib2/tables/3/4.15.table b/eccodes/definitions.save/grib2/tables/3/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.15.table rename to eccodes/definitions.save/grib2/tables/3/4.15.table diff --git a/eccodes/definitions/grib2/tables/3/4.151.table b/eccodes/definitions.save/grib2/tables/3/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.151.table rename to eccodes/definitions.save/grib2/tables/3/4.151.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/3/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/3/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/3/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/3/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/3/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/3/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/3/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/3/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/3/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/3/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/3/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/3/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/3/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/3/4.201.table b/eccodes/definitions.save/grib2/tables/3/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.201.table rename to eccodes/definitions.save/grib2/tables/3/4.201.table diff --git a/eccodes/definitions/grib2/tables/3/4.202.table b/eccodes/definitions.save/grib2/tables/3/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.202.table rename to eccodes/definitions.save/grib2/tables/3/4.202.table diff --git a/eccodes/definitions/grib2/tables/3/4.203.table b/eccodes/definitions.save/grib2/tables/3/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.203.table rename to eccodes/definitions.save/grib2/tables/3/4.203.table diff --git a/eccodes/definitions/grib2/tables/3/4.204.table b/eccodes/definitions.save/grib2/tables/3/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.204.table rename to eccodes/definitions.save/grib2/tables/3/4.204.table diff --git a/eccodes/definitions/grib2/tables/3/4.205.table b/eccodes/definitions.save/grib2/tables/3/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.205.table rename to eccodes/definitions.save/grib2/tables/3/4.205.table diff --git a/eccodes/definitions/grib2/tables/3/4.206.table b/eccodes/definitions.save/grib2/tables/3/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.206.table rename to eccodes/definitions.save/grib2/tables/3/4.206.table diff --git a/eccodes/definitions/grib2/tables/3/4.207.table b/eccodes/definitions.save/grib2/tables/3/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.207.table rename to eccodes/definitions.save/grib2/tables/3/4.207.table diff --git a/eccodes/definitions/grib2/tables/3/4.208.table b/eccodes/definitions.save/grib2/tables/3/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.208.table rename to eccodes/definitions.save/grib2/tables/3/4.208.table diff --git a/eccodes/definitions/grib2/tables/3/4.209.table b/eccodes/definitions.save/grib2/tables/3/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.209.table rename to eccodes/definitions.save/grib2/tables/3/4.209.table diff --git a/eccodes/definitions/grib2/tables/3/4.210.table b/eccodes/definitions.save/grib2/tables/3/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.210.table rename to eccodes/definitions.save/grib2/tables/3/4.210.table diff --git a/eccodes/definitions/grib2/tables/3/4.211.table b/eccodes/definitions.save/grib2/tables/3/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.211.table rename to eccodes/definitions.save/grib2/tables/3/4.211.table diff --git a/eccodes/definitions/grib2/tables/3/4.212.table b/eccodes/definitions.save/grib2/tables/3/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.212.table rename to eccodes/definitions.save/grib2/tables/3/4.212.table diff --git a/eccodes/definitions/grib2/tables/3/4.213.table b/eccodes/definitions.save/grib2/tables/3/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.213.table rename to eccodes/definitions.save/grib2/tables/3/4.213.table diff --git a/eccodes/definitions/grib2/tables/3/4.215.table b/eccodes/definitions.save/grib2/tables/3/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.215.table rename to eccodes/definitions.save/grib2/tables/3/4.215.table diff --git a/eccodes/definitions/grib2/tables/3/4.216.table b/eccodes/definitions.save/grib2/tables/3/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.216.table rename to eccodes/definitions.save/grib2/tables/3/4.216.table diff --git a/eccodes/definitions/grib2/tables/3/4.217.table b/eccodes/definitions.save/grib2/tables/3/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.217.table rename to eccodes/definitions.save/grib2/tables/3/4.217.table diff --git a/eccodes/definitions/grib2/tables/3/4.220.table b/eccodes/definitions.save/grib2/tables/3/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.220.table rename to eccodes/definitions.save/grib2/tables/3/4.220.table diff --git a/eccodes/definitions/grib2/tables/3/4.221.table b/eccodes/definitions.save/grib2/tables/3/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.221.table rename to eccodes/definitions.save/grib2/tables/3/4.221.table diff --git a/eccodes/definitions/grib2/tables/3/4.230.table b/eccodes/definitions.save/grib2/tables/3/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.230.table rename to eccodes/definitions.save/grib2/tables/3/4.230.table diff --git a/eccodes/definitions/grib2/tables/3/4.3.table b/eccodes/definitions.save/grib2/tables/3/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.3.table rename to eccodes/definitions.save/grib2/tables/3/4.3.table diff --git a/eccodes/definitions/grib2/tables/3/4.4.table b/eccodes/definitions.save/grib2/tables/3/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.4.table rename to eccodes/definitions.save/grib2/tables/3/4.4.table diff --git a/eccodes/definitions/grib2/tables/3/4.5.table b/eccodes/definitions.save/grib2/tables/3/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.5.table rename to eccodes/definitions.save/grib2/tables/3/4.5.table diff --git a/eccodes/definitions/grib2/tables/3/4.6.table b/eccodes/definitions.save/grib2/tables/3/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.6.table rename to eccodes/definitions.save/grib2/tables/3/4.6.table diff --git a/eccodes/definitions/grib2/tables/3/4.7.table b/eccodes/definitions.save/grib2/tables/3/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.7.table rename to eccodes/definitions.save/grib2/tables/3/4.7.table diff --git a/eccodes/definitions/grib2/tables/3/4.8.table b/eccodes/definitions.save/grib2/tables/3/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.8.table rename to eccodes/definitions.save/grib2/tables/3/4.8.table diff --git a/eccodes/definitions/grib2/tables/3/4.9.table b/eccodes/definitions.save/grib2/tables/3/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.9.table rename to eccodes/definitions.save/grib2/tables/3/4.9.table diff --git a/eccodes/definitions/grib2/tables/3/4.91.table b/eccodes/definitions.save/grib2/tables/3/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/4.91.table rename to eccodes/definitions.save/grib2/tables/3/4.91.table diff --git a/eccodes/definitions/grib2/tables/3/5.0.table b/eccodes/definitions.save/grib2/tables/3/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.0.table rename to eccodes/definitions.save/grib2/tables/3/5.0.table diff --git a/eccodes/definitions/grib2/tables/3/5.1.table b/eccodes/definitions.save/grib2/tables/3/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.1.table rename to eccodes/definitions.save/grib2/tables/3/5.1.table diff --git a/eccodes/definitions/grib2/tables/3/5.2.table b/eccodes/definitions.save/grib2/tables/3/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.2.table rename to eccodes/definitions.save/grib2/tables/3/5.2.table diff --git a/eccodes/definitions/grib2/tables/3/5.3.table b/eccodes/definitions.save/grib2/tables/3/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.3.table rename to eccodes/definitions.save/grib2/tables/3/5.3.table diff --git a/eccodes/definitions/grib2/tables/3/5.4.table b/eccodes/definitions.save/grib2/tables/3/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.4.table rename to eccodes/definitions.save/grib2/tables/3/5.4.table diff --git a/eccodes/definitions/grib2/tables/3/5.40.table b/eccodes/definitions.save/grib2/tables/3/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.40.table rename to eccodes/definitions.save/grib2/tables/3/5.40.table diff --git a/eccodes/definitions/grib2/tables/3/5.40000.table b/eccodes/definitions.save/grib2/tables/3/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.40000.table rename to eccodes/definitions.save/grib2/tables/3/5.40000.table diff --git a/eccodes/definitions/grib2/tables/3/5.5.table b/eccodes/definitions.save/grib2/tables/3/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.5.table rename to eccodes/definitions.save/grib2/tables/3/5.5.table diff --git a/eccodes/definitions/grib2/tables/3/5.50002.table b/eccodes/definitions.save/grib2/tables/3/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.50002.table rename to eccodes/definitions.save/grib2/tables/3/5.50002.table diff --git a/eccodes/definitions/grib2/tables/3/5.6.table b/eccodes/definitions.save/grib2/tables/3/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.6.table rename to eccodes/definitions.save/grib2/tables/3/5.6.table diff --git a/eccodes/definitions/grib2/tables/3/5.7.table b/eccodes/definitions.save/grib2/tables/3/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.7.table rename to eccodes/definitions.save/grib2/tables/3/5.7.table diff --git a/eccodes/definitions/grib2/tables/3/5.8.table b/eccodes/definitions.save/grib2/tables/3/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.8.table rename to eccodes/definitions.save/grib2/tables/3/5.8.table diff --git a/eccodes/definitions/grib2/tables/3/5.9.table b/eccodes/definitions.save/grib2/tables/3/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/5.9.table rename to eccodes/definitions.save/grib2/tables/3/5.9.table diff --git a/eccodes/definitions/grib2/tables/3/6.0.table b/eccodes/definitions.save/grib2/tables/3/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/6.0.table rename to eccodes/definitions.save/grib2/tables/3/6.0.table diff --git a/eccodes/definitions/grib2/tables/3/stepType.table b/eccodes/definitions.save/grib2/tables/3/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/3/stepType.table rename to eccodes/definitions.save/grib2/tables/3/stepType.table diff --git a/eccodes/definitions/grib2/tables/4/0.0.table b/eccodes/definitions.save/grib2/tables/4/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/0.0.table rename to eccodes/definitions.save/grib2/tables/4/0.0.table diff --git a/eccodes/definitions/grib2/tables/4/1.0.table b/eccodes/definitions.save/grib2/tables/4/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/1.0.table rename to eccodes/definitions.save/grib2/tables/4/1.0.table diff --git a/eccodes/definitions/grib2/tables/4/1.1.table b/eccodes/definitions.save/grib2/tables/4/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/1.1.table rename to eccodes/definitions.save/grib2/tables/4/1.1.table diff --git a/eccodes/definitions/grib2/tables/4/1.2.table b/eccodes/definitions.save/grib2/tables/4/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/1.2.table rename to eccodes/definitions.save/grib2/tables/4/1.2.table diff --git a/eccodes/definitions/grib2/tables/4/1.3.table b/eccodes/definitions.save/grib2/tables/4/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/1.3.table rename to eccodes/definitions.save/grib2/tables/4/1.3.table diff --git a/eccodes/definitions/grib2/tables/4/1.4.table b/eccodes/definitions.save/grib2/tables/4/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/1.4.table rename to eccodes/definitions.save/grib2/tables/4/1.4.table diff --git a/eccodes/definitions/grib2/tables/4/3.0.table b/eccodes/definitions.save/grib2/tables/4/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.0.table rename to eccodes/definitions.save/grib2/tables/4/3.0.table diff --git a/eccodes/definitions/grib2/tables/4/3.1.table b/eccodes/definitions.save/grib2/tables/4/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.1.table rename to eccodes/definitions.save/grib2/tables/4/3.1.table diff --git a/eccodes/definitions/grib2/tables/4/3.10.table b/eccodes/definitions.save/grib2/tables/4/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.10.table rename to eccodes/definitions.save/grib2/tables/4/3.10.table diff --git a/eccodes/definitions/grib2/tables/4/3.11.table b/eccodes/definitions.save/grib2/tables/4/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.11.table rename to eccodes/definitions.save/grib2/tables/4/3.11.table diff --git a/eccodes/definitions/grib2/tables/4/3.15.table b/eccodes/definitions.save/grib2/tables/4/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.15.table rename to eccodes/definitions.save/grib2/tables/4/3.15.table diff --git a/eccodes/definitions/grib2/tables/4/3.2.table b/eccodes/definitions.save/grib2/tables/4/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.2.table rename to eccodes/definitions.save/grib2/tables/4/3.2.table diff --git a/eccodes/definitions/grib2/tables/4/3.20.table b/eccodes/definitions.save/grib2/tables/4/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.20.table rename to eccodes/definitions.save/grib2/tables/4/3.20.table diff --git a/eccodes/definitions/grib2/tables/4/3.21.table b/eccodes/definitions.save/grib2/tables/4/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.21.table rename to eccodes/definitions.save/grib2/tables/4/3.21.table diff --git a/eccodes/definitions/grib2/tables/4/3.3.table b/eccodes/definitions.save/grib2/tables/4/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.3.table rename to eccodes/definitions.save/grib2/tables/4/3.3.table diff --git a/eccodes/definitions/grib2/tables/4/3.4.table b/eccodes/definitions.save/grib2/tables/4/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.4.table rename to eccodes/definitions.save/grib2/tables/4/3.4.table diff --git a/eccodes/definitions/grib2/tables/4/3.5.table b/eccodes/definitions.save/grib2/tables/4/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.5.table rename to eccodes/definitions.save/grib2/tables/4/3.5.table diff --git a/eccodes/definitions/grib2/tables/4/3.6.table b/eccodes/definitions.save/grib2/tables/4/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.6.table rename to eccodes/definitions.save/grib2/tables/4/3.6.table diff --git a/eccodes/definitions/grib2/tables/4/3.7.table b/eccodes/definitions.save/grib2/tables/4/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.7.table rename to eccodes/definitions.save/grib2/tables/4/3.7.table diff --git a/eccodes/definitions/grib2/tables/4/3.8.table b/eccodes/definitions.save/grib2/tables/4/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.8.table rename to eccodes/definitions.save/grib2/tables/4/3.8.table diff --git a/eccodes/definitions/grib2/tables/4/3.9.table b/eccodes/definitions.save/grib2/tables/4/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/3.9.table rename to eccodes/definitions.save/grib2/tables/4/3.9.table diff --git a/eccodes/definitions/grib2/tables/4/4.0.table b/eccodes/definitions.save/grib2/tables/4/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.0.table rename to eccodes/definitions.save/grib2/tables/4/4.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.0.table b/eccodes/definitions.save/grib2/tables/4/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.0.table rename to eccodes/definitions.save/grib2/tables/4/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.1.table b/eccodes/definitions.save/grib2/tables/4/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.1.table rename to eccodes/definitions.save/grib2/tables/4/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.10.table b/eccodes/definitions.save/grib2/tables/4/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.10.table rename to eccodes/definitions.save/grib2/tables/4/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.192.table b/eccodes/definitions.save/grib2/tables/4/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.192.table rename to eccodes/definitions.save/grib2/tables/4/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.2.table b/eccodes/definitions.save/grib2/tables/4/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.2.table rename to eccodes/definitions.save/grib2/tables/4/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.3.table b/eccodes/definitions.save/grib2/tables/4/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.3.table rename to eccodes/definitions.save/grib2/tables/4/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.1.table b/eccodes/definitions.save/grib2/tables/4/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.1.table rename to eccodes/definitions.save/grib2/tables/4/4.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.10.table b/eccodes/definitions.save/grib2/tables/4/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.10.table rename to eccodes/definitions.save/grib2/tables/4/4.10.table diff --git a/eccodes/definitions/grib2/tables/4/4.11.table b/eccodes/definitions.save/grib2/tables/4/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.11.table rename to eccodes/definitions.save/grib2/tables/4/4.11.table diff --git a/eccodes/definitions/grib2/tables/4/4.12.table b/eccodes/definitions.save/grib2/tables/4/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.12.table rename to eccodes/definitions.save/grib2/tables/4/4.12.table diff --git a/eccodes/definitions/grib2/tables/4/4.13.table b/eccodes/definitions.save/grib2/tables/4/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.13.table rename to eccodes/definitions.save/grib2/tables/4/4.13.table diff --git a/eccodes/definitions/grib2/tables/4/4.14.table b/eccodes/definitions.save/grib2/tables/4/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.14.table rename to eccodes/definitions.save/grib2/tables/4/4.14.table diff --git a/eccodes/definitions/grib2/tables/4/4.15.table b/eccodes/definitions.save/grib2/tables/4/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.15.table rename to eccodes/definitions.save/grib2/tables/4/4.15.table diff --git a/eccodes/definitions/grib2/tables/4/4.151.table b/eccodes/definitions.save/grib2/tables/4/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.151.table rename to eccodes/definitions.save/grib2/tables/4/4.151.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/4/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/4/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/4/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/4/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/4/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/4/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/4/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/4/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/4/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/4/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/4/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/4/4.201.table b/eccodes/definitions.save/grib2/tables/4/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.201.table rename to eccodes/definitions.save/grib2/tables/4/4.201.table diff --git a/eccodes/definitions/grib2/tables/4/4.202.table b/eccodes/definitions.save/grib2/tables/4/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.202.table rename to eccodes/definitions.save/grib2/tables/4/4.202.table diff --git a/eccodes/definitions/grib2/tables/4/4.203.table b/eccodes/definitions.save/grib2/tables/4/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.203.table rename to eccodes/definitions.save/grib2/tables/4/4.203.table diff --git a/eccodes/definitions/grib2/tables/4/4.204.table b/eccodes/definitions.save/grib2/tables/4/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.204.table rename to eccodes/definitions.save/grib2/tables/4/4.204.table diff --git a/eccodes/definitions/grib2/tables/4/4.205.table b/eccodes/definitions.save/grib2/tables/4/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.205.table rename to eccodes/definitions.save/grib2/tables/4/4.205.table diff --git a/eccodes/definitions/grib2/tables/4/4.206.table b/eccodes/definitions.save/grib2/tables/4/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.206.table rename to eccodes/definitions.save/grib2/tables/4/4.206.table diff --git a/eccodes/definitions/grib2/tables/4/4.207.table b/eccodes/definitions.save/grib2/tables/4/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.207.table rename to eccodes/definitions.save/grib2/tables/4/4.207.table diff --git a/eccodes/definitions/grib2/tables/4/4.208.table b/eccodes/definitions.save/grib2/tables/4/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.208.table rename to eccodes/definitions.save/grib2/tables/4/4.208.table diff --git a/eccodes/definitions/grib2/tables/4/4.209.table b/eccodes/definitions.save/grib2/tables/4/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.209.table rename to eccodes/definitions.save/grib2/tables/4/4.209.table diff --git a/eccodes/definitions/grib2/tables/4/4.210.table b/eccodes/definitions.save/grib2/tables/4/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.210.table rename to eccodes/definitions.save/grib2/tables/4/4.210.table diff --git a/eccodes/definitions/grib2/tables/4/4.211.table b/eccodes/definitions.save/grib2/tables/4/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.211.table rename to eccodes/definitions.save/grib2/tables/4/4.211.table diff --git a/eccodes/definitions/grib2/tables/4/4.212.table b/eccodes/definitions.save/grib2/tables/4/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.212.table rename to eccodes/definitions.save/grib2/tables/4/4.212.table diff --git a/eccodes/definitions/grib2/tables/4/4.213.table b/eccodes/definitions.save/grib2/tables/4/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.213.table rename to eccodes/definitions.save/grib2/tables/4/4.213.table diff --git a/eccodes/definitions/grib2/tables/4/4.215.table b/eccodes/definitions.save/grib2/tables/4/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.215.table rename to eccodes/definitions.save/grib2/tables/4/4.215.table diff --git a/eccodes/definitions/grib2/tables/4/4.216.table b/eccodes/definitions.save/grib2/tables/4/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.216.table rename to eccodes/definitions.save/grib2/tables/4/4.216.table diff --git a/eccodes/definitions/grib2/tables/4/4.217.table b/eccodes/definitions.save/grib2/tables/4/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.217.table rename to eccodes/definitions.save/grib2/tables/4/4.217.table diff --git a/eccodes/definitions/grib2/tables/4/4.220.table b/eccodes/definitions.save/grib2/tables/4/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.220.table rename to eccodes/definitions.save/grib2/tables/4/4.220.table diff --git a/eccodes/definitions/grib2/tables/4/4.221.table b/eccodes/definitions.save/grib2/tables/4/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.221.table rename to eccodes/definitions.save/grib2/tables/4/4.221.table diff --git a/eccodes/definitions/grib2/tables/4/4.230.table b/eccodes/definitions.save/grib2/tables/4/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.230.table rename to eccodes/definitions.save/grib2/tables/4/4.230.table diff --git a/eccodes/definitions/grib2/tables/4/4.3.table b/eccodes/definitions.save/grib2/tables/4/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.3.table rename to eccodes/definitions.save/grib2/tables/4/4.3.table diff --git a/eccodes/definitions/grib2/tables/4/4.4.table b/eccodes/definitions.save/grib2/tables/4/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.4.table rename to eccodes/definitions.save/grib2/tables/4/4.4.table diff --git a/eccodes/definitions/grib2/tables/4/4.5.table b/eccodes/definitions.save/grib2/tables/4/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.5.table rename to eccodes/definitions.save/grib2/tables/4/4.5.table diff --git a/eccodes/definitions/grib2/tables/4/4.6.table b/eccodes/definitions.save/grib2/tables/4/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.6.table rename to eccodes/definitions.save/grib2/tables/4/4.6.table diff --git a/eccodes/definitions/grib2/tables/4/4.7.table b/eccodes/definitions.save/grib2/tables/4/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.7.table rename to eccodes/definitions.save/grib2/tables/4/4.7.table diff --git a/eccodes/definitions/grib2/tables/4/4.8.table b/eccodes/definitions.save/grib2/tables/4/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.8.table rename to eccodes/definitions.save/grib2/tables/4/4.8.table diff --git a/eccodes/definitions/grib2/tables/4/4.9.table b/eccodes/definitions.save/grib2/tables/4/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.9.table rename to eccodes/definitions.save/grib2/tables/4/4.9.table diff --git a/eccodes/definitions/grib2/tables/4/4.91.table b/eccodes/definitions.save/grib2/tables/4/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/4.91.table rename to eccodes/definitions.save/grib2/tables/4/4.91.table diff --git a/eccodes/definitions/grib2/tables/4/5.0.table b/eccodes/definitions.save/grib2/tables/4/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.0.table rename to eccodes/definitions.save/grib2/tables/4/5.0.table diff --git a/eccodes/definitions/grib2/tables/4/5.1.table b/eccodes/definitions.save/grib2/tables/4/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.1.table rename to eccodes/definitions.save/grib2/tables/4/5.1.table diff --git a/eccodes/definitions/grib2/tables/4/5.2.table b/eccodes/definitions.save/grib2/tables/4/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.2.table rename to eccodes/definitions.save/grib2/tables/4/5.2.table diff --git a/eccodes/definitions/grib2/tables/4/5.3.table b/eccodes/definitions.save/grib2/tables/4/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.3.table rename to eccodes/definitions.save/grib2/tables/4/5.3.table diff --git a/eccodes/definitions/grib2/tables/4/5.4.table b/eccodes/definitions.save/grib2/tables/4/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.4.table rename to eccodes/definitions.save/grib2/tables/4/5.4.table diff --git a/eccodes/definitions/grib2/tables/4/5.40.table b/eccodes/definitions.save/grib2/tables/4/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.40.table rename to eccodes/definitions.save/grib2/tables/4/5.40.table diff --git a/eccodes/definitions/grib2/tables/4/5.40000.table b/eccodes/definitions.save/grib2/tables/4/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.40000.table rename to eccodes/definitions.save/grib2/tables/4/5.40000.table diff --git a/eccodes/definitions/grib2/tables/4/5.5.table b/eccodes/definitions.save/grib2/tables/4/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.5.table rename to eccodes/definitions.save/grib2/tables/4/5.5.table diff --git a/eccodes/definitions/grib2/tables/4/5.50002.table b/eccodes/definitions.save/grib2/tables/4/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.50002.table rename to eccodes/definitions.save/grib2/tables/4/5.50002.table diff --git a/eccodes/definitions/grib2/tables/4/5.6.table b/eccodes/definitions.save/grib2/tables/4/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.6.table rename to eccodes/definitions.save/grib2/tables/4/5.6.table diff --git a/eccodes/definitions/grib2/tables/4/5.7.table b/eccodes/definitions.save/grib2/tables/4/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.7.table rename to eccodes/definitions.save/grib2/tables/4/5.7.table diff --git a/eccodes/definitions/grib2/tables/4/5.8.table b/eccodes/definitions.save/grib2/tables/4/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.8.table rename to eccodes/definitions.save/grib2/tables/4/5.8.table diff --git a/eccodes/definitions/grib2/tables/4/5.9.table b/eccodes/definitions.save/grib2/tables/4/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/5.9.table rename to eccodes/definitions.save/grib2/tables/4/5.9.table diff --git a/eccodes/definitions/grib2/tables/4/6.0.table b/eccodes/definitions.save/grib2/tables/4/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/6.0.table rename to eccodes/definitions.save/grib2/tables/4/6.0.table diff --git a/eccodes/definitions/grib2/tables/4/stepType.table b/eccodes/definitions.save/grib2/tables/4/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/4/stepType.table rename to eccodes/definitions.save/grib2/tables/4/stepType.table diff --git a/eccodes/definitions/grib2/tables/5/0.0.table b/eccodes/definitions.save/grib2/tables/5/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/0.0.table rename to eccodes/definitions.save/grib2/tables/5/0.0.table diff --git a/eccodes/definitions/grib2/tables/5/1.0.table b/eccodes/definitions.save/grib2/tables/5/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/1.0.table rename to eccodes/definitions.save/grib2/tables/5/1.0.table diff --git a/eccodes/definitions/grib2/tables/5/1.1.table b/eccodes/definitions.save/grib2/tables/5/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/1.1.table rename to eccodes/definitions.save/grib2/tables/5/1.1.table diff --git a/eccodes/definitions/grib2/tables/5/1.2.table b/eccodes/definitions.save/grib2/tables/5/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/1.2.table rename to eccodes/definitions.save/grib2/tables/5/1.2.table diff --git a/eccodes/definitions/grib2/tables/5/1.3.table b/eccodes/definitions.save/grib2/tables/5/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/1.3.table rename to eccodes/definitions.save/grib2/tables/5/1.3.table diff --git a/eccodes/definitions/grib2/tables/5/1.4.table b/eccodes/definitions.save/grib2/tables/5/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/1.4.table rename to eccodes/definitions.save/grib2/tables/5/1.4.table diff --git a/eccodes/definitions/grib2/tables/5/3.0.table b/eccodes/definitions.save/grib2/tables/5/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.0.table rename to eccodes/definitions.save/grib2/tables/5/3.0.table diff --git a/eccodes/definitions/grib2/tables/5/3.1.table b/eccodes/definitions.save/grib2/tables/5/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.1.table rename to eccodes/definitions.save/grib2/tables/5/3.1.table diff --git a/eccodes/definitions/grib2/tables/5/3.10.table b/eccodes/definitions.save/grib2/tables/5/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.10.table rename to eccodes/definitions.save/grib2/tables/5/3.10.table diff --git a/eccodes/definitions/grib2/tables/5/3.11.table b/eccodes/definitions.save/grib2/tables/5/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.11.table rename to eccodes/definitions.save/grib2/tables/5/3.11.table diff --git a/eccodes/definitions/grib2/tables/5/3.15.table b/eccodes/definitions.save/grib2/tables/5/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.15.table rename to eccodes/definitions.save/grib2/tables/5/3.15.table diff --git a/eccodes/definitions/grib2/tables/5/3.2.table b/eccodes/definitions.save/grib2/tables/5/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.2.table rename to eccodes/definitions.save/grib2/tables/5/3.2.table diff --git a/eccodes/definitions/grib2/tables/5/3.20.table b/eccodes/definitions.save/grib2/tables/5/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.20.table rename to eccodes/definitions.save/grib2/tables/5/3.20.table diff --git a/eccodes/definitions/grib2/tables/5/3.21.table b/eccodes/definitions.save/grib2/tables/5/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.21.table rename to eccodes/definitions.save/grib2/tables/5/3.21.table diff --git a/eccodes/definitions/grib2/tables/5/3.3.table b/eccodes/definitions.save/grib2/tables/5/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.3.table rename to eccodes/definitions.save/grib2/tables/5/3.3.table diff --git a/eccodes/definitions/grib2/tables/5/3.4.table b/eccodes/definitions.save/grib2/tables/5/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.4.table rename to eccodes/definitions.save/grib2/tables/5/3.4.table diff --git a/eccodes/definitions/grib2/tables/5/3.5.table b/eccodes/definitions.save/grib2/tables/5/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.5.table rename to eccodes/definitions.save/grib2/tables/5/3.5.table diff --git a/eccodes/definitions/grib2/tables/5/3.6.table b/eccodes/definitions.save/grib2/tables/5/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.6.table rename to eccodes/definitions.save/grib2/tables/5/3.6.table diff --git a/eccodes/definitions/grib2/tables/5/3.7.table b/eccodes/definitions.save/grib2/tables/5/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.7.table rename to eccodes/definitions.save/grib2/tables/5/3.7.table diff --git a/eccodes/definitions/grib2/tables/5/3.8.table b/eccodes/definitions.save/grib2/tables/5/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.8.table rename to eccodes/definitions.save/grib2/tables/5/3.8.table diff --git a/eccodes/definitions/grib2/tables/5/3.9.table b/eccodes/definitions.save/grib2/tables/5/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/3.9.table rename to eccodes/definitions.save/grib2/tables/5/3.9.table diff --git a/eccodes/definitions/grib2/tables/5/4.0.table b/eccodes/definitions.save/grib2/tables/5/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.0.table rename to eccodes/definitions.save/grib2/tables/5/4.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.0.table b/eccodes/definitions.save/grib2/tables/5/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.0.table rename to eccodes/definitions.save/grib2/tables/5/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.1.table b/eccodes/definitions.save/grib2/tables/5/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.1.table rename to eccodes/definitions.save/grib2/tables/5/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.10.table b/eccodes/definitions.save/grib2/tables/5/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.10.table rename to eccodes/definitions.save/grib2/tables/5/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.192.table b/eccodes/definitions.save/grib2/tables/5/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.192.table rename to eccodes/definitions.save/grib2/tables/5/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.2.table b/eccodes/definitions.save/grib2/tables/5/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.2.table rename to eccodes/definitions.save/grib2/tables/5/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.3.table b/eccodes/definitions.save/grib2/tables/5/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.3.table rename to eccodes/definitions.save/grib2/tables/5/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.1.table b/eccodes/definitions.save/grib2/tables/5/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.1.table rename to eccodes/definitions.save/grib2/tables/5/4.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.10.table b/eccodes/definitions.save/grib2/tables/5/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.10.table rename to eccodes/definitions.save/grib2/tables/5/4.10.table diff --git a/eccodes/definitions/grib2/tables/5/4.11.table b/eccodes/definitions.save/grib2/tables/5/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.11.table rename to eccodes/definitions.save/grib2/tables/5/4.11.table diff --git a/eccodes/definitions/grib2/tables/5/4.12.table b/eccodes/definitions.save/grib2/tables/5/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.12.table rename to eccodes/definitions.save/grib2/tables/5/4.12.table diff --git a/eccodes/definitions/grib2/tables/5/4.13.table b/eccodes/definitions.save/grib2/tables/5/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.13.table rename to eccodes/definitions.save/grib2/tables/5/4.13.table diff --git a/eccodes/definitions/grib2/tables/5/4.14.table b/eccodes/definitions.save/grib2/tables/5/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.14.table rename to eccodes/definitions.save/grib2/tables/5/4.14.table diff --git a/eccodes/definitions/grib2/tables/5/4.15.table b/eccodes/definitions.save/grib2/tables/5/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.15.table rename to eccodes/definitions.save/grib2/tables/5/4.15.table diff --git a/eccodes/definitions/grib2/tables/5/4.151.table b/eccodes/definitions.save/grib2/tables/5/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.151.table rename to eccodes/definitions.save/grib2/tables/5/4.151.table diff --git a/eccodes/definitions/grib2/tables/5/4.192.table b/eccodes/definitions.save/grib2/tables/5/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.192.table rename to eccodes/definitions.save/grib2/tables/5/4.192.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/5/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/5/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/5/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/5/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/5/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/5/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/5/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/5/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/5/4.201.table b/eccodes/definitions.save/grib2/tables/5/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.201.table rename to eccodes/definitions.save/grib2/tables/5/4.201.table diff --git a/eccodes/definitions/grib2/tables/5/4.202.table b/eccodes/definitions.save/grib2/tables/5/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.202.table rename to eccodes/definitions.save/grib2/tables/5/4.202.table diff --git a/eccodes/definitions/grib2/tables/5/4.203.table b/eccodes/definitions.save/grib2/tables/5/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.203.table rename to eccodes/definitions.save/grib2/tables/5/4.203.table diff --git a/eccodes/definitions/grib2/tables/5/4.204.table b/eccodes/definitions.save/grib2/tables/5/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.204.table rename to eccodes/definitions.save/grib2/tables/5/4.204.table diff --git a/eccodes/definitions/grib2/tables/5/4.205.table b/eccodes/definitions.save/grib2/tables/5/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.205.table rename to eccodes/definitions.save/grib2/tables/5/4.205.table diff --git a/eccodes/definitions/grib2/tables/5/4.206.table b/eccodes/definitions.save/grib2/tables/5/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.206.table rename to eccodes/definitions.save/grib2/tables/5/4.206.table diff --git a/eccodes/definitions/grib2/tables/5/4.207.table b/eccodes/definitions.save/grib2/tables/5/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.207.table rename to eccodes/definitions.save/grib2/tables/5/4.207.table diff --git a/eccodes/definitions/grib2/tables/5/4.208.table b/eccodes/definitions.save/grib2/tables/5/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.208.table rename to eccodes/definitions.save/grib2/tables/5/4.208.table diff --git a/eccodes/definitions/grib2/tables/5/4.209.table b/eccodes/definitions.save/grib2/tables/5/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.209.table rename to eccodes/definitions.save/grib2/tables/5/4.209.table diff --git a/eccodes/definitions/grib2/tables/5/4.210.table b/eccodes/definitions.save/grib2/tables/5/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.210.table rename to eccodes/definitions.save/grib2/tables/5/4.210.table diff --git a/eccodes/definitions/grib2/tables/5/4.211.table b/eccodes/definitions.save/grib2/tables/5/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.211.table rename to eccodes/definitions.save/grib2/tables/5/4.211.table diff --git a/eccodes/definitions/grib2/tables/5/4.212.table b/eccodes/definitions.save/grib2/tables/5/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.212.table rename to eccodes/definitions.save/grib2/tables/5/4.212.table diff --git a/eccodes/definitions/grib2/tables/5/4.213.table b/eccodes/definitions.save/grib2/tables/5/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.213.table rename to eccodes/definitions.save/grib2/tables/5/4.213.table diff --git a/eccodes/definitions/grib2/tables/5/4.215.table b/eccodes/definitions.save/grib2/tables/5/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.215.table rename to eccodes/definitions.save/grib2/tables/5/4.215.table diff --git a/eccodes/definitions/grib2/tables/5/4.216.table b/eccodes/definitions.save/grib2/tables/5/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.216.table rename to eccodes/definitions.save/grib2/tables/5/4.216.table diff --git a/eccodes/definitions/grib2/tables/5/4.217.table b/eccodes/definitions.save/grib2/tables/5/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.217.table rename to eccodes/definitions.save/grib2/tables/5/4.217.table diff --git a/eccodes/definitions/grib2/tables/5/4.218.table b/eccodes/definitions.save/grib2/tables/5/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.218.table rename to eccodes/definitions.save/grib2/tables/5/4.218.table diff --git a/eccodes/definitions/grib2/tables/5/4.219.table b/eccodes/definitions.save/grib2/tables/5/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.219.table rename to eccodes/definitions.save/grib2/tables/5/4.219.table diff --git a/eccodes/definitions/grib2/tables/5/4.220.table b/eccodes/definitions.save/grib2/tables/5/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.220.table rename to eccodes/definitions.save/grib2/tables/5/4.220.table diff --git a/eccodes/definitions/grib2/tables/5/4.221.table b/eccodes/definitions.save/grib2/tables/5/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.221.table rename to eccodes/definitions.save/grib2/tables/5/4.221.table diff --git a/eccodes/definitions/grib2/tables/5/4.222.table b/eccodes/definitions.save/grib2/tables/5/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.222.table rename to eccodes/definitions.save/grib2/tables/5/4.222.table diff --git a/eccodes/definitions/grib2/tables/5/4.223.table b/eccodes/definitions.save/grib2/tables/5/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.223.table rename to eccodes/definitions.save/grib2/tables/5/4.223.table diff --git a/eccodes/definitions/grib2/tables/5/4.230.table b/eccodes/definitions.save/grib2/tables/5/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.230.table rename to eccodes/definitions.save/grib2/tables/5/4.230.table diff --git a/eccodes/definitions/grib2/tables/5/4.3.table b/eccodes/definitions.save/grib2/tables/5/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.3.table rename to eccodes/definitions.save/grib2/tables/5/4.3.table diff --git a/eccodes/definitions/grib2/tables/5/4.4.table b/eccodes/definitions.save/grib2/tables/5/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.4.table rename to eccodes/definitions.save/grib2/tables/5/4.4.table diff --git a/eccodes/definitions/grib2/tables/5/4.5.table b/eccodes/definitions.save/grib2/tables/5/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.5.table rename to eccodes/definitions.save/grib2/tables/5/4.5.table diff --git a/eccodes/definitions/grib2/tables/5/4.6.table b/eccodes/definitions.save/grib2/tables/5/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.6.table rename to eccodes/definitions.save/grib2/tables/5/4.6.table diff --git a/eccodes/definitions/grib2/tables/5/4.7.table b/eccodes/definitions.save/grib2/tables/5/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.7.table rename to eccodes/definitions.save/grib2/tables/5/4.7.table diff --git a/eccodes/definitions/grib2/tables/5/4.8.table b/eccodes/definitions.save/grib2/tables/5/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.8.table rename to eccodes/definitions.save/grib2/tables/5/4.8.table diff --git a/eccodes/definitions/grib2/tables/5/4.9.table b/eccodes/definitions.save/grib2/tables/5/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.9.table rename to eccodes/definitions.save/grib2/tables/5/4.9.table diff --git a/eccodes/definitions/grib2/tables/5/4.91.table b/eccodes/definitions.save/grib2/tables/5/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/4.91.table rename to eccodes/definitions.save/grib2/tables/5/4.91.table diff --git a/eccodes/definitions/grib2/tables/5/5.0.table b/eccodes/definitions.save/grib2/tables/5/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.0.table rename to eccodes/definitions.save/grib2/tables/5/5.0.table diff --git a/eccodes/definitions/grib2/tables/5/5.1.table b/eccodes/definitions.save/grib2/tables/5/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.1.table rename to eccodes/definitions.save/grib2/tables/5/5.1.table diff --git a/eccodes/definitions/grib2/tables/5/5.2.table b/eccodes/definitions.save/grib2/tables/5/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.2.table rename to eccodes/definitions.save/grib2/tables/5/5.2.table diff --git a/eccodes/definitions/grib2/tables/5/5.3.table b/eccodes/definitions.save/grib2/tables/5/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.3.table rename to eccodes/definitions.save/grib2/tables/5/5.3.table diff --git a/eccodes/definitions/grib2/tables/5/5.4.table b/eccodes/definitions.save/grib2/tables/5/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.4.table rename to eccodes/definitions.save/grib2/tables/5/5.4.table diff --git a/eccodes/definitions/grib2/tables/5/5.40.table b/eccodes/definitions.save/grib2/tables/5/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.40.table rename to eccodes/definitions.save/grib2/tables/5/5.40.table diff --git a/eccodes/definitions/grib2/tables/5/5.40000.table b/eccodes/definitions.save/grib2/tables/5/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.40000.table rename to eccodes/definitions.save/grib2/tables/5/5.40000.table diff --git a/eccodes/definitions/grib2/tables/5/5.5.table b/eccodes/definitions.save/grib2/tables/5/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.5.table rename to eccodes/definitions.save/grib2/tables/5/5.5.table diff --git a/eccodes/definitions/grib2/tables/5/5.50002.table b/eccodes/definitions.save/grib2/tables/5/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.50002.table rename to eccodes/definitions.save/grib2/tables/5/5.50002.table diff --git a/eccodes/definitions/grib2/tables/5/5.6.table b/eccodes/definitions.save/grib2/tables/5/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.6.table rename to eccodes/definitions.save/grib2/tables/5/5.6.table diff --git a/eccodes/definitions/grib2/tables/5/5.7.table b/eccodes/definitions.save/grib2/tables/5/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.7.table rename to eccodes/definitions.save/grib2/tables/5/5.7.table diff --git a/eccodes/definitions/grib2/tables/5/5.8.table b/eccodes/definitions.save/grib2/tables/5/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.8.table rename to eccodes/definitions.save/grib2/tables/5/5.8.table diff --git a/eccodes/definitions/grib2/tables/5/5.9.table b/eccodes/definitions.save/grib2/tables/5/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/5.9.table rename to eccodes/definitions.save/grib2/tables/5/5.9.table diff --git a/eccodes/definitions/grib2/tables/5/6.0.table b/eccodes/definitions.save/grib2/tables/5/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/6.0.table rename to eccodes/definitions.save/grib2/tables/5/6.0.table diff --git a/eccodes/definitions/grib2/tables/5/stepType.table b/eccodes/definitions.save/grib2/tables/5/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/5/stepType.table rename to eccodes/definitions.save/grib2/tables/5/stepType.table diff --git a/eccodes/definitions/grib2/tables/6/0.0.table b/eccodes/definitions.save/grib2/tables/6/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/0.0.table rename to eccodes/definitions.save/grib2/tables/6/0.0.table diff --git a/eccodes/definitions/grib2/tables/6/1.0.table b/eccodes/definitions.save/grib2/tables/6/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/1.0.table rename to eccodes/definitions.save/grib2/tables/6/1.0.table diff --git a/eccodes/definitions/grib2/tables/6/1.1.table b/eccodes/definitions.save/grib2/tables/6/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/1.1.table rename to eccodes/definitions.save/grib2/tables/6/1.1.table diff --git a/eccodes/definitions/grib2/tables/6/1.2.table b/eccodes/definitions.save/grib2/tables/6/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/1.2.table rename to eccodes/definitions.save/grib2/tables/6/1.2.table diff --git a/eccodes/definitions/grib2/tables/6/1.3.table b/eccodes/definitions.save/grib2/tables/6/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/1.3.table rename to eccodes/definitions.save/grib2/tables/6/1.3.table diff --git a/eccodes/definitions/grib2/tables/6/1.4.table b/eccodes/definitions.save/grib2/tables/6/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/1.4.table rename to eccodes/definitions.save/grib2/tables/6/1.4.table diff --git a/eccodes/definitions/grib2/tables/6/3.0.table b/eccodes/definitions.save/grib2/tables/6/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.0.table rename to eccodes/definitions.save/grib2/tables/6/3.0.table diff --git a/eccodes/definitions/grib2/tables/6/3.1.table b/eccodes/definitions.save/grib2/tables/6/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.1.table rename to eccodes/definitions.save/grib2/tables/6/3.1.table diff --git a/eccodes/definitions/grib2/tables/6/3.10.table b/eccodes/definitions.save/grib2/tables/6/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.10.table rename to eccodes/definitions.save/grib2/tables/6/3.10.table diff --git a/eccodes/definitions/grib2/tables/6/3.11.table b/eccodes/definitions.save/grib2/tables/6/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.11.table rename to eccodes/definitions.save/grib2/tables/6/3.11.table diff --git a/eccodes/definitions/grib2/tables/6/3.15.table b/eccodes/definitions.save/grib2/tables/6/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.15.table rename to eccodes/definitions.save/grib2/tables/6/3.15.table diff --git a/eccodes/definitions/grib2/tables/6/3.2.table b/eccodes/definitions.save/grib2/tables/6/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.2.table rename to eccodes/definitions.save/grib2/tables/6/3.2.table diff --git a/eccodes/definitions/grib2/tables/6/3.20.table b/eccodes/definitions.save/grib2/tables/6/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.20.table rename to eccodes/definitions.save/grib2/tables/6/3.20.table diff --git a/eccodes/definitions/grib2/tables/6/3.21.table b/eccodes/definitions.save/grib2/tables/6/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.21.table rename to eccodes/definitions.save/grib2/tables/6/3.21.table diff --git a/eccodes/definitions/grib2/tables/6/3.3.table b/eccodes/definitions.save/grib2/tables/6/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.3.table rename to eccodes/definitions.save/grib2/tables/6/3.3.table diff --git a/eccodes/definitions/grib2/tables/6/3.4.table b/eccodes/definitions.save/grib2/tables/6/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.4.table rename to eccodes/definitions.save/grib2/tables/6/3.4.table diff --git a/eccodes/definitions/grib2/tables/6/3.5.table b/eccodes/definitions.save/grib2/tables/6/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.5.table rename to eccodes/definitions.save/grib2/tables/6/3.5.table diff --git a/eccodes/definitions/grib2/tables/6/3.6.table b/eccodes/definitions.save/grib2/tables/6/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.6.table rename to eccodes/definitions.save/grib2/tables/6/3.6.table diff --git a/eccodes/definitions/grib2/tables/6/3.7.table b/eccodes/definitions.save/grib2/tables/6/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.7.table rename to eccodes/definitions.save/grib2/tables/6/3.7.table diff --git a/eccodes/definitions/grib2/tables/6/3.8.table b/eccodes/definitions.save/grib2/tables/6/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.8.table rename to eccodes/definitions.save/grib2/tables/6/3.8.table diff --git a/eccodes/definitions/grib2/tables/6/3.9.table b/eccodes/definitions.save/grib2/tables/6/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/3.9.table rename to eccodes/definitions.save/grib2/tables/6/3.9.table diff --git a/eccodes/definitions/grib2/tables/6/4.0.table b/eccodes/definitions.save/grib2/tables/6/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.0.table rename to eccodes/definitions.save/grib2/tables/6/4.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.0.table b/eccodes/definitions.save/grib2/tables/6/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.0.table rename to eccodes/definitions.save/grib2/tables/6/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.1.table b/eccodes/definitions.save/grib2/tables/6/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.1.table rename to eccodes/definitions.save/grib2/tables/6/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.10.table b/eccodes/definitions.save/grib2/tables/6/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.10.table rename to eccodes/definitions.save/grib2/tables/6/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.192.table b/eccodes/definitions.save/grib2/tables/6/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.192.table rename to eccodes/definitions.save/grib2/tables/6/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.2.table b/eccodes/definitions.save/grib2/tables/6/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.2.table rename to eccodes/definitions.save/grib2/tables/6/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.3.table b/eccodes/definitions.save/grib2/tables/6/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.3.table rename to eccodes/definitions.save/grib2/tables/6/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.1.table b/eccodes/definitions.save/grib2/tables/6/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.1.table rename to eccodes/definitions.save/grib2/tables/6/4.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.10.table b/eccodes/definitions.save/grib2/tables/6/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.10.table rename to eccodes/definitions.save/grib2/tables/6/4.10.table diff --git a/eccodes/definitions/grib2/tables/6/4.11.table b/eccodes/definitions.save/grib2/tables/6/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.11.table rename to eccodes/definitions.save/grib2/tables/6/4.11.table diff --git a/eccodes/definitions/grib2/tables/6/4.12.table b/eccodes/definitions.save/grib2/tables/6/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.12.table rename to eccodes/definitions.save/grib2/tables/6/4.12.table diff --git a/eccodes/definitions/grib2/tables/6/4.13.table b/eccodes/definitions.save/grib2/tables/6/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.13.table rename to eccodes/definitions.save/grib2/tables/6/4.13.table diff --git a/eccodes/definitions/grib2/tables/6/4.14.table b/eccodes/definitions.save/grib2/tables/6/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.14.table rename to eccodes/definitions.save/grib2/tables/6/4.14.table diff --git a/eccodes/definitions/grib2/tables/6/4.15.table b/eccodes/definitions.save/grib2/tables/6/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.15.table rename to eccodes/definitions.save/grib2/tables/6/4.15.table diff --git a/eccodes/definitions/grib2/tables/6/4.151.table b/eccodes/definitions.save/grib2/tables/6/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.151.table rename to eccodes/definitions.save/grib2/tables/6/4.151.table diff --git a/eccodes/definitions/grib2/tables/6/4.192.table b/eccodes/definitions.save/grib2/tables/6/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.192.table rename to eccodes/definitions.save/grib2/tables/6/4.192.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/6/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/6/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/6/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/6/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/6/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/6/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/6/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/6/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/6/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/6/4.201.table b/eccodes/definitions.save/grib2/tables/6/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.201.table rename to eccodes/definitions.save/grib2/tables/6/4.201.table diff --git a/eccodes/definitions/grib2/tables/6/4.202.table b/eccodes/definitions.save/grib2/tables/6/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.202.table rename to eccodes/definitions.save/grib2/tables/6/4.202.table diff --git a/eccodes/definitions/grib2/tables/6/4.203.table b/eccodes/definitions.save/grib2/tables/6/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.203.table rename to eccodes/definitions.save/grib2/tables/6/4.203.table diff --git a/eccodes/definitions/grib2/tables/6/4.204.table b/eccodes/definitions.save/grib2/tables/6/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.204.table rename to eccodes/definitions.save/grib2/tables/6/4.204.table diff --git a/eccodes/definitions/grib2/tables/6/4.205.table b/eccodes/definitions.save/grib2/tables/6/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.205.table rename to eccodes/definitions.save/grib2/tables/6/4.205.table diff --git a/eccodes/definitions/grib2/tables/6/4.206.table b/eccodes/definitions.save/grib2/tables/6/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.206.table rename to eccodes/definitions.save/grib2/tables/6/4.206.table diff --git a/eccodes/definitions/grib2/tables/6/4.207.table b/eccodes/definitions.save/grib2/tables/6/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.207.table rename to eccodes/definitions.save/grib2/tables/6/4.207.table diff --git a/eccodes/definitions/grib2/tables/6/4.208.table b/eccodes/definitions.save/grib2/tables/6/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.208.table rename to eccodes/definitions.save/grib2/tables/6/4.208.table diff --git a/eccodes/definitions/grib2/tables/6/4.209.table b/eccodes/definitions.save/grib2/tables/6/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.209.table rename to eccodes/definitions.save/grib2/tables/6/4.209.table diff --git a/eccodes/definitions/grib2/tables/6/4.210.table b/eccodes/definitions.save/grib2/tables/6/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.210.table rename to eccodes/definitions.save/grib2/tables/6/4.210.table diff --git a/eccodes/definitions/grib2/tables/6/4.211.table b/eccodes/definitions.save/grib2/tables/6/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.211.table rename to eccodes/definitions.save/grib2/tables/6/4.211.table diff --git a/eccodes/definitions/grib2/tables/6/4.212.table b/eccodes/definitions.save/grib2/tables/6/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.212.table rename to eccodes/definitions.save/grib2/tables/6/4.212.table diff --git a/eccodes/definitions/grib2/tables/6/4.213.table b/eccodes/definitions.save/grib2/tables/6/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.213.table rename to eccodes/definitions.save/grib2/tables/6/4.213.table diff --git a/eccodes/definitions/grib2/tables/6/4.215.table b/eccodes/definitions.save/grib2/tables/6/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.215.table rename to eccodes/definitions.save/grib2/tables/6/4.215.table diff --git a/eccodes/definitions/grib2/tables/6/4.216.table b/eccodes/definitions.save/grib2/tables/6/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.216.table rename to eccodes/definitions.save/grib2/tables/6/4.216.table diff --git a/eccodes/definitions/grib2/tables/6/4.217.table b/eccodes/definitions.save/grib2/tables/6/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.217.table rename to eccodes/definitions.save/grib2/tables/6/4.217.table diff --git a/eccodes/definitions/grib2/tables/6/4.218.table b/eccodes/definitions.save/grib2/tables/6/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.218.table rename to eccodes/definitions.save/grib2/tables/6/4.218.table diff --git a/eccodes/definitions/grib2/tables/6/4.219.table b/eccodes/definitions.save/grib2/tables/6/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.219.table rename to eccodes/definitions.save/grib2/tables/6/4.219.table diff --git a/eccodes/definitions/grib2/tables/6/4.220.table b/eccodes/definitions.save/grib2/tables/6/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.220.table rename to eccodes/definitions.save/grib2/tables/6/4.220.table diff --git a/eccodes/definitions/grib2/tables/6/4.221.table b/eccodes/definitions.save/grib2/tables/6/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.221.table rename to eccodes/definitions.save/grib2/tables/6/4.221.table diff --git a/eccodes/definitions/grib2/tables/6/4.222.table b/eccodes/definitions.save/grib2/tables/6/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.222.table rename to eccodes/definitions.save/grib2/tables/6/4.222.table diff --git a/eccodes/definitions/grib2/tables/6/4.223.table b/eccodes/definitions.save/grib2/tables/6/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.223.table rename to eccodes/definitions.save/grib2/tables/6/4.223.table diff --git a/eccodes/definitions/grib2/tables/6/4.230.table b/eccodes/definitions.save/grib2/tables/6/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.230.table rename to eccodes/definitions.save/grib2/tables/6/4.230.table diff --git a/eccodes/definitions/grib2/tables/6/4.3.table b/eccodes/definitions.save/grib2/tables/6/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.3.table rename to eccodes/definitions.save/grib2/tables/6/4.3.table diff --git a/eccodes/definitions/grib2/tables/6/4.4.table b/eccodes/definitions.save/grib2/tables/6/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.4.table rename to eccodes/definitions.save/grib2/tables/6/4.4.table diff --git a/eccodes/definitions/grib2/tables/6/4.5.table b/eccodes/definitions.save/grib2/tables/6/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.5.table rename to eccodes/definitions.save/grib2/tables/6/4.5.table diff --git a/eccodes/definitions/grib2/tables/6/4.6.table b/eccodes/definitions.save/grib2/tables/6/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.6.table rename to eccodes/definitions.save/grib2/tables/6/4.6.table diff --git a/eccodes/definitions/grib2/tables/6/4.7.table b/eccodes/definitions.save/grib2/tables/6/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.7.table rename to eccodes/definitions.save/grib2/tables/6/4.7.table diff --git a/eccodes/definitions/grib2/tables/6/4.8.table b/eccodes/definitions.save/grib2/tables/6/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.8.table rename to eccodes/definitions.save/grib2/tables/6/4.8.table diff --git a/eccodes/definitions/grib2/tables/6/4.9.table b/eccodes/definitions.save/grib2/tables/6/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.9.table rename to eccodes/definitions.save/grib2/tables/6/4.9.table diff --git a/eccodes/definitions/grib2/tables/6/4.91.table b/eccodes/definitions.save/grib2/tables/6/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/4.91.table rename to eccodes/definitions.save/grib2/tables/6/4.91.table diff --git a/eccodes/definitions/grib2/tables/6/5.0.table b/eccodes/definitions.save/grib2/tables/6/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.0.table rename to eccodes/definitions.save/grib2/tables/6/5.0.table diff --git a/eccodes/definitions/grib2/tables/6/5.1.table b/eccodes/definitions.save/grib2/tables/6/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.1.table rename to eccodes/definitions.save/grib2/tables/6/5.1.table diff --git a/eccodes/definitions/grib2/tables/6/5.2.table b/eccodes/definitions.save/grib2/tables/6/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.2.table rename to eccodes/definitions.save/grib2/tables/6/5.2.table diff --git a/eccodes/definitions/grib2/tables/6/5.3.table b/eccodes/definitions.save/grib2/tables/6/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.3.table rename to eccodes/definitions.save/grib2/tables/6/5.3.table diff --git a/eccodes/definitions/grib2/tables/6/5.4.table b/eccodes/definitions.save/grib2/tables/6/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.4.table rename to eccodes/definitions.save/grib2/tables/6/5.4.table diff --git a/eccodes/definitions/grib2/tables/6/5.40.table b/eccodes/definitions.save/grib2/tables/6/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.40.table rename to eccodes/definitions.save/grib2/tables/6/5.40.table diff --git a/eccodes/definitions/grib2/tables/6/5.40000.table b/eccodes/definitions.save/grib2/tables/6/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.40000.table rename to eccodes/definitions.save/grib2/tables/6/5.40000.table diff --git a/eccodes/definitions/grib2/tables/6/5.5.table b/eccodes/definitions.save/grib2/tables/6/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.5.table rename to eccodes/definitions.save/grib2/tables/6/5.5.table diff --git a/eccodes/definitions/grib2/tables/6/5.50002.table b/eccodes/definitions.save/grib2/tables/6/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.50002.table rename to eccodes/definitions.save/grib2/tables/6/5.50002.table diff --git a/eccodes/definitions/grib2/tables/6/5.6.table b/eccodes/definitions.save/grib2/tables/6/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.6.table rename to eccodes/definitions.save/grib2/tables/6/5.6.table diff --git a/eccodes/definitions/grib2/tables/6/5.7.table b/eccodes/definitions.save/grib2/tables/6/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.7.table rename to eccodes/definitions.save/grib2/tables/6/5.7.table diff --git a/eccodes/definitions/grib2/tables/6/5.8.table b/eccodes/definitions.save/grib2/tables/6/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.8.table rename to eccodes/definitions.save/grib2/tables/6/5.8.table diff --git a/eccodes/definitions/grib2/tables/6/5.9.table b/eccodes/definitions.save/grib2/tables/6/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/5.9.table rename to eccodes/definitions.save/grib2/tables/6/5.9.table diff --git a/eccodes/definitions/grib2/tables/6/6.0.table b/eccodes/definitions.save/grib2/tables/6/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/6.0.table rename to eccodes/definitions.save/grib2/tables/6/6.0.table diff --git a/eccodes/definitions/grib2/tables/6/stepType.table b/eccodes/definitions.save/grib2/tables/6/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/6/stepType.table rename to eccodes/definitions.save/grib2/tables/6/stepType.table diff --git a/eccodes/definitions/grib2/tables/7/0.0.table b/eccodes/definitions.save/grib2/tables/7/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/0.0.table rename to eccodes/definitions.save/grib2/tables/7/0.0.table diff --git a/eccodes/definitions/grib2/tables/7/1.0.table b/eccodes/definitions.save/grib2/tables/7/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/1.0.table rename to eccodes/definitions.save/grib2/tables/7/1.0.table diff --git a/eccodes/definitions/grib2/tables/7/1.1.table b/eccodes/definitions.save/grib2/tables/7/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/1.1.table rename to eccodes/definitions.save/grib2/tables/7/1.1.table diff --git a/eccodes/definitions/grib2/tables/7/1.2.table b/eccodes/definitions.save/grib2/tables/7/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/1.2.table rename to eccodes/definitions.save/grib2/tables/7/1.2.table diff --git a/eccodes/definitions/grib2/tables/7/1.3.table b/eccodes/definitions.save/grib2/tables/7/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/1.3.table rename to eccodes/definitions.save/grib2/tables/7/1.3.table diff --git a/eccodes/definitions/grib2/tables/7/1.4.table b/eccodes/definitions.save/grib2/tables/7/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/1.4.table rename to eccodes/definitions.save/grib2/tables/7/1.4.table diff --git a/eccodes/definitions/grib2/tables/7/3.0.table b/eccodes/definitions.save/grib2/tables/7/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.0.table rename to eccodes/definitions.save/grib2/tables/7/3.0.table diff --git a/eccodes/definitions/grib2/tables/7/3.1.table b/eccodes/definitions.save/grib2/tables/7/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.1.table rename to eccodes/definitions.save/grib2/tables/7/3.1.table diff --git a/eccodes/definitions/grib2/tables/7/3.10.table b/eccodes/definitions.save/grib2/tables/7/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.10.table rename to eccodes/definitions.save/grib2/tables/7/3.10.table diff --git a/eccodes/definitions/grib2/tables/7/3.11.table b/eccodes/definitions.save/grib2/tables/7/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.11.table rename to eccodes/definitions.save/grib2/tables/7/3.11.table diff --git a/eccodes/definitions/grib2/tables/7/3.15.table b/eccodes/definitions.save/grib2/tables/7/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.15.table rename to eccodes/definitions.save/grib2/tables/7/3.15.table diff --git a/eccodes/definitions/grib2/tables/7/3.2.table b/eccodes/definitions.save/grib2/tables/7/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.2.table rename to eccodes/definitions.save/grib2/tables/7/3.2.table diff --git a/eccodes/definitions/grib2/tables/7/3.20.table b/eccodes/definitions.save/grib2/tables/7/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.20.table rename to eccodes/definitions.save/grib2/tables/7/3.20.table diff --git a/eccodes/definitions/grib2/tables/7/3.21.table b/eccodes/definitions.save/grib2/tables/7/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.21.table rename to eccodes/definitions.save/grib2/tables/7/3.21.table diff --git a/eccodes/definitions/grib2/tables/7/3.3.table b/eccodes/definitions.save/grib2/tables/7/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.3.table rename to eccodes/definitions.save/grib2/tables/7/3.3.table diff --git a/eccodes/definitions/grib2/tables/7/3.4.table b/eccodes/definitions.save/grib2/tables/7/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.4.table rename to eccodes/definitions.save/grib2/tables/7/3.4.table diff --git a/eccodes/definitions/grib2/tables/7/3.5.table b/eccodes/definitions.save/grib2/tables/7/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.5.table rename to eccodes/definitions.save/grib2/tables/7/3.5.table diff --git a/eccodes/definitions/grib2/tables/7/3.6.table b/eccodes/definitions.save/grib2/tables/7/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.6.table rename to eccodes/definitions.save/grib2/tables/7/3.6.table diff --git a/eccodes/definitions/grib2/tables/7/3.7.table b/eccodes/definitions.save/grib2/tables/7/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.7.table rename to eccodes/definitions.save/grib2/tables/7/3.7.table diff --git a/eccodes/definitions/grib2/tables/7/3.8.table b/eccodes/definitions.save/grib2/tables/7/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.8.table rename to eccodes/definitions.save/grib2/tables/7/3.8.table diff --git a/eccodes/definitions/grib2/tables/7/3.9.table b/eccodes/definitions.save/grib2/tables/7/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/3.9.table rename to eccodes/definitions.save/grib2/tables/7/3.9.table diff --git a/eccodes/definitions/grib2/tables/7/4.0.table b/eccodes/definitions.save/grib2/tables/7/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.0.table rename to eccodes/definitions.save/grib2/tables/7/4.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.0.table b/eccodes/definitions.save/grib2/tables/7/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.0.table rename to eccodes/definitions.save/grib2/tables/7/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.1.table b/eccodes/definitions.save/grib2/tables/7/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.1.table rename to eccodes/definitions.save/grib2/tables/7/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.10.table b/eccodes/definitions.save/grib2/tables/7/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.10.table rename to eccodes/definitions.save/grib2/tables/7/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.192.table b/eccodes/definitions.save/grib2/tables/7/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.192.table rename to eccodes/definitions.save/grib2/tables/7/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.2.table b/eccodes/definitions.save/grib2/tables/7/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.2.table rename to eccodes/definitions.save/grib2/tables/7/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.3.table b/eccodes/definitions.save/grib2/tables/7/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.3.table rename to eccodes/definitions.save/grib2/tables/7/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.1.table b/eccodes/definitions.save/grib2/tables/7/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.1.table rename to eccodes/definitions.save/grib2/tables/7/4.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.10.table b/eccodes/definitions.save/grib2/tables/7/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.10.table rename to eccodes/definitions.save/grib2/tables/7/4.10.table diff --git a/eccodes/definitions/grib2/tables/7/4.11.table b/eccodes/definitions.save/grib2/tables/7/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.11.table rename to eccodes/definitions.save/grib2/tables/7/4.11.table diff --git a/eccodes/definitions/grib2/tables/7/4.12.table b/eccodes/definitions.save/grib2/tables/7/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.12.table rename to eccodes/definitions.save/grib2/tables/7/4.12.table diff --git a/eccodes/definitions/grib2/tables/7/4.13.table b/eccodes/definitions.save/grib2/tables/7/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.13.table rename to eccodes/definitions.save/grib2/tables/7/4.13.table diff --git a/eccodes/definitions/grib2/tables/7/4.14.table b/eccodes/definitions.save/grib2/tables/7/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.14.table rename to eccodes/definitions.save/grib2/tables/7/4.14.table diff --git a/eccodes/definitions/grib2/tables/7/4.15.table b/eccodes/definitions.save/grib2/tables/7/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.15.table rename to eccodes/definitions.save/grib2/tables/7/4.15.table diff --git a/eccodes/definitions/grib2/tables/7/4.151.table b/eccodes/definitions.save/grib2/tables/7/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.151.table rename to eccodes/definitions.save/grib2/tables/7/4.151.table diff --git a/eccodes/definitions/grib2/tables/7/4.192.table b/eccodes/definitions.save/grib2/tables/7/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.192.table rename to eccodes/definitions.save/grib2/tables/7/4.192.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/7/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/7/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/7/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/7/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/7/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/7/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/7/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/7/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/7/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/7/4.201.table b/eccodes/definitions.save/grib2/tables/7/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.201.table rename to eccodes/definitions.save/grib2/tables/7/4.201.table diff --git a/eccodes/definitions/grib2/tables/7/4.202.table b/eccodes/definitions.save/grib2/tables/7/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.202.table rename to eccodes/definitions.save/grib2/tables/7/4.202.table diff --git a/eccodes/definitions/grib2/tables/7/4.203.table b/eccodes/definitions.save/grib2/tables/7/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.203.table rename to eccodes/definitions.save/grib2/tables/7/4.203.table diff --git a/eccodes/definitions/grib2/tables/7/4.204.table b/eccodes/definitions.save/grib2/tables/7/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.204.table rename to eccodes/definitions.save/grib2/tables/7/4.204.table diff --git a/eccodes/definitions/grib2/tables/7/4.205.table b/eccodes/definitions.save/grib2/tables/7/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.205.table rename to eccodes/definitions.save/grib2/tables/7/4.205.table diff --git a/eccodes/definitions/grib2/tables/7/4.206.table b/eccodes/definitions.save/grib2/tables/7/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.206.table rename to eccodes/definitions.save/grib2/tables/7/4.206.table diff --git a/eccodes/definitions/grib2/tables/7/4.207.table b/eccodes/definitions.save/grib2/tables/7/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.207.table rename to eccodes/definitions.save/grib2/tables/7/4.207.table diff --git a/eccodes/definitions/grib2/tables/7/4.208.table b/eccodes/definitions.save/grib2/tables/7/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.208.table rename to eccodes/definitions.save/grib2/tables/7/4.208.table diff --git a/eccodes/definitions/grib2/tables/7/4.209.table b/eccodes/definitions.save/grib2/tables/7/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.209.table rename to eccodes/definitions.save/grib2/tables/7/4.209.table diff --git a/eccodes/definitions/grib2/tables/7/4.210.table b/eccodes/definitions.save/grib2/tables/7/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.210.table rename to eccodes/definitions.save/grib2/tables/7/4.210.table diff --git a/eccodes/definitions/grib2/tables/7/4.211.table b/eccodes/definitions.save/grib2/tables/7/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.211.table rename to eccodes/definitions.save/grib2/tables/7/4.211.table diff --git a/eccodes/definitions/grib2/tables/7/4.212.table b/eccodes/definitions.save/grib2/tables/7/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.212.table rename to eccodes/definitions.save/grib2/tables/7/4.212.table diff --git a/eccodes/definitions/grib2/tables/7/4.213.table b/eccodes/definitions.save/grib2/tables/7/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.213.table rename to eccodes/definitions.save/grib2/tables/7/4.213.table diff --git a/eccodes/definitions/grib2/tables/7/4.215.table b/eccodes/definitions.save/grib2/tables/7/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.215.table rename to eccodes/definitions.save/grib2/tables/7/4.215.table diff --git a/eccodes/definitions/grib2/tables/7/4.216.table b/eccodes/definitions.save/grib2/tables/7/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.216.table rename to eccodes/definitions.save/grib2/tables/7/4.216.table diff --git a/eccodes/definitions/grib2/tables/7/4.217.table b/eccodes/definitions.save/grib2/tables/7/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.217.table rename to eccodes/definitions.save/grib2/tables/7/4.217.table diff --git a/eccodes/definitions/grib2/tables/7/4.218.table b/eccodes/definitions.save/grib2/tables/7/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.218.table rename to eccodes/definitions.save/grib2/tables/7/4.218.table diff --git a/eccodes/definitions/grib2/tables/7/4.219.table b/eccodes/definitions.save/grib2/tables/7/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.219.table rename to eccodes/definitions.save/grib2/tables/7/4.219.table diff --git a/eccodes/definitions/grib2/tables/7/4.220.table b/eccodes/definitions.save/grib2/tables/7/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.220.table rename to eccodes/definitions.save/grib2/tables/7/4.220.table diff --git a/eccodes/definitions/grib2/tables/7/4.221.table b/eccodes/definitions.save/grib2/tables/7/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.221.table rename to eccodes/definitions.save/grib2/tables/7/4.221.table diff --git a/eccodes/definitions/grib2/tables/7/4.222.table b/eccodes/definitions.save/grib2/tables/7/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.222.table rename to eccodes/definitions.save/grib2/tables/7/4.222.table diff --git a/eccodes/definitions/grib2/tables/7/4.223.table b/eccodes/definitions.save/grib2/tables/7/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.223.table rename to eccodes/definitions.save/grib2/tables/7/4.223.table diff --git a/eccodes/definitions/grib2/tables/7/4.224.table b/eccodes/definitions.save/grib2/tables/7/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.224.table rename to eccodes/definitions.save/grib2/tables/7/4.224.table diff --git a/eccodes/definitions/grib2/tables/7/4.230.table b/eccodes/definitions.save/grib2/tables/7/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.230.table rename to eccodes/definitions.save/grib2/tables/7/4.230.table diff --git a/eccodes/definitions/grib2/tables/7/4.3.table b/eccodes/definitions.save/grib2/tables/7/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.3.table rename to eccodes/definitions.save/grib2/tables/7/4.3.table diff --git a/eccodes/definitions/grib2/tables/7/4.4.table b/eccodes/definitions.save/grib2/tables/7/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.4.table rename to eccodes/definitions.save/grib2/tables/7/4.4.table diff --git a/eccodes/definitions/grib2/tables/7/4.5.table b/eccodes/definitions.save/grib2/tables/7/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.5.table rename to eccodes/definitions.save/grib2/tables/7/4.5.table diff --git a/eccodes/definitions/grib2/tables/7/4.6.table b/eccodes/definitions.save/grib2/tables/7/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.6.table rename to eccodes/definitions.save/grib2/tables/7/4.6.table diff --git a/eccodes/definitions/grib2/tables/7/4.7.table b/eccodes/definitions.save/grib2/tables/7/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.7.table rename to eccodes/definitions.save/grib2/tables/7/4.7.table diff --git a/eccodes/definitions/grib2/tables/7/4.8.table b/eccodes/definitions.save/grib2/tables/7/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.8.table rename to eccodes/definitions.save/grib2/tables/7/4.8.table diff --git a/eccodes/definitions/grib2/tables/7/4.9.table b/eccodes/definitions.save/grib2/tables/7/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.9.table rename to eccodes/definitions.save/grib2/tables/7/4.9.table diff --git a/eccodes/definitions/grib2/tables/7/4.91.table b/eccodes/definitions.save/grib2/tables/7/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/4.91.table rename to eccodes/definitions.save/grib2/tables/7/4.91.table diff --git a/eccodes/definitions/grib2/tables/7/5.0.table b/eccodes/definitions.save/grib2/tables/7/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.0.table rename to eccodes/definitions.save/grib2/tables/7/5.0.table diff --git a/eccodes/definitions/grib2/tables/7/5.1.table b/eccodes/definitions.save/grib2/tables/7/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.1.table rename to eccodes/definitions.save/grib2/tables/7/5.1.table diff --git a/eccodes/definitions/grib2/tables/7/5.2.table b/eccodes/definitions.save/grib2/tables/7/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.2.table rename to eccodes/definitions.save/grib2/tables/7/5.2.table diff --git a/eccodes/definitions/grib2/tables/7/5.3.table b/eccodes/definitions.save/grib2/tables/7/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.3.table rename to eccodes/definitions.save/grib2/tables/7/5.3.table diff --git a/eccodes/definitions/grib2/tables/7/5.4.table b/eccodes/definitions.save/grib2/tables/7/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.4.table rename to eccodes/definitions.save/grib2/tables/7/5.4.table diff --git a/eccodes/definitions/grib2/tables/7/5.40.table b/eccodes/definitions.save/grib2/tables/7/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.40.table rename to eccodes/definitions.save/grib2/tables/7/5.40.table diff --git a/eccodes/definitions/grib2/tables/7/5.40000.table b/eccodes/definitions.save/grib2/tables/7/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.40000.table rename to eccodes/definitions.save/grib2/tables/7/5.40000.table diff --git a/eccodes/definitions/grib2/tables/7/5.5.table b/eccodes/definitions.save/grib2/tables/7/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.5.table rename to eccodes/definitions.save/grib2/tables/7/5.5.table diff --git a/eccodes/definitions/grib2/tables/7/5.50002.table b/eccodes/definitions.save/grib2/tables/7/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.50002.table rename to eccodes/definitions.save/grib2/tables/7/5.50002.table diff --git a/eccodes/definitions/grib2/tables/7/5.6.table b/eccodes/definitions.save/grib2/tables/7/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.6.table rename to eccodes/definitions.save/grib2/tables/7/5.6.table diff --git a/eccodes/definitions/grib2/tables/7/5.7.table b/eccodes/definitions.save/grib2/tables/7/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.7.table rename to eccodes/definitions.save/grib2/tables/7/5.7.table diff --git a/eccodes/definitions/grib2/tables/7/5.8.table b/eccodes/definitions.save/grib2/tables/7/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.8.table rename to eccodes/definitions.save/grib2/tables/7/5.8.table diff --git a/eccodes/definitions/grib2/tables/7/5.9.table b/eccodes/definitions.save/grib2/tables/7/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/5.9.table rename to eccodes/definitions.save/grib2/tables/7/5.9.table diff --git a/eccodes/definitions/grib2/tables/7/6.0.table b/eccodes/definitions.save/grib2/tables/7/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/6.0.table rename to eccodes/definitions.save/grib2/tables/7/6.0.table diff --git a/eccodes/definitions/grib2/tables/7/stepType.table b/eccodes/definitions.save/grib2/tables/7/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/7/stepType.table rename to eccodes/definitions.save/grib2/tables/7/stepType.table diff --git a/eccodes/definitions/grib2/tables/8/0.0.table b/eccodes/definitions.save/grib2/tables/8/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/0.0.table rename to eccodes/definitions.save/grib2/tables/8/0.0.table diff --git a/eccodes/definitions/grib2/tables/8/1.0.table b/eccodes/definitions.save/grib2/tables/8/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/1.0.table rename to eccodes/definitions.save/grib2/tables/8/1.0.table diff --git a/eccodes/definitions/grib2/tables/8/1.1.table b/eccodes/definitions.save/grib2/tables/8/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/1.1.table rename to eccodes/definitions.save/grib2/tables/8/1.1.table diff --git a/eccodes/definitions/grib2/tables/8/1.2.table b/eccodes/definitions.save/grib2/tables/8/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/1.2.table rename to eccodes/definitions.save/grib2/tables/8/1.2.table diff --git a/eccodes/definitions/grib2/tables/8/1.3.table b/eccodes/definitions.save/grib2/tables/8/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/1.3.table rename to eccodes/definitions.save/grib2/tables/8/1.3.table diff --git a/eccodes/definitions/grib2/tables/8/1.4.table b/eccodes/definitions.save/grib2/tables/8/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/1.4.table rename to eccodes/definitions.save/grib2/tables/8/1.4.table diff --git a/eccodes/definitions/grib2/tables/8/3.0.table b/eccodes/definitions.save/grib2/tables/8/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.0.table rename to eccodes/definitions.save/grib2/tables/8/3.0.table diff --git a/eccodes/definitions/grib2/tables/8/3.1.table b/eccodes/definitions.save/grib2/tables/8/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.1.table rename to eccodes/definitions.save/grib2/tables/8/3.1.table diff --git a/eccodes/definitions/grib2/tables/8/3.10.table b/eccodes/definitions.save/grib2/tables/8/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.10.table rename to eccodes/definitions.save/grib2/tables/8/3.10.table diff --git a/eccodes/definitions/grib2/tables/8/3.11.table b/eccodes/definitions.save/grib2/tables/8/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.11.table rename to eccodes/definitions.save/grib2/tables/8/3.11.table diff --git a/eccodes/definitions/grib2/tables/8/3.15.table b/eccodes/definitions.save/grib2/tables/8/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.15.table rename to eccodes/definitions.save/grib2/tables/8/3.15.table diff --git a/eccodes/definitions/grib2/tables/8/3.2.table b/eccodes/definitions.save/grib2/tables/8/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.2.table rename to eccodes/definitions.save/grib2/tables/8/3.2.table diff --git a/eccodes/definitions/grib2/tables/8/3.20.table b/eccodes/definitions.save/grib2/tables/8/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.20.table rename to eccodes/definitions.save/grib2/tables/8/3.20.table diff --git a/eccodes/definitions/grib2/tables/8/3.21.table b/eccodes/definitions.save/grib2/tables/8/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.21.table rename to eccodes/definitions.save/grib2/tables/8/3.21.table diff --git a/eccodes/definitions/grib2/tables/8/3.3.table b/eccodes/definitions.save/grib2/tables/8/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.3.table rename to eccodes/definitions.save/grib2/tables/8/3.3.table diff --git a/eccodes/definitions/grib2/tables/8/3.4.table b/eccodes/definitions.save/grib2/tables/8/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.4.table rename to eccodes/definitions.save/grib2/tables/8/3.4.table diff --git a/eccodes/definitions/grib2/tables/8/3.5.table b/eccodes/definitions.save/grib2/tables/8/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.5.table rename to eccodes/definitions.save/grib2/tables/8/3.5.table diff --git a/eccodes/definitions/grib2/tables/8/3.6.table b/eccodes/definitions.save/grib2/tables/8/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.6.table rename to eccodes/definitions.save/grib2/tables/8/3.6.table diff --git a/eccodes/definitions/grib2/tables/8/3.7.table b/eccodes/definitions.save/grib2/tables/8/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.7.table rename to eccodes/definitions.save/grib2/tables/8/3.7.table diff --git a/eccodes/definitions/grib2/tables/8/3.8.table b/eccodes/definitions.save/grib2/tables/8/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.8.table rename to eccodes/definitions.save/grib2/tables/8/3.8.table diff --git a/eccodes/definitions/grib2/tables/8/3.9.table b/eccodes/definitions.save/grib2/tables/8/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/3.9.table rename to eccodes/definitions.save/grib2/tables/8/3.9.table diff --git a/eccodes/definitions/grib2/tables/8/4.0.table b/eccodes/definitions.save/grib2/tables/8/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.0.table rename to eccodes/definitions.save/grib2/tables/8/4.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.0.table b/eccodes/definitions.save/grib2/tables/8/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.0.table rename to eccodes/definitions.save/grib2/tables/8/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.1.table b/eccodes/definitions.save/grib2/tables/8/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.1.table rename to eccodes/definitions.save/grib2/tables/8/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.10.table b/eccodes/definitions.save/grib2/tables/8/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.10.table rename to eccodes/definitions.save/grib2/tables/8/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.192.table b/eccodes/definitions.save/grib2/tables/8/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.192.table rename to eccodes/definitions.save/grib2/tables/8/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.2.table b/eccodes/definitions.save/grib2/tables/8/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.2.table rename to eccodes/definitions.save/grib2/tables/8/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.3.table b/eccodes/definitions.save/grib2/tables/8/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.3.table rename to eccodes/definitions.save/grib2/tables/8/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.1.table b/eccodes/definitions.save/grib2/tables/8/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.1.table rename to eccodes/definitions.save/grib2/tables/8/4.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.10.table b/eccodes/definitions.save/grib2/tables/8/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.10.table rename to eccodes/definitions.save/grib2/tables/8/4.10.table diff --git a/eccodes/definitions/grib2/tables/8/4.11.table b/eccodes/definitions.save/grib2/tables/8/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.11.table rename to eccodes/definitions.save/grib2/tables/8/4.11.table diff --git a/eccodes/definitions/grib2/tables/8/4.12.table b/eccodes/definitions.save/grib2/tables/8/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.12.table rename to eccodes/definitions.save/grib2/tables/8/4.12.table diff --git a/eccodes/definitions/grib2/tables/8/4.13.table b/eccodes/definitions.save/grib2/tables/8/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.13.table rename to eccodes/definitions.save/grib2/tables/8/4.13.table diff --git a/eccodes/definitions/grib2/tables/8/4.14.table b/eccodes/definitions.save/grib2/tables/8/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.14.table rename to eccodes/definitions.save/grib2/tables/8/4.14.table diff --git a/eccodes/definitions/grib2/tables/8/4.15.table b/eccodes/definitions.save/grib2/tables/8/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.15.table rename to eccodes/definitions.save/grib2/tables/8/4.15.table diff --git a/eccodes/definitions/grib2/tables/8/4.151.table b/eccodes/definitions.save/grib2/tables/8/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.151.table rename to eccodes/definitions.save/grib2/tables/8/4.151.table diff --git a/eccodes/definitions/grib2/tables/8/4.192.table b/eccodes/definitions.save/grib2/tables/8/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.192.table rename to eccodes/definitions.save/grib2/tables/8/4.192.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/8/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/8/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/8/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/8/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/8/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/8/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/8/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/8/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/8/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/8/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/8/4.201.table b/eccodes/definitions.save/grib2/tables/8/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.201.table rename to eccodes/definitions.save/grib2/tables/8/4.201.table diff --git a/eccodes/definitions/grib2/tables/8/4.202.table b/eccodes/definitions.save/grib2/tables/8/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.202.table rename to eccodes/definitions.save/grib2/tables/8/4.202.table diff --git a/eccodes/definitions/grib2/tables/8/4.203.table b/eccodes/definitions.save/grib2/tables/8/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.203.table rename to eccodes/definitions.save/grib2/tables/8/4.203.table diff --git a/eccodes/definitions/grib2/tables/8/4.204.table b/eccodes/definitions.save/grib2/tables/8/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.204.table rename to eccodes/definitions.save/grib2/tables/8/4.204.table diff --git a/eccodes/definitions/grib2/tables/8/4.205.table b/eccodes/definitions.save/grib2/tables/8/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.205.table rename to eccodes/definitions.save/grib2/tables/8/4.205.table diff --git a/eccodes/definitions/grib2/tables/8/4.206.table b/eccodes/definitions.save/grib2/tables/8/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.206.table rename to eccodes/definitions.save/grib2/tables/8/4.206.table diff --git a/eccodes/definitions/grib2/tables/8/4.207.table b/eccodes/definitions.save/grib2/tables/8/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.207.table rename to eccodes/definitions.save/grib2/tables/8/4.207.table diff --git a/eccodes/definitions/grib2/tables/8/4.208.table b/eccodes/definitions.save/grib2/tables/8/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.208.table rename to eccodes/definitions.save/grib2/tables/8/4.208.table diff --git a/eccodes/definitions/grib2/tables/8/4.209.table b/eccodes/definitions.save/grib2/tables/8/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.209.table rename to eccodes/definitions.save/grib2/tables/8/4.209.table diff --git a/eccodes/definitions/grib2/tables/8/4.210.table b/eccodes/definitions.save/grib2/tables/8/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.210.table rename to eccodes/definitions.save/grib2/tables/8/4.210.table diff --git a/eccodes/definitions/grib2/tables/8/4.211.table b/eccodes/definitions.save/grib2/tables/8/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.211.table rename to eccodes/definitions.save/grib2/tables/8/4.211.table diff --git a/eccodes/definitions/grib2/tables/8/4.212.table b/eccodes/definitions.save/grib2/tables/8/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.212.table rename to eccodes/definitions.save/grib2/tables/8/4.212.table diff --git a/eccodes/definitions/grib2/tables/8/4.213.table b/eccodes/definitions.save/grib2/tables/8/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.213.table rename to eccodes/definitions.save/grib2/tables/8/4.213.table diff --git a/eccodes/definitions/grib2/tables/8/4.215.table b/eccodes/definitions.save/grib2/tables/8/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.215.table rename to eccodes/definitions.save/grib2/tables/8/4.215.table diff --git a/eccodes/definitions/grib2/tables/8/4.216.table b/eccodes/definitions.save/grib2/tables/8/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.216.table rename to eccodes/definitions.save/grib2/tables/8/4.216.table diff --git a/eccodes/definitions/grib2/tables/8/4.217.table b/eccodes/definitions.save/grib2/tables/8/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.217.table rename to eccodes/definitions.save/grib2/tables/8/4.217.table diff --git a/eccodes/definitions/grib2/tables/8/4.218.table b/eccodes/definitions.save/grib2/tables/8/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.218.table rename to eccodes/definitions.save/grib2/tables/8/4.218.table diff --git a/eccodes/definitions/grib2/tables/8/4.219.table b/eccodes/definitions.save/grib2/tables/8/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.219.table rename to eccodes/definitions.save/grib2/tables/8/4.219.table diff --git a/eccodes/definitions/grib2/tables/8/4.220.table b/eccodes/definitions.save/grib2/tables/8/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.220.table rename to eccodes/definitions.save/grib2/tables/8/4.220.table diff --git a/eccodes/definitions/grib2/tables/8/4.221.table b/eccodes/definitions.save/grib2/tables/8/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.221.table rename to eccodes/definitions.save/grib2/tables/8/4.221.table diff --git a/eccodes/definitions/grib2/tables/8/4.222.table b/eccodes/definitions.save/grib2/tables/8/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.222.table rename to eccodes/definitions.save/grib2/tables/8/4.222.table diff --git a/eccodes/definitions/grib2/tables/8/4.223.table b/eccodes/definitions.save/grib2/tables/8/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.223.table rename to eccodes/definitions.save/grib2/tables/8/4.223.table diff --git a/eccodes/definitions/grib2/tables/8/4.224.table b/eccodes/definitions.save/grib2/tables/8/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.224.table rename to eccodes/definitions.save/grib2/tables/8/4.224.table diff --git a/eccodes/definitions/grib2/tables/8/4.230.table b/eccodes/definitions.save/grib2/tables/8/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.230.table rename to eccodes/definitions.save/grib2/tables/8/4.230.table diff --git a/eccodes/definitions/grib2/tables/8/4.233.table b/eccodes/definitions.save/grib2/tables/8/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.233.table rename to eccodes/definitions.save/grib2/tables/8/4.233.table diff --git a/eccodes/definitions/grib2/tables/8/4.3.table b/eccodes/definitions.save/grib2/tables/8/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.3.table rename to eccodes/definitions.save/grib2/tables/8/4.3.table diff --git a/eccodes/definitions/grib2/tables/8/4.4.table b/eccodes/definitions.save/grib2/tables/8/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.4.table rename to eccodes/definitions.save/grib2/tables/8/4.4.table diff --git a/eccodes/definitions/grib2/tables/8/4.5.table b/eccodes/definitions.save/grib2/tables/8/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.5.table rename to eccodes/definitions.save/grib2/tables/8/4.5.table diff --git a/eccodes/definitions/grib2/tables/8/4.6.table b/eccodes/definitions.save/grib2/tables/8/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.6.table rename to eccodes/definitions.save/grib2/tables/8/4.6.table diff --git a/eccodes/definitions/grib2/tables/8/4.7.table b/eccodes/definitions.save/grib2/tables/8/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.7.table rename to eccodes/definitions.save/grib2/tables/8/4.7.table diff --git a/eccodes/definitions/grib2/tables/8/4.8.table b/eccodes/definitions.save/grib2/tables/8/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.8.table rename to eccodes/definitions.save/grib2/tables/8/4.8.table diff --git a/eccodes/definitions/grib2/tables/8/4.9.table b/eccodes/definitions.save/grib2/tables/8/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.9.table rename to eccodes/definitions.save/grib2/tables/8/4.9.table diff --git a/eccodes/definitions/grib2/tables/8/4.91.table b/eccodes/definitions.save/grib2/tables/8/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/4.91.table rename to eccodes/definitions.save/grib2/tables/8/4.91.table diff --git a/eccodes/definitions/grib2/tables/8/5.0.table b/eccodes/definitions.save/grib2/tables/8/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.0.table rename to eccodes/definitions.save/grib2/tables/8/5.0.table diff --git a/eccodes/definitions/grib2/tables/8/5.1.table b/eccodes/definitions.save/grib2/tables/8/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.1.table rename to eccodes/definitions.save/grib2/tables/8/5.1.table diff --git a/eccodes/definitions/grib2/tables/8/5.2.table b/eccodes/definitions.save/grib2/tables/8/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.2.table rename to eccodes/definitions.save/grib2/tables/8/5.2.table diff --git a/eccodes/definitions/grib2/tables/8/5.3.table b/eccodes/definitions.save/grib2/tables/8/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.3.table rename to eccodes/definitions.save/grib2/tables/8/5.3.table diff --git a/eccodes/definitions/grib2/tables/8/5.4.table b/eccodes/definitions.save/grib2/tables/8/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.4.table rename to eccodes/definitions.save/grib2/tables/8/5.4.table diff --git a/eccodes/definitions/grib2/tables/8/5.40.table b/eccodes/definitions.save/grib2/tables/8/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.40.table rename to eccodes/definitions.save/grib2/tables/8/5.40.table diff --git a/eccodes/definitions/grib2/tables/8/5.40000.table b/eccodes/definitions.save/grib2/tables/8/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.40000.table rename to eccodes/definitions.save/grib2/tables/8/5.40000.table diff --git a/eccodes/definitions/grib2/tables/8/5.5.table b/eccodes/definitions.save/grib2/tables/8/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.5.table rename to eccodes/definitions.save/grib2/tables/8/5.5.table diff --git a/eccodes/definitions/grib2/tables/8/5.50002.table b/eccodes/definitions.save/grib2/tables/8/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.50002.table rename to eccodes/definitions.save/grib2/tables/8/5.50002.table diff --git a/eccodes/definitions/grib2/tables/8/5.6.table b/eccodes/definitions.save/grib2/tables/8/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.6.table rename to eccodes/definitions.save/grib2/tables/8/5.6.table diff --git a/eccodes/definitions/grib2/tables/8/5.7.table b/eccodes/definitions.save/grib2/tables/8/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.7.table rename to eccodes/definitions.save/grib2/tables/8/5.7.table diff --git a/eccodes/definitions/grib2/tables/8/5.8.table b/eccodes/definitions.save/grib2/tables/8/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.8.table rename to eccodes/definitions.save/grib2/tables/8/5.8.table diff --git a/eccodes/definitions/grib2/tables/8/5.9.table b/eccodes/definitions.save/grib2/tables/8/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/5.9.table rename to eccodes/definitions.save/grib2/tables/8/5.9.table diff --git a/eccodes/definitions/grib2/tables/8/6.0.table b/eccodes/definitions.save/grib2/tables/8/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/6.0.table rename to eccodes/definitions.save/grib2/tables/8/6.0.table diff --git a/eccodes/definitions/grib2/tables/8/stepType.table b/eccodes/definitions.save/grib2/tables/8/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/8/stepType.table rename to eccodes/definitions.save/grib2/tables/8/stepType.table diff --git a/eccodes/definitions/grib2/tables/9/0.0.table b/eccodes/definitions.save/grib2/tables/9/0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/0.0.table rename to eccodes/definitions.save/grib2/tables/9/0.0.table diff --git a/eccodes/definitions/grib2/tables/9/1.0.table b/eccodes/definitions.save/grib2/tables/9/1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/1.0.table rename to eccodes/definitions.save/grib2/tables/9/1.0.table diff --git a/eccodes/definitions/grib2/tables/9/1.1.table b/eccodes/definitions.save/grib2/tables/9/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/1.1.table rename to eccodes/definitions.save/grib2/tables/9/1.1.table diff --git a/eccodes/definitions/grib2/tables/9/1.2.table b/eccodes/definitions.save/grib2/tables/9/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/1.2.table rename to eccodes/definitions.save/grib2/tables/9/1.2.table diff --git a/eccodes/definitions/grib2/tables/9/1.3.table b/eccodes/definitions.save/grib2/tables/9/1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/1.3.table rename to eccodes/definitions.save/grib2/tables/9/1.3.table diff --git a/eccodes/definitions/grib2/tables/9/1.4.table b/eccodes/definitions.save/grib2/tables/9/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/1.4.table rename to eccodes/definitions.save/grib2/tables/9/1.4.table diff --git a/eccodes/definitions/grib2/tables/9/3.0.table b/eccodes/definitions.save/grib2/tables/9/3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.0.table rename to eccodes/definitions.save/grib2/tables/9/3.0.table diff --git a/eccodes/definitions/grib2/tables/9/3.1.table b/eccodes/definitions.save/grib2/tables/9/3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.1.table rename to eccodes/definitions.save/grib2/tables/9/3.1.table diff --git a/eccodes/definitions/grib2/tables/9/3.10.table b/eccodes/definitions.save/grib2/tables/9/3.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.10.table rename to eccodes/definitions.save/grib2/tables/9/3.10.table diff --git a/eccodes/definitions/grib2/tables/9/3.11.table b/eccodes/definitions.save/grib2/tables/9/3.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.11.table rename to eccodes/definitions.save/grib2/tables/9/3.11.table diff --git a/eccodes/definitions/grib2/tables/9/3.15.table b/eccodes/definitions.save/grib2/tables/9/3.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.15.table rename to eccodes/definitions.save/grib2/tables/9/3.15.table diff --git a/eccodes/definitions/grib2/tables/9/3.2.table b/eccodes/definitions.save/grib2/tables/9/3.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.2.table rename to eccodes/definitions.save/grib2/tables/9/3.2.table diff --git a/eccodes/definitions/grib2/tables/9/3.20.table b/eccodes/definitions.save/grib2/tables/9/3.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.20.table rename to eccodes/definitions.save/grib2/tables/9/3.20.table diff --git a/eccodes/definitions/grib2/tables/9/3.21.table b/eccodes/definitions.save/grib2/tables/9/3.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.21.table rename to eccodes/definitions.save/grib2/tables/9/3.21.table diff --git a/eccodes/definitions/grib2/tables/9/3.3.table b/eccodes/definitions.save/grib2/tables/9/3.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.3.table rename to eccodes/definitions.save/grib2/tables/9/3.3.table diff --git a/eccodes/definitions/grib2/tables/9/3.4.table b/eccodes/definitions.save/grib2/tables/9/3.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.4.table rename to eccodes/definitions.save/grib2/tables/9/3.4.table diff --git a/eccodes/definitions/grib2/tables/9/3.5.table b/eccodes/definitions.save/grib2/tables/9/3.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.5.table rename to eccodes/definitions.save/grib2/tables/9/3.5.table diff --git a/eccodes/definitions/grib2/tables/9/3.6.table b/eccodes/definitions.save/grib2/tables/9/3.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.6.table rename to eccodes/definitions.save/grib2/tables/9/3.6.table diff --git a/eccodes/definitions/grib2/tables/9/3.7.table b/eccodes/definitions.save/grib2/tables/9/3.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.7.table rename to eccodes/definitions.save/grib2/tables/9/3.7.table diff --git a/eccodes/definitions/grib2/tables/9/3.8.table b/eccodes/definitions.save/grib2/tables/9/3.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.8.table rename to eccodes/definitions.save/grib2/tables/9/3.8.table diff --git a/eccodes/definitions/grib2/tables/9/3.9.table b/eccodes/definitions.save/grib2/tables/9/3.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/3.9.table rename to eccodes/definitions.save/grib2/tables/9/3.9.table diff --git a/eccodes/definitions/grib2/tables/9/4.0.table b/eccodes/definitions.save/grib2/tables/9/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.0.table rename to eccodes/definitions.save/grib2/tables/9/4.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.0.table b/eccodes/definitions.save/grib2/tables/9/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.0.table rename to eccodes/definitions.save/grib2/tables/9/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.1.table b/eccodes/definitions.save/grib2/tables/9/4.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.1.table rename to eccodes/definitions.save/grib2/tables/9/4.1.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.10.table b/eccodes/definitions.save/grib2/tables/9/4.1.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.10.table rename to eccodes/definitions.save/grib2/tables/9/4.1.10.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.192.table b/eccodes/definitions.save/grib2/tables/9/4.1.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.192.table rename to eccodes/definitions.save/grib2/tables/9/4.1.192.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.2.table b/eccodes/definitions.save/grib2/tables/9/4.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.2.table rename to eccodes/definitions.save/grib2/tables/9/4.1.2.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.3.table b/eccodes/definitions.save/grib2/tables/9/4.1.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.3.table rename to eccodes/definitions.save/grib2/tables/9/4.1.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.1.table b/eccodes/definitions.save/grib2/tables/9/4.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.1.table rename to eccodes/definitions.save/grib2/tables/9/4.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.10.table b/eccodes/definitions.save/grib2/tables/9/4.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.10.table rename to eccodes/definitions.save/grib2/tables/9/4.10.table diff --git a/eccodes/definitions/grib2/tables/9/4.11.table b/eccodes/definitions.save/grib2/tables/9/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.11.table rename to eccodes/definitions.save/grib2/tables/9/4.11.table diff --git a/eccodes/definitions/grib2/tables/9/4.12.table b/eccodes/definitions.save/grib2/tables/9/4.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.12.table rename to eccodes/definitions.save/grib2/tables/9/4.12.table diff --git a/eccodes/definitions/grib2/tables/9/4.13.table b/eccodes/definitions.save/grib2/tables/9/4.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.13.table rename to eccodes/definitions.save/grib2/tables/9/4.13.table diff --git a/eccodes/definitions/grib2/tables/9/4.14.table b/eccodes/definitions.save/grib2/tables/9/4.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.14.table rename to eccodes/definitions.save/grib2/tables/9/4.14.table diff --git a/eccodes/definitions/grib2/tables/9/4.15.table b/eccodes/definitions.save/grib2/tables/9/4.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.15.table rename to eccodes/definitions.save/grib2/tables/9/4.15.table diff --git a/eccodes/definitions/grib2/tables/9/4.151.table b/eccodes/definitions.save/grib2/tables/9/4.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.151.table rename to eccodes/definitions.save/grib2/tables/9/4.151.table diff --git a/eccodes/definitions/grib2/tables/9/4.192.table b/eccodes/definitions.save/grib2/tables/9/4.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.192.table rename to eccodes/definitions.save/grib2/tables/9/4.192.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.190.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.190.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/9/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.1.1.table rename to eccodes/definitions.save/grib2/tables/9/4.2.1.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.1.2.table rename to eccodes/definitions.save/grib2/tables/9/4.2.1.2.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.1.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.191.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.191.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.2.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.2.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.10.4.table rename to eccodes/definitions.save/grib2/tables/9/4.2.10.4.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.1.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.10.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.10.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.10.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.100.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.100.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.100.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.101.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.101.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.101.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.102.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.102.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.102.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.103.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.103.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.103.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.104.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.104.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.104.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.105.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.105.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.105.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.106.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.106.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.106.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.107.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.107.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.107.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.108.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.108.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.108.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.109.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.109.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.109.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.11.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.11.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.110.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.110.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.110.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.111.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.111.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.111.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.112.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.112.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.112.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.113.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.113.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.113.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.114.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.114.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.114.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.115.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.115.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.115.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.116.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.116.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.116.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.117.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.117.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.117.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.118.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.118.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.118.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.119.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.119.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.119.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.12.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.12.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.12.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.120.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.120.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.120.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.121.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.121.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.121.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.122.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.122.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.122.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.123.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.123.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.123.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.124.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.124.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.124.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.125.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.125.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.125.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.126.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.126.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.126.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.127.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.127.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.127.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.128.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.128.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.128.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.129.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.129.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.129.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.13.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.13.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.130.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.130.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.130.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.131.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.131.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.131.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.132.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.132.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.132.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.133.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.133.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.133.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.134.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.134.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.134.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.135.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.135.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.135.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.136.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.136.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.136.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.137.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.137.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.137.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.138.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.138.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.138.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.139.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.139.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.139.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.14.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.14.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.140.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.140.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.140.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.141.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.141.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.141.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.142.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.142.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.142.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.143.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.143.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.143.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.144.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.144.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.144.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.145.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.145.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.145.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.146.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.146.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.146.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.147.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.147.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.147.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.148.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.148.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.148.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.149.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.149.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.149.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.15.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.15.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.150.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.150.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.150.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.151.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.151.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.151.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.152.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.152.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.152.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.153.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.153.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.153.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.154.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.154.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.154.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.155.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.155.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.155.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.156.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.156.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.156.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.157.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.157.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.157.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.158.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.158.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.158.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.159.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.159.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.159.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.16.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.16.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.160.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.160.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.160.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.161.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.161.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.161.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.162.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.162.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.162.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.163.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.163.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.163.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.164.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.164.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.164.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.165.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.165.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.165.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.166.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.166.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.166.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.167.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.167.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.167.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.168.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.168.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.168.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.169.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.169.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.169.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.17.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.17.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.170.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.170.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.170.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.171.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.171.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.171.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.172.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.172.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.172.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.173.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.173.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.173.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.174.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.174.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.174.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.175.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.175.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.175.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.176.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.176.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.176.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.177.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.177.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.177.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.178.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.178.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.178.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.179.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.179.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.179.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.18.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.18.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.180.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.180.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.180.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.181.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.181.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.181.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.182.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.182.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.182.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.183.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.183.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.183.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.184.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.184.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.184.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.185.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.185.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.185.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.186.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.186.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.186.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.187.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.187.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.187.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.188.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.188.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.188.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.189.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.189.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.189.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.19.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.19.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.190.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.190.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.190.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.191.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.191.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.192.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.192.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.193.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.193.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.194.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.194.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.195.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.195.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.196.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.196.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.197.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.197.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.198.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.198.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.199.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.199.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.2.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.2.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.20.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.20.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.200.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.200.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.200.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.201.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.201.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.202.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.202.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.203.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.203.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.204.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.204.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.205.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.205.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.206.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.206.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.207.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.207.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.208.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.208.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.209.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.209.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.21.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.21.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.21.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.210.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.210.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.211.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.211.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.212.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.212.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.213.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.213.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.214.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.214.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.214.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.215.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.215.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.216.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.216.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.217.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.217.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.218.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.218.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.219.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.219.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.22.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.22.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.22.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.220.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.220.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.221.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.221.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.222.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.222.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.223.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.223.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.224.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.224.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.225.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.225.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.225.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.226.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.226.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.226.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.227.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.227.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.228.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.228.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.228.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.229.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.229.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.229.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.23.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.23.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.23.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.230.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.230.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.231.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.231.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.231.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.232.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.232.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.232.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.233.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.233.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.234.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.234.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.235.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.235.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.236.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.236.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.236.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.237.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.237.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.237.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.238.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.238.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.238.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.239.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.239.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.239.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.24.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.24.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.24.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.240.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.240.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.240.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.241.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.241.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.241.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.242.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.242.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.242.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.243.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.243.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.243.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.244.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.244.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.244.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.245.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.245.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.245.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.246.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.246.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.246.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.247.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.247.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.247.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.248.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.248.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.248.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.249.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.249.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.249.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.25.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.25.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.25.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.250.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.250.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.250.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.251.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.251.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.251.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.252.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.252.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.252.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.253.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.253.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.253.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.254.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.254.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.255.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.255.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.255.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.26.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.26.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.26.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.27.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.27.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.27.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.28.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.28.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.28.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.29.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.29.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.29.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.3.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.30.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.30.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.30.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.31.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.31.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.31.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.32.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.32.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.32.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.33.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.33.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.33.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.34.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.34.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.34.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.35.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.35.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.35.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.36.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.36.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.36.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.37.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.37.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.37.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.38.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.38.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.38.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.39.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.39.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.39.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.4.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.4.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.40.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.40.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.41.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.41.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.41.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.42.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.42.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.42.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.43.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.43.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.43.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.44.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.44.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.44.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.45.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.45.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.45.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.46.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.46.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.46.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.47.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.47.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.47.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.48.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.48.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.48.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.49.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.49.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.49.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.5.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.5.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.50.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.50.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.50.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.51.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.51.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.51.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.52.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.52.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.52.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.53.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.53.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.53.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.54.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.54.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.54.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.55.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.55.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.55.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.56.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.56.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.56.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.57.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.57.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.57.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.58.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.58.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.58.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.59.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.59.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.59.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.6.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.6.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.60.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.60.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.60.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.61.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.61.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.61.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.62.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.62.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.62.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.63.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.63.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.63.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.64.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.64.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.64.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.65.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.65.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.65.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.66.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.66.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.66.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.67.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.67.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.67.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.68.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.68.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.68.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.69.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.69.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.69.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.7.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.7.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.70.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.70.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.70.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.71.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.71.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.71.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.72.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.72.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.72.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.73.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.73.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.73.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.74.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.74.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.74.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.75.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.75.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.75.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.76.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.76.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.76.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.77.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.77.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.77.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.78.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.78.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.78.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.79.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.79.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.79.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.8.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.8.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.80.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.80.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.80.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.81.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.81.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.81.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.82.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.82.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.82.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.83.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.83.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.83.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.84.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.84.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.84.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.85.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.85.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.85.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.86.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.86.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.86.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.87.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.87.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.87.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.88.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.88.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.88.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.89.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.89.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.89.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.9.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.9.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.90.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.90.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.90.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.91.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.91.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.92.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.92.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.92.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.93.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.93.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.93.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.94.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.94.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.94.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.95.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.95.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.95.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.96.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.96.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.96.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.97.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.97.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.97.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.98.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.98.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.98.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.99.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.192.99.table rename to eccodes/definitions.save/grib2/tables/9/4.2.192.99.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/9/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.2.4.table rename to eccodes/definitions.save/grib2/tables/9/4.2.2.4.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/9/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/9/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/9/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/9/4.201.table b/eccodes/definitions.save/grib2/tables/9/4.201.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.201.table rename to eccodes/definitions.save/grib2/tables/9/4.201.table diff --git a/eccodes/definitions/grib2/tables/9/4.202.table b/eccodes/definitions.save/grib2/tables/9/4.202.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.202.table rename to eccodes/definitions.save/grib2/tables/9/4.202.table diff --git a/eccodes/definitions/grib2/tables/9/4.203.table b/eccodes/definitions.save/grib2/tables/9/4.203.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.203.table rename to eccodes/definitions.save/grib2/tables/9/4.203.table diff --git a/eccodes/definitions/grib2/tables/9/4.204.table b/eccodes/definitions.save/grib2/tables/9/4.204.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.204.table rename to eccodes/definitions.save/grib2/tables/9/4.204.table diff --git a/eccodes/definitions/grib2/tables/9/4.205.table b/eccodes/definitions.save/grib2/tables/9/4.205.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.205.table rename to eccodes/definitions.save/grib2/tables/9/4.205.table diff --git a/eccodes/definitions/grib2/tables/9/4.206.table b/eccodes/definitions.save/grib2/tables/9/4.206.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.206.table rename to eccodes/definitions.save/grib2/tables/9/4.206.table diff --git a/eccodes/definitions/grib2/tables/9/4.207.table b/eccodes/definitions.save/grib2/tables/9/4.207.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.207.table rename to eccodes/definitions.save/grib2/tables/9/4.207.table diff --git a/eccodes/definitions/grib2/tables/9/4.208.table b/eccodes/definitions.save/grib2/tables/9/4.208.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.208.table rename to eccodes/definitions.save/grib2/tables/9/4.208.table diff --git a/eccodes/definitions/grib2/tables/9/4.209.table b/eccodes/definitions.save/grib2/tables/9/4.209.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.209.table rename to eccodes/definitions.save/grib2/tables/9/4.209.table diff --git a/eccodes/definitions/grib2/tables/9/4.210.table b/eccodes/definitions.save/grib2/tables/9/4.210.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.210.table rename to eccodes/definitions.save/grib2/tables/9/4.210.table diff --git a/eccodes/definitions/grib2/tables/9/4.211.table b/eccodes/definitions.save/grib2/tables/9/4.211.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.211.table rename to eccodes/definitions.save/grib2/tables/9/4.211.table diff --git a/eccodes/definitions/grib2/tables/9/4.212.table b/eccodes/definitions.save/grib2/tables/9/4.212.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.212.table rename to eccodes/definitions.save/grib2/tables/9/4.212.table diff --git a/eccodes/definitions/grib2/tables/9/4.213.table b/eccodes/definitions.save/grib2/tables/9/4.213.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.213.table rename to eccodes/definitions.save/grib2/tables/9/4.213.table diff --git a/eccodes/definitions/grib2/tables/9/4.215.table b/eccodes/definitions.save/grib2/tables/9/4.215.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.215.table rename to eccodes/definitions.save/grib2/tables/9/4.215.table diff --git a/eccodes/definitions/grib2/tables/9/4.216.table b/eccodes/definitions.save/grib2/tables/9/4.216.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.216.table rename to eccodes/definitions.save/grib2/tables/9/4.216.table diff --git a/eccodes/definitions/grib2/tables/9/4.217.table b/eccodes/definitions.save/grib2/tables/9/4.217.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.217.table rename to eccodes/definitions.save/grib2/tables/9/4.217.table diff --git a/eccodes/definitions/grib2/tables/9/4.218.table b/eccodes/definitions.save/grib2/tables/9/4.218.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.218.table rename to eccodes/definitions.save/grib2/tables/9/4.218.table diff --git a/eccodes/definitions/grib2/tables/9/4.219.table b/eccodes/definitions.save/grib2/tables/9/4.219.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.219.table rename to eccodes/definitions.save/grib2/tables/9/4.219.table diff --git a/eccodes/definitions/grib2/tables/9/4.220.table b/eccodes/definitions.save/grib2/tables/9/4.220.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.220.table rename to eccodes/definitions.save/grib2/tables/9/4.220.table diff --git a/eccodes/definitions/grib2/tables/9/4.221.table b/eccodes/definitions.save/grib2/tables/9/4.221.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.221.table rename to eccodes/definitions.save/grib2/tables/9/4.221.table diff --git a/eccodes/definitions/grib2/tables/9/4.222.table b/eccodes/definitions.save/grib2/tables/9/4.222.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.222.table rename to eccodes/definitions.save/grib2/tables/9/4.222.table diff --git a/eccodes/definitions/grib2/tables/9/4.223.table b/eccodes/definitions.save/grib2/tables/9/4.223.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.223.table rename to eccodes/definitions.save/grib2/tables/9/4.223.table diff --git a/eccodes/definitions/grib2/tables/9/4.224.table b/eccodes/definitions.save/grib2/tables/9/4.224.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.224.table rename to eccodes/definitions.save/grib2/tables/9/4.224.table diff --git a/eccodes/definitions/grib2/tables/9/4.227.table b/eccodes/definitions.save/grib2/tables/9/4.227.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.227.table rename to eccodes/definitions.save/grib2/tables/9/4.227.table diff --git a/eccodes/definitions/grib2/tables/9/4.230.table b/eccodes/definitions.save/grib2/tables/9/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.230.table rename to eccodes/definitions.save/grib2/tables/9/4.230.table diff --git a/eccodes/definitions/grib2/tables/9/4.233.table b/eccodes/definitions.save/grib2/tables/9/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.233.table rename to eccodes/definitions.save/grib2/tables/9/4.233.table diff --git a/eccodes/definitions/grib2/tables/9/4.234.table b/eccodes/definitions.save/grib2/tables/9/4.234.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.234.table rename to eccodes/definitions.save/grib2/tables/9/4.234.table diff --git a/eccodes/definitions/grib2/tables/9/4.235.table b/eccodes/definitions.save/grib2/tables/9/4.235.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.235.table rename to eccodes/definitions.save/grib2/tables/9/4.235.table diff --git a/eccodes/definitions/grib2/tables/9/4.3.table b/eccodes/definitions.save/grib2/tables/9/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.3.table rename to eccodes/definitions.save/grib2/tables/9/4.3.table diff --git a/eccodes/definitions/grib2/tables/9/4.4.table b/eccodes/definitions.save/grib2/tables/9/4.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.4.table rename to eccodes/definitions.save/grib2/tables/9/4.4.table diff --git a/eccodes/definitions/grib2/tables/9/4.5.table b/eccodes/definitions.save/grib2/tables/9/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.5.table rename to eccodes/definitions.save/grib2/tables/9/4.5.table diff --git a/eccodes/definitions/grib2/tables/9/4.6.table b/eccodes/definitions.save/grib2/tables/9/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.6.table rename to eccodes/definitions.save/grib2/tables/9/4.6.table diff --git a/eccodes/definitions/grib2/tables/9/4.7.table b/eccodes/definitions.save/grib2/tables/9/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.7.table rename to eccodes/definitions.save/grib2/tables/9/4.7.table diff --git a/eccodes/definitions/grib2/tables/9/4.8.table b/eccodes/definitions.save/grib2/tables/9/4.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.8.table rename to eccodes/definitions.save/grib2/tables/9/4.8.table diff --git a/eccodes/definitions/grib2/tables/9/4.9.table b/eccodes/definitions.save/grib2/tables/9/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.9.table rename to eccodes/definitions.save/grib2/tables/9/4.9.table diff --git a/eccodes/definitions/grib2/tables/9/4.91.table b/eccodes/definitions.save/grib2/tables/9/4.91.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/4.91.table rename to eccodes/definitions.save/grib2/tables/9/4.91.table diff --git a/eccodes/definitions/grib2/tables/9/5.0.table b/eccodes/definitions.save/grib2/tables/9/5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.0.table rename to eccodes/definitions.save/grib2/tables/9/5.0.table diff --git a/eccodes/definitions/grib2/tables/9/5.1.table b/eccodes/definitions.save/grib2/tables/9/5.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.1.table rename to eccodes/definitions.save/grib2/tables/9/5.1.table diff --git a/eccodes/definitions/grib2/tables/9/5.2.table b/eccodes/definitions.save/grib2/tables/9/5.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.2.table rename to eccodes/definitions.save/grib2/tables/9/5.2.table diff --git a/eccodes/definitions/grib2/tables/9/5.3.table b/eccodes/definitions.save/grib2/tables/9/5.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.3.table rename to eccodes/definitions.save/grib2/tables/9/5.3.table diff --git a/eccodes/definitions/grib2/tables/9/5.4.table b/eccodes/definitions.save/grib2/tables/9/5.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.4.table rename to eccodes/definitions.save/grib2/tables/9/5.4.table diff --git a/eccodes/definitions/grib2/tables/9/5.40.table b/eccodes/definitions.save/grib2/tables/9/5.40.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.40.table rename to eccodes/definitions.save/grib2/tables/9/5.40.table diff --git a/eccodes/definitions/grib2/tables/9/5.40000.table b/eccodes/definitions.save/grib2/tables/9/5.40000.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.40000.table rename to eccodes/definitions.save/grib2/tables/9/5.40000.table diff --git a/eccodes/definitions/grib2/tables/9/5.5.table b/eccodes/definitions.save/grib2/tables/9/5.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.5.table rename to eccodes/definitions.save/grib2/tables/9/5.5.table diff --git a/eccodes/definitions/grib2/tables/9/5.50002.table b/eccodes/definitions.save/grib2/tables/9/5.50002.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.50002.table rename to eccodes/definitions.save/grib2/tables/9/5.50002.table diff --git a/eccodes/definitions/grib2/tables/9/5.6.table b/eccodes/definitions.save/grib2/tables/9/5.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.6.table rename to eccodes/definitions.save/grib2/tables/9/5.6.table diff --git a/eccodes/definitions/grib2/tables/9/5.7.table b/eccodes/definitions.save/grib2/tables/9/5.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.7.table rename to eccodes/definitions.save/grib2/tables/9/5.7.table diff --git a/eccodes/definitions/grib2/tables/9/5.8.table b/eccodes/definitions.save/grib2/tables/9/5.8.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.8.table rename to eccodes/definitions.save/grib2/tables/9/5.8.table diff --git a/eccodes/definitions/grib2/tables/9/5.9.table b/eccodes/definitions.save/grib2/tables/9/5.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/5.9.table rename to eccodes/definitions.save/grib2/tables/9/5.9.table diff --git a/eccodes/definitions/grib2/tables/9/6.0.table b/eccodes/definitions.save/grib2/tables/9/6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/6.0.table rename to eccodes/definitions.save/grib2/tables/9/6.0.table diff --git a/eccodes/definitions/grib2/tables/9/stepType.table b/eccodes/definitions.save/grib2/tables/9/stepType.table similarity index 100% rename from eccodes/definitions/grib2/tables/9/stepType.table rename to eccodes/definitions.save/grib2/tables/9/stepType.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1.1.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/1.1.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/1/4.230.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/1/4.233.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table b/eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/4/1.2.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.1.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.10.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.11.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.2.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.3.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.4.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.5.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.6.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.7.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.8.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.9.0.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.reporttype.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table diff --git a/eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/ecmf/obstat.varno.table rename to eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1.1.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1.1.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/1.4.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/1.4.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.1.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.11.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.11.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.1.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.13.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.14.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.15.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.16.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.17.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.18.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.19.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.191.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.191.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.192.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.192.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.192.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.192.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.193.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.193.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.193.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.193.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.194.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.194.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.194.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.194.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.195.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.195.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.195.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.195.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.196.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.197.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.198.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.199.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.2.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.20.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.254.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.3.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.4.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.5.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.6.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.0.7.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.1.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.10.3.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.2.3.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.19.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.2.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.5.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.215.7.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.0.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.2.3.1.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.3.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.5.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.6.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.6.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.7.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/4.9.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/4.9.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/backgroundProcess.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table diff --git a/eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table rename to eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table diff --git a/eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table b/eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table similarity index 100% rename from eccodes/definitions/grib2/tables/local/kwbc/1/4.5.table rename to eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table diff --git a/eccodes/definitions/grib2/template.1.0.def b/eccodes/definitions.save/grib2/template.1.0.def similarity index 100% rename from eccodes/definitions/grib2/template.1.0.def rename to eccodes/definitions.save/grib2/template.1.0.def diff --git a/eccodes/definitions/grib2/template.1.1.def b/eccodes/definitions.save/grib2/template.1.1.def similarity index 100% rename from eccodes/definitions/grib2/template.1.1.def rename to eccodes/definitions.save/grib2/template.1.1.def diff --git a/eccodes/definitions/grib2/template.1.2.def b/eccodes/definitions.save/grib2/template.1.2.def similarity index 100% rename from eccodes/definitions/grib2/template.1.2.def rename to eccodes/definitions.save/grib2/template.1.2.def diff --git a/eccodes/definitions/grib2/template.1.calendar.def b/eccodes/definitions.save/grib2/template.1.calendar.def similarity index 100% rename from eccodes/definitions/grib2/template.1.calendar.def rename to eccodes/definitions.save/grib2/template.1.calendar.def diff --git a/eccodes/definitions/grib2/template.1.offset.def b/eccodes/definitions.save/grib2/template.1.offset.def similarity index 100% rename from eccodes/definitions/grib2/template.1.offset.def rename to eccodes/definitions.save/grib2/template.1.offset.def diff --git a/eccodes/definitions/grib2/template.3.0.def b/eccodes/definitions.save/grib2/template.3.0.def similarity index 100% rename from eccodes/definitions/grib2/template.3.0.def rename to eccodes/definitions.save/grib2/template.3.0.def diff --git a/eccodes/definitions/grib2/template.3.1.def b/eccodes/definitions.save/grib2/template.3.1.def similarity index 100% rename from eccodes/definitions/grib2/template.3.1.def rename to eccodes/definitions.save/grib2/template.3.1.def diff --git a/eccodes/definitions/grib2/template.3.10.def b/eccodes/definitions.save/grib2/template.3.10.def similarity index 100% rename from eccodes/definitions/grib2/template.3.10.def rename to eccodes/definitions.save/grib2/template.3.10.def diff --git a/eccodes/definitions/grib2/template.3.100.def b/eccodes/definitions.save/grib2/template.3.100.def similarity index 100% rename from eccodes/definitions/grib2/template.3.100.def rename to eccodes/definitions.save/grib2/template.3.100.def diff --git a/eccodes/definitions/grib2/template.3.1000.def b/eccodes/definitions.save/grib2/template.3.1000.def similarity index 100% rename from eccodes/definitions/grib2/template.3.1000.def rename to eccodes/definitions.save/grib2/template.3.1000.def diff --git a/eccodes/definitions/grib2/template.3.101.def b/eccodes/definitions.save/grib2/template.3.101.def similarity index 100% rename from eccodes/definitions/grib2/template.3.101.def rename to eccodes/definitions.save/grib2/template.3.101.def diff --git a/eccodes/definitions/grib2/template.3.110.def b/eccodes/definitions.save/grib2/template.3.110.def similarity index 100% rename from eccodes/definitions/grib2/template.3.110.def rename to eccodes/definitions.save/grib2/template.3.110.def diff --git a/eccodes/definitions/grib2/template.3.1100.def b/eccodes/definitions.save/grib2/template.3.1100.def similarity index 100% rename from eccodes/definitions/grib2/template.3.1100.def rename to eccodes/definitions.save/grib2/template.3.1100.def diff --git a/eccodes/definitions/grib2/template.3.12.def b/eccodes/definitions.save/grib2/template.3.12.def similarity index 100% rename from eccodes/definitions/grib2/template.3.12.def rename to eccodes/definitions.save/grib2/template.3.12.def diff --git a/eccodes/definitions/grib2/template.3.120.def b/eccodes/definitions.save/grib2/template.3.120.def similarity index 100% rename from eccodes/definitions/grib2/template.3.120.def rename to eccodes/definitions.save/grib2/template.3.120.def diff --git a/eccodes/definitions/grib2/template.3.1200.def b/eccodes/definitions.save/grib2/template.3.1200.def similarity index 100% rename from eccodes/definitions/grib2/template.3.1200.def rename to eccodes/definitions.save/grib2/template.3.1200.def diff --git a/eccodes/definitions/grib2/template.3.13.def b/eccodes/definitions.save/grib2/template.3.13.def similarity index 100% rename from eccodes/definitions/grib2/template.3.13.def rename to eccodes/definitions.save/grib2/template.3.13.def diff --git a/eccodes/definitions/grib2/template.3.130.def b/eccodes/definitions.save/grib2/template.3.130.def similarity index 100% rename from eccodes/definitions/grib2/template.3.130.def rename to eccodes/definitions.save/grib2/template.3.130.def diff --git a/eccodes/definitions/grib2/template.3.140.def b/eccodes/definitions.save/grib2/template.3.140.def similarity index 100% rename from eccodes/definitions/grib2/template.3.140.def rename to eccodes/definitions.save/grib2/template.3.140.def diff --git a/eccodes/definitions/grib2/template.3.2.def b/eccodes/definitions.save/grib2/template.3.2.def similarity index 100% rename from eccodes/definitions/grib2/template.3.2.def rename to eccodes/definitions.save/grib2/template.3.2.def diff --git a/eccodes/definitions/grib2/template.3.20.def b/eccodes/definitions.save/grib2/template.3.20.def similarity index 100% rename from eccodes/definitions/grib2/template.3.20.def rename to eccodes/definitions.save/grib2/template.3.20.def diff --git a/eccodes/definitions/grib2/template.3.23.def b/eccodes/definitions.save/grib2/template.3.23.def similarity index 100% rename from eccodes/definitions/grib2/template.3.23.def rename to eccodes/definitions.save/grib2/template.3.23.def diff --git a/eccodes/definitions/grib2/template.3.3.def b/eccodes/definitions.save/grib2/template.3.3.def similarity index 100% rename from eccodes/definitions/grib2/template.3.3.def rename to eccodes/definitions.save/grib2/template.3.3.def diff --git a/eccodes/definitions/grib2/template.3.30.def b/eccodes/definitions.save/grib2/template.3.30.def similarity index 100% rename from eccodes/definitions/grib2/template.3.30.def rename to eccodes/definitions.save/grib2/template.3.30.def diff --git a/eccodes/definitions/grib2/template.3.31.def b/eccodes/definitions.save/grib2/template.3.31.def similarity index 100% rename from eccodes/definitions/grib2/template.3.31.def rename to eccodes/definitions.save/grib2/template.3.31.def diff --git a/eccodes/definitions/grib2/template.3.32769.def b/eccodes/definitions.save/grib2/template.3.32769.def similarity index 79% rename from eccodes/definitions/grib2/template.3.32769.def rename to eccodes/definitions.save/grib2/template.3.32769.def index ee63af41..9fca2730 100644 --- a/eccodes/definitions/grib2/template.3.32769.def +++ b/eccodes/definitions.save/grib2/template.3.32769.def @@ -2,4 +2,4 @@ include "grib2/template.3.shape_of_the_earth.def"; include "grib2/template.3.latlon.def"; -#include "grib2/template.3.rotation.def"; +include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions/grib2/template.3.33.def b/eccodes/definitions.save/grib2/template.3.33.def similarity index 100% rename from eccodes/definitions/grib2/template.3.33.def rename to eccodes/definitions.save/grib2/template.3.33.def diff --git a/eccodes/definitions/grib2/template.3.4.def b/eccodes/definitions.save/grib2/template.3.4.def similarity index 100% rename from eccodes/definitions/grib2/template.3.4.def rename to eccodes/definitions.save/grib2/template.3.4.def diff --git a/eccodes/definitions/grib2/template.3.40.def b/eccodes/definitions.save/grib2/template.3.40.def similarity index 100% rename from eccodes/definitions/grib2/template.3.40.def rename to eccodes/definitions.save/grib2/template.3.40.def diff --git a/eccodes/definitions/grib2/template.3.41.def b/eccodes/definitions.save/grib2/template.3.41.def similarity index 100% rename from eccodes/definitions/grib2/template.3.41.def rename to eccodes/definitions.save/grib2/template.3.41.def diff --git a/eccodes/definitions/grib2/template.3.42.def b/eccodes/definitions.save/grib2/template.3.42.def similarity index 100% rename from eccodes/definitions/grib2/template.3.42.def rename to eccodes/definitions.save/grib2/template.3.42.def diff --git a/eccodes/definitions/grib2/template.3.43.def b/eccodes/definitions.save/grib2/template.3.43.def similarity index 100% rename from eccodes/definitions/grib2/template.3.43.def rename to eccodes/definitions.save/grib2/template.3.43.def diff --git a/eccodes/definitions/grib2/template.3.5.def b/eccodes/definitions.save/grib2/template.3.5.def similarity index 100% rename from eccodes/definitions/grib2/template.3.5.def rename to eccodes/definitions.save/grib2/template.3.5.def diff --git a/eccodes/definitions/grib2/template.3.50.def b/eccodes/definitions.save/grib2/template.3.50.def similarity index 100% rename from eccodes/definitions/grib2/template.3.50.def rename to eccodes/definitions.save/grib2/template.3.50.def diff --git a/eccodes/definitions/grib2/template.3.51.def b/eccodes/definitions.save/grib2/template.3.51.def similarity index 100% rename from eccodes/definitions/grib2/template.3.51.def rename to eccodes/definitions.save/grib2/template.3.51.def diff --git a/eccodes/definitions/grib2/template.3.52.def b/eccodes/definitions.save/grib2/template.3.52.def similarity index 100% rename from eccodes/definitions/grib2/template.3.52.def rename to eccodes/definitions.save/grib2/template.3.52.def diff --git a/eccodes/definitions/grib2/template.3.53.def b/eccodes/definitions.save/grib2/template.3.53.def similarity index 100% rename from eccodes/definitions/grib2/template.3.53.def rename to eccodes/definitions.save/grib2/template.3.53.def diff --git a/eccodes/definitions/grib2/template.3.61.def b/eccodes/definitions.save/grib2/template.3.61.def similarity index 100% rename from eccodes/definitions/grib2/template.3.61.def rename to eccodes/definitions.save/grib2/template.3.61.def diff --git a/eccodes/definitions/grib2/template.3.62.def b/eccodes/definitions.save/grib2/template.3.62.def similarity index 100% rename from eccodes/definitions/grib2/template.3.62.def rename to eccodes/definitions.save/grib2/template.3.62.def diff --git a/eccodes/definitions/grib2/template.3.63.def b/eccodes/definitions.save/grib2/template.3.63.def similarity index 100% rename from eccodes/definitions/grib2/template.3.63.def rename to eccodes/definitions.save/grib2/template.3.63.def diff --git a/eccodes/definitions/grib2/template.3.90.def b/eccodes/definitions.save/grib2/template.3.90.def similarity index 100% rename from eccodes/definitions/grib2/template.3.90.def rename to eccodes/definitions.save/grib2/template.3.90.def diff --git a/eccodes/definitions/grib2/template.3.bf.def b/eccodes/definitions.save/grib2/template.3.bf.def similarity index 100% rename from eccodes/definitions/grib2/template.3.bf.def rename to eccodes/definitions.save/grib2/template.3.bf.def diff --git a/eccodes/definitions/grib2/template.3.gaussian.def b/eccodes/definitions.save/grib2/template.3.gaussian.def similarity index 100% rename from eccodes/definitions/grib2/template.3.gaussian.def rename to eccodes/definitions.save/grib2/template.3.gaussian.def diff --git a/eccodes/definitions/grib2/template.3.grid.def b/eccodes/definitions.save/grib2/template.3.grid.def similarity index 100% rename from eccodes/definitions/grib2/template.3.grid.def rename to eccodes/definitions.save/grib2/template.3.grid.def diff --git a/eccodes/definitions/grib2/template.3.lam.def b/eccodes/definitions.save/grib2/template.3.lam.def similarity index 100% rename from eccodes/definitions/grib2/template.3.lam.def rename to eccodes/definitions.save/grib2/template.3.lam.def diff --git a/eccodes/definitions/grib2/template.3.latlon.def b/eccodes/definitions.save/grib2/template.3.latlon.def similarity index 100% rename from eccodes/definitions/grib2/template.3.latlon.def rename to eccodes/definitions.save/grib2/template.3.latlon.def diff --git a/eccodes/definitions/grib2/template.3.latlon_vares.def b/eccodes/definitions.save/grib2/template.3.latlon_vares.def similarity index 100% rename from eccodes/definitions/grib2/template.3.latlon_vares.def rename to eccodes/definitions.save/grib2/template.3.latlon_vares.def diff --git a/eccodes/definitions/grib2/template.3.resolution_flags.def b/eccodes/definitions.save/grib2/template.3.resolution_flags.def similarity index 100% rename from eccodes/definitions/grib2/template.3.resolution_flags.def rename to eccodes/definitions.save/grib2/template.3.resolution_flags.def diff --git a/eccodes/definitions/grib2/template.3.rotation.def b/eccodes/definitions.save/grib2/template.3.rotation.def similarity index 100% rename from eccodes/definitions/grib2/template.3.rotation.def rename to eccodes/definitions.save/grib2/template.3.rotation.def diff --git a/eccodes/definitions/grib2/template.3.scanning_mode.def b/eccodes/definitions.save/grib2/template.3.scanning_mode.def similarity index 100% rename from eccodes/definitions/grib2/template.3.scanning_mode.def rename to eccodes/definitions.save/grib2/template.3.scanning_mode.def diff --git a/eccodes/definitions/grib2/template.3.shape_of_the_earth.def b/eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def similarity index 100% rename from eccodes/definitions/grib2/template.3.shape_of_the_earth.def rename to eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def diff --git a/eccodes/definitions/grib2/template.3.spherical_harmonics.def b/eccodes/definitions.save/grib2/template.3.spherical_harmonics.def similarity index 100% rename from eccodes/definitions/grib2/template.3.spherical_harmonics.def rename to eccodes/definitions.save/grib2/template.3.spherical_harmonics.def diff --git a/eccodes/definitions/grib2/template.3.stretching.def b/eccodes/definitions.save/grib2/template.3.stretching.def similarity index 100% rename from eccodes/definitions/grib2/template.3.stretching.def rename to eccodes/definitions.save/grib2/template.3.stretching.def diff --git a/eccodes/definitions/grib2/template.4.0.def b/eccodes/definitions.save/grib2/template.4.0.def similarity index 100% rename from eccodes/definitions/grib2/template.4.0.def rename to eccodes/definitions.save/grib2/template.4.0.def diff --git a/eccodes/definitions/grib2/template.4.1.def b/eccodes/definitions.save/grib2/template.4.1.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1.def rename to eccodes/definitions.save/grib2/template.4.1.def diff --git a/eccodes/definitions/grib2/template.4.10.def b/eccodes/definitions.save/grib2/template.4.10.def similarity index 100% rename from eccodes/definitions/grib2/template.4.10.def rename to eccodes/definitions.save/grib2/template.4.10.def diff --git a/eccodes/definitions/grib2/template.4.1000.def b/eccodes/definitions.save/grib2/template.4.1000.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1000.def rename to eccodes/definitions.save/grib2/template.4.1000.def diff --git a/eccodes/definitions/grib2/template.4.1001.def b/eccodes/definitions.save/grib2/template.4.1001.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1001.def rename to eccodes/definitions.save/grib2/template.4.1001.def diff --git a/eccodes/definitions/grib2/template.4.1002.def b/eccodes/definitions.save/grib2/template.4.1002.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1002.def rename to eccodes/definitions.save/grib2/template.4.1002.def diff --git a/eccodes/definitions/grib2/template.4.11.def b/eccodes/definitions.save/grib2/template.4.11.def similarity index 100% rename from eccodes/definitions/grib2/template.4.11.def rename to eccodes/definitions.save/grib2/template.4.11.def diff --git a/eccodes/definitions/grib2/template.4.1100.def b/eccodes/definitions.save/grib2/template.4.1100.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1100.def rename to eccodes/definitions.save/grib2/template.4.1100.def diff --git a/eccodes/definitions/grib2/template.4.1101.def b/eccodes/definitions.save/grib2/template.4.1101.def similarity index 100% rename from eccodes/definitions/grib2/template.4.1101.def rename to eccodes/definitions.save/grib2/template.4.1101.def diff --git a/eccodes/definitions/grib2/template.4.12.def b/eccodes/definitions.save/grib2/template.4.12.def similarity index 100% rename from eccodes/definitions/grib2/template.4.12.def rename to eccodes/definitions.save/grib2/template.4.12.def diff --git a/eccodes/definitions/grib2/template.4.13.def b/eccodes/definitions.save/grib2/template.4.13.def similarity index 100% rename from eccodes/definitions/grib2/template.4.13.def rename to eccodes/definitions.save/grib2/template.4.13.def diff --git a/eccodes/definitions/grib2/template.4.14.def b/eccodes/definitions.save/grib2/template.4.14.def similarity index 100% rename from eccodes/definitions/grib2/template.4.14.def rename to eccodes/definitions.save/grib2/template.4.14.def diff --git a/eccodes/definitions/grib2/template.4.15.def b/eccodes/definitions.save/grib2/template.4.15.def similarity index 100% rename from eccodes/definitions/grib2/template.4.15.def rename to eccodes/definitions.save/grib2/template.4.15.def diff --git a/eccodes/definitions/grib2/template.4.2.def b/eccodes/definitions.save/grib2/template.4.2.def similarity index 100% rename from eccodes/definitions/grib2/template.4.2.def rename to eccodes/definitions.save/grib2/template.4.2.def diff --git a/eccodes/definitions/grib2/template.4.20.def b/eccodes/definitions.save/grib2/template.4.20.def similarity index 100% rename from eccodes/definitions/grib2/template.4.20.def rename to eccodes/definitions.save/grib2/template.4.20.def diff --git a/eccodes/definitions/grib2/template.4.2000.def b/eccodes/definitions.save/grib2/template.4.2000.def similarity index 100% rename from eccodes/definitions/grib2/template.4.2000.def rename to eccodes/definitions.save/grib2/template.4.2000.def diff --git a/eccodes/definitions/grib2/template.4.254.def b/eccodes/definitions.save/grib2/template.4.254.def similarity index 100% rename from eccodes/definitions/grib2/template.4.254.def rename to eccodes/definitions.save/grib2/template.4.254.def diff --git a/eccodes/definitions/grib2/template.4.3.def b/eccodes/definitions.save/grib2/template.4.3.def similarity index 100% rename from eccodes/definitions/grib2/template.4.3.def rename to eccodes/definitions.save/grib2/template.4.3.def diff --git a/eccodes/definitions/grib2/template.4.30.def b/eccodes/definitions.save/grib2/template.4.30.def similarity index 100% rename from eccodes/definitions/grib2/template.4.30.def rename to eccodes/definitions.save/grib2/template.4.30.def diff --git a/eccodes/definitions/grib2/template.4.31.def b/eccodes/definitions.save/grib2/template.4.31.def similarity index 100% rename from eccodes/definitions/grib2/template.4.31.def rename to eccodes/definitions.save/grib2/template.4.31.def diff --git a/eccodes/definitions/grib2/template.4.311.def b/eccodes/definitions.save/grib2/template.4.311.def similarity index 100% rename from eccodes/definitions/grib2/template.4.311.def rename to eccodes/definitions.save/grib2/template.4.311.def diff --git a/eccodes/definitions/grib2/template.4.32.def b/eccodes/definitions.save/grib2/template.4.32.def similarity index 100% rename from eccodes/definitions/grib2/template.4.32.def rename to eccodes/definitions.save/grib2/template.4.32.def diff --git a/eccodes/definitions/grib2/template.4.33.def b/eccodes/definitions.save/grib2/template.4.33.def similarity index 100% rename from eccodes/definitions/grib2/template.4.33.def rename to eccodes/definitions.save/grib2/template.4.33.def diff --git a/eccodes/definitions/grib2/template.4.34.def b/eccodes/definitions.save/grib2/template.4.34.def similarity index 100% rename from eccodes/definitions/grib2/template.4.34.def rename to eccodes/definitions.save/grib2/template.4.34.def diff --git a/eccodes/definitions/grib2/template.4.35.def b/eccodes/definitions.save/grib2/template.4.35.def similarity index 100% rename from eccodes/definitions/grib2/template.4.35.def rename to eccodes/definitions.save/grib2/template.4.35.def diff --git a/eccodes/definitions/grib2/template.4.4.def b/eccodes/definitions.save/grib2/template.4.4.def similarity index 100% rename from eccodes/definitions/grib2/template.4.4.def rename to eccodes/definitions.save/grib2/template.4.4.def diff --git a/eccodes/definitions/grib2/template.4.40.def b/eccodes/definitions.save/grib2/template.4.40.def similarity index 100% rename from eccodes/definitions/grib2/template.4.40.def rename to eccodes/definitions.save/grib2/template.4.40.def diff --git a/eccodes/definitions/grib2/template.4.40033.def b/eccodes/definitions.save/grib2/template.4.40033.def similarity index 100% rename from eccodes/definitions/grib2/template.4.40033.def rename to eccodes/definitions.save/grib2/template.4.40033.def diff --git a/eccodes/definitions/grib2/template.4.40034.def b/eccodes/definitions.save/grib2/template.4.40034.def similarity index 100% rename from eccodes/definitions/grib2/template.4.40034.def rename to eccodes/definitions.save/grib2/template.4.40034.def diff --git a/eccodes/definitions/grib2/template.4.41.def b/eccodes/definitions.save/grib2/template.4.41.def similarity index 100% rename from eccodes/definitions/grib2/template.4.41.def rename to eccodes/definitions.save/grib2/template.4.41.def diff --git a/eccodes/definitions/grib2/template.4.42.def b/eccodes/definitions.save/grib2/template.4.42.def similarity index 100% rename from eccodes/definitions/grib2/template.4.42.def rename to eccodes/definitions.save/grib2/template.4.42.def diff --git a/eccodes/definitions/grib2/template.4.43.def b/eccodes/definitions.save/grib2/template.4.43.def similarity index 100% rename from eccodes/definitions/grib2/template.4.43.def rename to eccodes/definitions.save/grib2/template.4.43.def diff --git a/eccodes/definitions/grib2/template.4.44.def b/eccodes/definitions.save/grib2/template.4.44.def similarity index 100% rename from eccodes/definitions/grib2/template.4.44.def rename to eccodes/definitions.save/grib2/template.4.44.def diff --git a/eccodes/definitions/grib2/template.4.45.def b/eccodes/definitions.save/grib2/template.4.45.def similarity index 100% rename from eccodes/definitions/grib2/template.4.45.def rename to eccodes/definitions.save/grib2/template.4.45.def diff --git a/eccodes/definitions/grib2/template.4.46.def b/eccodes/definitions.save/grib2/template.4.46.def similarity index 100% rename from eccodes/definitions/grib2/template.4.46.def rename to eccodes/definitions.save/grib2/template.4.46.def diff --git a/eccodes/definitions/grib2/template.4.47.def b/eccodes/definitions.save/grib2/template.4.47.def similarity index 100% rename from eccodes/definitions/grib2/template.4.47.def rename to eccodes/definitions.save/grib2/template.4.47.def diff --git a/eccodes/definitions/grib2/template.4.48.def b/eccodes/definitions.save/grib2/template.4.48.def similarity index 100% rename from eccodes/definitions/grib2/template.4.48.def rename to eccodes/definitions.save/grib2/template.4.48.def diff --git a/eccodes/definitions/grib2/template.4.49.def b/eccodes/definitions.save/grib2/template.4.49.def similarity index 100% rename from eccodes/definitions/grib2/template.4.49.def rename to eccodes/definitions.save/grib2/template.4.49.def diff --git a/eccodes/definitions/grib2/template.4.5.def b/eccodes/definitions.save/grib2/template.4.5.def similarity index 100% rename from eccodes/definitions/grib2/template.4.5.def rename to eccodes/definitions.save/grib2/template.4.5.def diff --git a/eccodes/definitions/grib2/template.4.51.def b/eccodes/definitions.save/grib2/template.4.51.def similarity index 100% rename from eccodes/definitions/grib2/template.4.51.def rename to eccodes/definitions.save/grib2/template.4.51.def diff --git a/eccodes/definitions/grib2/template.4.53.def b/eccodes/definitions.save/grib2/template.4.53.def similarity index 100% rename from eccodes/definitions/grib2/template.4.53.def rename to eccodes/definitions.save/grib2/template.4.53.def diff --git a/eccodes/definitions/grib2/template.4.54.def b/eccodes/definitions.save/grib2/template.4.54.def similarity index 100% rename from eccodes/definitions/grib2/template.4.54.def rename to eccodes/definitions.save/grib2/template.4.54.def diff --git a/eccodes/definitions/grib2/template.4.55.def b/eccodes/definitions.save/grib2/template.4.55.def similarity index 100% rename from eccodes/definitions/grib2/template.4.55.def rename to eccodes/definitions.save/grib2/template.4.55.def diff --git a/eccodes/definitions/grib2/template.4.56.def b/eccodes/definitions.save/grib2/template.4.56.def similarity index 100% rename from eccodes/definitions/grib2/template.4.56.def rename to eccodes/definitions.save/grib2/template.4.56.def diff --git a/eccodes/definitions/grib2/template.4.57.def b/eccodes/definitions.save/grib2/template.4.57.def similarity index 100% rename from eccodes/definitions/grib2/template.4.57.def rename to eccodes/definitions.save/grib2/template.4.57.def diff --git a/eccodes/definitions/grib2/template.4.58.def b/eccodes/definitions.save/grib2/template.4.58.def similarity index 100% rename from eccodes/definitions/grib2/template.4.58.def rename to eccodes/definitions.save/grib2/template.4.58.def diff --git a/eccodes/definitions/grib2/template.4.59.def b/eccodes/definitions.save/grib2/template.4.59.def similarity index 100% rename from eccodes/definitions/grib2/template.4.59.def rename to eccodes/definitions.save/grib2/template.4.59.def diff --git a/eccodes/definitions/grib2/template.4.6.def b/eccodes/definitions.save/grib2/template.4.6.def similarity index 100% rename from eccodes/definitions/grib2/template.4.6.def rename to eccodes/definitions.save/grib2/template.4.6.def diff --git a/eccodes/definitions/grib2/template.4.60.def b/eccodes/definitions.save/grib2/template.4.60.def similarity index 100% rename from eccodes/definitions/grib2/template.4.60.def rename to eccodes/definitions.save/grib2/template.4.60.def diff --git a/eccodes/definitions/grib2/template.4.61.def b/eccodes/definitions.save/grib2/template.4.61.def similarity index 100% rename from eccodes/definitions/grib2/template.4.61.def rename to eccodes/definitions.save/grib2/template.4.61.def diff --git a/eccodes/definitions/grib2/template.4.67.def b/eccodes/definitions.save/grib2/template.4.67.def similarity index 100% rename from eccodes/definitions/grib2/template.4.67.def rename to eccodes/definitions.save/grib2/template.4.67.def diff --git a/eccodes/definitions/grib2/template.4.68.def b/eccodes/definitions.save/grib2/template.4.68.def similarity index 100% rename from eccodes/definitions/grib2/template.4.68.def rename to eccodes/definitions.save/grib2/template.4.68.def diff --git a/eccodes/definitions/grib2/template.4.7.def b/eccodes/definitions.save/grib2/template.4.7.def similarity index 100% rename from eccodes/definitions/grib2/template.4.7.def rename to eccodes/definitions.save/grib2/template.4.7.def diff --git a/eccodes/definitions/grib2/template.4.70.def b/eccodes/definitions.save/grib2/template.4.70.def similarity index 100% rename from eccodes/definitions/grib2/template.4.70.def rename to eccodes/definitions.save/grib2/template.4.70.def diff --git a/eccodes/definitions/grib2/template.4.71.def b/eccodes/definitions.save/grib2/template.4.71.def similarity index 100% rename from eccodes/definitions/grib2/template.4.71.def rename to eccodes/definitions.save/grib2/template.4.71.def diff --git a/eccodes/definitions/grib2/template.4.72.def b/eccodes/definitions.save/grib2/template.4.72.def similarity index 100% rename from eccodes/definitions/grib2/template.4.72.def rename to eccodes/definitions.save/grib2/template.4.72.def diff --git a/eccodes/definitions/grib2/template.4.73.def b/eccodes/definitions.save/grib2/template.4.73.def similarity index 100% rename from eccodes/definitions/grib2/template.4.73.def rename to eccodes/definitions.save/grib2/template.4.73.def diff --git a/eccodes/definitions/grib2/template.4.76.def b/eccodes/definitions.save/grib2/template.4.76.def similarity index 100% rename from eccodes/definitions/grib2/template.4.76.def rename to eccodes/definitions.save/grib2/template.4.76.def diff --git a/eccodes/definitions/grib2/template.4.77.def b/eccodes/definitions.save/grib2/template.4.77.def similarity index 100% rename from eccodes/definitions/grib2/template.4.77.def rename to eccodes/definitions.save/grib2/template.4.77.def diff --git a/eccodes/definitions/grib2/template.4.78.def b/eccodes/definitions.save/grib2/template.4.78.def similarity index 100% rename from eccodes/definitions/grib2/template.4.78.def rename to eccodes/definitions.save/grib2/template.4.78.def diff --git a/eccodes/definitions/grib2/template.4.79.def b/eccodes/definitions.save/grib2/template.4.79.def similarity index 100% rename from eccodes/definitions/grib2/template.4.79.def rename to eccodes/definitions.save/grib2/template.4.79.def diff --git a/eccodes/definitions/grib2/template.4.8.def b/eccodes/definitions.save/grib2/template.4.8.def similarity index 100% rename from eccodes/definitions/grib2/template.4.8.def rename to eccodes/definitions.save/grib2/template.4.8.def diff --git a/eccodes/definitions/grib2/template.4.80.def b/eccodes/definitions.save/grib2/template.4.80.def similarity index 100% rename from eccodes/definitions/grib2/template.4.80.def rename to eccodes/definitions.save/grib2/template.4.80.def diff --git a/eccodes/definitions/grib2/template.4.81.def b/eccodes/definitions.save/grib2/template.4.81.def similarity index 100% rename from eccodes/definitions/grib2/template.4.81.def rename to eccodes/definitions.save/grib2/template.4.81.def diff --git a/eccodes/definitions/grib2/template.4.82.def b/eccodes/definitions.save/grib2/template.4.82.def similarity index 100% rename from eccodes/definitions/grib2/template.4.82.def rename to eccodes/definitions.save/grib2/template.4.82.def diff --git a/eccodes/definitions/grib2/template.4.83.def b/eccodes/definitions.save/grib2/template.4.83.def similarity index 100% rename from eccodes/definitions/grib2/template.4.83.def rename to eccodes/definitions.save/grib2/template.4.83.def diff --git a/eccodes/definitions/grib2/template.4.84.def b/eccodes/definitions.save/grib2/template.4.84.def similarity index 100% rename from eccodes/definitions/grib2/template.4.84.def rename to eccodes/definitions.save/grib2/template.4.84.def diff --git a/eccodes/definitions/grib2/template.4.85.def b/eccodes/definitions.save/grib2/template.4.85.def similarity index 100% rename from eccodes/definitions/grib2/template.4.85.def rename to eccodes/definitions.save/grib2/template.4.85.def diff --git a/eccodes/definitions/grib2/template.4.9.def b/eccodes/definitions.save/grib2/template.4.9.def similarity index 100% rename from eccodes/definitions/grib2/template.4.9.def rename to eccodes/definitions.save/grib2/template.4.9.def diff --git a/eccodes/definitions/grib2/template.4.91.def b/eccodes/definitions.save/grib2/template.4.91.def similarity index 100% rename from eccodes/definitions/grib2/template.4.91.def rename to eccodes/definitions.save/grib2/template.4.91.def diff --git a/eccodes/definitions/grib2/template.4.categorical.def b/eccodes/definitions.save/grib2/template.4.categorical.def similarity index 100% rename from eccodes/definitions/grib2/template.4.categorical.def rename to eccodes/definitions.save/grib2/template.4.categorical.def diff --git a/eccodes/definitions/grib2/template.4.circular_cluster.def b/eccodes/definitions.save/grib2/template.4.circular_cluster.def similarity index 100% rename from eccodes/definitions/grib2/template.4.circular_cluster.def rename to eccodes/definitions.save/grib2/template.4.circular_cluster.def diff --git a/eccodes/definitions/grib2/template.4.derived.def b/eccodes/definitions.save/grib2/template.4.derived.def similarity index 100% rename from eccodes/definitions/grib2/template.4.derived.def rename to eccodes/definitions.save/grib2/template.4.derived.def diff --git a/eccodes/definitions/grib2/template.4.eps.def b/eccodes/definitions.save/grib2/template.4.eps.def similarity index 100% rename from eccodes/definitions/grib2/template.4.eps.def rename to eccodes/definitions.save/grib2/template.4.eps.def diff --git a/eccodes/definitions/grib2/template.4.horizontal.def b/eccodes/definitions.save/grib2/template.4.horizontal.def similarity index 100% rename from eccodes/definitions/grib2/template.4.horizontal.def rename to eccodes/definitions.save/grib2/template.4.horizontal.def diff --git a/eccodes/definitions/grib2/template.4.parameter.def b/eccodes/definitions.save/grib2/template.4.parameter.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter.def rename to eccodes/definitions.save/grib2/template.4.parameter.def diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_aerosol.def rename to eccodes/definitions.save/grib2/template.4.parameter_aerosol.def diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_44.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_aerosol_44.def rename to eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_aerosol_optical.def rename to eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_aerosol_optical_source.def rename to eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def diff --git a/eccodes/definitions/grib2/template.4.parameter_aerosol_source.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_aerosol_source.def rename to eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_chemical.def rename to eccodes/definitions.save/grib2/template.4.parameter_chemical.def diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_chemical_distribution.def rename to eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def diff --git a/eccodes/definitions/grib2/template.4.parameter_chemical_source.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_chemical_source.def rename to eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def diff --git a/eccodes/definitions/grib2/template.4.parameter_partition.def b/eccodes/definitions.save/grib2/template.4.parameter_partition.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_partition.def rename to eccodes/definitions.save/grib2/template.4.parameter_partition.def diff --git a/eccodes/definitions/grib2/template.4.parameter_postproc.def b/eccodes/definitions.save/grib2/template.4.parameter_postproc.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_postproc.def rename to eccodes/definitions.save/grib2/template.4.parameter_postproc.def diff --git a/eccodes/definitions/grib2/template.4.parameter_tile.def b/eccodes/definitions.save/grib2/template.4.parameter_tile.def similarity index 100% rename from eccodes/definitions/grib2/template.4.parameter_tile.def rename to eccodes/definitions.save/grib2/template.4.parameter_tile.def diff --git a/eccodes/definitions/grib2/template.4.percentile.def b/eccodes/definitions.save/grib2/template.4.percentile.def similarity index 100% rename from eccodes/definitions/grib2/template.4.percentile.def rename to eccodes/definitions.save/grib2/template.4.percentile.def diff --git a/eccodes/definitions/grib2/template.4.point_in_time.def b/eccodes/definitions.save/grib2/template.4.point_in_time.def similarity index 100% rename from eccodes/definitions/grib2/template.4.point_in_time.def rename to eccodes/definitions.save/grib2/template.4.point_in_time.def diff --git a/eccodes/definitions/grib2/template.4.probability.def b/eccodes/definitions.save/grib2/template.4.probability.def similarity index 100% rename from eccodes/definitions/grib2/template.4.probability.def rename to eccodes/definitions.save/grib2/template.4.probability.def diff --git a/eccodes/definitions/grib2/template.4.rectangular_cluster.def b/eccodes/definitions.save/grib2/template.4.rectangular_cluster.def similarity index 100% rename from eccodes/definitions/grib2/template.4.rectangular_cluster.def rename to eccodes/definitions.save/grib2/template.4.rectangular_cluster.def diff --git a/eccodes/definitions/grib2/template.4.reforecast.def b/eccodes/definitions.save/grib2/template.4.reforecast.def similarity index 100% rename from eccodes/definitions/grib2/template.4.reforecast.def rename to eccodes/definitions.save/grib2/template.4.reforecast.def diff --git a/eccodes/definitions/grib2/template.4.statistical.def b/eccodes/definitions.save/grib2/template.4.statistical.def similarity index 100% rename from eccodes/definitions/grib2/template.4.statistical.def rename to eccodes/definitions.save/grib2/template.4.statistical.def diff --git a/eccodes/definitions/grib2/template.5.0.def b/eccodes/definitions.save/grib2/template.5.0.def similarity index 100% rename from eccodes/definitions/grib2/template.5.0.def rename to eccodes/definitions.save/grib2/template.5.0.def diff --git a/eccodes/definitions/grib2/template.5.1.def b/eccodes/definitions.save/grib2/template.5.1.def similarity index 100% rename from eccodes/definitions/grib2/template.5.1.def rename to eccodes/definitions.save/grib2/template.5.1.def diff --git a/eccodes/definitions/grib2/template.5.2.def b/eccodes/definitions.save/grib2/template.5.2.def similarity index 100% rename from eccodes/definitions/grib2/template.5.2.def rename to eccodes/definitions.save/grib2/template.5.2.def diff --git a/eccodes/definitions/grib2/template.5.3.def b/eccodes/definitions.save/grib2/template.5.3.def similarity index 100% rename from eccodes/definitions/grib2/template.5.3.def rename to eccodes/definitions.save/grib2/template.5.3.def diff --git a/eccodes/definitions/grib2/template.5.4.def b/eccodes/definitions.save/grib2/template.5.4.def similarity index 100% rename from eccodes/definitions/grib2/template.5.4.def rename to eccodes/definitions.save/grib2/template.5.4.def diff --git a/eccodes/definitions/grib2/template.5.40.def b/eccodes/definitions.save/grib2/template.5.40.def similarity index 100% rename from eccodes/definitions/grib2/template.5.40.def rename to eccodes/definitions.save/grib2/template.5.40.def diff --git a/eccodes/definitions/grib2/template.5.40000.def b/eccodes/definitions.save/grib2/template.5.40000.def similarity index 100% rename from eccodes/definitions/grib2/template.5.40000.def rename to eccodes/definitions.save/grib2/template.5.40000.def diff --git a/eccodes/definitions/grib2/template.5.40010.def b/eccodes/definitions.save/grib2/template.5.40010.def similarity index 100% rename from eccodes/definitions/grib2/template.5.40010.def rename to eccodes/definitions.save/grib2/template.5.40010.def diff --git a/eccodes/definitions/grib2/template.5.41.def b/eccodes/definitions.save/grib2/template.5.41.def similarity index 100% rename from eccodes/definitions/grib2/template.5.41.def rename to eccodes/definitions.save/grib2/template.5.41.def diff --git a/eccodes/definitions/grib2/template.5.42.def b/eccodes/definitions.save/grib2/template.5.42.def similarity index 100% rename from eccodes/definitions/grib2/template.5.42.def rename to eccodes/definitions.save/grib2/template.5.42.def diff --git a/eccodes/definitions/grib2/template.5.50.def b/eccodes/definitions.save/grib2/template.5.50.def similarity index 100% rename from eccodes/definitions/grib2/template.5.50.def rename to eccodes/definitions.save/grib2/template.5.50.def diff --git a/eccodes/definitions/grib2/template.5.50000.def b/eccodes/definitions.save/grib2/template.5.50000.def similarity index 100% rename from eccodes/definitions/grib2/template.5.50000.def rename to eccodes/definitions.save/grib2/template.5.50000.def diff --git a/eccodes/definitions/grib2/template.5.50001.def b/eccodes/definitions.save/grib2/template.5.50001.def similarity index 100% rename from eccodes/definitions/grib2/template.5.50001.def rename to eccodes/definitions.save/grib2/template.5.50001.def diff --git a/eccodes/definitions/grib2/template.5.50002.def b/eccodes/definitions.save/grib2/template.5.50002.def similarity index 100% rename from eccodes/definitions/grib2/template.5.50002.def rename to eccodes/definitions.save/grib2/template.5.50002.def diff --git a/eccodes/definitions/grib2/template.5.51.def b/eccodes/definitions.save/grib2/template.5.51.def similarity index 100% rename from eccodes/definitions/grib2/template.5.51.def rename to eccodes/definitions.save/grib2/template.5.51.def diff --git a/eccodes/definitions/grib2/template.5.53.def b/eccodes/definitions.save/grib2/template.5.53.def similarity index 100% rename from eccodes/definitions/grib2/template.5.53.def rename to eccodes/definitions.save/grib2/template.5.53.def diff --git a/eccodes/definitions/grib2/template.5.6.def b/eccodes/definitions.save/grib2/template.5.6.def similarity index 100% rename from eccodes/definitions/grib2/template.5.6.def rename to eccodes/definitions.save/grib2/template.5.6.def diff --git a/eccodes/definitions/grib2/template.5.61.def b/eccodes/definitions.save/grib2/template.5.61.def similarity index 100% rename from eccodes/definitions/grib2/template.5.61.def rename to eccodes/definitions.save/grib2/template.5.61.def diff --git a/eccodes/definitions/grib2/template.5.original_values.def b/eccodes/definitions.save/grib2/template.5.original_values.def similarity index 100% rename from eccodes/definitions/grib2/template.5.original_values.def rename to eccodes/definitions.save/grib2/template.5.original_values.def diff --git a/eccodes/definitions/grib2/template.5.packing.def b/eccodes/definitions.save/grib2/template.5.packing.def similarity index 100% rename from eccodes/definitions/grib2/template.5.packing.def rename to eccodes/definitions.save/grib2/template.5.packing.def diff --git a/eccodes/definitions/grib2/template.5.second_order.def b/eccodes/definitions.save/grib2/template.5.second_order.def similarity index 100% rename from eccodes/definitions/grib2/template.5.second_order.def rename to eccodes/definitions.save/grib2/template.5.second_order.def diff --git a/eccodes/definitions/grib2/template.7.0.def b/eccodes/definitions.save/grib2/template.7.0.def similarity index 100% rename from eccodes/definitions/grib2/template.7.0.def rename to eccodes/definitions.save/grib2/template.7.0.def diff --git a/eccodes/definitions/grib2/template.7.1.def b/eccodes/definitions.save/grib2/template.7.1.def similarity index 100% rename from eccodes/definitions/grib2/template.7.1.def rename to eccodes/definitions.save/grib2/template.7.1.def diff --git a/eccodes/definitions/grib2/template.7.2.def b/eccodes/definitions.save/grib2/template.7.2.def similarity index 100% rename from eccodes/definitions/grib2/template.7.2.def rename to eccodes/definitions.save/grib2/template.7.2.def diff --git a/eccodes/definitions/grib2/template.7.3.def b/eccodes/definitions.save/grib2/template.7.3.def similarity index 100% rename from eccodes/definitions/grib2/template.7.3.def rename to eccodes/definitions.save/grib2/template.7.3.def diff --git a/eccodes/definitions/grib2/template.7.4.def b/eccodes/definitions.save/grib2/template.7.4.def similarity index 100% rename from eccodes/definitions/grib2/template.7.4.def rename to eccodes/definitions.save/grib2/template.7.4.def diff --git a/eccodes/definitions/grib2/template.7.40.def b/eccodes/definitions.save/grib2/template.7.40.def similarity index 100% rename from eccodes/definitions/grib2/template.7.40.def rename to eccodes/definitions.save/grib2/template.7.40.def diff --git a/eccodes/definitions/grib2/template.7.40000.def b/eccodes/definitions.save/grib2/template.7.40000.def similarity index 100% rename from eccodes/definitions/grib2/template.7.40000.def rename to eccodes/definitions.save/grib2/template.7.40000.def diff --git a/eccodes/definitions/grib2/template.7.40010.def b/eccodes/definitions.save/grib2/template.7.40010.def similarity index 100% rename from eccodes/definitions/grib2/template.7.40010.def rename to eccodes/definitions.save/grib2/template.7.40010.def diff --git a/eccodes/definitions/grib2/template.7.41.def b/eccodes/definitions.save/grib2/template.7.41.def similarity index 100% rename from eccodes/definitions/grib2/template.7.41.def rename to eccodes/definitions.save/grib2/template.7.41.def diff --git a/eccodes/definitions/grib2/template.7.42.def b/eccodes/definitions.save/grib2/template.7.42.def similarity index 100% rename from eccodes/definitions/grib2/template.7.42.def rename to eccodes/definitions.save/grib2/template.7.42.def diff --git a/eccodes/definitions/grib2/template.7.50.def b/eccodes/definitions.save/grib2/template.7.50.def similarity index 100% rename from eccodes/definitions/grib2/template.7.50.def rename to eccodes/definitions.save/grib2/template.7.50.def diff --git a/eccodes/definitions/grib2/template.7.50000.def b/eccodes/definitions.save/grib2/template.7.50000.def similarity index 100% rename from eccodes/definitions/grib2/template.7.50000.def rename to eccodes/definitions.save/grib2/template.7.50000.def diff --git a/eccodes/definitions/grib2/template.7.50001.def b/eccodes/definitions.save/grib2/template.7.50001.def similarity index 100% rename from eccodes/definitions/grib2/template.7.50001.def rename to eccodes/definitions.save/grib2/template.7.50001.def diff --git a/eccodes/definitions/grib2/template.7.50002.def b/eccodes/definitions.save/grib2/template.7.50002.def similarity index 100% rename from eccodes/definitions/grib2/template.7.50002.def rename to eccodes/definitions.save/grib2/template.7.50002.def diff --git a/eccodes/definitions/grib2/template.7.51.def b/eccodes/definitions.save/grib2/template.7.51.def similarity index 100% rename from eccodes/definitions/grib2/template.7.51.def rename to eccodes/definitions.save/grib2/template.7.51.def diff --git a/eccodes/definitions/grib2/template.7.53.def b/eccodes/definitions.save/grib2/template.7.53.def similarity index 100% rename from eccodes/definitions/grib2/template.7.53.def rename to eccodes/definitions.save/grib2/template.7.53.def diff --git a/eccodes/definitions/grib2/template.7.6.def b/eccodes/definitions.save/grib2/template.7.6.def similarity index 100% rename from eccodes/definitions/grib2/template.7.6.def rename to eccodes/definitions.save/grib2/template.7.6.def diff --git a/eccodes/definitions/grib2/template.7.61.def b/eccodes/definitions.save/grib2/template.7.61.def similarity index 100% rename from eccodes/definitions/grib2/template.7.61.def rename to eccodes/definitions.save/grib2/template.7.61.def diff --git a/eccodes/definitions/grib2/template.7.second_order.def b/eccodes/definitions.save/grib2/template.7.second_order.def similarity index 100% rename from eccodes/definitions/grib2/template.7.second_order.def rename to eccodes/definitions.save/grib2/template.7.second_order.def diff --git a/eccodes/definitions/grib2/template.second_order.def b/eccodes/definitions.save/grib2/template.second_order.def similarity index 100% rename from eccodes/definitions/grib2/template.second_order.def rename to eccodes/definitions.save/grib2/template.second_order.def diff --git a/eccodes/definitions/grib2/tiggeLocalVersion.table b/eccodes/definitions.save/grib2/tiggeLocalVersion.table similarity index 100% rename from eccodes/definitions/grib2/tiggeLocalVersion.table rename to eccodes/definitions.save/grib2/tiggeLocalVersion.table diff --git a/eccodes/definitions/grib2/tigge_name.def b/eccodes/definitions.save/grib2/tigge_name.def similarity index 100% rename from eccodes/definitions/grib2/tigge_name.def rename to eccodes/definitions.save/grib2/tigge_name.def diff --git a/eccodes/definitions/grib2/tigge_parameter.def b/eccodes/definitions.save/grib2/tigge_parameter.def similarity index 100% rename from eccodes/definitions/grib2/tigge_parameter.def rename to eccodes/definitions.save/grib2/tigge_parameter.def diff --git a/eccodes/definitions/grib2/tigge_short_name.def b/eccodes/definitions.save/grib2/tigge_short_name.def similarity index 100% rename from eccodes/definitions/grib2/tigge_short_name.def rename to eccodes/definitions.save/grib2/tigge_short_name.def diff --git a/eccodes/definitions/grib2/tigge_suiteName.table b/eccodes/definitions.save/grib2/tigge_suiteName.table similarity index 100% rename from eccodes/definitions/grib2/tigge_suiteName.table rename to eccodes/definitions.save/grib2/tigge_suiteName.table diff --git a/eccodes/definitions/grib2/typeOfLevelConcept.def b/eccodes/definitions.save/grib2/typeOfLevelConcept.def similarity index 100% rename from eccodes/definitions/grib2/typeOfLevelConcept.def rename to eccodes/definitions.save/grib2/typeOfLevelConcept.def diff --git a/eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def b/eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def similarity index 100% rename from eccodes/definitions/grib2/typeOfUnstructuredGridConcept.def rename to eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def diff --git a/eccodes/definitions/grib2/units.def b/eccodes/definitions.save/grib2/units.def similarity index 100% rename from eccodes/definitions/grib2/units.def rename to eccodes/definitions.save/grib2/units.def diff --git a/eccodes/definitions/grib2/unstructuredGridConcept.def b/eccodes/definitions.save/grib2/unstructuredGridConcept.def similarity index 100% rename from eccodes/definitions/grib2/unstructuredGridConcept.def rename to eccodes/definitions.save/grib2/unstructuredGridConcept.def diff --git a/eccodes/definitions/grib2/unstructuredGridSubtype.def b/eccodes/definitions.save/grib2/unstructuredGridSubtype.def similarity index 100% rename from eccodes/definitions/grib2/unstructuredGridSubtype.def rename to eccodes/definitions.save/grib2/unstructuredGridSubtype.def diff --git a/eccodes/definitions/grib2/unstructuredGridType.def b/eccodes/definitions.save/grib2/unstructuredGridType.def similarity index 100% rename from eccodes/definitions/grib2/unstructuredGridType.def rename to eccodes/definitions.save/grib2/unstructuredGridType.def diff --git a/eccodes/definitions/grib2/unstructuredGridUUID.def b/eccodes/definitions.save/grib2/unstructuredGridUUID.def similarity index 100% rename from eccodes/definitions/grib2/unstructuredGridUUID.def rename to eccodes/definitions.save/grib2/unstructuredGridUUID.def diff --git a/eccodes/definitions/grib3/boot.def b/eccodes/definitions.save/grib3/boot.def similarity index 100% rename from eccodes/definitions/grib3/boot.def rename to eccodes/definitions.save/grib3/boot.def diff --git a/eccodes/definitions/grib3/centre.table b/eccodes/definitions.save/grib3/centre.table similarity index 100% rename from eccodes/definitions/grib3/centre.table rename to eccodes/definitions.save/grib3/centre.table diff --git a/eccodes/definitions/grib3/cfName.def b/eccodes/definitions.save/grib3/cfName.def similarity index 100% rename from eccodes/definitions/grib3/cfName.def rename to eccodes/definitions.save/grib3/cfName.def diff --git a/eccodes/definitions/grib3/cfVarName.def b/eccodes/definitions.save/grib3/cfVarName.def similarity index 100% rename from eccodes/definitions/grib3/cfVarName.def rename to eccodes/definitions.save/grib3/cfVarName.def diff --git a/eccodes/definitions/grib3/dimension.0.table b/eccodes/definitions.save/grib3/dimension.0.table similarity index 100% rename from eccodes/definitions/grib3/dimension.0.table rename to eccodes/definitions.save/grib3/dimension.0.table diff --git a/eccodes/definitions/grib3/dimensionTableNumber.table b/eccodes/definitions.save/grib3/dimensionTableNumber.table similarity index 100% rename from eccodes/definitions/grib3/dimensionTableNumber.table rename to eccodes/definitions.save/grib3/dimensionTableNumber.table diff --git a/eccodes/definitions/grib3/dimensionType.table b/eccodes/definitions.save/grib3/dimensionType.table similarity index 100% rename from eccodes/definitions/grib3/dimensionType.table rename to eccodes/definitions.save/grib3/dimensionType.table diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.82.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table similarity index 100% rename from eccodes/definitions/grib3/grib2LocalSectionNumber.82.table rename to eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.85.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table similarity index 100% rename from eccodes/definitions/grib3/grib2LocalSectionNumber.85.table rename to eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table diff --git a/eccodes/definitions/grib3/grib2LocalSectionNumber.98.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table similarity index 100% rename from eccodes/definitions/grib3/grib2LocalSectionNumber.98.table rename to eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table diff --git a/eccodes/definitions/grib3/local.82.0.def b/eccodes/definitions.save/grib3/local.82.0.def similarity index 100% rename from eccodes/definitions/grib3/local.82.0.def rename to eccodes/definitions.save/grib3/local.82.0.def diff --git a/eccodes/definitions/grib3/local.82.82.def b/eccodes/definitions.save/grib3/local.82.82.def similarity index 100% rename from eccodes/definitions/grib3/local.82.82.def rename to eccodes/definitions.save/grib3/local.82.82.def diff --git a/eccodes/definitions/grib3/local.82.83.def b/eccodes/definitions.save/grib3/local.82.83.def similarity index 100% rename from eccodes/definitions/grib3/local.82.83.def rename to eccodes/definitions.save/grib3/local.82.83.def diff --git a/eccodes/definitions/grib3/local.82.def b/eccodes/definitions.save/grib3/local.82.def similarity index 100% rename from eccodes/definitions/grib3/local.82.def rename to eccodes/definitions.save/grib3/local.82.def diff --git a/eccodes/definitions/grib3/local.85.0.def b/eccodes/definitions.save/grib3/local.85.0.def similarity index 100% rename from eccodes/definitions/grib3/local.85.0.def rename to eccodes/definitions.save/grib3/local.85.0.def diff --git a/eccodes/definitions/grib3/local.85.1.def b/eccodes/definitions.save/grib3/local.85.1.def similarity index 100% rename from eccodes/definitions/grib3/local.85.1.def rename to eccodes/definitions.save/grib3/local.85.1.def diff --git a/eccodes/definitions/grib3/local.85.2.def b/eccodes/definitions.save/grib3/local.85.2.def similarity index 100% rename from eccodes/definitions/grib3/local.85.2.def rename to eccodes/definitions.save/grib3/local.85.2.def diff --git a/eccodes/definitions/grib3/local.85.def b/eccodes/definitions.save/grib3/local.85.def similarity index 100% rename from eccodes/definitions/grib3/local.85.def rename to eccodes/definitions.save/grib3/local.85.def diff --git a/eccodes/definitions/grib3/local.98.0.def b/eccodes/definitions.save/grib3/local.98.0.def similarity index 100% rename from eccodes/definitions/grib3/local.98.0.def rename to eccodes/definitions.save/grib3/local.98.0.def diff --git a/eccodes/definitions/grib3/local.98.1.def b/eccodes/definitions.save/grib3/local.98.1.def similarity index 100% rename from eccodes/definitions/grib3/local.98.1.def rename to eccodes/definitions.save/grib3/local.98.1.def diff --git a/eccodes/definitions/grib3/local.98.11.def b/eccodes/definitions.save/grib3/local.98.11.def similarity index 100% rename from eccodes/definitions/grib3/local.98.11.def rename to eccodes/definitions.save/grib3/local.98.11.def diff --git a/eccodes/definitions/grib3/local.98.14.def b/eccodes/definitions.save/grib3/local.98.14.def similarity index 100% rename from eccodes/definitions/grib3/local.98.14.def rename to eccodes/definitions.save/grib3/local.98.14.def diff --git a/eccodes/definitions/grib3/local.98.15.def b/eccodes/definitions.save/grib3/local.98.15.def similarity index 100% rename from eccodes/definitions/grib3/local.98.15.def rename to eccodes/definitions.save/grib3/local.98.15.def diff --git a/eccodes/definitions/grib3/local.98.16.def b/eccodes/definitions.save/grib3/local.98.16.def similarity index 100% rename from eccodes/definitions/grib3/local.98.16.def rename to eccodes/definitions.save/grib3/local.98.16.def diff --git a/eccodes/definitions/grib3/local.98.18.def b/eccodes/definitions.save/grib3/local.98.18.def similarity index 100% rename from eccodes/definitions/grib3/local.98.18.def rename to eccodes/definitions.save/grib3/local.98.18.def diff --git a/eccodes/definitions/grib3/local.98.192.def b/eccodes/definitions.save/grib3/local.98.192.def similarity index 100% rename from eccodes/definitions/grib3/local.98.192.def rename to eccodes/definitions.save/grib3/local.98.192.def diff --git a/eccodes/definitions/grib3/local.98.20.def b/eccodes/definitions.save/grib3/local.98.20.def similarity index 100% rename from eccodes/definitions/grib3/local.98.20.def rename to eccodes/definitions.save/grib3/local.98.20.def diff --git a/eccodes/definitions/grib3/local.98.21.def b/eccodes/definitions.save/grib3/local.98.21.def similarity index 100% rename from eccodes/definitions/grib3/local.98.21.def rename to eccodes/definitions.save/grib3/local.98.21.def diff --git a/eccodes/definitions/grib3/local.98.24.def b/eccodes/definitions.save/grib3/local.98.24.def similarity index 100% rename from eccodes/definitions/grib3/local.98.24.def rename to eccodes/definitions.save/grib3/local.98.24.def diff --git a/eccodes/definitions/grib3/local.98.25.def b/eccodes/definitions.save/grib3/local.98.25.def similarity index 100% rename from eccodes/definitions/grib3/local.98.25.def rename to eccodes/definitions.save/grib3/local.98.25.def diff --git a/eccodes/definitions/grib3/local.98.26.def b/eccodes/definitions.save/grib3/local.98.26.def similarity index 100% rename from eccodes/definitions/grib3/local.98.26.def rename to eccodes/definitions.save/grib3/local.98.26.def diff --git a/eccodes/definitions/grib3/local.98.28.def b/eccodes/definitions.save/grib3/local.98.28.def similarity index 100% rename from eccodes/definitions/grib3/local.98.28.def rename to eccodes/definitions.save/grib3/local.98.28.def diff --git a/eccodes/definitions/grib3/local.98.30.def b/eccodes/definitions.save/grib3/local.98.30.def similarity index 100% rename from eccodes/definitions/grib3/local.98.30.def rename to eccodes/definitions.save/grib3/local.98.30.def diff --git a/eccodes/definitions/grib3/local.98.300.def b/eccodes/definitions.save/grib3/local.98.300.def similarity index 100% rename from eccodes/definitions/grib3/local.98.300.def rename to eccodes/definitions.save/grib3/local.98.300.def diff --git a/eccodes/definitions/grib3/local.98.36.def b/eccodes/definitions.save/grib3/local.98.36.def similarity index 100% rename from eccodes/definitions/grib3/local.98.36.def rename to eccodes/definitions.save/grib3/local.98.36.def diff --git a/eccodes/definitions/grib3/local.98.38.def b/eccodes/definitions.save/grib3/local.98.38.def similarity index 100% rename from eccodes/definitions/grib3/local.98.38.def rename to eccodes/definitions.save/grib3/local.98.38.def diff --git a/eccodes/definitions/grib3/local.98.39.def b/eccodes/definitions.save/grib3/local.98.39.def similarity index 100% rename from eccodes/definitions/grib3/local.98.39.def rename to eccodes/definitions.save/grib3/local.98.39.def diff --git a/eccodes/definitions/grib3/local.98.500.def b/eccodes/definitions.save/grib3/local.98.500.def similarity index 100% rename from eccodes/definitions/grib3/local.98.500.def rename to eccodes/definitions.save/grib3/local.98.500.def diff --git a/eccodes/definitions/grib3/local.98.7.def b/eccodes/definitions.save/grib3/local.98.7.def similarity index 100% rename from eccodes/definitions/grib3/local.98.7.def rename to eccodes/definitions.save/grib3/local.98.7.def diff --git a/eccodes/definitions/grib3/local.98.9.def b/eccodes/definitions.save/grib3/local.98.9.def similarity index 100% rename from eccodes/definitions/grib3/local.98.9.def rename to eccodes/definitions.save/grib3/local.98.9.def diff --git a/eccodes/definitions/grib3/local.98.def b/eccodes/definitions.save/grib3/local.98.def similarity index 100% rename from eccodes/definitions/grib3/local.98.def rename to eccodes/definitions.save/grib3/local.98.def diff --git a/eccodes/definitions/grib3/local.tigge.1.def b/eccodes/definitions.save/grib3/local.tigge.1.def similarity index 100% rename from eccodes/definitions/grib3/local.tigge.1.def rename to eccodes/definitions.save/grib3/local.tigge.1.def diff --git a/eccodes/definitions/grib3/local/1098/2.1.table b/eccodes/definitions.save/grib3/local/1098/2.1.table similarity index 100% rename from eccodes/definitions/grib3/local/1098/2.1.table rename to eccodes/definitions.save/grib3/local/1098/2.1.table diff --git a/eccodes/definitions/grib3/local/1098/centres.table b/eccodes/definitions.save/grib3/local/1098/centres.table similarity index 100% rename from eccodes/definitions/grib3/local/1098/centres.table rename to eccodes/definitions.save/grib3/local/1098/centres.table diff --git a/eccodes/definitions/grib3/local/1098/models.table b/eccodes/definitions.save/grib3/local/1098/models.table similarity index 100% rename from eccodes/definitions/grib3/local/1098/models.table rename to eccodes/definitions.save/grib3/local/1098/models.table diff --git a/eccodes/definitions/grib3/local/1098/template.2.0.def b/eccodes/definitions.save/grib3/local/1098/template.2.0.def similarity index 100% rename from eccodes/definitions/grib3/local/1098/template.2.0.def rename to eccodes/definitions.save/grib3/local/1098/template.2.0.def diff --git a/eccodes/definitions/grib3/local/1098/template.2.0.def~ b/eccodes/definitions.save/grib3/local/1098/template.2.0.def~ similarity index 100% rename from eccodes/definitions/grib3/local/1098/template.2.0.def~ rename to eccodes/definitions.save/grib3/local/1098/template.2.0.def~ diff --git a/eccodes/definitions/grib3/local/2.0.table b/eccodes/definitions.save/grib3/local/2.0.table similarity index 100% rename from eccodes/definitions/grib3/local/2.0.table rename to eccodes/definitions.save/grib3/local/2.0.table diff --git a/eccodes/definitions/grib3/local/edzw/2.0.3.table b/eccodes/definitions.save/grib3/local/edzw/2.0.3.table similarity index 100% rename from eccodes/definitions/grib3/local/edzw/2.0.3.table rename to eccodes/definitions.save/grib3/local/edzw/2.0.3.table diff --git a/eccodes/definitions/grib3/local/edzw/3.table b/eccodes/definitions.save/grib3/local/edzw/3.table similarity index 100% rename from eccodes/definitions/grib3/local/edzw/3.table rename to eccodes/definitions.save/grib3/local/edzw/3.table diff --git a/eccodes/definitions/grib3/local/edzw/5.table b/eccodes/definitions.save/grib3/local/edzw/5.table similarity index 100% rename from eccodes/definitions/grib3/local/edzw/5.table rename to eccodes/definitions.save/grib3/local/edzw/5.table diff --git a/eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table similarity index 100% rename from eccodes/definitions/grib3/local/edzw/generatingProcessIdentifier.table rename to eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/cfName.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/cfVarName.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/name.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/name.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/name.def diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/paramId.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/shortName.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def diff --git a/eccodes/definitions/grib3/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/units.def similarity index 100% rename from eccodes/definitions/grib3/localConcepts/ecmf/units.def rename to eccodes/definitions.save/grib3/localConcepts/ecmf/units.def diff --git a/eccodes/definitions/grib3/ls.def b/eccodes/definitions.save/grib3/ls.def similarity index 100% rename from eccodes/definitions/grib3/ls.def rename to eccodes/definitions.save/grib3/ls.def diff --git a/eccodes/definitions/grib3/ls_labeling.82.def b/eccodes/definitions.save/grib3/ls_labeling.82.def similarity index 100% rename from eccodes/definitions/grib3/ls_labeling.82.def rename to eccodes/definitions.save/grib3/ls_labeling.82.def diff --git a/eccodes/definitions/grib3/mars_labeling.82.def b/eccodes/definitions.save/grib3/mars_labeling.82.def similarity index 100% rename from eccodes/definitions/grib3/mars_labeling.82.def rename to eccodes/definitions.save/grib3/mars_labeling.82.def diff --git a/eccodes/definitions/grib3/mars_labeling.def b/eccodes/definitions.save/grib3/mars_labeling.def similarity index 100% rename from eccodes/definitions/grib3/mars_labeling.def rename to eccodes/definitions.save/grib3/mars_labeling.def diff --git a/eccodes/definitions/grib3/meta.def b/eccodes/definitions.save/grib3/meta.def similarity index 100% rename from eccodes/definitions/grib3/meta.def rename to eccodes/definitions.save/grib3/meta.def diff --git a/eccodes/definitions/grib3/modelName.def b/eccodes/definitions.save/grib3/modelName.def similarity index 100% rename from eccodes/definitions/grib3/modelName.def rename to eccodes/definitions.save/grib3/modelName.def diff --git a/eccodes/definitions/grib3/name.def b/eccodes/definitions.save/grib3/name.def similarity index 100% rename from eccodes/definitions/grib3/name.def rename to eccodes/definitions.save/grib3/name.def diff --git a/eccodes/definitions/grib3/paramId.def b/eccodes/definitions.save/grib3/paramId.def similarity index 100% rename from eccodes/definitions/grib3/paramId.def rename to eccodes/definitions.save/grib3/paramId.def diff --git a/eccodes/definitions/grib3/parameters.def b/eccodes/definitions.save/grib3/parameters.def similarity index 100% rename from eccodes/definitions/grib3/parameters.def rename to eccodes/definitions.save/grib3/parameters.def diff --git a/eccodes/definitions/grib3/products_0.def b/eccodes/definitions.save/grib3/products_0.def similarity index 100% rename from eccodes/definitions/grib3/products_0.def rename to eccodes/definitions.save/grib3/products_0.def diff --git a/eccodes/definitions/grib3/products_1.def b/eccodes/definitions.save/grib3/products_1.def similarity index 100% rename from eccodes/definitions/grib3/products_1.def rename to eccodes/definitions.save/grib3/products_1.def diff --git a/eccodes/definitions/grib3/products_2.def b/eccodes/definitions.save/grib3/products_2.def similarity index 100% rename from eccodes/definitions/grib3/products_2.def rename to eccodes/definitions.save/grib3/products_2.def diff --git a/eccodes/definitions/grib3/products_3.def b/eccodes/definitions.save/grib3/products_3.def similarity index 100% rename from eccodes/definitions/grib3/products_3.def rename to eccodes/definitions.save/grib3/products_3.def diff --git a/eccodes/definitions/grib3/products_4.def b/eccodes/definitions.save/grib3/products_4.def similarity index 100% rename from eccodes/definitions/grib3/products_4.def rename to eccodes/definitions.save/grib3/products_4.def diff --git a/eccodes/definitions/grib3/products_5.def b/eccodes/definitions.save/grib3/products_5.def similarity index 100% rename from eccodes/definitions/grib3/products_5.def rename to eccodes/definitions.save/grib3/products_5.def diff --git a/eccodes/definitions/grib3/products_6.def b/eccodes/definitions.save/grib3/products_6.def similarity index 100% rename from eccodes/definitions/grib3/products_6.def rename to eccodes/definitions.save/grib3/products_6.def diff --git a/eccodes/definitions/grib3/products_7.def b/eccodes/definitions.save/grib3/products_7.def similarity index 100% rename from eccodes/definitions/grib3/products_7.def rename to eccodes/definitions.save/grib3/products_7.def diff --git a/eccodes/definitions/grib3/products_8.def b/eccodes/definitions.save/grib3/products_8.def similarity index 100% rename from eccodes/definitions/grib3/products_8.def rename to eccodes/definitions.save/grib3/products_8.def diff --git a/eccodes/definitions/grib3/products_9.def b/eccodes/definitions.save/grib3/products_9.def similarity index 100% rename from eccodes/definitions/grib3/products_9.def rename to eccodes/definitions.save/grib3/products_9.def diff --git a/eccodes/definitions/grib3/products_s2s.def b/eccodes/definitions.save/grib3/products_s2s.def similarity index 100% rename from eccodes/definitions/grib3/products_s2s.def rename to eccodes/definitions.save/grib3/products_s2s.def diff --git a/eccodes/definitions/grib3/products_tigge.def b/eccodes/definitions.save/grib3/products_tigge.def similarity index 100% rename from eccodes/definitions/grib3/products_tigge.def rename to eccodes/definitions.save/grib3/products_tigge.def diff --git a/eccodes/definitions/grib3/products_uerra.def b/eccodes/definitions.save/grib3/products_uerra.def similarity index 100% rename from eccodes/definitions/grib3/products_uerra.def rename to eccodes/definitions.save/grib3/products_uerra.def diff --git a/eccodes/definitions/grib3/rules.def b/eccodes/definitions.save/grib3/rules.def similarity index 100% rename from eccodes/definitions/grib3/rules.def rename to eccodes/definitions.save/grib3/rules.def diff --git a/eccodes/definitions/grib3/section.00.def b/eccodes/definitions.save/grib3/section.00.def similarity index 100% rename from eccodes/definitions/grib3/section.00.def rename to eccodes/definitions.save/grib3/section.00.def diff --git a/eccodes/definitions/grib3/section.01.def b/eccodes/definitions.save/grib3/section.01.def similarity index 100% rename from eccodes/definitions/grib3/section.01.def rename to eccodes/definitions.save/grib3/section.01.def diff --git a/eccodes/definitions/grib3/section.02.def b/eccodes/definitions.save/grib3/section.02.def similarity index 100% rename from eccodes/definitions/grib3/section.02.def rename to eccodes/definitions.save/grib3/section.02.def diff --git a/eccodes/definitions/grib3/section.03.def b/eccodes/definitions.save/grib3/section.03.def similarity index 100% rename from eccodes/definitions/grib3/section.03.def rename to eccodes/definitions.save/grib3/section.03.def diff --git a/eccodes/definitions/grib3/section.04.def b/eccodes/definitions.save/grib3/section.04.def similarity index 100% rename from eccodes/definitions/grib3/section.04.def rename to eccodes/definitions.save/grib3/section.04.def diff --git a/eccodes/definitions/grib3/section.05.def b/eccodes/definitions.save/grib3/section.05.def similarity index 100% rename from eccodes/definitions/grib3/section.05.def rename to eccodes/definitions.save/grib3/section.05.def diff --git a/eccodes/definitions/grib3/section.06.def b/eccodes/definitions.save/grib3/section.06.def similarity index 100% rename from eccodes/definitions/grib3/section.06.def rename to eccodes/definitions.save/grib3/section.06.def diff --git a/eccodes/definitions/grib3/section.07.def b/eccodes/definitions.save/grib3/section.07.def similarity index 100% rename from eccodes/definitions/grib3/section.07.def rename to eccodes/definitions.save/grib3/section.07.def diff --git a/eccodes/definitions/grib3/section.08.def b/eccodes/definitions.save/grib3/section.08.def similarity index 100% rename from eccodes/definitions/grib3/section.08.def rename to eccodes/definitions.save/grib3/section.08.def diff --git a/eccodes/definitions/grib3/section.09.def b/eccodes/definitions.save/grib3/section.09.def similarity index 100% rename from eccodes/definitions/grib3/section.09.def rename to eccodes/definitions.save/grib3/section.09.def diff --git a/eccodes/definitions/grib3/section.10.def b/eccodes/definitions.save/grib3/section.10.def similarity index 100% rename from eccodes/definitions/grib3/section.10.def rename to eccodes/definitions.save/grib3/section.10.def diff --git a/eccodes/definitions/grib3/section.11.def b/eccodes/definitions.save/grib3/section.11.def similarity index 100% rename from eccodes/definitions/grib3/section.11.def rename to eccodes/definitions.save/grib3/section.11.def diff --git a/eccodes/definitions/grib3/sections.def b/eccodes/definitions.save/grib3/sections.def similarity index 100% rename from eccodes/definitions/grib3/sections.def rename to eccodes/definitions.save/grib3/sections.def diff --git a/eccodes/definitions/grib3/shortName.def b/eccodes/definitions.save/grib3/shortName.def similarity index 100% rename from eccodes/definitions/grib3/shortName.def rename to eccodes/definitions.save/grib3/shortName.def diff --git a/eccodes/definitions/grib3/tables/0.0.table b/eccodes/definitions.save/grib3/tables/0.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0.0.table rename to eccodes/definitions.save/grib3/tables/0.0.table diff --git a/eccodes/definitions/grib3/tables/0/0.0.table b/eccodes/definitions.save/grib3/tables/0/0.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/0.0.table rename to eccodes/definitions.save/grib3/tables/0/0.0.table diff --git a/eccodes/definitions/grib3/tables/0/1.0.table b/eccodes/definitions.save/grib3/tables/0/1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/1.0.table rename to eccodes/definitions.save/grib3/tables/0/1.0.table diff --git a/eccodes/definitions/grib3/tables/0/1.1.table b/eccodes/definitions.save/grib3/tables/0/1.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/1.1.table rename to eccodes/definitions.save/grib3/tables/0/1.1.table diff --git a/eccodes/definitions/grib3/tables/0/1.2.table b/eccodes/definitions.save/grib3/tables/0/1.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/1.2.table rename to eccodes/definitions.save/grib3/tables/0/1.2.table diff --git a/eccodes/definitions/grib3/tables/0/1.3.table b/eccodes/definitions.save/grib3/tables/0/1.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/1.3.table rename to eccodes/definitions.save/grib3/tables/0/1.3.table diff --git a/eccodes/definitions/grib3/tables/0/1.4.table b/eccodes/definitions.save/grib3/tables/0/1.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/1.4.table rename to eccodes/definitions.save/grib3/tables/0/1.4.table diff --git a/eccodes/definitions/grib3/tables/0/3.0.table b/eccodes/definitions.save/grib3/tables/0/3.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.0.table rename to eccodes/definitions.save/grib3/tables/0/3.0.table diff --git a/eccodes/definitions/grib3/tables/0/3.1.table b/eccodes/definitions.save/grib3/tables/0/3.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.1.table rename to eccodes/definitions.save/grib3/tables/0/3.1.table diff --git a/eccodes/definitions/grib3/tables/0/3.10.table b/eccodes/definitions.save/grib3/tables/0/3.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.10.table rename to eccodes/definitions.save/grib3/tables/0/3.10.table diff --git a/eccodes/definitions/grib3/tables/0/3.11.table b/eccodes/definitions.save/grib3/tables/0/3.11.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.11.table rename to eccodes/definitions.save/grib3/tables/0/3.11.table diff --git a/eccodes/definitions/grib3/tables/0/3.15.table b/eccodes/definitions.save/grib3/tables/0/3.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.15.table rename to eccodes/definitions.save/grib3/tables/0/3.15.table diff --git a/eccodes/definitions/grib3/tables/0/3.2.table b/eccodes/definitions.save/grib3/tables/0/3.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.2.table rename to eccodes/definitions.save/grib3/tables/0/3.2.table diff --git a/eccodes/definitions/grib3/tables/0/3.20.table b/eccodes/definitions.save/grib3/tables/0/3.20.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.20.table rename to eccodes/definitions.save/grib3/tables/0/3.20.table diff --git a/eccodes/definitions/grib3/tables/0/3.21.table b/eccodes/definitions.save/grib3/tables/0/3.21.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.21.table rename to eccodes/definitions.save/grib3/tables/0/3.21.table diff --git a/eccodes/definitions/grib3/tables/0/3.3.table b/eccodes/definitions.save/grib3/tables/0/3.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.3.table rename to eccodes/definitions.save/grib3/tables/0/3.3.table diff --git a/eccodes/definitions/grib3/tables/0/3.4.table b/eccodes/definitions.save/grib3/tables/0/3.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.4.table rename to eccodes/definitions.save/grib3/tables/0/3.4.table diff --git a/eccodes/definitions/grib3/tables/0/3.5.table b/eccodes/definitions.save/grib3/tables/0/3.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.5.table rename to eccodes/definitions.save/grib3/tables/0/3.5.table diff --git a/eccodes/definitions/grib3/tables/0/3.6.table b/eccodes/definitions.save/grib3/tables/0/3.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.6.table rename to eccodes/definitions.save/grib3/tables/0/3.6.table diff --git a/eccodes/definitions/grib3/tables/0/3.7.table b/eccodes/definitions.save/grib3/tables/0/3.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.7.table rename to eccodes/definitions.save/grib3/tables/0/3.7.table diff --git a/eccodes/definitions/grib3/tables/0/3.8.table b/eccodes/definitions.save/grib3/tables/0/3.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.8.table rename to eccodes/definitions.save/grib3/tables/0/3.8.table diff --git a/eccodes/definitions/grib3/tables/0/3.9.table b/eccodes/definitions.save/grib3/tables/0/3.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/3.9.table rename to eccodes/definitions.save/grib3/tables/0/3.9.table diff --git a/eccodes/definitions/grib3/tables/0/4.0.table b/eccodes/definitions.save/grib3/tables/0/4.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.0.table rename to eccodes/definitions.save/grib3/tables/0/4.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.0.table b/eccodes/definitions.save/grib3/tables/0/4.1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.0.table rename to eccodes/definitions.save/grib3/tables/0/4.1.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.1.table b/eccodes/definitions.save/grib3/tables/0/4.1.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.1.table rename to eccodes/definitions.save/grib3/tables/0/4.1.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.10.table b/eccodes/definitions.save/grib3/tables/0/4.1.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.10.table rename to eccodes/definitions.save/grib3/tables/0/4.1.10.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.2.table b/eccodes/definitions.save/grib3/tables/0/4.1.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.2.table rename to eccodes/definitions.save/grib3/tables/0/4.1.2.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.3.table b/eccodes/definitions.save/grib3/tables/0/4.1.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.3.table rename to eccodes/definitions.save/grib3/tables/0/4.1.3.table diff --git a/eccodes/definitions/grib3/tables/0/4.1.table b/eccodes/definitions.save/grib3/tables/0/4.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.1.table rename to eccodes/definitions.save/grib3/tables/0/4.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.10.table b/eccodes/definitions.save/grib3/tables/0/4.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.10.table rename to eccodes/definitions.save/grib3/tables/0/4.10.table diff --git a/eccodes/definitions/grib3/tables/0/4.11.table b/eccodes/definitions.save/grib3/tables/0/4.11.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.11.table rename to eccodes/definitions.save/grib3/tables/0/4.11.table diff --git a/eccodes/definitions/grib3/tables/0/4.12.table b/eccodes/definitions.save/grib3/tables/0/4.12.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.12.table rename to eccodes/definitions.save/grib3/tables/0/4.12.table diff --git a/eccodes/definitions/grib3/tables/0/4.13.table b/eccodes/definitions.save/grib3/tables/0/4.13.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.13.table rename to eccodes/definitions.save/grib3/tables/0/4.13.table diff --git a/eccodes/definitions/grib3/tables/0/4.14.table b/eccodes/definitions.save/grib3/tables/0/4.14.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.14.table rename to eccodes/definitions.save/grib3/tables/0/4.14.table diff --git a/eccodes/definitions/grib3/tables/0/4.15.table b/eccodes/definitions.save/grib3/tables/0/4.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.15.table rename to eccodes/definitions.save/grib3/tables/0/4.15.table diff --git a/eccodes/definitions/grib3/tables/0/4.151.table b/eccodes/definitions.save/grib3/tables/0/4.151.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.151.table rename to eccodes/definitions.save/grib3/tables/0/4.151.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.0.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.1.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.13.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.13.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.13.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.13.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.14.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.14.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.14.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.14.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.15.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.15.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.15.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.18.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.18.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.18.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.19.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.19.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.19.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.190.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.190.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.190.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.191.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.191.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.191.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.2.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.2.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.20.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.20.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.20.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.3.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.3.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.4.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.4.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.4.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.5.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.5.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.5.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.6.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.6.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.6.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.0.7.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.0.7.table rename to eccodes/definitions.save/grib3/tables/0/4.2.0.7.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.1.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.1.0.table rename to eccodes/definitions.save/grib3/tables/0/4.2.1.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.1.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.1.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.1.1.table rename to eccodes/definitions.save/grib3/tables/0/4.2.1.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.10.0.table rename to eccodes/definitions.save/grib3/tables/0/4.2.10.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.10.1.table rename to eccodes/definitions.save/grib3/tables/0/4.2.10.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.10.2.table rename to eccodes/definitions.save/grib3/tables/0/4.2.10.2.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.10.3.table rename to eccodes/definitions.save/grib3/tables/0/4.2.10.3.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.10.4.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.10.4.table rename to eccodes/definitions.save/grib3/tables/0/4.2.10.4.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.2.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.2.0.table rename to eccodes/definitions.save/grib3/tables/0/4.2.2.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.2.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.2.3.table rename to eccodes/definitions.save/grib3/tables/0/4.2.2.3.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.3.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.3.0.table rename to eccodes/definitions.save/grib3/tables/0/4.2.3.0.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.3.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.3.1.table rename to eccodes/definitions.save/grib3/tables/0/4.2.3.1.table diff --git a/eccodes/definitions/grib3/tables/0/4.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.2.table rename to eccodes/definitions.save/grib3/tables/0/4.2.table diff --git a/eccodes/definitions/grib3/tables/0/4.201.table b/eccodes/definitions.save/grib3/tables/0/4.201.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.201.table rename to eccodes/definitions.save/grib3/tables/0/4.201.table diff --git a/eccodes/definitions/grib3/tables/0/4.202.table b/eccodes/definitions.save/grib3/tables/0/4.202.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.202.table rename to eccodes/definitions.save/grib3/tables/0/4.202.table diff --git a/eccodes/definitions/grib3/tables/0/4.203.table b/eccodes/definitions.save/grib3/tables/0/4.203.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.203.table rename to eccodes/definitions.save/grib3/tables/0/4.203.table diff --git a/eccodes/definitions/grib3/tables/0/4.204.table b/eccodes/definitions.save/grib3/tables/0/4.204.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.204.table rename to eccodes/definitions.save/grib3/tables/0/4.204.table diff --git a/eccodes/definitions/grib3/tables/0/4.205.table b/eccodes/definitions.save/grib3/tables/0/4.205.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.205.table rename to eccodes/definitions.save/grib3/tables/0/4.205.table diff --git a/eccodes/definitions/grib3/tables/0/4.206.table b/eccodes/definitions.save/grib3/tables/0/4.206.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.206.table rename to eccodes/definitions.save/grib3/tables/0/4.206.table diff --git a/eccodes/definitions/grib3/tables/0/4.207.table b/eccodes/definitions.save/grib3/tables/0/4.207.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.207.table rename to eccodes/definitions.save/grib3/tables/0/4.207.table diff --git a/eccodes/definitions/grib3/tables/0/4.208.table b/eccodes/definitions.save/grib3/tables/0/4.208.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.208.table rename to eccodes/definitions.save/grib3/tables/0/4.208.table diff --git a/eccodes/definitions/grib3/tables/0/4.209.table b/eccodes/definitions.save/grib3/tables/0/4.209.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.209.table rename to eccodes/definitions.save/grib3/tables/0/4.209.table diff --git a/eccodes/definitions/grib3/tables/0/4.210.table b/eccodes/definitions.save/grib3/tables/0/4.210.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.210.table rename to eccodes/definitions.save/grib3/tables/0/4.210.table diff --git a/eccodes/definitions/grib3/tables/0/4.211.table b/eccodes/definitions.save/grib3/tables/0/4.211.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.211.table rename to eccodes/definitions.save/grib3/tables/0/4.211.table diff --git a/eccodes/definitions/grib3/tables/0/4.212.table b/eccodes/definitions.save/grib3/tables/0/4.212.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.212.table rename to eccodes/definitions.save/grib3/tables/0/4.212.table diff --git a/eccodes/definitions/grib3/tables/0/4.213.table b/eccodes/definitions.save/grib3/tables/0/4.213.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.213.table rename to eccodes/definitions.save/grib3/tables/0/4.213.table diff --git a/eccodes/definitions/grib3/tables/0/4.215.table b/eccodes/definitions.save/grib3/tables/0/4.215.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.215.table rename to eccodes/definitions.save/grib3/tables/0/4.215.table diff --git a/eccodes/definitions/grib3/tables/0/4.216.table b/eccodes/definitions.save/grib3/tables/0/4.216.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.216.table rename to eccodes/definitions.save/grib3/tables/0/4.216.table diff --git a/eccodes/definitions/grib3/tables/0/4.217.table b/eccodes/definitions.save/grib3/tables/0/4.217.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.217.table rename to eccodes/definitions.save/grib3/tables/0/4.217.table diff --git a/eccodes/definitions/grib3/tables/0/4.220.table b/eccodes/definitions.save/grib3/tables/0/4.220.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.220.table rename to eccodes/definitions.save/grib3/tables/0/4.220.table diff --git a/eccodes/definitions/grib3/tables/0/4.221.table b/eccodes/definitions.save/grib3/tables/0/4.221.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.221.table rename to eccodes/definitions.save/grib3/tables/0/4.221.table diff --git a/eccodes/definitions/grib3/tables/0/4.230.table b/eccodes/definitions.save/grib3/tables/0/4.230.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.230.table rename to eccodes/definitions.save/grib3/tables/0/4.230.table diff --git a/eccodes/definitions/grib3/tables/0/4.3.table b/eccodes/definitions.save/grib3/tables/0/4.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.3.table rename to eccodes/definitions.save/grib3/tables/0/4.3.table diff --git a/eccodes/definitions/grib3/tables/0/4.4.table b/eccodes/definitions.save/grib3/tables/0/4.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.4.table rename to eccodes/definitions.save/grib3/tables/0/4.4.table diff --git a/eccodes/definitions/grib3/tables/0/4.5.table b/eccodes/definitions.save/grib3/tables/0/4.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.5.table rename to eccodes/definitions.save/grib3/tables/0/4.5.table diff --git a/eccodes/definitions/grib3/tables/0/4.6.table b/eccodes/definitions.save/grib3/tables/0/4.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.6.table rename to eccodes/definitions.save/grib3/tables/0/4.6.table diff --git a/eccodes/definitions/grib3/tables/0/4.7.table b/eccodes/definitions.save/grib3/tables/0/4.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.7.table rename to eccodes/definitions.save/grib3/tables/0/4.7.table diff --git a/eccodes/definitions/grib3/tables/0/4.8.table b/eccodes/definitions.save/grib3/tables/0/4.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.8.table rename to eccodes/definitions.save/grib3/tables/0/4.8.table diff --git a/eccodes/definitions/grib3/tables/0/4.9.table b/eccodes/definitions.save/grib3/tables/0/4.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.9.table rename to eccodes/definitions.save/grib3/tables/0/4.9.table diff --git a/eccodes/definitions/grib3/tables/0/4.91.table b/eccodes/definitions.save/grib3/tables/0/4.91.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/4.91.table rename to eccodes/definitions.save/grib3/tables/0/4.91.table diff --git a/eccodes/definitions/grib3/tables/0/5.0.table b/eccodes/definitions.save/grib3/tables/0/5.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.0.table rename to eccodes/definitions.save/grib3/tables/0/5.0.table diff --git a/eccodes/definitions/grib3/tables/0/5.1.table b/eccodes/definitions.save/grib3/tables/0/5.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.1.table rename to eccodes/definitions.save/grib3/tables/0/5.1.table diff --git a/eccodes/definitions/grib3/tables/0/5.2.table b/eccodes/definitions.save/grib3/tables/0/5.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.2.table rename to eccodes/definitions.save/grib3/tables/0/5.2.table diff --git a/eccodes/definitions/grib3/tables/0/5.3.table b/eccodes/definitions.save/grib3/tables/0/5.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.3.table rename to eccodes/definitions.save/grib3/tables/0/5.3.table diff --git a/eccodes/definitions/grib3/tables/0/5.4.table b/eccodes/definitions.save/grib3/tables/0/5.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.4.table rename to eccodes/definitions.save/grib3/tables/0/5.4.table diff --git a/eccodes/definitions/grib3/tables/0/5.40.table b/eccodes/definitions.save/grib3/tables/0/5.40.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.40.table rename to eccodes/definitions.save/grib3/tables/0/5.40.table diff --git a/eccodes/definitions/grib3/tables/0/5.40000.table b/eccodes/definitions.save/grib3/tables/0/5.40000.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.40000.table rename to eccodes/definitions.save/grib3/tables/0/5.40000.table diff --git a/eccodes/definitions/grib3/tables/0/5.5.table b/eccodes/definitions.save/grib3/tables/0/5.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.5.table rename to eccodes/definitions.save/grib3/tables/0/5.5.table diff --git a/eccodes/definitions/grib3/tables/0/5.6.table b/eccodes/definitions.save/grib3/tables/0/5.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.6.table rename to eccodes/definitions.save/grib3/tables/0/5.6.table diff --git a/eccodes/definitions/grib3/tables/0/5.7.table b/eccodes/definitions.save/grib3/tables/0/5.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.7.table rename to eccodes/definitions.save/grib3/tables/0/5.7.table diff --git a/eccodes/definitions/grib3/tables/0/5.8.table b/eccodes/definitions.save/grib3/tables/0/5.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.8.table rename to eccodes/definitions.save/grib3/tables/0/5.8.table diff --git a/eccodes/definitions/grib3/tables/0/5.9.table b/eccodes/definitions.save/grib3/tables/0/5.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/5.9.table rename to eccodes/definitions.save/grib3/tables/0/5.9.table diff --git a/eccodes/definitions/grib3/tables/0/6.0.table b/eccodes/definitions.save/grib3/tables/0/6.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/0/6.0.table rename to eccodes/definitions.save/grib3/tables/0/6.0.table diff --git a/eccodes/definitions/grib3/tables/1.0.table b/eccodes/definitions.save/grib3/tables/1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1.0.table rename to eccodes/definitions.save/grib3/tables/1.0.table diff --git a/eccodes/definitions/grib3/tables/1/0.0.table b/eccodes/definitions.save/grib3/tables/1/0.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/0.0.table rename to eccodes/definitions.save/grib3/tables/1/0.0.table diff --git a/eccodes/definitions/grib3/tables/1/1.0.table b/eccodes/definitions.save/grib3/tables/1/1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/1.0.table rename to eccodes/definitions.save/grib3/tables/1/1.0.table diff --git a/eccodes/definitions/grib3/tables/1/1.1.table b/eccodes/definitions.save/grib3/tables/1/1.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/1.1.table rename to eccodes/definitions.save/grib3/tables/1/1.1.table diff --git a/eccodes/definitions/grib3/tables/1/1.2.table b/eccodes/definitions.save/grib3/tables/1/1.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/1.2.table rename to eccodes/definitions.save/grib3/tables/1/1.2.table diff --git a/eccodes/definitions/grib3/tables/1/1.3.table b/eccodes/definitions.save/grib3/tables/1/1.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/1.3.table rename to eccodes/definitions.save/grib3/tables/1/1.3.table diff --git a/eccodes/definitions/grib3/tables/1/1.4.table b/eccodes/definitions.save/grib3/tables/1/1.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/1.4.table rename to eccodes/definitions.save/grib3/tables/1/1.4.table diff --git a/eccodes/definitions/grib3/tables/1/3.0.table b/eccodes/definitions.save/grib3/tables/1/3.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.0.table rename to eccodes/definitions.save/grib3/tables/1/3.0.table diff --git a/eccodes/definitions/grib3/tables/1/3.1.table b/eccodes/definitions.save/grib3/tables/1/3.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.1.table rename to eccodes/definitions.save/grib3/tables/1/3.1.table diff --git a/eccodes/definitions/grib3/tables/1/3.10.table b/eccodes/definitions.save/grib3/tables/1/3.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.10.table rename to eccodes/definitions.save/grib3/tables/1/3.10.table diff --git a/eccodes/definitions/grib3/tables/1/3.11.table b/eccodes/definitions.save/grib3/tables/1/3.11.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.11.table rename to eccodes/definitions.save/grib3/tables/1/3.11.table diff --git a/eccodes/definitions/grib3/tables/1/3.15.table b/eccodes/definitions.save/grib3/tables/1/3.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.15.table rename to eccodes/definitions.save/grib3/tables/1/3.15.table diff --git a/eccodes/definitions/grib3/tables/1/3.2.table b/eccodes/definitions.save/grib3/tables/1/3.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.2.table rename to eccodes/definitions.save/grib3/tables/1/3.2.table diff --git a/eccodes/definitions/grib3/tables/1/3.20.table b/eccodes/definitions.save/grib3/tables/1/3.20.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.20.table rename to eccodes/definitions.save/grib3/tables/1/3.20.table diff --git a/eccodes/definitions/grib3/tables/1/3.21.table b/eccodes/definitions.save/grib3/tables/1/3.21.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.21.table rename to eccodes/definitions.save/grib3/tables/1/3.21.table diff --git a/eccodes/definitions/grib3/tables/1/3.3.table b/eccodes/definitions.save/grib3/tables/1/3.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.3.table rename to eccodes/definitions.save/grib3/tables/1/3.3.table diff --git a/eccodes/definitions/grib3/tables/1/3.4.table b/eccodes/definitions.save/grib3/tables/1/3.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.4.table rename to eccodes/definitions.save/grib3/tables/1/3.4.table diff --git a/eccodes/definitions/grib3/tables/1/3.5.table b/eccodes/definitions.save/grib3/tables/1/3.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.5.table rename to eccodes/definitions.save/grib3/tables/1/3.5.table diff --git a/eccodes/definitions/grib3/tables/1/3.6.table b/eccodes/definitions.save/grib3/tables/1/3.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.6.table rename to eccodes/definitions.save/grib3/tables/1/3.6.table diff --git a/eccodes/definitions/grib3/tables/1/3.7.table b/eccodes/definitions.save/grib3/tables/1/3.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.7.table rename to eccodes/definitions.save/grib3/tables/1/3.7.table diff --git a/eccodes/definitions/grib3/tables/1/3.8.table b/eccodes/definitions.save/grib3/tables/1/3.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.8.table rename to eccodes/definitions.save/grib3/tables/1/3.8.table diff --git a/eccodes/definitions/grib3/tables/1/3.9.table b/eccodes/definitions.save/grib3/tables/1/3.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/3.9.table rename to eccodes/definitions.save/grib3/tables/1/3.9.table diff --git a/eccodes/definitions/grib3/tables/1/4.0.table b/eccodes/definitions.save/grib3/tables/1/4.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.0.table rename to eccodes/definitions.save/grib3/tables/1/4.0.table diff --git a/eccodes/definitions/grib3/tables/1/4.1.table b/eccodes/definitions.save/grib3/tables/1/4.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.1.table rename to eccodes/definitions.save/grib3/tables/1/4.1.table diff --git a/eccodes/definitions/grib3/tables/1/4.10.table b/eccodes/definitions.save/grib3/tables/1/4.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.10.table rename to eccodes/definitions.save/grib3/tables/1/4.10.table diff --git a/eccodes/definitions/grib3/tables/1/4.11.table b/eccodes/definitions.save/grib3/tables/1/4.11.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.11.table rename to eccodes/definitions.save/grib3/tables/1/4.11.table diff --git a/eccodes/definitions/grib3/tables/1/4.12.table b/eccodes/definitions.save/grib3/tables/1/4.12.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.12.table rename to eccodes/definitions.save/grib3/tables/1/4.12.table diff --git a/eccodes/definitions/grib3/tables/1/4.13.table b/eccodes/definitions.save/grib3/tables/1/4.13.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.13.table rename to eccodes/definitions.save/grib3/tables/1/4.13.table diff --git a/eccodes/definitions/grib3/tables/1/4.14.table b/eccodes/definitions.save/grib3/tables/1/4.14.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.14.table rename to eccodes/definitions.save/grib3/tables/1/4.14.table diff --git a/eccodes/definitions/grib3/tables/1/4.15.table b/eccodes/definitions.save/grib3/tables/1/4.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.15.table rename to eccodes/definitions.save/grib3/tables/1/4.15.table diff --git a/eccodes/definitions/grib3/tables/1/4.151.table b/eccodes/definitions.save/grib3/tables/1/4.151.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.151.table rename to eccodes/definitions.save/grib3/tables/1/4.151.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.15.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.15.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.15.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.18.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.18.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.18.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.18.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.19.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.19.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.19.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.19.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.190.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.190.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.190.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.190.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.191.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.191.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.191.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.191.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.2.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.2.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.20.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.20.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.20.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.20.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.3.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.3.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.4.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.4.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.4.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.5.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.5.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.5.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.6.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.6.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.6.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.0.7.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.0.7.table rename to eccodes/definitions.save/grib3/tables/1/4.2.0.7.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.10.0.table rename to eccodes/definitions.save/grib3/tables/1/4.2.10.0.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.1.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.10.1.table rename to eccodes/definitions.save/grib3/tables/1/4.2.10.1.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.10.2.table rename to eccodes/definitions.save/grib3/tables/1/4.2.10.2.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.10.3.table rename to eccodes/definitions.save/grib3/tables/1/4.2.10.3.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.10.4.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.10.4.table rename to eccodes/definitions.save/grib3/tables/1/4.2.10.4.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.2.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.2.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.2.0.table rename to eccodes/definitions.save/grib3/tables/1/4.2.2.0.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.2.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.2.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.2.3.table rename to eccodes/definitions.save/grib3/tables/1/4.2.2.3.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.3.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.3.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.3.0.table rename to eccodes/definitions.save/grib3/tables/1/4.2.3.0.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.3.1.table b/eccodes/definitions.save/grib3/tables/1/4.2.3.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.3.1.table rename to eccodes/definitions.save/grib3/tables/1/4.2.3.1.table diff --git a/eccodes/definitions/grib3/tables/1/4.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.2.table rename to eccodes/definitions.save/grib3/tables/1/4.2.table diff --git a/eccodes/definitions/grib3/tables/1/4.201.table b/eccodes/definitions.save/grib3/tables/1/4.201.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.201.table rename to eccodes/definitions.save/grib3/tables/1/4.201.table diff --git a/eccodes/definitions/grib3/tables/1/4.202.table b/eccodes/definitions.save/grib3/tables/1/4.202.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.202.table rename to eccodes/definitions.save/grib3/tables/1/4.202.table diff --git a/eccodes/definitions/grib3/tables/1/4.203.table b/eccodes/definitions.save/grib3/tables/1/4.203.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.203.table rename to eccodes/definitions.save/grib3/tables/1/4.203.table diff --git a/eccodes/definitions/grib3/tables/1/4.204.table b/eccodes/definitions.save/grib3/tables/1/4.204.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.204.table rename to eccodes/definitions.save/grib3/tables/1/4.204.table diff --git a/eccodes/definitions/grib3/tables/1/4.205.table b/eccodes/definitions.save/grib3/tables/1/4.205.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.205.table rename to eccodes/definitions.save/grib3/tables/1/4.205.table diff --git a/eccodes/definitions/grib3/tables/1/4.206.table b/eccodes/definitions.save/grib3/tables/1/4.206.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.206.table rename to eccodes/definitions.save/grib3/tables/1/4.206.table diff --git a/eccodes/definitions/grib3/tables/1/4.207.table b/eccodes/definitions.save/grib3/tables/1/4.207.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.207.table rename to eccodes/definitions.save/grib3/tables/1/4.207.table diff --git a/eccodes/definitions/grib3/tables/1/4.208.table b/eccodes/definitions.save/grib3/tables/1/4.208.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.208.table rename to eccodes/definitions.save/grib3/tables/1/4.208.table diff --git a/eccodes/definitions/grib3/tables/1/4.209.table b/eccodes/definitions.save/grib3/tables/1/4.209.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.209.table rename to eccodes/definitions.save/grib3/tables/1/4.209.table diff --git a/eccodes/definitions/grib3/tables/1/4.210.table b/eccodes/definitions.save/grib3/tables/1/4.210.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.210.table rename to eccodes/definitions.save/grib3/tables/1/4.210.table diff --git a/eccodes/definitions/grib3/tables/1/4.211.table b/eccodes/definitions.save/grib3/tables/1/4.211.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.211.table rename to eccodes/definitions.save/grib3/tables/1/4.211.table diff --git a/eccodes/definitions/grib3/tables/1/4.212.table b/eccodes/definitions.save/grib3/tables/1/4.212.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.212.table rename to eccodes/definitions.save/grib3/tables/1/4.212.table diff --git a/eccodes/definitions/grib3/tables/1/4.213.table b/eccodes/definitions.save/grib3/tables/1/4.213.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.213.table rename to eccodes/definitions.save/grib3/tables/1/4.213.table diff --git a/eccodes/definitions/grib3/tables/1/4.215.table b/eccodes/definitions.save/grib3/tables/1/4.215.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.215.table rename to eccodes/definitions.save/grib3/tables/1/4.215.table diff --git a/eccodes/definitions/grib3/tables/1/4.216.table b/eccodes/definitions.save/grib3/tables/1/4.216.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.216.table rename to eccodes/definitions.save/grib3/tables/1/4.216.table diff --git a/eccodes/definitions/grib3/tables/1/4.217.table b/eccodes/definitions.save/grib3/tables/1/4.217.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.217.table rename to eccodes/definitions.save/grib3/tables/1/4.217.table diff --git a/eccodes/definitions/grib3/tables/1/4.220.table b/eccodes/definitions.save/grib3/tables/1/4.220.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.220.table rename to eccodes/definitions.save/grib3/tables/1/4.220.table diff --git a/eccodes/definitions/grib3/tables/1/4.221.table b/eccodes/definitions.save/grib3/tables/1/4.221.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.221.table rename to eccodes/definitions.save/grib3/tables/1/4.221.table diff --git a/eccodes/definitions/grib3/tables/1/4.230.table b/eccodes/definitions.save/grib3/tables/1/4.230.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.230.table rename to eccodes/definitions.save/grib3/tables/1/4.230.table diff --git a/eccodes/definitions/grib3/tables/1/4.3.table b/eccodes/definitions.save/grib3/tables/1/4.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.3.table rename to eccodes/definitions.save/grib3/tables/1/4.3.table diff --git a/eccodes/definitions/grib3/tables/1/4.4.table b/eccodes/definitions.save/grib3/tables/1/4.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.4.table rename to eccodes/definitions.save/grib3/tables/1/4.4.table diff --git a/eccodes/definitions/grib3/tables/1/4.5.table b/eccodes/definitions.save/grib3/tables/1/4.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.5.table rename to eccodes/definitions.save/grib3/tables/1/4.5.table diff --git a/eccodes/definitions/grib3/tables/1/4.6.table b/eccodes/definitions.save/grib3/tables/1/4.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.6.table rename to eccodes/definitions.save/grib3/tables/1/4.6.table diff --git a/eccodes/definitions/grib3/tables/1/4.7.table b/eccodes/definitions.save/grib3/tables/1/4.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.7.table rename to eccodes/definitions.save/grib3/tables/1/4.7.table diff --git a/eccodes/definitions/grib3/tables/1/4.8.table b/eccodes/definitions.save/grib3/tables/1/4.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.8.table rename to eccodes/definitions.save/grib3/tables/1/4.8.table diff --git a/eccodes/definitions/grib3/tables/1/4.9.table b/eccodes/definitions.save/grib3/tables/1/4.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.9.table rename to eccodes/definitions.save/grib3/tables/1/4.9.table diff --git a/eccodes/definitions/grib3/tables/1/4.91.table b/eccodes/definitions.save/grib3/tables/1/4.91.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/4.91.table rename to eccodes/definitions.save/grib3/tables/1/4.91.table diff --git a/eccodes/definitions/grib3/tables/1/5.0.table b/eccodes/definitions.save/grib3/tables/1/5.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.0.table rename to eccodes/definitions.save/grib3/tables/1/5.0.table diff --git a/eccodes/definitions/grib3/tables/1/5.1.table b/eccodes/definitions.save/grib3/tables/1/5.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.1.table rename to eccodes/definitions.save/grib3/tables/1/5.1.table diff --git a/eccodes/definitions/grib3/tables/1/5.2.table b/eccodes/definitions.save/grib3/tables/1/5.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.2.table rename to eccodes/definitions.save/grib3/tables/1/5.2.table diff --git a/eccodes/definitions/grib3/tables/1/5.3.table b/eccodes/definitions.save/grib3/tables/1/5.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.3.table rename to eccodes/definitions.save/grib3/tables/1/5.3.table diff --git a/eccodes/definitions/grib3/tables/1/5.4.table b/eccodes/definitions.save/grib3/tables/1/5.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.4.table rename to eccodes/definitions.save/grib3/tables/1/5.4.table diff --git a/eccodes/definitions/grib3/tables/1/5.40.table b/eccodes/definitions.save/grib3/tables/1/5.40.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.40.table rename to eccodes/definitions.save/grib3/tables/1/5.40.table diff --git a/eccodes/definitions/grib3/tables/1/5.40000.table b/eccodes/definitions.save/grib3/tables/1/5.40000.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.40000.table rename to eccodes/definitions.save/grib3/tables/1/5.40000.table diff --git a/eccodes/definitions/grib3/tables/1/5.5.table b/eccodes/definitions.save/grib3/tables/1/5.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.5.table rename to eccodes/definitions.save/grib3/tables/1/5.5.table diff --git a/eccodes/definitions/grib3/tables/1/5.6.table b/eccodes/definitions.save/grib3/tables/1/5.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.6.table rename to eccodes/definitions.save/grib3/tables/1/5.6.table diff --git a/eccodes/definitions/grib3/tables/1/5.7.table b/eccodes/definitions.save/grib3/tables/1/5.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.7.table rename to eccodes/definitions.save/grib3/tables/1/5.7.table diff --git a/eccodes/definitions/grib3/tables/1/5.8.table b/eccodes/definitions.save/grib3/tables/1/5.8.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.8.table rename to eccodes/definitions.save/grib3/tables/1/5.8.table diff --git a/eccodes/definitions/grib3/tables/1/5.9.table b/eccodes/definitions.save/grib3/tables/1/5.9.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/5.9.table rename to eccodes/definitions.save/grib3/tables/1/5.9.table diff --git a/eccodes/definitions/grib3/tables/1/6.0.table b/eccodes/definitions.save/grib3/tables/1/6.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/6.0.table rename to eccodes/definitions.save/grib3/tables/1/6.0.table diff --git a/eccodes/definitions/grib3/tables/1/6.1.table b/eccodes/definitions.save/grib3/tables/1/6.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/6.1.table rename to eccodes/definitions.save/grib3/tables/1/6.1.table diff --git a/eccodes/definitions/grib3/tables/1/6.2.table b/eccodes/definitions.save/grib3/tables/1/6.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/6.2.table rename to eccodes/definitions.save/grib3/tables/1/6.2.table diff --git a/eccodes/definitions/grib3/tables/1/6.3.table b/eccodes/definitions.save/grib3/tables/1/6.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/6.3.table rename to eccodes/definitions.save/grib3/tables/1/6.3.table diff --git a/eccodes/definitions/grib3/tables/1/7.0.table b/eccodes/definitions.save/grib3/tables/1/7.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.0.table rename to eccodes/definitions.save/grib3/tables/1/7.0.table diff --git a/eccodes/definitions/grib3/tables/1/7.1.table b/eccodes/definitions.save/grib3/tables/1/7.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.1.table rename to eccodes/definitions.save/grib3/tables/1/7.1.table diff --git a/eccodes/definitions/grib3/tables/1/7.2.0.table b/eccodes/definitions.save/grib3/tables/1/7.2.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.2.0.table rename to eccodes/definitions.save/grib3/tables/1/7.2.0.table diff --git a/eccodes/definitions/grib3/tables/1/7.2.1.table b/eccodes/definitions.save/grib3/tables/1/7.2.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.2.1.table rename to eccodes/definitions.save/grib3/tables/1/7.2.1.table diff --git a/eccodes/definitions/grib3/tables/1/7.2.10.table b/eccodes/definitions.save/grib3/tables/1/7.2.10.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.2.10.table rename to eccodes/definitions.save/grib3/tables/1/7.2.10.table diff --git a/eccodes/definitions/grib3/tables/1/7.2.2.table b/eccodes/definitions.save/grib3/tables/1/7.2.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.2.2.table rename to eccodes/definitions.save/grib3/tables/1/7.2.2.table diff --git a/eccodes/definitions/grib3/tables/1/7.2.3.table b/eccodes/definitions.save/grib3/tables/1/7.2.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.2.3.table rename to eccodes/definitions.save/grib3/tables/1/7.2.3.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.0.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.0.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.0.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.1.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.1.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.1.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.13.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.13.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.13.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.13.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.14.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.14.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.14.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.14.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.15.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.15.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.15.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.15.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.16.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.16.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.16.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.16.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.17.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.17.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.17.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.17.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.18.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.18.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.18.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.18.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.19.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.19.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.19.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.19.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.2.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.2.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.2.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.20.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.20.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.20.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.20.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.3.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.3.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.3.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.3.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.4.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.4.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.4.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.4.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.5.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.5.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.5.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.5.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.6.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.6.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.6.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.6.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.0.7.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.7.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.0.7.table rename to eccodes/definitions.save/grib3/tables/1/7.3.0.7.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.0.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.1.0.table rename to eccodes/definitions.save/grib3/tables/1/7.3.1.0.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.1.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.1.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.1.1.table rename to eccodes/definitions.save/grib3/tables/1/7.3.1.1.table diff --git a/eccodes/definitions/grib3/tables/1/7.3.1.2.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/1/7.3.1.2.table rename to eccodes/definitions.save/grib3/tables/1/7.3.1.2.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table b/eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/4/1.2.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.1.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.10.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.11.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.2.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.3.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.4.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.5.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.6.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.7.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.8.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.9.0.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.reporttype.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table diff --git a/eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table similarity index 100% rename from eccodes/definitions/grib3/tables/local/ecmf/obstat.varno.table rename to eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table diff --git a/eccodes/definitions/grib3/template.10.0.def b/eccodes/definitions.save/grib3/template.10.0.def similarity index 100% rename from eccodes/definitions/grib3/template.10.0.def rename to eccodes/definitions.save/grib3/template.10.0.def diff --git a/eccodes/definitions/grib3/template.3.0.def b/eccodes/definitions.save/grib3/template.3.0.def similarity index 100% rename from eccodes/definitions/grib3/template.3.0.def rename to eccodes/definitions.save/grib3/template.3.0.def diff --git a/eccodes/definitions/grib3/template.3.110.def b/eccodes/definitions.save/grib3/template.3.110.def similarity index 100% rename from eccodes/definitions/grib3/template.3.110.def rename to eccodes/definitions.save/grib3/template.3.110.def diff --git a/eccodes/definitions/grib3/template.3.140.def b/eccodes/definitions.save/grib3/template.3.140.def similarity index 100% rename from eccodes/definitions/grib3/template.3.140.def rename to eccodes/definitions.save/grib3/template.3.140.def diff --git a/eccodes/definitions/grib3/template.3.20.def b/eccodes/definitions.save/grib3/template.3.20.def similarity index 100% rename from eccodes/definitions/grib3/template.3.20.def rename to eccodes/definitions.save/grib3/template.3.20.def diff --git a/eccodes/definitions/grib3/template.3.resolution_flags.def b/eccodes/definitions.save/grib3/template.3.resolution_flags.def similarity index 100% rename from eccodes/definitions/grib3/template.3.resolution_flags.def rename to eccodes/definitions.save/grib3/template.3.resolution_flags.def diff --git a/eccodes/definitions/grib3/template.4.0.def b/eccodes/definitions.save/grib3/template.4.0.def similarity index 100% rename from eccodes/definitions/grib3/template.4.0.def rename to eccodes/definitions.save/grib3/template.4.0.def diff --git a/eccodes/definitions/grib3/template.4.1.def b/eccodes/definitions.save/grib3/template.4.1.def similarity index 100% rename from eccodes/definitions/grib3/template.4.1.def rename to eccodes/definitions.save/grib3/template.4.1.def diff --git a/eccodes/definitions/grib3/template.4.2.def b/eccodes/definitions.save/grib3/template.4.2.def similarity index 100% rename from eccodes/definitions/grib3/template.4.2.def rename to eccodes/definitions.save/grib3/template.4.2.def diff --git a/eccodes/definitions/grib3/template.4.3.def b/eccodes/definitions.save/grib3/template.4.3.def similarity index 100% rename from eccodes/definitions/grib3/template.4.3.def rename to eccodes/definitions.save/grib3/template.4.3.def diff --git a/eccodes/definitions/grib3/template.4.horizontal.def b/eccodes/definitions.save/grib3/template.4.horizontal.def similarity index 100% rename from eccodes/definitions/grib3/template.4.horizontal.def rename to eccodes/definitions.save/grib3/template.4.horizontal.def diff --git a/eccodes/definitions/grib3/template.4.resolution_flags.def b/eccodes/definitions.save/grib3/template.4.resolution_flags.def similarity index 100% rename from eccodes/definitions/grib3/template.4.resolution_flags.def rename to eccodes/definitions.save/grib3/template.4.resolution_flags.def diff --git a/eccodes/definitions/grib3/template.4.scanning_mode.def b/eccodes/definitions.save/grib3/template.4.scanning_mode.def similarity index 100% rename from eccodes/definitions/grib3/template.4.scanning_mode.def rename to eccodes/definitions.save/grib3/template.4.scanning_mode.def diff --git a/eccodes/definitions/grib3/template.5.0.def b/eccodes/definitions.save/grib3/template.5.0.def similarity index 100% rename from eccodes/definitions/grib3/template.5.0.def rename to eccodes/definitions.save/grib3/template.5.0.def diff --git a/eccodes/definitions/grib3/template.5.1.def b/eccodes/definitions.save/grib3/template.5.1.def similarity index 100% rename from eccodes/definitions/grib3/template.5.1.def rename to eccodes/definitions.save/grib3/template.5.1.def diff --git a/eccodes/definitions/grib3/template.6.0.def b/eccodes/definitions.save/grib3/template.6.0.def similarity index 100% rename from eccodes/definitions/grib3/template.6.0.def rename to eccodes/definitions.save/grib3/template.6.0.def diff --git a/eccodes/definitions/grib3/template.6.1.def b/eccodes/definitions.save/grib3/template.6.1.def similarity index 100% rename from eccodes/definitions/grib3/template.6.1.def rename to eccodes/definitions.save/grib3/template.6.1.def diff --git a/eccodes/definitions/grib3/template.6.2.def b/eccodes/definitions.save/grib3/template.6.2.def similarity index 100% rename from eccodes/definitions/grib3/template.6.2.def rename to eccodes/definitions.save/grib3/template.6.2.def diff --git a/eccodes/definitions/grib3/template.7.0.def b/eccodes/definitions.save/grib3/template.7.0.def similarity index 100% rename from eccodes/definitions/grib3/template.7.0.def rename to eccodes/definitions.save/grib3/template.7.0.def diff --git a/eccodes/definitions/grib3/template.7.1.def b/eccodes/definitions.save/grib3/template.7.1.def similarity index 100% rename from eccodes/definitions/grib3/template.7.1.def rename to eccodes/definitions.save/grib3/template.7.1.def diff --git a/eccodes/definitions/grib3/template.7.2.def b/eccodes/definitions.save/grib3/template.7.2.def similarity index 100% rename from eccodes/definitions/grib3/template.7.2.def rename to eccodes/definitions.save/grib3/template.7.2.def diff --git a/eccodes/definitions/grib3/template.7.3.def b/eccodes/definitions.save/grib3/template.7.3.def similarity index 100% rename from eccodes/definitions/grib3/template.7.3.def rename to eccodes/definitions.save/grib3/template.7.3.def diff --git a/eccodes/definitions/grib3/template.7.4.def b/eccodes/definitions.save/grib3/template.7.4.def similarity index 100% rename from eccodes/definitions/grib3/template.7.4.def rename to eccodes/definitions.save/grib3/template.7.4.def diff --git a/eccodes/definitions/grib3/template.8.0.def b/eccodes/definitions.save/grib3/template.8.0.def similarity index 100% rename from eccodes/definitions/grib3/template.8.0.def rename to eccodes/definitions.save/grib3/template.8.0.def diff --git a/eccodes/definitions/grib3/template.8.1.def b/eccodes/definitions.save/grib3/template.8.1.def similarity index 100% rename from eccodes/definitions/grib3/template.8.1.def rename to eccodes/definitions.save/grib3/template.8.1.def diff --git a/eccodes/definitions/grib3/template.8.missing_value.def b/eccodes/definitions.save/grib3/template.8.missing_value.def similarity index 100% rename from eccodes/definitions/grib3/template.8.missing_value.def rename to eccodes/definitions.save/grib3/template.8.missing_value.def diff --git a/eccodes/definitions/grib3/template.8.original_values.def b/eccodes/definitions.save/grib3/template.8.original_values.def similarity index 100% rename from eccodes/definitions/grib3/template.8.original_values.def rename to eccodes/definitions.save/grib3/template.8.original_values.def diff --git a/eccodes/definitions/grib3/template.8.packing.def b/eccodes/definitions.save/grib3/template.8.packing.def similarity index 100% rename from eccodes/definitions/grib3/template.8.packing.def rename to eccodes/definitions.save/grib3/template.8.packing.def diff --git a/eccodes/definitions/grib3/template.9.0.def b/eccodes/definitions.save/grib3/template.9.0.def similarity index 100% rename from eccodes/definitions/grib3/template.9.0.def rename to eccodes/definitions.save/grib3/template.9.0.def diff --git a/eccodes/definitions/grib3/template.component.3.0.def b/eccodes/definitions.save/grib3/template.component.3.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.3.0.def rename to eccodes/definitions.save/grib3/template.component.3.0.def diff --git a/eccodes/definitions/grib3/template.component.4.0.def b/eccodes/definitions.save/grib3/template.component.4.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.4.0.def rename to eccodes/definitions.save/grib3/template.component.4.0.def diff --git a/eccodes/definitions/grib3/template.component.4.1.def b/eccodes/definitions.save/grib3/template.component.4.1.def similarity index 100% rename from eccodes/definitions/grib3/template.component.4.1.def rename to eccodes/definitions.save/grib3/template.component.4.1.def diff --git a/eccodes/definitions/grib3/template.component.4.2.def b/eccodes/definitions.save/grib3/template.component.4.2.def similarity index 100% rename from eccodes/definitions/grib3/template.component.4.2.def rename to eccodes/definitions.save/grib3/template.component.4.2.def diff --git a/eccodes/definitions/grib3/template.component.4.3.def b/eccodes/definitions.save/grib3/template.component.4.3.def similarity index 100% rename from eccodes/definitions/grib3/template.component.4.3.def rename to eccodes/definitions.save/grib3/template.component.4.3.def diff --git a/eccodes/definitions/grib3/template.component.5.0.def b/eccodes/definitions.save/grib3/template.component.5.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.5.0.def rename to eccodes/definitions.save/grib3/template.component.5.0.def diff --git a/eccodes/definitions/grib3/template.component.5.1.def b/eccodes/definitions.save/grib3/template.component.5.1.def similarity index 100% rename from eccodes/definitions/grib3/template.component.5.1.def rename to eccodes/definitions.save/grib3/template.component.5.1.def diff --git a/eccodes/definitions/grib3/template.component.6.0.def b/eccodes/definitions.save/grib3/template.component.6.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.6.0.def rename to eccodes/definitions.save/grib3/template.component.6.0.def diff --git a/eccodes/definitions/grib3/template.component.6.1.def b/eccodes/definitions.save/grib3/template.component.6.1.def similarity index 100% rename from eccodes/definitions/grib3/template.component.6.1.def rename to eccodes/definitions.save/grib3/template.component.6.1.def diff --git a/eccodes/definitions/grib3/template.component.6.2.def b/eccodes/definitions.save/grib3/template.component.6.2.def similarity index 100% rename from eccodes/definitions/grib3/template.component.6.2.def rename to eccodes/definitions.save/grib3/template.component.6.2.def diff --git a/eccodes/definitions/grib3/template.component.6.3.def b/eccodes/definitions.save/grib3/template.component.6.3.def similarity index 100% rename from eccodes/definitions/grib3/template.component.6.3.def rename to eccodes/definitions.save/grib3/template.component.6.3.def diff --git a/eccodes/definitions/grib3/template.component.7.0.def b/eccodes/definitions.save/grib3/template.component.7.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.7.0.def rename to eccodes/definitions.save/grib3/template.component.7.0.def diff --git a/eccodes/definitions/grib3/template.component.7.1.def b/eccodes/definitions.save/grib3/template.component.7.1.def similarity index 100% rename from eccodes/definitions/grib3/template.component.7.1.def rename to eccodes/definitions.save/grib3/template.component.7.1.def diff --git a/eccodes/definitions/grib3/template.component.7.2.def b/eccodes/definitions.save/grib3/template.component.7.2.def similarity index 100% rename from eccodes/definitions/grib3/template.component.7.2.def rename to eccodes/definitions.save/grib3/template.component.7.2.def diff --git a/eccodes/definitions/grib3/template.component.7.3.def b/eccodes/definitions.save/grib3/template.component.7.3.def similarity index 100% rename from eccodes/definitions/grib3/template.component.7.3.def rename to eccodes/definitions.save/grib3/template.component.7.3.def diff --git a/eccodes/definitions/grib3/template.component.7.4.def b/eccodes/definitions.save/grib3/template.component.7.4.def similarity index 100% rename from eccodes/definitions/grib3/template.component.7.4.def rename to eccodes/definitions.save/grib3/template.component.7.4.def diff --git a/eccodes/definitions/grib3/template.component.8.0.def b/eccodes/definitions.save/grib3/template.component.8.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.8.0.def rename to eccodes/definitions.save/grib3/template.component.8.0.def diff --git a/eccodes/definitions/grib3/template.component.8.1.def b/eccodes/definitions.save/grib3/template.component.8.1.def similarity index 100% rename from eccodes/definitions/grib3/template.component.8.1.def rename to eccodes/definitions.save/grib3/template.component.8.1.def diff --git a/eccodes/definitions/grib3/template.component.9.0.def b/eccodes/definitions.save/grib3/template.component.9.0.def similarity index 100% rename from eccodes/definitions/grib3/template.component.9.0.def rename to eccodes/definitions.save/grib3/template.component.9.0.def diff --git a/eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def b/eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def similarity index 100% rename from eccodes/definitions/grib3/template_components/4.8.regular_latitudes.def rename to eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def diff --git a/eccodes/definitions/grib3/tiggeLocalVersion.table b/eccodes/definitions.save/grib3/tiggeLocalVersion.table similarity index 100% rename from eccodes/definitions/grib3/tiggeLocalVersion.table rename to eccodes/definitions.save/grib3/tiggeLocalVersion.table diff --git a/eccodes/definitions/grib3/tigge_name.def b/eccodes/definitions.save/grib3/tigge_name.def similarity index 100% rename from eccodes/definitions/grib3/tigge_name.def rename to eccodes/definitions.save/grib3/tigge_name.def diff --git a/eccodes/definitions/grib3/tigge_parameter.def b/eccodes/definitions.save/grib3/tigge_parameter.def similarity index 100% rename from eccodes/definitions/grib3/tigge_parameter.def rename to eccodes/definitions.save/grib3/tigge_parameter.def diff --git a/eccodes/definitions/grib3/tigge_short_name.def b/eccodes/definitions.save/grib3/tigge_short_name.def similarity index 100% rename from eccodes/definitions/grib3/tigge_short_name.def rename to eccodes/definitions.save/grib3/tigge_short_name.def diff --git a/eccodes/definitions/grib3/tigge_suiteName.table b/eccodes/definitions.save/grib3/tigge_suiteName.table similarity index 100% rename from eccodes/definitions/grib3/tigge_suiteName.table rename to eccodes/definitions.save/grib3/tigge_suiteName.table diff --git a/eccodes/definitions/grib3/units.def b/eccodes/definitions.save/grib3/units.def similarity index 100% rename from eccodes/definitions/grib3/units.def rename to eccodes/definitions.save/grib3/units.def diff --git a/eccodes/definitions/mars_param.table b/eccodes/definitions.save/mars_param.table similarity index 100% rename from eccodes/definitions/mars_param.table rename to eccodes/definitions.save/mars_param.table diff --git a/eccodes/definitions/param_id.table b/eccodes/definitions.save/param_id.table similarity index 100% rename from eccodes/definitions/param_id.table rename to eccodes/definitions.save/param_id.table diff --git a/eccodes/definitions/param_limits.def b/eccodes/definitions.save/param_limits.def similarity index 100% rename from eccodes/definitions/param_limits.def rename to eccodes/definitions.save/param_limits.def diff --git a/eccodes/definitions/parameters_version.def b/eccodes/definitions.save/parameters_version.def similarity index 100% rename from eccodes/definitions/parameters_version.def rename to eccodes/definitions.save/parameters_version.def diff --git a/eccodes/definitions/stepUnits.table b/eccodes/definitions.save/stepUnits.table similarity index 100% rename from eccodes/definitions/stepUnits.table rename to eccodes/definitions.save/stepUnits.table From e01063b415c5e8895af2552ba1c1677146cc2b0d Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 19:19:33 -0700 Subject: [PATCH 37/44] remove --- eccodes/definitions.save/boot.def | 122 - eccodes/definitions.save/common/c-1.table | 96 - eccodes/definitions.save/common/c-11.table | 146 - .../common/statistics_grid.def | 33 - .../common/statistics_spectral.def | 24 - eccodes/definitions.save/empty_template.def | 2 - eccodes/definitions.save/grib1/0.ecmf.table | 1 - eccodes/definitions.save/grib1/0.eidb.table | 4 - eccodes/definitions.save/grib1/0.eswi.table | 10 - eccodes/definitions.save/grib1/0.rjtd.table | 5 - eccodes/definitions.save/grib1/1.table | 5 - eccodes/definitions.save/grib1/10.table | 4 - eccodes/definitions.save/grib1/11-2.table | 34 - eccodes/definitions.save/grib1/11.table | 9 - eccodes/definitions.save/grib1/12.table | 13 - eccodes/definitions.save/grib1/13.table | 4 - eccodes/definitions.save/grib1/2.0.1.table | 129 - eccodes/definitions.save/grib1/2.0.2.table | 128 - eccodes/definitions.save/grib1/2.0.3.table | 129 - eccodes/definitions.save/grib1/2.128.table | 255 - eccodes/definitions.save/grib1/2.233.1.table | 154 - .../definitions.save/grib1/2.233.253.table | 214 - .../definitions.save/grib1/2.253.128.table | 253 - eccodes/definitions.save/grib1/2.34.200.table | 185 - eccodes/definitions.save/grib1/2.46.254.table | 256 - eccodes/definitions.save/grib1/2.82.1.table | 180 - eccodes/definitions.save/grib1/2.82.128.table | 139 - eccodes/definitions.save/grib1/2.82.129.table | 120 - eccodes/definitions.save/grib1/2.82.130.table | 99 - eccodes/definitions.save/grib1/2.82.131.table | 29 - eccodes/definitions.save/grib1/2.82.133.table | 102 - eccodes/definitions.save/grib1/2.82.134.table | 85 - eccodes/definitions.save/grib1/2.82.135.table | 104 - eccodes/definitions.save/grib1/2.82.136.table | 74 - eccodes/definitions.save/grib1/2.82.253.table | 197 - eccodes/definitions.save/grib1/2.98.128.table | 255 - eccodes/definitions.save/grib1/2.98.129.table | 237 - eccodes/definitions.save/grib1/2.98.130.table | 27 - eccodes/definitions.save/grib1/2.98.131.table | 77 - eccodes/definitions.save/grib1/2.98.132.table | 13 - eccodes/definitions.save/grib1/2.98.133.table | 93 - eccodes/definitions.save/grib1/2.98.140.table | 88 - eccodes/definitions.save/grib1/2.98.150.table | 33 - eccodes/definitions.save/grib1/2.98.151.table | 80 - eccodes/definitions.save/grib1/2.98.160.table | 109 - eccodes/definitions.save/grib1/2.98.162.table | 114 - eccodes/definitions.save/grib1/2.98.170.table | 36 - eccodes/definitions.save/grib1/2.98.171.table | 187 - eccodes/definitions.save/grib1/2.98.172.table | 39 - eccodes/definitions.save/grib1/2.98.173.table | 39 - eccodes/definitions.save/grib1/2.98.174.table | 56 - eccodes/definitions.save/grib1/2.98.175.table | 31 - eccodes/definitions.save/grib1/2.98.180.table | 33 - eccodes/definitions.save/grib1/2.98.190.table | 37 - eccodes/definitions.save/grib1/2.98.200.table | 236 - eccodes/definitions.save/grib1/2.98.201.table | 78 - eccodes/definitions.save/grib1/2.98.210.table | 227 - eccodes/definitions.save/grib1/2.98.211.table | 172 - eccodes/definitions.save/grib1/2.98.213.table | 56 - eccodes/definitions.save/grib1/2.98.215.table | 212 - eccodes/definitions.save/grib1/2.98.220.table | 2 - eccodes/definitions.save/grib1/2.98.228.table | 108 - eccodes/definitions.save/grib1/2.98.230.table | 51 - eccodes/definitions.save/grib1/2.98.235.table | 49 - eccodes/definitions.save/grib1/2.table | 5 - eccodes/definitions.save/grib1/3.233.table | 61 - eccodes/definitions.save/grib1/3.82.table | 50 - eccodes/definitions.save/grib1/3.98.table | 53 - eccodes/definitions.save/grib1/3.table | 51 - eccodes/definitions.save/grib1/4.table | 15 - eccodes/definitions.save/grib1/5.table | 21 - eccodes/definitions.save/grib1/6.table | 24 - eccodes/definitions.save/grib1/7.table | 7 - eccodes/definitions.save/grib1/8.table | 7 - eccodes/definitions.save/grib1/9.table | 2 - eccodes/definitions.save/grib1/boot.def | 83 - eccodes/definitions.save/grib1/cfName.def | 349 - eccodes/definitions.save/grib1/cfVarName.def | 2059 -- .../definitions.save/grib1/cluster_domain.def | 7 - .../definitions.save/grib1/data.grid_ieee.def | 42 - .../definitions.save/grib1/data.grid_jpeg.def | 1 - .../grib1/data.grid_second_order.def | 178 - .../grib1/data.grid_second_order_SPD1.def | 1 - .../grib1/data.grid_second_order_SPD2.def | 1 - .../grib1/data.grid_second_order_SPD3.def | 1 - .../data.grid_second_order_constant_width.def | 149 - .../data.grid_second_order_general_grib1.def | 148 - .../grib1/data.grid_second_order_no_SPD.def | 1 - .../data.grid_second_order_row_by_row.def | 95 - .../grib1/data.grid_simple.def | 69 - .../grib1/data.grid_simple_matrix.def | 181 - .../grib1/data.spectral_complex.def | 138 - .../grib1/data.spectral_ieee.def | 134 - .../grib1/data.spectral_simple.def | 40 - .../grib1/gds_not_present_bitmap.def | 23 - .../grib1/grid.192.78.3.10.table | 7 - .../grib1/grid.192.78.3.9.table | 3 - eccodes/definitions.save/grib1/grid_21.def | 19 - eccodes/definitions.save/grib1/grid_22.def | 19 - eccodes/definitions.save/grib1/grid_23.def | 19 - eccodes/definitions.save/grib1/grid_24.def | 19 - eccodes/definitions.save/grib1/grid_25.def | 19 - eccodes/definitions.save/grib1/grid_26.def | 18 - eccodes/definitions.save/grib1/grid_61.def | 19 - eccodes/definitions.save/grib1/grid_62.def | 18 - eccodes/definitions.save/grib1/grid_63.def | 19 - eccodes/definitions.save/grib1/grid_64.def | 18 - .../grib1/grid_definition_0.def | 11 - .../grib1/grid_definition_1.def | 74 - .../grib1/grid_definition_10.def | 12 - .../grib1/grid_definition_13.def | 7 - .../grib1/grid_definition_14.def | 10 - .../grib1/grid_definition_192.78.def | 43 - .../grib1/grid_definition_192.98.def | 23 - .../grib1/grid_definition_193.98.def | 94 - .../grib1/grid_definition_20.def | 12 - .../grib1/grid_definition_24.def | 10 - .../grib1/grid_definition_3.def | 7 - .../grib1/grid_definition_30.def | 15 - .../grib1/grid_definition_34.def | 13 - .../grib1/grid_definition_4.def | 7 - .../grib1/grid_definition_5.def | 89 - .../grib1/grid_definition_50.def | 7 - .../grib1/grid_definition_60.def | 10 - .../grib1/grid_definition_70.def | 11 - .../grib1/grid_definition_8.def | 7 - .../grib1/grid_definition_80.def | 14 - .../grib1/grid_definition_90.def | 66 - .../grib1/grid_definition_gaussian.def | 96 - .../grib1/grid_definition_lambert.def | 113 - .../grib1/grid_definition_latlon.def | 66 - .../grid_definition_spherical_harmonics.def | 35 - .../grib1/grid_first_last_resandcomp.def | 35 - .../definitions.save/grib1/grid_rotation.def | 12 - .../grib1/grid_stretching.def | 12 - eccodes/definitions.save/grib1/local.1.def | 5 - eccodes/definitions.save/grib1/local.13.table | 6 - .../definitions.save/grib1/local.214.1.def | 51 - .../definitions.save/grib1/local.214.244.def | 281 - .../definitions.save/grib1/local.214.245.def | 54 - eccodes/definitions.save/grib1/local.214.def | 3 - eccodes/definitions.save/grib1/local.253.def | 5 - eccodes/definitions.save/grib1/local.254.def | 3 - eccodes/definitions.save/grib1/local.34.1.def | 48 - eccodes/definitions.save/grib1/local.34.def | 5 - eccodes/definitions.save/grib1/local.46.def | 6 - eccodes/definitions.save/grib1/local.54.def | 31 - eccodes/definitions.save/grib1/local.7.1.def | 88 - eccodes/definitions.save/grib1/local.7.def | 3 - eccodes/definitions.save/grib1/local.78.def | 2 - eccodes/definitions.save/grib1/local.80.def | 4 - eccodes/definitions.save/grib1/local.82.0.def | 39 - .../definitions.save/grib1/local.82.82.def | 18 - .../definitions.save/grib1/local.82.83.def | 56 - eccodes/definitions.save/grib1/local.82.def | 26 - eccodes/definitions.save/grib1/local.85.def | 24 - eccodes/definitions.save/grib1/local.96.def | 3 - eccodes/definitions.save/grib1/local.98.1.def | 52 - .../definitions.save/grib1/local.98.10.def | 50 - .../definitions.save/grib1/local.98.11.def | 35 - .../definitions.save/grib1/local.98.12.def | 65 - .../definitions.save/grib1/local.98.13.def | 163 - .../definitions.save/grib1/local.98.14.def | 29 - .../definitions.save/grib1/local.98.15.def | 39 - .../definitions.save/grib1/local.98.16.def | 60 - .../definitions.save/grib1/local.98.17.def | 32 - .../definitions.save/grib1/local.98.18.def | 43 - .../definitions.save/grib1/local.98.19.def | 40 - .../definitions.save/grib1/local.98.190.def | 26 - .../definitions.save/grib1/local.98.191.def | 35 - .../definitions.save/grib1/local.98.192.def | 39 - eccodes/definitions.save/grib1/local.98.2.def | 45 - .../definitions.save/grib1/local.98.20.def | 19 - .../definitions.save/grib1/local.98.21.def | 54 - .../definitions.save/grib1/local.98.218.def | 42 - .../definitions.save/grib1/local.98.23.def | 56 - .../definitions.save/grib1/local.98.24.def | 16 - .../definitions.save/grib1/local.98.244.def | 1 - .../definitions.save/grib1/local.98.245.def | 1 - .../definitions.save/grib1/local.98.25.def | 24 - .../definitions.save/grib1/local.98.26.def | 32 - .../definitions.save/grib1/local.98.27.def | 31 - .../definitions.save/grib1/local.98.28.def | 21 - .../definitions.save/grib1/local.98.29.def | 44 - eccodes/definitions.save/grib1/local.98.3.def | 18 - .../definitions.save/grib1/local.98.30.def | 57 - .../definitions.save/grib1/local.98.31.def | 31 - .../definitions.save/grib1/local.98.32.def | 46 - .../definitions.save/grib1/local.98.33.def | 25 - .../definitions.save/grib1/local.98.35.def | 32 - .../definitions.save/grib1/local.98.36.def | 54 - .../definitions.save/grib1/local.98.37.def | 34 - .../definitions.save/grib1/local.98.38.def | 24 - .../definitions.save/grib1/local.98.39.def | 28 - eccodes/definitions.save/grib1/local.98.4.def | 154 - .../definitions.save/grib1/local.98.40.def | 23 - .../definitions.save/grib1/local.98.49.def | 31 - eccodes/definitions.save/grib1/local.98.5.def | 61 - .../definitions.save/grib1/local.98.50.def | 30 - eccodes/definitions.save/grib1/local.98.6.def | 22 - eccodes/definitions.save/grib1/local.98.7.def | 31 - eccodes/definitions.save/grib1/local.98.8.def | 10 - eccodes/definitions.save/grib1/local.98.9.def | 62 - eccodes/definitions.save/grib1/local.98.def | 4 - .../definitions.save/grib1/local/ecmf/3.table | 53 - .../definitions.save/grib1/local/ecmf/5.table | 25 - .../grib1/local/edzw/2.0.3.table | 130 - .../definitions.save/grib1/local/edzw/5.table | 24 - .../edzw/generatingProcessIdentifier.table | 86 - .../grib1/local/rjtd/252.table | 16 - .../definitions.save/grib1/local/rjtd/3.table | 58 - .../definitions.save/grib1/local/rjtd/5.table | 27 - .../grib1/localConcepts/ammc/name.def | 5 - .../grib1/localConcepts/ammc/paramId.def | 5 - .../grib1/localConcepts/ammc/shortName.def | 5 - .../grib1/localConcepts/ammc/units.def | 5 - .../grib1/localConcepts/cnmc/name.def | 2435 -- .../grib1/localConcepts/cnmc/paramId.def | 2435 -- .../grib1/localConcepts/cnmc/shortName.def | 2435 -- .../grib1/localConcepts/cnmc/units.def | 2435 -- .../grib1/localConcepts/ecmf/cfName.def | 1041 - .../grib1/localConcepts/ecmf/cfVarName.def | 17676 ------------- .../grib1/localConcepts/ecmf/name.def | 17676 ------------- .../grib1/localConcepts/ecmf/paramId.def | 17676 ------------- .../grib1/localConcepts/ecmf/shortName.def | 17676 ------------- .../grib1/localConcepts/ecmf/stepType.def | 35 - .../ecmf/stepTypeForConversion.def | 28 - .../grib1/localConcepts/ecmf/typeOfLevel.def | 38 - .../grib1/localConcepts/ecmf/units.def | 17676 ------------- .../grib1/localConcepts/edzw/name.def | 8992 ------- .../grib1/localConcepts/edzw/paramId.def | 8992 ------- .../grib1/localConcepts/edzw/shortName.def | 8992 ------- .../grib1/localConcepts/edzw/stepType.def | 146 - .../grib1/localConcepts/edzw/typeOfLevel.def | 41 - .../grib1/localConcepts/edzw/units.def | 8992 ------- .../grib1/localConcepts/efkl/cfVarName.def | 1121 - .../grib1/localConcepts/efkl/name.def | 1121 - .../grib1/localConcepts/efkl/paramId.def | 801 - .../grib1/localConcepts/efkl/shortName.def | 1121 - .../grib1/localConcepts/efkl/units.def | 1121 - .../grib1/localConcepts/eidb/name.def | 1840 -- .../grib1/localConcepts/eidb/paramId.def | 1840 -- .../grib1/localConcepts/eidb/shortName.def | 1840 -- .../grib1/localConcepts/eidb/typeOfLevel.def | 49 - .../grib1/localConcepts/eidb/units.def | 1840 -- .../grib1/localConcepts/ekmi/name.def | 21 - .../grib1/localConcepts/ekmi/paramId.def | 21 - .../grib1/localConcepts/ekmi/shortName.def | 21 - .../grib1/localConcepts/ekmi/units.def | 21 - .../grib1/localConcepts/enmi/name.def | 16 - .../grib1/localConcepts/enmi/paramId.def | 16 - .../grib1/localConcepts/enmi/shortName.def | 16 - .../grib1/localConcepts/enmi/units.def | 16 - .../localConcepts/eswi/aerosolConcept.def | 20 - .../localConcepts/eswi/aerosolbinnumber.table | 24 - .../localConcepts/eswi/landTypeConcept.def | 39 - .../grib1/localConcepts/eswi/landtype.table | 43 - .../grib1/localConcepts/eswi/name.def | 5580 ---- .../grib1/localConcepts/eswi/paramId.def | 5580 ---- .../grib1/localConcepts/eswi/shortName.def | 5580 ---- .../grib1/localConcepts/eswi/sort.table | 100 - .../grib1/localConcepts/eswi/sortConcept.def | 96 - .../localConcepts/eswi/timeRepresConcept.def | 48 - .../grib1/localConcepts/eswi/timerepres.table | 52 - .../grib1/localConcepts/eswi/typeOfLevel.def | 49 - .../grib1/localConcepts/eswi/units.def | 5580 ---- .../grib1/localConcepts/kwbc/name.def | 2 - .../grib1/localConcepts/kwbc/paramId.def | 2 - .../grib1/localConcepts/kwbc/shortName.def | 2 - .../grib1/localConcepts/kwbc/units.def | 2 - .../grib1/localConcepts/lfpw/faFieldName.def | 572 - .../grib1/localConcepts/lfpw/faLevelName.def | 36 - .../grib1/localConcepts/lfpw/faModelName.def | 9 - .../grib1/localConcepts/lfpw/name.def | 18 - .../grib1/localConcepts/lfpw/paramId.def | 18 - .../grib1/localConcepts/lfpw/shortName.def | 18 - .../grib1/localConcepts/lfpw/units.def | 18 - .../grib1/localConcepts/lowm/name.def | 66 - .../grib1/localConcepts/lowm/paramId.def | 66 - .../grib1/localConcepts/lowm/shortName.def | 66 - .../grib1/localConcepts/lowm/units.def | 66 - .../grib1/localConcepts/rjtd/cfVarName.def | 962 - .../grib1/localConcepts/rjtd/name.def | 962 - .../grib1/localConcepts/rjtd/paramId.def | 962 - .../grib1/localConcepts/rjtd/shortName.def | 962 - .../grib1/localConcepts/rjtd/stepType.def | 24 - .../grib1/localConcepts/rjtd/typeOfLevel.def | 43 - .../grib1/localConcepts/rjtd/units.def | 962 - .../grib1/localConcepts/sbsj/name.def | 1136 - .../grib1/localConcepts/sbsj/paramId.def | 1136 - .../grib1/localConcepts/sbsj/shortName.def | 1136 - .../grib1/localConcepts/sbsj/units.def | 1136 - .../grib1/localDefinitionNumber.34.table | 2 - .../grib1/localDefinitionNumber.82.table | 10 - .../grib1/localDefinitionNumber.96.table | 1 - .../grib1/localDefinitionNumber.98.table | 44 - .../grib1/local_no_mars.98.1.def | 66 - .../grib1/local_no_mars.98.24.def | 25 - eccodes/definitions.save/grib1/ls.def | 16 - .../definitions.save/grib1/ls_labeling.82.def | 19 - .../grib1/mars_labeling.23.def | 1 - .../grib1/mars_labeling.4.def | 193 - .../grib1/mars_labeling.82.def | 50 - .../definitions.save/grib1/mars_labeling.def | 14 - eccodes/definitions.save/grib1/name.def | 2059 -- eccodes/definitions.save/grib1/ocean.1.table | 17 - eccodes/definitions.save/grib1/param.pl | 60 - eccodes/definitions.save/grib1/paramId.def | 2059 -- .../definitions.save/grib1/precision.table | 6 - .../grib1/predefined_grid.def | 129 - eccodes/definitions.save/grib1/regimes.table | 5 - .../grib1/resolution_flags.def | 32 - .../definitions.save/grib1/scanning_mode.def | 37 - eccodes/definitions.save/grib1/section.0.def | 3 - eccodes/definitions.save/grib1/section.1.def | 327 - eccodes/definitions.save/grib1/section.2.def | 100 - eccodes/definitions.save/grib1/section.3.def | 25 - eccodes/definitions.save/grib1/section.4.def | 245 - eccodes/definitions.save/grib1/section.5.def | 8 - .../grib1/sensitive_area_domain.def | 27 - eccodes/definitions.save/grib1/shortName.def | 2059 -- eccodes/definitions.save/grib1/stepType.def | 27 - .../grib1/stepTypeForConversion.def | 3 - .../definitions.save/grib1/tube_domain.def | 7 - .../definitions.save/grib1/typeOfLevel.def | 36 - eccodes/definitions.save/grib1/units.def | 2059 -- eccodes/definitions.save/grib2/boot.def | 45 - .../grib2/boot_multifield.def | 31 - eccodes/definitions.save/grib2/cfName.def | 278 - eccodes/definitions.save/grib2/cfVarName.def | 4140 --- .../grib2/crraLocalVersion.table | 1 - .../grib2/crra_suiteName.table | 7 - eccodes/definitions.save/grib2/d | 98 - .../definitions.save/grib2/dimension.0.table | 1 - .../grib2/dimensionTableNumber.table | 1 - .../grib2/dimensionType.table | 2 - .../grib2/grib2LocalSectionNumber.82.table | 4 - .../grib2/grib2LocalSectionNumber.85.table | 3 - .../grib2/grib2LocalSectionNumber.98.table | 25 - .../grib2/lcwfv_suiteName.table | 22 - eccodes/definitions.save/grib2/local.82.0.def | 28 - .../definitions.save/grib2/local.82.82.def | 16 - .../definitions.save/grib2/local.82.83.def | 22 - eccodes/definitions.save/grib2/local.82.def | 22 - eccodes/definitions.save/grib2/local.85.0.def | 1 - eccodes/definitions.save/grib2/local.85.1.def | 29 - eccodes/definitions.save/grib2/local.85.2.def | 5 - eccodes/definitions.save/grib2/local.85.def | 3 - eccodes/definitions.save/grib2/local.98.0.def | 3 - eccodes/definitions.save/grib2/local.98.1.def | 3 - .../definitions.save/grib2/local.98.11.def | 19 - .../definitions.save/grib2/local.98.12.def | 14 - .../definitions.save/grib2/local.98.14.def | 4 - .../definitions.save/grib2/local.98.15.def | 9 - .../definitions.save/grib2/local.98.16.def | 7 - .../definitions.save/grib2/local.98.18.def | 17 - .../definitions.save/grib2/local.98.192.def | 11 - .../definitions.save/grib2/local.98.20.def | 12 - .../definitions.save/grib2/local.98.21.def | 32 - .../definitions.save/grib2/local.98.24.def | 4 - .../definitions.save/grib2/local.98.25.def | 11 - .../definitions.save/grib2/local.98.26.def | 9 - .../definitions.save/grib2/local.98.28.def | 7 - .../definitions.save/grib2/local.98.30.def | 20 - .../definitions.save/grib2/local.98.300.def | 12 - .../definitions.save/grib2/local.98.36.def | 7 - .../definitions.save/grib2/local.98.38.def | 18 - .../definitions.save/grib2/local.98.39.def | 16 - .../definitions.save/grib2/local.98.41.def | 92 - .../definitions.save/grib2/local.98.42.def | 6 - eccodes/definitions.save/grib2/local.98.5.def | 3 - .../definitions.save/grib2/local.98.500.def | 53 - eccodes/definitions.save/grib2/local.98.7.def | 16 - eccodes/definitions.save/grib2/local.98.9.def | 38 - eccodes/definitions.save/grib2/local.98.def | 33 - .../definitions.save/grib2/local.crra.1.def | 4 - .../definitions.save/grib2/local.tigge.1.def | 5 - .../grib2/local/1098/2.1.table | 1 - .../grib2/local/1098/centres.table | 12 - .../grib2/local/1098/models.table | 13 - .../grib2/local/1098/template.2.0.def | 19 - .../definitions.save/grib2/local/2.0.table | 96 - .../grib2/localConcepts/cnmc/modelName.def | 7 - .../grib2/localConcepts/cnmc/name.def | 3073 --- .../grib2/localConcepts/cnmc/paramId.def | 3073 --- .../grib2/localConcepts/cnmc/shortName.def | 3073 --- .../grib2/localConcepts/cnmc/units.def | 3073 --- .../grib2/localConcepts/ecmf/cfName.def | 633 - .../localConcepts/ecmf/cfName.legacy.def | 54 - .../grib2/localConcepts/ecmf/cfVarName.def | 22056 ---------------- .../localConcepts/ecmf/cfVarName.legacy.def | 144 - .../grib2/localConcepts/ecmf/name.def | 22056 ---------------- .../grib2/localConcepts/ecmf/name.legacy.def | 144 - .../grib2/localConcepts/ecmf/paramId.def | 22056 ---------------- .../localConcepts/ecmf/paramId.legacy.def | 144 - .../grib2/localConcepts/ecmf/shortName.def | 22056 ---------------- .../localConcepts/ecmf/shortName.legacy.def | 144 - .../grib2/localConcepts/ecmf/units.def | 22056 ---------------- .../grib2/localConcepts/ecmf/units.legacy.def | 144 - .../localConcepts/ecmf/unstructuredGrid.def | 14 - .../ecmf/unstructuredGridSubtype.def | 6 - .../ecmf/unstructuredGridType.def | 8 - .../localConcepts/edzw/default_step_units.def | 4 - .../grib2/localConcepts/edzw/modelName.def | 107 - .../grib2/localConcepts/edzw/name.def | 13809 ---------- .../grib2/localConcepts/edzw/paramId.def | 14348 ---------- .../grib2/localConcepts/edzw/shortName.def | 13809 ---------- .../grib2/localConcepts/edzw/units.def | 13809 ---------- .../grib2/localConcepts/efkl/name.def | 157 - .../grib2/localConcepts/efkl/paramId.def | 157 - .../grib2/localConcepts/efkl/shortName.def | 157 - .../grib2/localConcepts/efkl/units.def | 157 - .../grib2/localConcepts/egrr/cfVarName.def | 84 - .../grib2/localConcepts/egrr/name.def | 84 - .../grib2/localConcepts/egrr/paramId.def | 84 - .../grib2/localConcepts/egrr/shortName.def | 84 - .../grib2/localConcepts/egrr/units.def | 84 - .../grib2/localConcepts/ekmi/name.def | 17 - .../grib2/localConcepts/ekmi/paramId.def | 17 - .../grib2/localConcepts/ekmi/shortName.def | 17 - .../grib2/localConcepts/ekmi/units.def | 17 - .../grib2/localConcepts/eswi/name.def | 3000 --- .../grib2/localConcepts/eswi/paramId.def | 3000 --- .../grib2/localConcepts/eswi/shortName.def | 3000 --- .../grib2/localConcepts/eswi/units.def | 3000 --- .../grib2/localConcepts/kwbc/name.def | 1651 -- .../grib2/localConcepts/kwbc/paramId.def | 1651 -- .../grib2/localConcepts/kwbc/shortName.def | 1651 -- .../grib2/localConcepts/kwbc/units.def | 1651 -- .../grib2/localConcepts/lfpw/faFieldName.def | 1258 - .../grib2/localConcepts/lfpw/faLevelName.def | 63 - .../grib2/localConcepts/lfpw/faModelName.def | 9 - .../grib2/localConcepts/lfpw/name.def | 21 - .../grib2/localConcepts/lfpw/paramId.def | 21 - .../grib2/localConcepts/lfpw/shortName.def | 21 - .../grib2/localConcepts/lfpw/units.def | 21 - .../grib2/localConcepts/lfpw1/name.def | 7 - .../grib2/localConcepts/lfpw1/paramId.def | 7 - .../grib2/localConcepts/lfpw1/shortName.def | 7 - .../grib2/localConcepts/lfpw1/units.def | 7 - .../grib2/localConcepts/lssw/modelName.def | 17 - eccodes/definitions.save/grib2/ls.def | 2 - .../definitions.save/grib2/ls_labeling.82.def | 23 - .../grib2/mars_labeling.82.def | 48 - .../definitions.save/grib2/mars_labeling.def | 45 - eccodes/definitions.save/grib2/meta.def | 5 - eccodes/definitions.save/grib2/modelName.def | 43 - eccodes/definitions.save/grib2/name.def | 4140 --- eccodes/definitions.save/grib2/paramId.def | 4140 --- eccodes/definitions.save/grib2/parameters.def | 35 - eccodes/definitions.save/grib2/products_0.def | 11 - eccodes/definitions.save/grib2/products_1.def | 11 - .../definitions.save/grib2/products_10.def | 5 - .../definitions.save/grib2/products_11.def | 5 - eccodes/definitions.save/grib2/products_2.def | 11 - eccodes/definitions.save/grib2/products_3.def | 11 - eccodes/definitions.save/grib2/products_4.def | 5 - eccodes/definitions.save/grib2/products_5.def | 5 - eccodes/definitions.save/grib2/products_6.def | 5 - eccodes/definitions.save/grib2/products_7.def | 5 - eccodes/definitions.save/grib2/products_8.def | 5 - eccodes/definitions.save/grib2/products_9.def | 5 - .../definitions.save/grib2/products_crra.def | 108 - .../definitions.save/grib2/products_s2s.def | 125 - .../definitions.save/grib2/products_tigge.def | 95 - .../definitions.save/grib2/products_uerra.def | 103 - eccodes/definitions.save/grib2/rules.def | 12 - eccodes/definitions.save/grib2/section.0.def | 14 - eccodes/definitions.save/grib2/section.1.def | 147 - eccodes/definitions.save/grib2/section.2.def | 45 - eccodes/definitions.save/grib2/section.3.def | 126 - eccodes/definitions.save/grib2/section.4.def | 78 - eccodes/definitions.save/grib2/section.5.def | 65 - eccodes/definitions.save/grib2/section.6.def | 63 - eccodes/definitions.save/grib2/section.7.def | 41 - eccodes/definitions.save/grib2/section.8.def | 7 - eccodes/definitions.save/grib2/sections.def | 66 - eccodes/definitions.save/grib2/shortName.def | 4140 --- .../definitions.save/grib2/tables/0.0.table | 11 - .../definitions.save/grib2/tables/0/0.0.table | 6 - .../definitions.save/grib2/tables/0/1.0.table | 5 - .../definitions.save/grib2/tables/0/1.1.table | 2 - .../definitions.save/grib2/tables/0/1.2.table | 5 - .../definitions.save/grib2/tables/0/1.3.table | 7 - .../definitions.save/grib2/tables/0/1.4.table | 10 - .../definitions.save/grib2/tables/0/3.0.table | 3 - .../definitions.save/grib2/tables/0/3.1.table | 26 - .../grib2/tables/0/3.10.table | 6 - .../grib2/tables/0/3.11.table | 4 - .../grib2/tables/0/3.15.table | 16 - .../definitions.save/grib2/tables/0/3.2.table | 8 - .../grib2/tables/0/3.20.table | 3 - .../grib2/tables/0/3.21.table | 4 - .../definitions.save/grib2/tables/0/3.3.table | 6 - .../definitions.save/grib2/tables/0/3.4.table | 8 - .../definitions.save/grib2/tables/0/3.5.table | 4 - .../definitions.save/grib2/tables/0/3.6.table | 1 - .../definitions.save/grib2/tables/0/3.7.table | 3 - .../definitions.save/grib2/tables/0/3.8.table | 5 - .../definitions.save/grib2/tables/0/3.9.table | 2 - .../definitions.save/grib2/tables/0/4.0.table | 37 - .../grib2/tables/0/4.1.0.table | 26 - .../grib2/tables/0/4.1.1.table | 5 - .../grib2/tables/0/4.1.10.table | 8 - .../grib2/tables/0/4.1.2.table | 7 - .../grib2/tables/0/4.1.3.table | 5 - .../definitions.save/grib2/tables/0/4.1.table | 4 - .../grib2/tables/0/4.10.table | 12 - .../grib2/tables/0/4.11.table | 6 - .../grib2/tables/0/4.12.table | 68 - .../grib2/tables/0/4.13.table | 66 - .../grib2/tables/0/4.14.table | 67 - .../grib2/tables/0/4.15.table | 67 - .../grib2/tables/0/4.151.table | 69 - .../grib2/tables/0/4.2.0.0.table | 20 - .../grib2/tables/0/4.2.0.1.table | 63 - .../grib2/tables/0/4.2.0.13.table | 3 - .../grib2/tables/0/4.2.0.14.table | 4 - .../grib2/tables/0/4.2.0.15.table | 11 - .../grib2/tables/0/4.2.0.18.table | 11 - .../grib2/tables/0/4.2.0.19.table | 21 - .../grib2/tables/0/4.2.0.190.table | 3 - .../grib2/tables/0/4.2.0.191.table | 3 - .../grib2/tables/0/4.2.0.2.table | 32 - .../grib2/tables/0/4.2.0.20.table | 22 - .../grib2/tables/0/4.2.0.3.table | 22 - .../grib2/tables/0/4.2.0.4.table | 11 - .../grib2/tables/0/4.2.0.5.table | 8 - .../grib2/tables/0/4.2.0.6.table | 27 - .../grib2/tables/0/4.2.0.7.table | 15 - .../grib2/tables/0/4.2.1.0.table | 8 - .../grib2/tables/0/4.2.1.1.table | 5 - .../grib2/tables/0/4.2.10.0.table | 17 - .../grib2/tables/0/4.2.10.1.table | 5 - .../grib2/tables/0/4.2.10.2.table | 9 - .../grib2/tables/0/4.2.10.3.table | 3 - .../grib2/tables/0/4.2.10.4.table | 6 - .../grib2/tables/0/4.2.2.0.table | 26 - .../grib2/tables/0/4.2.2.3.table | 13 - .../grib2/tables/0/4.2.3.0.table | 11 - .../grib2/tables/0/4.2.3.1.table | 8 - .../grib2/tables/0/4.201.table | 70 - .../grib2/tables/0/4.202.table | 65 - .../grib2/tables/0/4.203.table | 23 - .../grib2/tables/0/4.204.table | 70 - .../grib2/tables/0/4.205.table | 67 - .../grib2/tables/0/4.206.table | 67 - .../grib2/tables/0/4.207.table | 69 - .../grib2/tables/0/4.208.table | 70 - .../grib2/tables/0/4.209.table | 69 - .../grib2/tables/0/4.210.table | 67 - .../grib2/tables/0/4.211.table | 68 - .../grib2/tables/0/4.212.table | 78 - .../grib2/tables/0/4.213.table | 76 - .../grib2/tables/0/4.215.table | 9 - .../grib2/tables/0/4.216.table | 2 - .../grib2/tables/0/4.217.table | 69 - .../grib2/tables/0/4.220.table | 67 - .../grib2/tables/0/4.221.table | 67 - .../grib2/tables/0/4.230.table | 114 - .../definitions.save/grib2/tables/0/4.3.table | 10 - .../definitions.save/grib2/tables/0/4.4.table | 13 - .../definitions.save/grib2/tables/0/4.5.table | 26 - .../definitions.save/grib2/tables/0/4.6.table | 6 - .../definitions.save/grib2/tables/0/4.7.table | 72 - .../definitions.save/grib2/tables/0/4.8.table | 67 - .../definitions.save/grib2/tables/0/4.9.table | 70 - .../grib2/tables/0/4.91.table | 77 - .../definitions.save/grib2/tables/0/5.0.table | 14 - .../definitions.save/grib2/tables/0/5.1.table | 3 - .../definitions.save/grib2/tables/0/5.2.table | 4 - .../definitions.save/grib2/tables/0/5.3.table | 4 - .../definitions.save/grib2/tables/0/5.4.table | 3 - .../grib2/tables/0/5.40.table | 3 - .../grib2/tables/0/5.40000.table | 3 - .../definitions.save/grib2/tables/0/5.5.table | 5 - .../definitions.save/grib2/tables/0/5.6.table | 67 - .../definitions.save/grib2/tables/0/5.7.table | 5 - .../definitions.save/grib2/tables/0/5.8.table | 2 - .../definitions.save/grib2/tables/0/5.9.table | 3 - .../definitions.save/grib2/tables/0/6.0.table | 5 - .../definitions.save/grib2/tables/1.0.table | 30 - .../definitions.save/grib2/tables/1/0.0.table | 6 - .../definitions.save/grib2/tables/1/1.0.table | 5 - .../definitions.save/grib2/tables/1/1.1.table | 2 - .../definitions.save/grib2/tables/1/1.2.table | 5 - .../definitions.save/grib2/tables/1/1.3.table | 7 - .../definitions.save/grib2/tables/1/1.4.table | 10 - .../definitions.save/grib2/tables/1/3.0.table | 3 - .../definitions.save/grib2/tables/1/3.1.table | 26 - .../grib2/tables/1/3.10.table | 6 - .../grib2/tables/1/3.11.table | 4 - .../grib2/tables/1/3.15.table | 16 - .../definitions.save/grib2/tables/1/3.2.table | 8 - .../grib2/tables/1/3.20.table | 3 - .../grib2/tables/1/3.21.table | 4 - .../definitions.save/grib2/tables/1/3.3.table | 6 - .../definitions.save/grib2/tables/1/3.4.table | 8 - .../definitions.save/grib2/tables/1/3.5.table | 4 - .../definitions.save/grib2/tables/1/3.6.table | 1 - .../definitions.save/grib2/tables/1/3.7.table | 3 - .../definitions.save/grib2/tables/1/3.8.table | 5 - .../definitions.save/grib2/tables/1/3.9.table | 2 - .../definitions.save/grib2/tables/1/4.0.table | 37 - .../grib2/tables/1/4.1.0.table | 26 - .../grib2/tables/1/4.1.1.table | 5 - .../grib2/tables/1/4.1.10.table | 8 - .../grib2/tables/1/4.1.2.table | 7 - .../grib2/tables/1/4.1.3.table | 5 - .../definitions.save/grib2/tables/1/4.1.table | 4 - .../grib2/tables/1/4.10.table | 12 - .../grib2/tables/1/4.11.table | 7 - .../grib2/tables/1/4.12.table | 68 - .../grib2/tables/1/4.13.table | 67 - .../grib2/tables/1/4.14.table | 67 - .../grib2/tables/1/4.15.table | 67 - .../grib2/tables/1/4.151.table | 69 - .../grib2/tables/1/4.2.0.0.table | 20 - .../grib2/tables/1/4.2.0.1.table | 59 - .../grib2/tables/1/4.2.0.13.table | 3 - .../grib2/tables/1/4.2.0.14.table | 4 - .../grib2/tables/1/4.2.0.15.table | 11 - .../grib2/tables/1/4.2.0.18.table | 11 - .../grib2/tables/1/4.2.0.19.table | 21 - .../grib2/tables/1/4.2.0.190.table | 3 - .../grib2/tables/1/4.2.0.191.table | 3 - .../grib2/tables/1/4.2.0.2.table | 32 - .../grib2/tables/1/4.2.0.20.table | 11 - .../grib2/tables/1/4.2.0.3.table | 22 - .../grib2/tables/1/4.2.0.4.table | 11 - .../grib2/tables/1/4.2.0.5.table | 8 - .../grib2/tables/1/4.2.0.6.table | 27 - .../grib2/tables/1/4.2.0.7.table | 15 - .../grib2/tables/1/4.2.1.0.table | 8 - .../grib2/tables/1/4.2.1.1.table | 5 - .../grib2/tables/1/4.2.10.0.table | 17 - .../grib2/tables/1/4.2.10.1.table | 5 - .../grib2/tables/1/4.2.10.2.table | 9 - .../grib2/tables/1/4.2.10.3.table | 3 - .../grib2/tables/1/4.2.10.4.table | 6 - .../grib2/tables/1/4.2.2.0.table | 26 - .../grib2/tables/1/4.2.2.3.table | 13 - .../grib2/tables/1/4.2.3.0.table | 11 - .../grib2/tables/1/4.2.3.1.table | 8 - .../grib2/tables/1/4.201.table | 70 - .../grib2/tables/1/4.202.table | 65 - .../grib2/tables/1/4.203.table | 23 - .../grib2/tables/1/4.204.table | 70 - .../grib2/tables/1/4.205.table | 67 - .../grib2/tables/1/4.206.table | 67 - .../grib2/tables/1/4.207.table | 69 - .../grib2/tables/1/4.208.table | 70 - .../grib2/tables/1/4.209.table | 69 - .../grib2/tables/1/4.210.table | 67 - .../grib2/tables/1/4.211.table | 68 - .../grib2/tables/1/4.212.table | 78 - .../grib2/tables/1/4.213.table | 76 - .../grib2/tables/1/4.215.table | 9 - .../grib2/tables/1/4.216.table | 2 - .../grib2/tables/1/4.217.table | 69 - .../grib2/tables/1/4.220.table | 67 - .../grib2/tables/1/4.221.table | 67 - .../grib2/tables/1/4.230.table | 43 - .../definitions.save/grib2/tables/1/4.3.table | 10 - .../definitions.save/grib2/tables/1/4.4.table | 13 - .../definitions.save/grib2/tables/1/4.5.table | 26 - .../definitions.save/grib2/tables/1/4.6.table | 6 - .../definitions.save/grib2/tables/1/4.7.table | 72 - .../definitions.save/grib2/tables/1/4.8.table | 67 - .../definitions.save/grib2/tables/1/4.9.table | 70 - .../grib2/tables/1/4.91.table | 77 - .../definitions.save/grib2/tables/1/5.0.table | 14 - .../definitions.save/grib2/tables/1/5.1.table | 3 - .../definitions.save/grib2/tables/1/5.2.table | 4 - .../definitions.save/grib2/tables/1/5.3.table | 4 - .../definitions.save/grib2/tables/1/5.4.table | 3 - .../grib2/tables/1/5.40.table | 3 - .../grib2/tables/1/5.40000.table | 3 - .../definitions.save/grib2/tables/1/5.5.table | 5 - .../definitions.save/grib2/tables/1/5.6.table | 67 - .../definitions.save/grib2/tables/1/5.7.table | 5 - .../definitions.save/grib2/tables/1/5.8.table | 2 - .../definitions.save/grib2/tables/1/5.9.table | 3 - .../definitions.save/grib2/tables/1/6.0.table | 5 - .../grib2/tables/10/0.0.table | 10 - .../grib2/tables/10/1.0.table | 15 - .../grib2/tables/10/1.1.table | 4 - .../grib2/tables/10/1.2.table | 8 - .../grib2/tables/10/1.3.table | 10 - .../grib2/tables/10/1.4.table | 13 - .../grib2/tables/10/3.0.table | 6 - .../grib2/tables/10/3.1.table | 47 - .../grib2/tables/10/3.10.table | 8 - .../grib2/tables/10/3.11.table | 7 - .../grib2/tables/10/3.15.table | 23 - .../grib2/tables/10/3.2.table | 14 - .../grib2/tables/10/3.20.table | 6 - .../grib2/tables/10/3.21.table | 8 - .../grib2/tables/10/3.3.table | 9 - .../grib2/tables/10/3.4.table | 10 - .../grib2/tables/10/3.5.table | 5 - .../grib2/tables/10/3.6.table | 2 - .../grib2/tables/10/3.7.table | 5 - .../grib2/tables/10/3.8.table | 7 - .../grib2/tables/10/3.9.table | 4 - .../grib2/tables/10/4.0.table | 53 - .../grib2/tables/10/4.1.0.table | 27 - .../grib2/tables/10/4.1.1.table | 7 - .../grib2/tables/10/4.1.10.table | 10 - .../grib2/tables/10/4.1.192.table | 4 - .../grib2/tables/10/4.1.2.table | 9 - .../grib2/tables/10/4.1.3.table | 8 - .../grib2/tables/10/4.1.table | 5 - .../grib2/tables/10/4.10.table | 16 - .../grib2/tables/10/4.11.table | 10 - .../grib2/tables/10/4.12.table | 7 - .../grib2/tables/10/4.13.table | 6 - .../grib2/tables/10/4.14.table | 6 - .../grib2/tables/10/4.15.table | 11 - .../grib2/tables/10/4.151.table | 70 - .../grib2/tables/10/4.192.table | 4 - .../grib2/tables/10/4.2.0.0.table | 25 - .../grib2/tables/10/4.2.0.1.table | 95 - .../grib2/tables/10/4.2.0.13.table | 5 - .../grib2/tables/10/4.2.0.14.table | 7 - .../grib2/tables/10/4.2.0.15.table | 19 - .../grib2/tables/10/4.2.0.16.table | 10 - .../grib2/tables/10/4.2.0.18.table | 18 - .../grib2/tables/10/4.2.0.19.table | 32 - .../grib2/tables/10/4.2.0.190.table | 5 - .../grib2/tables/10/4.2.0.191.table | 7 - .../grib2/tables/10/4.2.0.2.table | 40 - .../grib2/tables/10/4.2.0.20.table | 42 - .../grib2/tables/10/4.2.0.3.table | 31 - .../grib2/tables/10/4.2.0.4.table | 20 - .../grib2/tables/10/4.2.0.5.table | 11 - .../grib2/tables/10/4.2.0.6.table | 40 - .../grib2/tables/10/4.2.0.7.table | 20 - .../grib2/tables/10/4.2.1.0.table | 11 - .../grib2/tables/10/4.2.1.1.table | 7 - .../grib2/tables/10/4.2.1.2.table | 14 - .../grib2/tables/10/4.2.10.0.table | 50 - .../grib2/tables/10/4.2.10.1.table | 8 - .../grib2/tables/10/4.2.10.191.table | 6 - .../grib2/tables/10/4.2.10.2.table | 14 - .../grib2/tables/10/4.2.10.3.table | 6 - .../grib2/tables/10/4.2.10.4.table | 18 - .../grib2/tables/10/4.2.2.0.table | 37 - .../grib2/tables/10/4.2.2.3.table | 27 - .../grib2/tables/10/4.2.2.4.table | 8 - .../grib2/tables/10/4.2.3.0.table | 14 - .../grib2/tables/10/4.2.3.1.table | 28 - .../grib2/tables/10/4.201.table | 10 - .../grib2/tables/10/4.202.table | 4 - .../grib2/tables/10/4.203.table | 26 - .../grib2/tables/10/4.204.table | 9 - .../grib2/tables/10/4.205.table | 6 - .../grib2/tables/10/4.206.table | 6 - .../grib2/tables/10/4.207.table | 10 - .../grib2/tables/10/4.208.table | 9 - .../grib2/tables/10/4.209.table | 9 - .../grib2/tables/10/4.210.table | 6 - .../grib2/tables/10/4.211.table | 7 - .../grib2/tables/10/4.212.table | 18 - .../grib2/tables/10/4.213.table | 16 - .../grib2/tables/10/4.215.table | 9 - .../grib2/tables/10/4.216.table | 5 - .../grib2/tables/10/4.217.table | 8 - .../grib2/tables/10/4.218.table | 38 - .../grib2/tables/10/4.219.table | 8 - .../grib2/tables/10/4.220.table | 6 - .../grib2/tables/10/4.221.table | 6 - .../grib2/tables/10/4.222.table | 6 - .../grib2/tables/10/4.223.table | 5 - .../grib2/tables/10/4.224.table | 18 - .../grib2/tables/10/4.225.table | 2 - .../grib2/tables/10/4.227.table | 9 - .../grib2/tables/10/4.230.table | 407 - .../grib2/tables/10/4.233.table | 3 - .../grib2/tables/10/4.234.table | 21 - .../grib2/tables/10/4.235.table | 8 - .../grib2/tables/10/4.3.table | 16 - .../grib2/tables/10/4.4.table | 17 - .../grib2/tables/10/4.5.table | 49 - .../grib2/tables/10/4.6.table | 9 - .../grib2/tables/10/4.7.table | 14 - .../grib2/tables/10/4.8.table | 6 - .../grib2/tables/10/4.9.table | 9 - .../grib2/tables/10/4.91.table | 16 - .../grib2/tables/10/5.0.table | 24 - .../grib2/tables/10/5.1.table | 6 - .../grib2/tables/10/5.2.table | 8 - .../grib2/tables/10/5.3.table | 7 - .../grib2/tables/10/5.4.table | 6 - .../grib2/tables/10/5.40.table | 5 - .../grib2/tables/10/5.40000.table | 5 - .../grib2/tables/10/5.5.table | 7 - .../grib2/tables/10/5.50002.table | 19 - .../grib2/tables/10/5.6.table | 7 - .../grib2/tables/10/5.7.table | 7 - .../grib2/tables/10/5.8.table | 3 - .../grib2/tables/10/5.9.table | 4 - .../grib2/tables/10/6.0.table | 6 - .../grib2/tables/10/stepType.table | 2 - .../grib2/tables/11/0.0.table | 10 - .../grib2/tables/11/1.0.table | 15 - .../grib2/tables/11/1.1.table | 4 - .../grib2/tables/11/1.2.table | 8 - .../grib2/tables/11/1.3.table | 12 - .../grib2/tables/11/1.4.table | 13 - .../grib2/tables/11/3.0.table | 6 - .../grib2/tables/11/3.1.table | 47 - .../grib2/tables/11/3.10.table | 8 - .../grib2/tables/11/3.11.table | 7 - .../grib2/tables/11/3.15.table | 23 - .../grib2/tables/11/3.2.table | 14 - .../grib2/tables/11/3.20.table | 6 - .../grib2/tables/11/3.21.table | 8 - .../grib2/tables/11/3.3.table | 9 - .../grib2/tables/11/3.4.table | 10 - .../grib2/tables/11/3.5.table | 5 - .../grib2/tables/11/3.6.table | 2 - .../grib2/tables/11/3.7.table | 5 - .../grib2/tables/11/3.8.table | 7 - .../grib2/tables/11/3.9.table | 4 - .../grib2/tables/11/4.0.table | 59 - .../grib2/tables/11/4.1.0.table | 27 - .../grib2/tables/11/4.1.1.table | 7 - .../grib2/tables/11/4.1.10.table | 10 - .../grib2/tables/11/4.1.192.table | 4 - .../grib2/tables/11/4.1.2.table | 9 - .../grib2/tables/11/4.1.3.table | 8 - .../grib2/tables/11/4.10.table | 16 - .../grib2/tables/11/4.11.table | 10 - .../grib2/tables/11/4.12.table | 7 - .../grib2/tables/11/4.13.table | 6 - .../grib2/tables/11/4.14.table | 6 - .../grib2/tables/11/4.15.table | 11 - .../grib2/tables/11/4.192.table | 4 - .../grib2/tables/11/4.2.0.0.table | 25 - .../grib2/tables/11/4.2.0.1.table | 95 - .../grib2/tables/11/4.2.0.13.table | 5 - .../grib2/tables/11/4.2.0.14.table | 7 - .../grib2/tables/11/4.2.0.15.table | 19 - .../grib2/tables/11/4.2.0.16.table | 10 - .../grib2/tables/11/4.2.0.18.table | 18 - .../grib2/tables/11/4.2.0.19.table | 32 - .../grib2/tables/11/4.2.0.190.table | 5 - .../grib2/tables/11/4.2.0.191.table | 7 - .../grib2/tables/11/4.2.0.2.table | 40 - .../grib2/tables/11/4.2.0.20.table | 42 - .../grib2/tables/11/4.2.0.3.table | 31 - .../grib2/tables/11/4.2.0.4.table | 20 - .../grib2/tables/11/4.2.0.5.table | 11 - .../grib2/tables/11/4.2.0.6.table | 40 - .../grib2/tables/11/4.2.0.7.table | 20 - .../grib2/tables/11/4.2.1.0.table | 11 - .../grib2/tables/11/4.2.1.1.table | 7 - .../grib2/tables/11/4.2.1.2.table | 14 - .../grib2/tables/11/4.2.10.0.table | 50 - .../grib2/tables/11/4.2.10.1.table | 8 - .../grib2/tables/11/4.2.10.191.table | 6 - .../grib2/tables/11/4.2.10.2.table | 14 - .../grib2/tables/11/4.2.10.3.table | 6 - .../grib2/tables/11/4.2.10.4.table | 18 - .../grib2/tables/11/4.2.2.0.table | 37 - .../grib2/tables/11/4.2.2.3.table | 27 - .../grib2/tables/11/4.2.2.4.table | 8 - .../grib2/tables/11/4.2.3.0.table | 14 - .../grib2/tables/11/4.2.3.1.table | 28 - .../grib2/tables/11/4.201.table | 10 - .../grib2/tables/11/4.202.table | 4 - .../grib2/tables/11/4.203.table | 26 - .../grib2/tables/11/4.204.table | 9 - .../grib2/tables/11/4.205.table | 6 - .../grib2/tables/11/4.206.table | 6 - .../grib2/tables/11/4.207.table | 10 - .../grib2/tables/11/4.208.table | 9 - .../grib2/tables/11/4.209.table | 9 - .../grib2/tables/11/4.210.table | 6 - .../grib2/tables/11/4.211.table | 7 - .../grib2/tables/11/4.212.table | 18 - .../grib2/tables/11/4.213.table | 16 - .../grib2/tables/11/4.215.table | 9 - .../grib2/tables/11/4.216.table | 5 - .../grib2/tables/11/4.217.table | 8 - .../grib2/tables/11/4.218.table | 38 - .../grib2/tables/11/4.219.table | 8 - .../grib2/tables/11/4.220.table | 6 - .../grib2/tables/11/4.221.table | 6 - .../grib2/tables/11/4.222.table | 6 - .../grib2/tables/11/4.223.table | 5 - .../grib2/tables/11/4.224.table | 18 - .../grib2/tables/11/4.225.table | 2 - .../grib2/tables/11/4.227.table | 9 - .../grib2/tables/11/4.230.table | 407 - .../grib2/tables/11/4.233.table | 3 - .../grib2/tables/11/4.234.table | 21 - .../grib2/tables/11/4.236.table | 9 - .../grib2/tables/11/4.3.table | 16 - .../grib2/tables/11/4.4.table | 17 - .../grib2/tables/11/4.5.table | 49 - .../grib2/tables/11/4.6.table | 9 - .../grib2/tables/11/4.7.table | 14 - .../grib2/tables/11/4.8.table | 6 - .../grib2/tables/11/4.9.table | 9 - .../grib2/tables/11/4.91.table | 16 - .../grib2/tables/11/5.0.table | 24 - .../grib2/tables/11/5.1.table | 6 - .../grib2/tables/11/5.2.table | 8 - .../grib2/tables/11/5.3.table | 7 - .../grib2/tables/11/5.4.table | 6 - .../grib2/tables/11/5.40.table | 5 - .../grib2/tables/11/5.40000.table | 5 - .../grib2/tables/11/5.5.table | 7 - .../grib2/tables/11/5.50002.table | 19 - .../grib2/tables/11/5.6.table | 7 - .../grib2/tables/11/5.7.table | 7 - .../grib2/tables/11/5.8.table | 3 - .../grib2/tables/11/5.9.table | 4 - .../grib2/tables/11/6.0.table | 6 - .../grib2/tables/11/stepType.table | 2 - .../grib2/tables/12/0.0.table | 10 - .../grib2/tables/12/1.0.table | 17 - .../grib2/tables/12/1.1.table | 4 - .../grib2/tables/12/1.2.table | 8 - .../grib2/tables/12/1.3.table | 12 - .../grib2/tables/12/1.4.table | 13 - .../grib2/tables/12/1.5.table | 7 - .../grib2/tables/12/1.6.table | 8 - .../grib2/tables/12/3.0.table | 6 - .../grib2/tables/12/3.1.table | 47 - .../grib2/tables/12/3.10.table | 8 - .../grib2/tables/12/3.11.table | 7 - .../grib2/tables/12/3.15.table | 23 - .../grib2/tables/12/3.2.table | 14 - .../grib2/tables/12/3.20.table | 6 - .../grib2/tables/12/3.21.table | 8 - .../grib2/tables/12/3.3.table | 9 - .../grib2/tables/12/3.4.table | 10 - .../grib2/tables/12/3.5.table | 5 - .../grib2/tables/12/3.6.table | 2 - .../grib2/tables/12/3.7.table | 5 - .../grib2/tables/12/3.8.table | 7 - .../grib2/tables/12/3.9.table | 4 - .../grib2/tables/12/4.0.table | 61 - .../grib2/tables/12/4.1.0.table | 27 - .../grib2/tables/12/4.1.1.table | 7 - .../grib2/tables/12/4.1.10.table | 10 - .../grib2/tables/12/4.1.192.table | 4 - .../grib2/tables/12/4.1.2.table | 9 - .../grib2/tables/12/4.1.3.table | 6 - .../grib2/tables/12/4.10.table | 16 - .../grib2/tables/12/4.11.table | 10 - .../grib2/tables/12/4.12.table | 7 - .../grib2/tables/12/4.13.table | 6 - .../grib2/tables/12/4.14.table | 6 - .../grib2/tables/12/4.15.table | 11 - .../grib2/tables/12/4.192.table | 4 - .../grib2/tables/12/4.2.0.0.table | 25 - .../grib2/tables/12/4.2.0.1.table | 95 - .../grib2/tables/12/4.2.0.13.table | 5 - .../grib2/tables/12/4.2.0.14.table | 7 - .../grib2/tables/12/4.2.0.15.table | 19 - .../grib2/tables/12/4.2.0.16.table | 10 - .../grib2/tables/12/4.2.0.18.table | 18 - .../grib2/tables/12/4.2.0.19.table | 32 - .../grib2/tables/12/4.2.0.190.table | 5 - .../grib2/tables/12/4.2.0.191.table | 7 - .../grib2/tables/12/4.2.0.2.table | 40 - .../grib2/tables/12/4.2.0.20.table | 42 - .../grib2/tables/12/4.2.0.3.table | 31 - .../grib2/tables/12/4.2.0.4.table | 20 - .../grib2/tables/12/4.2.0.5.table | 11 - .../grib2/tables/12/4.2.0.6.table | 40 - .../grib2/tables/12/4.2.0.7.table | 20 - .../grib2/tables/12/4.2.1.0.table | 11 - .../grib2/tables/12/4.2.1.1.table | 7 - .../grib2/tables/12/4.2.1.2.table | 14 - .../grib2/tables/12/4.2.10.0.table | 50 - .../grib2/tables/12/4.2.10.1.table | 8 - .../grib2/tables/12/4.2.10.191.table | 6 - .../grib2/tables/12/4.2.10.2.table | 14 - .../grib2/tables/12/4.2.10.3.table | 6 - .../grib2/tables/12/4.2.10.4.table | 18 - .../grib2/tables/12/4.2.2.0.table | 37 - .../grib2/tables/12/4.2.2.3.table | 27 - .../grib2/tables/12/4.2.2.4.table | 8 - .../grib2/tables/12/4.2.3.0.table | 14 - .../grib2/tables/12/4.2.3.1.table | 28 - .../grib2/tables/12/4.201.table | 15 - .../grib2/tables/12/4.202.table | 4 - .../grib2/tables/12/4.203.table | 26 - .../grib2/tables/12/4.204.table | 9 - .../grib2/tables/12/4.205.table | 6 - .../grib2/tables/12/4.206.table | 6 - .../grib2/tables/12/4.207.table | 10 - .../grib2/tables/12/4.208.table | 9 - .../grib2/tables/12/4.209.table | 9 - .../grib2/tables/12/4.210.table | 6 - .../grib2/tables/12/4.211.table | 7 - .../grib2/tables/12/4.212.table | 18 - .../grib2/tables/12/4.213.table | 16 - .../grib2/tables/12/4.215.table | 9 - .../grib2/tables/12/4.216.table | 5 - .../grib2/tables/12/4.217.table | 8 - .../grib2/tables/12/4.218.table | 38 - .../grib2/tables/12/4.219.table | 8 - .../grib2/tables/12/4.220.table | 6 - .../grib2/tables/12/4.221.table | 6 - .../grib2/tables/12/4.222.table | 6 - .../grib2/tables/12/4.223.table | 5 - .../grib2/tables/12/4.224.table | 18 - .../grib2/tables/12/4.225.table | 2 - .../grib2/tables/12/4.227.table | 9 - .../grib2/tables/12/4.230.table | 413 - .../grib2/tables/12/4.233.table | 3 - .../grib2/tables/12/4.234.table | 21 - .../grib2/tables/12/4.236.table | 8 - .../grib2/tables/12/4.3.table | 16 - .../grib2/tables/12/4.4.table | 17 - .../grib2/tables/12/4.5.table | 49 - .../grib2/tables/12/4.6.table | 9 - .../grib2/tables/12/4.7.table | 14 - .../grib2/tables/12/4.8.table | 6 - .../grib2/tables/12/4.9.table | 9 - .../grib2/tables/12/4.91.table | 16 - .../grib2/tables/12/5.0.table | 24 - .../grib2/tables/12/5.1.table | 6 - .../grib2/tables/12/5.2.table | 8 - .../grib2/tables/12/5.3.table | 7 - .../grib2/tables/12/5.4.table | 6 - .../grib2/tables/12/5.40.table | 5 - .../grib2/tables/12/5.40000.table | 5 - .../grib2/tables/12/5.5.table | 7 - .../grib2/tables/12/5.50002.table | 19 - .../grib2/tables/12/5.6.table | 7 - .../grib2/tables/12/5.7.table | 7 - .../grib2/tables/12/5.8.table | 3 - .../grib2/tables/12/5.9.table | 4 - .../grib2/tables/12/6.0.table | 6 - .../grib2/tables/12/stepType.table | 2 - .../grib2/tables/13/0.0.table | 10 - .../grib2/tables/13/1.0.table | 18 - .../grib2/tables/13/1.1.table | 4 - .../grib2/tables/13/1.2.table | 8 - .../grib2/tables/13/1.3.table | 12 - .../grib2/tables/13/1.4.table | 13 - .../grib2/tables/13/1.5.table | 7 - .../grib2/tables/13/1.6.table | 8 - .../grib2/tables/13/3.0.table | 6 - .../grib2/tables/13/3.1.table | 47 - .../grib2/tables/13/3.10.table | 8 - .../grib2/tables/13/3.11.table | 7 - .../grib2/tables/13/3.15.table | 23 - .../grib2/tables/13/3.2.table | 14 - .../grib2/tables/13/3.20.table | 6 - .../grib2/tables/13/3.21.table | 8 - .../grib2/tables/13/3.3.table | 9 - .../grib2/tables/13/3.4.table | 10 - .../grib2/tables/13/3.5.table | 5 - .../grib2/tables/13/3.6.table | 2 - .../grib2/tables/13/3.7.table | 5 - .../grib2/tables/13/3.8.table | 7 - .../grib2/tables/13/3.9.table | 4 - .../grib2/tables/13/4.0.table | 62 - .../grib2/tables/13/4.1.0.table | 27 - .../grib2/tables/13/4.1.1.table | 7 - .../grib2/tables/13/4.1.10.table | 10 - .../grib2/tables/13/4.1.192.table | 4 - .../grib2/tables/13/4.1.2.table | 9 - .../grib2/tables/13/4.1.3.table | 6 - .../grib2/tables/13/4.10.table | 16 - .../grib2/tables/13/4.11.table | 10 - .../grib2/tables/13/4.12.table | 7 - .../grib2/tables/13/4.13.table | 6 - .../grib2/tables/13/4.14.table | 6 - .../grib2/tables/13/4.15.table | 11 - .../grib2/tables/13/4.192.table | 4 - .../grib2/tables/13/4.2.0.0.table | 26 - .../grib2/tables/13/4.2.0.1.table | 95 - .../grib2/tables/13/4.2.0.13.table | 5 - .../grib2/tables/13/4.2.0.14.table | 7 - .../grib2/tables/13/4.2.0.15.table | 19 - .../grib2/tables/13/4.2.0.16.table | 10 - .../grib2/tables/13/4.2.0.17.table | 2 - .../grib2/tables/13/4.2.0.18.table | 18 - .../grib2/tables/13/4.2.0.19.table | 32 - .../grib2/tables/13/4.2.0.190.table | 5 - .../grib2/tables/13/4.2.0.191.table | 8 - .../grib2/tables/13/4.2.0.2.table | 43 - .../grib2/tables/13/4.2.0.20.table | 42 - .../grib2/tables/13/4.2.0.3.table | 31 - .../grib2/tables/13/4.2.0.4.table | 20 - .../grib2/tables/13/4.2.0.5.table | 11 - .../grib2/tables/13/4.2.0.6.table | 40 - .../grib2/tables/13/4.2.0.7.table | 20 - .../grib2/tables/13/4.2.1.0.table | 12 - .../grib2/tables/13/4.2.1.1.table | 7 - .../grib2/tables/13/4.2.1.2.table | 14 - .../grib2/tables/13/4.2.10.0.table | 50 - .../grib2/tables/13/4.2.10.1.table | 8 - .../grib2/tables/13/4.2.10.191.table | 8 - .../grib2/tables/13/4.2.10.2.table | 17 - .../grib2/tables/13/4.2.10.3.table | 6 - .../grib2/tables/13/4.2.10.4.table | 18 - .../grib2/tables/13/4.2.2.0.table | 39 - .../grib2/tables/13/4.2.2.3.table | 27 - .../grib2/tables/13/4.2.2.4.table | 9 - .../grib2/tables/13/4.2.3.0.table | 14 - .../grib2/tables/13/4.2.3.1.table | 28 - .../grib2/tables/13/4.201.table | 15 - .../grib2/tables/13/4.202.table | 4 - .../grib2/tables/13/4.203.table | 26 - .../grib2/tables/13/4.204.table | 9 - .../grib2/tables/13/4.205.table | 6 - .../grib2/tables/13/4.206.table | 6 - .../grib2/tables/13/4.207.table | 10 - .../grib2/tables/13/4.208.table | 9 - .../grib2/tables/13/4.209.table | 9 - .../grib2/tables/13/4.210.table | 6 - .../grib2/tables/13/4.211.table | 7 - .../grib2/tables/13/4.212.table | 18 - .../grib2/tables/13/4.213.table | 16 - .../grib2/tables/13/4.215.table | 9 - .../grib2/tables/13/4.216.table | 5 - .../grib2/tables/13/4.217.table | 8 - .../grib2/tables/13/4.218.table | 38 - .../grib2/tables/13/4.219.table | 8 - .../grib2/tables/13/4.220.table | 6 - .../grib2/tables/13/4.221.table | 6 - .../grib2/tables/13/4.222.table | 6 - .../grib2/tables/13/4.223.table | 5 - .../grib2/tables/13/4.224.table | 18 - .../grib2/tables/13/4.225.table | 2 - .../grib2/tables/13/4.227.table | 9 - .../grib2/tables/13/4.230.table | 413 - .../grib2/tables/13/4.233.table | 3 - .../grib2/tables/13/4.234.table | 21 - .../grib2/tables/13/4.236.table | 8 - .../grib2/tables/13/4.3.table | 18 - .../grib2/tables/13/4.4.table | 17 - .../grib2/tables/13/4.5.table | 50 - .../grib2/tables/13/4.6.table | 9 - .../grib2/tables/13/4.7.table | 14 - .../grib2/tables/13/4.8.table | 6 - .../grib2/tables/13/4.9.table | 9 - .../grib2/tables/13/4.91.table | 16 - .../grib2/tables/13/5.0.table | 24 - .../grib2/tables/13/5.1.table | 6 - .../grib2/tables/13/5.2.table | 8 - .../grib2/tables/13/5.3.table | 7 - .../grib2/tables/13/5.4.table | 6 - .../grib2/tables/13/5.40.table | 5 - .../grib2/tables/13/5.40000.table | 5 - .../grib2/tables/13/5.5.table | 7 - .../grib2/tables/13/5.50002.table | 19 - .../grib2/tables/13/5.6.table | 7 - .../grib2/tables/13/5.7.table | 7 - .../grib2/tables/13/5.8.table | 3 - .../grib2/tables/13/5.9.table | 4 - .../grib2/tables/13/6.0.table | 6 - .../grib2/tables/13/stepType.table | 2 - .../grib2/tables/14/0.0.table | 10 - .../grib2/tables/14/1.0.table | 19 - .../grib2/tables/14/1.1.table | 4 - .../grib2/tables/14/1.2.table | 8 - .../grib2/tables/14/1.3.table | 14 - .../grib2/tables/14/1.4.table | 13 - .../grib2/tables/14/1.5.table | 7 - .../grib2/tables/14/1.6.table | 8 - .../grib2/tables/14/3.0.table | 6 - .../grib2/tables/14/3.1.table | 47 - .../grib2/tables/14/3.10.table | 8 - .../grib2/tables/14/3.11.table | 7 - .../grib2/tables/14/3.15.table | 23 - .../grib2/tables/14/3.2.table | 14 - .../grib2/tables/14/3.20.table | 6 - .../grib2/tables/14/3.21.table | 8 - .../grib2/tables/14/3.3.table | 9 - .../grib2/tables/14/3.4.table | 17 - .../grib2/tables/14/3.5.table | 5 - .../grib2/tables/14/3.6.table | 2 - .../grib2/tables/14/3.7.table | 5 - .../grib2/tables/14/3.8.table | 7 - .../grib2/tables/14/3.9.table | 4 - .../grib2/tables/14/4.0.table | 62 - .../grib2/tables/14/4.1.0.table | 27 - .../grib2/tables/14/4.1.1.table | 7 - .../grib2/tables/14/4.1.10.table | 10 - .../grib2/tables/14/4.1.192.table | 4 - .../grib2/tables/14/4.1.2.table | 9 - .../grib2/tables/14/4.1.3.table | 6 - .../grib2/tables/14/4.10.table | 16 - .../grib2/tables/14/4.11.table | 10 - .../grib2/tables/14/4.12.table | 7 - .../grib2/tables/14/4.13.table | 6 - .../grib2/tables/14/4.14.table | 6 - .../grib2/tables/14/4.15.table | 11 - .../grib2/tables/14/4.192.table | 4 - .../grib2/tables/14/4.2.0.0.table | 26 - .../grib2/tables/14/4.2.0.1.table | 97 - .../grib2/tables/14/4.2.0.13.table | 5 - .../grib2/tables/14/4.2.0.14.table | 7 - .../grib2/tables/14/4.2.0.15.table | 19 - .../grib2/tables/14/4.2.0.16.table | 10 - .../grib2/tables/14/4.2.0.17.table | 2 - .../grib2/tables/14/4.2.0.18.table | 18 - .../grib2/tables/14/4.2.0.19.table | 32 - .../grib2/tables/14/4.2.0.190.table | 5 - .../grib2/tables/14/4.2.0.191.table | 8 - .../grib2/tables/14/4.2.0.2.table | 43 - .../grib2/tables/14/4.2.0.20.table | 42 - .../grib2/tables/14/4.2.0.3.table | 31 - .../grib2/tables/14/4.2.0.4.table | 20 - .../grib2/tables/14/4.2.0.5.table | 11 - .../grib2/tables/14/4.2.0.6.table | 42 - .../grib2/tables/14/4.2.0.7.table | 20 - .../grib2/tables/14/4.2.1.0.table | 12 - .../grib2/tables/14/4.2.1.1.table | 7 - .../grib2/tables/14/4.2.1.2.table | 14 - .../grib2/tables/14/4.2.10.0.table | 50 - .../grib2/tables/14/4.2.10.1.table | 8 - .../grib2/tables/14/4.2.10.191.table | 8 - .../grib2/tables/14/4.2.10.2.table | 17 - .../grib2/tables/14/4.2.10.3.table | 6 - .../grib2/tables/14/4.2.10.4.table | 18 - .../grib2/tables/14/4.2.2.0.table | 42 - .../grib2/tables/14/4.2.2.3.table | 27 - .../grib2/tables/14/4.2.2.4.table | 9 - .../grib2/tables/14/4.2.3.0.table | 14 - .../grib2/tables/14/4.2.3.1.table | 28 - .../grib2/tables/14/4.201.table | 15 - .../grib2/tables/14/4.202.table | 4 - .../grib2/tables/14/4.203.table | 26 - .../grib2/tables/14/4.204.table | 9 - .../grib2/tables/14/4.205.table | 6 - .../grib2/tables/14/4.206.table | 6 - .../grib2/tables/14/4.207.table | 10 - .../grib2/tables/14/4.208.table | 9 - .../grib2/tables/14/4.209.table | 9 - .../grib2/tables/14/4.210.table | 6 - .../grib2/tables/14/4.211.table | 7 - .../grib2/tables/14/4.212.table | 18 - .../grib2/tables/14/4.213.table | 16 - .../grib2/tables/14/4.215.table | 9 - .../grib2/tables/14/4.216.table | 5 - .../grib2/tables/14/4.217.table | 8 - .../grib2/tables/14/4.218.table | 38 - .../grib2/tables/14/4.219.table | 8 - .../grib2/tables/14/4.220.table | 6 - .../grib2/tables/14/4.221.table | 6 - .../grib2/tables/14/4.222.table | 6 - .../grib2/tables/14/4.223.table | 5 - .../grib2/tables/14/4.224.table | 18 - .../grib2/tables/14/4.225.table | 2 - .../grib2/tables/14/4.227.table | 9 - .../grib2/tables/14/4.230.table | 412 - .../grib2/tables/14/4.233.table | 3 - .../grib2/tables/14/4.234.table | 21 - .../grib2/tables/14/4.236.table | 8 - .../grib2/tables/14/4.241.table | 9 - .../grib2/tables/14/4.242.table | 7 - .../grib2/tables/14/4.243.table | 43 - .../grib2/tables/14/4.3.table | 20 - .../grib2/tables/14/4.4.table | 17 - .../grib2/tables/14/4.5.table | 50 - .../grib2/tables/14/4.6.table | 9 - .../grib2/tables/14/4.7.table | 14 - .../grib2/tables/14/4.8.table | 6 - .../grib2/tables/14/4.9.table | 9 - .../grib2/tables/14/4.91.table | 16 - .../grib2/tables/14/5.0.table | 24 - .../grib2/tables/14/5.1.table | 6 - .../grib2/tables/14/5.2.table | 8 - .../grib2/tables/14/5.3.table | 7 - .../grib2/tables/14/5.4.table | 6 - .../grib2/tables/14/5.40.table | 5 - .../grib2/tables/14/5.40000.table | 5 - .../grib2/tables/14/5.5.table | 7 - .../grib2/tables/14/5.50002.table | 19 - .../grib2/tables/14/5.6.table | 7 - .../grib2/tables/14/5.7.table | 7 - .../grib2/tables/14/5.8.table | 3 - .../grib2/tables/14/5.9.table | 4 - .../grib2/tables/14/6.0.table | 6 - .../grib2/tables/14/stepType.table | 2 - .../grib2/tables/15/0.0.table | 10 - .../grib2/tables/15/1.0.table | 20 - .../grib2/tables/15/1.1.table | 4 - .../grib2/tables/15/1.2.table | 8 - .../grib2/tables/15/1.3.table | 14 - .../grib2/tables/15/1.4.table | 13 - .../grib2/tables/15/1.5.table | 7 - .../grib2/tables/15/1.6.table | 8 - .../grib2/tables/15/3.0.table | 6 - .../grib2/tables/15/3.1.table | 47 - .../grib2/tables/15/3.10.table | 8 - .../grib2/tables/15/3.11.table | 7 - .../grib2/tables/15/3.15.table | 23 - .../grib2/tables/15/3.2.table | 14 - .../grib2/tables/15/3.20.table | 6 - .../grib2/tables/15/3.21.table | 8 - .../grib2/tables/15/3.3.table | 9 - .../grib2/tables/15/3.4.table | 17 - .../grib2/tables/15/3.5.table | 5 - .../grib2/tables/15/3.6.table | 2 - .../grib2/tables/15/3.7.table | 5 - .../grib2/tables/15/3.8.table | 7 - .../grib2/tables/15/3.9.table | 4 - .../grib2/tables/15/4.0.table | 64 - .../grib2/tables/15/4.1.0.table | 27 - .../grib2/tables/15/4.1.1.table | 7 - .../grib2/tables/15/4.1.10.table | 10 - .../grib2/tables/15/4.1.192.table | 4 - .../grib2/tables/15/4.1.2.table | 9 - .../grib2/tables/15/4.1.3.table | 6 - .../grib2/tables/15/4.10.table | 16 - .../grib2/tables/15/4.11.table | 10 - .../grib2/tables/15/4.12.table | 7 - .../grib2/tables/15/4.13.table | 6 - .../grib2/tables/15/4.14.table | 6 - .../grib2/tables/15/4.15.table | 11 - .../grib2/tables/15/4.192.table | 4 - .../grib2/tables/15/4.2.0.0.table | 26 - .../grib2/tables/15/4.2.0.1.table | 110 - .../grib2/tables/15/4.2.0.13.table | 5 - .../grib2/tables/15/4.2.0.14.table | 7 - .../grib2/tables/15/4.2.0.15.table | 21 - .../grib2/tables/15/4.2.0.16.table | 10 - .../grib2/tables/15/4.2.0.17.table | 2 - .../grib2/tables/15/4.2.0.18.table | 18 - .../grib2/tables/15/4.2.0.19.table | 32 - .../grib2/tables/15/4.2.0.190.table | 5 - .../grib2/tables/15/4.2.0.191.table | 8 - .../grib2/tables/15/4.2.0.2.table | 43 - .../grib2/tables/15/4.2.0.20.table | 42 - .../grib2/tables/15/4.2.0.3.table | 31 - .../grib2/tables/15/4.2.0.4.table | 20 - .../grib2/tables/15/4.2.0.5.table | 12 - .../grib2/tables/15/4.2.0.6.table | 44 - .../grib2/tables/15/4.2.0.7.table | 20 - .../grib2/tables/15/4.2.1.0.table | 12 - .../grib2/tables/15/4.2.1.1.table | 7 - .../grib2/tables/15/4.2.1.2.table | 14 - .../grib2/tables/15/4.2.10.0.table | 50 - .../grib2/tables/15/4.2.10.1.table | 8 - .../grib2/tables/15/4.2.10.191.table | 8 - .../grib2/tables/15/4.2.10.2.table | 17 - .../grib2/tables/15/4.2.10.3.table | 6 - .../grib2/tables/15/4.2.10.4.table | 18 - .../grib2/tables/15/4.2.2.0.table | 43 - .../grib2/tables/15/4.2.2.3.table | 28 - .../grib2/tables/15/4.2.2.4.table | 9 - .../grib2/tables/15/4.2.2.5.table | 2 - .../grib2/tables/15/4.2.3.0.table | 14 - .../grib2/tables/15/4.2.3.1.table | 28 - .../grib2/tables/15/4.201.table | 15 - .../grib2/tables/15/4.202.table | 4 - .../grib2/tables/15/4.203.table | 26 - .../grib2/tables/15/4.204.table | 9 - .../grib2/tables/15/4.205.table | 6 - .../grib2/tables/15/4.206.table | 6 - .../grib2/tables/15/4.207.table | 10 - .../grib2/tables/15/4.208.table | 9 - .../grib2/tables/15/4.209.table | 9 - .../grib2/tables/15/4.210.table | 6 - .../grib2/tables/15/4.211.table | 7 - .../grib2/tables/15/4.212.table | 18 - .../grib2/tables/15/4.213.table | 16 - .../grib2/tables/15/4.215.table | 9 - .../grib2/tables/15/4.216.table | 5 - .../grib2/tables/15/4.217.table | 8 - .../grib2/tables/15/4.218.table | 38 - .../grib2/tables/15/4.219.table | 8 - .../grib2/tables/15/4.220.table | 6 - .../grib2/tables/15/4.221.table | 6 - .../grib2/tables/15/4.222.table | 6 - .../grib2/tables/15/4.223.table | 5 - .../grib2/tables/15/4.224.table | 18 - .../grib2/tables/15/4.225.table | 2 - .../grib2/tables/15/4.227.table | 9 - .../grib2/tables/15/4.230.table | 414 - .../grib2/tables/15/4.233.table | 3 - .../grib2/tables/15/4.234.table | 21 - .../grib2/tables/15/4.236.table | 8 - .../grib2/tables/15/4.240.table | 12 - .../grib2/tables/15/4.241.table | 9 - .../grib2/tables/15/4.242.table | 7 - .../grib2/tables/15/4.243.table | 43 - .../grib2/tables/15/4.3.table | 20 - .../grib2/tables/15/4.4.table | 17 - .../grib2/tables/15/4.5.table | 63 - .../grib2/tables/15/4.6.table | 9 - .../grib2/tables/15/4.7.table | 14 - .../grib2/tables/15/4.8.table | 6 - .../grib2/tables/15/4.9.table | 9 - .../grib2/tables/15/4.91.table | 16 - .../grib2/tables/15/5.0.table | 24 - .../grib2/tables/15/5.1.table | 6 - .../grib2/tables/15/5.2.table | 8 - .../grib2/tables/15/5.3.table | 7 - .../grib2/tables/15/5.4.table | 6 - .../grib2/tables/15/5.40.table | 5 - .../grib2/tables/15/5.40000.table | 5 - .../grib2/tables/15/5.5.table | 7 - .../grib2/tables/15/5.50002.table | 19 - .../grib2/tables/15/5.6.table | 7 - .../grib2/tables/15/5.7.table | 7 - .../grib2/tables/15/6.0.table | 6 - .../grib2/tables/15/stepType.table | 2 - .../grib2/tables/16/0.0.table | 10 - .../grib2/tables/16/1.0.table | 21 - .../grib2/tables/16/1.1.table | 4 - .../grib2/tables/16/1.2.table | 8 - .../grib2/tables/16/1.3.table | 14 - .../grib2/tables/16/1.4.table | 13 - .../grib2/tables/16/1.5.table | 7 - .../grib2/tables/16/1.6.table | 8 - .../grib2/tables/16/3.0.table | 6 - .../grib2/tables/16/3.1.table | 47 - .../grib2/tables/16/3.10.table | 8 - .../grib2/tables/16/3.11.table | 7 - .../grib2/tables/16/3.15.table | 23 - .../grib2/tables/16/3.2.table | 14 - .../grib2/tables/16/3.20.table | 6 - .../grib2/tables/16/3.21.table | 8 - .../grib2/tables/16/3.3.table | 9 - .../grib2/tables/16/3.4.table | 17 - .../grib2/tables/16/3.5.table | 5 - .../grib2/tables/16/3.6.table | 2 - .../grib2/tables/16/3.7.table | 5 - .../grib2/tables/16/3.8.table | 7 - .../grib2/tables/16/3.9.table | 4 - .../grib2/tables/16/4.0.table | 65 - .../grib2/tables/16/4.1.0.table | 27 - .../grib2/tables/16/4.1.1.table | 7 - .../grib2/tables/16/4.1.10.table | 10 - .../grib2/tables/16/4.1.192.table | 4 - .../grib2/tables/16/4.1.2.table | 9 - .../grib2/tables/16/4.1.3.table | 11 - .../grib2/tables/16/4.10.table | 16 - .../grib2/tables/16/4.11.table | 10 - .../grib2/tables/16/4.12.table | 7 - .../grib2/tables/16/4.13.table | 6 - .../grib2/tables/16/4.14.table | 6 - .../grib2/tables/16/4.15.table | 11 - .../grib2/tables/16/4.192.table | 4 - .../grib2/tables/16/4.2.0.0.table | 32 - .../grib2/tables/16/4.2.0.1.table | 111 - .../grib2/tables/16/4.2.0.13.table | 5 - .../grib2/tables/16/4.2.0.14.table | 7 - .../grib2/tables/16/4.2.0.15.table | 21 - .../grib2/tables/16/4.2.0.16.table | 10 - .../grib2/tables/16/4.2.0.17.table | 2 - .../grib2/tables/16/4.2.0.18.table | 18 - .../grib2/tables/16/4.2.0.19.table | 33 - .../grib2/tables/16/4.2.0.190.table | 5 - .../grib2/tables/16/4.2.0.191.table | 8 - .../grib2/tables/16/4.2.0.2.table | 49 - .../grib2/tables/16/4.2.0.20.table | 42 - .../grib2/tables/16/4.2.0.3.table | 35 - .../grib2/tables/16/4.2.0.4.table | 22 - .../grib2/tables/16/4.2.0.5.table | 12 - .../grib2/tables/16/4.2.0.6.table | 49 - .../grib2/tables/16/4.2.0.7.table | 23 - .../grib2/tables/16/4.2.1.0.table | 20 - .../grib2/tables/16/4.2.1.1.table | 7 - .../grib2/tables/16/4.2.1.2.table | 15 - .../grib2/tables/16/4.2.10.0.table | 50 - .../grib2/tables/16/4.2.10.1.table | 8 - .../grib2/tables/16/4.2.10.191.table | 8 - .../grib2/tables/16/4.2.10.2.table | 17 - .../grib2/tables/16/4.2.10.3.table | 6 - .../grib2/tables/16/4.2.10.4.table | 18 - .../grib2/tables/16/4.2.2.0.table | 43 - .../grib2/tables/16/4.2.2.3.table | 30 - .../grib2/tables/16/4.2.2.4.table | 16 - .../grib2/tables/16/4.2.2.5.table | 2 - .../grib2/tables/16/4.2.3.0.table | 14 - .../grib2/tables/16/4.2.3.1.table | 32 - .../grib2/tables/16/4.2.3.2.table | 13 - .../grib2/tables/16/4.2.3.3.table | 4 - .../grib2/tables/16/4.2.3.4.table | 10 - .../grib2/tables/16/4.2.3.5.table | 7 - .../grib2/tables/16/4.2.3.6.table | 7 - .../grib2/tables/16/4.201.table | 15 - .../grib2/tables/16/4.202.table | 4 - .../grib2/tables/16/4.203.table | 26 - .../grib2/tables/16/4.204.table | 9 - .../grib2/tables/16/4.205.table | 6 - .../grib2/tables/16/4.206.table | 6 - .../grib2/tables/16/4.207.table | 10 - .../grib2/tables/16/4.208.table | 9 - .../grib2/tables/16/4.209.table | 9 - .../grib2/tables/16/4.210.table | 6 - .../grib2/tables/16/4.211.table | 7 - .../grib2/tables/16/4.212.table | 18 - .../grib2/tables/16/4.213.table | 16 - .../grib2/tables/16/4.215.table | 9 - .../grib2/tables/16/4.216.table | 5 - .../grib2/tables/16/4.217.table | 8 - .../grib2/tables/16/4.218.table | 44 - .../grib2/tables/16/4.219.table | 8 - .../grib2/tables/16/4.220.table | 6 - .../grib2/tables/16/4.221.table | 6 - .../grib2/tables/16/4.222.table | 6 - .../grib2/tables/16/4.223.table | 5 - .../grib2/tables/16/4.224.table | 18 - .../grib2/tables/16/4.225.table | 2 - .../grib2/tables/16/4.227.table | 9 - .../grib2/tables/16/4.230.table | 414 - .../grib2/tables/16/4.233.table | 3 - .../grib2/tables/16/4.234.table | 21 - .../grib2/tables/16/4.236.table | 8 - .../grib2/tables/16/4.240.table | 12 - .../grib2/tables/16/4.241.table | 9 - .../grib2/tables/16/4.242.table | 7 - .../grib2/tables/16/4.243.table | 43 - .../grib2/tables/16/4.3.table | 22 - .../grib2/tables/16/4.4.table | 17 - .../grib2/tables/16/4.5.table | 62 - .../grib2/tables/16/4.6.table | 9 - .../grib2/tables/16/4.7.table | 14 - .../grib2/tables/16/4.8.table | 6 - .../grib2/tables/16/4.9.table | 9 - .../grib2/tables/16/4.91.table | 16 - .../grib2/tables/16/5.0.table | 24 - .../grib2/tables/16/5.1.table | 6 - .../grib2/tables/16/5.2.table | 8 - .../grib2/tables/16/5.3.table | 7 - .../grib2/tables/16/5.4.table | 6 - .../grib2/tables/16/5.40.table | 5 - .../grib2/tables/16/5.40000.table | 5 - .../grib2/tables/16/5.5.table | 7 - .../grib2/tables/16/5.50002.table | 19 - .../grib2/tables/16/5.6.table | 7 - .../grib2/tables/16/5.7.table | 7 - .../grib2/tables/16/6.0.table | 6 - .../grib2/tables/16/stepType.table | 2 - .../grib2/tables/17/0.0.table | 10 - .../grib2/tables/17/1.0.table | 22 - .../grib2/tables/17/1.1.table | 4 - .../grib2/tables/17/1.2.table | 8 - .../grib2/tables/17/1.3.table | 14 - .../grib2/tables/17/1.4.table | 13 - .../grib2/tables/17/1.5.table | 7 - .../grib2/tables/17/1.6.table | 8 - .../grib2/tables/17/3.0.table | 6 - .../grib2/tables/17/3.1.table | 47 - .../grib2/tables/17/3.10.table | 8 - .../grib2/tables/17/3.11.table | 7 - .../grib2/tables/17/3.15.table | 23 - .../grib2/tables/17/3.2.table | 14 - .../grib2/tables/17/3.20.table | 6 - .../grib2/tables/17/3.21.table | 8 - .../grib2/tables/17/3.3.table | 9 - .../grib2/tables/17/3.4.table | 17 - .../grib2/tables/17/3.5.table | 5 - .../grib2/tables/17/3.6.table | 2 - .../grib2/tables/17/3.7.table | 5 - .../grib2/tables/17/3.8.table | 7 - .../grib2/tables/17/3.9.table | 4 - .../grib2/tables/17/4.0.table | 65 - .../grib2/tables/17/4.1.0.table | 27 - .../grib2/tables/17/4.1.1.table | 7 - .../grib2/tables/17/4.1.10.table | 10 - .../grib2/tables/17/4.1.192.table | 4 - .../grib2/tables/17/4.1.2.table | 9 - .../grib2/tables/17/4.1.3.table | 11 - .../grib2/tables/17/4.10.table | 16 - .../grib2/tables/17/4.11.table | 10 - .../grib2/tables/17/4.12.table | 7 - .../grib2/tables/17/4.13.table | 6 - .../grib2/tables/17/4.14.table | 6 - .../grib2/tables/17/4.15.table | 11 - .../grib2/tables/17/4.192.table | 4 - .../grib2/tables/17/4.2.0.0.table | 32 - .../grib2/tables/17/4.2.0.1.table | 120 - .../grib2/tables/17/4.2.0.13.table | 5 - .../grib2/tables/17/4.2.0.14.table | 7 - .../grib2/tables/17/4.2.0.15.table | 21 - .../grib2/tables/17/4.2.0.16.table | 10 - .../grib2/tables/17/4.2.0.17.table | 3 - .../grib2/tables/17/4.2.0.18.table | 21 - .../grib2/tables/17/4.2.0.19.table | 36 - .../grib2/tables/17/4.2.0.190.table | 5 - .../grib2/tables/17/4.2.0.191.table | 8 - .../grib2/tables/17/4.2.0.2.table | 49 - .../grib2/tables/17/4.2.0.20.table | 46 - .../grib2/tables/17/4.2.0.3.table | 35 - .../grib2/tables/17/4.2.0.4.table | 24 - .../grib2/tables/17/4.2.0.5.table | 13 - .../grib2/tables/17/4.2.0.6.table | 49 - .../grib2/tables/17/4.2.0.7.table | 23 - .../grib2/tables/17/4.2.1.0.table | 21 - .../grib2/tables/17/4.2.1.1.table | 7 - .../grib2/tables/17/4.2.1.2.table | 15 - .../grib2/tables/17/4.2.10.0.table | 50 - .../grib2/tables/17/4.2.10.1.table | 8 - .../grib2/tables/17/4.2.10.191.table | 8 - .../grib2/tables/17/4.2.10.2.table | 17 - .../grib2/tables/17/4.2.10.3.table | 6 - .../grib2/tables/17/4.2.10.4.table | 18 - .../grib2/tables/17/4.2.2.0.table | 43 - .../grib2/tables/17/4.2.2.3.table | 32 - .../grib2/tables/17/4.2.2.4.table | 16 - .../grib2/tables/17/4.2.2.5.table | 2 - .../grib2/tables/17/4.2.3.0.table | 14 - .../grib2/tables/17/4.2.3.1.table | 32 - .../grib2/tables/17/4.2.3.2.table | 13 - .../grib2/tables/17/4.2.3.3.table | 4 - .../grib2/tables/17/4.2.3.4.table | 10 - .../grib2/tables/17/4.2.3.5.table | 7 - .../grib2/tables/17/4.2.3.6.table | 7 - .../grib2/tables/17/4.201.table | 15 - .../grib2/tables/17/4.202.table | 4 - .../grib2/tables/17/4.203.table | 26 - .../grib2/tables/17/4.204.table | 9 - .../grib2/tables/17/4.205.table | 6 - .../grib2/tables/17/4.206.table | 6 - .../grib2/tables/17/4.207.table | 10 - .../grib2/tables/17/4.208.table | 9 - .../grib2/tables/17/4.209.table | 9 - .../grib2/tables/17/4.210.table | 6 - .../grib2/tables/17/4.211.table | 7 - .../grib2/tables/17/4.212.table | 18 - .../grib2/tables/17/4.213.table | 16 - .../grib2/tables/17/4.215.table | 9 - .../grib2/tables/17/4.216.table | 5 - .../grib2/tables/17/4.217.table | 8 - .../grib2/tables/17/4.218.table | 44 - .../grib2/tables/17/4.219.table | 8 - .../grib2/tables/17/4.220.table | 6 - .../grib2/tables/17/4.221.table | 6 - .../grib2/tables/17/4.222.table | 6 - .../grib2/tables/17/4.223.table | 5 - .../grib2/tables/17/4.224.table | 18 - .../grib2/tables/17/4.225.table | 2 - .../grib2/tables/17/4.227.table | 9 - .../grib2/tables/17/4.230.table | 414 - .../grib2/tables/17/4.233.table | 3 - .../grib2/tables/17/4.234.table | 21 - .../grib2/tables/17/4.236.table | 8 - .../grib2/tables/17/4.240.table | 12 - .../grib2/tables/17/4.241.table | 9 - .../grib2/tables/17/4.242.table | 7 - .../grib2/tables/17/4.243.table | 43 - .../grib2/tables/17/4.3.table | 22 - .../grib2/tables/17/4.4.table | 17 - .../grib2/tables/17/4.5.table | 67 - .../grib2/tables/17/4.6.table | 9 - .../grib2/tables/17/4.7.table | 14 - .../grib2/tables/17/4.8.table | 6 - .../grib2/tables/17/4.9.table | 9 - .../grib2/tables/17/4.91.table | 16 - .../grib2/tables/17/5.0.table | 24 - .../grib2/tables/17/5.1.table | 6 - .../grib2/tables/17/5.2.table | 8 - .../grib2/tables/17/5.3.table | 7 - .../grib2/tables/17/5.4.table | 6 - .../grib2/tables/17/5.40.table | 5 - .../grib2/tables/17/5.40000.table | 5 - .../grib2/tables/17/5.5.table | 7 - .../grib2/tables/17/5.50002.table | 19 - .../grib2/tables/17/5.6.table | 7 - .../grib2/tables/17/5.7.table | 7 - .../grib2/tables/17/6.0.table | 6 - .../grib2/tables/17/stepType.table | 2 - .../grib2/tables/18/0.0.table | 10 - .../grib2/tables/18/1.0.table | 23 - .../grib2/tables/18/1.1.table | 4 - .../grib2/tables/18/1.2.table | 8 - .../grib2/tables/18/1.3.table | 14 - .../grib2/tables/18/1.4.table | 13 - .../grib2/tables/18/1.5.table | 7 - .../grib2/tables/18/1.6.table | 8 - .../grib2/tables/18/3.0.table | 6 - .../grib2/tables/18/3.1.table | 47 - .../grib2/tables/18/3.10.table | 8 - .../grib2/tables/18/3.11.table | 7 - .../grib2/tables/18/3.15.table | 23 - .../grib2/tables/18/3.2.table | 14 - .../grib2/tables/18/3.20.table | 6 - .../grib2/tables/18/3.21.table | 8 - .../grib2/tables/18/3.3.table | 9 - .../grib2/tables/18/3.4.table | 17 - .../grib2/tables/18/3.5.table | 5 - .../grib2/tables/18/3.6.table | 2 - .../grib2/tables/18/3.7.table | 5 - .../grib2/tables/18/3.8.table | 7 - .../grib2/tables/18/3.9.table | 4 - .../grib2/tables/18/4.0.table | 72 - .../grib2/tables/18/4.1.0.table | 27 - .../grib2/tables/18/4.1.1.table | 7 - .../grib2/tables/18/4.1.10.table | 10 - .../grib2/tables/18/4.1.192.table | 4 - .../grib2/tables/18/4.1.2.table | 9 - .../grib2/tables/18/4.1.3.table | 11 - .../grib2/tables/18/4.10.table | 16 - .../grib2/tables/18/4.11.table | 10 - .../grib2/tables/18/4.12.table | 7 - .../grib2/tables/18/4.13.table | 6 - .../grib2/tables/18/4.14.table | 6 - .../grib2/tables/18/4.15.table | 11 - .../grib2/tables/18/4.192.table | 4 - .../grib2/tables/18/4.2.0.0.table | 34 - .../grib2/tables/18/4.2.0.1.table | 123 - .../grib2/tables/18/4.2.0.13.table | 5 - .../grib2/tables/18/4.2.0.14.table | 7 - .../grib2/tables/18/4.2.0.15.table | 21 - .../grib2/tables/18/4.2.0.16.table | 10 - .../grib2/tables/18/4.2.0.17.table | 3 - .../grib2/tables/18/4.2.0.18.table | 23 - .../grib2/tables/18/4.2.0.19.table | 36 - .../grib2/tables/18/4.2.0.190.table | 5 - .../grib2/tables/18/4.2.0.191.table | 8 - .../grib2/tables/18/4.2.0.2.table | 51 - .../grib2/tables/18/4.2.0.20.table | 47 - .../grib2/tables/18/4.2.0.3.table | 36 - .../grib2/tables/18/4.2.0.4.table | 24 - .../grib2/tables/18/4.2.0.5.table | 13 - .../grib2/tables/18/4.2.0.6.table | 49 - .../grib2/tables/18/4.2.0.7.table | 23 - .../grib2/tables/18/4.2.1.0.table | 21 - .../grib2/tables/18/4.2.1.1.table | 7 - .../grib2/tables/18/4.2.1.2.table | 15 - .../grib2/tables/18/4.2.10.0.table | 50 - .../grib2/tables/18/4.2.10.1.table | 8 - .../grib2/tables/18/4.2.10.191.table | 8 - .../grib2/tables/18/4.2.10.2.table | 17 - .../grib2/tables/18/4.2.10.3.table | 7 - .../grib2/tables/18/4.2.10.4.table | 18 - .../grib2/tables/18/4.2.2.0.table | 43 - .../grib2/tables/18/4.2.2.3.table | 32 - .../grib2/tables/18/4.2.2.4.table | 16 - .../grib2/tables/18/4.2.2.5.table | 2 - .../grib2/tables/18/4.2.3.0.table | 14 - .../grib2/tables/18/4.2.3.1.table | 32 - .../grib2/tables/18/4.2.3.2.table | 13 - .../grib2/tables/18/4.2.3.3.table | 4 - .../grib2/tables/18/4.2.3.4.table | 10 - .../grib2/tables/18/4.2.3.5.table | 7 - .../grib2/tables/18/4.2.3.6.table | 7 - .../grib2/tables/18/4.201.table | 15 - .../grib2/tables/18/4.202.table | 4 - .../grib2/tables/18/4.203.table | 26 - .../grib2/tables/18/4.204.table | 9 - .../grib2/tables/18/4.205.table | 6 - .../grib2/tables/18/4.206.table | 6 - .../grib2/tables/18/4.207.table | 10 - .../grib2/tables/18/4.208.table | 9 - .../grib2/tables/18/4.209.table | 9 - .../grib2/tables/18/4.210.table | 6 - .../grib2/tables/18/4.211.table | 7 - .../grib2/tables/18/4.212.table | 18 - .../grib2/tables/18/4.213.table | 16 - .../grib2/tables/18/4.215.table | 9 - .../grib2/tables/18/4.216.table | 5 - .../grib2/tables/18/4.217.table | 8 - .../grib2/tables/18/4.218.table | 44 - .../grib2/tables/18/4.219.table | 8 - .../grib2/tables/18/4.220.table | 6 - .../grib2/tables/18/4.221.table | 6 - .../grib2/tables/18/4.222.table | 6 - .../grib2/tables/18/4.223.table | 5 - .../grib2/tables/18/4.224.table | 18 - .../grib2/tables/18/4.225.table | 2 - .../grib2/tables/18/4.227.table | 9 - .../grib2/tables/18/4.230.table | 437 - .../grib2/tables/18/4.233.table | 3 - .../grib2/tables/18/4.234.table | 21 - .../grib2/tables/18/4.236.table | 8 - .../grib2/tables/18/4.240.table | 12 - .../grib2/tables/18/4.241.table | 9 - .../grib2/tables/18/4.242.table | 7 - .../grib2/tables/18/4.243.table | 43 - .../grib2/tables/18/4.3.table | 23 - .../grib2/tables/18/4.4.table | 17 - .../grib2/tables/18/4.5.table | 72 - .../grib2/tables/18/4.6.table | 9 - .../grib2/tables/18/4.7.table | 14 - .../grib2/tables/18/4.8.table | 6 - .../grib2/tables/18/4.9.table | 9 - .../grib2/tables/18/4.91.table | 16 - .../grib2/tables/18/5.0.table | 25 - .../grib2/tables/18/5.1.table | 6 - .../grib2/tables/18/5.2.table | 8 - .../grib2/tables/18/5.3.table | 7 - .../grib2/tables/18/5.4.table | 6 - .../grib2/tables/18/5.40.table | 5 - .../grib2/tables/18/5.40000.table | 5 - .../grib2/tables/18/5.5.table | 7 - .../grib2/tables/18/5.50002.table | 19 - .../grib2/tables/18/5.6.table | 7 - .../grib2/tables/18/5.7.table | 7 - .../grib2/tables/18/6.0.table | 6 - .../grib2/tables/18/stepType.table | 2 - .../grib2/tables/19/0.0.table | 10 - .../grib2/tables/19/1.0.table | 24 - .../grib2/tables/19/1.1.table | 4 - .../grib2/tables/19/1.2.table | 8 - .../grib2/tables/19/1.3.table | 14 - .../grib2/tables/19/1.4.table | 13 - .../grib2/tables/19/1.5.table | 7 - .../grib2/tables/19/1.6.table | 8 - .../grib2/tables/19/3.0.table | 6 - .../grib2/tables/19/3.1.table | 47 - .../grib2/tables/19/3.10.table | 8 - .../grib2/tables/19/3.11.table | 7 - .../grib2/tables/19/3.15.table | 23 - .../grib2/tables/19/3.2.table | 14 - .../grib2/tables/19/3.20.table | 6 - .../grib2/tables/19/3.21.table | 8 - .../grib2/tables/19/3.3.table | 9 - .../grib2/tables/19/3.4.table | 17 - .../grib2/tables/19/3.5.table | 5 - .../grib2/tables/19/3.6.table | 2 - .../grib2/tables/19/3.7.table | 5 - .../grib2/tables/19/3.8.table | 7 - .../grib2/tables/19/3.9.table | 4 - .../grib2/tables/19/4.0.table | 75 - .../grib2/tables/19/4.1.0.table | 27 - .../grib2/tables/19/4.1.1.table | 7 - .../grib2/tables/19/4.1.10.table | 10 - .../grib2/tables/19/4.1.192.table | 4 - .../grib2/tables/19/4.1.2.table | 9 - .../grib2/tables/19/4.1.3.table | 11 - .../grib2/tables/19/4.10.table | 16 - .../grib2/tables/19/4.11.table | 10 - .../grib2/tables/19/4.12.table | 7 - .../grib2/tables/19/4.13.table | 6 - .../grib2/tables/19/4.14.table | 6 - .../grib2/tables/19/4.15.table | 11 - .../grib2/tables/19/4.192.table | 4 - .../grib2/tables/19/4.2.0.0.table | 34 - .../grib2/tables/19/4.2.0.1.table | 123 - .../grib2/tables/19/4.2.0.13.table | 5 - .../grib2/tables/19/4.2.0.14.table | 7 - .../grib2/tables/19/4.2.0.15.table | 21 - .../grib2/tables/19/4.2.0.16.table | 10 - .../grib2/tables/19/4.2.0.17.table | 3 - .../grib2/tables/19/4.2.0.18.table | 23 - .../grib2/tables/19/4.2.0.19.table | 36 - .../grib2/tables/19/4.2.0.190.table | 5 - .../grib2/tables/19/4.2.0.191.table | 8 - .../grib2/tables/19/4.2.0.2.table | 51 - .../grib2/tables/19/4.2.0.20.table | 47 - .../grib2/tables/19/4.2.0.3.table | 36 - .../grib2/tables/19/4.2.0.4.table | 24 - .../grib2/tables/19/4.2.0.5.table | 13 - .../grib2/tables/19/4.2.0.6.table | 49 - .../grib2/tables/19/4.2.0.7.table | 24 - .../grib2/tables/19/4.2.1.0.table | 21 - .../grib2/tables/19/4.2.1.1.table | 7 - .../grib2/tables/19/4.2.1.2.table | 15 - .../grib2/tables/19/4.2.10.0.table | 50 - .../grib2/tables/19/4.2.10.1.table | 8 - .../grib2/tables/19/4.2.10.191.table | 8 - .../grib2/tables/19/4.2.10.2.table | 17 - .../grib2/tables/19/4.2.10.3.table | 7 - .../grib2/tables/19/4.2.10.4.table | 18 - .../grib2/tables/19/4.2.2.0.table | 43 - .../grib2/tables/19/4.2.2.3.table | 32 - .../grib2/tables/19/4.2.2.4.table | 16 - .../grib2/tables/19/4.2.2.5.table | 2 - .../grib2/tables/19/4.2.3.0.table | 14 - .../grib2/tables/19/4.2.3.1.table | 32 - .../grib2/tables/19/4.2.3.2.table | 13 - .../grib2/tables/19/4.2.3.3.table | 4 - .../grib2/tables/19/4.2.3.4.table | 10 - .../grib2/tables/19/4.2.3.5.table | 7 - .../grib2/tables/19/4.2.3.6.table | 7 - .../grib2/tables/19/4.201.table | 15 - .../grib2/tables/19/4.202.table | 4 - .../grib2/tables/19/4.203.table | 26 - .../grib2/tables/19/4.204.table | 9 - .../grib2/tables/19/4.205.table | 6 - .../grib2/tables/19/4.206.table | 6 - .../grib2/tables/19/4.207.table | 10 - .../grib2/tables/19/4.208.table | 9 - .../grib2/tables/19/4.209.table | 9 - .../grib2/tables/19/4.210.table | 6 - .../grib2/tables/19/4.211.table | 7 - .../grib2/tables/19/4.212.table | 18 - .../grib2/tables/19/4.213.table | 16 - .../grib2/tables/19/4.215.table | 9 - .../grib2/tables/19/4.216.table | 5 - .../grib2/tables/19/4.217.table | 8 - .../grib2/tables/19/4.218.table | 44 - .../grib2/tables/19/4.219.table | 8 - .../grib2/tables/19/4.220.table | 6 - .../grib2/tables/19/4.221.table | 6 - .../grib2/tables/19/4.222.table | 6 - .../grib2/tables/19/4.223.table | 5 - .../grib2/tables/19/4.224.table | 18 - .../grib2/tables/19/4.225.table | 2 - .../grib2/tables/19/4.227.table | 9 - .../grib2/tables/19/4.230.table | 437 - .../grib2/tables/19/4.233.table | 3 - .../grib2/tables/19/4.234.table | 21 - .../grib2/tables/19/4.236.table | 8 - .../grib2/tables/19/4.240.table | 13 - .../grib2/tables/19/4.241.table | 9 - .../grib2/tables/19/4.242.table | 7 - .../grib2/tables/19/4.243.table | 43 - .../grib2/tables/19/4.3.table | 23 - .../grib2/tables/19/4.4.table | 17 - .../grib2/tables/19/4.5.table | 72 - .../grib2/tables/19/4.6.table | 9 - .../grib2/tables/19/4.7.table | 14 - .../grib2/tables/19/4.8.table | 6 - .../grib2/tables/19/4.9.table | 9 - .../grib2/tables/19/4.91.table | 16 - .../grib2/tables/19/5.0.table | 25 - .../grib2/tables/19/5.1.table | 6 - .../grib2/tables/19/5.2.table | 8 - .../grib2/tables/19/5.3.table | 7 - .../grib2/tables/19/5.4.table | 6 - .../grib2/tables/19/5.40.table | 5 - .../grib2/tables/19/5.40000.table | 5 - .../grib2/tables/19/5.5.table | 7 - .../grib2/tables/19/5.50002.table | 19 - .../grib2/tables/19/5.6.table | 7 - .../grib2/tables/19/5.7.table | 7 - .../grib2/tables/19/6.0.table | 6 - .../grib2/tables/19/stepType.table | 2 - .../definitions.save/grib2/tables/2/0.0.table | 10 - .../definitions.save/grib2/tables/2/1.0.table | 7 - .../definitions.save/grib2/tables/2/1.1.table | 5 - .../definitions.save/grib2/tables/2/1.2.table | 8 - .../definitions.save/grib2/tables/2/1.3.table | 10 - .../definitions.save/grib2/tables/2/1.4.table | 13 - .../definitions.save/grib2/tables/2/3.0.table | 6 - .../definitions.save/grib2/tables/2/3.1.table | 43 - .../grib2/tables/2/3.10.table | 7 - .../grib2/tables/2/3.11.table | 5 - .../grib2/tables/2/3.15.table | 17 - .../definitions.save/grib2/tables/2/3.2.table | 11 - .../grib2/tables/2/3.20.table | 6 - .../grib2/tables/2/3.21.table | 8 - .../definitions.save/grib2/tables/2/3.3.table | 7 - .../definitions.save/grib2/tables/2/3.4.table | 9 - .../definitions.save/grib2/tables/2/3.5.table | 5 - .../definitions.save/grib2/tables/2/3.6.table | 2 - .../definitions.save/grib2/tables/2/3.7.table | 4 - .../definitions.save/grib2/tables/2/3.8.table | 8 - .../definitions.save/grib2/tables/2/3.9.table | 3 - .../definitions.save/grib2/tables/2/4.0.table | 38 - .../grib2/tables/2/4.1.0.table | 30 - .../grib2/tables/2/4.1.1.table | 9 - .../grib2/tables/2/4.1.10.table | 12 - .../grib2/tables/2/4.1.2.table | 11 - .../grib2/tables/2/4.1.3.table | 9 - .../definitions.save/grib2/tables/2/4.1.table | 5 - .../grib2/tables/2/4.10.table | 14 - .../grib2/tables/2/4.11.table | 9 - .../grib2/tables/2/4.12.table | 69 - .../grib2/tables/2/4.13.table | 68 - .../grib2/tables/2/4.14.table | 68 - .../grib2/tables/2/4.15.table | 68 - .../grib2/tables/2/4.151.table | 70 - .../grib2/tables/2/4.2.0.0.table | 23 - .../grib2/tables/2/4.2.0.1.table | 62 - .../grib2/tables/2/4.2.0.13.table | 6 - .../grib2/tables/2/4.2.0.14.table | 7 - .../grib2/tables/2/4.2.0.15.table | 14 - .../grib2/tables/2/4.2.0.18.table | 14 - .../grib2/tables/2/4.2.0.19.table | 24 - .../grib2/tables/2/4.2.0.190.table | 6 - .../grib2/tables/2/4.2.0.191.table | 6 - .../grib2/tables/2/4.2.0.2.table | 35 - .../grib2/tables/2/4.2.0.20.table | 13 - .../grib2/tables/2/4.2.0.3.table | 25 - .../grib2/tables/2/4.2.0.4.table | 14 - .../grib2/tables/2/4.2.0.5.table | 11 - .../grib2/tables/2/4.2.0.6.table | 30 - .../grib2/tables/2/4.2.0.7.table | 18 - .../grib2/tables/2/4.2.1.0.table | 9 - .../grib2/tables/2/4.2.1.1.table | 8 - .../grib2/tables/2/4.2.10.0.table | 20 - .../grib2/tables/2/4.2.10.1.table | 8 - .../grib2/tables/2/4.2.10.2.table | 12 - .../grib2/tables/2/4.2.10.3.table | 6 - .../grib2/tables/2/4.2.10.4.table | 9 - .../grib2/tables/2/4.2.2.0.table | 29 - .../grib2/tables/2/4.2.2.3.table | 16 - .../grib2/tables/2/4.2.3.0.table | 14 - .../grib2/tables/2/4.2.3.1.table | 11 - .../grib2/tables/2/4.201.table | 71 - .../grib2/tables/2/4.202.table | 66 - .../grib2/tables/2/4.203.table | 25 - .../grib2/tables/2/4.204.table | 71 - .../grib2/tables/2/4.205.table | 68 - .../grib2/tables/2/4.206.table | 68 - .../grib2/tables/2/4.207.table | 70 - .../grib2/tables/2/4.208.table | 71 - .../grib2/tables/2/4.209.table | 70 - .../grib2/tables/2/4.210.table | 68 - .../grib2/tables/2/4.211.table | 69 - .../grib2/tables/2/4.212.table | 79 - .../grib2/tables/2/4.213.table | 77 - .../grib2/tables/2/4.215.table | 10 - .../grib2/tables/2/4.216.table | 3 - .../grib2/tables/2/4.217.table | 70 - .../grib2/tables/2/4.220.table | 68 - .../grib2/tables/2/4.221.table | 68 - .../grib2/tables/2/4.230.table | 47 - .../definitions.save/grib2/tables/2/4.3.table | 13 - .../definitions.save/grib2/tables/2/4.4.table | 16 - .../definitions.save/grib2/tables/2/4.5.table | 33 - .../definitions.save/grib2/tables/2/4.6.table | 8 - .../definitions.save/grib2/tables/2/4.7.table | 73 - .../definitions.save/grib2/tables/2/4.8.table | 68 - .../definitions.save/grib2/tables/2/4.9.table | 71 - .../grib2/tables/2/4.91.table | 78 - .../definitions.save/grib2/tables/2/5.0.table | 16 - .../definitions.save/grib2/tables/2/5.1.table | 5 - .../definitions.save/grib2/tables/2/5.2.table | 6 - .../definitions.save/grib2/tables/2/5.3.table | 6 - .../definitions.save/grib2/tables/2/5.4.table | 5 - .../grib2/tables/2/5.40.table | 5 - .../grib2/tables/2/5.40000.table | 5 - .../definitions.save/grib2/tables/2/5.5.table | 7 - .../definitions.save/grib2/tables/2/5.6.table | 68 - .../definitions.save/grib2/tables/2/5.7.table | 6 - .../definitions.save/grib2/tables/2/5.8.table | 3 - .../definitions.save/grib2/tables/2/5.9.table | 4 - .../definitions.save/grib2/tables/2/6.0.table | 7 - .../grib2/tables/20/0.0.table | 10 - .../grib2/tables/20/1.0.table | 25 - .../grib2/tables/20/1.1.table | 4 - .../grib2/tables/20/1.2.table | 8 - .../grib2/tables/20/1.3.table | 14 - .../grib2/tables/20/1.4.table | 13 - .../grib2/tables/20/1.5.table | 7 - .../grib2/tables/20/1.6.table | 8 - .../grib2/tables/20/3.0.table | 6 - .../grib2/tables/20/3.1.table | 47 - .../grib2/tables/20/3.10.table | 8 - .../grib2/tables/20/3.11.table | 7 - .../grib2/tables/20/3.15.table | 23 - .../grib2/tables/20/3.2.table | 14 - .../grib2/tables/20/3.20.table | 6 - .../grib2/tables/20/3.21.table | 8 - .../grib2/tables/20/3.3.table | 9 - .../grib2/tables/20/3.4.table | 17 - .../grib2/tables/20/3.5.table | 5 - .../grib2/tables/20/3.6.table | 2 - .../grib2/tables/20/3.7.table | 5 - .../grib2/tables/20/3.8.table | 7 - .../grib2/tables/20/3.9.table | 4 - .../grib2/tables/20/4.0.table | 75 - .../grib2/tables/20/4.1.0.table | 27 - .../grib2/tables/20/4.1.1.table | 7 - .../grib2/tables/20/4.1.10.table | 10 - .../grib2/tables/20/4.1.192.table | 4 - .../grib2/tables/20/4.1.2.table | 9 - .../grib2/tables/20/4.1.3.table | 11 - .../grib2/tables/20/4.10.table | 16 - .../grib2/tables/20/4.11.table | 10 - .../grib2/tables/20/4.12.table | 7 - .../grib2/tables/20/4.13.table | 6 - .../grib2/tables/20/4.14.table | 6 - .../grib2/tables/20/4.15.table | 11 - .../grib2/tables/20/4.192.table | 4 - .../grib2/tables/20/4.2.0.0.table | 34 - .../grib2/tables/20/4.2.0.1.table | 126 - .../grib2/tables/20/4.2.0.13.table | 5 - .../grib2/tables/20/4.2.0.14.table | 7 - .../grib2/tables/20/4.2.0.15.table | 21 - .../grib2/tables/20/4.2.0.16.table | 10 - .../grib2/tables/20/4.2.0.17.table | 3 - .../grib2/tables/20/4.2.0.18.table | 23 - .../grib2/tables/20/4.2.0.19.table | 40 - .../grib2/tables/20/4.2.0.190.table | 5 - .../grib2/tables/20/4.2.0.191.table | 8 - .../grib2/tables/20/4.2.0.2.table | 51 - .../grib2/tables/20/4.2.0.20.table | 47 - .../grib2/tables/20/4.2.0.3.table | 36 - .../grib2/tables/20/4.2.0.4.table | 24 - .../grib2/tables/20/4.2.0.5.table | 13 - .../grib2/tables/20/4.2.0.6.table | 49 - .../grib2/tables/20/4.2.0.7.table | 24 - .../grib2/tables/20/4.2.1.0.table | 21 - .../grib2/tables/20/4.2.1.1.table | 7 - .../grib2/tables/20/4.2.1.2.table | 15 - .../grib2/tables/20/4.2.10.0.table | 50 - .../grib2/tables/20/4.2.10.1.table | 9 - .../grib2/tables/20/4.2.10.191.table | 8 - .../grib2/tables/20/4.2.10.2.table | 17 - .../grib2/tables/20/4.2.10.3.table | 7 - .../grib2/tables/20/4.2.10.4.table | 18 - .../grib2/tables/20/4.2.2.0.table | 43 - .../grib2/tables/20/4.2.2.3.table | 32 - .../grib2/tables/20/4.2.2.4.table | 16 - .../grib2/tables/20/4.2.2.5.table | 2 - .../grib2/tables/20/4.2.3.0.table | 14 - .../grib2/tables/20/4.2.3.1.table | 32 - .../grib2/tables/20/4.2.3.2.table | 13 - .../grib2/tables/20/4.2.3.3.table | 4 - .../grib2/tables/20/4.2.3.4.table | 10 - .../grib2/tables/20/4.2.3.5.table | 7 - .../grib2/tables/20/4.2.3.6.table | 7 - .../grib2/tables/20/4.201.table | 15 - .../grib2/tables/20/4.202.table | 4 - .../grib2/tables/20/4.203.table | 26 - .../grib2/tables/20/4.204.table | 9 - .../grib2/tables/20/4.205.table | 6 - .../grib2/tables/20/4.206.table | 6 - .../grib2/tables/20/4.207.table | 10 - .../grib2/tables/20/4.208.table | 9 - .../grib2/tables/20/4.209.table | 9 - .../grib2/tables/20/4.210.table | 6 - .../grib2/tables/20/4.211.table | 7 - .../grib2/tables/20/4.212.table | 18 - .../grib2/tables/20/4.213.table | 16 - .../grib2/tables/20/4.215.table | 9 - .../grib2/tables/20/4.216.table | 5 - .../grib2/tables/20/4.217.table | 8 - .../grib2/tables/20/4.218.table | 44 - .../grib2/tables/20/4.219.table | 8 - .../grib2/tables/20/4.220.table | 6 - .../grib2/tables/20/4.221.table | 6 - .../grib2/tables/20/4.222.table | 6 - .../grib2/tables/20/4.223.table | 5 - .../grib2/tables/20/4.224.table | 18 - .../grib2/tables/20/4.225.table | 2 - .../grib2/tables/20/4.227.table | 9 - .../grib2/tables/20/4.230.table | 449 - .../grib2/tables/20/4.233.table | 2 - .../grib2/tables/20/4.234.table | 21 - .../grib2/tables/20/4.236.table | 8 - .../grib2/tables/20/4.240.table | 13 - .../grib2/tables/20/4.241.table | 9 - .../grib2/tables/20/4.242.table | 7 - .../grib2/tables/20/4.243.table | 43 - .../grib2/tables/20/4.3.table | 23 - .../grib2/tables/20/4.4.table | 17 - .../grib2/tables/20/4.5.table | 72 - .../grib2/tables/20/4.6.table | 9 - .../grib2/tables/20/4.7.table | 14 - .../grib2/tables/20/4.8.table | 6 - .../grib2/tables/20/4.9.table | 9 - .../grib2/tables/20/4.91.table | 16 - .../grib2/tables/20/5.0.table | 25 - .../grib2/tables/20/5.1.table | 6 - .../grib2/tables/20/5.2.table | 8 - .../grib2/tables/20/5.3.table | 7 - .../grib2/tables/20/5.4.table | 6 - .../grib2/tables/20/5.40.table | 5 - .../grib2/tables/20/5.40000.table | 5 - .../grib2/tables/20/5.5.table | 7 - .../grib2/tables/20/5.50002.table | 19 - .../grib2/tables/20/5.6.table | 7 - .../grib2/tables/20/5.7.table | 7 - .../grib2/tables/20/6.0.table | 6 - .../grib2/tables/20/stepType.table | 2 - .../grib2/tables/21/0.0.table | 10 - .../grib2/tables/21/1.0.table | 26 - .../grib2/tables/21/1.1.table | 4 - .../grib2/tables/21/1.2.table | 8 - .../grib2/tables/21/1.3.table | 14 - .../grib2/tables/21/1.4.table | 13 - .../grib2/tables/21/1.5.table | 7 - .../grib2/tables/21/1.6.table | 8 - .../grib2/tables/21/3.0.table | 6 - .../grib2/tables/21/3.1.table | 47 - .../grib2/tables/21/3.10.table | 8 - .../grib2/tables/21/3.11.table | 7 - .../grib2/tables/21/3.15.table | 23 - .../grib2/tables/21/3.2.table | 14 - .../grib2/tables/21/3.20.table | 6 - .../grib2/tables/21/3.21.table | 8 - .../grib2/tables/21/3.3.table | 9 - .../grib2/tables/21/3.4.table | 17 - .../grib2/tables/21/3.5.table | 5 - .../grib2/tables/21/3.6.table | 2 - .../grib2/tables/21/3.7.table | 5 - .../grib2/tables/21/3.8.table | 7 - .../grib2/tables/21/3.9.table | 4 - .../grib2/tables/21/4.0.table | 88 - .../grib2/tables/21/4.1.0.table | 27 - .../grib2/tables/21/4.1.1.table | 7 - .../grib2/tables/21/4.1.10.table | 10 - .../grib2/tables/21/4.1.192.table | 4 - .../grib2/tables/21/4.1.2.table | 9 - .../grib2/tables/21/4.1.3.table | 11 - .../grib2/tables/21/4.10.table | 16 - .../grib2/tables/21/4.11.table | 10 - .../grib2/tables/21/4.12.table | 7 - .../grib2/tables/21/4.13.table | 6 - .../grib2/tables/21/4.14.table | 6 - .../grib2/tables/21/4.15.table | 11 - .../grib2/tables/21/4.16.table | 9 - .../grib2/tables/21/4.192.table | 4 - .../grib2/tables/21/4.2.0.0.table | 34 - .../grib2/tables/21/4.2.0.1.table | 126 - .../grib2/tables/21/4.2.0.13.table | 5 - .../grib2/tables/21/4.2.0.14.table | 7 - .../grib2/tables/21/4.2.0.15.table | 21 - .../grib2/tables/21/4.2.0.16.table | 10 - .../grib2/tables/21/4.2.0.17.table | 3 - .../grib2/tables/21/4.2.0.18.table | 23 - .../grib2/tables/21/4.2.0.19.table | 40 - .../grib2/tables/21/4.2.0.190.table | 5 - .../grib2/tables/21/4.2.0.191.table | 8 - .../grib2/tables/21/4.2.0.2.table | 51 - .../grib2/tables/21/4.2.0.20.table | 47 - .../grib2/tables/21/4.2.0.3.table | 36 - .../grib2/tables/21/4.2.0.4.table | 24 - .../grib2/tables/21/4.2.0.5.table | 13 - .../grib2/tables/21/4.2.0.6.table | 49 - .../grib2/tables/21/4.2.0.7.table | 24 - .../grib2/tables/21/4.2.1.0.table | 21 - .../grib2/tables/21/4.2.1.1.table | 7 - .../grib2/tables/21/4.2.1.2.table | 15 - .../grib2/tables/21/4.2.10.0.table | 50 - .../grib2/tables/21/4.2.10.1.table | 9 - .../grib2/tables/21/4.2.10.191.table | 8 - .../grib2/tables/21/4.2.10.2.table | 17 - .../grib2/tables/21/4.2.10.3.table | 7 - .../grib2/tables/21/4.2.10.4.table | 18 - .../grib2/tables/21/4.2.2.0.table | 43 - .../grib2/tables/21/4.2.2.3.table | 32 - .../grib2/tables/21/4.2.2.4.table | 16 - .../grib2/tables/21/4.2.2.5.table | 2 - .../grib2/tables/21/4.2.3.0.table | 14 - .../grib2/tables/21/4.2.3.1.table | 32 - .../grib2/tables/21/4.2.3.2.table | 13 - .../grib2/tables/21/4.2.3.3.table | 4 - .../grib2/tables/21/4.2.3.4.table | 10 - .../grib2/tables/21/4.2.3.5.table | 7 - .../grib2/tables/21/4.2.3.6.table | 7 - .../grib2/tables/21/4.201.table | 15 - .../grib2/tables/21/4.202.table | 4 - .../grib2/tables/21/4.203.table | 26 - .../grib2/tables/21/4.204.table | 9 - .../grib2/tables/21/4.205.table | 6 - .../grib2/tables/21/4.206.table | 6 - .../grib2/tables/21/4.207.table | 10 - .../grib2/tables/21/4.208.table | 9 - .../grib2/tables/21/4.209.table | 9 - .../grib2/tables/21/4.210.table | 6 - .../grib2/tables/21/4.211.table | 7 - .../grib2/tables/21/4.212.table | 18 - .../grib2/tables/21/4.213.table | 16 - .../grib2/tables/21/4.215.table | 9 - .../grib2/tables/21/4.216.table | 5 - .../grib2/tables/21/4.217.table | 8 - .../grib2/tables/21/4.218.table | 44 - .../grib2/tables/21/4.219.table | 8 - .../grib2/tables/21/4.220.table | 6 - .../grib2/tables/21/4.221.table | 6 - .../grib2/tables/21/4.222.table | 6 - .../grib2/tables/21/4.223.table | 5 - .../grib2/tables/21/4.224.table | 18 - .../grib2/tables/21/4.225.table | 2 - .../grib2/tables/21/4.227.table | 9 - .../grib2/tables/21/4.230.table | 449 - .../grib2/tables/21/4.233.table | 449 - .../grib2/tables/21/4.234.table | 21 - .../grib2/tables/21/4.236.table | 8 - .../grib2/tables/21/4.238.table | 16 - .../grib2/tables/21/4.240.table | 13 - .../grib2/tables/21/4.241.table | 9 - .../grib2/tables/21/4.242.table | 7 - .../grib2/tables/21/4.243.table | 43 - .../grib2/tables/21/4.244.table | 7 - .../grib2/tables/21/4.3.table | 23 - .../grib2/tables/21/4.4.table | 17 - .../grib2/tables/21/4.5.table | 72 - .../grib2/tables/21/4.6.table | 9 - .../grib2/tables/21/4.7.table | 14 - .../grib2/tables/21/4.8.table | 6 - .../grib2/tables/21/4.9.table | 9 - .../grib2/tables/21/4.91.table | 16 - .../grib2/tables/21/5.0.table | 25 - .../grib2/tables/21/5.1.table | 6 - .../grib2/tables/21/5.2.table | 8 - .../grib2/tables/21/5.3.table | 7 - .../grib2/tables/21/5.4.table | 6 - .../grib2/tables/21/5.40.table | 5 - .../grib2/tables/21/5.40000.table | 5 - .../grib2/tables/21/5.5.table | 7 - .../grib2/tables/21/5.50002.table | 19 - .../grib2/tables/21/5.6.table | 7 - .../grib2/tables/21/5.7.table | 7 - .../grib2/tables/21/6.0.table | 6 - .../grib2/tables/21/stepType.table | 2 - .../grib2/tables/22/1.4.table | 13 - .../grib2/tables/22/3.15.table | 23 - .../grib2/tables/22/4.10.table | 16 - .../grib2/tables/22/4.230.table | 449 - .../grib2/tables/22/4.4.table | 17 - .../grib2/tables/22/4.5.table | 72 - .../grib2/tables/22/4.91.table | 16 - .../grib2/tables/23/0.0.table | 10 - .../grib2/tables/23/1.0.table | 27 - .../grib2/tables/23/1.1.table | 4 - .../grib2/tables/23/1.2.table | 8 - .../grib2/tables/23/1.3.table | 16 - .../grib2/tables/23/1.4.table | 13 - .../grib2/tables/23/1.5.table | 7 - .../grib2/tables/23/1.6.table | 8 - .../grib2/tables/23/3.0.table | 6 - .../grib2/tables/23/3.1.table | 54 - .../grib2/tables/23/3.10.table | 8 - .../grib2/tables/23/3.11.table | 7 - .../grib2/tables/23/3.15.table | 23 - .../grib2/tables/23/3.2.table | 14 - .../grib2/tables/23/3.20.table | 6 - .../grib2/tables/23/3.21.table | 8 - .../grib2/tables/23/3.25.table | 10 - .../grib2/tables/23/3.3.table | 9 - .../grib2/tables/23/3.4.table | 17 - .../grib2/tables/23/3.5.table | 5 - .../grib2/tables/23/3.6.table | 3 - .../grib2/tables/23/3.7.table | 5 - .../grib2/tables/23/3.8.table | 7 - .../grib2/tables/23/3.9.table | 4 - .../grib2/tables/23/4.0.table | 75 - .../grib2/tables/23/4.1.0.table | 27 - .../grib2/tables/23/4.1.1.table | 7 - .../grib2/tables/23/4.1.10.table | 10 - .../grib2/tables/23/4.1.192.table | 4 - .../grib2/tables/23/4.1.2.table | 9 - .../grib2/tables/23/4.1.3.table | 11 - .../grib2/tables/23/4.10.table | 16 - .../grib2/tables/23/4.11.table | 10 - .../grib2/tables/23/4.12.table | 7 - .../grib2/tables/23/4.13.table | 6 - .../grib2/tables/23/4.14.table | 6 - .../grib2/tables/23/4.15.table | 11 - .../grib2/tables/23/4.16.table | 9 - .../grib2/tables/23/4.192.table | 4 - .../grib2/tables/23/4.2.0.0.table | 34 - .../grib2/tables/23/4.2.0.1.table | 126 - .../grib2/tables/23/4.2.0.13.table | 5 - .../grib2/tables/23/4.2.0.14.table | 7 - .../grib2/tables/23/4.2.0.15.table | 21 - .../grib2/tables/23/4.2.0.16.table | 10 - .../grib2/tables/23/4.2.0.17.table | 6 - .../grib2/tables/23/4.2.0.18.table | 23 - .../grib2/tables/23/4.2.0.19.table | 40 - .../grib2/tables/23/4.2.0.190.table | 5 - .../grib2/tables/23/4.2.0.191.table | 8 - .../grib2/tables/23/4.2.0.2.table | 51 - .../grib2/tables/23/4.2.0.20.table | 62 - .../grib2/tables/23/4.2.0.3.table | 36 - .../grib2/tables/23/4.2.0.4.table | 24 - .../grib2/tables/23/4.2.0.5.table | 13 - .../grib2/tables/23/4.2.0.6.table | 49 - .../grib2/tables/23/4.2.0.7.table | 24 - .../grib2/tables/23/4.2.1.0.table | 21 - .../grib2/tables/23/4.2.1.1.table | 7 - .../grib2/tables/23/4.2.1.2.table | 15 - .../grib2/tables/23/4.2.10.0.table | 70 - .../grib2/tables/23/4.2.10.1.table | 9 - .../grib2/tables/23/4.2.10.191.table | 8 - .../grib2/tables/23/4.2.10.2.table | 17 - .../grib2/tables/23/4.2.10.3.table | 7 - .../grib2/tables/23/4.2.10.4.table | 24 - .../grib2/tables/23/4.2.2.0.table | 43 - .../grib2/tables/23/4.2.2.3.table | 32 - .../grib2/tables/23/4.2.2.4.table | 16 - .../grib2/tables/23/4.2.2.5.table | 2 - .../grib2/tables/23/4.2.3.0.table | 14 - .../grib2/tables/23/4.2.3.1.table | 35 - .../grib2/tables/23/4.2.3.2.table | 24 - .../grib2/tables/23/4.2.3.3.table | 4 - .../grib2/tables/23/4.2.3.4.table | 10 - .../grib2/tables/23/4.2.3.5.table | 7 - .../grib2/tables/23/4.2.3.6.table | 7 - .../grib2/tables/23/4.201.table | 17 - .../grib2/tables/23/4.202.table | 4 - .../grib2/tables/23/4.203.table | 26 - .../grib2/tables/23/4.204.table | 9 - .../grib2/tables/23/4.205.table | 6 - .../grib2/tables/23/4.206.table | 6 - .../grib2/tables/23/4.207.table | 10 - .../grib2/tables/23/4.208.table | 9 - .../grib2/tables/23/4.209.table | 9 - .../grib2/tables/23/4.210.table | 6 - .../grib2/tables/23/4.211.table | 7 - .../grib2/tables/23/4.212.table | 18 - .../grib2/tables/23/4.213.table | 16 - .../grib2/tables/23/4.215.table | 9 - .../grib2/tables/23/4.216.table | 5 - .../grib2/tables/23/4.217.table | 8 - .../grib2/tables/23/4.218.table | 46 - .../grib2/tables/23/4.219.table | 8 - .../grib2/tables/23/4.220.table | 6 - .../grib2/tables/23/4.221.table | 6 - .../grib2/tables/23/4.222.table | 6 - .../grib2/tables/23/4.223.table | 5 - .../grib2/tables/23/4.224.table | 18 - .../grib2/tables/23/4.225.table | 2 - .../grib2/tables/23/4.227.table | 9 - .../grib2/tables/23/4.230.table | 511 - .../grib2/tables/23/4.233.table | 511 - .../grib2/tables/23/4.234.table | 21 - .../grib2/tables/23/4.236.table | 8 - .../grib2/tables/23/4.240.table | 13 - .../grib2/tables/23/4.241.table | 9 - .../grib2/tables/23/4.242.table | 7 - .../grib2/tables/23/4.243.table | 43 - .../grib2/tables/23/4.244.table | 7 - .../grib2/tables/23/4.3.table | 23 - .../grib2/tables/23/4.4.table | 17 - .../grib2/tables/23/4.5.table | 73 - .../grib2/tables/23/4.6.table | 9 - .../grib2/tables/23/4.7.table | 14 - .../grib2/tables/23/4.8.table | 6 - .../grib2/tables/23/4.9.table | 13 - .../grib2/tables/23/4.91.table | 16 - .../grib2/tables/23/5.0.table | 27 - .../grib2/tables/23/5.1.table | 6 - .../grib2/tables/23/5.2.table | 8 - .../grib2/tables/23/5.25.table | 9 - .../grib2/tables/23/5.26.table | 5 - .../grib2/tables/23/5.3.table | 7 - .../grib2/tables/23/5.4.table | 6 - .../grib2/tables/23/5.40.table | 5 - .../grib2/tables/23/5.40000.table | 5 - .../grib2/tables/23/5.5.table | 7 - .../grib2/tables/23/5.50002.table | 19 - .../grib2/tables/23/5.6.table | 7 - .../grib2/tables/23/5.7.table | 7 - .../grib2/tables/23/6.0.table | 6 - .../grib2/tables/23/stepType.table | 2 - .../grib2/tables/24/0.0.table | 11 - .../grib2/tables/24/1.0.table | 28 - .../grib2/tables/24/1.1.table | 4 - .../grib2/tables/24/1.2.table | 8 - .../grib2/tables/24/1.3.table | 16 - .../grib2/tables/24/1.4.table | 13 - .../grib2/tables/24/1.5.table | 7 - .../grib2/tables/24/1.6.table | 8 - .../grib2/tables/24/3.0.table | 6 - .../grib2/tables/24/3.1.table | 54 - .../grib2/tables/24/3.10.table | 8 - .../grib2/tables/24/3.11.table | 7 - .../grib2/tables/24/3.15.table | 23 - .../grib2/tables/24/3.2.table | 14 - .../grib2/tables/24/3.20.table | 6 - .../grib2/tables/24/3.21.table | 8 - .../grib2/tables/24/3.25.table | 10 - .../grib2/tables/24/3.3.table | 9 - .../grib2/tables/24/3.4.table | 17 - .../grib2/tables/24/3.5.table | 5 - .../grib2/tables/24/3.6.table | 3 - .../grib2/tables/24/3.7.table | 5 - .../grib2/tables/24/3.8.table | 7 - .../grib2/tables/24/3.9.table | 4 - .../grib2/tables/24/4.0.table | 86 - .../grib2/tables/24/4.1.0.table | 27 - .../grib2/tables/24/4.1.1.table | 7 - .../grib2/tables/24/4.1.10.table | 10 - .../grib2/tables/24/4.1.192.table | 4 - .../grib2/tables/24/4.1.2.table | 10 - .../grib2/tables/24/4.1.3.table | 11 - .../grib2/tables/24/4.10.table | 16 - .../grib2/tables/24/4.11.table | 10 - .../grib2/tables/24/4.12.table | 7 - .../grib2/tables/24/4.13.table | 6 - .../grib2/tables/24/4.14.table | 6 - .../grib2/tables/24/4.15.table | 11 - .../grib2/tables/24/4.16.table | 9 - .../grib2/tables/24/4.192.table | 4 - .../grib2/tables/24/4.2.0.0.table | 34 - .../grib2/tables/24/4.2.0.1.table | 141 - .../grib2/tables/24/4.2.0.13.table | 5 - .../grib2/tables/24/4.2.0.14.table | 7 - .../grib2/tables/24/4.2.0.15.table | 21 - .../grib2/tables/24/4.2.0.16.table | 10 - .../grib2/tables/24/4.2.0.17.table | 6 - .../grib2/tables/24/4.2.0.18.table | 23 - .../grib2/tables/24/4.2.0.19.table | 41 - .../grib2/tables/24/4.2.0.190.table | 5 - .../grib2/tables/24/4.2.0.191.table | 8 - .../grib2/tables/24/4.2.0.2.table | 51 - .../grib2/tables/24/4.2.0.20.table | 64 - .../grib2/tables/24/4.2.0.3.table | 36 - .../grib2/tables/24/4.2.0.4.table | 24 - .../grib2/tables/24/4.2.0.5.table | 13 - .../grib2/tables/24/4.2.0.6.table | 49 - .../grib2/tables/24/4.2.0.7.table | 24 - .../grib2/tables/24/4.2.1.0.table | 21 - .../grib2/tables/24/4.2.1.1.table | 7 - .../grib2/tables/24/4.2.1.2.table | 15 - .../grib2/tables/24/4.2.10.0.table | 69 - .../grib2/tables/24/4.2.10.1.table | 9 - .../grib2/tables/24/4.2.10.191.table | 8 - .../grib2/tables/24/4.2.10.2.table | 17 - .../grib2/tables/24/4.2.10.3.table | 8 - .../grib2/tables/24/4.2.10.4.table | 24 - .../grib2/tables/24/4.2.2.0.table | 44 - .../grib2/tables/24/4.2.2.3.table | 32 - .../grib2/tables/24/4.2.2.4.table | 16 - .../grib2/tables/24/4.2.2.5.table | 2 - .../grib2/tables/24/4.2.3.0.table | 14 - .../grib2/tables/24/4.2.3.1.table | 35 - .../grib2/tables/24/4.2.3.2.table | 24 - .../grib2/tables/24/4.2.3.3.table | 4 - .../grib2/tables/24/4.2.3.4.table | 10 - .../grib2/tables/24/4.2.3.5.table | 7 - .../grib2/tables/24/4.2.3.6.table | 7 - .../grib2/tables/24/4.201.table | 17 - .../grib2/tables/24/4.202.table | 4 - .../grib2/tables/24/4.203.table | 26 - .../grib2/tables/24/4.204.table | 9 - .../grib2/tables/24/4.205.table | 6 - .../grib2/tables/24/4.206.table | 6 - .../grib2/tables/24/4.207.table | 10 - .../grib2/tables/24/4.208.table | 9 - .../grib2/tables/24/4.209.table | 9 - .../grib2/tables/24/4.210.table | 6 - .../grib2/tables/24/4.211.table | 7 - .../grib2/tables/24/4.212.table | 18 - .../grib2/tables/24/4.213.table | 16 - .../grib2/tables/24/4.215.table | 9 - .../grib2/tables/24/4.216.table | 5 - .../grib2/tables/24/4.217.table | 8 - .../grib2/tables/24/4.218.table | 46 - .../grib2/tables/24/4.219.table | 8 - .../grib2/tables/24/4.220.table | 6 - .../grib2/tables/24/4.221.table | 6 - .../grib2/tables/24/4.222.table | 6 - .../grib2/tables/24/4.223.table | 5 - .../grib2/tables/24/4.224.table | 18 - .../grib2/tables/24/4.225.table | 2 - .../grib2/tables/24/4.227.table | 9 - .../grib2/tables/24/4.230.table | 512 - .../grib2/tables/24/4.233.table | 512 - .../grib2/tables/24/4.234.table | 21 - .../grib2/tables/24/4.236.table | 8 - .../grib2/tables/24/4.238.table | 16 - .../grib2/tables/24/4.240.table | 13 - .../grib2/tables/24/4.241.table | 9 - .../grib2/tables/24/4.242.table | 7 - .../grib2/tables/24/4.243.table | 43 - .../grib2/tables/24/4.244.table | 7 - .../grib2/tables/24/4.3.table | 23 - .../grib2/tables/24/4.4.table | 17 - .../grib2/tables/24/4.5.table | 76 - .../grib2/tables/24/4.6.table | 9 - .../grib2/tables/24/4.7.table | 14 - .../grib2/tables/24/4.8.table | 6 - .../grib2/tables/24/4.9.table | 13 - .../grib2/tables/24/4.91.table | 16 - .../grib2/tables/24/5.0.table | 27 - .../grib2/tables/24/5.1.table | 6 - .../grib2/tables/24/5.2.table | 8 - .../grib2/tables/24/5.25.table | 9 - .../grib2/tables/24/5.26.table | 5 - .../grib2/tables/24/5.3.table | 7 - .../grib2/tables/24/5.4.table | 6 - .../grib2/tables/24/5.40.table | 5 - .../grib2/tables/24/5.40000.table | 5 - .../grib2/tables/24/5.5.table | 7 - .../grib2/tables/24/5.50002.table | 19 - .../grib2/tables/24/5.6.table | 7 - .../grib2/tables/24/5.7.table | 7 - .../grib2/tables/24/6.0.table | 6 - .../grib2/tables/24/stepType.table | 2 - .../grib2/tables/25/0.0.table | 13 - .../grib2/tables/25/1.0.table | 29 - .../grib2/tables/25/1.1.table | 4 - .../grib2/tables/25/1.2.table | 8 - .../grib2/tables/25/1.3.table | 16 - .../grib2/tables/25/1.4.table | 13 - .../grib2/tables/25/1.5.table | 7 - .../grib2/tables/25/1.6.table | 8 - .../grib2/tables/25/3.0.table | 6 - .../grib2/tables/25/3.1.table | 54 - .../grib2/tables/25/3.10.table | 8 - .../grib2/tables/25/3.11.table | 7 - .../grib2/tables/25/3.15.table | 23 - .../grib2/tables/25/3.2.table | 16 - .../grib2/tables/25/3.20.table | 6 - .../grib2/tables/25/3.21.table | 8 - .../grib2/tables/25/3.25.table | 10 - .../grib2/tables/25/3.3.table | 9 - .../grib2/tables/25/3.4.table | 17 - .../grib2/tables/25/3.5.table | 5 - .../grib2/tables/25/3.6.table | 3 - .../grib2/tables/25/3.7.table | 5 - .../grib2/tables/25/3.8.table | 7 - .../grib2/tables/25/3.9.table | 4 - .../grib2/tables/25/4.0.table | 86 - .../grib2/tables/25/4.1.0.table | 27 - .../grib2/tables/25/4.1.1.table | 7 - .../grib2/tables/25/4.1.10.table | 10 - .../grib2/tables/25/4.1.192.table | 4 - .../grib2/tables/25/4.1.2.table | 10 - .../grib2/tables/25/4.1.20.table | 7 - .../grib2/tables/25/4.1.3.table | 11 - .../grib2/tables/25/4.1.4.table | 15 - .../grib2/tables/25/4.10.table | 16 - .../grib2/tables/25/4.11.table | 10 - .../grib2/tables/25/4.12.table | 7 - .../grib2/tables/25/4.13.table | 6 - .../grib2/tables/25/4.14.table | 6 - .../grib2/tables/25/4.15.table | 11 - .../grib2/tables/25/4.16.table | 9 - .../grib2/tables/25/4.192.table | 4 - .../grib2/tables/25/4.2.0.0.table | 34 - .../grib2/tables/25/4.2.0.1.table | 141 - .../grib2/tables/25/4.2.0.13.table | 5 - .../grib2/tables/25/4.2.0.14.table | 7 - .../grib2/tables/25/4.2.0.15.table | 21 - .../grib2/tables/25/4.2.0.16.table | 10 - .../grib2/tables/25/4.2.0.17.table | 6 - .../grib2/tables/25/4.2.0.18.table | 23 - .../grib2/tables/25/4.2.0.19.table | 42 - .../grib2/tables/25/4.2.0.190.table | 5 - .../grib2/tables/25/4.2.0.191.table | 8 - .../grib2/tables/25/4.2.0.2.table | 51 - .../grib2/tables/25/4.2.0.20.table | 64 - .../grib2/tables/25/4.2.0.3.table | 36 - .../grib2/tables/25/4.2.0.4.table | 24 - .../grib2/tables/25/4.2.0.5.table | 13 - .../grib2/tables/25/4.2.0.6.table | 49 - .../grib2/tables/25/4.2.0.7.table | 24 - .../grib2/tables/25/4.2.1.0.table | 21 - .../grib2/tables/25/4.2.1.1.table | 7 - .../grib2/tables/25/4.2.1.2.table | 15 - .../grib2/tables/25/4.2.10.0.table | 69 - .../grib2/tables/25/4.2.10.1.table | 9 - .../grib2/tables/25/4.2.10.191.table | 8 - .../grib2/tables/25/4.2.10.2.table | 17 - .../grib2/tables/25/4.2.10.3.table | 8 - .../grib2/tables/25/4.2.10.4.table | 24 - .../grib2/tables/25/4.2.2.0.table | 44 - .../grib2/tables/25/4.2.2.3.table | 33 - .../grib2/tables/25/4.2.2.4.table | 16 - .../grib2/tables/25/4.2.2.5.table | 6 - .../grib2/tables/25/4.2.20.0.table | 6 - .../grib2/tables/25/4.2.20.1.table | 14 - .../grib2/tables/25/4.2.20.2.table | 5 - .../grib2/tables/25/4.2.3.0.table | 14 - .../grib2/tables/25/4.2.3.1.table | 35 - .../grib2/tables/25/4.2.3.2.table | 24 - .../grib2/tables/25/4.2.3.3.table | 4 - .../grib2/tables/25/4.2.3.4.table | 10 - .../grib2/tables/25/4.2.3.5.table | 7 - .../grib2/tables/25/4.2.3.6.table | 7 - .../grib2/tables/25/4.2.4.0.table | 10 - .../grib2/tables/25/4.2.4.1.table | 8 - .../grib2/tables/25/4.2.4.10.table | 12 - .../grib2/tables/25/4.2.4.2.table | 18 - .../grib2/tables/25/4.2.4.3.table | 12 - .../grib2/tables/25/4.2.4.4.table | 11 - .../grib2/tables/25/4.2.4.5.table | 8 - .../grib2/tables/25/4.2.4.6.table | 11 - .../grib2/tables/25/4.2.4.7.table | 8 - .../grib2/tables/25/4.2.4.8.table | 12 - .../grib2/tables/25/4.2.4.9.table | 7 - .../grib2/tables/25/4.201.table | 17 - .../grib2/tables/25/4.202.table | 4 - .../grib2/tables/25/4.203.table | 26 - .../grib2/tables/25/4.204.table | 9 - .../grib2/tables/25/4.205.table | 6 - .../grib2/tables/25/4.206.table | 6 - .../grib2/tables/25/4.207.table | 10 - .../grib2/tables/25/4.208.table | 9 - .../grib2/tables/25/4.209.table | 9 - .../grib2/tables/25/4.210.table | 6 - .../grib2/tables/25/4.211.table | 7 - .../grib2/tables/25/4.212.table | 18 - .../grib2/tables/25/4.213.table | 16 - .../grib2/tables/25/4.215.table | 9 - .../grib2/tables/25/4.216.table | 5 - .../grib2/tables/25/4.217.table | 8 - .../grib2/tables/25/4.218.table | 46 - .../grib2/tables/25/4.219.table | 8 - .../grib2/tables/25/4.220.table | 6 - .../grib2/tables/25/4.221.table | 6 - .../grib2/tables/25/4.222.table | 6 - .../grib2/tables/25/4.223.table | 5 - .../grib2/tables/25/4.224.table | 18 - .../grib2/tables/25/4.225.table | 2 - .../grib2/tables/25/4.227.table | 9 - .../grib2/tables/25/4.228.table | 8 - .../grib2/tables/25/4.230.table | 512 - .../grib2/tables/25/4.233.table | 512 - .../grib2/tables/25/4.234.table | 21 - .../grib2/tables/25/4.236.table | 8 - .../grib2/tables/25/4.238.table | 16 - .../grib2/tables/25/4.240.table | 13 - .../grib2/tables/25/4.241.table | 9 - .../grib2/tables/25/4.242.table | 7 - .../grib2/tables/25/4.243.table | 43 - .../grib2/tables/25/4.244.table | 7 - .../grib2/tables/25/4.3.table | 23 - .../grib2/tables/25/4.4.table | 17 - .../grib2/tables/25/4.5.table | 84 - .../grib2/tables/25/4.6.table | 9 - .../grib2/tables/25/4.7.table | 14 - .../grib2/tables/25/4.8.table | 6 - .../grib2/tables/25/4.9.table | 13 - .../grib2/tables/25/4.91.table | 16 - .../grib2/tables/25/5.0.table | 27 - .../grib2/tables/25/5.1.table | 6 - .../grib2/tables/25/5.2.table | 8 - .../grib2/tables/25/5.25.table | 9 - .../grib2/tables/25/5.26.table | 5 - .../grib2/tables/25/5.3.table | 7 - .../grib2/tables/25/5.4.table | 6 - .../grib2/tables/25/5.40.table | 5 - .../grib2/tables/25/5.40000.table | 5 - .../grib2/tables/25/5.5.table | 7 - .../grib2/tables/25/5.50002.table | 19 - .../grib2/tables/25/5.6.table | 7 - .../grib2/tables/25/5.7.table | 7 - .../grib2/tables/25/6.0.table | 6 - .../grib2/tables/25/stepType.table | 2 - .../grib2/tables/26/0.0.table | 13 - .../grib2/tables/26/1.0.table | 30 - .../grib2/tables/26/1.1.table | 4 - .../grib2/tables/26/1.2.table | 8 - .../grib2/tables/26/1.3.table | 16 - .../grib2/tables/26/1.4.table | 13 - .../grib2/tables/26/1.5.table | 7 - .../grib2/tables/26/1.6.table | 8 - .../grib2/tables/26/3.0.table | 6 - .../grib2/tables/26/3.1.table | 54 - .../grib2/tables/26/3.10.table | 8 - .../grib2/tables/26/3.11.table | 7 - .../grib2/tables/26/3.15.table | 23 - .../grib2/tables/26/3.2.table | 16 - .../grib2/tables/26/3.20.table | 6 - .../grib2/tables/26/3.21.table | 8 - .../grib2/tables/26/3.25.table | 10 - .../grib2/tables/26/3.3.table | 9 - .../grib2/tables/26/3.4.table | 17 - .../grib2/tables/26/3.5.table | 5 - .../grib2/tables/26/3.6.table | 3 - .../grib2/tables/26/3.7.table | 5 - .../grib2/tables/26/3.8.table | 7 - .../grib2/tables/26/3.9.table | 4 - .../grib2/tables/26/4.0.table | 84 - .../grib2/tables/26/4.1.0.table | 27 - .../grib2/tables/26/4.1.1.table | 7 - .../grib2/tables/26/4.1.10.table | 10 - .../grib2/tables/26/4.1.192.table | 4 - .../grib2/tables/26/4.1.2.table | 10 - .../grib2/tables/26/4.1.20.table | 7 - .../grib2/tables/26/4.1.3.table | 11 - .../grib2/tables/26/4.1.4.table | 15 - .../grib2/tables/26/4.10.table | 16 - .../grib2/tables/26/4.11.table | 10 - .../grib2/tables/26/4.12.table | 7 - .../grib2/tables/26/4.13.table | 6 - .../grib2/tables/26/4.14.table | 6 - .../grib2/tables/26/4.15.table | 11 - .../grib2/tables/26/4.16.table | 10 - .../grib2/tables/26/4.192.table | 4 - .../grib2/tables/26/4.2.0.0.table | 36 - .../grib2/tables/26/4.2.0.1.table | 150 - .../grib2/tables/26/4.2.0.13.table | 5 - .../grib2/tables/26/4.2.0.14.table | 7 - .../grib2/tables/26/4.2.0.15.table | 21 - .../grib2/tables/26/4.2.0.16.table | 10 - .../grib2/tables/26/4.2.0.17.table | 6 - .../grib2/tables/26/4.2.0.18.table | 23 - .../grib2/tables/26/4.2.0.19.table | 45 - .../grib2/tables/26/4.2.0.190.table | 5 - .../grib2/tables/26/4.2.0.191.table | 8 - .../grib2/tables/26/4.2.0.2.table | 51 - .../grib2/tables/26/4.2.0.20.table | 64 - .../grib2/tables/26/4.2.0.3.table | 36 - .../grib2/tables/26/4.2.0.4.table | 25 - .../grib2/tables/26/4.2.0.5.table | 13 - .../grib2/tables/26/4.2.0.6.table | 50 - .../grib2/tables/26/4.2.0.7.table | 25 - .../grib2/tables/26/4.2.1.0.table | 21 - .../grib2/tables/26/4.2.1.1.table | 7 - .../grib2/tables/26/4.2.1.2.table | 15 - .../grib2/tables/26/4.2.10.0.table | 69 - .../grib2/tables/26/4.2.10.1.table | 9 - .../grib2/tables/26/4.2.10.191.table | 8 - .../grib2/tables/26/4.2.10.2.table | 17 - .../grib2/tables/26/4.2.10.3.table | 8 - .../grib2/tables/26/4.2.10.4.table | 24 - .../grib2/tables/26/4.2.2.0.table | 44 - .../grib2/tables/26/4.2.2.3.table | 33 - .../grib2/tables/26/4.2.2.4.table | 24 - .../grib2/tables/26/4.2.2.5.table | 6 - .../grib2/tables/26/4.2.20.0.table | 6 - .../grib2/tables/26/4.2.20.1.table | 14 - .../grib2/tables/26/4.2.20.2.table | 5 - .../grib2/tables/26/4.2.3.0.table | 14 - .../grib2/tables/26/4.2.3.1.table | 35 - .../grib2/tables/26/4.2.3.2.table | 24 - .../grib2/tables/26/4.2.3.3.table | 4 - .../grib2/tables/26/4.2.3.4.table | 10 - .../grib2/tables/26/4.2.3.5.table | 7 - .../grib2/tables/26/4.2.3.6.table | 7 - .../grib2/tables/26/4.2.4.0.table | 10 - .../grib2/tables/26/4.2.4.1.table | 8 - .../grib2/tables/26/4.2.4.10.table | 12 - .../grib2/tables/26/4.2.4.2.table | 18 - .../grib2/tables/26/4.2.4.3.table | 12 - .../grib2/tables/26/4.2.4.4.table | 11 - .../grib2/tables/26/4.2.4.5.table | 8 - .../grib2/tables/26/4.2.4.6.table | 11 - .../grib2/tables/26/4.2.4.7.table | 8 - .../grib2/tables/26/4.2.4.8.table | 12 - .../grib2/tables/26/4.2.4.9.table | 7 - .../grib2/tables/26/4.201.table | 17 - .../grib2/tables/26/4.202.table | 4 - .../grib2/tables/26/4.203.table | 26 - .../grib2/tables/26/4.204.table | 9 - .../grib2/tables/26/4.205.table | 6 - .../grib2/tables/26/4.206.table | 6 - .../grib2/tables/26/4.207.table | 10 - .../grib2/tables/26/4.208.table | 9 - .../grib2/tables/26/4.209.table | 9 - .../grib2/tables/26/4.210.table | 6 - .../grib2/tables/26/4.211.table | 7 - .../grib2/tables/26/4.212.table | 18 - .../grib2/tables/26/4.213.table | 16 - .../grib2/tables/26/4.214.table | 11 - .../grib2/tables/26/4.215.table | 9 - .../grib2/tables/26/4.216.table | 5 - .../grib2/tables/26/4.217.table | 8 - .../grib2/tables/26/4.218.table | 46 - .../grib2/tables/26/4.219.table | 8 - .../grib2/tables/26/4.220.table | 6 - .../grib2/tables/26/4.221.table | 6 - .../grib2/tables/26/4.222.table | 6 - .../grib2/tables/26/4.223.table | 5 - .../grib2/tables/26/4.224.table | 18 - .../grib2/tables/26/4.225.table | 2 - .../grib2/tables/26/4.227.table | 9 - .../grib2/tables/26/4.228.table | 8 - .../grib2/tables/26/4.230.table | 527 - .../grib2/tables/26/4.233.table | 527 - .../grib2/tables/26/4.234.table | 21 - .../grib2/tables/26/4.236.table | 8 - .../grib2/tables/26/4.238.table | 32 - .../grib2/tables/26/4.240.table | 13 - .../grib2/tables/26/4.241.table | 9 - .../grib2/tables/26/4.242.table | 7 - .../grib2/tables/26/4.243.table | 43 - .../grib2/tables/26/4.244.table | 7 - .../grib2/tables/26/4.246.table | 7 - .../grib2/tables/26/4.247.table | 7 - .../grib2/tables/26/4.3.table | 23 - .../grib2/tables/26/4.4.table | 17 - .../grib2/tables/26/4.5.table | 86 - .../grib2/tables/26/4.6.table | 9 - .../grib2/tables/26/4.7.table | 14 - .../grib2/tables/26/4.8.table | 6 - .../grib2/tables/26/4.9.table | 13 - .../grib2/tables/26/4.91.table | 16 - .../grib2/tables/26/5.0.table | 22 - .../grib2/tables/26/5.1.table | 6 - .../grib2/tables/26/5.2.table | 8 - .../grib2/tables/26/5.25.table | 9 - .../grib2/tables/26/5.26.table | 5 - .../grib2/tables/26/5.3.table | 7 - .../grib2/tables/26/5.4.table | 6 - .../grib2/tables/26/5.40.table | 5 - .../grib2/tables/26/5.5.table | 7 - .../grib2/tables/26/5.6.table | 7 - .../grib2/tables/26/5.7.table | 7 - .../grib2/tables/26/6.0.table | 6 - .../grib2/tables/26/stepType.table | 2 - .../definitions.save/grib2/tables/3/0.0.table | 10 - .../definitions.save/grib2/tables/3/1.0.table | 7 - .../definitions.save/grib2/tables/3/1.1.table | 5 - .../definitions.save/grib2/tables/3/1.2.table | 8 - .../definitions.save/grib2/tables/3/1.3.table | 10 - .../definitions.save/grib2/tables/3/1.4.table | 13 - .../definitions.save/grib2/tables/3/3.0.table | 6 - .../definitions.save/grib2/tables/3/3.1.table | 43 - .../grib2/tables/3/3.10.table | 7 - .../grib2/tables/3/3.11.table | 5 - .../grib2/tables/3/3.15.table | 17 - .../definitions.save/grib2/tables/3/3.2.table | 11 - .../grib2/tables/3/3.20.table | 6 - .../grib2/tables/3/3.21.table | 8 - .../definitions.save/grib2/tables/3/3.3.table | 7 - .../definitions.save/grib2/tables/3/3.4.table | 9 - .../definitions.save/grib2/tables/3/3.5.table | 5 - .../definitions.save/grib2/tables/3/3.6.table | 2 - .../definitions.save/grib2/tables/3/3.7.table | 5 - .../definitions.save/grib2/tables/3/3.8.table | 8 - .../definitions.save/grib2/tables/3/3.9.table | 3 - .../definitions.save/grib2/tables/3/4.0.table | 38 - .../grib2/tables/3/4.1.0.table | 30 - .../grib2/tables/3/4.1.1.table | 9 - .../grib2/tables/3/4.1.10.table | 12 - .../grib2/tables/3/4.1.2.table | 11 - .../grib2/tables/3/4.1.3.table | 9 - .../definitions.save/grib2/tables/3/4.1.table | 5 - .../grib2/tables/3/4.10.table | 14 - .../grib2/tables/3/4.11.table | 9 - .../grib2/tables/3/4.12.table | 69 - .../grib2/tables/3/4.13.table | 68 - .../grib2/tables/3/4.14.table | 68 - .../grib2/tables/3/4.15.table | 68 - .../grib2/tables/3/4.151.table | 70 - .../grib2/tables/3/4.2.0.0.table | 23 - .../grib2/tables/3/4.2.0.1.table | 62 - .../grib2/tables/3/4.2.0.13.table | 6 - .../grib2/tables/3/4.2.0.14.table | 7 - .../grib2/tables/3/4.2.0.15.table | 14 - .../grib2/tables/3/4.2.0.18.table | 14 - .../grib2/tables/3/4.2.0.19.table | 24 - .../grib2/tables/3/4.2.0.190.table | 6 - .../grib2/tables/3/4.2.0.191.table | 6 - .../grib2/tables/3/4.2.0.2.table | 35 - .../grib2/tables/3/4.2.0.20.table | 13 - .../grib2/tables/3/4.2.0.3.table | 25 - .../grib2/tables/3/4.2.0.4.table | 14 - .../grib2/tables/3/4.2.0.5.table | 11 - .../grib2/tables/3/4.2.0.6.table | 30 - .../grib2/tables/3/4.2.0.7.table | 18 - .../grib2/tables/3/4.2.1.0.table | 9 - .../grib2/tables/3/4.2.1.1.table | 8 - .../grib2/tables/3/4.2.10.0.table | 20 - .../grib2/tables/3/4.2.10.1.table | 8 - .../grib2/tables/3/4.2.10.2.table | 12 - .../grib2/tables/3/4.2.10.3.table | 6 - .../grib2/tables/3/4.2.10.4.table | 9 - .../grib2/tables/3/4.2.2.0.table | 29 - .../grib2/tables/3/4.2.2.3.table | 16 - .../grib2/tables/3/4.2.3.0.table | 14 - .../grib2/tables/3/4.2.3.1.table | 11 - .../grib2/tables/3/4.201.table | 71 - .../grib2/tables/3/4.202.table | 66 - .../grib2/tables/3/4.203.table | 26 - .../grib2/tables/3/4.204.table | 71 - .../grib2/tables/3/4.205.table | 68 - .../grib2/tables/3/4.206.table | 68 - .../grib2/tables/3/4.207.table | 70 - .../grib2/tables/3/4.208.table | 71 - .../grib2/tables/3/4.209.table | 70 - .../grib2/tables/3/4.210.table | 68 - .../grib2/tables/3/4.211.table | 69 - .../grib2/tables/3/4.212.table | 79 - .../grib2/tables/3/4.213.table | 77 - .../grib2/tables/3/4.215.table | 10 - .../grib2/tables/3/4.216.table | 3 - .../grib2/tables/3/4.217.table | 70 - .../grib2/tables/3/4.220.table | 68 - .../grib2/tables/3/4.221.table | 68 - .../grib2/tables/3/4.230.table | 47 - .../definitions.save/grib2/tables/3/4.3.table | 13 - .../definitions.save/grib2/tables/3/4.4.table | 16 - .../definitions.save/grib2/tables/3/4.5.table | 33 - .../definitions.save/grib2/tables/3/4.6.table | 8 - .../definitions.save/grib2/tables/3/4.7.table | 73 - .../definitions.save/grib2/tables/3/4.8.table | 68 - .../definitions.save/grib2/tables/3/4.9.table | 71 - .../grib2/tables/3/4.91.table | 78 - .../definitions.save/grib2/tables/3/5.0.table | 16 - .../definitions.save/grib2/tables/3/5.1.table | 5 - .../definitions.save/grib2/tables/3/5.2.table | 6 - .../definitions.save/grib2/tables/3/5.3.table | 6 - .../definitions.save/grib2/tables/3/5.4.table | 5 - .../grib2/tables/3/5.40.table | 5 - .../grib2/tables/3/5.40000.table | 5 - .../definitions.save/grib2/tables/3/5.5.table | 7 - .../grib2/tables/3/5.50002.table | 19 - .../definitions.save/grib2/tables/3/5.6.table | 68 - .../definitions.save/grib2/tables/3/5.7.table | 6 - .../definitions.save/grib2/tables/3/5.8.table | 3 - .../definitions.save/grib2/tables/3/5.9.table | 4 - .../definitions.save/grib2/tables/3/6.0.table | 7 - .../grib2/tables/3/stepType.table | 2 - .../definitions.save/grib2/tables/4/0.0.table | 10 - .../definitions.save/grib2/tables/4/1.0.table | 7 - .../definitions.save/grib2/tables/4/1.1.table | 5 - .../definitions.save/grib2/tables/4/1.2.table | 8 - .../definitions.save/grib2/tables/4/1.3.table | 10 - .../definitions.save/grib2/tables/4/1.4.table | 13 - .../definitions.save/grib2/tables/4/3.0.table | 6 - .../definitions.save/grib2/tables/4/3.1.table | 43 - .../grib2/tables/4/3.10.table | 7 - .../grib2/tables/4/3.11.table | 5 - .../grib2/tables/4/3.15.table | 22 - .../definitions.save/grib2/tables/4/3.2.table | 11 - .../grib2/tables/4/3.20.table | 6 - .../grib2/tables/4/3.21.table | 8 - .../definitions.save/grib2/tables/4/3.3.table | 7 - .../definitions.save/grib2/tables/4/3.4.table | 9 - .../definitions.save/grib2/tables/4/3.5.table | 5 - .../definitions.save/grib2/tables/4/3.6.table | 2 - .../definitions.save/grib2/tables/4/3.7.table | 5 - .../definitions.save/grib2/tables/4/3.8.table | 8 - .../definitions.save/grib2/tables/4/3.9.table | 3 - .../definitions.save/grib2/tables/4/4.0.table | 39 - .../grib2/tables/4/4.1.0.table | 30 - .../grib2/tables/4/4.1.1.table | 9 - .../grib2/tables/4/4.1.10.table | 12 - .../grib2/tables/4/4.1.192.table | 4 - .../grib2/tables/4/4.1.2.table | 11 - .../grib2/tables/4/4.1.3.table | 9 - .../definitions.save/grib2/tables/4/4.1.table | 5 - .../grib2/tables/4/4.10.table | 14 - .../grib2/tables/4/4.11.table | 9 - .../grib2/tables/4/4.12.table | 69 - .../grib2/tables/4/4.13.table | 68 - .../grib2/tables/4/4.14.table | 68 - .../grib2/tables/4/4.15.table | 68 - .../grib2/tables/4/4.151.table | 70 - .../grib2/tables/4/4.2.0.0.table | 23 - .../grib2/tables/4/4.2.0.1.table | 62 - .../grib2/tables/4/4.2.0.13.table | 6 - .../grib2/tables/4/4.2.0.14.table | 7 - .../grib2/tables/4/4.2.0.15.table | 14 - .../grib2/tables/4/4.2.0.18.table | 14 - .../grib2/tables/4/4.2.0.19.table | 24 - .../grib2/tables/4/4.2.0.190.table | 6 - .../grib2/tables/4/4.2.0.191.table | 6 - .../grib2/tables/4/4.2.0.2.table | 35 - .../grib2/tables/4/4.2.0.20.table | 13 - .../grib2/tables/4/4.2.0.3.table | 25 - .../grib2/tables/4/4.2.0.4.table | 14 - .../grib2/tables/4/4.2.0.5.table | 11 - .../grib2/tables/4/4.2.0.6.table | 30 - .../grib2/tables/4/4.2.0.7.table | 18 - .../grib2/tables/4/4.2.1.0.table | 11 - .../grib2/tables/4/4.2.1.1.table | 8 - .../grib2/tables/4/4.2.10.0.table | 20 - .../grib2/tables/4/4.2.10.1.table | 8 - .../grib2/tables/4/4.2.10.2.table | 12 - .../grib2/tables/4/4.2.10.3.table | 6 - .../grib2/tables/4/4.2.10.4.table | 9 - .../grib2/tables/4/4.2.192.0.table | 2 - .../grib2/tables/4/4.2.192.1.table | 2 - .../grib2/tables/4/4.2.192.10.table | 2 - .../grib2/tables/4/4.2.192.100.table | 2 - .../grib2/tables/4/4.2.192.101.table | 2 - .../grib2/tables/4/4.2.192.102.table | 2 - .../grib2/tables/4/4.2.192.103.table | 2 - .../grib2/tables/4/4.2.192.104.table | 2 - .../grib2/tables/4/4.2.192.105.table | 2 - .../grib2/tables/4/4.2.192.106.table | 2 - .../grib2/tables/4/4.2.192.107.table | 2 - .../grib2/tables/4/4.2.192.108.table | 2 - .../grib2/tables/4/4.2.192.109.table | 2 - .../grib2/tables/4/4.2.192.11.table | 2 - .../grib2/tables/4/4.2.192.110.table | 2 - .../grib2/tables/4/4.2.192.111.table | 2 - .../grib2/tables/4/4.2.192.112.table | 2 - .../grib2/tables/4/4.2.192.113.table | 2 - .../grib2/tables/4/4.2.192.114.table | 2 - .../grib2/tables/4/4.2.192.115.table | 2 - .../grib2/tables/4/4.2.192.116.table | 2 - .../grib2/tables/4/4.2.192.117.table | 2 - .../grib2/tables/4/4.2.192.118.table | 2 - .../grib2/tables/4/4.2.192.119.table | 2 - .../grib2/tables/4/4.2.192.12.table | 2 - .../grib2/tables/4/4.2.192.120.table | 2 - .../grib2/tables/4/4.2.192.121.table | 2 - .../grib2/tables/4/4.2.192.122.table | 2 - .../grib2/tables/4/4.2.192.123.table | 2 - .../grib2/tables/4/4.2.192.124.table | 2 - .../grib2/tables/4/4.2.192.125.table | 2 - .../grib2/tables/4/4.2.192.126.table | 2 - .../grib2/tables/4/4.2.192.127.table | 2 - .../grib2/tables/4/4.2.192.128.table | 2 - .../grib2/tables/4/4.2.192.129.table | 2 - .../grib2/tables/4/4.2.192.13.table | 2 - .../grib2/tables/4/4.2.192.130.table | 2 - .../grib2/tables/4/4.2.192.131.table | 2 - .../grib2/tables/4/4.2.192.132.table | 2 - .../grib2/tables/4/4.2.192.133.table | 2 - .../grib2/tables/4/4.2.192.134.table | 2 - .../grib2/tables/4/4.2.192.135.table | 2 - .../grib2/tables/4/4.2.192.136.table | 2 - .../grib2/tables/4/4.2.192.137.table | 2 - .../grib2/tables/4/4.2.192.138.table | 2 - .../grib2/tables/4/4.2.192.139.table | 2 - .../grib2/tables/4/4.2.192.14.table | 2 - .../grib2/tables/4/4.2.192.140.table | 2 - .../grib2/tables/4/4.2.192.141.table | 2 - .../grib2/tables/4/4.2.192.142.table | 2 - .../grib2/tables/4/4.2.192.143.table | 2 - .../grib2/tables/4/4.2.192.144.table | 2 - .../grib2/tables/4/4.2.192.145.table | 2 - .../grib2/tables/4/4.2.192.146.table | 2 - .../grib2/tables/4/4.2.192.147.table | 2 - .../grib2/tables/4/4.2.192.148.table | 2 - .../grib2/tables/4/4.2.192.149.table | 2 - .../grib2/tables/4/4.2.192.15.table | 2 - .../grib2/tables/4/4.2.192.150.table | 2 - .../grib2/tables/4/4.2.192.151.table | 2 - .../grib2/tables/4/4.2.192.152.table | 2 - .../grib2/tables/4/4.2.192.153.table | 2 - .../grib2/tables/4/4.2.192.154.table | 2 - .../grib2/tables/4/4.2.192.155.table | 2 - .../grib2/tables/4/4.2.192.156.table | 2 - .../grib2/tables/4/4.2.192.157.table | 2 - .../grib2/tables/4/4.2.192.158.table | 2 - .../grib2/tables/4/4.2.192.159.table | 2 - .../grib2/tables/4/4.2.192.16.table | 2 - .../grib2/tables/4/4.2.192.160.table | 2 - .../grib2/tables/4/4.2.192.161.table | 2 - .../grib2/tables/4/4.2.192.162.table | 2 - .../grib2/tables/4/4.2.192.163.table | 2 - .../grib2/tables/4/4.2.192.164.table | 2 - .../grib2/tables/4/4.2.192.165.table | 2 - .../grib2/tables/4/4.2.192.166.table | 2 - .../grib2/tables/4/4.2.192.167.table | 2 - .../grib2/tables/4/4.2.192.168.table | 2 - .../grib2/tables/4/4.2.192.169.table | 2 - .../grib2/tables/4/4.2.192.17.table | 2 - .../grib2/tables/4/4.2.192.170.table | 2 - .../grib2/tables/4/4.2.192.171.table | 2 - .../grib2/tables/4/4.2.192.172.table | 2 - .../grib2/tables/4/4.2.192.173.table | 2 - .../grib2/tables/4/4.2.192.174.table | 2 - .../grib2/tables/4/4.2.192.175.table | 2 - .../grib2/tables/4/4.2.192.176.table | 2 - .../grib2/tables/4/4.2.192.177.table | 2 - .../grib2/tables/4/4.2.192.178.table | 2 - .../grib2/tables/4/4.2.192.179.table | 2 - .../grib2/tables/4/4.2.192.18.table | 2 - .../grib2/tables/4/4.2.192.180.table | 2 - .../grib2/tables/4/4.2.192.181.table | 2 - .../grib2/tables/4/4.2.192.182.table | 2 - .../grib2/tables/4/4.2.192.183.table | 2 - .../grib2/tables/4/4.2.192.184.table | 2 - .../grib2/tables/4/4.2.192.185.table | 2 - .../grib2/tables/4/4.2.192.186.table | 2 - .../grib2/tables/4/4.2.192.187.table | 2 - .../grib2/tables/4/4.2.192.188.table | 2 - .../grib2/tables/4/4.2.192.189.table | 2 - .../grib2/tables/4/4.2.192.19.table | 2 - .../grib2/tables/4/4.2.192.190.table | 2 - .../grib2/tables/4/4.2.192.191.table | 2 - .../grib2/tables/4/4.2.192.192.table | 2 - .../grib2/tables/4/4.2.192.193.table | 2 - .../grib2/tables/4/4.2.192.194.table | 2 - .../grib2/tables/4/4.2.192.195.table | 2 - .../grib2/tables/4/4.2.192.196.table | 2 - .../grib2/tables/4/4.2.192.197.table | 2 - .../grib2/tables/4/4.2.192.198.table | 2 - .../grib2/tables/4/4.2.192.199.table | 2 - .../grib2/tables/4/4.2.192.2.table | 2 - .../grib2/tables/4/4.2.192.20.table | 2 - .../grib2/tables/4/4.2.192.200.table | 2 - .../grib2/tables/4/4.2.192.201.table | 2 - .../grib2/tables/4/4.2.192.202.table | 2 - .../grib2/tables/4/4.2.192.203.table | 2 - .../grib2/tables/4/4.2.192.204.table | 2 - .../grib2/tables/4/4.2.192.205.table | 2 - .../grib2/tables/4/4.2.192.206.table | 2 - .../grib2/tables/4/4.2.192.207.table | 2 - .../grib2/tables/4/4.2.192.208.table | 2 - .../grib2/tables/4/4.2.192.209.table | 2 - .../grib2/tables/4/4.2.192.21.table | 2 - .../grib2/tables/4/4.2.192.210.table | 2 - .../grib2/tables/4/4.2.192.211.table | 2 - .../grib2/tables/4/4.2.192.212.table | 2 - .../grib2/tables/4/4.2.192.213.table | 2 - .../grib2/tables/4/4.2.192.214.table | 2 - .../grib2/tables/4/4.2.192.215.table | 2 - .../grib2/tables/4/4.2.192.216.table | 2 - .../grib2/tables/4/4.2.192.217.table | 2 - .../grib2/tables/4/4.2.192.218.table | 2 - .../grib2/tables/4/4.2.192.219.table | 2 - .../grib2/tables/4/4.2.192.22.table | 2 - .../grib2/tables/4/4.2.192.220.table | 2 - .../grib2/tables/4/4.2.192.221.table | 2 - .../grib2/tables/4/4.2.192.222.table | 2 - .../grib2/tables/4/4.2.192.223.table | 2 - .../grib2/tables/4/4.2.192.224.table | 2 - .../grib2/tables/4/4.2.192.225.table | 2 - .../grib2/tables/4/4.2.192.226.table | 2 - .../grib2/tables/4/4.2.192.227.table | 2 - .../grib2/tables/4/4.2.192.228.table | 2 - .../grib2/tables/4/4.2.192.229.table | 2 - .../grib2/tables/4/4.2.192.23.table | 2 - .../grib2/tables/4/4.2.192.230.table | 2 - .../grib2/tables/4/4.2.192.231.table | 2 - .../grib2/tables/4/4.2.192.232.table | 2 - .../grib2/tables/4/4.2.192.233.table | 2 - .../grib2/tables/4/4.2.192.234.table | 2 - .../grib2/tables/4/4.2.192.235.table | 2 - .../grib2/tables/4/4.2.192.236.table | 2 - .../grib2/tables/4/4.2.192.237.table | 2 - .../grib2/tables/4/4.2.192.238.table | 2 - .../grib2/tables/4/4.2.192.239.table | 2 - .../grib2/tables/4/4.2.192.24.table | 2 - .../grib2/tables/4/4.2.192.240.table | 2 - .../grib2/tables/4/4.2.192.241.table | 2 - .../grib2/tables/4/4.2.192.242.table | 2 - .../grib2/tables/4/4.2.192.243.table | 2 - .../grib2/tables/4/4.2.192.244.table | 2 - .../grib2/tables/4/4.2.192.245.table | 2 - .../grib2/tables/4/4.2.192.246.table | 2 - .../grib2/tables/4/4.2.192.247.table | 2 - .../grib2/tables/4/4.2.192.248.table | 2 - .../grib2/tables/4/4.2.192.249.table | 2 - .../grib2/tables/4/4.2.192.25.table | 2 - .../grib2/tables/4/4.2.192.250.table | 2 - .../grib2/tables/4/4.2.192.251.table | 2 - .../grib2/tables/4/4.2.192.252.table | 2 - .../grib2/tables/4/4.2.192.253.table | 2 - .../grib2/tables/4/4.2.192.254.table | 2 - .../grib2/tables/4/4.2.192.255.table | 2 - .../grib2/tables/4/4.2.192.26.table | 2 - .../grib2/tables/4/4.2.192.27.table | 2 - .../grib2/tables/4/4.2.192.28.table | 2 - .../grib2/tables/4/4.2.192.29.table | 2 - .../grib2/tables/4/4.2.192.3.table | 2 - .../grib2/tables/4/4.2.192.30.table | 2 - .../grib2/tables/4/4.2.192.31.table | 2 - .../grib2/tables/4/4.2.192.32.table | 2 - .../grib2/tables/4/4.2.192.33.table | 2 - .../grib2/tables/4/4.2.192.34.table | 2 - .../grib2/tables/4/4.2.192.35.table | 2 - .../grib2/tables/4/4.2.192.36.table | 2 - .../grib2/tables/4/4.2.192.37.table | 2 - .../grib2/tables/4/4.2.192.38.table | 2 - .../grib2/tables/4/4.2.192.39.table | 2 - .../grib2/tables/4/4.2.192.4.table | 2 - .../grib2/tables/4/4.2.192.40.table | 2 - .../grib2/tables/4/4.2.192.41.table | 2 - .../grib2/tables/4/4.2.192.42.table | 2 - .../grib2/tables/4/4.2.192.43.table | 2 - .../grib2/tables/4/4.2.192.44.table | 2 - .../grib2/tables/4/4.2.192.45.table | 2 - .../grib2/tables/4/4.2.192.46.table | 2 - .../grib2/tables/4/4.2.192.47.table | 2 - .../grib2/tables/4/4.2.192.48.table | 2 - .../grib2/tables/4/4.2.192.49.table | 2 - .../grib2/tables/4/4.2.192.5.table | 2 - .../grib2/tables/4/4.2.192.50.table | 2 - .../grib2/tables/4/4.2.192.51.table | 2 - .../grib2/tables/4/4.2.192.52.table | 2 - .../grib2/tables/4/4.2.192.53.table | 2 - .../grib2/tables/4/4.2.192.54.table | 2 - .../grib2/tables/4/4.2.192.55.table | 2 - .../grib2/tables/4/4.2.192.56.table | 2 - .../grib2/tables/4/4.2.192.57.table | 2 - .../grib2/tables/4/4.2.192.58.table | 2 - .../grib2/tables/4/4.2.192.59.table | 2 - .../grib2/tables/4/4.2.192.6.table | 2 - .../grib2/tables/4/4.2.192.60.table | 2 - .../grib2/tables/4/4.2.192.61.table | 2 - .../grib2/tables/4/4.2.192.62.table | 2 - .../grib2/tables/4/4.2.192.63.table | 2 - .../grib2/tables/4/4.2.192.64.table | 2 - .../grib2/tables/4/4.2.192.65.table | 2 - .../grib2/tables/4/4.2.192.66.table | 2 - .../grib2/tables/4/4.2.192.67.table | 2 - .../grib2/tables/4/4.2.192.68.table | 2 - .../grib2/tables/4/4.2.192.69.table | 2 - .../grib2/tables/4/4.2.192.7.table | 2 - .../grib2/tables/4/4.2.192.70.table | 2 - .../grib2/tables/4/4.2.192.71.table | 2 - .../grib2/tables/4/4.2.192.72.table | 2 - .../grib2/tables/4/4.2.192.73.table | 2 - .../grib2/tables/4/4.2.192.74.table | 2 - .../grib2/tables/4/4.2.192.75.table | 2 - .../grib2/tables/4/4.2.192.76.table | 2 - .../grib2/tables/4/4.2.192.77.table | 2 - .../grib2/tables/4/4.2.192.78.table | 2 - .../grib2/tables/4/4.2.192.79.table | 2 - .../grib2/tables/4/4.2.192.8.table | 2 - .../grib2/tables/4/4.2.192.80.table | 2 - .../grib2/tables/4/4.2.192.81.table | 2 - .../grib2/tables/4/4.2.192.82.table | 2 - .../grib2/tables/4/4.2.192.83.table | 2 - .../grib2/tables/4/4.2.192.84.table | 2 - .../grib2/tables/4/4.2.192.85.table | 2 - .../grib2/tables/4/4.2.192.86.table | 2 - .../grib2/tables/4/4.2.192.87.table | 2 - .../grib2/tables/4/4.2.192.88.table | 2 - .../grib2/tables/4/4.2.192.89.table | 2 - .../grib2/tables/4/4.2.192.9.table | 2 - .../grib2/tables/4/4.2.192.90.table | 2 - .../grib2/tables/4/4.2.192.91.table | 2 - .../grib2/tables/4/4.2.192.92.table | 2 - .../grib2/tables/4/4.2.192.93.table | 2 - .../grib2/tables/4/4.2.192.94.table | 2 - .../grib2/tables/4/4.2.192.95.table | 2 - .../grib2/tables/4/4.2.192.96.table | 2 - .../grib2/tables/4/4.2.192.97.table | 2 - .../grib2/tables/4/4.2.192.98.table | 2 - .../grib2/tables/4/4.2.192.99.table | 2 - .../grib2/tables/4/4.2.2.0.table | 29 - .../grib2/tables/4/4.2.2.3.table | 16 - .../grib2/tables/4/4.2.3.0.table | 14 - .../grib2/tables/4/4.2.3.1.table | 11 - .../grib2/tables/4/4.201.table | 71 - .../grib2/tables/4/4.202.table | 66 - .../grib2/tables/4/4.203.table | 88 - .../grib2/tables/4/4.204.table | 71 - .../grib2/tables/4/4.205.table | 68 - .../grib2/tables/4/4.206.table | 68 - .../grib2/tables/4/4.207.table | 70 - .../grib2/tables/4/4.208.table | 71 - .../grib2/tables/4/4.209.table | 70 - .../grib2/tables/4/4.210.table | 68 - .../grib2/tables/4/4.211.table | 69 - .../grib2/tables/4/4.212.table | 79 - .../grib2/tables/4/4.213.table | 77 - .../grib2/tables/4/4.215.table | 10 - .../grib2/tables/4/4.216.table | 3 - .../grib2/tables/4/4.217.table | 70 - .../grib2/tables/4/4.220.table | 68 - .../grib2/tables/4/4.221.table | 68 - .../grib2/tables/4/4.230.table | 47 - .../definitions.save/grib2/tables/4/4.3.table | 13 - .../definitions.save/grib2/tables/4/4.4.table | 16 - .../definitions.save/grib2/tables/4/4.5.table | 33 - .../definitions.save/grib2/tables/4/4.6.table | 8 - .../definitions.save/grib2/tables/4/4.7.table | 73 - .../definitions.save/grib2/tables/4/4.8.table | 68 - .../definitions.save/grib2/tables/4/4.9.table | 71 - .../grib2/tables/4/4.91.table | 78 - .../definitions.save/grib2/tables/4/5.0.table | 16 - .../definitions.save/grib2/tables/4/5.1.table | 5 - .../definitions.save/grib2/tables/4/5.2.table | 6 - .../definitions.save/grib2/tables/4/5.3.table | 6 - .../definitions.save/grib2/tables/4/5.4.table | 5 - .../grib2/tables/4/5.40.table | 5 - .../grib2/tables/4/5.40000.table | 5 - .../definitions.save/grib2/tables/4/5.5.table | 7 - .../grib2/tables/4/5.50002.table | 19 - .../definitions.save/grib2/tables/4/5.6.table | 68 - .../definitions.save/grib2/tables/4/5.7.table | 6 - .../definitions.save/grib2/tables/4/5.8.table | 3 - .../definitions.save/grib2/tables/4/5.9.table | 4 - .../definitions.save/grib2/tables/4/6.0.table | 7 - .../grib2/tables/4/stepType.table | 2 - .../definitions.save/grib2/tables/5/0.0.table | 10 - .../definitions.save/grib2/tables/5/1.0.table | 10 - .../definitions.save/grib2/tables/5/1.1.table | 5 - .../definitions.save/grib2/tables/5/1.2.table | 8 - .../definitions.save/grib2/tables/5/1.3.table | 10 - .../definitions.save/grib2/tables/5/1.4.table | 13 - .../definitions.save/grib2/tables/5/3.0.table | 6 - .../definitions.save/grib2/tables/5/3.1.table | 43 - .../grib2/tables/5/3.10.table | 7 - .../grib2/tables/5/3.11.table | 5 - .../grib2/tables/5/3.15.table | 22 - .../definitions.save/grib2/tables/5/3.2.table | 11 - .../grib2/tables/5/3.20.table | 6 - .../grib2/tables/5/3.21.table | 8 - .../definitions.save/grib2/tables/5/3.3.table | 7 - .../definitions.save/grib2/tables/5/3.4.table | 9 - .../definitions.save/grib2/tables/5/3.5.table | 5 - .../definitions.save/grib2/tables/5/3.6.table | 2 - .../definitions.save/grib2/tables/5/3.7.table | 5 - .../definitions.save/grib2/tables/5/3.8.table | 8 - .../definitions.save/grib2/tables/5/3.9.table | 3 - .../definitions.save/grib2/tables/5/4.0.table | 41 - .../grib2/tables/5/4.1.0.table | 30 - .../grib2/tables/5/4.1.1.table | 9 - .../grib2/tables/5/4.1.10.table | 12 - .../grib2/tables/5/4.1.192.table | 4 - .../grib2/tables/5/4.1.2.table | 11 - .../grib2/tables/5/4.1.3.table | 9 - .../definitions.save/grib2/tables/5/4.1.table | 5 - .../grib2/tables/5/4.10.table | 14 - .../grib2/tables/5/4.11.table | 9 - .../grib2/tables/5/4.12.table | 69 - .../grib2/tables/5/4.13.table | 68 - .../grib2/tables/5/4.14.table | 68 - .../grib2/tables/5/4.15.table | 10 - .../grib2/tables/5/4.151.table | 70 - .../grib2/tables/5/4.192.table | 4 - .../grib2/tables/5/4.2.0.0.table | 20 - .../grib2/tables/5/4.2.0.1.table | 71 - .../grib2/tables/5/4.2.0.13.table | 3 - .../grib2/tables/5/4.2.0.14.table | 5 - .../grib2/tables/5/4.2.0.15.table | 11 - .../grib2/tables/5/4.2.0.18.table | 11 - .../grib2/tables/5/4.2.0.19.table | 26 - .../grib2/tables/5/4.2.0.190.table | 3 - .../grib2/tables/5/4.2.0.191.table | 3 - .../grib2/tables/5/4.2.0.2.table | 33 - .../grib2/tables/5/4.2.0.20.table | 26 - .../grib2/tables/5/4.2.0.3.table | 27 - .../grib2/tables/5/4.2.0.4.table | 17 - .../grib2/tables/5/4.2.0.5.table | 9 - .../grib2/tables/5/4.2.0.6.table | 28 - .../grib2/tables/5/4.2.0.7.table | 15 - .../grib2/tables/5/4.2.1.0.table | 9 - .../grib2/tables/5/4.2.1.1.table | 5 - .../grib2/tables/5/4.2.10.0.table | 16 - .../grib2/tables/5/4.2.10.1.table | 6 - .../grib2/tables/5/4.2.10.191.table | 1 - .../grib2/tables/5/4.2.10.2.table | 11 - .../grib2/tables/5/4.2.10.3.table | 4 - .../grib2/tables/5/4.2.10.4.table | 6 - .../grib2/tables/5/4.2.192.0.table | 2 - .../grib2/tables/5/4.2.192.1.table | 2 - .../grib2/tables/5/4.2.192.10.table | 2 - .../grib2/tables/5/4.2.192.100.table | 2 - .../grib2/tables/5/4.2.192.101.table | 2 - .../grib2/tables/5/4.2.192.102.table | 2 - .../grib2/tables/5/4.2.192.103.table | 2 - .../grib2/tables/5/4.2.192.104.table | 2 - .../grib2/tables/5/4.2.192.105.table | 2 - .../grib2/tables/5/4.2.192.106.table | 2 - .../grib2/tables/5/4.2.192.107.table | 2 - .../grib2/tables/5/4.2.192.108.table | 2 - .../grib2/tables/5/4.2.192.109.table | 2 - .../grib2/tables/5/4.2.192.11.table | 2 - .../grib2/tables/5/4.2.192.110.table | 2 - .../grib2/tables/5/4.2.192.111.table | 2 - .../grib2/tables/5/4.2.192.112.table | 2 - .../grib2/tables/5/4.2.192.113.table | 2 - .../grib2/tables/5/4.2.192.114.table | 2 - .../grib2/tables/5/4.2.192.115.table | 2 - .../grib2/tables/5/4.2.192.116.table | 2 - .../grib2/tables/5/4.2.192.117.table | 2 - .../grib2/tables/5/4.2.192.118.table | 2 - .../grib2/tables/5/4.2.192.119.table | 2 - .../grib2/tables/5/4.2.192.12.table | 2 - .../grib2/tables/5/4.2.192.120.table | 2 - .../grib2/tables/5/4.2.192.121.table | 2 - .../grib2/tables/5/4.2.192.122.table | 2 - .../grib2/tables/5/4.2.192.123.table | 2 - .../grib2/tables/5/4.2.192.124.table | 2 - .../grib2/tables/5/4.2.192.125.table | 2 - .../grib2/tables/5/4.2.192.126.table | 2 - .../grib2/tables/5/4.2.192.127.table | 2 - .../grib2/tables/5/4.2.192.128.table | 2 - .../grib2/tables/5/4.2.192.129.table | 2 - .../grib2/tables/5/4.2.192.13.table | 2 - .../grib2/tables/5/4.2.192.130.table | 2 - .../grib2/tables/5/4.2.192.131.table | 2 - .../grib2/tables/5/4.2.192.132.table | 2 - .../grib2/tables/5/4.2.192.133.table | 2 - .../grib2/tables/5/4.2.192.134.table | 2 - .../grib2/tables/5/4.2.192.135.table | 2 - .../grib2/tables/5/4.2.192.136.table | 2 - .../grib2/tables/5/4.2.192.137.table | 2 - .../grib2/tables/5/4.2.192.138.table | 2 - .../grib2/tables/5/4.2.192.139.table | 2 - .../grib2/tables/5/4.2.192.14.table | 2 - .../grib2/tables/5/4.2.192.140.table | 2 - .../grib2/tables/5/4.2.192.141.table | 2 - .../grib2/tables/5/4.2.192.142.table | 2 - .../grib2/tables/5/4.2.192.143.table | 2 - .../grib2/tables/5/4.2.192.144.table | 2 - .../grib2/tables/5/4.2.192.145.table | 2 - .../grib2/tables/5/4.2.192.146.table | 2 - .../grib2/tables/5/4.2.192.147.table | 2 - .../grib2/tables/5/4.2.192.148.table | 2 - .../grib2/tables/5/4.2.192.149.table | 2 - .../grib2/tables/5/4.2.192.15.table | 2 - .../grib2/tables/5/4.2.192.150.table | 2 - .../grib2/tables/5/4.2.192.151.table | 2 - .../grib2/tables/5/4.2.192.152.table | 2 - .../grib2/tables/5/4.2.192.153.table | 2 - .../grib2/tables/5/4.2.192.154.table | 2 - .../grib2/tables/5/4.2.192.155.table | 2 - .../grib2/tables/5/4.2.192.156.table | 2 - .../grib2/tables/5/4.2.192.157.table | 2 - .../grib2/tables/5/4.2.192.158.table | 2 - .../grib2/tables/5/4.2.192.159.table | 2 - .../grib2/tables/5/4.2.192.16.table | 2 - .../grib2/tables/5/4.2.192.160.table | 2 - .../grib2/tables/5/4.2.192.161.table | 2 - .../grib2/tables/5/4.2.192.162.table | 2 - .../grib2/tables/5/4.2.192.163.table | 2 - .../grib2/tables/5/4.2.192.164.table | 2 - .../grib2/tables/5/4.2.192.165.table | 2 - .../grib2/tables/5/4.2.192.166.table | 2 - .../grib2/tables/5/4.2.192.167.table | 2 - .../grib2/tables/5/4.2.192.168.table | 2 - .../grib2/tables/5/4.2.192.169.table | 2 - .../grib2/tables/5/4.2.192.17.table | 2 - .../grib2/tables/5/4.2.192.170.table | 2 - .../grib2/tables/5/4.2.192.171.table | 2 - .../grib2/tables/5/4.2.192.172.table | 2 - .../grib2/tables/5/4.2.192.173.table | 2 - .../grib2/tables/5/4.2.192.174.table | 2 - .../grib2/tables/5/4.2.192.175.table | 2 - .../grib2/tables/5/4.2.192.176.table | 2 - .../grib2/tables/5/4.2.192.177.table | 2 - .../grib2/tables/5/4.2.192.178.table | 2 - .../grib2/tables/5/4.2.192.179.table | 2 - .../grib2/tables/5/4.2.192.18.table | 2 - .../grib2/tables/5/4.2.192.180.table | 2 - .../grib2/tables/5/4.2.192.181.table | 2 - .../grib2/tables/5/4.2.192.182.table | 2 - .../grib2/tables/5/4.2.192.183.table | 2 - .../grib2/tables/5/4.2.192.184.table | 2 - .../grib2/tables/5/4.2.192.185.table | 2 - .../grib2/tables/5/4.2.192.186.table | 2 - .../grib2/tables/5/4.2.192.187.table | 2 - .../grib2/tables/5/4.2.192.188.table | 2 - .../grib2/tables/5/4.2.192.189.table | 2 - .../grib2/tables/5/4.2.192.19.table | 2 - .../grib2/tables/5/4.2.192.190.table | 2 - .../grib2/tables/5/4.2.192.191.table | 2 - .../grib2/tables/5/4.2.192.192.table | 2 - .../grib2/tables/5/4.2.192.193.table | 2 - .../grib2/tables/5/4.2.192.194.table | 2 - .../grib2/tables/5/4.2.192.195.table | 2 - .../grib2/tables/5/4.2.192.196.table | 2 - .../grib2/tables/5/4.2.192.197.table | 2 - .../grib2/tables/5/4.2.192.198.table | 2 - .../grib2/tables/5/4.2.192.199.table | 2 - .../grib2/tables/5/4.2.192.2.table | 2 - .../grib2/tables/5/4.2.192.20.table | 2 - .../grib2/tables/5/4.2.192.200.table | 2 - .../grib2/tables/5/4.2.192.201.table | 2 - .../grib2/tables/5/4.2.192.202.table | 2 - .../grib2/tables/5/4.2.192.203.table | 2 - .../grib2/tables/5/4.2.192.204.table | 2 - .../grib2/tables/5/4.2.192.205.table | 2 - .../grib2/tables/5/4.2.192.206.table | 2 - .../grib2/tables/5/4.2.192.207.table | 2 - .../grib2/tables/5/4.2.192.208.table | 2 - .../grib2/tables/5/4.2.192.209.table | 2 - .../grib2/tables/5/4.2.192.21.table | 2 - .../grib2/tables/5/4.2.192.210.table | 2 - .../grib2/tables/5/4.2.192.211.table | 2 - .../grib2/tables/5/4.2.192.212.table | 2 - .../grib2/tables/5/4.2.192.213.table | 2 - .../grib2/tables/5/4.2.192.214.table | 2 - .../grib2/tables/5/4.2.192.215.table | 2 - .../grib2/tables/5/4.2.192.216.table | 2 - .../grib2/tables/5/4.2.192.217.table | 2 - .../grib2/tables/5/4.2.192.218.table | 2 - .../grib2/tables/5/4.2.192.219.table | 2 - .../grib2/tables/5/4.2.192.22.table | 2 - .../grib2/tables/5/4.2.192.220.table | 2 - .../grib2/tables/5/4.2.192.221.table | 2 - .../grib2/tables/5/4.2.192.222.table | 2 - .../grib2/tables/5/4.2.192.223.table | 2 - .../grib2/tables/5/4.2.192.224.table | 2 - .../grib2/tables/5/4.2.192.225.table | 2 - .../grib2/tables/5/4.2.192.226.table | 2 - .../grib2/tables/5/4.2.192.227.table | 2 - .../grib2/tables/5/4.2.192.228.table | 2 - .../grib2/tables/5/4.2.192.229.table | 2 - .../grib2/tables/5/4.2.192.23.table | 2 - .../grib2/tables/5/4.2.192.230.table | 2 - .../grib2/tables/5/4.2.192.231.table | 2 - .../grib2/tables/5/4.2.192.232.table | 2 - .../grib2/tables/5/4.2.192.233.table | 2 - .../grib2/tables/5/4.2.192.234.table | 2 - .../grib2/tables/5/4.2.192.235.table | 2 - .../grib2/tables/5/4.2.192.236.table | 2 - .../grib2/tables/5/4.2.192.237.table | 2 - .../grib2/tables/5/4.2.192.238.table | 2 - .../grib2/tables/5/4.2.192.239.table | 2 - .../grib2/tables/5/4.2.192.24.table | 2 - .../grib2/tables/5/4.2.192.240.table | 2 - .../grib2/tables/5/4.2.192.241.table | 2 - .../grib2/tables/5/4.2.192.242.table | 2 - .../grib2/tables/5/4.2.192.243.table | 2 - .../grib2/tables/5/4.2.192.244.table | 2 - .../grib2/tables/5/4.2.192.245.table | 2 - .../grib2/tables/5/4.2.192.246.table | 2 - .../grib2/tables/5/4.2.192.247.table | 2 - .../grib2/tables/5/4.2.192.248.table | 2 - .../grib2/tables/5/4.2.192.249.table | 2 - .../grib2/tables/5/4.2.192.25.table | 2 - .../grib2/tables/5/4.2.192.250.table | 2 - .../grib2/tables/5/4.2.192.251.table | 2 - .../grib2/tables/5/4.2.192.252.table | 2 - .../grib2/tables/5/4.2.192.253.table | 2 - .../grib2/tables/5/4.2.192.254.table | 2 - .../grib2/tables/5/4.2.192.255.table | 2 - .../grib2/tables/5/4.2.192.26.table | 2 - .../grib2/tables/5/4.2.192.27.table | 2 - .../grib2/tables/5/4.2.192.28.table | 2 - .../grib2/tables/5/4.2.192.29.table | 2 - .../grib2/tables/5/4.2.192.3.table | 2 - .../grib2/tables/5/4.2.192.30.table | 2 - .../grib2/tables/5/4.2.192.31.table | 2 - .../grib2/tables/5/4.2.192.32.table | 2 - .../grib2/tables/5/4.2.192.33.table | 2 - .../grib2/tables/5/4.2.192.34.table | 2 - .../grib2/tables/5/4.2.192.35.table | 2 - .../grib2/tables/5/4.2.192.36.table | 2 - .../grib2/tables/5/4.2.192.37.table | 2 - .../grib2/tables/5/4.2.192.38.table | 2 - .../grib2/tables/5/4.2.192.39.table | 2 - .../grib2/tables/5/4.2.192.4.table | 2 - .../grib2/tables/5/4.2.192.40.table | 2 - .../grib2/tables/5/4.2.192.41.table | 2 - .../grib2/tables/5/4.2.192.42.table | 2 - .../grib2/tables/5/4.2.192.43.table | 2 - .../grib2/tables/5/4.2.192.44.table | 2 - .../grib2/tables/5/4.2.192.45.table | 2 - .../grib2/tables/5/4.2.192.46.table | 2 - .../grib2/tables/5/4.2.192.47.table | 2 - .../grib2/tables/5/4.2.192.48.table | 2 - .../grib2/tables/5/4.2.192.49.table | 2 - .../grib2/tables/5/4.2.192.5.table | 2 - .../grib2/tables/5/4.2.192.50.table | 2 - .../grib2/tables/5/4.2.192.51.table | 2 - .../grib2/tables/5/4.2.192.52.table | 2 - .../grib2/tables/5/4.2.192.53.table | 2 - .../grib2/tables/5/4.2.192.54.table | 2 - .../grib2/tables/5/4.2.192.55.table | 2 - .../grib2/tables/5/4.2.192.56.table | 2 - .../grib2/tables/5/4.2.192.57.table | 2 - .../grib2/tables/5/4.2.192.58.table | 2 - .../grib2/tables/5/4.2.192.59.table | 2 - .../grib2/tables/5/4.2.192.6.table | 2 - .../grib2/tables/5/4.2.192.60.table | 2 - .../grib2/tables/5/4.2.192.61.table | 2 - .../grib2/tables/5/4.2.192.62.table | 2 - .../grib2/tables/5/4.2.192.63.table | 2 - .../grib2/tables/5/4.2.192.64.table | 2 - .../grib2/tables/5/4.2.192.65.table | 2 - .../grib2/tables/5/4.2.192.66.table | 2 - .../grib2/tables/5/4.2.192.67.table | 2 - .../grib2/tables/5/4.2.192.68.table | 2 - .../grib2/tables/5/4.2.192.69.table | 2 - .../grib2/tables/5/4.2.192.7.table | 2 - .../grib2/tables/5/4.2.192.70.table | 2 - .../grib2/tables/5/4.2.192.71.table | 2 - .../grib2/tables/5/4.2.192.72.table | 2 - .../grib2/tables/5/4.2.192.73.table | 2 - .../grib2/tables/5/4.2.192.74.table | 2 - .../grib2/tables/5/4.2.192.75.table | 2 - .../grib2/tables/5/4.2.192.76.table | 2 - .../grib2/tables/5/4.2.192.77.table | 2 - .../grib2/tables/5/4.2.192.78.table | 2 - .../grib2/tables/5/4.2.192.79.table | 2 - .../grib2/tables/5/4.2.192.8.table | 2 - .../grib2/tables/5/4.2.192.80.table | 2 - .../grib2/tables/5/4.2.192.81.table | 2 - .../grib2/tables/5/4.2.192.82.table | 2 - .../grib2/tables/5/4.2.192.83.table | 2 - .../grib2/tables/5/4.2.192.84.table | 2 - .../grib2/tables/5/4.2.192.85.table | 2 - .../grib2/tables/5/4.2.192.86.table | 2 - .../grib2/tables/5/4.2.192.87.table | 2 - .../grib2/tables/5/4.2.192.88.table | 2 - .../grib2/tables/5/4.2.192.89.table | 2 - .../grib2/tables/5/4.2.192.9.table | 2 - .../grib2/tables/5/4.2.192.90.table | 2 - .../grib2/tables/5/4.2.192.91.table | 2 - .../grib2/tables/5/4.2.192.92.table | 2 - .../grib2/tables/5/4.2.192.93.table | 2 - .../grib2/tables/5/4.2.192.94.table | 2 - .../grib2/tables/5/4.2.192.95.table | 2 - .../grib2/tables/5/4.2.192.96.table | 2 - .../grib2/tables/5/4.2.192.97.table | 2 - .../grib2/tables/5/4.2.192.98.table | 2 - .../grib2/tables/5/4.2.192.99.table | 2 - .../grib2/tables/5/4.2.2.0.table | 30 - .../grib2/tables/5/4.2.2.3.table | 20 - .../grib2/tables/5/4.2.3.0.table | 12 - .../grib2/tables/5/4.2.3.1.table | 16 - .../grib2/tables/5/4.201.table | 71 - .../grib2/tables/5/4.202.table | 66 - .../grib2/tables/5/4.203.table | 25 - .../grib2/tables/5/4.204.table | 71 - .../grib2/tables/5/4.205.table | 68 - .../grib2/tables/5/4.206.table | 68 - .../grib2/tables/5/4.207.table | 70 - .../grib2/tables/5/4.208.table | 71 - .../grib2/tables/5/4.209.table | 70 - .../grib2/tables/5/4.210.table | 68 - .../grib2/tables/5/4.211.table | 69 - .../grib2/tables/5/4.212.table | 79 - .../grib2/tables/5/4.213.table | 77 - .../grib2/tables/5/4.215.table | 10 - .../grib2/tables/5/4.216.table | 3 - .../grib2/tables/5/4.217.table | 70 - .../grib2/tables/5/4.218.table | 35 - .../grib2/tables/5/4.219.table | 6 - .../grib2/tables/5/4.220.table | 68 - .../grib2/tables/5/4.221.table | 68 - .../grib2/tables/5/4.222.table | 4 - .../grib2/tables/5/4.223.table | 5 - .../grib2/tables/5/4.230.table | 117 - .../definitions.save/grib2/tables/5/4.3.table | 13 - .../definitions.save/grib2/tables/5/4.4.table | 16 - .../definitions.save/grib2/tables/5/4.5.table | 38 - .../definitions.save/grib2/tables/5/4.6.table | 8 - .../definitions.save/grib2/tables/5/4.7.table | 73 - .../definitions.save/grib2/tables/5/4.8.table | 68 - .../definitions.save/grib2/tables/5/4.9.table | 71 - .../grib2/tables/5/4.91.table | 78 - .../definitions.save/grib2/tables/5/5.0.table | 19 - .../definitions.save/grib2/tables/5/5.1.table | 5 - .../definitions.save/grib2/tables/5/5.2.table | 6 - .../definitions.save/grib2/tables/5/5.3.table | 6 - .../definitions.save/grib2/tables/5/5.4.table | 5 - .../grib2/tables/5/5.40.table | 5 - .../grib2/tables/5/5.40000.table | 5 - .../definitions.save/grib2/tables/5/5.5.table | 7 - .../grib2/tables/5/5.50002.table | 19 - .../definitions.save/grib2/tables/5/5.6.table | 68 - .../definitions.save/grib2/tables/5/5.7.table | 6 - .../definitions.save/grib2/tables/5/5.8.table | 3 - .../definitions.save/grib2/tables/5/5.9.table | 4 - .../definitions.save/grib2/tables/5/6.0.table | 7 - .../grib2/tables/5/stepType.table | 2 - .../definitions.save/grib2/tables/6/0.0.table | 10 - .../definitions.save/grib2/tables/6/1.0.table | 12 - .../definitions.save/grib2/tables/6/1.1.table | 5 - .../definitions.save/grib2/tables/6/1.2.table | 8 - .../definitions.save/grib2/tables/6/1.3.table | 10 - .../definitions.save/grib2/tables/6/1.4.table | 13 - .../definitions.save/grib2/tables/6/3.0.table | 6 - .../definitions.save/grib2/tables/6/3.1.table | 43 - .../grib2/tables/6/3.10.table | 7 - .../grib2/tables/6/3.11.table | 5 - .../grib2/tables/6/3.15.table | 21 - .../definitions.save/grib2/tables/6/3.2.table | 11 - .../grib2/tables/6/3.20.table | 6 - .../grib2/tables/6/3.21.table | 8 - .../definitions.save/grib2/tables/6/3.3.table | 7 - .../definitions.save/grib2/tables/6/3.4.table | 9 - .../definitions.save/grib2/tables/6/3.5.table | 5 - .../definitions.save/grib2/tables/6/3.6.table | 2 - .../definitions.save/grib2/tables/6/3.7.table | 4 - .../definitions.save/grib2/tables/6/3.8.table | 8 - .../definitions.save/grib2/tables/6/3.9.table | 3 - .../definitions.save/grib2/tables/6/4.0.table | 43 - .../grib2/tables/6/4.1.0.table | 30 - .../grib2/tables/6/4.1.1.table | 9 - .../grib2/tables/6/4.1.10.table | 12 - .../grib2/tables/6/4.1.192.table | 4 - .../grib2/tables/6/4.1.2.table | 11 - .../grib2/tables/6/4.1.3.table | 9 - .../definitions.save/grib2/tables/6/4.1.table | 5 - .../grib2/tables/6/4.10.table | 14 - .../grib2/tables/6/4.11.table | 9 - .../grib2/tables/6/4.12.table | 69 - .../grib2/tables/6/4.13.table | 68 - .../grib2/tables/6/4.14.table | 68 - .../grib2/tables/6/4.15.table | 10 - .../grib2/tables/6/4.151.table | 70 - .../grib2/tables/6/4.192.table | 4 - .../grib2/tables/6/4.2.0.0.table | 23 - .../grib2/tables/6/4.2.0.1.table | 89 - .../grib2/tables/6/4.2.0.13.table | 3 - .../grib2/tables/6/4.2.0.14.table | 5 - .../grib2/tables/6/4.2.0.15.table | 17 - .../grib2/tables/6/4.2.0.16.table | 8 - .../grib2/tables/6/4.2.0.18.table | 11 - .../grib2/tables/6/4.2.0.19.table | 28 - .../grib2/tables/6/4.2.0.190.table | 3 - .../grib2/tables/6/4.2.0.191.table | 5 - .../grib2/tables/6/4.2.0.2.table | 35 - .../grib2/tables/6/4.2.0.20.table | 22 - .../grib2/tables/6/4.2.0.3.table | 28 - .../grib2/tables/6/4.2.0.4.table | 17 - .../grib2/tables/6/4.2.0.5.table | 9 - .../grib2/tables/6/4.2.0.6.table | 36 - .../grib2/tables/6/4.2.0.7.table | 16 - .../grib2/tables/6/4.2.1.0.table | 9 - .../grib2/tables/6/4.2.1.1.table | 5 - .../grib2/tables/6/4.2.10.0.table | 18 - .../grib2/tables/6/4.2.10.1.table | 6 - .../grib2/tables/6/4.2.10.191.table | 6 - .../grib2/tables/6/4.2.10.2.table | 11 - .../grib2/tables/6/4.2.10.3.table | 4 - .../grib2/tables/6/4.2.10.4.table | 6 - .../grib2/tables/6/4.2.192.0.table | 2 - .../grib2/tables/6/4.2.192.1.table | 2 - .../grib2/tables/6/4.2.192.10.table | 2 - .../grib2/tables/6/4.2.192.100.table | 2 - .../grib2/tables/6/4.2.192.101.table | 2 - .../grib2/tables/6/4.2.192.102.table | 2 - .../grib2/tables/6/4.2.192.103.table | 2 - .../grib2/tables/6/4.2.192.104.table | 2 - .../grib2/tables/6/4.2.192.105.table | 2 - .../grib2/tables/6/4.2.192.106.table | 2 - .../grib2/tables/6/4.2.192.107.table | 2 - .../grib2/tables/6/4.2.192.108.table | 2 - .../grib2/tables/6/4.2.192.109.table | 2 - .../grib2/tables/6/4.2.192.11.table | 2 - .../grib2/tables/6/4.2.192.110.table | 2 - .../grib2/tables/6/4.2.192.111.table | 2 - .../grib2/tables/6/4.2.192.112.table | 2 - .../grib2/tables/6/4.2.192.113.table | 2 - .../grib2/tables/6/4.2.192.114.table | 2 - .../grib2/tables/6/4.2.192.115.table | 2 - .../grib2/tables/6/4.2.192.116.table | 2 - .../grib2/tables/6/4.2.192.117.table | 2 - .../grib2/tables/6/4.2.192.118.table | 2 - .../grib2/tables/6/4.2.192.119.table | 2 - .../grib2/tables/6/4.2.192.12.table | 2 - .../grib2/tables/6/4.2.192.120.table | 2 - .../grib2/tables/6/4.2.192.121.table | 2 - .../grib2/tables/6/4.2.192.122.table | 2 - .../grib2/tables/6/4.2.192.123.table | 2 - .../grib2/tables/6/4.2.192.124.table | 2 - .../grib2/tables/6/4.2.192.125.table | 2 - .../grib2/tables/6/4.2.192.126.table | 2 - .../grib2/tables/6/4.2.192.127.table | 2 - .../grib2/tables/6/4.2.192.128.table | 2 - .../grib2/tables/6/4.2.192.129.table | 2 - .../grib2/tables/6/4.2.192.13.table | 2 - .../grib2/tables/6/4.2.192.130.table | 2 - .../grib2/tables/6/4.2.192.131.table | 2 - .../grib2/tables/6/4.2.192.132.table | 2 - .../grib2/tables/6/4.2.192.133.table | 2 - .../grib2/tables/6/4.2.192.134.table | 2 - .../grib2/tables/6/4.2.192.135.table | 2 - .../grib2/tables/6/4.2.192.136.table | 2 - .../grib2/tables/6/4.2.192.137.table | 2 - .../grib2/tables/6/4.2.192.138.table | 2 - .../grib2/tables/6/4.2.192.139.table | 2 - .../grib2/tables/6/4.2.192.14.table | 2 - .../grib2/tables/6/4.2.192.140.table | 2 - .../grib2/tables/6/4.2.192.141.table | 2 - .../grib2/tables/6/4.2.192.142.table | 2 - .../grib2/tables/6/4.2.192.143.table | 2 - .../grib2/tables/6/4.2.192.144.table | 2 - .../grib2/tables/6/4.2.192.145.table | 2 - .../grib2/tables/6/4.2.192.146.table | 2 - .../grib2/tables/6/4.2.192.147.table | 2 - .../grib2/tables/6/4.2.192.148.table | 2 - .../grib2/tables/6/4.2.192.149.table | 2 - .../grib2/tables/6/4.2.192.15.table | 2 - .../grib2/tables/6/4.2.192.150.table | 2 - .../grib2/tables/6/4.2.192.151.table | 2 - .../grib2/tables/6/4.2.192.152.table | 2 - .../grib2/tables/6/4.2.192.153.table | 2 - .../grib2/tables/6/4.2.192.154.table | 2 - .../grib2/tables/6/4.2.192.155.table | 2 - .../grib2/tables/6/4.2.192.156.table | 2 - .../grib2/tables/6/4.2.192.157.table | 2 - .../grib2/tables/6/4.2.192.158.table | 2 - .../grib2/tables/6/4.2.192.159.table | 2 - .../grib2/tables/6/4.2.192.16.table | 2 - .../grib2/tables/6/4.2.192.160.table | 2 - .../grib2/tables/6/4.2.192.161.table | 2 - .../grib2/tables/6/4.2.192.162.table | 2 - .../grib2/tables/6/4.2.192.163.table | 2 - .../grib2/tables/6/4.2.192.164.table | 2 - .../grib2/tables/6/4.2.192.165.table | 2 - .../grib2/tables/6/4.2.192.166.table | 2 - .../grib2/tables/6/4.2.192.167.table | 2 - .../grib2/tables/6/4.2.192.168.table | 2 - .../grib2/tables/6/4.2.192.169.table | 2 - .../grib2/tables/6/4.2.192.17.table | 2 - .../grib2/tables/6/4.2.192.170.table | 2 - .../grib2/tables/6/4.2.192.171.table | 2 - .../grib2/tables/6/4.2.192.172.table | 2 - .../grib2/tables/6/4.2.192.173.table | 2 - .../grib2/tables/6/4.2.192.174.table | 2 - .../grib2/tables/6/4.2.192.175.table | 2 - .../grib2/tables/6/4.2.192.176.table | 2 - .../grib2/tables/6/4.2.192.177.table | 2 - .../grib2/tables/6/4.2.192.178.table | 2 - .../grib2/tables/6/4.2.192.179.table | 2 - .../grib2/tables/6/4.2.192.18.table | 2 - .../grib2/tables/6/4.2.192.180.table | 2 - .../grib2/tables/6/4.2.192.181.table | 2 - .../grib2/tables/6/4.2.192.182.table | 2 - .../grib2/tables/6/4.2.192.183.table | 2 - .../grib2/tables/6/4.2.192.184.table | 2 - .../grib2/tables/6/4.2.192.185.table | 2 - .../grib2/tables/6/4.2.192.186.table | 2 - .../grib2/tables/6/4.2.192.187.table | 2 - .../grib2/tables/6/4.2.192.188.table | 2 - .../grib2/tables/6/4.2.192.189.table | 2 - .../grib2/tables/6/4.2.192.19.table | 2 - .../grib2/tables/6/4.2.192.190.table | 2 - .../grib2/tables/6/4.2.192.191.table | 2 - .../grib2/tables/6/4.2.192.192.table | 2 - .../grib2/tables/6/4.2.192.193.table | 2 - .../grib2/tables/6/4.2.192.194.table | 2 - .../grib2/tables/6/4.2.192.195.table | 2 - .../grib2/tables/6/4.2.192.196.table | 2 - .../grib2/tables/6/4.2.192.197.table | 2 - .../grib2/tables/6/4.2.192.198.table | 2 - .../grib2/tables/6/4.2.192.199.table | 2 - .../grib2/tables/6/4.2.192.2.table | 2 - .../grib2/tables/6/4.2.192.20.table | 2 - .../grib2/tables/6/4.2.192.200.table | 2 - .../grib2/tables/6/4.2.192.201.table | 2 - .../grib2/tables/6/4.2.192.202.table | 2 - .../grib2/tables/6/4.2.192.203.table | 2 - .../grib2/tables/6/4.2.192.204.table | 2 - .../grib2/tables/6/4.2.192.205.table | 2 - .../grib2/tables/6/4.2.192.206.table | 2 - .../grib2/tables/6/4.2.192.207.table | 2 - .../grib2/tables/6/4.2.192.208.table | 2 - .../grib2/tables/6/4.2.192.209.table | 2 - .../grib2/tables/6/4.2.192.21.table | 2 - .../grib2/tables/6/4.2.192.210.table | 2 - .../grib2/tables/6/4.2.192.211.table | 2 - .../grib2/tables/6/4.2.192.212.table | 2 - .../grib2/tables/6/4.2.192.213.table | 2 - .../grib2/tables/6/4.2.192.214.table | 2 - .../grib2/tables/6/4.2.192.215.table | 2 - .../grib2/tables/6/4.2.192.216.table | 2 - .../grib2/tables/6/4.2.192.217.table | 2 - .../grib2/tables/6/4.2.192.218.table | 2 - .../grib2/tables/6/4.2.192.219.table | 2 - .../grib2/tables/6/4.2.192.22.table | 2 - .../grib2/tables/6/4.2.192.220.table | 2 - .../grib2/tables/6/4.2.192.221.table | 2 - .../grib2/tables/6/4.2.192.222.table | 2 - .../grib2/tables/6/4.2.192.223.table | 2 - .../grib2/tables/6/4.2.192.224.table | 2 - .../grib2/tables/6/4.2.192.225.table | 2 - .../grib2/tables/6/4.2.192.226.table | 2 - .../grib2/tables/6/4.2.192.227.table | 2 - .../grib2/tables/6/4.2.192.228.table | 2 - .../grib2/tables/6/4.2.192.229.table | 2 - .../grib2/tables/6/4.2.192.23.table | 2 - .../grib2/tables/6/4.2.192.230.table | 2 - .../grib2/tables/6/4.2.192.231.table | 2 - .../grib2/tables/6/4.2.192.232.table | 2 - .../grib2/tables/6/4.2.192.233.table | 2 - .../grib2/tables/6/4.2.192.234.table | 2 - .../grib2/tables/6/4.2.192.235.table | 2 - .../grib2/tables/6/4.2.192.236.table | 2 - .../grib2/tables/6/4.2.192.237.table | 2 - .../grib2/tables/6/4.2.192.238.table | 2 - .../grib2/tables/6/4.2.192.239.table | 2 - .../grib2/tables/6/4.2.192.24.table | 2 - .../grib2/tables/6/4.2.192.240.table | 2 - .../grib2/tables/6/4.2.192.241.table | 2 - .../grib2/tables/6/4.2.192.242.table | 2 - .../grib2/tables/6/4.2.192.243.table | 2 - .../grib2/tables/6/4.2.192.244.table | 2 - .../grib2/tables/6/4.2.192.245.table | 2 - .../grib2/tables/6/4.2.192.246.table | 2 - .../grib2/tables/6/4.2.192.247.table | 2 - .../grib2/tables/6/4.2.192.248.table | 2 - .../grib2/tables/6/4.2.192.249.table | 2 - .../grib2/tables/6/4.2.192.25.table | 2 - .../grib2/tables/6/4.2.192.250.table | 2 - .../grib2/tables/6/4.2.192.251.table | 2 - .../grib2/tables/6/4.2.192.252.table | 2 - .../grib2/tables/6/4.2.192.253.table | 2 - .../grib2/tables/6/4.2.192.254.table | 2 - .../grib2/tables/6/4.2.192.255.table | 2 - .../grib2/tables/6/4.2.192.26.table | 2 - .../grib2/tables/6/4.2.192.27.table | 2 - .../grib2/tables/6/4.2.192.28.table | 2 - .../grib2/tables/6/4.2.192.29.table | 2 - .../grib2/tables/6/4.2.192.3.table | 2 - .../grib2/tables/6/4.2.192.30.table | 2 - .../grib2/tables/6/4.2.192.31.table | 2 - .../grib2/tables/6/4.2.192.32.table | 2 - .../grib2/tables/6/4.2.192.33.table | 2 - .../grib2/tables/6/4.2.192.34.table | 2 - .../grib2/tables/6/4.2.192.35.table | 2 - .../grib2/tables/6/4.2.192.36.table | 2 - .../grib2/tables/6/4.2.192.37.table | 2 - .../grib2/tables/6/4.2.192.38.table | 2 - .../grib2/tables/6/4.2.192.39.table | 2 - .../grib2/tables/6/4.2.192.4.table | 2 - .../grib2/tables/6/4.2.192.40.table | 2 - .../grib2/tables/6/4.2.192.41.table | 2 - .../grib2/tables/6/4.2.192.42.table | 2 - .../grib2/tables/6/4.2.192.43.table | 2 - .../grib2/tables/6/4.2.192.44.table | 2 - .../grib2/tables/6/4.2.192.45.table | 2 - .../grib2/tables/6/4.2.192.46.table | 2 - .../grib2/tables/6/4.2.192.47.table | 2 - .../grib2/tables/6/4.2.192.48.table | 2 - .../grib2/tables/6/4.2.192.49.table | 2 - .../grib2/tables/6/4.2.192.5.table | 2 - .../grib2/tables/6/4.2.192.50.table | 2 - .../grib2/tables/6/4.2.192.51.table | 2 - .../grib2/tables/6/4.2.192.52.table | 2 - .../grib2/tables/6/4.2.192.53.table | 2 - .../grib2/tables/6/4.2.192.54.table | 2 - .../grib2/tables/6/4.2.192.55.table | 2 - .../grib2/tables/6/4.2.192.56.table | 2 - .../grib2/tables/6/4.2.192.57.table | 2 - .../grib2/tables/6/4.2.192.58.table | 2 - .../grib2/tables/6/4.2.192.59.table | 2 - .../grib2/tables/6/4.2.192.6.table | 2 - .../grib2/tables/6/4.2.192.60.table | 2 - .../grib2/tables/6/4.2.192.61.table | 2 - .../grib2/tables/6/4.2.192.62.table | 2 - .../grib2/tables/6/4.2.192.63.table | 2 - .../grib2/tables/6/4.2.192.64.table | 2 - .../grib2/tables/6/4.2.192.65.table | 2 - .../grib2/tables/6/4.2.192.66.table | 2 - .../grib2/tables/6/4.2.192.67.table | 2 - .../grib2/tables/6/4.2.192.68.table | 2 - .../grib2/tables/6/4.2.192.69.table | 2 - .../grib2/tables/6/4.2.192.7.table | 2 - .../grib2/tables/6/4.2.192.70.table | 2 - .../grib2/tables/6/4.2.192.71.table | 2 - .../grib2/tables/6/4.2.192.72.table | 2 - .../grib2/tables/6/4.2.192.73.table | 2 - .../grib2/tables/6/4.2.192.74.table | 2 - .../grib2/tables/6/4.2.192.75.table | 2 - .../grib2/tables/6/4.2.192.76.table | 2 - .../grib2/tables/6/4.2.192.77.table | 2 - .../grib2/tables/6/4.2.192.78.table | 2 - .../grib2/tables/6/4.2.192.79.table | 2 - .../grib2/tables/6/4.2.192.8.table | 2 - .../grib2/tables/6/4.2.192.80.table | 2 - .../grib2/tables/6/4.2.192.81.table | 2 - .../grib2/tables/6/4.2.192.82.table | 2 - .../grib2/tables/6/4.2.192.83.table | 2 - .../grib2/tables/6/4.2.192.84.table | 2 - .../grib2/tables/6/4.2.192.85.table | 2 - .../grib2/tables/6/4.2.192.86.table | 2 - .../grib2/tables/6/4.2.192.87.table | 2 - .../grib2/tables/6/4.2.192.88.table | 2 - .../grib2/tables/6/4.2.192.89.table | 2 - .../grib2/tables/6/4.2.192.9.table | 2 - .../grib2/tables/6/4.2.192.90.table | 2 - .../grib2/tables/6/4.2.192.91.table | 2 - .../grib2/tables/6/4.2.192.92.table | 2 - .../grib2/tables/6/4.2.192.93.table | 2 - .../grib2/tables/6/4.2.192.94.table | 2 - .../grib2/tables/6/4.2.192.95.table | 2 - .../grib2/tables/6/4.2.192.96.table | 2 - .../grib2/tables/6/4.2.192.97.table | 2 - .../grib2/tables/6/4.2.192.98.table | 2 - .../grib2/tables/6/4.2.192.99.table | 2 - .../grib2/tables/6/4.2.2.0.table | 35 - .../grib2/tables/6/4.2.2.3.table | 25 - .../grib2/tables/6/4.2.2.4.table | 4 - .../grib2/tables/6/4.2.3.0.table | 12 - .../grib2/tables/6/4.2.3.1.table | 21 - .../grib2/tables/6/4.201.table | 71 - .../grib2/tables/6/4.202.table | 66 - .../grib2/tables/6/4.203.table | 25 - .../grib2/tables/6/4.204.table | 71 - .../grib2/tables/6/4.205.table | 68 - .../grib2/tables/6/4.206.table | 68 - .../grib2/tables/6/4.207.table | 70 - .../grib2/tables/6/4.208.table | 71 - .../grib2/tables/6/4.209.table | 70 - .../grib2/tables/6/4.210.table | 68 - .../grib2/tables/6/4.211.table | 69 - .../grib2/tables/6/4.212.table | 79 - .../grib2/tables/6/4.213.table | 77 - .../grib2/tables/6/4.215.table | 10 - .../grib2/tables/6/4.216.table | 3 - .../grib2/tables/6/4.217.table | 70 - .../grib2/tables/6/4.218.table | 35 - .../grib2/tables/6/4.219.table | 6 - .../grib2/tables/6/4.220.table | 68 - .../grib2/tables/6/4.221.table | 68 - .../grib2/tables/6/4.222.table | 4 - .../grib2/tables/6/4.223.table | 5 - .../grib2/tables/6/4.230.table | 117 - .../definitions.save/grib2/tables/6/4.3.table | 16 - .../definitions.save/grib2/tables/6/4.4.table | 16 - .../definitions.save/grib2/tables/6/4.5.table | 38 - .../definitions.save/grib2/tables/6/4.6.table | 10 - .../definitions.save/grib2/tables/6/4.7.table | 73 - .../definitions.save/grib2/tables/6/4.8.table | 68 - .../definitions.save/grib2/tables/6/4.9.table | 71 - .../grib2/tables/6/4.91.table | 78 - .../definitions.save/grib2/tables/6/5.0.table | 19 - .../definitions.save/grib2/tables/6/5.1.table | 5 - .../definitions.save/grib2/tables/6/5.2.table | 6 - .../definitions.save/grib2/tables/6/5.3.table | 6 - .../definitions.save/grib2/tables/6/5.4.table | 5 - .../grib2/tables/6/5.40.table | 5 - .../grib2/tables/6/5.40000.table | 5 - .../definitions.save/grib2/tables/6/5.5.table | 7 - .../grib2/tables/6/5.50002.table | 19 - .../definitions.save/grib2/tables/6/5.6.table | 68 - .../definitions.save/grib2/tables/6/5.7.table | 6 - .../definitions.save/grib2/tables/6/5.8.table | 3 - .../definitions.save/grib2/tables/6/5.9.table | 4 - .../definitions.save/grib2/tables/6/6.0.table | 7 - .../grib2/tables/6/stepType.table | 2 - .../definitions.save/grib2/tables/7/0.0.table | 10 - .../definitions.save/grib2/tables/7/1.0.table | 12 - .../definitions.save/grib2/tables/7/1.1.table | 5 - .../definitions.save/grib2/tables/7/1.2.table | 8 - .../definitions.save/grib2/tables/7/1.3.table | 10 - .../definitions.save/grib2/tables/7/1.4.table | 13 - .../definitions.save/grib2/tables/7/3.0.table | 6 - .../definitions.save/grib2/tables/7/3.1.table | 43 - .../grib2/tables/7/3.10.table | 8 - .../grib2/tables/7/3.11.table | 7 - .../grib2/tables/7/3.15.table | 17 - .../definitions.save/grib2/tables/7/3.2.table | 13 - .../grib2/tables/7/3.20.table | 6 - .../grib2/tables/7/3.21.table | 8 - .../definitions.save/grib2/tables/7/3.3.table | 9 - .../definitions.save/grib2/tables/7/3.4.table | 10 - .../definitions.save/grib2/tables/7/3.5.table | 5 - .../definitions.save/grib2/tables/7/3.6.table | 2 - .../definitions.save/grib2/tables/7/3.7.table | 4 - .../definitions.save/grib2/tables/7/3.8.table | 8 - .../definitions.save/grib2/tables/7/3.9.table | 4 - .../definitions.save/grib2/tables/7/4.0.table | 53 - .../grib2/tables/7/4.1.0.table | 28 - .../grib2/tables/7/4.1.1.table | 9 - .../grib2/tables/7/4.1.10.table | 11 - .../grib2/tables/7/4.1.192.table | 4 - .../grib2/tables/7/4.1.2.table | 9 - .../grib2/tables/7/4.1.3.table | 9 - .../definitions.save/grib2/tables/7/4.1.table | 5 - .../grib2/tables/7/4.10.table | 14 - .../grib2/tables/7/4.11.table | 10 - .../grib2/tables/7/4.12.table | 69 - .../grib2/tables/7/4.13.table | 68 - .../grib2/tables/7/4.14.table | 68 - .../grib2/tables/7/4.15.table | 10 - .../grib2/tables/7/4.151.table | 70 - .../grib2/tables/7/4.192.table | 4 - .../grib2/tables/7/4.2.0.0.table | 25 - .../grib2/tables/7/4.2.0.1.table | 91 - .../grib2/tables/7/4.2.0.13.table | 5 - .../grib2/tables/7/4.2.0.14.table | 7 - .../grib2/tables/7/4.2.0.15.table | 19 - .../grib2/tables/7/4.2.0.16.table | 10 - .../grib2/tables/7/4.2.0.18.table | 18 - .../grib2/tables/7/4.2.0.19.table | 31 - .../grib2/tables/7/4.2.0.190.table | 5 - .../grib2/tables/7/4.2.0.191.table | 7 - .../grib2/tables/7/4.2.0.2.table | 37 - .../grib2/tables/7/4.2.0.20.table | 26 - .../grib2/tables/7/4.2.0.3.table | 30 - .../grib2/tables/7/4.2.0.4.table | 20 - .../grib2/tables/7/4.2.0.5.table | 11 - .../grib2/tables/7/4.2.0.6.table | 39 - .../grib2/tables/7/4.2.0.7.table | 20 - .../grib2/tables/7/4.2.1.0.table | 11 - .../grib2/tables/7/4.2.1.1.table | 7 - .../grib2/tables/7/4.2.10.0.table | 20 - .../grib2/tables/7/4.2.10.1.table | 8 - .../grib2/tables/7/4.2.10.191.table | 6 - .../grib2/tables/7/4.2.10.2.table | 14 - .../grib2/tables/7/4.2.10.3.table | 6 - .../grib2/tables/7/4.2.10.4.table | 11 - .../grib2/tables/7/4.2.192.0.table | 2 - .../grib2/tables/7/4.2.192.1.table | 2 - .../grib2/tables/7/4.2.192.10.table | 2 - .../grib2/tables/7/4.2.192.100.table | 2 - .../grib2/tables/7/4.2.192.101.table | 2 - .../grib2/tables/7/4.2.192.102.table | 2 - .../grib2/tables/7/4.2.192.103.table | 2 - .../grib2/tables/7/4.2.192.104.table | 2 - .../grib2/tables/7/4.2.192.105.table | 2 - .../grib2/tables/7/4.2.192.106.table | 2 - .../grib2/tables/7/4.2.192.107.table | 2 - .../grib2/tables/7/4.2.192.108.table | 2 - .../grib2/tables/7/4.2.192.109.table | 2 - .../grib2/tables/7/4.2.192.11.table | 2 - .../grib2/tables/7/4.2.192.110.table | 2 - .../grib2/tables/7/4.2.192.111.table | 2 - .../grib2/tables/7/4.2.192.112.table | 2 - .../grib2/tables/7/4.2.192.113.table | 2 - .../grib2/tables/7/4.2.192.114.table | 2 - .../grib2/tables/7/4.2.192.115.table | 2 - .../grib2/tables/7/4.2.192.116.table | 2 - .../grib2/tables/7/4.2.192.117.table | 2 - .../grib2/tables/7/4.2.192.118.table | 2 - .../grib2/tables/7/4.2.192.119.table | 2 - .../grib2/tables/7/4.2.192.12.table | 2 - .../grib2/tables/7/4.2.192.120.table | 2 - .../grib2/tables/7/4.2.192.121.table | 2 - .../grib2/tables/7/4.2.192.122.table | 2 - .../grib2/tables/7/4.2.192.123.table | 2 - .../grib2/tables/7/4.2.192.124.table | 2 - .../grib2/tables/7/4.2.192.125.table | 2 - .../grib2/tables/7/4.2.192.126.table | 2 - .../grib2/tables/7/4.2.192.127.table | 2 - .../grib2/tables/7/4.2.192.128.table | 2 - .../grib2/tables/7/4.2.192.129.table | 2 - .../grib2/tables/7/4.2.192.13.table | 2 - .../grib2/tables/7/4.2.192.130.table | 2 - .../grib2/tables/7/4.2.192.131.table | 2 - .../grib2/tables/7/4.2.192.132.table | 2 - .../grib2/tables/7/4.2.192.133.table | 2 - .../grib2/tables/7/4.2.192.134.table | 2 - .../grib2/tables/7/4.2.192.135.table | 2 - .../grib2/tables/7/4.2.192.136.table | 2 - .../grib2/tables/7/4.2.192.137.table | 2 - .../grib2/tables/7/4.2.192.138.table | 2 - .../grib2/tables/7/4.2.192.139.table | 2 - .../grib2/tables/7/4.2.192.14.table | 2 - .../grib2/tables/7/4.2.192.140.table | 2 - .../grib2/tables/7/4.2.192.141.table | 2 - .../grib2/tables/7/4.2.192.142.table | 2 - .../grib2/tables/7/4.2.192.143.table | 2 - .../grib2/tables/7/4.2.192.144.table | 2 - .../grib2/tables/7/4.2.192.145.table | 2 - .../grib2/tables/7/4.2.192.146.table | 2 - .../grib2/tables/7/4.2.192.147.table | 2 - .../grib2/tables/7/4.2.192.148.table | 2 - .../grib2/tables/7/4.2.192.149.table | 2 - .../grib2/tables/7/4.2.192.15.table | 2 - .../grib2/tables/7/4.2.192.150.table | 2 - .../grib2/tables/7/4.2.192.151.table | 2 - .../grib2/tables/7/4.2.192.152.table | 2 - .../grib2/tables/7/4.2.192.153.table | 2 - .../grib2/tables/7/4.2.192.154.table | 2 - .../grib2/tables/7/4.2.192.155.table | 2 - .../grib2/tables/7/4.2.192.156.table | 2 - .../grib2/tables/7/4.2.192.157.table | 2 - .../grib2/tables/7/4.2.192.158.table | 2 - .../grib2/tables/7/4.2.192.159.table | 2 - .../grib2/tables/7/4.2.192.16.table | 2 - .../grib2/tables/7/4.2.192.160.table | 2 - .../grib2/tables/7/4.2.192.161.table | 2 - .../grib2/tables/7/4.2.192.162.table | 2 - .../grib2/tables/7/4.2.192.163.table | 2 - .../grib2/tables/7/4.2.192.164.table | 2 - .../grib2/tables/7/4.2.192.165.table | 2 - .../grib2/tables/7/4.2.192.166.table | 2 - .../grib2/tables/7/4.2.192.167.table | 2 - .../grib2/tables/7/4.2.192.168.table | 2 - .../grib2/tables/7/4.2.192.169.table | 2 - .../grib2/tables/7/4.2.192.17.table | 2 - .../grib2/tables/7/4.2.192.170.table | 2 - .../grib2/tables/7/4.2.192.171.table | 2 - .../grib2/tables/7/4.2.192.172.table | 2 - .../grib2/tables/7/4.2.192.173.table | 2 - .../grib2/tables/7/4.2.192.174.table | 2 - .../grib2/tables/7/4.2.192.175.table | 2 - .../grib2/tables/7/4.2.192.176.table | 2 - .../grib2/tables/7/4.2.192.177.table | 2 - .../grib2/tables/7/4.2.192.178.table | 2 - .../grib2/tables/7/4.2.192.179.table | 2 - .../grib2/tables/7/4.2.192.18.table | 2 - .../grib2/tables/7/4.2.192.180.table | 2 - .../grib2/tables/7/4.2.192.181.table | 2 - .../grib2/tables/7/4.2.192.182.table | 2 - .../grib2/tables/7/4.2.192.183.table | 2 - .../grib2/tables/7/4.2.192.184.table | 2 - .../grib2/tables/7/4.2.192.185.table | 2 - .../grib2/tables/7/4.2.192.186.table | 2 - .../grib2/tables/7/4.2.192.187.table | 2 - .../grib2/tables/7/4.2.192.188.table | 2 - .../grib2/tables/7/4.2.192.189.table | 2 - .../grib2/tables/7/4.2.192.19.table | 2 - .../grib2/tables/7/4.2.192.190.table | 2 - .../grib2/tables/7/4.2.192.191.table | 2 - .../grib2/tables/7/4.2.192.192.table | 2 - .../grib2/tables/7/4.2.192.193.table | 2 - .../grib2/tables/7/4.2.192.194.table | 2 - .../grib2/tables/7/4.2.192.195.table | 2 - .../grib2/tables/7/4.2.192.196.table | 2 - .../grib2/tables/7/4.2.192.197.table | 2 - .../grib2/tables/7/4.2.192.198.table | 2 - .../grib2/tables/7/4.2.192.199.table | 2 - .../grib2/tables/7/4.2.192.2.table | 2 - .../grib2/tables/7/4.2.192.20.table | 2 - .../grib2/tables/7/4.2.192.200.table | 2 - .../grib2/tables/7/4.2.192.201.table | 2 - .../grib2/tables/7/4.2.192.202.table | 2 - .../grib2/tables/7/4.2.192.203.table | 2 - .../grib2/tables/7/4.2.192.204.table | 2 - .../grib2/tables/7/4.2.192.205.table | 2 - .../grib2/tables/7/4.2.192.206.table | 2 - .../grib2/tables/7/4.2.192.207.table | 2 - .../grib2/tables/7/4.2.192.208.table | 2 - .../grib2/tables/7/4.2.192.209.table | 2 - .../grib2/tables/7/4.2.192.21.table | 2 - .../grib2/tables/7/4.2.192.210.table | 2 - .../grib2/tables/7/4.2.192.211.table | 2 - .../grib2/tables/7/4.2.192.212.table | 2 - .../grib2/tables/7/4.2.192.213.table | 2 - .../grib2/tables/7/4.2.192.214.table | 2 - .../grib2/tables/7/4.2.192.215.table | 2 - .../grib2/tables/7/4.2.192.216.table | 2 - .../grib2/tables/7/4.2.192.217.table | 2 - .../grib2/tables/7/4.2.192.218.table | 2 - .../grib2/tables/7/4.2.192.219.table | 2 - .../grib2/tables/7/4.2.192.22.table | 2 - .../grib2/tables/7/4.2.192.220.table | 2 - .../grib2/tables/7/4.2.192.221.table | 2 - .../grib2/tables/7/4.2.192.222.table | 2 - .../grib2/tables/7/4.2.192.223.table | 2 - .../grib2/tables/7/4.2.192.224.table | 2 - .../grib2/tables/7/4.2.192.225.table | 2 - .../grib2/tables/7/4.2.192.226.table | 2 - .../grib2/tables/7/4.2.192.227.table | 2 - .../grib2/tables/7/4.2.192.228.table | 2 - .../grib2/tables/7/4.2.192.229.table | 2 - .../grib2/tables/7/4.2.192.23.table | 2 - .../grib2/tables/7/4.2.192.230.table | 2 - .../grib2/tables/7/4.2.192.231.table | 2 - .../grib2/tables/7/4.2.192.232.table | 2 - .../grib2/tables/7/4.2.192.233.table | 2 - .../grib2/tables/7/4.2.192.234.table | 2 - .../grib2/tables/7/4.2.192.235.table | 2 - .../grib2/tables/7/4.2.192.236.table | 2 - .../grib2/tables/7/4.2.192.237.table | 2 - .../grib2/tables/7/4.2.192.238.table | 2 - .../grib2/tables/7/4.2.192.239.table | 2 - .../grib2/tables/7/4.2.192.24.table | 2 - .../grib2/tables/7/4.2.192.240.table | 2 - .../grib2/tables/7/4.2.192.241.table | 2 - .../grib2/tables/7/4.2.192.242.table | 2 - .../grib2/tables/7/4.2.192.243.table | 2 - .../grib2/tables/7/4.2.192.244.table | 2 - .../grib2/tables/7/4.2.192.245.table | 2 - .../grib2/tables/7/4.2.192.246.table | 2 - .../grib2/tables/7/4.2.192.247.table | 2 - .../grib2/tables/7/4.2.192.248.table | 2 - .../grib2/tables/7/4.2.192.249.table | 2 - .../grib2/tables/7/4.2.192.25.table | 2 - .../grib2/tables/7/4.2.192.250.table | 2 - .../grib2/tables/7/4.2.192.251.table | 2 - .../grib2/tables/7/4.2.192.252.table | 2 - .../grib2/tables/7/4.2.192.253.table | 2 - .../grib2/tables/7/4.2.192.254.table | 2 - .../grib2/tables/7/4.2.192.255.table | 2 - .../grib2/tables/7/4.2.192.26.table | 2 - .../grib2/tables/7/4.2.192.27.table | 2 - .../grib2/tables/7/4.2.192.28.table | 2 - .../grib2/tables/7/4.2.192.29.table | 2 - .../grib2/tables/7/4.2.192.3.table | 2 - .../grib2/tables/7/4.2.192.30.table | 2 - .../grib2/tables/7/4.2.192.31.table | 2 - .../grib2/tables/7/4.2.192.32.table | 2 - .../grib2/tables/7/4.2.192.33.table | 2 - .../grib2/tables/7/4.2.192.34.table | 2 - .../grib2/tables/7/4.2.192.35.table | 2 - .../grib2/tables/7/4.2.192.36.table | 2 - .../grib2/tables/7/4.2.192.37.table | 2 - .../grib2/tables/7/4.2.192.38.table | 2 - .../grib2/tables/7/4.2.192.39.table | 2 - .../grib2/tables/7/4.2.192.4.table | 2 - .../grib2/tables/7/4.2.192.40.table | 2 - .../grib2/tables/7/4.2.192.41.table | 2 - .../grib2/tables/7/4.2.192.42.table | 2 - .../grib2/tables/7/4.2.192.43.table | 2 - .../grib2/tables/7/4.2.192.44.table | 2 - .../grib2/tables/7/4.2.192.45.table | 2 - .../grib2/tables/7/4.2.192.46.table | 2 - .../grib2/tables/7/4.2.192.47.table | 2 - .../grib2/tables/7/4.2.192.48.table | 2 - .../grib2/tables/7/4.2.192.49.table | 2 - .../grib2/tables/7/4.2.192.5.table | 2 - .../grib2/tables/7/4.2.192.50.table | 2 - .../grib2/tables/7/4.2.192.51.table | 2 - .../grib2/tables/7/4.2.192.52.table | 2 - .../grib2/tables/7/4.2.192.53.table | 2 - .../grib2/tables/7/4.2.192.54.table | 2 - .../grib2/tables/7/4.2.192.55.table | 2 - .../grib2/tables/7/4.2.192.56.table | 2 - .../grib2/tables/7/4.2.192.57.table | 2 - .../grib2/tables/7/4.2.192.58.table | 2 - .../grib2/tables/7/4.2.192.59.table | 2 - .../grib2/tables/7/4.2.192.6.table | 2 - .../grib2/tables/7/4.2.192.60.table | 2 - .../grib2/tables/7/4.2.192.61.table | 2 - .../grib2/tables/7/4.2.192.62.table | 2 - .../grib2/tables/7/4.2.192.63.table | 2 - .../grib2/tables/7/4.2.192.64.table | 2 - .../grib2/tables/7/4.2.192.65.table | 2 - .../grib2/tables/7/4.2.192.66.table | 2 - .../grib2/tables/7/4.2.192.67.table | 2 - .../grib2/tables/7/4.2.192.68.table | 2 - .../grib2/tables/7/4.2.192.69.table | 2 - .../grib2/tables/7/4.2.192.7.table | 2 - .../grib2/tables/7/4.2.192.70.table | 2 - .../grib2/tables/7/4.2.192.71.table | 2 - .../grib2/tables/7/4.2.192.72.table | 2 - .../grib2/tables/7/4.2.192.73.table | 2 - .../grib2/tables/7/4.2.192.74.table | 2 - .../grib2/tables/7/4.2.192.75.table | 2 - .../grib2/tables/7/4.2.192.76.table | 2 - .../grib2/tables/7/4.2.192.77.table | 2 - .../grib2/tables/7/4.2.192.78.table | 2 - .../grib2/tables/7/4.2.192.79.table | 2 - .../grib2/tables/7/4.2.192.8.table | 2 - .../grib2/tables/7/4.2.192.80.table | 2 - .../grib2/tables/7/4.2.192.81.table | 2 - .../grib2/tables/7/4.2.192.82.table | 2 - .../grib2/tables/7/4.2.192.83.table | 2 - .../grib2/tables/7/4.2.192.84.table | 2 - .../grib2/tables/7/4.2.192.85.table | 2 - .../grib2/tables/7/4.2.192.86.table | 2 - .../grib2/tables/7/4.2.192.87.table | 2 - .../grib2/tables/7/4.2.192.88.table | 2 - .../grib2/tables/7/4.2.192.89.table | 2 - .../grib2/tables/7/4.2.192.9.table | 2 - .../grib2/tables/7/4.2.192.90.table | 2 - .../grib2/tables/7/4.2.192.91.table | 2 - .../grib2/tables/7/4.2.192.92.table | 2 - .../grib2/tables/7/4.2.192.93.table | 2 - .../grib2/tables/7/4.2.192.94.table | 2 - .../grib2/tables/7/4.2.192.95.table | 2 - .../grib2/tables/7/4.2.192.96.table | 2 - .../grib2/tables/7/4.2.192.97.table | 2 - .../grib2/tables/7/4.2.192.98.table | 2 - .../grib2/tables/7/4.2.192.99.table | 2 - .../grib2/tables/7/4.2.2.0.table | 37 - .../grib2/tables/7/4.2.2.3.table | 27 - .../grib2/tables/7/4.2.2.4.table | 3 - .../grib2/tables/7/4.2.3.0.table | 14 - .../grib2/tables/7/4.2.3.1.table | 28 - .../grib2/tables/7/4.201.table | 72 - .../grib2/tables/7/4.202.table | 66 - .../grib2/tables/7/4.203.table | 25 - .../grib2/tables/7/4.204.table | 71 - .../grib2/tables/7/4.205.table | 68 - .../grib2/tables/7/4.206.table | 68 - .../grib2/tables/7/4.207.table | 70 - .../grib2/tables/7/4.208.table | 71 - .../grib2/tables/7/4.209.table | 70 - .../grib2/tables/7/4.210.table | 68 - .../grib2/tables/7/4.211.table | 69 - .../grib2/tables/7/4.212.table | 79 - .../grib2/tables/7/4.213.table | 77 - .../grib2/tables/7/4.215.table | 10 - .../grib2/tables/7/4.216.table | 3 - .../grib2/tables/7/4.217.table | 70 - .../grib2/tables/7/4.218.table | 35 - .../grib2/tables/7/4.219.table | 6 - .../grib2/tables/7/4.220.table | 68 - .../grib2/tables/7/4.221.table | 68 - .../grib2/tables/7/4.222.table | 4 - .../grib2/tables/7/4.223.table | 5 - .../grib2/tables/7/4.224.table | 18 - .../grib2/tables/7/4.230.table | 117 - .../definitions.save/grib2/tables/7/4.3.table | 16 - .../definitions.save/grib2/tables/7/4.4.table | 16 - .../definitions.save/grib2/tables/7/4.5.table | 38 - .../definitions.save/grib2/tables/7/4.6.table | 10 - .../definitions.save/grib2/tables/7/4.7.table | 77 - .../definitions.save/grib2/tables/7/4.8.table | 68 - .../definitions.save/grib2/tables/7/4.9.table | 71 - .../grib2/tables/7/4.91.table | 79 - .../definitions.save/grib2/tables/7/5.0.table | 19 - .../definitions.save/grib2/tables/7/5.1.table | 5 - .../definitions.save/grib2/tables/7/5.2.table | 6 - .../definitions.save/grib2/tables/7/5.3.table | 6 - .../definitions.save/grib2/tables/7/5.4.table | 5 - .../grib2/tables/7/5.40.table | 5 - .../grib2/tables/7/5.40000.table | 5 - .../definitions.save/grib2/tables/7/5.5.table | 7 - .../grib2/tables/7/5.50002.table | 19 - .../definitions.save/grib2/tables/7/5.6.table | 68 - .../definitions.save/grib2/tables/7/5.7.table | 6 - .../definitions.save/grib2/tables/7/5.8.table | 3 - .../definitions.save/grib2/tables/7/5.9.table | 4 - .../definitions.save/grib2/tables/7/6.0.table | 7 - .../grib2/tables/7/stepType.table | 2 - .../definitions.save/grib2/tables/8/0.0.table | 10 - .../definitions.save/grib2/tables/8/1.0.table | 13 - .../definitions.save/grib2/tables/8/1.1.table | 4 - .../definitions.save/grib2/tables/8/1.2.table | 8 - .../definitions.save/grib2/tables/8/1.3.table | 10 - .../definitions.save/grib2/tables/8/1.4.table | 13 - .../definitions.save/grib2/tables/8/3.0.table | 6 - .../definitions.save/grib2/tables/8/3.1.table | 43 - .../grib2/tables/8/3.10.table | 8 - .../grib2/tables/8/3.11.table | 7 - .../grib2/tables/8/3.15.table | 22 - .../definitions.save/grib2/tables/8/3.2.table | 13 - .../grib2/tables/8/3.20.table | 6 - .../grib2/tables/8/3.21.table | 8 - .../definitions.save/grib2/tables/8/3.3.table | 9 - .../definitions.save/grib2/tables/8/3.4.table | 10 - .../definitions.save/grib2/tables/8/3.5.table | 5 - .../definitions.save/grib2/tables/8/3.6.table | 2 - .../definitions.save/grib2/tables/8/3.7.table | 5 - .../definitions.save/grib2/tables/8/3.8.table | 7 - .../definitions.save/grib2/tables/8/3.9.table | 4 - .../definitions.save/grib2/tables/8/4.0.table | 53 - .../grib2/tables/8/4.1.0.table | 27 - .../grib2/tables/8/4.1.1.table | 7 - .../grib2/tables/8/4.1.10.table | 10 - .../grib2/tables/8/4.1.192.table | 4 - .../grib2/tables/8/4.1.2.table | 9 - .../grib2/tables/8/4.1.3.table | 8 - .../definitions.save/grib2/tables/8/4.1.table | 5 - .../grib2/tables/8/4.10.table | 15 - .../grib2/tables/8/4.11.table | 10 - .../grib2/tables/8/4.12.table | 7 - .../grib2/tables/8/4.13.table | 6 - .../grib2/tables/8/4.14.table | 6 - .../grib2/tables/8/4.15.table | 11 - .../grib2/tables/8/4.151.table | 70 - .../grib2/tables/8/4.192.table | 4 - .../grib2/tables/8/4.2.0.0.table | 25 - .../grib2/tables/8/4.2.0.1.table | 95 - .../grib2/tables/8/4.2.0.13.table | 5 - .../grib2/tables/8/4.2.0.14.table | 7 - .../grib2/tables/8/4.2.0.15.table | 19 - .../grib2/tables/8/4.2.0.16.table | 10 - .../grib2/tables/8/4.2.0.18.table | 18 - .../grib2/tables/8/4.2.0.19.table | 31 - .../grib2/tables/8/4.2.0.190.table | 5 - .../grib2/tables/8/4.2.0.191.table | 7 - .../grib2/tables/8/4.2.0.2.table | 38 - .../grib2/tables/8/4.2.0.20.table | 42 - .../grib2/tables/8/4.2.0.3.table | 30 - .../grib2/tables/8/4.2.0.4.table | 20 - .../grib2/tables/8/4.2.0.5.table | 11 - .../grib2/tables/8/4.2.0.6.table | 38 - .../grib2/tables/8/4.2.0.7.table | 20 - .../grib2/tables/8/4.2.1.0.table | 11 - .../grib2/tables/8/4.2.1.1.table | 7 - .../grib2/tables/8/4.2.1.2.table | 14 - .../grib2/tables/8/4.2.10.0.table | 53 - .../grib2/tables/8/4.2.10.1.table | 8 - .../grib2/tables/8/4.2.10.191.table | 6 - .../grib2/tables/8/4.2.10.2.table | 14 - .../grib2/tables/8/4.2.10.3.table | 6 - .../grib2/tables/8/4.2.10.4.table | 18 - .../grib2/tables/8/4.2.192.0.table | 2 - .../grib2/tables/8/4.2.192.1.table | 2 - .../grib2/tables/8/4.2.192.10.table | 2 - .../grib2/tables/8/4.2.192.100.table | 2 - .../grib2/tables/8/4.2.192.101.table | 2 - .../grib2/tables/8/4.2.192.102.table | 2 - .../grib2/tables/8/4.2.192.103.table | 2 - .../grib2/tables/8/4.2.192.104.table | 2 - .../grib2/tables/8/4.2.192.105.table | 2 - .../grib2/tables/8/4.2.192.106.table | 2 - .../grib2/tables/8/4.2.192.107.table | 2 - .../grib2/tables/8/4.2.192.108.table | 2 - .../grib2/tables/8/4.2.192.109.table | 2 - .../grib2/tables/8/4.2.192.11.table | 2 - .../grib2/tables/8/4.2.192.110.table | 2 - .../grib2/tables/8/4.2.192.111.table | 2 - .../grib2/tables/8/4.2.192.112.table | 2 - .../grib2/tables/8/4.2.192.113.table | 2 - .../grib2/tables/8/4.2.192.114.table | 2 - .../grib2/tables/8/4.2.192.115.table | 2 - .../grib2/tables/8/4.2.192.116.table | 2 - .../grib2/tables/8/4.2.192.117.table | 2 - .../grib2/tables/8/4.2.192.118.table | 2 - .../grib2/tables/8/4.2.192.119.table | 2 - .../grib2/tables/8/4.2.192.12.table | 2 - .../grib2/tables/8/4.2.192.120.table | 2 - .../grib2/tables/8/4.2.192.121.table | 2 - .../grib2/tables/8/4.2.192.122.table | 2 - .../grib2/tables/8/4.2.192.123.table | 2 - .../grib2/tables/8/4.2.192.124.table | 2 - .../grib2/tables/8/4.2.192.125.table | 2 - .../grib2/tables/8/4.2.192.126.table | 2 - .../grib2/tables/8/4.2.192.127.table | 2 - .../grib2/tables/8/4.2.192.128.table | 2 - .../grib2/tables/8/4.2.192.129.table | 2 - .../grib2/tables/8/4.2.192.13.table | 2 - .../grib2/tables/8/4.2.192.130.table | 2 - .../grib2/tables/8/4.2.192.131.table | 2 - .../grib2/tables/8/4.2.192.132.table | 2 - .../grib2/tables/8/4.2.192.133.table | 2 - .../grib2/tables/8/4.2.192.134.table | 2 - .../grib2/tables/8/4.2.192.135.table | 2 - .../grib2/tables/8/4.2.192.136.table | 2 - .../grib2/tables/8/4.2.192.137.table | 2 - .../grib2/tables/8/4.2.192.138.table | 2 - .../grib2/tables/8/4.2.192.139.table | 2 - .../grib2/tables/8/4.2.192.14.table | 2 - .../grib2/tables/8/4.2.192.140.table | 2 - .../grib2/tables/8/4.2.192.141.table | 2 - .../grib2/tables/8/4.2.192.142.table | 2 - .../grib2/tables/8/4.2.192.143.table | 2 - .../grib2/tables/8/4.2.192.144.table | 2 - .../grib2/tables/8/4.2.192.145.table | 2 - .../grib2/tables/8/4.2.192.146.table | 2 - .../grib2/tables/8/4.2.192.147.table | 2 - .../grib2/tables/8/4.2.192.148.table | 2 - .../grib2/tables/8/4.2.192.149.table | 2 - .../grib2/tables/8/4.2.192.15.table | 2 - .../grib2/tables/8/4.2.192.150.table | 2 - .../grib2/tables/8/4.2.192.151.table | 2 - .../grib2/tables/8/4.2.192.152.table | 2 - .../grib2/tables/8/4.2.192.153.table | 2 - .../grib2/tables/8/4.2.192.154.table | 2 - .../grib2/tables/8/4.2.192.155.table | 2 - .../grib2/tables/8/4.2.192.156.table | 2 - .../grib2/tables/8/4.2.192.157.table | 2 - .../grib2/tables/8/4.2.192.158.table | 2 - .../grib2/tables/8/4.2.192.159.table | 2 - .../grib2/tables/8/4.2.192.16.table | 2 - .../grib2/tables/8/4.2.192.160.table | 2 - .../grib2/tables/8/4.2.192.161.table | 2 - .../grib2/tables/8/4.2.192.162.table | 2 - .../grib2/tables/8/4.2.192.163.table | 2 - .../grib2/tables/8/4.2.192.164.table | 2 - .../grib2/tables/8/4.2.192.165.table | 2 - .../grib2/tables/8/4.2.192.166.table | 2 - .../grib2/tables/8/4.2.192.167.table | 2 - .../grib2/tables/8/4.2.192.168.table | 2 - .../grib2/tables/8/4.2.192.169.table | 2 - .../grib2/tables/8/4.2.192.17.table | 2 - .../grib2/tables/8/4.2.192.170.table | 2 - .../grib2/tables/8/4.2.192.171.table | 2 - .../grib2/tables/8/4.2.192.172.table | 2 - .../grib2/tables/8/4.2.192.173.table | 2 - .../grib2/tables/8/4.2.192.174.table | 2 - .../grib2/tables/8/4.2.192.175.table | 2 - .../grib2/tables/8/4.2.192.176.table | 2 - .../grib2/tables/8/4.2.192.177.table | 2 - .../grib2/tables/8/4.2.192.178.table | 2 - .../grib2/tables/8/4.2.192.179.table | 2 - .../grib2/tables/8/4.2.192.18.table | 2 - .../grib2/tables/8/4.2.192.180.table | 2 - .../grib2/tables/8/4.2.192.181.table | 2 - .../grib2/tables/8/4.2.192.182.table | 2 - .../grib2/tables/8/4.2.192.183.table | 2 - .../grib2/tables/8/4.2.192.184.table | 2 - .../grib2/tables/8/4.2.192.185.table | 2 - .../grib2/tables/8/4.2.192.186.table | 2 - .../grib2/tables/8/4.2.192.187.table | 2 - .../grib2/tables/8/4.2.192.188.table | 2 - .../grib2/tables/8/4.2.192.189.table | 2 - .../grib2/tables/8/4.2.192.19.table | 2 - .../grib2/tables/8/4.2.192.190.table | 2 - .../grib2/tables/8/4.2.192.191.table | 2 - .../grib2/tables/8/4.2.192.192.table | 2 - .../grib2/tables/8/4.2.192.193.table | 2 - .../grib2/tables/8/4.2.192.194.table | 2 - .../grib2/tables/8/4.2.192.195.table | 2 - .../grib2/tables/8/4.2.192.196.table | 2 - .../grib2/tables/8/4.2.192.197.table | 2 - .../grib2/tables/8/4.2.192.198.table | 2 - .../grib2/tables/8/4.2.192.199.table | 2 - .../grib2/tables/8/4.2.192.2.table | 2 - .../grib2/tables/8/4.2.192.20.table | 2 - .../grib2/tables/8/4.2.192.200.table | 2 - .../grib2/tables/8/4.2.192.201.table | 2 - .../grib2/tables/8/4.2.192.202.table | 2 - .../grib2/tables/8/4.2.192.203.table | 2 - .../grib2/tables/8/4.2.192.204.table | 2 - .../grib2/tables/8/4.2.192.205.table | 2 - .../grib2/tables/8/4.2.192.206.table | 2 - .../grib2/tables/8/4.2.192.207.table | 2 - .../grib2/tables/8/4.2.192.208.table | 2 - .../grib2/tables/8/4.2.192.209.table | 2 - .../grib2/tables/8/4.2.192.21.table | 2 - .../grib2/tables/8/4.2.192.210.table | 2 - .../grib2/tables/8/4.2.192.211.table | 2 - .../grib2/tables/8/4.2.192.212.table | 2 - .../grib2/tables/8/4.2.192.213.table | 2 - .../grib2/tables/8/4.2.192.214.table | 2 - .../grib2/tables/8/4.2.192.215.table | 2 - .../grib2/tables/8/4.2.192.216.table | 2 - .../grib2/tables/8/4.2.192.217.table | 2 - .../grib2/tables/8/4.2.192.218.table | 2 - .../grib2/tables/8/4.2.192.219.table | 2 - .../grib2/tables/8/4.2.192.22.table | 2 - .../grib2/tables/8/4.2.192.220.table | 2 - .../grib2/tables/8/4.2.192.221.table | 2 - .../grib2/tables/8/4.2.192.222.table | 2 - .../grib2/tables/8/4.2.192.223.table | 2 - .../grib2/tables/8/4.2.192.224.table | 2 - .../grib2/tables/8/4.2.192.225.table | 2 - .../grib2/tables/8/4.2.192.226.table | 2 - .../grib2/tables/8/4.2.192.227.table | 2 - .../grib2/tables/8/4.2.192.228.table | 2 - .../grib2/tables/8/4.2.192.229.table | 2 - .../grib2/tables/8/4.2.192.23.table | 2 - .../grib2/tables/8/4.2.192.230.table | 2 - .../grib2/tables/8/4.2.192.231.table | 2 - .../grib2/tables/8/4.2.192.232.table | 2 - .../grib2/tables/8/4.2.192.233.table | 2 - .../grib2/tables/8/4.2.192.234.table | 2 - .../grib2/tables/8/4.2.192.235.table | 2 - .../grib2/tables/8/4.2.192.236.table | 2 - .../grib2/tables/8/4.2.192.237.table | 2 - .../grib2/tables/8/4.2.192.238.table | 2 - .../grib2/tables/8/4.2.192.239.table | 2 - .../grib2/tables/8/4.2.192.24.table | 2 - .../grib2/tables/8/4.2.192.240.table | 2 - .../grib2/tables/8/4.2.192.241.table | 2 - .../grib2/tables/8/4.2.192.242.table | 2 - .../grib2/tables/8/4.2.192.243.table | 2 - .../grib2/tables/8/4.2.192.244.table | 2 - .../grib2/tables/8/4.2.192.245.table | 2 - .../grib2/tables/8/4.2.192.246.table | 2 - .../grib2/tables/8/4.2.192.247.table | 2 - .../grib2/tables/8/4.2.192.248.table | 2 - .../grib2/tables/8/4.2.192.249.table | 2 - .../grib2/tables/8/4.2.192.25.table | 2 - .../grib2/tables/8/4.2.192.250.table | 2 - .../grib2/tables/8/4.2.192.251.table | 2 - .../grib2/tables/8/4.2.192.252.table | 2 - .../grib2/tables/8/4.2.192.253.table | 2 - .../grib2/tables/8/4.2.192.254.table | 2 - .../grib2/tables/8/4.2.192.255.table | 2 - .../grib2/tables/8/4.2.192.26.table | 2 - .../grib2/tables/8/4.2.192.27.table | 2 - .../grib2/tables/8/4.2.192.28.table | 2 - .../grib2/tables/8/4.2.192.29.table | 2 - .../grib2/tables/8/4.2.192.3.table | 2 - .../grib2/tables/8/4.2.192.30.table | 2 - .../grib2/tables/8/4.2.192.31.table | 2 - .../grib2/tables/8/4.2.192.32.table | 2 - .../grib2/tables/8/4.2.192.33.table | 2 - .../grib2/tables/8/4.2.192.34.table | 2 - .../grib2/tables/8/4.2.192.35.table | 2 - .../grib2/tables/8/4.2.192.36.table | 2 - .../grib2/tables/8/4.2.192.37.table | 2 - .../grib2/tables/8/4.2.192.38.table | 2 - .../grib2/tables/8/4.2.192.39.table | 2 - .../grib2/tables/8/4.2.192.4.table | 2 - .../grib2/tables/8/4.2.192.40.table | 2 - .../grib2/tables/8/4.2.192.41.table | 2 - .../grib2/tables/8/4.2.192.42.table | 2 - .../grib2/tables/8/4.2.192.43.table | 2 - .../grib2/tables/8/4.2.192.44.table | 2 - .../grib2/tables/8/4.2.192.45.table | 2 - .../grib2/tables/8/4.2.192.46.table | 2 - .../grib2/tables/8/4.2.192.47.table | 2 - .../grib2/tables/8/4.2.192.48.table | 2 - .../grib2/tables/8/4.2.192.49.table | 2 - .../grib2/tables/8/4.2.192.5.table | 2 - .../grib2/tables/8/4.2.192.50.table | 2 - .../grib2/tables/8/4.2.192.51.table | 2 - .../grib2/tables/8/4.2.192.52.table | 2 - .../grib2/tables/8/4.2.192.53.table | 2 - .../grib2/tables/8/4.2.192.54.table | 2 - .../grib2/tables/8/4.2.192.55.table | 2 - .../grib2/tables/8/4.2.192.56.table | 2 - .../grib2/tables/8/4.2.192.57.table | 2 - .../grib2/tables/8/4.2.192.58.table | 2 - .../grib2/tables/8/4.2.192.59.table | 2 - .../grib2/tables/8/4.2.192.6.table | 2 - .../grib2/tables/8/4.2.192.60.table | 2 - .../grib2/tables/8/4.2.192.61.table | 2 - .../grib2/tables/8/4.2.192.62.table | 2 - .../grib2/tables/8/4.2.192.63.table | 2 - .../grib2/tables/8/4.2.192.64.table | 2 - .../grib2/tables/8/4.2.192.65.table | 2 - .../grib2/tables/8/4.2.192.66.table | 2 - .../grib2/tables/8/4.2.192.67.table | 2 - .../grib2/tables/8/4.2.192.68.table | 2 - .../grib2/tables/8/4.2.192.69.table | 2 - .../grib2/tables/8/4.2.192.7.table | 2 - .../grib2/tables/8/4.2.192.70.table | 2 - .../grib2/tables/8/4.2.192.71.table | 2 - .../grib2/tables/8/4.2.192.72.table | 2 - .../grib2/tables/8/4.2.192.73.table | 2 - .../grib2/tables/8/4.2.192.74.table | 2 - .../grib2/tables/8/4.2.192.75.table | 2 - .../grib2/tables/8/4.2.192.76.table | 2 - .../grib2/tables/8/4.2.192.77.table | 2 - .../grib2/tables/8/4.2.192.78.table | 2 - .../grib2/tables/8/4.2.192.79.table | 2 - .../grib2/tables/8/4.2.192.8.table | 2 - .../grib2/tables/8/4.2.192.80.table | 2 - .../grib2/tables/8/4.2.192.81.table | 2 - .../grib2/tables/8/4.2.192.82.table | 2 - .../grib2/tables/8/4.2.192.83.table | 2 - .../grib2/tables/8/4.2.192.84.table | 2 - .../grib2/tables/8/4.2.192.85.table | 2 - .../grib2/tables/8/4.2.192.86.table | 2 - .../grib2/tables/8/4.2.192.87.table | 2 - .../grib2/tables/8/4.2.192.88.table | 2 - .../grib2/tables/8/4.2.192.89.table | 2 - .../grib2/tables/8/4.2.192.9.table | 2 - .../grib2/tables/8/4.2.192.90.table | 2 - .../grib2/tables/8/4.2.192.91.table | 2 - .../grib2/tables/8/4.2.192.92.table | 2 - .../grib2/tables/8/4.2.192.93.table | 2 - .../grib2/tables/8/4.2.192.94.table | 2 - .../grib2/tables/8/4.2.192.95.table | 2 - .../grib2/tables/8/4.2.192.96.table | 2 - .../grib2/tables/8/4.2.192.97.table | 2 - .../grib2/tables/8/4.2.192.98.table | 2 - .../grib2/tables/8/4.2.192.99.table | 2 - .../grib2/tables/8/4.2.2.0.table | 37 - .../grib2/tables/8/4.2.2.3.table | 27 - .../grib2/tables/8/4.2.2.4.table | 4 - .../grib2/tables/8/4.2.3.0.table | 14 - .../grib2/tables/8/4.2.3.1.table | 28 - .../grib2/tables/8/4.201.table | 10 - .../grib2/tables/8/4.202.table | 4 - .../grib2/tables/8/4.203.table | 25 - .../grib2/tables/8/4.204.table | 9 - .../grib2/tables/8/4.205.table | 6 - .../grib2/tables/8/4.206.table | 6 - .../grib2/tables/8/4.207.table | 10 - .../grib2/tables/8/4.208.table | 9 - .../grib2/tables/8/4.209.table | 9 - .../grib2/tables/8/4.210.table | 6 - .../grib2/tables/8/4.211.table | 7 - .../grib2/tables/8/4.212.table | 18 - .../grib2/tables/8/4.213.table | 21 - .../grib2/tables/8/4.215.table | 9 - .../grib2/tables/8/4.216.table | 5 - .../grib2/tables/8/4.217.table | 8 - .../grib2/tables/8/4.218.table | 38 - .../grib2/tables/8/4.219.table | 8 - .../grib2/tables/8/4.220.table | 6 - .../grib2/tables/8/4.221.table | 6 - .../grib2/tables/8/4.222.table | 6 - .../grib2/tables/8/4.223.table | 5 - .../grib2/tables/8/4.224.table | 18 - .../grib2/tables/8/4.230.table | 415 - .../grib2/tables/8/4.233.table | 3 - .../definitions.save/grib2/tables/8/4.3.table | 16 - .../definitions.save/grib2/tables/8/4.4.table | 17 - .../definitions.save/grib2/tables/8/4.5.table | 48 - .../definitions.save/grib2/tables/8/4.6.table | 9 - .../definitions.save/grib2/tables/8/4.7.table | 14 - .../definitions.save/grib2/tables/8/4.8.table | 6 - .../definitions.save/grib2/tables/8/4.9.table | 9 - .../grib2/tables/8/4.91.table | 16 - .../definitions.save/grib2/tables/8/5.0.table | 24 - .../definitions.save/grib2/tables/8/5.1.table | 6 - .../definitions.save/grib2/tables/8/5.2.table | 8 - .../definitions.save/grib2/tables/8/5.3.table | 7 - .../definitions.save/grib2/tables/8/5.4.table | 6 - .../grib2/tables/8/5.40.table | 5 - .../grib2/tables/8/5.40000.table | 5 - .../definitions.save/grib2/tables/8/5.5.table | 7 - .../grib2/tables/8/5.50002.table | 19 - .../definitions.save/grib2/tables/8/5.6.table | 7 - .../definitions.save/grib2/tables/8/5.7.table | 7 - .../definitions.save/grib2/tables/8/5.8.table | 3 - .../definitions.save/grib2/tables/8/5.9.table | 4 - .../definitions.save/grib2/tables/8/6.0.table | 6 - .../grib2/tables/8/stepType.table | 2 - .../definitions.save/grib2/tables/9/0.0.table | 10 - .../definitions.save/grib2/tables/9/1.0.table | 14 - .../definitions.save/grib2/tables/9/1.1.table | 4 - .../definitions.save/grib2/tables/9/1.2.table | 8 - .../definitions.save/grib2/tables/9/1.3.table | 10 - .../definitions.save/grib2/tables/9/1.4.table | 13 - .../definitions.save/grib2/tables/9/3.0.table | 6 - .../definitions.save/grib2/tables/9/3.1.table | 43 - .../grib2/tables/9/3.10.table | 8 - .../grib2/tables/9/3.11.table | 7 - .../grib2/tables/9/3.15.table | 23 - .../definitions.save/grib2/tables/9/3.2.table | 13 - .../grib2/tables/9/3.20.table | 6 - .../grib2/tables/9/3.21.table | 8 - .../definitions.save/grib2/tables/9/3.3.table | 9 - .../definitions.save/grib2/tables/9/3.4.table | 10 - .../definitions.save/grib2/tables/9/3.5.table | 5 - .../definitions.save/grib2/tables/9/3.6.table | 2 - .../definitions.save/grib2/tables/9/3.7.table | 5 - .../definitions.save/grib2/tables/9/3.8.table | 7 - .../definitions.save/grib2/tables/9/3.9.table | 4 - .../definitions.save/grib2/tables/9/4.0.table | 53 - .../grib2/tables/9/4.1.0.table | 27 - .../grib2/tables/9/4.1.1.table | 7 - .../grib2/tables/9/4.1.10.table | 10 - .../grib2/tables/9/4.1.192.table | 4 - .../grib2/tables/9/4.1.2.table | 9 - .../grib2/tables/9/4.1.3.table | 8 - .../definitions.save/grib2/tables/9/4.1.table | 5 - .../grib2/tables/9/4.10.table | 15 - .../grib2/tables/9/4.11.table | 10 - .../grib2/tables/9/4.12.table | 7 - .../grib2/tables/9/4.13.table | 6 - .../grib2/tables/9/4.14.table | 6 - .../grib2/tables/9/4.15.table | 11 - .../grib2/tables/9/4.151.table | 70 - .../grib2/tables/9/4.192.table | 4 - .../grib2/tables/9/4.2.0.0.table | 25 - .../grib2/tables/9/4.2.0.1.table | 95 - .../grib2/tables/9/4.2.0.13.table | 5 - .../grib2/tables/9/4.2.0.14.table | 7 - .../grib2/tables/9/4.2.0.15.table | 19 - .../grib2/tables/9/4.2.0.16.table | 10 - .../grib2/tables/9/4.2.0.18.table | 18 - .../grib2/tables/9/4.2.0.19.table | 32 - .../grib2/tables/9/4.2.0.190.table | 5 - .../grib2/tables/9/4.2.0.191.table | 7 - .../grib2/tables/9/4.2.0.2.table | 40 - .../grib2/tables/9/4.2.0.20.table | 42 - .../grib2/tables/9/4.2.0.3.table | 31 - .../grib2/tables/9/4.2.0.4.table | 20 - .../grib2/tables/9/4.2.0.5.table | 11 - .../grib2/tables/9/4.2.0.6.table | 40 - .../grib2/tables/9/4.2.0.7.table | 20 - .../grib2/tables/9/4.2.1.0.table | 11 - .../grib2/tables/9/4.2.1.1.table | 7 - .../grib2/tables/9/4.2.1.2.table | 14 - .../grib2/tables/9/4.2.10.0.table | 50 - .../grib2/tables/9/4.2.10.1.table | 8 - .../grib2/tables/9/4.2.10.191.table | 6 - .../grib2/tables/9/4.2.10.2.table | 14 - .../grib2/tables/9/4.2.10.3.table | 6 - .../grib2/tables/9/4.2.10.4.table | 18 - .../grib2/tables/9/4.2.192.0.table | 2 - .../grib2/tables/9/4.2.192.1.table | 2 - .../grib2/tables/9/4.2.192.10.table | 2 - .../grib2/tables/9/4.2.192.100.table | 2 - .../grib2/tables/9/4.2.192.101.table | 2 - .../grib2/tables/9/4.2.192.102.table | 2 - .../grib2/tables/9/4.2.192.103.table | 2 - .../grib2/tables/9/4.2.192.104.table | 2 - .../grib2/tables/9/4.2.192.105.table | 2 - .../grib2/tables/9/4.2.192.106.table | 2 - .../grib2/tables/9/4.2.192.107.table | 2 - .../grib2/tables/9/4.2.192.108.table | 2 - .../grib2/tables/9/4.2.192.109.table | 2 - .../grib2/tables/9/4.2.192.11.table | 2 - .../grib2/tables/9/4.2.192.110.table | 2 - .../grib2/tables/9/4.2.192.111.table | 2 - .../grib2/tables/9/4.2.192.112.table | 2 - .../grib2/tables/9/4.2.192.113.table | 2 - .../grib2/tables/9/4.2.192.114.table | 2 - .../grib2/tables/9/4.2.192.115.table | 2 - .../grib2/tables/9/4.2.192.116.table | 2 - .../grib2/tables/9/4.2.192.117.table | 2 - .../grib2/tables/9/4.2.192.118.table | 2 - .../grib2/tables/9/4.2.192.119.table | 2 - .../grib2/tables/9/4.2.192.12.table | 2 - .../grib2/tables/9/4.2.192.120.table | 2 - .../grib2/tables/9/4.2.192.121.table | 2 - .../grib2/tables/9/4.2.192.122.table | 2 - .../grib2/tables/9/4.2.192.123.table | 2 - .../grib2/tables/9/4.2.192.124.table | 2 - .../grib2/tables/9/4.2.192.125.table | 2 - .../grib2/tables/9/4.2.192.126.table | 2 - .../grib2/tables/9/4.2.192.127.table | 2 - .../grib2/tables/9/4.2.192.128.table | 2 - .../grib2/tables/9/4.2.192.129.table | 2 - .../grib2/tables/9/4.2.192.13.table | 2 - .../grib2/tables/9/4.2.192.130.table | 2 - .../grib2/tables/9/4.2.192.131.table | 2 - .../grib2/tables/9/4.2.192.132.table | 2 - .../grib2/tables/9/4.2.192.133.table | 2 - .../grib2/tables/9/4.2.192.134.table | 2 - .../grib2/tables/9/4.2.192.135.table | 2 - .../grib2/tables/9/4.2.192.136.table | 2 - .../grib2/tables/9/4.2.192.137.table | 2 - .../grib2/tables/9/4.2.192.138.table | 2 - .../grib2/tables/9/4.2.192.139.table | 2 - .../grib2/tables/9/4.2.192.14.table | 2 - .../grib2/tables/9/4.2.192.140.table | 2 - .../grib2/tables/9/4.2.192.141.table | 2 - .../grib2/tables/9/4.2.192.142.table | 2 - .../grib2/tables/9/4.2.192.143.table | 2 - .../grib2/tables/9/4.2.192.144.table | 2 - .../grib2/tables/9/4.2.192.145.table | 2 - .../grib2/tables/9/4.2.192.146.table | 2 - .../grib2/tables/9/4.2.192.147.table | 2 - .../grib2/tables/9/4.2.192.148.table | 2 - .../grib2/tables/9/4.2.192.149.table | 2 - .../grib2/tables/9/4.2.192.15.table | 2 - .../grib2/tables/9/4.2.192.150.table | 2 - .../grib2/tables/9/4.2.192.151.table | 2 - .../grib2/tables/9/4.2.192.152.table | 2 - .../grib2/tables/9/4.2.192.153.table | 2 - .../grib2/tables/9/4.2.192.154.table | 2 - .../grib2/tables/9/4.2.192.155.table | 2 - .../grib2/tables/9/4.2.192.156.table | 2 - .../grib2/tables/9/4.2.192.157.table | 2 - .../grib2/tables/9/4.2.192.158.table | 2 - .../grib2/tables/9/4.2.192.159.table | 2 - .../grib2/tables/9/4.2.192.16.table | 2 - .../grib2/tables/9/4.2.192.160.table | 2 - .../grib2/tables/9/4.2.192.161.table | 2 - .../grib2/tables/9/4.2.192.162.table | 2 - .../grib2/tables/9/4.2.192.163.table | 2 - .../grib2/tables/9/4.2.192.164.table | 2 - .../grib2/tables/9/4.2.192.165.table | 2 - .../grib2/tables/9/4.2.192.166.table | 2 - .../grib2/tables/9/4.2.192.167.table | 2 - .../grib2/tables/9/4.2.192.168.table | 2 - .../grib2/tables/9/4.2.192.169.table | 2 - .../grib2/tables/9/4.2.192.17.table | 2 - .../grib2/tables/9/4.2.192.170.table | 2 - .../grib2/tables/9/4.2.192.171.table | 2 - .../grib2/tables/9/4.2.192.172.table | 2 - .../grib2/tables/9/4.2.192.173.table | 2 - .../grib2/tables/9/4.2.192.174.table | 2 - .../grib2/tables/9/4.2.192.175.table | 2 - .../grib2/tables/9/4.2.192.176.table | 2 - .../grib2/tables/9/4.2.192.177.table | 2 - .../grib2/tables/9/4.2.192.178.table | 2 - .../grib2/tables/9/4.2.192.179.table | 2 - .../grib2/tables/9/4.2.192.18.table | 2 - .../grib2/tables/9/4.2.192.180.table | 2 - .../grib2/tables/9/4.2.192.181.table | 2 - .../grib2/tables/9/4.2.192.182.table | 2 - .../grib2/tables/9/4.2.192.183.table | 2 - .../grib2/tables/9/4.2.192.184.table | 2 - .../grib2/tables/9/4.2.192.185.table | 2 - .../grib2/tables/9/4.2.192.186.table | 2 - .../grib2/tables/9/4.2.192.187.table | 2 - .../grib2/tables/9/4.2.192.188.table | 2 - .../grib2/tables/9/4.2.192.189.table | 2 - .../grib2/tables/9/4.2.192.19.table | 2 - .../grib2/tables/9/4.2.192.190.table | 2 - .../grib2/tables/9/4.2.192.191.table | 2 - .../grib2/tables/9/4.2.192.192.table | 2 - .../grib2/tables/9/4.2.192.193.table | 2 - .../grib2/tables/9/4.2.192.194.table | 2 - .../grib2/tables/9/4.2.192.195.table | 2 - .../grib2/tables/9/4.2.192.196.table | 2 - .../grib2/tables/9/4.2.192.197.table | 2 - .../grib2/tables/9/4.2.192.198.table | 2 - .../grib2/tables/9/4.2.192.199.table | 2 - .../grib2/tables/9/4.2.192.2.table | 2 - .../grib2/tables/9/4.2.192.20.table | 2 - .../grib2/tables/9/4.2.192.200.table | 2 - .../grib2/tables/9/4.2.192.201.table | 2 - .../grib2/tables/9/4.2.192.202.table | 2 - .../grib2/tables/9/4.2.192.203.table | 2 - .../grib2/tables/9/4.2.192.204.table | 2 - .../grib2/tables/9/4.2.192.205.table | 2 - .../grib2/tables/9/4.2.192.206.table | 2 - .../grib2/tables/9/4.2.192.207.table | 2 - .../grib2/tables/9/4.2.192.208.table | 2 - .../grib2/tables/9/4.2.192.209.table | 2 - .../grib2/tables/9/4.2.192.21.table | 2 - .../grib2/tables/9/4.2.192.210.table | 2 - .../grib2/tables/9/4.2.192.211.table | 2 - .../grib2/tables/9/4.2.192.212.table | 2 - .../grib2/tables/9/4.2.192.213.table | 2 - .../grib2/tables/9/4.2.192.214.table | 2 - .../grib2/tables/9/4.2.192.215.table | 2 - .../grib2/tables/9/4.2.192.216.table | 2 - .../grib2/tables/9/4.2.192.217.table | 2 - .../grib2/tables/9/4.2.192.218.table | 2 - .../grib2/tables/9/4.2.192.219.table | 2 - .../grib2/tables/9/4.2.192.22.table | 2 - .../grib2/tables/9/4.2.192.220.table | 2 - .../grib2/tables/9/4.2.192.221.table | 2 - .../grib2/tables/9/4.2.192.222.table | 2 - .../grib2/tables/9/4.2.192.223.table | 2 - .../grib2/tables/9/4.2.192.224.table | 2 - .../grib2/tables/9/4.2.192.225.table | 2 - .../grib2/tables/9/4.2.192.226.table | 2 - .../grib2/tables/9/4.2.192.227.table | 2 - .../grib2/tables/9/4.2.192.228.table | 2 - .../grib2/tables/9/4.2.192.229.table | 2 - .../grib2/tables/9/4.2.192.23.table | 2 - .../grib2/tables/9/4.2.192.230.table | 2 - .../grib2/tables/9/4.2.192.231.table | 2 - .../grib2/tables/9/4.2.192.232.table | 2 - .../grib2/tables/9/4.2.192.233.table | 2 - .../grib2/tables/9/4.2.192.234.table | 2 - .../grib2/tables/9/4.2.192.235.table | 2 - .../grib2/tables/9/4.2.192.236.table | 2 - .../grib2/tables/9/4.2.192.237.table | 2 - .../grib2/tables/9/4.2.192.238.table | 2 - .../grib2/tables/9/4.2.192.239.table | 2 - .../grib2/tables/9/4.2.192.24.table | 2 - .../grib2/tables/9/4.2.192.240.table | 2 - .../grib2/tables/9/4.2.192.241.table | 2 - .../grib2/tables/9/4.2.192.242.table | 2 - .../grib2/tables/9/4.2.192.243.table | 2 - .../grib2/tables/9/4.2.192.244.table | 2 - .../grib2/tables/9/4.2.192.245.table | 2 - .../grib2/tables/9/4.2.192.246.table | 2 - .../grib2/tables/9/4.2.192.247.table | 2 - .../grib2/tables/9/4.2.192.248.table | 2 - .../grib2/tables/9/4.2.192.249.table | 2 - .../grib2/tables/9/4.2.192.25.table | 2 - .../grib2/tables/9/4.2.192.250.table | 2 - .../grib2/tables/9/4.2.192.251.table | 2 - .../grib2/tables/9/4.2.192.252.table | 2 - .../grib2/tables/9/4.2.192.253.table | 2 - .../grib2/tables/9/4.2.192.254.table | 2 - .../grib2/tables/9/4.2.192.255.table | 2 - .../grib2/tables/9/4.2.192.26.table | 2 - .../grib2/tables/9/4.2.192.27.table | 2 - .../grib2/tables/9/4.2.192.28.table | 2 - .../grib2/tables/9/4.2.192.29.table | 2 - .../grib2/tables/9/4.2.192.3.table | 2 - .../grib2/tables/9/4.2.192.30.table | 2 - .../grib2/tables/9/4.2.192.31.table | 2 - .../grib2/tables/9/4.2.192.32.table | 2 - .../grib2/tables/9/4.2.192.33.table | 2 - .../grib2/tables/9/4.2.192.34.table | 2 - .../grib2/tables/9/4.2.192.35.table | 2 - .../grib2/tables/9/4.2.192.36.table | 2 - .../grib2/tables/9/4.2.192.37.table | 2 - .../grib2/tables/9/4.2.192.38.table | 2 - .../grib2/tables/9/4.2.192.39.table | 2 - .../grib2/tables/9/4.2.192.4.table | 2 - .../grib2/tables/9/4.2.192.40.table | 2 - .../grib2/tables/9/4.2.192.41.table | 2 - .../grib2/tables/9/4.2.192.42.table | 2 - .../grib2/tables/9/4.2.192.43.table | 2 - .../grib2/tables/9/4.2.192.44.table | 2 - .../grib2/tables/9/4.2.192.45.table | 2 - .../grib2/tables/9/4.2.192.46.table | 2 - .../grib2/tables/9/4.2.192.47.table | 2 - .../grib2/tables/9/4.2.192.48.table | 2 - .../grib2/tables/9/4.2.192.49.table | 2 - .../grib2/tables/9/4.2.192.5.table | 2 - .../grib2/tables/9/4.2.192.50.table | 2 - .../grib2/tables/9/4.2.192.51.table | 2 - .../grib2/tables/9/4.2.192.52.table | 2 - .../grib2/tables/9/4.2.192.53.table | 2 - .../grib2/tables/9/4.2.192.54.table | 2 - .../grib2/tables/9/4.2.192.55.table | 2 - .../grib2/tables/9/4.2.192.56.table | 2 - .../grib2/tables/9/4.2.192.57.table | 2 - .../grib2/tables/9/4.2.192.58.table | 2 - .../grib2/tables/9/4.2.192.59.table | 2 - .../grib2/tables/9/4.2.192.6.table | 2 - .../grib2/tables/9/4.2.192.60.table | 2 - .../grib2/tables/9/4.2.192.61.table | 2 - .../grib2/tables/9/4.2.192.62.table | 2 - .../grib2/tables/9/4.2.192.63.table | 2 - .../grib2/tables/9/4.2.192.64.table | 2 - .../grib2/tables/9/4.2.192.65.table | 2 - .../grib2/tables/9/4.2.192.66.table | 2 - .../grib2/tables/9/4.2.192.67.table | 2 - .../grib2/tables/9/4.2.192.68.table | 2 - .../grib2/tables/9/4.2.192.69.table | 2 - .../grib2/tables/9/4.2.192.7.table | 2 - .../grib2/tables/9/4.2.192.70.table | 2 - .../grib2/tables/9/4.2.192.71.table | 2 - .../grib2/tables/9/4.2.192.72.table | 2 - .../grib2/tables/9/4.2.192.73.table | 2 - .../grib2/tables/9/4.2.192.74.table | 2 - .../grib2/tables/9/4.2.192.75.table | 2 - .../grib2/tables/9/4.2.192.76.table | 2 - .../grib2/tables/9/4.2.192.77.table | 2 - .../grib2/tables/9/4.2.192.78.table | 2 - .../grib2/tables/9/4.2.192.79.table | 2 - .../grib2/tables/9/4.2.192.8.table | 2 - .../grib2/tables/9/4.2.192.80.table | 2 - .../grib2/tables/9/4.2.192.81.table | 2 - .../grib2/tables/9/4.2.192.82.table | 2 - .../grib2/tables/9/4.2.192.83.table | 2 - .../grib2/tables/9/4.2.192.84.table | 2 - .../grib2/tables/9/4.2.192.85.table | 2 - .../grib2/tables/9/4.2.192.86.table | 2 - .../grib2/tables/9/4.2.192.87.table | 2 - .../grib2/tables/9/4.2.192.88.table | 2 - .../grib2/tables/9/4.2.192.89.table | 2 - .../grib2/tables/9/4.2.192.9.table | 2 - .../grib2/tables/9/4.2.192.90.table | 2 - .../grib2/tables/9/4.2.192.91.table | 2 - .../grib2/tables/9/4.2.192.92.table | 2 - .../grib2/tables/9/4.2.192.93.table | 2 - .../grib2/tables/9/4.2.192.94.table | 2 - .../grib2/tables/9/4.2.192.95.table | 2 - .../grib2/tables/9/4.2.192.96.table | 2 - .../grib2/tables/9/4.2.192.97.table | 2 - .../grib2/tables/9/4.2.192.98.table | 2 - .../grib2/tables/9/4.2.192.99.table | 2 - .../grib2/tables/9/4.2.2.0.table | 37 - .../grib2/tables/9/4.2.2.3.table | 27 - .../grib2/tables/9/4.2.2.4.table | 7 - .../grib2/tables/9/4.2.3.0.table | 14 - .../grib2/tables/9/4.2.3.1.table | 28 - .../grib2/tables/9/4.201.table | 10 - .../grib2/tables/9/4.202.table | 4 - .../grib2/tables/9/4.203.table | 25 - .../grib2/tables/9/4.204.table | 9 - .../grib2/tables/9/4.205.table | 6 - .../grib2/tables/9/4.206.table | 6 - .../grib2/tables/9/4.207.table | 10 - .../grib2/tables/9/4.208.table | 9 - .../grib2/tables/9/4.209.table | 9 - .../grib2/tables/9/4.210.table | 6 - .../grib2/tables/9/4.211.table | 7 - .../grib2/tables/9/4.212.table | 18 - .../grib2/tables/9/4.213.table | 21 - .../grib2/tables/9/4.215.table | 9 - .../grib2/tables/9/4.216.table | 5 - .../grib2/tables/9/4.217.table | 8 - .../grib2/tables/9/4.218.table | 38 - .../grib2/tables/9/4.219.table | 8 - .../grib2/tables/9/4.220.table | 6 - .../grib2/tables/9/4.221.table | 6 - .../grib2/tables/9/4.222.table | 6 - .../grib2/tables/9/4.223.table | 5 - .../grib2/tables/9/4.224.table | 18 - .../grib2/tables/9/4.227.table | 10 - .../grib2/tables/9/4.230.table | 415 - .../grib2/tables/9/4.233.table | 3 - .../grib2/tables/9/4.234.table | 21 - .../grib2/tables/9/4.235.table | 8 - .../definitions.save/grib2/tables/9/4.3.table | 16 - .../definitions.save/grib2/tables/9/4.4.table | 17 - .../definitions.save/grib2/tables/9/4.5.table | 48 - .../definitions.save/grib2/tables/9/4.6.table | 9 - .../definitions.save/grib2/tables/9/4.7.table | 14 - .../definitions.save/grib2/tables/9/4.8.table | 6 - .../definitions.save/grib2/tables/9/4.9.table | 9 - .../grib2/tables/9/4.91.table | 16 - .../definitions.save/grib2/tables/9/5.0.table | 24 - .../definitions.save/grib2/tables/9/5.1.table | 6 - .../definitions.save/grib2/tables/9/5.2.table | 8 - .../definitions.save/grib2/tables/9/5.3.table | 7 - .../definitions.save/grib2/tables/9/5.4.table | 6 - .../grib2/tables/9/5.40.table | 5 - .../grib2/tables/9/5.40000.table | 5 - .../definitions.save/grib2/tables/9/5.5.table | 7 - .../grib2/tables/9/5.50002.table | 19 - .../definitions.save/grib2/tables/9/5.6.table | 7 - .../definitions.save/grib2/tables/9/5.7.table | 7 - .../definitions.save/grib2/tables/9/5.8.table | 3 - .../definitions.save/grib2/tables/9/5.9.table | 4 - .../definitions.save/grib2/tables/9/6.0.table | 6 - .../grib2/tables/9/stepType.table | 2 - .../grib2/tables/local/ecmf/1.1.table | 6 - .../grib2/tables/local/ecmf/1/4.2.0.20.table | 3 - .../grib2/tables/local/ecmf/1/4.2.2.0.table | 10 - .../grib2/tables/local/ecmf/1/4.230.table | 4 - .../grib2/tables/local/ecmf/1/4.233.table | 3 - .../grib2/tables/local/ecmf/4/1.2.table | 4 - .../grib2/tables/local/ecmf/obstat.1.0.table | 2 - .../grib2/tables/local/ecmf/obstat.10.0.table | 42 - .../grib2/tables/local/ecmf/obstat.11.0.table | 4 - .../grib2/tables/local/ecmf/obstat.2.0.table | 13 - .../grib2/tables/local/ecmf/obstat.3.0.table | 52 - .../grib2/tables/local/ecmf/obstat.4.0.table | 82 - .../grib2/tables/local/ecmf/obstat.5.0.table | 53 - .../grib2/tables/local/ecmf/obstat.6.0.table | 6 - .../grib2/tables/local/ecmf/obstat.7.0.table | 6 - .../grib2/tables/local/ecmf/obstat.8.0.table | 6 - .../grib2/tables/local/ecmf/obstat.9.0.table | 52 - .../tables/local/ecmf/obstat.reporttype.table | 185 - .../tables/local/ecmf/obstat.varno.table | 31 - .../grib2/tables/local/edzw/1.1.table | 5 - .../grib2/tables/local/edzw/1/1.4.table | 2 - .../grib2/tables/local/edzw/1/4.0.table | 10 - .../grib2/tables/local/edzw/1/4.1.0.table | 12 - .../grib2/tables/local/edzw/1/4.11.table | 4 - .../grib2/tables/local/edzw/1/4.2.0.0.table | 5 - .../grib2/tables/local/edzw/1/4.2.0.1.table | 46 - .../grib2/tables/local/edzw/1/4.2.0.13.table | 6 - .../grib2/tables/local/edzw/1/4.2.0.14.table | 3 - .../grib2/tables/local/edzw/1/4.2.0.15.table | 8 - .../grib2/tables/local/edzw/1/4.2.0.16.table | 7 - .../grib2/tables/local/edzw/1/4.2.0.17.table | 2 - .../grib2/tables/local/edzw/1/4.2.0.18.table | 2 - .../grib2/tables/local/edzw/1/4.2.0.19.table | 39 - .../grib2/tables/local/edzw/1/4.2.0.191.table | 11 - .../grib2/tables/local/edzw/1/4.2.0.192.table | 5 - .../grib2/tables/local/edzw/1/4.2.0.193.table | 31 - .../grib2/tables/local/edzw/1/4.2.0.194.table | 4 - .../grib2/tables/local/edzw/1/4.2.0.195.table | 29 - .../grib2/tables/local/edzw/1/4.2.0.196.table | 15 - .../grib2/tables/local/edzw/1/4.2.0.197.table | 9 - .../grib2/tables/local/edzw/1/4.2.0.198.table | 4 - .../grib2/tables/local/edzw/1/4.2.0.199.table | 5 - .../grib2/tables/local/edzw/1/4.2.0.2.table | 21 - .../grib2/tables/local/edzw/1/4.2.0.20.table | 19 - .../grib2/tables/local/edzw/1/4.2.0.254.table | 255 - .../grib2/tables/local/edzw/1/4.2.0.3.table | 7 - .../grib2/tables/local/edzw/1/4.2.0.4.table | 9 - .../grib2/tables/local/edzw/1/4.2.0.5.table | 2 - .../grib2/tables/local/edzw/1/4.2.0.6.table | 15 - .../grib2/tables/local/edzw/1/4.2.0.7.table | 5 - .../grib2/tables/local/edzw/1/4.2.1.0.table | 2 - .../grib2/tables/local/edzw/1/4.2.10.0.table | 11 - .../grib2/tables/local/edzw/1/4.2.10.3.table | 2 - .../grib2/tables/local/edzw/1/4.2.2.0.table | 9 - .../grib2/tables/local/edzw/1/4.2.2.3.table | 10 - .../tables/local/edzw/1/4.2.215.19.table | 2 - .../grib2/tables/local/edzw/1/4.2.215.2.table | 14 - .../grib2/tables/local/edzw/1/4.2.215.5.table | 4 - .../grib2/tables/local/edzw/1/4.2.215.7.table | 4 - .../grib2/tables/local/edzw/1/4.2.3.0.table | 2 - .../grib2/tables/local/edzw/1/4.2.3.1.table | 2 - .../grib2/tables/local/edzw/1/4.3.table | 17 - .../grib2/tables/local/edzw/1/4.5.table | 14 - .../grib2/tables/local/edzw/1/4.6.table | 3 - .../grib2/tables/local/edzw/1/4.7.table | 64 - .../grib2/tables/local/edzw/1/4.9.table | 64 - .../local/edzw/1/backgroundProcess.table | 42 - .../edzw/1/generatingProcessIdentifier.table | 113 - .../grib2/tables/local/kwbc/1/4.5.table | 89 - .../definitions.save/grib2/template.1.0.def | 5 - .../definitions.save/grib2/template.1.1.def | 5 - .../definitions.save/grib2/template.1.2.def | 6 - .../grib2/template.1.calendar.def | 4 - .../grib2/template.1.offset.def | 5 - .../definitions.save/grib2/template.3.0.def | 6 - .../definitions.save/grib2/template.3.1.def | 7 - .../definitions.save/grib2/template.3.10.def | 85 - .../definitions.save/grib2/template.3.100.def | 43 - .../grib2/template.3.1000.def | 55 - .../definitions.save/grib2/template.3.101.def | 14 - .../definitions.save/grib2/template.3.110.def | 35 - .../grib2/template.3.1100.def | 75 - .../definitions.save/grib2/template.3.12.def | 71 - .../definitions.save/grib2/template.3.120.def | 44 - .../grib2/template.3.1200.def | 57 - .../definitions.save/grib2/template.3.13.def | 5 - .../definitions.save/grib2/template.3.130.def | 10 - .../definitions.save/grib2/template.3.140.def | 70 - .../definitions.save/grib2/template.3.2.def | 7 - .../definitions.save/grib2/template.3.20.def | 83 - .../definitions.save/grib2/template.3.23.def | 5 - .../definitions.save/grib2/template.3.3.def | 9 - .../definitions.save/grib2/template.3.30.def | 96 - .../definitions.save/grib2/template.3.31.def | 62 - .../grib2/template.3.32769.def | 5 - .../definitions.save/grib2/template.3.33.def | 5 - .../definitions.save/grib2/template.3.4.def | 6 - .../definitions.save/grib2/template.3.40.def | 6 - .../definitions.save/grib2/template.3.41.def | 7 - .../definitions.save/grib2/template.3.42.def | 7 - .../definitions.save/grib2/template.3.43.def | 8 - .../definitions.save/grib2/template.3.5.def | 7 - .../definitions.save/grib2/template.3.50.def | 5 - .../definitions.save/grib2/template.3.51.def | 6 - .../definitions.save/grib2/template.3.52.def | 6 - .../definitions.save/grib2/template.3.53.def | 7 - .../definitions.save/grib2/template.3.61.def | 43 - .../definitions.save/grib2/template.3.62.def | 45 - .../definitions.save/grib2/template.3.63.def | 57 - .../definitions.save/grib2/template.3.90.def | 90 - .../definitions.save/grib2/template.3.bf.def | 31 - .../grib2/template.3.gaussian.def | 91 - .../grib2/template.3.grid.def | 58 - .../definitions.save/grib2/template.3.lam.def | 12 - .../grib2/template.3.latlon.def | 77 - .../grib2/template.3.latlon_vares.def | 47 - .../grib2/template.3.resolution_flags.def | 38 - .../grib2/template.3.rotation.def | 21 - .../grib2/template.3.scanning_mode.def | 38 - .../grib2/template.3.shape_of_the_earth.def | 106 - .../grib2/template.3.spherical_harmonics.def | 28 - .../grib2/template.3.stretching.def | 19 - .../definitions.save/grib2/template.4.0.def | 7 - .../definitions.save/grib2/template.4.1.def | 8 - .../definitions.save/grib2/template.4.10.def | 8 - .../grib2/template.4.1000.def | 6 - .../grib2/template.4.1001.def | 6 - .../grib2/template.4.1002.def | 24 - .../definitions.save/grib2/template.4.11.def | 8 - .../grib2/template.4.1100.def | 6 - .../grib2/template.4.1101.def | 7 - .../definitions.save/grib2/template.4.12.def | 8 - .../definitions.save/grib2/template.4.13.def | 14 - .../definitions.save/grib2/template.4.14.def | 13 - .../definitions.save/grib2/template.4.15.def | 11 - .../definitions.save/grib2/template.4.2.def | 8 - .../definitions.save/grib2/template.4.20.def | 64 - .../grib2/template.4.2000.def | 4 - .../definitions.save/grib2/template.4.254.def | 14 - .../definitions.save/grib2/template.4.3.def | 13 - .../definitions.save/grib2/template.4.30.def | 27 - .../definitions.save/grib2/template.4.31.def | 27 - .../definitions.save/grib2/template.4.311.def | 28 - .../definitions.save/grib2/template.4.32.def | 25 - .../definitions.save/grib2/template.4.33.def | 10 - .../definitions.save/grib2/template.4.34.def | 11 - .../definitions.save/grib2/template.4.35.def | 30 - .../definitions.save/grib2/template.4.4.def | 13 - .../definitions.save/grib2/template.4.40.def | 7 - .../grib2/template.4.40033.def | 6 - .../grib2/template.4.40034.def | 6 - .../definitions.save/grib2/template.4.41.def | 8 - .../definitions.save/grib2/template.4.42.def | 7 - .../definitions.save/grib2/template.4.43.def | 8 - .../definitions.save/grib2/template.4.44.def | 11 - .../definitions.save/grib2/template.4.45.def | 8 - .../definitions.save/grib2/template.4.46.def | 7 - .../definitions.save/grib2/template.4.47.def | 9 - .../definitions.save/grib2/template.4.48.def | 7 - .../definitions.save/grib2/template.4.49.def | 8 - .../definitions.save/grib2/template.4.5.def | 8 - .../definitions.save/grib2/template.4.51.def | 8 - .../definitions.save/grib2/template.4.53.def | 10 - .../definitions.save/grib2/template.4.54.def | 10 - .../definitions.save/grib2/template.4.55.def | 7 - .../definitions.save/grib2/template.4.56.def | 18 - .../definitions.save/grib2/template.4.57.def | 7 - .../definitions.save/grib2/template.4.58.def | 8 - .../definitions.save/grib2/template.4.59.def | 10 - .../definitions.save/grib2/template.4.6.def | 8 - .../definitions.save/grib2/template.4.60.def | 9 - .../definitions.save/grib2/template.4.61.def | 9 - .../definitions.save/grib2/template.4.67.def | 7 - .../definitions.save/grib2/template.4.68.def | 8 - .../definitions.save/grib2/template.4.7.def | 2 - .../definitions.save/grib2/template.4.70.def | 7 - .../definitions.save/grib2/template.4.71.def | 8 - .../definitions.save/grib2/template.4.72.def | 7 - .../definitions.save/grib2/template.4.73.def | 8 - .../definitions.save/grib2/template.4.76.def | 6 - .../definitions.save/grib2/template.4.77.def | 7 - .../definitions.save/grib2/template.4.78.def | 6 - .../definitions.save/grib2/template.4.79.def | 7 - .../definitions.save/grib2/template.4.8.def | 7 - .../definitions.save/grib2/template.4.80.def | 14 - .../definitions.save/grib2/template.4.81.def | 15 - .../definitions.save/grib2/template.4.82.def | 14 - .../definitions.save/grib2/template.4.83.def | 9 - .../definitions.save/grib2/template.4.84.def | 7 - .../definitions.save/grib2/template.4.85.def | 7 - .../definitions.save/grib2/template.4.9.def | 8 - .../definitions.save/grib2/template.4.91.def | 8 - .../grib2/template.4.categorical.def | 21 - .../grib2/template.4.circular_cluster.def | 47 - .../grib2/template.4.derived.def | 8 - .../definitions.save/grib2/template.4.eps.def | 25 - .../grib2/template.4.horizontal.def | 89 - .../grib2/template.4.parameter.def | 38 - .../grib2/template.4.parameter_aerosol.def | 47 - .../grib2/template.4.parameter_aerosol_44.def | 66 - .../template.4.parameter_aerosol_optical.def | 57 - ...ate.4.parameter_aerosol_optical_source.def | 60 - .../template.4.parameter_aerosol_source.def | 50 - .../grib2/template.4.parameter_chemical.def | 40 - ...late.4.parameter_chemical_distribution.def | 59 - .../template.4.parameter_chemical_source.def | 43 - .../grib2/template.4.parameter_partition.def | 44 - .../grib2/template.4.parameter_postproc.def | 46 - .../grib2/template.4.parameter_tile.def | 51 - .../grib2/template.4.percentile.def | 5 - .../grib2/template.4.point_in_time.def | 31 - .../grib2/template.4.probability.def | 30 - .../grib2/template.4.rectangular_cluster.def | 50 - .../grib2/template.4.reforecast.def | 14 - .../grib2/template.4.statistical.def | 123 - .../definitions.save/grib2/template.5.0.def | 7 - .../definitions.save/grib2/template.5.1.def | 77 - .../definitions.save/grib2/template.5.2.def | 44 - .../definitions.save/grib2/template.5.3.def | 51 - .../definitions.save/grib2/template.5.4.def | 12 - .../definitions.save/grib2/template.5.40.def | 15 - .../grib2/template.5.40000.def | 3 - .../grib2/template.5.40010.def | 3 - .../definitions.save/grib2/template.5.41.def | 6 - .../definitions.save/grib2/template.5.42.def | 25 - .../definitions.save/grib2/template.5.50.def | 7 - .../grib2/template.5.50000.def | 35 - .../grib2/template.5.50001.def | 27 - .../grib2/template.5.50002.def | 29 - .../definitions.save/grib2/template.5.51.def | 36 - .../definitions.save/grib2/template.5.53.def | 26 - .../definitions.save/grib2/template.5.6.def | 8 - .../definitions.save/grib2/template.5.61.def | 8 - .../grib2/template.5.original_values.def | 4 - .../grib2/template.5.packing.def | 23 - .../grib2/template.5.second_order.def | 21 - .../definitions.save/grib2/template.7.0.def | 34 - .../definitions.save/grib2/template.7.1.def | 35 - .../definitions.save/grib2/template.7.2.def | 49 - .../definitions.save/grib2/template.7.3.def | 47 - .../definitions.save/grib2/template.7.4.def | 25 - .../definitions.save/grib2/template.7.40.def | 51 - .../grib2/template.7.40000.def | 3 - .../grib2/template.7.40010.def | 3 - .../definitions.save/grib2/template.7.41.def | 32 - .../definitions.save/grib2/template.7.42.def | 35 - .../definitions.save/grib2/template.7.50.def | 40 - .../grib2/template.7.50000.def | 109 - .../grib2/template.7.50001.def | 100 - .../grib2/template.7.50002.def | 148 - .../definitions.save/grib2/template.7.51.def | 114 - .../definitions.save/grib2/template.7.53.def | 47 - .../definitions.save/grib2/template.7.6.def | 32 - .../definitions.save/grib2/template.7.61.def | 32 - .../grib2/template.7.second_order.def | 56 - .../grib2/template.second_order.def | 1 - .../grib2/tiggeLocalVersion.table | 1 - eccodes/definitions.save/grib2/tigge_name.def | 45 - .../grib2/tigge_parameter.def | 395 - .../grib2/tigge_short_name.def | 44 - .../grib2/tigge_suiteName.table | 12 - .../grib2/typeOfLevelConcept.def | 49 - .../grib2/typeOfUnstructuredGridConcept.def | 5 - eccodes/definitions.save/grib2/units.def | 4140 --- .../grib2/unstructuredGridConcept.def | 5 - .../grib2/unstructuredGridSubtype.def | 1 - .../grib2/unstructuredGridType.def | 1 - .../grib2/unstructuredGridUUID.def | 1 - eccodes/definitions.save/grib3/boot.def | 31 - eccodes/definitions.save/grib3/centre.table | 150 - eccodes/definitions.save/grib3/cfName.def | 162 - eccodes/definitions.save/grib3/cfVarName.def | 3009 --- .../definitions.save/grib3/dimension.0.table | 1 - .../grib3/dimensionTableNumber.table | 1 - .../grib3/dimensionType.table | 2 - .../grib3/grib2LocalSectionNumber.82.table | 4 - .../grib3/grib2LocalSectionNumber.85.table | 3 - .../grib3/grib2LocalSectionNumber.98.table | 21 - eccodes/definitions.save/grib3/local.82.0.def | 28 - .../definitions.save/grib3/local.82.82.def | 16 - .../definitions.save/grib3/local.82.83.def | 22 - eccodes/definitions.save/grib3/local.82.def | 22 - eccodes/definitions.save/grib3/local.85.0.def | 1 - eccodes/definitions.save/grib3/local.85.1.def | 29 - eccodes/definitions.save/grib3/local.85.2.def | 5 - eccodes/definitions.save/grib3/local.85.def | 3 - eccodes/definitions.save/grib3/local.98.0.def | 3 - eccodes/definitions.save/grib3/local.98.1.def | 3 - .../definitions.save/grib3/local.98.11.def | 28 - .../definitions.save/grib3/local.98.14.def | 13 - .../definitions.save/grib3/local.98.15.def | 18 - .../definitions.save/grib3/local.98.16.def | 16 - .../definitions.save/grib3/local.98.18.def | 26 - .../definitions.save/grib3/local.98.192.def | 20 - .../definitions.save/grib3/local.98.20.def | 20 - .../definitions.save/grib3/local.98.21.def | 42 - .../definitions.save/grib3/local.98.24.def | 11 - .../definitions.save/grib3/local.98.25.def | 19 - .../definitions.save/grib3/local.98.26.def | 18 - .../definitions.save/grib3/local.98.28.def | 16 - .../definitions.save/grib3/local.98.30.def | 28 - .../definitions.save/grib3/local.98.300.def | 22 - .../definitions.save/grib3/local.98.36.def | 17 - .../definitions.save/grib3/local.98.38.def | 28 - .../definitions.save/grib3/local.98.39.def | 26 - .../definitions.save/grib3/local.98.500.def | 53 - eccodes/definitions.save/grib3/local.98.7.def | 24 - eccodes/definitions.save/grib3/local.98.9.def | 47 - eccodes/definitions.save/grib3/local.98.def | 33 - .../definitions.save/grib3/local.tigge.1.def | 5 - .../grib3/local/1098/2.1.table | 1 - .../grib3/local/1098/centres.table | 12 - .../grib3/local/1098/models.table | 13 - .../grib3/local/1098/template.2.0.def | 19 - .../grib3/local/1098/template.2.0.def~ | 19 - .../definitions.save/grib3/local/2.0.table | 96 - .../grib3/local/edzw/2.0.3.table | 130 - .../definitions.save/grib3/local/edzw/3.table | 51 - .../definitions.save/grib3/local/edzw/5.table | 24 - .../edzw/generatingProcessIdentifier.table | 86 - .../grib3/localConcepts/ecmf/cfName.def | 147 - .../grib3/localConcepts/ecmf/cfVarName.def | 17509 ------------ .../grib3/localConcepts/ecmf/name.def | 17509 ------------ .../grib3/localConcepts/ecmf/paramId.def | 17509 ------------ .../grib3/localConcepts/ecmf/shortName.def | 17509 ------------ .../grib3/localConcepts/ecmf/units.def | 17509 ------------ eccodes/definitions.save/grib3/ls.def | 2 - .../definitions.save/grib3/ls_labeling.82.def | 23 - .../grib3/mars_labeling.82.def | 48 - .../definitions.save/grib3/mars_labeling.def | 52 - eccodes/definitions.save/grib3/meta.def | 12 - eccodes/definitions.save/grib3/modelName.def | 43 - eccodes/definitions.save/grib3/name.def | 3009 --- eccodes/definitions.save/grib3/paramId.def | 3009 --- eccodes/definitions.save/grib3/parameters.def | 38 - eccodes/definitions.save/grib3/products_0.def | 18 - eccodes/definitions.save/grib3/products_1.def | 20 - eccodes/definitions.save/grib3/products_2.def | 19 - eccodes/definitions.save/grib3/products_3.def | 19 - eccodes/definitions.save/grib3/products_4.def | 12 - eccodes/definitions.save/grib3/products_5.def | 12 - eccodes/definitions.save/grib3/products_6.def | 12 - eccodes/definitions.save/grib3/products_7.def | 12 - eccodes/definitions.save/grib3/products_8.def | 12 - eccodes/definitions.save/grib3/products_9.def | 12 - .../definitions.save/grib3/products_s2s.def | 106 - .../definitions.save/grib3/products_tigge.def | 102 - .../definitions.save/grib3/products_uerra.def | 92 - eccodes/definitions.save/grib3/rules.def | 19 - eccodes/definitions.save/grib3/section.00.def | 26 - eccodes/definitions.save/grib3/section.01.def | 103 - eccodes/definitions.save/grib3/section.02.def | 65 - eccodes/definitions.save/grib3/section.03.def | 45 - eccodes/definitions.save/grib3/section.04.def | 33 - eccodes/definitions.save/grib3/section.05.def | 22 - eccodes/definitions.save/grib3/section.06.def | 22 - eccodes/definitions.save/grib3/section.07.def | 22 - eccodes/definitions.save/grib3/section.08.def | 27 - eccodes/definitions.save/grib3/section.09.def | 24 - eccodes/definitions.save/grib3/section.10.def | 35 - eccodes/definitions.save/grib3/section.11.def | 13 - eccodes/definitions.save/grib3/sections.def | 77 - eccodes/definitions.save/grib3/shortName.def | 3009 --- .../definitions.save/grib3/tables/0.0.table | 5 - .../definitions.save/grib3/tables/0/0.0.table | 10 - .../definitions.save/grib3/tables/0/1.0.table | 7 - .../definitions.save/grib3/tables/0/1.1.table | 5 - .../definitions.save/grib3/tables/0/1.2.table | 8 - .../definitions.save/grib3/tables/0/1.3.table | 10 - .../definitions.save/grib3/tables/0/1.4.table | 13 - .../definitions.save/grib3/tables/0/3.0.table | 6 - .../definitions.save/grib3/tables/0/3.1.table | 43 - .../grib3/tables/0/3.10.table | 7 - .../grib3/tables/0/3.11.table | 5 - .../grib3/tables/0/3.15.table | 25 - .../definitions.save/grib3/tables/0/3.2.table | 11 - .../grib3/tables/0/3.20.table | 6 - .../grib3/tables/0/3.21.table | 8 - .../definitions.save/grib3/tables/0/3.3.table | 7 - .../definitions.save/grib3/tables/0/3.4.table | 9 - .../definitions.save/grib3/tables/0/3.5.table | 5 - .../definitions.save/grib3/tables/0/3.6.table | 2 - .../definitions.save/grib3/tables/0/3.7.table | 11 - .../definitions.save/grib3/tables/0/3.8.table | 8 - .../definitions.save/grib3/tables/0/3.9.table | 3 - .../definitions.save/grib3/tables/0/4.0.table | 38 - .../grib3/tables/0/4.1.0.table | 30 - .../grib3/tables/0/4.1.1.table | 9 - .../grib3/tables/0/4.1.10.table | 12 - .../grib3/tables/0/4.1.2.table | 11 - .../grib3/tables/0/4.1.3.table | 9 - .../definitions.save/grib3/tables/0/4.1.table | 5 - .../grib3/tables/0/4.10.table | 14 - .../grib3/tables/0/4.11.table | 9 - .../grib3/tables/0/4.12.table | 69 - .../grib3/tables/0/4.13.table | 68 - .../grib3/tables/0/4.14.table | 68 - .../grib3/tables/0/4.15.table | 68 - .../grib3/tables/0/4.151.table | 70 - .../grib3/tables/0/4.2.0.0.table | 23 - .../grib3/tables/0/4.2.0.1.table | 66 - .../grib3/tables/0/4.2.0.13.table | 6 - .../grib3/tables/0/4.2.0.14.table | 7 - .../grib3/tables/0/4.2.0.15.table | 14 - .../grib3/tables/0/4.2.0.18.table | 14 - .../grib3/tables/0/4.2.0.19.table | 24 - .../grib3/tables/0/4.2.0.190.table | 6 - .../grib3/tables/0/4.2.0.191.table | 6 - .../grib3/tables/0/4.2.0.2.table | 35 - .../grib3/tables/0/4.2.0.20.table | 26 - .../grib3/tables/0/4.2.0.3.table | 25 - .../grib3/tables/0/4.2.0.4.table | 14 - .../grib3/tables/0/4.2.0.5.table | 11 - .../grib3/tables/0/4.2.0.6.table | 30 - .../grib3/tables/0/4.2.0.7.table | 18 - .../grib3/tables/0/4.2.1.0.table | 16 - .../grib3/tables/0/4.2.1.1.table | 8 - .../grib3/tables/0/4.2.10.0.table | 20 - .../grib3/tables/0/4.2.10.1.table | 8 - .../grib3/tables/0/4.2.10.2.table | 12 - .../grib3/tables/0/4.2.10.3.table | 6 - .../grib3/tables/0/4.2.10.4.table | 9 - .../grib3/tables/0/4.2.2.0.table | 29 - .../grib3/tables/0/4.2.2.3.table | 16 - .../grib3/tables/0/4.2.3.0.table | 14 - .../grib3/tables/0/4.2.3.1.table | 11 - .../definitions.save/grib3/tables/0/4.2.table | 5 - .../grib3/tables/0/4.201.table | 71 - .../grib3/tables/0/4.202.table | 66 - .../grib3/tables/0/4.203.table | 88 - .../grib3/tables/0/4.204.table | 71 - .../grib3/tables/0/4.205.table | 68 - .../grib3/tables/0/4.206.table | 68 - .../grib3/tables/0/4.207.table | 70 - .../grib3/tables/0/4.208.table | 71 - .../grib3/tables/0/4.209.table | 70 - .../grib3/tables/0/4.210.table | 68 - .../grib3/tables/0/4.211.table | 69 - .../grib3/tables/0/4.212.table | 79 - .../grib3/tables/0/4.213.table | 77 - .../grib3/tables/0/4.215.table | 10 - .../grib3/tables/0/4.216.table | 95 - .../grib3/tables/0/4.217.table | 70 - .../grib3/tables/0/4.220.table | 68 - .../grib3/tables/0/4.221.table | 68 - .../grib3/tables/0/4.230.table | 117 - .../definitions.save/grib3/tables/0/4.3.table | 13 - .../definitions.save/grib3/tables/0/4.4.table | 16 - .../definitions.save/grib3/tables/0/4.5.table | 33 - .../definitions.save/grib3/tables/0/4.6.table | 8 - .../definitions.save/grib3/tables/0/4.7.table | 73 - .../definitions.save/grib3/tables/0/4.8.table | 68 - .../definitions.save/grib3/tables/0/4.9.table | 71 - .../grib3/tables/0/4.91.table | 78 - .../definitions.save/grib3/tables/0/5.0.table | 16 - .../definitions.save/grib3/tables/0/5.1.table | 5 - .../definitions.save/grib3/tables/0/5.2.table | 6 - .../definitions.save/grib3/tables/0/5.3.table | 6 - .../definitions.save/grib3/tables/0/5.4.table | 5 - .../grib3/tables/0/5.40.table | 5 - .../grib3/tables/0/5.40000.table | 5 - .../definitions.save/grib3/tables/0/5.5.table | 7 - .../definitions.save/grib3/tables/0/5.6.table | 68 - .../definitions.save/grib3/tables/0/5.7.table | 6 - .../definitions.save/grib3/tables/0/5.8.table | 3 - .../definitions.save/grib3/tables/0/5.9.table | 4 - .../definitions.save/grib3/tables/0/6.0.table | 7 - .../definitions.save/grib3/tables/1.0.table | 4 - .../definitions.save/grib3/tables/1/0.0.table | 10 - .../definitions.save/grib3/tables/1/1.0.table | 4 - .../definitions.save/grib3/tables/1/1.1.table | 7 - .../definitions.save/grib3/tables/1/1.2.table | 7 - .../definitions.save/grib3/tables/1/1.3.table | 10 - .../definitions.save/grib3/tables/1/1.4.table | 13 - .../definitions.save/grib3/tables/1/3.0.table | 8 - .../definitions.save/grib3/tables/1/3.1.table | 8 - .../grib3/tables/1/3.10.table | 7 - .../grib3/tables/1/3.11.table | 5 - .../grib3/tables/1/3.15.table | 25 - .../definitions.save/grib3/tables/1/3.2.table | 5 - .../grib3/tables/1/3.20.table | 6 - .../grib3/tables/1/3.21.table | 8 - .../definitions.save/grib3/tables/1/3.3.table | 17 - .../definitions.save/grib3/tables/1/3.4.table | 9 - .../definitions.save/grib3/tables/1/3.5.table | 5 - .../definitions.save/grib3/tables/1/3.6.table | 2 - .../definitions.save/grib3/tables/1/3.7.table | 11 - .../definitions.save/grib3/tables/1/3.8.table | 8 - .../definitions.save/grib3/tables/1/3.9.table | 3 - .../definitions.save/grib3/tables/1/4.0.table | 8 - .../definitions.save/grib3/tables/1/4.1.table | 9 - .../grib3/tables/1/4.10.table | 14 - .../grib3/tables/1/4.11.table | 9 - .../grib3/tables/1/4.12.table | 69 - .../grib3/tables/1/4.13.table | 68 - .../grib3/tables/1/4.14.table | 68 - .../grib3/tables/1/4.15.table | 68 - .../grib3/tables/1/4.151.table | 70 - .../grib3/tables/1/4.2.0.15.table | 14 - .../grib3/tables/1/4.2.0.18.table | 14 - .../grib3/tables/1/4.2.0.19.table | 24 - .../grib3/tables/1/4.2.0.190.table | 6 - .../grib3/tables/1/4.2.0.191.table | 6 - .../grib3/tables/1/4.2.0.2.table | 35 - .../grib3/tables/1/4.2.0.20.table | 13 - .../grib3/tables/1/4.2.0.3.table | 25 - .../grib3/tables/1/4.2.0.4.table | 14 - .../grib3/tables/1/4.2.0.5.table | 11 - .../grib3/tables/1/4.2.0.6.table | 30 - .../grib3/tables/1/4.2.0.7.table | 18 - .../grib3/tables/1/4.2.10.0.table | 20 - .../grib3/tables/1/4.2.10.1.table | 8 - .../grib3/tables/1/4.2.10.2.table | 12 - .../grib3/tables/1/4.2.10.3.table | 6 - .../grib3/tables/1/4.2.10.4.table | 9 - .../grib3/tables/1/4.2.2.0.table | 29 - .../grib3/tables/1/4.2.2.3.table | 16 - .../grib3/tables/1/4.2.3.0.table | 14 - .../grib3/tables/1/4.2.3.1.table | 11 - .../definitions.save/grib3/tables/1/4.2.table | 17 - .../grib3/tables/1/4.201.table | 71 - .../grib3/tables/1/4.202.table | 66 - .../grib3/tables/1/4.203.table | 88 - .../grib3/tables/1/4.204.table | 71 - .../grib3/tables/1/4.205.table | 68 - .../grib3/tables/1/4.206.table | 68 - .../grib3/tables/1/4.207.table | 70 - .../grib3/tables/1/4.208.table | 71 - .../grib3/tables/1/4.209.table | 70 - .../grib3/tables/1/4.210.table | 68 - .../grib3/tables/1/4.211.table | 69 - .../grib3/tables/1/4.212.table | 79 - .../grib3/tables/1/4.213.table | 77 - .../grib3/tables/1/4.215.table | 10 - .../grib3/tables/1/4.216.table | 95 - .../grib3/tables/1/4.217.table | 70 - .../grib3/tables/1/4.220.table | 68 - .../grib3/tables/1/4.221.table | 68 - .../grib3/tables/1/4.230.table | 47 - .../definitions.save/grib3/tables/1/4.3.table | 13 - .../definitions.save/grib3/tables/1/4.4.table | 16 - .../definitions.save/grib3/tables/1/4.5.table | 33 - .../definitions.save/grib3/tables/1/4.6.table | 8 - .../definitions.save/grib3/tables/1/4.7.table | 73 - .../definitions.save/grib3/tables/1/4.8.table | 68 - .../definitions.save/grib3/tables/1/4.9.table | 71 - .../grib3/tables/1/4.91.table | 78 - .../definitions.save/grib3/tables/1/5.0.table | 6 - .../definitions.save/grib3/tables/1/5.1.table | 72 - .../definitions.save/grib3/tables/1/5.2.table | 6 - .../definitions.save/grib3/tables/1/5.3.table | 6 - .../definitions.save/grib3/tables/1/5.4.table | 5 - .../grib3/tables/1/5.40.table | 5 - .../grib3/tables/1/5.40000.table | 5 - .../definitions.save/grib3/tables/1/5.5.table | 7 - .../definitions.save/grib3/tables/1/5.6.table | 68 - .../definitions.save/grib3/tables/1/5.7.table | 6 - .../definitions.save/grib3/tables/1/5.8.table | 3 - .../definitions.save/grib3/tables/1/5.9.table | 4 - .../definitions.save/grib3/tables/1/6.0.table | 7 - .../definitions.save/grib3/tables/1/6.1.table | 23 - .../definitions.save/grib3/tables/1/6.2.table | 9 - .../definitions.save/grib3/tables/1/6.3.table | 11 - .../definitions.save/grib3/tables/1/7.0.table | 9 - .../definitions.save/grib3/tables/1/7.1.table | 10 - .../grib3/tables/1/7.2.0.table | 28 - .../grib3/tables/1/7.2.1.table | 8 - .../grib3/tables/1/7.2.10.table | 11 - .../grib3/tables/1/7.2.2.table | 10 - .../grib3/tables/1/7.2.3.table | 11 - .../grib3/tables/1/7.3.0.0.table | 20 - .../grib3/tables/1/7.3.0.1.table | 10 - .../grib3/tables/1/7.3.0.13.table | 6 - .../grib3/tables/1/7.3.0.14.table | 8 - .../grib3/tables/1/7.3.0.15.table | 22 - .../grib3/tables/1/7.3.0.16.table | 11 - .../grib3/tables/1/7.3.0.17.table | 4 - .../grib3/tables/1/7.3.0.18.table | 24 - .../grib3/tables/1/7.3.0.19.table | 37 - .../grib3/tables/1/7.3.0.2.table | 12 - .../grib3/tables/1/7.3.0.20.table | 48 - .../grib3/tables/1/7.3.0.3.table | 16 - .../grib3/tables/1/7.3.0.4.table | 10 - .../grib3/tables/1/7.3.0.5.table | 13 - .../grib3/tables/1/7.3.0.6.table | 28 - .../grib3/tables/1/7.3.0.7.table | 25 - .../grib3/tables/1/7.3.1.0.table | 22 - .../grib3/tables/1/7.3.1.1.table | 8 - .../grib3/tables/1/7.3.1.2.table | 16 - .../grib3/tables/local/ecmf/4/1.2.table | 4 - .../grib3/tables/local/ecmf/obstat.1.0.table | 2 - .../grib3/tables/local/ecmf/obstat.10.0.table | 42 - .../grib3/tables/local/ecmf/obstat.11.0.table | 4 - .../grib3/tables/local/ecmf/obstat.2.0.table | 13 - .../grib3/tables/local/ecmf/obstat.3.0.table | 52 - .../grib3/tables/local/ecmf/obstat.4.0.table | 82 - .../grib3/tables/local/ecmf/obstat.5.0.table | 53 - .../grib3/tables/local/ecmf/obstat.6.0.table | 6 - .../grib3/tables/local/ecmf/obstat.7.0.table | 6 - .../grib3/tables/local/ecmf/obstat.8.0.table | 6 - .../grib3/tables/local/ecmf/obstat.9.0.table | 52 - .../tables/local/ecmf/obstat.reporttype.table | 185 - .../tables/local/ecmf/obstat.varno.table | 31 - .../definitions.save/grib3/template.10.0.def | 41 - .../definitions.save/grib3/template.3.0.def | 13 - .../definitions.save/grib3/template.3.110.def | 44 - .../definitions.save/grib3/template.3.140.def | 71 - .../definitions.save/grib3/template.3.20.def | 89 - .../grib3/template.3.resolution_flags.def | 46 - .../definitions.save/grib3/template.4.0.def | 16 - .../definitions.save/grib3/template.4.1.def | 19 - .../definitions.save/grib3/template.4.2.def | 19 - .../definitions.save/grib3/template.4.3.def | 22 - .../grib3/template.4.horizontal.def | 133 - .../grib3/template.4.resolution_flags.def | 46 - .../grib3/template.4.scanning_mode.def | 45 - .../definitions.save/grib3/template.5.0.def | 13 - .../definitions.save/grib3/template.5.1.def | 13 - .../definitions.save/grib3/template.6.0.def | 13 - .../definitions.save/grib3/template.6.1.def | 19 - .../definitions.save/grib3/template.6.2.def | 19 - .../definitions.save/grib3/template.7.0.def | 13 - .../definitions.save/grib3/template.7.1.def | 16 - .../definitions.save/grib3/template.7.2.def | 16 - .../definitions.save/grib3/template.7.3.def | 19 - .../definitions.save/grib3/template.7.4.def | 22 - .../definitions.save/grib3/template.8.0.def | 13 - .../definitions.save/grib3/template.8.1.def | 13 - .../grib3/template.8.missing_value.def | 15 - .../grib3/template.8.original_values.def | 2 - .../grib3/template.8.packing.def | 17 - .../definitions.save/grib3/template.9.0.def | 13 - .../grib3/template.component.3.0.def | 17 - .../grib3/template.component.4.0.def | 25 - .../grib3/template.component.4.1.def | 133 - .../grib3/template.component.4.2.def | 21 - .../grib3/template.component.4.3.def | 20 - .../grib3/template.component.5.0.def | 91 - .../grib3/template.component.5.1.def | 117 - .../grib3/template.component.6.0.def | 7 - .../grib3/template.component.6.1.def | 5 - .../grib3/template.component.6.2.def | 9 - .../grib3/template.component.6.3.def | 3 - .../grib3/template.component.7.0.def | 13 - .../grib3/template.component.7.1.def | 13 - .../grib3/template.component.7.2.def | 5 - .../grib3/template.component.7.3.def | 9 - .../grib3/template.component.7.4.def | 10 - .../grib3/template.component.8.0.def | 6 - .../grib3/template.component.8.1.def | 10 - .../grib3/template.component.9.0.def | 42 - .../4.8.regular_latitudes.def | 1 - .../grib3/tiggeLocalVersion.table | 1 - eccodes/definitions.save/grib3/tigge_name.def | 45 - .../grib3/tigge_parameter.def | 396 - .../grib3/tigge_short_name.def | 44 - .../grib3/tigge_suiteName.table | 12 - eccodes/definitions.save/grib3/units.def | 3009 --- eccodes/definitions.save/mars_param.table | 6809 ----- eccodes/definitions.save/param_id.table | 4056 --- eccodes/definitions.save/param_limits.def | 166 - .../definitions.save/parameters_version.def | 1 - eccodes/definitions.save/stepUnits.table | 16 - 5852 files changed, 633020 deletions(-) delete mode 100644 eccodes/definitions.save/boot.def delete mode 100644 eccodes/definitions.save/common/c-1.table delete mode 100644 eccodes/definitions.save/common/c-11.table delete mode 100644 eccodes/definitions.save/common/statistics_grid.def delete mode 100644 eccodes/definitions.save/common/statistics_spectral.def delete mode 100644 eccodes/definitions.save/empty_template.def delete mode 100644 eccodes/definitions.save/grib1/0.ecmf.table delete mode 100644 eccodes/definitions.save/grib1/0.eidb.table delete mode 100644 eccodes/definitions.save/grib1/0.eswi.table delete mode 100644 eccodes/definitions.save/grib1/0.rjtd.table delete mode 100644 eccodes/definitions.save/grib1/1.table delete mode 100644 eccodes/definitions.save/grib1/10.table delete mode 100644 eccodes/definitions.save/grib1/11-2.table delete mode 100644 eccodes/definitions.save/grib1/11.table delete mode 100644 eccodes/definitions.save/grib1/12.table delete mode 100644 eccodes/definitions.save/grib1/13.table delete mode 100644 eccodes/definitions.save/grib1/2.0.1.table delete mode 100644 eccodes/definitions.save/grib1/2.0.2.table delete mode 100644 eccodes/definitions.save/grib1/2.0.3.table delete mode 100644 eccodes/definitions.save/grib1/2.128.table delete mode 100644 eccodes/definitions.save/grib1/2.233.1.table delete mode 100644 eccodes/definitions.save/grib1/2.233.253.table delete mode 100644 eccodes/definitions.save/grib1/2.253.128.table delete mode 100644 eccodes/definitions.save/grib1/2.34.200.table delete mode 100644 eccodes/definitions.save/grib1/2.46.254.table delete mode 100644 eccodes/definitions.save/grib1/2.82.1.table delete mode 100644 eccodes/definitions.save/grib1/2.82.128.table delete mode 100644 eccodes/definitions.save/grib1/2.82.129.table delete mode 100644 eccodes/definitions.save/grib1/2.82.130.table delete mode 100644 eccodes/definitions.save/grib1/2.82.131.table delete mode 100644 eccodes/definitions.save/grib1/2.82.133.table delete mode 100644 eccodes/definitions.save/grib1/2.82.134.table delete mode 100644 eccodes/definitions.save/grib1/2.82.135.table delete mode 100644 eccodes/definitions.save/grib1/2.82.136.table delete mode 100644 eccodes/definitions.save/grib1/2.82.253.table delete mode 100644 eccodes/definitions.save/grib1/2.98.128.table delete mode 100644 eccodes/definitions.save/grib1/2.98.129.table delete mode 100644 eccodes/definitions.save/grib1/2.98.130.table delete mode 100644 eccodes/definitions.save/grib1/2.98.131.table delete mode 100644 eccodes/definitions.save/grib1/2.98.132.table delete mode 100644 eccodes/definitions.save/grib1/2.98.133.table delete mode 100644 eccodes/definitions.save/grib1/2.98.140.table delete mode 100644 eccodes/definitions.save/grib1/2.98.150.table delete mode 100644 eccodes/definitions.save/grib1/2.98.151.table delete mode 100644 eccodes/definitions.save/grib1/2.98.160.table delete mode 100644 eccodes/definitions.save/grib1/2.98.162.table delete mode 100644 eccodes/definitions.save/grib1/2.98.170.table delete mode 100644 eccodes/definitions.save/grib1/2.98.171.table delete mode 100644 eccodes/definitions.save/grib1/2.98.172.table delete mode 100644 eccodes/definitions.save/grib1/2.98.173.table delete mode 100644 eccodes/definitions.save/grib1/2.98.174.table delete mode 100644 eccodes/definitions.save/grib1/2.98.175.table delete mode 100644 eccodes/definitions.save/grib1/2.98.180.table delete mode 100644 eccodes/definitions.save/grib1/2.98.190.table delete mode 100644 eccodes/definitions.save/grib1/2.98.200.table delete mode 100644 eccodes/definitions.save/grib1/2.98.201.table delete mode 100644 eccodes/definitions.save/grib1/2.98.210.table delete mode 100644 eccodes/definitions.save/grib1/2.98.211.table delete mode 100644 eccodes/definitions.save/grib1/2.98.213.table delete mode 100644 eccodes/definitions.save/grib1/2.98.215.table delete mode 100644 eccodes/definitions.save/grib1/2.98.220.table delete mode 100644 eccodes/definitions.save/grib1/2.98.228.table delete mode 100644 eccodes/definitions.save/grib1/2.98.230.table delete mode 100644 eccodes/definitions.save/grib1/2.98.235.table delete mode 100644 eccodes/definitions.save/grib1/2.table delete mode 100644 eccodes/definitions.save/grib1/3.233.table delete mode 100644 eccodes/definitions.save/grib1/3.82.table delete mode 100644 eccodes/definitions.save/grib1/3.98.table delete mode 100644 eccodes/definitions.save/grib1/3.table delete mode 100644 eccodes/definitions.save/grib1/4.table delete mode 100644 eccodes/definitions.save/grib1/5.table delete mode 100644 eccodes/definitions.save/grib1/6.table delete mode 100644 eccodes/definitions.save/grib1/7.table delete mode 100644 eccodes/definitions.save/grib1/8.table delete mode 100644 eccodes/definitions.save/grib1/9.table delete mode 100644 eccodes/definitions.save/grib1/boot.def delete mode 100644 eccodes/definitions.save/grib1/cfName.def delete mode 100644 eccodes/definitions.save/grib1/cfVarName.def delete mode 100644 eccodes/definitions.save/grib1/cluster_domain.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_ieee.def delete mode 120000 eccodes/definitions.save/grib1/data.grid_jpeg.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_second_order.def delete mode 120000 eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def delete mode 120000 eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def delete mode 120000 eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def delete mode 120000 eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_simple.def delete mode 100644 eccodes/definitions.save/grib1/data.grid_simple_matrix.def delete mode 100644 eccodes/definitions.save/grib1/data.spectral_complex.def delete mode 100644 eccodes/definitions.save/grib1/data.spectral_ieee.def delete mode 100644 eccodes/definitions.save/grib1/data.spectral_simple.def delete mode 100644 eccodes/definitions.save/grib1/gds_not_present_bitmap.def delete mode 100755 eccodes/definitions.save/grib1/grid.192.78.3.10.table delete mode 100755 eccodes/definitions.save/grib1/grid.192.78.3.9.table delete mode 100644 eccodes/definitions.save/grib1/grid_21.def delete mode 100644 eccodes/definitions.save/grib1/grid_22.def delete mode 100644 eccodes/definitions.save/grib1/grid_23.def delete mode 100644 eccodes/definitions.save/grib1/grid_24.def delete mode 100644 eccodes/definitions.save/grib1/grid_25.def delete mode 100644 eccodes/definitions.save/grib1/grid_26.def delete mode 100644 eccodes/definitions.save/grib1/grid_61.def delete mode 100644 eccodes/definitions.save/grib1/grid_62.def delete mode 100644 eccodes/definitions.save/grib1/grid_63.def delete mode 100644 eccodes/definitions.save/grib1/grid_64.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_0.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_1.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_10.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_13.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_14.def delete mode 100755 eccodes/definitions.save/grib1/grid_definition_192.78.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_192.98.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_193.98.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_20.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_24.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_3.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_30.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_34.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_4.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_5.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_50.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_60.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_70.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_8.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_80.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_90.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_gaussian.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_lambert.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_latlon.def delete mode 100644 eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def delete mode 100644 eccodes/definitions.save/grib1/grid_first_last_resandcomp.def delete mode 100644 eccodes/definitions.save/grib1/grid_rotation.def delete mode 100644 eccodes/definitions.save/grib1/grid_stretching.def delete mode 100644 eccodes/definitions.save/grib1/local.1.def delete mode 100644 eccodes/definitions.save/grib1/local.13.table delete mode 100644 eccodes/definitions.save/grib1/local.214.1.def delete mode 100644 eccodes/definitions.save/grib1/local.214.244.def delete mode 100644 eccodes/definitions.save/grib1/local.214.245.def delete mode 100644 eccodes/definitions.save/grib1/local.214.def delete mode 100644 eccodes/definitions.save/grib1/local.253.def delete mode 100644 eccodes/definitions.save/grib1/local.254.def delete mode 100644 eccodes/definitions.save/grib1/local.34.1.def delete mode 100644 eccodes/definitions.save/grib1/local.34.def delete mode 100644 eccodes/definitions.save/grib1/local.46.def delete mode 100644 eccodes/definitions.save/grib1/local.54.def delete mode 100644 eccodes/definitions.save/grib1/local.7.1.def delete mode 100644 eccodes/definitions.save/grib1/local.7.def delete mode 100644 eccodes/definitions.save/grib1/local.78.def delete mode 100644 eccodes/definitions.save/grib1/local.80.def delete mode 100644 eccodes/definitions.save/grib1/local.82.0.def delete mode 100644 eccodes/definitions.save/grib1/local.82.82.def delete mode 100644 eccodes/definitions.save/grib1/local.82.83.def delete mode 100644 eccodes/definitions.save/grib1/local.82.def delete mode 100644 eccodes/definitions.save/grib1/local.85.def delete mode 100644 eccodes/definitions.save/grib1/local.96.def delete mode 100644 eccodes/definitions.save/grib1/local.98.1.def delete mode 100644 eccodes/definitions.save/grib1/local.98.10.def delete mode 100644 eccodes/definitions.save/grib1/local.98.11.def delete mode 100644 eccodes/definitions.save/grib1/local.98.12.def delete mode 100644 eccodes/definitions.save/grib1/local.98.13.def delete mode 100644 eccodes/definitions.save/grib1/local.98.14.def delete mode 100644 eccodes/definitions.save/grib1/local.98.15.def delete mode 100644 eccodes/definitions.save/grib1/local.98.16.def delete mode 100644 eccodes/definitions.save/grib1/local.98.17.def delete mode 100644 eccodes/definitions.save/grib1/local.98.18.def delete mode 100644 eccodes/definitions.save/grib1/local.98.19.def delete mode 100644 eccodes/definitions.save/grib1/local.98.190.def delete mode 100644 eccodes/definitions.save/grib1/local.98.191.def delete mode 100644 eccodes/definitions.save/grib1/local.98.192.def delete mode 100644 eccodes/definitions.save/grib1/local.98.2.def delete mode 100644 eccodes/definitions.save/grib1/local.98.20.def delete mode 100644 eccodes/definitions.save/grib1/local.98.21.def delete mode 100644 eccodes/definitions.save/grib1/local.98.218.def delete mode 100644 eccodes/definitions.save/grib1/local.98.23.def delete mode 100644 eccodes/definitions.save/grib1/local.98.24.def delete mode 120000 eccodes/definitions.save/grib1/local.98.244.def delete mode 120000 eccodes/definitions.save/grib1/local.98.245.def delete mode 100644 eccodes/definitions.save/grib1/local.98.25.def delete mode 100644 eccodes/definitions.save/grib1/local.98.26.def delete mode 100644 eccodes/definitions.save/grib1/local.98.27.def delete mode 100644 eccodes/definitions.save/grib1/local.98.28.def delete mode 100644 eccodes/definitions.save/grib1/local.98.29.def delete mode 100644 eccodes/definitions.save/grib1/local.98.3.def delete mode 100644 eccodes/definitions.save/grib1/local.98.30.def delete mode 100644 eccodes/definitions.save/grib1/local.98.31.def delete mode 100644 eccodes/definitions.save/grib1/local.98.32.def delete mode 100644 eccodes/definitions.save/grib1/local.98.33.def delete mode 100644 eccodes/definitions.save/grib1/local.98.35.def delete mode 100644 eccodes/definitions.save/grib1/local.98.36.def delete mode 100644 eccodes/definitions.save/grib1/local.98.37.def delete mode 100644 eccodes/definitions.save/grib1/local.98.38.def delete mode 100644 eccodes/definitions.save/grib1/local.98.39.def delete mode 100644 eccodes/definitions.save/grib1/local.98.4.def delete mode 100644 eccodes/definitions.save/grib1/local.98.40.def delete mode 100644 eccodes/definitions.save/grib1/local.98.49.def delete mode 100644 eccodes/definitions.save/grib1/local.98.5.def delete mode 100644 eccodes/definitions.save/grib1/local.98.50.def delete mode 100644 eccodes/definitions.save/grib1/local.98.6.def delete mode 100644 eccodes/definitions.save/grib1/local.98.7.def delete mode 100644 eccodes/definitions.save/grib1/local.98.8.def delete mode 100644 eccodes/definitions.save/grib1/local.98.9.def delete mode 100644 eccodes/definitions.save/grib1/local.98.def delete mode 100644 eccodes/definitions.save/grib1/local/ecmf/3.table delete mode 100644 eccodes/definitions.save/grib1/local/ecmf/5.table delete mode 100755 eccodes/definitions.save/grib1/local/edzw/2.0.3.table delete mode 100755 eccodes/definitions.save/grib1/local/edzw/5.table delete mode 100755 eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table delete mode 100644 eccodes/definitions.save/grib1/local/rjtd/252.table delete mode 100644 eccodes/definitions.save/grib1/local/rjtd/3.table delete mode 100644 eccodes/definitions.save/grib1/local/rjtd/5.table delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ammc/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ammc/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/cnmc/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/cnmc/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ecmf/units.def delete mode 100755 eccodes/definitions.save/grib1/localConcepts/edzw/name.def delete mode 100755 eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def delete mode 100755 eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def delete mode 100755 eccodes/definitions.save/grib1/localConcepts/edzw/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/efkl/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/efkl/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eidb/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eidb/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ekmi/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/ekmi/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/enmi/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/enmi/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/sort.table delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/eswi/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/kwbc/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/kwbc/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lfpw/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lowm/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/lowm/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/rjtd/units.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/sbsj/name.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def delete mode 100644 eccodes/definitions.save/grib1/localConcepts/sbsj/units.def delete mode 100644 eccodes/definitions.save/grib1/localDefinitionNumber.34.table delete mode 100644 eccodes/definitions.save/grib1/localDefinitionNumber.82.table delete mode 100644 eccodes/definitions.save/grib1/localDefinitionNumber.96.table delete mode 100644 eccodes/definitions.save/grib1/localDefinitionNumber.98.table delete mode 100644 eccodes/definitions.save/grib1/local_no_mars.98.1.def delete mode 100644 eccodes/definitions.save/grib1/local_no_mars.98.24.def delete mode 100644 eccodes/definitions.save/grib1/ls.def delete mode 100644 eccodes/definitions.save/grib1/ls_labeling.82.def delete mode 100644 eccodes/definitions.save/grib1/mars_labeling.23.def delete mode 100644 eccodes/definitions.save/grib1/mars_labeling.4.def delete mode 100644 eccodes/definitions.save/grib1/mars_labeling.82.def delete mode 100644 eccodes/definitions.save/grib1/mars_labeling.def delete mode 100644 eccodes/definitions.save/grib1/name.def delete mode 100644 eccodes/definitions.save/grib1/ocean.1.table delete mode 100755 eccodes/definitions.save/grib1/param.pl delete mode 100644 eccodes/definitions.save/grib1/paramId.def delete mode 100644 eccodes/definitions.save/grib1/precision.table delete mode 100644 eccodes/definitions.save/grib1/predefined_grid.def delete mode 100644 eccodes/definitions.save/grib1/regimes.table delete mode 100644 eccodes/definitions.save/grib1/resolution_flags.def delete mode 100644 eccodes/definitions.save/grib1/scanning_mode.def delete mode 100644 eccodes/definitions.save/grib1/section.0.def delete mode 100644 eccodes/definitions.save/grib1/section.1.def delete mode 100644 eccodes/definitions.save/grib1/section.2.def delete mode 100644 eccodes/definitions.save/grib1/section.3.def delete mode 100644 eccodes/definitions.save/grib1/section.4.def delete mode 100644 eccodes/definitions.save/grib1/section.5.def delete mode 100644 eccodes/definitions.save/grib1/sensitive_area_domain.def delete mode 100644 eccodes/definitions.save/grib1/shortName.def delete mode 100644 eccodes/definitions.save/grib1/stepType.def delete mode 100644 eccodes/definitions.save/grib1/stepTypeForConversion.def delete mode 100644 eccodes/definitions.save/grib1/tube_domain.def delete mode 100644 eccodes/definitions.save/grib1/typeOfLevel.def delete mode 100644 eccodes/definitions.save/grib1/units.def delete mode 100644 eccodes/definitions.save/grib2/boot.def delete mode 100644 eccodes/definitions.save/grib2/boot_multifield.def delete mode 100644 eccodes/definitions.save/grib2/cfName.def delete mode 100644 eccodes/definitions.save/grib2/cfVarName.def delete mode 100644 eccodes/definitions.save/grib2/crraLocalVersion.table delete mode 100644 eccodes/definitions.save/grib2/crra_suiteName.table delete mode 100644 eccodes/definitions.save/grib2/d delete mode 100644 eccodes/definitions.save/grib2/dimension.0.table delete mode 100644 eccodes/definitions.save/grib2/dimensionTableNumber.table delete mode 100644 eccodes/definitions.save/grib2/dimensionType.table delete mode 100644 eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table delete mode 100644 eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table delete mode 100644 eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table delete mode 100644 eccodes/definitions.save/grib2/lcwfv_suiteName.table delete mode 100644 eccodes/definitions.save/grib2/local.82.0.def delete mode 100644 eccodes/definitions.save/grib2/local.82.82.def delete mode 100644 eccodes/definitions.save/grib2/local.82.83.def delete mode 100644 eccodes/definitions.save/grib2/local.82.def delete mode 100644 eccodes/definitions.save/grib2/local.85.0.def delete mode 100644 eccodes/definitions.save/grib2/local.85.1.def delete mode 100644 eccodes/definitions.save/grib2/local.85.2.def delete mode 100644 eccodes/definitions.save/grib2/local.85.def delete mode 100644 eccodes/definitions.save/grib2/local.98.0.def delete mode 100644 eccodes/definitions.save/grib2/local.98.1.def delete mode 100644 eccodes/definitions.save/grib2/local.98.11.def delete mode 100644 eccodes/definitions.save/grib2/local.98.12.def delete mode 100644 eccodes/definitions.save/grib2/local.98.14.def delete mode 100644 eccodes/definitions.save/grib2/local.98.15.def delete mode 100644 eccodes/definitions.save/grib2/local.98.16.def delete mode 100644 eccodes/definitions.save/grib2/local.98.18.def delete mode 100644 eccodes/definitions.save/grib2/local.98.192.def delete mode 100644 eccodes/definitions.save/grib2/local.98.20.def delete mode 100644 eccodes/definitions.save/grib2/local.98.21.def delete mode 100644 eccodes/definitions.save/grib2/local.98.24.def delete mode 100644 eccodes/definitions.save/grib2/local.98.25.def delete mode 100644 eccodes/definitions.save/grib2/local.98.26.def delete mode 100644 eccodes/definitions.save/grib2/local.98.28.def delete mode 100644 eccodes/definitions.save/grib2/local.98.30.def delete mode 100644 eccodes/definitions.save/grib2/local.98.300.def delete mode 100644 eccodes/definitions.save/grib2/local.98.36.def delete mode 100644 eccodes/definitions.save/grib2/local.98.38.def delete mode 100644 eccodes/definitions.save/grib2/local.98.39.def delete mode 100644 eccodes/definitions.save/grib2/local.98.41.def delete mode 100644 eccodes/definitions.save/grib2/local.98.42.def delete mode 100644 eccodes/definitions.save/grib2/local.98.5.def delete mode 100755 eccodes/definitions.save/grib2/local.98.500.def delete mode 100644 eccodes/definitions.save/grib2/local.98.7.def delete mode 100644 eccodes/definitions.save/grib2/local.98.9.def delete mode 100644 eccodes/definitions.save/grib2/local.98.def delete mode 100644 eccodes/definitions.save/grib2/local.crra.1.def delete mode 100644 eccodes/definitions.save/grib2/local.tigge.1.def delete mode 100644 eccodes/definitions.save/grib2/local/1098/2.1.table delete mode 100644 eccodes/definitions.save/grib2/local/1098/centres.table delete mode 100644 eccodes/definitions.save/grib2/local/1098/models.table delete mode 100644 eccodes/definitions.save/grib2/local/1098/template.2.0.def delete mode 100644 eccodes/definitions.save/grib2/local/2.0.table delete mode 100644 eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/cnmc/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/cnmc/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def delete mode 100755 eccodes/definitions.save/grib2/localConcepts/edzw/name.def delete mode 100755 eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def delete mode 100755 eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def delete mode 100755 eccodes/definitions.save/grib2/localConcepts/edzw/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/efkl/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/efkl/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/egrr/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/egrr/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ekmi/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/ekmi/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/eswi/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/eswi/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/kwbc/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/kwbc/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/kwbc/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/kwbc/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/faFieldName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/faLevelName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/faModelName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw1/name.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw1/paramId.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw1/shortName.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lfpw1/units.def delete mode 100644 eccodes/definitions.save/grib2/localConcepts/lssw/modelName.def delete mode 100644 eccodes/definitions.save/grib2/ls.def delete mode 100644 eccodes/definitions.save/grib2/ls_labeling.82.def delete mode 100644 eccodes/definitions.save/grib2/mars_labeling.82.def delete mode 100644 eccodes/definitions.save/grib2/mars_labeling.def delete mode 100644 eccodes/definitions.save/grib2/meta.def delete mode 100644 eccodes/definitions.save/grib2/modelName.def delete mode 100644 eccodes/definitions.save/grib2/name.def delete mode 100644 eccodes/definitions.save/grib2/paramId.def delete mode 100644 eccodes/definitions.save/grib2/parameters.def delete mode 100644 eccodes/definitions.save/grib2/products_0.def delete mode 100644 eccodes/definitions.save/grib2/products_1.def delete mode 100644 eccodes/definitions.save/grib2/products_10.def delete mode 100644 eccodes/definitions.save/grib2/products_11.def delete mode 100644 eccodes/definitions.save/grib2/products_2.def delete mode 100644 eccodes/definitions.save/grib2/products_3.def delete mode 100644 eccodes/definitions.save/grib2/products_4.def delete mode 100644 eccodes/definitions.save/grib2/products_5.def delete mode 100644 eccodes/definitions.save/grib2/products_6.def delete mode 100644 eccodes/definitions.save/grib2/products_7.def delete mode 100644 eccodes/definitions.save/grib2/products_8.def delete mode 100644 eccodes/definitions.save/grib2/products_9.def delete mode 100644 eccodes/definitions.save/grib2/products_crra.def delete mode 100644 eccodes/definitions.save/grib2/products_s2s.def delete mode 100644 eccodes/definitions.save/grib2/products_tigge.def delete mode 100644 eccodes/definitions.save/grib2/products_uerra.def delete mode 100644 eccodes/definitions.save/grib2/rules.def delete mode 100644 eccodes/definitions.save/grib2/section.0.def delete mode 100644 eccodes/definitions.save/grib2/section.1.def delete mode 100644 eccodes/definitions.save/grib2/section.2.def delete mode 100644 eccodes/definitions.save/grib2/section.3.def delete mode 100644 eccodes/definitions.save/grib2/section.4.def delete mode 100644 eccodes/definitions.save/grib2/section.5.def delete mode 100644 eccodes/definitions.save/grib2/section.6.def delete mode 100644 eccodes/definitions.save/grib2/section.7.def delete mode 100644 eccodes/definitions.save/grib2/section.8.def delete mode 100644 eccodes/definitions.save/grib2/sections.def delete mode 100644 eccodes/definitions.save/grib2/shortName.def delete mode 100644 eccodes/definitions.save/grib2/tables/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/0/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/1/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/10/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/11/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/12/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/13/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/14/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/15/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/16/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/17/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/18/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/19/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/2/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/20/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/21/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/22/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/23/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/24/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.20.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.20.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.20.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.2.4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/25/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/1.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.2.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.20.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.20.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.20.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.2.4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/26/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/3/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/4/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/5/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/6/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/7/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/8/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/3.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.10.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.100.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.101.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.102.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.103.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.104.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.105.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.106.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.107.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.108.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.109.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.110.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.111.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.112.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.113.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.114.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.115.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.116.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.117.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.118.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.119.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.12.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.120.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.121.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.122.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.123.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.124.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.125.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.126.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.127.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.128.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.129.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.130.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.131.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.132.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.133.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.134.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.135.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.136.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.137.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.138.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.139.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.140.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.141.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.142.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.143.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.144.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.145.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.146.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.147.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.148.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.149.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.150.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.151.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.152.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.153.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.154.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.155.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.156.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.157.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.158.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.159.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.160.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.161.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.162.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.163.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.164.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.165.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.166.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.167.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.168.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.169.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.170.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.171.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.172.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.173.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.174.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.175.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.176.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.177.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.178.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.179.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.180.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.181.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.182.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.183.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.184.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.185.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.186.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.187.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.188.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.189.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.190.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.200.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.21.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.214.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.22.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.225.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.226.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.228.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.229.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.23.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.231.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.232.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.236.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.237.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.238.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.239.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.24.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.240.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.241.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.242.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.243.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.244.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.245.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.246.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.247.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.248.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.249.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.25.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.250.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.251.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.252.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.253.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.255.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.26.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.27.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.28.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.29.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.30.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.31.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.32.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.33.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.34.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.35.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.36.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.37.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.38.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.39.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.41.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.42.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.43.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.44.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.45.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.46.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.47.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.48.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.49.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.50.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.51.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.52.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.53.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.54.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.55.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.56.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.57.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.58.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.59.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.60.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.61.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.62.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.63.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.64.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.65.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.66.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.67.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.68.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.69.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.70.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.71.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.72.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.73.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.74.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.75.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.76.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.77.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.78.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.79.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.80.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.81.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.82.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.83.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.84.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.85.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.86.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.87.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.88.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.89.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.90.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.92.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.93.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.94.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.95.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.96.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.97.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.98.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.192.99.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.2.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.201.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.202.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.203.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.204.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.205.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.206.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.207.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.208.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.209.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.210.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.211.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.212.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.213.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.215.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.216.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.217.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.218.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.219.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.220.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.221.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.222.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.223.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.224.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.227.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.234.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.235.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/4.91.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.40.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.40000.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.50002.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.8.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/5.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/9/stepType.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.192.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.193.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.194.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.195.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table delete mode 100644 eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table delete mode 100644 eccodes/definitions.save/grib2/template.1.0.def delete mode 100644 eccodes/definitions.save/grib2/template.1.1.def delete mode 100644 eccodes/definitions.save/grib2/template.1.2.def delete mode 100644 eccodes/definitions.save/grib2/template.1.calendar.def delete mode 100644 eccodes/definitions.save/grib2/template.1.offset.def delete mode 100644 eccodes/definitions.save/grib2/template.3.0.def delete mode 100644 eccodes/definitions.save/grib2/template.3.1.def delete mode 100644 eccodes/definitions.save/grib2/template.3.10.def delete mode 100644 eccodes/definitions.save/grib2/template.3.100.def delete mode 100644 eccodes/definitions.save/grib2/template.3.1000.def delete mode 100644 eccodes/definitions.save/grib2/template.3.101.def delete mode 100644 eccodes/definitions.save/grib2/template.3.110.def delete mode 100644 eccodes/definitions.save/grib2/template.3.1100.def delete mode 100644 eccodes/definitions.save/grib2/template.3.12.def delete mode 100644 eccodes/definitions.save/grib2/template.3.120.def delete mode 100644 eccodes/definitions.save/grib2/template.3.1200.def delete mode 100644 eccodes/definitions.save/grib2/template.3.13.def delete mode 100644 eccodes/definitions.save/grib2/template.3.130.def delete mode 100644 eccodes/definitions.save/grib2/template.3.140.def delete mode 100644 eccodes/definitions.save/grib2/template.3.2.def delete mode 100644 eccodes/definitions.save/grib2/template.3.20.def delete mode 100644 eccodes/definitions.save/grib2/template.3.23.def delete mode 100644 eccodes/definitions.save/grib2/template.3.3.def delete mode 100644 eccodes/definitions.save/grib2/template.3.30.def delete mode 100644 eccodes/definitions.save/grib2/template.3.31.def delete mode 100644 eccodes/definitions.save/grib2/template.3.32769.def delete mode 100644 eccodes/definitions.save/grib2/template.3.33.def delete mode 100644 eccodes/definitions.save/grib2/template.3.4.def delete mode 100644 eccodes/definitions.save/grib2/template.3.40.def delete mode 100644 eccodes/definitions.save/grib2/template.3.41.def delete mode 100644 eccodes/definitions.save/grib2/template.3.42.def delete mode 100644 eccodes/definitions.save/grib2/template.3.43.def delete mode 100644 eccodes/definitions.save/grib2/template.3.5.def delete mode 100644 eccodes/definitions.save/grib2/template.3.50.def delete mode 100644 eccodes/definitions.save/grib2/template.3.51.def delete mode 100644 eccodes/definitions.save/grib2/template.3.52.def delete mode 100644 eccodes/definitions.save/grib2/template.3.53.def delete mode 100644 eccodes/definitions.save/grib2/template.3.61.def delete mode 100644 eccodes/definitions.save/grib2/template.3.62.def delete mode 100644 eccodes/definitions.save/grib2/template.3.63.def delete mode 100644 eccodes/definitions.save/grib2/template.3.90.def delete mode 100644 eccodes/definitions.save/grib2/template.3.bf.def delete mode 100755 eccodes/definitions.save/grib2/template.3.gaussian.def delete mode 100644 eccodes/definitions.save/grib2/template.3.grid.def delete mode 100644 eccodes/definitions.save/grib2/template.3.lam.def delete mode 100755 eccodes/definitions.save/grib2/template.3.latlon.def delete mode 100755 eccodes/definitions.save/grib2/template.3.latlon_vares.def delete mode 100644 eccodes/definitions.save/grib2/template.3.resolution_flags.def delete mode 100755 eccodes/definitions.save/grib2/template.3.rotation.def delete mode 100644 eccodes/definitions.save/grib2/template.3.scanning_mode.def delete mode 100755 eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def delete mode 100755 eccodes/definitions.save/grib2/template.3.spherical_harmonics.def delete mode 100755 eccodes/definitions.save/grib2/template.3.stretching.def delete mode 100644 eccodes/definitions.save/grib2/template.4.0.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1.def delete mode 100644 eccodes/definitions.save/grib2/template.4.10.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1000.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1001.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1002.def delete mode 100644 eccodes/definitions.save/grib2/template.4.11.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1100.def delete mode 100644 eccodes/definitions.save/grib2/template.4.1101.def delete mode 100644 eccodes/definitions.save/grib2/template.4.12.def delete mode 100644 eccodes/definitions.save/grib2/template.4.13.def delete mode 100644 eccodes/definitions.save/grib2/template.4.14.def delete mode 100644 eccodes/definitions.save/grib2/template.4.15.def delete mode 100644 eccodes/definitions.save/grib2/template.4.2.def delete mode 100644 eccodes/definitions.save/grib2/template.4.20.def delete mode 100644 eccodes/definitions.save/grib2/template.4.2000.def delete mode 100644 eccodes/definitions.save/grib2/template.4.254.def delete mode 100644 eccodes/definitions.save/grib2/template.4.3.def delete mode 100644 eccodes/definitions.save/grib2/template.4.30.def delete mode 100644 eccodes/definitions.save/grib2/template.4.31.def delete mode 100644 eccodes/definitions.save/grib2/template.4.311.def delete mode 100644 eccodes/definitions.save/grib2/template.4.32.def delete mode 100644 eccodes/definitions.save/grib2/template.4.33.def delete mode 100644 eccodes/definitions.save/grib2/template.4.34.def delete mode 100644 eccodes/definitions.save/grib2/template.4.35.def delete mode 100644 eccodes/definitions.save/grib2/template.4.4.def delete mode 100644 eccodes/definitions.save/grib2/template.4.40.def delete mode 100644 eccodes/definitions.save/grib2/template.4.40033.def delete mode 100644 eccodes/definitions.save/grib2/template.4.40034.def delete mode 100644 eccodes/definitions.save/grib2/template.4.41.def delete mode 100644 eccodes/definitions.save/grib2/template.4.42.def delete mode 100644 eccodes/definitions.save/grib2/template.4.43.def delete mode 100644 eccodes/definitions.save/grib2/template.4.44.def delete mode 100644 eccodes/definitions.save/grib2/template.4.45.def delete mode 100644 eccodes/definitions.save/grib2/template.4.46.def delete mode 100644 eccodes/definitions.save/grib2/template.4.47.def delete mode 100644 eccodes/definitions.save/grib2/template.4.48.def delete mode 100644 eccodes/definitions.save/grib2/template.4.49.def delete mode 100644 eccodes/definitions.save/grib2/template.4.5.def delete mode 100644 eccodes/definitions.save/grib2/template.4.51.def delete mode 100644 eccodes/definitions.save/grib2/template.4.53.def delete mode 100644 eccodes/definitions.save/grib2/template.4.54.def delete mode 100644 eccodes/definitions.save/grib2/template.4.55.def delete mode 100644 eccodes/definitions.save/grib2/template.4.56.def delete mode 100644 eccodes/definitions.save/grib2/template.4.57.def delete mode 100644 eccodes/definitions.save/grib2/template.4.58.def delete mode 100644 eccodes/definitions.save/grib2/template.4.59.def delete mode 100644 eccodes/definitions.save/grib2/template.4.6.def delete mode 100644 eccodes/definitions.save/grib2/template.4.60.def delete mode 100644 eccodes/definitions.save/grib2/template.4.61.def delete mode 100644 eccodes/definitions.save/grib2/template.4.67.def delete mode 100644 eccodes/definitions.save/grib2/template.4.68.def delete mode 100644 eccodes/definitions.save/grib2/template.4.7.def delete mode 100644 eccodes/definitions.save/grib2/template.4.70.def delete mode 100644 eccodes/definitions.save/grib2/template.4.71.def delete mode 100644 eccodes/definitions.save/grib2/template.4.72.def delete mode 100644 eccodes/definitions.save/grib2/template.4.73.def delete mode 100644 eccodes/definitions.save/grib2/template.4.76.def delete mode 100644 eccodes/definitions.save/grib2/template.4.77.def delete mode 100644 eccodes/definitions.save/grib2/template.4.78.def delete mode 100644 eccodes/definitions.save/grib2/template.4.79.def delete mode 100644 eccodes/definitions.save/grib2/template.4.8.def delete mode 100644 eccodes/definitions.save/grib2/template.4.80.def delete mode 100644 eccodes/definitions.save/grib2/template.4.81.def delete mode 100644 eccodes/definitions.save/grib2/template.4.82.def delete mode 100644 eccodes/definitions.save/grib2/template.4.83.def delete mode 100644 eccodes/definitions.save/grib2/template.4.84.def delete mode 100644 eccodes/definitions.save/grib2/template.4.85.def delete mode 100644 eccodes/definitions.save/grib2/template.4.9.def delete mode 100644 eccodes/definitions.save/grib2/template.4.91.def delete mode 100755 eccodes/definitions.save/grib2/template.4.categorical.def delete mode 100755 eccodes/definitions.save/grib2/template.4.circular_cluster.def delete mode 100755 eccodes/definitions.save/grib2/template.4.derived.def delete mode 100644 eccodes/definitions.save/grib2/template.4.eps.def delete mode 100755 eccodes/definitions.save/grib2/template.4.horizontal.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_aerosol.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_chemical.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_partition.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_postproc.def delete mode 100644 eccodes/definitions.save/grib2/template.4.parameter_tile.def delete mode 100755 eccodes/definitions.save/grib2/template.4.percentile.def delete mode 100644 eccodes/definitions.save/grib2/template.4.point_in_time.def delete mode 100755 eccodes/definitions.save/grib2/template.4.probability.def delete mode 100755 eccodes/definitions.save/grib2/template.4.rectangular_cluster.def delete mode 100644 eccodes/definitions.save/grib2/template.4.reforecast.def delete mode 100644 eccodes/definitions.save/grib2/template.4.statistical.def delete mode 100644 eccodes/definitions.save/grib2/template.5.0.def delete mode 100644 eccodes/definitions.save/grib2/template.5.1.def delete mode 100644 eccodes/definitions.save/grib2/template.5.2.def delete mode 100644 eccodes/definitions.save/grib2/template.5.3.def delete mode 100644 eccodes/definitions.save/grib2/template.5.4.def delete mode 100644 eccodes/definitions.save/grib2/template.5.40.def delete mode 100644 eccodes/definitions.save/grib2/template.5.40000.def delete mode 100644 eccodes/definitions.save/grib2/template.5.40010.def delete mode 100644 eccodes/definitions.save/grib2/template.5.41.def delete mode 100644 eccodes/definitions.save/grib2/template.5.42.def delete mode 100644 eccodes/definitions.save/grib2/template.5.50.def delete mode 100644 eccodes/definitions.save/grib2/template.5.50000.def delete mode 100755 eccodes/definitions.save/grib2/template.5.50001.def delete mode 100755 eccodes/definitions.save/grib2/template.5.50002.def delete mode 100644 eccodes/definitions.save/grib2/template.5.51.def delete mode 100644 eccodes/definitions.save/grib2/template.5.53.def delete mode 100644 eccodes/definitions.save/grib2/template.5.6.def delete mode 100644 eccodes/definitions.save/grib2/template.5.61.def delete mode 100644 eccodes/definitions.save/grib2/template.5.original_values.def delete mode 100755 eccodes/definitions.save/grib2/template.5.packing.def delete mode 100644 eccodes/definitions.save/grib2/template.5.second_order.def delete mode 100644 eccodes/definitions.save/grib2/template.7.0.def delete mode 100644 eccodes/definitions.save/grib2/template.7.1.def delete mode 100644 eccodes/definitions.save/grib2/template.7.2.def delete mode 100644 eccodes/definitions.save/grib2/template.7.3.def delete mode 100644 eccodes/definitions.save/grib2/template.7.4.def delete mode 100644 eccodes/definitions.save/grib2/template.7.40.def delete mode 100644 eccodes/definitions.save/grib2/template.7.40000.def delete mode 100644 eccodes/definitions.save/grib2/template.7.40010.def delete mode 100644 eccodes/definitions.save/grib2/template.7.41.def delete mode 100644 eccodes/definitions.save/grib2/template.7.42.def delete mode 100644 eccodes/definitions.save/grib2/template.7.50.def delete mode 100644 eccodes/definitions.save/grib2/template.7.50000.def delete mode 100644 eccodes/definitions.save/grib2/template.7.50001.def delete mode 100644 eccodes/definitions.save/grib2/template.7.50002.def delete mode 100644 eccodes/definitions.save/grib2/template.7.51.def delete mode 100644 eccodes/definitions.save/grib2/template.7.53.def delete mode 100644 eccodes/definitions.save/grib2/template.7.6.def delete mode 100644 eccodes/definitions.save/grib2/template.7.61.def delete mode 100644 eccodes/definitions.save/grib2/template.7.second_order.def delete mode 100644 eccodes/definitions.save/grib2/template.second_order.def delete mode 100644 eccodes/definitions.save/grib2/tiggeLocalVersion.table delete mode 100644 eccodes/definitions.save/grib2/tigge_name.def delete mode 100644 eccodes/definitions.save/grib2/tigge_parameter.def delete mode 100644 eccodes/definitions.save/grib2/tigge_short_name.def delete mode 100644 eccodes/definitions.save/grib2/tigge_suiteName.table delete mode 100644 eccodes/definitions.save/grib2/typeOfLevelConcept.def delete mode 100644 eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def delete mode 100644 eccodes/definitions.save/grib2/units.def delete mode 100644 eccodes/definitions.save/grib2/unstructuredGridConcept.def delete mode 100644 eccodes/definitions.save/grib2/unstructuredGridSubtype.def delete mode 100644 eccodes/definitions.save/grib2/unstructuredGridType.def delete mode 100644 eccodes/definitions.save/grib2/unstructuredGridUUID.def delete mode 100644 eccodes/definitions.save/grib3/boot.def delete mode 100644 eccodes/definitions.save/grib3/centre.table delete mode 100644 eccodes/definitions.save/grib3/cfName.def delete mode 100644 eccodes/definitions.save/grib3/cfVarName.def delete mode 100644 eccodes/definitions.save/grib3/dimension.0.table delete mode 100644 eccodes/definitions.save/grib3/dimensionTableNumber.table delete mode 100644 eccodes/definitions.save/grib3/dimensionType.table delete mode 100644 eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table delete mode 100644 eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table delete mode 100644 eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table delete mode 100644 eccodes/definitions.save/grib3/local.82.0.def delete mode 100644 eccodes/definitions.save/grib3/local.82.82.def delete mode 100644 eccodes/definitions.save/grib3/local.82.83.def delete mode 100644 eccodes/definitions.save/grib3/local.82.def delete mode 100644 eccodes/definitions.save/grib3/local.85.0.def delete mode 100644 eccodes/definitions.save/grib3/local.85.1.def delete mode 100644 eccodes/definitions.save/grib3/local.85.2.def delete mode 100644 eccodes/definitions.save/grib3/local.85.def delete mode 100644 eccodes/definitions.save/grib3/local.98.0.def delete mode 100644 eccodes/definitions.save/grib3/local.98.1.def delete mode 100644 eccodes/definitions.save/grib3/local.98.11.def delete mode 100644 eccodes/definitions.save/grib3/local.98.14.def delete mode 100644 eccodes/definitions.save/grib3/local.98.15.def delete mode 100644 eccodes/definitions.save/grib3/local.98.16.def delete mode 100644 eccodes/definitions.save/grib3/local.98.18.def delete mode 100644 eccodes/definitions.save/grib3/local.98.192.def delete mode 100644 eccodes/definitions.save/grib3/local.98.20.def delete mode 100644 eccodes/definitions.save/grib3/local.98.21.def delete mode 100644 eccodes/definitions.save/grib3/local.98.24.def delete mode 100644 eccodes/definitions.save/grib3/local.98.25.def delete mode 100644 eccodes/definitions.save/grib3/local.98.26.def delete mode 100644 eccodes/definitions.save/grib3/local.98.28.def delete mode 100644 eccodes/definitions.save/grib3/local.98.30.def delete mode 100644 eccodes/definitions.save/grib3/local.98.300.def delete mode 100644 eccodes/definitions.save/grib3/local.98.36.def delete mode 100644 eccodes/definitions.save/grib3/local.98.38.def delete mode 100644 eccodes/definitions.save/grib3/local.98.39.def delete mode 100755 eccodes/definitions.save/grib3/local.98.500.def delete mode 100644 eccodes/definitions.save/grib3/local.98.7.def delete mode 100644 eccodes/definitions.save/grib3/local.98.9.def delete mode 100644 eccodes/definitions.save/grib3/local.98.def delete mode 100644 eccodes/definitions.save/grib3/local.tigge.1.def delete mode 100644 eccodes/definitions.save/grib3/local/1098/2.1.table delete mode 100644 eccodes/definitions.save/grib3/local/1098/centres.table delete mode 100644 eccodes/definitions.save/grib3/local/1098/models.table delete mode 100644 eccodes/definitions.save/grib3/local/1098/template.2.0.def delete mode 100644 eccodes/definitions.save/grib3/local/1098/template.2.0.def~ delete mode 100644 eccodes/definitions.save/grib3/local/2.0.table delete mode 100755 eccodes/definitions.save/grib3/local/edzw/2.0.3.table delete mode 100755 eccodes/definitions.save/grib3/local/edzw/3.table delete mode 100755 eccodes/definitions.save/grib3/local/edzw/5.table delete mode 100755 eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/name.def delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def delete mode 100644 eccodes/definitions.save/grib3/localConcepts/ecmf/units.def delete mode 100644 eccodes/definitions.save/grib3/ls.def delete mode 100644 eccodes/definitions.save/grib3/ls_labeling.82.def delete mode 100644 eccodes/definitions.save/grib3/mars_labeling.82.def delete mode 100644 eccodes/definitions.save/grib3/mars_labeling.def delete mode 100644 eccodes/definitions.save/grib3/meta.def delete mode 100644 eccodes/definitions.save/grib3/modelName.def delete mode 100644 eccodes/definitions.save/grib3/name.def delete mode 100644 eccodes/definitions.save/grib3/paramId.def delete mode 100644 eccodes/definitions.save/grib3/parameters.def delete mode 100644 eccodes/definitions.save/grib3/products_0.def delete mode 100644 eccodes/definitions.save/grib3/products_1.def delete mode 100644 eccodes/definitions.save/grib3/products_2.def delete mode 100644 eccodes/definitions.save/grib3/products_3.def delete mode 100644 eccodes/definitions.save/grib3/products_4.def delete mode 100644 eccodes/definitions.save/grib3/products_5.def delete mode 100644 eccodes/definitions.save/grib3/products_6.def delete mode 100644 eccodes/definitions.save/grib3/products_7.def delete mode 100644 eccodes/definitions.save/grib3/products_8.def delete mode 100644 eccodes/definitions.save/grib3/products_9.def delete mode 100644 eccodes/definitions.save/grib3/products_s2s.def delete mode 100644 eccodes/definitions.save/grib3/products_tigge.def delete mode 100644 eccodes/definitions.save/grib3/products_uerra.def delete mode 100644 eccodes/definitions.save/grib3/rules.def delete mode 100644 eccodes/definitions.save/grib3/section.00.def delete mode 100644 eccodes/definitions.save/grib3/section.01.def delete mode 100644 eccodes/definitions.save/grib3/section.02.def delete mode 100644 eccodes/definitions.save/grib3/section.03.def delete mode 100644 eccodes/definitions.save/grib3/section.04.def delete mode 100644 eccodes/definitions.save/grib3/section.05.def delete mode 100644 eccodes/definitions.save/grib3/section.06.def delete mode 100644 eccodes/definitions.save/grib3/section.07.def delete mode 100644 eccodes/definitions.save/grib3/section.08.def delete mode 100644 eccodes/definitions.save/grib3/section.09.def delete mode 100644 eccodes/definitions.save/grib3/section.10.def delete mode 100644 eccodes/definitions.save/grib3/section.11.def delete mode 100644 eccodes/definitions.save/grib3/sections.def delete mode 100644 eccodes/definitions.save/grib3/shortName.def delete mode 100644 eccodes/definitions.save/grib3/tables/0.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/0.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/1.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/1.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/1.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/1.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.11.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.20.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.21.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/3.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.11.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.12.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.13.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.14.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.151.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.13.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.14.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.1.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.201.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.202.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.203.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.204.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.205.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.206.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.207.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.208.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.209.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.210.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.211.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.212.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.213.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.215.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.216.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.217.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.220.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.221.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.230.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/4.91.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.40.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.40000.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/5.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/0/6.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/0.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/1.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/1.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/1.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/1.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.11.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.20.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.21.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/3.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.11.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.12.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.13.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.14.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.151.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.18.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.19.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.190.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.191.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.20.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.0.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.10.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.10.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.10.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.10.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.10.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.2.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.2.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.3.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.3.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.201.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.202.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.203.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.204.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.205.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.206.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.207.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.208.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.209.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.210.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.211.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.212.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.213.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.215.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.216.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.217.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.220.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.221.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.230.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/4.91.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.40.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.40000.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.8.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/5.9.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/6.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/6.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/6.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/6.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.2.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.2.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.2.10.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.2.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.2.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.13.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.14.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.15.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.16.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.17.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.18.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.19.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.20.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.3.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.4.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.5.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.6.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.0.7.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.1.1.table delete mode 100644 eccodes/definitions.save/grib3/tables/1/7.3.1.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table delete mode 100644 eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table delete mode 100644 eccodes/definitions.save/grib3/template.10.0.def delete mode 100644 eccodes/definitions.save/grib3/template.3.0.def delete mode 100644 eccodes/definitions.save/grib3/template.3.110.def delete mode 100644 eccodes/definitions.save/grib3/template.3.140.def delete mode 100644 eccodes/definitions.save/grib3/template.3.20.def delete mode 100644 eccodes/definitions.save/grib3/template.3.resolution_flags.def delete mode 100644 eccodes/definitions.save/grib3/template.4.0.def delete mode 100644 eccodes/definitions.save/grib3/template.4.1.def delete mode 100644 eccodes/definitions.save/grib3/template.4.2.def delete mode 100644 eccodes/definitions.save/grib3/template.4.3.def delete mode 100755 eccodes/definitions.save/grib3/template.4.horizontal.def delete mode 100644 eccodes/definitions.save/grib3/template.4.resolution_flags.def delete mode 100644 eccodes/definitions.save/grib3/template.4.scanning_mode.def delete mode 100644 eccodes/definitions.save/grib3/template.5.0.def delete mode 100644 eccodes/definitions.save/grib3/template.5.1.def delete mode 100644 eccodes/definitions.save/grib3/template.6.0.def delete mode 100644 eccodes/definitions.save/grib3/template.6.1.def delete mode 100644 eccodes/definitions.save/grib3/template.6.2.def delete mode 100644 eccodes/definitions.save/grib3/template.7.0.def delete mode 100644 eccodes/definitions.save/grib3/template.7.1.def delete mode 100644 eccodes/definitions.save/grib3/template.7.2.def delete mode 100644 eccodes/definitions.save/grib3/template.7.3.def delete mode 100644 eccodes/definitions.save/grib3/template.7.4.def delete mode 100644 eccodes/definitions.save/grib3/template.8.0.def delete mode 100644 eccodes/definitions.save/grib3/template.8.1.def delete mode 100755 eccodes/definitions.save/grib3/template.8.missing_value.def delete mode 100644 eccodes/definitions.save/grib3/template.8.original_values.def delete mode 100755 eccodes/definitions.save/grib3/template.8.packing.def delete mode 100644 eccodes/definitions.save/grib3/template.9.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.3.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.4.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.4.1.def delete mode 100644 eccodes/definitions.save/grib3/template.component.4.2.def delete mode 100644 eccodes/definitions.save/grib3/template.component.4.3.def delete mode 100644 eccodes/definitions.save/grib3/template.component.5.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.5.1.def delete mode 100644 eccodes/definitions.save/grib3/template.component.6.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.6.1.def delete mode 100644 eccodes/definitions.save/grib3/template.component.6.2.def delete mode 100644 eccodes/definitions.save/grib3/template.component.6.3.def delete mode 100644 eccodes/definitions.save/grib3/template.component.7.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.7.1.def delete mode 100644 eccodes/definitions.save/grib3/template.component.7.2.def delete mode 100644 eccodes/definitions.save/grib3/template.component.7.3.def delete mode 100644 eccodes/definitions.save/grib3/template.component.7.4.def delete mode 100644 eccodes/definitions.save/grib3/template.component.8.0.def delete mode 100644 eccodes/definitions.save/grib3/template.component.8.1.def delete mode 100644 eccodes/definitions.save/grib3/template.component.9.0.def delete mode 100644 eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def delete mode 100644 eccodes/definitions.save/grib3/tiggeLocalVersion.table delete mode 100644 eccodes/definitions.save/grib3/tigge_name.def delete mode 100644 eccodes/definitions.save/grib3/tigge_parameter.def delete mode 100644 eccodes/definitions.save/grib3/tigge_short_name.def delete mode 100644 eccodes/definitions.save/grib3/tigge_suiteName.table delete mode 100644 eccodes/definitions.save/grib3/units.def delete mode 100644 eccodes/definitions.save/mars_param.table delete mode 100644 eccodes/definitions.save/param_id.table delete mode 100644 eccodes/definitions.save/param_limits.def delete mode 100644 eccodes/definitions.save/parameters_version.def delete mode 100644 eccodes/definitions.save/stepUnits.table diff --git a/eccodes/definitions.save/boot.def b/eccodes/definitions.save/boot.def deleted file mode 100644 index 22edf96e..00000000 --- a/eccodes/definitions.save/boot.def +++ /dev/null @@ -1,122 +0,0 @@ -# (C) Copyright 2005- 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. -# -include "parameters_version.def"; -constant definitionFilesVersion="2.0.0.0" : hidden; -constant internalVersion=30 : hidden; -meta checkInternalVersion check_internal_version(internalVersion) : hidden; - -# ECC-806: Local concepts precedence order -transient preferLocalConcepts = 0 : hidden; - -constant defaultTypeOfLevel="unknown" : hidden; - -gribDataQualityChecks = getenv("ECCODES_GRIB_DATA_QUALITY_CHECKS","0") : hidden; -if (gribDataQualityChecks) { - template LIMITS "param_limits.def"; -} - -# GRIBEX special boustrophedonic mode. See GRIB-472 -# If the environment variable is not defined, the key will be 0 -GRIBEX_boustrophedonic = getenv("ECCODES_GRIBEX_BOUSTROPHEDONIC","0") :hidden; - -constant zero=0 : hidden; -constant one=1 : hidden; -constant hundred=100 : hidden; -transient truncateLaplacian=0 : hidden; -constant marsDir="mars" : no_copy,hidden; -constant present=1 : hidden; -# alias epsStatistics=zero : hidden; - -constant defaultParameter = 0 : hidden; -constant defaultName="unknown" :hidden; -constant defaultShortName="unknown" : hidden; -transient truncateDegrees=0 : hidden; -transient dummy = 1 :hidden; -constant unknown="unknown" : hidden; -constant oneConstant=1 : hidden; -constant thousand=1000 :hidden; -constant oneMillionConstant=1000000 : hidden; -constant grib1divider = 1000 : hidden; -meta offset offset_file() : hidden; -meta count count_file() : hidden; -meta countTotal count_total() : hidden; -transient file="unknown" : hidden; -transient changingPrecision=0 : hidden; -transient unitsFactor=1 : hidden; -transient unitsBias=0 : hidden; -constant globalDomain = "g"; -transient timeRangeIndicatorFromStepRange=-1 : hidden; - -# ECC-868 -transient produceLargeConstantFields = 0 : hidden; - -meta libraryVersion library_version() : hidden; - -lookup[4] kindOfProduct (0,identifier) : hidden; -# grib templates -# `ABCD` is a number, each letter being a byte - -if(kindOfProduct == `GRIB`){ - lookup[1] GRIBEditionNumber (7,editionNumber) : edition_specific ; - template GRIB "grib[GRIBEditionNumber:l]/boot.def" ; -} - -if(kindOfProduct == `BUDG` ){ - template BUDG "budg/boot.def" ; -} - -if(kindOfProduct == `DIAG`){ - template DIAG "diag/boot.def" ; -} - -if(kindOfProduct == `TIDE`){ - template TIDE "tide/boot.def" ; -} - -if(kindOfProduct == `BUFR`){ - template BUFR "bufr/boot.def" ; - #constant BUFRstr="BUFR"; #ECC-742 - #alias identifier=BUFRstr; -} - -if(kindOfProduct == `CDFX`){ - template CDF "cdf/boot.def" ; - constant CDFstr="netCDF"; - alias ls.identifier=CDFstr; -} - -if(kindOfProduct == 17632522 ){ - template GTS "gts/boot.def" ; - constant GTSstr="GTS"; - alias ls.identifier=GTSstr; -} - -if(kindOfProduct == `META` ){ - template METAR "metar/boot.def" ; - constant METARstr="METAR"; - alias identifier=METARstr; -} - -if(kindOfProduct == `TAF ` ){ - template TAF "taf/boot.def" ; - constant TAFstr="TAF"; - alias ls.identifier=TAFstr; -} - -if(kindOfProduct == 2303214662){ - template HDF5 "hdf5/boot.def" ; - constant HDF5str="HDF5"; - alias ls.identifier=HDF5str; -} - -if(kindOfProduct == `WRAP`){ - template WRAP "wrap/boot.def" ; - constant WRAPstr="WRAP"; - alias ls.identifier=WRAPstr; -} diff --git a/eccodes/definitions.save/common/c-1.table b/eccodes/definitions.save/common/c-1.table deleted file mode 100644 index 5abb3f8e..00000000 --- a/eccodes/definitions.save/common/c-1.table +++ /dev/null @@ -1,96 +0,0 @@ -# COMMON CODE TABLE C-1: Identification of originating/generating centre (GRIB1, BUFR3) -0 0 Absent -1 ammc Melbourne (WMC) -2 2 Melbourne (WMC) -4 rums Moscow (WMC) -5 5 Moscow (WMC) -7 kwbc US National Weather Service - NCEP (WMC) -8 8 US National Weather Service - NWSTG (WMC) -9 9 US National Weather Service - Other (WMC) -10 10 Cairo (RSMC/RAFC) -12 12 Dakar (RSMC/RAFC) -14 14 Nairobi (RSMC/RAFC) -16 16 Atananarivo (RSMC) -18 18 Tunis-Casablanca (RSMC) -20 20 Las Palmas (RAFC) -21 21 Algiers (RSMC) -22 22 Lagos (RSMC) -24 fapr Pretoria (RSMC) -26 26 Khabarovsk (RSMC) -28 vabb New Delhi (IMD) -29 dems New Delhi (NCMRWF) -30 30 Novosibirsk (RSMC) -32 32 Tashkent (RSMC) -33 33 Jeddah (RSMC) -34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) -36 36 Bankok -37 37 Ulan Bator -38 babj Beijing (RSMC) -40 rksl Seoul -41 sabm Buenos Aires (RSMC/RAFC) -43 43 Brasilia (RSMC/RAFC) -45 45 Santiago -46 sbsj Brasilian Space Agency - INPE -51 51 Miami (RSMC/RAFC) -52 52 National Hurricane Center, Miami -53 53 Canadian Meteorological Service - Montreal (RSMC) -54 cwao Canadian Meteorological Service - Montreal (RSMC) -55 55 San Francisco -57 57 U.S. Air Force - Global Weather Center -58 fnmo US Navy - Fleet Numerical Oceanography Center -59 59 NOAA Forecast Systems Lab, Boulder CO -60 60 National Center for Atmospheric Research (NCAR), Boulder, CO -64 64 Honolulu -65 65 Darwin (RSMC) -67 67 Melbourne (RSMC) -69 nzkl Wellington (RSMC/RAFC) -74 egrr U.K. Met Office - Exeter -76 76 Moscow (RSMC/RAFC) -78 edzw Offenbach (RSMC) -80 cnmc Rome (RSMC) -82 eswi Norrkoping -84 lfpw French Weather Service - Toulouse -85 lfpw French Weather Service - Toulouse -86 efkl Helsinki -87 87 Belgrade -88 enmi Oslo -89 89 Prague -90 90 Episkopi -91 91 Ankara -92 92 Frankfurt/Main (RAFC) -93 93 London (WAFC) -94 ekmi Copenhagen -95 95 Rota -96 96 Athens -97 97 European Space Agency (ESA) -98 ecmf European Centre for Medium-Range Weather Forecasts -99 99 DeBilt, Netherlands -110 110 Hong-Kong -160 160 US NOAA/NESDIS -173 nasa US National Aeronautics and Space Administration (NASA) -195 wiix Indonesia (NMC) -204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) -# 205-209 Reserved -210 210 Frascati (ESA/ESRIN) -211 211 Lannion -212 212 Lisboa -213 213 Reykjavik -214 lemm INM Madrid -215 lssw Zurich -216 216 Service ARGOS Toulouse -218 habp Budapest -224 lowm Austria -227 ebum Belgium (NMC) -233 eidb Dublin -235 ingv INGV -239 crfc CERFAX -244 vuwien VUWien -245 knmi KNMI -246 ifmk IfM-Kiel -247 hadc Hadley Centre -250 cosmo COnsortium for Small scale MOdelling (COSMO) -251 251 Meteorological Cooperation on Operational NWP (MetCoOp) -252 mpim Max Planck Institute for Meteorology (MPI-M) -254 eums EUMETSAT Operation Centre -# 255 Missing value -255 consensus Consensus diff --git a/eccodes/definitions.save/common/c-11.table b/eccodes/definitions.save/common/c-11.table deleted file mode 100644 index 0ad9780d..00000000 --- a/eccodes/definitions.save/common/c-11.table +++ /dev/null @@ -1,146 +0,0 @@ -# COMMON CODE TABLE C-11: Originating/generating centres (GRIB2, BUFR4) -0 0 WMO Secretariat -1 ammc Melbourne (WMC) -2 2 Melbourne (WMC) -4 rums Moscow (WMC) -5 5 Moscow (WMC) -7 kwbc US National Weather Service - NCEP (WMC) -8 8 US National Weather Service - NWSTG (WMC) -9 9 US National Weather Service - Other (WMC) -10 10 Cairo (RSMC/RAFC) -12 12 Dakar (RSMC/RAFC) -14 14 Nairobi (RSMC/RAFC) -16 16 Atananarivo (RSMC) -18 18 Tunis-Casablanca (RSMC) -20 20 Las Palmas (RAFC) -21 21 Algiers (RSMC) -22 22 Lagos (RSMC) -24 fapr Pretoria (RSMC) -26 26 Khabarovsk (RSMC) -28 vabb New Delhi (IMD) -29 dems New Delhi (NCMRWF) -30 30 Novosibirsk (RSMC) -32 32 Tashkent (RSMC) -33 33 Jeddah (RSMC) -34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) -36 36 Bankok -37 37 Ulan Bator -38 babj Beijing (RSMC) -40 rksl Seoul -41 sabm Buenos Aires (RSMC/RAFC) -43 43 Brasilia (RSMC/RAFC) -45 45 Santiago -46 sbsj Brasilian Space Agency - INPE -51 51 Miami (RSMC/RAFC) -52 52 National Hurricane Center, Miami -53 53 Canadian Meteorological Service - Montreal (RSMC) -54 cwao Canadian Meteorological Service - Montreal (RSMC) -55 55 San Francisco -57 57 U.S. Air Force - Global Weather Center -58 fnmo US Navy - Fleet Numerical Oceanography Center -59 59 NOAA Forecast Systems Lab, Boulder CO -60 60 National Center for Atmospheric Research (NCAR), Boulder, CO -64 64 Honolulu -65 65 Darwin (RSMC) -67 67 Melbourne (RSMC) -69 nzkl Wellington (RSMC/RAFC) -74 egrr U.K. Met Office - Exeter -76 76 Moscow (RSMC/RAFC) -78 edzw Offenbach (RSMC) -80 cnmc Rome (RSMC) -82 eswi Norrkoping -84 lfpw French Weather Service - Toulouse -85 lfpw French Weather Service - Toulouse -86 efkl Helsinki -87 87 Belgrade -88 enmi Oslo -89 89 Prague -90 90 Episkopi -91 91 Ankara -92 92 Frankfurt/Main (RAFC) -93 93 London (WAFC) -94 ekmi Copenhagen -95 95 Rota -96 96 Athens -97 97 European Space Agency (ESA) -98 ecmf European Centre for Medium-Range Weather Forecasts -99 99 DeBilt, Netherlands -110 110 Hong-Kong -160 160 US NOAA/NESDIS -173 nasa US National Aeronautics and Space Administration (NASA) -195 wiix Indonesia (NMC) -204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) -210 210 Frascati (ESA/ESRIN) -211 211 Lannion -212 212 Lisboa -213 213 Reykjavik -214 lemm INM Madrid -215 lssw Zurich -216 216 Service ARGOS Toulouse -217 217 Bratislava -218 habp Budapest -219 219 Ljubljana -220 220 Warsaw -221 221 Zagreb -222 222 Albania (NMC) -223 223 Armenia (NMC) -224 lowm Austria -227 ebum Belgium (NMC) -228 228 Bosnia and Herzegovina (NMC) -229 229 Bulgaria (NMC) -230 230 Cyprus (NMC) -231 231 Estonia (NMC) -232 232 Georgia (NMC) -233 eidb Dublin -234 234 Israel (NMC) -235 ingv INGV -239 crfc CERFAX -240 240 Malta (NMC) -241 241 Monaco -242 242 Romania (NMC) -244 vuwien VUWien -245 knmi KNMI -246 ifmk IfM-Kiel -247 hadc Hadley Centre -250 cosmo COnsortium for Small scale MOdelling (COSMO) -251 251 Meteorological Cooperation on Operational NWP (MetCoOp) -252 mpim Max Planck Institute for Meteorology (MPI-M) -254 eums EUMETSAT Operation Centre -255 consensus Consensus -256 256 Angola (NMC) -257 257 Benin (NMC) -258 258 Botswana (NMC) -259 259 Burkina Faso (NMC) -260 260 Burundi (NMC) -261 261 Cameroon (NMC) -262 262 Cabo Verde (NMC) -263 263 Central African Republic (NMC) -264 264 Chad (NMC) -265 265 Comoros (NMC) -266 266 Democratic Republic of the Congo (NMC) -267 267 Djibouti (NMC) -268 268 Eritrea (NMC) -269 269 Ethiopia (NMC) -270 270 Gabon (NMC) -271 271 Gambia (NMC) -272 272 Ghana (NMC) -273 273 Guinea (NMC) -274 274 Guinea-Bissau (NMC) -275 275 Lesotho (NMC) -276 276 Liberia (NMC) -277 277 Malawi (NMC) -278 278 Mali (NMC) -279 279 Mauritania (NMC) -280 280 Namibia (NMC) -281 281 Nigeria (NMC) -282 282 Rwanda (NMC) -283 283 Sao Tome and Principe (NMC) -284 284 Sierra Leone (NMC) -285 285 Somalia (NMC) -286 286 Sudan (NMC) -287 287 Swaziland (NMC) -288 288 Togo (NMC) -289 289 Zambia (NMC) -291 iapc Institute of Atmospheric Physics (Chinese Academy of Sciences) - -65535 65535 Missing value diff --git a/eccodes/definitions.save/common/statistics_grid.def b/eccodes/definitions.save/common/statistics_grid.def deleted file mode 100644 index b99ed628..00000000 --- a/eccodes/definitions.save/common/statistics_grid.def +++ /dev/null @@ -1,33 +0,0 @@ -# (C) Copyright 2005- 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. -# - -meta dirty_statistics dirty(computeStatistics) ; -when (changed(values)) { set dirty_statistics=1;} - -meta computeStatistics statistics(missingValue,values); - -meta maximum vector(computeStatistics,0) : dump; -meta minimum vector(computeStatistics,1) : dump; -meta average vector(computeStatistics,2) : dump; -#meta numberOfMissing vector(computeStatistics,3) : dump; -meta numberOfMissing count_missing(bitmap,unusedBitsInBitmap,numberOfDataPoints) : dump; -meta standardDeviation vector(computeStatistics,4) : dump; -meta skewness vector(computeStatistics,5) : dump; -meta kurtosis vector(computeStatistics,6) : dump; -meta isConstant vector(computeStatistics,7) : dump; - -alias numberOfMissingValues=numberOfMissing; - -alias statistics.avg = average; -alias statistics.max = maximum; -alias statistics.min = minimum; -alias statistics.sd = standardDeviation; -alias statistics.skew = skewness; -alias statistics.kurt = kurtosis; -alias statistics.const = isConstant; diff --git a/eccodes/definitions.save/common/statistics_spectral.def b/eccodes/definitions.save/common/statistics_spectral.def deleted file mode 100644 index 47dc27bb..00000000 --- a/eccodes/definitions.save/common/statistics_spectral.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- 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. -# - -meta dirty_statistics dirty(computeStatistics) ; -when (changed(values)) { set dirty_statistics=1;} - -meta computeStatistics statistics_spectral(values,J,K,M,JS) : hidden; - -meta average vector(computeStatistics,0) : dump; -meta energyNorm vector(computeStatistics,1) : dump; -meta standardDeviation vector(computeStatistics,2) : dump; -meta isConstant vector(computeStatistics,3) : dump; - -alias statistics.avg = average; -alias statistics.enorm = energyNorm; -alias statistics.sd = standardDeviation; -alias statistics.const = isConstant; - diff --git a/eccodes/definitions.save/empty_template.def b/eccodes/definitions.save/empty_template.def deleted file mode 100644 index f5da9a36..00000000 --- a/eccodes/definitions.save/empty_template.def +++ /dev/null @@ -1,2 +0,0 @@ -label "_x"; - diff --git a/eccodes/definitions.save/grib1/0.ecmf.table b/eccodes/definitions.save/grib1/0.ecmf.table deleted file mode 100644 index ed377f0a..00000000 --- a/eccodes/definitions.save/grib1/0.ecmf.table +++ /dev/null @@ -1 +0,0 @@ -# Code table 0: Identification of centres diff --git a/eccodes/definitions.save/grib1/0.eidb.table b/eccodes/definitions.save/grib1/0.eidb.table deleted file mode 100644 index 2ddd75cf..00000000 --- a/eccodes/definitions.save/grib1/0.eidb.table +++ /dev/null @@ -1,4 +0,0 @@ -# identification of subcenters for eidb centre (Met Eireann) -0 dub Dublin -1 snn Shannon -255 miss Missing diff --git a/eccodes/definitions.save/grib1/0.eswi.table b/eccodes/definitions.save/grib1/0.eswi.table deleted file mode 100644 index e0177d63..00000000 --- a/eccodes/definitions.save/grib1/0.eswi.table +++ /dev/null @@ -1,10 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# identification of subcenters for eswi centre (SMHI) -0 none not set -96 96 HIRLAM data (non-standard, deprecated) -98 98 previously used to tag SMHI data that is ECMWF compliant (deprecated) diff --git a/eccodes/definitions.save/grib1/0.rjtd.table b/eccodes/definitions.save/grib1/0.rjtd.table deleted file mode 100644 index ba292579..00000000 --- a/eccodes/definitions.save/grib1/0.rjtd.table +++ /dev/null @@ -1,5 +0,0 @@ -# identification of subcenters for Japan -0 none No sub-centre -207 207 Syowa -240 240 Kiyose -241 241 Reanalysis Project diff --git a/eccodes/definitions.save/grib1/1.table b/eccodes/definitions.save/grib1/1.table deleted file mode 100644 index 7dc22b12..00000000 --- a/eccodes/definitions.save/grib1/1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 1, Flag indication relative to section 2 and 3 -1 0 Section 2 omited -1 1 Section 2 included -2 0 Section 3 omited -2 1 Section 3 included diff --git a/eccodes/definitions.save/grib1/10.table b/eccodes/definitions.save/grib1/10.table deleted file mode 100644 index cd51461a..00000000 --- a/eccodes/definitions.save/grib1/10.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 10, Coefficient Storage Mode -1 1 The complex coefficients Xnm are stored for m>0 as pairs of real numbers -2 2 Spherical harmonics-complex packing -3 3 Spherical harmonics ieee packing diff --git a/eccodes/definitions.save/grib1/11-2.table b/eccodes/definitions.save/grib1/11-2.table deleted file mode 100644 index ef1c3c1b..00000000 --- a/eccodes/definitions.save/grib1/11-2.table +++ /dev/null @@ -1,34 +0,0 @@ -# CODE TABLE 11-2, Flag - -# Undocumented use of octet 14 extededFlags -# Taken from d2ordr.F -# R------- only bit 1 is reserved. -# -0------ single datum at each grid point. -# -1------ matrix of values at each grid point. -# --0----- no secondary bit map. -# --1----- secondary bit map present. -# ---0---- second order values have constant width. -# ---1---- second order values have different widths. -# ----0--- no general extended second order packing. -# ----1--- general extended second order packing used. -# -----0-- standard field ordering in section 4. -# -----1-- boustrophedonic ordering in section 4. - - -1 0 Reserved -1 1 Reserved -2 0 Single datum at each grid point -2 1 Matrix of values at each grid point -3 0 No secondary bitmap Present -3 1 Secondary bitmap Present -4 0 Second-order values constant width -4 1 Second-order values different widths -5 0 no general extended second order packing -5 1 general extended second order packing used -6 0 standard field ordering in section 4 -6 1 boustrophedonic ordering in section 4 -# ------00 no spatial differencing used. -# ------01 1st-order spatial differencing used. -# ------10 2nd-order " " " . -# ------11 3rd-order " " " . - diff --git a/eccodes/definitions.save/grib1/11.table b/eccodes/definitions.save/grib1/11.table deleted file mode 100644 index ec5376c1..00000000 --- a/eccodes/definitions.save/grib1/11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 11, Flag -1 0 Grid-point data -1 1 Spherical harmonic coefficients -2 0 Simple packing -2 1 Complex or second-order packing -3 0 Floating point values are represented -3 1 Integer values are represented -4 0 No additional flags at octet 14 -4 1 Octet 14 contains additional flag bits diff --git a/eccodes/definitions.save/grib1/12.table b/eccodes/definitions.save/grib1/12.table deleted file mode 100644 index a72a64c3..00000000 --- a/eccodes/definitions.save/grib1/12.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 12, matrix coordinates values functions -0 0 Explicit co-ordinate values sent -1 1 Linear co-cordinates -2 2 Log co-ordinates -3 3 Reserved -4 4 Reserved -5 5 Reserved -6 6 Reserved -7 7 Reserved -8 8 Reserved -9 9 Reserved -10 10 Reserved -11 11 Geometric Co-ordinates diff --git a/eccodes/definitions.save/grib1/13.table b/eccodes/definitions.save/grib1/13.table deleted file mode 100644 index e4724a01..00000000 --- a/eccodes/definitions.save/grib1/13.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 13, matrix coordinates parameter -1 1 Direction -2 2 Frequency -3 3 Radial number diff --git a/eccodes/definitions.save/grib1/2.0.1.table b/eccodes/definitions.save/grib1/2.0.1.table deleted file mode 100644 index 70df87f8..00000000 --- a/eccodes/definitions.save/grib1/2.0.1.table +++ /dev/null @@ -1,129 +0,0 @@ -1 p P Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 3 None Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 5 None ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 9 None Standard deviation of height m -10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) -11 t T Temperature K -12 12 None Virtual temperature K -13 13 None Potential temperature K -14 14 None Pseudo-adiabatic potential temperature K -15 15 None Maximum temperature K -16 16 None Minimum temperature K -17 17 None Dew-point temperature K -18 18 None Dew-point depression (or deficit) K -19 19 None Lapse rate K s**-1 -20 20 None Visibility m -21 21 None Radar spectra (1) - -22 22 None Radar spectra (2) - -23 23 None Radar spectra (3) - -24 24 None Parcel lifted index (to 500 hPa) K -25 25 None Temperature anomaly K -26 26 None Pressure anomaly Pa -27 27 None Geopotential height anomaly gpm -28 28 None Wave spectra (1) - -29 29 None Wave spectra (2) - -30 30 None Wave spectra (3) - -31 31 None Wind direction Degree true -32 32 None Wind speed m s**-1 -33 u U U-component of wind m s**-1 -34 v V V-component of wind m s**-1 -35 35 None Stream Function m**2 s**-1 -36 36 None Velocity Potential m**2 s**-1 -37 37 None Montgomery stream Function m**2 s**-1 -38 38 None Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 40 None Vertical velocity m s**-1 -41 41 None Absolute vorticity s**-1 -42 42 None Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 45 None Vertical u-component shear s**-1 -46 46 None Vertical v-component shear s**-1 -47 47 None Direction of current Degree true -48 48 None Speed of current m s**-1 -49 49 None U-component of current m s**-1 -50 50 None V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 53 None Humidity mixing ratio kg m**-2 -54 54 None Precipitable water kg m**-2 -55 55 None Vapour pressure Pa -56 56 None Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 59 None Precipitation rate kg m**-2 s**-1 -60 60 None Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 62 LSP Large scale precipitation kg m**-2 -63 63 None Convective precipitation (water) kg m**-2 -64 64 None Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalentof accumulated snow depth kg m**-2 -66 sd SD Snow depth m (of water equivalent) -67 67 None Mixed layer depth m -68 68 None Transient thermocline depth m -69 69 None Main thermocline depth m -70 70 None Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 clwc CLWC Cloud liquid water content kg kg**-1 -77 77 None Best lifted index (to 500 hPa) K -78 csf CSF Convective snow-fall kg m**-2 -79 lsf LSF Large scale snow-fall kg m**-2 -80 80 None Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 82 None Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Surface temperature of soil K -86 ssw SSW Soil moisture content kg m**-2 -87 veg VEG Percentage of vegetation % -88 88 None Salinity kg kg**-1 -89 89 None Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 91 None Ice cover (1=land, 0=sea) (0 - 1) -92 92 None Ice thickness m -93 93 None Direction of ice drift Degree true -94 94 None Speed of ice drift m s*-1 -95 95 None U-component of ice drift m s**-1 -96 96 None V-component of ice drift m s**-1 -97 97 None Ice growth rate m s**-1 -98 98 None Ice divergence s**-1 -99 99 None Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 104 None Direction of swell waves Degree true -105 105 None Significant height of swell waves m -106 106 None Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 109 None Secondary wave direction Degree true -110 110 None Secondary wave period s -111 111 None Net short-wave radiation flux (surface) W m**-2 -112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 -114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 -115 115 None Long-wave radiation flux W m**-2 -116 116 None Short-wave radiation flux W m**-2 -117 117 None Global radiation flux W m**-2 -118 118 None Brightness temperature K -119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 -120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF (surface) Latent heat flux W m**-2 -122 sshf SSHF (surface) Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 124 None Momentum flux, u-component N m**-2 -125 125 None Momentum flux, v-component N m**-2 -126 126 None Wind mixing energy J -127 127 None Image data - -160 160 Unknown -255 - - Indicates a missing value - diff --git a/eccodes/definitions.save/grib1/2.0.2.table b/eccodes/definitions.save/grib1/2.0.2.table deleted file mode 100644 index 4091acf5..00000000 --- a/eccodes/definitions.save/grib1/2.0.2.table +++ /dev/null @@ -1,128 +0,0 @@ -1 p P Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 3 None Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 5 None ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 9 None Standard deviation of height m -10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) -11 t T Temperature K -12 12 None Virtual temperature K -13 13 None Potential temperature K -14 14 None Pseudo-adiabatic potential temperature K -15 15 None Maximum temperature K -16 16 None Minimum temperature K -17 17 None Dew-point temperature K -18 18 None Dew-point depression (or deficit) K -19 19 None Lapse rate K s**-1 -20 20 None Visibility m -21 21 None Radar spectra (1) - -22 22 None Radar spectra (2) - -23 23 None Radar spectra (3) - -24 24 None Parcel lifted index (to 500 hPa) K -25 25 None Temperature anomaly K -26 26 None Pressure anomaly Pa -27 27 None Geopotential height anomaly gpm -28 28 None Wave spectra (1) - -29 29 None Wave spectra (2) - -30 30 None Wave spectra (3) - -31 31 None Wind direction Degree true -32 32 None Wind speed m s**-1 -33 u U U-component of wind m s**-1 -34 v V V-component of wind m s**-1 -35 35 None Stream Function m**2 s**-1 -36 36 None Velocity Potential m**2 s**-1 -37 37 None Montgomery stream Function m**2 s**-1 -38 38 None Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 40 None Vertical velocity m s**-1 -41 41 None Absolute vorticity s**-1 -42 42 None Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 45 None Vertical u-component shear s**-1 -46 46 None Vertical v-component shear s**-1 -47 47 None Direction of current Degree true -48 48 None Speed of current m s**-1 -49 49 None U-component of current m s**-1 -50 50 None V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 53 None Humidity mixing ratio kg m**-2 -54 54 None Precipitable water kg m**-2 -55 55 None Vapour pressure Pa -56 56 None Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 59 None Precipitation rate kg m**-2 s**-1 -60 60 None Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 62 LSP Large scale precipitation kg m**-2 -63 63 None Convective precipitation (water) kg m**-2 -64 64 None Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalentof accumulated snow depth kg m**-2 -66 sd SD Snow depth m (of water equivalent) -67 67 None Mixed layer depth m -68 68 None Transient thermocline depth m -69 69 None Main thermocline depth m -70 70 None Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 clwc CLWC Cloud liquid water content kg kg**-1 -77 77 None Best lifted index (to 500 hPa) K -78 csf CSF Convective snow-fall kg m**-2 -79 lsf LSF Large scale snow-fall kg m**-2 -80 80 None Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 82 None Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Surface temperature of soil K -86 ssw SSW Soil moisture content kg m**-2 -87 veg VEG Percentage of vegetation % -88 88 None Salinity kg kg**-1 -89 89 None Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 91 None Ice cover (1=land, 0=sea) (0 - 1) -92 92 None Ice thickness m -93 93 None Direction of ice drift Degree true -94 94 None Speed of ice drift m s*-1 -95 95 None U-component of ice drift m s**-1 -96 96 None V-component of ice drift m s**-1 -97 97 None Ice growth rate m s**-1 -98 98 None Ice divergence s**-1 -99 99 None Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 104 None Direction of swell waves Degree true -105 105 None Significant height of swell waves m -106 106 None Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 109 None Secondary wave direction Degree true -110 110 None Secondary wave period s -111 111 None Net short-wave radiation flux (surface) W m**-2 -112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 -114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 -115 115 None Long-wave radiation flux W m**-2 -116 116 None Short-wave radiation flux W m**-2 -117 117 None Global radiation flux W m**-2 -118 118 None Brightness temperature K -119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 -120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF (surface) Latent heat flux W m**-2 -122 sshf SSHF (surface) Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 124 None Momentum flux, u-component N m**-2 -125 125 None Momentum flux, v-component N m**-2 -126 126 None Wind mixing energy J -127 127 None Image data - -255 - - Indicates a missing value - diff --git a/eccodes/definitions.save/grib1/2.0.3.table b/eccodes/definitions.save/grib1/2.0.3.table deleted file mode 100644 index 70df87f8..00000000 --- a/eccodes/definitions.save/grib1/2.0.3.table +++ /dev/null @@ -1,129 +0,0 @@ -1 p P Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 3 None Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 5 None ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 9 None Standard deviation of height m -10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) -11 t T Temperature K -12 12 None Virtual temperature K -13 13 None Potential temperature K -14 14 None Pseudo-adiabatic potential temperature K -15 15 None Maximum temperature K -16 16 None Minimum temperature K -17 17 None Dew-point temperature K -18 18 None Dew-point depression (or deficit) K -19 19 None Lapse rate K s**-1 -20 20 None Visibility m -21 21 None Radar spectra (1) - -22 22 None Radar spectra (2) - -23 23 None Radar spectra (3) - -24 24 None Parcel lifted index (to 500 hPa) K -25 25 None Temperature anomaly K -26 26 None Pressure anomaly Pa -27 27 None Geopotential height anomaly gpm -28 28 None Wave spectra (1) - -29 29 None Wave spectra (2) - -30 30 None Wave spectra (3) - -31 31 None Wind direction Degree true -32 32 None Wind speed m s**-1 -33 u U U-component of wind m s**-1 -34 v V V-component of wind m s**-1 -35 35 None Stream Function m**2 s**-1 -36 36 None Velocity Potential m**2 s**-1 -37 37 None Montgomery stream Function m**2 s**-1 -38 38 None Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 40 None Vertical velocity m s**-1 -41 41 None Absolute vorticity s**-1 -42 42 None Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 45 None Vertical u-component shear s**-1 -46 46 None Vertical v-component shear s**-1 -47 47 None Direction of current Degree true -48 48 None Speed of current m s**-1 -49 49 None U-component of current m s**-1 -50 50 None V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 53 None Humidity mixing ratio kg m**-2 -54 54 None Precipitable water kg m**-2 -55 55 None Vapour pressure Pa -56 56 None Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 59 None Precipitation rate kg m**-2 s**-1 -60 60 None Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 62 LSP Large scale precipitation kg m**-2 -63 63 None Convective precipitation (water) kg m**-2 -64 64 None Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalentof accumulated snow depth kg m**-2 -66 sd SD Snow depth m (of water equivalent) -67 67 None Mixed layer depth m -68 68 None Transient thermocline depth m -69 69 None Main thermocline depth m -70 70 None Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 clwc CLWC Cloud liquid water content kg kg**-1 -77 77 None Best lifted index (to 500 hPa) K -78 csf CSF Convective snow-fall kg m**-2 -79 lsf LSF Large scale snow-fall kg m**-2 -80 80 None Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 82 None Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Surface temperature of soil K -86 ssw SSW Soil moisture content kg m**-2 -87 veg VEG Percentage of vegetation % -88 88 None Salinity kg kg**-1 -89 89 None Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 91 None Ice cover (1=land, 0=sea) (0 - 1) -92 92 None Ice thickness m -93 93 None Direction of ice drift Degree true -94 94 None Speed of ice drift m s*-1 -95 95 None U-component of ice drift m s**-1 -96 96 None V-component of ice drift m s**-1 -97 97 None Ice growth rate m s**-1 -98 98 None Ice divergence s**-1 -99 99 None Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 104 None Direction of swell waves Degree true -105 105 None Significant height of swell waves m -106 106 None Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 109 None Secondary wave direction Degree true -110 110 None Secondary wave period s -111 111 None Net short-wave radiation flux (surface) W m**-2 -112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 -114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 -115 115 None Long-wave radiation flux W m**-2 -116 116 None Short-wave radiation flux W m**-2 -117 117 None Global radiation flux W m**-2 -118 118 None Brightness temperature K -119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 -120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF (surface) Latent heat flux W m**-2 -122 sshf SSHF (surface) Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 124 None Momentum flux, u-component N m**-2 -125 125 None Momentum flux, v-component N m**-2 -126 126 None Wind mixing energy J -127 127 None Image data - -160 160 Unknown -255 - - Indicates a missing value - diff --git a/eccodes/definitions.save/grib1/2.128.table b/eccodes/definitions.save/grib1/2.128.table deleted file mode 100644 index 7d0b076b..00000000 --- a/eccodes/definitions.save/grib1/2.128.table +++ /dev/null @@ -1,255 +0,0 @@ -# CODE TABLE 2, 128 Flag indication relative to section 2 and 3 -001 001 STRF Stream function m**2 s**-1 - -002 002 VPOT Velocity potential m**2 s**-1 - -003 003 PT Potential temperature K - -004 004 EQPT Equivalent potential temperature K - -005 005 SEPT Saturated equivalent potential temperature K - -006 006 None Reserved for Metview - - -007 007 None Reserved for Metview - - -008 008 None Reserved for Metview - - -009 009 None Reserved for Metview - - -010 010 None Reserved for Metview - - -011 011 UDVW U component of divergent wind m s**-1 - -012 012 VDVW V component of divergent wind m s**-1 - -013 013 URTW U component of rotational wind m s**-1 - -014 014 VRTW V component of rotational wind m s**-1 - -015 015 None Reserved for Metview - - -016 016 None Reserved for Metview - - -017 017 None Reserved for Metview - - -018 018 None Reserved for Metview - - -019 019 None Reserved for Metview - - -020 020 None Reserved for Metview - - -021 021 UCTP Unbalanced component of temperature K - -022 022 UCLN Unbalanced component of logarithm of surface pressure - - -023 023 UCDV Unbalanced component of divergence s**-1 - -024 024 None Reserved for future unbalanced components - - -025 025 None Reserved for future unbalanced components - - -026 026 CL Lake cover (0-1) - -027 027 CVL Low vegetation cover (0-1) - -028 028 CVH High vegetation cover (0-1) - -029 029 TVL Type of low vegetation - Table index -030 030 TVH Type of high vegetation - Table index -031 031 CI Sea-ice cover (0-1) - -032 032 ASN Snow albedo (0-1) - -033 033 RSN Snow density kg m**-3 - -034 034 SSTK Sea surface temperature K K -035 035 ISTL1 Ice surface temperature layer 1 K - -036 036 ISTL2 Ice surface temperature layer 2 K - -037 037 ISTL3 Ice surface temperature layer 3 K - -038 038 ISTL4 Ice surface temperature layer 4 K - -039 039 SWVL1 Volumetric soil water layer 1 m**3 m**-3 - -040 040 SWVL2 Volumetric soil water layer 2 m**3 m**-3 - -041 041 SWVL3 Volumetric soil water layer 3 m**3 m**-3 - -042 042 SWVL4 Volumetric soil water layer 4 m**3 m**-3 - -043 043 SLT Soil type - - -044 044 ES Snow evaporation m of water Accumulated field -045 045 SMLT Snowmelt m of water Accumulated field -046 046 SDUR Solar duration s - -047 047 DSRP Direct solar radiation w m**-2 Incident on a plane perpendicular to the Sun's direction -048 048 MAGSS Magnitude of surface stress N m**-2 s Accumulated field -049 049 10FG 10 metre wind gust m s**-1 Maximum since previous post-processing -050 050 LSPF Large-scale precipitation fraction s Accumulated field -051 051 MX2T24 Maximum 2 metre temperature K During previous 24 hours -052 052 - Minimum 2 metre temperature K During previous 24 hours -053 053 MONT Montgomery potential m**2 s**-2 - -054 054 PRES Pressure Pa - -055 055 - Mean 2 metre temperature in past 24 hours K 6-hourly intervals -056 056 MN2D24 Mean 2 metre dewpoint temperature in past 24 hours K 6-hourly intervals -57 57 UVB Downward UV radiation at the surface w m**-2 s Ultra-violet band B. Accumulated field. -58 58 PAR Photosynthetically active radiation at the surface w m**-2 s Accumulated field. -59 59 CAPE Convective available potential energy J kg**-1 - -060 060 PV Potential vorticity K m**2 kg**-1 s**-1 - -061 061 TPO Total precipitation from observations Millimetres*100 + number of stations Rainfall amount found by averaging over a number of observing stations -062 062 OBCT Observation count - Count of observations used in calculating value at a gridpoint -063 063 - Start time for skin temperature difference s Seconds from reference time -064 064 - Finish time for skin temperature difference s Seconds from reference time -065 065 - Skin temperature difference K - -066 066 - Leaf area index, low vegetation m**2 / m**2 - -067 067 - Leaf area index, high vegetation m**2 / m**2 - -068 068 - Minimum stomatal resistance, low vegetation s m**2 -069 069 - Minimum stomatal resistance, high vegetation s m**2 -070 070 - Biome cover, low vegetation [0,1] -071 071 - Biome cover, high vegetation [0,1] -72 72 - Unused -73 73 - Unused -74 74 - Unused -75 75 - Unused -76 76 - Unused -77 77 - Unused -78 78 TCLW Total column liquid water kg m**-2 -79 79 TCIW Total column ice water kg m**-2 -80 80 80 Experimental product Undefined Contents may vary -81 81 81 Experimental product Undefined Contents may vary -82 82 82 Experimental product Undefined Contents may vary -83 83 83 Experimental product Undefined Contents may vary -84 84 84 Experimental product Undefined Contents may vary -85 85 85 Experimental product Undefined Contents may vary -86 86 86 Experimental product Undefined Contents may vary -87 87 87 Experimental product Undefined Contents may vary -88 88 88 Experimental product Undefined Contents may vary -89 89 89 Experimental product Undefined Contents may vary -90 90 90 Experimental product Undefined Contents may vary -91 91 91 Experimental product Undefined Contents may vary -92 92 92 Experimental product Undefined Contents may vary -93 93 93 Experimental product Undefined Contents may vary -94 94 94 Experimental product Undefined Contents may vary -95 95 95 Experimental product Undefined Contents may vary -96 96 96 Experimental product Undefined Contents may vary -97 97 97 Experimental product Undefined Contents may vary -98 98 98 Experimental product Undefined Contents may vary -99 99 99 Experimental product Undefined Contents may vary -100 100 100 Experimental product Undefined Contents may vary -101 101 101 Experimental product Undefined Contents may vary -102 102 102 Experimental product Undefined Contents may vary -103 103 103 Experimental product Undefined Contents may vary -104 104 104 Experimental product Undefined Contents may vary -105 105 105 Experimental product Undefined Contents may vary -106 106 106 Experimental product Undefined Contents may vary -107 107 107 Experimental product Undefined Contents may vary -108 108 108 Experimental product Undefined Contents may vary -109 109 109 Experimental product Undefined Contents may vary -110 110 110 Experimental product Undefined Contents may vary -111 111 111 Experimental product Undefined Contents may vary -112 112 112 Experimental product Undefined Contents may vary -113 113 113 Experimental product Undefined Contents may vary -114 114 114 Experimental product Undefined Contents may vary -115 115 115 Experimental product Undefined Contents may vary -116 116 116 Experimental product Undefined Contents may vary -117 117 117 Experimental product Undefined Contents may vary -118 118 118 Experimental product Undefined Contents may vary -119 119 119 Experimental product Undefined Contents may vary -121 121 MX2T6 Maximum temperature at 2 metres K During previous 6 hours -122 122 MN2T6 Minimum temperature at 2 metres K During previous 6 hours -123 123 10FG6 10 metre wind gust m s**-1 During previous 6 hours -124 124 - Unused - - -125 125 - Vertically integrated total energy J m**-2 Integrated over a number of model levels -126 126 - Generic parameter for sensitive area prediction Various Originating centre dependent -127 127 AT Atmospheric tide - Not GRIB data -128 128 BV Budget values - Not GRIB data -129 129 Z Geopotential m**2 s**-2 At the surface: orography -130 130 T Temperature K - -131 131 U U velocity m s**-1 - -132 132 V V velocity m s**-1 - -133 133 Q Specific humidity kg kg**-1 - -134 134 SP Surface pressure Pa - -135 135 W Vertical velocity Pa s**-1 - -136 136 TCW Total column water kg m**-2 Liquid + ice + vapour -137 137 TCWV Total column water vapour kg m**-2 - -138 138 VO Vorticity (relative) s**-1 - -139 139 STL1 Soil temperature level 1 K Soil temperature (ST) before 19930804 -140 140 SWL1 Soil wetness level 1 m of water Surface soil wetness (SSW) before 19930804 -141 141 SD Snow depth m of water equivalent - -142 142 LSP Large scale precipitation m Accumulated field -143 143 CP Convective precipitation m Accumulated field -144 144 SF Snowfall (convective + stratiform) m of water equivalent Accumulated field -145 145 BLD Boundary layer dissipation W m**-2 s Accumulated field -146 146 SSHF Surface sensible heat flux W m**-2 s Accumulated field -147 147 SLHF Surface latent heat flux W m**-2 s Accumulated field -148 148 CHNK Charnock - Surface stress (SS) before 19980519 -149 149 SNR Surface net radiation W m**-2 s Accumulated field -150 150 TNR Top net radiation - - -151 151 MSL Mean sea level pressure Pa - -152 152 LNSP Logarithm of surface pressure - - -153 153 SWHR Short-wave heating rate K Accumulated field -154 154 LWHR Long-wave heating rate K Accumulated field -155 155 D Divergence s**-1 - -156 156 GH Height m Geopotential height -157 157 R Relative humidity % - -158 158 TSP Tendency of surface pressure Pa s**-1 - -159 159 BLH Boundary layer height m - -160 160 SDOR Standard deviation of orography - - -161 161 ISOR Anisotropy of sub-gridscale orography - - -162 162 ANOR Angle of sub-gridscale orography rad - -163 163 SLOR Slope of sub-gridscale orography - - -164 164 TCC Total cloud cover (0 - 1) - -165 165 10U 10 metre U wind component m s**-1 - -166 166 10V 10 metre V wind component m s**-1 - -167 167 2T 2 metre temperature K - -168 168 2D 2 metre dewpoint temperature K - -169 169 SSRD Surface solar radiation downwards W m**-2 s Accumulated field -170 170 STL2 Soil temperature level 2 K Deep soil temperature (DST) before 19930804 -171 171 SWL2 Soil wetness level 2 m of water Deep soil wetness (DSW) before 19930804. Scaled: depth surf water layer 7cm deep -172 172 LSM Land-sea mask (0, 1) - -173 173 SR Surface roughness m - -174 174 AL Albedo (0 - 1) - -175 175 STRD Surface thermal radiation downwards W m**-2 s Accumulated field -176 176 SSR Surface solar radiation W m**-2 s Accumulated field -177 177 STR Surface thermal radiation W m**-2 s Accumulated field -178 178 TSR Top solar radiation W m**-2 s Accumulated field -179 179 TTR Top thermal radiation W m**-2 s Accumulated field -180 180 EWSS East-West surface stress N m**-2 s Accumulated field -181 181 NSSS North-South surface stress N m**-2 s Accumulated field -182 182 E Evaporation m of water Accumulated field -183 183 STL3 Soil temperature level 3 K Climatological deep soil temperature (CDST) before 19930804 -184 184 SWL3 Soil wetness level 3 m of water Climatological deep soil wetness (CDSW) before 19930804.Scaled depth surf water 7cm deep -185 185 CCC Convective cloud cover (0 - 1) - -186 186 LCC Low cloud cover (0 - 1) - -187 187 MCC Medium cloud cover (0 - 1) - -188 188 HCC High cloud cover (0 - 1) - -189 189 SUND Sunshine duration s Accumulated field -190 190 EWOV East-West component of sub-grid orographic variance m**2 - -191 191 NSOV North-South component of sub-grid orographic variance m**2 - -192 192 NWOV North-West/South-East component of sub-grid orographic variance m**2 - -193 193 NEOV North-East/South-West component of sub-grid orographic variance m**2 - -194 194 BTMP Brightness temperature K - -195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s Accumulated field -196 196 MGWS Meridional component of gravity wave stress N m**-2 s Accumulated field -197 197 GWD Gravity wave dissipation W m**-2 s Accumulated field -198 198 SRC Skin reservoir content m of water - -199 199 VEG Vegetation fraction (0 - 1) - -200 200 VSO Variance of sub-gridscale orography m**2 - -201 201 MX2T Maximum temperature at 2 metres since previous post-processing K - -202 202 MN2T Minimum temperature at 2 metres since previous post-processing K - -203 203 O3 Ozone mass mixing ratio kg kg**-1 - -204 204 PAW Precipiation analysis weights - - -205 205 RO Runoff m Accumulated field -206 206 TCO3 Total column ozone kg m**-2 Before 20010612 was in Dobsons. 1 Dobson = 2.1415E-5 kg m**-2 -207 207 10SI 10 metre wind speed m s**-1 - -208 208 TSRC Top net solar radiation, clear sky W m**-2 s Accumulated field -209 209 TTRC Top net thermal radiation, clear sky W m**-2 s Accumulated field -210 210 SSRC Surface net solar radiation, clear sky W m**-2 s Accumulated field -211 211 STRC Surface net thermal radiation, clear sky W m**-2 s Accumulated field -212 212 SI Solar insolation W m**-2 s Accumulated field -213 213 - Unused - - -214 214 DHR Diabatic heating by radiation K - -215 215 DHVD Diabatic heating by vertical diffusion K - -216 216 DHCC Diabatic heating by cumulus convection K - -217 217 DHLC Diabatic heating large-scale condensation K - -218 218 VDZW Vertical diffusion of zonal wind m s**-1 - -219 219 VDMW Vertical diffusion of meridional wind m s**-1 - -220 220 EWGD East-West gravity wave drag tendency m s**-1 - -221 221 NSGD North-South gravity wave drag tendency m s**-1 - -222 222 CTZW Convective tendency of zonal wind m s**-1 - -223 223 CTMW Convective tendency of meridional wind m s**-1 - -224 224 VDH Vertical diffusion of humidity kg kg**-1 - -225 225 HTCC Humidity tendency by cumulus convection kg kg**-1 - -226 226 HTLC Humidity tendency large-scale condensation kg kg**-1 - -227 227 CRNH Change from removing negative humidity kg kg**-1 - -228 228 TP Total precipitation m Accumulated -229 229 IEWS Instantaneous X surface stress N m**-2 - -230 230 INSS Instantaneous Y surface stress N m**-2 - -231 231 ISHF Instantaneous surface heat flux W m**-2 - -232 232 IE Instantaneous moisture flux kg m**-2 s Evaporation -233 233 ASQ Apparent surface humidity kg kg**-1 - -234 234 LSRH Logarithm of surface roughness length for heat - - -235 235 SKT Skin temperature K - -236 236 STL4 Soil temperature level 4 K - -237 237 SWL4 Soil wetness level 4 m Scaled to depth of surface water layer 7cm deep -238 238 TSN Temperature of snow layer K - -239 239 CSF Convective snowfall m of water equivalent Accumulated field -240 240 LSF Large-scale snowfall m of water equivalent Accumulated field -241 241 ACF Accumulated cloud fraction tendency (-1 to 1) - -242 242 ALW Accumulated liquid water tendency (-1 to 1) - -243 243 FAL Forecast albedo (0 - 1) - -244 244 FSR Forecast surface roughness m - -245 245 FLSR Forecast log of surface roughness for heat - - -246 246 CLWC Cloud liquid water content kg kg**-1 - -247 247 CIWC Cloud ice water content kg kg**-1 - -248 248 CC Fraction of cloud cover (0 - 1) - -249 249 AIW Accumulated ice water tendency (-1 to 1) - -250 250 ICE Ice age 1,0 0 first-year, 1 multi-year -251 251 ATTE Adiabatic tendency of temperature K - -252 252 ATHE Adiabatic tendency of humidity kg kg**-1 - -253 253 ATZE Adiabatic tendency of zonal wind m s**-1 - -254 254 ATMW Adiabatic tendency of meridional wind m s**-1 - -255 255 - Indicates a missing value - - diff --git a/eccodes/definitions.save/grib1/2.233.1.table b/eccodes/definitions.save/grib1/2.233.1.table deleted file mode 100644 index a21c1c59..00000000 --- a/eccodes/definitions.save/grib1/2.233.1.table +++ /dev/null @@ -1,154 +0,0 @@ -0 Reserved RESERVED Reserved Reserved -1 pres PRES Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 ptend PTEND Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 icaht ICAHT ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 hstdv HSTDV Standard deviation of height m -10 tco3 TCO3 Total column ozone Dobson -11 t T Temperature K -12 vptmp VPTMP Virtual potential temperature K -13 pt PT Potential temperature K -14 papt PAPT Pseudo-adiabatic potential temperature K -15 tmax TMAX Maximum temperature K -16 tmin TMIN Minimum temperature K -17 td TD Dew point temperature K -18 depr DEPR Dew point depression (or deficit) K -19 lapr LAPR Lapse rate K m**-1 -20 vis VIS Visibility m -21 rdsp1 RDSP1 Radar spectra (1) - -22 rdsp2 RDSP2 Radar spectra (2) - -23 rdsp3 RDSP3 Radar spectra (3) - -24 pli PLI Parcel lifted index (to 500 hPa) K -25 ta TA Temperature anomaly K -26 presa PRESA Pressure anomaly Pa -27 gpa GPA Geopotential height anomaly gpm -28 wvsp1 WVSP1 Wave spectra (1) - -29 wvsp2 WVSP2 Wave spectra (2) - -30 wvsp3 WVSP3 Wave spectra (3) - -31 wdir WDIR Wind direction Degree true -32 ws WS Wind speed m s**-1 -33 u U u-component of wind m s**-1 -34 v V v-component of wind m s**-1 -35 strf STRF Stream function m2 s**-1 -36 vp VP Velocity potential m2 s**-1 -37 mntsf MNTSF Montgomery stream function m**2 s**-1 -38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 -39 w W Pressure Vertical velocity Pa s**-1 -40 tw TW Vertical velocity m s**-1 -41 absv ABSV Absolute vorticity s**-1 -42 absd ABSD Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 vucsh VUCSH Vertical u-component shear s**-1 -46 vvcsh VVCSH Vertical v-component shear s**-1 -47 dirc DIRC Direction of current Degree true -48 spc SPC Speed of current m s**-1 -49 ucurr UCURR U-component of current m s**-1 -50 vcurr VCURR V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 mixr MIXR Humidity mixing ratio kg kg**-1 -54 pwat PWAT Precipitable water kg m**-2 -55 vp VP Vapour pressure Pa -56 satd SATD Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 prate PRATE Precipitation rate kg m**-2 s**-1 -60 tstm TSTM Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 lsp LSP Large scale precipitation kg m**-2 -63 acpcp ACPCP Convective precipitation (water) kg m**-2 -64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalent of accumulated snow depth kg m**-2 -66 sd SD Snow depth m -67 mld MLD Mixed layer depth m -68 tthdp TTHDP Transient thermocline depth m -69 mthd MTHD Main thermocline depth m -70 mtha MTHA Main thermocline anomaly m -71 tcc TCC Total cloud cover (0 - 1) -72 ccc CCC Convective cloud cover (0 - 1) -73 lcc LCC Low cloud cover (0 - 1) -74 mcc MCC Medium cloud cover (0 - 1) -75 hcc HCC High cloud cover (0 - 1) -76 cwat CWAT Cloud water kg m**-2 -77 bli BLI Best lifted index (to 500 hPa) K -78 csf CSF Convective snowfall kg m**-2 -79 lsf LSF Large scale snowfall kg m**-2 -80 wtmp WTMP Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 dslm DSLM Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo % -85 st ST Soil temperature K -86 sm SM Soil moisture content kg m**-2 -87 veg VEG Vegetation % -88 s S Salinity kg kg**-1 -89 den DEN Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) -92 icetk ICETK Ice thickness m -93 diced DICED Direction of ice drift Degree true -94 siced SICED Speed of ice drift m s**-1 -95 uice UICE U-component of ice drift m s**-1 -96 vice VICE V-component of ice drift m s**-1 -97 iceg ICEG Ice growth rate m s**-1 -98 iced ICED Ice divergence s**-1 -99 snom SNOM Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean Direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 swdir SWDIR Direction of swell waves Degree true -105 swell SWELL Significant height of swell waves m -106 swper SWPER Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 dirsw DIRSW Secondary wave direction Degree true -110 swp SWP Secondary wave mean period s -111 nswrs NSWRS Net short-wave radiation flux (surface) W m**-2 -112 nlwrs NLWRS Net long-wave radiation flux (surface) W m**-2 -113 nswrt NSWRT Net short-wave radiation flux (atmosph.top) W m**-2 -114 nlwrt NLWRT Net long-wave radiation flux (atmosph.top) W m**-2 -115 lwavr LWAVR Long-wave radiation flux W m**-2 -116 swavr SWAVR Short-wave radiation flux W m**-2 -117 grad GRAD Global radiation flux W m**-2 -118 btmp BTMP Brightness temperature K -119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 -120 swrad SWRAD Radiance (with respect to wave length) W m-**3 sr**-1 -121 slhf SLHF Latent heat flux W m**-2 -122 sshf SSHF Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 uflx UFLX Momentum flux, u-component N m**-2 -125 vflx VFLX Momentum flux, v-component N m**-2 -126 wmixe WMIXE Wind mixing energy J -127 imgd IMGD Image data -128 mofl MOFL Momentum flux Pa -135 maxv MAXV Max wind speed (at 10m) m s**-1 -140 tland TLAND Temperature over land K -141 qland QLAND Specific humidity over land kg kg**-1 -142 rhland RHLAND Relative humidity over land Fraction -143 dptland DPTLAND Dew point over land K -160 slfr SLFR Slope fraction - -161 shfr SHFR Shadow fraction - -162 rsha RSHA Shadow parameter A - -163 rshb RSHB Shadow parameter B - -165 susl SUSL Surface slope - -166 skwf SKWF Sky wiew factor - -167 frasp FRASP Fraction of aspect - -190 asn ASN Snow albedo - -191 dsn DSN Snow density - -192 watcn WATCN Water on canopy level kg m**-2 -193 ssi SSI Surface soil ice m**3 m**-3 -195 sltyp SLTYP Soil type code - -196 fol FOL Fraction of lake - -197 fof FOF Fraction of forest - -198 fool FOOL Fraction of open land - -199 vgtyp VGTYP Vegetation type (Olsson land use) - -200 tke TKE Turbulent Kinetic Energy J kg**-1 -208 mssso MSSSO Maximum slope of smallest scale orography rad -209 sdsso SDSSO Standard deviation of smallest scale orography gpm -228 gust GUST Max wind gust m s**-1 diff --git a/eccodes/definitions.save/grib1/2.233.253.table b/eccodes/definitions.save/grib1/2.233.253.table deleted file mode 100644 index 2e2aad57..00000000 --- a/eccodes/definitions.save/grib1/2.233.253.table +++ /dev/null @@ -1,214 +0,0 @@ -1 pres PRES Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 ptend PTEND Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 icaht ICAHT ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 hstdv HSTDV Standard deviation of height m -10 tco3 TCO3 Total column ozone Dobson -11 t T Temperature K -12 vptmp VPTMP Virtual potential temperature K -13 pt PT Potential temperature K -14 papt PAPT Pseudo-adiabatic potential temperature K -15 tmax TMAX Maximum temperature K -16 tmin TMIN Minimum temperature K -17 td TD Dew point temperature K -18 depr DEPR Dew point depression (or deficit) K -19 lapr LAPR Lapse rate K m**-1 -20 vis VIS Visibility m -21 rdsp1 RDSP1 Radar spectra (1) - -22 rdsp2 RDSP2 Radar spectra (2) - -23 rdsp3 RDSP3 Radar spectra (3) - -24 pli PLI Parcel lifted index (to 500 hPa) K -25 ta TA Temperature anomaly K -26 presa PRESA Pressure anomaly Pa -27 gpa GPA Geopotential height anomaly gpm -28 wvsp1 WVSP1 Wave spectra (1) - -29 wvsp2 WVSP2 Wave spectra (2) - -30 wvsp3 WVSP3 Wave spectra (3) - -31 wdir WDIR Wind direction Degree true -32 ws WS Wind speed m s**-1 -33 u U u-component of wind m s**-1 -34 v V v-component of wind m s**-1 -35 strf STRF Stream function m2 s**-1 -36 vp VP Velocity potential m2 s**-1 -37 mntsf MNTSF Montgomery stream function m**2 s**-1 -38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 -39 w W Pressure Vertical velocity Pa s**-1 -40 tw TW Vertical velocity m s**-1 -41 absv ABSV Absolute vorticity s**-1 -42 absd ABSD Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 vucsh VUCSH Vertical u-component shear s**-1 -46 vvcsh VVCSH Vertical v-component shear s**-1 -47 dirc DIRC Direction of current Degree true -48 spc SPC Speed of current m s**-1 -49 ucurr UCURR U-component of current m s**-1 -50 vcurr VCURR V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 mixr MIXR Humidity mixing ratio kg kg**-1 -54 pwat PWAT Precipitable water kg m**-2 -55 vp VP Vapour pressure Pa -56 satd SATD Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 prate PRATE Precipitation rate kg m**-2 s**-1 -60 tstm TSTM Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 lsp LSP Large scale precipitation kg m**-2 -63 acpcp ACPCP Convective precipitation (water) kg m**-2 -64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalent of accumulated snow depth kg m**-2 -66 sd SD Snow depth m -67 mld MLD Mixed layer depth m -68 tthdp TTHDP Transient thermocline depth m -69 mthd MTHD Main thermocline depth m -70 mtha MTHA Main thermocline anomaly m -71 tcc TCC Total cloud cover (0 - 1) -72 ccc CCC Convective cloud cover (0 - 1) -73 lcc LCC Low cloud cover (0 - 1) -74 mcc MCC Medium cloud cover (0 - 1) -75 hcc HCC High cloud cover (0 - 1) -76 cwat CWAT Cloud water kg m**-2 -77 bli BLI Best lifted index (to 500 hPa) K -78 csf CSF Convective snowfall kg m**-2 -79 lsf LSF Large scale snowfall kg m**-2 -80 wtmp WTMP Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 dslm DSLM Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Soil temperature K -86 sm SM Soil moisture content kg m**-2 -87 veg VEG Vegetation % -88 s S Salinity kg kg**-1 -89 den DEN Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) -92 icetk ICETK Ice thickness m -93 diced DICED Direction of ice drift Degree true -94 siced SICED Speed of ice drift m s**-1 -95 uice UICE U-component of ice drift m s**-1 -96 vice VICE V-component of ice drift m s**-1 -97 iceg ICEG Ice growth rate m s**-1 -98 iced ICED Ice divergence s**-1 -99 snom SNOM Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 swdir SWDIR Direction of swell waves Degree true -105 swell SWELL Significant height of swell waves m -106 swper SWPER Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 dirsw DIRSW Secondary wave direction Degree true -110 swp SWP Secondary wave mean period s -111 nswrs NSWRS Net short-wave radiation flux (surface) W m**-2 -112 nlwrs NLWRS Net long-wave radiation flux (surface) W m**-2 -113 nswrt NSWRT Net short-wave radiation flux (atmosph.top) W m**-2 -114 nlwrt NLWRT Net long-wave radiation flux (atmosph.top) W m**-2 -115 lwavr LWAVR Long-wave radiation flux W m**-2 -116 swavr SWAVR Short-wave radiation flux W m**-2 -117 grad GRAD Global radiation flux W m**-2 -118 btmp BTMP Brightness temperature K -119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 -120 swrad SWRAD Radiance (with respect to wave length) W m-**3 sr**-1 -121 slhf SLHF Latent heat flux W m**-2 -122 sshf SSHF Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 uflx UFLX Momentum flux, u-component N m**-2 -125 vflx VFLX Momentum flux, v-component N m**-2 -126 wmixe WMIXE Wind mixing energy J -127 imgd IMGD Image data - -128 armsp ARMSP Analysed RMS of PHI (CANARI) m**2 s**-2 -129 frmsp FRMSP Forecast RMS of PHI (CANARI) m**2 s**-2 -130 cssw CSSW SW net clear sky rad W m**-2 -131 cslw CSLW LW net clear sky rad W m**-2 -132 lhe LHE Latent heat flux through evaporation W m**-2 -133 msca MSCA Mask of significant cloud amount s**-1 -135 icei ICEI Icing index - -136 psct PSCT Pseudo satellite image: cloud top temperature (infrared) - -137 pstb PSTB Pseudo satellite image: water vapour Tb - -138 pstbc PSTBC Pseudo satellite image: water vapour Tb + correction for clouds - -139 pscw PSCW Pseudo satellite image: cloud water reflectivity (visible) - -140 dni DNI Direct normal irradiance W m**-2 -144 prtp PRTP Precipitation Type - -158 mrad MRAD Surface downward moon radiation - -160 cape CAPE CAPE out of the model J kg-1 -161 xhail XHAIL AROME hail diagnostic kg m**-2 -162 ugst UGST Gust, u-component m s*-1 -163 vgst VGST Gust, v-component m s*-1 -166 mcn MCN MOCON out of the model kg kg**-1 s**-1 -167 totqv TOTQV Total water vapour kg kg**-1 -170 bt_oz_cs BT_OZ_CS Brightness temperature OZ clear K -171 bt_oz_cl BT_OZ_CL Brightness temperature OZ cloud K -172 bt_ir_cs BT_IR_CS Brightness temperature IR clear K -173 bt_ir_cl BT_IR_CL Brightness temperature IR cloud K -174 bt_wv_cs BT_WV_CS Brightness temperature WV clear K -175 bt_wv_cl BT_WV_CL Brightness temperature WV cloud K -181 rain RAIN Rain kg m**-2 -182 srain SRAIN Stratiform rain kg m**-2 -183 cr CR Convective rain kg m**-2 -184 snow SNOW Snow kg m**-2 -185 tpsolid TPSOLID Total solid precipitation kg m**-2 -186 cb CB Cloud base m -187 ct CT Cloud top m -188 ful FUL Fraction of urban land % -190 asn ASN Snow albedo (0-1) -191 rsn RSN Snow density kg m**-3 -192 w_i W_I Water on canopy (Interception content) kg m**-2 -193 w_so_ice W_SO_ICE Soil ice kg m**-2 -195 gwdu GWDU Gravity wave stress U-comp kg m**-1 s**-1 -196 gwdv GWDV Gravity wave stress V-comp kg m**-1 s**-1 -200 tke TKE TKE m**2 s**-2 -201 grpl GRPL Graupel kg m**-2 -204 hail HAIL Hail kg m**-2 -210 refl REFL Simulated reflectivity dBz -211 lgt LGT Lightning - -212 pdep PDEP Pressure departure Pa -213 vdiv VDIV Vertical Divergence s**-1 -214 upom UPOM Updraft omega ms*-1 -215 dnom DNOM Downdraft omega ms*-1 -216 upmf UPMF Updraft mesh fraction - -217 dnmf DNMF Downdraft mesh fraction - -219 alns ALNS Surface albedo for non snow covered areas - -220 stdo STDO Standard deviation of orography * g m**2s**-2 -221 atop ATOP Anisotropy coeff of topography rad -222 dtop DTOP Direction of main axis of topography - -223 srbs SRBS Roughness length of bare surface * g m2 2**-2 -224 srveg SRVEG Roughness length for vegetation * g m2 2**-2 -225 clfr CLFR Fraction of clay within soil - -226 slfr SLFR Fraction of sand within soil - -227 vegmax VEGMAX Maximum - of vegetation - -228 fg FG Gust m s**-1 -229 alb ALB Albedo of bare ground - -230 alv ALV Albedo of vegetation - -231 smnr SMNR Stomatal minimum resistance s m**-1 -232 lai LAI Leaf area index m**2 m**-2 -234 dvi DVI Dominant vegetation index - -235 se SE Surface emissivity - -236 sdmax SDMAX Maximum soil depth m -237 sld SLD Soil depth m -238 swv SWV Soil wetness kg m**-2 -239 zt ZT Thermal roughness length * g m -240 rev REV Resistance to evapotransiration s m**-1 -241 rmn RMN Minimum relative moisture at 2 meters - -242 rmx RMX Maximum relative moisture at 2 meters - -243 dutp DUTP Duration of total precipitation s -244 lhsub LHSUB Latent Heat Sublimation J kg**-1 -245 wevap WEVAP Water evaporation kg m**-2 -246 snsub SNSUB Snow Sublimation kg m**-2 -247 shis SHIS Snow history ??? -248 ao AO A Ozone kg kg**-1 -249 bo BO B Ozone kg kg**-1 -250 co CO C Ozone kg kg**-1 -251 aers AERS Surface aerosol sea kg kg**-1 -252 aerl AERL Surface aerosol land kg kg**-1 -253 aerc AERC Surface aerosol soot (carbon) kg kg**-1 -254 aerd AERD Surface aerosol desert kg kg**-1 -255 - - Missing diff --git a/eccodes/definitions.save/grib1/2.253.128.table b/eccodes/definitions.save/grib1/2.253.128.table deleted file mode 100644 index 74662638..00000000 --- a/eccodes/definitions.save/grib1/2.253.128.table +++ /dev/null @@ -1,253 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 STRF Stream function m**2 s**-1 -2 2 VPOT Velocity potential m**2 s**-1 -3 3 PT Potential temperature K -4 4 EQPT Equivalent potential temperature K -5 5 SEPT Saturated equivalent potential temperature K -6 6 SSFR Soil sand fraction (0 - 1) -7 7 SCFR Soil clay fraction (0 - 1) -8 8 SRO Surface runoff m -9 9 SSRO Sub-surface runoff m -10 10 WIND Wind speed m s**-1 -11 11 UDVW U component of divergent wind m s**-1 -12 12 VDVW V component of divergent wind m s**-1 -13 13 URTW U component of rotational wind m s**-1 -14 14 VRTW V component of rotational wind m s**-1 -15 15 ALUVP UV visible albedo for direct radiation (0 - 1) -16 16 ALUVD UV visible albedo for diffuse radiation (0 - 1) -17 17 ALNIP Near IR albedo for direct radiation (0 - 1) -18 18 ALNID Near IR albedo for diffuse radiation (0 - 1) -19 19 UVCS Clear sky surface UV W m**-2 s -20 20 PARCS Clear sky surface photosynthetically active radiation W m**-2 s -21 21 UCTP Unbalanced component of temperature K -22 22 UCLN Unbalanced component of logarithm of surface pressure -23 23 UCDV Unbalanced component of divergence s**-1 -24 24 - Reserved for future unbalanced components -25 25 - Reserved for future unbalanced components -26 26 CL Lake cover (0 - 1) -27 27 CVL Low vegetation cover (0 - 1) -28 28 CVH High vegetation cover (0 - 1) -29 29 TVL Type of low vegetation -30 30 TVH Type of high vegetation -31 31 CI Sea-ice cover (0 - 1) -32 32 ASN Snow albedo (0 - 1) -33 33 RSN Snow density kg m**-3 -34 34 SSTK Sea surface temperature K -35 35 ISTL1 Ice surface temperature layer 1 K -36 36 ISTL2 Ice surface temperature layer 2 K -37 37 ISTL3 Ice surface temperature layer 3 K -38 38 ISTL4 Ice surface temperature layer 4 K -39 39 SWVL1 Volumetric soil water layer 1 m**3 m**-3 -40 40 SWVL2 Volumetric soil water layer 2 m**3 m**-3 -41 41 SWVL3 Volumetric soil water layer 3 m**3 m**-3 -42 42 SWVL4 Volumetric soil water layer 4 m**3 m**-3 -43 43 SLT Soil type -44 44 ES Snow evaporation m of water -45 45 SMLT Snowmelt m of water -46 46 SDUR Solar duration s -47 47 DSRP Direct solar radiation w m**-2 -48 48 MAGSS Magnitude of surface stress N m**-2 s -49 49 10FG 10 metre wind gust m s**-1 -50 50 LSPF Large-scale precipitation fraction s -51 51 MX2T24 Maximum temperature at 2 metres since last 24 hours K -52 52 MN2T24 Minimum temperature at 2 metres since last 24 hours K -53 53 MONT Montgomery potential m**2 s**-2 -54 54 PRES Pressure Pa -55 55 MEAN2T24 Mean temperature at 2 metres since last 24 hours K -56 56 MN2D24 Mean 2 metre dewpoint temperature in past 24 hours K -57 57 UVB Downward UV radiation at the surface w m**-2 s -58 58 PAR Photosynthetically active radiation at the surface w m**-2 s -59 59 CAPE Convective available potential energy J kg**-1 -60 60 PV Potential vorticity K m**2 kg**-1 s**-1 -61 61 TPO Total precipitation from observations Millimetres*100 + number of stations -62 62 OBCT Observation count -63 63 - Start time for skin temperature difference s -64 64 - Finish time for skin temperature difference s -65 65 - Skin temperature difference K -66 66 - Leaf area index, low vegetation m**2 / m**2 -67 67 - Leaf area index, high vegetation m**2 / m**2 -68 68 - Minimum stomatal resistance, low vegetation s m**-1 -69 69 - Minimum stomatal resistance, high vegetation s m**-1 -70 70 - Biome cover, low vegetation (0 - 1) -71 71 - Biome cover, high vegetation (0 - 1) -72 72 ISSRD Instantaneous surface solar radiation downwards w m**-2 -73 73 ISTRD Instantaneous surface thermal radiation downwards w m**-2 -74 74 SDFOR Standard deviation of filtered subgrid orography m -78 78 - Total column liquid water kg m**-2 -79 79 - Total column ice water kg m**-2 -80 80 - Experimental product -81 81 - Experimental product -82 82 - Experimental product -83 83 - Experimental product -84 84 - Experimental product -85 85 - Experimental product -86 86 - Experimental product -87 87 - Experimental product -88 88 - Experimental product -89 89 - Experimental product -90 90 - Experimental product -91 91 - Experimental product -92 92 - Experimental product -93 93 - Experimental product -94 94 - Experimental product -95 95 - Experimental product -96 96 - Experimental product -97 97 - Experimental product -98 98 - Experimental product -99 99 - Experimental product -100 100 - Experimental product -101 101 - Experimental product -102 102 - Experimental product -103 103 - Experimental product -104 104 - Experimental product -105 105 - Experimental product -106 106 - Experimental product -107 107 - Experimental product -108 108 - Experimental product -109 109 - Experimental product -110 110 - Experimental product -111 111 - Experimental product -112 112 - Experimental product -113 113 - Experimental product -114 114 - Experimental product -115 115 - Experimental product -116 116 - Experimental product -117 117 - Experimental product -118 118 - Experimental product -119 119 - Experimental product -120 120 - Experimental product -121 121 MX2T6 Maximum temperature at 2 metres since last 6 hours K -122 122 MN2T6 Minimum temperature at 2 metres since last 6 hours K -123 123 10FG6 10 metre wind gust in the past 6 hours m s**-1 -124 124 EMIS Surface emissivity dimensionless -125 125 - Vertically integrated total energy J m**-2 -126 126 - Generic parameter for sensitive area prediction Various -127 127 AT Atmospheric tide -128 128 BV Budget values -129 129 Z Geopotential m**2 s**-2 -130 130 T Temperature K -131 131 U U velocity m s**-1 -132 132 V V velocity m s**-1 -133 133 Q Specific humidity kg kg**-1 -134 134 SP Surface pressure Pa -135 135 W Vertical velocity Pa s**-1 -136 136 TCW Total column water kg m**-2 -137 137 TCWV Total column water vapour kg m**-2 -138 138 VO Vorticity (relative) s**-1 -139 139 STL1 Soil temperature level 1 K -140 140 SWL1 Soil wetness level 1 m of water -141 141 SD Snow depth m of water equivalent -142 142 LSP Stratiform precipitation (Large-scale precipitation) m -143 143 CP Convective precipitation m -144 144 SF Snowfall (convective + stratiform) m of water equivalent -145 145 BLD Boundary layer dissipation W m**-2 s -146 146 SSHF Surface sensible heat flux W m**-2 s -147 147 SLHF Surface latent heat flux W m**-2 s -148 148 CHNK Charnock -149 149 SNR Surface net radiation W m**-2 s -150 150 TNR Top net radiation -151 151 MSL Mean sea level pressure Pa -152 152 LNSP Logarithm of surface pressure -153 153 SWHR Short-wave heating rate K -154 154 LWHR Long-wave heating rate K -155 155 D Divergence s**-1 -156 156 GH Gepotential Height gpm -157 157 R Relative humidity % -158 158 TSP Tendency of surface pressure Pa s**-1 -159 159 BLH Boundary layer height m -160 160 SDOR Standard deviation of orography -161 161 ISOR Anisotropy of sub-gridscale orography -162 162 ANOR Angle of sub-gridscale orography rad -163 163 SLOR Slope of sub-gridscale orography -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component m s**-1 -166 166 10V 10 metre V wind component m s**-1 -167 167 2T 2 metre temperature K -168 168 2D 2 metre dewpoint temperature K -169 169 SSRD Surface solar radiation downwards W m**-2 s -170 170 STL2 Soil temperature level 2 K -171 171 SWL2 Soil wetness level 2 m of water -172 172 LSM Land-sea mask (0 - 1) -173 173 SR Surface roughness m -174 174 AL Albedo (0 - 1) -175 175 STRD Surface thermal radiation downwards W m**-2 s -176 176 SSR Surface solar radiation W m**-2 s -177 177 STR Surface thermal radiation W m**-2 s -178 178 TSR Top solar radiation W m**-2 s -179 179 TTR Top thermal radiation W m**-2 s -180 180 EWSS East-West surface stress N m**-2 s -181 181 NSSS North-South surface stress N m**-2 s -182 182 E Evaporation m of water -183 183 STL3 Soil temperature level 3 K -184 184 SWL3 Soil wetness level 3 m of water -185 185 CCC Convective cloud cover (0 - 1) -186 186 LCC Low cloud cover (0 - 1) -187 187 MCC Medium cloud cover (0 - 1) -188 188 HCC High cloud cover (0 - 1) -189 189 SUND Sunshine duration s -190 190 EWOV East-West component of sub-gridscale orographic variance m**2 -191 191 NSOV North-South component of sub-gridscale orographic variance m**2 -192 192 NWOV North-West/South-East component of sub-gridscale orographic variance m**2 -193 193 NEOV North-East/South-West component of sub-gridscale orographic variance m**2 -194 194 BTMP Brightness temperature K -195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s -196 196 MGWS Meridional component of gravity wave stress N m**-2 s -197 197 GWD Gravity wave dissipation W m**-2 s -198 198 SRC Skin reservoir content m of water -199 199 VEG Vegetation fraction (0 - 1) -200 200 VSO Variance of sub-gridscale orography m**2 -201 201 MX2T Maximum temperature at 2 metres since previous post-processing K -202 202 MN2T Minimum temperature at 2 metres since previous post-processing K -203 203 O3 Ozone mass mixing ratio kg kg**-1 -204 204 PAW Precipitation analysis weights -205 205 RO Runoff m -206 206 TCO3 Total column ozone kg m**-2 -207 207 10SI 10 metre wind speed m s**-1 -208 208 TSRC Top net solar radiation, clear sky W m**-2 s -209 209 TTRC Top net thermal radiation, clear sky W m**-2 s -210 210 SSRC Surface net solar radiation, clear sky W m**-2 s -211 211 STRC Surface net thermal radiation, clear sky W m**-2 s -212 212 TISR TOA incident solar radiation W m**-2 s -213 213 VIMD Vertically integrated moisture divergence kg m**-2 -214 214 DHR Diabatic heating by radiation K -215 215 DHVD Diabatic heating by vertical diffusion K -216 216 DHCC Diabatic heating by cumulus convection K -217 217 DHLC Diabatic heating large-scale condensation K -218 218 VDZW Vertical diffusion of zonal wind m s**-1 -219 219 VDMW Vertical diffusion of meridional wind m s**-1 -220 220 EWGD East-West gravity wave drag tendency m s**-1 -221 221 NSGD North-South gravity wave drag tendency m s**-1 -222 222 CTZW Convective tendency of zonal wind m s**-1 -223 223 CTMW Convective tendency of meridional wind m s**-1 -224 224 VDH Vertical diffusion of humidity kg kg**-1 -225 225 HTCC Humidity tendency by cumulus convection kg kg**-1 -226 226 HTLC Humidity tendency by large-scale condensation kg kg**-1 -227 227 CRNH Change from removal of negative humidity kg kg**-1 -228 228 TP Total precipitation m -229 229 IEWS Instantaneous X surface stress N m**-2 -230 230 INSS Instantaneous Y surface stress N m**-2 -231 231 ISHF Instantaneous surface heat flux W m**-2 -232 232 IE Instantaneous moisture flux kg m**-2 s -233 233 ASQ Apparent surface humidity kg kg**-1 -234 234 LSRH Logarithm of surface roughness length for heat -235 235 SKT Skin temperature K -236 236 STL4 Soil temperature level 4 K -237 237 SWL4 Soil wetness level 4 m -238 238 TSN Temperature of snow layer K -239 239 CSF Convective snowfall m of water equivalent -240 240 LSF Large-scale snowfall m of water equivalent -241 241 ACF Accumulated cloud fraction tendency (-1 to 1) -242 242 ALW Accumulated liquid water tendency (-1 to 1) -243 243 FAL Forecast albedo (0 - 1) -244 244 FSR Forecast surface roughness m -245 245 FLSR Forecast logarithm of surface roughness for heat -246 246 CLWC Cloud liquid water content kg kg**-1 -247 247 CIWC Cloud ice water content kg kg**-1 -248 248 CC Cloud cover (0 - 1) -249 249 AIW Accumulated ice water tendency (-1 to 1) -250 250 ICE Ice age (0 - 1) -251 251 ATTE Adiabatic tendency of temperature K -252 252 ATHE Adiabatic tendency of humidity kg kg**-1 -253 253 ATZE Adiabatic tendency of zonal wind m s**-1 -254 254 ATMW Adiabatic tendency of meridional wind m s**-1 -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.34.200.table b/eccodes/definitions.save/grib1/2.34.200.table deleted file mode 100644 index ca22ae86..00000000 --- a/eccodes/definitions.save/grib1/2.34.200.table +++ /dev/null @@ -1,185 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 PRES Pressure (Pa) -2 2 MSL Mean sea level pressure (Pa) -3 3 PTEND Pressure tendency (Pa s**-1) -4 4 PV Potential vorticity (K m**2 kg**-1 s**-1) -5 5 ICAHT ICAO Standard Atmosphere reference height (m) -6 6 Z Geopotential (m**2 s**-2) -7 7 GH Geopotential Height (gpm) -8 8 H Geometrical height (m) -9 9 HSTDV Standard deviation of height (m) -10 10 TOZNE Total ozone (Dobson) -11 11 T Temperature (K) -12 12 VTMP Virtual temperature (K) -13 13 PT Potential temperature (K) -14 14 PAPT Pseudo-adiabatic potential temperature (K) -15 15 TMAX Maximum temperature (K) -16 16 TMIN Minimum temperature (K) -17 17 DPT Dew point temperature (K) -18 18 DEPR Dew point depression or deficit (K) -19 19 LAPR Lapse rate (K m**-1) -20 20 VIS Visibility (m) -21 21 RDSP1 Radar spectra 1 (~) -22 22 RDSP2 Radar spectra 2 (~) -23 23 RDSP3 Radar spectra 3 (~) -24 24 PLI Parcel lifted index to 500 hPa (K) -25 25 TA Temperature anomaly (K) -26 26 PRESA Pressure anomaly (Pa) -27 27 GPA Geopotential height anomaly (gpm) -28 28 WVSP1 Wave spectra 1 (~) -29 29 WVSP2 Wave spectra 2 (~) -30 30 WVSP3 Wave spectra 3 (~) -31 31 WDIR Wind direction (Degree true) -32 32 WS Wind speed (m s**-1) -33 33 U U component of wind (m s**-1) -34 34 V V component of wind (m s**-1) -35 35 STRF Stream function (m**2 s**-1) -36 36 VP Velocity potential (m**2 s**-1) -37 37 MNTSF Montgomery stream Function (m**2 s**-2) -38 38 SGCVV Sigma coordinate vertical velocity (s**-1) -39 39 W Vertical velocity (Pa s**-1) -40 40 OMG2 Vertical velocity (m s**-1) -41 41 ABSV Absolute vorticity (s**-1) -42 42 ABSD Absolute divergence (s**-1) -43 43 VO Vorticity relative (s**-1) -44 44 D Divergence (s**-1) -45 45 VUCSH Vertical u-component shear (s**-1) -46 46 VVCSH Vertical v-component shear (s**-1) -47 47 DIRC Direction of current (Degree true) -48 48 SPC Speed of current (m s**-1) -49 49 UCURR U-component of current (m s**-1) -50 50 VCURR V-component of current (m s**-1) -51 51 Q Specific humidity (kg kg**-1) -52 52 R Relative humidity (%) -53 53 MIXR Humidity mixing ratio (kg kg**-1) -54 54 PWAT Precipitable water (kg m**-2) -55 55 VP Vapour pressure (Pa) -56 56 SATD Saturation deficit (Pa) -57 57 EVPSFC Evaporation (mm per day) -58 58 CICE Cloud Ice (kg m**-2) -59 59 PRATE Precipitation rate (kg m**-2 s**-1) -60 60 TSTM Thunderstorm probability (%) -61 61 TPRATSFC Total precipitation (mm per day) -62 62 LPRATSFC Large scale precipitation (mm per day) -63 63 CPRATSFC Convective precipitation (mm per day) -64 64 SRWEQSFC Snowfall rate water equivalent (mm per day) -65 65 SF Snow Fall water equivalent (kg m**-2) -66 66 SD Snow depth (m) -67 67 MLD Mixed layer depth (m) -68 68 TTHDP Transient thermocline depth (m) -69 69 MTHD Main thermocline depth (m) -70 70 MTHA Main thermocline anomaly (m) -71 71 TCC Total Cloud Cover (%) -72 72 CCC Convective cloud cover (%) -73 73 LCC Low cloud cover (%) -74 74 MCC Medium cloud cover (%) -75 75 HCC High cloud cover (%) -76 76 CWAT Cloud water (kg m**-2) -77 77 BLI Best lifted index to 500 hPa (K) -78 78 SNOC Convective snow (kg m**-2) -79 79 LSSF Large scale snow (kg m**-2) -80 80 WTMP Water temperature (K) -81 81 LSM Land-sea mask ((0 - 1)) -82 82 DSLM Deviation of sea-level from mean (m) -83 83 SR Surface roughness (m) -84 84 AL Albedo (%) -85 85 ST Soil Temperature (K) -86 86 SSW Soil moisture content (kg m**-2) -87 87 VEGREA Percentage of vegetation (%) -88 88 S Salinity (kg kg**-1) -89 89 DEN Density (kg m**-3) -90 90 ROFSFC Water run-off (mm per day) -91 91 ICEC Ice cover ((0 - 1)) -92 92 ICETK Ice thickness (m) -93 93 DICED Direction of ice drift (Degree true) -94 94 SICED Speed of ice drift (m s**-1) -95 95 UICE U-component of ice drift (m s**-1) -96 96 VICE V-component of ice drift (m s**-1) -97 97 ICEG Ice growth rate (m s**-1) -98 98 ICED Ice divergence (s**-1) -99 99 SNOM Snow melt (kg m**-2) -100 100 SWH Significant height of combined wind waves and swell (m) -101 101 MDWW Mean direction of wind waves (Degree true) -102 102 SHWW Significant height of wind waves (m) -103 103 MPWW Mean period of wind waves (s) -104 104 SWDIR Direction of swell waves (Degree true) -105 105 SWELL Significant height of swell waves (m) -106 106 SWPER Mean period of swell waves (s) -107 107 MDPS Primary wave direction (Degree true) -108 108 MPPS Primary wave mean period (s) -109 109 DIRSW Secondary wave direction (Degree true) -110 110 SWP Secondary wave mean period (s) -111 111 NSWRS Net short-wave radiation flux surface (W m**-2) -112 112 NLWRS Net long-wave radiation flux surface (W m**-2) -113 113 NLWRT Net short-wave radiation flux top of atmosphere (W m**-2) -114 114 NLWRT Net long-wave radiation flux top of atmosphere (W m**-2) -115 115 LWAVR Long wave radiation flux (W m**-2) -116 116 SWAVR Short wave radiation flux (W m**-2) -117 117 GRAD Global radiation flux (W m**-2) -118 118 BTMP Brightness temperature (K) -119 119 LWRAD Radiance with respect to wave number (W m**-1 sr**-1) -120 120 SWRAD Radiance with respect to wave length (W m**-3 sr**-1) -121 121 LHF Latent heat flux (W m**-2) -122 122 SHF Sensible heat flux (W m**-2) -123 123 BLD Boundary layer dissipation (W m**-2) -124 124 UFLX Momentum flux, u-component (N m**-2) -125 125 VFLX Momentum flux, v-component (N m**-2) -126 126 WMIXE Wind mixing energy (J) -127 127 IMGD Image data (~) -132 132 BVF2THT Square of Brunt-Vaisala frequency (s**-2) -144 144 CTMP Temperature at canopy (K) -145 145 TGSC Ground/surface cover temperature (K) -146 146 CWORK Cloud work function (J kg**-1) -147 147 FGLUSFC Zonal momentum flux by long gravity wave (N m**-2) -148 148 FGLVSFC Meridional momentum flux by long gravity wave (N m**-2) -151 151 ADUAHBL Adiabatic zonal acceleration (m s**-1 per day) -152 152 VWVCLM Meridional water vapour flux (kg m**-1 s**-1) -154 154 FGSVSFC Meridional momentum flux by short gravity wave (N m**-2) -155 155 GFLUX Ground heat flux (W m**-2) -157 157 ~ Vertical integral of eastward water vapour flux (kg m**-1 s**-1) -159 159 FGSUSFC Zonal momentum flux by short gravity wave (N m**-2) -160 160 CSUSF Clear Sky Upward Solar Flux (W m**-2) -161 161 CSDSF Clear Sky Downward Solar Flux (W m**-2) -162 162 CSULF Clear Sky Upward Long Wave Flux (W m**-2) -163 163 CSDLF Clear Sky Downward Long Wave Flux (W m**-2) -165 165 ADVAPRS Adiabatic meridional acceleration (m s**-1 per day) -170 170 FRCVSFC Frequency of deep convection (%) -171 171 FRCVSSFC Frequency of shallow convection (%) -172 172 FRSCSFC Frequency of stratocumulus parameterisation (%) -173 173 GWDUAHBL Gravity wave zonal acceleration (m s**-1 per day) -174 174 GWDVAHBL Gravity wave meridional acceleration (m s**-1 per day) -190 190 UTHECLM Zonal thermal energy flux (W m**-1) -191 191 VTHECLM Meridional thermal energy flux (W m**-1) -202 202 LTRSSFC Evapotranspiration (W m**-2) -203 203 PITP Interception loss (W m**-2) -204 204 DSWRF Downward short-wave radiation flux (W m**-2) -205 205 DLWRF Downward long-wave radiation flux (W m**-2) -211 211 USWRF Upward short-wave radiation flux (W m**-2) -212 212 ULWRF Upward long-wave radiation flux (W m**-2) -219 219 MAXGUST Maximum wind speed (m s**-1) -221 221 QC specific cloud water content (kg kg**-1) -222 222 ADHRHBL Adiabatic heating rate (K per day) -223 223 MSCSFC Moisture storage on canopy (m) -224 224 MSGSFC Moisture storage on ground or cover (m) -225 225 USSL Soil wetness of surface ((0 - 1)) -226 226 SMCUGL Mass concentration of condensed water in soil (kg m**-3) -227 227 CWCLM Cloud liquid water (kg m**-2) -228 228 CLW Cloud liquid water (kg kg**-1) -229 229 CIWC Specific cloud ice water content (kg kg**-1) -230 230 MFLXBHBL Upward mass flux at cloud base (kg m**-2 s**-1) -231 231 MFLUXHBL Upward mass flux (kg m**-2 s**-1) -236 236 ADMRHBL Adiabatic moistening rate (kg kg**-1 per day) -237 237 OZONEHBL Ozone mixing ratio (mg kg**-1) -239 239 CNVUAHBL Convective zonal acceleration (m s**-1 per day) -240 240 CNVVAHBL Convective meridional acceleration (m s**-1 per day) -241 241 LRGHRHBL Large scale condensation heating rate (K per day) -242 242 CNVHRHBL Convective heating rate (K per day) -243 243 CNVMRHBL Convective moistening rate (kg kg**-1 per day) -246 246 VDFHRHBL Vertical diffusion heating rate (K per day) -247 247 VDFUAHBL Vertical diffusion zonal acceleration (m s**-1 per day) -248 248 VDFVAHBL Vertical diffusion meridional acceleration (m s**-1 per day) -249 249 VDFMRHBL Vertical diffusion moistening rate (kg kg**-1 per day) -250 250 SWHRHBL Solar radiative heating rate (K per day) -251 251 LWHRHBL Long wave radiative heating rate (K per day) -252 252 Type of vegetation (Code Table JMA-252) -253 253 LRGMRHBL Large scale moistening rate (kg kg**-1 per day) diff --git a/eccodes/definitions.save/grib1/2.46.254.table b/eccodes/definitions.save/grib1/2.46.254.table deleted file mode 100644 index d4e38fce..00000000 --- a/eccodes/definitions.save/grib1/2.46.254.table +++ /dev/null @@ -1,256 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 PRES Pressure [hPa] -2 2 psnm Pressure reduced to MSL [hPa] -3 3 tsps Pressure tendency [Pa/s] -4 4 var4 undefined -5 5 var5 undefined -6 6 geop Geopotential [dam] -7 7 zgeo Geopotential height [gpm] -8 8 gzge Geometric height [m] -9 9 var9 undefined -10 10 var10 undefined -11 11 temp ABSOLUTE TEMPERATURE [K] -12 12 vtmp VIRTUAL TEMPERATURE [K] -13 13 ptmp POTENTIAL TEMPERATURE [K] -14 14 psat PSEUDO-ADIABATIC POTENTIAL TEMPERATURE [K] -15 15 mxtp MAXIMUM TEMPERATURE [K] -16 16 mntp MINIMUM TEMPERATURE [K] -17 17 tpor DEW POINT TEMPERATURE [K] -18 18 dptd DEW POINT DEPRESSION [K] -19 19 lpsr LAPSE RATE [K/m] -20 20 var20 undefined -21 21 rds1 RADAR SPECTRA(1) [non-dim] -22 22 rds2 RADAR SPECTRA(2) [non-dim] -23 23 rds3 RADAR SPECTRA(3) [non-dim] -24 24 var24 undefined -25 25 tpan TEMPERATURE ANOMALY [K] -26 26 psan PRESSURE ANOMALY [Pa hPa] -27 27 zgan GEOPOT HEIGHT ANOMALY [m] -28 28 wvs1 WAVE SPECTRA(1) [non-dim] -29 29 wvs2 WAVE SPECTRA(2) [non-dim] -30 30 wvs3 WAVE SPECTRA(3) [non-dim] -31 31 wind WIND DIRECTION [deg] -32 32 wins WIND SPEED [m/s] -33 33 uvel ZONAL WIND (U) [m/s] -34 34 vvel MERIDIONAL WIND (V) [m/s] -35 35 fcor STREAM FUNCTION [m2/s] -36 36 potv VELOCITY POTENTIAL [m2/s] -37 37 var37 undefined -38 38 sgvv SIGMA COORD VERT VEL [sec/sec] -39 39 omeg OMEGA [Pa/s] -40 40 omg2 VERTICAL VELOCITY [m/s] -41 41 abvo ABSOLUTE VORTICITY [10**5/sec] -42 42 abdv ABSOLUTE DIVERGENCE [10**5/sec] -43 43 vort VORTICITY [1/s] -44 44 divg DIVERGENCE [1/s] -45 45 vucs VERTICAL U-COMP SHEAR [1/sec] -46 46 vvcs VERT V-COMP SHEAR [1/sec] -47 47 dirc DIRECTION OF CURRENT [deg] -48 48 spdc SPEED OF CURRENT [m/s] -49 49 ucpc U-COMPONENT OF CURRENT [m/s] -50 50 vcpc V-COMPONENT OF CURRENT [m/s] -51 51 umes SPECIFIC HUMIDITY [kg/kg] -52 52 umrl RELATIVE HUMIDITY [no Dim] -53 53 hmxr HUMIDITY MIXING RATIO [kg/kg] -54 54 agpl INST. PRECIPITABLE WATER [Kg/m2] -55 55 vapp VAPOUR PRESSURE [Pa hpa] -56 56 sadf SATURATION DEFICIT [Pa hPa] -57 57 evap EVAPORATION [Kg/m2/day] -58 58 var58 undefined -59 59 prcr PRECIPITATION RATE [kg/m2/day] -60 60 thpb THUNDER PROBABILITY [%] -61 61 prec TOTAL PRECIPITATION [Kg/m2/day] -62 62 prge LARGE SCALE PRECIPITATION [Kg/m2/day] -63 63 prcv CONVECTIVE PRECIPITATION [Kg/m2/day] -64 64 neve SNOWFALL [Kg/m2/day] -65 65 wenv WAT EQUIV ACC SNOW DEPTH [kg/m2] -66 66 nvde SNOW DEPTH [cm] -67 67 mxld MIXED LAYER DEPTH [m cm] -68 68 tthd TRANS THERMOCLINE DEPTH [m cm] -69 69 mthd MAIN THERMOCLINE DEPTH [m cm] -70 70 mtha MAIN THERMOCLINE ANOM [m cm] -71 71 cbnv CLOUD COVER [0-1] -72 72 cvnv CONVECTIVE CLOUD COVER [0-1] -73 73 lwnv LOW CLOUD COVER [0-1] -74 74 mdnv MEDIUM CLOUD COVER [0-1] -75 75 hinv HIGH CLOUD COVER [0-1] -76 76 wtnv CLOUD WATER [kg/m2] -77 77 bli BEST LIFTED INDEX (TO 500 HPA) [K] -78 78 var78 undefined -79 79 var79 undefined -80 80 var80 undefined -81 81 lsmk LAND SEA MASK [0,1] -82 82 dslm DEV SEA_LEV FROM MEAN [m] -83 83 zorl ROUGHNESS LENGTH [m] -84 84 albe ALBEDO [%] -85 85 dstp DEEP SOIL TEMPERATURE [K] -86 86 soic SOIL MOISTURE CONTENT [Kg/m2] -87 87 vege VEGETATION [%] -88 88 var88 undefined -89 89 dens DENSITY [kg/m3] -90 90 var90 Undefined -91 91 icec ICE CONCENTRATION [fraction] -92 92 icet ICE THICKNESS [m] -93 93 iced DIRECTION OF ICE DRIFT [deg] -94 94 ices SPEED OF ICE DRIFT [m/s] -95 95 iceu U-COMP OF ICE DRIFT [m/s] -96 96 icev V-COMP OF ICE DRIFT [m/s] -97 97 iceg ICE GROWTH [m] -98 98 icdv ICE DIVERGENCE [sec/sec] -99 99 var99 undefined -100 100 shcw SIG HGT COM WAVE/SWELL [m] -101 101 wwdi DIRECTION OF WIND WAVE [deg] -102 102 wwsh SIG HGHT OF WIND WAVES [m] -103 103 wwmp MEAN PERIOD WIND WAVES [sec] -104 104 swdi DIRECTION OF SWELL WAVE [deg] -105 105 swsh SIG HEIGHT SWELL WAVES [m] -106 106 swmp MEAN PERIOD SWELL WAVES [sec] -107 107 prwd PRIMARY WAVE DIRECTION [deg] -108 108 prmp PRIM WAVE MEAN PERIOD [s] -109 109 swdi SECOND WAVE DIRECTION [deg] -110 110 swmp SECOND WAVE MEAN PERIOD [s] -111 111 ocas SHORT WAVE ABSORBED AT GROUND [W/m2] -112 112 slds NET LONG WAVE AT BOTTOM [W/m2] -113 113 nswr NET SHORT-WAV RAD(TOP) [W/m2] -114 114 role OUTGOING LONG WAVE AT TOP [W/m2] -115 115 lwrd LONG-WAV RAD [W/m2] -116 116 swea SHORT WAVE ABSORBED BY EARTH/ATMOSPHERE [W/m2] -117 117 glbr GLOBAL RADIATION [W/m2 ] -118 118 var118 undefined -119 119 var119 undefined -120 120 var120 undefined -121 121 clsf LATENT HEAT FLUX FROM SURFACE [W/m2] -122 122 cssf SENSIBLE HEAT FLUX FROM SURFACE [W/m2] -123 123 blds BOUND LAYER DISSIPATION [W/m2] -124 124 var124 undefined -125 125 var125 undefined -126 126 var126 undefined -127 127 imag IMAGE [image^data] -128 128 tp2m 2 METRE TEMPERATURE [K] -129 129 dp2m 2 METRE DEWPOINT TEMPERATURE [K] -130 130 u10m 10 METRE U-WIND COMPONENT [m/s] -131 131 v10m 10 METRE V-WIND COMPONENT [m/s] -132 132 topo TOPOGRAPHY [m] -133 133 gsfp GEOMETRIC MEAN SURFACE PRESSURE [hPa] -134 134 lnsp LN SURFACE PRESSURE [hPa] -135 135 pslc SURFACE PRESSURE [hPa] -136 136 pslm M S L PRESSURE (MESINGER METHOD) [hPa] -137 137 mask MASK [-/+] -138 138 mxwu MAXIMUM U-WIND [m/s] -139 139 mxwv MAXIMUM V-WIND [m/s] -140 140 cape CONVECTIVE AVAIL. POT.ENERGY [m2/s2] -141 141 cine CONVECTIVE INHIB. ENERGY [m2/s2] -142 142 lhcv CONVECTIVE LATENT HEATING [K/s] -143 143 mscv CONVECTIVE MOISTURE SOURCE [1/s] -144 144 scvm SHALLOW CONV. MOISTURE SOURCE [1/s] -145 145 scvh SHALLOW CONVECTIVE HEATING [K/s] -146 146 mxwp MAXIMUM WIND PRESS. LVL [hPa] -147 147 ustr STORM MOTION U-COMPONENT [m/s] -148 148 vstr STORM MOTION V-COMPONENT [m/s] -149 149 cbnt MEAN CLOUD COVER [0-1] -150 150 pcbs PRESSURE AT CLOUD BASE [hPa] -151 151 pctp PRESSURE AT CLOUD TOP [hPa] -152 152 fzht FREEZING LEVEL HEIGHT [m] -153 153 fzrh FREEZING LEVEL RELATIVE HUMIDITY [%] -154 154 fdlt FLIGHT LEVELS TEMPERATURE [K] -155 155 fdlu FLIGHT LEVELS U-WIND [m/s] -156 156 fdlv FLIGHT LEVELS V-WIND [m/s] -157 157 tppp TROPOPAUSE PRESSURE [hPa] -158 158 tppt TROPOPAUSE TEMPERATURE [K] -159 159 tppu TROPOPAUSE U-WIND COMPONENT [m/s] -160 160 tppv TROPOPAUSE v-WIND COMPONENT [m/s] -161 161 var161 undefined -162 162 gvdu GRAVITY WAVE DRAG DU/DT [m/s2] -163 163 gvdv GRAVITY WAVE DRAG DV/DT [m/s2] -164 164 gvus GRAVITY WAVE DRAG SFC ZONAL STRESS [Pa] -165 165 gvvs GRAVITY WAVE DRAG SFC MERIDIONAL STRESS [Pa] -166 166 var166 undefined -167 167 dvsh DIVERGENCE OF SPECIFIC HUMIDITY [1/s] -168 168 hmfc HORIZ. MOISTURE FLUX CONV. [1/s] -169 169 vmfl VERT. INTEGRATED MOISTURE FLUX CONV. [kg/(m2*s)] -170 170 vadv VERTICAL MOISTURE ADVECTION [kg/(kg*s)] -171 171 nhcm NEG. HUM. CORR. MOISTURE SOURCE [kg/(kg*s)] -172 172 lglh LARGE SCALE LATENT HEATING [K/s] -173 173 lgms LARGE SCALE MOISTURE SOURCE [1/s] -174 174 smav SOIL MOISTURE AVAILABILITY [0-1] -175 175 tgrz SOIL TEMPERATURE OF ROOT ZONE [K] -176 176 bslh BARE SOIL LATENT HEAT [Ws/m2] -177 177 evpp POTENTIAL SFC EVAPORATION [m] -178 178 rnof RUNOFF [kg/m2/s)] -179 179 pitp INTERCEPTION LOSS [W/m2] -180 180 vpca VAPOR PRESSURE OF CANOPY AIR SPACE [mb] -181 181 qsfc SURFACE SPEC HUMIDITY [kg/kg] -182 182 ussl SOIL WETNESS OF SURFACE [0-1] -183 183 uzrs SOIL WETNESS OF ROOT ZONE [0-1] -184 184 uzds SOIL WETNESS OF DRAINAGE ZONE [0-1] -185 185 amdl STORAGE ON CANOPY [m] -186 186 amsl STORAGE ON GROUND [m] -187 187 tsfc SURFACE TEMPERATURE [K] -188 188 tems SURFACE ABSOLUTE TEMPERATURE [K] -189 189 tcas TEMPERATURE OF CANOPY AIR SPACE [K] -190 190 ctmp TEMPERATURE AT CANOPY [K] -191 191 tgsc GROUND/SURFACE COVER TEMPERATURE [K] -192 192 uves SURFACE ZONAL WIND (U) [m/s] -193 193 usst SURFACE ZONAL WIND STRESS [Pa] -194 194 vves SURFACE MERIDIONAL WIND (V) [m/s] -195 195 vsst SURFACE MERIDIONAL WIND STRESS [Pa] -196 196 suvf SURFACE MOMENTUM FLUX [W/m2] -197 197 iswf INCIDENT SHORT WAVE FLUX [W/m2] -198 198 ghfl TIME AVE GROUND HT FLX [W/m2] -199 199 var199 undefined -200 200 lwbc NET LONG WAVE AT BOTTOM (CLEAR) [W/m2] -201 201 lwtc OUTGOING LONG WAVE AT TOP (CLEAR) [W/m2] -202 202 swec SHORT WV ABSRBD BY EARTH/ATMOS (CLEAR) [W/m2] -203 203 ocac SHORT WAVE ABSORBED AT GROUND (CLEAR) [W/m2] -204 204 var204 undefined -205 205 lwrh LONG WAVE RADIATIVE HEATING [K/s] -206 206 swrh SHORT WAVE RADIATIVE HEATING [K/s] -207 207 olis DOWNWARD LONG WAVE AT BOTTOM [W/m2] -208 208 olic DOWNWARD LONG WAVE AT BOTTOM (CLEAR) [W/m2] -209 209 ocis DOWNWARD SHORT WAVE AT GROUND [W/m2] -210 210 ocic DOWNWARD SHORT WAVE AT GROUND (CLEAR) [W/m2] -211 211 oles UPWARD LONG WAVE AT BOTTOM [W/m2] -212 212 oces UPWARD SHORT WAVE AT GROUND [W/m2] -213 213 swgc UPWARD SHORT WAVE AT GROUND (CLEAR) [W/m2] -214 214 roce UPWARD SHORT WAVE AT TOP [W/m2] -215 215 swtc UPWARD SHORT WAVE AT TOP (CLEAR) [W/m2] -216 216 var216 undefined -217 217 var217 undefined -218 218 hhdf HORIZONTAL HEATING DIFFUSION [K/s] -219 219 hmdf HORIZONTAL MOISTURE DIFFUSION [1/s] -220 220 hddf HORIZONTAL DIVERGENCE DIFFUSION [1/s2] -221 221 hvdf HORIZONTAL VORTICITY DIFFUSION [1/s2] -222 222 vdms VERTICAL DIFF. MOISTURE SOURCE [1/s] -223 223 vdfu VERTICAL DIFFUSION DU/DT [m/s2] -224 224 vdfv VERTICAL DIFFUSION DV/DT [m/s2] -225 225 vdfh VERTICAL DIFFUSION HEATING [K/s] -226 226 umrs SURFACE RELATIVE HUMIDITY [no Dim] -227 227 vdcc VERTICAL DIST TOTAL CLOUD COVER [no Dim] -228 228 var228 undefined -229 229 var229 undefined -230 230 usmt TIME MEAN SURFACE ZONAL WIND (U) [m/s] -231 231 vsmt TIME MEAN SURFACE MERIDIONAL WIND (V) [m/s] -232 232 tsmt TIME MEAN SURFACE ABSOLUTE TEMPERATURE [K] -233 233 rsmt TIME MEAN SURFACE RELATIVE HUMIDITY [no Dim] -234 234 atmt TIME MEAN ABSOLUTE TEMPERATURE [K] -235 235 stmt TIME MEAN DEEP SOIL TEMPERATURE [K] -236 236 ommt TIME MEAN DERIVED OMEGA [Pa/s] -237 237 dvmt TIME MEAN DIVERGENCE [1/s] -238 238 zhmt TIME MEAN GEOPOTENTIAL HEIGHT [m] -239 239 lnmt TIME MEAN LOG SURFACE PRESSURE [ln(cbar)] -240 240 mkmt TIME MEAN MASK [-/+] -241 241 vvmt TIME MEAN MERIDIONAL WIND (V) [m/s] -242 242 omtm TIME MEAN OMEGA [cbar/s] -243 243 ptmt TIME MEAN POTENTIAL TEMPERATURE [K] -244 244 pcmt TIME MEAN PRECIP. WATER [kg/m2] -245 245 rhmt TIME MEAN RELATIVE HUMIDITY [%] -246 246 mpmt TIME MEAN SEA LEVEL PRESSURE [hPa] -247 247 simt TIME MEAN SIGMADOT [1/s] -248 248 uemt TIME MEAN SPECIFIC HUMIDITY [kg/kg] -249 249 fcmt TIME MEAN STREAM FUNCTION| m2/s] -250 250 psmt TIME MEAN SURFACE PRESSURE [hPa] -251 251 tmmt TIME MEAN SURFACE TEMPERATURE [K] -252 252 pvmt TIME MEAN VELOCITY POTENTIAL [m2/s] -253 253 tvmt TIME MEAN VIRTUAL TEMPERATURE [K] -254 254 vtmt TIME MEAN VORTICITY [1/s] -255 255 uvmt TIME MEAN ZONAL WIND (U) [m/s] diff --git a/eccodes/definitions.save/grib1/2.82.1.table b/eccodes/definitions.save/grib1/2.82.1.table deleted file mode 100644 index 62e36ee4..00000000 --- a/eccodes/definitions.save/grib1/2.82.1.table +++ /dev/null @@ -1,180 +0,0 @@ -1 pres PRES Pressure Pa -2 msl MSL Pressure reduced to MSL Pa -3 ptend PTEND Pressure tendency Pa/s -4 pv PV Potential vorticity K*m2 / kg / s -5 icaht ICAHT ICAO Standard Atmosphere reference height m -6 z Z Geopotential m2/s2 -7 gh GH Geopotential height Gpm -8 h H Geometric height m -9 hstdv HSTDV Standard deviation of height m -10 tco3 TCO3 Total ozone Dobson -11 t T Temperature K -12 vtmp VTMP Virtual temperature K -13 pt PT Potential temperature K -14 papt PAPT Pseudo-adiabatic potential temperature K -15 tmax TMAX Maximum temperature K -16 tmin TMIN Minimum temperature K -17 dpt DPT Dew point temperature K -18 depr DEPR Dew point depression (or deficit) K -19 lapr LAPR Lapse rate K/m -20 vis VIS Visibility m -21 rdsp1 RDSP1 Radar Spectra (1) - -22 rdsp2 RDSP2 Radar Spectra (2) - -23 rdsp3 RDSP3 Radar Spectra (3) - -24 pli PLI Parcel lifted index (to 500 hPa) K -25 ta TA Temperature anomaly K -26 pa PA Pressure anomaly Pa -27 gpa GPA Geopotential height anomaly Gpm -28 wvsp1 WVSP1 Wave Spectra (1) - -29 wvsp2 WVSP2 Wave Spectra (2) - -30 wvsp3 WVSP3 Wave Spectra (3) - -31 wdir WDIR Wind direction Deg. true -32 wins WINS Wind speed m/s -33 u U u-component of wind m/s -34 v V v-component of wind m/s -35 strf STRF Stream function m2/s -36 vp VP Velocity potential m2/s -37 mntsf MNTSF Montgomery stream function m2/s2 -38 sigma SIGMA Sigma coord. vertical velocity 1/s -39 omega OMEGA Pressure Vertical velocity Pa/s -40 w W Geometric Vertical velocity m/s -41 absv ABSV Absolute vorticity 1/s -42 absd ABSD Absolute divergence 1/s -43 vo VO Relative vorticity 1/s -44 d D Relative divergence 1/s -45 vusch VUSCH Vertical u-component shear 1/s -46 vvsch VVSCH Vertical v-component shear 1/s -47 dirc DIRC Direction of current Deg. true -48 spc SPC Speed of current m/s -49 ucurr UCURR u-component of current m/s -50 vcurr VCURR v-component of current m/s -51 q Q Specific humidity kg/kg -52 r R Relative humidity % -53 mixr MIXR Humidity mixing ratio kg/kg -54 pwat PWAT Precipitable water kg/m2 -55 vp VP Vapour pressure Pa -56 satd SATD Saturation deficit Pa -57 e E Evaporation m of water equivalent -58 cice CICE Cloud Ice kg/m2 -59 prate PRATE Precipitation rate kg/m2/s -60 tstm TSTM Thunderstorm probability % -61 tp TP Total precipitation kg/m2 -62 lsp LSP Large scale precipitation kg/m2 -63 acpcp ACPCP Convective precipitation kg/m2 -64 srweq SRWEQ Snowfall rate water equivalent kg/m2/s -65 sdwe SDWE Water equiv. of accum. snow depth kg/m2 -66 sd SD Snow depth m -67 mld MLD Mixed layer depth m -68 tthdp TTHDP Transient thermocline depth m -69 mthd MTHD Main thermocline depth m -70 mtha MTHA Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 cwat CWAT Cloud water kg/m2 -77 bli BLI Best lifted index (to 500 hPa) K -78 snoc SNOC Convective snow kg/m2 -79 snol SNOL Large scale snow kg/m2 -80 wtmp WTMP Water Temperature K -81 lsm LSM Land-sea mask (1=land 0=sea) (see note) Fraction -82 dslm DSLM Deviation of sea level from mean m -83 sr SR Surface roughness m -84 al AL Albedo % -85 st ST Soil temperature K -86 ssw SSW Soil moisture content kg/m2 -87 veg VEG Vegetation % -88 s S Salinity kg/kg -89 den DEN Density kg/m3 -90 watr WATR Water run off kg/m2 -91 icec ICEC Ice cover (ice=1 no ice=0)(see note) Fraction -92 icetk ICETK Ice thickness m -93 diced DICED Direction of ice drift deg. true -94 siced SICED Speed of ice drift m/s -95 uice UICE u-component of ice drift m/s -96 vice VICE v-component of ice drift m/s -97 iceg ICEG Ice growth rate m/s -98 iced ICED Ice divergence /s -99 snom SNOM Snow melt kg/m2 -100 swh SWH Significant height of combined wind waves and swell m -101 wvdir WVDIR Direction of wind waves deg. true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 swdir SWDIR Direction of swell waves deg. true -105 swell SWELL Significant height of swell waves m -106 swper SWPER Mean period of swell waves s -107 prwd PRWD Primary wave direction deg. true -108 perpw PERPW Primary wave mean period s -109 dirsw DIRSW Secondary wave direction deg. true -110 persw PERSW Secondary wave mean period s -111 nswrs NSWRS Net short-wave radiation flux (surface) W/m2 -112 nlwrs NLWRS Net long wave radiation flux (surface) W/m2 -113 nswrt NSWRT Net short-wave radiation flux (top of atmos.) W/m2 -114 nlwrt NLWRT Net long wave radiation flux (top of atmos.) W/m2 -115 lwavr LWAVR Long wave radiation flux W/m2 -116 swavr SWAVR Short wave radiation flux W/m2 -117 grad GRAD Global radiation flux W/m2 -118 btmp BTMP Brightness temperature K -119 lwrad LWRAD Radiance (with respect to wave number) W/m/sr -120 swrad SWRAD Radiance (with respect to wave length) W/m3/sr -121 lhtfl LHTFL Latent heat net flux W/m2 -122 shtfl SHTFL Sensible heat net flux W/m2 -123 bld BLD Boundary layer dissipation W/m2 -124 uflx UFLX Momentum flux, u component N/m2 -125 vflx VFLX Momentum flux, v component N/m2 -126 wmixe WMIXE Wind mixing energy J -127 imgd IMGD Image data - -128 mofl MOFL Momentum flux Pa -129 qten QTEN Humidity tendencies ? -130 radtop RADTOP Radiation at top of atmosphere ? -131 ctt CTT Cloud top temperature, infrared K -132 wvbt WVBT Water vapor brightness temperature K -133 wvbt_corr WVBT_CORR Water vapor brightness temperature, correction K -134 cwref CWREF Cloud water reflectivity Fraction -135 maxgust MAXGUST Maximum wind m/s -136 mingust MINGUST Minimum wind m/s -137 icc ICC Integrated cloud condensate kg/m2 -138 sd SD Snow depth m -139 sdol SDOL Open land snow depth m -140 tland TLAND Temperature over land K -141 qland QLAND Specific humidity over land kg/kg -142 rhland RHLAND Relative humidity over land Fraction -143 dptland DPTLAND Dew point over land K -160 slfr SLFR Slope fraction Fraction -161 shfr SHFR Shadow fraction Fraction -162 rsha RSHA Shadow parameter RSHA - -163 rshb RSHB Shadow parameter RSHB - -164 movegro MOVEGRO Momentum vegetation roughness m -165 susl SUSL Surface slope - -166 skwf SKWF Sky wiew factor Fraction -167 frasp FRASP Fraction of aspect - -168 hero HERO Heat roughness m -169 al_scorr AL_SCORR Albedo with solar angle correction Fraction -189 swi SWI Soil wetness index - -190 asn ASN Snow albedo Fraction -191 dsn DSN Snow density - -192 watcn WATCN Water on canopy level kg/m2 -193 ssi SSI Surface soil ice m3/m3 -194 frst FRST Fraction of surface type Fraction -195 st ST Soil type code -196 fol FOL Fraction of lake Fraction -197 fof FOF Fraction of forest Fraction -198 fool FOOL Fraction of open land Fraction -199 vgtyp VGTYP Vegetation type (Olsson land use) - -200 tke TKE Turbulent Kinetic Energy J/kg -204 sdor SDOR Standard deviation of mesoscale orography gpm -205 amo AMO Anisotrophic mesoscale orography - -206 anmo ANMO X-angle of mesoscale orography rad -208 mssso MSSSO Maximum slope of smallest scale orography rad -209 sdsso SDSSO Standard deviation of smallest scale orography gpm -210 iceex ICEEX Ice existence - -222 lcl LCL Lifting condensation level m -223 lnbuo LNBUO Level of neutral buoyancy m -224 ci CI Convective inhibation J/kg -225 cape CAPE CAPE J/kg -226 ptype PTYPE Precipitation type code -227 fricv FRICV Friction velocity m/s -228 gust GUST Wind gust m/s -250 anpr3 ANPR3 Analysed 3-hour precipitation (-3h/0h) kg/m2 -251 anpr12 ANPR12 Analysed 12-hour precipitation (-12h/0h) kg/m2 diff --git a/eccodes/definitions.save/grib1/2.82.128.table b/eccodes/definitions.save/grib1/2.82.128.table deleted file mode 100644 index 1f648711..00000000 --- a/eccodes/definitions.save/grib1/2.82.128.table +++ /dev/null @@ -1,139 +0,0 @@ -1 so2 SO2 SO2/SO2 - -2 so4_2- SO4_2- SO4(2-)/SO4(2-) (sulphate) - -3 dms DMS DMS/DMS - -4 msa MSA MSA/MSA - -5 h2s H2S H2S/H2S - -6 nh4so4 NH4SO4 NH4SO4/(NH4)1.5H0.5SO4 - -7 nh4hso4 NH4HSO4 NH4HSO4/NH4HSO4 - -8 nh42so4 NH42SO4 NH42SO4/(NH4)2SO4 - -9 sft SFT SULFATE/SULFATE - -10 so2_aq SO2_AQ SO2_AQ/SO2 in aqueous phase - -11 so4_aq SO4_AQ SO4_AQ/sulfate in aqueous phase - -23 lrt_so2_s LRT_SO2_S LRT_SO2_S/long-range SO2_S - -24 lrt_so4_s LRT_SO4_S LRT_SO4_S/LRT-contriubtion to SO4_S - -25 lrt_sox_s LRT_SOX_S LRT_SOX_S/LRT-contriubtion to SO4_S - -26 xsox_s XSOX_S XSOX_S/excess SOX (corrected for sea salt as sulfur) - -27 so2_s SO2_S SO2_S/SO2 (as sulphur) - -28 so4_s SO4_S SO4_S/SO4 (as sulphur) - -29 sox_s SOX_S SOX_S/All oxidised sulphur compounds (as sulphur) - -30 no NO NO - -31 no2 NO2 NO2/NO2 - -32 hno3 HNO3 HNO3/HNO3 - -33 no3- NO3- NO3(-1)/NO3(-1) (nitrate) - -34 nh4no3 NH4NO3 NH4NO3/NH4NO3 - -35 nitrate NITRATE NITRATE/NITRATE - -36 pno3 PNO3 PNO3/(COARSE) NITRATE - -37 lrt_noy_n LRT_NOY_N LRT_NOY_N/long-range NOY_N - -38 no3_n NO3_N NO3_N/NO3 as N - -39 hno3_n HNO3_N HNO3_N/HNO3 as N - -40 lrt_no3_n LRT_NO3_N LRT_NO3_N/long-range NO3_N - -41 lrt_hno3_n LRT_HNO3_N LRT_HNO3_N/long-range HNO3_N - -42 lrt_no2_n LRT_NO2_N LRT_NO2_N/long-range NO2_N - -43 lrt_noz_n LRT_NOZ_N LRT_NOZ_N/long-range NOZ_N - -44 nox NOX NOX/NOX as NO2 - -45 no_n NO_N NO_N/NO as N - -46 no2_n NO2_N NO2_N/NO2 as N - -47 nox_n NOX_N NOX_N/NO2+NO (NOx) as nitrogen - -48 noy_n NOY_N NOY_N/All oxidised N-compounds (as nitrogen) - -49 noz_n NOZ_N NOZ_N/NOy-NOx (as nitrogen) - -50 nh3 NH3 NH3/NH3 - -51 nh4_plus NH4_PLUS NH4(+1)/NH4 - -52 ammonium AMMONIUM AMMONIUM/AMMONIUM - -54 nh3_n NH3_N NH3_N/NH3 (as nitrogen) - -55 nh4_n NH4_N NH4_N/NH4 (as nitrogen) - -56 lrt_nh3_n LRT_NH3_N LRT_NH3_N/long-range NH3_N - -57 lrt_nh4_n LRT_NH4_N LRT_NH4_N/long-range NH4_N - -58 lrt_nhx_n LRT_NHX_N LRT_NHX_N/long-range NHX_N - -59 nhx_n NHX_N NHX_N/All reduced nitrogen (as nitrogen) - -60 o3 O3 O3 - -61 h2o2 H2O2 H2O2/H2O2 - -62 oh OH OH/OH - -63 o3_aq O3_AQ O3_AQ/O3 in aqueous phase - -64 h2o2_aq H2O2_AQ H2O2_AQ/H2O2 in aqueous phase - -65 ox OX OX/Ox=O3+NO2 - -70 c C C - -71 co CO CO/CO - -72 co2 CO2 CO2/CO2 - -73 ch4 CH4 CH4/CH4 - -74 oc OC OC/Organic carbon (particles) - -75 ec EC EC/Elementary carbon (particles) - -80 cf6 CF6 CF6 - -81 pmch PMCH PMCH/PMCH - -82 pmcp PMCP PMCP/PMCP - -83 tracer TRACER TRACER/Tracer - -84 inert INERT Inert/Inert - -85 h3 H3 H3 - -86 ar41 AR41 Ar41/Ar41 - -87 kr85 KR85 Kr85/Kr85 - -88 kr88 KR88 Kr88/Kr88 - -91 xe131 XE131 Xe131/Xe131 - -92 xe133 XE133 Xe133/Xe133 - -93 rn222 RN222 Rn222/Rn222 - -95 i131 I131 I131/I131 - -96 i132 I132 I132/I132 - -97 i133 I133 I133/I133 - -98 i135 I135 I135/I135 - -100 sr90 SR90 Sr90 - -101 co60 CO60 Co60/Co60 - -102 ru103 RU103 Ru103/Ru103 - -103 ru106 RU106 Ru106/Ru106 - -104 cs134 CS134 Cs134/Cs134 - -105 cs137 CS137 Cs137/Cs137 - -106 ra223 RA223 Ra223/Ra123 - -108 ra228 RA228 Ra228/Ra228 - -110 zr95 ZR95 Zr95 - -111 nb95 NB95 Nb95/Nb95 - -112 ce144 CE144 Ce144/Ce144 - -113 np238 NP238 Np238/Np238 - -114 np239 NP239 Np239/Np239 - -115 pu241 PU241 Pu241/Pu241 - -116 pb210 PB210 Pb210/Pb210 - -119 all ALL ALL - -120 nacl NACL NACL - -121 na_plus NA_PLUS SODIUM/Na+ - -122 mg_2plus MG_2PLUS MAGNESIUM/Mg++ - -123 k_plus K_PLUS POTASSIUM/K+ - -124 ca_2plus CA_2PLUS CALCIUM/Ca++ - -125 xmg XMG XMG/excess Mg++ (corrected for sea salt) - -126 xk XK XK/excess K+ (corrected for sea salt) - -128 xca XCA XCA/excess Ca++ (corrected for sea salt) - -140 cl2 CL2 Cl2/Cloride - -160 pmfine PMFINE PMFINE - -161 pmcoarse PMCOARSE PMCOARSE/Coarse particles - -162 dust DUST DUST/Dust (particles) - -163 pnumber PNUMBER PNUMBER/Number concentration - -164 pradius PRADIUS PRADIUS/Particle radius - -165 psurface PSURFACE PSURFACE/Particle surface conc - -166 pmass PMASS PMASS/Particle mass conc - -167 pm10 PM10 PM10/PM10 particles - -168 psox PSOX PSOX/Particulate sulfate - -169 pnox PNOX PNOX/Particulate nitrate - -170 pnhx PNHX PNHX/Particulate ammonium - -171 ppmfine PPMFINE PPMFINE/Primary emitted fine particles - -172 ppm10 PPM10 PPM10/Primary emitted particles - -173 soa SOA SOA/Secondary Organic Aerosol - -174 pm2.5 PM2.5 PM2.5/PM2.5 particles - -175 pm PM PM/Total particulate matter - -180 birch_pollen BIRCH_POLLEN BIRCH_POLLEN/Birch pollen - -200 kz KZ KZ m2/s -201 l L L/Monin-Obukhovs length [m] m -202 u_star U_STAR U*/Friction velocity [m/s] m/s -203 w_star W_STAR W*/Convective velocity scale [m/s] m/s -204 z-d Z-D Z-D/Z0 minus displacement length [m] m -210 surftype SURFTYPE SURFTYPE/Surface type (see \link{OCTET45}) - -211 lai LAI LAI/Leaf area index - -212 soiltype SOILTYPE SOILTYPE/Soil type - -213 ssalb SSALB SSALB/Single scattering albodo [1] 1 -214 asympar ASYMPAR ASYMPAR/Asymmetry parameter - -215 vis VIS VIS/Visibility [m] m -216 ext EXT EXT/Extinction [1/m] 1/m -217 bsca BSCA BSCA/Backscattering coeff [1/m/sr] 1/m/sr -218 aod AOD AOD/Aerosol opt depth [1] 1 -219 daod DAOD DAOD/AOD per layer [1] 1 -220 conv_tied CONV_TIED CONV_TIED - -221 conv_bot CONV_BOT CONV_BOT/Convective cloud bottom (unit?) - -222 conv_top CONV_TOP CONV_TOP/Convective cloud top (unit?) - -223 dxdy DXDY DXDY/Gridsize [m2] m2 -240 emis EMIS EMIS/Sectoral emissions - -241 long LONG LONG/Longitude - -242 lat LAT LAT/Latitude - diff --git a/eccodes/definitions.save/grib1/2.82.129.table b/eccodes/definitions.save/grib1/2.82.129.table deleted file mode 100644 index 6e3df7aa..00000000 --- a/eccodes/definitions.save/grib1/2.82.129.table +++ /dev/null @@ -1,120 +0,0 @@ -1 msl MSL Pressure reduced to MSL Pa -11 t T Temperature K -12 tiw TIW Wet bulb temperature K -13 mean2t24 MEAN2T24 24 hour mean of 2 meter temperature K -15 tmax TMAX Maximum temperature K -16 tmin TMIN Minimum temperature K -20 vis VIS Visibility m -32 fg FG Wind gusts m/s -33 u U u-component of wind m/s -34 v V v-component of wind m/s -52 r R Relative humidity % -71 tcc TCC Total cloud cover fraction -73 lcc LCC Low cloud cover fraction -74 mcc MCC Medium cloud cove fraction -75 hcc HCC High cloud cover fraction -77 frsigc FRSIGC Fraction of significant clouds fraction -78 cbsigc CBSIGC Cloud base of significant clouds m -79 ctsigc CTSIGC Cloud top of significant clouds m -128 vptmp VPTMP Virtual potential temperature K -129 heatx HEATX Heat index K -130 wcf WCF Wind chill factor K -131 snohf SNOHF Snow phase change heat flux W/m2 -132 skt SKT Skin temperature K -133 snoag SNOAG Snow age day -134 absh ABSH Absolute humidity kg/m3 -135 ptype PTYPE Precipitation type code -136 iliqw ILIQW Integrated liquid water kg/m2 -137 tcond TCOND Condensate kg/kg -138 clwmr CLWMR Cloud mixing ratio kg/kg -139 icmr ICMR Ice water mixing ratio kg/kg -140 rwmr RWMR Rain mixing ratio kg/kg -141 snmr SNMR Snow mixing ratio kg/kg -142 mconv MCONV Horizontal moisture convergence kg/kg/s -143 pwcat PWCAT Precipitable water category code -144 hail HAIL Hail m -145 prtype PRTYPE Type of precipitation code -146 prsort PRSORT Sort of precipitation code -150 grle GRLE Graupel kg/kg -151 crain CRAIN Categorical rain code -152 cfrzr CFRZR Categorical freezing rain code -153 cicep CICEP Categorical ice pellets code -154 csnow CSNOW Categorical snow code -155 cprat CPRAT Convective precipitation rate kg/m2/s -156 mconv MCONV Horizontal moisture divergence kg/kg/s -157 cpofp CPOFP Percent frozen precipitation % -158 pev PEV Potential evaporation kg/m2 -159 pevpr PEVPR Potential evaporation rate W/m2 -160 snowc SNOWC Snow cover % -161 prec6h PREC6H 6 hour precipitation mm -162 prec12h PREC12H 12 hour precipitation mm -163 prec18h PREC18H 18 hour precipitation mm -164 prec24h PREC24H 24 hour precipitation mm -165 prec1h PREC1H 1 hour precipitation mm -166 prec2h PREC2H 2 hour precipitation mm -167 prec3h PREC3H 3 hour precipitation mm -168 prec9h PREC9H 9 hour precipitation mm -169 prec15h PREC15H 15 hour precipitation mm -171 frsn6h FRSN6H 6 hour fresh snow cover cm -172 frsn12h FRSN12H 12 hour fresh snow cover cm -173 frsn18h FRSN18H 18 hour fresh snow cover cm -174 frsn24h FRSN24H 24 hour fresh snow cover cm -175 frsn1h FRSN1H 1 hour fresh snow cover cm -176 frsn2h FRSN2H 2 hour fresh snow cover cm -177 frsn3h FRSN3H 3 hour fresh snow cover cm -178 frsn9h FRSN9H 9 hour fresh snow cover cm -179 frsn15h FRSN15H 15 hour fresh snow cover cm -181 prec6h_cor PREC6H_COR 6 hour precipitation, corrected mm -182 prec12h_cor PREC12H_COR 12 hour precipitation, corrected mm -183 prec18h_cor PREC18H_COR 18 hour precipitation, corrected mm -184 prec24h_cor PREC24H_COR 24 hour precipitation, corrected mm -185 prec1h_cor PREC1H_COR 1 hour precipitation, corrected mm -186 prec2h_cor PREC2H_COR 2 hour precipitation, corrected mm -187 prec3h_cor PREC3H_COR 3 hour precipitation, corrected mm -188 prec9h_cor PREC9H_COR 9 hour precipitation, corrected mm -189 prec15h_cor PREC15H_COR 15 hour precipitation, corrected mm -191 frsn6h_cor FRSN6H_COR 6 hour fresh snow cover, corrected cm -192 frsn12h_cor FRSN12H_COR 12 hour fresh snow cover, corrected cm -193 frsn18h_cor FRSN18H_COR 18 hour fresh snow cover, corrected cm -194 frsn24h_cor FRSN24H_COR 24 hour fresh snow cover, corrected cm -195 frsn1h_cor FRSN1H_COR 1 hour fresh snow cover, corrected cm -196 frsn2h_cor FRSN2H_COR 2 hour fresh snow cover, corrected cm -197 frsn3h_cor FRSN3H_COR 3 hour fresh snow cover, corrected cm -198 frsn9h_cor FRSN9H_COR 9 hour fresh snow cover, corrected cm -199 frsn15h_cor FRSN15H_COR 15 hour fresh snow cover, corrected cm -201 prec6h_sta PREC6H_STA 6 hour precipitation, standardized mm -202 prec12h_sta PREC12H_STA 12 hour precipitation, standardized mm -203 prec18h_sta PREC18H_STA 18 hour precipitation, standardized mm -204 prec24h_sta PREC24H_STA 24 hour precipitation, standardized mm -205 prec1h_sta PREC1H_STA 1 hour precipitation, standardized mm -206 prec2h_sta PREC2H_STA 2 hour precipitation, standardized mm -207 prec3h_sta PREC3H_STA 3 hour precipitation, standardized mm -208 prec9h_sta PREC9H_STA 9 hour precipitation, standardized mm -209 prec15h_sta PREC15H_STA 15 hour precipitation, standardized mm -211 frsn6h_sta FRSN6H_STA 6 hour fresh snow cover, standardized cm -212 frsn12h_sta FRSN12H_STA 12 hour fresh snow cover, standardized cm -213 frsn18h_sta FRSN18H_STA 18 hour fresh snow cover, standardized cm -214 frsn24h_sta FRSN24H_STA 24 hour fresh snow cover, standardized cm -215 frsn1h_sta FRSN1H_STA 1 hour fresh snow cover, standardized cm -216 frsn2h_sta FRSN2H_STA 2 hour fresh snow cover, standardized cm -217 frsn3h_sta FRSN3H_STA 3 hour fresh snow cover, standardized cm -218 frsn9h_sta FRSN9H_STA 9 hour fresh snow cover, standardized cm -219 frsn15h_sta FRSN15H_STA 15 hour fresh snow cover, standardized cm -221 prec6h_corsta PREC6H_CORSTA 6 hour precipitation, corrected and standardized mm -222 prec12h_corsta PREC12H_CORSTA 12 hour precipitation, corrected and standardized mm -223 prec18h_corsta PREC18H_CORSTA 18 hour precipitation, corrected and standardized mm -224 prec24h_corsta PREC24H_CORSTA 24 hour precipitation, corrected and standardized mm -225 prec1h_corsta PREC1H_CORSTA 1 hour precipitation, corrected and standardized mm -226 prec2h_corsta PREC2H_CORSTA 2 hour precipitation, corrected and standardized mm -227 prec3h_corsta PREC3H_CORSTA 3 hour precipitation, corrected and standardized mm -228 prec9h_corsta PREC9H_CORSTA 9 hour precipitation, corrected and standardized mm -229 prec15h_corsta PREC15H_CORSTA 15 hour precipitation, corrected and standardized mm -231 frsn6h_corsta FRSN6H_CORSTA 6 hour fresh snow cover, corrected and standardized cm -232 frsn12h_corsta FRSN12H_CORSTA 12 hour fresh snow cover, corrected and standardized cm -233 frsn18h_corsta FRSN18H_CORSTA 18 hour fresh snow cover, corrected and standardized cm -234 frsn24h_corsta FRSN24H_CORSTA 24 hour fresh snow cover, corrected and standardized cm -235 frsn1h_corsta FRSN1H_CORSTA 1 hour fresh snow cover, corrected and standardized cm -236 frsn2h_corsta FRSN2H_CORSTA 2 hour fresh snow cover, corrected and standardized cm -237 frsn3h_corsta FRSN3H_CORSTA 3 hour fresh snow cover, corrected and standardized cm -238 frsn9h_corsta FRSN9H_CORSTA 9 hour fresh snow cover, corrected and standardized cm -239 frsn15h_corsta FRSN15H_CORSTA 15 hour fresh snow cover, corrected and standardized cm diff --git a/eccodes/definitions.save/grib1/2.82.130.table b/eccodes/definitions.save/grib1/2.82.130.table deleted file mode 100644 index 98915303..00000000 --- a/eccodes/definitions.save/grib1/2.82.130.table +++ /dev/null @@ -1,99 +0,0 @@ -1 mslp MSLP Pressure reduced to MSL Pa -11 t T Temperature K -20 vis VIS Visibility m -33 u U u-component of wind m/s -34 v V v-component of wind m/s -52 r R Relative humidity % -58 fzrapr FZRAPR Probability of frozen rain % -60 tstm TSTM Probability thunderstorm % -71 tcc TCC Total cloud cover fraction -72 ccc CCC Convective cloud cover fraction -73 lcc LCC Low cloud cover fraction -74 mcc MCC Medium cloud cove fraction -75 hcc HCC High cloud cover fraction -77 cm CM cloud mask fraction -110 epstm EPSTM EPS T mean K -111 epststd EPSTSTD EPS T standard deviation K -130 mxws10min MXWS10MIN Maximum wind (mean 10 min) M/S -131 gust GUST Wind gust M/S -135 cbase_sig CBASE_SIG Cloud base (significant) m -136 ctop_sig CTOP_SIG Cloud top (significant) m -140 pit PIT Precipitation intensity total kg/m2/s -141 pis PIS Precipitation intensity snow kg/m2/s -145 ptype PTYPE Precipitation type, conv 0, large scale 1, no prec -9 category -146 pcat PCAT Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle category -150 dswrf DSWRF Downward short-wave radiation flux W/m2 -151 uswrf USWRF Upward short-wave radiation flux W/m2 -152 nswrf NSWRF Net short wave radiation flux W/m2 -153 photar PHOTAR Photosynthetically active radiation W/m2 -154 nswrfcs NSWRFCS Net short-wave radiation flux, clear sky W/m2 -155 dwuvr DWUVR Downward UV radiation W/m2 -156 uviucs UVIUCS UV index (under clear sky) Numeric -157 uvi UVI UV index Numeric -158 dlwrf DLWRF Downward long-wave radiation flux W/m2 -159 ulwrf ULWRF Upward long-wave radiation flux W/m2 -160 nlwrf NLWRF Net long wave radiation flux W/m2 -161 nlwrfcs NLWRFCS Net long-wave radiation flux, clear sky W/m2 -162 cdca CDCA Cloud amount % -163 cdct CDCT Cloud type Code -164 tmaxt TMAXT Thunderstorm maximum tops m -165 thunc THUNC Thunderstorm coverage Code -166 cdcb CDCB Cloud base m -167 cdct CDCT Cloud top m -168 ceil CEIL Ceiling m -169 cdlyr CDLYR Non-convective cloud cover % -170 cwork CWORK Cloud work function J/kg -171 cuefi CUEFI Convective cloud efficiency Proportion -172 tcond TCOND Total condensate kg/kg -173 tcolw TCOLW Total column-integrated cloud water kg/m2 -174 tcoli TCOLI Total column-integrated cloud ice kg/m2 -175 tcolc TCOLC Total column-integrated condensate kg/m2 -176 fice FICE Ice fraction of total condensate Proportion -177 cc CC Cloud cover % -178 cdcimr CDCIMR Cloud ice mixing ratio kg/kg -179 suns SUNS Sunshine Numeric -180 cbext CBEXT Horizontal extent of cumulunimbus (CB) % -181 fracc FRACC Fraction of cloud cover Numeric -182 sund SUND Sunshine duration s -183 kx KX K index K -184 kox KOX KO index K -185 totalx TOTALX Total totals index K -186 sx SX Sweat index Numeric -187 hlcy HLCY Storm relative helicity J/kg -188 ehlx EHLX Energy helicity index Numeric -189 lftx LFTX Surface lifted index K -190 4lftx 4LFTX Best (4-layer) lifted index K -191 ri RI Richardson number Numeric -192 aerot AEROT Aerosol type Code -193 o3mx O3MX Ozone mixing ratio kg/kg -194 tcioz TCIOZ Total column integrated ozone Dobson -200 bswid BSWID Base spectrum width m/s -201 bref BREF Base reflectivity dB -202 brvel BRVEL Base radial velocity m/s -203 veril VERIL Vertically integrated liquid kg/m -204 lmaxbr LMAXBR Layer-maximum base reflectivity dB -205 prrad PRRAD Precipitation (radar) kg/m -206 eqrrra EQRRRA Equivalent radar reflectivity factor for rain mm6/m3 -207 eqrrsn EQRRSN Equivalent radar reflectivity factor for snow mm6/m3 -208 eqrfpc EQRFPC Equivalent radar reflectivity factor for paramterized convection mm6/m3 -209 ectop_rad ECTOP_RAD Echo top (radar) m -210 refl_rad REFL_RAD Reflectivity (radar) dB -211 corefl_rad COREFL_RAD Composite reflectivity (radar) dB -215 icit ICIT Icing top m -216 icib ICIB Icing base m -217 ici ICI Icing Code -218 turbt TURBT Turbulence top m -219 turbb TURBB Turbulence base m -220 turb TURB Turbulence Code -221 pblr PBLR Planetary boundary-layer regime Code -222 conti CONTI Contrail intensity Code -223 contet CONTET Contrail engine type Code -224 contt CONTT Contrail top m -225 contb CONTB Contrail base m -226 snfalb SNFALB Snow free albedo % -227 ici_prop ICI_PROP Icing % -228 icturb ICTURB In-cloud turbulence % -229 cat CAT Clear air turbulence (CAT) % -230 scld_prob SCLD_PROB Supercooled large droplet probability % -235 text TEXT Arbitrary text string CCITTIA5 -236 secpref SECPREF Seconds prior to initial reference time (defined in section1) (meteorology) s diff --git a/eccodes/definitions.save/grib1/2.82.131.table b/eccodes/definitions.save/grib1/2.82.131.table deleted file mode 100644 index 395359d8..00000000 --- a/eccodes/definitions.save/grib1/2.82.131.table +++ /dev/null @@ -1,29 +0,0 @@ -11 sst_lake SST_LAKE Sea surface temperature (LAKE) K -49 ecurr ECURR Current east m/s -50 ncurr NCURR Current north m/s -66 sd_pr SD_PR Snowdepth in Probe m -91 iceconc_lake ICECONC_LAKE Ice concentration (LAKE) fraction -92 iceth_pr ICETH_PR Ice thickness Probe-lake m -150 t_abc T_ABC Temperature ABC-lake K -151 t_c T_C Temperature C-lake K -152 t_d T_D Temperature D-lake K -153 t_e T_E Temperature E-lake K -160 ar_abc AR_ABC Area ABC-lake km2 -161 dp_abc DP_ABC Depth ABC-lake m -162 c C C-lakes amount -163 d D D-lakes amount -164 e E E-lakes amount -170 iceth_abc ICETH_ABC Ice thickness ABC-lake m -171 iceth_c ICETH_C Ice thickness C-lake m -172 iceth_d ICETH_D Ice thickness D-lake m -173 iceth_e ICETH_E Ice thickness E-lake m -180 sst_t SST_T Sea surface temperature (T) K -183 iceconc_i ICECONC_I Ice concentration (I) fraction -196 fl FL Fraction lake fraction -241 bit_pr BIT_PR Black ice thickness in Probe m -244 244 None Vallad istjocklek i Probe m -245 intice_pr INTICE_PR Internal ice concentration in Probe fraction -246 icefr_pr ICEFR_PR Isfrontlaege i Probe m -250 heat_pr HEAT_PR Heat in Probe Joule -251 tke TKE Turbulent Kintetic Energy J/kg -252 tkediss TKEDISS Dissipation rate Turbulent Kinetic Energy W/kg diff --git a/eccodes/definitions.save/grib1/2.82.133.table b/eccodes/definitions.save/grib1/2.82.133.table deleted file mode 100644 index 54122863..00000000 --- a/eccodes/definitions.save/grib1/2.82.133.table +++ /dev/null @@ -1,102 +0,0 @@ -1 msl MSL Pressure reduced to MSL Pa -11 t T Temperature Deg C -13 pt PT Potential temperature K -28 ws1 WS1 Wave spectra (1) - -29 ws2 WS2 Wave spectra (2) - -30 ws3 WS3 Wave spectra (3) - -31 dir DIR Wind direction Deg true -32 spd SPD Wind speed m/s -33 u U U-component of Wind m/s -34 v V V-component of Wind m/s -35 strf STRF Stream function m2/s -36 vp VP Velocity potential m2/s -37 mntsf MNTSF Montgomery stream function m2/s2 -38 sigmw SIGMW Sigma coordinate vertical velocity 1/s -39 wcur_pr WCUR_PR Z-component of velocity (pressure) Pa/s -40 wcur_ge WCUR_GE Z-component of velocity (geometric) m/s -41 absvor ABSVOR Absolute vorticity 1/s -42 absdiv ABSDIV Absolute divergence 1/s -43 relvor RELVOR Relative vorticity 1/s -44 reldiv RELDIV Relative divergence 1/s -45 vershu VERSHU Vertical u-component shear 1/s -46 vershv VERSHV Vertical v-component shear 1/s -47 dirhorcurr DIRHORCURR Direction of horizontal current Deg true -48 spdhorcurr SPDHORCURR Speed of horizontal current m/s -49 ucue UCUE U-comp of Current cm/s -50 vcur VCUR V-comp of Current cm/s -51 q Q Specific humidity g/kg -66 hsnow HSNOW Snow Depth m -67 mld MLD Mixed layer depth m -68 tthdp TTHDP Transient thermocline depth m -69 mthd MTHD Main thermocline depth m -70 mtha MTHA Main thermocline anomaly m -71 tcc TCC Total Cloud Cover Fraction -80 wtmp WTMP Water temperature K -82 zlev ZLEV Deviation of sea level from mean cm -88 s S Salinity psu -89 den DEN Density kg/m3 -91 icec ICEC Ice Cover Fraction -92 icetk ICETK Total ice thickness m -93 diced DICED Direction of ice drift Deg true -94 siced SICED Speed of ice drift m/s -95 uice UICE U-component of ice drift cm/s -96 vice VICE V-component of ice drift cm/s -97 iceg ICEG Ice growth rate m/s -98 iced ICED Ice divergence 1/s -100 swh SWH Significant wave height m -101 wvdir WVDIR Direction of Wind Waves Deg. true -102 shww SHWW Sign Height Wind Waves m -103 mpww MPWW Mean Period Wind Waves s -104 swdir SWDIR Direction of Swell Waves Deg. true -105 shps SHPS Sign Height Swell Waves m -106 swper SWPER Mean Period Swell Waves s -107 dirpw DIRPW Primary wave direction Deg true -108 perpw PERPW Primary wave mean period s -109 dirsw DIRSW Secondary wave direction Deg true -110 persw PERSW Secondary wave mean period s -111 mpw MPW Mean period of waves s -112 wadir WADIR Mean direction of Waves Deg. true -113 pp1d PP1D Peak period of 1D spectra s -130 usurf USURF Skin velocity, x-comp. cm/s -131 vsurf VSURF Skin velocity, y-comp. cm/s -151 no3 NO3 Nitrate - -152 nh4 NH4 Ammonium - -153 po4 PO4 Phosphate - -154 o2 O2 Oxygen - -155 phpl PHPL Phytoplankton - -156 zpl ZPL Zooplankton - -157 dtr DTR Detritus - -158 benn BENN Bentos nitrogen - -159 benp BENP Bentos phosphorus - -160 sio4 SIO4 Silicate - -161 sio2_bi SIO2_BI Biogenic silica - -162 li_wacol LI_WACOL Light in water column - -163 inorg_mat INORG_MAT Inorganic suspended matter - -164 diat DIAT Diatomes (algae) - -165 flag FLAG Flagellates (algae) - -166 no3_agg NO3_AGG Nitrate (aggregated) - -170 ffldg FFLDG Flash flood guidance kg/m2 -171 ffldro FFLDRO Flash flood runoff kg/m2 -172 rssc RSSC Remotely-sensed snow cover Code -173 esct ESCT Elevation of snow-covered terrain Code -174 swepon SWEPON Snow water equivalent per cent of normal % -175 bgrun BGRUN Baseflow-groundwater runoff kg/m2 -176 ssrun SSRUN Storm surface runoff kg/m2 -180 cppop CPPOP Conditional per cent precipitation amount fractile for an overall period kg/m2 -181 pposp PPOSP Per cent precipitation in a sub-period of an overall period % -182 pop POP Probability if 0.01 inch of precipitation % -190 tsec TSEC Seconds prior to initial reference time (defined in section1) (oceonography) s -191 mosf MOSF Meridional overturning stream function m3/s -200 tke TKE Turbulent Kinetic Energy J/kg -201 dtke DTKE Dissipation rate of TKE W/kg -202 km KM Eddy viscosity m2/s -203 kh KH Eddy diffusivity m2/s -220 hlev HLEV Level ice thickness m -221 hrdg HRDG Ridged ice thickness m -222 rh RH Ice ridge height m -223 rd RD Ice ridge density 1/km -231 ucurmean UCURMEAN U-mean (prev. timestep) cm/s -232 vcurmean VCURMEAN V-mean (prev. timestep) cm/s -233 wcurmean WCURMEAN W-mean (prev. timestep) m/s -239 tsnow TSNOW Snow temperature Deg C -243 depth DEPTH Total depth in meters m diff --git a/eccodes/definitions.save/grib1/2.82.134.table b/eccodes/definitions.save/grib1/2.82.134.table deleted file mode 100644 index 3c60db4f..00000000 --- a/eccodes/definitions.save/grib1/2.82.134.table +++ /dev/null @@ -1,85 +0,0 @@ -1 c2h6 C2H6 C2H6/Ethane - -2 nc4h10 NC4H10 NC4H10/N-butane - -3 c2h4 C2H4 C2H4/Ethene - -4 c3h6 C3H6 C3H6/Propene - -5 oxylene OXYLENE OXYLENE/O-xylene - -6 hcho HCHO HCHO/Formalydehyde - -7 ch3cho CH3CHO CH3CHO/Acetaldehyde - -8 ch3coc2h5 CH3COC2H5 CH3COC2H5/Ethyl methyl keton - -9 mglyox MGLYOX MGLYOX/Methyl-glyoxal (CH3COCHO) - -10 glyox GLYOX GLYOX/Glyoxal (HCOCHO) - -11 c5h8 C5H8 C5H8/Isoprene - -12 c2h5oh C2H5OH C2H5OH/Ethanol - -13 ch3oh CH3OH CH3OH/Metanol - -14 hcooh HCOOH HCOOH/Formic acid - -15 ch3cooh CH3COOH CH3COOH/Acetic acid - -19 nmvoc_c NMVOC_C NMVOC_C/Total NMVOC as C - -21 pan PAN PAN/Peroxy acetyl nitrate - -22 no3 NO3 NO3/Nitrate radical - -23 n2o5 N2O5 N2O5/Dinitrogen pentoxide - -24 onit ONIT ONIT/Organic nitrate - -25 isonro2 ISONRO2 ISONRO2/Isoprene-NO3 adduct - -26 ho2no2 HO2NO2 HO2NO2/HO2NO2 - -27 mpan MPAN MPAN - -28 isono3h ISONO3H ISONO3H - -29 hono HONO HONO - -31 ho2 HO2 HO2/Hydroperhydroxyl radical - -32 h2 H2 H2/Molecular hydrogen - -33 o O O/Oxygen atomic ground state (3P) - -34 o1d O1D O1D/Oxygen atomic first singlet state - -41 ch3o2 CH3O2 CH3O2/Methyl peroxy radical - -42 ch3o2h CH3O2H CH3O2H/Methyl hydroperoxide - -43 c2h5o2 C2H5O2 C2H5O2/Ethyl peroxy radical - -44 ch3coo2 CH3COO2 CH3COO2/Peroxy acetyl radical - -45 secc4h9o2 SECC4H9O2 SECC4H9O2/Buthyl peroxy radical - -46 ch3cocho2ch3 CH3COCHO2CH3 CH3COCHO2CH3/peroxy radical from MEK - -47 acetol ACETOL ACETOL/acetol (hydroxy acetone) - -48 ch2o2ch2oh CH2O2CH2OH CH2O2CH2OH - -49 ch3cho2ch2oh CH3CHO2CH2OH CH3CHO2CH2OH/Peroxy radical from C3H6 plus OH - -50 mal MAL MAL/CH3COCHCHCHO - -51 malo2 MALO2 MALO2/Peroxy radical from MAL plus oh - -52 isro2 ISRO2 ISRO2/Peroxy radical from isoprene plus oh - -53 isoprod ISOPROD ISOPROD/Peroxy radical from ISOPROD - -54 c2h5ooh C2H5OOH C2H5OOH/Ethyl hydroperoxide - -55 ch3coo2h CH3COO2H CH3COO2H - -56 oxyo2h OXYO2H OXYO2H/Hydroperoxide from OXYO2 - -57 secc4h9o2h SECC4H9O2H SECC4H9O2H/Buthyl hydroperoxide - -58 ch2oohch2oh CH2OOHCH2OH CH2OOHCH2OH - -59 ch3choohch2oh CH3CHOOHCH2OH CH3CHOOHCH2OH//hydroperoxide from PRRO2 plus HO2 - -60 ch3cocho2hch3 CH3COCHO2HCH3 CH3COCHO2HCH3/hydroperoxide from MEKO2 plus HO2 - -61 malo2h MALO2H MALO2H/Hydroperoxide from MALO2 plus ho2 - -62 ipro2 IPRO2 IPRO2 - -63 xo2 XO2 XO2 - -64 oxyo2 OXYO2 OXYO2/Peroxy radical from o-xylene plus oh - -65 isro2h ISRO2H ISRO2H - -66 mvk MVK MVK - -67 mvko2 MVKO2 MVKO2 - -68 mvko2h MVKO2H MVKO2H - -70 benzene BENZENE BENZENE - -74 isni ISNI ISNI - -75 isnir ISNIR ISNIR - -76 isnirh ISNIRH ISNIRH - -77 macr MACR MACR - -78 aoh1 AOH1 AOH1 - -79 aoh1h AOH1H AOH1H - -80 macro2 MACRO2 MACRO2 - -81 maco3h MACO3H MACO3H - -82 macooh MACOOH MACOOH - -83 ch2cch3 CH2CCH3 CH2CCH3 - -84 ch2co2hch3 CH2CO2HCH3 CH2CO2HCH3 - -90 bigene BIGENE BIGENE - -91 bigalk BIGALK BIGALK - -92 toluene TOLUENE TOLUENE - -100 ch2chcn CH2CHCN CH2CHCN - -101 ch32nnh2 CH32NNH2 (CH3)2NNH2/Dimetylhydrazin - -102 ch2oc2h3cl CH2OC2H3CL CH2OC2H3Cl/Epiklorhydrin - -103 ch2oc2 CH2OC2 CH2OC2/Etylenoxid - -105 hf HF HF/Vaetefluorid - -106 hcl HCL Hcl/Vaeteklorid - -107 cs2 CS2 CS2/Koldisulfid - -108 ch3nh2 CH3NH2 CH3NH2/Metylamin - -110 sf6 SF6 SF6/Sulphurhexafloride - -111 hcn HCN HCN/Vaetecyanid - -112 cocl2 COCL2 COCl2/Fosgen - -113 h2cchcl H2CCHCL H2CCHCl/Vinylklorid - -128 va VA Volcanic ash Code diff --git a/eccodes/definitions.save/grib1/2.82.135.table b/eccodes/definitions.save/grib1/2.82.135.table deleted file mode 100644 index c5192b4b..00000000 --- a/eccodes/definitions.save/grib1/2.82.135.table +++ /dev/null @@ -1,104 +0,0 @@ -1 grg1 GRG1 GRG1/MOZART specie kg/kg -2 grg2 GRG2 GRG2/MOZART specie kg/kg -3 grg3 GRG3 GRG3/MOZART specie kg/kg -4 grg4 GRG4 GRG4/MOZART specie kg/kg -5 grg5 GRG5 GRG5/MOZART specie kg/kg -100 vis-340 VIS-340 VIS-340/Visibility at 340 nm m -101 vis-355 VIS-355 VIS-355/Visibility at 355 nm m -102 vis-380 VIS-380 VIS-380/Visibility at 380 nm m -103 vis-440 VIS-440 VIS-440/Visibility at 440 nm m -104 vis-500 VIS-500 VIS-500/Visibility at 500 nm m -105 vis-532 VIS-532 VIS-532/Visibility at 532 nm m -106 vis-675 VIS-675 VIS-675/Visibility at 675 nm m -107 vis-870 VIS-870 VIS-870/Visibility at 870 nm m -108 vis-1020 VIS-1020 VIS-1020/Visibility at 1020 nm m -109 vis-1064 VIS-1064 VIS-1064/Visibility at 1064 nm m -110 vis-3500 VIS-3500 VIS-3500/Visibility at 3500 nm m -111 vis-10000 VIS-10000 VIS-10000/Visibility at 10000 nm m -120 bsca-340 BSCA-340 BSCA-340/Backscatter at 340 nm 1/m/sr -121 bsca-355 BSCA-355 BSCA-355/Backscatter at 355 nm 1/m/sr -122 bsca-380 BSCA-380 BSCA-380/Backscatter at 380 nm 1/m/sr -123 bsca-440 BSCA-440 BSCA-440/Backscatter at 440 nm 1/m/sr -124 bsca-500 BSCA-500 BSCA-500/Backscatter at 500 nm 1/m/sr -125 bsca-532 BSCA-532 BSCA-532/Backscatter at 532 nm 1/m/sr -126 bsca-675 BSCA-675 BSCA-675/Backscatter at 675 nm 1/m/sr -127 bsca-870 BSCA-870 BSCA-870/Backscatter at 870 nm 1/m/sr -128 bsca-1020 BSCA-1020 BSCA-1020/Backscatter at 1020 nm 1/m/sr -129 bsca-1064 BSCA-1064 BSCA-1064/Backscatter at 1064 nm 1/m/sr -130 bsca-3500 BSCA-3500 BSCA-3500/Backscatter at 3500 nm 1/m/sr -131 bsca-10000 BSCA-10000 BSCA-10000/Backscatter at 10000 nm 1/m/sr -140 ext-340 EXT-340 EXT-340/Extinction at 340 nm 1/m -141 ext-355 EXT-355 EXT-355/Extinction at 355 nm 1/m -142 ext-380 EXT-380 EXT-380/Extinction at 380 nm 1/m -143 ext-440 EXT-440 EXT-440/Extinction at 440 nm 1/m -144 ext-500 EXT-500 EXT-500/Extinction at 500 nm 1/m -145 ext-532 EXT-532 EXT-532/Extinction at 532 nm 1/m -146 ext-675 EXT-675 EXT-675/Extinction at 675 nm 1/m -147 ext-870 EXT-870 EXT-870/Extinction at 870 nm 1/m -148 ext-1020 EXT-1020 EXT-1020/Extinction at 1020 nm 1/m -149 ext-1064 EXT-1064 EXT-1064/Extinction at 1064 nm 1/m -150 ext-3500 EXT-3500 EXT-3500/Extinction at 3500 nm 1/m -151 ext-10000 EXT-10000 EXT-10000/Extinction at 10000 nm 1/m -160 aod-340 AOD-340 AOD-340/Aerosol optical depth at 340 nm 1 -161 aod-355 AOD-355 AOD-355/Aerosol optical depth at 355 nm 1 -162 aod-380 AOD-380 AOD-380/Aerosol optical depth at 380 nm 1 -163 aod-440 AOD-440 AOD-440/Aerosol optical depth at 440 nm 1 -164 aod-500 AOD-500 AOD-500/Aerosol optical depth at 500 nm 1 -165 aod-532 AOD-532 AOD-532/Aerosol optical depth at 532 nm 1 -166 aod-675 AOD-675 AOD-675/Aerosol optical depth at 675 nm 1 -167 aod-870 AOD-870 AOD-870/Aerosol optical depth at 870 nm 1 -168 aod-1020 AOD-1020 AOD-1020/Aerosol optical depth at 1020 nm 1 -169 aod-1064 AOD-1064 AOD-1064/Aerosol optical depth at 1064 nm 1 -170 aod-3500 AOD-3500 AOD-3500/Aerosol optical depth at 3500 nm 1 -171 aod-10000 AOD-10000 AOD-10000/Aerosol optical depth at 10000 nm 1 -180 aod-635 AOD-635 Aerosol optical thickness at 0.635 micro-m 1 -181 aod-810 AOD-810 Aerosol optical thickness at 0.810 micro-m 1 -182 aod-1640 AOD-1640 Aerosol optical thickness at 1.640 micro-m 1 -183 ang ANG Angstrom coefficient 1 -208 frain FRAIN Rain fraction of total cloud water Proportion -209 facrain FACRAIN Rain factor Numeric -210 tqr TQR Total column integrated rain kg/m2 -211 tqs TQS Total column integrated snow kg/m2 -212 twatp TWATP Total water precipitation kg/m2 -213 tsnowp TSNOWP Total snow precipitation kg/m2 -214 tcw TCW Total column water (Vertically integrated total water) kg/m2 -215 lsprate LSPRATE Large scale precipitation rate kg/m2/s -216 csrwe CSRWE Convective snowfall rate water equivalent kg/m2/s -217 prs_gsp PRS_GSP Large scale snowfall rate water equivalent kg/m2/s -218 tsrate TSRATE Total snowfall rate m/s -219 csrate CSRATE Convective snowfall rate m/s -220 lssrate LSSRATE Large scale snowfall rate m/s -221 sdwe SDWE Snow depth water equivalent kg/m2 -222 se SE Snow evaporation kg/m2 -223 tciwv TCIWV Total column integrated water vapour kg/m2 -224 rprate RPRATE Rain precipitation rate kg/m2/s -225 sprate SPRATE Snow precipitation rate kg/m2/s -226 fprate FPRATE Freezing rain precipitation rate kg/m2/s -227 iprate IPRATE Ice pellets precipitation rate kg/m2/s -228 clwc CLWC Specific cloud liquid water content kg/kg -229 ciwc CIWC Specific cloud ice water content kg/kg -230 crwc CRWC Specific rain water content kg/kg -231 cswc CSWC Specific snow water content kg/kg -232 ugust UGUST u-component of wind (gust) m/s -233 vgust VGUST v-component of wind (gust) m/s -234 vwsh VWSH Vertical speed shear 1/s -235 mflx MFLX Horizontal momentum flux N/m2 -236 ustm USTM u-component storm motion m/s -237 vstm VSTM v-component storm motion m/s -238 cd CD Drag coefficient Numeric -239 eta ETA Eta coordinate vertical velocity 1/s -240 alts ALTS Altimeter setting Pa -241 thick THICK Thickness m -242 presalt PRESALT Pressure altitude m -243 denalt DENALT Density altitude m -244 5wavh 5WAVH 5-wave geopotential height gpm -245 u-gwd U-GWD Zonal flux of gravity wave stress N/m2 -246 v-gwd V-GWD Meridional flux of gravity wave stress N/m2 -247 hbpl HBPL Planetary boundary layer height m -248 5wava 5WAVA 5-wave geopotential height anomaly gpm -249 stdsgor STDSGOR Standard deviation of sub-gridscale orography m -250 angsgor ANGSGOR Angle of sub-gridscale orography rad -251 slsgor SLSGOR Slope of sub-gridscale orography Numeric -252 gwd GWD Gravity wave dissipation W/m2 -253 isor ISOR Anisotropy of sub-gridscale orography Numeric -254 nlpres NLPRES Natural logarithm of pressure in Pa Numeric diff --git a/eccodes/definitions.save/grib1/2.82.136.table b/eccodes/definitions.save/grib1/2.82.136.table deleted file mode 100644 index e7dc5a3c..00000000 --- a/eccodes/definitions.save/grib1/2.82.136.table +++ /dev/null @@ -1,74 +0,0 @@ -1 pres PRES Pressure Pa -11 t T Temperature K -51 q Q Specific humidity kg/kg -54 pwat PWAT Precipitable water kg/m2 -66 sd SD Snow depth m -71 tcc TCC Total cloud cover fraction -73 lcc LCC Low cloud cover fraction -77 prob_scb PROB_SCB Probability for significant cloud base fraction -78 scb SCB Significant cloud base m -79 sct SCT Significant cloud top m -84 al AL Albedo (lev 0=global radiation lev 1=UV radiation) fraction -91 icec ICEC Ice concentration fraction -116 uv_irr UV_IRR CIE-weighted UV irradiance mW/m2 -117 gl_irr GL_IRR Global irradiance W/m2 -118 bn_irr BN_IRR Beam normal irradiance W/m2 -119 sun_d SUN_D Sunshine duration min -120 par PAR PAR W/m2 -128 evapt EVAPT Evapotranspiration 1/kg2/s -129 mterh MTERH Model terrain height m -130 landu LANDU Land use Code -131 soilw SOILW Volumetric soil moisture content Proportion -132 mstav MSTAV Moisture availability % -133 sfexc SFEXC Exchange coefficient kg/m2/s -134 w_i W_I Plant canopy surface water kg/m2 -135 bmixl BMIXL Blackadar mixing length scale m -136 ccond CCOND Canopy conductance m/s -137 prs_min PRS_MIN Minimal stomatal resistance s/m -138 rcs RCS Solar parameter in canopy conductance Proportion -139 rct RCT Temperature parameter in canopy conductance Proportion -140 rcq RCQ Humidity parameter in canopy conductance Proportion -141 rcsol RCSOL Soil moisture parameter in canopy conductance Proportion -142 sm SM Soil moisture kg/m3 -143 w_cl W_CL Column-integrated soil water kg/m2 -144 hflux HFLUX Heat flux W/m2 -145 vsw VSW Volumetric soil moisture m3/m3 -146 wilt WILT Wilting point kg/m3 -147 vwiltm VWILTM Volumetric wilting point m3/m3 -148 rlyrs RLYRS Number of soil layers in root zone Numeric -149 liqvsm LIQVSM Liquid volumetric soil moisture (non-frozen) m3/m3 -150 voltso VOLTSO Volumetric transpiration stress-onset (soil moisture) m3/m3 -151 transo TRANSO Transpiration stress-onset (soil moisture) kg/m3 -152 voldec VOLDEC Volumetric direct evaporation cease (soil moisture) m3/m3 -153 direc DIREC Direct evaporation cease (soil moisture) kg/m3 -154 soilp SOILP Soil porosity m3/m3 -155 vsosm VSOSM Volumetric saturation of soil moisture kg/m3 -156 satosm SATOSM Saturation of soil moisture kg/m3 -165 prec_1h PREC_1H Accumulated precipitation, 1 hours mm -175 snacc_1h SNACC_1H Accumulated fresh snow, 1 hours cm -180 rad_sc RAD_SC Scaled radiance Numeric -181 al_sc AL_SC Scaled albedo Numeric -182 btmp_sc BTMP_SC Scaled brightness temperature Numeric -183 pwat_sc PWAT_SC Scaled precipitable water Numeric -184 li_sc LI_SC Scaled lifted index Numeric -185 pctp_sc PCTP_SC Scaled cloud top pressure Numeric -186 skt_sc SKT_SC Scaled skin temperature Numeric -187 cmsk CMSK Cloud mask Code -188 pst PST Pixel scene type Code -189 fde FDE Fire detection indicator Code -190 estp ESTP Estimated precipitation kg/m2 -191 irrate IRRATE Instananeous rain rate kg/m2/s -192 ctoph CTOPH Cloud top height m -193 ctophqi CTOPHQI Cloud top height quality indicator Code -194 estu ESTU Estimated u component of wind m/s -195 estv ESTV Estimated v component of wind m/s -196 npixu NPIXU Number of pixel used Numeric -197 solza SOLZA Solar zenith angle Degree -198 raza RAZA Relative azimuth angle Degree -199 rfl06 RFL06 Reflectance in 0.6 micron channel % -200 rfl08 RFL08 Reflectance in 0.8 micron channel % -201 rfl16 RFL16 Reflectance in 1.6 micron channel % -202 rfl39 RFL39 Reflectance in 3.9 micron channel % -206 toto3 TOTO3 Total ozone Atm cm -210 atmdiv ATMDIV Atmospheric divergence 1/s -211 wssp WSSP Wind speed (space) m/s diff --git a/eccodes/definitions.save/grib1/2.82.253.table b/eccodes/definitions.save/grib1/2.82.253.table deleted file mode 100644 index 885e300f..00000000 --- a/eccodes/definitions.save/grib1/2.82.253.table +++ /dev/null @@ -1,197 +0,0 @@ -1 pres PRES Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 ptend PTEND Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 icaht ICAHT ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential Height gpm -8 h H Geometrical height m -9 hstdv HSTDV Standard deviation of height m -10 tco TCO Total column ozone kg m**-2 -11 t T Temperature K -12 vptmp VPTMP Virtual potential temperature K -13 pt PT Potential temperature K -14 papt PAPT Pseudo-adiabatic potential temperature K -15 tmax TMAX Maximum temperature K -16 tmin TMIN Minimum temperature K -17 td TD Dew point temperature K -18 depr DEPR Dew point depression (or deficit) K -19 lapr LAPR Lapse rate K s**-1 -20 vis VIS Visibility m -23 rdsp RDSP Radar spectra (3) ~ -24 pli PLI Parcel lifted index (to 500 hPa) K -25 ta TA Temperature anomaly K -26 presa PRESA Pressure anomaly Pa -27 gpa GPA Geopotential height anomaly gpm -30 wvsp WVSP Wave spectra (3) ~ -31 wdir WDIR Wind direction Degree true -32 ws WS Wind speed m s**-1 -33 u U U component of wind m s**-1 -34 v V V component of wind m s**-1 -35 strf STRF Stream function m**2 s**-1 -37 mntsf MNTSF Montgomery stream Function m**2 s**-1 -38 sgcvv SGCVV Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 tw TW Vertical velocity m s**-1 -41 absv ABSV Absolute vorticity s**-1 -42 absd ABSD Absolute divergence s**-1 -43 vo VO Vorticity (relative) s**-1 -44 d D Divergence s**-1 -45 vucsh VUCSH Vertical u-component shear s**-1 -46 vvcsh VVCSH Vertical v-component shear s**-1 -47 dirc DIRC Direction of current Degree true -48 spc SPC Speed of current m s**-1 -49 ucurr UCURR U-component of current m s**-1 -50 vcurr VCURR V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 mixr MIXR Humidity mixing ratio kg m**-2 -54 pwat PWAT Precipitable water kg m**-2 -55 vp VP Vapour pressure Pa -56 satd SATD Saturation deficit Pa -57 e E Evaporation m of water equivalent -58 ciwc CIWC Cloud ice water content kg m**-2 -59 prate PRATE Precipitation rate kg m**-2 s**-1 -60 tstm TSTM Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 lsp LSP large scale precipitation (water) kg m**-2 -63 acpcp ACPCP Convective precipitation (water) kg m**-2 -64 srweq SRWEQ Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Snow Fall water equivalent kg m**-2 -66 sdp SDP Snow depth water equivalent kg m**-2 -67 mld MLD Mixed layer depth m -68 tthdp TTHDP Transient thermocline depth m -69 mthd MTHD Main thermocline depth m -70 mtha MTHA Main thermocline anomaly m -71 tcc TCC Total Cloud Cover % -72 ccc CCC Convective cloud cover (0 - 1) -73 lcc LCC Low cloud cover (0 - 1) -74 mcc MCC Medium cloud cover (0 - 1) -75 hcc HCC High cloud cover (0 - 1) -76 cwat CWAT Cloud water kg m**-2 -77 bli BLI Best lifted index (to 500 hPa) K -78 csf CSF Convective snowfall m of water equivalent -79 lsf LSF Large-scale snowfall m of water equivalent -80 wtmp WTMP Water temperature K -81 lsm LSM Land-sea mask (0 - 1) -82 dslm DSLM Deviation of sea-level from mean m -83 srg SRG Surface roughness * g m -84 al AL Albedo (0 - 1) -85 slt SLT Soil Temperature K -86 sm SM Soil Moisture kg m**-3 -87 veg VEG Vegetation fraction (0 - 1) -88 s S Salinity kg kg**-1 -89 den DEN Density kg m**-3 -90 ro RO Runoff m -91 icec ICEC Ice cover (1=land, 0=sea) (0 - 1) -92 icetk ICETK Ice thickness m -93 diced DICED Direction of ice drift Degree true -94 siced SICED Speed of ice drift m s**-1 -95 uice UICE U-component of ice drift m s**-1 -96 vice VICE V-component of ice drift m s**-1 -97 iceg ICEG Ice growth rate m s**-1 -98 iced ICED Ice divergence s**-1 -99 snom SNOM Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 swdir SWDIR Direction of swell waves Degree true -105 swell SWELL Significant height of swell waves m -106 swper SWPER Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 dirsw DIRSW Secondary wave direction Degree true -110 swp SWP Secondary wave period s -111 nswrs NSWRS Net short-wave radiation flux (surface) J m**-2 -112 nlwrs NLWRS Net long-wave radiation flux (surface) J m**-2 -113 nswrt NSWRT Net short-wave radiation flux(atmosph.top) J m**-2 -114 nlwrt NLWRT Net long-wave radiation flux(atmosph.top) J m**-2 -115 lwavr LWAVR Long wave radiation flux J m**-2 -116 swavr SWAVR Short wave radiation flux J m**-2 -117 grad GRAD Global radiation flux J m**-2 -118 btmp BTMP Brightness temperature K -119 lwrad LWRAD Radiance (with respect to wave number) W m**-1 sr**-1 -120 swrad SWRAD Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF Surface latent heat flux J m**-2 -122 sshf SSHF Surface sensible heat flux J m**-2 -123 bld BLD Boundary layer dissipation J m**-2 -124 uflx UFLX Momentum flux, u-component N m**-2 -125 vflx VFLX Momentum flux, v-component N m**-2 -126 wmixe WMIXE Wind mixing energy J -127 imgd IMGD Image data ~ -128 armsp ARMSP Analysed RMS of PHI (CANARI) m**2 s**-2 -129 frmsp FRMSP Forecast RMS of PHI (CANARI) m**2 s**-2 -130 cssw CSSW SW net clear sky rad W m**-2 -131 cslw CSLW LW net clear sky rad W m**-2 -132 lhe LHE Latent heat flux through evaporation W m**-2 -133 msca MSCA Mask of significant cloud amount s**-1 -135 icei ICEI Icing index - -136 psct PSCT Pseudo satellite image: cloud top temperature (infrared) - -137 pstb PSTB Pseudo satellite image: water vapour Tb - -138 pstbc PSTBC Pseudo satellite image: water vapour Tb + correction for clouds - -139 pscw PSCW Pseudo satellite image: cloud water reflectivity (visible) - -144 prtp PRTP Precipitation Type - -158 mrad MRAD Surface downward moon radiation - -160 cape CAPE CAPE out of the model J kg-1 -161 xhail XHAIL AROME hail diagnostic kg m**-2 -162 ugst UGST Gust, u-component m s*-1 -163 vgst VGST Gust, v-component m s*-1 -166 mcn MCN MOCON out of the model kg kg**-1 s**-1 -167 totqv TOTQV Total water vapour kg kg**-1 -181 rain RAIN Rain kg m**-2 -182 srain SRAIN Stratiform rain kg m**-2 -183 cr CR Convective rain kg m**-2 -184 snow SNOW Snow kg m**-2 -185 tpsolid TPSOLID Total solid precipitation kg m**-2 -186 cb CB Cloud base m -187 ct CT Cloud top m -188 ful FUL Fraction of urban land % -190 asn ASN Snow albedo (0-1) -191 rsn RSN Snow density kg m**-3 -192 w_i W_I Water on canopy (Interception content) kg m**-2 -193 w_so_ice W_SO_ICE Water on canopy (Interception content) kg m**-2 -195 gwdu GWDU Gravity wave stress U-comp kg m**-1 s**-1 -196 gwdv GWDV Gravity wave stress V-comp kg m**-1 s**-1 -200 tke TKE TKE m**2 s**-2 -201 grpl GRPL Graupel kg m**-2 -204 hail HAIL Hail kg m**-2 -209 lgt LGT Lightning - -210 refl REFL Simulated reflectivity dBz ? -212 pdep PDEP Pressure departure Pa -213 vdiv VDIV Vertical Divergence s**-1 -214 upom UPOM Updraft omega ms*-1 -215 dnom DNOM Downdraft omega ms*-1 -216 upmf UPMF Updraft mesh fraction - -217 dnmf DNMF Downdraft mesh fraction - -220 stdo STDO Standard deviation of orography * g m**2s**-2 -221 atop ATOP Anisotropy coeff of topography rad -222 dtop DTOP Direction of main axis of topography - -225 clfr CLFR Fraction of clay within soil - -226 slfr SLFR Fraction of sand within soil - -228 fg FG Gust m s*-1 -229 alb ALB Albedo of bare ground - -230 alv ALV Albedo of vegetation - -231 smnr SMNR Stomatal minimum resistance s m**-1 -232 lai LAI Leaf area index m**2 m**-2 -234 dvi DVI Dominant vegetation index - -235 se SE Surface emissivity - -237 sld SLD Soil depth m -238 swv SWV Soil wetness kg m**-2 -239 zt ZT Thermal roughness length * g m -240 rev REV Resistance to evapotransiration s m**-1 -241 rmn RMN Minimum relative moisture at 2 meters - -242 rmx RMX Maximum relative moisture at 2 meters - -243 dutp DUTP Duration of total precipitation s -244 lhsub LHSUB Latent Heat Sublimation J kg**-1 -245 wevap WEVAP Water evaporation kg m**-2 -246 snsub SNSUB Snow Sublimation kg m**-2 -247 shis SHIS Snow history ??? -248 ao AO A Ozone kg kg**-1 -249 bo BO B Ozone kg kg**-1 -250 co CO C Ozone kg kg**-1 -251 aers AERS Surface aerosol sea kg kg**-1 -252 aerl AERL Surface aerosol land kg kg**-1 -253 aerc AERC Surface aerosol soot (carbon) kg kg**-1 -254 aerd AERD Surface aerosol desert kg kg**-1 -255 - - Missing diff --git a/eccodes/definitions.save/grib1/2.98.128.table b/eccodes/definitions.save/grib1/2.98.128.table deleted file mode 100644 index a226d0d1..00000000 --- a/eccodes/definitions.save/grib1/2.98.128.table +++ /dev/null @@ -1,255 +0,0 @@ -# This file was automatically generated by ./param.pl -1 strf Stream function (m**2 s**-1) -2 vp Velocity potential (m**2 s**-1) -3 pt Potential temperature (K) -4 eqpt Equivalent potential temperature (K) -5 sept Saturated equivalent potential temperature (K) -6 ssfr Soil sand fraction ((0 - 1)) -7 scfr Soil clay fraction ((0 - 1)) -8 sro Surface runoff (m) -9 ssro Sub-surface runoff (m) -10 ws Wind speed (m s**-1) -11 udvw U component of divergent wind (m s**-1) -12 vdvw V component of divergent wind (m s**-1) -13 urtw U component of rotational wind (m s**-1) -14 vrtw V component of rotational wind (m s**-1) -15 aluvp UV visible albedo for direct radiation ((0 - 1)) -16 aluvd UV visible albedo for diffuse radiation ((0 - 1)) -17 alnip Near IR albedo for direct radiation ((0 - 1)) -18 alnid Near IR albedo for diffuse radiation ((0 - 1)) -19 uvcs Clear sky surface UV (W m**-2 s) -20 parcs Clear sky surface photosynthetically active radiation (W m**-2 s) -21 uctp Unbalanced component of temperature (K) -22 ucln Unbalanced component of logarithm of surface pressure () -23 ucdv Unbalanced component of divergence (s**-1) -24 - Reserved for future unbalanced components () -25 - Reserved for future unbalanced components () -26 cl Lake cover ((0 - 1)) -27 cvl Low vegetation cover ((0 - 1)) -28 cvh High vegetation cover ((0 - 1)) -29 tvl Type of low vegetation () -30 tvh Type of high vegetation () -31 ci Sea-ice cover ((0 - 1)) -32 asn Snow albedo ((0 - 1)) -33 rsn Snow density (kg m**-3) -34 sst Sea surface temperature (K) -35 istl1 Ice surface temperature layer 1 (K) -36 istl2 Ice surface temperature layer 2 (K) -37 istl3 Ice surface temperature layer 3 (K) -38 istl4 Ice surface temperature layer 4 (K) -39 swvl1 Volumetric soil water layer 1 (m**3 m**-3) -40 swvl2 Volumetric soil water layer 2 (m**3 m**-3) -41 swvl3 Volumetric soil water layer 3 (m**3 m**-3) -42 swvl4 Volumetric soil water layer 4 (m**3 m**-3) -43 slt Soil type () -44 es Snow evaporation (m of water) -45 smlt Snowmelt (m of water) -46 sdur Solar duration (s) -47 dsrp Direct solar radiation (w m**-2) -48 magss Magnitude of surface stress (N m**-2 s) -49 10fg 10 metre wind gust (m s**-1) -50 lspf Large-scale precipitation fraction (s) -51 mx2t24 Maximum temperature at 2 metres since last 24 hours (K) -52 mn2t24 Minimum temperature at 2 metres since last 24 hours (K) -53 mont Montgomery potential (m**2 s**-2) -54 pres Pressure (Pa) -55 mean2t24 Mean temperature at 2 metres since last 24 hours (K) -56 mn2d24 Mean 2 metre dewpoint temperature in past 24 hours (K) -57 uvb Downward UV radiation at the surface (w m**-2 s) -58 par Photosynthetically active radiation at the surface (w m**-2 s) -59 cape Convective available potential energy (J kg**-1) -60 pv Potential vorticity (K m**2 kg**-1 s**-1) -62 obct Observation count () -63 stsktd Start time for skin temperature difference (s) -64 ftsktd Finish time for skin temperature difference (s) -65 sktd Skin temperature difference (K) -66 lai_lv Leaf area index, low vegetation (m**2 / m**2) -67 lai_hv Leaf area index, high vegetation (m**2 / m**2) -68 msr_lv Minimum stomatal resistance, low vegetation (s m**-1) -69 msr_hv Minimum stomatal resistance, high vegetation (s m**-1) -70 bc_lv Biome cover, low vegetation ((0 - 1)) -71 bc_hv Biome cover, high vegetation ((0 - 1)) -72 issrd Instantaneous surface solar radiation downwards (w m**-2) -73 istrd Instantaneous surface thermal radiation downwards (w m**-2) -74 sdfor Standard deviation of filtered subgrid orography (m) -75 crwc Cloud rain water content (kg kg**-1) -76 cswc Cloud snow water content (kg kg**-1) -77 etadot Eta-coordinate vertical velocity (s**-1) -78 tclw Total column liquid water (kg m**-2) -79 tciw Total column ice water (kg m**-2) -80 - Experimental product () -81 - Experimental product () -82 - Experimental product () -83 - Experimental product () -84 - Experimental product () -85 - Experimental product () -86 - Experimental product () -87 - Experimental product () -88 - Experimental product () -89 - Experimental product () -90 - Experimental product () -91 - Experimental product () -92 - Experimental product () -93 - Experimental product () -94 - Experimental product () -95 - Experimental product () -96 - Experimental product () -97 - Experimental product () -98 - Experimental product () -99 - Experimental product () -100 - Experimental product () -101 - Experimental product () -102 - Experimental product () -103 - Experimental product () -104 - Experimental product () -105 - Experimental product () -106 - Experimental product () -107 - Experimental product () -108 - Experimental product () -109 - Experimental product () -110 - Experimental product () -111 - Experimental product () -112 - Experimental product () -113 - Experimental product () -114 - Experimental product () -115 - Experimental product () -116 - Experimental product () -117 - Experimental product () -118 - Experimental product () -119 - Experimental product () -120 - Experimental product () -121 mx2t6 Maximum temperature at 2 metres since last 6 hours (K) -122 mn2t6 Minimum temperature at 2 metres since last 6 hours (K) -123 10fg6 10 metre wind gust in the past 6 hours (m s**-1) -124 emis Surface emissivity (dimensionless) -125 vite Vertically integrated total energy (J m**-2) -126 - Generic parameter for sensitive area prediction (Various) -127 at Atmospheric tide () -128 bv Budget values () -129 z Geopotential (m**2 s**-2) -130 t Temperature (K) -131 u U velocity (m s**-1) -132 v V velocity (m s**-1) -133 q Specific humidity (kg kg**-1) -134 sp Surface pressure (Pa) -135 w Vertical velocity (Pa s**-1) -136 tcw Total column water (kg m**-2) -137 tcwv Total column water vapour (kg m**-2) -138 vo Vorticity (relative) (s**-1) -139 stl1 Soil temperature level 1 (K) -140 swl1 Soil wetness level 1 (m of water) -141 sd Snow depth (m of water equivalent) -142 lsp Stratiform precipitation (Large-scale precipitation) (m) -143 cp Convective precipitation (m) -144 sf Snowfall (m of water equivalent) -145 bld Boundary layer dissipation (W m**-2 s) -146 sshf Surface sensible heat flux (W m**-2 s) -147 slhf Surface latent heat flux (W m**-2 s) -148 chnk Charnock () -149 snr Surface net radiation (W m**-2 s) -150 tnr Top net radiation () -151 msl Mean sea level pressure (Pa) -152 lnsp Logarithm of surface pressure () -153 swhr Short-wave heating rate (K) -154 lwhr Long-wave heating rate (K) -155 d Divergence (s**-1) -156 gh Gepotential Height (gpm) -157 r Relative humidity (%) -158 tsp Tendency of surface pressure (Pa s**-1) -159 blh Boundary layer height (m) -160 sdor Standard deviation of orography () -161 isor Anisotropy of sub-gridscale orography () -162 anor Angle of sub-gridscale orography (rad) -163 slor Slope of sub-gridscale orography () -164 tcc Total cloud cover ((0 - 1)) -165 10u 10 metre U wind component (m s**-1) -166 10v 10 metre V wind component (m s**-1) -167 2t 2 metre temperature (K) -168 2d 2 metre dewpoint temperature (K) -169 ssrd Surface solar radiation downwards (W m**-2 s) -170 stl2 Soil temperature level 2 (K) -171 swl2 Soil wetness level 2 (m of water) -172 lsm Land-sea mask ((0 - 1)) -173 sr Surface roughness (m) -174 al Albedo ((0 - 1)) -175 strd Surface thermal radiation downwards (W m**-2 s) -176 ssr Surface solar radiation (W m**-2 s) -177 str Surface thermal radiation (W m**-2 s) -178 tsr Top solar radiation (W m**-2 s) -179 ttr Top thermal radiation (W m**-2 s) -180 ewss East-West surface stress (N m**-2 s) -181 nsss North-South surface stress (N m**-2 s) -182 e Evaporation (m of water) -183 stl3 Soil temperature level 3 (K) -184 swl3 Soil wetness level 3 (m of water) -185 ccc Convective cloud cover ((0 - 1)) -186 lcc Low cloud cover ((0 - 1)) -187 mcc Medium cloud cover ((0 - 1)) -188 hcc High cloud cover ((0 - 1)) -189 sund Sunshine duration (s) -190 ewov East-West component of sub-gridscale orographic variance (m**2) -191 nsov North-South component of sub-gridscale orographic variance (m**2) -192 nwov North-West/South-East component of sub-gridscale orographic variance (m**2) -193 neov North-East/South-West component of sub-gridscale orographic variance (m**2) -194 btmp Brightness temperature (K) -195 lgws Latitudinal component of gravity wave stress (N m**-2 s) -196 mgws Meridional component of gravity wave stress (N m**-2 s) -197 gwd Gravity wave dissipation (W m**-2 s) -198 src Skin reservoir content (m of water) -199 veg Vegetation fraction ((0 - 1)) -200 vso Variance of sub-gridscale orography (m**2) -201 mx2t Maximum temperature at 2 metres since previous post-processing (K) -202 mn2t Minimum temperature at 2 metres since previous post-processing (K) -203 o3 Ozone mass mixing ratio (kg kg**-1) -204 paw Precipitation analysis weights () -205 ro Runoff (m) -206 tco3 Total column ozone (kg m**-2) -207 10si 10 metre wind speed (m s**-1) -208 tsrc Top net solar radiation, clear sky (W m**-2 s) -209 ttrc Top net thermal radiation, clear sky (W m**-2 s) -210 ssrc Surface net solar radiation, clear sky (W m**-2 s) -211 strc Surface net thermal radiation, clear sky (W m**-2 s) -212 tisr TOA incident solar radiation (W m**-2 s) -213 vimd Vertically integrated moisture divergence (kg m**-2) -214 dhr Diabatic heating by radiation (K) -215 dhvd Diabatic heating by vertical diffusion (K) -216 dhcc Diabatic heating by cumulus convection (K) -217 dhlc Diabatic heating large-scale condensation (K) -218 vdzw Vertical diffusion of zonal wind (m s**-1) -219 vdmw Vertical diffusion of meridional wind (m s**-1) -220 ewgd East-West gravity wave drag tendency (m s**-1) -221 nsgd North-South gravity wave drag tendency (m s**-1) -222 ctzw Convective tendency of zonal wind (m s**-1) -223 ctmw Convective tendency of meridional wind (m s**-1) -224 vdh Vertical diffusion of humidity (kg kg**-1) -225 htcc Humidity tendency by cumulus convection (kg kg**-1) -226 htlc Humidity tendency by large-scale condensation (kg kg**-1) -227 crnh Change from removal of negative humidity (kg kg**-1) -228 tp Total precipitation (m) -229 iews Instantaneous X surface stress (N m**-2) -230 inss Instantaneous Y surface stress (N m**-2) -231 ishf Instantaneous surface heat flux (W m**-2) -232 ie Instantaneous moisture flux (kg m**-2 s**-1) -233 asq Apparent surface humidity (kg kg**-1) -234 lsrh Logarithm of surface roughness length for heat () -235 skt Skin temperature (K) -236 stl4 Soil temperature level 4 (K) -237 swl4 Soil wetness level 4 (m) -238 tsn Temperature of snow layer (K) -239 csf Convective snowfall (m of water equivalent) -240 lsf Large-scale snowfall (m of water equivalent) -241 acf Accumulated cloud fraction tendency ((-1 to 1)) -242 alw Accumulated liquid water tendency ((-1 to 1)) -243 fal Forecast albedo ((0 - 1)) -244 fsr Forecast surface roughness (m) -245 flsr Forecast logarithm of surface roughness for heat () -246 clwc Cloud liquid water content (kg kg**-1) -247 ciwc Cloud ice water content (kg kg**-1) -248 cc Fraction of cloud cover ((0 - 1)) -249 aiw Accumulated ice water tendency ((-1 to 1)) -250 ice Ice age ((0 - 1)) -251 atte Adiabatic tendency of temperature (K) -252 athe Adiabatic tendency of humidity (kg kg**-1) -253 atze Adiabatic tendency of zonal wind (m s**-1) -254 atmw Adiabatic tendency of meridional wind (m s**-1) -255 - Indicates a missing value () diff --git a/eccodes/definitions.save/grib1/2.98.129.table b/eccodes/definitions.save/grib1/2.98.129.table deleted file mode 100644 index e74bcd29..00000000 --- a/eccodes/definitions.save/grib1/2.98.129.table +++ /dev/null @@ -1,237 +0,0 @@ -# This file was automatically generated by ./param.pl -1 strfgrd STRF Stream function gradient (m**2 s**-1) -2 vpotgrd VPOT Velocity potential gradient (m**2 s**-1) -3 ptgrd PT Potential temperature gradient (K) -4 eqptgrd EQPT Equivalent potential temperature gradient (K) -5 septgrd SEPT Saturated equivalent potential temperature gradient (K) -11 udvwgrd UDVW U component of divergent wind gradient (m s**-1) -12 vdvwgrd VDVW V component of divergent wind gradient (m s**-1) -13 urtwgrd URTW U component of rotational wind gradient (m s**-1) -14 vrtwgrd VRTW V component of rotational wind gradient (m s**-1) -21 uctpgrd UCTP Unbalanced component of temperature gradient (K) -22 uclngrd UCLN Unbalanced component of logarithm of surface pressure gradient -23 ucdvgrd UCDV Unbalanced component of divergence gradient (s**-1) -24 24 - Reserved for future unbalanced components -25 25 - Reserved for future unbalanced components -26 clgrd CL Lake cover gradient (0 - 1) -27 cvlgrd CVL Low vegetation cover gradient (0 - 1) -28 cvhgrd CVH High vegetation cover gradient (0 - 1) -29 tvlgrd TVL Type of low vegetation gradient -30 tvhgrd TVH Type of high vegetation gradient -31 sicgrd CI Sea-ice cover gradient (0 - 1) -32 asngrd ASN Snow albedo gradient (0 - 1) -33 rsngrd RSN Snow density gradient (kg m**-3) -34 sstkgrd SSTK Sea surface temperature gradient K -35 istl1grd ISTL1 Ice surface temperature layer 1 gradient K -36 istl2grd ISTL2 Ice surface temperature layer 2 gradient K -37 istl3grd ISTL3 Ice surface temperature layer 3 gradient K -38 istl4grd ISTL4 Ice surface temperature layer 4 gradient K -39 swvl1grd SWVL1 Volumetric soil water layer 1 gradient (m**3 m**-3) -40 swvl2grd SWVL2 Volumetric soil water layer 2 gradient (m**3 m**-3) -41 swvl3grd SWVL3 Volumetric soil water layer 3 gradient (m**3 m**-3) -42 swvl4grd SWVL4 Volumetric soil water layer 4 gradient (m**3 m**-3) -43 sltgrd SLT Soil type gradient -44 esgrd ES Snow evaporation gradient (kg m**-2) -45 smltgrd SMLT Snowmelt gradient (kg m**-2) -46 sdurgrd SDUR Solar duration gradient s -47 dsrpgrd DSRP Direct solar radiation gradient (J m**-2) -48 magssgrd MAGSS Magnitude of surface stress gradient (N m**-2 s) -49 10fggrd 10FG 10 metre wind gust gradient (m s**-1) -50 lspfgrd LSPF Large-scale precipitation fraction gradient (s) -51 mx2t24grd MX2T24 Maximum 2 metre temperature gradient (K) -52 mn2t24grd MN2T24 Minimum 2 metre temperature gradient (K) -53 montgrd MONT Montgomery potential gradient (m**2 s**-2) -54 presgrd PRES Pressure gradient (Pa) -55 mean2t24grd MEAN2T24 Mean 2 metre temperature in the last 24 hours gradient (K) -56 mn2d24grd MN2D24 Mean 2 metre dewpoint temperature in the last 24 hours gradient K -57 uvbgrd UVB Downward UV radiation at the surface gradient (J m**-2) -58 pargrd PAR Photosynthetically active radiation at the surface gradient (J m**-2) -59 capegrd CAPE Convective available potential energy gradient (J kg**-1) -60 pvgrd PV Potential vorticity gradient (K m**2 kg**-1 s**-1) -61 tpogrd TPO Total precipitation from observations gradient Millimetres*100 + number of stations -62 obctgrd OBCT Observation count gradient -63 63 - Start time for skin temperature difference (s) -64 64 - Finish time for skin temperature difference (s) -65 65 - Skin temperature difference (K) -66 66 - Leaf area index, low vegetation (m**2 / m**2) -67 67 - Leaf area index, high vegetation (m**2 / m**2) -68 68 - Minimum stomatal resistance, low vegetation (s m**-1) -69 69 - Minimum stomatal resistance, high vegetation (s m**-1) -70 70 - Biome cover, low vegetation (0 - 1) -71 71 - Biome cover, high vegetation (0 - 1) -78 78 - Total column liquid water (kg m**-2) -79 79 - Total column ice water (kg m**-2) -80 80 - Experimental product -81 81 - Experimental product -82 82 - Experimental product -83 83 - Experimental product -84 84 - Experimental product -85 85 - Experimental product -86 86 - Experimental product -87 87 - Experimental product -88 88 - Experimental product -89 89 - Experimental product -90 90 - Experimental product -91 91 - Experimental product -92 92 - Experimental product -93 93 - Experimental product -94 94 - Experimental product -95 95 - Experimental product -96 96 - Experimental product -97 97 - Experimental product -98 98 - Experimental product -99 99 - Experimental product -100 100 - Experimental product -101 101 - Experimental product -102 102 - Experimental product -103 103 - Experimental product -104 104 - Experimental product -105 105 - Experimental product -106 106 - Experimental product -107 107 - Experimental product -108 108 - Experimental product -109 109 - Experimental product -110 110 - Experimental product -111 111 - Experimental product -112 112 - Experimental product -113 113 - Experimental product -114 114 - Experimental product -115 115 - Experimental product -116 116 - Experimental product -117 117 - Experimental product -118 118 - Experimental product -119 119 - Experimental product -120 120 - Experimental product -121 mx2t6grd MX2T6 Maximum temperature at 2 metres gradient (K) -122 mn2t6grd MN2T6 Minimum temperature at 2 metres gradient (K) -123 10fg6grd 10FG6 10 metre wind gust in the last 6 hours gradient (m s**-1) -125 125 - Vertically integrated total energy (J m**-2) -126 126 - Generic parameter for sensitive area prediction Various -127 atgrd AT Atmospheric tide gradient -128 bvgrd BV Budget values gradient -129 zgrd Z Geopotential gradient (m**2 s**-2) -130 tgrd T Temperature gradient (K) -131 ugrd U U component of wind gradient (m s**-1) -132 vgrd V V component of wind gradient (m s**-1) -133 qgrd Q Specific humidity gradient (kg kg**-1) -134 spgrd SP Surface pressure gradient (Pa) -135 wgrd W vertical velocity (pressure) gradient (Pa s**-1) -136 tcwgrd TCW Total column water gradient (kg m**-2) -137 tcwvgrd TCWV Total column water vapour gradient (kg m**-2) -138 vogrd VO Vorticity (relative) gradient (s**-1) -139 stl1grd STL1 Soil temperature level 1 gradient (K) -140 swl1grd SWL1 Soil wetness level 1 gradient (kg m**-2) -141 sdgrd SD Snow depth gradient (m of water equivalent) -142 lspgrd LSP Stratiform precipitation (Large-scale precipitation) gradient (m) -143 cpgrd CP Convective precipitation gradient (m) -144 sfgrd SF Snowfall (convective + stratiform) gradient m of water equivalent -145 bldgrd BLD Boundary layer dissipation gradient (J m**-2) -146 sshfgrd SSHF Surface sensible heat flux gradient (J m**-2) -147 slhfgrd SLHF Surface latent heat flux gradient (J m**-2) -148 chnkgrd CHNK Charnock gradient -149 snrgrd SNR Surface net radiation gradient (J m**-2) -150 tnrgrd TNR Top net radiation gradient -151 mslgrd MSL Mean sea level pressure gradient (Pa) -152 lnspgrd LNSP Logarithm of surface pressure gradient -153 swhrgrd SWHR Short-wave heating rate gradient (K) -154 lwhrgrd LWHR Long-wave heating rate gradient (K) -155 dgrd D Divergence gradient (s**-1) -156 ghgrd GH Height gradient (m) -157 rgrd R Relative humidity gradient (%) -158 tspgrd TSP Tendency of surface pressure gradient (Pa s**-1) -159 blhgrd BLH Boundary layer height gradient (m) -160 sdorgrd SDOR Standard deviation of orography gradient -161 isorgrd ISOR Anisotropy of sub-gridscale orography gradient -162 anorgrd ANOR Angle of sub-gridscale orography gradient -163 slorgrd SLOR Slope of sub-gridscale orography gradient -164 tccgrd TCC Total cloud cover gradient (0 - 1) -165 10ugrd 10U 10 metre U wind component gradient (m s**-1) -166 10vgrd 10V 10 metre V wind component gradient (m s**-1) -167 2tgrd 2T 2 metre temperature gradient (K) -168 2dgrd 2D 2 metre dewpoint temperature gradient (K) -169 ssrdgrd SSRD Surface solar radiation downwards gradient (J m**-2) -170 stl2grd STL2 Soil temperature level 2 gradient (K) -171 swl2grd SWL2 Soil wetness level 2 gradient (kg m**-2) -172 lsmgrd LSM Land-sea mask gradient (0 - 1) -173 srgrd SR Surface roughness gradient (m) -174 algrd AL Albedo gradient (0 - 1) -175 strdgrd STRD Surface thermal radiation downwards gradient (J m**-2) -176 ssrgrd SSR Surface solar radiation gradient (J m**-2) -177 strgrd STR Surface thermal radiation gradient (J m**-2) -178 tsrgrd TSR Top solar radiation gradient (J m**-2) -179 ttrgrd TTR Top thermal radiation gradient (J m**-2) -180 ewssgrd EWSS East-West surface stress gradient (N m**-2 s) -181 nsssgrd NSSS North-South surface stress gradient (N m**-2 s) -182 egrd E Evaporation gradient (kg m**-2) -183 stl3grd STL3 Soil temperature level 3 gradient (K) -184 swl3grd SWL3 Soil wetness level 3 gradient (kg m**-2) -185 cccgrd CCC Convective cloud cover gradient (0 - 1) -186 lccgrd LCC Low cloud cover gradient (0 - 1) -187 mccgrd MCC Medium cloud cover gradient (0 - 1) -188 hccgrd HCC High cloud cover gradient (0 - 1) -189 sundgrd SUND Sunshine duration gradient (s) -190 ewovgrd EWOV East-West component of sub-gridscale orographic variance gradient (m**2) -191 nsovgrd NSOV North-South component of sub-gridscale orographic variance gradient (m**2) -192 nwovgrd NWOV North-West/South-East component of sub-gridscale orographic variance gradient (m**2) -193 neovgrd NEOV North-East/South-West component of sub-gridscale orographic variance gradient (m**2) -194 btmpgrd BTMP Brightness temperature gradient (K) -195 lgwsgrd LGWS Longitudinal component of gravity wave stress gradient (N m**-2 s) -196 mgwsgrd MGWS Meridional component of gravity wave stress gradient (N m**-2 s) -197 gwdgrd GWD Gravity wave dissipation gradient (J m**-2) -198 srcgrd SRC Skin reservoir content gradient (kg m**-2) -199 veggrd VEG Vegetation fraction gradient (0 - 1) -200 vsogrd VSO Variance of sub-gridscale orography gradient (m**2) -201 mx2tgrd MX2T Maximum temperature at 2 metres since previous post-processing gradient (K) -202 mn2tgrd MN2T Minimum temperature at 2 metres since previous post-processing gradient (K) -203 o3grd O3 Ozone mass mixing ratio gradient (kg kg**-1) -204 pawgrd PAW Precipitation analysis weights gradient -205 rogrd RO Runoff gradient (m) -206 tco3grd TCO3 Total column ozone gradient (kg m**-2) -207 10sigrd 10SI 10 metre wind speed gradient (m s**-1) -208 tsrcgrd TSRC Top net solar radiation, clear sky gradient (J m**-2) -209 ttrcgrd TTRC Top net thermal radiation, clear sky gradient (J m**-2) -210 ssrcgrd SSRC Surface net solar radiation, clear sky gradient (J m**-2) -211 strcgrd STRC Surface net thermal radiation, clear sky gradient (J m**-2) -212 tisrgrd TISR TOA incident solar radiation gradient (J m**-2) -214 dhrgrd DHR Diabatic heating by radiation gradient (K) -215 dhvdgrd DHVD Diabatic heating by vertical diffusion gradient (K) -216 dhccgrd DHCC Diabatic heating by cumulus convection gradient (K) -217 dhlcgrd DHLC Diabatic heating large-scale condensation gradient (K) -218 vdzwgrd VDZW Vertical diffusion of zonal wind gradient (m s**-1) -219 vdmwgrd VDMW Vertical diffusion of meridional wind gradient (m s**-1) -220 ewgdgrd EWGD East-West gravity wave drag tendency gradient (m s**-1) -221 nsgdgrd NSGD North-South gravity wave drag tendency gradient (m s**-1) -222 ctzwgrd CTZW Convective tendency of zonal wind gradient (m s**-1) -223 ctmwgrd CTMW Convective tendency of meridional wind gradient (m s**-1) -224 vdhgrd VDH Vertical diffusion of humidity gradient (kg kg**-1) -225 htccgrd HTCC Humidity tendency by cumulus convection gradient (kg kg**-1) -226 htlcgrd HTLC Humidity tendency by large-scale condensation gradient (kg kg**-1) -227 crnhgrd CRNH Change from removal of negative humidity gradient (kg kg**-1) -228 tpgrd TP Total precipitation gradient (m) -229 iewsgrd IEWS Instantaneous X surface stress gradient (N m**-2) -230 inssgrd INSS Instantaneous Y surface stress gradient (N m**-2) -231 ishfgrd ISHF Instantaneous surface heat flux gradient (W m**-2) -232 iegrd IE Instantaneous moisture flux gradient (kg m**-2 s) -233 asqgrd ASQ Apparent surface humidity gradient (kg kg**-1) -234 lsrhgrd LSRH Logarithm of surface roughness length for heat gradient -235 sktgrd SKT Skin temperature gradient (K) -236 stl4grd STL4 Soil temperature level 4 gradient (K) -237 swl4grd SWL4 Soil wetness level 4 gradient (m) -238 tsngrd TSN Temperature of snow layer gradient (K) -239 csfgrd CSF Convective snowfall gradient (m of water equivalent) -240 lsfgrd LSF Large scale snowfall gradient (m of water equivalent) -241 acfgrd ACF Accumulated cloud fraction tendency gradient (-1 to 1) -242 alwgrd ALW Accumulated liquid water tendency gradient gradient (-1 to 1) -243 falgrd FAL Forecast albedo gradient (0 - 1) -244 fsrgrd FSR Forecast surface roughness gradient (m) -245 flsrgrd FLSR Forecast logarithm of surface roughness for heat gradient -246 clwcgrd CLWC Specific cloud liquid water content gradient (kg kg**-1) -247 ciwcgrd CIWC Specific cloud ice water content gradient (kg kg**-1) -248 ccgrd CC Cloud cover gradient (0 - 1) -249 aiwgrd AIW Accumulated ice water tendency gradient (-1 to 1) -250 icegrd ICE Ice age gradient (0 - 1) -251 attegrd ATTE Adiabatic tendency of temperature gradient (K) -252 athegrd ATHE Adiabatic tendency of humidity gradient (kg kg**-1) -253 atzegrd ATZE Adiabatic tendency of zonal wind gradient (m s**-1) -254 atmwgrd ATMW Adiabatic tendency of meridional wind gradient (m s**-1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.130.table b/eccodes/definitions.save/grib1/2.98.130.table deleted file mode 100644 index c3778edf..00000000 --- a/eccodes/definitions.save/grib1/2.98.130.table +++ /dev/null @@ -1,27 +0,0 @@ -# This file was automatically generated by ./param.pl -208 tsru TSRU Top solar radiation upward W m**-2 -209 ttru TTRU Top thermal radiation upward W m**-2 -210 tsuc TSUC Top solar radiation upward, clear sky W m**-2 -211 ttuc TTUC Top thermal radiation upward, clear sky W m**-2 -212 clw CLW Cloud liquid water kg kg**-1 -213 cf CF Cloud fraction (0 - 1) -214 dhr DHR Diabatic heating by radiation K s**-1 -215 dhvd DHVD Diabatic heating by vertical diffusion K s**-1 -216 dhcc DHCC Diabatic heating by cumulus convection K s**-1 -217 dhlc DHLC Diabatic heating by large-scale condensation K s**-1 -218 vdzw VDZW Vertical diffusion of zonal wind m**2 s**-3 -219 vdmw VDMW Vertical diffusion of meridional wind m**2 s**-3 -220 ewgd EWGD East-West gravity wave drag m**2 s**-3 -221 nsgd NSGD North-South gravity wave drag m**2 s**-3 -222 ctzw CTZW Convective tendency of zonal wind m**2 s**-3 -223 ctmw CTMW Convective tendency of meridional wind m**2 s**-3 -224 vdh VDH Vertical diffusion of humidity kg kg**-1 s**-1 -225 htcc HTCC Humidity tendency by cumulus convection kg kg**-1 s**-1 -226 htlc HTLC Humidity tendency by large-scale condensation kg kg**-1 s**-1 -227 crnh CRNH Change from removal of negative humidity kg kg**-1 s**-1 -228 att ATT Adiabatic tendency of temperature K s**-1 -229 ath ATH Adiabatic tendency of humidity kg kg**-1 s**-1 -230 atzw ATZW Adiabatic tendency of zonal wind m**2 s**-3 -231 atmwax ATMWAX Adiabatic tendency of meridional wind m**2 s**-3 -232 mvv MVV Mean vertical velocity Pa s**-1 -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.131.table b/eccodes/definitions.save/grib1/2.98.131.table deleted file mode 100644 index ac2e14f4..00000000 --- a/eccodes/definitions.save/grib1/2.98.131.table +++ /dev/null @@ -1,77 +0,0 @@ -# This file was automatically generated by ./param.pl -1 2tag2 2m temperature anomaly of at least +2K % -2 2tag1 2m temperature anomaly of at least +1K % -3 2tag0 2m temperature anomaly of at least 0K % -4 2talm1 2m temperature anomaly of at most -1K % -5 2talm2 2m temperature anomaly of at most -2K % -6 tpag20 Total precipitation anomaly of at least 20 mm % -7 tpag10 Total precipitation anomaly of at least 10 mm % -8 tpag0 Total precipitation anomaly of at least 0 mm % -9 stag0 Surface temperature anomaly of at least 0K % -10 mslag0 Mean sea level pressure anomaly of at least 0 Pa % -15 h0dip Height of 0 degree isotherm probability percentage -16 hslp Height of snowfall limit probability percentage -17 saip Showalter index probability percentage -18 whip Whiting index probability percentage -20 talm2 Temperature anomaly less than -2 K % -21 tag2 Temperature anomaly of at least +2 K % -22 talm8 Temperature anomaly less than -8 K % -23 talm4 Temperature anomaly less than -4 K % -24 tag4 Temperature anomaly greater than +4 K % -25 tag8 Temperature anomaly greater than +8 K % -49 10gp 10 metre wind gust probability percentage -59 capep Convective available potential energy probability percentage -60 tpg1 Total precipitation of at least 1 mm % -61 tpg5 Total precipitation of at least 5 mm % -62 tpg10 Total precipitation of at least 10 mm % -63 tpg20 Total precipitation of at least 20 mm % -64 tpl01 Total precipitation less than 0.1 mm % -65 tprl1 Total precipitation rate less than 1 mm/day % -66 tprg3 Total precipitation rate of at least 3 mm/day % -67 tprg5 Total precipitation rate of at least 5 mm/day % -68 10spg10 10 metre wind speed of at least 10 m/s % -69 10spg15 10 metre wind speed of at least 15 m/s % -70 10fgg15 10 metre wind gust of at least 15 m/s % -71 10fgg20 10 metre wind gust of at least 20 m/s % -72 10fgg25 10 metre wind gust of at least 25 m/s % -73 2tl273 2 metre temperature less than 273.15 K % -74 swhg2 Significant wave height of at least 2 m % -75 swhg4 Significant wave height of at least 4 m % -76 swhg6 Significant wave height of at least 6 m % -77 swhg8 Significant wave height of at least 8 m % -79 mwpg10 Mean wave period of at least 10 s % -80 mwpg12 Mean wave period of at least 12 s % -81 mwpg15 Mean wave period of at least 15 s % -82 tpg40 Total precipitation of at least 40 mm % -83 tpg60 Total precipitation of at least 60 mm % -84 tpg80 Total precipitation of at least 80 mm % -85 tpg100 Total precipitation of at least 100 mm % -86 tpg150 Total precipitation of at least 150 mm % -87 tpg200 Total precipitation of at least 200 mm % -88 tpg300 Total precipitation of at least 300 mm % -89 pts Probability of a tropical storm % -90 ph Probability of a hurricane % -91 ptd Probability of a tropical depression % -92 cpts Climatological probability of a tropical storm % -93 cph Climatological probability of a hurricane % -94 cptd Climatological probability of a tropical depression % -95 pats Probability anomaly of a tropical storm % -96 pah Probability anomaly of a hurricane % -97 patd Probability anomaly of a tropical depression % -98 tpg25 Total precipitation of at least 25 mm % -99 tpg50 Total precipitation of at least 50 mm % -100 10fgg10 10 metre wind gust of at least 10 m/s % -129 zp Geopotential probability zp % -130 tap Temperature anomaly probability percentage -139 2tp 2 metre temperature probability % -144 sfp Snowfall (convective + stratiform) probability percentage -151 tpp Total precipitation probability -164 tccp Total cloud cover probability percentage -165 10sp 10 metre speed probability percentage -167 2tp 2 metre temperature probability percentage -201 mx2tp Maximum 2 metre temperature probability percentage -202 mn2tp Minimum 2 metre temperature probability percentage -228 tpp Total precipitation probability percentage -229 swhp Significant wave height probability percentage -232 mwpp Mean wave period probability percentage -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.132.table b/eccodes/definitions.save/grib1/2.98.132.table deleted file mode 100644 index 7864b8ab..00000000 --- a/eccodes/definitions.save/grib1/2.98.132.table +++ /dev/null @@ -1,13 +0,0 @@ -# This file was automatically generated by ./param.pl -44 44 CAPESI Convective available potential energy shear index (-1 to 1) -45 45 WVFI Water vapour flux index (dimensionless) -49 49 10GP 10 metre wind gust index (-1 to 1) -59 capei CAPEI Convective available potential energy index (-1 to 1) -144 144 sfi Snowfall index (-1 to 1) -165 165 10SP 10 metre speed index (-1 to 1) -167 167 2TP 2 metre temperature index (-1 to 1) -201 201 Maximum temperature at 2 metres index (-1 to 1) -202 202 Minimum temperature at 2 metres index (-1 to 1) -216 216 Maximum of significant wave height index (-1 to 1) -228 228 TTP Total precipitation index (-1 to 1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.133.table b/eccodes/definitions.save/grib1/2.98.133.table deleted file mode 100644 index af1ebcfa..00000000 --- a/eccodes/definitions.save/grib1/2.98.133.table +++ /dev/null @@ -1,93 +0,0 @@ -# This file was automatically generated by ./param.pl -1 2tplm10 2m temperature probability less than -10 C % -2 2tplm5 2m temperature probability less than -5 C % -3 2tpl0 2m temperature probability less than 0 C % -4 2tpl5 2m temperature probability less than 5 C % -5 2tpl10 2m temperature probability less than 10 C % -6 2tpg25 2m temperature probability greater than 25 C % -7 2tpg30 2m temperature probability greater than 30 C % -8 2tpg35 2m temperature probability greater than 35 C % -9 2tpg40 2m temperature probability greater than 40 C % -10 2tpg45 2m temperature probability greater than 45 C % -11 mn2tplm10 Minimum 2 metre temperature probability less than -10 C % -12 mn2tplm5 Minimum 2 metre temperature probability less than -5 C % -13 mn2tpl0 Minimum 2 metre temperature probability less than 0 C % -14 mn2tpl5 Minimum 2 metre temperature probability less than 5 C % -15 mn2tpl10 Minimum 2 metre temperature probability less than 10 C % -16 mx2tpg25 Maximum 2 metre temperature probability greater than 25 C % -17 mx2tpg30 Maximum 2 metre temperature probability greater than 30 C % -18 mx2tpg35 Maximum 2 metre temperature probability greater than 35 C % -19 mx2tpg40 Maximum 2 metre temperature probability greater than 40 C % -20 mx2tpg45 Maximum 2 metre temperature probability greater than 45 C % -21 10spg10 10 metre wind speed probability of at least 10 m/s % -22 10spg15 10 metre wind speed probability of at least 15 m/s % -23 10spg20 10 metre wind speed probability of at least 20 m/s % -24 10spg35 10 metre wind speed probability of at least 35 m/s % -25 10spg50 10 metre wind speed probability of at least 50 m/s % -26 10gpg20 10 metre wind gust probability of at least 20 m/s % -27 10gpg35 10 metre wind gust probability of at least 35 m/s % -28 10gpg50 10 metre wind gust probability of at least 50 m/s % -29 10gpg75 10 metre wind gust probability of at least 75 m/s % -30 10gpg100 10 metre wind gust probability of at least 100 m/s % -31 tppg1 Total precipitation probability of at least 1 mm % -32 tppg5 Total precipitation probability of at least 5 mm % -33 tppg10 Total precipitation probability of at least 10 mm % -34 tppg20 Total precipitation probability of at least 20 mm % -35 tppg40 Total precipitation probability of at least 40 mm % -36 tppg60 Total precipitation probability of at least 60 mm % -37 tppg80 Total precipitation probability of at least 80 mm % -38 tppg100 Total precipitation probability of at least 100 mm % -39 tppg150 Total precipitation probability of at least 150 mm % -40 tppg200 Total precipitation probability of at least 200 mm % -41 tppg300 Total precipitation probability of at least 300 mm % -42 sfpg1 Snowfall probability of at least 1 mm % -43 sfpg5 Snowfall probability of at least 5 mm % -44 sfpg10 Snowfall probability of at least 10 mm % -45 sfpg20 Snowfall probability of at least 20 mm % -46 sfpg40 Snowfall probability of at least 40 mm % -47 sfpg60 Snowfall probability of at least 60 mm % -48 sfpg80 Snowfall probability of at least 80 mm % -49 sfpg100 Snowfall probability of at least 100 mm % -50 sfpg150 Snowfall probability of at least 150 mm % -51 sfpg200 Snowfall probability of at least 200 mm % -52 sfpg300 Snowfall probability of at least 300 mm % -53 tccpg10 Total Cloud Cover probability greater than 10% % -54 tccpg20 Total Cloud Cover probability greater than 20% % -55 tccpg30 Total Cloud Cover probability greater than 30% % -56 tccpg40 Total Cloud Cover probability greater than 40% % -57 tccpg50 Total Cloud Cover probability greater than 50% % -58 tccpg60 Total Cloud Cover probability greater than 60% % -59 tccpg70 Total Cloud Cover probability greater than 70% % -60 tccpg80 Total Cloud Cover probability greater than 80% % -61 tccpg90 Total Cloud Cover probability greater than 90% % -62 tccpg99 Total Cloud Cover probability greater than 99% % -63 hccpg10 High Cloud Cover probability greater than 10% % -64 hccpg20 High Cloud Cover probability greater than 20% % -65 hccpg30 High Cloud Cover probability greater than 30% % -66 hccpg40 High Cloud Cover probability greater than 40% % -67 hccpg50 High Cloud Cover probability greater than 50% % -68 hccpg60 High Cloud Cover probability greater than 60% % -69 hccpg70 High Cloud Cover probability greater than 70% % -70 hccpg80 High Cloud Cover probability greater than 80% % -71 hccpg90 High Cloud Cover probability greater than 90% % -72 hccpg99 High Cloud Cover probability greater than 99% % -73 mccpg10 Medium Cloud Cover probability greater than 10% % -74 mccpg20 Medium Cloud Cover probability greater than 20% % -75 mccpg30 Medium Cloud Cover probability greater than 30% % -76 mccpg40 Medium Cloud Cover probability greater than 40% % -77 mccpg50 Medium Cloud Cover probability greater than 50% % -78 mccpg60 Medium Cloud Cover probability greater than 60% % -79 mccpg70 Medium Cloud Cover probability greater than 70% % -80 mccpg80 Medium Cloud Cover probability greater than 80% % -81 mccpg90 Medium Cloud Cover probability greater than 90% % -82 mccpg99 Medium Cloud Cover probability greater than 99% % -83 lccpg10 Low Cloud Cover probability greater than 10% % -84 lccpg20 Low Cloud Cover probability greater than 20% % -85 lccpg30 Low Cloud Cover probability greater than 30% % -86 lccpg40 Low Cloud Cover probability greater than 40% % -87 lccpg50 Low Cloud Cover probability greater than 50% % -88 lccpg60 Low Cloud Cover probability greater than 60% % -89 lccpg70 Low Cloud Cover probability greater than 70% % -90 lccpg80 Low Cloud Cover probability greater than 80% % -91 lccpg90 Low Cloud Cover probability greater than 90% % -92 lccpg99 Low Cloud Cover probability greater than 99% % diff --git a/eccodes/definitions.save/grib1/2.98.140.table b/eccodes/definitions.save/grib1/2.98.140.table deleted file mode 100644 index 6147bcc8..00000000 --- a/eccodes/definitions.save/grib1/2.98.140.table +++ /dev/null @@ -1,88 +0,0 @@ -# This file was automatically generated by ./param.pl -80 80 WX1 Wave experimental parameter 1 (~) -81 81 WX2 Wave experimental parameter 2 (~) -82 82 WX3 Wave experimental parameter 3 (~) -83 83 WX4 Wave experimental parameter 4 (~) -84 84 WX5 Wave experimental parameter 5 (~) -98 98 WETA Wave induced mean sea level correction (m) -99 99 WRAF Ratio of wave angular and frequency width (dimensionless) -100 100 WNSLC Number of events in freak waves statistics (dimensionless) -101 101 UTAUA U-component of atmospheric surface momentum flux (N m**-2) -102 102 VTAUA V-component of atmospheric surface momentum flux (N m**-2) -103 103 UTAUO U-component of surface momentum flux into ocean (N m**-2) -104 104 VTAUO V-component of surface momentum flux into ocean (N m**-2) -105 105 WPHIO Wave turbulent energy flux into ocean (W m**-2) -106 106 WDW1 Wave directional width of first swell partition (dimensionless) -107 107 WFW1 Wave frequency width of first swell partition (dimensionless) -108 108 WDW2 Wave directional width of second swell partition (dimensionless) -109 109 WFW2 Wave frequency width of second swell partition (dimensionless) -110 110 WDW3 Wave directional width of third swell partition (dimensionless) -111 111 WFW3 Wave frequency width of third swell partition (dimensionless) -112 112 WEFXM Wave energy flux magnitude (W m**-1) -113 113 WEFXD Wave energy flux mean direction (Degree true) -114 114 H1012 Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds (m) -115 115 H1214 Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds (m) -116 116 H1417 Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds (m) -117 117 H1721 Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds (m) -118 118 H2125 Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds (m) -119 119 H2530 Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds (m) -120 120 SH10 Significant wave height of all waves with period larger than 10s (m) -121 121 SWH1 Significant wave height of first swell partition (m) -122 122 MWD1 Mean wave direction of first swell partition (degrees) -123 123 MWP1 Mean wave period of first swell partition (s) -124 124 SWH2 Significant wave height of second swell partition (m) -125 125 MWD2 Mean wave direction of second swell partition (degrees) -126 126 MWP2 Mean wave period of second swell partition (s) -127 127 SWH3 Significant wave height of third swell partition (m) -128 128 MWD3 Mean wave direction of third swell partition (degrees) -129 129 MWP3 Mean wave period of third swell partition (s) -200 200 MAXSWH Maximum of significant wave height (m) -207 207 WSS Wave Spectral Skewness (dimensionless) -208 208 WSTAR Free convective velocity over the oceans (m s**-1) -209 209 RHOAO Air density over the oceans (kg m**-3) -210 210 MSWSI Mean square wave strain in sea ice (~) -211 211 PHIAW Normalized energy flux into waves (dimensionless) -212 212 PHIOC Normalized energy flux into ocean (dimensionless) -213 213 TLA Turbulent Langmuir number (~) -214 214 TAUOC Normalized stress into ocean (dimensionless) -215 215 UST U-component stokes drift (m s**-1) -216 216 VST V-component stokes drift (m s**-1) -217 217 TMAX Period corresponding to maximum individual wave height (s) -218 218 HMAX Maximum individual wave height (m) -219 219 WMB Model bathymetry (m) -220 220 MP1 Mean wave period based on first moment (s) -221 221 MP2 Mean zero-crossing wave period (s) -222 222 WDW Wave spectral directional width (dimensionless) -223 223 P1WW Mean wave period based on first moment for wind waves (s) -224 224 P2WW Mean wave period based on second moment for wind waves (s) -225 225 DWWW Wave spectral directional width for wind waves (dimensionless) -226 226 P1PS Mean wave period based on first moment for swell (s) -227 227 P2PS Mean wave period based on second moment for swell (s) -228 228 DWPS Wave spectral directional width for swell (dimensionless) -229 229 SWH Significant height of combined wind waves and swell (m) -230 230 MWD Mean wave direction (Degree true) -231 231 PP1D Peak wave period (s) -232 232 MWP Mean wave period (s) -233 233 CDWW Coefficient of drag with waves (dimensionless) -234 234 SHWW Significant height of wind waves (m) -235 235 MDWW Mean direction of wind waves (degrees) -236 236 MPWW Mean period of wind waves (s) -237 237 SHTS Significant height of total swell (m) -238 238 MDTS Mean direction of total swell (degrees) -239 239 MPTS Mean period of total swell (s) -240 240 SDHS Standard deviation wave height (m) -241 241 MU10 Mean of 10 metre wind speed (m s**-1) -242 242 MDWI Mean wind direction (degrees) -243 243 SDU Standard deviation of 10 metre wind speed (m s**-1) -244 244 MSQS Mean square slope of waves (dimensionless) -245 245 WIND 10 metre wind speed (m s**-1) -246 246 AWH Altimeter wave height (m) -247 247 ACWH Altimeter corrected wave height (m) -248 248 ARRC Altimeter range relative correction (~) -249 249 DWI 10 metre wind direction (degrees) -250 250 2DSP 2D wave spectra (multiple) (m**2 s radian**-1) -251 251 2DFD 2D wave spectra (single) (m**2 s radian**-1) -252 252 WSK Wave spectral kurtosis (dimensionless) -253 253 BFI Benjamin-Feir index (dimensionless) -254 254 WSP Wave spectral peakedness (dimensionless) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.150.table b/eccodes/definitions.save/grib1/2.98.150.table deleted file mode 100644 index c11508ea..00000000 --- a/eccodes/definitions.save/grib1/2.98.150.table +++ /dev/null @@ -1,33 +0,0 @@ -# This file was automatically generated by ./param.pl -129 ocpt Ocean potential temperature (deg C) -130 ocs Ocean salinity psu -131 ocpd Ocean potential density kg m**-3 -1000 -133 ocu Ocean U wind component (m s**-1) -134 ocv Ocean V wind component (m s**-1) -135 ocw Ocean W wind component (m s**-1) -137 rn Richardson number -139 uv U*V product (m s**-2) -140 ut U*T product (m s**-1 deg C) -141 vt V*T product (m s**-1 deg C) -142 uu U*U product (m s**-2) -143 vv V*V product (m s**-2) -144 144 UV - U~V~ (m s**-2) -145 145 UT - U~T~ m s**-1 deg C -146 146 VT - V~T~ (m s**-1 deg C) -147 147 UU - U~U~ (m s**-2) -148 148 VV - V~V~ (m s**-2) -152 sl Sea level (m) -153 153 Barotropic stream function -154 mld Mixed layer depth (m) -155 155 Depth (m) -168 168 U stress (Pa) -169 169 V stress (Pa) -170 170 Turbulent kinetic energy input -171 nsf Net surface heat flux -172 172 Surface solar radiation -173 173 P-E -180 180 Diagnosed sea surface temperature error (deg C) -181 181 Heat flux correction (W m**-2) -182 182 Observed sea surface temperature (deg C) -183 183 Observed heat flux (W m**-2) -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.151.table b/eccodes/definitions.save/grib1/2.98.151.table deleted file mode 100644 index 238fc46c..00000000 --- a/eccodes/definitions.save/grib1/2.98.151.table +++ /dev/null @@ -1,80 +0,0 @@ -# This file was automatically generated by ./param.pl -129 ocpt Ocean potential temperature deg C -130 s Salinity psu -131 ocu Ocean current zonal component (m s**-1) -132 ocv Ocean current meridional component (m s**-1) -133 ocw Ocean current vertical component (m s**-1) -134 mst Modulus of strain rate tensor s**-1 -135 vvs Vertical viscosity m**2 s**-1 -136 vdf Vertical diffusivity m**2 s**-1 -137 dep Bottom level Depth (m) -138 sth Sigma-theta kg m**-3 -139 rn Richardson number -140 uv UV product m**2 s**-2 -141 ut UT product m s**-1 degC -142 vt VT product m s**-1 deg C -143 uu UU product m**2 s**-2 -144 vv VV product m**2 s**-2 -145 sl Sea level m -146 sl_1 Sea level previous timestep m -147 bsf Barotropic stream function m**3 s**-1 -148 mld Mixed layer depth m -149 btp Bottom Pressure (equivalent height) (m) -151 crl Curl of Wind Stress N m**-3 -152 152 Divergence of wind stress (Nm**-3) -153 tax U stress Pa -154 tay V stress Pa -155 tki Turbulent kinetic energy input W m**-2 -156 nsf Net surface heat flux W m**-2 -157 asr Absorbed solar radiation W m**-2 -158 pme Precipitation - evaporation m s**-1 -159 sst Specified sea surface temperature deg C -160 shf Specified surface heat flux W m**-2 -161 dte Diagnosed sea surface temperature error deg C -162 hfc Heat flux correction W m**-2 -163 20d 20 degrees isotherm depth m -164 tav300 Average potential temperature in the upper 300m degrees C -165 uba1 Vertically integrated zonal velocity (previous time step) m**2 s**-1 -166 vba1 Vertically Integrated meridional velocity (previous time step) m**2 s**-1 -167 ztr Vertically integrated zonal volume transport m**2 s**-1 -168 mtr Vertically integrated meridional volume transport m**2 s**-1 -169 zht Vertically integrated zonal heat transport J m**-1 s**-1 -170 mht Vertically integrated meridional heat transport J m**-1 s**-1 -171 umax U velocity maximum m s**-1 -172 dumax Depth of the velocity maximum m -173 smax Salinity maximum psu -174 dsmax Depth of salinity maximum m -175 sav300 Average salinity in the upper 300m psu -176 ldp Layer Thickness at scalar points (m) -177 ldu Layer Thickness at vector points (m) -178 pti Potential temperature increment deg C -179 ptae Potential temperature analysis error deg C -180 bpt Background potential temperature deg C -181 apt Analysed potential temperature deg C -182 ptbe Potential temperature background error deg C -183 as Analysed salinity psu -184 sali Salinity increment psu -185 ebt Estimated Bias in Temperature deg C -186 ebs Estimated Bias in Salinity psu -187 uvi Zonal Velocity increment (from balance operator) m/s per time step -188 vvi Meridional Velocity increment (from balance operator) -190 subi Salinity increment (from salinity data) psu per time step -191 sale Salinity analysis error psu -192 bsal Background Salinity psu -193 193 - Reserved -194 salbe Salinity background error psu -199 ebta Estimated temperature bias from assimilation deg C -200 ebsa Estimated salinity bias from assimilation psu -201 lti Temperature increment from relaxation term deg C per time step -202 lsi Salinity increment from relaxation term psu per time step -203 bzpga Bias in the zonal pressure gradient (applied) (Pa**m-1) -204 bmpga Bias in the meridional pressure gradient (applied) (Pa**m-1) -205 ebtl Estimated temperature bias from relaxation deg C -206 ebsl Estimated salinity bias from relaxation psu -207 fgbt First guess bias in temperature deg C -208 fgbs First guess bias in salinity psu -209 bpa Applied bias in pressure Pa -210 fgbp FG bias in pressure Pa -211 pta Bias in temperature(applied) (deg C) -212 psa Bias in salinity (applied) (psu) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.160.table b/eccodes/definitions.save/grib1/2.98.160.table deleted file mode 100644 index b87f8872..00000000 --- a/eccodes/definitions.save/grib1/2.98.160.table +++ /dev/null @@ -1,109 +0,0 @@ -# This file was automatically generated by ./param.pl -127 127 AT Atmospheric tide -128 128 BV Budget values -129 129 Z Geopotential m**2 s**-2 -130 130 T Temperature K -131 131 U U velocity m s**-1 -132 132 V V velocity m s**-1 -133 133 Q Specific humidity kg kg**-1 -134 134 SP Surface pressure Pa -135 135 W Vertical velocity (pressure) Pa s**-1 -136 136 TCW Total column water kg m**-2 -137 137 PWC Precipitable water content kg m**-2 -138 138 VO Vorticity (relative) s**-1 -139 139 STL1 Soil temperature level 1 K -140 140 SWL1 Soil wetness level 1 m -141 141 SD Snow depth m of water -142 142 LSP Large-scale precipitation kg m**-2 s**-1 -143 143 CP Convective precipitation kg m**-2 s**-1 -144 144 SF Snowfall kg m**-2 s**-1 -145 145 BLD Boundary layer dissipation W m**-2 -146 146 SSHF Surface sensible heat flux W m**-2 -147 147 SLHF Surface latent heat flux W m**-2 -151 151 MSL Mean sea level pressure Pa -152 152 LNSP Logarithm of surface pressure -155 155 D Divergence s**-1 -156 156 GH Height m -157 157 R Relative humidity (0 - 1) -158 158 TSP Tendency of surface pressure Pa s**-1 -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component m s**-1 -166 166 10V 10 metre V wind component m s**-1 -167 167 2T 2 metre temperature K -168 168 2D 2 metre dewpoint temperature K -170 170 STL2 Soil temperature level 2 K -171 171 SWL2 Soil wetness level 2 m -172 172 LSM Land-sea mask (0 - 1) -173 173 SR Surface roughness m -174 174 AL Albedo (0 - 1) -176 176 SSR Surface solar radiation W m**-2 -177 177 STR Surface thermal radiation W m**-2 -178 178 TSR Top solar radiation W m**-2 -179 179 TTR Top thermal radiation W m**-2 -180 180 EWSS East-West surface stress N m**-2 s**-1 -181 181 NSSS North-South surface stress N m**-2 s**-1 -182 182 E Evaporation kg m**-2 s**-1 -183 183 STL3 Soil temperature level 3 K -184 184 SWL3 Soil wetness level 3 m -185 185 CCC Convective cloud cover (0 - 1) -186 186 LCC Low cloud cover (0 - 1) -187 187 MCC Medium cloud cover (0 - 1) -188 188 HCC High cloud cover (0 - 1) -190 190 EWOV East-West component of sub-gridscale orographic variance m**2 -191 191 NSOV North-South component of sub-gridscale orographic variance m**2 -192 192 NWOV North-West/South-East component of sub-gridscale orographic variance m**2 -193 193 NEOV North-East/South-West component of sub-gridscale orographic variance m**2 -195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s -196 196 MGWS Meridional component of gravity wave stress N m**-2 s -197 197 GWD Gravity wave dissipation W m**-2 s -198 198 SRC Skin reservoir content m of water -199 199 VEG Percentage of vegetation % -200 200 VSO Variance of sub-gridscale orography m**2 -201 201 MX2T Maximum temperature at 2 metres during averaging time K -202 202 MN2T Minimum temperature at 2 metres during averaging time K -204 204 PAW Precipitation analysis weights -205 205 RO Runoff kg m**-2 s**-1 -206 206 ZZ Standard deviation of geopotential m**2 s**-2 -207 207 TZ Covariance of temperature and geopotential K m**2 s**-2 -208 208 TT Standard deviation of temperature K -209 209 QZ Covariance of specific humidity and geopotential m**2 s**-2 -210 210 QT Covariance of specific humidity and temperature K -211 211 QQ Standard deviation of specific humidity (0 - 1) -212 212 UZ Covariance of U component and geopotential m**3 s**-3 -213 213 UT Covariance of U component and temperature K m s**-1 -214 214 UQ Covariance of U component and specific humidity m s**-1 -215 215 UU Standard deviation of U velocity m s**-1 -216 216 VZ Covariance of V component and geopotential m**3 s**-3 -217 217 VT Covariance of V component and temperature K m s**-1 -218 218 VQ Covariance of V component and specific humidity m s**-1 -219 219 VU Covariance of V component and U component m**2 s**-2 -220 220 VV Standard deviation of V component m s**-1 -221 221 WZ Covariance of W component and geopotential Pa m**2 s**-3 -222 222 WT Covariance of W component and temperature K Pa s**-1 -223 223 WQ Covariance of W component and specific humidity Pa s**-1 -224 224 WU Covariance of W component and U component Pa m s**-2 -225 225 WV Covariance of W component and V component Pa m s**-2 -226 226 WW Standard deviation of vertical velocity Pa s**-1 -228 228 TP Total precipitation m -229 229 IEWS Instantaneous X surface stress N m**-2 -230 230 INSS Instantaneous Y surface stress N m**-2 -231 231 ISHF Instantaneous surface heat flux W m**-2 -232 232 IE Instantaneous moisture flux kg m**-2 s**-1 -233 233 ASQ Apparent surface humidity kg kg**-1 -234 234 LSRH Logarithm of surface roughness length for heat -235 235 SKT Skin temperature K -236 236 STL4 Soil temperature level 4 K -237 237 SWL4 Soil wetness level 4 m -238 238 TSN Temperature of snow layer K -239 239 CSF Convective snowfall kg m**-2 s**-1 -240 240 LSF Large scale snowfall kg m**-2 s**-1 -241 241 CLWCER Cloud liquid water content kg kg**-1 -242 242 CC Cloud cover (0 - 1) -243 243 FAL Forecast albedo -244 244 FSR Forecast surface roughness m -245 245 FLSR Forecast logarithm of surface roughness for heat -246 246 10WS 10 metre wind speed m s**-1 -247 247 MOFL Momentum flux N m**-2 -249 249 - Gravity wave dissipation flux W m**-2 -254 254 HSD Heaviside beta function (0 - 1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.162.table b/eccodes/definitions.save/grib1/2.98.162.table deleted file mode 100644 index f70d3435..00000000 --- a/eccodes/definitions.save/grib1/2.98.162.table +++ /dev/null @@ -1,114 +0,0 @@ -# This file was automatically generated by ./param.pl -45 45 WVF Water vapour flux (kg m**-1 s**-1) -51 51 - Surface geopotential (m**2 s**-2) -52 52 SP Surface pressure (Pa) -53 53 - Vertical integral of mass of atmosphere (kg m**-2) -54 54 - Vertical integral of temperature (K kg m**-2) -55 55 - Vertical integral of water vapour (kg m**-2) -56 56 - Vertical integral of cloud liquid water (kg m**-2) -57 57 - Vertical integral of cloud frozen water (kg m**-2) -58 58 - Vertical integral of ozone (kg m**-2) -59 59 - Vertical integral of kinetic energy (J m**-2) -60 60 - Vertical integral of thermal energy (J m**-2) -61 61 - Vertical integral of potential+internal energy (J m**-2) -62 62 - Vertical integral of potential+internal+latent energy (J m**-2) -63 63 - Vertical integral of total energy (J m**-2) -64 64 - Vertical integral of energy conversion (J m**-2) -65 65 - Vertical integral of eastward mass flux (kg m**-1 s**-1) -66 66 - Vertical integral of northward mass flux (kg m**-1 s**-1) -67 67 - Vertical integral of eastward kinetic energy flux (J m**-2) -68 68 - Vertical integral of northward kinetic energy flux (J m**-2) -69 69 - Vertical integral of eastward heat flux (J m**-2) -70 70 - Vertical integral of northward heat flux (J m**-2) -71 71 - Vertical integral of eastward water vapour flux (kg m**-1 s**-1) -72 72 - Vertical integral of northward water vapour flux (kg m**-1 s**-1) -73 73 - Vertical integral of eastward geopotential flux (J m**-2) -74 74 - Vertical integral of northward geopotential flux (J m**-2) -75 75 - Vertical integral of eastward total energy flux (J m**-2) -76 76 - Vertical integral of northward total energy flux (J m**-2) -77 77 - Vertical integral of eastward ozone flux (kg m**-1 s**-1) -78 78 - Vertical integral of northward ozone flux (kg m**-1 s**-1) -79 79 - Vertical integral of divergence of cloud liquid water flux (kg m**-2 s**-1) -80 80 - Vertical integral of divergence of cloud frozen water flux (kg m**-2 s**-1) -81 81 - Vertical integral of divergence of mass flux (kg m**-2 s**-1) -82 82 - Vertical integral of divergence of kinetic energy flux (J m**-2) -83 83 - Vertical integral of divergence of thermal energy flux (J m**-2) -84 84 - Vertical integral of divergence of moisture flux (kg m**-2 s**-1) -85 85 - Vertical integral of divergence of geopotential flux (J m**-2) -86 86 - Vertical integral of divergence of total energy flux (J m**-2) -87 87 - Vertical integral of divergence of ozone flux (kg m**-2 s**-1) -88 88 - Vertical integral of eastward cloud liquid water flux (kg m**-1 s**-1) -89 89 - Vertical integral of northward cloud liquid water flux (kg m**-1 s**-1) -90 90 - Vertical integral of eastward cloud frozen water flux (kg m**-1 s**-1) -91 91 - Vertical integral of northward cloud frozen water flux (kg m**-1 s**-1) -92 92 - Vertical integral of mass tendency (kg m**-2 s**-1) -100 100 - Tendency of short wave radiation (K) -101 101 - Tendency of long wave radiation (K) -102 102 - Tendency of clear sky short wave radiation (K) -103 103 - Tendency of clear sky long wave radiation (K) -104 104 - Updraught mass flux (kg m**-2) -105 105 - Downdraught mass flux (kg m**-2) -106 106 - Updraught detrainment rate (kg m**-3) -107 107 - Downdraught detrainment rate (kg m**-3) -108 108 - Total precipitation flux (kg m**-2) -109 109 - Turbulent diffusion coefficient for heat (m**2) -110 110 - Tendency of temperature due to physics (K) -111 111 - Tendency of specific humidity due to physics (kg kg**-1) -112 112 - Tendency of u component due to physics (m s**-1) -113 113 - Tendency of v component due to physics (m s**-1) -114 114 UTENDD U-tendency from dynamics (m s**-1) -115 115 VTENDD V-tendency from dynamics (m s**-1) -116 116 TTENDD T-tendency from dynamics (K) -117 117 QTENDD q-tendency from dynamics (kg kg**-1) -118 118 TTENDR T-tendency from radiation (K) -119 119 UTENDTS U-tendency from turbulent diffusion + subgrid orography (m s**-1) -120 120 VTENDTS V-tendency from turbulent diffusion + subgrid orography (m s**-1) -121 121 TTENDTS T-tendency from turbulent diffusion + subgrid orography (K) -122 122 QTENDT q-tendency from turbulent diffusion (kg kg**-1) -123 123 UTENDS U-tendency from subgrid orography (m s**-1) -124 124 VTENDS V-tendency from subgrid orography (m s**-1) -125 125 TTENDS T-tendency from subgrid orography (K) -126 126 UTENDCDS U-tendency from convection (deep+shallow) (m s**-1) -127 127 VTENDCDS V-tendency from convection (deep+shallow) (m s**-1) -128 128 TTENDCDS T-tendency from convection (deep+shallow) (K) -129 129 QTENDCDS q-tendency from convection (deep+shallow) (kg kg**-1) -130 130 LPC Liquid Precipitation flux from convection (kg m**-2) -131 131 IPC Ice Precipitation flux from convection (kg m**-2) -132 132 TTENDCS T-tendency from cloud scheme (K) -133 133 QTENDCS q-tendency from cloud scheme (kg kg**-1) -134 134 QLTENDCS ql-tendency from cloud scheme (kg kg**-1) -135 135 QITENDCS qi-tendency from cloud scheme (kg kg**-1) -136 136 LPCS Liquid Precip flux from cloud scheme (stratiform) (kg m**-2) -137 137 IPCS Ice Precip flux from cloud scheme (stratiform) (kg m**-2) -138 138 UTENDCS U-tendency from shallow convection (m s**-1) -139 139 VTENDCS V-tendency from shallow convection (m s**-1) -140 140 TTENDSC T-tendency from shallow convection (K) -141 141 QTENDSC q-tendency from shallow convection (kg kg**-1) -206 206 - Variance of geopotential (m**4 s**-4) -207 207 - Covariance of geopotential/temperature (m**2 K s**-2) -208 208 - Variance of temperature (K**2) -209 209 - Covariance of geopotential/specific humidity (m**2 s**-2) -210 210 - Covariance of temperature/specific humidity (K) -211 211 - Variance of specific humidity -212 212 - Covariance of u component/geopotential (m**3 s**-3) -213 213 - Covariance of u component/temperature (m s**-1 K) -214 214 - Covariance of u component/specific humidity (m s**-1) -215 215 - Variance of u component (m**2 s**-2) -216 216 - Covariance of v component/geopotential (m**3 s**-3) -217 217 - Covariance of v component/temperature (m s**-1 K) -218 218 - Covariance of v component/specific humidity (m s**-1) -219 219 - Covariance of v component/u component (m**2 s**-2) -220 220 - Variance of v component (m**2 s**-2) -221 221 - Covariance of omega/geopotential (m**2 Pa s**-3) -222 222 - Covariance of omega/temperature (Pa s**-1 K) -223 223 - Covariance of omega/specific humidity (Pa s**-1) -224 224 - Covariance of omega/u component (m Pa s**-2) -225 225 - Covariance of omega/v component (m Pa s**-2) -226 226 - Variance of omega (Pa**2 s**-2) -227 227 - Variance of surface pressure (Pa**2) -229 229 - Variance of relative humidity (dimensionless) -230 230 - Covariance of u component/ozone (m s**-1) -231 231 - Covariance of v component/ozone (m s**-1) -232 232 - Covariance of omega/ozone (Pa s**-1) -233 233 - Variance of ozone (dimensionless) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.170.table b/eccodes/definitions.save/grib1/2.98.170.table deleted file mode 100644 index cd3dc702..00000000 --- a/eccodes/definitions.save/grib1/2.98.170.table +++ /dev/null @@ -1,36 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 SPI03 Standardised precipitation index valid in the last 3 months (dimensionless) -2 2 SPI06 Standardised precipitation index valid in the last 6 months (dimensionless) -3 3 SPI12 Standardised precipitation index valid in the last 12 months (dimensionless) -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -135 135 W Vertical velocity (Pa s**-1) -138 138 VO Vorticity (relative) (s**-1) -139 139 STL1 Soil temperature level 1 (K) -140 140 SWL1 Soil wetness level 1 (m of water equivalent) -141 141 SD Snow depth (m of water equivalent) -142 142 LSP Large-scale precipitation (m) -143 143 CP Convective precipitation (m) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -149 149 TSW Total soil moisture (m) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -157 157 R Relative humidity (%) -164 164 TCC Total cloud cover ((0 - 1)) -171 171 SWL2 Soil wetness level 2 (m) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -180 180 EWSS Eastward turbulent surface stress (N m**-2 s) -181 181 NSSS Northward turbulent surface stress (N m**-2 s) -182 182 E Evaporation (m of water equivalent) -184 184 SWL3 Soil wetness level 3 (m of water equivalent) -185 185 CCC Convective cloud cover ((0 - 1)) -201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) -202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) -228 228 TP Total precipitation (m) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.171.table b/eccodes/definitions.save/grib1/2.98.171.table deleted file mode 100644 index 39cf33bf..00000000 --- a/eccodes/definitions.save/grib1/2.98.171.table +++ /dev/null @@ -1,187 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 - Stream function anomaly (m**2 s**-1) -2 2 - Velocity potential anomaly (m**2 s**-1) -3 3 - Potential temperature anomaly (K) -4 4 - Equivalent potential temperature anomaly (K) -5 5 - Saturated equivalent potential temperature anomaly (K) -11 11 - U component of divergent wind anomaly (m s**-1) -12 12 - V component of divergent wind anomaly (m s**-1) -13 13 - U component of rotational wind anomaly (m s**-1) -14 14 - V component of rotational wind anomaly (m s**-1) -21 21 - Unbalanced component of temperature anomaly (K) -22 22 - Unbalanced component of logarithm of surface pressure anomaly -23 23 - Unbalanced component of divergence anomaly (s**-1) -24 24 - Lake mix-layer temperature anomaly (K) -25 25 - Lake ice depth anomaly (m) -26 26 - Lake cover anomaly (0 - 1) -27 27 - Low vegetation cover anomaly (0 - 1) -28 28 - High vegetation cover anomaly (0 - 1) -29 29 - Type of low vegetation anomaly -30 30 - Type of high vegetation anomaly -31 31 - Sea-ice cover anomaly (0 - 1) -32 32 - Snow albedo anomaly (0 - 1) -33 33 - Snow density anomaly (kg m**-3) -34 34 - Sea surface temperature anomaly (K) -35 35 - Ice surface temperature anomaly layer 1 (K) -36 36 - Ice surface temperature anomaly layer 2 (K) -37 37 - Ice surface temperature anomaly layer 3 (K) -38 38 - Ice surface temperature anomaly layer 4 (K) -39 39 - Volumetric soil water anomaly layer 1 (m**3 m**-3) -40 40 - Volumetric soil water anomaly layer 2 (m**3 m**-3) -41 41 - Volumetric soil water anomaly layer 3 (m**3 m**-3) -42 42 - Volumetric soil water anomaly layer 4 (m**3 m**-3) -43 43 - Soil type anomaly -44 44 - Snow evaporation anomaly m of water -45 45 - Snowmelt anomaly m of water -46 46 - Solar duration anomaly s -47 47 - Direct solar radiation anomaly (w m**-2) -48 48 - Magnitude of surface stress anomaly (N m**-2 s) -49 49 - 10 metre wind gust anomaly (m s**-1) -50 50 - Large-scale precipitation fraction anomaly (s) -51 51 - Maximum 2 metre temperature in the last 24 hours anomaly (K) -52 52 - Minimum 2 metre temperature in the last 24 hours anomaly (K) -53 53 - Montgomery potential anomaly (m**2 s**-2) -54 54 - Pressure anomaly (Pa) -55 55 - Mean 2 metre temperature in the last 24 hours anomaly (K) -56 56 - Mean 2 metre dewpoint temperature in the last 24 hours anomaly (K) -57 57 - Downward UV radiation at the surface anomaly (w m**-2) -58 58 - Photosynthetically active radiation at the surface anomaly (w m**-2) -59 59 - Convective available potential energy anomaly (J kg**-1) -60 60 - Potential vorticity anomaly (K m**2 kg**-1 s**-1) -61 61 - Total precipitation from observations anomaly (Millimetres*100 + number of stations) -62 62 - Observation count anomaly -63 63 - Start time for skin temperature difference anomaly (s) -64 64 - Finish time for skin temperature difference anomaly (s) -65 65 - Skin temperature difference anomaly (K) -78 78 - Total column liquid water anomaly (kg m**-2) -79 79 - Total column ice water anomaly (kg m**-2) -125 125 - Vertically integrated total energy anomaly (J m**-2) -126 126 - Generic parameter for sensitive area prediction Various -127 127 - Atmospheric tide anomaly -128 128 - Budget values anomaly -129 129 - Geopotential anomaly (m**2 s**-2) -130 130 - Temperature anomaly (K) -131 131 - U component of wind anomaly (m s**-1) -132 132 - V component of wind anomaly (m s**-1) -133 133 - Specific humidity anomaly (kg kg**-1) -134 134 - Surface pressure anomaly (Pa) -135 135 - Vertical velocity (pressure) anomaly (Pa s**-1) -136 136 - Total column water anomaly (kg m**-2) -137 137 - Total column water vapour anomaly (kg m**-2) -138 138 - Relative vorticity anomaly (s**-1) -139 139 - Soil temperature anomaly level 1 (K) -140 140 - Soil wetness anomaly level 1 (m of water) -141 141 - Snow depth anomaly m of water equivalent -142 142 - Stratiform precipitation (Large-scale precipitation) anomaly (m) -143 143 - Convective precipitation anomaly (m) -144 144 - Snowfall (convective + stratiform) anomaly m of water equivalent -145 145 - Boundary layer dissipation anomaly (W m**-2 s) -146 146 - Surface sensible heat flux anomaly (W m**-2 s) -147 147 - Surface latent heat flux anomaly (W m**-2 s) -148 148 - Charnock anomaly -149 149 - Surface net radiation anomaly (W m**-2 s) -150 150 - Top net radiation anomaly -151 151 - Mean sea level pressure anomaly (Pa) -152 152 - Logarithm of surface pressure anomaly -153 153 - Short-wave heating rate anomaly (K) -154 154 - Long-wave heating rate anomaly (K) -155 155 - Relative divergence anomaly (s**-1) -156 156 - Height anomaly (m) -157 157 - Relative humidity anomaly (%) -158 158 - Tendency of surface pressure anomaly (Pa s**-1) -159 159 - Boundary layer height anomaly (m) -160 160 - Standard deviation of orography anomaly -161 161 - Anisotropy of sub-gridscale orography anomaly -162 162 - Angle of sub-gridscale orography anomaly -163 163 - Slope of sub-gridscale orography anomaly -164 164 - Total cloud cover anomaly (0 - 1) -165 165 - 10 metre U wind component anomaly (m s**-1) -166 166 - 10 metre V wind component anomaly (m s**-1) -167 167 - 2 metre temperature anomaly (K) -168 168 - 2 metre dewpoint temperature anomaly (K) -169 169 - Surface solar radiation downwards anomaly (W m**-2 s) -170 170 - Soil temperature anomaly level 2 (K) -171 171 - Soil wetness anomaly level 2 m of water -172 172 - Land-sea mask (0 - 1) -173 173 - Surface roughness anomaly (m) -174 174 - Albedo anomaly (0 - 1) -175 175 - Surface thermal radiation downwards anomaly (W m**-2 s) -176 176 - Surface solar radiation anomaly (W m**-2 s) -177 177 - Surface thermal radiation anomaly (W m**-2 s) -178 178 - Top solar radiation anomaly (W m**-2 s) -179 179 - Top thermal radiation anomaly (W m**-2 s) -180 180 - East-West surface stress anomaly (N m**-2 s) -181 181 - North-South surface stress anomaly (N m**-2 s) -182 182 - Evaporation anomaly (m of water anomaly) -183 183 - Soil temperature anomaly level 3 (K) -184 184 - Soil wetness anomaly level 3 m of water -185 185 - Convective cloud cover anomaly (0 - 1) -186 186 - Low cloud cover anomaly (0 - 1) -187 187 - Medium cloud cover anomaly (0 - 1) -188 188 - High cloud cover anomaly (0 - 1) -189 189 - Sunshine duration anomaly (s) -190 190 - East-West component of sub-gridscale orographic variance anomaly (m**2) -191 191 - North-South component of sub-gridscale orographic variance anomaly (m**2) -192 192 - North-West/South-East component of sub-gridscale orographic variance anomaly (m**2) -193 193 - North-East/South-West component of sub-gridscale orographic variance anomaly (m**2) -194 194 - Brightness temperature anomaly (K) -195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2 s) -196 196 - Meridional component of gravity wave stress anomaly (N m**-2 s) -197 197 - Gravity wave dissipation anomaly (W m**-2 s) -198 198 - Skin reservoir content anomaly (m of water) -199 199 - Vegetation fraction anomaly (0 - 1) -200 200 - Variance of sub-gridscale orography anomaly (m**2) -201 201 - Maximum temperature at 2 metres anomaly (K) -202 202 - Minimum temperature at 2 metres anomaly (K) -203 203 - Ozone mass mixing ratio (kg kg**-1) -204 204 - Precipitation analysis weights -205 205 - Runoff (m) -206 206 - Total column ozone (kg m**-2) -207 207 10SIA 10 metre wind speed (m s**-1) -208 208 - Top net solar radiation, clear sky (W m**-2 s) -209 209 - Top net thermal radiation, clear sky (W m**-2 s) -210 210 - Surface net solar radiation, clear sky (W m**-2 s) -211 211 - Surface net thermal radiation, clear sky (W m**-2 s) -212 212 - Solar insolation (W m**-2) -214 214 - Diabatic heating by radiation (K) -215 215 - Diabatic heating by vertical diffusion (K) -216 216 - Diabatic heating by cumulus convection (K) -217 217 - Diabatic heating by large-scale condensation (K) -218 218 - Vertical diffusion of zonal wind (m s**-1) -219 219 - Vertical diffusion of meridional wind (m s**-1) -220 220 - East-West gravity wave drag tendency (m s**-1) -221 221 - North-South gravity wave drag tendency (m s**-1) -222 222 - Convective tendency of zonal wind (m s**-1) -223 223 - Convective tendency of meridional wind (m s**-1) -224 224 - Vertical diffusion of humidity anomaly (kg kg**-1) -225 225 - Humidity tendency by cumulus convection anomaly (kg kg**-1) -226 226 - Humidity tendency by large-scale condensation anomaly (kg kg**-1) -227 227 - Change from removal of negative humidity anomaly (kg kg**-1) -228 228 - Total precipitation anomaly (m) -229 229 - Instantaneous X surface stress anomaly (N m**-2) -230 230 - Instantaneous Y surface stress anomaly (N m**-2) -231 231 - Instantaneous surface heat flux anomaly (W m**-2) -232 232 - Instantaneous moisture flux anomaly (kg m**-2 s) -233 233 - Apparent surface humidity anomaly (kg kg**-1) -234 234 - Logarithm of surface roughness length for heat anomaly -235 235 - Skin temperature anomaly (K) -236 236 - Soil temperature level 4 anomaly (K) -237 237 - Soil wetness level 4 anomaly (m) -238 238 - Temperature of snow layer anomaly (K) -239 239 - Convective snowfall anomaly (m of water equivalent) -240 240 - Large scale snowfall anomaly (m of water equivalent) -241 241 - Accumulated cloud fraction tendency anomaly (-1 to 1) -242 242 - Accumulated liquid water tendency anomaly (-1 to 1) -243 243 - Forecast albedo anomaly (0 - 1) -244 244 - Forecast surface roughness anomaly (m) -245 245 - Forecast logarithm of surface roughness for heat anomaly -246 246 - Cloud liquid water content anomaly (kg kg**-1) -247 247 - Cloud ice water content anomaly (kg kg**-1) -248 248 - Cloud cover anomaly (0 - 1) -249 249 - Accumulated ice water tendency anomaly (-1 to 1) -250 250 - Ice age anomaly (0 - 1) -251 251 - Adiabatic tendency of temperature anomaly (K) -252 252 - Adiabatic tendency of humidity anomaly (kg kg**-1) -253 253 - Adiabatic tendency of zonal wind anomaly (m s**-1) -254 254 - Adiabatic tendency of meridional wind anomaly (m s**-1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.172.table b/eccodes/definitions.save/grib1/2.98.172.table deleted file mode 100644 index 5d8f8653..00000000 --- a/eccodes/definitions.save/grib1/2.98.172.table +++ /dev/null @@ -1,39 +0,0 @@ -# This file was automatically generated by ./param.pl -8 8 MSROR Mean surface runoff rate (m of water equivalent s**-1) -9 9 MSSROR Mean sub-surface runoff rate (m of water equivalent s**-1) -44 44 ESRATE Snow evaporation (m of water s**-1) -45 45 - Snowmelt (m of water s**-1) -48 48 - Magnitude of turbulent surface stress (N m**-2) -50 50 MLSPFR Mean large-scale precipitation fraction (~) -142 142 MLSPRT Mean large-scale precipitation rate (m s**-1) -143 143 CPRATE Mean convective precipitation rate (m s**-1) -144 144 - Snowfall (convective + stratiform) (m of water equivalent s**-1) -145 145 BLDRATE Boundary layer dissipation (W m**-2) -146 146 MSSHFL Mean surface sensible heat flux (W m**-2) -147 147 MSLHFL Mean surface latent heat flux (W m**-2) -149 149 MSNRF Mean surface net radiation flux (W m**-2) -153 153 MSWHR Mean short-wave heating rate (K s**-1) -154 154 MLWHR Mean long-wave heating rate (K s**-1) -169 169 MSDSRF Mean surface downward solar radiation flux (W m**-2) -175 175 MSDTRF Mean surface downward thermal radiation flux (W m**-2) -176 176 MSNSRF Mean surface net solar radiation flux (W m**-2) -177 177 MSNTRF Mean surface net thermal radiation flux (W m**-2) -178 178 MTNSRF Mean top net solar radiation flux (W m**-2) -179 179 MTNTRF Mean top net thermal radiation flux (W m**-2) -180 180 EWSSRA East-West surface stress rate of accumulation (N m**-2) -181 181 NSSSRA North-South surface stress rate of accumulation (N m**-2) -182 182 ERATE Evaporation (m of water s**-1) -189 189 - Sunshine duration (~) -195 195 - Longitudinal component of gravity wave stress (N m**-2) -196 196 - Meridional component of gravity wave stress (N m**-2) -197 197 GWDRATE Gravity wave dissipation (W m**-2) -205 205 MRORT Mean runoff rate (m s**-1) -208 208 - Top net solar radiation, clear sky (W m**-2) -209 209 - Top net thermal radiation, clear sky (W m**-2) -210 210 - Surface net solar radiation, clear sky (W m**-2) -211 211 - Surface net thermal radiation, clear sky (W m**-2) -212 212 SOIRA Solar insolation rate of accumulation (W m**-2) -228 228 TPRATE Mean total precipitation rate (m s**-1) -239 239 - Convective snowfall (m of water equivalent s**-1) -240 240 - Large scale snowfall (m of water equivalent s**-1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.173.table b/eccodes/definitions.save/grib1/2.98.173.table deleted file mode 100644 index e16e9a70..00000000 --- a/eccodes/definitions.save/grib1/2.98.173.table +++ /dev/null @@ -1,39 +0,0 @@ -# This file was automatically generated by ./param.pl -8 8 MSRORA Mean surface runoff rate anomaly (m of water equivalent s**-1) -9 9 MSSRORA Mean sub-surface runoff rate anomaly (m of water equivalent s**-1) -44 44 - Snow evaporation anomaly (m of water s**-1) -45 45 - Snowmelt anomaly (m of water s**-1) -48 48 - Magnitude of turbulent surface stress anomaly (N m**-2) -50 50 - Large-scale precipitation fraction anomaly (~) -142 142 LSPARA Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation (m s**-1) -143 143 MCPRA Mean convective precipitation rate anomaly (m s**-1) -144 144 SFARA Snowfall (convective + stratiform) anomalous rate of accumulation (m of water equivalent s**-1) -145 145 - Boundary layer dissipation anomaly (J m**-2) -146 146 SSHFARA Surface sensible heat flux anomalous rate of accumulation (J m**-2) -147 147 SLHFARA Surface latent heat flux anomalous rate of accumulation (J m**-2) -149 149 - Surface net radiation anomaly (J m**-2) -153 153 - Short-wave heating rate anomaly (K s**-1) -154 154 - Long-wave heating rate anomaly (K s**-1) -169 169 SSRDARA Surface solar radiation downwards anomalous rate of accumulation (J m**-2) -175 175 STRDARA Surface thermal radiation downwards anomalous rate of accumulation (J m**-2) -176 176 SSRARA Surface solar radiation anomalous rate of accumulation (J m**-2) -177 177 STRARA Surface thermal radiation anomalous rate of accumulation (J m**-2) -178 178 TSRARA Top solar radiation anomalous rate of accumulation (J m**-2) -179 179 TTRARA Top thermal radiation anomalous rate of accumulation (J m**-2) -180 180 EWSSARA East-West surface stress anomalous rate of accumulation (N m**-2) -181 181 NSSSARA North-South surface stress anomalous rate of accumulation (N m**-2) -182 182 EVARA Evaporation anomalous rate of accumulation (m of water s**-1) -189 189 SUNDARA Sunshine duration anomalous rate of accumulation (dimensionless) -195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2) -196 196 - Meridional component of gravity wave stress anomaly (N m**-2) -197 197 - Gravity wave dissipation anomaly (J m**-2) -205 205 ROARA Runoff anomalous rate of accumulation (m s**-1) -208 208 - Top net solar radiation, clear sky anomaly (J m**-2) -209 209 - Top net thermal radiation, clear sky anomaly (J m**-2) -210 210 - Surface net solar radiation, clear sky anomaly (J m**-2) -211 211 - Surface net thermal radiation, clear sky anomaly (J m**-2) -212 212 SOIARA Solar insolation anomalous rate of accumulation (W m**-2 s**-1) -228 228 TPARA Total precipitation anomalous rate of accumulation (m s**-1) -239 239 - Convective snowfall anomaly (m of water equivalent s**-1) -240 240 - Large scale snowfall anomaly (m of water equivalent s**-1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.174.table b/eccodes/definitions.save/grib1/2.98.174.table deleted file mode 100644 index 4cbeeb3d..00000000 --- a/eccodes/definitions.save/grib1/2.98.174.table +++ /dev/null @@ -1,56 +0,0 @@ -# This file was automatically generated by ./param.pl -6 6 - Total soil moisture (m) -8 8 SRO Surface runoff (kg m**-2) -9 9 SSRO Sub-surface runoff (kg m**-2) -10 10 SSWCSDOWN Clear-sky (II) down surface sw flux (W m**-2) -13 13 SSWCSUP Clear-sky (II) up surface sw flux (W m**-2) -25 25 VIS15 Visibility at 1.5m (m) -31 31 - Fraction of sea-ice in sea (0 - 1) -34 34 - Open-sea surface temperature (K) -39 39 - Volumetric soil water layer 1 (m**3 m**-3) -40 40 - Volumetric soil water layer 2 (m**3 m**-3) -41 41 - Volumetric soil water layer 3 (m**3 m**-3) -42 42 - Volumetric soil water layer 4 (m**3 m**-3) -49 49 - 10 metre wind gust in the last 24 hours (m s**-1) -50 50 MN15T Minimum temperature at 1.5m since previous post-processing (K) -51 51 MX15T Maximum temperature at 1.5m since previous post-processing (K) -52 52 RHUM Relative humidity at 1.5m (kg kg**-1) -55 55 - 1.5m temperature - mean in the last 24 hours (K) -83 83 - Net primary productivity (kg C m**-2 s**-1) -85 85 - 10m U wind over land (m s**-1) -86 86 - 10m V wind over land (m s**-1) -87 87 - 1.5m temperature over land (K) -88 88 - 1.5m dewpoint temperature over land (K) -89 89 - Top incoming solar radiation (J m**-2) -90 90 - Top outgoing solar radiation (J m**-2) -94 94 - Mean sea surface temperature (K) -95 95 - 1.5m specific humidity (kg kg**-1) -96 96 - 2 metre specific humidity (kg kg**-1) -97 97 SIST Sea-ice Snow Thickness (m) -98 98 SIT Sea-ice thickness (m) -99 99 - Liquid water potential temperature (K) -110 110 - Ocean ice concentration (0 - 1) -111 111 - Ocean mean ice depth (m) -116 116 SWRSURF Short wave radiation flux at surface (J m**-2) -117 117 SWRTOP Short wave radiation flux at top of atmosphere (J m**-2) -137 137 TCWVAP Total column water vapour (kg m**-2) -139 139 - Soil temperature layer 1 (K) -142 142 LSRRATE Large scale rainfall rate (kg m**-2 s**-1) -143 143 CRFRATE Convective rainfall rate (kg m**-2 s**-1) -164 164 - Average potential temperature in upper 293.4m (degrees C) -167 167 - 1.5m temperature (K) -168 168 - 1.5m dewpoint temperature (K) -170 170 - Soil temperature layer 2 (K) -172 172 LSM Land-sea mask (0 - 1) -175 175 - Average salinity in upper 293.4m (psu) -183 183 - Soil temperature layer 3 (K) -186 186 VLCA Very low cloud amount (0 - 1) -201 201 - 1.5m temperature - maximum in the last 24 hours (K) -202 202 - 1.5m temperature - minimum in the last 24 hours (K) -236 236 - Soil temperature layer 4 (K) -239 239 CSFRATE Convective snowfall rate (kg m**-2 s**-1) -240 240 LSFRATE Large scale snowfall rate (kg m**-2 s**-1) -248 248 TCCRO Total cloud amount - random overlap (0 - 1) -249 249 TCCLWR Total cloud amount in lw radiation (0 - 1) -255 255 - Indicates a missing value - diff --git a/eccodes/definitions.save/grib1/2.98.175.table b/eccodes/definitions.save/grib1/2.98.175.table deleted file mode 100644 index a64289ad..00000000 --- a/eccodes/definitions.save/grib1/2.98.175.table +++ /dev/null @@ -1,31 +0,0 @@ -# This file was automatically generated by ./param.pl -6 6 - Total soil moisture (m) -31 31 - Fraction of sea-ice in sea (0 - 1) -34 34 - Open-sea surface temperature (K) -39 39 - Volumetric soil water layer 1 (m**3 m**-3) -40 40 - Volumetric soil water layer 2 (m**3 m**-3) -41 41 - Volumetric soil water layer 3 (m**3 m**-3) -42 42 - Volumetric soil water layer 4 (m**3 m**-3) -49 49 - 10m wind gust in the last 24 hours (m s**-1) -55 55 - 1.5m temperature - mean in the last 24 hours (K) -83 83 - Net primary productivity (kg C m**-2 s**-1) -85 85 - 10m U wind over land (m s**-1) -86 86 - 10m V wind over land (m s**-1) -87 87 - 1.5m temperature over land (K) -88 88 - 1.5m dewpoint temperature over land (K) -89 89 - Top incoming solar radiation (J m**-2) -90 90 - Top outgoing solar radiation (J m**-2) -110 110 - Ocean ice concentration (0 - 1) -111 111 - Ocean mean ice depth (m) -139 139 - Soil temperature layer 1 (K) -164 164 - Average potential temperature in upper 293.4m (degrees C) -167 167 - 1.5m temperature (K) -168 168 - 1.5m dewpoint temperature (K) -170 170 - Soil temperature layer 2 (K) -172 172 lsm Land-sea mask (0 - 1) -175 175 - Average salinity in upper 293.4m (psu) -183 183 - Soil temperature layer 3 (K) -201 201 - 1.5m temperature - maximum in the last 24 hours (K) -202 202 - 1.5m temperature - minimum in the last 24 hours (K) -236 236 - Soil temperature layer 4 (K) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.180.table b/eccodes/definitions.save/grib1/2.98.180.table deleted file mode 100644 index 8b5756e1..00000000 --- a/eccodes/definitions.save/grib1/2.98.180.table +++ /dev/null @@ -1,33 +0,0 @@ -# This file was automatically generated by ./param.pl -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -134 134 SP Surface pressure (Pa) -137 137 TCWV Total column water vapour (kg m**-2) -138 138 VO Vorticity (relative) (s**-1) -141 141 SD Snow depth (m of water equivalent) -142 142 LSP Large-scale precipitation (m) -143 143 CP Convective precipitation (m) -144 144 SF Snowfall (m of water equivalent) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -149 149 TSW Total soil wetness (m) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component (m s**-1) -166 166 10V 10 metre V wind component (m s**-1) -167 167 2T 2 metre temperature (K) -168 168 2D 2 metre dewpoint temperature (K) -172 172 LSM Land-sea mask (0 - 1) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -178 178 TSR Top net solar radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -180 180 EWSS Eastward turbulent surface stress (N m**-2 s) -181 181 NSSS Northward turbulent surface stress (N m**-2 s) -182 182 E Evaporation (m of water equivalent) -205 205 RO Runoff (m) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.190.table b/eccodes/definitions.save/grib1/2.98.190.table deleted file mode 100644 index df318038..00000000 --- a/eccodes/definitions.save/grib1/2.98.190.table +++ /dev/null @@ -1,37 +0,0 @@ -# This file was automatically generated by ./param.pl -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -134 134 SP Surface pressure (Pa) -138 138 VO Vorticity (relative) (s**-1) -139 139 STL1 Soil temperature level 1 (K) -141 141 SDSIEN Snow depth (kg m**-2) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -157 157 R Relative humidity (%) -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component (m s**-1) -166 166 10V 10 metre V wind component (m s**-1) -167 167 2T 2 metre temperature (K) -168 168 2D 2 metre dewpoint temperature (K) -169 169 SSRD Surface solar radiation downwards (J m**-2) -170 170 CAP Field capacity (0 - 1) -171 171 WILTSIEN Wilting point (0 - 1) -172 172 LSM Land-sea mask (0 - 1) -173 173 SR Roughness length (0 - 1) -174 174 AL Albedo (0 - 1) -175 175 STRD Surface thermal radiation downwards (J m**-2) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -178 178 TSR Top net solar radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -182 182 E Evaporation (m of water equivalent) -201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) -202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) -228 228 TP Total precipitation (m) -229 229 TSM Total soil moisture (m**3 m**-3) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.200.table b/eccodes/definitions.save/grib1/2.98.200.table deleted file mode 100644 index cd561682..00000000 --- a/eccodes/definitions.save/grib1/2.98.200.table +++ /dev/null @@ -1,236 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 STRFDIFF Stream function difference (m**2 s**-1) -2 2 VPOTDIFF Velocity potential difference (m**2 s**-1) -3 3 PTDIFF Potential temperature difference (K) -4 4 EQPTDIFF Equivalent potential temperature difference (K) -5 5 SEPTDIFF Saturated equivalent potential temperature difference (K) -11 11 UDVWDIFF U component of divergent wind difference (m s**-1) -12 12 VDVWDIFF V component of divergent wind difference (m s**-1) -13 13 URTWDIFF U component of rotational wind difference (m s**-1) -14 14 VRTWDIFF V component of rotational wind difference (m s**-1) -21 21 UCTPDIFF Unbalanced component of temperature difference (K) -22 22 UCLNDIFF Unbalanced component of logarithm of surface pressure difference (~) -23 23 UCDVDIFF Unbalanced component of divergence difference (s**-1) -24 24 - Reserved for future unbalanced components (~) -25 25 - Reserved for future unbalanced components (~) -26 26 CLDIFF Lake cover difference (0 - 1) -27 27 CVLDIFF Low vegetation cover difference (0 - 1) -28 28 CVHDIFF High vegetation cover difference (0 - 1) -29 29 TVLDIFF Type of low vegetation difference (~) -30 30 TVHDIFF Type of high vegetation difference (~) -31 31 SICDIFF Sea-ice cover difference (0 - 1) -32 32 ASNDIFF Snow albedo difference (0 - 1) -33 33 RSNDIFF Snow density difference (kg m**-3) -34 34 SSTDIFF Sea surface temperature difference (K) -35 35 ISTL1DIFF Ice surface temperature layer 1 difference (K) -36 36 ISTL2DIFF Ice surface temperature layer 2 difference (K) -37 37 ISTL3DIFF Ice surface temperature layer 3 difference (K) -38 38 ISTL4DIFF Ice surface temperature layer 4 difference (K) -39 39 SWVL1DIFF Volumetric soil water layer 1 difference (m**3 m**-3) -40 40 SWVL2DIFF Volumetric soil water layer 2 difference (m**3 m**-3) -41 41 SWVL3DIFF Volumetric soil water layer 3 difference (m**3 m**-3) -42 42 SWVL4DIFF Volumetric soil water layer 4 difference (m**3 m**-3) -43 43 SLTDIFF Soil type difference (~) -44 44 ESDIFF Snow evaporation difference (kg m**-2) -45 45 SMLTDIFF Snowmelt difference (kg m**-2) -46 46 SDURDIFF Solar duration difference (s) -47 47 DSRPDIFF Direct solar radiation difference (J m**-2) -48 48 MAGSSDIFF Magnitude of surface stress difference (N m**-2 s) -49 49 10FGDIFF 10 metre wind gust difference (m s**-1) -50 50 LSPFDIFF Large-scale precipitation fraction difference (s) -51 51 MX2T24DIFF Maximum 2 metre temperature difference (K) -52 52 MN2T24DIFF Minimum 2 metre temperature difference (K) -53 53 MONTDIFF Montgomery potential difference (m**2 s**-2) -54 54 PRESDIFF Pressure difference (Pa) -55 55 MEAN2T24DIFF Mean 2 metre temperature in the last 24 hours difference (K) -56 56 MN2D24DIFF Mean 2 metre dewpoint temperature in the last 24 hours difference (K) -57 57 UVBDIFF Downward UV radiation at the surface difference (J m**-2) -58 58 PARDIFF Photosynthetically active radiation at the surface difference (J m**-2) -59 59 CAPEDIFF Convective available potential energy difference (J kg**-1) -60 60 PVDIFF Potential vorticity difference (K m**2 kg**-1 s**-1) -61 61 TPODIFF Total precipitation from observations difference (Millimetres*100 + number of stations) -62 62 OBCTDIFF Observation count difference (~) -63 63 - Start time for skin temperature difference (s) -64 64 - Finish time for skin temperature difference (s) -65 65 - Skin temperature difference (K) -66 66 - Leaf area index, low vegetation (m**2 m**-2) -67 67 - Leaf area index, high vegetation (m**2 m**-2) -68 68 - Minimum stomatal resistance, low vegetation (s m**-1) -69 69 - Minimum stomatal resistance, high vegetation (s m**-1) -70 70 - Biome cover, low vegetation (0 - 1) -71 71 - Biome cover, high vegetation (0 - 1) -78 78 - Total column liquid water (kg m**-2) -79 79 - Total column ice water (kg m**-2) -80 80 - Experimental product (~) -81 81 - Experimental product (~) -82 82 - Experimental product (~) -83 83 - Experimental product (~) -84 84 - Experimental product (~) -85 85 - Experimental product (~) -86 86 - Experimental product (~) -87 87 - Experimental product (~) -88 88 - Experimental product (~) -89 89 - Experimental product (~) -90 90 - Experimental product (~) -91 91 - Experimental product (~) -92 92 - Experimental product (~) -93 93 - Experimental product (~) -94 94 - Experimental product (~) -95 95 - Experimental product (~) -96 96 - Experimental product (~) -97 97 - Experimental product (~) -98 98 - Experimental product (~) -99 99 - Experimental product (~) -100 100 - Experimental product (~) -101 101 - Experimental product (~) -102 102 - Experimental product (~) -103 103 - Experimental product (~) -104 104 - Experimental product (~) -105 105 - Experimental product (~) -106 106 - Experimental product (~) -107 107 - Experimental product (~) -108 108 - Experimental product (~) -109 109 - Experimental product (~) -110 110 - Experimental product (~) -111 111 - Experimental product (~) -112 112 - Experimental product (~) -113 113 - Experimental product (~) -114 114 - Experimental product (~) -115 115 - Experimental product (~) -116 116 - Experimental product (~) -117 117 - Experimental product (~) -118 118 - Experimental product (~) -119 119 - Experimental product (~) -120 120 - Experimental product (~) -121 121 MX2T6DIFF Maximum temperature at 2 metres difference (K) -122 122 MN2T6DIFF Minimum temperature at 2 metres difference (K) -123 123 10FG6DIFF 10 metre wind gust in the last 6 hours difference (m s**-1) -125 125 - Vertically integrated total energy (J m**-2) -126 126 - Generic parameter for sensitive area prediction (Various) -127 127 ATDIFF Atmospheric tide difference (~) -128 128 BVDIFF Budget values difference (~) -129 129 ZDIFF Geopotential difference (m**2 s**-2) -130 130 TDIFF Temperature difference (K) -131 131 UDIFF U component of wind difference (m s**-1) -132 132 VDIFF V component of wind difference (m s**-1) -133 133 QDIFF Specific humidity difference (kg kg**-1) -134 134 SPDIFF Surface pressure difference (Pa) -135 135 WDIFF Vertical velocity (pressure) difference (Pa s**-1) -136 136 TCWDIFF Total column water difference (kg m**-2) -137 137 TCWVDIFF Total column water vapour difference (kg m**-2) -138 138 VODIFF Vorticity (relative) difference (s**-1) -139 139 STL1DIFF Soil temperature level 1 difference (K) -140 140 SWL1DIFF Soil wetness level 1 difference (kg m**-2) -141 141 SDDIFF Snow depth difference (m of water equivalent) -142 142 LSPDIFF Stratiform precipitation (Large-scale precipitation) difference (m) -143 143 CPDIFF Convective precipitation difference (m) -144 144 SFDIFF Snowfall (convective + stratiform) difference (m of water equivalent) -145 145 BLDDIFF Boundary layer dissipation difference (J m**-2) -146 146 SSHFDIFF Surface sensible heat flux difference (J m**-2) -147 147 SLHFDIFF Surface latent heat flux difference (J m**-2) -148 148 CHNKDIFF Charnock difference (~) -149 149 SNRDIFF Surface net radiation difference (J m**-2) -150 150 TNRDIFF Top net radiation difference (~) -151 151 MSLDIFF Mean sea level pressure difference (Pa) -152 152 LNSPDIFF Logarithm of surface pressure difference (kg m**-2) -153 153 SWHRDIFF Short-wave heating rate difference (K) -154 154 LWHRDIFF Long-wave heating rate difference (K) -155 155 DDIFF Divergence difference (s**-1) -156 156 GHDIFF Height difference (m) -157 157 RDIFF Relative humidity difference (%) -158 158 TSPDIFF Tendency of surface pressure difference (Pa s**-1) -159 159 BLHDIFF Boundary layer height difference (m) -160 160 SDORDIFF Standard deviation of orography difference (~) -161 161 ISORDIFF Anisotropy of sub-gridscale orography difference (~) -162 162 ANORDIFF Angle of sub-gridscale orography difference (radians) -163 163 SLORDIFF Slope of sub-gridscale orography difference (~) -164 164 TCCDIFF Total cloud cover difference (0 - 1) -165 165 10UDIFF 10 metre U wind component difference (m s**-1) -166 166 10VDIFF 10 metre V wind component difference (m s**-1) -167 167 2TDIFF 2 metre temperature difference (K) -168 168 2DDIFF 2 metre dewpoint temperature difference (K) -169 169 SSRDDIFF Surface solar radiation downwards difference (J m**-2) -170 170 STL2DIFF Soil temperature level 2 difference (K) -171 171 SWL2DIFF Soil wetness level 2 difference (kg m**-2) -172 172 LSMDIFF Land-sea mask difference (0 - 1) -173 173 SRDIFF Surface roughness difference (m) -174 174 ALDIFF Albedo difference (0 - 1) -175 175 STRDDIFF Surface thermal radiation downwards difference (J m**-2) -176 176 SSRDIFF Surface net solar radiation difference (J m**-2) -177 177 STRDIFF Surface net thermal radiation difference (J m**-2) -178 178 TSRDIFF Top net solar radiation difference (J m**-2) -179 179 TTRDIFF Top net thermal radiation difference (J m**-2) -180 180 EWSSDIFF East-West surface stress difference (N m**-2 s) -181 181 NSSSDIFF North-South surface stress difference (N m**-2 s) -182 182 EDIFF Evaporation difference (kg m**-2) -183 183 STL3DIFF Soil temperature level 3 difference (K) -184 184 SWL3DIFF Soil wetness level 3 difference (kg m**-2) -185 185 CCCDIFF Convective cloud cover difference (0 - 1) -186 186 LCCDIFF Low cloud cover difference (0 - 1) -187 187 MCCDIFF Medium cloud cover difference (0 - 1) -188 188 HCCDIFF High cloud cover difference (0 - 1) -189 189 SUNDDIFF Sunshine duration difference (s) -190 190 EWOVDIFF East-West component of sub-gridscale orographic variance difference (m**2) -191 191 NSOVDIFF North-South component of sub-gridscale orographic variance difference (m**2) -192 192 NWOVDIFF North-West/South-East component of sub-gridscale orographic variance difference (m**2) -193 193 NEOVDIFF North-East/South-West component of sub-gridscale orographic variance difference (m**2) -194 194 BTMPDIFF Brightness temperature difference (K) -195 195 LGWSDIFF Longitudinal component of gravity wave stress difference (N m**-2 s) -196 196 MGWSDIFF Meridional component of gravity wave stress difference (N m**-2 s) -197 197 GWDDIFF Gravity wave dissipation difference (J m**-2) -198 198 SRCDIFF Skin reservoir content difference (kg m**-2) -199 199 VEGDIFF Vegetation fraction difference (0 - 1) -200 200 VSODIFF Variance of sub-gridscale orography difference (m**2) -201 201 MX2TDIFF Maximum temperature at 2 metres since previous post-processing difference (K) -202 202 MN2TDIFF Minimum temperature at 2 metres since previous post-processing difference (K) -203 203 O3DIFF Ozone mass mixing ratio difference (kg kg**-1) -204 204 PAWDIFF Precipitation analysis weights difference (~) -205 205 RODIFF Runoff difference (m) -206 206 TCO3DIFF Total column ozone difference (kg m**-2) -207 207 10SIDIFF 10 metre wind speed difference (m s**-1) -208 208 TSRCDIFF Top net solar radiation, clear sky difference (J m**-2) -209 209 TTRCDIFF Top net thermal radiation, clear sky difference (J m**-2) -210 210 SSRCDIFF Surface net solar radiation, clear sky difference (J m**-2) -211 211 STRCDIFF Surface net thermal radiation, clear sky difference (J m**-2) -212 212 TISRDIFF TOA incident solar radiation difference (J m**-2) -214 214 DHRDIFF Diabatic heating by radiation difference (K) -215 215 DHVDDIFF Diabatic heating by vertical diffusion difference (K) -216 216 DHCCDIFF Diabatic heating by cumulus convection difference (K) -217 217 DHLCDIFF Diabatic heating large-scale condensation difference (K) -218 218 VDZWDIFF Vertical diffusion of zonal wind difference (m s**-1) -219 219 VDMWDIFF Vertical diffusion of meridional wind difference (m s**-1) -220 220 EWGDDIFF East-West gravity wave drag tendency difference (m s**-1) -221 221 NSGDDIFF North-South gravity wave drag tendency difference (m s**-1) -222 222 CTZWDIFF Convective tendency of zonal wind difference (m s**-1) -223 223 CTMWDIFF Convective tendency of meridional wind difference (m s**-1) -224 224 VDHDIFF Vertical diffusion of humidity difference (kg kg**-1) -225 225 HTCCDIFF Humidity tendency by cumulus convection difference (kg kg**-1) -226 226 HTLCDIFF Humidity tendency by large-scale condensation difference (kg kg**-1) -227 227 CRNHDIFF Change from removal of negative humidity difference (kg kg**-1) -228 228 TPDIFF Total precipitation difference (m) -229 229 IEWSDIFF Instantaneous X surface stress difference (N m**-2) -230 230 INSSDIFF Instantaneous Y surface stress difference (N m**-2) -231 231 ISHFDIFF Instantaneous surface heat flux difference (J m**-2) -232 232 IEDIFF Instantaneous moisture flux difference (kg m**-2 s) -233 233 ASQDIFF Apparent surface humidity difference (kg kg**-1) -234 234 LSRHDIFF Logarithm of surface roughness length for heat difference (~) -235 235 SKTDIFF Skin temperature difference (K) -236 236 STL4DIFF Soil temperature level 4 difference (K) -237 237 SWL4DIFF Soil wetness level 4 difference (m) -238 238 TSNDIFF Temperature of snow layer difference (K) -239 239 CSFDIFF Convective snowfall difference (m of water equivalent) -240 240 LSFDIFF Large scale snowfall difference (m of water equivalent) -241 241 ACFDIFF Accumulated cloud fraction tendency difference ((-1 to 1)) -242 242 ALWDIFF Accumulated liquid water tendency difference ((-1 to 1)) -243 243 FALDIFF Forecast albedo difference (0 - 1) -244 244 FSRDIFF Forecast surface roughness difference (m) -245 245 FLSRDIFF Forecast logarithm of surface roughness for heat difference (~) -246 246 CLWCDIFF Specific cloud liquid water content difference (kg kg**-1) -247 247 CIWCDIFF Specific cloud ice water content difference (kg kg**-1) -248 248 CCDIFF Cloud cover difference (0 - 1) -249 249 AIWDIFF Accumulated ice water tendency difference ((-1 to 1)) -250 250 ICEDIFF Ice age difference (0 - 1) -251 251 ATTEDIFF Adiabatic tendency of temperature difference (K) -252 252 ATHEDIFF Adiabatic tendency of humidity difference (kg kg**-1) -253 253 ATZEDIFF Adiabatic tendency of zonal wind difference (m s**-1) -254 254 ATMWDIFF Adiabatic tendency of meridional wind difference (m s**-1) diff --git a/eccodes/definitions.save/grib1/2.98.201.table b/eccodes/definitions.save/grib1/2.98.201.table deleted file mode 100644 index f937639a..00000000 --- a/eccodes/definitions.save/grib1/2.98.201.table +++ /dev/null @@ -1,78 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 - downward shortwave radiant flux density (J m**-2) -2 2 - upward shortwave radiant flux density (J m**-2) -3 3 - downward longwave radiant flux density (J m**-2) -4 4 - upward longwave radiant flux density (J m**-2) -5 5 APAB_S downwd photosynthetic active radiant flux density (J m**-2) -6 6 - net shortwave flux (J m**-2) -7 7 - net longwave flux (J m**-2) -8 8 - total net radiative flux density (J m**-2) -9 9 - downw shortw radiant flux density, cloudfree part (J m**-2) -10 10 - upw shortw radiant flux density, cloudy part (J m**-2) -11 11 - downw longw radiant flux density, cloudfree part (J m**-2) -12 12 - upw longw radiant flux density, cloudy part (J m**-2) -13 13 SOHR_RAD shortwave radiative heating rate (K s**-1) -14 14 THHR_RAD longwave radiative heating rate (K s**-1) -15 15 - total radiative heating rate (J m**-2) -16 16 - soil heat flux, surface (J m**-2) -17 17 - soil heat flux, bottom of layer (J m**-2) -29 29 CLC fractional cloud cover (0 - 1) -30 30 - cloud cover, grid scale (0 - 1) -31 31 QC specific cloud water content (kg kg**-1) -32 32 - cloud water content, grid scale, vert integrated (kg m**-2) -33 33 QI specific cloud ice content, grid scale (kg kg**-1) -34 34 - cloud ice content, grid scale, vert integrated (kg m**-2) -35 35 - specific rainwater content, grid scale (kg kg**-1) -36 36 - specific snow content, grid scale (kg kg**-1) -37 37 - specific rainwater content, gs, vert. integrated (kg m**-2) -38 38 - specific snow content, gs, vert. integrated (kg m**-2) -41 41 TWATER total column water (kg m**-2) -42 42 - vert. integral of divergence of tot. water content (kg m**-2) -50 50 CH_CM_CL cloud covers CH_CM_CL (000...888) (0 - 1) -51 51 - cloud cover CH (0..8) (0 - 1) -52 52 - cloud cover CM (0..8) (0 - 1) -53 53 - cloud cover CL (0..8) (0 - 1) -54 54 - total cloud cover (0..8) (0 - 1) -55 55 - fog (0..8) (0 - 1) -56 56 - fog (0 - 1) -60 60 - cloud cover, convective cirrus (0 - 1) -61 61 - specific cloud water content, convective clouds (kg kg**-1) -62 62 - cloud water content, conv clouds, vert integrated (kg m**-2) -63 63 - specific cloud ice content, convective clouds (kg kg**-1) -64 64 - cloud ice content, conv clouds, vert integrated (kg m**-2) -65 65 - convective mass flux (kg s**-1 m**-2) -66 66 - Updraft velocity, convection (m s**-1) -67 67 - entrainment parameter, convection (m**-1) -68 68 HBAS_CON cloud base, convective clouds (above msl) (m) -69 69 HTOP_CON cloud top, convective clouds (above msl) (m) -70 70 - convective layers (00...77) (BKE) (0 - 1) -71 71 - KO-index (dimensionless) -72 72 BAS_CON convection base index (dimensionless) -73 73 TOP_CON convection top index (dimensionless) -74 74 DT_CON convective temperature tendency (K s**-1) -75 75 DQV_CON convective tendency of specific humidity (s**-1) -76 76 - convective tendency of total heat (J kg**-1 s**-1) -77 77 - convective tendency of total water (s**-1) -78 78 DU_CON convective momentum tendency (X-component) (m s**-2) -79 79 DV_CON convective momentum tendency (Y-component) (m s**-2) -80 80 - convective vorticity tendency (s**-2) -81 81 - convective divergence tendency (s**-2) -82 82 HTOP_DC top of dry convection (above msl) (m) -83 83 - dry convection top index (dimensionless) -84 84 HZEROCL height of 0 degree Celsius isotherm above msl (m) -85 85 SNOWLMT height of snow-fall limit (m) -99 99 QRS_GSP spec. content of precip. particles (kg kg**-1) -100 100 PRR_GSP surface precipitation rate, rain, grid scale (kg s**-1 m**-2) -101 101 PRS_GSP surface precipitation rate, snow, grid scale (kg s**-1 m**-2) -102 102 RAIN_GSP surface precipitation amount, rain, grid scale (kg m**-2) -111 111 PRR_CON surface precipitation rate, rain, convective (kg s**-1 m**-2) -112 112 PRS_CON surface precipitation rate, snow, convective (kg s**-1 m**-2) -113 113 RAIN_CON surface precipitation amount, rain, convective (kg m**-2) -139 139 PP deviation of pressure from reference value (Pa) -150 150 - coefficient of horizontal diffusion (m**2 s**-1) -187 187 VMAX_10M Maximum wind velocity (m s**-1) -200 200 W_I water content of interception store (kg m**-2) -203 203 T_SNOW snow temperature (K) -215 215 T_ICE ice surface temperature (K) -241 241 CAPE_CON convective available potential energy (J kg**-1) -255 255 - Indicates a missing value diff --git a/eccodes/definitions.save/grib1/2.98.210.table b/eccodes/definitions.save/grib1/2.98.210.table deleted file mode 100644 index e1ed044b..00000000 --- a/eccodes/definitions.save/grib1/2.98.210.table +++ /dev/null @@ -1,227 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 AERMR01 Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) -2 2 AERMR02 Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) -3 3 AERMR03 Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) -4 4 AERMR04 Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) -5 5 AERMR05 Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) -6 6 AERMR06 Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) -7 7 AERMR07 Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -8 8 AERMR08 Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -9 9 AERMR09 Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -10 10 AERMR10 Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -11 11 AERMR11 Sulphate Aerosol Mixing Ratio (kg kg**-1) -12 12 AERMR12 SO2 precursor mixing ratio (kg kg**-1) -13 13 AERMR13 Volcanic ash aerosol mixing ratio (kg kg**-1) -14 14 AERMR14 Volcanic sulphate aerosol mixing ratio (kg kg**-1) -15 15 AERMR15 Volcanic SO2 precursor mixing ratio (kg kg**-1) -16 16 AERGN01 Aerosol type 1 source/gain accumulated (kg m**-2) -17 17 AERGN02 Aerosol type 2 source/gain accumulated (kg m**-2) -18 18 AERGN03 Aerosol type 3 source/gain accumulated (kg m**-2) -19 19 AERGN04 Aerosol type 4 source/gain accumulated (kg m**-2) -20 20 AERGN05 Aerosol type 5 source/gain accumulated (kg m**-2) -21 21 AERGN06 Aerosol type 6 source/gain accumulated (kg m**-2) -22 22 AERGN07 Aerosol type 7 source/gain accumulated (kg m**-2) -23 23 AERGN08 Aerosol type 8 source/gain accumulated (kg m**-2) -24 24 AERGN09 Aerosol type 9 source/gain accumulated (kg m**-2) -25 25 AERGN10 Aerosol type 10 source/gain accumulated (kg m**-2) -26 26 AERGN11 Aerosol type 11 source/gain accumulated (kg m**-2) -27 27 AERGN12 Aerosol type 12 source/gain accumulated (kg m**-2) -28 28 AERPR03 SO4 aerosol precursor mass mixing ratio (kg kg**-1) -29 29 AERWV01 Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) -30 30 AERWV02 Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) -31 31 AERLS01 Aerosol type 1 sink/loss accumulated (kg m**-2) -32 32 AERLS02 Aerosol type 2 sink/loss accumulated (kg m**-2) -33 33 AERLS03 Aerosol type 3 sink/loss accumulated (kg m**-2) -34 34 AERLS04 Aerosol type 4 sink/loss accumulated (kg m**-2) -35 35 AERLS05 Aerosol type 5 sink/loss accumulated (kg m**-2) -36 36 AERLS06 Aerosol type 6 sink/loss accumulated (kg m**-2) -37 37 AERLS07 Aerosol type 7 sink/loss accumulated (kg m**-2) -38 38 AERLS08 Aerosol type 8 sink/loss accumulated (kg m**-2) -39 39 AERLS09 Aerosol type 9 sink/loss accumulated (kg m**-2) -40 40 AERLS10 Aerosol type 10 sink/loss accumulated (kg m**-2) -41 41 AERLS11 Aerosol type 11 sink/loss accumulated (kg m**-2) -42 42 AERLS12 Aerosol type 12 sink/loss accumulated (kg m**-2) -43 43 EMDMS DMS surface emission (kg m**-2 s**-1) -44 44 AERWV03 Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) -45 45 AERWV04 Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) -46 46 AERPR Aerosol precursor mixing ratio (kg kg**-1) -47 47 AERSM Aerosol small mode mixing ratio (kg kg**-1) -48 48 AERLG Aerosol large mode mixing ratio (kg kg**-1) -49 49 AODPR Aerosol precursor optical depth (dimensionless) -50 50 AODSM Aerosol small mode optical depth (dimensionless) -51 51 AODLG Aerosol large mode optical depth (dimensionless) -52 52 AERDEP Dust emission potential (kg s**2 m**-5) -53 53 AERLTS Lifting threshold speed (m s**-1) -54 54 AERSCC Soil clay content (%) -55 55 - Experimental product (~) -56 56 - Experimental product (~) -57 57 OCNUC Mixing ration of organic carbon aerosol, nucleation mode (kg kg**-1) -58 58 MONOT Monoterpene precursor mixing ratio (kg kg**-1) -59 59 SOAPR Secondary organic precursor mixing ratio (kg kg**-1) -60 60 INJH Injection height (from IS4FIRES) (m) -61 61 CO2 Carbon Dioxide (kg kg**-1) -62 62 CH4 Methane (kg kg**-1) -63 63 N2O Nitrous oxide (kg kg**-1) -64 64 TCCO2 CO2 column-mean molar fraction (ppm) -65 65 TCCH4 CH4 column-mean molar fraction (ppb) -66 66 TCN2O Total column Nitrous oxide (kg m**-2) -67 67 CO2OF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) -68 68 CO2NBF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) -69 69 CO2APF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) -70 70 CH4F Methane Surface Fluxes (kg m**-2 s**-1) -71 71 KCH4 Methane loss rate due to radical hydroxyl (OH) (s**-1) -72 72 PM1 Particulate matter d < 1 um (kg m**-3) -73 73 PM2P5 Particulate matter d < 2.5 um (kg m**-3) -74 74 PM10 Particulate matter d < 10 um (kg m**-3) -79 79 VAFIRE Wildfire viewing angle of observation (deg) -80 80 CO2FIRE Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) -81 81 COFIRE Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) -82 82 CH4FIRE Wildfire flux of Methane (kg m**-2 s**-1) -83 83 NMHCFIRE Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) -84 84 H2FIRE Wildfire flux of Hydrogen (kg m**-2 s**-1) -85 85 NOXFIRE Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) -86 86 N2OFIRE Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) -87 87 PM2P5FIRE Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) -88 88 TPMFIRE Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) -89 89 TCFIRE Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) -90 90 OCFIRE Wildfire flux of Organic Carbon (kg m**-2 s**-1) -91 91 BCFIRE Wildfire flux of Black Carbon (kg m**-2 s**-1) -92 92 CFIRE Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) -93 93 C4FFIRE Wildfire fraction of C4 plants (dimensionless) -94 94 VEGFIRE Wildfire vegetation map index (dimensionless) -95 95 CCFIRE Wildfire Combustion Completeness (dimensionless) -96 96 FLFIRE Wildfire Fuel Load: Carbon per unit area (kg m**-2) -97 97 OFFIRE Wildfire fraction of area observed (dimensionless) -98 98 NOFRP Number of positive FRP pixels per grid cell (~) -99 99 FRPFIRE Wildfire radiative power (W m**-2) -100 100 CRFIRE Wildfire combustion rate (kg m**-2 s**-1) -101 101 MAXFRPFIRE Wildfire radiative power maximum (W) -102 102 SO2FIRE Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) -103 103 CH3OHFIRE Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) -104 104 C2H5OHFIRE Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) -105 105 C3H8FIRE Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) -106 106 C2H4FIRE Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) -107 107 C3H6FIRE Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) -108 108 C5H8FIRE Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) -109 109 TERPENESFIRE Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) -110 110 TOLUENEFIRE Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) -111 111 HIALKENESFIRE Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) -112 112 HIALKANESFIRE Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) -113 113 CH2OFIRE Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) -114 114 C2H4OFIRE Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) -115 115 C3H6OFIRE Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) -116 116 NH3FIRE Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) -117 117 C2H6SFIRE Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) -118 118 C2H6FIRE Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) -119 119 MAMI Mean altitude of maximum injection (m) -120 120 APT Altitude of plume top (m) -121 121 NO2 Nitrogen dioxide (kg kg**-1) -122 122 SO2 Sulphur dioxide (kg kg**-1) -123 123 CO Carbon monoxide (kg kg**-1) -124 124 HCHO Formaldehyde (kg kg**-1) -125 125 TCNO2 Total column Nitrogen dioxide (kg m**-2) -126 126 TCSO2 Total column Sulphur dioxide (kg m**-2) -127 127 TCCO Total column Carbon monoxide (kg m**-2) -128 128 TCHCHO Total column Formaldehyde (kg m**-2) -129 129 NOX Nitrogen Oxides (kg kg**-1) -130 130 TCNOX Total Column Nitrogen Oxides (kg m**-2) -131 131 GRG1 Reactive tracer 1 mass mixing ratio (kg kg**-1) -132 132 TCGRG1 Total column GRG tracer 1 (kg m**-2) -133 133 GRG2 Reactive tracer 2 mass mixing ratio (kg kg**-1) -134 134 TCGRG2 Total column GRG tracer 2 (kg m**-2) -135 135 GRG3 Reactive tracer 3 mass mixing ratio (kg kg**-1) -136 136 TCGRG3 Total column GRG tracer 3 (kg m**-2) -137 137 GRG4 Reactive tracer 4 mass mixing ratio (kg kg**-1) -138 138 TCGRG4 Total column GRG tracer 4 (kg m**-2) -139 139 GRG5 Reactive tracer 5 mass mixing ratio (kg kg**-1) -140 140 TCGRG5 Total column GRG tracer 5 (kg m**-2) -141 141 GRG6 Reactive tracer 6 mass mixing ratio (kg kg**-1) -142 142 TCGRG6 Total column GRG tracer 6 (kg m**-2) -143 143 GRG7 Reactive tracer 7 mass mixing ratio (kg kg**-1) -144 144 TCGRG7 Total column GRG tracer 7 (kg m**-2) -145 145 GRG8 Reactive tracer 8 mass mixing ratio (kg kg**-1) -146 146 TCGRG8 Total column GRG tracer 8 (kg m**-2) -147 147 GRG9 Reactive tracer 9 mass mixing ratio (kg kg**-1) -148 148 TCGRG9 Total column GRG tracer 9 (kg m**-2) -149 149 GRG10 Reactive tracer 10 mass mixing ratio (kg kg**-1) -150 150 TCGRG10 Total column GRG tracer 10 (kg m**-2) -151 151 SFNOX Surface flux Nitrogen oxides (kg m**-2 s**-1) -152 152 SFNO2 Surface flux Nitrogen dioxide (kg m**-2 s**-1) -153 153 SFSO2 Surface flux Sulphur dioxide (kg m**-2 s**-1) -154 154 SFCO2 Surface flux Carbon monoxide (kg m**-2 s**-1) -155 155 SFHCHO Surface flux Formaldehyde (kg m**-2 s**-1) -156 156 SFGO3 Surface flux GEMS Ozone (kg m**-2 s**-1) -157 157 SFGR1 Surface flux reactive tracer 1 (kg m**-2 s**-1) -158 158 SFGR2 Surface flux reactive tracer 2 (kg m**-2 s**-1) -159 159 SFGR3 Surface flux reactive tracer 3 (kg m**-2 s**-1) -160 160 SFGR4 Surface flux reactive tracer 4 (kg m**-2 s**-1) -161 161 SFGR5 Surface flux reactive tracer 5 (kg m**-2 s**-1) -162 162 SFGR6 Surface flux reactive tracer 6 (kg m**-2 s**-1) -163 163 SFGR7 Surface flux reactive tracer 7 (kg m**-2 s**-1) -164 164 SFGR8 Surface flux reactive tracer 8 (kg m**-2 s**-1) -165 165 SFGR9 Surface flux reactive tracer 9 (kg m**-2 s**-1) -166 166 SFGR10 Surface flux reactive tracer 10 (kg m**-2 s**-1) -181 181 RA Radon (kg kg**-1) -182 182 SF6 Sulphur Hexafluoride (kg kg**-1) -183 183 TCRA Total column Radon (kg m**-2) -184 184 TCSF6 Total column Sulphur Hexafluoride (kg m**-2) -185 185 SF6APF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) -186 186 ALUVPI UV visible albedo for direct radiation, isotropic component (0 - 1) -187 187 ALUVPV UV visible albedo for direct radiation, volumetric component (0 - 1) -188 188 ALUVPG UV visible albedo for direct radiation, geometric component (0 - 1) -189 189 ALNIPI Near IR albedo for direct radiation, isotropic component (0 - 1) -190 190 ALNIPV Near IR albedo for direct radiation, volumetric component (0 - 1) -191 191 ALNIPG Near IR albedo for direct radiation, geometric component (0 - 1) -192 192 ALUVDI UV visible albedo for diffuse radiation, isotropic component (0 - 1) -193 193 ALUVDV UV visible albedo for diffuse radiation, volumetric component (0 - 1) -194 194 ALUVDG UV visible albedo for diffuse radiation, geometric component (0 - 1) -195 195 ALNIDI Near IR albedo for diffuse radiation, isotropic component (0 - 1) -196 196 ALNIDV Near IR albedo for diffuse radiation, volumetric component (0 - 1) -197 197 ALNIDG Near IR albedo for diffuse radiation, geometric component (0 - 1) -203 203 GO3 GEMS Ozone (kg kg**-1) -206 206 GTCO3 GEMS Total column ozone (kg m**-2) -207 207 AOD550 Total Aerosol Optical Depth at 550nm (~) -208 208 SSAOD550 Sea Salt Aerosol Optical Depth at 550nm (~) -209 209 DUAOD550 Dust Aerosol Optical Depth at 550nm (~) -210 210 OMAOD550 Organic Matter Aerosol Optical Depth at 550nm (~) -211 211 BCAOD550 Black Carbon Aerosol Optical Depth at 550nm (~) -212 212 SUAOD550 Sulphate Aerosol Optical Depth at 550nm (~) -213 213 AOD469 Total Aerosol Optical Depth at 469nm (~) -214 214 AOD670 Total Aerosol Optical Depth at 670nm (~) -215 215 AOD865 Total Aerosol Optical Depth at 865nm (~) -216 216 AOD1240 Total Aerosol Optical Depth at 1240nm (~) -217 217 AOD340 Total aerosol optical depth at 340 nm (~) -218 218 AOD355 Total aerosol optical depth at 355 nm (~) -219 219 AOD380 Total aerosol optical depth at 380 nm (~) -220 220 AOD400 Total aerosol optical depth at 400 nm (~) -221 221 AOD440 Total aerosol optical depth at 440 nm (~) -222 222 AOD500 Total aerosol optical depth at 500 nm (~) -223 223 AOD532 Total aerosol optical depth at 532 nm (~) -224 224 AOD645 Total aerosol optical depth at 645 nm (~) -225 225 AOD800 Total aerosol optical depth at 800 nm (~) -226 226 AOD858 Total aerosol optical depth at 858 nm (~) -227 227 AOD1020 Total aerosol optical depth at 1020 nm (~) -228 228 AOD1064 Total aerosol optical depth at 1064 nm (~) -229 229 AOD1640 Total aerosol optical depth at 1640 nm (~) -230 230 AOD2130 Total aerosol optical depth at 2130 nm (~) -231 231 C7H8FIRE Wildfire Flux of Toluene (C7H8) (kg m**-2 s**-1) -232 232 C6H6FIRE Wildfire Flux of Benzene (C6H6) (kg m**-2 s**-1) -233 233 C8H10FIRE Wildfire Flux of Xylene (C8H10) (kg m**-2 s**-1) -234 234 C4H8FIRE Wildfire Flux of Butenes (C4H8) (kg m**-2 s**-1) -235 235 C5H10FIRE Wildfire Flux of Pentenes (C5H10) (kg m**-2 s**-1) -236 236 C6H12FIRE Wildfire Flux of Hexene (C6H12) (kg m**-2 s**-1) -237 237 C8H16FIRE Wildfire Flux of Octene (C8H16) (kg m**-2 s**-1) -238 238 C4H10FIRE Wildfire Flux of Butanes (C4H10) (kg m**-2 s**-1) -239 239 C5H12FIRE Wildfire Flux of Pentanes (C5H12) (kg m**-2 s**-1) -240 240 C6H14FIRE Wildfire Flux of Hexanes (C6H14) (kg m**-2 s**-1) -241 241 C7H16FIRE Wildfire Flux of Heptane (C7H16) (kg m**-2 s**-1) -242 242 APB Altitude of plume bottom (m) -243 243 VSUAOD550 Volcanic sulphate aerosol optical depth at 550 nm (~) -244 244 VASHAOD550 Volcanic ash optical depth at 550 nm (~) -245 245 TAEDEC550 Profile of total aerosol dry extinction coefficient (m**-1) -246 246 TAEDAB550 Profile of total aerosol dry absorption coefficient (m**-1) -247 247 AERMR16 Nitrate fine mode aerosol mass mixing ratio (kg kg**-1) -248 248 AERMR17 Nitrate coarse mode aerosol mass mixing ratio (kg kg**-1) -249 249 AERMR18 Ammonium aerosol mass mixing ratio (kg kg**-1) -250 250 NIAOD550 Nitrate aerosol optical depth at 550 nm (dimensionless) -251 251 AMAOD550 Ammonium aerosol optical depth at 550 nm (dimensionless) diff --git a/eccodes/definitions.save/grib1/2.98.211.table b/eccodes/definitions.save/grib1/2.98.211.table deleted file mode 100644 index cc6dacc8..00000000 --- a/eccodes/definitions.save/grib1/2.98.211.table +++ /dev/null @@ -1,172 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 AERMR01DIFF Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) -2 2 AERMR02DIFF Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) -3 3 AERMR03DIFF Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) -4 4 AERMR04DIFF Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) -5 5 AERMR05DIFF Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) -6 6 AERMR06DIFF Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) -7 7 AERMR07DIFF Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -8 8 AERMR08DIFF Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -9 9 AERMR09DIFF Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -10 10 AERMR10DIFF Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -11 11 AERMR11DIFF Sulphate Aerosol Mixing Ratio (kg kg**-1) -12 12 AERMR12DIFF Aerosol type 12 mixing ratio (kg kg**-1) -13 13 AERMR13DIFF Aerosol type 13 mass mixing ratio (kg kg**-1) -14 14 AERMR14DIFF Aerosol type 14 mass mixing ratio (kg kg**-1) -15 15 AERMR15DIFF Aerosol type 15 mass mixing ratio (kg kg**-1) -16 16 AERGN01DIFF Aerosol type 1 source/gain accumulated (kg m**-2) -17 17 AERGN02DIFF Aerosol type 2 source/gain accumulated (kg m**-2) -18 18 AERGN03DIFF Aerosol type 3 source/gain accumulated (kg m**-2) -19 19 AERGN04DIFF Aerosol type 4 source/gain accumulated (kg m**-2) -20 20 AERGN05DIFF Aerosol type 5 source/gain accumulated (kg m**-2) -21 21 AERGN06DIFF Aerosol type 6 source/gain accumulated (kg m**-2) -22 22 AERGN07DIFF Aerosol type 7 source/gain accumulated (kg m**-2) -23 23 AERGN08DIFF Aerosol type 8 source/gain accumulated (kg m**-2) -24 24 AERGN09DIFF Aerosol type 9 source/gain accumulated (kg m**-2) -25 25 AERGN10DIFF Aerosol type 10 source/gain accumulated (kg m**-2) -26 26 AERGN11DIFF Aerosol type 11 source/gain accumulated (kg m**-2) -27 27 AERGN12DIFF Aerosol type 12 source/gain accumulated (kg m**-2) -28 28 AERPR03DIFF SO4 aerosol precursor mass mixing ratio (kg kg**-1) -29 29 AERWV01DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) -30 30 AERWV02DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) -31 31 AERLS01DIFF Aerosol type 1 sink/loss accumulated (kg m**-2) -32 32 AERLS02DIFF Aerosol type 2 sink/loss accumulated (kg m**-2) -33 33 AERLS03DIFF Aerosol type 3 sink/loss accumulated (kg m**-2) -34 34 AERLS04DIFF Aerosol type 4 sink/loss accumulated (kg m**-2) -35 35 AERLS05DIFF Aerosol type 5 sink/loss accumulated (kg m**-2) -36 36 AERLS06DIFF Aerosol type 6 sink/loss accumulated (kg m**-2) -37 37 AERLS07DIFF Aerosol type 7 sink/loss accumulated (kg m**-2) -38 38 AERLS08DIFF Aerosol type 8 sink/loss accumulated (kg m**-2) -39 39 AERLS09DIFF Aerosol type 9 sink/loss accumulated (kg m**-2) -40 40 AERLS10DIFF Aerosol type 10 sink/loss accumulated (kg m**-2) -41 41 AERLS11DIFF Aerosol type 11 sink/loss accumulated (kg m**-2) -42 42 AERLS12DIFF Aerosol type 12 sink/loss accumulated (kg m**-2) -43 43 EMDMSDIFF DMS surface emission (kg m**-2 s**-1) -44 44 AERWV03DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) -45 45 AERWV04DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) -46 46 AERPRDIFF Aerosol precursor mixing ratio (kg kg**-1) -47 47 AERSMDIFF Aerosol small mode mixing ratio (kg kg**-1) -48 48 AERLGDIFF Aerosol large mode mixing ratio (kg kg**-1) -49 49 AODPRDIFF Aerosol precursor optical depth (dimensionless) -50 50 AODSMDIFF Aerosol small mode optical depth (dimensionless) -51 51 AODLGDIFF Aerosol large mode optical depth (dimensionless) -52 52 AERDEPDIFF Dust emission potential (kg s**2 m**-5) -53 53 AERLTSDIFF Lifting threshold speed (m s**-1) -54 54 AERSCCDIFF Soil clay content (%) -55 55 - Experimental product (~) -56 56 - Experimental product (~) -61 61 CO2DIFF Carbon Dioxide (kg kg**-1) -62 62 CH4DIFF Methane (kg kg**-1) -63 63 N2ODIFF Nitrous oxide (kg kg**-1) -64 64 TCCO2DIFF Total column Carbon Dioxide (kg m**-2) -65 65 TCCH4DIFF Total column Methane (kg m**-2) -66 66 TCN2ODIFF Total column Nitrous oxide (kg m**-2) -67 67 CO2OFDIFF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) -68 68 CO2NBFDIFF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) -69 69 CO2APFDIFF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) -70 70 CH4FDIFF Methane Surface Fluxes (kg m**-2 s**-1) -71 71 KCH4DIFF Methane loss rate due to radical hydroxyl (OH) (s**-1) -80 80 CO2FIREDIFF Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) -81 81 COFIREDIFF Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) -82 82 CH4FIREDIFF Wildfire flux of Methane (kg m**-2 s**-1) -83 83 NMHCFIREDIFF Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) -84 84 H2FIREDIFF Wildfire flux of Hydrogen (kg m**-2 s**-1) -85 85 NOXFIREDIFF Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) -86 86 N2OFIREDIFF Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) -87 87 PM2P5FIREDIFF Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) -88 88 TPMFIREDIFF Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) -89 89 TCFIREDIFF Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) -90 90 OCFIREDIFF Wildfire flux of Organic Carbon (kg m**-2 s**-1) -91 91 BCFIREDIFF Wildfire flux of Black Carbon (kg m**-2 s**-1) -92 92 CFIREDIFF Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) -93 93 C4FFIREDIFF Wildfire fraction of C4 plants (dimensionless) -94 94 VEGFIREDIFF Wildfire vegetation map index (dimensionless) -95 95 CCFIREDIFF Wildfire Combustion Completeness (dimensionless) -96 96 FLFIREDIFF Wildfire Fuel Load: Carbon per unit area (kg m**-2) -97 97 OFFIREDIFF Wildfire fraction of area observed (dimensionless) -98 98 OAFIREDIFF Wildfire observed area (m**2) -99 99 FRPFIREDIFF Wildfire radiative power (W m**-2) -100 100 CRFIREDIFF Wildfire combustion rate (kg m**-2 s**-1) -101 101 MAXFRPFIREDIFF Wildfire radiative power maximum (W) -102 102 SO2FIREDIFF Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) -103 103 CH3OHFIREDIFF Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) -104 104 C2H5OHFIREDIFF Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) -105 105 C3H8FIREDIFF Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) -106 106 C2H4FIREDIFF Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) -107 107 C3H6FIREDIFF Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) -108 108 C5H8FIREDIFF Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) -109 109 TERPENESFIREDIFF Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) -110 110 TOLUENEFIREDIFF Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) -111 111 HIALKENESFIREDIFF Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) -112 112 HIALKANESFIREDIFF Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) -113 113 CH2OFIREDIFF Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) -114 114 C2H4OFIREDIFF Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) -115 115 C3H6OFIREDIFF Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) -116 116 NH3FIREDIFF Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) -117 117 C2H6SFIREDIFF Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) -118 118 C2H6FIREDIFF Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) -119 119 ALEDIFF Altitude of emitter (m) -120 120 APTDIFF Altitude of plume top (m) -121 121 NO2DIFF Nitrogen dioxide (kg kg**-1) -122 122 SO2DIFF Sulphur dioxide (kg kg**-1) -123 123 CODIFF Carbon monoxide (kg kg**-1) -124 124 HCHODIFF Formaldehyde (kg kg**-1) -125 125 TCNO2DIFF Total column Nitrogen dioxide (kg m**-2) -126 126 TCSO2DIFF Total column Sulphur dioxide (kg m**-2) -127 127 TCCODIFF Total column Carbon monoxide (kg m**-2) -128 128 TCHCHODIFF Total column Formaldehyde (kg m**-2) -129 129 NOXDIFF Nitrogen Oxides (kg kg**-1) -130 130 TCNOXDIFF Total Column Nitrogen Oxides (kg m**-2) -131 131 GRG1DIFF Reactive tracer 1 mass mixing ratio (kg kg**-1) -132 132 TCGRG1DIFF Total column GRG tracer 1 (kg m**-2) -133 133 GRG2DIFF Reactive tracer 2 mass mixing ratio (kg kg**-1) -134 134 TCGRG2DIFF Total column GRG tracer 2 (kg m**-2) -135 135 GRG3DIFF Reactive tracer 3 mass mixing ratio (kg kg**-1) -136 136 TCGRG3DIFF Total column GRG tracer 3 (kg m**-2) -137 137 GRG4DIFF Reactive tracer 4 mass mixing ratio (kg kg**-1) -138 138 TCGRG4DIFF Total column GRG tracer 4 (kg m**-2) -139 139 GRG5DIFF Reactive tracer 5 mass mixing ratio (kg kg**-1) -140 140 TCGRG5DIFF Total column GRG tracer 5 (kg m**-2) -141 141 GRG6DIFF Reactive tracer 6 mass mixing ratio (kg kg**-1) -142 142 TCGRG6DIFF Total column GRG tracer 6 (kg m**-2) -143 143 GRG7DIFF Reactive tracer 7 mass mixing ratio (kg kg**-1) -144 144 TCGRG7DIFF Total column GRG tracer 7 (kg m**-2) -145 145 GRG8DIFF Reactive tracer 8 mass mixing ratio (kg kg**-1) -146 146 TCGRG8DIFF Total column GRG tracer 8 (kg m**-2) -147 147 GRG9DIFF Reactive tracer 9 mass mixing ratio (kg kg**-1) -148 148 TCGRG9DIFF Total column GRG tracer 9 (kg m**-2) -149 149 GRG10DIFF Reactive tracer 10 mass mixing ratio (kg kg**-1) -150 150 TCGRG10DIFF Total column GRG tracer 10 (kg m**-2) -151 151 SFNOXDIFF Surface flux Nitrogen oxides (kg m**-2 s**-1) -152 152 SFNO2DIFF Surface flux Nitrogen dioxide (kg m**-2 s**-1) -153 153 SFSO2DIFF Surface flux Sulphur dioxide (kg m**-2 s**-1) -154 154 SFCO2DIFF Surface flux Carbon monoxide (kg m**-2 s**-1) -155 155 SFHCHODIFF Surface flux Formaldehyde (kg m**-2 s**-1) -156 156 SFGO3DIFF Surface flux GEMS Ozone (kg m**-2 s**-1) -157 157 SFGR1DIFF Surface flux reactive tracer 1 (kg m**-2 s**-1) -158 158 SFGR2DIFF Surface flux reactive tracer 2 (kg m**-2 s**-1) -159 159 SFGR3DIFF Surface flux reactive tracer 3 (kg m**-2 s**-1) -160 160 SFGR4DIFF Surface flux reactive tracer 4 (kg m**-2 s**-1) -161 161 SFGR5DIFF Surface flux reactive tracer 5 (kg m**-2 s**-1) -162 162 SFGR6DIFF Surface flux reactive tracer 6 (kg m**-2 s**-1) -163 163 SFGR7DIFF Surface flux reactive tracer 7 (kg m**-2 s**-1) -164 164 SFGR8DIFF Surface flux reactive tracer 8 (kg m**-2 s**-1) -165 165 SFGR9DIFF Surface flux reactive tracer 9 (kg m**-2 s**-1) -166 166 SFGR10DIFF Surface flux reactive tracer 10 (kg m**-2 s**-1) -181 181 RADIFF Radon (kg kg**-1) -182 182 SF6DIFF Sulphur Hexafluoride (kg kg**-1) -183 183 TCRADIFF Total column Radon (kg m**-2) -184 184 TCSF6DIFF Total column Sulphur Hexafluoride (kg m**-2) -185 185 SF6APFDIFF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) -203 203 GO3DIFF GEMS Ozone (kg kg**-1) -206 206 GTCO3DIFF GEMS Total column ozone (kg m**-2) -207 207 AOD550DIFF Total Aerosol Optical Depth at 550nm (~) -208 208 SSAOD550DIFF Sea Salt Aerosol Optical Depth at 550nm (~) -209 209 DUAOD550DIFF Dust Aerosol Optical Depth at 550nm (~) -210 210 OMAOD550DIFF Organic Matter Aerosol Optical Depth at 550nm (~) -211 211 BCAOD550DIFF Black Carbon Aerosol Optical Depth at 550nm (~) -212 212 SUAOD550DIFF Sulphate Aerosol Optical Depth at 550nm (~) -213 213 AOD469DIFF Total Aerosol Optical Depth at 469nm (~) -214 214 AOD670DIFF Total Aerosol Optical Depth at 670nm (~) -215 215 AOD865DIFF Total Aerosol Optical Depth at 865nm (~) -216 216 AOD1240DIFF Total Aerosol Optical Depth at 1240nm (~) diff --git a/eccodes/definitions.save/grib1/2.98.213.table b/eccodes/definitions.save/grib1/2.98.213.table deleted file mode 100644 index 430b240b..00000000 --- a/eccodes/definitions.save/grib1/2.98.213.table +++ /dev/null @@ -1,56 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 SPPT1 Random pattern 1 for sppt (dimensionless) -2 2 SPPT2 Random pattern 2 for sppt (dimensionless) -3 3 SPPT3 Random pattern 3 for sppt (dimensionless) -4 4 SPPT4 Random pattern 4 for sppt (dimensionless) -5 5 SPPT5 Random pattern 5 for sppt (dimensionless) -101 101 SPP1 Random pattern 1 for SPP scheme (dimensionless) -102 102 SPP2 Random pattern 2 for SPP scheme (dimensionless) -103 103 SPP3 Random pattern 3 for SPP scheme (dimensionless) -104 104 SPP4 Random pattern 4 for SPP scheme (dimensionless) -105 105 SPP5 Random pattern 5 for SPP scheme (dimensionless) -106 106 SPP6 Random pattern 6 for SPP scheme (dimensionless) -107 107 SPP7 Random pattern 7 for SPP scheme (dimensionless) -108 108 SPP8 Random pattern 8 for SPP scheme (dimensionless) -109 109 SPP9 Random pattern 9 for SPP scheme (dimensionless) -110 110 SPP10 Random pattern 10 for SPP scheme (dimensionless) -111 111 SPP11 Random pattern 11 for SPP scheme (dimensionless) -112 112 SPP12 Random pattern 12 for SPP scheme (dimensionless) -113 113 SPP13 Random pattern 13 for SPP scheme (dimensionless) -114 114 SPP14 Random pattern 14 for SPP scheme (dimensionless) -115 115 SPP15 Random pattern 15 for SPP scheme (dimensionless) -116 116 SPP16 Random pattern 16 for SPP scheme (dimensionless) -117 117 SPP17 Random pattern 17 for SPP scheme (dimensionless) -118 118 SPP18 Random pattern 18 for SPP scheme (dimensionless) -119 119 SPP19 Random pattern 19 for SPP scheme (dimensionless) -120 120 SPP20 Random pattern 20 for SPP scheme (dimensionless) -121 121 SPP21 Random pattern 21 for SPP scheme (dimensionless) -122 122 SPP22 Random pattern 22 for SPP scheme (dimensionless) -123 123 SPP23 Random pattern 23 for SPP scheme (dimensionless) -124 124 SPP24 Random pattern 24 for SPP scheme (dimensionless) -125 125 SPP25 Random pattern 25 for SPP scheme (dimensionless) -126 126 SPP26 Random pattern 26 for SPP scheme (dimensionless) -127 127 SPP27 Random pattern 27 for SPP scheme (dimensionless) -128 128 SPP28 Random pattern 28 for SPP scheme (dimensionless) -129 129 SPP29 Random pattern 29 for SPP scheme (dimensionless) -130 130 SPP30 Random pattern 30 for SPP scheme (dimensionless) -131 131 SPP31 Random pattern 31 for SPP scheme (dimensionless) -132 132 SPP32 Random pattern 32 for SPP scheme (dimensionless) -133 133 SPP33 Random pattern 33 for SPP scheme (dimensionless) -134 134 SPP34 Random pattern 34 for SPP scheme (dimensionless) -135 135 SPP35 Random pattern 35 for SPP scheme (dimensionless) -136 136 SPP36 Random pattern 36 for SPP scheme (dimensionless) -137 137 SPP37 Random pattern 37 for SPP scheme (dimensionless) -138 138 SPP38 Random pattern 38 for SPP scheme (dimensionless) -139 139 SPP39 Random pattern 39 for SPP scheme (dimensionless) -140 140 SPP40 Random pattern 40 for SPP scheme (dimensionless) -141 141 SPP41 Random pattern 41 for SPP scheme (dimensionless) -142 142 SPP42 Random pattern 42 for SPP scheme (dimensionless) -143 143 SPP43 Random pattern 43 for SPP scheme (dimensionless) -144 144 SPP44 Random pattern 44 for SPP scheme (dimensionless) -145 145 SPP45 Random pattern 45 for SPP scheme (dimensionless) -146 146 SPP46 Random pattern 46 for SPP scheme (dimensionless) -147 147 SPP47 Random pattern 47 for SPP scheme (dimensionless) -148 148 SPP48 Random pattern 48 for SPP scheme (dimensionless) -149 149 SPP49 Random pattern 49 for SPP scheme (dimensionless) -150 150 SPP50 Random pattern 50 for SPP scheme (dimensionless) diff --git a/eccodes/definitions.save/grib1/2.98.215.table b/eccodes/definitions.save/grib1/2.98.215.table deleted file mode 100644 index 96de8967..00000000 --- a/eccodes/definitions.save/grib1/2.98.215.table +++ /dev/null @@ -1,212 +0,0 @@ -# This file was automatically generated by ./param.pl -1 1 AERSRCSSS Source/gain of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -2 2 AERSRCSSM Source/gain of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -3 3 AERSRCSSL Source/gain of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -4 4 AERDDPSSS Dry deposition of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -5 5 AERDDPSSM Dry deposition of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -6 6 AERDDPSSL Dry deposition of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -7 7 AERSDMSSS Sedimentation of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -8 8 AERSDMSSM Sedimentation of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -9 9 AERSDMSSL Sedimentation of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -10 10 AERWDLSSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation (kg m**-2 s**-1) -11 11 AERWDLSSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation (kg m**-2 s**-1) -12 12 AERWDLSSSL Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation (kg m**-2 s**-1) -13 13 AERWDCCSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation (kg m**-2 s**-1) -14 14 AERWDCCSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation (kg m**-2 s**-1) -15 15 AERWDCCSSL Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation (kg m**-2 s**-1) -16 16 AERNGTSSS Negative fixer of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -17 17 AERNGTSSM Negative fixer of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -18 18 AERNGTSSL Negative fixer of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -19 19 AERMSSSSS Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) (kg m**-2) -20 20 AERMSSSSM Vertically integrated mass of sea salt aerosol (0.5 - 5 um) (kg m**-2) -21 21 AERMSSSSL Vertically integrated mass of sea salt aerosol (5 - 20 um) (kg m**-2) -22 22 AERODSSS Sea salt aerosol (0.03 - 0.5 um) optical depth (~) -23 23 AERODSSM Sea salt aerosol (0.5 - 5 um) optical depth (~) -24 24 AERODSSL Sea salt aerosol (5 - 20 um) optical depth (~) -25 25 AERSRCDUS Source/gain of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -26 26 AERSRCDUM Source/gain of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -27 27 AERSRCDUL Source/gain of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -28 28 AERDDPDUS Dry deposition of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -29 29 AERDDPDUM Dry deposition of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -30 30 AERDDPDUL Dry deposition of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -31 31 AERSDMDUS Sedimentation of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -32 32 AERSDMDUM Sedimentation of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -33 33 AERSDMDUL Sedimentation of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -34 34 AERWDLSDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation (kg m**-2 s**-1) -35 35 AERWDLSDUM Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation (kg m**-2 s**-1) -36 36 AERWDLSDUL Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation (kg m**-2 s**-1) -37 37 AERWDCCDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation (kg m**-2 s**-1) -38 38 AERWDCCDUM Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation (kg m**-2 s**-1) -39 39 AERWDCCDUL Wet deposition of dust aerosol (9 - 20 um) by convective precipitation (kg m**-2 s**-1) -40 40 AERNGTDUS Negative fixer of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -41 41 AERNGTDUM Negative fixer of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -42 42 AERNGTDUL Negative fixer of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -43 43 AERMSSDUS Vertically integrated mass of dust aerosol (0.03 - 0.55 um) (kg m**-2) -44 44 AERMSSDUM Vertically integrated mass of dust aerosol (0.55 - 9 um) (kg m**-2) -45 45 AERMSSDUL Vertically integrated mass of dust aerosol (9 - 20 um) (kg m**-2) -46 46 AERODDUS Dust aerosol (0.03 - 0.55 um) optical depth (~) -47 47 AERODDUM Dust aerosol (0.55 - 9 um) optical depth (~) -48 48 AERODDUL Dust aerosol (9 - 20 um) optical depth (~) -49 49 AERSRCOMHPHOB Source/gain of hydrophobic organic matter aerosol (kg m**-2 s**-1) -50 50 AERSRCOMHPHIL Source/gain of hydrophilic organic matter aerosol (kg m**-2 s**-1) -51 51 AERDDPOMHPHOB Dry deposition of hydrophobic organic matter aerosol (kg m**-2 s**-1) -52 52 AERDDPOMHPHIL Dry deposition of hydrophilic organic matter aerosol (kg m**-2 s**-1) -53 53 AERSDMOMHPHOB Sedimentation of hydrophobic organic matter aerosol (kg m**-2 s**-1) -54 54 AERSDMOMHPHIL Sedimentation of hydrophilic organic matter aerosol (kg m**-2 s**-1) -55 55 AERWDLSOMHPHOB Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) -56 56 AERWDLSOMHPHIL Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) -57 57 AERWDCCOMHPHOB Wet deposition of hydrophobic organic matter aerosol by convective precipitation (kg m**-2 s**-1) -58 58 AERWDCCOMHPHIL Wet deposition of hydrophilic organic matter aerosol by convective precipitation (kg m**-2 s**-1) -59 59 AERNGTOMHPHOB Negative fixer of hydrophobic organic matter aerosol (kg m**-2 s**-1) -60 60 AERNGTOMHPHIL Negative fixer of hydrophilic organic matter aerosol (kg m**-2 s**-1) -61 61 AERMSSOMHPHOB Vertically integrated mass of hydrophobic organic matter aerosol (kg m**-2) -62 62 AERMSSOMHPHIL Vertically integrated mass of hydrophilic organic matter aerosol (kg m**-2) -63 63 AERODOMHPHOB Hydrophobic organic matter aerosol optical depth (~) -64 64 AERODOMHPHIL Hydrophilic organic matter aerosol optical depth (~) -65 65 AERSRCBCHPHOB Source/gain of hydrophobic black carbon aerosol (kg m**-2 s**-1) -66 66 AERSRCBCHPHIL Source/gain of hydrophilic black carbon aerosol (kg m**-2 s**-1) -67 67 AERDDPBCHPHOB Dry deposition of hydrophobic black carbon aerosol (kg m**-2 s**-1) -68 68 AERDDPBCHPHIL Dry deposition of hydrophilic black carbon aerosol (kg m**-2 s**-1) -69 69 AERSDMBCHPHOB Sedimentation of hydrophobic black carbon aerosol (kg m**-2 s**-1) -70 70 AERSDMBCHPHIL Sedimentation of hydrophilic black carbon aerosol (kg m**-2 s**-1) -71 71 AERWDLSBCHPHOB Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) -72 72 AERWDLSBCHPHIL Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) -73 73 AERWDCCBCHPHOB Wet deposition of hydrophobic black carbon aerosol by convective precipitation (kg m**-2 s**-1) -74 74 AERWDCCBCHPHIL Wet deposition of hydrophilic black carbon aerosol by convective precipitation (kg m**-2 s**-1) -75 75 AERNGTBCHPHOB Negative fixer of hydrophobic black carbon aerosol (kg m**-2 s**-1) -76 76 AERNGTBCHPHIL Negative fixer of hydrophilic black carbon aerosol (kg m**-2 s**-1) -77 77 AERMSSBCHPHOB Vertically integrated mass of hydrophobic black carbon aerosol (kg m**-2) -78 78 AERMSSBCHPHIL Vertically integrated mass of hydrophilic black carbon aerosol (kg m**-2) -79 79 AERODBCHPHOB Hydrophobic black carbon aerosol optical depth (~) -80 80 AERODBCHPHIL Hydrophilic black carbon aerosol optical depth (~) -81 81 AERSRCSU Source/gain of sulphate aerosol (kg m**-2 s**-1) -82 82 AERDDPSU Dry deposition of sulphate aerosol (kg m**-2 s**-1) -83 83 AERSDMSU Sedimentation of sulphate aerosol (kg m**-2 s**-1) -84 84 AERWDLSSU Wet deposition of sulphate aerosol by large-scale precipitation (kg m**-2 s**-1) -85 85 AERWDCCSU Wet deposition of sulphate aerosol by convective precipitation (kg m**-2 s**-1) -86 86 AERNGTSU Negative fixer of sulphate aerosol (kg m**-2 s**-1) -87 87 AERMSSSU Vertically integrated mass of sulphate aerosol (kg m**-2) -88 88 AERODSU Sulphate aerosol optical depth (~) -89 89 ACCAOD550 Accumulated total aerosol optical depth at 550 nm (s) -90 90 ALUVPSN Effective (snow effect included) UV visible albedo for direct radiation (0 - 1) -91 91 AERDEP10SI 10 metre wind speed dust emission potential (kg s**2 m**-5) -92 92 AERDEP10FG 10 metre wind gustiness dust emission potential (kg s**2 m**-5) -93 93 AOT532 Total aerosol optical thickness at 532 nm (dimensionless) -94 94 NAOT532 Natural (sea-salt and dust) aerosol optical thickness at 532 nm (dimensionless) -95 95 AAOT532 Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm (dimensionless) -96 96 AODABS340 Total absorption aerosol optical depth at 340 nm (~) -97 97 AODABS355 Total absorption aerosol optical depth at 355 nm (~) -98 98 AODABS380 Total absorption aerosol optical depth at 380 nm (~) -99 99 AODABS400 Total absorption aerosol optical depth at 400 nm (~) -100 100 AODABS440 Total absorption aerosol optical depth at 440 nm (~) -101 101 AODABS469 Total absorption aerosol optical depth at 469 nm (~) -102 102 AODABS500 Total absorption aerosol optical depth at 500 nm (~) -103 103 AODABS532 Total absorption aerosol optical depth at 532 nm (~) -104 104 AODABS550 Total absorption aerosol optical depth at 550 nm (~) -105 105 AODABS645 Total absorption aerosol optical depth at 645 nm (~) -106 106 AODABS670 Total absorption aerosol optical depth at 670 nm (~) -107 107 AODABS800 Total absorption aerosol optical depth at 800 nm (~) -108 108 AODABS858 Total absorption aerosol optical depth at 858 nm (~) -109 109 AODABS865 Total absorption aerosol optical depth at 865 nm (~) -110 110 AODABS1020 Total absorption aerosol optical depth at 1020 nm (~) -111 111 AODABS1064 Total absorption aerosol optical depth at 1064 nm (~) -112 112 AODABS1240 Total absorption aerosol optical depth at 1240 nm (~) -113 113 AODABS1640 Total absorption aerosol optical depth at 1640 nm (~) -114 114 AODFM340 Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm (~) -115 115 AODFM355 Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm (~) -116 116 AODFM380 Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm (~) -117 117 AODFM400 Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm (~) -118 118 AODFM440 Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm (~) -119 119 AODFM469 Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm (~) -120 120 AODFM500 Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm (~) -121 121 AODFM532 Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm (~) -122 122 AODFM550 Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm (~) -123 123 AODFM645 Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm (~) -124 124 AODFM670 Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm (~) -125 125 AODFM800 Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm (~) -126 126 AODFM858 Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm (~) -127 127 AODFM865 Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm (~) -128 128 AODFM1020 Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm (~) -129 129 AODFM1064 Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm (~) -130 130 AODFM1240 Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm (~) -131 131 AODFM1640 Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm (~) -132 132 SSA340 Single scattering albedo at 340 nm (0 - 1) -133 133 SSA355 Single scattering albedo at 355 nm (0 - 1) -134 134 SSA380 Single scattering albedo at 380 nm (0 - 1) -135 135 SSA400 Single scattering albedo at 400 nm (0 - 1) -136 136 SSA440 Single scattering albedo at 440 nm (0 - 1) -137 137 SSA469 Single scattering albedo at 469 nm (0 - 1) -138 138 SSA500 Single scattering albedo at 500 nm (0 - 1) -139 139 SSA532 Single scattering albedo at 532 nm (0 - 1) -140 140 SSA550 Single scattering albedo at 550 nm (0 - 1) -141 141 SSA645 Single scattering albedo at 645 nm (0 - 1) -142 142 SSA670 Single scattering albedo at 670 nm (0 - 1) -143 143 SSA800 Single scattering albedo at 800 nm (0 - 1) -144 144 SSA858 Single scattering albedo at 858 nm (0 - 1) -145 145 SSA865 Single scattering albedo at 865 nm (0 - 1) -146 146 SSA1020 Single scattering albedo at 1020 nm (0 - 1) -147 147 SSA1064 Single scattering albedo at 1064 nm (0 - 1) -148 148 SSA1240 Single scattering albedo at 1240 nm (0 - 1) -149 149 SSA1640 Single scattering albedo at 1640 nm (0 - 1) -150 150 ASYMMETRY340 Asymmetry factor at 340 nm (~) -151 151 ASYMMETRY355 Asymmetry factor at 355 nm (~) -152 152 ASYMMETRY380 Asymmetry factor at 380 nm (~) -153 153 ASYMMETRY400 Asymmetry factor at 400 nm (~) -154 154 ASYMMETRY440 Asymmetry factor at 440 nm (~) -155 155 ASYMMETRY469 Asymmetry factor at 469 nm (~) -156 156 ASYMMETRY500 Asymmetry factor at 500 nm (~) -157 157 ASYMMETRY532 Asymmetry factor at 532 nm (~) -158 158 ASYMMETRY550 Asymmetry factor at 550 nm (~) -159 159 ASYMMETRY645 Asymmetry factor at 645 nm (~) -160 160 ASYMMETRY670 Asymmetry factor at 670 nm (~) -161 161 ASYMMETRY800 Asymmetry factor at 800 nm (~) -162 162 ASYMMETRY858 Asymmetry factor at 858 nm (~) -163 163 ASYMMETRY865 Asymmetry factor at 865 nm (~) -164 164 ASYMMETRY1020 Asymmetry factor at 1020 nm (~) -165 165 ASYMMETRY1064 Asymmetry factor at 1064 nm (~) -166 166 ASYMMETRY1240 Asymmetry factor at 1240 nm (~) -167 167 ASYMMETRY1640 Asymmetry factor at 1640 nm (~) -168 168 AERSRCSO2 Source/gain of sulphur dioxide (kg m**-2 s**-1) -169 169 AERDDPSO2 Dry deposition of sulphur dioxide (kg m**-2 s**-1) -170 170 AERSDMSO2 Sedimentation of sulphur dioxide (kg m**-2 s**-1) -171 171 AERWDLSSO2 Wet deposition of sulphur dioxide by large-scale precipitation (kg m**-2 s**-1) -172 172 AERWDCCSO2 Wet deposition of sulphur dioxide by convective precipitation (kg m**-2 s**-1) -173 173 AERNGTSO2 Negative fixer of sulphur dioxide (kg m**-2 s**-1) -174 174 AERMSSSO2 Vertically integrated mass of sulphur dioxide (kg m**-2) -175 175 AERODSO2 Sulphur dioxide optical depth (~) -176 176 AODABS2130 Total absorption aerosol optical depth at 2130 nm (~) -177 177 AODFM2130 Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm (~) -178 178 SSA2130 Single scattering albedo at 2130 nm (0 - 1) -179 179 ASYMMETRY2130 Asymmetry factor at 2130 nm (~) -180 180 AEREXT355 Aerosol extinction coefficient at 355 nm (m**-1) -181 181 AEREXT532 Aerosol extinction coefficient at 532 nm (m**-1) -182 182 AEREXT1064 Aerosol extinction coefficient at 1064 nm (m**-1) -183 183 AERBACKSCATTOA355 Aerosol backscatter coefficient at 355 nm (from top of atmosphere) (m**-1 sr**-1) -184 184 AERBACKSCATTOA532 Aerosol backscatter coefficient at 532 nm (from top of atmosphere) (m**-1 sr**-1) -185 185 AERBACKSCATTOA1064 Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) (m**-1 sr**-1) -186 186 AERBACKSCATGND355 Aerosol backscatter coefficient at 355 nm (from ground) (m**-1 sr**-1) -187 187 AERBACKSCATGND532 Aerosol backscatter coefficient at 532 nm (from ground) (m**-1 sr**-1) -188 188 AERBACKSCATGND1064 Aerosol backscatter coefficient at 1064 nm (from ground) (m**-1 sr**-1) -189 189 AERSRCNIF Source/gain of fine-mode nitrate aerosol (kg m**-2 s**-1) -190 190 AERSRCNIC Source/gain of coarse-mode nitrate aerosol (kg m**-2 s**-1) -191 191 AERDDPNIF Dry deposition of fine-mode nitrate aerosol (kg m**-2 s**-1) -192 192 AERDDPNIC Dry deposition of coarse-mode nitrate aerosol (kg m**-2 s**-1) -193 193 AERSDMNIF Sedimentation of fine-mode nitrate aerosol (kg m**-2 s**-1) -194 194 AERSDMNIC Sedimentation of coarse-mode nitrate aerosol (kg m**-2 s**-1) -195 195 AERWDLNIF Wet deposition of fine-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) -196 196 AERWDLNIC Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) -197 197 AERWDCNIF Wet deposition of fine-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) -198 198 AERWDCNIC Wet deposition of coarse-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) -199 199 AERNGTNIF Negative fixer of fine-mode nitrate aerosol (kg m**-2 s**-1) -200 200 AERNGTNIC Negative fixer of coarse-mode nitrate aerosol (kg m**-2 s**-1) -201 201 AERMSSNIF Vertically integrated mass of fine-mode nitrate aerosol (kg m**-2) -202 202 AERMSSNIC Vertically integrated mass of coarse-mode nitrate aerosol (kg m**-2) -203 203 AERODNIF Fine-mode nitrate aerosol optical depth at 550 nm (dimensionless) -204 204 AERODNIC Coarse-mode nitrate aerosol optical depth at 550 nm (dimensionless) -205 205 AERSRCAM Source/gain of ammonium aerosol (kg m**-2 s**-1) -206 206 AERDDPAM Dry deposition of ammonium aerosol (kg m**-2 s**-1) -207 207 AERSDMAM Sedimentation of ammonium aerosol (kg m**-2 s**-1) -208 208 AERWDLAM Wet deposition of ammonium aerosol by large-scale precipitation (kg m**-2 s**-1) -209 209 AERWDCAM Wet deposition of ammonium aerosol by convective precipitation (kg m**-2 s**-1) -210 210 AERNGTAM Negative fixer of ammonium aerosol (kg m**-2 s**-1) -211 211 AERMSSAM Vertically integrated mass of ammonium aerosol (kg m**-2) diff --git a/eccodes/definitions.save/grib1/2.98.220.table b/eccodes/definitions.save/grib1/2.98.220.table deleted file mode 100644 index cd6cafaf..00000000 --- a/eccodes/definitions.save/grib1/2.98.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file was automatically generated by ./param.pl -228 228 TPOC Total precipitation observation count (dimensionless) diff --git a/eccodes/definitions.save/grib1/2.98.228.table b/eccodes/definitions.save/grib1/2.98.228.table deleted file mode 100644 index c93451d4..00000000 --- a/eccodes/definitions.save/grib1/2.98.228.table +++ /dev/null @@ -1,108 +0,0 @@ -# This file was automatically generated by ./param.pl -1 cin CIN Convective inhibition (J kg**-1) -2 orog OROG Orography (m) -3 zust ZUST Friction velocity (m s**-1) -4 mean2t MEAN2T Mean temperature at 2 metres (K) -5 mean10ws MEAN10WS Mean of 10 metre wind speed (m s**-1) -6 meantcc MEANTCC Mean total cloud cover (0 - 1) -7 dl DL Lake depth (m) -8 lmlt LMLT Lake mix-layer temperature (K) -9 lmld LMLD Lake mix-layer depth (m) -10 lblt LBLT Lake bottom temperature (K) -11 ltlt LTLT Lake total layer temperature (K) -12 lshf LSHF Lake shape factor (dimensionless) -13 lict LICT Lake ice temperature (K) -14 licd LICD Lake ice depth (m) -15 dndzn DNDZN Minimum vertical gradient of refractivity inside trapping layer (m**-1) -16 dndza DNDZA Mean vertical gradient of refractivity inside trapping layer (m**-1) -17 dctb DCTB Duct base height (m) -18 tplb TPLB Trapping layer base height (m) -19 tplt TPLT Trapping layer top height (m) -20 degm10l -10 degrees C isothermal level (m) -21 fdir FDIR Total sky direct solar radiation at surface (J m**-2) -22 cdir CDIR Clear-sky direct solar radiation at surface (J m**-2) -23 cbh CBH Cloud base height (m) -24 deg0l DEG0L Zero degree level (m) -25 hvis HVIS Horizontal visibility (m) -26 mx2t3 MX2T3 Maximum temperature at 2 metres in the last 3 hours (K) -27 mn2t3 MN2T3 Minimum temperature at 2 metres in the last 3 hours (K) -28 10fg3 10FG3 10 metre wind gust in the last 3 hours (m s**-1) -29 i10fg I10FG Instantaneous 10 metre wind gust (m s**-1) -39 sm SM Soil Moisture (kg m**-3) -40 swi1 SWI1 Soil wetness index in layer 1 (dimensionless) -41 swi2 SWI2 Soil wetness index in layer 2 (dimensionless) -42 swi3 SWI3 Soil wetness index in layer 3 (dimensionless) -43 swi4 SWI4 Soil wetness index in layer 4 (dimensionless) -44 capes CAPES Convective available potential energy shear (m**2 s**-2) -46 hcct HCCT Height of convective cloud top (m) -47 hwbt0 HWBT0 Height of zero-degree wet-bulb temperature (m) -48 hwbt1 HWBT1 Height of one-degree wet-bulb temperature (m) -50 litoti LITOTI Instantaneous total lightning flash density (km**-2 day**-1) -51 litota1 LITOTA1 Averaged total lightning flash density in the last hour (km**-2 day**-1) -52 licgi LICGI Instantaneous cloud-to-ground lightning flash density (km**-2 day**-1) -53 licga1 LICGA1 Averaged cloud-to-ground lightning flash density in the last hour (km**-2 day**-1) -70 smnnob SMNNOB SMOS observed soil moisture retrieved using neural network (m**3 m**-3) -71 smnner SMNNER SMOS observed soil moisture uncertainty retrieved using neural network (m**3 m**-3) -72 smnnrfi SMNNRFI SMOS radio frequency interference probability (%) -73 smnnnb SMNNNB SMOS number of observations per grid point (dimensionless) -74 smnntim SMNNTIM SMOS observation time for the satellite soil moisture data (hour) -78 gppbfas GPPBFAS GPP coefficient from Biogenic Flux Adjustment System (dimensionless) -79 recbfas RECBFAS Rec coefficient from Biogenic Flux Adjustment System (dimensionless) -80 aco2nee ACO2NEE Accumulated Carbon Dioxide Net Ecosystem Exchange (kg m**-2) -81 aco2gpp ACO2GPP Accumulated Carbon Dioxide Gross Primary Production (kg m**-2) -82 aco2rec ACO2REC Accumulated Carbon Dioxide Ecosystem Respiration (kg m**-2) -83 fco2nee FCO2NEE Flux of Carbon Dioxide Net Ecosystem Exchange (kg m**-2 s**-1) -84 fco2gpp FCO2GPP Flux of Carbon Dioxide Gross Primary Production (kg m**-2 s**-1) -85 fco2rec FCO2REC Flux of Carbon Dioxide Ecosystem Respiration (kg m**-2 s**-1) -88 tcslw TCSLW Total column supercooled liquid water (kg m**-2) -89 tcrw TCRW Total column rain water (kg m**-2) -90 tcsw TCSW Total column snow water (kg m**-2) -91 ccf CCF Canopy cover fraction (0 - 1) -92 stf STF Soil texture fraction (0 - 1) -93 swv SWV Volumetric soil moisture (m**3 m**-3) -94 ist IST Ice temperature (K) -109 ceil CEIL Ceiling (m) -121 kx KX K index (K) -123 totalx TOTALX Total totals index (K) -129 ssrdc SSRDC Surface solar radiation downward clear-sky (J m**-2) -130 strdc STRDC Surface thermal radiation downward clear-sky (J m**-2) -131 u10n U10N Neutral wind at 10 m u-component (m s**-1) -132 v10n V10N Neutral wind at 10 m v-component (m s**-1) -134 vtnowd VTNOWD V-tendency from non-orographic wave drag (m s**-2) -136 utnowd UTNOWD U-tendency from non-orographic wave drag (m s**-2) -139 st ST Soil Temperature (K) -141 sd SD Snow depth water equivalent (kg m**-2) -144 sf SF Snow Fall water equivalent (kg m**-2) -164 tcc TCC Total Cloud Cover (%) -170 cap CAP Field capacity (kg m**-3) -171 wilt WILT Wilting point (kg m**-3) -216 fzra FZRA Accumulated freezing rain (m) -217 ilspf ILSPF Instantaneous large-scale surface precipitation fraction (0 - 1) -218 crr CRR Convective rain rate (kg m**-2 s**-1) -219 lsrr LSRR Large scale rain rate (kg m**-2 s**-1) -220 csfr CSFR Convective snowfall rate water equivalent (kg m**-2 s**-1) -221 lssfr LSSFR Large scale snowfall rate water equivalent (kg m**-2 s**-1) -222 mxtpr3 MXTPR3 Maximum total precipitation rate in the last 3 hours (kg m**-2 s**-1) -223 mntpr3 MNTPR3 Minimum total precipitation rate in the last 3 hours (kg m**-2 s**-1) -224 mxtpr6 MXTPR6 Maximum total precipitation rate in the last 6 hours (kg m**-2 s**-1) -225 mntpr6 MNTPR6 Minimum total precipitation rate in the last 6 hours (kg m**-2 s**-1) -226 mxtpr MXTPR Maximum total precipitation rate since previous post-processing (kg m**-2 s**-1) -227 mntpr MNTPR Minimum total precipitation rate since previous post-processing (kg m**-2 s**-1) -228 tp TP Total Precipitation (kg m**-2) -229 smos_tb_cdfa SMOS_TB_CDFA SMOS first Brightness Temperature Bias Correction parameter (K) -230 smos_tb_cdfb SMOS_TB_CDFB SMOS second Brightness Temperature Bias Correction parameter (dimensionless) -239 200U 200 metre U wind component (m s**-1) -240 200V 200 metre V wind component (m s**-1) -241 200SI 200 metre wind speed (m s**-1) -242 fdif FDIF Surface solar radiation diffuse total sky (J m**-2) -243 cdif CDIF Surface solar radiation diffuse clear-sky (J m**-2) -244 aldr ALDR Surface albedo of direct radiation (0 - 1) -245 aldf ALDF Surface albedo of diffuse radiation (0 - 1) -246 100u 100U 100 metre U wind component (m s**-1) -247 100v 100V 100 metre V wind component (m s**-1) -249 100si 100SI 100 metre wind speed (m s**-1) -250 irrfr IRRFR Irrigation fraction (Proportion) -251 pev PEV Potential evaporation (m) -252 irr IRR Irrigation (m) -253 ascat_sm_cdfa ASCAT_SM_CDFA ASCAT first soil moisture CDF matching parameter (m**3 m**-3) -254 ascat_sm_cdfb ASCAT_SM_CDFB ASCAT second soil moisture CDF matching parameter (dimensionless) diff --git a/eccodes/definitions.save/grib1/2.98.230.table b/eccodes/definitions.save/grib1/2.98.230.table deleted file mode 100644 index 8ec456e9..00000000 --- a/eccodes/definitions.save/grib1/2.98.230.table +++ /dev/null @@ -1,51 +0,0 @@ -# This file was automatically generated by ./param.pl -8 8 SROVAR Surface runoff (variable resolution) (m) -9 9 SSROVAR Sub-surface runoff (variable resolution) (m) -20 20 PARCSVAR Clear sky surface photosynthetically active radiation (variable resolution) (J m**-2) -21 21 FDIRVAR Total sky direct solar radiation at surface (variable resolution) (J m**-2) -22 22 CDIRVAR Clear-sky direct solar radiation at surface (variable resolution) (J m**-2) -44 44 ESVAR Snow evaporation (variable resolution) (kg m**-2) -45 45 SMLTVAR Snowmelt (variable resolution) (kg m**-2) -46 46 SDURVAR Solar duration (variable resolution) (s) -47 47 DSRPVAR Direct solar radiation (variable resolution) (J m**-2) -50 50 LSPFVAR Large-scale precipitation fraction (variable resolution) (s) -57 57 UVBVAR Downward UV radiation at the surface (variable resolution) (J m**-2) -58 58 PARVAR Photosynthetically active radiation at the surface (variable resolution) (J m**-2) -80 80 ACO2NEEVAR Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) (kg m**-2) -81 81 ACO2GPPVAR Accumulated Carbon Dioxide Gross Primary Production (variable resolution) (kg m**-2) -82 82 ACO2RECVAR Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) (kg m**-2) -129 129 SSRDCVAR Surface solar radiation downward clear-sky (variable resolution) (J m**-2) -130 130 STRDCVAR Surface thermal radiation downward clear-sky (variable resolution) (J m**-2) -142 142 LSPVAR Stratiform precipitation (Large-scale precipitation) (variable resolution) (m) -143 143 CPVAR Convective precipitation (variable resolution) (m) -144 144 SFVAR Snowfall (convective + stratiform) (variable resolution) (m of water equivalent) -145 145 BLDVAR Boundary layer dissipation (variable resolution) (J m**-2) -146 146 SSHFVAR Surface sensible heat flux (variable resolution) (J m**-2) -147 147 SLHFVAR Surface latent heat flux (variable resolution) (J m**-2) -169 169 SSRDVAR Surface solar radiation downwards (variable resolution) (J m**-2) -174 174 ALVAR Albedo (variable resolution) (0 - 1) -175 175 STRDVAR Surface thermal radiation downwards (variable resolution) (J m**-2) -176 176 SSRVAR Surface net solar radiation (variable resolution) (J m**-2) -177 177 STRVAR Surface net thermal radiation (variable resolution) (J m**-2) -178 178 TSRVAR Top net solar radiation (variable resolution) (J m**-2) -179 179 TTRVAR Top net thermal radiation (variable resolution) (J m**-2) -180 180 EWSSVAR East-West surface stress (variable resolution) (N m**-2 s) -181 181 NSSSVAR North-South surface stress (variable resolution) (N m**-2 s) -182 182 EVAR Evaporation (variable resolution) (kg m**-2) -189 189 SUNDVAR Sunshine duration (variable resolution) (s) -195 195 LGWSVAR Longitudinal component of gravity wave stress (variable resolution) (N m**-2 s) -196 196 MGWSVAR Meridional component of gravity wave stress (variable resolution) (N m**-2 s) -197 197 GWDVAR Gravity wave dissipation (variable resolution) (J m**-2) -198 198 SRCVAR Skin reservoir content (variable resolution) (kg m**-2) -205 205 ROVAR Runoff (variable resolution) (m) -208 208 TSRCVAR Top net solar radiation, clear sky (variable resolution) (J m**-2) -209 209 TTRCVAR Top net thermal radiation, clear sky (variable resolution) (J m**-2) -210 210 SSRCVAR Surface net solar radiation, clear sky (variable resolution) (J m**-2) -211 211 STRCVAR Surface net thermal radiation, clear sky (variable resolution) (J m**-2) -212 212 TISRVAR TOA incident solar radiation (variable resolution) (J m**-2) -213 213 VIMDVAR Vertically integrated moisture divergence (variable resolution) (kg m**-2) -216 216 FZRAVAR Accumulated freezing rain (variable resolution) (m) -228 228 TPVAR Total precipitation (variable resolution) (m) -239 239 CSFVAR Convective snowfall (variable resolution) (m of water equivalent) -240 240 LSFVAR Large-scale snowfall (variable resolution) (m of water equivalent) -251 251 PEVVAR Potential evaporation (variable resolution) (m) diff --git a/eccodes/definitions.save/grib1/2.98.235.table b/eccodes/definitions.save/grib1/2.98.235.table deleted file mode 100644 index e5d79015..00000000 --- a/eccodes/definitions.save/grib1/2.98.235.table +++ /dev/null @@ -1,49 +0,0 @@ -# This file was automatically generated by ./param.pl -20 20 - Mean surface runoff rate (kg m**-2 s**-1) -21 21 - Mean sub-surface runoff rate (kg m**-2 s**-1) -22 22 - Mean surface photosynthetically active radiation flux, clear sky (W m**-2) -23 23 - Mean snow evaporation rate (kg m**-2 s**-1) -24 24 - Mean snowmelt rate (kg m**-2 s**-1) -25 25 - Mean magnitude of surface stress (N m**-2) -26 26 - Mean large-scale precipitation fraction (Proportion) -27 27 - Mean surface downward UV radiation flux (W m**-2) -28 28 - Mean surface photosynthetically active radiation flux (W m**-2) -29 29 - Mean large-scale precipitation rate (kg m**-2 s**-1) -30 30 - Mean convective precipitation rate (kg m**-2 s**-1) -31 31 - Mean snowfall rate (kg m**-2 s**-1) -32 32 - Mean boundary layer dissipation (W m**-2) -33 33 - Mean surface sensible heat flux (W m**-2) -34 34 - Mean surface latent heat flux (W m**-2) -35 35 - Mean surface downward short-wave radiation flux (W m**-2) -36 36 - Mean surface downward long-wave radiation flux (W m**-2) -37 37 - Mean surface net short-wave radiation flux (W m**-2) -38 38 - Mean surface net long-wave radiation flux (W m**-2) -39 39 - Mean top net short-wave radiation flux (W m**-2) -40 40 - Mean top net long-wave radiation flux (W m**-2) -41 41 - Mean eastward turbulent surface stress (N m**-2) -42 42 - Mean northward turbulent surface stress (N m**-2) -43 43 - Mean evaporation rate (kg m**-2 s**-1) -44 44 - Sunshine duration fraction (Proportion) -45 45 - Mean eastward gravity wave surface stress (N m**-2) -46 46 - Mean northward gravity wave surface stress (N m**-2) -47 47 - Mean gravity wave dissipation (W m**-2) -48 48 - Mean runoff rate (kg m**-2 s**-1) -49 49 - Mean top net short-wave radiation flux, clear sky (W m**-2) -50 50 - Mean top net long-wave radiation flux, clear sky (W m**-2) -51 51 - Mean surface net short-wave radiation flux, clear sky (W m**-2) -52 52 - Mean surface net long-wave radiation flux, clear sky (W m**-2) -53 53 - Mean top downward short-wave radiation flux (W m**-2) -54 54 - Mean vertically integrated moisture divergence (kg m**-2 s**-1) -55 55 - Mean total precipitation rate (kg m**-2 s**-1) -56 56 - Mean convective snowfall rate (kg m**-2 s**-1) -57 57 - Mean large-scale snowfall rate (kg m**-2 s**-1) -58 58 - Mean surface direct short-wave radiation flux (W m**-2) -59 59 - Mean surface direct short-wave radiation flux, clear sky (W m**-2) -60 60 - Mean surface diffuse short-wave radiation flux (W m**-2) -61 61 - Mean surface diffuse short-wave radiation flux, clear sky (W m**-2) -62 62 - Mean carbon dioxide net ecosystem exchange flux (kg m**-2 s**-1) -63 63 - Mean carbon dioxide gross primary production flux (kg m**-2 s**-1) -64 64 - Mean carbon dioxide ecosystem respiration flux (kg m**-2 s**-1) -65 65 - Mean rain rate (kg m**-2 s**-1) -66 66 - Mean convective rain rate (kg m**-2 s**-1) -67 67 - Mean large-scale rain rate (kg m**-2 s**-1) diff --git a/eccodes/definitions.save/grib1/2.table b/eccodes/definitions.save/grib1/2.table deleted file mode 100644 index 7dc22b12..00000000 --- a/eccodes/definitions.save/grib1/2.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 1, Flag indication relative to section 2 and 3 -1 0 Section 2 omited -1 1 Section 2 included -2 0 Section 3 omited -2 1 Section 3 included diff --git a/eccodes/definitions.save/grib1/3.233.table b/eccodes/definitions.save/grib1/3.233.table deleted file mode 100644 index 8bb824dd..00000000 --- a/eccodes/definitions.save/grib1/3.233.table +++ /dev/null @@ -1,61 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for which the data are included -0 0 Reserved -1 sfc Surface (of the Earth, which includes sea surface) -2 sfc Cloud base level -3 sfc Cloud top level -4 sfc 0 deg (C) isotherm level -5 lcl Adiabatic condensation level (parcel lifted from surface) -6 umx Maximum wind speed level -7 trp Tropopause level -8 toa Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 tl Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 sfc Mean sea level 0 0 -103 asl Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two height levels above msl height of top (hm) above mean sea level height of bottom (hm) above mean sea level -105 agl Fixed height above ground height in meters (2 octets) -106 106 Layer between two height levels above ground height of top (hm) above ground height of bottom (hm) above ground -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 ml Layer between two hybrid levels level number of top level number of bottom -111 sfc Depth below land surface centimeters (2 octets) -112 sfc Layer between two depths below land surface depth of upper surface (cm) depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -191 dn Northern facing surface (HIRLAM Extension) -192 dne North-eastern facing surface (HIRLAM Extension) -193 de Eastern facing surface (HIRLAM Extension) -194 dse South-eastern facing surface (HIRLAM Extension) -195 ds Southern facing surface (HIRLAM Extension) -196 dsw South-western facing surface (HIRLAM Extension) -197 dw Western facing surface (HIRLAM Extension) -198 dw North-western facing surface (HIRLAM Extension) -200 atm Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -# 202-209 Reserved -210 pl Isobaric surface (Pa) (ECMWF extension) -# 211-254 Reserved for local use -211 wv Ocean wave level (ECMWF extension) -212 oml Ocean mixed layer (ECMWF extension) -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/3.82.table b/eccodes/definitions.save/grib1/3.82.table deleted file mode 100644 index 7d5b2636..00000000 --- a/eccodes/definitions.save/grib1/3.82.table +++ /dev/null @@ -1,50 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# CODE TABLE 3 Fixed levels or layers for wich the data are included -0 0 Reserved -1 surf Surface (of the Earth, which includes sea surface) -2 bcld Cloud base level -3 tcld Cloud top level -4 isot 0 deg (C) isotherm level -5 5 Adiabatic condensation level (parcel lifted from surface) -6 6 Maximum wind speed level -7 7 Tropopause level -8 tatm Nominal top of atmosphere -9 9 Sea bottom -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 msl Mean sea level 0 0 -103 hmsl Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two height levels above msl height of top (hm) above mean sea level height of bottom (hm) above mean sea level -105 hl Fixed height above ground height in meters (2 octets) -106 lhl Layer between two height levels above ground height of top (hm) above ground height of bottom (hm) above ground -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 110 Layer between two hybrid levels level number of top level number of bottom -111 111 Depth below land surface centimeters (2 octets) -112 ldl Layer between two depths below land surface depth of upper surface (cm) depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -125 125 Height level above ground (high precision) centimeters (2 octets) -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -160 dp Depth below sea level meters (2 octets) -191 nd Northern Direction (SMHI Extension) -192 ned Northern-Eastern Direction (SMHI Extension) -193 ed Eastern Direction (SMHI Extension) -194 sed Southern-Eastern Direction (SMHI Extension) -195 sd Southern Direction (SMHI Extension) -196 swd Southern-Western Direction (SMHI Extension) -197 wd Western Direction (SMHI Extension) -198 nwd Northern-Western Direction (SMHI Extension) -200 atm Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) diff --git a/eccodes/definitions.save/grib1/3.98.table b/eccodes/definitions.save/grib1/3.98.table deleted file mode 100644 index 767213f1..00000000 --- a/eccodes/definitions.save/grib1/3.98.table +++ /dev/null @@ -1,53 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for which the data are included -0 0 Reserved -1 sfc Surface (of the Earth, which includes sea surface) -2 sfc Cloud base level -3 sfc Cloud top level -4 sfc 0 deg (C) isotherm level -5 5 Adiabatic condensation level (parcel lifted from surface) -6 6 Maximum wind speed level -7 7 Tropopause level -8 sfc Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 sfc Mean sea level 0 0 -103 103 Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) -105 sfc Fixed height above ground height in meters (2 octets) -106 106 Layer between two height levels above ground - height of top, height of bottom (hm) -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 ml Layer between two hybrid levels level number of top level number of bottom -111 sfc Depth below land surface centimeters (2 octets) -112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -200 sfc Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -# 202-209 Reserved -210 pl Isobaric surface (Pa) (ECMWF extension) -# 211-254 Reserved for local use -211 wv Ocean wave level (ECMWF extension) -212 oml Ocean mixed layer (ECMWF extension) -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/3.table b/eccodes/definitions.save/grib1/3.table deleted file mode 100644 index 17bf1dff..00000000 --- a/eccodes/definitions.save/grib1/3.table +++ /dev/null @@ -1,51 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for which the data are included -0 0 Reserved -1 sfc Surface (of the Earth, which includes sea surface) -2 sfc Cloud base level -3 sfc Cloud top level -4 sfc 0 deg (C) isotherm level -5 5 Adiabatic condensation level (parcel lifted from surface) -6 6 Maximum wind speed level -7 7 Tropopause level -8 sfc Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 sfc Mean sea level 0 0 -103 103 Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) -105 sfc Fixed height above ground height in meters (2 octets) -106 106 Layer between two height levels above ground - height of top, height of bottom (hm) -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 ml Layer between two hybrid levels level number of top level number of bottom -111 sfc Depth below land surface centimeters (2 octets) -112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -200 sfc Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -# 202-209 Reserved -210 pl Isobaric surface (Pa) (ECMWF extension) -# 211-254 Reserved for local use -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/4.table b/eccodes/definitions.save/grib1/4.table deleted file mode 100644 index 1ddcb8cd..00000000 --- a/eccodes/definitions.save/grib1/4.table +++ /dev/null @@ -1,15 +0,0 @@ -# CODE TABLE 4 Unit of Time -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade -6 30Y Normal (30 years) -7 C Century -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 15m 15 minutes -14 30m 30 minutes -254 s Second diff --git a/eccodes/definitions.save/grib1/5.table b/eccodes/definitions.save/grib1/5.table deleted file mode 100644 index b1276f06..00000000 --- a/eccodes/definitions.save/grib1/5.table +++ /dev/null @@ -1,21 +0,0 @@ -# CODE TABLE 5 Time Range Indicator -0 0 Forecast product valid at reference time + P1 (P1>0) -1 1 Initialized analysis product for reference time (P1=0). -2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 -3 3 Average (reference time + P1 to reference time + P2) -4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 -5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 -6 6 Average (reference time - P1 to reference time - P2) -7 7 Average (reference time - P1 to reference time + P2) -10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 -51 51 Climatological Mean Value: -113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. -116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. -117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. -118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. -119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. -124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. -125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions.save/grib1/6.table b/eccodes/definitions.save/grib1/6.table deleted file mode 100644 index f7e0644b..00000000 --- a/eccodes/definitions.save/grib1/6.table +++ /dev/null @@ -1,24 +0,0 @@ -# CODE TABLE 6 Data Representation Type -0 ll Latitude/Longitude Grid -1 mm Mercator Projection Grid -2 gp Gnomonic Projection Grid -3 lc Lambert Conformal -4 gg Gaussian Latitude/Longitude Grid -5 ps Polar Stereographic Projection Grid -6 6 Universal Transverse Mercator -7 7 Simple polyconic projection -8 8 Albers equal-area, secant or tangent, conic or bi-polar -9 9 Miller's cylingrical projection -10 10 Rotated Latitude/Longitude grid -13 ol Oblique Lambert conformal -14 14 Rotated Gaussian latitude/longitude grid -20 20 Stretched latitude/longitude grid -24 24 Stretched Gaussian latitude/longitude -30 30 Stretched and rotated latitude/longitude -34 34 Stretched and rotated Gaussian latitude/longitude -50 sh Spherical Harmonic Coefficients -60 60 Rotated Spherical Harmonic coefficients -70 70 Stretched Spherical Harmonic coefficients -80 80 Stretched and rotated Spherical Harmonic -90 sv Space view perspective or orthographic grid -193 193 Quasi-regular latitude/longitude diff --git a/eccodes/definitions.save/grib1/7.table b/eccodes/definitions.save/grib1/7.table deleted file mode 100644 index 5fefe61f..00000000 --- a/eccodes/definitions.save/grib1/7.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 7, Resolution and Component Flags -1 0 Direction increments not given -1 1 Direction increments given -2 0 Earth assumed spherical with radius = 6367.47 km -2 1 Earth assumed oblate spheroid with size as determined by IAU in 1965: 6378.160 km, 6356.775 km, f = 1/297.0 -5 0 u and v components resolved relative to easterly and northerly directions -5 1 u and v components resolved relative to the defined grid diff --git a/eccodes/definitions.save/grib1/8.table b/eccodes/definitions.save/grib1/8.table deleted file mode 100644 index b4ea17ff..00000000 --- a/eccodes/definitions.save/grib1/8.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 8, Scanning Mode Flag -1 0 Points scan in +i direction -1 1 Points scan in -i direction -2 0 Points scan in -j direction -2 1 Points scan in +j direction -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive diff --git a/eccodes/definitions.save/grib1/9.table b/eccodes/definitions.save/grib1/9.table deleted file mode 100644 index 521a1324..00000000 --- a/eccodes/definitions.save/grib1/9.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 9, Spectral Representation Type -1 1 Associated Legendre Polynomials of the First Kind with normalization such that the integral equals 1 diff --git a/eccodes/definitions.save/grib1/boot.def b/eccodes/definitions.save/grib1/boot.def deleted file mode 100644 index 7c76d27d..00000000 --- a/eccodes/definitions.save/grib1/boot.def +++ /dev/null @@ -1,83 +0,0 @@ -# (C) Copyright 2005- 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. -# - -constant ieeeFloats = 0 : hidden, edition_specific; -transient eps=0; -constant two=1 : hidden; -constant three=1 : hidden; -constant eight=8 : hidden; -constant eleven=11 : hidden; -constant epsPoint=1 : hidden; -constant epsContinous=11 : hidden; -constant epsStatisticsPoint=2 : hidden; -constant epsStatisticsContinous=12 : hidden; - -meta headersOnly headers_only(); - -#template section_0 "grib1/section.0.def" ; - -meta gts_header gts_header() : no_copy,hidden,read_only; -meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; -meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; -meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; - -ascii[4] identifier = "GRIB" : read_only,hidden; - -constant offsetSection0=0; -constant section0Length=8 ; -meta section0Pointer section_pointer(offsetSection0,section0Length,0); - -# Due to a trick done by GRIBEX to support large GRIBs, we need a special treatment -# of the message length and of the section4 length, so instead of -# section_length[3] totalLength ; -# we get: -g1_message_length[3] totalLength(section4Length) ; -position startOfHeaders; -unsigned[1] editionNumber = 1 : edition_specific,dump; - -template section_1 "grib1/section.1.def" ; - -alias ls.edition = editionNumber; - -# Note flagbit numbers 7 to 0, while wmo is 1 to 8 -flagbit gridDescriptionSectionPresent(section1Flags,7) = 1; -meta GDSPresent gds_is_present(gridDescriptionSectionPresent,gridDefinition,bitmapPresent,values): dump ; -#alias GDSPresent = gridDescriptionSectionPresent; - -flagbit bitmapPresent(section1Flags,6) :dump; -alias bitmapSectionPresent=bitmapPresent; -alias geography.bitmapPresent=bitmapPresent; -alias missingValuesPresent=bitmapPresent : read_only; -transient angleSubdivisions=1000; # milli degrees - -if(gridDescriptionSectionPresent){ - template section_2 "grib1/section.2.def" ; -} else { - template predefined_grid "grib1/predefined_grid.def"; -} - -# Used to mark end of headers. Can be accessed with grib_get_offset() -position endOfHeadersMarker; - -meta lengthOfHeaders evaluate( endOfHeadersMarker-startOfHeaders); -meta md5Headers md5(startOfHeaders,lengthOfHeaders); - -if (!headersOnly) { - transient missingValue = 9999 : dump; - - if(bitmapPresent) { - template section_3 "grib1/section.3.def"; - } else { - constant tableReference = 0; - } - - template section_4 "grib1/section.4.def"; - - template section_5 "grib1/section.5.def"; -} diff --git a/eccodes/definitions.save/grib1/cfName.def b/eccodes/definitions.save/grib1/cfName.def deleted file mode 100644 index 6e2fafd8..00000000 --- a/eccodes/definitions.save/grib1/cfName.def +++ /dev/null @@ -1,349 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Geopotential -'geopotential' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'air_temperature' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'northward_wind' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'geopotential_height' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'surface_roughness_length' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Total column ozone -'atmosphere_mass_content_of_ozone' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Albedo -'surface_albedo' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Convective precipitation (water) -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Geopotential -'geopotential' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'air_temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'northward_wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'geopotential_height' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'surface_roughness_length' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Total column ozone -'atmosphere_mass_content_of_ozone' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Albedo -'surface_albedo' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Convective precipitation (water) -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Geopotential -'geopotential' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'air_temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'northward_wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'geopotential_height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'surface_roughness_length' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Total column ozone -'atmosphere_mass_content_of_ozone' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Albedo -'surface_albedo' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Convective precipitation (water) -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; -} diff --git a/eccodes/definitions.save/grib1/cfVarName.def b/eccodes/definitions.save/grib1/cfVarName.def deleted file mode 100644 index 7aeff37b..00000000 --- a/eccodes/definitions.save/grib1/cfVarName.def +++ /dev/null @@ -1,2059 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'strf' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'u10' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'v10' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'t2m' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'p3062' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sde' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'p260102' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Virtual temperature -'p300012' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'p300012' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'p300012' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } -#Pressure tendency -'p3003' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'p3005' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'p3008' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'p3009' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'p3014' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'p3015' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'p3016' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'p3017' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'p3018' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'p3019' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } -#Visibility -'p3020' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'p3021' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'p3022' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'p3023' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'p3024' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'p3025' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'p3026' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'p3027' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'p3028' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'p3029' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'p3030' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'p3031' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'p3037' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'p3038' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'p3041' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'p3042' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'p3045' = { - table2Version = 3 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'p3046' = { - table2Version = 3 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'p3047' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'p3048' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'p3049' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'p3050' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'p3053' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'p3054' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'p3055' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'p3056' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'p3059' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'p3060' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'p3063' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'p3064' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'p3067' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'p3068' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'p3069' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'p3070' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'p3077' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'p3080' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'p3082' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'p3086' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Salinity -'p3088' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } -#Density -'p3089' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'p3091' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'p3092' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'p3093' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'p3094' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'p3095' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'p3096' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'p3097' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'p3098' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'p3099' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'p3100' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'p3101' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'p3102' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'p3103' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'p3104' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'p3105' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'p3106' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'p3107' = { - table2Version = 3 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'p3108' = { - table2Version = 3 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'p3109' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'p3110' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'p3111' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'p3112' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'p3113' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'p3114' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'p3115' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'p3116' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'p3117' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'p3119' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'p3120' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'p3124' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'p3125' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'p3126' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } -#Image data -'p3127' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'strf' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'u10' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'v10' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'t2m' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'p3062' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sd' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'p260102' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'p3003' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'p3005' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'p3008' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'p3009' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'p3014' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'p3015' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'p3016' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'p3017' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'p3018' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'p3019' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } -#Visibility -'p3020' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'p3021' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'p3022' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'p3023' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'p3024' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'p3025' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'p3026' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'p3027' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'p3028' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'p3029' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'p3030' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'p3031' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'p3037' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'p3038' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'p3041' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'p3042' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'p3045' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'p3046' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'p3047' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'p3048' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'p3049' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'p3050' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'p3053' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'p3054' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'p3055' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'p3056' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'p3059' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'p3060' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'p3063' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'p3064' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'p3067' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'p3068' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'p3069' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'p3070' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'p3077' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'p3080' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'p3082' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'p3086' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Salinity -'p3088' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } -#Density -'p3089' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'p3091' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'p3092' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'p3093' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'p3094' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'p3095' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'p3096' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'p3097' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'p3098' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'p3099' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'p3100' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'p3101' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'p3102' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'p3103' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'p3104' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'p3105' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'p3106' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'p3107' = { - table2Version = 2 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'p3108' = { - table2Version = 2 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'p3109' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'p3110' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'p3111' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'p3112' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'p3113' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'p3114' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'p3115' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'p3116' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'p3117' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'p3119' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'p3120' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'p3124' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'p3125' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'p3126' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } -#Image data -'p3127' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'strf' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'u10' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'v10' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'t2m' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'p3062' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sd' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'p260102' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'p3003' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'p3005' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'p3008' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'p3009' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'p3014' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'p3015' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'p3016' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'p3017' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'p3018' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'p3019' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'p3020' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'p3021' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'p3022' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'p3023' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'p3024' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'p3025' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'p3026' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'p3027' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'p3028' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'p3029' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'p3030' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'p3031' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'p3037' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'p3038' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'p3041' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'p3042' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'p3045' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'p3046' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'p3047' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'p3048' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'p3049' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'p3050' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'p3053' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'p3054' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'p3055' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'p3056' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'p3059' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'p3060' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'p3063' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'p3064' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'p3067' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'p3068' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'p3069' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'p3070' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'p3077' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'p3080' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'p3082' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'p3086' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Salinity -'p3088' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'p3089' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'p3091' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'p3092' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'p3093' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'p3094' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'p3095' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'p3096' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'p3097' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'p3098' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'p3099' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'p3100' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'p3101' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'p3102' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'p3103' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'p3104' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'p3105' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'p3106' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'p3107' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'p3108' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'p3109' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'p3110' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'p3111' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'p3112' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'p3113' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'p3114' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'p3115' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'p3116' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'p3117' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'p3119' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'p3120' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'p3124' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'p3125' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'p3126' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'p3127' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; -} diff --git a/eccodes/definitions.save/grib1/cluster_domain.def b/eccodes/definitions.save/grib1/cluster_domain.def deleted file mode 100644 index 1cff2a5c..00000000 --- a/eccodes/definitions.save/grib1/cluster_domain.def +++ /dev/null @@ -1,7 +0,0 @@ -'a' = { northernLatitudeOfDomain=70000; westernLongitudeOfDomain=332500; southernLatitudeOfDomain=40000; easternLongitudeOfDomain=10000; } -'b' = { northernLatitudeOfDomain=72500; westernLongitudeOfDomain=0; southernLatitudeOfDomain=50000; easternLongitudeOfDomain=45000; } -'c' = { northernLatitudeOfDomain=57500; westernLongitudeOfDomain=345000; southernLatitudeOfDomain=32500; easternLongitudeOfDomain=17500; } -'d' = { northernLatitudeOfDomain=57500; westernLongitudeOfDomain=2500; southernLatitudeOfDomain=32500; easternLongitudeOfDomain=42500; } -'e' = { northernLatitudeOfDomain=75000; westernLongitudeOfDomain=340000; southernLatitudeOfDomain=30000; easternLongitudeOfDomain=45000; } -'f' = { northernLatitudeOfDomain=60000; westernLongitudeOfDomain=310000; southernLatitudeOfDomain=40000; easternLongitudeOfDomain=0; } - diff --git a/eccodes/definitions.save/grib1/data.grid_ieee.def b/eccodes/definitions.save/grib1/data.grid_ieee.def deleted file mode 100644 index be40b7ea..00000000 --- a/eccodes/definitions.save/grib1/data.grid_ieee.def +++ /dev/null @@ -1,42 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -# For grib1 -> grib2 -#constant dataRepresentationTemplateNumber = ?; - -# TODO -codetable[1] precision "grib1/precision.table" = 2 : dump,edition_specific; -position offsetBeforeData; -if( bitmapPresent || !GDSPresent ) { - # For grib1 -> grib2 - constant bitMapIndicator = 0; - meta codedValues data_raw_packing( - section4Length, - offsetBeforeData, - offsetSection4, - numberOfCodedValues, - precision - ); - meta values data_apply_bitmap(codedValues, - bitmap,missingValue,binaryScaleFactor) : dump; - alias data.packedValues = codedValues; -} else { - # For grib1 -> grib2 - constant bitMapIndicator = 255; - - meta values data_raw_packing( - section4Length, - offsetBeforeData, - offsetSection4, - numberOfCodedValues, - precision - ); - alias data.packedValues = values; -} - -meta numberOfCodedValues number_of_values_data_raw_packing(values,precision); - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_jpeg.def b/eccodes/definitions.save/grib1/data.grid_jpeg.def deleted file mode 120000 index 6acfdfc9..00000000 --- a/eccodes/definitions.save/grib1/data.grid_jpeg.def +++ /dev/null @@ -1 +0,0 @@ -data.grid_simple.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/data.grid_second_order.def b/eccodes/definitions.save/grib1/data.grid_second_order.def deleted file mode 100644 index d517d26b..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order.def +++ /dev/null @@ -1,178 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned [2] N2 : dump; -unsigned [2] codedNumberOfGroups : no_copy ; -unsigned [2] numberOfSecondOrderPackedValues : dump; - -# used to extend -unsigned [1] extraValues=0 : hidden, edition_specific; - -meta numberOfGroups evaluate(codedNumberOfGroups + 65536 * extraValues); - -unsigned [1] widthOfWidths : dump; -unsigned [1] widthOfLengths : dump; -unsigned [2] NL : dump; - -if (orderOfSPD) { - unsigned[1] widthOfSPD ; - meta SPD spd(widthOfSPD,orderOfSPD) : read_only; -} - - -meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; -meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; -meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; -meta countOfGroupLengths sum(groupLengths); - -transient numberOfCodedValues=countOfGroupLengths+orderOfSPD; -#transient numberOfCodedValues=countOfGroupLengths; -meta bitsPerValue second_order_bits_per_value(codedValues,binaryScaleFactor,decimalScaleFactor); - - -position offsetBeforeData; -if(bitmapPresent) { - meta codedValues data_g1second_order_general_extended_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - codedNumberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ): read_only; - alias data.packedValues = codedValues; - - if (boustrophedonicOrdering) - { - if (GRIBEX_boustrophedonic) - { - meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; - } - else - { - meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; - } - meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } - else - { - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - } -} else { - if (boustrophedonicOrdering) { - - meta codedValues data_g1second_order_general_extended_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - codedNumberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ) : read_only; - meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } else { - meta values data_g1second_order_general_extended_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - codedNumberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ) : dump; - alias codedValues=values; - } - alias data.packedValues = values; -} - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def deleted file mode 120000 index 0dd04689..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_SPD1.def +++ /dev/null @@ -1 +0,0 @@ -data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def deleted file mode 120000 index 0dd04689..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_SPD2.def +++ /dev/null @@ -1 +0,0 @@ -data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def b/eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def deleted file mode 120000 index 0dd04689..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_SPD3.def +++ /dev/null @@ -1 +0,0 @@ -data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def b/eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def deleted file mode 100644 index 9feeade6..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_constant_width.def +++ /dev/null @@ -1,149 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned [2] N2 : dump; -unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; -unsigned [2] numberOfSecondOrderPackedValues : dump; - -# used to extend -unsigned [1] extraValues=0 : hidden, edition_specific; - -meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); - -unsigned[1] groupWidth :dump; -meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); - -position offsetBeforeData; - -if(bitmapPresent) { - meta codedValues data_g1second_order_constant_width_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidth - - ): read_only; - alias data.packedValues = codedValues; - - if (boustrophedonicOrdering) - { - if (GRIBEX_boustrophedonic) - { - meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; - } - else - { - meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; - } - meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } - else - { - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - } - -} else { - - if (boustrophedonicOrdering) { - meta codedValues data_g1second_order_constant_width_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidth - - ) : read_only; - meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } else { - meta values data_g1second_order_constant_width_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidth - - ) : dump; - } - alias data.packedValues = values; -} - -transient numberOfCodedValues = numberOfSecondOrderPackedValues; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def b/eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def deleted file mode 100644 index 7548225a..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_general_grib1.def +++ /dev/null @@ -1,148 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned [2] N2 : dump; -unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; -unsigned [2] numberOfSecondOrderPackedValues : dump; - -# used to extend -unsigned [1] extraValues=0 : hidden, edition_specific; - -meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); - -unsigned[1] groupWidths[numberOfGroups] :dump; -meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); - -position offsetBeforeData; - -if(bitmapPresent) { - meta codedValues data_g1second_order_general_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidths - - ): read_only; - alias data.packedValues = codedValues; - - if (boustrophedonicOrdering) - { - if (GRIBEX_boustrophedonic) - { - meta preBitmapValues data_apply_boustrophedonic_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor,numberOfRows,numberOfColumns,numberOfPoints): read_only; - } - else - { - meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; - } - meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } - else - { - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - } - -} else { - if (boustrophedonicOrdering) { - meta values data_g1second_order_general_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidths - - ) : dump; - meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } else { - meta values data_g1second_order_general_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - bitmap, - groupWidths - - ) : dump; - } - alias data.packedValues = values; -} - -transient numberOfCodedValues = numberOfSecondOrderPackedValues; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def b/eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def deleted file mode 120000 index 0dd04689..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_no_SPD.def +++ /dev/null @@ -1 +0,0 @@ -data.grid_second_order.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def b/eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def deleted file mode 100644 index 8368f443..00000000 --- a/eccodes/definitions.save/grib1/data.grid_second_order_row_by_row.def +++ /dev/null @@ -1,95 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned [2] N2 : dump; -unsigned [2] codedNumberOfFirstOrderPackedValues : no_copy ; -unsigned [2] numberOfSecondOrderPackedValues : dump; - -# used to extend -unsigned [1] extraValues=0 : hidden, edition_specific; - -meta numberOfGroups evaluate(codedNumberOfFirstOrderPackedValues + 65536 * extraValues); - -unsigned[1] groupWidths[numberOfGroups] :dump; -meta bitsPerValue second_order_bits_per_value(values,binaryScaleFactor,decimalScaleFactor); - -position offsetBeforeData; - -if(bitmapPresent) { - meta codedValues data_g1second_order_row_by_row_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - groupWidths, - bitmap - - ): read_only; - alias data.packedValues = codedValues; - - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; -} else { - - meta values data_g1second_order_row_by_row_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - N1, - N2, - numberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - Ni, - Nj, - pl, - jPointsAreConsecutive, - groupWidths - - ) : dump; - alias data.packedValues = values; -} - -transient numberOfCodedValues = numberOfSecondOrderPackedValues; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_simple.def b/eccodes/definitions.save/grib1/data.grid_simple.def deleted file mode 100644 index 638d3cb2..00000000 --- a/eccodes/definitions.save/grib1/data.grid_simple.def +++ /dev/null @@ -1,69 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; -constant constantFieldHalfByte=8; - -# For grib1 -> grib2 -#constant dataRepresentationTemplateNumber = 0; - -position offsetBeforeData; - -if( bitmapPresent || !GDSPresent ) { - # For grib1 -> grib2 - constant bitMapIndicator = 0; - - meta codedValues data_g1simple_packing( - #simple_packing args - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1simple_packing args - halfByte, - packingType, - grid_ieee,precision - ) : read_only; - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - alias data.packedValues = codedValues; -} else { - - # For grib1 -> grib2 - constant bitMapIndicator = 255; - - meta values data_g1simple_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte, - packingType, - grid_ieee,precision - ) : dump; - alias data.packedValues = values; -} - - - -meta numberOfCodedValues number_of_coded_values(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.grid_simple_matrix.def b/eccodes/definitions.save/grib1/data.grid_simple_matrix.def deleted file mode 100644 index 9ef57800..00000000 --- a/eccodes/definitions.save/grib1/data.grid_simple_matrix.def +++ /dev/null @@ -1,181 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -#used in packing -constant constantFieldHalfByte=0; - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -unsigned[2] octetAtWichPackedDataBegins; -flags[1] extendedFlag "grib1/11-2.table"; - -flagbit matrixOfValues(extendedFlag,3) : dump; -flagbit secondaryBitmapPresent(extendedFlag,2) : dump; -flagbit secondOrderOfDifferentWidth(extendedFlag,1) : dump; - -alias secondOrderValuesDifferentWidths = secondOrderOfDifferentWidth; -alias secondaryBitMap=secondaryBitmapPresent; - -unsigned[2] NR : dump; -alias firstDimension = NR; - -unsigned[2] NC : dump; -alias secondDimension = NC; - -flags[1] coordinateFlag1 "grib1/12.table" : dump; -alias firstDimensionCoordinateValueDefinition = coordinateFlag1; - -unsigned[1] NC1 : dump; -alias numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction = NC1; - - -flags[1] coordinateFlag2 "grib1/12.table" : dump; -alias secondDimensionCoordinateValueDefinition = coordinateFlag2; - -unsigned[1] NC2 : dump; -alias numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction = NC2; - -flags[1] physicalFlag1 "grib1/13.table" : dump; -alias firstDimensionPhysicalSignificance = physicalFlag1; # TODO: Check if grib1 and 2 table are the same - - -flags[1] physicalFlag2 "grib1/13.table" : dump; -alias secondDimensionPhysicalSignificance = physicalFlag2; # TODO: Check if grib1 and 2 table are the same - -ibmfloat coefsFirst[NC1] : dump; - -ibmfloat coefsSecond[NC2] : dump; - -alias data.coefsFirst = coefsFirst; -alias data.coefsSecond=coefsSecond; - -position offsetBeforeData; - -if(matrixOfValues == 0) -{ - constant matrixBitmapsPresent = 0; - position offsetBeforeData; - - if(bitmapPresent) { - - # For grib1 -> grib2 - constant bitMapIndicator = 0; - - meta codedValues data_g1simple_packing ( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte, - packingType, - grid_ieee - ) : read_only; - alias data.packedValues = codedValues; - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - # See GRIB-262: The octetAtWichPackedDataBegins cannot be set to a value bigger than 65535! - # This is historic stuff which no longer applies - # when(changed(values)) {set octetAtWichPackedDataBegins=numberOfCodedValues;} - } else { - # For grib1 -> grib2 - constant bitMapIndicator = 255; - - meta values data_g1simple_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte - ) : dump; - - alias data.packedValues = values; - } -} else { - #if(secondaryBitmapPresent == 0) { meta error not_implemented(); } - - constant matrixBitmapsPresent = 1; - constant bitMapIndicator = 0; - -# From GRIBEX: -# -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# ! ! -# ! This is the WMO definition, but it is entirely ! -# ! inadequate when secondary bit maps are present ! -# ! eg 3x3 global grid with a matrix of values ! -# ! 12x26 at each point. This gives a bit map with ! -# ! a length of 285480 octets which cannot be given! -# ! in 16 bits. ! -# ! ! -# ! ECMWF uses the following definition for its ! -# ! wave model data. ! -# ! N - Number of secondary bit maps ! -# ! (ie the number of points which are 'not ! -# ! missing'). ! -# ! This definition will accommodate a 1x1 ! -# ! degree global grid. ! -# ! ! -# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# - - constant datumSize = NC*NR; - transient secondaryBitmapsCount = octetAtWichPackedDataBegins*datumSize; # - transient secondaryBitmapsSize = secondaryBitmapsCount/8; - - #alias numberOfDataPoints = secondaryBitmapsCount; # grib 1 -> 2 - - position offsetBBitmap; - - meta secondaryBitmaps g1bitmap( - dummy, - missingValue, - offsetBBitmap, - secondaryBitmapsSize, - dummy) : read_only; - - position offsetBeforeData; - - meta codedValues data_g1simple_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte - ) : read_only; - - alias data.packedValues = codedValues; - - constant expandBy = NC*NR; - meta secondaryBitmap data_g1secondary_bitmap(bitmap,secondaryBitmaps,missingValue,expandBy,octetAtWichPackedDataBegins); - - meta values data_apply_bitmap(codedValues,secondaryBitmap,missingValue,binaryScaleFactor) : dump; - -} -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; -meta numberOfCodedValues number_of_coded_values(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib1/data.spectral_complex.def b/eccodes/definitions.save/grib1/data.spectral_complex.def deleted file mode 100644 index ebdf60d4..00000000 --- a/eccodes/definitions.save/grib1/data.spectral_complex.def +++ /dev/null @@ -1,138 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -# For grib1 -> grib2 - -#constant dataRepresentationTemplateNumber = 51; - -constant PUnset = -32767; - - unsigned[2] N : read_only,dump; - signed[2] P = PUnset ; - - unsigned[1] JS=0 : dump; - unsigned[1] KS=0 : dump; - unsigned[1] MS=0 : dump; - - alias subSetJ=JS ; - alias subSetK=KS ; - alias subSetM=MS ; - - constant GRIBEXShBugPresent = 1; - if (gribex_mode_on()) { - transient computeLaplacianOperator=0 : hidden; - } else { - transient computeLaplacianOperator=1 : hidden; - } - - meta data.laplacianOperator scale(P,oneConstant,grib1divider,truncateLaplacian) : dump; - meta laplacianOperatorIsSet evaluate(P != PUnset && !computeLaplacianOperator ); - - if (localUsePresent) { - if (changed(localDefinitionNumber)) { - transient TS = 0 ; - meta TScalc spectral_truncation(JS,KS,MS,TS) : read_only,hidden; - meta Nassigned octect_number(N,4*TScalc) : hidden ; - } - } - - position offsetBeforeData; - meta values data_g1complex_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM, - - halfByte, - N,packingType,spectral_ieee,precision - ) : dump ; - - meta data.packedValues data_sh_packed( - section4Length, - offsetBeforeData, - offsetSection4, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - - meta data.unpackedValues data_sh_unpacked( - section4Length, - offsetBeforeData, - offsetSection4, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -# nearest sh(values,radius,J,K,M); - -meta numberOfCodedValues g1number_of_coded_values_sh_complex(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues,subSetJ,subSetK,subSetM) : dump; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib1/data.spectral_ieee.def b/eccodes/definitions.save/grib1/data.spectral_ieee.def deleted file mode 100644 index 21a083e2..00000000 --- a/eccodes/definitions.save/grib1/data.spectral_ieee.def +++ /dev/null @@ -1,134 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -# For grib1 -> grib2 - -#constant dataRepresentationTemplateNumber = 51; - -constant PUnset = -32767; - - unsigned[2] N : read_only,dump; - signed[2] P = PUnset ; - - unsigned[1] JS=0 : dump; - unsigned[1] KS=0 : dump; - unsigned[1] MS=0 : dump; - - alias subSetJ=JS ; - alias subSetK=KS ; - alias subSetM=MS ; - - constant GRIBEXShBugPresent = 1; - transient computeLaplacianOperator=0; - - meta data.laplacianOperator scale(P,oneConstant,grib1divider,truncateLaplacian) : dump; - meta laplacianOperatorIsSet evaluate(P != PUnset && !computeLaplacianOperator ); - - if (localUsePresent) { - if (changed(localDefinitionNumber)) { - transient TS = 0 ; - meta TScalc spectral_truncation(JS,KS,MS,TS) : read_only,hidden; - meta Nassigned octect_number(N,4*TScalc) : hidden ; - } - } - - position offsetBeforeData; - meta values data_g1complex_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM, - - halfByte, - N,packingType,spectral_ieee,precision - ) : dump ; - - meta data.packedValues data_sh_packed( - section4Length, - offsetBeforeData, - offsetSection4, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - - meta data.unpackedValues data_sh_unpacked( - section4Length, - offsetBeforeData, - offsetSection4, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - ieeeFloats, - - laplacianOperatorIsSet, - laplacianOperator, - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ibm) : no_copy; - -# nearest sh(values,radius,J,K,M); - -meta numberOfCodedValues g1number_of_coded_values_sh_complex(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues,subSetJ,subSetK,subSetM) : dump; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib1/data.spectral_simple.def b/eccodes/definitions.save/grib1/data.spectral_simple.def deleted file mode 100644 index 939f1d64..00000000 --- a/eccodes/definitions.save/grib1/data.spectral_simple.def +++ /dev/null @@ -1,40 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# moved here to allow different bitsPerValue in second order packing -unsigned[1] bitsPerValue : dump ; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -# For grib1 -> grib2 -#constant dataRepresentationTemplateNumber = 50; - -ibmfloat realPart ; -position offsetBeforeData; -transient P=0; - -_if (gribex_mode_on()) { - transient computeLaplacianOperator=0 : hidden; -} else { - transient computeLaplacianOperator=1 : hidden; -} - -meta codedValues data_g1simple_packing( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte -): read_only; - -meta values data_g1shsimple_packing(codedValues,realPart) : dump; -alias data.packedValues = values; -meta numberOfCodedValues g1number_of_coded_values_sh_simple(bitsPerValue,offsetBeforeData,offsetAfterData,halfByte,numberOfValues) : dump; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib1/gds_not_present_bitmap.def b/eccodes/definitions.save/grib1/gds_not_present_bitmap.def deleted file mode 100644 index 735087dc..00000000 --- a/eccodes/definitions.save/grib1/gds_not_present_bitmap.def +++ /dev/null @@ -1,23 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# SECTION 3, Bit-map section -position offsetSection3; -transient section3Length=1; -meta section3Pointer section_pointer(offsetSection3,section3Length,3); - -# Number of unused bits at end of Section 3 -transient numberOfUnusedBitsAtEndOfSection3 = 0 : read_only; - -# Table reference: -transient tableReference = 0; - -#position offsetBeforeBitmap; -meta bitmap gds_not_present_bitmap( missingValue,numberOfValues, - numberOfPoints, - latitudeOfFirstGridPoint, - Ni,numberOfUnusedBitsAtEndOfSection3) : read_only; - -#position offsetAfterBitmap; - -#padtoeven padding_sec3_1(offsetSection3,section3Length); -#section_padding section3Padding; diff --git a/eccodes/definitions.save/grib1/grid.192.78.3.10.table b/eccodes/definitions.save/grib1/grid.192.78.3.10.table deleted file mode 100755 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib1/grid.192.78.3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib1/grid.192.78.3.9.table b/eccodes/definitions.save/grib1/grid.192.78.3.9.table deleted file mode 100755 index 800c0825..00000000 --- a/eccodes/definitions.save/grib1/grid.192.78.3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib1/grid_21.def b/eccodes/definitions.save/grib1/grid_21.def deleted file mode 100644 index 79d552a4..00000000 --- a/eccodes/definitions.save/grib1/grid_21.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 21 - -constant Ni = 37; -constant Nj = 37; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 180000; - -constant latitudeOfFirstGridPoint = 0; -constant latitudeOfLastGridPoint = 90000; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 2500; - -constant numberOfDataPoints=1369; -constant numberOfValues=1333 ; - diff --git a/eccodes/definitions.save/grib1/grid_22.def b/eccodes/definitions.save/grib1/grid_22.def deleted file mode 100644 index c9c0dd78..00000000 --- a/eccodes/definitions.save/grib1/grid_22.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 22 - -constant Ni = 37; -constant Nj = 37; - -constant longitudeOfFirstGridPoint = -180000; -constant longitudeOfLastGridPoint = 0; - -constant latitudeOfFirstGridPoint = 0; -constant latitudeOfLastGridPoint = 90000; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 2500; - -constant numberOfDataPoints=1369; -constant numberOfValues=1333 ; - diff --git a/eccodes/definitions.save/grib1/grid_23.def b/eccodes/definitions.save/grib1/grid_23.def deleted file mode 100644 index 0d24337c..00000000 --- a/eccodes/definitions.save/grib1/grid_23.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 23 - -constant Ni = 37; -constant Nj = 37; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 180000; - -constant latitudeOfFirstGridPoint = -90000; -constant latitudeOfLastGridPoint = 0; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 2500; - -constant numberOfDataPoints=1369; -constant numberOfValues=1333 ; - diff --git a/eccodes/definitions.save/grib1/grid_24.def b/eccodes/definitions.save/grib1/grid_24.def deleted file mode 100644 index 15d582e4..00000000 --- a/eccodes/definitions.save/grib1/grid_24.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 24 - -constant Ni = 37; -constant Nj = 37; - -constant longitudeOfFirstGridPoint = -180000; -constant longitudeOfLastGridPoint = 0; - -constant latitudeOfFirstGridPoint = -90000; -constant latitudeOfLastGridPoint = 0; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 2500; - -constant numberOfDataPoints=1369; -constant numberOfValues=1333 ; - diff --git a/eccodes/definitions.save/grib1/grid_25.def b/eccodes/definitions.save/grib1/grid_25.def deleted file mode 100644 index 07ab7f8c..00000000 --- a/eccodes/definitions.save/grib1/grid_25.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 25 - -constant Ni = 72; -constant Nj = 19; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 355000; - -constant latitudeOfFirstGridPoint = 0; -constant latitudeOfLastGridPoint = 90000; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 5000; - -constant numberOfDataPoints=1368; -constant numberOfValues=1297 ; - diff --git a/eccodes/definitions.save/grib1/grid_26.def b/eccodes/definitions.save/grib1/grid_26.def deleted file mode 100644 index 746b9f8e..00000000 --- a/eccodes/definitions.save/grib1/grid_26.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 26 - -constant Ni = 72; -constant Nj = 19; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 355000; - -constant latitudeOfFirstGridPoint = -90000; -constant latitudeOfLastGridPoint = 0; - -constant iDirectionIncrement = 5000; -constant jDirectionIncrement = 5000; - -constant numberOfDataPoints=1368; -constant numberOfValues=1297 ; diff --git a/eccodes/definitions.save/grib1/grid_61.def b/eccodes/definitions.save/grib1/grid_61.def deleted file mode 100644 index 625fd7be..00000000 --- a/eccodes/definitions.save/grib1/grid_61.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 61 - -constant Ni = 91; -constant Nj = 46; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 180000; - -constant latitudeOfFirstGridPoint = 0; -constant latitudeOfLastGridPoint = 90000; - -constant iDirectionIncrement = 2000; -constant jDirectionIncrement = 2000; - -constant numberOfDataPoints=4186; -constant numberOfValues=4096 ; - diff --git a/eccodes/definitions.save/grib1/grid_62.def b/eccodes/definitions.save/grib1/grid_62.def deleted file mode 100644 index 3c62c810..00000000 --- a/eccodes/definitions.save/grib1/grid_62.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 62 - -constant Ni = 91; -constant Nj = 46; - -constant longitudeOfFirstGridPoint = -180000; -constant longitudeOfLastGridPoint = 0; - -constant latitudeOfFirstGridPoint = 0; -constant latitudeOfLastGridPoint = 90000; - -constant iDirectionIncrement = 2000; -constant jDirectionIncrement = 2000; - -constant numberOfDataPoints=4186; -constant numberOfValues=4096 ; diff --git a/eccodes/definitions.save/grib1/grid_63.def b/eccodes/definitions.save/grib1/grid_63.def deleted file mode 100644 index c1d03763..00000000 --- a/eccodes/definitions.save/grib1/grid_63.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Predefined grid 63 - -constant Ni = 91; -constant Nj = 46; - -constant longitudeOfFirstGridPoint = 0; -constant longitudeOfLastGridPoint = 180000; - -constant latitudeOfFirstGridPoint = -90000; -constant latitudeOfLastGridPoint = 0; - -constant iDirectionIncrement = 2000; -constant jDirectionIncrement = 2000; - -constant numberOfDataPoints=4186; -constant numberOfValues=4096 ; - diff --git a/eccodes/definitions.save/grib1/grid_64.def b/eccodes/definitions.save/grib1/grid_64.def deleted file mode 100644 index dd1ecf8b..00000000 --- a/eccodes/definitions.save/grib1/grid_64.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- ECMWF. -# Predefined grid 21 - -constant Ni = 91; -constant Nj = 46; - -constant longitudeOfFirstGridPoint = -180000; -constant longitudeOfLastGridPoint = 0; - -constant latitudeOfFirstGridPoint = -90000; -constant latitudeOfLastGridPoint = 0; - -constant iDirectionIncrement = 2000; -constant jDirectionIncrement = 2000; - -constant numberOfDataPoints=4186; -constant numberOfValues=4096 ; - diff --git a/eccodes/definitions.save/grib1/grid_definition_0.def b/eccodes/definitions.save/grib1/grid_definition_0.def deleted file mode 100644 index c30b702d..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_0.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION latitude/longitude grid - equidistant cylindrical or Plate Carree projection - -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 0; - -template commonBlock "grib1/grid_definition_latlon.def"; - -# Padding - See GRIB-370 -ascii[4] zeros : read_only; diff --git a/eccodes/definitions.save/grib1/grid_definition_1.def b/eccodes/definitions.save/grib1/grid_definition_1.def deleted file mode 100644 index 14caa71a..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_1.def +++ /dev/null @@ -1,74 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Mercator projection -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 20; - -signed[2] Ni : dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx=Ni; -alias geography.Ni=Ni; -alias numberOfPointsAlongXAxis=Ni; - -signed[2] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Nx=Nj; -alias geography.Nj=Nj; -alias numberOfPointsAlongYAxis=Nj; - -include "grib1/grid_first_last_resandcomp.def"; - -signed[3] Latin : edition_specific,no_copy; -meta geography.LaDInDegrees scale(Latin,oneConstant,grib1divider,truncateDegrees) : dump; - -pad padding_grid1_1(1); - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; - -include "grib1/scanning_mode.def"; - -signed[3] DiInMetres: dump; -alias longitudinalDirectionGridLength=DiInMetres; -alias Di=DiInMetres; -alias geography.DiInMetres=DiInMetres; -alias DxInMetres = DiInMetres; - -signed[3] DjInMetres: dump; -alias latitudinalDirectionGridLength=DjInMetres; -alias Dj=DjInMetres; -alias geography.DjInMetres=DjInMetres; -alias DyInMetres = DjInMetres; - -constant orientationOfTheGridInDegrees=0; - -pad padding_grid1_2(8); - -meta numberOfDataPoints number_of_points(Ni,Nj) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -iterator mercator(numberOfPoints,missingValue,values, - radius,Ni,Nj, - latitudeOfFirstGridPointInDegrees, longitudeOfFirstGridPointInDegrees, - LaDInDegrees, - latitudeOfLastGridPointInDegrees, longitudeOfLastGridPointInDegrees, - orientationOfTheGridInDegrees, - DiInMetres,DjInMetres, - iScansNegatively, - jScansPositively, - jPointsAreConsecutive, - alternativeRowScanning); - -nearest mercator(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib1/grid_definition_10.def b/eccodes/definitions.save/grib1/grid_definition_10.def deleted file mode 100644 index 8d5f75fd..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_10.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION rotated latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 1; - -template commonBlock "grib1/grid_definition_latlon.def"; - -ascii[4] zeros : read_only; - -# Rotation parameters -include "grib1/grid_rotation.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_13.def b/eccodes/definitions.save/grib1/grid_definition_13.def deleted file mode 100644 index ffc42aba..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_13.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Oblique Lambert conformal, secant or tangent, conic or bi-polar -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 30; - -template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions.save/grib1/grid_definition_14.def b/eccodes/definitions.save/grib1/grid_definition_14.def deleted file mode 100644 index 3249069a..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_14.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Rotated Gaussian latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 41; - -template commonBlock "grib1/grid_definition_gaussian.def"; - -# Rotation parameters -include "grib1/grid_rotation.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_192.78.def b/eccodes/definitions.save/grib1/grid_definition_192.78.def deleted file mode 100755 index e70f7019..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_192.78.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# DWD local grid definition 192 - triangular grid base on icosahedron subdivision - -# n2 - exponent of 2 for the number of intervals on main triangle sides -unsigned[2] n2 : dump ; - -# n3 - exponent of 3 for the number of intervals on main triangle sides -unsigned[2] n3 : dump ; - -# nd - Number of diamonds -unsigned[3] nd : dump ; -alias numberOfDiamonds=nd; -alias Nj=nd; - -# Ni - number of intervals on main triangle sides of the icosahedron -unsigned[3] Ni : dump ; - -# Numbering order of diamonds -flags[1] numberingOrderOfDiamonds 'grib1/grid.192.78.3.9.table'; - -# Latitude of the pole point of the icosahedron on the sphere -signed[4] latitudeOfIcosahedronPole : dump ; - -# Longitude of the pole point of the icosahedron on the sphere -unsigned[4] longitudeOfIcosahedronPole : dump ; - -# Longitude of the centre line of the first diamond of the icosahedron on the sphere -unsigned[4] longitudeOfFirstDiamondCenterLine : dump ; - -# Reserved -unsigned[1] reservedOctet; - -# Scanning mode for one diamond -flags[1] scanningModeForOneDiamond 'grib1/grid.192.78.3.10.table'; - -transient numberOfPoints= nd *(Ni + 1) * (Ni + 1); -alias numberOfDataPoints=numberOfPoints; - -meta numberOfValues -number_of_values(values,bitsPerValue,numberOfDataPoints, - bitmapPresent,bitmap,numberOfCodedValues) : dump; - diff --git a/eccodes/definitions.save/grib1/grid_definition_192.98.def b/eccodes/definitions.save/grib1/grid_definition_192.98.def deleted file mode 100644 index 380328e8..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_192.98.def +++ /dev/null @@ -1,23 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION ocean ECMWF convention - -unsigned[2] Ni : dump; -alias numberOfPointsAlongFirstAxis = Ni; -alias Nx = Ni; - -unsigned[2] Nj : dump; -alias numberOfPointsAlongSecondAxis = Nj; -alias Nx = Nj; - -# La1 - latitude of first grid point -signed[3] latitudeOfFirstGridPoint : no_copy; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump,no_copy; -alias La1 = latitudeOfFirstGridPoint : no_copy; - -include "grib1/scanning_mode.def"; - -meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; diff --git a/eccodes/definitions.save/grib1/grid_definition_193.98.def b/eccodes/definitions.save/grib1/grid_definition_193.98.def deleted file mode 100644 index 534c5164..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_193.98.def +++ /dev/null @@ -1,94 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION quasi-regular latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 0; - -unsigned[2] NRj : can_be_missing,dump; - -unsigned[2] numberOfPointsAlongAMeridian : can_be_missing,dump; -alias Nj = numberOfPointsAlongAMeridian; - -# Latitudes and Longitudes of the first and the last points -# Resolution and component flags -include "grib1/grid_first_last_resandcomp.def"; - -unsigned[2] iDirectionIncrement : can_be_missing; -unsigned[2] jDirectionIncrement : can_be_missing; -alias Dj = jDirectionIncrement; -alias Di = iDirectionIncrement; - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; - -include "grib1/scanning_mode.def"; - -# Lar1 - latitude of first grid point of reference domain -signed[3] Lar1 : edition_specific; -meta geography.Lar1InDegrees scale(latitudeOfFirstGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) :dump; -alias La1 = Lar1; - -# Lor1 - longitude of first grid point of reference domain -signed[3] Lor1 : edition_specific; -meta geography.Lor1InDegrees scale(longitudeOfFirstGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo1 = Lor1; - -# Lar2 - latitude of last grid point of reference domain -signed[3] Lar2 : edition_specific; -meta geography.Lar2InDegrees scale(latitudeOfLastGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; -alias La2 = Lar2; - -# Lor2 - longitude of last grid point of reference domain -signed[3] Lor2 ; -meta geography.Lor2InDegrees scale(longitudeOfLastGridPointOfReferenceDomain,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo2 = Lor2; - -meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, - jScansPositively, - latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, - numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : can_be_missing,dump; -#transient DjInMicrodegrees = times(jDirectionIncrement,thousand); - -meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, - iScansPositively, - longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, - Ni,oneConstant,grib1divider,1) : can_be_missing,dump; -#meta DiInMicrodegrees times(iDirectionIncrement,thousand); - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; - -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; -alias DjInDegrees = jDirectionIncrementInDegrees; - -meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -if(missing(Ni)){ - iterator latlon_reduced(numberOfPoints,missingValue,values, - latitudeFirstInDegrees,longitudeFirstInDegrees, - latitudeLastInDegrees,loLast, - Nj,DjInDegrees,pl); - nearest latlon_reduced(values,radius,Nj,pl); -} else { - transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 - iterator latlon(numberOfPoints,missingValue,values,longitudeFirstInDegrees,iInc , - Ni,Nj,iScansNegatively , - latitudeFirstInDegrees,DjInDegrees,jScansPositively,jPointsAreConsecutive, - isRotatedGrid, angleOfRotation, - latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); - nearest regular(values,radius,Ni,Nj); -} -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib1/grid_definition_20.def b/eccodes/definitions.save/grib1/grid_definition_20.def deleted file mode 100644 index 1e3a8146..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_20.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION stretched latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 2; - -template commonBlock "grib1/grid_definition_latlon.def"; - -ascii[4] zeros : read_only; - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_24.def b/eccodes/definitions.save/grib1/grid_definition_24.def deleted file mode 100644 index 314b4b86..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_24.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Stretched Gaussian latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 42; - -template commonBlock "grib1/grid_definition_gaussian.def"; - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_3.def b/eccodes/definitions.save/grib1/grid_definition_3.def deleted file mode 100644 index 86d1bfc7..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_3.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Lambert conformal, secant or tangent, conic or bi-polar -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 30; - -template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions.save/grib1/grid_definition_30.def b/eccodes/definitions.save/grib1/grid_definition_30.def deleted file mode 100644 index c3e4d1b4..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_30.def +++ /dev/null @@ -1,15 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION stretched and rotated latitude/longitude grids -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 3; - -template commonBlock "grib1/grid_definition_latlon.def"; - -ascii[4] zeros : read_only; - -# Rotation parameters -include "grib1/grid_rotation.def" - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_34.def b/eccodes/definitions.save/grib1/grid_definition_34.def deleted file mode 100644 index 252a8e06..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_34.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Stretched and rotated Gaussian latitude/longitude grids -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 43; - -template commonBlock "grib1/grid_definition_gaussian.def"; - -# Rotation parameters -include "grib1/grid_rotation.def" - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_4.def b/eccodes/definitions.save/grib1/grid_definition_4.def deleted file mode 100644 index 12756280..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_4.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Gaussian latitude/longitude grid -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 40; - -template commonBlock "grib1/grid_definition_gaussian.def"; diff --git a/eccodes/definitions.save/grib1/grid_definition_5.def b/eccodes/definitions.save/grib1/grid_definition_5.def deleted file mode 100644 index 341da6b1..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_5.def +++ /dev/null @@ -1,89 +0,0 @@ -# GRID DEFINITION Polar stereographic -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 20; - -unsigned[2] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -unsigned[2] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -signed[3] latitudeOfFirstGridPoint : edition_specific ; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias La1 = latitudeOfFirstGridPoint; - -signed[3] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; - -include "grib1/resolution_flags.def"; - -# LoV - orientation of the grid; i.e. the longitude value of the meridian which is parallel to the Y-axis -signed[3] orientationOfTheGrid ; -meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; -alias LoV = orientationOfTheGrid ; - -# Dx - X-direction grid length -unsigned[3] DxInMetres : dump; -alias xDirectionGridLengthInMetres=DxInMetres; -alias Dx=DxInMetres; -alias geography.DxInMetres=DxInMetres; -alias Di = DxInMetres; - -# Dy - Y-direction grid length -unsigned[3] DyInMetres : dump; -alias yDirectionGridLengthInMetres=DyInMetres; -alias Dy = DyInMetres; -alias Dj = DyInMetres; -alias geography.DyInMetres=DyInMetres; - -constant latitudeWhereDxAndDyAreSpecifiedInDegrees=60; -constant LaDInDegrees=60; -alias geography.LaDInDegrees=LaDInDegrees; - -# Projection centre flag -unsigned[1] projectionCentreFlag : dump ; -alias projectionCenterFlag=projectionCentreFlag; -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -# If bit 1 is 0, then the North Pole is on the projection plane -# If bit 1 is 1, then the South Pole is on the projection plane -flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 - - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; - -include "grib1/scanning_mode.def"; - -pad padding_grid5_1(4); - -meta numberOfDataPoints number_of_points(Nx,Ny,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -iterator polar_stereographic(numberOfPoints,missingValue,values, - radius,Nx,Ny, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - southPoleOnProjectionPlane, - orientationOfTheGridInDegrees, - LaDInDegrees, - Dx,Dy, - iScansNegatively, - jScansPositively, - jPointsAreConsecutive, - alternativeRowScanning); - -nearest polar_stereographic(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib1/grid_definition_50.def b/eccodes/definitions.save/grib1/grid_definition_50.def deleted file mode 100644 index d46a7b22..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_50.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Spherical harmonic coefficients -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 50; - -template commonBlock "grib1/grid_definition_spherical_harmonics.def"; diff --git a/eccodes/definitions.save/grib1/grid_definition_60.def b/eccodes/definitions.save/grib1/grid_definition_60.def deleted file mode 100644 index 0b5efc40..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_60.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Rotated spherical harmonic coefficients -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 51; - -template commonBlock "grib1/grid_definition_spherical_harmonics.def"; - -# Rotation parameters -include "grib1/grid_rotation.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_70.def b/eccodes/definitions.save/grib1/grid_definition_70.def deleted file mode 100644 index 7a510373..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_70.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Stretched spherical harmonics - -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 52; - -template commonBlock "grib1/grid_definition_spherical_harmonics.def"; - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_8.def b/eccodes/definitions.save/grib1/grid_definition_8.def deleted file mode 100644 index 82dac381..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_8.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Albers equal area, secant or tangent, conic or bi-polar -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 31; - -template commonBlock "grib1/grid_definition_lambert.def"; diff --git a/eccodes/definitions.save/grib1/grid_definition_80.def b/eccodes/definitions.save/grib1/grid_definition_80.def deleted file mode 100644 index a85b9ae4..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_80.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRID DEFINITION Stretched and rotated spherical harmonic coefficients - -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 53; - -template commonBlock "grib1/grid_definition_spherical_harmonics.def"; - -# Rotation parameters -include "grib1/grid_rotation.def" - -# Stretching parameters -include "grib1/grid_stretching.def" diff --git a/eccodes/definitions.save/grib1/grid_definition_90.def b/eccodes/definitions.save/grib1/grid_definition_90.def deleted file mode 100644 index 63682ccb..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_90.def +++ /dev/null @@ -1,66 +0,0 @@ -# GRID DEFINITION Space view, perspective or orthographic -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 90; - -unsigned[2] Nx : dump; -alias numberOfPointsAlongXAxis = Nx; -alias Ni = Nx; -alias geography.Nx=Nx; - -unsigned[2] Ny : dump; -alias numberOfPointsAlongYAxis = Ny; -alias Nj = Ny; -alias geography.Ny=Ny; - -signed[3] latitudeOfSubSatellitePoint ; -meta geography.latitudeOfSubSatellitePointInDegrees scale(latitudeOfSubSatellitePoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lap=latitudeOfSubSatellitePoint; - -signed[3] longitudeOfSubSatellitePoint ; -meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lap=longitudeOfSubSatellitePoint; - -include "grib1/resolution_flags.def"; - -unsigned[3] dx : dump; -alias geography.dx=dx; - -unsigned[3] dy : dump; -alias geography.dy=dy; - -unsigned[2] XpInGridLengths : dump; -alias geography.XpInGridLengths=XpInGridLengths; - - -unsigned[2] YpInGridLengths : dump; -alias geography.YpInGridLengths=YpInGridLengths; - -include "grib1/scanning_mode.def"; - -unsigned[3] orientationOfTheGrid : edition_specific ; -meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; - -unsigned[3] NrInRadiusOfEarth : edition_specific,can_be_missing,no_copy; -alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = NrInRadiusOfEarth; - -unsigned[2] Xo : dump; -alias xCoordinateOfOriginOfSectorImage=Xo; -alias geography.Xo=Xo; - -unsigned[2] Yo : dump; -alias yCoordinateOfOriginOfSectorImage=Yo; -alias geography.Yo=Yo; - -#Ce Length is normally 32 + stretched and/or rotated -#Ce parameters + vertical coordinate parameters + list of -#Ce numbers of points. -#Ce (Lambert conformal and Mercator are 42 octets in length, -#Ce while Space view is 40 for ECMWF (44 in GRIB specification) -if ( centre != 98 ) { - pad padding_grid90_1(6); -} - -meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; diff --git a/eccodes/definitions.save/grib1/grid_definition_gaussian.def b/eccodes/definitions.save/grib1/grid_definition_gaussian.def deleted file mode 100644 index f58fc9bf..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_gaussian.def +++ /dev/null @@ -1,96 +0,0 @@ -unsigned[2] Ni : can_be_missing,dump; -alias numberOfPointsAlongAParallel= Ni ; -alias Nx =Ni; - -signed[2] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny=Nj; - -# Latitudes and Longitudes of the first and the last points -# Resolution and component flags -include "grib1/grid_first_last_resandcomp.def"; - -# Di - i direction increment -unsigned[2] iDirectionIncrement : can_be_missing,dump,edition_specific; -meta geography.iDirectionIncrementInDegrees scale(iDirectionIncrement,oneConstant,grib1divider,truncateDegrees) : can_be_missing,dump; -alias Di = iDirectionIncrement; - -# N - number of parallels between a pole and the equator -unsigned[2] N : dump ; -alias numberOfParallelsBetweenAPoleAndTheEquator=N; -alias geography.N=N; - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; - -include "grib1/scanning_mode.def"; - -pad padding_grid4_1(4); - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; - -meta global global_gaussian(N,Ni,iDirectionIncrement, - latitudeOfFirstGridPoint, - longitudeOfFirstGridPoint, - latitudeOfLastGridPoint, - longitudeOfLastGridPoint, - PLPresent,pl) = 0 : dump; - -# With legacy mode support -meta numberOfDataPoints number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,one) : dump; - -# Use the new algorithm for counting. No support for legacy mode -meta numberOfDataPointsExpected number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,zero) : dump; - -meta legacyGaussSubarea evaluate(numberOfDataPoints != numberOfDataPointsExpected); - -alias numberOfPoints=numberOfDataPoints; -# alias numberOfExpectedPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -if(missing(Ni)){ - iterator gaussian_reduced(numberOfPoints,missingValue,values, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, - N,pl,Nj); - nearest reduced(values,radius,Nj,pl); - box reduced_gaussian(latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, - N,pl); - - #meta sumPlArray sum(pl); - #meta dataGlobal evaluate( sumPlArray == (numberOfValues+numberOfMissing) ); -} else { - iterator gaussian(numberOfPoints,missingValue,values,longitudeFirstInDegrees, - DiInDegrees ,Ni,Nj,iScansNegatively , - latitudeFirstInDegrees, latitudeLastInDegrees, - N,jScansPositively); - nearest regular(values,radius,Ni,Nj); - # box regular_gaussian(latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - # latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, - # DiInDegrees,Ni,N,iScansNegatively,jScansPositively); -} - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); - -meta isOctahedral octahedral_gaussian(N, Ni, PLPresent, pl) = 0 : no_copy,dump; - -meta gaussianGridName gaussian_grid_name(N, Ni, isOctahedral); -alias gridName=gaussianGridName; diff --git a/eccodes/definitions.save/grib1/grid_definition_lambert.def b/eccodes/definitions.save/grib1/grid_definition_lambert.def deleted file mode 100644 index aca2b323..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_lambert.def +++ /dev/null @@ -1,113 +0,0 @@ -unsigned[2] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -unsigned[2] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -# La1 - latitude of first grid point -signed[3] latitudeOfFirstGridPoint : edition_specific; -meta geography.latitudeOfFirstGridPointInDegrees - scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias La1 = latitudeOfFirstGridPoint; -alias La1InDegrees=latitudeOfFirstGridPointInDegrees; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,thousand); - - -# Lo1 - longitude of first grid point -signed[3] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees - scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; -alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,thousand); - -# Resolution and component flags -include "grib1/resolution_flags.def"; - -# LoV - orientation of the grid; i.e. the east longitude value of the meridian which is parallel to the Y-axis -signed[3] LoV : edition_specific ; -meta geography.LoVInDegrees - scale(LoV,oneConstant,grib1divider,truncateDegrees) : dump; -alias orientationOfTheGrid = LoV; -alias orientationOfTheGridInDegrees = LoVInDegrees; - -# Dx - X-direction grid length (in units of metres) -unsigned[3] DxInMetres : dump; -alias xDirectionGridLength=DxInMetres; -alias geography.DxInMetres=DxInMetres ; -alias Dx = DxInMetres; -alias Di = DxInMetres; - -# Dy - Y-direction grid length (in units of metres) -unsigned[3] DyInMetres : dump; -alias yDirectionGridLength=DyInMetres; -alias geography.DyInMetres=DyInMetres; -alias Dy= DyInMetres; -alias Dj = DyInMetres; - -unsigned[1] projectionCentreFlag : dump; -# Also add the old spelling of "centre" for backward compatibility -alias projectionCenterFlag=projectionCentreFlag; - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; - -include "grib1/scanning_mode.def"; - -# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere -signed[3] Latin1 : edition_specific; -meta geography.Latin1InDegrees scale(Latin1,oneConstant,grib1divider,truncateDegrees) : dump; -alias firstLatitude=Latin1; -alias firstLatitudeInDegrees=Latin1InDegrees; - -# GRIB Edition 1 does not have the LaD parameter so we use Latin1 instead -constant LaDInDegrees = Latin1InDegrees : dump; -alias geography.LaDInDegrees=LaDInDegrees; - -# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere -signed[3] Latin2 :edition_specific; -alias secondLatitude=Latin2; -meta geography.Latin2InDegrees scale(Latin2,oneConstant,grib1divider,truncateDegrees) : dump; -alias secondLatitudeInDegrees=Latin2InDegrees; - -signed[3] latitudeOfSouthernPole : no_copy; -meta geography.latitudeOfSouthernPoleInDegrees - scale(latitudeOfSouthernPole,oneConstant,grib1divider,truncateDegrees) : dump; - -signed[3] longitudeOfSouthernPole : no_copy; -meta geography.longitudeOfSouthernPoleInDegrees - scale(longitudeOfSouthernPole,oneConstant,grib1divider,truncateDegrees) : dump; - -meta numberOfDataPoints number_of_points(Nx,Ny,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints, - bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -iterator lambert_conformal(numberOfPoints,missingValue,values, - radius,Nx,Ny, - LoVInDegrees,LaDInDegrees, - Latin1InDegrees,Latin2InDegrees, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - Dx,Dy, - iScansNegatively, - jScansPositively, - jPointsAreConsecutive, - alternativeRowScanning); - - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); - -nearest lambert_conformal(values,radius,Nx,Ny); - -pad padding_grid3_1(2); diff --git a/eccodes/definitions.save/grib1/grid_definition_latlon.def b/eccodes/definitions.save/grib1/grid_definition_latlon.def deleted file mode 100644 index 552836fc..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_latlon.def +++ /dev/null @@ -1,66 +0,0 @@ -unsigned[2] Ni : can_be_missing,dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; - -unsigned[2] Nj : can_be_missing,dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj; - -# Latitudes and Longitudes of the first and the last points -# Resolution and component flags -include "grib1/grid_first_last_resandcomp.def"; - -unsigned[2] iDirectionIncrement : can_be_missing, edition_specific; -unsigned[2] jDirectionIncrement : can_be_missing, edition_specific; -alias Dj = jDirectionIncrement; -alias Dy = jDirectionIncrement; -alias Di = iDirectionIncrement; -alias Dx = iDirectionIncrement; - -include "grib1/scanning_mode.def"; - -meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, - jScansPositively, - latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, - numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : can_be_missing,dump; - -alias DjInDegrees=jDirectionIncrementInDegrees; -alias DyInDegrees=jDirectionIncrementInDegrees; - -meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, - iScansPositively, - longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, - Ni,oneConstant,grib1divider,1) : can_be_missing,dump; -alias DiInDegrees=iDirectionIncrementInDegrees; -alias DxInDegrees=iDirectionIncrementInDegrees; - -meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; -alias numberOfPoints=numberOfDataPoints; -meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints, - bitmapPresent,bitmap,numberOfCodedValues) : dump; -#alias ls.valuesCount=numberOfValues; - -if(missing(Ni)){ - iterator latlon_reduced(numberOfPoints,missingValue,values, - latitudeFirstInDegrees,longitudeFirstInDegrees, - latitudeLastInDegrees,longitudeLastInDegrees, - Nj,DjInDegrees,pl); - nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); -} else { - transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 - iterator latlon(numberOfPoints,missingValue,values,longitudeFirstInDegrees, - DiInDegrees ,Ni,Nj,iScansNegatively , - latitudeFirstInDegrees,DjInDegrees, - jScansPositively,jPointsAreConsecutive, - isRotatedGrid, angleOfRotation, - latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); - nearest regular(values,radius,Ni,Nj); -} - - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def b/eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def deleted file mode 100644 index 5041d374..00000000 --- a/eccodes/definitions.save/grib1/grid_definition_spherical_harmonics.def +++ /dev/null @@ -1,35 +0,0 @@ -# GRID DEFINITION spherical harmonic coefficients (including rotated, stretched, or stretched and rotated) - -# J - pentagonal resolution parameter -unsigned[2] J : dump ; -alias pentagonalResolutionParameterJ= J; -alias geography.J=J; - -# K - pentagonal resolution parameter -unsigned[2] K : dump; -alias pentagonalResolutionParameterK=K; -alias geography.K=K; - -# M - pentagonal resolution parameter -unsigned[2] M : dump ; -alias pentagonalResolutionParameterM=M; -alias geography.M=M; - -constant _T = -1 : hidden; -meta numberOfValues spectral_truncation(J,K,M,_T) : dump; -alias numberOfPoints=numberOfValues; -alias numberOfDataPoints=numberOfValues; -#alias ls.valuesCount=numberOfValues; - -# Representation type -codetable[1] representationType 'grib1/9.table' = 1 : no_copy; - -# Representation mode -codetable[1] representationMode 'grib1/10.table' = 2 : no_copy; - -# Set to zero -# (reserved) -pad padding_grid50_1(18); - -# For now, to make section2 happy -constant Nj = 0; diff --git a/eccodes/definitions.save/grib1/grid_first_last_resandcomp.def b/eccodes/definitions.save/grib1/grid_first_last_resandcomp.def deleted file mode 100644 index 268e6313..00000000 --- a/eccodes/definitions.save/grib1/grid_first_last_resandcomp.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# La1 - latitude of first grid point -signed[3] latitudeOfFirstGridPoint : edition_specific; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) :dump; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -signed[3] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; - -include "grib1/resolution_flags.def"; - -# La2 - latitude of last grid point -signed[3] latitudeOfLastGridPoint : edition_specific; -meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias La2 = latitudeOfLastGridPoint; - -# Lo2 - longitude of last grid point -signed[3] longitudeOfLastGridPoint : edition_specific; -meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lo2 = longitudeOfLastGridPoint; - -# for change_scanning_direction -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; - diff --git a/eccodes/definitions.save/grib1/grid_rotation.def b/eccodes/definitions.save/grib1/grid_rotation.def deleted file mode 100644 index 05d49bd2..00000000 --- a/eccodes/definitions.save/grib1/grid_rotation.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -signed[3] latitudeOfSouthernPole : edition_specific; -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole ,oneConstant,grib1divider,truncateDegrees) : dump; - -signed[3] longitudeOfSouthernPole : edition_specific ; -meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole ,oneConstant,grib1divider,truncateDegrees) : dump; - -ibmfloat geography.angleOfRotationInDegrees : dump; - -alias angleOfRotation =angleOfRotationInDegrees; -alias isRotatedGrid = one; diff --git a/eccodes/definitions.save/grib1/grid_stretching.def b/eccodes/definitions.save/grib1/grid_stretching.def deleted file mode 100644 index fac62e6d..00000000 --- a/eccodes/definitions.save/grib1/grid_stretching.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -signed[3] latitudeOfStretchingPole : edition_specific,no_copy; -signed[3] longitudeOfStretchingPole : edition_specific,no_copy; - -meta geography.latitudeOfStretchingPoleInDegrees - scale(latitudeOfStretchingPole,oneConstant,grib1divider,truncateDegrees) : dump; -meta geography.longitudeOfStretchingPoleInDegrees - scale(longitudeOfStretchingPole,oneConstant,grib1divider,truncateDegrees) : dump; -ibmfloat stretchingFactor : dump; -alias geography.stretchingFactor=stretchingFactor; - diff --git a/eccodes/definitions.save/grib1/local.1.def b/eccodes/definitions.save/grib1/local.1.def deleted file mode 100644 index 3c758b20..00000000 --- a/eccodes/definitions.save/grib1/local.1.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Definition for BOM , same as ECWF -unsigned[1] localDefinitionNumber = 1 : dump; -template localDefinition "grib1/local.98.[localDefinitionNumber:l].def"; diff --git a/eccodes/definitions.save/grib1/local.13.table b/eccodes/definitions.save/grib1/local.13.table deleted file mode 100644 index 2cbddc5c..00000000 --- a/eccodes/definitions.save/grib1/local.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE local definition 13 (wave) -0 0 System and method are not included -1 1 System and method are included -2 2 System, method, reference date, climate date (from) and climate date (to) are included -3 3 All information in 2 plus leg information for variable resolution systems are included -4 4 All information in 3 plus 4DVar window info diff --git a/eccodes/definitions.save/grib1/local.214.1.def b/eccodes/definitions.save/grib1/local.214.1.def deleted file mode 100644 index 092bf992..00000000 --- a/eccodes/definitions.save/grib1/local.214.1.def +++ /dev/null @@ -1,51 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START 1/local.98.1 ---------------------------------------------------------------------- -# LOCAL 98 1 -# -# localDefinitionTemplate_001 -# --------------------------- -# -# 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 - -#spareSetToZero 52 PAD n/a 1 -# - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -if(perturbationNumber != 0) -{ - alias number = perturbationNumber; -} - -unsigned[1] numberOfForecastsInEnsemble : dump; -pad padding_local1_1(1); - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -if (stepType is "instant" ) { - if (numberOfForecastsInEnsemble!=0) { - alias productDefinitionTemplateNumber=epsPoint; -} -} else { - if (numberOfForecastsInEnsemble!=0) { - alias productDefinitionTemplateNumber=epsContinous; -} -} - -# monthly mean -#if (timeRangeIndicator==113) { -#} - - -# END 1/local.98.1 ---------------------------------------------------------------------- diff --git a/eccodes/definitions.save/grib1/local.214.244.def b/eccodes/definitions.save/grib1/local.214.244.def deleted file mode 100644 index 20831ab8..00000000 --- a/eccodes/definitions.save/grib1/local.214.244.def +++ /dev/null @@ -1,281 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START 1/local.98.244 ---------------------------------------------------------------------- -# LOCAL 214 98 244 -# -#! -#! localDefinitionTemplate_244 -#! --------------------------- -#! -#! # SREPS Short-Range EPS information -#! -#! Last update: 20070223 -#! -#!Description -#!----------- -#! -#! -#! Compatibility with MARS -#! -#localDefinitionNumber -#Class -#Type -#Stream -#experimentVersionNumber -#Number -#Total -#! -#************_EXPERIMENT_************ -#Experiment_Identifier_1 -#Experiment_Identifier_2 -#Sub-Experiment_Identifier_1 -#Sub-Experiment_Identifier_2 -#! -#************_PRODUCT_*************** -#Original_CodeTable_2_Version_Number -#Original_Parameter_Iden_(CodeTable2) -#Original_Parameter_Identifier_1 -#Original_Parameter_Identifier_2 -#Product_Identifier_1 -#Product_Identifier_2 -#! -#! Thresholds and Distributions -#! -#Threshold_[Distribution]_(0=n,1=yes) -#Threshold_[Distribution]_Units -#At_least__[Distribut._Proportion_Of] -#Less_Than_[To_Overall_Distribution] -#! -#zeroForFutureProducts -#! -#************_ENSEMBLE_************** -#Number_Combination_Ensembles_(1=no) -#Show_Combination_E._[2]_(0=no,1=yes) -#Show_Combination_E._[3]_(0=no,1=yes) -#Show_Combination_E._[4]_(0=no,1=yes) -#zeroForFutureCombinations -#Total_Number_Members_Used -#Total_Number_Members_Possible -#Total_Number_Members_Missing -#Ensemble_Combination_Number -#Ensemble_Identifier_1 -#Ensemble_Identifier_2 -#Local_Number_Members_Used -#Local_Number_Members_Possible -#Local_Number_Members_Missing -#! -#listMembersUsed - LIST - Local_Number_Members_Used -#Used_Model_LBC -#endlistMembersUsed - ENDLIST - listMembersUsed -#! -#listMembersMissing - LIST - Local_Number_Members_Missing -#Missing_Model_LBC -#endlistMembersMissing - ENDLIST - listMembersMissing -#! -#! More than one Combination -#! -#listEnsembleCombination2 - LIST - Show_Combination_E._[2]_(0=no,1=yes) -#Ensemble_Combinat._Number_(0=no)_[2] -#Ensemble_Identifier_1_[2] -#Ensemble_Identifier_2_[2] -#Local_Number_Members_Used_[2] -#Local_Number_Members_Possible_[2] -#Local_Number_Members_Missing_[2] -#Date_[2] -#Hour_[2] -#Minute_[2] -#Time_Range_One_[2] -#Time_Range_Two_[2] -#endlistEnsembleCombination2 - ENDLIST - listEnsembleCombination2 -#! -#listMembersUsed_[2] - LIST - Local_Number_Members_Used_[2] -#Used_Model_LBC_[2] -#endlistMembersUsed_[2] - ENDLIST - listMembersUsed_[2] -#! -#listMembersMissing_[2] - LIST - Local_Number_Members_Missing_[2] -#Missing_Model_LBC_[2] -#endlistMembersMissing_[2] - ENDLIST - listMembersMissing_[2] -#! -#listEnsembleCombination3 - LIST - Show_Combination_E._[3]_(0=no,1=yes) -#Ensemble_Combinat._Number_(0=no)_[3] -#Ensemble_Identifier_1_[3] -#Ensemble_Identifier_1_[3] -#Local_Number_Members_Used_[3] -#Local_Number_Members_Possible_[3] -#Local_Number_Members_Missing_[3] -#Date_[3] -#Hour_[3] -#Minute_[3] -#Time_Range_One_[3] -#Time_Range_Two_[3] -#endlistEnsembleCombination3 - ENDLIST - listEnsembleCombination3 -#! -#listMembersUsed_[3] - LIST - Local_Number_Members_Used_[3] -#Used_Model_LBC_[3] - A4 -#endlistMembersUsed_[3] - ENDLIST - listMembersUsed_[3] -#! -#listMembersMissing_[3] - LIST - Local_Number_Members_Missing_[3] -#Missing_Model_LBC_[3] - A4 -#endlistMembersMissing_[3] - ENDLIST - listMembersMissing_[3] -#! -#listEnsembleCombination4 - LIST - Show_Combination_E._[4]_(0=no,1=yes) -#Ensemble_Combinat._Number_(0=no)_[4] -#Ensemble_Identifier_1_[4] -#Ensemble_Identifier_2_[4] -#Local_Number_Members_Used_[4] -#Local_Number_Members_Possible_[4] -#Local_Number_Members_Missing_[4] -#Date_[4] -#Hour_[4] -#Minute_[4] -#Time_Range_One_[4] -#Time_Range_Two_[4] -#endlistEnsembleCombination4 - ENDLIST - listEnsembleCombination4 -#! -#listMembersUsed_[4] - LIST - Local_Number_Members_Used_[4] -#Used_Model_LBC_[4] -#endlistMembersUsed_[4] - ENDLIST - listMembersUsed_[4] -#! -#listMembersMissing_[4] - LIST - Local_Number_Members_Missing_[4] -#Missing_Model_LBC_[4] -#endlistMembersMissing_[4] - ENDLIST - listMembersMissing_[4] -#! -#! EXTRA INFORMATION like 191 -#*********_EXTRA_DATA_*************** -#Extra_Data_FreeFormat_(0=none) -#Data_Descriptor_Bytes - BYTES - Extra_Data_FreeFormat_(0=none) -#padToAMultipleOf80Bytes - PADFROM n/a -#! - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump ; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; - -# -# EXPERIMENT -# -ascii[4] '************_EXPERIMENT_************' ; -ascii[8] 'Experiment_Identifier' ; -ascii[8] 'Sub-Experiment_Identifier' ; - -# -# PRODUCT -# -ascii[4] '************_PRODUCT_***************' ; -unsigned[1] Original_CodeTable_2_Version_Number : dump ; -unsigned[1] Original_Parameter_Iden_CodeTable2 : dump; -ascii[8] 'Original_Parameter_Identifier' ; -ascii[8] 'Product_Identifier' ; - -# Thresholds and Distributions -unsigned[2] Threshold_Or_Distribution_0_no_1_yes : dump ; -ascii[4] 'Threshold_Or_Distribution_Units' ; -unsigned[4] At_least__Or_Distribut_Proportion_Of : dump ; -unsigned[4] Less_Than_Or_To_Overall_Distribution : dump ; - -pad padding_loc244_1(40); - -ascii[4] '************_ENSEMBLE_**************' ; -unsigned[2] Number_Combination_Ensembles_1_none : dump ; -unsigned[1] Show_Combination_Ensem_E2_0_no_1_yes : dump ; -unsigned[1] Show_Combination_Ensem_E3_0_no_1_yes : dump ; -unsigned[1] Show_Combination_Ensem_E4_0_no_1_yes : dump ; - -pad padding_loc244_2(7); - -unsigned[2] Total_Number_Members_Used : dump; -unsigned[2] Total_Number_Members_Possible : dump ; -unsigned[2] Total_Number_Members_Missing : dump ; -unsigned[2] Ensemble_Combination_Number : dump ; -ascii[8] 'Ensemble_Identifier' ; -unsigned[2] Local_Number_Members_Used : dump ; -unsigned[2] Local_Number_Members_Possible : dump ; -unsigned[2] Local_Number_Members_Missing : dump ; - -listMembersUsed list(Local_Number_Members_Used){ - ascii[4] 'Used_Model_LBC' ; -} - -listMembersMissing list(Local_Number_Members_Missing){ - ascii[4] 'Missing_Model_LBC' ; -} - -# -# More than one Combination -# - -if (Show_Combination_Ensem_E2_0_no_1_yes == 1){ - unsigned[2] Ensemble_Combinat_Number_0_none_E2 : dump ; - ascii[8] 'Ensemble_Identifier_E2' ; - unsigned[2] Local_Number_Members_Used_E2 : dump ; - unsigned[2] Local_Number_Members_Possible_E2 : dump ; - unsigned[2] Local_Number_Members_Missing_E2 : dump ; - unsigned[3] Date_E2 : dump; - unsigned[1] Hour_E2 : dump; - unsigned[1] Minute_E2 : dump; - unsigned[2] Time_Range_One_E2 : dump ; - unsigned[2] Time_Range_Two_E2 : dump; - - listMembersUsed2 list(Local_Number_Members_Used_E2){ - ascii[4] 'Used_Model_LBC_E2' ; - } - - listMembersMissing2 list(Local_Number_Members_Missing_E2){ - ascii[4] 'Missing_Model_LBC_E2' ; - } -} - -if (Show_Combination_Ensem_E3_0_no_1_yes == 1){ - unsigned[2] Ensemble_Combinat_Number_0_none_E3 : dump ; - ascii[8] 'Ensemble_Identifier_E3' ; - unsigned[2] Local_Number_Members_Used_E3 : dump; - unsigned[2] Local_Number_Members_Possible_E3 : dump; - unsigned[2] Local_Number_Members_Missing_E3 : dump; - unsigned[3] Date_E3 : dump; - unsigned[1] Hour_E3 : dump; - unsigned[1] Minute_E3 : dump; - unsigned[2] Time_Range_One_E3 : dump; - unsigned[2] Time_Range_Two_E3 : dump; - - listMembersUsed3 list(Local_Number_Members_Used_E3){ - ascii[4] 'Used_Model_LBC_E3' ; - } - - listMembersMissing3 list(Local_Number_Members_Missing_E3){ - ascii[4] 'Missing_Model_LBC_E3' ; - } -} - -if (Show_Combination_Ensem_E4_0_no_1_yes == 1){ - unsigned[2] Ensemble_Combinat_Number_0_none_E4 : dump ; - ascii[8] 'Ensemble_Identifier_E4' ; - unsigned[2] Local_Number_Members_Used_E4 : dump; - unsigned[2] Local_Number_Members_Possible_E4 : dump; - unsigned[2] Local_Number_Members_Missing_E4 : dump; - unsigned[3] Date_E4 : dump; - unsigned[1] Hour_E4 : dump; - unsigned[1] Minute_E4 : dump; - unsigned[2] Time_Range_One_E4 : dump ; - unsigned[2] Time_Range_Two_E4 : dump; - - listMembersUsed4 list(Local_Number_Members_Used_E4){ - ascii[4] 'Used_Model_LBC_E4' ; - } - - listMembersMissing4 list(Local_Number_Members_Missing_E4){ - ascii[4] 'Missing_Model_LBC_E4' ; - } -} - -# -# EXTRA INFORMATION like 191 -# -ascii[4] '*********_EXTRA_DATA_***************' ; -unsigned[2] Extra_Data_FreeFormat_0_none : dump; -position offsetFreeFormData; -unsigned[1] freeFormData[Extra_Data_FreeFormat_0_none] : dump; - -padtomultiple padding_loc244_3(offsetSection1,80); diff --git a/eccodes/definitions.save/grib1/local.214.245.def b/eccodes/definitions.save/grib1/local.214.245.def deleted file mode 100644 index 6ed1e2f1..00000000 --- a/eccodes/definitions.save/grib1/local.214.245.def +++ /dev/null @@ -1,54 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START 1/local.98.245 ---------------------------------------------------------------------- -# LOCAL 214 98 245 -# -#! -#! localDefinitionTemplate_245 -#! --------------------------- -#! -#! # Members iformation of -#! # SREPS Short-Range EPS -#! -#! Last update: 20070323 -#! -#!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 - -#Model_Identifier 52 A8 44 - -#LBC_Initial_Conditions 60 A8 46 - -#Model_LBC_Member_Identifier 68 A4 48 - -#Model_Additional_Information 72 A8 49 - -#zeroForFutureDevelopments 80 PAD 51 20 -#Extra_Data_FreeFormat_(0=none) 100 I2 71 - -#Data_Descriptor_Bytes 102 BYTES 72 Extra_Data_FreeFormat_(0=none) -#padToAMultipleOf80Bytes 103 PADFROM n/a 80 -#! -# - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; - -ascii[8] 'Model_Identifier' ; -ascii[8] 'LBC_Initial_Conditions' ; -ascii[4] 'Model_LBC_Member_Identifier' ; -ascii[8] 'Model_Additional_Information' ; - -pad padding_loc245_1(20); - -unsigned[2] Extra_Data_FreeFormat_0_none : dump ; -position offsetFreeFormData; -unsigned[1] freeFormData[Extra_Data_FreeFormat_0_none] : dump ; - -padtomultiple padding_loc245_2(offsetSection1,80); diff --git a/eccodes/definitions.save/grib1/local.214.def b/eccodes/definitions.save/grib1/local.214.def deleted file mode 100644 index 2b9e13ba..00000000 --- a/eccodes/definitions.save/grib1/local.214.def +++ /dev/null @@ -1,3 +0,0 @@ -codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.214.table' = 244 : dump; -template localDefinition "grib1/local.214.[localDefinitionNumber:l].def"; - diff --git a/eccodes/definitions.save/grib1/local.253.def b/eccodes/definitions.save/grib1/local.253.def deleted file mode 100644 index f5e86ea0..00000000 --- a/eccodes/definitions.save/grib1/local.253.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "local.253.def"; - - diff --git a/eccodes/definitions.save/grib1/local.254.def b/eccodes/definitions.save/grib1/local.254.def deleted file mode 100644 index e7dde6ea..00000000 --- a/eccodes/definitions.save/grib1/local.254.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "EUMETSAT local definition (unknown)"; diff --git a/eccodes/definitions.save/grib1/local.34.1.def b/eccodes/definitions.save/grib1/local.34.1.def deleted file mode 100644 index 078e15cf..00000000 --- a/eccodes/definitions.save/grib1/local.34.1.def +++ /dev/null @@ -1,48 +0,0 @@ -# JMA - -constant GRIBEXSection1Problem = 52 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; -pad padding_local1_1(1); - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } -} else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } - } -} diff --git a/eccodes/definitions.save/grib1/local.34.def b/eccodes/definitions.save/grib1/local.34.def deleted file mode 100644 index 5498d093..00000000 --- a/eccodes/definitions.save/grib1/local.34.def +++ /dev/null @@ -1,5 +0,0 @@ -# Japanese Meteorological Agency -codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.34.table' = 1 : dump; -template localDefinition "grib1/local.34.[localDefinitionNumber:l].def"; - -template_nofail marsKeywords "mars/grib.[stream:s].[type:s].def"; diff --git a/eccodes/definitions.save/grib1/local.46.def b/eccodes/definitions.save/grib1/local.46.def deleted file mode 100644 index 3594d4c3..00000000 --- a/eccodes/definitions.save/grib1/local.46.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "CPTEC local definition"; -# Same as NCEP -include "grib1/local.7.def"; -section_padding local_padding; diff --git a/eccodes/definitions.save/grib1/local.54.def b/eccodes/definitions.save/grib1/local.54.def deleted file mode 100644 index 1347570c..00000000 --- a/eccodes/definitions.save/grib1/local.54.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "CMC local definition (Canada)"; -# START 1/local.54 -------------------------------------------------------------------- -# LOCAL 54 -# -# CMC localDefinitionTemplate, based on KWBC -# -------------------------------- -# -# Description Octet Code Ksec1 Count -# ----------- ----- ---- ----- ----- -# -# applicationIdentifier 41 -# type 42 -# identificationNumber 43 -# productIdentifier 44 -# spatialSmoothingOfProduct 45 -# isotopeIdentificationNumber 46-47 2 - -unsigned[1] applicationIdentifier : dump ; - -unsigned[1] type : dump; - -unsigned[1] identificationNumber : dump; - -unsigned[1] productIdentifier : dump ; - -unsigned[1] spatialSmoothingOfProduct : dump ; - -# See GRIB-557 -unsigned[2] isotopeIdentificationNumber : dump ; diff --git a/eccodes/definitions.save/grib1/local.7.1.def b/eccodes/definitions.save/grib1/local.7.1.def deleted file mode 100644 index 8d828cec..00000000 --- a/eccodes/definitions.save/grib1/local.7.1.def +++ /dev/null @@ -1,88 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# KWBC localDefinitionTemplate_001 -# -------------------------------- -# -# Description Octet Code Ksec1 Count -# ----------- ----- ---- ----- ----- -# -#sectionLength 1 L3 n/a ignore -#applicationIdentifier 41 I1 37 - -#type 42 I1 38 - -#identificationNumber 43 I1 39 - -#productIdentifier 44 I1 40 - -#spatialSmoothingOfProduct 45 I1 41 - -#! -#if_ge_46 - IF_GT 45 sectionLength -#probProductDefinition 46 I1 42 - -#probabilityType 47 I1 43 - -#lowerLimit 48 I4 44 - -#upperLimit 52 I4 45 - -#padding 56 PAD n/a 5 -#endif_ge_46 - ENDIF if_ge_46 -#! -#if_ge_61 - IF_GT 60 sectionLength -#ensembleSize 61 I1 46 - -#clusterSize 62 I1 47 - -#numberOfClusters 63 I1 48 - -#clusteringMethod 64 I1 49 - -#northLatitudeOfCluster 65 S3 50 - -#southLatitudeOfCluster 68 S3 51 - -#westLongitudeOfCluster 71 S3 52 - -#eastLongitudeOfCluster 74 S3 53 - -#clusterMember1 77 I1 54 - -#clusterMember2 78 I1 55 - -#clusterMember3 79 I1 56 - -#clusterMember4 80 I1 57 - -#clusterMember5 81 I1 58 - -#clusterMember6 82 I1 59 - -#clusterMember7 83 I1 60 - -#clusterMember8 84 I1 61 - -#clusterMember9 85 I1 62 - -#clusterMember10 86 I1 63 - -#endif_ge_61 - ENDIF if_ge_61 - -#applicationIdentifier 1= ensemble - -#unsigned[1] applicationIdentifier : dump ; # 1= ensemble -unsigned[1] type : dump ; # 1=unperturbed control forecast,2=individual negative perturbed fcst 3=individual positive perturbed fcst, 4=cluster, 5=whole cluster -unsigned[1] identificationNumber : dump ; # if(type=1) { 1=high resolution control fcst, 2=low resolution control fcst} else { ensemble number } -unsigned[1] productIdentifier : dump; # 1= full field, 2=weighted mean, 3= etc -unsigned[1] spatialSmoothingOfProduct : dump ; -# -constant sectionLengthLimitForProbability = 45 : dump; -if(section1Length > sectionLengthLimitForProbability) -{ - unsigned[1] probProductDefinition : dump; - unsigned[1] probabilityType : dump; - unsigned[4] lowerLimit : dump; - unsigned[4] upperLimit : dump; - - # padding - pad padding_local_7_1(5); -} - -# -constant sectionLengthLimitForEnsembles = 60; - -if(section1Length > sectionLengthLimitForEnsembles) -{ - unsigned[1] ensembleSize : dump ; - unsigned[1] clusterSize : dump; - unsigned[1] numberOfClusters : dump ; - unsigned[1] clusteringMethod : dump ; - signed[3] northLatitudeOfCluster : dump ; - signed[3] southLatitudeOfCluster : dump ; - signed[3] westLongitudeOfCluster : dump ; - signed[3] eastLongitudeOfCluster : dump ; - unsigned[1] clusterMember1 : dump ; - unsigned[1] clusterMember2 : dump ; - unsigned[1] clusterMember3 : dump ; - unsigned[1] clusterMember4 : dump ; - unsigned[1] clusterMember5 : dump ; - unsigned[1] clusterMember6 : dump ; - unsigned[1] clusterMember7 : dump ; - unsigned[1] clusterMember8 : dump ; - unsigned[1] clusterMember9 : dump ; - unsigned[1] clusterMember10 : dump ; -} diff --git a/eccodes/definitions.save/grib1/local.7.def b/eccodes/definitions.save/grib1/local.7.def deleted file mode 100644 index 94937ee8..00000000 --- a/eccodes/definitions.save/grib1/local.7.def +++ /dev/null @@ -1,3 +0,0 @@ -codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.7.table' = 1 : dump; -template localDefinition "grib1/local.7.[localDefinitionNumber:l].def"; - diff --git a/eccodes/definitions.save/grib1/local.78.def b/eccodes/definitions.save/grib1/local.78.def deleted file mode 100644 index 3b2de1fe..00000000 --- a/eccodes/definitions.save/grib1/local.78.def +++ /dev/null @@ -1,2 +0,0 @@ -# Local definition for Offenbach -label "Local definition for Offenbach"; diff --git a/eccodes/definitions.save/grib1/local.80.def b/eccodes/definitions.save/grib1/local.80.def deleted file mode 100644 index 46b49ca7..00000000 --- a/eccodes/definitions.save/grib1/local.80.def +++ /dev/null @@ -1,4 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -#Local definition for Rome -label "Local definition for Rome CNMC"; diff --git a/eccodes/definitions.save/grib1/local.82.0.def b/eccodes/definitions.save/grib1/local.82.0.def deleted file mode 100644 index 9df9e114..00000000 --- a/eccodes/definitions.save/grib1/local.82.0.def +++ /dev/null @@ -1,39 +0,0 @@ -#! --------------------------- -#! -#!Description Octet Code Ksec1 Count -#!----------- ----- ----- ----- ----- -#! -#class 42 I1 38 - -#type 43 I1 39 - -#stream 44-45 I2 40 - -#experimentVersionNumber 46-49 A4 41 - -#number 50 I1 42 - -#total 51 I1 43 - -#model 52 I1 44 - -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 May 2013 -# -####################### -### LOCAL SECTION 0 ### -####################### - -# -# This piece of definition is common to all SMHI definitions -# It is only accessed through "include" statement inside local.82.x.def -# - -codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; -codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; -codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; -ksec1expver[4] experimentVersionNumber = "0000" : dump; -# For now, Ensemble stuff is desactivated because it is not used yet -# instead we use a padding of 2 -#unsigned[1] perturbationNumber : dump; -#unsigned[1] numberOfForecastsInEnsemble : dump; -pad reservedNeedNotBePresent(2); -codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; - - diff --git a/eccodes/definitions.save/grib1/local.82.82.def b/eccodes/definitions.save/grib1/local.82.82.def deleted file mode 100644 index a97999e7..00000000 --- a/eccodes/definitions.save/grib1/local.82.82.def +++ /dev/null @@ -1,18 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 20 Feb 2014 -# -######################## -### LOCAL SECTION 82 ### -######################## - -constant GRIBEXSection1Problem = 53 - section1Length; - -# base local definition -include "grib1/local.82.0.def"; - -unsigned[1] marsExperimentOffset = 0 : dump, long_type; - - diff --git a/eccodes/definitions.save/grib1/local.82.83.def b/eccodes/definitions.save/grib1/local.82.83.def deleted file mode 100644 index a25dac49..00000000 --- a/eccodes/definitions.save/grib1/local.82.83.def +++ /dev/null @@ -1,56 +0,0 @@ -#! -#!Description Octet Code Ksec1 Count -#!----------- ----- ---- ----- ----- -#! -# OCTETS 41-52 ARE DESCRIBED in local.82.0.def -#! Supplementary search-able keys -#Sort 53 I1 45 - -#TimeRepres 54 I1 46 - -#Landtype 55 I1 47 - -#AerosolBinNumber 56-57 I2 48 - -#MolarMass 58-59 I2 49 - -#! Info on log transformed fields -#LogTransform 60 I1 50 - -#Threshold 61-62 S2 51 - -#Reserved 63 I1 52 - -#! Info for aerosols -#TotalAerosolBinsNumbers 64 I1 53 - -#IntegerScaleFactor 65 S1 54 - -#LowerRange 66-67 I2 55 - -#UpperRange 68-69 I2 56 - -#MeanSize 70-71 I2 57 - -#StandardDeviation 72-73 I2 58 - -#PartDef 74 PAD n/a 7 -################################################################ -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 20 Feb 2014 -# -######################### -### LOCAL SECTION 83 ### -######################### - -constant GRIBEXSection1Problem = 80 - section1Length; - -# base file: contains keywords always present -include "grib1/local.82.0.def"; - -# extra keywords specific to local definition 83 (MATCH) -codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; -codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; -codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; -codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; -unsigned[2] molarMass : dump; -unsigned[1] logTransform :dump; -signed[2] threshold : dump; -unsigned[1] reserved : dump; -unsigned[1] totalAerosolBinsNumbers : dump; -signed[1] integerScaleFactor : dump; -unsigned[2] lowerRange : dump; -unsigned[2] upperRange : dump; -unsigned[2] meanSize : dump; -unsigned[2] standardDeviation : dump; -pad padding_local1_1(7); - - diff --git a/eccodes/definitions.save/grib1/local.82.def b/eccodes/definitions.save/grib1/local.82.def deleted file mode 100644 index e177694e..00000000 --- a/eccodes/definitions.save/grib1/local.82.def +++ /dev/null @@ -1,26 +0,0 @@ -# -# Definition for SMHI Swedish Meteorological and Hydrological Institut. -# -# contact: sebastien.villaume@smhi.se -# - - -######################## -### LOCAL DEFINITION ### -######################## - -codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.82.table' = 82 : dump; -template localDefinition "grib1/local.82.[localDefinitionNumber:l].def"; - -################### -### LS LABELING ### -################### - -template ls_labeling "grib1/ls_labeling.82.def"; - -##################### -### MARS LABELING ### -##################### - -template mars_labeling "grib1/mars_labeling.82.def"; -template_nofail marsKeywords "mars/eswi/grib1.[stream:s].[type:s].def"; diff --git a/eccodes/definitions.save/grib1/local.85.def b/eccodes/definitions.save/grib1/local.85.def deleted file mode 100644 index 8773735d..00000000 --- a/eccodes/definitions.save/grib1/local.85.def +++ /dev/null @@ -1,24 +0,0 @@ -transient defaultFaFieldName = ""; -transient defaultFaLevelName = ""; -transient defaultFaModelName = ""; - -concept ls.faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept ls.faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept ls.faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; - -transient LSTCUM = 0; -transient ZLMULT = 1.; -transient ZLBASE = 0.; - -# For compatibility with GRIB2 templates - -transient CLNOMA = ""; -transient INGRIB = 0; -transient LLCOSP = 0; -transient INBITS = 0; - -# Scaling factor - -transient FMULTM = 1; -transient FMULTE = 0; - diff --git a/eccodes/definitions.save/grib1/local.96.def b/eccodes/definitions.save/grib1/local.96.def deleted file mode 100644 index 06d1b934..00000000 --- a/eccodes/definitions.save/grib1/local.96.def +++ /dev/null @@ -1,3 +0,0 @@ -codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.[centre:l].table' = 1 : dump; -template localDefinition "grib1/local.[centre:l].[localDefinitionNumber:l].def"; - diff --git a/eccodes/definitions.save/grib1/local.98.1.def b/eccodes/definitions.save/grib1/local.98.1.def deleted file mode 100644 index d06ea2f2..00000000 --- a/eccodes/definitions.save/grib1/local.98.1.def +++ /dev/null @@ -1,52 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 52 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; -pad padding_local1_1(1); - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } -} else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } - } -} - -# monthly mean -#if (timeRangeIndicator==113) { -#} diff --git a/eccodes/definitions.save/grib1/local.98.10.def b/eccodes/definitions.save/grib1/local.98.10.def deleted file mode 100644 index 625026d0..00000000 --- a/eccodes/definitions.save/grib1/local.98.10.def +++ /dev/null @@ -1,50 +0,0 @@ -# (C) Copyright 2005- ECMWF. -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; diff --git a/eccodes/definitions.save/grib1/local.98.11.def b/eccodes/definitions.save/grib1/local.98.11.def deleted file mode 100644 index 658c8ba8..00000000 --- a/eccodes/definitions.save/grib1/local.98.11.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 72 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] classOfAnalysis = marsClass : dump; -unsigned[1] typeOfAnalysis = marsType : dump; -unsigned[2] streamOfAnalysis = marsStream : dump; -ksec1expver[4] experimentVersionNumberOfAnalysis = expver : dump; - -unsigned[1] yearOfAnalysis = yearOfCentury : dump; -unsigned[1] monthOfAnalysis = month : dump; -unsigned[1] dayOfAnalysis = day : dump; - -unsigned[1] hourOfAnalysis = hour : dump; - -unsigned[1] minuteOfAnalysis = minute : dump; - -unsigned[1] centuryOfAnalysis = centuryOfReferenceTimeOfData : dump; - -unsigned[1] originatingCentreOfAnalysis = originatingCentre : dump; - -unsigned[1] subcentreOfAnalysis = subCentre : dump; - -# spareSetToZero -pad padding_local11_1(7); - -constant secondsOfAnalysis = 0; - -meta dateOfAnalysis g1date(centuryOfAnalysis,yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; -meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; - -alias date = dateOfAnalysis; -alias time = timeOfAnalysis; diff --git a/eccodes/definitions.save/grib1/local.98.12.def b/eccodes/definitions.save/grib1/local.98.12.def deleted file mode 100644 index b1705045..00000000 --- a/eccodes/definitions.save/grib1/local.98.12.def +++ /dev/null @@ -1,65 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Seasonal forecast monthly mean data for lagged systems - -constant GRIBEXSection1Problem = 120 - section1Length ; - -# used in local definition 13 -transient localFlag=1 : hidden; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[2] perturbationNumber : dump ; - -unsigned[2] systemNumber : dump ; - -unsigned[2] methodNumber : dump ; - -unsigned[4] verifyingMonth : dump ; - -meta endOfInterval g1end_of_interval_monthly(verifyingMonth); - -meta yearOfEndOfOverallTimeInterval vector(endOfInterval,0); -meta monthOfEndOfOverallTimeInterval vector(endOfInterval,1); -meta dayOfEndOfOverallTimeInterval vector(endOfInterval,2); -meta hourOfEndOfOverallTimeInterval vector(endOfInterval,3); -meta minuteOfEndOfOverallTimeInterval vector(endOfInterval,4); -meta secondOfEndOfOverallTimeInterval vector(endOfInterval,5); - -transient hourOfEndOfOverallTimeInterval=23 : no_copy; -transient minuteOfEndOfOverallTimeInterval=59 : no_copy; -transient secondOfEndOfOverallTimeInterval=59 : no_copy; - -transient indicatorOfUnitForTimeRange=3; -transient lengthOfTimeRange=1; -unsigned[1] averagingPeriod : dump ; - -transient typeOfStatisticalProcessing=0; -transient indicatorOfUnitForTimeIncrement = 1; -transient timeIncrement=averagingPeriod; - -unsigned[2] forecastMonth : dump ; -remove forecastTime; -transient forecastTime=forecastMonth - 1; -#remove typeOfTimeIncrement; -transient typeOfTimeIncrement = 3; - -# Old GRIBS do not have forecast forecastMonth set. It is computed from verifyingMonth -meta marsForecastMonth g1forecastmonth(verifyingMonth,dataDate,day,hour,forecastMonth,zero) : read_only; - -alias origin = centre; -alias number = perturbationNumber; -alias system = systemNumber; -alias method = methodNumber; - -# ECC-679 -unsigned[2] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) -unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) -alias mars.date = indexingDate; -alias mars.time = indexingTime; - -# spareSetToZero -pad padding_loc12_1(50); diff --git a/eccodes/definitions.save/grib1/local.98.13.def b/eccodes/definitions.save/grib1/local.98.13.def deleted file mode 100644 index 84acafb6..00000000 --- a/eccodes/definitions.save/grib1/local.98.13.def +++ /dev/null @@ -1,163 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] directionNumber : dump ; -alias mars.direction = directionNumber; - -unsigned[1] frequencyNumber : dump ; -alias mars.frequency = frequencyNumber; - -unsigned[1] numberOfDirections : dump ; -alias totalNumberOfDirections = numberOfDirections ; - -unsigned[1] numberOfFrequencies : dump; -alias totalNumberOfFrequencies = numberOfFrequencies ; - -unsigned[4] directionScalingFactor : dump; -alias integerScalingFactorAppliedToDirections = directionScalingFactor; - -unsigned[4] frequencyScalingFactor : dump; -alias integerScalingFactorAppliedToFrequencies = frequencyScalingFactor ; - -constant localFlagLatestVersion = 4 : hidden; -codetable[1] localFlag "grib1/local.13.table" = localFlagLatestVersion; - -#! -#! Old versions of wave 2D spectra direction and frequency do not -#! have the systemNumber and methodNumber, and the flag is set to 0. -#! -#if0 - IF_EQ 0 flag -#spareSetToZero 65 PAD n/a 36 -#endif0 - ENDIF if0 -if(localFlag == 0) -{ - pad padding_loc13_1(36); -} - -#! -#! Old versions of wave 2D spectra direction and frequency do not -#! have the systemNumber and methodNumber, and the flag is set to 0. -#! -#! -#! -#if1 - IF_EQ 1 flag -#systemNumber 065 I2 - - -#methodNumber 067 I2 - - -#spareSetToZero1 069 PAD n/a 32 -#endif1 - ENDIF if1 -if(localFlag == 1) -{ - unsigned[2] systemNumber : dump; - unsigned[2] methodNumber : dump; - alias system = systemNumber; - alias method = methodNumber; - pad padding_loc13_2(32); -} - -#if2 - IF_EQ 2 flag -#systemNumber 065 I2 - - -#methodNumber 067 I2 - - -#referenceDate 069 I4 - - -#climateDateFrom 073 I4 - - -#climateDateTo 077 I4 - - -#spareSetToZero2 081 PAD n/a 20 -#endif2 - ENDIF if2 -if(localFlag == 2) -{ - unsigned[2] systemNumber : dump; - unsigned[2] methodNumber : dump; - unsigned[4] referenceDate : dump ; - unsigned[4] climateDateFrom : dump ; - unsigned[4] climateDateTo : dump ; - alias system = systemNumber; - alias method = methodNumber; - alias refdate = referenceDate; - pad padding_loc13_3(20); -} - -#if3 - IF_EQ 3 flag -#systemNumber 065 I2 - - -#methodNumber 067 I2 - - -#referenceDate 069 I4 - - -#climateDateFrom 073 I4 - - -#climateDateTo 077 I4 - - -#legBaseDate 081 I4 - - -#legBaseTime 085 I2 - - -#legNumber 087 I1 - - -#oceanAtmosphereCoupling 088 I1 - - -#spareSetToZero3 089 PAD n/a 12 -#endif3 - ENDIF if3 -if(localFlag == 3) -{ - unsigned[2] systemNumber = 65535 : dump,can_be_missing ; - unsigned[2] methodNumber = 65535 : dump,can_be_missing ; - unsigned[4] referenceDate : dump ; - unsigned[4] climateDateFrom : dump ; - unsigned[4] climateDateTo : dump ; - unsigned[4] legBaseDate : dump; - alias baseDateOfThisLeg = legBaseDate; - unsigned[2] legBaseTime : dump; - alias baseTimeOfThisLeg = legBaseTime; - unsigned[1] legNumber : dump; - unsigned[1] oceanAtmosphereCoupling : dump; - pad padding_loc13_4(12); - alias system = systemNumber; - alias method = methodNumber; - alias refdate = referenceDate; - - alias mars._leg_number = legNumber; -} - -#if4 - IF_EQ 4 flag -#systemNumber 065 I2 - - -#methodNumber 067 I2 - - -#referenceDate 069 I4 - - -#climateDateFrom 073 I4 - - -#climateDateTo 077 I4 - - -#legBaseDate 081 I4 - - -#legBaseTime 085 I2 - - -#legNumber 087 I1 - - -#oceanAtmosphereCoupling 088 I1 - - -#offsetToEndOf4DvarWindow 089 I2 - - -#lengthOf4DvarWindow 091 I2 - - -#spareSetToZero3 093 PAD n/a 8 -#endif4 - ENDIF if4 -if(localFlag == 4) -{ - unsigned[2] systemNumber = 65535 : dump,can_be_missing ; - unsigned[2] methodNumber = 65535 : dump,can_be_missing ; - unsigned[4] referenceDate : dump ; - unsigned[4] climateDateFrom : dump ; - unsigned[4] climateDateTo : dump ; - unsigned[4] legBaseDate : dump; - alias baseDateOfThisLeg = legBaseDate; - unsigned[2] legBaseTime : dump; - alias baseTimeOfThisLeg = legBaseTime; - unsigned[1] legNumber : dump; - unsigned[1] oceanAtmosphereCoupling : dump; - - # Hours - unsigned[2] offsetToEndOf4DvarWindow : dump; - alias anoffset=offsetToEndOf4DvarWindow; - unsigned[2] lengthOf4DvarWindow : dump; - - alias system = systemNumber; - alias method = methodNumber; - alias refdate = referenceDate; - - alias mars._leg_number = legNumber; - - pad padding_loc13_5(8); -} - -unsigned[4] scaledDirections[numberOfDirections] : dump; -unsigned[4] scaledFrequencies[numberOfFrequencies] : dump; - -constant GRIBEXSection1Problem = 100 + 4 * numberOfDirections + 4 * numberOfFrequencies - section1Length ; diff --git a/eccodes/definitions.save/grib1/local.98.14.def b/eccodes/definitions.save/grib1/local.98.14.def deleted file mode 100644 index ad0901a4..00000000 --- a/eccodes/definitions.save/grib1/local.98.14.def +++ /dev/null @@ -1,29 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 1080 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] channelNumber : dump ; -alias mars.channel = channelNumber; - -unsigned[4] scalingFactorForFrequencies : dump ; -alias integerScalingFactorAppliedToFrequencies = scalingFactorForFrequencies ; - -unsigned[1] numberOfFrequencies : dump ; -alias totalNumberOfFrequencies = numberOfFrequencies ; -alias Nf = numberOfFrequencies ; - -# spareSetToZero -pad padding_loc14_1(3); - -unsigned[4] listOfScaledFrequencies[numberOfFrequencies] : dump; - -# moreSpareSetToZero -padto padding_loc14_2(offsetSection1 + 1080); diff --git a/eccodes/definitions.save/grib1/local.98.15.def b/eccodes/definitions.save/grib1/local.98.15.def deleted file mode 100644 index 3a66d9e6..00000000 --- a/eccodes/definitions.save/grib1/local.98.15.def +++ /dev/null @@ -1,39 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# used in local definition 13 -constant GRIBEXSection1Problem = 60 - section1Length ; - -transient localFlag=1 : hidden ; - -template mars_labeling "grib1/mars_labeling.def"; -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=15; -if (stepType is "instant") { - alias productDefinitionTemplateNumber=one; -} else { - alias productDefinitionTemplateNumber=eleven; -} - -unsigned[2] perturbationNumber : dump ; -alias number=perturbationNumber; - -unsigned[2] systemNumber : dump ; - -unsigned[2] methodNumber : dump ; - -unsigned[2] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -# spareSetToZero -pad padding_loc15_1(3); - -alias origin = centre; -alias number = perturbationNumber; -alias total=numberOfForecastsInEnsemble; -alias system = systemNumber; -alias method = methodNumber; - -alias local.perturbationNumber=perturbationNumber; -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions.save/grib1/local.98.16.def b/eccodes/definitions.save/grib1/local.98.16.def deleted file mode 100644 index 4e5f184c..00000000 --- a/eccodes/definitions.save/grib1/local.98.16.def +++ /dev/null @@ -1,60 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Seasonal forecast monthly mean data - -constant GRIBEXSection1Problem = 80 - section1Length ; - -# used in local definition 13 -transient localFlag=1 : hidden; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[2] perturbationNumber : dump ; - -unsigned[2] systemNumber : dump ; - -unsigned[2] methodNumber : dump ; - -unsigned[4] verifyingMonth : dump ; - -meta endOfInterval g1end_of_interval_monthly(verifyingMonth); - -meta yearOfEndOfOverallTimeInterval vector(endOfInterval,0); -meta monthOfEndOfOverallTimeInterval vector(endOfInterval,1); -meta dayOfEndOfOverallTimeInterval vector(endOfInterval,2); -meta hourOfEndOfOverallTimeInterval vector(endOfInterval,3); -meta minuteOfEndOfOverallTimeInterval vector(endOfInterval,4); -meta secondOfEndOfOverallTimeInterval vector(endOfInterval,5); - -transient hourOfEndOfOverallTimeInterval=23; -transient minuteOfEndOfOverallTimeInterval=59; -transient secondOfEndOfOverallTimeInterval=59; - -transient indicatorOfUnitForTimeRange=3; -transient lengthOfTimeRange=1; -unsigned[1] averagingPeriod : dump ; - -transient typeOfStatisticalProcessing=0; -transient indicatorOfUnitForTimeIncrement = 1; -transient timeIncrement=averagingPeriod; - -unsigned[2] forecastMonth : dump ; -remove forecastTime; -transient forecastTime=forecastMonth - 1; -#remove typeOfTimeIncrement; -transient typeOfTimeIncrement = 3; - -# Old GRIBS do not have forecast forecastMonth set. It is computed from verifyingMonth -meta marsForecastMonth g1forecastmonth(verifyingMonth,dataDate,day,hour,forecastMonth,one) : read_only; - -alias origin = centre; -alias number = perturbationNumber; -alias system = systemNumber; -alias method = methodNumber; - -# ECC-679 -unsigned[2] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -# spareSetToZero -pad padding_loc16_1(16); diff --git a/eccodes/definitions.save/grib1/local.98.17.def b/eccodes/definitions.save/grib1/local.98.17.def deleted file mode 100644 index e5ea33c3..00000000 --- a/eccodes/definitions.save/grib1/local.98.17.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -# zeroes -#pad padding_loc17_1(2); - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; - -# Need a proper date (sst_date) -unsigned[3] dateOfSSTFieldUsed : dump ; - -unsigned[1] typeOfSSTFieldUsed : dump ; - -unsigned[1] countOfICEFieldsUsed : dump ; - -position offsetICEFieldsUsed; -ICEFieldsUsed list(countOfICEFieldsUsed) -{ - unsigned[3] dateOfIceFieldUsed : dump ; -# d3date dateOfIceFieldUsed ; - unsigned[1] satelliteNumber : dump ; -} - -# paddingToMultipleOf40Bytes -padtomultiple padding_loc17_2(offsetICEFieldsUsed,40); -position offsetAfterPadding; - -constant GRIBEXSection1Problem = ( offsetAfterPadding - offsetICEFieldsUsed ) % 40; diff --git a/eccodes/definitions.save/grib1/local.98.18.def b/eccodes/definitions.save/grib1/local.98.18.def deleted file mode 100644 index a7dd8041..00000000 --- a/eccodes/definitions.save/grib1/local.98.18.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 120 - section1Length ; - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=18; - -if (stepType is "instant" ) { - alias productDefinitionTemplateNumber=epsPoint; -} else { - alias productDefinitionTemplateNumber=epsContinous; -} -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump ; -alias number=perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -codetable[1] dataOrigin "common/c-1.table" : dump; -alias origin = dataOrigin; - -ascii[4] modelIdentifier : dump ; - -unsigned[1] consensusCount : dump ; - -# spareSetToZero -pad padding_loc18_1(3); - -#ascii[60] ccccIdentifiers : dump ; - -consensus list(consensusCount) -{ - ascii[4] ccccIdentifiers : dump; -} - -padto padding_loc18_2(offsetSection1 + 120); - -alias local.dataOrigin=dataOrigin; -alias local.modelIdentifier=modelIdentifier; -alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions.save/grib1/local.98.19.def b/eccodes/definitions.save/grib1/local.98.19.def deleted file mode 100644 index c93438c7..00000000 --- a/eccodes/definitions.save/grib1/local.98.19.def +++ /dev/null @@ -1,40 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -constant GRIBEXSection1Problem = 80 - section1Length ; - -# zeroForMarsCompatibility -#pad padding_loc19_1(1); -unsigned[1] number : dump; -alias perturbationNumber=number; - -unsigned[1] ensembleSize : dump; -alias totalNumber=ensembleSize; - -meta quantile sprintf("%s:%s",number,ensembleSize); - -# See GRIB-862 for the reason behind the aliases - -unsigned[1] versionNumberOfExperimentalSuite : dump; -alias powerOfTenUsedToScaleClimateWeight=versionNumberOfExperimentalSuite; - -unsigned[4] implementationDateOfModelCycle : dump; -alias weightAppliedToClimateMonth1=implementationDateOfModelCycle; - -unsigned[3] numberOfReforecastYearsInModelClimate : dump; -alias firstMonthUsedToBuildClimateMonth1=numberOfReforecastYearsInModelClimate; - -unsigned[3] numberOfDaysInClimateSamplingWindow : dump; -alias lastMonthUsedToBuildClimateMonth1=numberOfDaysInClimateSamplingWindow; - -unsigned[3] sampleSizeOfModelClimate : dump; -alias firstMonthUsedToBuildClimateMonth2=sampleSizeOfModelClimate; - -unsigned[3] versionOfModelClimate : dump; -alias lastMonthUsedToBuildClimateMonth2=versionOfModelClimate; - -unsigned[1] efiOrder : dump; - -# spareSetToZero -pad padding_loc19_2(11); diff --git a/eccodes/definitions.save/grib1/local.98.190.def b/eccodes/definitions.save/grib1/local.98.190.def deleted file mode 100644 index c9d3c5ed..00000000 --- a/eccodes/definitions.save/grib1/local.98.190.def +++ /dev/null @@ -1,26 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 0 ; - -template mars_labeling "grib1/mars_labeling.def"; - -# zeroesForCompatibilityWithMars -pad padding_loc190_1(2); - -unsigned[1] numberOfLocalDefinitions : dump; - -if(numberOfLocalDefinitions == 1){ - unsigned[1] localDefNumberOne : dump; - unsigned[2] numberOfBytesInLocalDefinition : dump; - template subLocalDefinition1 "grib1/local.[centre:l].[localDefNumberOne:l].def"; -} - -if(numberOfLocalDefinitions == 2){ - unsigned[1] localDefNumberOne : dump; - unsigned[2] numberOfBytesInLocalDefinition : dump; - unsigned[1] localDefNumberTwo : dump; - unsigned[2] numberOfBytesInLocalDefinition : dump; - template subLocalDefinition1 "grib1/local.[centre:l].[localDefNumberOne:l].def"; - unsigned[4] spare2; - template subLocalDefinition2 "grib1/local.[centre:l].[localDefNumberTwo:l].def"; -} diff --git a/eccodes/definitions.save/grib1/local.98.191.def b/eccodes/definitions.save/grib1/local.98.191.def deleted file mode 100644 index b22c2f96..00000000 --- a/eccodes/definitions.save/grib1/local.98.191.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -# zeroForCompatibilityWithMars -pad padding_loc191_1(2); - -unsigned[1] formatVersionMajorNumber : dump; - -unsigned[1] formatVersionMinorNumber : dump; - -unsigned[1] originalSubCentreIdentifier : dump; - -# This does not belong here, this is for class=ms,country=de -alias mars.levelist = level; - - -# setToZero - -pad padding_loc191_2(4); - -unsigned[2] numberOfBytesOfFreeFormatData : dump; - -position offsetFreeFormData; -#freeFormDataList list(numberOfBytesOfFreeFormatData) { -# unsigned[1] freeFormData; -#} - -unsigned[1] freeFormData[numberOfBytesOfFreeFormatData] : dump; - -# padToAMultipleOf80Bytes -# -1 comes from gribex -padtomultiple padding_loc191_3(offsetFreeFormData,80); -position offsetAfterPadding; -constant GRIBEXSection1Problem = ( offsetAfterPadding - offsetFreeFormData) % 80 ; diff --git a/eccodes/definitions.save/grib1/local.98.192.def b/eccodes/definitions.save/grib1/local.98.192.def deleted file mode 100644 index 7b0dd929..00000000 --- a/eccodes/definitions.save/grib1/local.98.192.def +++ /dev/null @@ -1,39 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# The mars labeling must be inline -# template mars_labeling "grib1/mars_labeling.def"; - -constant GRIBEXSection1Problem = 0 ; - -codetable[1] thisMarsClass "mars/class.table" = "od" : dump,string_type,lowercase; -codetable[1] thisMarsType "mars/type.table" = "an" : dump,string_type,lowercase; -codetable[2] thisMarsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; -ksec1expver[4] thisExperimentVersionNumber = "0001" : dump; - -alias ls.dataType = thisMarsType; -alias mars.class = thisMarsClass; -alias mars.type = thisMarsType; -alias mars.stream = thisMarsStream; -alias mars.expver = thisExperimentVersionNumber; - -# zeroForCompatibilityWithMars -pad padding_loc192_1(2); - -unsigned[1] numberOfLocalDefinitions = 2 : dump; - -if (numberOfLocalDefinitions == 2 ) { - unsigned[2] subLocalDefinitionLength1 = 7 : dump; - unsigned[1] subLocalDefinitionNumber1 = 1 : dump; - codetable[1] marsClass1 "mars/class.table" = "od" : dump,string_type,lowercase; - codetable[1] marsType1 "mars/type.table" = "an" : dump,string_type,lowercase; - codetable[2] marsStream1 "mars/stream.table" = "oper" : dump,string_type,lowercase; - ksec1expver[4] experimentVersionNumber1 = "0001" : dump; - template subDefinitions1 "grib1/local_no_mars.98.[subLocalDefinitionNumber1].def"; - unsigned[2] subLocalDefinitionLength2 = 9 : dump; - unsigned[1] subLocalDefinitionNumber2 = 24 : dump; - codetable[1] marsClass2 "mars/class.table" = "od" : dump,string_type,lowercase; - codetable[1] marsType2 "mars/type.table" = "an" : dump,string_type,lowercase; - codetable[2] marsStream2 "mars/stream.table" = "oper" : dump,string_type,lowercase; - ksec1expver[4] experimentVersionNumber2 = "0001" : dump; - template subDefinitions2 "grib1/local_no_mars.98.[subLocalDefinitionNumber2].def"; -} diff --git a/eccodes/definitions.save/grib1/local.98.2.def b/eccodes/definitions.save/grib1/local.98.2.def deleted file mode 100644 index 1dbe247c..00000000 --- a/eccodes/definitions.save/grib1/local.98.2.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 328 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] clusterNumber : dump; -alias number=clusterNumber; - -unsigned[1] totalNumberOfClusters : dump; -alias totalNumber=totalNumberOfClusters; - -# spareSetToZero -pad padding_loc2_1(1); - -unsigned[1] clusteringMethod : dump; - -unsigned[2] startTimeStep : dump; - -unsigned[2] endTimeStep : dump; - -signed[3] northernLatitudeOfDomain : dump; - -signed[3] westernLongitudeOfDomain : dump; - -signed[3] southernLatitudeOfDomain : dump; - -signed[3] easternLongitudeOfDomain : dump; - -unsigned[1] operationalForecastCluster : dump; - -unsigned[1] controlForecastCluster : dump; - -unsigned[1] numberOfForecastsInCluster : dump; -if (numberOfForecastsInCluster > 0) { -unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; -} -# spareToEnsureFixedLength -padto padding_loc2_2(offsetSection1 + 328); - - -constant unknown="-"; -concept_nofail clusteringDomain(unknown,"cluster_domain.def",conceptsMasterDir,conceptsLocalDirAll); -alias number = clusterNumber; -alias domain = clusteringDomain; diff --git a/eccodes/definitions.save/grib1/local.98.20.def b/eccodes/definitions.save/grib1/local.98.20.def deleted file mode 100644 index 4e114e91..00000000 --- a/eccodes/definitions.save/grib1/local.98.20.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 52 - section1Length ; - -# 1 -> 2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=20; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] iterationNumber : dump; -unsigned[1] totalNumberOfIterations : dump; -alias iteration = iterationNumber; - -alias local.iterationNumber=iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; - -# spareSetToZero -pad padding_loc20_1(1); diff --git a/eccodes/definitions.save/grib1/local.98.21.def b/eccodes/definitions.save/grib1/local.98.21.def deleted file mode 100644 index e10f108d..00000000 --- a/eccodes/definitions.save/grib1/local.98.21.def +++ /dev/null @@ -1,54 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 100 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[2] forecastOrSingularVectorNumber : dump; - -unsigned[2] numberOfIterations : dump; - -unsigned[2] numberOfSingularVectorsComputed : dump; - -unsigned[1] normAtInitialTime : dump; - -unsigned[1] normAtFinalTime : dump; - -unsigned[4] multiplicationFactorForLatLong : dump; - -signed[4] northWestLatitudeOfVerficationArea : dump; - -signed[4] northWestLongitudeOfVerficationArea : dump; - -signed[4] southEastLatitudeOfVerficationArea : dump; - -signed[4] southEastLongitudeOfVerficationArea : dump; - -unsigned[4] accuracyMultipliedByFactor : dump; - -unsigned[2] numberOfSingularVectorsEvolved : dump; - -# Ritz numbers: -signed[4] NINT_LOG10_RITZ : dump; - -signed[4] NINT_RITZ_EXP : dump; - -unsigned[1] optimisationTime : dump; -alias mars.opttime = optimisationTime; - -unsigned[1] forecastLeadTime : dump; -alias mars.leadtime = forecastLeadTime; - -ascii[1] marsDomain : dump; - -unsigned[2] methodNumber : dump; - -unsigned[2] numberOfForecastsInEnsemble : dump; - -unsigned[1] shapeOfVerificationArea : dump; - -# spareSetToZero -pad padding_loc21_1(1); - -# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); -alias mars.domain = marsDomain; diff --git a/eccodes/definitions.save/grib1/local.98.218.def b/eccodes/definitions.save/grib1/local.98.218.def deleted file mode 100644 index c6787e25..00000000 --- a/eccodes/definitions.save/grib1/local.98.218.def +++ /dev/null @@ -1,42 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 120 - section1Length ; - - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=18; - -if (stepType is "instant" ) { - alias productDefinitionTemplateNumber=epsPoint; -} else { - alias productDefinitionTemplateNumber=epsContinous; -} -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump ; -alias number=perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -codetable[1] dataOrigin "common/c-1.table" : dump; -alias origin = dataOrigin; - -ascii[4] modelIdentifier : dump ; - -unsigned[1] consensusCount =1 : dump ; - -# spareSetToZero -pad padding_loc18_1(3); - -ascii[4] ccccIdentifiers ; - -#consensus list(consensusCount) -#{ ascii[4] ccccIdentifiers : dump;} - -padto padding_loc18_2(offsetSection1 + 120); - -alias local.dataOrigin=dataOrigin; -alias local.modelIdentifier=modelIdentifier; -alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions.save/grib1/local.98.23.def b/eccodes/definitions.save/grib1/local.98.23.def deleted file mode 100644 index f23fce2b..00000000 --- a/eccodes/definitions.save/grib1/local.98.23.def +++ /dev/null @@ -1,56 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 84 - section1Length ; - -#used in local definition 13 -transient localFlag=2 : hidden; - -template mars_labeling "grib1/mars_labeling.def"; -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=23; - -unsigned[2] perturbationNumber : dump; - -# unsigned[2] numberOfForecastsInEnsemble : dump; - -unsigned[2] systemNumber : dump; -unsigned[2] methodNumber : dump; -unsigned[4] verifyingMonth : dump; -unsigned[1] averagingPeriod : dump ; -unsigned[2] forecastMonth : dump ; -unsigned[4] referenceDate : dump; -unsigned[4] climateDateFrom : dump; -unsigned[4] climateDateTo : dump; -signed[1] unitsDecimalScaleFactor : dump; -unsigned[1] thresholdIndicator : dump; -unsigned[2] lowerThresholdValue : dump; -unsigned[2] upperThresholdValue : dump; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; -alias local.verifyingMonth=verifyingMonth ; -alias local.averagingPeriod=averagingPeriod ; -alias local.forecastMonth=forecastMonth ; -alias local.referenceDate=referenceDate ; -alias local.climateDateFrom=climateDateFrom ; -alias local.climateDateTo=climateDateTo ; -alias local.unitsDecimalScaleFactor=unitsDecimalScaleFactor ; -alias local.thresholdIndicator=thresholdIndicator ; -alias local.lowerThresholdValue=lowerThresholdValue ; -alias local.upperThresholdValue=upperThresholdValue; - - -# TODO: BR Note: this is not where we expect it!! - -unsigned[2] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - - -#spareSetToZero -pad padding_loc23_1(2); - -alias number = perturbationNumber; -alias system = systemNumber; -alias method = methodNumber; -alias refdate = referenceDate; diff --git a/eccodes/definitions.save/grib1/local.98.24.def b/eccodes/definitions.save/grib1/local.98.24.def deleted file mode 100644 index 32f9341a..00000000 --- a/eccodes/definitions.save/grib1/local.98.24.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 56 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[2] satelliteIdentifier : dump; -alias mars.ident = satelliteIdentifier; - -unsigned[2] instrumentIdentifier : dump; -alias mars.instrument = instrumentIdentifier; - -unsigned[2] channelNumber : dump, can_be_missing; -alias mars.channel = channelNumber; - -unsigned[1] functionCode : dump ; diff --git a/eccodes/definitions.save/grib1/local.98.244.def b/eccodes/definitions.save/grib1/local.98.244.def deleted file mode 120000 index 80f7dfbd..00000000 --- a/eccodes/definitions.save/grib1/local.98.244.def +++ /dev/null @@ -1 +0,0 @@ -local.214.244.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/local.98.245.def b/eccodes/definitions.save/grib1/local.98.245.def deleted file mode 120000 index c488089b..00000000 --- a/eccodes/definitions.save/grib1/local.98.245.def +++ /dev/null @@ -1 +0,0 @@ -local.214.245.def \ No newline at end of file diff --git a/eccodes/definitions.save/grib1/local.98.25.def b/eccodes/definitions.save/grib1/local.98.25.def deleted file mode 100644 index 21b17891..00000000 --- a/eccodes/definitions.save/grib1/local.98.25.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=25; -if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; -} else { - alias productDefinitionTemplateNumber=eight; -} - - -constant GRIBEXSection1Problem = 52 - section1Length ; - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -unsigned[1] modelErrorType : dump; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions.save/grib1/local.98.26.def b/eccodes/definitions.save/grib1/local.98.26.def deleted file mode 100644 index 83025d4b..00000000 --- a/eccodes/definitions.save/grib1/local.98.26.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 69 - section1Length ; - -#used in local definition 13 -transient localFlag=2 : hidden; - -template mars_labeling "grib1/mars_labeling.def"; -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=26; - -if (stepType is "instant" ) { - alias productDefinitionTemplateNumber=epsPoint; -} else { - alias productDefinitionTemplateNumber=epsContinous; -} - -constant wrongPadding=1 : hidden; - -unsigned[1] number : dump; -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; -unsigned[4] referenceDate : dump ; -unsigned[4] climateDateFrom : dump; -unsigned[4] climateDateTo : dump ; -pad padding_loc26_1(6); -alias perturbationNumber=number; - -alias local.referenceDate= referenceDate ; -alias local.climateDateFrom= climateDateFrom ; -alias local.climateDateTo= climateDateTo ; diff --git a/eccodes/definitions.save/grib1/local.98.27.def b/eccodes/definitions.save/grib1/local.98.27.def deleted file mode 100644 index 345f41f7..00000000 --- a/eccodes/definitions.save/grib1/local.98.27.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 107 - section1Length ; - -#1->2 -transient grib2LocalSectionNumber=30; - -template mars_labeling "grib1/mars_labeling.def"; -constant wrongPadding=1 : hidden; - - -unsigned[1] perturbationNumber : dump ; -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; -alias number = perturbationNumber; - - -unsigned[1] oceanAtmosphereCoupling : dump ; - -pad padding_loc27_1(3); - -unsigned[4] legBaseDate : dump ; -unsigned[2] legBaseTime : dump ; -unsigned[1] legNumber : dump ; -unsigned[4] referenceDate : dump ; -unsigned[4] climateDateFrom : dump ; -unsigned[4] climateDateTo : dump ; - -alias mars._leg_number = legNumber; - -pad padding_loc27_2(33); diff --git a/eccodes/definitions.save/grib1/local.98.28.def b/eccodes/definitions.save/grib1/local.98.28.def deleted file mode 100644 index 8b4ad908..00000000 --- a/eccodes/definitions.save/grib1/local.98.28.def +++ /dev/null @@ -1,21 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# information about probabilities (they have already probabilities) -# information about clustering (they save it as ASCII, at the moment...) -# -constant GRIBEXSection1Problem = 79 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; -constant wrongPadding=1 : hidden; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; -unsigned[4] baseDateEPS : dump ; -unsigned[2] baseTimeEPS : dump; -unsigned[1] numberOfRepresentativeMember : dump ; -unsigned[1] numberOfMembersInCluster : dump; -unsigned[1] totalInitialConditions : dump; - -pad padding_loc28_1(19); diff --git a/eccodes/definitions.save/grib1/local.98.29.def b/eccodes/definitions.save/grib1/local.98.29.def deleted file mode 100644 index 3b4cf72a..00000000 --- a/eccodes/definitions.save/grib1/local.98.29.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 960 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] clusterNumber : dump; -alias number=clusterNumber; - -unsigned[1] totalNumberOfClusters : dump ; -alias totalNumber=totalNumberOfClusters; -pad padding_loc29_1(1); -unsigned[1] clusteringMethod : dump ; -signed[3] northernLatitudeOfDomain : dump; -signed[3] westernLongitudeOfDomain : dump ; -signed[3] southernLatitudeOfDomain : dump ; -signed[3] easternLongitudeOfDomain : dump ; -unsigned[1] numberOfForecastsInCluster : dump; -unsigned[1] numberOfParametersUsedForClustering : dump ; -unsigned[1] numberOfPressureLevelsUsedForClustering : dump ; -unsigned[1] numberOfStepsUsedForClustering : dump ; - -pad padding_loc29_2(10); - -listOfEnsembleForecastNumbers list(numberOfForecastsInCluster){ - unsigned[4] baseDateEPS : dump; - unsigned[2] baseTimeEPS : dump; - unsigned[1] number : dump; -} - -listOfParametersUsedForClustering list(numberOfParametersUsedForClustering){ - unsigned[1] parameterCode; - unsigned[1] tableCode; -} - -unsigned[2] pressureLevel[numberOfPressureLevelsUsedForClustering] : dump; - -# Name_change old=step new=stepForClustering -unsigned[2] stepForClustering[numberOfStepsUsedForClustering] : dump; - -#spareToEnsureFixedLength - PADTO n/a 960 -padto padding_loc29_3(offsetSection1 + 960); - -alias number = clusterNumber; diff --git a/eccodes/definitions.save/grib1/local.98.3.def b/eccodes/definitions.save/grib1/local.98.3.def deleted file mode 100644 index 66838992..00000000 --- a/eccodes/definitions.save/grib1/local.98.3.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 52 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; -constant operStream = "oper"; -alias mars.stream = operStream; - - -unsigned[1] band : dump; -alias mars.obstype = band; - -meta marsIdent sprintf("%d",indicatorOfTypeOfLevel) : dump; -alias mars.ident = marsIdent; - -unsigned[1] functionCode : dump; - -pad padding_loc3_1(1); diff --git a/eccodes/definitions.save/grib1/local.98.30.def b/eccodes/definitions.save/grib1/local.98.30.def deleted file mode 100644 index 952bf2f6..00000000 --- a/eccodes/definitions.save/grib1/local.98.30.def +++ /dev/null @@ -1,57 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Forecasting Systems with Variable Resolution -constant GRIBEXSection1Problem = 106 - section1Length ; - -# used in local definition 13 -transient localFlag=3 : hidden; - -# 1-> 2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=30; - -template mars_labeling "grib1/mars_labeling.def"; - -#1->2 -if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - alias productDefinitionTemplateNumber=epsPoint; - } -} else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - alias productDefinitionTemplateNumber=epsContinous; - } -} - - -unsigned[1] perturbationNumber : dump; -alias number=perturbationNumber; -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] oceanAtmosphereCoupling : dump; - -pad padding_loc30_1(3); - -unsigned[4] legBaseDate : dump ; -unsigned[2] legBaseTime : dump ; -unsigned[1] legNumber : dump ; -unsigned[4] referenceDate : dump ; -unsigned[4] climateDateFrom : dump ; -unsigned[4] climateDateTo : dump; - -alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; -alias local.legBaseDate=legBaseDate ; -alias local.legBaseTime=legBaseTime ; -alias local.legNumber=legNumber ; -alias local.referenceDate=referenceDate ; -alias local.climateDateFrom=climateDateFrom ; -alias local.climateDateTo=climateDateTo; - -alias mars._leg_number = legNumber; - -pad padding_loc30_2(32); diff --git a/eccodes/definitions.save/grib1/local.98.31.def b/eccodes/definitions.save/grib1/local.98.31.def deleted file mode 100644 index e565832b..00000000 --- a/eccodes/definitions.save/grib1/local.98.31.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 240 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number=perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[2] forecastMonth : dump; - - - - -unsigned[4] dateOfForecastRun : dump; -alias referenceDate = dateOfForecastRun; - - -unsigned[1] numberOfModels :dump; -pad padding_local1_31(42); -listOfModelIdentifiers list (numberOfModels) { - codetable[2] modelIdentifier 'common/c-1.table' :dump; -} -padto padding_sec1_loc(offsetSection1 + 240 ); - -alias number = perturbationNumber; - -alias total=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions.save/grib1/local.98.32.def b/eccodes/definitions.save/grib1/local.98.32.def deleted file mode 100644 index 4e90083f..00000000 --- a/eccodes/definitions.save/grib1/local.98.32.def +++ /dev/null @@ -1,46 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 328 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] clusterNumber : dump; -alias number=clusterNumber; - -unsigned[1] totalNumberOfClusters : dump; -alias totalNumber=totalNumberOfClusters; - -# spareSetToZero -pad padding_loc2_1(1); - -unsigned[1] clusteringMethod : dump; - -unsigned[2] startTimeStep : dump; - -unsigned[2] endTimeStep : dump; - -signed[3] northernLatitudeOfDomain : dump; - -signed[3] westernLongitudeOfDomain : dump; - -signed[3] southernLatitudeOfDomain : dump; - -signed[3] easternLongitudeOfDomain : dump; - -ascii[1] clusteringDomain : dump; - -unsigned[1] operationalForecastCluster : dump; - -unsigned[1] controlForecastCluster : dump; -unsigned[1] representativeMember : dump; -codetable[1] climatologicalRegime "grib1/regime.table" : dump; - -unsigned[1] numberOfForecastsInCluster : dump; -if (numberOfForecastsInCluster > 0) { -unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; -} -# spareToEnsureFixedLength -padto padding_loc2_2(offsetSection1 + 328); - -alias mars.number = clusterNumber; -alias mars.domain=clusteringDomain; diff --git a/eccodes/definitions.save/grib1/local.98.33.def b/eccodes/definitions.save/grib1/local.98.33.def deleted file mode 100644 index 20fe3936..00000000 --- a/eccodes/definitions.save/grib1/local.98.33.def +++ /dev/null @@ -1,25 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -constant GRIBEXSection1Problem = 0 ; - -unsigned[1] yearOfReference = yearOfCentury : dump; -unsigned[1] monthOfReference = month : dump; -unsigned[1] dayOfReference = day : dump; -unsigned[1] hourOfReference = hour : dump; -unsigned[1] minuteOfReference = minute : dump; -unsigned[1] centuryOfReference = centuryOfReferenceTimeOfData : dump; -transient secondsOfReference = 0 ; - -unsigned[1] numberOfForcasts=0 : dump; -if (numberOfForcasts) { - unsigned[3] forecastSteps[numberOfForcasts] : dump; -} -unsigned[1] numberOfAnalysis=1 : dump; -if (numberOfAnalysis) { - signed[3] analysisOffsets[numberOfAnalysis] : dump; -} - -meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference,dayOfReference) : dump; -meta timeOfReference time(hourOfReference,minuteOfReference,secondsOfReference) : dump; diff --git a/eccodes/definitions.save/grib1/local.98.35.def b/eccodes/definitions.save/grib1/local.98.35.def deleted file mode 100644 index 62e5dfcd..00000000 --- a/eccodes/definitions.save/grib1/local.98.35.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 120 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] yearOfReference = yearOfCentury : dump; -unsigned[1] monthOfReference = month : dump; -unsigned[1] dayOfReference = day : dump; -unsigned[1] hourOfReference = hour : dump; -unsigned[1] minuteOfReference = minute : dump; -unsigned[1] centuryOfReference = centuryOfReferenceTimeOfData : dump; -transient secondsOfReference = 0 ; - -unsigned[1] numberOfForcasts=0 : dump; -unsigned[1] numberOfAnalysis=1 : dump; - -if (numberOfForcasts) { - unsigned[3] forecastSteps[numberOfForcasts] : dump; -} -if (numberOfAnalysis) { - signed[3] analysisOffsets[numberOfAnalysis] : dump; -} - -padto padding_local_35(offsetSection1 + 120); - -meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference,dayOfReference) : dump; -meta timeOfReference time(hourOfReference,minuteOfReference,secondsOfReference) : dump; - -if (indicatorOfTypeOfLevel==160) { - alias mars.levelist = level; -} diff --git a/eccodes/definitions.save/grib1/local.98.36.def b/eccodes/definitions.save/grib1/local.98.36.def deleted file mode 100644 index fbffd460..00000000 --- a/eccodes/definitions.save/grib1/local.98.36.def +++ /dev/null @@ -1,54 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 56 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - -pad padding_local1_1(1); - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } -} else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } - } -} diff --git a/eccodes/definitions.save/grib1/local.98.37.def b/eccodes/definitions.save/grib1/local.98.37.def deleted file mode 100644 index c4db3866..00000000 --- a/eccodes/definitions.save/grib1/local.98.37.def +++ /dev/null @@ -1,34 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 1080 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] channelNumber : dump ; -alias mars.channel = channelNumber; - -unsigned[4] scalingFactorForFrequencies : dump ; -alias integerScalingFactorAppliedToFrequencies = scalingFactorForFrequencies ; - -unsigned[1] numberOfFrequencies : dump ; -alias totalNumberOfFrequencies = numberOfFrequencies ; -alias Nf = numberOfFrequencies ; - -# spareSetToZero -pad padding_loc37_1(3); - -unsigned[4] listOfScaledFrequencies[numberOfFrequencies] : dump; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - -# moreSpareSetToZero -padto padding_loc37_2(offsetSection1 + 1080); diff --git a/eccodes/definitions.save/grib1/local.98.38.def b/eccodes/definitions.save/grib1/local.98.38.def deleted file mode 100644 index 74cb02ea..00000000 --- a/eccodes/definitions.save/grib1/local.98.38.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 56 - section1Length ; - -# 1 -> 2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=38; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] iterationNumber : dump; -unsigned[1] totalNumberOfIterations : dump; -alias iteration = iterationNumber; - -alias local.iterationNumber=iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - -# spareSetToZero -pad padding_loc38_1(1); diff --git a/eccodes/definitions.save/grib1/local.98.39.def b/eccodes/definitions.save/grib1/local.98.39.def deleted file mode 100644 index f59c67f3..00000000 --- a/eccodes/definitions.save/grib1/local.98.39.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=39; -if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; -} else { - alias productDefinitionTemplateNumber=eight; -} - -constant GRIBEXSection1Problem = 56 - section1Length ; - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -unsigned[1] modelErrorType : dump; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions.save/grib1/local.98.4.def b/eccodes/definitions.save/grib1/local.98.4.def deleted file mode 100644 index bf4c1827..00000000 --- a/eccodes/definitions.save/grib1/local.98.4.def +++ /dev/null @@ -1,154 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 0 ; - -template mars_labeling "grib1/mars_labeling.def"; -transient localFlag=1 : hidden ; - -constant oceanStream = 1090; - -if(marsStream == oceanStream) -{ - unsigned[2] perturbationNumber : dump ; -} - -if(marsStream != oceanStream) -{ - unsigned[1] perturbationNumber : dump ; - pad padding_loc4_2(1); -} - -unsigned[1] flagShowingPostAuxiliaryArrayInUse; -# 'grib1/ocean.1.table'; - -unsigned[1] systemNumber : dump ; -alias system=systemNumber; - -unsigned[1] methodNumber : dump ; - -# -# Coordinate structure definition -# - -unsigned[1] spaceUnitFlag : dump ; - -unsigned[1] verticalCoordinateDefinition : dump ; - -unsigned[1] horizontalCoordinateDefinition : dump ; - -unsigned[1] timeUnitFlag : dump ; - -unsigned[1] timeCoordinateDefinition : dump ; - - -# -# Position definition: mixed coordinates -# - -unsigned[1] mixedCoordinateFieldFlag : dump ; - -unsigned[1] coordinate1Flag : dump ; - -unsigned[1] averaging1Flag : dump ; - -signed[4] coordinate1Start : dump ; - -signed[4] coordinate1End : dump ; - -unsigned[1] coordinate2Flag : dump ; - -unsigned[1] averaging2Flag : dump ; - -signed[4] coordinate2Start : dump ; - -signed[4] coordinate2End : dump ; - -# -# Data grid definitions -# - -unsigned[1] coordinate3Flag : dump ; - -unsigned[1] coordinate4Flag : dump ; - -signed[4] coordinate4OfFirstGridPoint : dump; - -signed[4] coordinate3OfFirstGridPoint : dump ; - -signed[4] coordinate4OfLastGridPoint : dump; - -signed[4] coordinate3OfLastGridPoint : dump ; - -signed[4] iIncrement : dump ; - -signed[4] jIncrement : dump; - -flags[1] flagForIrregularGridCoordinateList 'grib1/ocean.1.table' : dump; - -flags[1] flagForNormalOrStaggeredGrid 'grib1/ocean.1.table' : dump; - -# -# Auxiliary information -# - -flags[1] flagForAnyFurtherInformation 'grib1/ocean.1.table' : dump; - -unsigned[1] numberInHorizontalCoordinates : dump; - -unsigned[2] numberInMixedCoordinateDefinition : dump; - -unsigned[2] numberInTheGridCoordinateList : dump; - -unsigned[2] numberInTheAuxiliaryArray : dump ; - -# -# Horizontal coordinate definition -# - - -unsigned[4] horizontalCoordinateSupplement[numberInHorizontalCoordinates] : dump; - -# -# Mixed coordinate definition -# - - -unsigned[4] mixedCoordinateDefinition[numberInMixedCoordinateDefinition] : dump; - -# -# Grid coordinate list -# -if (numberInTheGridCoordinateList>0) { - - signed[4] gridCoordinate[numberInTheGridCoordinateList] : dump; -} - -# -# Auxiliary array -# - -unsigned[4] auxiliary[numberInTheAuxiliaryArray] : dump; - -# -# Post-auxiliary array -# - -constant postAuxiliaryArrayPresent = 1; - -if (flagShowingPostAuxiliaryArrayInUse == postAuxiliaryArrayPresent){ - unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; - meta sizeOfPostAuxiliaryArray evaluate(sizeOfPostAuxiliaryArrayPlusOne - 1); - if (sizeOfPostAuxiliaryArray>0) { - unsigned[4] postAuxiliary[sizeOfPostAuxiliaryArray] : dump; - - if (sizeOfPostAuxiliaryArray>3) { - meta referenceDate element(postAuxiliary,3); - } - } else { - transient referenceDate=0; - } - -} -alias hdate = dataDate; - -template local_use "grib1/mars_labeling.4.def"; diff --git a/eccodes/definitions.save/grib1/local.98.40.def b/eccodes/definitions.save/grib1/local.98.40.def deleted file mode 100644 index 4e92d73e..00000000 --- a/eccodes/definitions.save/grib1/local.98.40.def +++ /dev/null @@ -1,23 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 56 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -codetable[2] marsModel "mars/model.[centre:l].table" = "cosmo": dump; -alias mars.model = marsModel; - -codetable[2] marsDomain "mars/domain.[centre:l].table" = "s": dump; -alias mars.domain = marsDomain; - -pad padding_local40_1(1); diff --git a/eccodes/definitions.save/grib1/local.98.49.def b/eccodes/definitions.save/grib1/local.98.49.def deleted file mode 100644 index 6a8543b0..00000000 --- a/eccodes/definitions.save/grib1/local.98.49.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=49; -if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; -} else { - alias productDefinitionTemplateNumber=eight; -} - -constant GRIBEXSection1Problem = 56 - section1Length ; - -# Ensemble forecast number: = 0 for a control forecast. Not used for analysis (set to zero) -unsigned[1] perturbationNumber : dump; -alias mars.number=perturbationNumber; -# Total number of forecasts in ensemble (Set to 1 for analysis) -unsigned[1] numberOfForecastsInEnsemble : dump; -# Model error type: 1=Full state 2=Forcing 3=Model Bias -unsigned[1] modelErrorType : dump; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - -alias local.perturbationNumber=perturbationNumber; -alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; -alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions.save/grib1/local.98.5.def b/eccodes/definitions.save/grib1/local.98.5.def deleted file mode 100644 index a152d85c..00000000 --- a/eccodes/definitions.save/grib1/local.98.5.def +++ /dev/null @@ -1,61 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 58 - section1Length ; - -constant probPoint=5 : hidden; -constant probContinous=9 : hidden; - -# 1 to 2 conversion -_if (timeRangeIndicator==3 || timeRangeIndicator==4 - || timeRangeIndicator==5) { - alias productDefinitionTemplateNumber=probContinous; -} else { - alias productDefinitionTemplateNumber=probPoint; -} - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] forecastProbabilityNumber : dump; - -unsigned[1] totalNumberOfForecastProbabilities : dump; - -signed[1] localDecimalScaleFactor : dump; - -unsigned[1] thresholdIndicator : dump; - -signed[2] lowerThreshold : can_be_missing,dump; - -signed[2] upperThreshold : can_be_missing,dump; - -# 1 to 2 conversion -_if (thresholdIndicator == 1) { -# Probability of event above lower limit - transient probabilityType=3; - transient scaleFactorOfLowerLimit=localDecimalScaleFactor; - transient scaledValueOfLowerLimit=lowerThreshold; - transient scaleFactorOfUpperLimit=missing(); - transient scaledValueOfUpperLimit=missing(); - -} -_if (thresholdIndicator == 2) { -# Probability of event below upper limit - transient probabilityType=4; - transient scaleFactorOfLowerLimit= missing(); - transient scaledValueOfLowerLimit=missing(); - transient scaleFactorOfUpperLimit=localDecimalScaleFactor; - transient scaledValueOfUpperLimit=upperThreshold; -} -_if (thresholdIndicator == 3) { -# Probability of event between lower and upper limits. -# The range includes the lower limit but not the upper limit - transient probabilityType=2; - transient scaleFactorOfLowerLimit=localDecimalScaleFactor; - transient scaledValueOfLowerLimit=lowerThreshold; - transient scaleFactorOfUpperLimit=localDecimalScaleFactor; - transient scaledValueOfUpperLimit=upperThreshold; -} - -# spareSetToZero -pad padding_loc5_1(1); -alias number = forecastProbabilityNumber; -alias totalNumber=totalNumberOfForecastProbabilities; diff --git a/eccodes/definitions.save/grib1/local.98.50.def b/eccodes/definitions.save/grib1/local.98.50.def deleted file mode 100644 index 182d6fe3..00000000 --- a/eccodes/definitions.save/grib1/local.98.50.def +++ /dev/null @@ -1,30 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 300 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] perturbationNumber : dump ; -alias number=perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump ; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] modelIdentifier : dump ; - -signed[4] latitudeOfNorthWestCornerOfArea : dump; - -signed[4] longitudeOfNorthWestCornerOfArea : dump ; - -signed[4] latitudeOfSouthEastCornerOfArea : dump; - -signed[4] longitudeOfSouthEastCornerOfArea : dump; - -# reservedForECMWFAdditions -unsigned[1] originalParameterNumber : dump ; - -unsigned[1] originalParameterTableNumber : dump ; - -pad padding_loc50_1(46); - -ascii[184] optionalData : dump ; diff --git a/eccodes/definitions.save/grib1/local.98.6.def b/eccodes/definitions.save/grib1/local.98.6.def deleted file mode 100644 index 8e3ed491..00000000 --- a/eccodes/definitions.save/grib1/local.98.6.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -template mars_labeling "grib1/mars_labeling.def"; - -# zeroes - -pad padding_loc6_1(2); - -unsigned[3] dateSSTFieldUsed : dump; - -unsigned[1] typeOfSSTFieldUsed : dump; - -unsigned[1] countOfICEFieldsUsed : dump; - - -ICEFieldsUsed list(countOfICEFieldsUsed) -{ - unsigned[3] dateOfIceFieldUsed : dump ; - unsigned[1] satelliteNumber : dump ; -} - -constant GRIBEXSection1Problem = 56 + countOfICEFieldsUsed * 3 - section1Length ; diff --git a/eccodes/definitions.save/grib1/local.98.7.def b/eccodes/definitions.save/grib1/local.98.7.def deleted file mode 100644 index 9b15b410..00000000 --- a/eccodes/definitions.save/grib1/local.98.7.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# 1-> 2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=7; - -constant GRIBEXSection1Problem = 54 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -unsigned[1] sensitiveAreaDomain : dump; -#alias mars.domain=sensitiveAreaDomain; - -unsigned[1] diagnosticNumber : dump; - -alias iteration = iterationNumber; -alias diagnostic = diagnosticNumber; - -alias local.iterationNumber=iterationNumber; -alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; -alias local.sensitiveAreaDomain=sensitiveAreaDomain; -alias local.diagnosticNumber=diagnosticNumber; - -# spareSetToZero -pad padding_loc7_1(1); diff --git a/eccodes/definitions.save/grib1/local.98.8.def b/eccodes/definitions.save/grib1/local.98.8.def deleted file mode 100644 index b2878870..00000000 --- a/eccodes/definitions.save/grib1/local.98.8.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXSection1Problem = 62 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[1] intervalBetweenTimes : dump; - -constant numberOfIntegers=12; -unsigned[1] unsignedIntegers[numberOfIntegers] : dump; diff --git a/eccodes/definitions.save/grib1/local.98.9.def b/eccodes/definitions.save/grib1/local.98.9.def deleted file mode 100644 index a3d37151..00000000 --- a/eccodes/definitions.save/grib1/local.98.9.def +++ /dev/null @@ -1,62 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# 1-> 2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=9; - -constant GRIBEXSection1Problem = 92 - section1Length ; - -template mars_labeling "grib1/mars_labeling.def"; - -unsigned[2] forecastOrSingularVectorNumber : dump; - -# -# These elements are set to zero for perturbed forecast -# - -constant perturbedType = 60; -if(type == perturbedType) -{ - # octetsSetToZero - pad padding_loc9_1(41); -} - -# -# These elements are coded for singular vectors -# - -if(type != perturbedType) -{ - unsigned[2] numberOfIterations : dump; - unsigned[2] numberOfSingularVectorsComputed : dump; - unsigned[1] normAtInitialTime : dump ; - unsigned[1] normAtFinalTime : dump ; - unsigned[4] multiplicationFactorForLatLong : dump; - signed[4] northWestLatitudeOfLPOArea : dump ; - signed[4] northWestLongitudeOfLPOArea : dump; - signed[4] southEastLatitudeOfLPOArea : dump; - signed[4] southEastLongitudeOfLPOArea : dump; - unsigned[4] accuracyMultipliedByFactor : dump; - unsigned[2] numberOfSingularVectorsEvolved : dump; - # Ritz numbers: - signed[4] NINT_LOG10_RITZ : dump ; - signed[4] NINT_RITZ_EXP : dump ; - - alias local.numberOfIterations= numberOfIterations; - alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; - alias local.normAtInitialTime= normAtInitialTime ; - alias local.normAtFinalTime= normAtFinalTime ; - alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; - alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; - alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; - alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; - alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; - alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; - alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; -# Ritz numbers: - alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; - alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; -} - -# spareSetToZero -pad padding_loc9_2(1); diff --git a/eccodes/definitions.save/grib1/local.98.def b/eccodes/definitions.save/grib1/local.98.def deleted file mode 100644 index 3fcd6e69..00000000 --- a/eccodes/definitions.save/grib1/local.98.def +++ /dev/null @@ -1,4 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned[1] localDefinitionNumber = 1 : dump,edition_specific,no_copy; -template localDefinition "grib1/local.[centre:l].[localDefinitionNumber:l].def"; diff --git a/eccodes/definitions.save/grib1/local/ecmf/3.table b/eccodes/definitions.save/grib1/local/ecmf/3.table deleted file mode 100644 index 767213f1..00000000 --- a/eccodes/definitions.save/grib1/local/ecmf/3.table +++ /dev/null @@ -1,53 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for which the data are included -0 0 Reserved -1 sfc Surface (of the Earth, which includes sea surface) -2 sfc Cloud base level -3 sfc Cloud top level -4 sfc 0 deg (C) isotherm level -5 5 Adiabatic condensation level (parcel lifted from surface) -6 6 Maximum wind speed level -7 7 Tropopause level -8 sfc Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 sfc Mean sea level 0 0 -103 103 Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) -105 sfc Fixed height above ground height in meters (2 octets) -106 106 Layer between two height levels above ground - height of top, height of bottom (hm) -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 ml Layer between two hybrid levels level number of top level number of bottom -111 sfc Depth below land surface centimeters (2 octets) -112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -200 sfc Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -# 202-209 Reserved -210 pl Isobaric surface (Pa) (ECMWF extension) -# 211-254 Reserved for local use -211 wv Ocean wave level (ECMWF extension) -212 oml Ocean mixed layer (ECMWF extension) -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/local/ecmf/5.table b/eccodes/definitions.save/grib1/local/ecmf/5.table deleted file mode 100644 index d680045f..00000000 --- a/eccodes/definitions.save/grib1/local/ecmf/5.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 5 Time Range Indicator -0 0 Forecast product valid at reference time + P1 (P1>0) -1 1 Initialized analysis product for reference time (P1=0). -2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 -3 3 Average (reference time + P1 to reference time + P2) -4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 -5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 -6 6 Average (reference time - P1 to reference time - P2) -7 7 Average (reference time - P1 to reference time + P2) -10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 -51 51 Climatological Mean Value: -113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. -116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. -117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. -118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. -119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. -124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. -125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -# For ECMWF -128 128 Average of N forecast products with a valid time ranging between reference time + P1 and reference time + P2; products have reference times at Intervals of 24 hours, beginning at the given reference time -130 130 Average of N forecast products; each product has a forecast period from P1 to P2; products have reference times at intervals of P2 - P1, beginning at the given reference time; thus the N products cover a continuous time span -133 133 Average of N forecast products with valid times at intervals given by the remainder of P1/24, from reference time + P1 to reference time + P2; beginning at the given reference time, the reference times are also incremented, at intervals of P2 unless P2 > 24, in which case the interval is 24; thus the N products cover a time span with a regular time interval, given by the remainder of P1/24. diff --git a/eccodes/definitions.save/grib1/local/edzw/2.0.3.table b/eccodes/definitions.save/grib1/local/edzw/2.0.3.table deleted file mode 100755 index a4f9a0df..00000000 --- a/eccodes/definitions.save/grib1/local/edzw/2.0.3.table +++ /dev/null @@ -1,130 +0,0 @@ -1 p P Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 3 None Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 5 None ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 9 None Standard deviation of height m -10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) -11 t T Temperature K -12 12 None Virtual temperature K -13 13 None Potential temperature K -14 14 None Pseudo-adiabatic potential temperature K -15 15 None Maximum temperature K -16 16 None Minimum temperature K -17 17 None Dew-point temperature K -18 18 None Dew-point depression (or deficit) K -19 19 None Lapse rate K s**-1 -20 20 None Visibility m -21 21 None Radar spectra (1) - -22 22 None Radar spectra (2) - -23 23 None Radar spectra (3) - -24 24 None Parcel lifted index (to 500 hPa) K -25 25 None Temperature anomaly K -26 26 None Pressure anomaly Pa -27 27 None Geopotential height anomaly gpm -28 28 None Wave spectra (1) - -29 29 None Wave spectra (2) - -30 30 None Wave spectra (3) - -31 31 None Wind direction Degree true -32 32 None Wind speed m s**-1 -33 u U U-component of wind m s**-1 -34 v V V-component of wind m s**-1 -35 35 None Stream Function m**2 s**-1 -36 36 None Velocity Potential m**2 s**-1 -37 37 None Montgomery stream Function m**2 s**-1 -38 38 None Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 40 None Vertical velocity m s**-1 -41 41 None Absolute vorticity s**-1 -42 42 None Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 45 None Vertical u-component shear s**-1 -46 46 None Vertical v-component shear s**-1 -47 47 None Direction of current Degree true -48 48 None Speed of current m s**-1 -49 49 None U-component of current m s**-1 -50 50 None V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 53 None Humidity mixing ratio kg m**-2 -54 54 None Precipitable water kg m**-2 -55 55 None Vapour pressure Pa -56 56 None Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 59 None Precipitation rate kg m**-2 s**-1 -60 60 None Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 62 LSP Large scale precipitation kg m**-2 -63 63 None Convective precipitation (water) kg m**-2 -64 64 None Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalentof accumulated snow depth kg m**-2 -66 sd SD Snow depth m (of water equivalent) -67 67 None Mixed layer depth m -68 68 None Transient thermocline depth m -69 69 None Main thermocline depth m -70 70 None Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 clwc CLWC Cloud liquid water content kg kg**-1 -77 77 None Best lifted index (to 500 hPa) K -78 csf CSF Convective snow-fall kg m**-2 -79 lsf LSF Large scale snow-fall kg m**-2 -80 80 None Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 82 None Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Surface temperature of soil K -86 ssw SSW Soil moisture content kg m**-2 -87 veg VEG Percentage of vegetation % -88 88 None Salinity kg kg**-1 -89 89 None Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 91 None Ice cover (1=land, 0=sea) (0 - 1) -92 92 None Ice thickness m -93 93 None Direction of ice drift Degree true -94 94 None Speed of ice drift m s*-1 -95 95 None U-component of ice drift m s**-1 -96 96 None V-component of ice drift m s**-1 -97 97 None Ice growth rate m s**-1 -98 98 None Ice divergence s**-1 -99 99 None Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 104 None Direction of swell waves Degree true -105 105 None Significant height of swell waves m -106 106 None Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 109 None Secondary wave direction Degree true -110 110 None Secondary wave period s -111 111 None Net short-wave radiation flux (surface) W m**-2 -112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiationflux(atmosph.top) W m**-2 -114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 -115 115 None Long-wave radiation flux W m**-2 -116 116 None Short-wave radiation flux W m**-2 -117 117 None Global radiation flux W m**-2 -118 118 None Brightness temperature K -119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 -120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF (surface) Latent heat flux W m**-2 -122 sshf SSHF (surface) Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 124 None Momentum flux, u-component N m**-2 -125 125 None Momentum flux, v-component N m**-2 -126 126 None Wind mixing energy J -127 127 None Image data - -148 lsm LSM LandSeaMask -160 160 Unknown -255 - - Indicates a missing value - diff --git a/eccodes/definitions.save/grib1/local/edzw/5.table b/eccodes/definitions.save/grib1/local/edzw/5.table deleted file mode 100755 index 7f7c99d4..00000000 --- a/eccodes/definitions.save/grib1/local/edzw/5.table +++ /dev/null @@ -1,24 +0,0 @@ -# CODE TABLE 5 Time Range Indicator -0 0 Forecast product valid at reference time + P1 (P1>0) -1 1 Initialized analysis product for reference time (P1=0). -2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 -3 3 Average (reference time + P1 to reference time + P2) -4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 -5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 -6 6 Average (reference time - P1 to reference time - P2) -7 7 Average (reference time - P1 to reference time + P2) -10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 -11 11 local use: Initialized forecast (P1 > 0) for IDFI -13 13 local use: Fields from analyses valid at reference time for P1 = 0 -14 14 local use: IFS forecast interpolated to GME triangular grid -51 51 Climatological Mean Value: -113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. -116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. -117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. -118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. -119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. -124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. -125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table deleted file mode 100755 index f2ecd9af..00000000 --- a/eccodes/definitions.save/grib1/local/edzw/generatingProcessIdentifier.table +++ /dev/null @@ -1,86 +0,0 @@ -025 AN2MO AN2MO -033 ANALY ANALY -034 WAMIT WAMIT -036 GPEPS GPEPS -037 KWGFS KWGFS -038 KWGF5 KWGF5 -044 B106V B106V -049 S106V S106V -053 AN1MO AN1MO -058 EM3AN EM3AN -059 EM3MO EM3MO -061 ECMFM ECMFM -064 KWBCM KWBCM -065 LFPWM LFPWM -068 KWB01 KWB01 -069 SGGLO SGGLO -074 B106A B106A -075 SGMED SGMED -079 S106A S106A -080 ECENS ECENS -081 NORMW NORMW -084 NORM3 NORM3 -085 SGNAT SGNAT -086 SGESH SGESH -087 SGBAL SGBAL -088 MOMI3 MOMI3 -094 P106A P106A -111 DM3AN DM3AN -112 DM3MO DM3MO -115 DM4AN DM4AN -116 DM4MO DM4MO -121 WAFTF WAFTF -122 WAFSZ WAFSZ -123 KWB02 KWB02 -124 KWB03 KWB03 -126 KWB04 KWB04 -127 NAEGR NAEGR -131 LM1AN LM1AN -132 LM1MO LM1MO -134 LM2AN LM2AN -135 LM2MO LM2MO -137 LM3AN LM3AN -138 LM3MO LM3MO -140 ecgm_diag_fc05 ecgm_diag_fc05 -141 I032A I032A -143 I048A I048A -145 I064A I064A -147 I096A I096A -148 I096F I096F -149 I128A I128A -150 I128F I128F -157 R096A R096A -159 R128A R128A -160 R128F R128F -173 I192A I192A -174 I192F I192F -175 I256A I256A -176 I256F I256F -185 R192A R192A -186 R192F R192F -187 R256A R256A -188 R256F R256F -194 E128A E128A -195 E192A E192A -196 E256A E256A -197 SGGM0 SGGM0 -198 SGGM1 SGGM1 -199 SGGM2 SGGM2 -201 SGLM0 SGLM0 -202 SGLM1 SGLM1 -205 SGBSH SGBSH -206 I384A I384A -207 I384F I384F -208 R384A R384A -209 R384F R384F -210 E384A E384A -211 EGMES EGMES -212 LFMES LFMES -213 LM4MO LM4MO -214 LM4AN LM4AN -215 LM5MO LM5MO -216 LM5AN LM5AN -217 LM6MO LM6MO -218 LM6AN LM6AN -219 LM7MO LM7MO -225 SGBS1 SGBS1 diff --git a/eccodes/definitions.save/grib1/local/rjtd/252.table b/eccodes/definitions.save/grib1/local/rjtd/252.table deleted file mode 100644 index b271d2df..00000000 --- a/eccodes/definitions.save/grib1/local/rjtd/252.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table JMA-252 - type of vegetation -# -0 0 Sea or inland water -1 1 Broadleaf-evergreen trees -2 2 Broadleaf-deciduous trees -3 3 Broadleaf and needleleaf trees -4 4 Needleleaf-evergreen trees -5 5 Needleleaf-deciduous trees -6 6 Broadleaf trees with groundcover -7 7 Groundcover -8 8 Broadleaf shrubs with groundcover -9 9 Broadleaf shrubs with bare soil -10 10 Dwarf trees and shrubs with groundcover (tundra) -11 11 No vegetation: bare soil -12 12 Broadleaf-deciduous trees with winter wheat -13 13 Perennial land ice diff --git a/eccodes/definitions.save/grib1/local/rjtd/3.table b/eccodes/definitions.save/grib1/local/rjtd/3.table deleted file mode 100644 index b22887d8..00000000 --- a/eccodes/definitions.save/grib1/local/rjtd/3.table +++ /dev/null @@ -1,58 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for which the data are included -# For JMA - Japanese Meteorological Agency -0 0 Reserved -1 sfc Surface (of the Earth, which includes sea surface) -2 sfc Cloud base level -3 sfc Cloud top level -4 sfc 0 deg (C) isotherm level -5 5 Adiabatic condensation level (parcel lifted from surface) -6 6 Maximum wind speed level -7 7 Tropopause level -8 sfc Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 pl Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 101 Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 sfc Mean sea level 0 0 -103 103 Fixed height level height above mean sea level (MSL) in meters -104 104 Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) -105 sfc Fixed height above ground height in meters (2 octets) -106 106 Layer between two height levels above ground - height of top, height of bottom (hm) -107 107 Sigma level sigma value in 1/10000 (2 octets) -108 108 Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 ml Hybrid level level number (2 octets) -110 ml Layer between two hybrid levels level number of top level number of bottom -111 sfc Depth below land surface centimeters (2 octets) -112 sfc Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -200 sfc Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -# 202-209 Reserved -210 pl Isobaric surface (Pa) (ECMWF extension) - -# 211-254 Reserved for local use -# JRA55 levels -211 sfc Entire soil (considered as a single layer) -212 sfc The bottom of land surface model -213 sfc Underground layer number of land surface model - -255 255 Indicates a missing value diff --git a/eccodes/definitions.save/grib1/local/rjtd/5.table b/eccodes/definitions.save/grib1/local/rjtd/5.table deleted file mode 100644 index 86e41147..00000000 --- a/eccodes/definitions.save/grib1/local/rjtd/5.table +++ /dev/null @@ -1,27 +0,0 @@ -# CODE TABLE 5 Time Range Indicator -0 0 Forecast product valid at reference time + P1 (P1>0) -1 1 Initialized analysis product for reference time (P1=0). -2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 -3 3 Average (reference time + P1 to reference time + P2) -4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 -5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 -6 6 Average (reference time - P1 to reference time - P2) -7 7 Average (reference time - P1 to reference time + P2) -10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 -51 51 Climatological Mean Value: -113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. -116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. -117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. -118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. -119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. -124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. -125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -# For JRA55 -128 128 Average of N forecast products with a valid time ranging between reference time + P1 and reference time + P2; products have reference times at Intervals of 24 hours, beginning at the given reference time -129 129 Temporal variance of N forecasts; each product has valid time ranging between reference time + P1 and reference time + P2; products have reference times at intervals of 24 hours, beginning at the given reference time; unit of measurement is square of that in Code Table 2 -130 130 Average of N forecast products; each product has a forecast period from P1 to P2; products have reference times at intervals of P2 - P1, beginning at the given reference time; thus the N products cover a continuous time span -131 131 Temporal variance of N forecasts; valid time of the first product ranges between R + P1 and R + P2, where R is reference time given in octets 13 to 17, then subsequent products have valid time range at interval of P2 - P1; thus all N products cover continuous time span; products have reference times at intervals of P2 - P1, beginning at the given reference time; unit of measurement is square of that in Code Table 2 -132 132 Temporal variance of N uninitialized analyses [P1 = 0] or instantaneous forecasts [P1 > 0]; each product has valid time at the reference time + P1; products have reference times at intervals of P2, beginning at the given reference time; unit of measurement is square of that in Code Table 2 diff --git a/eccodes/definitions.save/grib1/localConcepts/ammc/name.def b/eccodes/definitions.save/grib1/localConcepts/ammc/name.def deleted file mode 100644 index 06e43cf2..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ammc/name.def +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#test -'test' = { - indicatorOfParameter = 1 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def deleted file mode 100644 index 7c9b8512..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ammc/paramId.def +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#test -'999999999' = { - indicatorOfParameter = 1 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def deleted file mode 100644 index 3d91e554..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ammc/shortName.def +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#test -'' = { - indicatorOfParameter = 1 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ammc/units.def b/eccodes/definitions.save/grib1/localConcepts/ammc/units.def deleted file mode 100644 index af3952df..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ammc/units.def +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#test -'(-1 to 1)' = { - indicatorOfParameter = 1 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/cnmc/name.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/name.def deleted file mode 100644 index a7af1d9e..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/cnmc/name.def +++ /dev/null @@ -1,2435 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure -'Pressure' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 102 ; - } -#Pressure Tendency (S) -'Pressure Tendency (S)' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (S) -'Geopotential (S)' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (full lev) -'Geopotential (full lev)' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } -#Geopotential -'Geopotential' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Geometric Height of the earths surface above sea level -'Geometric Height of the earths surface above sea level' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'Geometric Height of the layer limits above sea level(NN)' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature (G) -'Temperature (G)' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } -#2m Temperature (AV) -'2m Temperature (AV)' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Climat. temperature, 2m Temperature -'Climat. temperature, 2m Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Temperature -'Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#Max 2m Temperature (i) -'Max 2m Temperature (i)' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#Min 2m Temperature (i) -'Min 2m Temperature (i)' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#2m Dew Point Temperature -'2m Dew Point Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2m Dew Point Temperature (AV) -'2m Dew Point Temperature (AV)' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind Direction (DD_10M) -'Wind Direction (DD_10M)' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind Direction (DD) -'Wind Direction (DD)' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Wind speed (SP_10M) -'Wind speed (SP_10M)' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind speed (SP) -'Wind speed (SP)' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 110 ; - } -#U component of wind -'U component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#U component of wind -'U component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'V component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#V component of wind -'V component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vertical Velocity (Geometric) (w) -'Vertical Velocity (Geometric) (w)' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } -#Specific Humidity (S) -'Specific Humidity (S)' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } -#Specific Humidity (2m) -'Specific Humidity (2m)' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Specific Humidity -'Specific Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#2m Relative Humidity -'2m Relative Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Relative Humidity -'Relative Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - indicatorOfTypeOfLevel = 1 ; - } -#Evaporation (s) -'Evaporation (s)' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Total Column-Integrated Cloud Ice -'Total Column-Integrated Cloud Ice' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Precipitation rate (S) -'Total Precipitation rate (S)' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale Precipitation rate -'Large-Scale Precipitation rate' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } -#Convective Precipitation rate -'Convective Precipitation rate' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow Depth -'Snow Depth' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Cloud Cover -'Convective Cloud Cover' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'Convective Snowfall rate water equivalent (s)' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale snowfall rate water equivalent (s) -'Large-Scale snowfall rate water equivalent (s)' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - indicatorOfTypeOfLevel = 1 ; - } -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'Soil Temperature ( 36 cm depth, vv=0h)' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } -#Soil Temperature (41 cm depth) -'Soil Temperature (41 cm depth)' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; - topLevel = 100 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'Column-integrated Soil Moisture (1) 0 -10 cm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'Column-integrated Soil Moisture (2) 10-100cm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; - topLevel = 10 ; - } -#Plant cover -'Plant cover' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - indicatorOfTypeOfLevel = 1 ; - } -#Water Runoff (10-100) -'Water Runoff (10-100)' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#Water Runoff (10-190) -'Water Runoff (10-190)' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 10 ; - bottomLevel = 190 ; - } -#Water Runoff (s) -'Water Runoff (s)' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - timeRangeIndicator = 4 ; - topLevel = 0 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Thickness -'sea Ice Thickness' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - indicatorOfTypeOfLevel = 1 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'Direction of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Net short wave radiation flux (m) (at the surface) -'Net short wave radiation flux (m) (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net short wave radiation flux (m) (on the model top) -'Net short wave radiation flux (m) (on the model top)' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'Net long wave radiation flux (m) (on the model top)' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation (m) (at the surface) -'Photosynthetically active radiation (m) (at the surface)' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Solar radiation heating rate -'Solar radiation heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - indicatorOfTypeOfLevel = 110 ; - } -#Thermal radiation heating rate -'Thermal radiation heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - indicatorOfTypeOfLevel = 110 ; - } -#Latent heat flux from bare soil -'Latent heat flux from bare soil' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Latent heat flux from plants -'Latent heat flux from plants' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } -#Sunshine -'Sunshine' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } -#Stomatal Resistance -'Stomatal Resistance' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Cloud cover -'Cloud cover' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#Non-Convective Cloud Cover, grid scale -'Non-Convective Cloud Cover, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Mixing Ratio -'Cloud Mixing Ratio' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Ice Mixing Ratio -'Cloud Ice Mixing Ratio' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 110 ; - } -#Rain mixing ratio -'Rain mixing ratio' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - indicatorOfTypeOfLevel = 110 ; - } -#Snow mixing ratio -'Snow mixing ratio' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated rain -'Total column integrated rain' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total column integrated snow -'Total column integrated snow' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - indicatorOfTypeOfLevel = 1 ; - } -#Grauple -'Grauple' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated grauple -'Total column integrated grauple' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } -#Total Column integrated water (all components incl. precipitation) -'Total Column integrated water (all components incl. precipitation)' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertical integral of divergence of total water content (s) -'vertical integral of divergence of total water content (s)' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - indicatorOfTypeOfLevel = 1 ; - } -#subgrid scale cloud water -'subgrid scale cloud water' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - indicatorOfTypeOfLevel = 110 ; - } -#subgridscale cloud ice -'subgridscale cloud ice' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#cloud cover CH (0..8) -'cloud cover CH (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'cloud cover CM (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'cloud cover CL (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#cloud base above msl, shallow convection -'cloud base above msl, shallow convection' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } -#cloud top above msl, shallow convection -'cloud top above msl, shallow convection' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } -#specific cloud water content, convective cloud -'specific cloud water content, convective cloud' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 110 ; - } -#Height of Convective Cloud Base (i) -'Height of Convective Cloud Base (i)' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } -#Height of Convective Cloud Top (i) -'Height of Convective Cloud Top (i)' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'base index (vertical level) of main convective cloud (i)' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'top index (vertical level) of main convective cloud (i)' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to convection -'Temperature tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to convection -'Specific humitiy tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 110 ; - } -#zonal wind tendency due to convection -'zonal wind tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to convection -'meridional wind tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 110 ; - } -#height of top of dry convection -'height of top of dry convection' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'height of 0 degree celsius level code 0,3,6 ?' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } -#Height of snow fall limit -'Height of snow fall limit' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } -#Tendency of specific cloud liquid water content due to conversion -'Tendency of specific cloud liquid water content due to conversion' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud ice content due to convection -'tendency of specific cloud ice content due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'Specific content of precipitation particles (needed for water loadin)g' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 110 ; - } -#Large scale rain rate -'Large scale rain rate' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale rain rate (s) -'Large scale rain rate (s)' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Convective rain rate -'Convective rain rate' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective rain rate (s) -'Convective rain rate (s)' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#rain amount, grid-scale plus convective -'rain amount, grid-scale plus convective' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#snow amount, grid-scale plus convective -'snow amount, grid-scale plus convective' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to grid scale precipation -'Temperature tendency due to grid scale precipation' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to grid scale precipitation -'Specific humitiy tendency due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'tendency of specific cloud liquid water content due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - indicatorOfTypeOfLevel = 110 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - indicatorOfTypeOfLevel = 1 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'tendency of specific cloud ice content due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 110 ; - } -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 1 ; - } -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow density -'Snow density' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure perturbation -'Pressure perturbation' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - indicatorOfTypeOfLevel = 110 ; - } -#supercell detection index 1 (rot. up+down drafts) -'supercell detection index 1 (rot. up+down drafts)' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - indicatorOfTypeOfLevel = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'supercell detection index 2 (only rot. up drafts)' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, most unstable -'Convective Available Potential Energy, most unstable' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, most unstable -'Convective Inhibition, most unstable' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, mean layer -'Convective Available Potential Energy, mean layer' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, mean layer -'Convective Inhibition, mean layer' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective turbulent kinetic enery -'Convective turbulent kinetic enery' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } -#Tendency of turbulent kinetic energy -'Tendency of turbulent kinetic energy' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - indicatorOfTypeOfLevel = 109 ; - } -#Kinetic Energy -'Kinetic Energy' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - indicatorOfTypeOfLevel = 110 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusioncoefficient for momentum -'Turbulent diffusioncoefficient for momentum' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'Turbulent diffusion coefficient for heat (and moisture)' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent transfer coefficient for impulse -'Turbulent transfer coefficient for impulse' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - indicatorOfTypeOfLevel = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'Turbulent transfer coefficient for heat (and Moisture)' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - indicatorOfTypeOfLevel = 1 ; - } -#mixed layer depth -'mixed layer depth' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - indicatorOfTypeOfLevel = 1 ; - } -#maximum Wind 10m -'maximum Wind 10m' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - timeRangeIndicator = 2 ; - } -#Air concentration of Ruthenium 103 -'Air concentration of Ruthenium 103' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - indicatorOfTypeOfLevel = 100 ; - } -#Soil Temperature (multilayers) -'Soil Temperature (multilayers)' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } -#Column-integrated Soil Moisture (multilayers) -'Column-integrated Soil Moisture (multilayers)' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } -#soil ice content (multilayers) -'soil ice content (multilayers)' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } -#Plant Canopy Surface Water -'Plant Canopy Surface Water' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow temperature (top of snow) -'Snow temperature (top of snow)' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#Minimal Stomatal Resistance -'Minimal Stomatal Resistance' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Temperature -'sea Ice Temperature' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'Base reflectivity' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'Base reflectivity' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } -#Base reflectivity (cmax) -'Base reflectivity (cmax)' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } -#unknown -'unknown' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 110 ; - } -#Effective transmissivity of solar radiation -'Effective transmissivity of solar radiation' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 110 ; - } -#sum of contributions to evaporation -'sum of contributions to evaporation' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } -#total transpiration from all soil layers -'total transpiration from all soil layers' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } -#total forcing at soil surface -'total forcing at soil surface' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#residuum of soil moisture -'residuum of soil moisture' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } -#Massflux at convective cloud base -'Massflux at convective cloud base' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy -'Convective Available Potential Energy' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - indicatorOfTypeOfLevel = 1 ; - } -#moisture convergence for Kuo-type closure -'moisture convergence for Kuo-type closure' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - indicatorOfTypeOfLevel = 1 ; - } -#total wave direction -'total wave direction' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } -#wind sea mean period -'wind sea mean period' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 102 ; - } -#wind sea peak period -'wind sea peak period' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } -#swell mean period -'swell mean period' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 102 ; - } -#swell peak period -'swell peak period' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } -#total wave peak period -'total wave peak period' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } -#total wave mean period -'total wave mean period' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } -#total Tm1 period -'total Tm1 period' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } -#total Tm2 period -'total Tm2 period' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } -#total directional spread -'total directional spread' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } -#analysis error(standard deviation), geopotential(gpm) -'analysis error(standard deviation), geopotential(gpm)' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), u-comp. of wind -'analysis error(standard deviation), u-comp. of wind' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), v-comp. of wind -'analysis error(standard deviation), v-comp. of wind' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - level = 100 ; - } -#zonal wind tendency due to subgrid scale oro. -'zonal wind tendency due to subgrid scale oro.' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to subgrid scale oro. -'meridional wind tendency due to subgrid scale oro.' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - indicatorOfTypeOfLevel = 110 ; - } -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - indicatorOfTypeOfLevel = 1 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - indicatorOfTypeOfLevel = 1 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 1 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - indicatorOfTypeOfLevel = 1 ; - } -#surface emissivity -'surface emissivity' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - timeRangeIndicator = 0 ; - } -#Soil Type -'Soil Type' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } -#Leaf area index -'Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#root depth of vegetation -'root depth of vegetation' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of ozone maximum (climatological) -'height of ozone maximum (climatological)' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertically integrated ozone content (climatological) -'vertically integrated ozone content (climatological)' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the vegetation phase -'Plant covering degree in the vegetation phase' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the quiescent phas -'Plant covering degree in the quiescent phas' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 1 ; - } -#Max Leaf area index -'Max Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 1 ; - } -#Min Leaf area index -'Min Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - indicatorOfTypeOfLevel = 1 ; - } -#Orographie + Land-Meer-Verteilung -'Orographie + Land-Meer-Verteilung' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } -#variance of soil moisture content (0-10) -'variance of soil moisture content (0-10)' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#variance of soil moisture content (10-100) -'variance of soil moisture content (10-100)' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#evergreen forest -'evergreen forest' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#deciduous forest -'deciduous forest' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#normalized differential vegetation index -'normalized differential vegetation index' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } -#normalized differential vegetation index (NDVI) -'normalized differential vegetation index (NDVI)' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 3 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Total sulfate aerosol -'Total sulfate aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } -#Total sulfate aerosol (12M) -'Total sulfate aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } -#Total soil dust aerosol -'Total soil dust aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } -#Total soil dust aerosol (12M) -'Total soil dust aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } -#Organic aerosol -'Organic aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } -#Organic aerosol (12M) -'Organic aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } -#Black carbon aerosol -'Black carbon aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } -#Black carbon aerosol (12M) -'Black carbon aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } -#Sea salt aerosol -'Sea salt aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } -#Sea salt aerosol (12M) -'Sea salt aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } -#tendency of specific humidity -'tendency of specific humidity' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - indicatorOfTypeOfLevel = 110 ; - } -#water vapor flux -'water vapor flux' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - indicatorOfTypeOfLevel = 1 ; - } -#Coriolis parameter -'Coriolis parameter' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical latitude -'geographical latitude' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical longitude -'geographical longitude' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - indicatorOfTypeOfLevel = 1 ; - } -#Friction velocity -'Friction velocity' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - indicatorOfTypeOfLevel = 110 ; - } -#Delay of the GPS signal trough the (total) atm. -'Delay of the GPS signal trough the (total) atm.' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'Delay of the GPS signal trough wet atmos.' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'Delay of the GPS signal trough dry atmos.' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ozone Mixing Ratio -'Ozone Mixing Ratio' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - indicatorOfTypeOfLevel = 110 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'Air concentration of Ruthenium 103 (Ru103- concentration)' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } -#Ru103-dry deposition -'Ru103-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ru103-wet deposition -'Ru103-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Strontium 90 -'Air concentration of Strontium 90' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } -#Sr90-dry deposition -'Sr90-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 1 ; - } -#Sr90-wet deposition -'Sr90-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-concentration -'I131-concentration' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } -#I131-dry deposition -'I131-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-wet deposition -'I131-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-concentration -'Cs137-concentration' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } -#Cs137-dry deposition -'Cs137-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-wet deposition -'Cs137-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'Air concentration of Tellurium 132 (Te132-concentration)' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } -#Te132-dry deposition -'Te132-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - indicatorOfTypeOfLevel = 1 ; - } -#Te132-wet deposition -'Te132-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'Air concentration of Zirconium 95 (Zr95-concentration)' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } -#Zr95-dry deposition -'Zr95-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - indicatorOfTypeOfLevel = 1 ; - } -#Zr95-wet deposition -'Zr95-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'Air concentration of Krypton 85 (Kr85-concentration)' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } -#Kr85-dry deposition -'Kr85-dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - indicatorOfTypeOfLevel = 1 ; - } -#Kr85-wet deposition -'Kr85-wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - concentration -'TRACER - concentration' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } -#TRACER - dry deposition -'TRACER - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - wet deposition -'TRACER - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'Air concentration of Xenon 133 (Xe133 - concentration)' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } -#Xe133 - dry deposition -'Xe133 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - indicatorOfTypeOfLevel = 1 ; - } -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - concentration -'I131g - concentration' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - wet deposition -'I131g - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - concentration -'I131o - concentration' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } -#I131o - dry deposition -'I131o - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - wet deposition -'I131o - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Barium 40 -'Air concentration of Barium 40' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } -#Ba140 - dry deposition -'Ba140 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ba140 - wet deposition -'Ba140 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - indicatorOfTypeOfLevel = 1 ; - } -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'UV_Index_Maximum_W UV_Index clouded (W), daily maximum' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - indicatorOfTypeOfLevel = 1 ; - } -#wind shear -'wind shear' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#storm relative helicity -'storm relative helicity' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#absolute vorticity advection -'absolute vorticity advection' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 100 ; - } -#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) -'NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407)' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund -'Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } -#weather interpretation (WMO) -'weather interpretation (WMO)' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 1 ; - } -#geostrophische Vorticityadvektion -'geostrophische Vorticityadvektion' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 100 ; - } -#Geo Temperatur Adv geostrophische Schichtdickenadvektion -'Geo Temperatur Adv geostrophische Schichtdickenadvektion' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - indicatorOfTypeOfLevel = 101 ; - } -#Schichtdicken-Advektion -'Schichtdicken-Advektion' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - indicatorOfTypeOfLevel = 101 ; - } -#Winddivergenz -'Winddivergenz' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - indicatorOfTypeOfLevel = 100 ; - } -#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen -'Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 100 ; - } -#Isentrope potentielle Vorticity -'Isentrope potentielle Vorticity' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } -#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen -'XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 100 ; - } -#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen -'YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 100 ; - } -#Druck einer isentropen Flaeche -'Druck einer isentropen Flaeche' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } -#KO index -'KO index' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - indicatorOfTypeOfLevel = 1 ; - } -#Aequivalentpotentielle Temperatur -'Aequivalentpotentielle Temperatur' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 100 ; - } -#Ceiling -'Ceiling' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - indicatorOfTypeOfLevel = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Icing Grade (1=LGT,2=MOD,3=SEV)' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 100 ; - } -#modified cloud depth for media -'modified cloud depth for media' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#modified cloud cover for media -'modified cloud cover for media' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'Monthly Mean of RMS of difference FG-AN of geopotential' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'Monthly Mean of RMS of difference IA-AN of geopotential' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'Monthly Mean of RMS of difference FG-AN of relative humidity' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'Monthly Mean of RMS of difference IA-AN of relative humidity' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'Monthly Mean of RMS of difference FG-AN of temperature' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'Monthly Mean of RMS of difference IA-AN of temperature' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 4 ; - } -#smoothed forecast, temperature -'smoothed forecast, temperature' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, maximum temp. -'smoothed forecast, maximum temp.' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, minimum temp. -'smoothed forecast, minimum temp.' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, dew point temp. -'smoothed forecast, dew point temp.' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, u comp. of wind -'smoothed forecast, u comp. of wind' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, v comp. of wind -'smoothed forecast, v comp. of wind' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, total precipitation rate -'smoothed forecast, total precipitation rate' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, total cloud cover -'smoothed forecast, total cloud cover' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover low -'smoothed forecast, cloud cover low' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover medium -'smoothed forecast, cloud cover medium' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover high -'smoothed forecast, cloud cover high' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'smoothed forecast, large-scale snowfall rate w.e.' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, soil temperature -'smoothed forecast, soil temperature' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#smoothed forecast, wind speed (gust) -'smoothed forecast, wind speed (gust)' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#calibrated forecast, total precipitation rate -'calibrated forecast, total precipitation rate' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'calibrated forecast, large-scale snowfall rate w.e.' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, wind speed (gust) -'calibrated forecast, wind speed (gust)' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def deleted file mode 100644 index 60a31048..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/cnmc/paramId.def +++ /dev/null @@ -1,2435 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure (S) (not reduced) -'500000' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure -'500001' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Pressure Reduced to MSL -'500002' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 102 ; - } -#Pressure Tendency (S) -'500003' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (S) -'500004' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (full lev) -'500005' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } -#Geopotential -'500006' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Geometric Height of the earths surface above sea level -'500007' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'500008' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } -#Total Column Integrated Ozone -'500009' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature (G) -'500010' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } -#2m Temperature (AV) -'500012' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Climat. temperature, 2m Temperature -'500013' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Temperature -'500014' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#Max 2m Temperature (i) -'500015' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#Min 2m Temperature (i) -'500016' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#2m Dew Point Temperature -'500017' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2m Dew Point Temperature (AV) -'500018' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Radar spectra (1) -'500019' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - } -#Wave spectra (1) -'500020' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'500021' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'500022' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind Direction (DD_10M) -'500023' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind Direction (DD) -'500024' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Wind speed (SP_10M) -'500025' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind speed (SP) -'500026' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 110 ; - } -#U component of wind -'500027' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#U component of wind -'500028' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'500029' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#V component of wind -'500030' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'500031' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vertical Velocity (Geometric) (w) -'500032' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } -#Specific Humidity (S) -'500033' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } -#Specific Humidity (2m) -'500034' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Specific Humidity -'500035' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#2m Relative Humidity -'500036' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Relative Humidity -'500037' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#Total column integrated water vapour -'500038' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - indicatorOfTypeOfLevel = 1 ; - } -#Evaporation (s) -'500039' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Total Column-Integrated Cloud Ice -'500040' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Precipitation rate (S) -'500041' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale Precipitation rate -'500042' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } -#Convective Precipitation rate -'500043' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow depth water equivalent -'500044' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow Depth -'500045' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Cloud Cover -'500046' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Cloud Cover -'500047' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Cover (800 hPa - Soil) -'500048' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (400 - 800 hPa) -'500049' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (0 - 400 hPa) -'500050' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Column-Integrated Cloud Water -'500051' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'500052' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale snowfall rate water equivalent (s) -'500053' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Land Cover (1=land, 0=sea) -'500054' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - indicatorOfTypeOfLevel = 1 ; - } -#Surface Roughness length Surface Roughness -'500055' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'500056' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'500057' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'500058' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } -#Soil Temperature (41 cm depth) -'500059' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } -#Soil Temperature -'500060' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } -#Soil Temperature -'500061' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#Column-integrated Soil Moisture -'500062' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; - topLevel = 100 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'500063' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - topLevel = 0 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'500064' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#Plant cover -'500065' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - indicatorOfTypeOfLevel = 1 ; - } -#Water Runoff (10-100) -'500066' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - timeRangeIndicator = 4 ; - bottomLevel = 100 ; - } -#Water Runoff (10-190) -'500067' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - timeRangeIndicator = 4 ; - bottomLevel = 190 ; - } -#Water Runoff (s) -'500068' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - topLevel = 0 ; - timeRangeIndicator = 4 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'500069' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Thickness -'500070' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - indicatorOfTypeOfLevel = 1 ; - } -#Significant height of combined wind waves and swell -'500071' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'500072' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'500073' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'500074' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'500075' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'500076' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'500077' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Net short wave radiation flux (m) (at the surface) -'500078' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'500079' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (at the surface) -'500080' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'500081' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net short wave radiation flux (m) (on the model top) -'500082' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'500083' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'500084' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'500085' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Latent Heat Net Flux (m) -'500086' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Sensible Heat Net Flux (m) -'500087' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, U-Component (m) -'500088' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, V-Component (m) -'500089' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation (m) (at the surface) -'500090' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation -'500091' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Solar radiation heating rate -'500092' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - indicatorOfTypeOfLevel = 110 ; - } -#Thermal radiation heating rate -'500093' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - indicatorOfTypeOfLevel = 110 ; - } -#Latent heat flux from bare soil -'500094' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Latent heat flux from plants -'500095' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } -#Sunshine -'500096' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } -#Stomatal Resistance -'500097' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Cloud cover -'500098' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#Non-Convective Cloud Cover, grid scale -'500099' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Mixing Ratio -'500100' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Ice Mixing Ratio -'500101' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 110 ; - } -#Rain mixing ratio -'500102' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - indicatorOfTypeOfLevel = 110 ; - } -#Snow mixing ratio -'500103' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated rain -'500104' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total column integrated snow -'500105' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - indicatorOfTypeOfLevel = 1 ; - } -#Grauple -'500106' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated grauple -'500107' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } -#Total Column integrated water (all components incl. precipitation) -'500108' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertical integral of divergence of total water content (s) -'500109' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - indicatorOfTypeOfLevel = 1 ; - } -#subgrid scale cloud water -'500110' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - indicatorOfTypeOfLevel = 110 ; - } -#subgridscale cloud ice -'500111' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#cloud cover CH (0..8) -'500112' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'500113' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'500114' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#cloud base above msl, shallow convection -'500115' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } -#cloud top above msl, shallow convection -'500116' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } -#specific cloud water content, convective cloud -'500117' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 110 ; - } -#Height of Convective Cloud Base (i) -'500118' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } -#Height of Convective Cloud Top (i) -'500119' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'500120' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'500121' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to convection -'500122' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to convection -'500123' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 110 ; - } -#zonal wind tendency due to convection -'500124' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to convection -'500125' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 110 ; - } -#height of top of dry convection -'500126' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'500127' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } -#Height of snow fall limit -'500128' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } -#Tendency of specific cloud liquid water content due to conversion -'500129' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud ice content due to convection -'500130' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'500131' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 110 ; - } -#Large scale rain rate -'500132' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale snowfall rate water equivalent -'500133' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale rain rate (s) -'500134' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Convective rain rate -'500135' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective snowfall rate water equivalent -'500136' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective rain rate (s) -'500137' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#rain amount, grid-scale plus convective -'500138' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#snow amount, grid-scale plus convective -'500139' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to grid scale precipation -'500140' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to grid scale precipitation -'500141' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'500142' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - indicatorOfTypeOfLevel = 110 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'500143' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - indicatorOfTypeOfLevel = 1 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'500144' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 110 ; - } -#Graupel (snow pellets) precipitation rate -'500145' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 1 ; - } -#Graupel (snow pellets) precipitation rate -'500146' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow density -'500147' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure perturbation -'500148' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - indicatorOfTypeOfLevel = 110 ; - } -#supercell detection index 1 (rot. up+down drafts) -'500149' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - indicatorOfTypeOfLevel = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'500150' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, most unstable -'500151' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, most unstable -'500152' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, mean layer -'500153' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, mean layer -'500154' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective turbulent kinetic enery -'500155' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } -#Tendency of turbulent kinetic energy -'500156' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - indicatorOfTypeOfLevel = 109 ; - } -#Kinetic Energy -'500157' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - indicatorOfTypeOfLevel = 110 ; - } -#Turbulent Kinetic Energy -'500158' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusioncoefficient for momentum -'500159' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'500160' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent transfer coefficient for impulse -'500161' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - indicatorOfTypeOfLevel = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'500162' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - indicatorOfTypeOfLevel = 1 ; - } -#mixed layer depth -'500163' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - indicatorOfTypeOfLevel = 1 ; - } -#maximum Wind 10m -'500164' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - timeRangeIndicator = 2 ; - } -#Air concentration of Ruthenium 103 -'500165' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - indicatorOfTypeOfLevel = 100 ; - } -#Soil Temperature (multilayers) -'500166' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } -#Column-integrated Soil Moisture (multilayers) -'500167' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } -#soil ice content (multilayers) -'500168' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } -#Plant Canopy Surface Water -'500169' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow temperature (top of snow) -'500170' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#Minimal Stomatal Resistance -'500171' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Temperature -'500172' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'500173' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'500174' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } -#Base reflectivity (cmax) -'500175' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } -#unknown -'500176' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 110 ; - } -#Effective transmissivity of solar radiation -'500177' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 110 ; - } -#sum of contributions to evaporation -'500178' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } -#total transpiration from all soil layers -'500179' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } -#total forcing at soil surface -'500180' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#residuum of soil moisture -'500181' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } -#Massflux at convective cloud base -'500182' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy -'500183' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - indicatorOfTypeOfLevel = 1 ; - } -#moisture convergence for Kuo-type closure -'500184' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - indicatorOfTypeOfLevel = 1 ; - } -#total wave direction -'500185' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } -#wind sea mean period -'500186' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 102 ; - } -#wind sea peak period -'500187' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } -#swell mean period -'500188' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 102 ; - } -#swell peak period -'500189' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } -#total wave peak period -'500190' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } -#total wave mean period -'500191' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } -#total Tm1 period -'500192' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } -#total Tm2 period -'500193' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } -#total directional spread -'500194' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } -#analysis error(standard deviation), geopotential(gpm) -'500195' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), u-comp. of wind -'500196' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), v-comp. of wind -'500197' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - level = 100 ; - } -#zonal wind tendency due to subgrid scale oro. -'500198' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to subgrid scale oro. -'500199' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - indicatorOfTypeOfLevel = 110 ; - } -#Standard deviation of sub-grid scale orography -'500200' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - indicatorOfTypeOfLevel = 1 ; - } -#Anisotropy of sub-gridscale orography -'500201' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - indicatorOfTypeOfLevel = 1 ; - } -#Angle of sub-gridscale orography -'500202' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 1 ; - } -#Slope of sub-gridscale orography -'500203' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - indicatorOfTypeOfLevel = 1 ; - } -#surface emissivity -'500204' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - timeRangeIndicator = 0 ; - } -#Soil Type -'500205' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } -#Leaf area index -'500206' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#root depth of vegetation -'500207' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of ozone maximum (climatological) -'500208' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertically integrated ozone content (climatological) -'500209' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the vegetation phase -'500210' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the quiescent phas -'500211' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 1 ; - } -#Max Leaf area index -'500212' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 1 ; - } -#Min Leaf area index -'500213' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - indicatorOfTypeOfLevel = 1 ; - } -#Orographie + Land-Meer-Verteilung -'500214' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } -#variance of soil moisture content (0-10) -'500215' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#variance of soil moisture content (10-100) -'500216' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#evergreen forest -'500217' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#deciduous forest -'500218' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#normalized differential vegetation index -'500219' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } -#normalized differential vegetation index (NDVI) -'500220' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 3 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500221' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500222' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Total sulfate aerosol -'500223' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } -#Total sulfate aerosol (12M) -'500224' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } -#Total soil dust aerosol -'500225' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } -#Total soil dust aerosol (12M) -'500226' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } -#Organic aerosol -'500227' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } -#Organic aerosol (12M) -'500228' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } -#Black carbon aerosol -'500229' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } -#Black carbon aerosol (12M) -'500230' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } -#Sea salt aerosol -'500231' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } -#Sea salt aerosol (12M) -'500232' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } -#tendency of specific humidity -'500233' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - indicatorOfTypeOfLevel = 110 ; - } -#water vapor flux -'500234' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - indicatorOfTypeOfLevel = 1 ; - } -#Coriolis parameter -'500235' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical latitude -'500236' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical longitude -'500237' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - indicatorOfTypeOfLevel = 1 ; - } -#Friction velocity -'500238' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - indicatorOfTypeOfLevel = 110 ; - } -#Delay of the GPS signal trough the (total) atm. -'500239' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'500240' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'500241' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ozone Mixing Ratio -'500242' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - indicatorOfTypeOfLevel = 110 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'500243' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } -#Ru103-dry deposition -'500244' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ru103-wet deposition -'500245' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Strontium 90 -'500246' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } -#Sr90-dry deposition -'500247' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 1 ; - } -#Sr90-wet deposition -'500248' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-concentration -'500249' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } -#I131-dry deposition -'500250' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-wet deposition -'500251' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-concentration -'500252' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } -#Cs137-dry deposition -'500253' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-wet deposition -'500254' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'500255' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } -#Te132-dry deposition -'500256' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - indicatorOfTypeOfLevel = 1 ; - } -#Te132-wet deposition -'500257' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'500258' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } -#Zr95-dry deposition -'500259' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - indicatorOfTypeOfLevel = 1 ; - } -#Zr95-wet deposition -'500260' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'500261' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } -#Kr85-dry deposition -'500262' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - indicatorOfTypeOfLevel = 1 ; - } -#Kr85-wet deposition -'500263' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - concentration -'500264' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } -#TRACER - dry deposition -'500265' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - wet deposition -'500266' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'500267' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } -#Xe133 - dry deposition -'500268' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - indicatorOfTypeOfLevel = 1 ; - } -#Xe133 - wet deposition -'500269' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - concentration -'500270' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } -#Xe133 - wet deposition -'500271' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - wet deposition -'500272' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - concentration -'500273' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } -#I131o - dry deposition -'500274' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - wet deposition -'500275' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Barium 40 -'500276' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } -#Ba140 - dry deposition -'500277' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ba140 - wet deposition -'500278' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - indicatorOfTypeOfLevel = 1 ; - } -#u-momentum flux due to SSO-effects -'500279' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#u-momentum flux due to SSO-effects -'500280' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#v-momentum flux due to SSO-effects -'500281' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#v-momentum flux due to SSO-effects -'500282' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Gravity wave dissipation (vertical integral) -'500283' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Gravity wave dissipation (vertical integral) -'500284' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'500285' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - indicatorOfTypeOfLevel = 1 ; - } -#wind shear -'500286' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#storm relative helicity -'500287' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#absolute vorticity advection -'500288' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 100 ; - } -#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) -'500289' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund -'500290' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'500291' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } -#weather interpretation (WMO) -'500292' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 1 ; - } -#geostrophische Vorticityadvektion -'500293' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 100 ; - } -#Geo Temperatur Adv geostrophische Schichtdickenadvektion -'500294' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - indicatorOfTypeOfLevel = 101 ; - } -#Schichtdicken-Advektion -'500295' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - indicatorOfTypeOfLevel = 101 ; - } -#Winddivergenz -'500296' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - indicatorOfTypeOfLevel = 100 ; - } -#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen -'500297' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 100 ; - } -#Isentrope potentielle Vorticity -'500298' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } -#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen -'500299' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 100 ; - } -#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen -'500300' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 100 ; - } -#Druck einer isentropen Flaeche -'500301' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } -#KO index -'500302' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - indicatorOfTypeOfLevel = 1 ; - } -#Aequivalentpotentielle Temperatur -'500303' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 100 ; - } -#Ceiling -'500304' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - indicatorOfTypeOfLevel = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'500305' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 100 ; - } -#modified cloud depth for media -'500306' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#modified cloud cover for media -'500307' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'500308' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'500309' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'500310' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'500311' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'500312' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'500313' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'500314' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'500315' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'500316' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'500317' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'500318' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'500319' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'500320' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'500321' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'500322' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'500323' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } -#Synth. Sat. brightness temperature cloudy -'500324' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'500325' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'500326' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500327' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'500328' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'500329' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'500330' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500331' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature clear sky -'500332' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500333' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'500334' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature cloudy -'500335' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance clear sky -'500336' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500337' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'500338' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance cloudy -'500339' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'500340' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500341' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500342' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500343' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500344' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500345' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500346' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'500347' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'500348' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500349' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500350' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500351' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500352' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500353' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500354' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'500355' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'500356' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500357' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500358' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500359' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500360' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500361' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500362' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'500363' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'500364' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500365' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500366' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500367' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500368' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500369' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500370' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'500371' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 4 ; - } -#smoothed forecast, temperature -'500372' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, maximum temp. -'500373' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, minimum temp. -'500374' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, dew point temp. -'500375' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, u comp. of wind -'500376' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, v comp. of wind -'500377' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, total precipitation rate -'500378' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, total cloud cover -'500379' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover low -'500380' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover medium -'500381' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover high -'500382' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'500383' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, soil temperature -'500384' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#smoothed forecast, wind speed (gust) -'500385' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#calibrated forecast, total precipitation rate -'500386' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'500387' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, wind speed (gust) -'500388' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def deleted file mode 100644 index dcac8f56..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/cnmc/shortName.def +++ /dev/null @@ -1,2435 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure (S) (not reduced) -'ps' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure -'p' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Pressure Reduced to MSL -'pmsl' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 102 ; - } -#Pressure Tendency (S) -'dpsdt' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (S) -'fis' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (full lev) -'fif' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } -#Geopotential -'fi' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Geometric Height of the earths surface above sea level -'hsurf' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'hhl' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } -#Total Column Integrated Ozone -'to3' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature (G) -'t_g' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } -#2m Temperature (AV) -'t_2m_av' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Climat. temperature, 2m Temperature -'t_2m_cl' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Temperature -'t' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#Max 2m Temperature (i) -'tmax_2m' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#Min 2m Temperature (i) -'tmin_2m' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#2m Dew Point Temperature -'td_2m' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2m Dew Point Temperature (AV) -'td_2m_av' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Radar spectra (1) -'dbz_max' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind Direction (DD_10M) -'dd_10m' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind Direction (DD) -'dd' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Wind speed (SP_10M) -'sp_10m' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind speed (SP) -'sp' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 110 ; - } -#U component of wind -'u_10m' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#U component of wind -'u' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v_10m' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#V component of wind -'v' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'omega' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vertical Velocity (Geometric) (w) -'w' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } -#Specific Humidity (S) -'qv_s' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } -#Specific Humidity (2m) -'qv_2m' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Specific Humidity -'qv' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#2m Relative Humidity -'relhum_2m' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Relative Humidity -'relhum' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#Total column integrated water vapour -'tqv' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - indicatorOfTypeOfLevel = 1 ; - } -#Evaporation (s) -'aevap_s' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Total Column-Integrated Cloud Ice -'tqi' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Precipitation rate (S) -'tot_prec' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale Precipitation rate -'prec_gsp' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } -#Convective Precipitation rate -'prec_con' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow depth water equivalent -'w_snow' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow Depth -'h_snow' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Cloud Cover -'clct' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Cloud Cover -'clc_con' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Cover (800 hPa - Soil) -'clcl' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (400 - 800 hPa) -'clcm' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (0 - 400 hPa) -'clch' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Column-Integrated Cloud Water -'tqc' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'snow_con' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale snowfall rate water equivalent (s) -'snow_gsp' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Land Cover (1=land, 0=sea) -'fr_land' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - indicatorOfTypeOfLevel = 1 ; - } -#Surface Roughness length Surface Roughness -'z0' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'alb_rad' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'albedo_b' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'t_cl' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } -#Soil Temperature (41 cm depth) -'t_cl_lm' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } -#Soil Temperature -'t_m' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } -#Soil Temperature -'t_s' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#Column-integrated Soil Moisture -'w_cl' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; - topLevel = 100 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'w_g1' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - topLevel = 0 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'w_g2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; - topLevel = 10 ; - } -#Plant cover -'plcov' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - indicatorOfTypeOfLevel = 1 ; - } -#Water Runoff (10-100) -'runoff_g' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - bottomLevel = 100 ; - topLevel = 10 ; - } -#Water Runoff (10-190) -'runoff_g_lm' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - bottomLevel = 190 ; - topLevel = 10 ; - } -#Water Runoff (s) -'runoff_s' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - topLevel = 0 ; - timeRangeIndicator = 4 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'fr_ice' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Thickness -'h_ice' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - indicatorOfTypeOfLevel = 1 ; - } -#Significant height of combined wind waves and swell -'swh' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'mdww' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'mdps' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'shps' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'mpps' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Net short wave radiation flux (m) (at the surface) -'asob_s' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'sobs_rad' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (at the surface) -'athb_s' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'thbs_rad' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net short wave radiation flux (m) (on the model top) -'asob_t' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'sobt_rad' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'athb_t' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'thbt_rad' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Latent Heat Net Flux (m) -'alhfl_s' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Sensible Heat Net Flux (m) -'ashfl_s' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, U-Component (m) -'aumfl_s' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, V-Component (m) -'avmfl_s' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation (m) (at the surface) -'apab_s' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation -'pabs_rad' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Solar radiation heating rate -'sohr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - indicatorOfTypeOfLevel = 110 ; - } -#Thermal radiation heating rate -'thhr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - indicatorOfTypeOfLevel = 110 ; - } -#Latent heat flux from bare soil -'alhfl_bs' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Latent heat flux from plants -'alhfl_pl' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } -#Sunshine -'dursun' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } -#Stomatal Resistance -'rstom' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Cloud cover -'clc' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#Non-Convective Cloud Cover, grid scale -'clc_sgs' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Mixing Ratio -'qc' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Ice Mixing Ratio -'qi' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 110 ; - } -#Rain mixing ratio -'qr' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - indicatorOfTypeOfLevel = 110 ; - } -#Snow mixing ratio -'qs' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated rain -'tqr' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total column integrated snow -'tqs' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - indicatorOfTypeOfLevel = 1 ; - } -#Grauple -'qg' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated grauple -'tqg' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } -#Total Column integrated water (all components incl. precipitation) -'twater' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertical integral of divergence of total water content (s) -'tdiv_hum' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - indicatorOfTypeOfLevel = 1 ; - } -#subgrid scale cloud water -'qc_rad' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - indicatorOfTypeOfLevel = 110 ; - } -#subgridscale cloud ice -'qi_rad' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#cloud cover CH (0..8) -'clch_8' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'clcm_8' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'clcl_8' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#cloud base above msl, shallow convection -'hbas_sc' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } -#cloud top above msl, shallow convection -'htop_sc' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } -#specific cloud water content, convective cloud -'clw_con' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 110 ; - } -#Height of Convective Cloud Base (i) -'hbas_con' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } -#Height of Convective Cloud Top (i) -'htop_con' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'bas_con' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'top_con' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to convection -'dt_con' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to convection -'dqv_con' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 110 ; - } -#zonal wind tendency due to convection -'du_con' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to convection -'dv_con' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 110 ; - } -#height of top of dry convection -'htop_dc' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'hzerocl' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } -#Height of snow fall limit -'snowlmt' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } -#Tendency of specific cloud liquid water content due to conversion -'dqc_con' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud ice content due to convection -'dqi_con' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'q_sedim' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 110 ; - } -#Large scale rain rate -'prr_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale snowfall rate water equivalent -'prs_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale rain rate (s) -'rain_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Convective rain rate -'prr_con' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective snowfall rate water equivalent -'prs_con' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective rain rate (s) -'rain_con' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#rain amount, grid-scale plus convective -'rr_f' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#snow amount, grid-scale plus convective -'rr_c' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to grid scale precipation -'dt_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to grid scale precipitation -'dqv_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'dqc_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - indicatorOfTypeOfLevel = 110 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'freshsnw' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - indicatorOfTypeOfLevel = 1 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'dqi_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 110 ; - } -#Graupel (snow pellets) precipitation rate -'prg_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 1 ; - } -#Graupel (snow pellets) precipitation rate -'grau_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow density -'rho_snow' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure perturbation -'pp' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - indicatorOfTypeOfLevel = 110 ; - } -#supercell detection index 1 (rot. up+down drafts) -'sdi_1' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - indicatorOfTypeOfLevel = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'sdi_2' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, most unstable -'cape_mu' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, most unstable -'cin_mu' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, mean layer -'cape_ml' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, mean layer -'cin_ml' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective turbulent kinetic enery -'tke_con' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } -#Tendency of turbulent kinetic energy -'tketens' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - indicatorOfTypeOfLevel = 109 ; - } -#Kinetic Energy -'ke' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - indicatorOfTypeOfLevel = 110 ; - } -#Turbulent Kinetic Energy -'tke' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusioncoefficient for momentum -'tkvm' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'tkvh' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent transfer coefficient for impulse -'tcm' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - indicatorOfTypeOfLevel = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'tch' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - indicatorOfTypeOfLevel = 1 ; - } -#mixed layer depth -'mh' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - indicatorOfTypeOfLevel = 1 ; - } -#maximum Wind 10m -'vmax_10m' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - timeRangeIndicator = 2 ; - } -#Air concentration of Ruthenium 103 -'ru-103' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - indicatorOfTypeOfLevel = 100 ; - } -#Soil Temperature (multilayers) -'t_so' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } -#Column-integrated Soil Moisture (multilayers) -'w_so' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } -#soil ice content (multilayers) -'w_so_ice' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } -#Plant Canopy Surface Water -'w_i' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow temperature (top of snow) -'t_snow' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#Minimal Stomatal Resistance -'prs_min' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Temperature -'t_ice' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'dbz_850' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'dbz' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } -#Base reflectivity (cmax) -'dbz_cmax' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } -#unknown -'dttdiv' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 110 ; - } -#Effective transmissivity of solar radiation -'sotr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 110 ; - } -#sum of contributions to evaporation -'evatra_sum' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } -#total transpiration from all soil layers -'tra_sum' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } -#total forcing at soil surface -'totforce_s' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#residuum of soil moisture -'resid_wso' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } -#Massflux at convective cloud base -'mflx_con' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy -'cape_con' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - indicatorOfTypeOfLevel = 1 ; - } -#moisture convergence for Kuo-type closure -'qcvg_con' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - indicatorOfTypeOfLevel = 1 ; - } -#total wave direction -'mwd' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } -#wind sea mean period -'mwp_x' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 102 ; - } -#wind sea peak period -'ppww' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } -#swell mean period -'mpp_s' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 102 ; - } -#swell peak period -'ppps' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } -#total wave peak period -'pp1d' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } -#total wave mean period -'tm10' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } -#total Tm1 period -'tm01' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } -#total Tm2 period -'tm02' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } -#total directional spread -'sprd' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } -#analysis error(standard deviation), geopotential(gpm) -'ana_err_fi' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), u-comp. of wind -'ana_err_u' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), v-comp. of wind -'ana_err_v' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - level = 100 ; - } -#zonal wind tendency due to subgrid scale oro. -'du_sso' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to subgrid scale oro. -'dv_sso' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - indicatorOfTypeOfLevel = 110 ; - } -#Standard deviation of sub-grid scale orography -'sso_stdh' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - indicatorOfTypeOfLevel = 1 ; - } -#Anisotropy of sub-gridscale orography -'sso_gamma' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - indicatorOfTypeOfLevel = 1 ; - } -#Angle of sub-gridscale orography -'sso_theta' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 1 ; - } -#Slope of sub-gridscale orography -'sso_sigma' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - indicatorOfTypeOfLevel = 1 ; - } -#surface emissivity -'emis_rad' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - timeRangeIndicator = 0 ; - } -#Soil Type -'soiltyp' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } -#Leaf area index -'lai' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#root depth of vegetation -'rootdp' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of ozone maximum (climatological) -'hmo3' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertically integrated ozone content (climatological) -'vio3' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the vegetation phase -'plcov_mx' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the quiescent phas -'plcov_mn' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 1 ; - } -#Max Leaf area index -'lai_mx' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 1 ; - } -#Min Leaf area index -'lai_mn' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - indicatorOfTypeOfLevel = 1 ; - } -#Orographie + Land-Meer-Verteilung -'oro_mod' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } -#variance of soil moisture content (0-10) -'wvar1' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#variance of soil moisture content (10-100) -'wvar2' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; - topLevel = 10 ; - } -#evergreen forest -'for_e' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#deciduous forest -'for_d' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#normalized differential vegetation index -'ndvi' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } -#normalized differential vegetation index (NDVI) -'ndvi_max' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 3 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ndvi_mrat' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ndviratio' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Total sulfate aerosol -'aer_so4' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } -#Total sulfate aerosol (12M) -'aer_so412' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } -#Total soil dust aerosol -'aer_dust' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } -#Total soil dust aerosol (12M) -'aer_dust12' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } -#Organic aerosol -'aer_org' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } -#Organic aerosol (12M) -'aer_org12' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } -#Black carbon aerosol -'aer_bc' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } -#Black carbon aerosol (12M) -'aer_bc12' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } -#Sea salt aerosol -'aer_ss' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } -#Sea salt aerosol (12M) -'aer_ss12' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } -#tendency of specific humidity -'dqvdt' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - indicatorOfTypeOfLevel = 110 ; - } -#water vapor flux -'qvsflx' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - indicatorOfTypeOfLevel = 1 ; - } -#Coriolis parameter -'fc' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical latitude -'rlat' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical longitude -'rlon' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - indicatorOfTypeOfLevel = 1 ; - } -#Friction velocity -'ustr' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - indicatorOfTypeOfLevel = 110 ; - } -#Delay of the GPS signal trough the (total) atm. -'ztd' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'zwd' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'zhd' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ozone Mixing Ratio -'o3' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - indicatorOfTypeOfLevel = 110 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'ru-103' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } -#Ru103-dry deposition -'ru-103d' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ru103-wet deposition -'ru-103w' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Strontium 90 -'sr-90' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } -#Sr90-dry deposition -'sr-90d' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 1 ; - } -#Sr90-wet deposition -'sr-90w' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-concentration -'i-131a' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } -#I131-dry deposition -'i-131ad' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-wet deposition -'i-131aw' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-concentration -'cs-137' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } -#Cs137-dry deposition -'cs-137d' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-wet deposition -'cs-137w' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'te-132' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } -#Te132-dry deposition -'te-132d' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - indicatorOfTypeOfLevel = 1 ; - } -#Te132-wet deposition -'te-132w' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'zr-95' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } -#Zr95-dry deposition -'zr-95d' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - indicatorOfTypeOfLevel = 1 ; - } -#Zr95-wet deposition -'zr-95w' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'kr-85' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } -#Kr85-dry deposition -'kr-85d' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - indicatorOfTypeOfLevel = 1 ; - } -#Kr85-wet deposition -'kr-85w' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - concentration -'tr-2' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } -#TRACER - dry deposition -'tr-2d' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - wet deposition -'tr-2w' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'xe-133' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } -#Xe133 - dry deposition -'xe-133d' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - indicatorOfTypeOfLevel = 1 ; - } -#Xe133 - wet deposition -'xe-133w' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - concentration -'i-131g' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } -#Xe133 - wet deposition -'i-131gd' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - wet deposition -'i-131gw' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - concentration -'i-131o' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } -#I131o - dry deposition -'i-131od' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - wet deposition -'i-131ow' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Barium 40 -'ba-140' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } -#Ba140 - dry deposition -'ba-140d' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ba140 - wet deposition -'ba-140w' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - indicatorOfTypeOfLevel = 1 ; - } -#u-momentum flux due to SSO-effects -'austr_sso' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#u-momentum flux due to SSO-effects -'ustr_sso' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#v-momentum flux due to SSO-effects -'avstr_sso' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#v-momentum flux due to SSO-effects -'vstr_sso' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Gravity wave dissipation (vertical integral) -'avdis_sso' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Gravity wave dissipation (vertical integral) -'vdis_sso' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'uv_max' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - indicatorOfTypeOfLevel = 1 ; - } -#wind shear -'w_shaer' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#storm relative helicity -'srh' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#absolute vorticity advection -'vabs' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 100 ; - } -#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) -'cl_typ' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund -'ccl_gnd' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'ccl_nn' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } -#weather interpretation (WMO) -'ww' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 1 ; - } -#geostrophische Vorticityadvektion -'advorg' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 100 ; - } -#Geo Temperatur Adv geostrophische Schichtdickenadvektion -'advor' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - indicatorOfTypeOfLevel = 101 ; - } -#Schichtdicken-Advektion -'adrtg' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - indicatorOfTypeOfLevel = 101 ; - } -#Winddivergenz -'wdiv' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - indicatorOfTypeOfLevel = 100 ; - } -#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen -'fqn' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 100 ; - } -#Isentrope potentielle Vorticity -'ipv' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } -#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen -'up' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 100 ; - } -#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen -'vp' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 100 ; - } -#Druck einer isentropen Flaeche -'ptheta' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } -#KO index -'ko' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - indicatorOfTypeOfLevel = 1 ; - } -#Aequivalentpotentielle Temperatur -'thetae' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 100 ; - } -#Ceiling -'ceiling' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - indicatorOfTypeOfLevel = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'ice_grd' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 100 ; - } -#modified cloud depth for media -'cldepth' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#modified cloud cover for media -'clct_mod' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'efa-ps' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'eia-ps' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'efa-u' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'eia-u' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'efa-v' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'eia-v' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'efa-fi' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'eia-fi' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'efa-rh' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'eia-rh' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'efa-t' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'eia-t' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'efa-om' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'eia-om' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'efa-ke' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'eia-ke' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } -#Synth. Sat. brightness temperature cloudy -'synme5_bt_cl' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'synme5_bt_cs' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'synme5_rad_cl' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synme5_rad_cs' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'synme6_bt_cl' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'synme6_bt_cs' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'synme6_rad_cl' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synme6_rad_cs' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature clear sky -'synme7_bt_cl_ir11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synme7_bt_cl_wv6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'synme7_bt_cs_ir11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature cloudy -'synme7_bt_cs_wv6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance clear sky -'synme7_rad_cl_ir11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synme7_rad_cl_wv6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'synme7_rad_cs_ir11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance cloudy -'synme7_rad_cs_wv6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_wv6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_wv7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_wv6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_wv7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_wv6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_wv7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_wv6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_wv7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 4 ; - } -#smoothed forecast, temperature -'t_2m_s' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, maximum temp. -'tmax_2m_s' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, minimum temp. -'tmin_2m_s' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, dew point temp. -'td_2m_s' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, u comp. of wind -'u_10m_s' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, v comp. of wind -'v_10m_s' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, total precipitation rate -'tot_prec_s' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, total cloud cover -'clct_s' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover low -'clcl_s' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover medium -'clcm_s' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover high -'clch_s' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'snow_gsp_s' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, soil temperature -'t_s_s' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#smoothed forecast, wind speed (gust) -'vmax_10m_s' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#calibrated forecast, total precipitation rate -'tot_prec_c' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'snow_gsp_c' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, wind speed (gust) -'vmax_10m_c' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/cnmc/units.def b/eccodes/definitions.save/grib1/localConcepts/cnmc/units.def deleted file mode 100644 index 11853f93..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/cnmc/units.def +++ /dev/null @@ -1,2435 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure (S) (not reduced) -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Pressure Reduced to MSL -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 102 ; - } -#Pressure Tendency (S) -'Pa s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (S) -'m**2 s**-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geopotential (full lev) -'m**2 s**-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Geometric Height of the earths surface above sea level -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } -#Total Column Integrated Ozone -'Dobson' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature (G) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } -#2m Temperature (AV) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Climat. temperature, 2m Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#Max 2m Temperature (i) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#Min 2m Temperature (i) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#2m Dew Point Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2m Dew Point Temperature (AV) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 3 ; - } -#Radar spectra (1) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - } -#Wave spectra (1) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind Direction (DD_10M) -'degrees' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind Direction (DD) -'degrees' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Wind speed (SP_10M) -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#Wind speed (SP) -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 110 ; - } -#U component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#U component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#V component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vertical Velocity (Geometric) (w) -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } -#Specific Humidity (S) -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } -#Specific Humidity (2m) -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Specific Humidity -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#2m Relative Humidity -'%' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Relative Humidity -'%' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#Total column integrated water vapour -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - indicatorOfTypeOfLevel = 1 ; - } -#Evaporation (s) -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Total Column-Integrated Cloud Ice -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Precipitation rate (S) -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } -#Convective Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow depth water equivalent -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow Depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Cloud Cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Cloud Cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Cover (800 hPa - Soil) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (400 - 800 hPa) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cloud Cover (0 - 400 hPa) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total Column-Integrated Cloud Water -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Large-Scale snowfall rate water equivalent (s) -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Land Cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - indicatorOfTypeOfLevel = 1 ; - } -#Surface Roughness length Surface Roughness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - } -#Albedo (in short-wave) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } -#Soil Temperature (41 cm depth) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#Column-integrated Soil Moisture -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; - topLevel = 100 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; - topLevel = 10 ; - } -#Plant cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - indicatorOfTypeOfLevel = 1 ; - } -#Water Runoff (10-100) -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#Water Runoff (10-190) -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 10 ; - bottomLevel = 190 ; - } -#Water Runoff (s) -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; - timeRangeIndicator = 4 ; - topLevel = 0 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Thickness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - indicatorOfTypeOfLevel = 1 ; - } -#Significant height of combined wind waves and swell -'m' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Net short wave radiation flux (m) (at the surface) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (at the surface) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Net short wave radiation flux (m) (on the model top) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net short wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } -#Net long wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 0 ; - } -#Latent Heat Net Flux (m) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Sensible Heat Net Flux (m) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, U-Component (m) -'N m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Momentum Flux, V-Component (m) -'N m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation (m) (at the surface) -'W m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Photosynthetically active radiation -'W m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Solar radiation heating rate -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - indicatorOfTypeOfLevel = 110 ; - } -#Thermal radiation heating rate -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - indicatorOfTypeOfLevel = 110 ; - } -#Latent heat flux from bare soil -'W m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Latent heat flux from plants -'W m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } -#Sunshine -'~' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } -#Stomatal Resistance -'s m**-1' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Cloud cover -'%' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#Non-Convective Cloud Cover, grid scale -'%' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Mixing Ratio -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 110 ; - } -#Cloud Ice Mixing Ratio -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 110 ; - } -#Rain mixing ratio -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - indicatorOfTypeOfLevel = 110 ; - } -#Snow mixing ratio -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated rain -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - indicatorOfTypeOfLevel = 1 ; - } -#Total column integrated snow -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - indicatorOfTypeOfLevel = 1 ; - } -#Grauple -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - indicatorOfTypeOfLevel = 110 ; - } -#Total column integrated grauple -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } -#Total Column integrated water (all components incl. precipitation) -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertical integral of divergence of total water content (s) -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - indicatorOfTypeOfLevel = 1 ; - } -#subgrid scale cloud water -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - indicatorOfTypeOfLevel = 110 ; - } -#subgridscale cloud ice -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#cloud cover CH (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#cloud base above msl, shallow convection -'m' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } -#cloud top above msl, shallow convection -'m' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } -#specific cloud water content, convective cloud -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 110 ; - } -#Height of Convective Cloud Base (i) -'m' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } -#Height of Convective Cloud Top (i) -'m' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to convection -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to convection -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 110 ; - } -#zonal wind tendency due to convection -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to convection -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 110 ; - } -#height of top of dry convection -'m' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'m' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } -#Height of snow fall limit -'m' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } -#Tendency of specific cloud liquid water content due to conversion -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud ice content due to convection -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 110 ; - } -#Large scale rain rate -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale snowfall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 1 ; - } -#Large scale rain rate (s) -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Convective rain rate -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective snowfall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective rain rate (s) -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#rain amount, grid-scale plus convective -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#snow amount, grid-scale plus convective -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Temperature tendency due to grid scale precipation -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 110 ; - } -#Specific humitiy tendency due to grid scale precipitation -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 110 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - indicatorOfTypeOfLevel = 110 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - indicatorOfTypeOfLevel = 1 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'kg kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 110 ; - } -#Graupel (snow pellets) precipitation rate -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 1 ; - } -#Graupel (snow pellets) precipitation rate -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 4 ; - } -#Snow density -'kg m**-3' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 1 ; - } -#Pressure perturbation -'Pa' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - indicatorOfTypeOfLevel = 110 ; - } -#supercell detection index 1 (rot. up+down drafts) -'s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - indicatorOfTypeOfLevel = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, most unstable -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, most unstable -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy, mean layer -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Inhibition, mean layer -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective turbulent kinetic enery -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } -#Tendency of turbulent kinetic energy -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - indicatorOfTypeOfLevel = 109 ; - } -#Kinetic Energy -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - indicatorOfTypeOfLevel = 110 ; - } -#Turbulent Kinetic Energy -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusioncoefficient for momentum -'m**2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'m**2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 109 ; - } -#Turbulent transfer coefficient for impulse -'~' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - indicatorOfTypeOfLevel = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - indicatorOfTypeOfLevel = 1 ; - } -#mixed layer depth -'m' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - indicatorOfTypeOfLevel = 1 ; - } -#maximum Wind 10m -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - timeRangeIndicator = 2 ; - } -#Air concentration of Ruthenium 103 -'Bq m**-3' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - indicatorOfTypeOfLevel = 100 ; - } -#Soil Temperature (multilayers) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } -#Column-integrated Soil Moisture (multilayers) -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } -#soil ice content (multilayers) -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } -#Plant Canopy Surface Water -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - indicatorOfTypeOfLevel = 1 ; - } -#Snow temperature (top of snow) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#Minimal Stomatal Resistance -'s m**-1' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - indicatorOfTypeOfLevel = 1 ; - } -#sea Ice Temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'dB' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } -#Base reflectivity -'dB' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } -#Base reflectivity (cmax) -'dB' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } -#unknown -'m' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 110 ; - } -#Effective transmissivity of solar radiation -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 110 ; - } -#sum of contributions to evaporation -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } -#total transpiration from all soil layers -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } -#total forcing at soil surface -'W m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#residuum of soil moisture -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } -#Massflux at convective cloud base -'kg m**-2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } -#Convective Available Potential Energy -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - indicatorOfTypeOfLevel = 1 ; - } -#moisture convergence for Kuo-type closure -'s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - indicatorOfTypeOfLevel = 1 ; - } -#total wave direction -'Degree true' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } -#wind sea mean period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 102 ; - } -#wind sea peak period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } -#swell mean period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 102 ; - } -#swell peak period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } -#total wave peak period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } -#total wave mean period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } -#total Tm1 period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } -#total Tm2 period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } -#total directional spread -'Degree true' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } -#analysis error(standard deviation), geopotential(gpm) -'gpm' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), u-comp. of wind -'m**2 s**-2' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - indicatorOfTypeOfLevel = 100 ; - } -#analysis error(standard deviation), v-comp. of wind -'m**2 s**-2' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - level = 100 ; - } -#zonal wind tendency due to subgrid scale oro. -'m s**-1' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - indicatorOfTypeOfLevel = 110 ; - } -#meridional wind tendency due to subgrid scale oro. -'m s**-1' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - indicatorOfTypeOfLevel = 110 ; - } -#Standard deviation of sub-grid scale orography -'m' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - indicatorOfTypeOfLevel = 1 ; - } -#Anisotropy of sub-gridscale orography -'~' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - indicatorOfTypeOfLevel = 1 ; - } -#Angle of sub-gridscale orography -'radians' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 1 ; - } -#Slope of sub-gridscale orography -'~' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - indicatorOfTypeOfLevel = 1 ; - } -#surface emissivity -'~' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - timeRangeIndicator = 0 ; - } -#Soil Type -'~' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } -#Leaf area index -'~' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#root depth of vegetation -'m' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - indicatorOfTypeOfLevel = 1 ; - } -#height of ozone maximum (climatological) -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - indicatorOfTypeOfLevel = 1 ; - } -#vertically integrated ozone content (climatological) -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the vegetation phase -'~' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - indicatorOfTypeOfLevel = 1 ; - } -#Plant covering degree in the quiescent phas -'~' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 1 ; - } -#Max Leaf area index -'~' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 1 ; - } -#Min Leaf area index -'~' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - indicatorOfTypeOfLevel = 1 ; - } -#Orographie + Land-Meer-Verteilung -'m' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } -#variance of soil moisture content (0-10) -'kg**2 m**-4' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } -#variance of soil moisture content (10-100) -'kg**2 m**-4' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } -#evergreen forest -'~' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#deciduous forest -'~' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - indicatorOfTypeOfLevel = 1 ; - } -#normalized differential vegetation index -'~' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } -#normalized differential vegetation index (NDVI) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 3 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'~' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'~' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Total sulfate aerosol -'~' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } -#Total sulfate aerosol (12M) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } -#Total soil dust aerosol -'~' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } -#Total soil dust aerosol (12M) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } -#Organic aerosol -'~' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } -#Organic aerosol (12M) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } -#Black carbon aerosol -'~' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } -#Black carbon aerosol (12M) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } -#Sea salt aerosol -'~' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } -#Sea salt aerosol (12M) -'~' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } -#tendency of specific humidity -'s**-1' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - indicatorOfTypeOfLevel = 110 ; - } -#water vapor flux -'s**-1 m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - indicatorOfTypeOfLevel = 1 ; - } -#Coriolis parameter -'s**-1' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical latitude -'Degree N' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 1 ; - } -#geographical longitude -'Degree E' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - indicatorOfTypeOfLevel = 1 ; - } -#Friction velocity -'m s**-1' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - indicatorOfTypeOfLevel = 110 ; - } -#Delay of the GPS signal trough the (total) atm. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ozone Mixing Ratio -'kg kg**-1' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - indicatorOfTypeOfLevel = 110 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } -#Ru103-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ru103-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Strontium 90 -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } -#Sr90-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 1 ; - } -#Sr90-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-concentration -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } -#I131-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-concentration -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } -#Cs137-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Cs137-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } -#Te132-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - indicatorOfTypeOfLevel = 1 ; - } -#Te132-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } -#Zr95-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - indicatorOfTypeOfLevel = 1 ; - } -#Zr95-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } -#Kr85-dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - indicatorOfTypeOfLevel = 1 ; - } -#Kr85-wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - concentration -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } -#TRACER - dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - indicatorOfTypeOfLevel = 1 ; - } -#TRACER - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } -#Xe133 - dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - indicatorOfTypeOfLevel = 1 ; - } -#Xe133 - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - concentration -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } -#Xe133 - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131g - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - concentration -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } -#I131o - dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - indicatorOfTypeOfLevel = 1 ; - } -#I131o - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - indicatorOfTypeOfLevel = 1 ; - } -#Air concentration of Barium 40 -'Bq m**-3' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } -#Ba140 - dry deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - indicatorOfTypeOfLevel = 1 ; - } -#Ba140 - wet deposition -'Bq m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - indicatorOfTypeOfLevel = 1 ; - } -#u-momentum flux due to SSO-effects -'N m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#u-momentum flux due to SSO-effects -'N m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#v-momentum flux due to SSO-effects -'N m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#v-momentum flux due to SSO-effects -'N m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#Gravity wave dissipation (vertical integral) -'W m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } -#Gravity wave dissipation (vertical integral) -'W m**-2' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'~' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - indicatorOfTypeOfLevel = 1 ; - } -#wind shear -'m s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - indicatorOfTypeOfLevel = 110 ; - } -#storm relative helicity -'J kg**-1' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - indicatorOfTypeOfLevel = 110 ; - } -#absolute vorticity advection -'s**-2' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 100 ; - } -#NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) -'~' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund -'m' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'m' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } -#weather interpretation (WMO) -'~' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - indicatorOfTypeOfLevel = 1 ; - } -#geostrophische Vorticityadvektion -'s**-2' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - indicatorOfTypeOfLevel = 100 ; - } -#Geo Temperatur Adv geostrophische Schichtdickenadvektion -'m**3 kg**-1 s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - indicatorOfTypeOfLevel = 101 ; - } -#Schichtdicken-Advektion -'m**3 kg**-1 s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - indicatorOfTypeOfLevel = 101 ; - } -#Winddivergenz -'s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - indicatorOfTypeOfLevel = 100 ; - } -#Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen -'m**2 kg**-1 s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 100 ; - } -#Isentrope potentielle Vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } -#XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen -'m s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - indicatorOfTypeOfLevel = 100 ; - } -#YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen -'m s**-1' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - indicatorOfTypeOfLevel = 100 ; - } -#Druck einer isentropen Flaeche -'Pa' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } -#KO index -'K' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - indicatorOfTypeOfLevel = 1 ; - } -#Aequivalentpotentielle Temperatur -'K' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - indicatorOfTypeOfLevel = 100 ; - } -#Ceiling -'m' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - indicatorOfTypeOfLevel = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'~' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - indicatorOfTypeOfLevel = 100 ; - } -#modified cloud depth for media -'~' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - indicatorOfTypeOfLevel = 1 ; - } -#modified cloud cover for media -'~' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - indicatorOfTypeOfLevel = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Pa' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Pa' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'m s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'m s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'m s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'m s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'m**2 s**-2' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'m**2 s**-2' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'%' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'%' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'K' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'K' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Pa s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Pa s**-1' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'J kg**-1' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'J kg**-1' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - indicatorOfTypeOfLevel = 222 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 1 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 2 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 2 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 3 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - localElementNumber = 4 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - localElementNumber = 4 ; - } -#smoothed forecast, temperature -'K' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, maximum temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, minimum temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - timeRangeIndicator = 2 ; - } -#smoothed forecast, dew point temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#smoothed forecast, u comp. of wind -'m s**-1' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, v comp. of wind -'m s**-1' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#smoothed forecast, total precipitation rate -'kg m**-2 s**-1' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, total cloud cover -'%' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover low -'%' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover medium -'%' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, cloud cover high -'%' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'kg m**-2 s**-1' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#smoothed forecast, soil temperature -'K' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } -#smoothed forecast, wind speed (gust) -'m s**-1' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#calibrated forecast, total precipitation rate -'kg m**-2 s**-1' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'kg m**-2 s**-1' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - indicatorOfTypeOfLevel = 1 ; - } -#calibrated forecast, wind speed (gust) -'m s**-1' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def deleted file mode 100644 index 4a062bc4..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/cfName.def +++ /dev/null @@ -1,1041 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'sea_ice_area_fraction' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Geopotential -'geopotential' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'geopotential' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'geopotential' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'geopotential' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'air_temperature' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'air_temperature' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'air_temperature' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'air_temperature' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'air_temperature' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'eastward_wind' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'northward_wind' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'northward_wind' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'northward_wind' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'northward_wind' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'northward_wind' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'specific_humidity' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'surface_air_pressure' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'surface_temperature' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'surface_temperature' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'surface_temperature' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'surface_temperature' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'lwe_thickness_of_soil_moisture_content' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'lwe_thickness_of_soil_moisture_content' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'lwe_thickness_of_snowfall_amount' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'lwe_thickness_of_snowfall_amount' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'divergence_of_wind' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'geopotential_height' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'relative_humidity' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'tendency_of_surface_air_pressure' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'tendency_of_surface_air_pressure' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Total cloud cover -'cloud_area_fraction' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'cloud_area_fraction' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'cloud_area_fraction' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'cloud_area_fraction' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'cloud_area_fraction' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#Surface solar radiation downwards -'surface_downwelling_shortwave_flux_in_air' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'surface_downwelling_shortwave_flux_in_air' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'land_binary_mask' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'surface_roughness_length' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'surface_roughness_length' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'surface_albedo' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'surface_albedo' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'surface_albedo' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Ozone mass mixing ratio -'mass_fraction_of_ozone_in_air' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Total column ozone -'atmosphere_mass_content_of_ozone' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#Surface net solar radiation, clear sky -'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'surface_net_downward_longwave_flux_assuming_clear_sky' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#Temperature of snow layer -'temperature_in_surface_snow' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'temperature_in_surface_snow' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Sea ice snow thickness -'surface_snow_thickness' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Particulate matter d < 1 um -'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Hydrogen peroxide -'mass_fraction_of_hydrogen_peroxide_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'mass_fraction_of_methane_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'mass_fraction_of_nitric_acid_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Ethene -'mass_fraction_of_ethene_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Peroxyacetyl nitrate -'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Isoprene -'mass_fraction_of_isoprene_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'mass_fraction_of_dimethyl_sulfide_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'mass_fraction_of_ammonia_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Nitrogen monoxide -'mass_fraction_of_nitrogen_monoxide_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroxyl radical -'mass_fraction_of_hydroxyl_radical_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'mass_fraction_of_nitrate_radical_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'mass_fraction_of_dinitrogen_pentoxide_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Methanol -'mass_fraction_of_methanol_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'mass_fraction_of_formic_acid_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Ethane -'mass_fraction_of_ethane_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'mass_fraction_of_ethanol_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'mass_fraction_of_propane_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'mass_fraction_of_propene_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'mass_fraction_of_terpenes_in_air' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Total column hydrogen peroxide -'atmosphere_mass_content_of_hydrogen_peroxide' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'atmosphere_mass_content_of_methane' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'atmosphere_mass_content_of_nitric_acid' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column ethene -'atmosphere_mass_content_of_ethene' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column peroxyacetyl nitrate -'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column isoprene -'atmosphere_mass_content_of_isoprene' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'atmosphere_mass_content_of_dimethyl_sulfide' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'atmosphere_mass_content_of_ammonia' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'atmosphere_mass_content_of_sulfate' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column nitrogen monoxide -'atmosphere_mass_content_of_nitrogen_monoxide' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroxyl radical -'atmosphere_mass_content_of_hydroxyl_radical' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'atmosphere_mass_content_of_nitrate_radical' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'atmosphere_mass_content_of_dinitrogen_pentoxide' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column methanol -'atmosphere_mass_content_of_methanol' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'atmosphere_mass_content_of_formic_acid' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column ethane -'atmosphere_mass_content_of_ethane' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'atmosphere_mass_content_of_ethanol' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'atmosphere_mass_content_of_propane' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'atmosphere_mass_content_of_propene' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'atmosphere_mass_content_of_terpenes' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Sea water potential temperature -'sea_water_potential_temperature' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'sea_water_practical_salinity' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'eastward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'northward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'upward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Sea water sigma theta -'sea_water_sigma_theta' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Sea surface height -'sea_surface_height_above_geoid' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Ocean barotropic stream function -'ocean_barotropic_streamfunction' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'surface_downward_northward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Sea-ice thickness -'sea_ice_thickness' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Carbon Dioxide -'mass_fraction_of_carbon_dioxide_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'mass_fraction_of_methane_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'mass_fraction_of_nitrous_oxide_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#Total column Nitrous oxide -'atmosphere_mass_content_of_nitrous_oxide' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Nitrogen dioxide -'mass_fraction_of_nitrogen_dioxide_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'mass_fraction_of_sulfur_dioxide_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'mass_fraction_of_carbon_monoxide_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'mass_fraction_of_formaldehyde_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'atmosphere_mass_content_of_nitrogen_dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'atmosphere_mass_content_of_sulfur_dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'atmosphere_mass_content_of_carbon_monoxide' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'atmosphere_mass_content_of_formaldehyde' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Radon -'mass_fraction_of_radon_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Total column Radon -'atmosphere_mass_content_of_radon' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#GEMS Ozone -'mass_fraction_of_ozone_in_air' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'atmosphere_mass_content_of_ozone' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def deleted file mode 100644 index 40549c85..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/cfVarName.def +++ /dev/null @@ -1,17676 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - table2Version = 131 ; - indicatorOfParameter = 60 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - table2Version = 131 ; - indicatorOfParameter = 61 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - table2Version = 131 ; - indicatorOfParameter = 62 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - table2Version = 131 ; - indicatorOfParameter = 63 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - table2Version = 131 ; - indicatorOfParameter = 82 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - table2Version = 131 ; - indicatorOfParameter = 83 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - table2Version = 131 ; - indicatorOfParameter = 84 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - table2Version = 131 ; - indicatorOfParameter = 85 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - table2Version = 131 ; - indicatorOfParameter = 86 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - table2Version = 131 ; - indicatorOfParameter = 87 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - table2Version = 131 ; - indicatorOfParameter = 88 ; - } -#Stream function -'strf' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -#Velocity potential -'vp' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -#Potential temperature -'pt' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature -'eqpt' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -#Soil sand fraction -'ssfr' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -#Soil clay fraction -'scfr' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -#Surface runoff -'sro' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'ssro' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -#Wind speed -'ws' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -#U component of divergent wind -'udvw' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind -'vdvw' = { - table2Version = 128 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind -'urtw' = { - table2Version = 128 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind -'vrtw' = { - table2Version = 128 ; - indicatorOfParameter = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - table2Version = 128 ; - indicatorOfParameter = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - table2Version = 128 ; - indicatorOfParameter = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - table2Version = 128 ; - indicatorOfParameter = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - table2Version = 128 ; - indicatorOfParameter = 18 ; - } -#Clear sky surface UV -'uvcs' = { - table2Version = 128 ; - indicatorOfParameter = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - table2Version = 128 ; - indicatorOfParameter = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - table2Version = 128 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - table2Version = 128 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'p24.128' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'p25.128' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -#Lake cover -'cl' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover -'cvl' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover -'cvh' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation -'tvl' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation -'tvh' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -#Sea ice area fraction -'siconc' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Snow albedo -'asn' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -#Snow density -'rsn' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature -'sst' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -#Ice temperature layer 1 -'istl1' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -#Soil type -'slt' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation -'es' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'smlt' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -#Solar duration -'sdur' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation -'dsrp' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust since previous post-processing -'fg10' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction -'lspf' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential -'mont' = { - table2Version = 128 ; - indicatorOfParameter = 53 ; - } -#Pressure -'pres' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy -'cape' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity -'pv' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -#Observation count -'obct' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'sktd' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - table2Version = 128 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - table2Version = 128 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - table2Version = 128 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - table2Version = 128 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -#Specific rain water content -'crwc' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -#Specific snow water content -'cswc' = { - table2Version = 128 ; - indicatorOfParameter = 76 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - table2Version = 128 ; - indicatorOfParameter = 77 ; - } -#Total column cloud liquid water -'tclw' = { - table2Version = 128 ; - indicatorOfParameter = 78 ; - } -#Total column cloud ice water -'tciw' = { - table2Version = 128 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'p80.128' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'p81.128' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'p82.128' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'p83.128' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'p84.128' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'p85.128' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'p86.128' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'p87.128' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'p88.128' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'p89.128' = { - table2Version = 128 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'p90.128' = { - table2Version = 128 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'p91.128' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'p92.128' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'p93.128' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'p94.128' = { - table2Version = 128 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'p95.128' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'p96.128' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'p97.128' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'p98.128' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'p99.128' = { - table2Version = 128 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'p100.128' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'p101.128' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'p102.128' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'p103.128' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'p104.128' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'p105.128' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'p106.128' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'p107.128' = { - table2Version = 128 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'p108.128' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'p109.128' = { - table2Version = 128 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'p110.128' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'p111.128' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'p112.128' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'p113.128' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'p114.128' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'p115.128' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'p116.128' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'p117.128' = { - table2Version = 128 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'p118.128' = { - table2Version = 128 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'p119.128' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'p120.128' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours -'p10fg6' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -#Surface emissivity -'emis' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -#Vertically integrated total energy -'vite' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.128' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide -'at' = { - table2Version = 128 ; - indicatorOfParameter = 127 ; - } -#Atmospheric tide -'at' = { - table2Version = 160 ; - indicatorOfParameter = 127 ; - } -#Budget values -'bv' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -#Budget values -'bv' = { - table2Version = 160 ; - indicatorOfParameter = 128 ; - } -#Geopotential -'z' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'t' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'u' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'v' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'q' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'sp' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'sp' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'w' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'w' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water -'tcw' = { - table2Version = 128 ; - indicatorOfParameter = 136 ; - } -#Total column water -'tcw' = { - table2Version = 160 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'swl1' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'swl1' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'sd' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'sd' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'sd' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'cp' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'cp' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'cp' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'sf' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'sf' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Charnock -'chnk' = { - table2Version = 128 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation -'snr' = { - table2Version = 128 ; - indicatorOfParameter = 149 ; - } -#Top net radiation -'tnr' = { - table2Version = 128 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure -'lnsp' = { - table2Version = 128 ; - indicatorOfParameter = 152 ; - } -#Logarithm of surface pressure -'lnsp' = { - table2Version = 160 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate -'swhr' = { - table2Version = 128 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate -'lwhr' = { - table2Version = 128 ; - indicatorOfParameter = 154 ; - } -#Divergence -'d' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'gh' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'r' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'r' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'r' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'tsp' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'tsp' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height -'blh' = { - table2Version = 128 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography -'sdor' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover -'tcc' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component -'u10' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'u10' = { - table2Version = 160 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'u10' = { - table2Version = 180 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'u10' = { - table2Version = 190 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'v10' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'v10' = { - table2Version = 160 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'v10' = { - table2Version = 180 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'v10' = { - table2Version = 190 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature -'t2m' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'t2m' = { - table2Version = 160 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'t2m' = { - table2Version = 180 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'t2m' = { - table2Version = 190 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 160 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 180 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'d2m' = { - table2Version = 190 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards -'ssrd' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'ssrd' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 -'stl2' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -#Soil temperature level 2 -'stl2' = { - table2Version = 160 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 -'swl2' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask -'lsm' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'sr' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'sr' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'al' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'al' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'al' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards -'strd' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -#Surface thermal radiation downwards -'strd' = { - table2Version = 190 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'e' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 -'stl3' = { - table2Version = 128 ; - indicatorOfParameter = 183 ; - } -#Soil temperature level 3 -'stl3' = { - table2Version = 160 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 -'swl3' = { - table2Version = 128 ; - indicatorOfParameter = 184 ; - } -#Soil wetness level 3 -'swl3' = { - table2Version = 170 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover -'lcc' = { - table2Version = 128 ; - indicatorOfParameter = 186 ; - } -#Low cloud cover -'lcc' = { - table2Version = 160 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 128 ; - indicatorOfParameter = 187 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 160 ; - indicatorOfParameter = 187 ; - } -#High cloud cover -'hcc' = { - table2Version = 128 ; - indicatorOfParameter = 188 ; - } -#High cloud cover -'hcc' = { - table2Version = 160 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration -'sund' = { - table2Version = 128 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - table2Version = 128 ; - indicatorOfParameter = 190 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - table2Version = 160 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - table2Version = 128 ; - indicatorOfParameter = 191 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - table2Version = 160 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - table2Version = 128 ; - indicatorOfParameter = 192 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - table2Version = 160 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - table2Version = 128 ; - indicatorOfParameter = 193 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - table2Version = 160 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature -'btmp' = { - table2Version = 128 ; - indicatorOfParameter = 194 ; - } -#Eastward gravity wave surface stress -'lgws' = { - table2Version = 128 ; - indicatorOfParameter = 195 ; - } -#Eastward gravity wave surface stress -'lgws' = { - table2Version = 160 ; - indicatorOfParameter = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - table2Version = 128 ; - indicatorOfParameter = 196 ; - } -#Northward gravity wave surface stress -'mgws' = { - table2Version = 160 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'gwd' = { - table2Version = 128 ; - indicatorOfParameter = 197 ; - } -#Gravity wave dissipation -'gwd' = { - table2Version = 160 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content -'src' = { - table2Version = 128 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction -'veg' = { - table2Version = 128 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -#Variance of sub-gridscale orography -'vso' = { - table2Version = 160 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 170 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 190 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 170 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 190 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio -'o3' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights -'paw' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -#Precipitation analysis weights -'paw' = { - table2Version = 160 ; - indicatorOfParameter = 204 ; - } -#Runoff -'ro' = { - table2Version = 128 ; - indicatorOfParameter = 205 ; - } -#Runoff -'ro' = { - table2Version = 180 ; - indicatorOfParameter = 205 ; - } -#Total column ozone -'tco3' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed -'si10' = { - table2Version = 128 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - table2Version = 128 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - table2Version = 128 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation -'tisr' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of zonal wind -'ctzw' = { - table2Version = 130 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -#Convective tendency of meridional wind -'ctmw' = { - table2Version = 130 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - table2Version = 128 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - table2Version = 128 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - table2Version = 128 ; - indicatorOfParameter = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - table2Version = 128 ; - indicatorOfParameter = 227 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - table2Version = 130 ; - indicatorOfParameter = 227 ; - } -#Total precipitation -'tp' = { - table2Version = 128 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 160 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 170 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 190 ; - indicatorOfParameter = 228 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - table2Version = 128 ; - indicatorOfParameter = 229 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - table2Version = 160 ; - indicatorOfParameter = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - table2Version = 128 ; - indicatorOfParameter = 230 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - table2Version = 160 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - table2Version = 128 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux -'ie' = { - table2Version = 128 ; - indicatorOfParameter = 232 ; - } -#Instantaneous moisture flux -'ie' = { - table2Version = 160 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity -'asq' = { - table2Version = 128 ; - indicatorOfParameter = 233 ; - } -#Apparent surface humidity -'asq' = { - table2Version = 160 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - table2Version = 128 ; - indicatorOfParameter = 234 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - table2Version = 160 ; - indicatorOfParameter = 234 ; - } -#Skin temperature -'skt' = { - table2Version = 128 ; - indicatorOfParameter = 235 ; - } -#Skin temperature -'skt' = { - table2Version = 160 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 -'stl4' = { - table2Version = 128 ; - indicatorOfParameter = 236 ; - } -#Soil temperature level 4 -'stl4' = { - table2Version = 160 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 -'swl4' = { - table2Version = 128 ; - indicatorOfParameter = 237 ; - } -#Soil wetness level 4 -'swl4' = { - table2Version = 160 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer -'tsn' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'tsn' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall -'csf' = { - table2Version = 128 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall -'lsf' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'fal' = { - table2Version = 128 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness -'fsr' = { - table2Version = 128 ; - indicatorOfParameter = 244 ; - } -#Forecast surface roughness -'fsr' = { - table2Version = 160 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - table2Version = 128 ; - indicatorOfParameter = 245 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - table2Version = 160 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content -'clwc' = { - table2Version = 128 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content -'ciwc' = { - table2Version = 128 ; - indicatorOfParameter = 247 ; - } -#Fraction of cloud cover -'cc' = { - table2Version = 128 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency -'aiw' = { - table2Version = 128 ; - indicatorOfParameter = 249 ; - } -#Ice age -'ice' = { - table2Version = 128 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - table2Version = 128 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - table2Version = 128 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - table2Version = 128 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - table2Version = 128 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 132 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 160 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 170 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 180 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'p255.190' = { - table2Version = 190 ; - indicatorOfParameter = 255 ; - } -#Stream function difference -'strfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Potential temperature difference -'ptdiff' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'p24.200' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'p25.200' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Lake cover difference -'cldiff' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Snow albedo difference -'asndiff' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Snow density difference -'rsndiff' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Soil type difference -'sltdiff' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation difference -'esdiff' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Snowmelt difference -'smltdiff' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Solar duration difference -'sdurdiff' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust difference -'fgdiff10' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential difference -'montdiff' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Pressure difference -'presdiff' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy difference -'capediff' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Observation count difference -'obctdiff' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'p63.200' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'p64.200' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'p65.200' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'p66.200' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'p67.200' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.200' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.200' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'p70.200' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'p71.200' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'p78.200' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'p79.200' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'p80.200' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'p81.200' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'p82.200' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'p83.200' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'p84.200' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'p85.200' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'p86.200' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'p87.200' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'p88.200' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'p89.200' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'p90.200' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'p91.200' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'p92.200' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'p93.200' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'p94.200' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'p95.200' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'p96.200' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'p97.200' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'p98.200' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'p99.200' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'p100.200' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'p101.200' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'p102.200' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'p103.200' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'p104.200' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'p105.200' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'p106.200' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'p107.200' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'p108.200' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'p109.200' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'p110.200' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'p111.200' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'p112.200' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'p113.200' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'p114.200' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'p115.200' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'p116.200' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'p117.200' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'p118.200' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'p119.200' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'p120.200' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'fg6diff10' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'p125.200' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.200' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Budget values difference -'bvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 128 ; - } -#Geopotential difference -'zdiff' = { - table2Version = 200 ; - indicatorOfParameter = 129 ; - } -#Temperature difference -'tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 130 ; - } -#U component of wind difference -'udiff' = { - table2Version = 200 ; - indicatorOfParameter = 131 ; - } -#V component of wind difference -'vdiff' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Specific humidity difference -'qdiff' = { - table2Version = 200 ; - indicatorOfParameter = 133 ; - } -#Surface pressure difference -'spdiff' = { - table2Version = 200 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - table2Version = 200 ; - indicatorOfParameter = 135 ; - } -#Total column water difference -'tcwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - table2Version = 200 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 140 ; - } -#Snow depth difference -'sddiff' = { - table2Version = 200 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Charnock difference -'chnkdiff' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Divergence difference -'ddiff' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#Height difference -'ghdiff' = { - table2Version = 200 ; - indicatorOfParameter = 156 ; - } -#Relative humidity difference -'rdiff' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component difference -'udiff10' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component difference -'vdiff10' = { - table2Version = 200 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature difference -'difft2' = { - table2Version = 200 ; - indicatorOfParameter = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - table2Version = 200 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Surface roughness difference -'srdiff' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Albedo difference -'aldiff' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - table2Version = 200 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - table2Version = 200 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 181 ; - } -#Evaporation difference -'ediff' = { - table2Version = 200 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 187 ; - } -#High cloud cover difference -'hccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - table2Version = 200 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - table2Version = 200 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - table2Version = 200 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - table2Version = 200 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Runoff difference -'rodiff' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Total column ozone difference -'tco3diff' = { - table2Version = 200 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed difference -'sidiff10' = { - table2Version = 200 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - table2Version = 200 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - table2Version = 200 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total precipitation difference -'tpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - table2Version = 200 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - table2Version = 200 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 234 ; - } -#Skin temperature difference -'sktdiff' = { - table2Version = 200 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - table2Version = 200 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo difference -'faldiff' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Cloud cover difference -'ccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Ice age difference -'icediff' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'p255.200' = { - table2Version = 200 ; - indicatorOfParameter = 255 ; - } -#Probability of a tropical storm -'p131089' = { - table2Version = 131 ; - indicatorOfParameter = 89 ; - } -#Probability of a hurricane -'p131090' = { - table2Version = 131 ; - indicatorOfParameter = 90 ; - } -#Probability of a tropical depression -'p131091' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Climatological probability of a tropical storm -'p131092' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Climatological probability of a hurricane -'p131093' = { - table2Version = 131 ; - indicatorOfParameter = 93 ; - } -#Climatological probability of a tropical depression -'p131094' = { - table2Version = 131 ; - indicatorOfParameter = 94 ; - } -#Probability anomaly of a tropical storm -'p131095' = { - table2Version = 131 ; - indicatorOfParameter = 95 ; - } -#Probability anomaly of a hurricane -'p131096' = { - table2Version = 131 ; - indicatorOfParameter = 96 ; - } -#Probability anomaly of a tropical depression -'p131097' = { - table2Version = 131 ; - indicatorOfParameter = 97 ; - } -#Total precipitation of at least 25 mm -'tpg25' = { - table2Version = 131 ; - indicatorOfParameter = 98 ; - } -#Total precipitation of at least 50 mm -'tpg50' = { - table2Version = 131 ; - indicatorOfParameter = 99 ; - } -#10 metre wind gust of at least 10 m/s -'fgg1010' = { - table2Version = 131 ; - indicatorOfParameter = 100 ; - } -#Convective available potential energy shear index -'capesi' = { - table2Version = 132 ; - indicatorOfParameter = 44 ; - } -#Water vapour flux index -'wvfi' = { - table2Version = 132 ; - indicatorOfParameter = 45 ; - } -#Convective available potential energy index -'capei' = { - table2Version = 132 ; - indicatorOfParameter = 59 ; - } -#Maximum of significant wave height index -'maxswhi' = { - table2Version = 132 ; - indicatorOfParameter = 216 ; - } -#Wave experimental parameter 1 -'p140080' = { - table2Version = 140 ; - indicatorOfParameter = 80 ; - } -#Wave experimental parameter 2 -'p140081' = { - table2Version = 140 ; - indicatorOfParameter = 81 ; - } -#Wave experimental parameter 3 -'p140082' = { - table2Version = 140 ; - indicatorOfParameter = 82 ; - } -#Wave experimental parameter 4 -'p140083' = { - table2Version = 140 ; - indicatorOfParameter = 83 ; - } -#Wave experimental parameter 5 -'p140084' = { - table2Version = 140 ; - indicatorOfParameter = 84 ; - } -#Wave induced mean sea level correction -'weta' = { - table2Version = 140 ; - indicatorOfParameter = 98 ; - } -#Ratio of wave angular and frequency width -'wraf' = { - table2Version = 140 ; - indicatorOfParameter = 99 ; - } -#Number of events in freak waves statistics -'wnslc' = { - table2Version = 140 ; - indicatorOfParameter = 100 ; - } -#U-component of atmospheric surface momentum flux -'utaua' = { - table2Version = 140 ; - indicatorOfParameter = 101 ; - } -#V-component of atmospheric surface momentum flux -'vtaua' = { - table2Version = 140 ; - indicatorOfParameter = 102 ; - } -#U-component of surface momentum flux into ocean -'utauo' = { - table2Version = 140 ; - indicatorOfParameter = 103 ; - } -#V-component of surface momentum flux into ocean -'vtauo' = { - table2Version = 140 ; - indicatorOfParameter = 104 ; - } -#Wave turbulent energy flux into ocean -'wphio' = { - table2Version = 140 ; - indicatorOfParameter = 105 ; - } -#Wave directional width of first swell partition -'wdw1' = { - table2Version = 140 ; - indicatorOfParameter = 106 ; - } -#Wave frequency width of first swell partition -'wfw1' = { - table2Version = 140 ; - indicatorOfParameter = 107 ; - } -#Wave directional width of second swell partition -'wdw2' = { - table2Version = 140 ; - indicatorOfParameter = 108 ; - } -#Wave frequency width of second swell partition -'wfw2' = { - table2Version = 140 ; - indicatorOfParameter = 109 ; - } -#Wave directional width of third swell partition -'wdw3' = { - table2Version = 140 ; - indicatorOfParameter = 110 ; - } -#Wave frequency width of third swell partition -'wfw3' = { - table2Version = 140 ; - indicatorOfParameter = 111 ; - } -#Wave energy flux magnitude -'wefxm' = { - table2Version = 140 ; - indicatorOfParameter = 112 ; - } -#Wave energy flux mean direction -'wefxd' = { - table2Version = 140 ; - indicatorOfParameter = 113 ; - } -#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds -'h1012' = { - table2Version = 140 ; - indicatorOfParameter = 114 ; - } -#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds -'h1214' = { - table2Version = 140 ; - indicatorOfParameter = 115 ; - } -#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds -'h1417' = { - table2Version = 140 ; - indicatorOfParameter = 116 ; - } -#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds -'h1721' = { - table2Version = 140 ; - indicatorOfParameter = 117 ; - } -#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds -'h2125' = { - table2Version = 140 ; - indicatorOfParameter = 118 ; - } -#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds -'h2530' = { - table2Version = 140 ; - indicatorOfParameter = 119 ; - } -#Significant wave height of all waves with period larger than 10s -'sh10' = { - table2Version = 140 ; - indicatorOfParameter = 120 ; - } -#Significant wave height of first swell partition -'p140121' = { - table2Version = 140 ; - indicatorOfParameter = 121 ; - } -#Mean wave direction of first swell partition -'p140122' = { - table2Version = 140 ; - indicatorOfParameter = 122 ; - } -#Mean wave period of first swell partition -'p140123' = { - table2Version = 140 ; - indicatorOfParameter = 123 ; - } -#Significant wave height of second swell partition -'p140124' = { - table2Version = 140 ; - indicatorOfParameter = 124 ; - } -#Mean wave direction of second swell partition -'p140125' = { - table2Version = 140 ; - indicatorOfParameter = 125 ; - } -#Mean wave period of second swell partition -'p140126' = { - table2Version = 140 ; - indicatorOfParameter = 126 ; - } -#Significant wave height of third swell partition -'p140127' = { - table2Version = 140 ; - indicatorOfParameter = 127 ; - } -#Mean wave direction of third swell partition -'p140128' = { - table2Version = 140 ; - indicatorOfParameter = 128 ; - } -#Mean wave period of third swell partition -'p140129' = { - table2Version = 140 ; - indicatorOfParameter = 129 ; - } -#Wave Spectral Skewness -'wss' = { - table2Version = 140 ; - indicatorOfParameter = 207 ; - } -#Free convective velocity over the oceans -'p140208' = { - table2Version = 140 ; - indicatorOfParameter = 208 ; - } -#Air density over the oceans -'p140209' = { - table2Version = 140 ; - indicatorOfParameter = 209 ; - } -#Mean square wave strain in sea ice -'p140210' = { - table2Version = 140 ; - indicatorOfParameter = 210 ; - } -#Normalized energy flux into waves -'phiaw' = { - table2Version = 140 ; - indicatorOfParameter = 211 ; - } -#Normalized energy flux into ocean -'phioc' = { - table2Version = 140 ; - indicatorOfParameter = 212 ; - } -#Turbulent Langmuir number -'tla' = { - table2Version = 140 ; - indicatorOfParameter = 213 ; - } -#Normalized stress into ocean -'tauoc' = { - table2Version = 140 ; - indicatorOfParameter = 214 ; - } -#Reserved -'p193.151' = { - table2Version = 151 ; - indicatorOfParameter = 193 ; - } -#Water vapour flux -'wvf' = { - table2Version = 162 ; - indicatorOfParameter = 45 ; - } -#Vertical integral of divergence of cloud liquid water flux -'p79.162' = { - table2Version = 162 ; - indicatorOfParameter = 79 ; - } -#Vertical integral of divergence of cloud frozen water flux -'p80.162' = { - table2Version = 162 ; - indicatorOfParameter = 80 ; - } -#Vertical integral of eastward cloud liquid water flux -'p88.162' = { - table2Version = 162 ; - indicatorOfParameter = 88 ; - } -#Vertical integral of northward cloud liquid water flux -'p89.162' = { - table2Version = 162 ; - indicatorOfParameter = 89 ; - } -#Vertical integral of eastward cloud frozen water flux -'p90.162' = { - table2Version = 162 ; - indicatorOfParameter = 90 ; - } -#Vertical integral of northward cloud frozen water flux -'p91.162' = { - table2Version = 162 ; - indicatorOfParameter = 91 ; - } -#Vertical integral of mass tendency -'p92.162' = { - table2Version = 162 ; - indicatorOfParameter = 92 ; - } -#U-tendency from dynamics -'utendd' = { - table2Version = 162 ; - indicatorOfParameter = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - table2Version = 162 ; - indicatorOfParameter = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - table2Version = 162 ; - indicatorOfParameter = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - table2Version = 162 ; - indicatorOfParameter = 117 ; - } -#T-tendency from radiation -'ttendr' = { - table2Version = 162 ; - indicatorOfParameter = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - table2Version = 162 ; - indicatorOfParameter = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - table2Version = 162 ; - indicatorOfParameter = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - table2Version = 162 ; - indicatorOfParameter = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - table2Version = 162 ; - indicatorOfParameter = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - table2Version = 162 ; - indicatorOfParameter = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - table2Version = 162 ; - indicatorOfParameter = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - table2Version = 162 ; - indicatorOfParameter = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - table2Version = 162 ; - indicatorOfParameter = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - table2Version = 162 ; - indicatorOfParameter = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - table2Version = 162 ; - indicatorOfParameter = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - table2Version = 162 ; - indicatorOfParameter = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - table2Version = 162 ; - indicatorOfParameter = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - table2Version = 162 ; - indicatorOfParameter = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - table2Version = 162 ; - indicatorOfParameter = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - table2Version = 162 ; - indicatorOfParameter = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - table2Version = 162 ; - indicatorOfParameter = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - table2Version = 162 ; - indicatorOfParameter = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - table2Version = 162 ; - indicatorOfParameter = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - table2Version = 162 ; - indicatorOfParameter = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - table2Version = 162 ; - indicatorOfParameter = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - table2Version = 162 ; - indicatorOfParameter = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - table2Version = 162 ; - indicatorOfParameter = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - table2Version = 162 ; - indicatorOfParameter = 141 ; - } -#Standardised precipitation index valid in the last 3 months -'spi03' = { - table2Version = 170 ; - indicatorOfParameter = 1 ; - } -#Standardised precipitation index valid in the last 6 months -'spi06' = { - table2Version = 170 ; - indicatorOfParameter = 2 ; - } -#Standardised precipitation index valid in the last 12 months -'spi12' = { - table2Version = 170 ; - indicatorOfParameter = 3 ; - } -#100 metre U wind component anomaly -'ua100' = { - table2Version = 171 ; - indicatorOfParameter = 6 ; - } -#100 metre V wind component anomaly -'va100' = { - table2Version = 171 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature anomaly -'lmlta' = { - table2Version = 171 ; - indicatorOfParameter = 24 ; - } -#Lake ice depth anomaly -'licda' = { - table2Version = 171 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - table2Version = 171 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - table2Version = 171 ; - indicatorOfParameter = 122 ; - } -#Mean surface runoff rate -'msror' = { - table2Version = 172 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate -'mssror' = { - table2Version = 172 ; - indicatorOfParameter = 9 ; - } -#Mean surface runoff rate anomaly -'msrora' = { - table2Version = 173 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate anomaly -'mssrora' = { - table2Version = 173 ; - indicatorOfParameter = 9 ; - } -#Clear-sky (II) down surface sw flux -'sswcsdown' = { - table2Version = 174 ; - indicatorOfParameter = 10 ; - } -#Clear-sky (II) up surface sw flux -'sswcsup' = { - table2Version = 174 ; - indicatorOfParameter = 13 ; - } -#Visibility at 1.5m -'vis15' = { - table2Version = 174 ; - indicatorOfParameter = 25 ; - } -#Minimum temperature at 1.5m since previous post-processing -'mn15t' = { - table2Version = 174 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 1.5m since previous post-processing -'mx15t' = { - table2Version = 174 ; - indicatorOfParameter = 51 ; - } -#Relative humidity at 1.5m -'rhum' = { - table2Version = 174 ; - indicatorOfParameter = 52 ; - } -#2 metre specific humidity -'sh2' = { - table2Version = 174 ; - indicatorOfParameter = 96 ; - } -#Sea ice snow thickness -'sisnthick' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Short wave radiation flux at surface -'swrsurf' = { - table2Version = 174 ; - indicatorOfParameter = 116 ; - } -#Short wave radiation flux at top of atmosphere -'swrtop' = { - table2Version = 174 ; - indicatorOfParameter = 117 ; - } -#Total column water vapour -'tcwvap' = { - table2Version = 174 ; - indicatorOfParameter = 137 ; - } -#Large scale rainfall rate -'lsrrate' = { - table2Version = 174 ; - indicatorOfParameter = 142 ; - } -#Convective rainfall rate -'crfrate' = { - table2Version = 174 ; - indicatorOfParameter = 143 ; - } -#Very low cloud amount -'vlca' = { - table2Version = 174 ; - indicatorOfParameter = 186 ; - } -#Convective snowfall rate -'csfrate' = { - table2Version = 174 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall rate -'lsfrate' = { - table2Version = 174 ; - indicatorOfParameter = 240 ; - } -#Total cloud amount - random overlap -'tccro' = { - table2Version = 174 ; - indicatorOfParameter = 248 ; - } -#Total cloud amount in lw radiation -'tcclwr' = { - table2Version = 174 ; - indicatorOfParameter = 249 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'emdms' = { - table2Version = 210 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - table2Version = 210 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - table2Version = 210 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'p55.210' = { - table2Version = 210 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'p56.210' = { - table2Version = 210 ; - indicatorOfParameter = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - table2Version = 210 ; - indicatorOfParameter = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - table2Version = 210 ; - indicatorOfParameter = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - table2Version = 210 ; - indicatorOfParameter = 59 ; - } -#Injection height (from IS4FIRES) -'injh' = { - table2Version = 210 ; - indicatorOfParameter = 60 ; - } -#Particulate matter d < 1 um -'pm1' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - table2Version = 210 ; - indicatorOfParameter = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 118 ; - } -#Mean altitude of maximum injection -'mami' = { - table2Version = 210 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'apt' = { - table2Version = 210 ; - indicatorOfParameter = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - table2Version = 210 ; - indicatorOfParameter = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - table2Version = 210 ; - indicatorOfParameter = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - table2Version = 210 ; - indicatorOfParameter = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - table2Version = 210 ; - indicatorOfParameter = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - table2Version = 210 ; - indicatorOfParameter = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - table2Version = 210 ; - indicatorOfParameter = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - table2Version = 210 ; - indicatorOfParameter = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - table2Version = 210 ; - indicatorOfParameter = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - table2Version = 210 ; - indicatorOfParameter = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - table2Version = 210 ; - indicatorOfParameter = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - table2Version = 210 ; - indicatorOfParameter = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - table2Version = 210 ; - indicatorOfParameter = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - table2Version = 210 ; - indicatorOfParameter = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - table2Version = 210 ; - indicatorOfParameter = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - table2Version = 210 ; - indicatorOfParameter = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - table2Version = 210 ; - indicatorOfParameter = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - table2Version = 210 ; - indicatorOfParameter = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - table2Version = 210 ; - indicatorOfParameter = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - table2Version = 210 ; - indicatorOfParameter = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - table2Version = 210 ; - indicatorOfParameter = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - table2Version = 210 ; - indicatorOfParameter = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - table2Version = 210 ; - indicatorOfParameter = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - table2Version = 210 ; - indicatorOfParameter = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - table2Version = 210 ; - indicatorOfParameter = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - table2Version = 210 ; - indicatorOfParameter = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - table2Version = 210 ; - indicatorOfParameter = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'c7h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'c6h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'c8h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'c4h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'c5h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'c6h12fire' = { - table2Version = 210 ; - indicatorOfParameter = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'c8h16fire' = { - table2Version = 210 ; - indicatorOfParameter = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'c4h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'c5h12fire' = { - table2Version = 210 ; - indicatorOfParameter = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'c6h14fire' = { - table2Version = 210 ; - indicatorOfParameter = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'c7h16fire' = { - table2Version = 210 ; - indicatorOfParameter = 241 ; - } -#Altitude of plume bottom -'apb' = { - table2Version = 210 ; - indicatorOfParameter = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - table2Version = 210 ; - indicatorOfParameter = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - table2Version = 210 ; - indicatorOfParameter = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - table2Version = 210 ; - indicatorOfParameter = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - table2Version = 210 ; - indicatorOfParameter = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16' = { - table2Version = 210 ; - indicatorOfParameter = 247 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17' = { - table2Version = 210 ; - indicatorOfParameter = 248 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18' = { - table2Version = 210 ; - indicatorOfParameter = 249 ; - } -#Nitrate aerosol optical depth at 550 nm -'niaod550' = { - table2Version = 210 ; - indicatorOfParameter = 250 ; - } -#Ammonium aerosol optical depth at 550 nm -'amaod550' = { - table2Version = 210 ; - indicatorOfParameter = 251 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - table2Version = 211 ; - indicatorOfParameter = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - table2Version = 211 ; - indicatorOfParameter = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - table2Version = 211 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - table2Version = 211 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - table2Version = 211 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - table2Version = 211 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - table2Version = 211 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - table2Version = 211 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - table2Version = 211 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'p55.211' = { - table2Version = 211 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'p56.211' = { - table2Version = 211 ; - indicatorOfParameter = 56 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6firediff' = { - table2Version = 211 ; - indicatorOfParameter = 118 ; - } -#Altitude of emitter -'alediff' = { - table2Version = 211 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'aptdiff' = { - table2Version = 211 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'p1.212' = { - table2Version = 212 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'p2.212' = { - table2Version = 212 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'p3.212' = { - table2Version = 212 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'p4.212' = { - table2Version = 212 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'p5.212' = { - table2Version = 212 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'p6.212' = { - table2Version = 212 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'p7.212' = { - table2Version = 212 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'p8.212' = { - table2Version = 212 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'p9.212' = { - table2Version = 212 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'p10.212' = { - table2Version = 212 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'p11.212' = { - table2Version = 212 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'p12.212' = { - table2Version = 212 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'p13.212' = { - table2Version = 212 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'p14.212' = { - table2Version = 212 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'p15.212' = { - table2Version = 212 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'p16.212' = { - table2Version = 212 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'p17.212' = { - table2Version = 212 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'p18.212' = { - table2Version = 212 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'p19.212' = { - table2Version = 212 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'p20.212' = { - table2Version = 212 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'p21.212' = { - table2Version = 212 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'p22.212' = { - table2Version = 212 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'p23.212' = { - table2Version = 212 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'p24.212' = { - table2Version = 212 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'p25.212' = { - table2Version = 212 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'p26.212' = { - table2Version = 212 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'p27.212' = { - table2Version = 212 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'p28.212' = { - table2Version = 212 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'p29.212' = { - table2Version = 212 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'p30.212' = { - table2Version = 212 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'p31.212' = { - table2Version = 212 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'p32.212' = { - table2Version = 212 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'p33.212' = { - table2Version = 212 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'p34.212' = { - table2Version = 212 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'p35.212' = { - table2Version = 212 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'p36.212' = { - table2Version = 212 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'p37.212' = { - table2Version = 212 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'p38.212' = { - table2Version = 212 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'p39.212' = { - table2Version = 212 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'p40.212' = { - table2Version = 212 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'p41.212' = { - table2Version = 212 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'p42.212' = { - table2Version = 212 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'p43.212' = { - table2Version = 212 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'p44.212' = { - table2Version = 212 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'p45.212' = { - table2Version = 212 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'p46.212' = { - table2Version = 212 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'p47.212' = { - table2Version = 212 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'p48.212' = { - table2Version = 212 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'p49.212' = { - table2Version = 212 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'p50.212' = { - table2Version = 212 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'p51.212' = { - table2Version = 212 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'p52.212' = { - table2Version = 212 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'p53.212' = { - table2Version = 212 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'p54.212' = { - table2Version = 212 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'p55.212' = { - table2Version = 212 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'p56.212' = { - table2Version = 212 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'p57.212' = { - table2Version = 212 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'p58.212' = { - table2Version = 212 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'p59.212' = { - table2Version = 212 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'p60.212' = { - table2Version = 212 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'p61.212' = { - table2Version = 212 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'p62.212' = { - table2Version = 212 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'p63.212' = { - table2Version = 212 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'p64.212' = { - table2Version = 212 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'p65.212' = { - table2Version = 212 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'p66.212' = { - table2Version = 212 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'p67.212' = { - table2Version = 212 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'p68.212' = { - table2Version = 212 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'p69.212' = { - table2Version = 212 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'p70.212' = { - table2Version = 212 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'p71.212' = { - table2Version = 212 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'p72.212' = { - table2Version = 212 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'p73.212' = { - table2Version = 212 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'p74.212' = { - table2Version = 212 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'p75.212' = { - table2Version = 212 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'p76.212' = { - table2Version = 212 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'p77.212' = { - table2Version = 212 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'p78.212' = { - table2Version = 212 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'p79.212' = { - table2Version = 212 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'p80.212' = { - table2Version = 212 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'p81.212' = { - table2Version = 212 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'p82.212' = { - table2Version = 212 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'p83.212' = { - table2Version = 212 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'p84.212' = { - table2Version = 212 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'p85.212' = { - table2Version = 212 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'p86.212' = { - table2Version = 212 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'p87.212' = { - table2Version = 212 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'p88.212' = { - table2Version = 212 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'p89.212' = { - table2Version = 212 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'p90.212' = { - table2Version = 212 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'p91.212' = { - table2Version = 212 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'p92.212' = { - table2Version = 212 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'p93.212' = { - table2Version = 212 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'p94.212' = { - table2Version = 212 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'p95.212' = { - table2Version = 212 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'p96.212' = { - table2Version = 212 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'p97.212' = { - table2Version = 212 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'p98.212' = { - table2Version = 212 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'p99.212' = { - table2Version = 212 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'p100.212' = { - table2Version = 212 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'p101.212' = { - table2Version = 212 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'p102.212' = { - table2Version = 212 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'p103.212' = { - table2Version = 212 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'p104.212' = { - table2Version = 212 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'p105.212' = { - table2Version = 212 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'p106.212' = { - table2Version = 212 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'p107.212' = { - table2Version = 212 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'p108.212' = { - table2Version = 212 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'p109.212' = { - table2Version = 212 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'p110.212' = { - table2Version = 212 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'p111.212' = { - table2Version = 212 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'p112.212' = { - table2Version = 212 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'p113.212' = { - table2Version = 212 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'p114.212' = { - table2Version = 212 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'p115.212' = { - table2Version = 212 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'p116.212' = { - table2Version = 212 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'p117.212' = { - table2Version = 212 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'p118.212' = { - table2Version = 212 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'p119.212' = { - table2Version = 212 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'p120.212' = { - table2Version = 212 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'p121.212' = { - table2Version = 212 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'p122.212' = { - table2Version = 212 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'p123.212' = { - table2Version = 212 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'p124.212' = { - table2Version = 212 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'p125.212' = { - table2Version = 212 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'p126.212' = { - table2Version = 212 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'p127.212' = { - table2Version = 212 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'p128.212' = { - table2Version = 212 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'p129.212' = { - table2Version = 212 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'p130.212' = { - table2Version = 212 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'p131.212' = { - table2Version = 212 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'p132.212' = { - table2Version = 212 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'p133.212' = { - table2Version = 212 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'p134.212' = { - table2Version = 212 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'p135.212' = { - table2Version = 212 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'p136.212' = { - table2Version = 212 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'p137.212' = { - table2Version = 212 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'p138.212' = { - table2Version = 212 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'p139.212' = { - table2Version = 212 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'p140.212' = { - table2Version = 212 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'p141.212' = { - table2Version = 212 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'p142.212' = { - table2Version = 212 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'p143.212' = { - table2Version = 212 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'p144.212' = { - table2Version = 212 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'p145.212' = { - table2Version = 212 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'p146.212' = { - table2Version = 212 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'p147.212' = { - table2Version = 212 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'p148.212' = { - table2Version = 212 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'p149.212' = { - table2Version = 212 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'p150.212' = { - table2Version = 212 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'p151.212' = { - table2Version = 212 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'p152.212' = { - table2Version = 212 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'p153.212' = { - table2Version = 212 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'p154.212' = { - table2Version = 212 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'p155.212' = { - table2Version = 212 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'p156.212' = { - table2Version = 212 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'p157.212' = { - table2Version = 212 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'p158.212' = { - table2Version = 212 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'p159.212' = { - table2Version = 212 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'p160.212' = { - table2Version = 212 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'p161.212' = { - table2Version = 212 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'p162.212' = { - table2Version = 212 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'p163.212' = { - table2Version = 212 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'p164.212' = { - table2Version = 212 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'p165.212' = { - table2Version = 212 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'p166.212' = { - table2Version = 212 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'p167.212' = { - table2Version = 212 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'p168.212' = { - table2Version = 212 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'p169.212' = { - table2Version = 212 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'p170.212' = { - table2Version = 212 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'p171.212' = { - table2Version = 212 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'p172.212' = { - table2Version = 212 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'p173.212' = { - table2Version = 212 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'p174.212' = { - table2Version = 212 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'p175.212' = { - table2Version = 212 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'p176.212' = { - table2Version = 212 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'p177.212' = { - table2Version = 212 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'p178.212' = { - table2Version = 212 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'p179.212' = { - table2Version = 212 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'p180.212' = { - table2Version = 212 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'p181.212' = { - table2Version = 212 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'p182.212' = { - table2Version = 212 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'p183.212' = { - table2Version = 212 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'p184.212' = { - table2Version = 212 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'p185.212' = { - table2Version = 212 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'p186.212' = { - table2Version = 212 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'p187.212' = { - table2Version = 212 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'p188.212' = { - table2Version = 212 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'p189.212' = { - table2Version = 212 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'p190.212' = { - table2Version = 212 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'p191.212' = { - table2Version = 212 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'p192.212' = { - table2Version = 212 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'p193.212' = { - table2Version = 212 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'p194.212' = { - table2Version = 212 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'p195.212' = { - table2Version = 212 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'p196.212' = { - table2Version = 212 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'p197.212' = { - table2Version = 212 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'p198.212' = { - table2Version = 212 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'p199.212' = { - table2Version = 212 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'p200.212' = { - table2Version = 212 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'p201.212' = { - table2Version = 212 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'p202.212' = { - table2Version = 212 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'p203.212' = { - table2Version = 212 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'p204.212' = { - table2Version = 212 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'p205.212' = { - table2Version = 212 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'p206.212' = { - table2Version = 212 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'p207.212' = { - table2Version = 212 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'p208.212' = { - table2Version = 212 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'p209.212' = { - table2Version = 212 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'p210.212' = { - table2Version = 212 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'p211.212' = { - table2Version = 212 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'p212.212' = { - table2Version = 212 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'p213.212' = { - table2Version = 212 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'p214.212' = { - table2Version = 212 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'p215.212' = { - table2Version = 212 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'p216.212' = { - table2Version = 212 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'p217.212' = { - table2Version = 212 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'p218.212' = { - table2Version = 212 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'p219.212' = { - table2Version = 212 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'p220.212' = { - table2Version = 212 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'p221.212' = { - table2Version = 212 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'p222.212' = { - table2Version = 212 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'p223.212' = { - table2Version = 212 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'p224.212' = { - table2Version = 212 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'p225.212' = { - table2Version = 212 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'p226.212' = { - table2Version = 212 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'p227.212' = { - table2Version = 212 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'p228.212' = { - table2Version = 212 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'p229.212' = { - table2Version = 212 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'p230.212' = { - table2Version = 212 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'p231.212' = { - table2Version = 212 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'p232.212' = { - table2Version = 212 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'p233.212' = { - table2Version = 212 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'p234.212' = { - table2Version = 212 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'p235.212' = { - table2Version = 212 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'p236.212' = { - table2Version = 212 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'p237.212' = { - table2Version = 212 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'p238.212' = { - table2Version = 212 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'p239.212' = { - table2Version = 212 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'p240.212' = { - table2Version = 212 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'p241.212' = { - table2Version = 212 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'p242.212' = { - table2Version = 212 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'p243.212' = { - table2Version = 212 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'p244.212' = { - table2Version = 212 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'p245.212' = { - table2Version = 212 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'p246.212' = { - table2Version = 212 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'p247.212' = { - table2Version = 212 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'p248.212' = { - table2Version = 212 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'p249.212' = { - table2Version = 212 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'p250.212' = { - table2Version = 212 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'p251.212' = { - table2Version = 212 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'p252.212' = { - table2Version = 212 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'p253.212' = { - table2Version = 212 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'p254.212' = { - table2Version = 212 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'p255.212' = { - table2Version = 212 ; - indicatorOfParameter = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - table2Version = 213 ; - indicatorOfParameter = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - table2Version = 213 ; - indicatorOfParameter = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - table2Version = 213 ; - indicatorOfParameter = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - table2Version = 213 ; - indicatorOfParameter = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - table2Version = 213 ; - indicatorOfParameter = 5 ; - } -#Random pattern 1 for SPP scheme -'spp1' = { - table2Version = 213 ; - indicatorOfParameter = 101 ; - } -#Random pattern 2 for SPP scheme -'spp2' = { - table2Version = 213 ; - indicatorOfParameter = 102 ; - } -#Random pattern 3 for SPP scheme -'spp3' = { - table2Version = 213 ; - indicatorOfParameter = 103 ; - } -#Random pattern 4 for SPP scheme -'spp4' = { - table2Version = 213 ; - indicatorOfParameter = 104 ; - } -#Random pattern 5 for SPP scheme -'spp5' = { - table2Version = 213 ; - indicatorOfParameter = 105 ; - } -#Random pattern 6 for SPP scheme -'spp6' = { - table2Version = 213 ; - indicatorOfParameter = 106 ; - } -#Random pattern 7 for SPP scheme -'spp7' = { - table2Version = 213 ; - indicatorOfParameter = 107 ; - } -#Random pattern 8 for SPP scheme -'spp8' = { - table2Version = 213 ; - indicatorOfParameter = 108 ; - } -#Random pattern 9 for SPP scheme -'spp9' = { - table2Version = 213 ; - indicatorOfParameter = 109 ; - } -#Random pattern 10 for SPP scheme -'spp10' = { - table2Version = 213 ; - indicatorOfParameter = 110 ; - } -#Random pattern 11 for SPP scheme -'spp11' = { - table2Version = 213 ; - indicatorOfParameter = 111 ; - } -#Random pattern 12 for SPP scheme -'spp12' = { - table2Version = 213 ; - indicatorOfParameter = 112 ; - } -#Random pattern 13 for SPP scheme -'spp13' = { - table2Version = 213 ; - indicatorOfParameter = 113 ; - } -#Random pattern 14 for SPP scheme -'spp14' = { - table2Version = 213 ; - indicatorOfParameter = 114 ; - } -#Random pattern 15 for SPP scheme -'spp15' = { - table2Version = 213 ; - indicatorOfParameter = 115 ; - } -#Random pattern 16 for SPP scheme -'spp16' = { - table2Version = 213 ; - indicatorOfParameter = 116 ; - } -#Random pattern 17 for SPP scheme -'spp17' = { - table2Version = 213 ; - indicatorOfParameter = 117 ; - } -#Random pattern 18 for SPP scheme -'spp18' = { - table2Version = 213 ; - indicatorOfParameter = 118 ; - } -#Random pattern 19 for SPP scheme -'spp19' = { - table2Version = 213 ; - indicatorOfParameter = 119 ; - } -#Random pattern 20 for SPP scheme -'spp20' = { - table2Version = 213 ; - indicatorOfParameter = 120 ; - } -#Random pattern 21 for SPP scheme -'spp21' = { - table2Version = 213 ; - indicatorOfParameter = 121 ; - } -#Random pattern 22 for SPP scheme -'spp22' = { - table2Version = 213 ; - indicatorOfParameter = 122 ; - } -#Random pattern 23 for SPP scheme -'spp23' = { - table2Version = 213 ; - indicatorOfParameter = 123 ; - } -#Random pattern 24 for SPP scheme -'spp24' = { - table2Version = 213 ; - indicatorOfParameter = 124 ; - } -#Random pattern 25 for SPP scheme -'spp25' = { - table2Version = 213 ; - indicatorOfParameter = 125 ; - } -#Random pattern 26 for SPP scheme -'spp26' = { - table2Version = 213 ; - indicatorOfParameter = 126 ; - } -#Random pattern 27 for SPP scheme -'spp27' = { - table2Version = 213 ; - indicatorOfParameter = 127 ; - } -#Random pattern 28 for SPP scheme -'spp28' = { - table2Version = 213 ; - indicatorOfParameter = 128 ; - } -#Random pattern 29 for SPP scheme -'spp29' = { - table2Version = 213 ; - indicatorOfParameter = 129 ; - } -#Random pattern 30 for SPP scheme -'spp30' = { - table2Version = 213 ; - indicatorOfParameter = 130 ; - } -#Random pattern 31 for SPP scheme -'spp31' = { - table2Version = 213 ; - indicatorOfParameter = 131 ; - } -#Random pattern 32 for SPP scheme -'spp32' = { - table2Version = 213 ; - indicatorOfParameter = 132 ; - } -#Random pattern 33 for SPP scheme -'spp33' = { - table2Version = 213 ; - indicatorOfParameter = 133 ; - } -#Random pattern 34 for SPP scheme -'spp34' = { - table2Version = 213 ; - indicatorOfParameter = 134 ; - } -#Random pattern 35 for SPP scheme -'spp35' = { - table2Version = 213 ; - indicatorOfParameter = 135 ; - } -#Random pattern 36 for SPP scheme -'spp36' = { - table2Version = 213 ; - indicatorOfParameter = 136 ; - } -#Random pattern 37 for SPP scheme -'spp37' = { - table2Version = 213 ; - indicatorOfParameter = 137 ; - } -#Random pattern 38 for SPP scheme -'spp38' = { - table2Version = 213 ; - indicatorOfParameter = 138 ; - } -#Random pattern 39 for SPP scheme -'spp39' = { - table2Version = 213 ; - indicatorOfParameter = 139 ; - } -#Random pattern 40 for SPP scheme -'spp40' = { - table2Version = 213 ; - indicatorOfParameter = 140 ; - } -#Random pattern 41 for SPP scheme -'spp41' = { - table2Version = 213 ; - indicatorOfParameter = 141 ; - } -#Random pattern 42 for SPP scheme -'spp42' = { - table2Version = 213 ; - indicatorOfParameter = 142 ; - } -#Random pattern 43 for SPP scheme -'spp43' = { - table2Version = 213 ; - indicatorOfParameter = 143 ; - } -#Random pattern 44 for SPP scheme -'spp44' = { - table2Version = 213 ; - indicatorOfParameter = 144 ; - } -#Random pattern 45 for SPP scheme -'spp45' = { - table2Version = 213 ; - indicatorOfParameter = 145 ; - } -#Random pattern 46 for SPP scheme -'spp46' = { - table2Version = 213 ; - indicatorOfParameter = 146 ; - } -#Random pattern 47 for SPP scheme -'spp47' = { - table2Version = 213 ; - indicatorOfParameter = 147 ; - } -#Random pattern 48 for SPP scheme -'spp48' = { - table2Version = 213 ; - indicatorOfParameter = 148 ; - } -#Random pattern 49 for SPP scheme -'spp49' = { - table2Version = 213 ; - indicatorOfParameter = 149 ; - } -#Random pattern 50 for SPP scheme -'spp50' = { - table2Version = 213 ; - indicatorOfParameter = 150 ; - } -#Cosine of solar zenith angle -'uvcossza' = { - table2Version = 214 ; - indicatorOfParameter = 1 ; - } -#UV biologically effective dose -'uvbed' = { - table2Version = 214 ; - indicatorOfParameter = 2 ; - } -#UV biologically effective dose clear-sky -'uvbedcs' = { - table2Version = 214 ; - indicatorOfParameter = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - table2Version = 214 ; - indicatorOfParameter = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - table2Version = 214 ; - indicatorOfParameter = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - table2Version = 214 ; - indicatorOfParameter = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - table2Version = 214 ; - indicatorOfParameter = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - table2Version = 214 ; - indicatorOfParameter = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - table2Version = 214 ; - indicatorOfParameter = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - table2Version = 214 ; - indicatorOfParameter = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - table2Version = 214 ; - indicatorOfParameter = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - table2Version = 214 ; - indicatorOfParameter = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - table2Version = 214 ; - indicatorOfParameter = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - table2Version = 214 ; - indicatorOfParameter = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - table2Version = 214 ; - indicatorOfParameter = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - table2Version = 214 ; - indicatorOfParameter = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - table2Version = 214 ; - indicatorOfParameter = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - table2Version = 214 ; - indicatorOfParameter = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - table2Version = 214 ; - indicatorOfParameter = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - table2Version = 214 ; - indicatorOfParameter = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - table2Version = 214 ; - indicatorOfParameter = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - table2Version = 214 ; - indicatorOfParameter = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - table2Version = 214 ; - indicatorOfParameter = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - table2Version = 214 ; - indicatorOfParameter = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - table2Version = 214 ; - indicatorOfParameter = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - table2Version = 214 ; - indicatorOfParameter = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - table2Version = 214 ; - indicatorOfParameter = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - table2Version = 214 ; - indicatorOfParameter = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - table2Version = 214 ; - indicatorOfParameter = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - table2Version = 214 ; - indicatorOfParameter = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - table2Version = 214 ; - indicatorOfParameter = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - table2Version = 214 ; - indicatorOfParameter = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - table2Version = 214 ; - indicatorOfParameter = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - table2Version = 214 ; - indicatorOfParameter = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - table2Version = 214 ; - indicatorOfParameter = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - table2Version = 214 ; - indicatorOfParameter = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - table2Version = 214 ; - indicatorOfParameter = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - table2Version = 214 ; - indicatorOfParameter = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - table2Version = 214 ; - indicatorOfParameter = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - table2Version = 214 ; - indicatorOfParameter = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - table2Version = 214 ; - indicatorOfParameter = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - table2Version = 214 ; - indicatorOfParameter = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - table2Version = 214 ; - indicatorOfParameter = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - table2Version = 214 ; - indicatorOfParameter = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - table2Version = 214 ; - indicatorOfParameter = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - table2Version = 214 ; - indicatorOfParameter = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - table2Version = 214 ; - indicatorOfParameter = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - table2Version = 214 ; - indicatorOfParameter = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - table2Version = 214 ; - indicatorOfParameter = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - table2Version = 214 ; - indicatorOfParameter = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - table2Version = 214 ; - indicatorOfParameter = 51 ; - } -#Profile of optical thickness at 340 nm -'aot340' = { - table2Version = 214 ; - indicatorOfParameter = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - table2Version = 215 ; - indicatorOfParameter = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - table2Version = 215 ; - indicatorOfParameter = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - table2Version = 215 ; - indicatorOfParameter = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - table2Version = 215 ; - indicatorOfParameter = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - table2Version = 215 ; - indicatorOfParameter = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - table2Version = 215 ; - indicatorOfParameter = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - table2Version = 215 ; - indicatorOfParameter = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - table2Version = 215 ; - indicatorOfParameter = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - table2Version = 215 ; - indicatorOfParameter = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - table2Version = 215 ; - indicatorOfParameter = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - table2Version = 215 ; - indicatorOfParameter = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - table2Version = 215 ; - indicatorOfParameter = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - table2Version = 215 ; - indicatorOfParameter = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - table2Version = 215 ; - indicatorOfParameter = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - table2Version = 215 ; - indicatorOfParameter = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - table2Version = 215 ; - indicatorOfParameter = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - table2Version = 215 ; - indicatorOfParameter = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - table2Version = 215 ; - indicatorOfParameter = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - table2Version = 215 ; - indicatorOfParameter = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - table2Version = 215 ; - indicatorOfParameter = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - table2Version = 215 ; - indicatorOfParameter = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - table2Version = 215 ; - indicatorOfParameter = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - table2Version = 215 ; - indicatorOfParameter = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - table2Version = 215 ; - indicatorOfParameter = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - table2Version = 215 ; - indicatorOfParameter = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - table2Version = 215 ; - indicatorOfParameter = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - table2Version = 215 ; - indicatorOfParameter = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - table2Version = 215 ; - indicatorOfParameter = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - table2Version = 215 ; - indicatorOfParameter = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - table2Version = 215 ; - indicatorOfParameter = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - table2Version = 215 ; - indicatorOfParameter = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - table2Version = 215 ; - indicatorOfParameter = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - table2Version = 215 ; - indicatorOfParameter = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - table2Version = 215 ; - indicatorOfParameter = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - table2Version = 215 ; - indicatorOfParameter = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - table2Version = 215 ; - indicatorOfParameter = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - table2Version = 215 ; - indicatorOfParameter = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - table2Version = 215 ; - indicatorOfParameter = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - table2Version = 215 ; - indicatorOfParameter = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - table2Version = 215 ; - indicatorOfParameter = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - table2Version = 215 ; - indicatorOfParameter = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - table2Version = 215 ; - indicatorOfParameter = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - table2Version = 215 ; - indicatorOfParameter = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - table2Version = 215 ; - indicatorOfParameter = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - table2Version = 215 ; - indicatorOfParameter = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - table2Version = 215 ; - indicatorOfParameter = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - table2Version = 215 ; - indicatorOfParameter = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - table2Version = 215 ; - indicatorOfParameter = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 80 ; - } -#Source/gain of sulphate aerosol -'aersrcsu' = { - table2Version = 215 ; - indicatorOfParameter = 81 ; - } -#Dry deposition of sulphate aerosol -'aerddpsu' = { - table2Version = 215 ; - indicatorOfParameter = 82 ; - } -#Sedimentation of sulphate aerosol -'aersdmsu' = { - table2Version = 215 ; - indicatorOfParameter = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - table2Version = 215 ; - indicatorOfParameter = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - table2Version = 215 ; - indicatorOfParameter = 85 ; - } -#Negative fixer of sulphate aerosol -'aerngtsu' = { - table2Version = 215 ; - indicatorOfParameter = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'aermsssu' = { - table2Version = 215 ; - indicatorOfParameter = 87 ; - } -#Sulphate aerosol optical depth -'aerodsu' = { - table2Version = 215 ; - indicatorOfParameter = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - table2Version = 215 ; - indicatorOfParameter = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - table2Version = 215 ; - indicatorOfParameter = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - table2Version = 215 ; - indicatorOfParameter = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - table2Version = 215 ; - indicatorOfParameter = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - table2Version = 215 ; - indicatorOfParameter = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - table2Version = 215 ; - indicatorOfParameter = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - table2Version = 215 ; - indicatorOfParameter = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - table2Version = 215 ; - indicatorOfParameter = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - table2Version = 215 ; - indicatorOfParameter = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - table2Version = 215 ; - indicatorOfParameter = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - table2Version = 215 ; - indicatorOfParameter = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - table2Version = 215 ; - indicatorOfParameter = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - table2Version = 215 ; - indicatorOfParameter = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - table2Version = 215 ; - indicatorOfParameter = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - table2Version = 215 ; - indicatorOfParameter = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - table2Version = 215 ; - indicatorOfParameter = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - table2Version = 215 ; - indicatorOfParameter = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - table2Version = 215 ; - indicatorOfParameter = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - table2Version = 215 ; - indicatorOfParameter = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - table2Version = 215 ; - indicatorOfParameter = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - table2Version = 215 ; - indicatorOfParameter = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - table2Version = 215 ; - indicatorOfParameter = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - table2Version = 215 ; - indicatorOfParameter = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - table2Version = 215 ; - indicatorOfParameter = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - table2Version = 215 ; - indicatorOfParameter = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - table2Version = 215 ; - indicatorOfParameter = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - table2Version = 215 ; - indicatorOfParameter = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - table2Version = 215 ; - indicatorOfParameter = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - table2Version = 215 ; - indicatorOfParameter = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - table2Version = 215 ; - indicatorOfParameter = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - table2Version = 215 ; - indicatorOfParameter = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - table2Version = 215 ; - indicatorOfParameter = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - table2Version = 215 ; - indicatorOfParameter = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - table2Version = 215 ; - indicatorOfParameter = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - table2Version = 215 ; - indicatorOfParameter = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - table2Version = 215 ; - indicatorOfParameter = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - table2Version = 215 ; - indicatorOfParameter = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - table2Version = 215 ; - indicatorOfParameter = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - table2Version = 215 ; - indicatorOfParameter = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - table2Version = 215 ; - indicatorOfParameter = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - table2Version = 215 ; - indicatorOfParameter = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - table2Version = 215 ; - indicatorOfParameter = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - table2Version = 215 ; - indicatorOfParameter = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - table2Version = 215 ; - indicatorOfParameter = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - table2Version = 215 ; - indicatorOfParameter = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - table2Version = 215 ; - indicatorOfParameter = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - table2Version = 215 ; - indicatorOfParameter = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - table2Version = 215 ; - indicatorOfParameter = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - table2Version = 215 ; - indicatorOfParameter = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - table2Version = 215 ; - indicatorOfParameter = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - table2Version = 215 ; - indicatorOfParameter = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - table2Version = 215 ; - indicatorOfParameter = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - table2Version = 215 ; - indicatorOfParameter = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - table2Version = 215 ; - indicatorOfParameter = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - table2Version = 215 ; - indicatorOfParameter = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - table2Version = 215 ; - indicatorOfParameter = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - table2Version = 215 ; - indicatorOfParameter = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - table2Version = 215 ; - indicatorOfParameter = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - table2Version = 215 ; - indicatorOfParameter = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - table2Version = 215 ; - indicatorOfParameter = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - table2Version = 215 ; - indicatorOfParameter = 149 ; - } -#Asymmetry factor at 340 nm -'asymmetry340' = { - table2Version = 215 ; - indicatorOfParameter = 150 ; - } -#Asymmetry factor at 355 nm -'asymmetry355' = { - table2Version = 215 ; - indicatorOfParameter = 151 ; - } -#Asymmetry factor at 380 nm -'asymmetry380' = { - table2Version = 215 ; - indicatorOfParameter = 152 ; - } -#Asymmetry factor at 400 nm -'asymmetry400' = { - table2Version = 215 ; - indicatorOfParameter = 153 ; - } -#Asymmetry factor at 440 nm -'asymmetry440' = { - table2Version = 215 ; - indicatorOfParameter = 154 ; - } -#Asymmetry factor at 469 nm -'asymmetry469' = { - table2Version = 215 ; - indicatorOfParameter = 155 ; - } -#Asymmetry factor at 500 nm -'asymmetry500' = { - table2Version = 215 ; - indicatorOfParameter = 156 ; - } -#Asymmetry factor at 532 nm -'asymmetry532' = { - table2Version = 215 ; - indicatorOfParameter = 157 ; - } -#Asymmetry factor at 550 nm -'asymmetry550' = { - table2Version = 215 ; - indicatorOfParameter = 158 ; - } -#Asymmetry factor at 645 nm -'asymmetry645' = { - table2Version = 215 ; - indicatorOfParameter = 159 ; - } -#Asymmetry factor at 670 nm -'asymmetry670' = { - table2Version = 215 ; - indicatorOfParameter = 160 ; - } -#Asymmetry factor at 800 nm -'asymmetry800' = { - table2Version = 215 ; - indicatorOfParameter = 161 ; - } -#Asymmetry factor at 858 nm -'asymmetry858' = { - table2Version = 215 ; - indicatorOfParameter = 162 ; - } -#Asymmetry factor at 865 nm -'asymmetry865' = { - table2Version = 215 ; - indicatorOfParameter = 163 ; - } -#Asymmetry factor at 1020 nm -'asymmetry1020' = { - table2Version = 215 ; - indicatorOfParameter = 164 ; - } -#Asymmetry factor at 1064 nm -'asymmetry1064' = { - table2Version = 215 ; - indicatorOfParameter = 165 ; - } -#Asymmetry factor at 1240 nm -'asymmetry1240' = { - table2Version = 215 ; - indicatorOfParameter = 166 ; - } -#Asymmetry factor at 1640 nm -'asymmetry1640' = { - table2Version = 215 ; - indicatorOfParameter = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - table2Version = 215 ; - indicatorOfParameter = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - table2Version = 215 ; - indicatorOfParameter = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - table2Version = 215 ; - indicatorOfParameter = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - table2Version = 215 ; - indicatorOfParameter = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - table2Version = 215 ; - indicatorOfParameter = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - table2Version = 215 ; - indicatorOfParameter = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - table2Version = 215 ; - indicatorOfParameter = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - table2Version = 215 ; - indicatorOfParameter = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - table2Version = 215 ; - indicatorOfParameter = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - table2Version = 215 ; - indicatorOfParameter = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - table2Version = 215 ; - indicatorOfParameter = 178 ; - } -#Asymmetry factor at 2130 nm -'asymmetry2130' = { - table2Version = 215 ; - indicatorOfParameter = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - table2Version = 215 ; - indicatorOfParameter = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - table2Version = 215 ; - indicatorOfParameter = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - table2Version = 215 ; - indicatorOfParameter = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - table2Version = 215 ; - indicatorOfParameter = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - table2Version = 215 ; - indicatorOfParameter = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - table2Version = 215 ; - indicatorOfParameter = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - table2Version = 215 ; - indicatorOfParameter = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - table2Version = 215 ; - indicatorOfParameter = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - table2Version = 215 ; - indicatorOfParameter = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'aersrcnif' = { - table2Version = 215 ; - indicatorOfParameter = 189 ; - } -#Source/gain of coarse-mode nitrate aerosol -'aersrcnic' = { - table2Version = 215 ; - indicatorOfParameter = 190 ; - } -#Dry deposition of fine-mode nitrate aerosol -'aerddpnif' = { - table2Version = 215 ; - indicatorOfParameter = 191 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'aerddpnic' = { - table2Version = 215 ; - indicatorOfParameter = 192 ; - } -#Sedimentation of fine-mode nitrate aerosol -'aersdmnif' = { - table2Version = 215 ; - indicatorOfParameter = 193 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'aersdmnic' = { - table2Version = 215 ; - indicatorOfParameter = 194 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'aerwdlnif' = { - table2Version = 215 ; - indicatorOfParameter = 195 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'aerwdlnic' = { - table2Version = 215 ; - indicatorOfParameter = 196 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'aerwdcnif' = { - table2Version = 215 ; - indicatorOfParameter = 197 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'aerwdcnic' = { - table2Version = 215 ; - indicatorOfParameter = 198 ; - } -#Negative fixer of fine-mode nitrate aerosol -'aerngtnif' = { - table2Version = 215 ; - indicatorOfParameter = 199 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'aerngtnic' = { - table2Version = 215 ; - indicatorOfParameter = 200 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'aermssnif' = { - table2Version = 215 ; - indicatorOfParameter = 201 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'aermssnic' = { - table2Version = 215 ; - indicatorOfParameter = 202 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'aerodnif' = { - table2Version = 215 ; - indicatorOfParameter = 203 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'aerodnic' = { - table2Version = 215 ; - indicatorOfParameter = 204 ; - } -#Source/gain of ammonium aerosol -'aersrcam' = { - table2Version = 215 ; - indicatorOfParameter = 205 ; - } -#Dry deposition of ammonium aerosol -'aerddpam' = { - table2Version = 215 ; - indicatorOfParameter = 206 ; - } -#Sedimentation of ammonium aerosol -'aersdmam' = { - table2Version = 215 ; - indicatorOfParameter = 207 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'aerwdlam' = { - table2Version = 215 ; - indicatorOfParameter = 208 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'aerwdcam' = { - table2Version = 215 ; - indicatorOfParameter = 209 ; - } -#Negative fixer of ammonium aerosol -'aerngtam' = { - table2Version = 215 ; - indicatorOfParameter = 210 ; - } -#Vertically integrated mass of ammonium aerosol -'aermssam' = { - table2Version = 215 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'p1.216' = { - table2Version = 216 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'p2.216' = { - table2Version = 216 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'p3.216' = { - table2Version = 216 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'p4.216' = { - table2Version = 216 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'p5.216' = { - table2Version = 216 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'p6.216' = { - table2Version = 216 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'p7.216' = { - table2Version = 216 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'p8.216' = { - table2Version = 216 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'p9.216' = { - table2Version = 216 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'p10.216' = { - table2Version = 216 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'p11.216' = { - table2Version = 216 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'p12.216' = { - table2Version = 216 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'p13.216' = { - table2Version = 216 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'p14.216' = { - table2Version = 216 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'p15.216' = { - table2Version = 216 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'p16.216' = { - table2Version = 216 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'p17.216' = { - table2Version = 216 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'p18.216' = { - table2Version = 216 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'p19.216' = { - table2Version = 216 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'p20.216' = { - table2Version = 216 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'p21.216' = { - table2Version = 216 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'p22.216' = { - table2Version = 216 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'p23.216' = { - table2Version = 216 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'p24.216' = { - table2Version = 216 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'p25.216' = { - table2Version = 216 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'p26.216' = { - table2Version = 216 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'p27.216' = { - table2Version = 216 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'p28.216' = { - table2Version = 216 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'p29.216' = { - table2Version = 216 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'p30.216' = { - table2Version = 216 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'p31.216' = { - table2Version = 216 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'p32.216' = { - table2Version = 216 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'p33.216' = { - table2Version = 216 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'p34.216' = { - table2Version = 216 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'p35.216' = { - table2Version = 216 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'p36.216' = { - table2Version = 216 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'p37.216' = { - table2Version = 216 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'p38.216' = { - table2Version = 216 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'p39.216' = { - table2Version = 216 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'p40.216' = { - table2Version = 216 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'p41.216' = { - table2Version = 216 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'p42.216' = { - table2Version = 216 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'p43.216' = { - table2Version = 216 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'p44.216' = { - table2Version = 216 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'p45.216' = { - table2Version = 216 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'p46.216' = { - table2Version = 216 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'p47.216' = { - table2Version = 216 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'p48.216' = { - table2Version = 216 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'p49.216' = { - table2Version = 216 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'p50.216' = { - table2Version = 216 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'p51.216' = { - table2Version = 216 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'p52.216' = { - table2Version = 216 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'p53.216' = { - table2Version = 216 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'p54.216' = { - table2Version = 216 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'p55.216' = { - table2Version = 216 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'p56.216' = { - table2Version = 216 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'p57.216' = { - table2Version = 216 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'p58.216' = { - table2Version = 216 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'p59.216' = { - table2Version = 216 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'p60.216' = { - table2Version = 216 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'p61.216' = { - table2Version = 216 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'p62.216' = { - table2Version = 216 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'p63.216' = { - table2Version = 216 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'p64.216' = { - table2Version = 216 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'p65.216' = { - table2Version = 216 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'p66.216' = { - table2Version = 216 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'p67.216' = { - table2Version = 216 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'p68.216' = { - table2Version = 216 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'p69.216' = { - table2Version = 216 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'p70.216' = { - table2Version = 216 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'p71.216' = { - table2Version = 216 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'p72.216' = { - table2Version = 216 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'p73.216' = { - table2Version = 216 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'p74.216' = { - table2Version = 216 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'p75.216' = { - table2Version = 216 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'p76.216' = { - table2Version = 216 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'p77.216' = { - table2Version = 216 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'p78.216' = { - table2Version = 216 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'p79.216' = { - table2Version = 216 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'p80.216' = { - table2Version = 216 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'p81.216' = { - table2Version = 216 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'p82.216' = { - table2Version = 216 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'p83.216' = { - table2Version = 216 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'p84.216' = { - table2Version = 216 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'p85.216' = { - table2Version = 216 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'p86.216' = { - table2Version = 216 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'p87.216' = { - table2Version = 216 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'p88.216' = { - table2Version = 216 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'p89.216' = { - table2Version = 216 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'p90.216' = { - table2Version = 216 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'p91.216' = { - table2Version = 216 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'p92.216' = { - table2Version = 216 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'p93.216' = { - table2Version = 216 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'p94.216' = { - table2Version = 216 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'p95.216' = { - table2Version = 216 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'p96.216' = { - table2Version = 216 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'p97.216' = { - table2Version = 216 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'p98.216' = { - table2Version = 216 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'p99.216' = { - table2Version = 216 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'p100.216' = { - table2Version = 216 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'p101.216' = { - table2Version = 216 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'p102.216' = { - table2Version = 216 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'p103.216' = { - table2Version = 216 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'p104.216' = { - table2Version = 216 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'p105.216' = { - table2Version = 216 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'p106.216' = { - table2Version = 216 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'p107.216' = { - table2Version = 216 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'p108.216' = { - table2Version = 216 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'p109.216' = { - table2Version = 216 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'p110.216' = { - table2Version = 216 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'p111.216' = { - table2Version = 216 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'p112.216' = { - table2Version = 216 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'p113.216' = { - table2Version = 216 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'p114.216' = { - table2Version = 216 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'p115.216' = { - table2Version = 216 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'p116.216' = { - table2Version = 216 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'p117.216' = { - table2Version = 216 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'p118.216' = { - table2Version = 216 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'p119.216' = { - table2Version = 216 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'p120.216' = { - table2Version = 216 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'p121.216' = { - table2Version = 216 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'p122.216' = { - table2Version = 216 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'p123.216' = { - table2Version = 216 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'p124.216' = { - table2Version = 216 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'p125.216' = { - table2Version = 216 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'p126.216' = { - table2Version = 216 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'p127.216' = { - table2Version = 216 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'p128.216' = { - table2Version = 216 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'p129.216' = { - table2Version = 216 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'p130.216' = { - table2Version = 216 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'p131.216' = { - table2Version = 216 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'p132.216' = { - table2Version = 216 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'p133.216' = { - table2Version = 216 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'p134.216' = { - table2Version = 216 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'p135.216' = { - table2Version = 216 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'p136.216' = { - table2Version = 216 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'p137.216' = { - table2Version = 216 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'p138.216' = { - table2Version = 216 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'p139.216' = { - table2Version = 216 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'p140.216' = { - table2Version = 216 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'p141.216' = { - table2Version = 216 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'p142.216' = { - table2Version = 216 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'p143.216' = { - table2Version = 216 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'p144.216' = { - table2Version = 216 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'p145.216' = { - table2Version = 216 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'p146.216' = { - table2Version = 216 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'p147.216' = { - table2Version = 216 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'p148.216' = { - table2Version = 216 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'p149.216' = { - table2Version = 216 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'p150.216' = { - table2Version = 216 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'p151.216' = { - table2Version = 216 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'p152.216' = { - table2Version = 216 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'p153.216' = { - table2Version = 216 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'p154.216' = { - table2Version = 216 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'p155.216' = { - table2Version = 216 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'p156.216' = { - table2Version = 216 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'p157.216' = { - table2Version = 216 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'p158.216' = { - table2Version = 216 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'p159.216' = { - table2Version = 216 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'p160.216' = { - table2Version = 216 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'p161.216' = { - table2Version = 216 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'p162.216' = { - table2Version = 216 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'p163.216' = { - table2Version = 216 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'p164.216' = { - table2Version = 216 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'p165.216' = { - table2Version = 216 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'p166.216' = { - table2Version = 216 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'p167.216' = { - table2Version = 216 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'p168.216' = { - table2Version = 216 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'p169.216' = { - table2Version = 216 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'p170.216' = { - table2Version = 216 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'p171.216' = { - table2Version = 216 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'p172.216' = { - table2Version = 216 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'p173.216' = { - table2Version = 216 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'p174.216' = { - table2Version = 216 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'p175.216' = { - table2Version = 216 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'p176.216' = { - table2Version = 216 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'p177.216' = { - table2Version = 216 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'p178.216' = { - table2Version = 216 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'p179.216' = { - table2Version = 216 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'p180.216' = { - table2Version = 216 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'p181.216' = { - table2Version = 216 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'p182.216' = { - table2Version = 216 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'p183.216' = { - table2Version = 216 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'p184.216' = { - table2Version = 216 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'p185.216' = { - table2Version = 216 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'p186.216' = { - table2Version = 216 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'p187.216' = { - table2Version = 216 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'p188.216' = { - table2Version = 216 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'p189.216' = { - table2Version = 216 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'p190.216' = { - table2Version = 216 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'p191.216' = { - table2Version = 216 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'p192.216' = { - table2Version = 216 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'p193.216' = { - table2Version = 216 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'p194.216' = { - table2Version = 216 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'p195.216' = { - table2Version = 216 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'p196.216' = { - table2Version = 216 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'p197.216' = { - table2Version = 216 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'p198.216' = { - table2Version = 216 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'p199.216' = { - table2Version = 216 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'p200.216' = { - table2Version = 216 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'p201.216' = { - table2Version = 216 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'p202.216' = { - table2Version = 216 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'p203.216' = { - table2Version = 216 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'p204.216' = { - table2Version = 216 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'p205.216' = { - table2Version = 216 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'p206.216' = { - table2Version = 216 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'p207.216' = { - table2Version = 216 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'p208.216' = { - table2Version = 216 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'p209.216' = { - table2Version = 216 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'p210.216' = { - table2Version = 216 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'p211.216' = { - table2Version = 216 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'p212.216' = { - table2Version = 216 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'p213.216' = { - table2Version = 216 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'p214.216' = { - table2Version = 216 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'p215.216' = { - table2Version = 216 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'p216.216' = { - table2Version = 216 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'p217.216' = { - table2Version = 216 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'p218.216' = { - table2Version = 216 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'p219.216' = { - table2Version = 216 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'p220.216' = { - table2Version = 216 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'p221.216' = { - table2Version = 216 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'p222.216' = { - table2Version = 216 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'p223.216' = { - table2Version = 216 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'p224.216' = { - table2Version = 216 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'p225.216' = { - table2Version = 216 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'p226.216' = { - table2Version = 216 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'p227.216' = { - table2Version = 216 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'p228.216' = { - table2Version = 216 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'p229.216' = { - table2Version = 216 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'p230.216' = { - table2Version = 216 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'p231.216' = { - table2Version = 216 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'p232.216' = { - table2Version = 216 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'p233.216' = { - table2Version = 216 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'p234.216' = { - table2Version = 216 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'p235.216' = { - table2Version = 216 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'p236.216' = { - table2Version = 216 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'p237.216' = { - table2Version = 216 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'p238.216' = { - table2Version = 216 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'p239.216' = { - table2Version = 216 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'p240.216' = { - table2Version = 216 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'p241.216' = { - table2Version = 216 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'p242.216' = { - table2Version = 216 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'p243.216' = { - table2Version = 216 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'p244.216' = { - table2Version = 216 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'p245.216' = { - table2Version = 216 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'p246.216' = { - table2Version = 216 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'p247.216' = { - table2Version = 216 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'p248.216' = { - table2Version = 216 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'p249.216' = { - table2Version = 216 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'p250.216' = { - table2Version = 216 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'p251.216' = { - table2Version = 216 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'p252.216' = { - table2Version = 216 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'p253.216' = { - table2Version = 216 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'p254.216' = { - table2Version = 216 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'p255.216' = { - table2Version = 216 ; - indicatorOfParameter = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'ch4_c' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'hno3' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - table2Version = 217 ; - indicatorOfParameter = 7 ; - } -#Paraffins -'par' = { - table2Version = 217 ; - indicatorOfParameter = 9 ; - } -#Ethene -'c2h4' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Olefins -'ole' = { - table2Version = 217 ; - indicatorOfParameter = 11 ; - } -#Aldehydes -'ald2' = { - table2Version = 217 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Peroxides -'rooh' = { - table2Version = 217 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates -'onit' = { - table2Version = 217 ; - indicatorOfParameter = 15 ; - } -#Isoprene -'c5h8' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'dms' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'nh3' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Sulfate -'so4' = { - table2Version = 217 ; - indicatorOfParameter = 20 ; - } -#Ammonium -'nh4' = { - table2Version = 217 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid -'msa' = { - table2Version = 217 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - table2Version = 217 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone -'o3s' = { - table2Version = 217 ; - indicatorOfParameter = 24 ; - } -#Lead -'pb' = { - table2Version = 217 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide -'no' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical -'ho2' = { - table2Version = 217 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - table2Version = 217 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical -'oh' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'no3' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid -'ho2no2' = { - table2Version = 217 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - table2Version = 217 ; - indicatorOfParameter = 35 ; - } -#Organic ethers -'ror' = { - table2Version = 217 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector -'rxpar' = { - table2Version = 217 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator -'xo2' = { - table2Version = 217 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - table2Version = 217 ; - indicatorOfParameter = 39 ; - } -#Amine -'nh2' = { - table2Version = 217 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud -'psc' = { - table2Version = 217 ; - indicatorOfParameter = 41 ; - } -#Methanol -'ch3oh' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'hcooh' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid -'mcooh' = { - table2Version = 217 ; - indicatorOfParameter = 44 ; - } -#Ethane -'c2h6' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'c2h5oh' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'c3h8' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'c3h6' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'c10h16' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK -'ispd' = { - table2Version = 217 ; - indicatorOfParameter = 50 ; - } -#Nitrate -'no3_a' = { - table2Version = 217 ; - indicatorOfParameter = 51 ; - } -#Acetone -'ch3coch3' = { - table2Version = 217 ; - indicatorOfParameter = 52 ; - } -#Acetone product -'aco2' = { - table2Version = 217 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - table2Version = 217 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 -'hypropo2' = { - table2Version = 217 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - table2Version = 217 ; - indicatorOfParameter = 56 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'tc_ch4' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - table2Version = 218 ; - indicatorOfParameter = 7 ; - } -#Total column paraffins -'tc_par' = { - table2Version = 218 ; - indicatorOfParameter = 9 ; - } -#Total column ethene -'tc_c2h4' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column olefins -'tc_ole' = { - table2Version = 218 ; - indicatorOfParameter = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - table2Version = 218 ; - indicatorOfParameter = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column peroxides -'tc_rooh' = { - table2Version = 218 ; - indicatorOfParameter = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - table2Version = 218 ; - indicatorOfParameter = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'tc_nh3' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'tc_so4' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column ammonium -'tc_nh4' = { - table2Version = 218 ; - indicatorOfParameter = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - table2Version = 218 ; - indicatorOfParameter = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - table2Version = 218 ; - indicatorOfParameter = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - table2Version = 218 ; - indicatorOfParameter = 24 ; - } -#Total column lead -'tc_pb' = { - table2Version = 218 ; - indicatorOfParameter = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - table2Version = 218 ; - indicatorOfParameter = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - table2Version = 218 ; - indicatorOfParameter = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - table2Version = 218 ; - indicatorOfParameter = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - table2Version = 218 ; - indicatorOfParameter = 35 ; - } -#Total column organic ethers -'tc_ror' = { - table2Version = 218 ; - indicatorOfParameter = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - table2Version = 218 ; - indicatorOfParameter = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - table2Version = 218 ; - indicatorOfParameter = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - table2Version = 218 ; - indicatorOfParameter = 39 ; - } -#Total column amine -'tc_nh2' = { - table2Version = 218 ; - indicatorOfParameter = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - table2Version = 218 ; - indicatorOfParameter = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - table2Version = 218 ; - indicatorOfParameter = 44 ; - } -#Total column ethane -'tc_c2h6' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'tc_c3h8' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'tc_c3h6' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - table2Version = 218 ; - indicatorOfParameter = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - table2Version = 218 ; - indicatorOfParameter = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - table2Version = 218 ; - indicatorOfParameter = 52 ; - } -#Total column acetone product -'tc_aco2' = { - table2Version = 218 ; - indicatorOfParameter = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - table2Version = 218 ; - indicatorOfParameter = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - table2Version = 218 ; - indicatorOfParameter = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - table2Version = 218 ; - indicatorOfParameter = 56 ; - } -#Ozone emissions -'e_go3' = { - table2Version = 219 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - table2Version = 219 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - table2Version = 219 ; - indicatorOfParameter = 3 ; - } -#Methane emissions -'e_ch4' = { - table2Version = 219 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - table2Version = 219 ; - indicatorOfParameter = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - table2Version = 219 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - table2Version = 219 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - table2Version = 219 ; - indicatorOfParameter = 8 ; - } -#Paraffins emissions -'e_par' = { - table2Version = 219 ; - indicatorOfParameter = 9 ; - } -#Ethene emissions -'e_c2h4' = { - table2Version = 219 ; - indicatorOfParameter = 10 ; - } -#Olefins emissions -'e_ole' = { - table2Version = 219 ; - indicatorOfParameter = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - table2Version = 219 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - table2Version = 219 ; - indicatorOfParameter = 13 ; - } -#Peroxides emissions -'e_rooh' = { - table2Version = 219 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - table2Version = 219 ; - indicatorOfParameter = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - table2Version = 219 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - table2Version = 219 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - table2Version = 219 ; - indicatorOfParameter = 18 ; - } -#Ammonia emissions -'e_nh3' = { - table2Version = 219 ; - indicatorOfParameter = 19 ; - } -#Sulfate emissions -'e_so4' = { - table2Version = 219 ; - indicatorOfParameter = 20 ; - } -#Ammonium emissions -'e_nh4' = { - table2Version = 219 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - table2Version = 219 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - table2Version = 219 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - table2Version = 219 ; - indicatorOfParameter = 24 ; - } -#Radon emissions -'e_ra' = { - table2Version = 219 ; - indicatorOfParameter = 25 ; - } -#Lead emissions -'e_pb' = { - table2Version = 219 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - table2Version = 219 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - table2Version = 219 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - table2Version = 219 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - table2Version = 219 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - table2Version = 219 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - table2Version = 219 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - table2Version = 219 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - table2Version = 219 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - table2Version = 219 ; - indicatorOfParameter = 35 ; - } -#Organic ethers emissions -'e_ror' = { - table2Version = 219 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - table2Version = 219 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - table2Version = 219 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - table2Version = 219 ; - indicatorOfParameter = 39 ; - } -#Amine emissions -'e_nh2' = { - table2Version = 219 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - table2Version = 219 ; - indicatorOfParameter = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - table2Version = 219 ; - indicatorOfParameter = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - table2Version = 219 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - table2Version = 219 ; - indicatorOfParameter = 44 ; - } -#Ethane emissions -'e_c2h6' = { - table2Version = 219 ; - indicatorOfParameter = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - table2Version = 219 ; - indicatorOfParameter = 46 ; - } -#Propane emissions -'e_c3h8' = { - table2Version = 219 ; - indicatorOfParameter = 47 ; - } -#Propene emissions -'e_c3h6' = { - table2Version = 219 ; - indicatorOfParameter = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - table2Version = 219 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - table2Version = 219 ; - indicatorOfParameter = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - table2Version = 219 ; - indicatorOfParameter = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - table2Version = 219 ; - indicatorOfParameter = 52 ; - } -#Acetone product emissions -'e_aco2' = { - table2Version = 219 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - table2Version = 219 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - table2Version = 219 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - table2Version = 219 ; - indicatorOfParameter = 56 ; - } -#Ozone deposition velocity -'dv_go3' = { - table2Version = 221 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - table2Version = 221 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - table2Version = 221 ; - indicatorOfParameter = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - table2Version = 221 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - table2Version = 221 ; - indicatorOfParameter = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - table2Version = 221 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - table2Version = 221 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - table2Version = 221 ; - indicatorOfParameter = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - table2Version = 221 ; - indicatorOfParameter = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - table2Version = 221 ; - indicatorOfParameter = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - table2Version = 221 ; - indicatorOfParameter = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - table2Version = 221 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - table2Version = 221 ; - indicatorOfParameter = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - table2Version = 221 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - table2Version = 221 ; - indicatorOfParameter = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - table2Version = 221 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - table2Version = 221 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - table2Version = 221 ; - indicatorOfParameter = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - table2Version = 221 ; - indicatorOfParameter = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - table2Version = 221 ; - indicatorOfParameter = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - table2Version = 221 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - table2Version = 221 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - table2Version = 221 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - table2Version = 221 ; - indicatorOfParameter = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - table2Version = 221 ; - indicatorOfParameter = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - table2Version = 221 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - table2Version = 221 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - table2Version = 221 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - table2Version = 221 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - table2Version = 221 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - table2Version = 221 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - table2Version = 221 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - table2Version = 221 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - table2Version = 221 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - table2Version = 221 ; - indicatorOfParameter = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - table2Version = 221 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - table2Version = 221 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - table2Version = 221 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - table2Version = 221 ; - indicatorOfParameter = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - table2Version = 221 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - table2Version = 221 ; - indicatorOfParameter = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - table2Version = 221 ; - indicatorOfParameter = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - table2Version = 221 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - table2Version = 221 ; - indicatorOfParameter = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - table2Version = 221 ; - indicatorOfParameter = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - table2Version = 221 ; - indicatorOfParameter = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - table2Version = 221 ; - indicatorOfParameter = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - table2Version = 221 ; - indicatorOfParameter = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - table2Version = 221 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - table2Version = 221 ; - indicatorOfParameter = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - table2Version = 221 ; - indicatorOfParameter = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - table2Version = 221 ; - indicatorOfParameter = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - table2Version = 221 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - table2Version = 221 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - table2Version = 221 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - table2Version = 221 ; - indicatorOfParameter = 56 ; - } -#-10 degrees C isothermal level (atm) -'degm10l' = { - table2Version = 228 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - table2Version = 228 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - table2Version = 228 ; - indicatorOfParameter = 22 ; - } -#Cloud base height -'cbh' = { - table2Version = 228 ; - indicatorOfParameter = 23 ; - } -#0 degrees C isothermal level (atm) -'deg0l' = { - table2Version = 228 ; - indicatorOfParameter = 24 ; - } -#Horizontal visibility -'hvis' = { - table2Version = 228 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - table2Version = 228 ; - indicatorOfParameter = 26 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - table2Version = 228 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust in the last 3 hours -'fg310' = { - table2Version = 228 ; - indicatorOfParameter = 28 ; - } -#Instantaneous 10 metre wind gust -'i10fg' = { - table2Version = 228 ; - indicatorOfParameter = 29 ; - } -#2 metre relative humidity with respect to water -'rhw2' = { - table2Version = 228 ; - indicatorOfParameter = 37 ; - } -#Soil wetness index in layer 1 -'swi1' = { - table2Version = 228 ; - indicatorOfParameter = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - table2Version = 228 ; - indicatorOfParameter = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - table2Version = 228 ; - indicatorOfParameter = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - table2Version = 228 ; - indicatorOfParameter = 43 ; - } -#Convective available potential energy shear -'capes' = { - table2Version = 228 ; - indicatorOfParameter = 44 ; - } -#Height of convective cloud top -'hcct' = { - table2Version = 228 ; - indicatorOfParameter = 46 ; - } -#Height of zero-degree wet-bulb temperature -'hwbt0' = { - table2Version = 228 ; - indicatorOfParameter = 47 ; - } -#Height of one-degree wet-bulb temperature -'hwbt1' = { - table2Version = 228 ; - indicatorOfParameter = 48 ; - } -#Instantaneous total lightning flash density -'litoti' = { - table2Version = 228 ; - indicatorOfParameter = 50 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - table2Version = 228 ; - indicatorOfParameter = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - table2Version = 228 ; - indicatorOfParameter = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - table2Version = 228 ; - indicatorOfParameter = 53 ; - } -#SMOS observed soil moisture retrieved using neural network -'smnnob' = { - table2Version = 228 ; - indicatorOfParameter = 70 ; - } -#SMOS observed soil moisture uncertainty retrieved using neural network -'smnner' = { - table2Version = 228 ; - indicatorOfParameter = 71 ; - } -#SMOS radio frequency interference probability -'smnnrfi' = { - table2Version = 228 ; - indicatorOfParameter = 72 ; - } -#SMOS number of observations per grid point -'smnnnb' = { - table2Version = 228 ; - indicatorOfParameter = 73 ; - } -#SMOS observation time for the satellite soil moisture data -'smnntim' = { - table2Version = 228 ; - indicatorOfParameter = 74 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'gppbfas' = { - table2Version = 228 ; - indicatorOfParameter = 78 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'recbfas' = { - table2Version = 228 ; - indicatorOfParameter = 79 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'aco2nee' = { - table2Version = 228 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'aco2gpp' = { - table2Version = 228 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'aco2rec' = { - table2Version = 228 ; - indicatorOfParameter = 82 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'fco2nee' = { - table2Version = 228 ; - indicatorOfParameter = 83 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'fco2gpp' = { - table2Version = 228 ; - indicatorOfParameter = 84 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'fco2rec' = { - table2Version = 228 ; - indicatorOfParameter = 85 ; - } -#Total column supercooled liquid water -'tcslw' = { - table2Version = 228 ; - indicatorOfParameter = 88 ; - } -#Total column rain water -'tcrw' = { - table2Version = 228 ; - indicatorOfParameter = 89 ; - } -#Total column snow water -'tcsw' = { - table2Version = 228 ; - indicatorOfParameter = 90 ; - } -#Canopy cover fraction -'ccf' = { - table2Version = 228 ; - indicatorOfParameter = 91 ; - } -#Soil texture fraction -'stf' = { - table2Version = 228 ; - indicatorOfParameter = 92 ; - } -#Volumetric soil moisture -'swv' = { - table2Version = 228 ; - indicatorOfParameter = 93 ; - } -#Ice temperature -'ist' = { - table2Version = 228 ; - indicatorOfParameter = 94 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - table2Version = 228 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - table2Version = 228 ; - indicatorOfParameter = 130 ; - } -#Accumulated freezing rain -'fzra' = { - table2Version = 228 ; - indicatorOfParameter = 216 ; - } -#Instantaneous large-scale surface precipitation fraction -'ilspf' = { - table2Version = 228 ; - indicatorOfParameter = 217 ; - } -#Convective rain rate -'crr' = { - table2Version = 228 ; - indicatorOfParameter = 218 ; - } -#Large scale rain rate -'lsrr' = { - table2Version = 228 ; - indicatorOfParameter = 219 ; - } -#Convective snowfall rate water equivalent -'csfr' = { - table2Version = 228 ; - indicatorOfParameter = 220 ; - } -#Large scale snowfall rate water equivalent -'lssfr' = { - table2Version = 228 ; - indicatorOfParameter = 221 ; - } -#Maximum total precipitation rate in the last 3 hours -'mxtpr3' = { - table2Version = 228 ; - indicatorOfParameter = 222 ; - } -#Minimum total precipitation rate in the last 3 hours -'mntpr3' = { - table2Version = 228 ; - indicatorOfParameter = 223 ; - } -#Maximum total precipitation rate in the last 6 hours -'mxtpr6' = { - table2Version = 228 ; - indicatorOfParameter = 224 ; - } -#Minimum total precipitation rate in the last 6 hours -'mntpr6' = { - table2Version = 228 ; - indicatorOfParameter = 225 ; - } -#Maximum total precipitation rate since previous post-processing -'mxtpr' = { - table2Version = 228 ; - indicatorOfParameter = 226 ; - } -#Minimum total precipitation rate since previous post-processing -'mntpr' = { - table2Version = 228 ; - indicatorOfParameter = 227 ; - } -#SMOS first Brightness Temperature Bias Correction parameter -'p228229' = { - table2Version = 228 ; - indicatorOfParameter = 229 ; - } -#SMOS second Brightness Temperature Bias Correction parameter -'p228230' = { - table2Version = 228 ; - indicatorOfParameter = 230 ; - } -#200 metre U wind component -'u200' = { - table2Version = 228 ; - indicatorOfParameter = 239 ; - } -#200 metre V wind component -'v200' = { - table2Version = 228 ; - indicatorOfParameter = 240 ; - } -#200 metre wind speed -'si200' = { - table2Version = 228 ; - indicatorOfParameter = 241 ; - } -#Surface solar radiation diffuse total sky -'fdif' = { - table2Version = 228 ; - indicatorOfParameter = 242 ; - } -#Surface solar radiation diffuse clear-sky -'cdif' = { - table2Version = 228 ; - indicatorOfParameter = 243 ; - } -#Surface albedo of direct radiation -'aldr' = { - table2Version = 228 ; - indicatorOfParameter = 244 ; - } -#Surface albedo of diffuse radiation -'aldf' = { - table2Version = 228 ; - indicatorOfParameter = 245 ; - } -#100 metre wind speed -'si100' = { - table2Version = 228 ; - indicatorOfParameter = 249 ; - } -#Irrigation fraction -'irrfr' = { - table2Version = 228 ; - indicatorOfParameter = 250 ; - } -#Potential evaporation -'pev' = { - table2Version = 228 ; - indicatorOfParameter = 251 ; - } -#Irrigation -'irr' = { - table2Version = 228 ; - indicatorOfParameter = 252 ; - } -#Surface runoff (variable resolution) -'srovar' = { - table2Version = 230 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff (variable resolution) -'ssrovar' = { - table2Version = 230 ; - indicatorOfParameter = 9 ; - } -#Clear sky surface photosynthetically active radiation (variable resolution) -'parcsvar' = { - table2Version = 230 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface (variable resolution) -'fdirvar' = { - table2Version = 230 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface (variable resolution) -'cdirvar' = { - table2Version = 230 ; - indicatorOfParameter = 22 ; - } -#Direct solar radiation (variable resolution) -'dsrpvar' = { - table2Version = 230 ; - indicatorOfParameter = 47 ; - } -#Large-scale precipitation fraction (variable resolution) -'lspfvar' = { - table2Version = 230 ; - indicatorOfParameter = 50 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) -'aco2neevar' = { - table2Version = 230 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) -'aco2gppvar' = { - table2Version = 230 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) -'aco2recvar' = { - table2Version = 230 ; - indicatorOfParameter = 82 ; - } -#Surface solar radiation downward clear-sky (variable resolution) -'ssrdcvar' = { - table2Version = 230 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky (variable resolution) -'strdcvar' = { - table2Version = 230 ; - indicatorOfParameter = 130 ; - } -#Albedo (variable resolution) -'alvar' = { - table2Version = 230 ; - indicatorOfParameter = 174 ; - } -#Vertically integrated moisture divergence (variable resolution) -'vimdvar' = { - table2Version = 230 ; - indicatorOfParameter = 213 ; - } -#Accumulated freezing rain (variable resolution) -'fzravar' = { - table2Version = 230 ; - indicatorOfParameter = 216 ; - } -#Total precipitation (variable resolution) -'tpvar' = { - table2Version = 230 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall (variable resolution) -'csfvar' = { - table2Version = 230 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall (variable resolution) -'lsfvar' = { - table2Version = 230 ; - indicatorOfParameter = 240 ; - } -#Potential evaporation (variable resolution) -'pevvar' = { - table2Version = 230 ; - indicatorOfParameter = 251 ; - } -#Mean surface runoff rate -'msror' = { - table2Version = 235 ; - indicatorOfParameter = 20 ; - } -#Mean sub-surface runoff rate -'mssror' = { - table2Version = 235 ; - indicatorOfParameter = 21 ; - } -#Mean surface photosynthetically active radiation flux, clear sky -'msparfcs' = { - table2Version = 235 ; - indicatorOfParameter = 22 ; - } -#Mean snow evaporation rate -'mser' = { - table2Version = 235 ; - indicatorOfParameter = 23 ; - } -#Mean snowmelt rate -'msmr' = { - table2Version = 235 ; - indicatorOfParameter = 24 ; - } -#Mean magnitude of turbulent surface stress -'mmtss' = { - table2Version = 235 ; - indicatorOfParameter = 25 ; - } -#Mean large-scale precipitation fraction -'mlspf' = { - table2Version = 235 ; - indicatorOfParameter = 26 ; - } -#Mean surface downward UV radiation flux -'msdwuvrf' = { - table2Version = 235 ; - indicatorOfParameter = 27 ; - } -#Mean surface photosynthetically active radiation flux -'msparf' = { - table2Version = 235 ; - indicatorOfParameter = 28 ; - } -#Mean large-scale precipitation rate -'mlspr' = { - table2Version = 235 ; - indicatorOfParameter = 29 ; - } -#Mean convective precipitation rate -'mcpr' = { - table2Version = 235 ; - indicatorOfParameter = 30 ; - } -#Mean snowfall rate -'msr' = { - table2Version = 235 ; - indicatorOfParameter = 31 ; - } -#Mean boundary layer dissipation -'mbld' = { - table2Version = 235 ; - indicatorOfParameter = 32 ; - } -#Mean surface sensible heat flux -'msshf' = { - table2Version = 235 ; - indicatorOfParameter = 33 ; - } -#Mean surface latent heat flux -'mslhf' = { - table2Version = 235 ; - indicatorOfParameter = 34 ; - } -#Mean surface downward short-wave radiation flux -'msdwswrf' = { - table2Version = 235 ; - indicatorOfParameter = 35 ; - } -#Mean surface downward long-wave radiation flux -'msdwlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 36 ; - } -#Mean surface net short-wave radiation flux -'msnswrf' = { - table2Version = 235 ; - indicatorOfParameter = 37 ; - } -#Mean surface net long-wave radiation flux -'msnlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 38 ; - } -#Mean top net short-wave radiation flux -'mtnswrf' = { - table2Version = 235 ; - indicatorOfParameter = 39 ; - } -#Mean top net long-wave radiation flux -'mtnlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 40 ; - } -#Mean eastward turbulent surface stress -'metss' = { - table2Version = 235 ; - indicatorOfParameter = 41 ; - } -#Mean northward turbulent surface stress -'mntss' = { - table2Version = 235 ; - indicatorOfParameter = 42 ; - } -#Mean evaporation rate -'mer' = { - table2Version = 235 ; - indicatorOfParameter = 43 ; - } -#Sunshine duration fraction -'sdf' = { - table2Version = 235 ; - indicatorOfParameter = 44 ; - } -#Mean eastward gravity wave surface stress -'megwss' = { - table2Version = 235 ; - indicatorOfParameter = 45 ; - } -#Mean northward gravity wave surface stress -'mngwss' = { - table2Version = 235 ; - indicatorOfParameter = 46 ; - } -#Mean gravity wave dissipation -'mgwd' = { - table2Version = 235 ; - indicatorOfParameter = 47 ; - } -#Mean runoff rate -'mror' = { - table2Version = 235 ; - indicatorOfParameter = 48 ; - } -#Mean top net short-wave radiation flux, clear sky -'mtnswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 49 ; - } -#Mean top net long-wave radiation flux, clear sky -'mtnlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 50 ; - } -#Mean surface net short-wave radiation flux, clear sky -'msnswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 51 ; - } -#Mean surface net long-wave radiation flux, clear sky -'msnlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 52 ; - } -#Mean top downward short-wave radiation flux -'mtdwswrf' = { - table2Version = 235 ; - indicatorOfParameter = 53 ; - } -#Mean vertically integrated moisture divergence -'mvimd' = { - table2Version = 235 ; - indicatorOfParameter = 54 ; - } -#Mean total precipitation rate -'mtpr' = { - table2Version = 235 ; - indicatorOfParameter = 55 ; - } -#Mean convective snowfall rate -'mcsr' = { - table2Version = 235 ; - indicatorOfParameter = 56 ; - } -#Mean large-scale snowfall rate -'mlssr' = { - table2Version = 235 ; - indicatorOfParameter = 57 ; - } -#Mean surface direct short-wave radiation flux -'msdrswrf' = { - table2Version = 235 ; - indicatorOfParameter = 58 ; - } -#Mean surface direct short-wave radiation flux, clear sky -'msdrswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 59 ; - } -#Mean surface diffuse short-wave radiation flux -'msdfswrf' = { - table2Version = 235 ; - indicatorOfParameter = 60 ; - } -#Mean surface diffuse short-wave radiation flux, clear sky -'msdfswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 61 ; - } -#Mean carbon dioxide net ecosystem exchange flux -'mcdneef' = { - table2Version = 235 ; - indicatorOfParameter = 62 ; - } -#Mean carbon dioxide gross primary production flux -'mcdgppf' = { - table2Version = 235 ; - indicatorOfParameter = 63 ; - } -#Mean carbon dioxide ecosystem respiration flux -'mcderf' = { - table2Version = 235 ; - indicatorOfParameter = 64 ; - } -#Mean rain rate -'mrr' = { - table2Version = 235 ; - indicatorOfParameter = 65 ; - } -#Mean convective rain rate -'mcrr' = { - table2Version = 235 ; - indicatorOfParameter = 66 ; - } -#Mean large-scale rain rate -'mlsrr' = { - table2Version = 235 ; - indicatorOfParameter = 67 ; - } -#Mean surface downward short-wave radiation flux, clear sky -'msdwswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 68 ; - } -#Mean surface downward long-wave radiation flux, clear sky -'msdwlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 69 ; - } -#Mean potential evaporation rate -'mper' = { - table2Version = 235 ; - indicatorOfParameter = 70 ; - } -#Total precipitation rate -'tprate' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#Ceiling -'ceil' = { - table2Version = 228 ; - indicatorOfParameter = 109 ; - } -#K index -'kx' = { - table2Version = 228 ; - indicatorOfParameter = 121 ; - } -#Total totals index -'totalx' = { - table2Version = 228 ; - indicatorOfParameter = 123 ; - } -#Stream function gradient -'strfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - table2Version = 129 ; - indicatorOfParameter = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - table2Version = 129 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - table2Version = 129 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - table2Version = 129 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - table2Version = 129 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'p24.129' = { - table2Version = 129 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'p25.129' = { - table2Version = 129 ; - indicatorOfParameter = 25 ; - } -#Lake cover gradient -'clgrd' = { - table2Version = 129 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - table2Version = 129 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - table2Version = 129 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - table2Version = 129 ; - indicatorOfParameter = 31 ; - } -#Snow albedo gradient -'asngrd' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#Snow density gradient -'rsngrd' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 42 ; - } -#Soil type gradient -'sltgrd' = { - table2Version = 129 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - table2Version = 129 ; - indicatorOfParameter = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - table2Version = 129 ; - indicatorOfParameter = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - table2Version = 129 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust gradient -'fggrd10' = { - table2Version = 129 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - table2Version = 129 ; - indicatorOfParameter = 53 ; - } -#Pressure gradient -'presgrd' = { - table2Version = 129 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - table2Version = 129 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - table2Version = 129 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - table2Version = 129 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - table2Version = 129 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - table2Version = 129 ; - indicatorOfParameter = 61 ; - } -#Observation count gradient -'obctgrd' = { - table2Version = 129 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'p63.129' = { - table2Version = 129 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'p64.129' = { - table2Version = 129 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'p65.129' = { - table2Version = 129 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'p66.129' = { - table2Version = 129 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'p67.129' = { - table2Version = 129 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.129' = { - table2Version = 129 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.129' = { - table2Version = 129 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'p70.129' = { - table2Version = 129 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'p71.129' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'p78.129' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'p79.129' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'p80.129' = { - table2Version = 129 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'p81.129' = { - table2Version = 129 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'p82.129' = { - table2Version = 129 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'p83.129' = { - table2Version = 129 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'p84.129' = { - table2Version = 129 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'p85.129' = { - table2Version = 129 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'p86.129' = { - table2Version = 129 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'p87.129' = { - table2Version = 129 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'p88.129' = { - table2Version = 129 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'p89.129' = { - table2Version = 129 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'p90.129' = { - table2Version = 129 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'p91.129' = { - table2Version = 129 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'p92.129' = { - table2Version = 129 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'p93.129' = { - table2Version = 129 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'p94.129' = { - table2Version = 129 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'p95.129' = { - table2Version = 129 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'p96.129' = { - table2Version = 129 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'p97.129' = { - table2Version = 129 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'p98.129' = { - table2Version = 129 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'p99.129' = { - table2Version = 129 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'p100.129' = { - table2Version = 129 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'p101.129' = { - table2Version = 129 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'p102.129' = { - table2Version = 129 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'p103.129' = { - table2Version = 129 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'p104.129' = { - table2Version = 129 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'p105.129' = { - table2Version = 129 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'p106.129' = { - table2Version = 129 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'p107.129' = { - table2Version = 129 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'p108.129' = { - table2Version = 129 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'p109.129' = { - table2Version = 129 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'p110.129' = { - table2Version = 129 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'p111.129' = { - table2Version = 129 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'p112.129' = { - table2Version = 129 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'p113.129' = { - table2Version = 129 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'p114.129' = { - table2Version = 129 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'p115.129' = { - table2Version = 129 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'p116.129' = { - table2Version = 129 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'p117.129' = { - table2Version = 129 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'p118.129' = { - table2Version = 129 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'p119.129' = { - table2Version = 129 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'p120.129' = { - table2Version = 129 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - table2Version = 129 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - table2Version = 129 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'fg6grd10' = { - table2Version = 129 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'p125.129' = { - table2Version = 129 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.129' = { - table2Version = 129 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - table2Version = 129 ; - indicatorOfParameter = 127 ; - } -#Budget values gradient -'bvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 128 ; - } -#Geopotential gradient -'zgrd' = { - table2Version = 129 ; - indicatorOfParameter = 129 ; - } -#Temperature gradient -'tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 130 ; - } -#U component of wind gradient -'ugrd' = { - table2Version = 129 ; - indicatorOfParameter = 131 ; - } -#V component of wind gradient -'vgrd' = { - table2Version = 129 ; - indicatorOfParameter = 132 ; - } -#Specific humidity gradient -'qgrd' = { - table2Version = 129 ; - indicatorOfParameter = 133 ; - } -#Surface pressure gradient -'spgrd' = { - table2Version = 129 ; - indicatorOfParameter = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - table2Version = 129 ; - indicatorOfParameter = 135 ; - } -#Total column water gradient -'tcwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - table2Version = 129 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 140 ; - } -#Snow depth gradient -'sdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 147 ; - } -#Charnock gradient -'chnkgrd' = { - table2Version = 129 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - table2Version = 129 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 154 ; - } -#Divergence gradient -'dgrd' = { - table2Version = 129 ; - indicatorOfParameter = 155 ; - } -#Height gradient -'ghgrd' = { - table2Version = 129 ; - indicatorOfParameter = 156 ; - } -#Relative humidity gradient -'rgrd' = { - table2Version = 129 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component gradient -'ugrd10' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component gradient -'vgrd10' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature gradient -'grd2t' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature gradient -'grd2d' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#Surface roughness gradient -'srgrd' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#Albedo gradient -'algrd' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#Evaporation gradient -'egrd' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - table2Version = 129 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#Runoff gradient -'rogrd' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed gradient -'sigrd10' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - table2Version = 129 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 249 ; - } -#Ice age gradient -'icegrd' = { - table2Version = 129 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - table2Version = 129 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - table2Version = 129 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - table2Version = 129 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'p255.129' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -#Top solar radiation upward -'tsru' = { - table2Version = 130 ; - indicatorOfParameter = 208 ; - } -#Top thermal radiation upward -'ttru' = { - table2Version = 130 ; - indicatorOfParameter = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - table2Version = 130 ; - indicatorOfParameter = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - table2Version = 130 ; - indicatorOfParameter = 211 ; - } -#Cloud liquid water -'clw' = { - table2Version = 130 ; - indicatorOfParameter = 212 ; - } -#Cloud fraction -'cf' = { - table2Version = 130 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - table2Version = 130 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - table2Version = 130 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - table2Version = 130 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - table2Version = 130 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - table2Version = 130 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - table2Version = 130 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - table2Version = 130 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - table2Version = 130 ; - indicatorOfParameter = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - table2Version = 130 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - table2Version = 130 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - table2Version = 130 ; - indicatorOfParameter = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - table2Version = 130 ; - indicatorOfParameter = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - table2Version = 130 ; - indicatorOfParameter = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - table2Version = 130 ; - indicatorOfParameter = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - table2Version = 130 ; - indicatorOfParameter = 231 ; - } -#Mean vertical velocity -'mvv' = { - table2Version = 130 ; - indicatorOfParameter = 232 ; - } -#2m temperature anomaly of at least +2K -'t2ag2' = { - table2Version = 131 ; - indicatorOfParameter = 1 ; - } -#2m temperature anomaly of at least +1K -'t2ag1' = { - table2Version = 131 ; - indicatorOfParameter = 2 ; - } -#2m temperature anomaly of at least 0K -'t2ag0' = { - table2Version = 131 ; - indicatorOfParameter = 3 ; - } -#2m temperature anomaly of at most -1K -'t2alm1' = { - table2Version = 131 ; - indicatorOfParameter = 4 ; - } -#2m temperature anomaly of at most -2K -'t2alm2' = { - table2Version = 131 ; - indicatorOfParameter = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - table2Version = 131 ; - indicatorOfParameter = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - table2Version = 131 ; - indicatorOfParameter = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - table2Version = 131 ; - indicatorOfParameter = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - table2Version = 131 ; - indicatorOfParameter = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - table2Version = 131 ; - indicatorOfParameter = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - table2Version = 131 ; - indicatorOfParameter = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - table2Version = 131 ; - indicatorOfParameter = 16 ; - } -#Showalter index probability -'saip' = { - table2Version = 131 ; - indicatorOfParameter = 17 ; - } -#Whiting index probability -'whip' = { - table2Version = 131 ; - indicatorOfParameter = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - table2Version = 131 ; - indicatorOfParameter = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - table2Version = 131 ; - indicatorOfParameter = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - table2Version = 131 ; - indicatorOfParameter = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - table2Version = 131 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - table2Version = 131 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - table2Version = 131 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability -'g10p' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Convective available potential energy probability -'capep' = { - table2Version = 131 ; - indicatorOfParameter = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - table2Version = 131 ; - indicatorOfParameter = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - table2Version = 131 ; - indicatorOfParameter = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - table2Version = 131 ; - indicatorOfParameter = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'sp10g10' = { - table2Version = 131 ; - indicatorOfParameter = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'sp10g15' = { - table2Version = 131 ; - indicatorOfParameter = 69 ; - } -#10 metre wind gust of at least 15 m/s -'fg10g15' = { - table2Version = 131 ; - indicatorOfParameter = 70 ; - } -#10 metre wind gust of at least 20 m/s -'fg10g20' = { - table2Version = 131 ; - indicatorOfParameter = 71 ; - } -#10 metre wind gust of at least 25 m/s -'fg10g25' = { - table2Version = 131 ; - indicatorOfParameter = 72 ; - } -#2 metre temperature less than 273.15 K -'t2l273' = { - table2Version = 131 ; - indicatorOfParameter = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - table2Version = 131 ; - indicatorOfParameter = 74 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - table2Version = 131 ; - indicatorOfParameter = 75 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - table2Version = 131 ; - indicatorOfParameter = 76 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - table2Version = 131 ; - indicatorOfParameter = 77 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - table2Version = 131 ; - indicatorOfParameter = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - table2Version = 131 ; - indicatorOfParameter = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - table2Version = 131 ; - indicatorOfParameter = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - table2Version = 131 ; - indicatorOfParameter = 81 ; - } -#Geopotential probability -'zp' = { - table2Version = 131 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly probability -'tap' = { - table2Version = 131 ; - indicatorOfParameter = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - table2Version = 131 ; - indicatorOfParameter = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - table2Version = 131 ; - indicatorOfParameter = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Total cloud cover probability -'tccp' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#10 metre speed probability -'sp10' = { - table2Version = 131 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature probability -'t2p' = { - table2Version = 131 ; - indicatorOfParameter = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - table2Version = 131 ; - indicatorOfParameter = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - table2Version = 131 ; - indicatorOfParameter = 202 ; - } -#Total precipitation probability -'tpp' = { - table2Version = 131 ; - indicatorOfParameter = 228 ; - } -#Significant wave height probability -'swhp' = { - table2Version = 131 ; - indicatorOfParameter = 229 ; - } -#Mean wave period probability -'mwpp' = { - table2Version = 131 ; - indicatorOfParameter = 232 ; - } -#Indicates a missing value -'p255.131' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust index -'fg10i' = { - table2Version = 132 ; - indicatorOfParameter = 49 ; - } -#Snowfall index -'sfi' = { - table2Version = 132 ; - indicatorOfParameter = 144 ; - } -#10 metre speed index -'ws10i' = { - table2Version = 132 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature index -'t2i' = { - table2Version = 132 ; - indicatorOfParameter = 167 ; - } -#Maximum temperature at 2 metres index -'mx2ti' = { - table2Version = 132 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres index -'mn2ti' = { - table2Version = 132 ; - indicatorOfParameter = 202 ; - } -#Total precipitation index -'tpi' = { - table2Version = 132 ; - indicatorOfParameter = 228 ; - } -#2m temperature probability less than -10 C -'t2plm10' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#2m temperature probability less than -5 C -'t2plm5' = { - table2Version = 133 ; - indicatorOfParameter = 2 ; - } -#2m temperature probability less than 0 C -'t2pl0' = { - table2Version = 133 ; - indicatorOfParameter = 3 ; - } -#2m temperature probability less than 5 C -'t2pl5' = { - table2Version = 133 ; - indicatorOfParameter = 4 ; - } -#2m temperature probability less than 10 C -'t2pl10' = { - table2Version = 133 ; - indicatorOfParameter = 5 ; - } -#2m temperature probability greater than 25 C -'t2pg25' = { - table2Version = 133 ; - indicatorOfParameter = 6 ; - } -#2m temperature probability greater than 30 C -'t2pg30' = { - table2Version = 133 ; - indicatorOfParameter = 7 ; - } -#2m temperature probability greater than 35 C -'t2pg35' = { - table2Version = 133 ; - indicatorOfParameter = 8 ; - } -#2m temperature probability greater than 40 C -'t2pg40' = { - table2Version = 133 ; - indicatorOfParameter = 9 ; - } -#2m temperature probability greater than 45 C -'t2pg45' = { - table2Version = 133 ; - indicatorOfParameter = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - table2Version = 133 ; - indicatorOfParameter = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - table2Version = 133 ; - indicatorOfParameter = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - table2Version = 133 ; - indicatorOfParameter = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - table2Version = 133 ; - indicatorOfParameter = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - table2Version = 133 ; - indicatorOfParameter = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - table2Version = 133 ; - indicatorOfParameter = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - table2Version = 133 ; - indicatorOfParameter = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - table2Version = 133 ; - indicatorOfParameter = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'sp10g10' = { - table2Version = 133 ; - indicatorOfParameter = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'sp10g15' = { - table2Version = 133 ; - indicatorOfParameter = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'sp10g20' = { - table2Version = 133 ; - indicatorOfParameter = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'sp10g35' = { - table2Version = 133 ; - indicatorOfParameter = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'sp10g50' = { - table2Version = 133 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'gp10g20' = { - table2Version = 133 ; - indicatorOfParameter = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'gp10g35' = { - table2Version = 133 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'gp10g50' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'gp10g75' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'gp10g100' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - table2Version = 133 ; - indicatorOfParameter = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - table2Version = 140 ; - indicatorOfParameter = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - table2Version = 140 ; - indicatorOfParameter = 217 ; - } -#Maximum individual wave height -'hmax' = { - table2Version = 140 ; - indicatorOfParameter = 218 ; - } -#Model bathymetry -'wmb' = { - table2Version = 140 ; - indicatorOfParameter = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - table2Version = 140 ; - indicatorOfParameter = 220 ; - } -#Mean zero-crossing wave period -'mp2' = { - table2Version = 140 ; - indicatorOfParameter = 221 ; - } -#Wave spectral directional width -'wdw' = { - table2Version = 140 ; - indicatorOfParameter = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - table2Version = 140 ; - indicatorOfParameter = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - table2Version = 140 ; - indicatorOfParameter = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - table2Version = 140 ; - indicatorOfParameter = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - table2Version = 140 ; - indicatorOfParameter = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - table2Version = 140 ; - indicatorOfParameter = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - table2Version = 140 ; - indicatorOfParameter = 228 ; - } -#Significant height of combined wind waves and swell -'swh' = { - table2Version = 140 ; - indicatorOfParameter = 229 ; - } -#Mean wave direction -'mwd' = { - table2Version = 140 ; - indicatorOfParameter = 230 ; - } -#Peak wave period -'pp1d' = { - table2Version = 140 ; - indicatorOfParameter = 231 ; - } -#Mean wave period -'mwp' = { - table2Version = 140 ; - indicatorOfParameter = 232 ; - } -#Coefficient of drag with waves -'cdww' = { - table2Version = 140 ; - indicatorOfParameter = 233 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 140 ; - indicatorOfParameter = 234 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 140 ; - indicatorOfParameter = 235 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 140 ; - indicatorOfParameter = 236 ; - } -#Significant height of total swell -'shts' = { - table2Version = 140 ; - indicatorOfParameter = 237 ; - } -#Mean direction of total swell -'mdts' = { - table2Version = 140 ; - indicatorOfParameter = 238 ; - } -#Mean period of total swell -'mpts' = { - table2Version = 140 ; - indicatorOfParameter = 239 ; - } -#Standard deviation wave height -'sdhs' = { - table2Version = 140 ; - indicatorOfParameter = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - table2Version = 140 ; - indicatorOfParameter = 241 ; - } -#Mean wind direction -'mdwi' = { - table2Version = 140 ; - indicatorOfParameter = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - table2Version = 140 ; - indicatorOfParameter = 243 ; - } -#Mean square slope of waves -'msqs' = { - table2Version = 140 ; - indicatorOfParameter = 244 ; - } -#10 metre wind speed -'wind' = { - table2Version = 140 ; - indicatorOfParameter = 245 ; - } -#Altimeter wave height -'awh' = { - table2Version = 140 ; - indicatorOfParameter = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - table2Version = 140 ; - indicatorOfParameter = 247 ; - } -#Altimeter range relative correction -'arrc' = { - table2Version = 140 ; - indicatorOfParameter = 248 ; - } -#10 metre wind direction -'dwi' = { - table2Version = 140 ; - indicatorOfParameter = 249 ; - } -#2D wave spectra (multiple) -'d2sp' = { - table2Version = 140 ; - indicatorOfParameter = 250 ; - } -#2D wave spectra (single) -'d2fd' = { - table2Version = 140 ; - indicatorOfParameter = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - table2Version = 140 ; - indicatorOfParameter = 252 ; - } -#Benjamin-Feir index -'bfi' = { - table2Version = 140 ; - indicatorOfParameter = 253 ; - } -#Wave spectral peakedness -'wsp' = { - table2Version = 140 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'p255.140' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -#Ocean potential temperature -'ocpt' = { - table2Version = 150 ; - indicatorOfParameter = 129 ; - } -#Ocean salinity -'ocs' = { - table2Version = 150 ; - indicatorOfParameter = 130 ; - } -#Ocean potential density -'ocpd' = { - table2Version = 150 ; - indicatorOfParameter = 131 ; - } -#Ocean U wind component -'p133.150' = { - table2Version = 150 ; - indicatorOfParameter = 133 ; - } -#Ocean V wind component -'p134.150' = { - table2Version = 150 ; - indicatorOfParameter = 134 ; - } -#Ocean W wind component -'ocw' = { - table2Version = 150 ; - indicatorOfParameter = 135 ; - } -#Richardson number -'rn' = { - table2Version = 150 ; - indicatorOfParameter = 137 ; - } -#U*V product -'uv' = { - table2Version = 150 ; - indicatorOfParameter = 139 ; - } -#U*T product -'ut' = { - table2Version = 150 ; - indicatorOfParameter = 140 ; - } -#V*T product -'vt' = { - table2Version = 150 ; - indicatorOfParameter = 141 ; - } -#U*U product -'uu' = { - table2Version = 150 ; - indicatorOfParameter = 142 ; - } -#V*V product -'vv' = { - table2Version = 150 ; - indicatorOfParameter = 143 ; - } -#UV - U~V~ -'p144.150' = { - table2Version = 150 ; - indicatorOfParameter = 144 ; - } -#UT - U~T~ -'p145.150' = { - table2Version = 150 ; - indicatorOfParameter = 145 ; - } -#VT - V~T~ -'p146.150' = { - table2Version = 150 ; - indicatorOfParameter = 146 ; - } -#UU - U~U~ -'p147.150' = { - table2Version = 150 ; - indicatorOfParameter = 147 ; - } -#VV - V~V~ -'p148.150' = { - table2Version = 150 ; - indicatorOfParameter = 148 ; - } -#Sea level -'sl' = { - table2Version = 150 ; - indicatorOfParameter = 152 ; - } -#Barotropic stream function -'p153.150' = { - table2Version = 150 ; - indicatorOfParameter = 153 ; - } -#Mixed layer depth -'mld' = { - table2Version = 150 ; - indicatorOfParameter = 154 ; - } -#Depth -'p155.150' = { - table2Version = 150 ; - indicatorOfParameter = 155 ; - } -#U stress -'p168.150' = { - table2Version = 150 ; - indicatorOfParameter = 168 ; - } -#V stress -'p169.150' = { - table2Version = 150 ; - indicatorOfParameter = 169 ; - } -#Turbulent kinetic energy input -'p170.150' = { - table2Version = 150 ; - indicatorOfParameter = 170 ; - } -#Net surface heat flux -'nsf' = { - table2Version = 150 ; - indicatorOfParameter = 171 ; - } -#Surface solar radiation -'p172.150' = { - table2Version = 150 ; - indicatorOfParameter = 172 ; - } -#P-E -'p173.150' = { - table2Version = 150 ; - indicatorOfParameter = 173 ; - } -#Diagnosed sea surface temperature error -'p180.150' = { - table2Version = 150 ; - indicatorOfParameter = 180 ; - } -#Heat flux correction -'p181.150' = { - table2Version = 150 ; - indicatorOfParameter = 181 ; - } -#Observed sea surface temperature -'p182.150' = { - table2Version = 150 ; - indicatorOfParameter = 182 ; - } -#Observed heat flux -'p183.150' = { - table2Version = 150 ; - indicatorOfParameter = 183 ; - } -#Indicates a missing value -'p255.150' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -#In situ Temperature -'p128.151' = { - table2Version = 151 ; - indicatorOfParameter = 128 ; - } -#Sea water potential temperature -'thetao' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'so' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'uoe' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'von' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'wo' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - table2Version = 151 ; - indicatorOfParameter = 134 ; - } -#Vertical viscosity -'vvs' = { - table2Version = 151 ; - indicatorOfParameter = 135 ; - } -#Vertical diffusivity -'vdf' = { - table2Version = 151 ; - indicatorOfParameter = 136 ; - } -#Bottom level Depth -'dep' = { - table2Version = 151 ; - indicatorOfParameter = 137 ; - } -#Sea water sigma theta -'sigmat' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Richardson number -'rn' = { - table2Version = 151 ; - indicatorOfParameter = 139 ; - } -#UV product -'uv' = { - table2Version = 151 ; - indicatorOfParameter = 140 ; - } -#UT product -'ut' = { - table2Version = 151 ; - indicatorOfParameter = 141 ; - } -#VT product -'vt' = { - table2Version = 151 ; - indicatorOfParameter = 142 ; - } -#UU product -'uu' = { - table2Version = 151 ; - indicatorOfParameter = 143 ; - } -#VV product -'vv' = { - table2Version = 151 ; - indicatorOfParameter = 144 ; - } -#Sea surface height -'zos' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Sea level previous timestep -'sl_1' = { - table2Version = 151 ; - indicatorOfParameter = 146 ; - } -#Ocean barotropic stream function -'stfbarot' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Mixed layer depth -'mld' = { - table2Version = 151 ; - indicatorOfParameter = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - table2Version = 151 ; - indicatorOfParameter = 149 ; - } -#Steric height -'sh' = { - table2Version = 151 ; - indicatorOfParameter = 150 ; - } -#Curl of Wind Stress -'crl' = { - table2Version = 151 ; - indicatorOfParameter = 151 ; - } -#Divergence of wind stress -'p152.151' = { - table2Version = 151 ; - indicatorOfParameter = 152 ; - } -#Surface downward eastward stress -'taueo' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'tauno' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - table2Version = 151 ; - indicatorOfParameter = 155 ; - } -#Net surface heat flux -'nsf' = { - table2Version = 151 ; - indicatorOfParameter = 156 ; - } -#Absorbed solar radiation -'asr' = { - table2Version = 151 ; - indicatorOfParameter = 157 ; - } -#Precipitation - evaporation -'pme' = { - table2Version = 151 ; - indicatorOfParameter = 158 ; - } -#Specified sea surface temperature -'sst' = { - table2Version = 151 ; - indicatorOfParameter = 159 ; - } -#Specified surface heat flux -'shf' = { - table2Version = 151 ; - indicatorOfParameter = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - table2Version = 151 ; - indicatorOfParameter = 161 ; - } -#Heat flux correction -'hfc' = { - table2Version = 151 ; - indicatorOfParameter = 162 ; - } -#Depth of 20C isotherm -'t20d' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - table2Version = 151 ; - indicatorOfParameter = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - table2Version = 151 ; - indicatorOfParameter = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - table2Version = 151 ; - indicatorOfParameter = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - table2Version = 151 ; - indicatorOfParameter = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - table2Version = 151 ; - indicatorOfParameter = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - table2Version = 151 ; - indicatorOfParameter = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - table2Version = 151 ; - indicatorOfParameter = 170 ; - } -#U velocity maximum -'umax' = { - table2Version = 151 ; - indicatorOfParameter = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - table2Version = 151 ; - indicatorOfParameter = 172 ; - } -#Salinity maximum -'smax' = { - table2Version = 151 ; - indicatorOfParameter = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - table2Version = 151 ; - indicatorOfParameter = 174 ; - } -#Average salinity in the upper 300m -'sav300' = { - table2Version = 151 ; - indicatorOfParameter = 175 ; - } -#Layer Thickness at scalar points -'ldp' = { - table2Version = 151 ; - indicatorOfParameter = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - table2Version = 151 ; - indicatorOfParameter = 177 ; - } -#Potential temperature increment -'pti' = { - table2Version = 151 ; - indicatorOfParameter = 178 ; - } -#Potential temperature analysis error -'ptae' = { - table2Version = 151 ; - indicatorOfParameter = 179 ; - } -#Background potential temperature -'bpt' = { - table2Version = 151 ; - indicatorOfParameter = 180 ; - } -#Analysed potential temperature -'apt' = { - table2Version = 151 ; - indicatorOfParameter = 181 ; - } -#Potential temperature background error -'ptbe' = { - table2Version = 151 ; - indicatorOfParameter = 182 ; - } -#Analysed salinity -'as' = { - table2Version = 151 ; - indicatorOfParameter = 183 ; - } -#Salinity increment -'sali' = { - table2Version = 151 ; - indicatorOfParameter = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - table2Version = 151 ; - indicatorOfParameter = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - table2Version = 151 ; - indicatorOfParameter = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - table2Version = 151 ; - indicatorOfParameter = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - table2Version = 151 ; - indicatorOfParameter = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - table2Version = 151 ; - indicatorOfParameter = 190 ; - } -#Salinity analysis error -'sale' = { - table2Version = 151 ; - indicatorOfParameter = 191 ; - } -#Background Salinity -'bsal' = { - table2Version = 151 ; - indicatorOfParameter = 192 ; - } -#Salinity background error -'salbe' = { - table2Version = 151 ; - indicatorOfParameter = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - table2Version = 151 ; - indicatorOfParameter = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - table2Version = 151 ; - indicatorOfParameter = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - table2Version = 151 ; - indicatorOfParameter = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - table2Version = 151 ; - indicatorOfParameter = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - table2Version = 151 ; - indicatorOfParameter = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - table2Version = 151 ; - indicatorOfParameter = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - table2Version = 151 ; - indicatorOfParameter = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - table2Version = 151 ; - indicatorOfParameter = 206 ; - } -#First guess bias in temperature -'fgbt' = { - table2Version = 151 ; - indicatorOfParameter = 207 ; - } -#First guess bias in salinity -'fgbs' = { - table2Version = 151 ; - indicatorOfParameter = 208 ; - } -#Applied bias in pressure -'bpa' = { - table2Version = 151 ; - indicatorOfParameter = 209 ; - } -#FG bias in pressure -'fgbp' = { - table2Version = 151 ; - indicatorOfParameter = 210 ; - } -#Bias in temperature(applied) -'pta' = { - table2Version = 151 ; - indicatorOfParameter = 211 ; - } -#Bias in salinity (applied) -'psa' = { - table2Version = 151 ; - indicatorOfParameter = 212 ; - } -#Indicates a missing value -'p255.151' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust during averaging time -'fgrea10' = { - table2Version = 160 ; - indicatorOfParameter = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - table2Version = 160 ; - indicatorOfParameter = 135 ; - } -#Precipitable water content -'pwcrea' = { - table2Version = 160 ; - indicatorOfParameter = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - table2Version = 160 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'sdrea' = { - table2Version = 160 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'lsprea' = { - table2Version = 160 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'cprea' = { - table2Version = 160 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'sfrea' = { - table2Version = 160 ; - indicatorOfParameter = 144 ; - } -#Height -'ghrea' = { - table2Version = 160 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'rrea' = { - table2Version = 160 ; - indicatorOfParameter = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - table2Version = 160 ; - indicatorOfParameter = 171 ; - } -#East-West surface stress -'ewssrea' = { - table2Version = 160 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress -'nsssrea' = { - table2Version = 160 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'erea' = { - table2Version = 160 ; - indicatorOfParameter = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - table2Version = 160 ; - indicatorOfParameter = 184 ; - } -#Skin reservoir content -'srcrea' = { - table2Version = 160 ; - indicatorOfParameter = 198 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 160 ; - indicatorOfParameter = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - table2Version = 160 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - table2Version = 160 ; - indicatorOfParameter = 202 ; - } -#Runoff -'rorea' = { - table2Version = 160 ; - indicatorOfParameter = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - table2Version = 160 ; - indicatorOfParameter = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - table2Version = 160 ; - indicatorOfParameter = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - table2Version = 160 ; - indicatorOfParameter = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - table2Version = 160 ; - indicatorOfParameter = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - table2Version = 160 ; - indicatorOfParameter = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - table2Version = 160 ; - indicatorOfParameter = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - table2Version = 160 ; - indicatorOfParameter = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - table2Version = 160 ; - indicatorOfParameter = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - table2Version = 160 ; - indicatorOfParameter = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - table2Version = 160 ; - indicatorOfParameter = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - table2Version = 160 ; - indicatorOfParameter = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - table2Version = 160 ; - indicatorOfParameter = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - table2Version = 160 ; - indicatorOfParameter = 218 ; - } -#Covariance of V component and U component -'vurea' = { - table2Version = 160 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of V component -'vvrea' = { - table2Version = 160 ; - indicatorOfParameter = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - table2Version = 160 ; - indicatorOfParameter = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - table2Version = 160 ; - indicatorOfParameter = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - table2Version = 160 ; - indicatorOfParameter = 223 ; - } -#Covariance of W component and U component -'wurea' = { - table2Version = 160 ; - indicatorOfParameter = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - table2Version = 160 ; - indicatorOfParameter = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - table2Version = 160 ; - indicatorOfParameter = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - table2Version = 160 ; - indicatorOfParameter = 231 ; - } -#Convective snowfall -'csfrea' = { - table2Version = 160 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'lsfrea' = { - table2Version = 160 ; - indicatorOfParameter = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - table2Version = 160 ; - indicatorOfParameter = 241 ; - } -#Cloud cover -'ccrea' = { - table2Version = 160 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'falrea' = { - table2Version = 160 ; - indicatorOfParameter = 243 ; - } -#10 metre wind speed -'wsrea10' = { - table2Version = 160 ; - indicatorOfParameter = 246 ; - } -#Momentum flux -'moflrea' = { - table2Version = 160 ; - indicatorOfParameter = 247 ; - } -#Gravity wave dissipation flux -'p249.160' = { - table2Version = 160 ; - indicatorOfParameter = 249 ; - } -#Heaviside beta function -'hsdrea' = { - table2Version = 160 ; - indicatorOfParameter = 254 ; - } -#Surface geopotential -'p51.162' = { - table2Version = 162 ; - indicatorOfParameter = 51 ; - } -#Vertical integral of mass of atmosphere -'p53.162' = { - table2Version = 162 ; - indicatorOfParameter = 53 ; - } -#Vertical integral of temperature -'p54.162' = { - table2Version = 162 ; - indicatorOfParameter = 54 ; - } -#Vertical integral of water vapour -'p55.162' = { - table2Version = 162 ; - indicatorOfParameter = 55 ; - } -#Vertical integral of cloud liquid water -'p56.162' = { - table2Version = 162 ; - indicatorOfParameter = 56 ; - } -#Vertical integral of cloud frozen water -'p57.162' = { - table2Version = 162 ; - indicatorOfParameter = 57 ; - } -#Vertical integral of ozone -'p58.162' = { - table2Version = 162 ; - indicatorOfParameter = 58 ; - } -#Vertical integral of kinetic energy -'p59.162' = { - table2Version = 162 ; - indicatorOfParameter = 59 ; - } -#Vertical integral of thermal energy -'p60.162' = { - table2Version = 162 ; - indicatorOfParameter = 60 ; - } -#Vertical integral of potential+internal energy -'p61.162' = { - table2Version = 162 ; - indicatorOfParameter = 61 ; - } -#Vertical integral of potential+internal+latent energy -'p62.162' = { - table2Version = 162 ; - indicatorOfParameter = 62 ; - } -#Vertical integral of total energy -'p63.162' = { - table2Version = 162 ; - indicatorOfParameter = 63 ; - } -#Vertical integral of energy conversion -'p64.162' = { - table2Version = 162 ; - indicatorOfParameter = 64 ; - } -#Vertical integral of eastward mass flux -'p65.162' = { - table2Version = 162 ; - indicatorOfParameter = 65 ; - } -#Vertical integral of northward mass flux -'p66.162' = { - table2Version = 162 ; - indicatorOfParameter = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'p67.162' = { - table2Version = 162 ; - indicatorOfParameter = 67 ; - } -#Vertical integral of northward kinetic energy flux -'p68.162' = { - table2Version = 162 ; - indicatorOfParameter = 68 ; - } -#Vertical integral of eastward heat flux -'p69.162' = { - table2Version = 162 ; - indicatorOfParameter = 69 ; - } -#Vertical integral of northward heat flux -'p70.162' = { - table2Version = 162 ; - indicatorOfParameter = 70 ; - } -#Vertical integral of eastward water vapour flux -'p71.162' = { - table2Version = 162 ; - indicatorOfParameter = 71 ; - } -#Vertical integral of northward water vapour flux -'p72.162' = { - table2Version = 162 ; - indicatorOfParameter = 72 ; - } -#Vertical integral of eastward geopotential flux -'p73.162' = { - table2Version = 162 ; - indicatorOfParameter = 73 ; - } -#Vertical integral of northward geopotential flux -'p74.162' = { - table2Version = 162 ; - indicatorOfParameter = 74 ; - } -#Vertical integral of eastward total energy flux -'p75.162' = { - table2Version = 162 ; - indicatorOfParameter = 75 ; - } -#Vertical integral of northward total energy flux -'p76.162' = { - table2Version = 162 ; - indicatorOfParameter = 76 ; - } -#Vertical integral of eastward ozone flux -'p77.162' = { - table2Version = 162 ; - indicatorOfParameter = 77 ; - } -#Vertical integral of northward ozone flux -'p78.162' = { - table2Version = 162 ; - indicatorOfParameter = 78 ; - } -#Vertical integral of divergence of mass flux -'p81.162' = { - table2Version = 162 ; - indicatorOfParameter = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'p82.162' = { - table2Version = 162 ; - indicatorOfParameter = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'p83.162' = { - table2Version = 162 ; - indicatorOfParameter = 83 ; - } -#Vertical integral of divergence of moisture flux -'p84.162' = { - table2Version = 162 ; - indicatorOfParameter = 84 ; - } -#Vertical integral of divergence of geopotential flux -'p85.162' = { - table2Version = 162 ; - indicatorOfParameter = 85 ; - } -#Vertical integral of divergence of total energy flux -'p86.162' = { - table2Version = 162 ; - indicatorOfParameter = 86 ; - } -#Vertical integral of divergence of ozone flux -'p87.162' = { - table2Version = 162 ; - indicatorOfParameter = 87 ; - } -#Tendency of short wave radiation -'p100.162' = { - table2Version = 162 ; - indicatorOfParameter = 100 ; - } -#Tendency of long wave radiation -'p101.162' = { - table2Version = 162 ; - indicatorOfParameter = 101 ; - } -#Tendency of clear sky short wave radiation -'p102.162' = { - table2Version = 162 ; - indicatorOfParameter = 102 ; - } -#Tendency of clear sky long wave radiation -'p103.162' = { - table2Version = 162 ; - indicatorOfParameter = 103 ; - } -#Updraught mass flux -'p104.162' = { - table2Version = 162 ; - indicatorOfParameter = 104 ; - } -#Downdraught mass flux -'p105.162' = { - table2Version = 162 ; - indicatorOfParameter = 105 ; - } -#Updraught detrainment rate -'p106.162' = { - table2Version = 162 ; - indicatorOfParameter = 106 ; - } -#Downdraught detrainment rate -'p107.162' = { - table2Version = 162 ; - indicatorOfParameter = 107 ; - } -#Total precipitation flux -'p108.162' = { - table2Version = 162 ; - indicatorOfParameter = 108 ; - } -#Turbulent diffusion coefficient for heat -'p109.162' = { - table2Version = 162 ; - indicatorOfParameter = 109 ; - } -#Tendency of temperature due to physics -'p110.162' = { - table2Version = 162 ; - indicatorOfParameter = 110 ; - } -#Tendency of specific humidity due to physics -'p111.162' = { - table2Version = 162 ; - indicatorOfParameter = 111 ; - } -#Tendency of u component due to physics -'p112.162' = { - table2Version = 162 ; - indicatorOfParameter = 112 ; - } -#Tendency of v component due to physics -'p113.162' = { - table2Version = 162 ; - indicatorOfParameter = 113 ; - } -#Variance of geopotential -'p206.162' = { - table2Version = 162 ; - indicatorOfParameter = 206 ; - } -#Covariance of geopotential/temperature -'p207.162' = { - table2Version = 162 ; - indicatorOfParameter = 207 ; - } -#Variance of temperature -'p208.162' = { - table2Version = 162 ; - indicatorOfParameter = 208 ; - } -#Covariance of geopotential/specific humidity -'p209.162' = { - table2Version = 162 ; - indicatorOfParameter = 209 ; - } -#Covariance of temperature/specific humidity -'p210.162' = { - table2Version = 162 ; - indicatorOfParameter = 210 ; - } -#Variance of specific humidity -'p211.162' = { - table2Version = 162 ; - indicatorOfParameter = 211 ; - } -#Covariance of u component/geopotential -'p212.162' = { - table2Version = 162 ; - indicatorOfParameter = 212 ; - } -#Covariance of u component/temperature -'p213.162' = { - table2Version = 162 ; - indicatorOfParameter = 213 ; - } -#Covariance of u component/specific humidity -'p214.162' = { - table2Version = 162 ; - indicatorOfParameter = 214 ; - } -#Variance of u component -'p215.162' = { - table2Version = 162 ; - indicatorOfParameter = 215 ; - } -#Covariance of v component/geopotential -'p216.162' = { - table2Version = 162 ; - indicatorOfParameter = 216 ; - } -#Covariance of v component/temperature -'p217.162' = { - table2Version = 162 ; - indicatorOfParameter = 217 ; - } -#Covariance of v component/specific humidity -'p218.162' = { - table2Version = 162 ; - indicatorOfParameter = 218 ; - } -#Covariance of v component/u component -'p219.162' = { - table2Version = 162 ; - indicatorOfParameter = 219 ; - } -#Variance of v component -'p220.162' = { - table2Version = 162 ; - indicatorOfParameter = 220 ; - } -#Covariance of omega/geopotential -'p221.162' = { - table2Version = 162 ; - indicatorOfParameter = 221 ; - } -#Covariance of omega/temperature -'p222.162' = { - table2Version = 162 ; - indicatorOfParameter = 222 ; - } -#Covariance of omega/specific humidity -'p223.162' = { - table2Version = 162 ; - indicatorOfParameter = 223 ; - } -#Covariance of omega/u component -'p224.162' = { - table2Version = 162 ; - indicatorOfParameter = 224 ; - } -#Covariance of omega/v component -'p225.162' = { - table2Version = 162 ; - indicatorOfParameter = 225 ; - } -#Variance of omega -'p226.162' = { - table2Version = 162 ; - indicatorOfParameter = 226 ; - } -#Variance of surface pressure -'p227.162' = { - table2Version = 162 ; - indicatorOfParameter = 227 ; - } -#Variance of relative humidity -'p229.162' = { - table2Version = 162 ; - indicatorOfParameter = 229 ; - } -#Covariance of u component/ozone -'p230.162' = { - table2Version = 162 ; - indicatorOfParameter = 230 ; - } -#Covariance of v component/ozone -'p231.162' = { - table2Version = 162 ; - indicatorOfParameter = 231 ; - } -#Covariance of omega/ozone -'p232.162' = { - table2Version = 162 ; - indicatorOfParameter = 232 ; - } -#Variance of ozone -'p233.162' = { - table2Version = 162 ; - indicatorOfParameter = 233 ; - } -#Indicates a missing value -'p255.162' = { - table2Version = 162 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'tsw' = { - table2Version = 170 ; - indicatorOfParameter = 149 ; - } -#Soil wetness level 2 -'swl2' = { - table2Version = 170 ; - indicatorOfParameter = 171 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 170 ; - indicatorOfParameter = 179 ; - } -#Stream function anomaly -'strfa' = { - table2Version = 171 ; - indicatorOfParameter = 1 ; - } -#Velocity potential anomaly -'vpota' = { - table2Version = 171 ; - indicatorOfParameter = 2 ; - } -#Potential temperature anomaly -'pta' = { - table2Version = 171 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - table2Version = 171 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - table2Version = 171 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - table2Version = 171 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - table2Version = 171 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - table2Version = 171 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - table2Version = 171 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - table2Version = 171 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - table2Version = 171 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - table2Version = 171 ; - indicatorOfParameter = 23 ; - } -#Lake cover anomaly -'cla' = { - table2Version = 171 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - table2Version = 171 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - table2Version = 171 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - table2Version = 171 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - table2Version = 171 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - table2Version = 171 ; - indicatorOfParameter = 31 ; - } -#Snow albedo anomaly -'asna' = { - table2Version = 171 ; - indicatorOfParameter = 32 ; - } -#Snow density anomaly -'rsna' = { - table2Version = 171 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - table2Version = 171 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - table2Version = 171 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - table2Version = 171 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - table2Version = 171 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - table2Version = 171 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - table2Version = 171 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - table2Version = 171 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - table2Version = 171 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - table2Version = 171 ; - indicatorOfParameter = 42 ; - } -#Soil type anomaly -'slta' = { - table2Version = 171 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation anomaly -'esa' = { - table2Version = 171 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'smlta' = { - table2Version = 171 ; - indicatorOfParameter = 45 ; - } -#Solar duration anomaly -'sdura' = { - table2Version = 171 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - table2Version = 171 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - table2Version = 171 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust anomaly -'fga10' = { - table2Version = 171 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - table2Version = 171 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential anomaly -'monta' = { - table2Version = 171 ; - indicatorOfParameter = 53 ; - } -#Pressure anomaly -'pa' = { - table2Version = 171 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mean2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - table2Version = 171 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - table2Version = 171 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - table2Version = 171 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - table2Version = 171 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity anomaly -'pva' = { - table2Version = 171 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - table2Version = 171 ; - indicatorOfParameter = 61 ; - } -#Observation count anomaly -'obcta' = { - table2Version = 171 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - table2Version = 171 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - table2Version = 171 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - table2Version = 171 ; - indicatorOfParameter = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - table2Version = 171 ; - indicatorOfParameter = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - table2Version = 171 ; - indicatorOfParameter = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - table2Version = 171 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.171' = { - table2Version = 171 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - table2Version = 171 ; - indicatorOfParameter = 127 ; - } -#Budget values anomaly -'bva' = { - table2Version = 171 ; - indicatorOfParameter = 128 ; - } -#Geopotential anomaly -'za' = { - table2Version = 171 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly -'ta' = { - table2Version = 171 ; - indicatorOfParameter = 130 ; - } -#U component of wind anomaly -'ua' = { - table2Version = 171 ; - indicatorOfParameter = 131 ; - } -#V component of wind anomaly -'va' = { - table2Version = 171 ; - indicatorOfParameter = 132 ; - } -#Specific humidity anomaly -'qa' = { - table2Version = 171 ; - indicatorOfParameter = 133 ; - } -#Surface pressure anomaly -'spa' = { - table2Version = 171 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - table2Version = 171 ; - indicatorOfParameter = 135 ; - } -#Total column water anomaly -'tcwa' = { - table2Version = 171 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - table2Version = 171 ; - indicatorOfParameter = 137 ; - } -#Relative vorticity anomaly -'voa' = { - table2Version = 171 ; - indicatorOfParameter = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - table2Version = 171 ; - indicatorOfParameter = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - table2Version = 171 ; - indicatorOfParameter = 140 ; - } -#Snow depth anomaly -'sda' = { - table2Version = 171 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - table2Version = 171 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - table2Version = 171 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - table2Version = 171 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - table2Version = 171 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - table2Version = 171 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - table2Version = 171 ; - indicatorOfParameter = 147 ; - } -#Charnock anomaly -'chnka' = { - table2Version = 171 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation anomaly -'snra' = { - table2Version = 171 ; - indicatorOfParameter = 149 ; - } -#Top net radiation anomaly -'tnra' = { - table2Version = 171 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - table2Version = 171 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - table2Version = 171 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - table2Version = 171 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - table2Version = 171 ; - indicatorOfParameter = 154 ; - } -#Relative divergence anomaly -'da' = { - table2Version = 171 ; - indicatorOfParameter = 155 ; - } -#Height anomaly -'gha' = { - table2Version = 171 ; - indicatorOfParameter = 156 ; - } -#Relative humidity anomaly -'ra' = { - table2Version = 171 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - table2Version = 171 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height anomaly -'blha' = { - table2Version = 171 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - table2Version = 171 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - table2Version = 171 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - table2Version = 171 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - table2Version = 171 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - table2Version = 171 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component anomaly -'ua10' = { - table2Version = 171 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component anomaly -'va10' = { - table2Version = 171 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature anomaly -'t2a' = { - table2Version = 171 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature anomaly -'d2a' = { - table2Version = 171 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - table2Version = 171 ; - indicatorOfParameter = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - table2Version = 171 ; - indicatorOfParameter = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - table2Version = 171 ; - indicatorOfParameter = 171 ; - } -#Surface roughness anomaly -'sra' = { - table2Version = 171 ; - indicatorOfParameter = 173 ; - } -#Albedo anomaly -'ala' = { - table2Version = 171 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - table2Version = 171 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - table2Version = 171 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - table2Version = 171 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - table2Version = 171 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - table2Version = 171 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - table2Version = 171 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - table2Version = 171 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomaly -'ea' = { - table2Version = 171 ; - indicatorOfParameter = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - table2Version = 171 ; - indicatorOfParameter = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - table2Version = 171 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - table2Version = 171 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - table2Version = 171 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - table2Version = 171 ; - indicatorOfParameter = 187 ; - } -#High cloud cover anomaly -'hcca' = { - table2Version = 171 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - table2Version = 171 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - table2Version = 171 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - table2Version = 171 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - table2Version = 171 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - table2Version = 171 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - table2Version = 171 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - table2Version = 171 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - table2Version = 171 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - table2Version = 171 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - table2Version = 171 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - table2Version = 171 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - table2Version = 171 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - table2Version = 171 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - table2Version = 171 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - table2Version = 171 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - table2Version = 171 ; - indicatorOfParameter = 204 ; - } -#Runoff anomaly -'roa' = { - table2Version = 171 ; - indicatorOfParameter = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - table2Version = 171 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed anomaly -'ua10' = { - table2Version = 171 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - table2Version = 171 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - table2Version = 171 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - table2Version = 171 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - table2Version = 171 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomaly -'sia' = { - table2Version = 171 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - table2Version = 171 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - table2Version = 171 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - table2Version = 171 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - table2Version = 171 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - table2Version = 171 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - table2Version = 171 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - table2Version = 171 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - table2Version = 171 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - table2Version = 171 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - table2Version = 171 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - table2Version = 171 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - table2Version = 171 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - table2Version = 171 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - table2Version = 171 ; - indicatorOfParameter = 227 ; - } -#Total precipitation anomaly -'tpa' = { - table2Version = 171 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - table2Version = 171 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - table2Version = 171 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - table2Version = 171 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - table2Version = 171 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - table2Version = 171 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - table2Version = 171 ; - indicatorOfParameter = 234 ; - } -#Skin temperature anomaly -'skta' = { - table2Version = 171 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - table2Version = 171 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - table2Version = 171 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - table2Version = 171 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - table2Version = 171 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - table2Version = 171 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - table2Version = 171 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - table2Version = 171 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo anomaly -'fala' = { - table2Version = 171 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - table2Version = 171 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - table2Version = 171 ; - indicatorOfParameter = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - table2Version = 171 ; - indicatorOfParameter = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - table2Version = 171 ; - indicatorOfParameter = 247 ; - } -#Cloud cover anomaly -'cca' = { - table2Version = 171 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - table2Version = 171 ; - indicatorOfParameter = 249 ; - } -#Ice age anomaly -'iaa' = { - table2Version = 171 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - table2Version = 171 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - table2Version = 171 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - table2Version = 171 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - table2Version = 171 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'p255.171' = { - table2Version = 171 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation -'esrate' = { - table2Version = 172 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'p45.172' = { - table2Version = 172 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress -'p48.172' = { - table2Version = 172 ; - indicatorOfParameter = 48 ; - } -#Mean large-scale precipitation fraction -'mlspfr' = { - table2Version = 172 ; - indicatorOfParameter = 50 ; - } -#Mean large-scale precipitation rate -'mlsprt' = { - table2Version = 172 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate -'cprate' = { - table2Version = 172 ; - indicatorOfParameter = 143 ; - } -#Mean total snowfall rate -'mtsfr' = { - table2Version = 172 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - table2Version = 172 ; - indicatorOfParameter = 145 ; - } -#Mean surface sensible heat flux -'msshfl' = { - table2Version = 172 ; - indicatorOfParameter = 146 ; - } -#Mean surface latent heat flux -'mslhfl' = { - table2Version = 172 ; - indicatorOfParameter = 147 ; - } -#Mean surface net radiation flux -'msnrf' = { - table2Version = 172 ; - indicatorOfParameter = 149 ; - } -#Mean short-wave heating rate -'mswhr' = { - table2Version = 172 ; - indicatorOfParameter = 153 ; - } -#Mean long-wave heating rate -'mlwhr' = { - table2Version = 172 ; - indicatorOfParameter = 154 ; - } -#Mean surface downward solar radiation flux -'msdsrf' = { - table2Version = 172 ; - indicatorOfParameter = 169 ; - } -#Mean surface downward thermal radiation flux -'msdtrf' = { - table2Version = 172 ; - indicatorOfParameter = 175 ; - } -#Mean surface net solar radiation flux -'msnsrf' = { - table2Version = 172 ; - indicatorOfParameter = 176 ; - } -#Mean surface net thermal radiation flux -'msntrf' = { - table2Version = 172 ; - indicatorOfParameter = 177 ; - } -#Mean top net solar radiation flux -'mtnsrf' = { - table2Version = 172 ; - indicatorOfParameter = 178 ; - } -#Mean top net thermal radiation flux -'mtntrf' = { - table2Version = 172 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress rate of accumulation -'ewssra' = { - table2Version = 172 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress rate of accumulation -'nsssra' = { - table2Version = 172 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'erate' = { - table2Version = 172 ; - indicatorOfParameter = 182 ; - } -#Mean sunshine duration rate -'msdr' = { - table2Version = 172 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress -'p195.172' = { - table2Version = 172 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress -'p196.172' = { - table2Version = 172 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - table2Version = 172 ; - indicatorOfParameter = 197 ; - } -#Mean runoff rate -'mrort' = { - table2Version = 172 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky -'p208.172' = { - table2Version = 172 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'p209.172' = { - table2Version = 172 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'p210.172' = { - table2Version = 172 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'p211.172' = { - table2Version = 172 ; - indicatorOfParameter = 211 ; - } -#Solar insolation rate of accumulation -'soira' = { - table2Version = 172 ; - indicatorOfParameter = 212 ; - } -#Mean total precipitation rate -'tprate' = { - table2Version = 172 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall -'p239.172' = { - table2Version = 172 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'p240.172' = { - table2Version = 172 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'p255.172' = { - table2Version = 172 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation anomaly -'p44.173' = { - table2Version = 173 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'p45.173' = { - table2Version = 173 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'p48.173' = { - table2Version = 173 ; - indicatorOfParameter = 48 ; - } -#Large-scale precipitation fraction anomaly -'p50.173' = { - table2Version = 173 ; - indicatorOfParameter = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'lspara' = { - table2Version = 173 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate anomaly -'mcpra' = { - table2Version = 173 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - table2Version = 173 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'p145.173' = { - table2Version = 173 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'sshfara' = { - table2Version = 173 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'slhfara' = { - table2Version = 173 ; - indicatorOfParameter = 147 ; - } -#Surface net radiation anomaly -'p149.173' = { - table2Version = 173 ; - indicatorOfParameter = 149 ; - } -#Short-wave heating rate anomaly -'p153.173' = { - table2Version = 173 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'p154.173' = { - table2Version = 173 ; - indicatorOfParameter = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'ssrdara' = { - table2Version = 173 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'strdara' = { - table2Version = 173 ; - indicatorOfParameter = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'ssrara' = { - table2Version = 173 ; - indicatorOfParameter = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'strara' = { - table2Version = 173 ; - indicatorOfParameter = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'tsrara' = { - table2Version = 173 ; - indicatorOfParameter = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'ttrara' = { - table2Version = 173 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'ewssara' = { - table2Version = 173 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'nsssara' = { - table2Version = 173 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomalous rate of accumulation -'evara' = { - table2Version = 173 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - table2Version = 173 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'p195.173' = { - table2Version = 173 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'p196.173' = { - table2Version = 173 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'p197.173' = { - table2Version = 173 ; - indicatorOfParameter = 197 ; - } -#Runoff anomalous rate of accumulation -'roara' = { - table2Version = 173 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky anomaly -'p208.173' = { - table2Version = 173 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'p209.173' = { - table2Version = 173 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'p210.173' = { - table2Version = 173 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'p211.173' = { - table2Version = 173 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomalous rate of accumulation -'soiara' = { - table2Version = 173 ; - indicatorOfParameter = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - table2Version = 173 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall anomaly -'p239.173' = { - table2Version = 173 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'p240.173' = { - table2Version = 173 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'p255.173' = { - table2Version = 173 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'p6.174' = { - table2Version = 174 ; - indicatorOfParameter = 6 ; - } -#Surface runoff -'sro' = { - table2Version = 174 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'ssro' = { - table2Version = 174 ; - indicatorOfParameter = 9 ; - } -#Fraction of sea-ice in sea -'p31.174' = { - table2Version = 174 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'p34.174' = { - table2Version = 174 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'p39.174' = { - table2Version = 174 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'p40.174' = { - table2Version = 174 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'p41.174' = { - table2Version = 174 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'p42.174' = { - table2Version = 174 ; - indicatorOfParameter = 42 ; - } -#10 metre wind gust in the last 24 hours -'p49.174' = { - table2Version = 174 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.174' = { - table2Version = 174 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'p83.174' = { - table2Version = 174 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'p85.174' = { - table2Version = 174 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'p86.174' = { - table2Version = 174 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'p87.174' = { - table2Version = 174 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'p88.174' = { - table2Version = 174 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'p89.174' = { - table2Version = 174 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'p90.174' = { - table2Version = 174 ; - indicatorOfParameter = 90 ; - } -#Mean sea surface temperature -'p94.174' = { - table2Version = 174 ; - indicatorOfParameter = 94 ; - } -#1.5m specific humidity -'p95.174' = { - table2Version = 174 ; - indicatorOfParameter = 95 ; - } -#Sea-ice thickness -'sithick' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Liquid water potential temperature -'p99.174' = { - table2Version = 174 ; - indicatorOfParameter = 99 ; - } -#Ocean ice concentration -'p110.174' = { - table2Version = 174 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'p111.174' = { - table2Version = 174 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'p139.174' = { - table2Version = 174 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.174' = { - table2Version = 174 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'p167.174' = { - table2Version = 174 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'p168.174' = { - table2Version = 174 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'p170.174' = { - table2Version = 174 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'p175.174' = { - table2Version = 174 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'p183.174' = { - table2Version = 174 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.174' = { - table2Version = 174 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.174' = { - table2Version = 174 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'p236.174' = { - table2Version = 174 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'p255.174' = { - table2Version = 174 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'p6.175' = { - table2Version = 175 ; - indicatorOfParameter = 6 ; - } -#Fraction of sea-ice in sea -'p31.175' = { - table2Version = 175 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'p34.175' = { - table2Version = 175 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'p39.175' = { - table2Version = 175 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'p40.175' = { - table2Version = 175 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'p41.175' = { - table2Version = 175 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'p42.175' = { - table2Version = 175 ; - indicatorOfParameter = 42 ; - } -#10m wind gust in the last 24 hours -'p49.175' = { - table2Version = 175 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.175' = { - table2Version = 175 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'p83.175' = { - table2Version = 175 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'p85.175' = { - table2Version = 175 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'p86.175' = { - table2Version = 175 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'p87.175' = { - table2Version = 175 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'p88.175' = { - table2Version = 175 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'p89.175' = { - table2Version = 175 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'p90.175' = { - table2Version = 175 ; - indicatorOfParameter = 90 ; - } -#Ocean ice concentration -'p110.175' = { - table2Version = 175 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'p111.175' = { - table2Version = 175 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'p139.175' = { - table2Version = 175 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.175' = { - table2Version = 175 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'p167.175' = { - table2Version = 175 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'p168.175' = { - table2Version = 175 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'p170.175' = { - table2Version = 175 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'p175.175' = { - table2Version = 175 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'p183.175' = { - table2Version = 175 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.175' = { - table2Version = 175 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.175' = { - table2Version = 175 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'p236.175' = { - table2Version = 175 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'p255.175' = { - table2Version = 175 ; - indicatorOfParameter = 255 ; - } -#Total soil wetness -'tsw' = { - table2Version = 180 ; - indicatorOfParameter = 149 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 180 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 180 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 180 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 180 ; - indicatorOfParameter = 179 ; - } -#Snow depth -'sdsien' = { - table2Version = 190 ; - indicatorOfParameter = 141 ; - } -#Field capacity -'cap' = { - table2Version = 190 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'wiltsien' = { - table2Version = 190 ; - indicatorOfParameter = 171 ; - } -#Roughness length -'sr' = { - table2Version = 190 ; - indicatorOfParameter = 173 ; - } -#Total soil moisture -'tsm' = { - table2Version = 190 ; - indicatorOfParameter = 229 ; - } -#2 metre dewpoint temperature difference -'ddiff2' = { - table2Version = 200 ; - indicatorOfParameter = 168 ; - } -#downward shortwave radiant flux density -'p1.201' = { - table2Version = 201 ; - indicatorOfParameter = 1 ; - } -#upward shortwave radiant flux density -'p2.201' = { - table2Version = 201 ; - indicatorOfParameter = 2 ; - } -#downward longwave radiant flux density -'p3.201' = { - table2Version = 201 ; - indicatorOfParameter = 3 ; - } -#upward longwave radiant flux density -'p4.201' = { - table2Version = 201 ; - indicatorOfParameter = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - } -#net shortwave flux -'p6.201' = { - table2Version = 201 ; - indicatorOfParameter = 6 ; - } -#net longwave flux -'p7.201' = { - table2Version = 201 ; - indicatorOfParameter = 7 ; - } -#total net radiative flux density -'p8.201' = { - table2Version = 201 ; - indicatorOfParameter = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'p9.201' = { - table2Version = 201 ; - indicatorOfParameter = 9 ; - } -#upw shortw radiant flux density, cloudy part -'p10.201' = { - table2Version = 201 ; - indicatorOfParameter = 10 ; - } -#downw longw radiant flux density, cloudfree part -'p11.201' = { - table2Version = 201 ; - indicatorOfParameter = 11 ; - } -#upw longw radiant flux density, cloudy part -'p12.201' = { - table2Version = 201 ; - indicatorOfParameter = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } -#total radiative heating rate -'p15.201' = { - table2Version = 201 ; - indicatorOfParameter = 15 ; - } -#soil heat flux, surface -'p16.201' = { - table2Version = 201 ; - indicatorOfParameter = 16 ; - } -#soil heat flux, bottom of layer -'p17.201' = { - table2Version = 201 ; - indicatorOfParameter = 17 ; - } -#fractional cloud cover -'clc' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } -#cloud cover, grid scale -'p30.201' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } -#specific cloud water content -'qc' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } -#cloud water content, grid scale, vert integrated -'p32.201' = { - table2Version = 201 ; - indicatorOfParameter = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } -#cloud ice content, grid scale, vert integrated -'p34.201' = { - table2Version = 201 ; - indicatorOfParameter = 34 ; - } -#specific rainwater content, grid scale -'p35.201' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } -#specific snow content, grid scale -'p36.201' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } -#specific rainwater content, gs, vert. integrated -'p37.201' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } -#specific snow content, gs, vert. integrated -'p38.201' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } -#total column water -'twater' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } -#vert. integral of divergence of tot. water content -'p42.201' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - table2Version = 201 ; - indicatorOfParameter = 50 ; - } -#cloud cover CH (0..8) -'p51.201' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'p52.201' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'p53.201' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#total cloud cover (0..8) -'p54.201' = { - table2Version = 201 ; - indicatorOfParameter = 54 ; - } -#fog (0..8) -'p55.201' = { - table2Version = 201 ; - indicatorOfParameter = 55 ; - } -#fog -'p56.201' = { - table2Version = 201 ; - indicatorOfParameter = 56 ; - } -#cloud cover, convective cirrus -'p60.201' = { - table2Version = 201 ; - indicatorOfParameter = 60 ; - } -#specific cloud water content, convective clouds -'p61.201' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } -#cloud water content, conv clouds, vert integrated -'p62.201' = { - table2Version = 201 ; - indicatorOfParameter = 62 ; - } -#specific cloud ice content, convective clouds -'p63.201' = { - table2Version = 201 ; - indicatorOfParameter = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'p64.201' = { - table2Version = 201 ; - indicatorOfParameter = 64 ; - } -#convective mass flux -'p65.201' = { - table2Version = 201 ; - indicatorOfParameter = 65 ; - } -#Updraft velocity, convection -'p66.201' = { - table2Version = 201 ; - indicatorOfParameter = 66 ; - } -#entrainment parameter, convection -'p67.201' = { - table2Version = 201 ; - indicatorOfParameter = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - } -#convective layers (00...77) (BKE) -'p70.201' = { - table2Version = 201 ; - indicatorOfParameter = 70 ; - } -#KO-index -'p71.201' = { - table2Version = 201 ; - indicatorOfParameter = 71 ; - } -#convection base index -'bas_con' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - } -#convection top index -'top_con' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - } -#convective temperature tendency -'dt_con' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } -#convective tendency of total heat -'p76.201' = { - table2Version = 201 ; - indicatorOfParameter = 76 ; - } -#convective tendency of total water -'p77.201' = { - table2Version = 201 ; - indicatorOfParameter = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } -#convective vorticity tendency -'p80.201' = { - table2Version = 201 ; - indicatorOfParameter = 80 ; - } -#convective divergence tendency -'p81.201' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - } -#dry convection top index -'p83.201' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } -#deviation of pressure from reference value -'pp' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } -#coefficient of horizontal diffusion -'p150.201' = { - table2Version = 201 ; - indicatorOfParameter = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - } -#water content of interception store -'w_i' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } -#snow temperature -'t_snow' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } -#ice surface temperature -'t_ice' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } -#convective available potential energy -'cape_con' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } -#Indicates a missing value -'p255.201' = { - table2Version = 201 ; - indicatorOfParameter = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - table2Version = 210 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - table2Version = 210 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - table2Version = 210 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - table2Version = 210 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - table2Version = 210 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - table2Version = 210 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - table2Version = 210 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - table2Version = 210 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - table2Version = 210 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - table2Version = 210 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - table2Version = 210 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - table2Version = 210 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - table2Version = 210 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - table2Version = 210 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'aerdep' = { - table2Version = 210 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'aerlts' = { - table2Version = 210 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'aerscc' = { - table2Version = 210 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'co2' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'ch4' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'n2o' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#CO2 column-mean molar fraction -'tcco2' = { - table2Version = 210 ; - indicatorOfParameter = 64 ; - } -#CH4 column-mean molar fraction -'tcch4' = { - table2Version = 210 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - table2Version = 210 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - table2Version = 210 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - table2Version = 210 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - table2Version = 210 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - table2Version = 210 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2fire' = { - table2Version = 210 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofire' = { - table2Version = 210 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'ch4fire' = { - table2Version = 210 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfire' = { - table2Version = 210 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'h2fire' = { - table2Version = 210 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfire' = { - table2Version = 210 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofire' = { - table2Version = 210 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5fire' = { - table2Version = 210 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfire' = { - table2Version = 210 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfire' = { - table2Version = 210 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfire' = { - table2Version = 210 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'bcfire' = { - table2Version = 210 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - table2Version = 210 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - table2Version = 210 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - table2Version = 210 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - table2Version = 210 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - table2Version = 210 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - table2Version = 210 ; - indicatorOfParameter = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - table2Version = 210 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'frpfire' = { - table2Version = 210 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'crfire' = { - table2Version = 210 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'no2' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'so2' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'co' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'hcho' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'nox' = { - table2Version = 210 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - table2Version = 210 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - table2Version = 210 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - table2Version = 210 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - table2Version = 210 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - table2Version = 210 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - table2Version = 210 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - table2Version = 210 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - table2Version = 210 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - table2Version = 210 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - table2Version = 210 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - table2Version = 210 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - table2Version = 210 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - table2Version = 210 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - table2Version = 210 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - table2Version = 210 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - table2Version = 210 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - table2Version = 210 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - table2Version = 210 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - table2Version = 210 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - table2Version = 210 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - table2Version = 210 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - table2Version = 210 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - table2Version = 210 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - table2Version = 210 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - table2Version = 210 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - table2Version = 210 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - table2Version = 210 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - table2Version = 210 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - table2Version = 210 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - table2Version = 210 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - table2Version = 210 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - table2Version = 210 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - table2Version = 210 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - table2Version = 210 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - table2Version = 210 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - table2Version = 210 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - table2Version = 210 ; - indicatorOfParameter = 166 ; - } -#Radon -'ra' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - table2Version = 210 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'tcra' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - table2Version = 210 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - table2Version = 210 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'go3' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - table2Version = 210 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - table2Version = 210 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - table2Version = 210 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - table2Version = 210 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - table2Version = 210 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - table2Version = 210 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - table2Version = 210 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - table2Version = 210 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - table2Version = 210 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - table2Version = 210 ; - indicatorOfParameter = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - table2Version = 211 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - table2Version = 211 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - table2Version = 211 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - table2Version = 211 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - table2Version = 211 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - table2Version = 211 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - table2Version = 211 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - table2Version = 211 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - table2Version = 211 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - table2Version = 211 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - table2Version = 211 ; - indicatorOfParameter = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - table2Version = 211 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - table2Version = 211 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - table2Version = 211 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - table2Version = 211 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - table2Version = 211 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - table2Version = 211 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - table2Version = 211 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - table2Version = 211 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - table2Version = 211 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - table2Version = 211 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - table2Version = 211 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - table2Version = 211 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - table2Version = 211 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - table2Version = 211 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - table2Version = 211 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - table2Version = 211 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - table2Version = 211 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - table2Version = 211 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - table2Version = 211 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - table2Version = 211 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - table2Version = 211 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - table2Version = 211 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - table2Version = 211 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - table2Version = 211 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - table2Version = 211 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - table2Version = 211 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - table2Version = 211 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - table2Version = 211 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - table2Version = 211 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - table2Version = 211 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - table2Version = 211 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - table2Version = 211 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - table2Version = 211 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'aersccdiff' = { - table2Version = 211 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'co2diff' = { - table2Version = 211 ; - indicatorOfParameter = 61 ; - } -#Methane -'ch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'n2odiff' = { - table2Version = 211 ; - indicatorOfParameter = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - table2Version = 211 ; - indicatorOfParameter = 64 ; - } -#Total column Methane -'tcch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - table2Version = 211 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - table2Version = 211 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - table2Version = 211 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'ch4firediff' = { - table2Version = 211 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'h2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5firediff' = { - table2Version = 211 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'bcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - table2Version = 211 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - table2Version = 211 ; - indicatorOfParameter = 97 ; - } -#Wildfire observed area -'oafirediff' = { - table2Version = 211 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - table2Version = 211 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'so2diff' = { - table2Version = 211 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'codiff' = { - table2Version = 211 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'hchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - table2Version = 211 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - table2Version = 211 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - table2Version = 211 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - table2Version = 211 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - table2Version = 211 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - table2Version = 211 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - table2Version = 211 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - table2Version = 211 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - table2Version = 211 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - table2Version = 211 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - table2Version = 211 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - table2Version = 211 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - table2Version = 211 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - table2Version = 211 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - table2Version = 211 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - table2Version = 211 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - table2Version = 211 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - table2Version = 211 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - table2Version = 211 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - table2Version = 211 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - table2Version = 211 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - table2Version = 211 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - table2Version = 211 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - table2Version = 211 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - table2Version = 211 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - table2Version = 211 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - table2Version = 211 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - table2Version = 211 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - table2Version = 211 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - table2Version = 211 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - table2Version = 211 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - table2Version = 211 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - table2Version = 211 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - table2Version = 211 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - table2Version = 211 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - table2Version = 211 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - table2Version = 211 ; - indicatorOfParameter = 166 ; - } -#Radon -'radiff' = { - table2Version = 211 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - table2Version = 211 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'tcradiff' = { - table2Version = 211 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - table2Version = 211 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'go3diff' = { - table2Version = 211 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - table2Version = 211 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - table2Version = 211 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - table2Version = 211 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - table2Version = 211 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - table2Version = 211 ; - indicatorOfParameter = 216 ; - } -#Total precipitation observation count -'tpoc' = { - table2Version = 220 ; - indicatorOfParameter = 228 ; - } -#Convective inhibition -'cin' = { - table2Version = 228 ; - indicatorOfParameter = 1 ; - } -#Orography -'orog' = { - table2Version = 228 ; - indicatorOfParameter = 2 ; - } -#Friction velocity -'zust' = { - table2Version = 228 ; - indicatorOfParameter = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - table2Version = 228 ; - indicatorOfParameter = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - table2Version = 228 ; - indicatorOfParameter = 5 ; - } -#Mean total cloud cover -'meantcc' = { - table2Version = 228 ; - indicatorOfParameter = 6 ; - } -#Lake depth -'dl' = { - table2Version = 228 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - table2Version = 228 ; - indicatorOfParameter = 8 ; - } -#Lake mix-layer depth -'lmld' = { - table2Version = 228 ; - indicatorOfParameter = 9 ; - } -#Lake bottom temperature -'lblt' = { - table2Version = 228 ; - indicatorOfParameter = 10 ; - } -#Lake total layer temperature -'ltlt' = { - table2Version = 228 ; - indicatorOfParameter = 11 ; - } -#Lake shape factor -'lshf' = { - table2Version = 228 ; - indicatorOfParameter = 12 ; - } -#Lake ice temperature -'lict' = { - table2Version = 228 ; - indicatorOfParameter = 13 ; - } -#Lake ice depth -'licd' = { - table2Version = 228 ; - indicatorOfParameter = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - table2Version = 228 ; - indicatorOfParameter = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - table2Version = 228 ; - indicatorOfParameter = 16 ; - } -#Duct base height -'dctb' = { - table2Version = 228 ; - indicatorOfParameter = 17 ; - } -#Trapping layer base height -'tplb' = { - table2Version = 228 ; - indicatorOfParameter = 18 ; - } -#Trapping layer top height -'tplt' = { - table2Version = 228 ; - indicatorOfParameter = 19 ; - } -#Soil Moisture -'sm' = { - table2Version = 228 ; - indicatorOfParameter = 39 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - table2Version = 228 ; - indicatorOfParameter = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - table2Version = 228 ; - indicatorOfParameter = 132 ; - } -#Soil Temperature -'st' = { - table2Version = 228 ; - indicatorOfParameter = 139 ; - } -#Snow depth water equivalent -'sd' = { - table2Version = 228 ; - indicatorOfParameter = 141 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 228 ; - indicatorOfParameter = 144 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 228 ; - indicatorOfParameter = 164 ; - } -#Field capacity -'cap' = { - table2Version = 228 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'wilt' = { - table2Version = 228 ; - indicatorOfParameter = 171 ; - } -#Total Precipitation -'tp' = { - table2Version = 228 ; - indicatorOfParameter = 228 ; - } -#Snow evaporation (variable resolution) -'esvar' = { - table2Version = 230 ; - indicatorOfParameter = 44 ; - } -#Snowmelt (variable resolution) -'smltvar' = { - table2Version = 230 ; - indicatorOfParameter = 45 ; - } -#Solar duration (variable resolution) -'sdurvar' = { - table2Version = 230 ; - indicatorOfParameter = 46 ; - } -#Downward UV radiation at the surface (variable resolution) -'uvbvar' = { - table2Version = 230 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface (variable resolution) -'parvar' = { - table2Version = 230 ; - indicatorOfParameter = 58 ; - } -#Stratiform precipitation (Large-scale precipitation) (variable resolution) -'lspvar' = { - table2Version = 230 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation (variable resolution) -'cpvar' = { - table2Version = 230 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) (variable resolution) -'sfvar' = { - table2Version = 230 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation (variable resolution) -'bldvar' = { - table2Version = 230 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux (variable resolution) -'sshfvar' = { - table2Version = 230 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux (variable resolution) -'slhfvar' = { - table2Version = 230 ; - indicatorOfParameter = 147 ; - } -#Surface solar radiation downwards (variable resolution) -'ssrdvar' = { - table2Version = 230 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards (variable resolution) -'strdvar' = { - table2Version = 230 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation (variable resolution) -'ssrvar' = { - table2Version = 230 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation (variable resolution) -'strvar' = { - table2Version = 230 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation (variable resolution) -'tsrvar' = { - table2Version = 230 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation (variable resolution) -'ttrvar' = { - table2Version = 230 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress (variable resolution) -'ewssvar' = { - table2Version = 230 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress (variable resolution) -'nsssvar' = { - table2Version = 230 ; - indicatorOfParameter = 181 ; - } -#Evaporation (variable resolution) -'evar' = { - table2Version = 230 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration (variable resolution) -'sundvar' = { - table2Version = 230 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress (variable resolution) -'lgwsvar' = { - table2Version = 230 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress (variable resolution) -'mgwsvar' = { - table2Version = 230 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation (variable resolution) -'gwdvar' = { - table2Version = 230 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content (variable resolution) -'srcvar' = { - table2Version = 230 ; - indicatorOfParameter = 198 ; - } -#Runoff (variable resolution) -'rovar' = { - table2Version = 230 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky (variable resolution) -'tsrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky (variable resolution) -'ttrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky (variable resolution) -'ssrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky (variable resolution) -'strcvar' = { - table2Version = 230 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation (variable resolution) -'tisrvar' = { - table2Version = 230 ; - indicatorOfParameter = 212 ; - } -#Surface temperature significance -'sts' = { - table2Version = 234 ; - indicatorOfParameter = 139 ; - } -#Mean sea level pressure significance -'msls' = { - table2Version = 234 ; - indicatorOfParameter = 151 ; - } -#2 metre temperature significance -'t2s' = { - table2Version = 234 ; - indicatorOfParameter = 167 ; - } -#Total precipitation significance -'tps' = { - table2Version = 234 ; - indicatorOfParameter = 228 ; - } -#U-component stokes drift -'ust' = { - table2Version = 140 ; - indicatorOfParameter = 215 ; - } -#V-component stokes drift -'vst' = { - table2Version = 140 ; - indicatorOfParameter = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - table2Version = 210 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2fire' = { - table2Version = 210 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfire' = { - table2Version = 210 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfire' = { - table2Version = 210 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4fire' = { - table2Version = 210 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfire' = { - table2Version = 210 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefire' = { - table2Version = 210 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfire' = { - table2Version = 210 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfire' = { - table2Version = 210 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofire' = { - table2Version = 210 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofire' = { - table2Version = 210 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofire' = { - table2Version = 210 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3fire' = { - table2Version = 210 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfire' = { - table2Version = 210 ; - indicatorOfParameter = 117 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8firediff' = { - table2Version = 211 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4firediff' = { - table2Version = 211 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6firediff' = { - table2Version = 211 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8firediff' = { - table2Version = 211 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefirediff' = { - table2Version = 211 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3firediff' = { - table2Version = 211 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 117 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - table2Version = 228 ; - indicatorOfParameter = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - table2Version = 228 ; - indicatorOfParameter = 136 ; - } -#100 metre U wind component -'u100' = { - table2Version = 228 ; - indicatorOfParameter = 246 ; - } -#100 metre V wind component -'v100' = { - table2Version = 228 ; - indicatorOfParameter = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - table2Version = 228 ; - indicatorOfParameter = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - table2Version = 228 ; - indicatorOfParameter = 254 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/name.def deleted file mode 100644 index 7323f9fc..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/name.def +++ /dev/null @@ -1,17676 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'Total precipitation of at least 1 mm' = { - table2Version = 131 ; - indicatorOfParameter = 60 ; - } -#Total precipitation of at least 5 mm -'Total precipitation of at least 5 mm' = { - table2Version = 131 ; - indicatorOfParameter = 61 ; - } -#Total precipitation of at least 10 mm -'Total precipitation of at least 10 mm' = { - table2Version = 131 ; - indicatorOfParameter = 62 ; - } -#Total precipitation of at least 20 mm -'Total precipitation of at least 20 mm' = { - table2Version = 131 ; - indicatorOfParameter = 63 ; - } -#Total precipitation of at least 40 mm -'Total precipitation of at least 40 mm' = { - table2Version = 131 ; - indicatorOfParameter = 82 ; - } -#Total precipitation of at least 60 mm -'Total precipitation of at least 60 mm' = { - table2Version = 131 ; - indicatorOfParameter = 83 ; - } -#Total precipitation of at least 80 mm -'Total precipitation of at least 80 mm' = { - table2Version = 131 ; - indicatorOfParameter = 84 ; - } -#Total precipitation of at least 100 mm -'Total precipitation of at least 100 mm' = { - table2Version = 131 ; - indicatorOfParameter = 85 ; - } -#Total precipitation of at least 150 mm -'Total precipitation of at least 150 mm' = { - table2Version = 131 ; - indicatorOfParameter = 86 ; - } -#Total precipitation of at least 200 mm -'Total precipitation of at least 200 mm' = { - table2Version = 131 ; - indicatorOfParameter = 87 ; - } -#Total precipitation of at least 300 mm -'Total precipitation of at least 300 mm' = { - table2Version = 131 ; - indicatorOfParameter = 88 ; - } -#Stream function -'Stream function' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature -'Equivalent potential temperature' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature -'Saturated equivalent potential temperature' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -#Soil sand fraction -'Soil sand fraction' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -#Soil clay fraction -'Soil clay fraction' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -#Surface runoff -'Surface runoff' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -#Wind speed -'Wind speed' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -#U component of divergent wind -'U component of divergent wind' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind -'V component of divergent wind' = { - table2Version = 128 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind -'U component of rotational wind' = { - table2Version = 128 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind -'V component of rotational wind' = { - table2Version = 128 ; - indicatorOfParameter = 14 ; - } -#UV visible albedo for direct radiation -'UV visible albedo for direct radiation' = { - table2Version = 128 ; - indicatorOfParameter = 15 ; - } -#UV visible albedo for diffuse radiation -'UV visible albedo for diffuse radiation' = { - table2Version = 128 ; - indicatorOfParameter = 16 ; - } -#Near IR albedo for direct radiation -'Near IR albedo for direct radiation' = { - table2Version = 128 ; - indicatorOfParameter = 17 ; - } -#Near IR albedo for diffuse radiation -'Near IR albedo for diffuse radiation' = { - table2Version = 128 ; - indicatorOfParameter = 18 ; - } -#Clear sky surface UV -'Clear sky surface UV' = { - table2Version = 128 ; - indicatorOfParameter = 19 ; - } -#Clear sky surface photosynthetically active radiation -'Clear sky surface photosynthetically active radiation' = { - table2Version = 128 ; - indicatorOfParameter = 20 ; - } -#Unbalanced component of temperature -'Unbalanced component of temperature' = { - table2Version = 128 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'Unbalanced component of logarithm of surface pressure' = { - table2Version = 128 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence -'Unbalanced component of divergence' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -#Lake cover -'Lake cover' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover -'Low vegetation cover' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover -'High vegetation cover' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation -'Type of low vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation -'Type of high vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -#Sea ice area fraction -'Sea ice area fraction' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Snow albedo -'Snow albedo' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -#Snow density -'Snow density' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature -'Sea surface temperature' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -#Ice temperature layer 1 -'Ice temperature layer 1' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -#Ice temperature layer 2 -'Ice temperature layer 2' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -#Ice temperature layer 3 -'Ice temperature layer 3' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -#Ice temperature layer 4 -'Ice temperature layer 4' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -#Soil type -'Soil type' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation -'Snow evaporation' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'Snowmelt' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -#Solar duration -'Solar duration' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation -'Direct solar radiation' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust since previous post-processing -'10 metre wind gust since previous post-processing' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction -'Large-scale precipitation fraction' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'Maximum temperature at 2 metres in the last 24 hours' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'Minimum temperature at 2 metres in the last 24 hours' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential -'Montgomery potential' = { - table2Version = 128 ; - indicatorOfParameter = 53 ; - } -#Pressure -'Pressure' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -#Mean temperature at 2 metres in the last 24 hours -'Mean temperature at 2 metres in the last 24 hours' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'Mean 2 metre dewpoint temperature in the last 24 hours' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface -'Downward UV radiation at the surface' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface -'Photosynthetically active radiation at the surface' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy -'Convective available potential energy' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -#Observation count -'Observation count' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -#Instantaneous surface solar radiation downwards -'Instantaneous surface solar radiation downwards' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -#Instantaneous surface thermal radiation downwards -'Instantaneous surface thermal radiation downwards' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -#Standard deviation of filtered subgrid orography -'Standard deviation of filtered subgrid orography' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -#Specific rain water content -'Specific rain water content' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -#Specific snow water content -'Specific snow water content' = { - table2Version = 128 ; - indicatorOfParameter = 76 ; - } -#Eta-coordinate vertical velocity -'Eta-coordinate vertical velocity' = { - table2Version = 128 ; - indicatorOfParameter = 77 ; - } -#Total column cloud liquid water -'Total column cloud liquid water' = { - table2Version = 128 ; - indicatorOfParameter = 78 ; - } -#Total column cloud ice water -'Total column cloud ice water' = { - table2Version = 128 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'Experimental product' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours -'10 metre wind gust in the last 6 hours' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -#Surface emissivity -'Surface emissivity' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide -'Atmospheric tide' = { - table2Version = 128 ; - indicatorOfParameter = 127 ; - } -#Atmospheric tide -'Atmospheric tide' = { - table2Version = 160 ; - indicatorOfParameter = 127 ; - } -#Budget values -'Budget values' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -#Budget values -'Budget values' = { - table2Version = 160 ; - indicatorOfParameter = 128 ; - } -#Geopotential -'Geopotential' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'Geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'Geopotential' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'Geopotential' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'Geopotential' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'Temperature' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'Temperature' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'Temperature' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'Temperature' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'Temperature' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'U component of wind' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'U component of wind' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'U component of wind' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'U component of wind' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'U component of wind' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'V component of wind' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'V component of wind' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'V component of wind' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'V component of wind' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'V component of wind' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water -'Total column water' = { - table2Version = 128 ; - indicatorOfParameter = 136 ; - } -#Total column water -'Total column water' = { - table2Version = 160 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour -'Total column water vapour' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'Total column water vapour' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'Snow depth' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'Snow depth' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'Snow depth' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'Snowfall' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'Snowfall' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Charnock -'Charnock' = { - table2Version = 128 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation -'Surface net radiation' = { - table2Version = 128 ; - indicatorOfParameter = 149 ; - } -#Top net radiation -'Top net radiation' = { - table2Version = 128 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure -'Logarithm of surface pressure' = { - table2Version = 128 ; - indicatorOfParameter = 152 ; - } -#Logarithm of surface pressure -'Logarithm of surface pressure' = { - table2Version = 160 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate -'Short-wave heating rate' = { - table2Version = 128 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate -'Long-wave heating rate' = { - table2Version = 128 ; - indicatorOfParameter = 154 ; - } -#Divergence -'Divergence' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'Divergence' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'Divergence' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'Divergence' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'Divergence' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'Tendency of surface pressure' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'Tendency of surface pressure' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height -'Boundary layer height' = { - table2Version = 128 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography -'Standard deviation of orography' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 160 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 180 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 190 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 160 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 180 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 190 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 160 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 180 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 190 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 160 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 180 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 190 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 -'Soil temperature level 2' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -#Soil temperature level 2 -'Soil temperature level 2' = { - table2Version = 160 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'Albedo' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'Albedo' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'Albedo' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - table2Version = 190 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'Top net solar radiation' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'Top net solar radiation' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'Top net solar radiation' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'Evaporation' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'Evaporation' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'Evaporation' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'Evaporation' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 -'Soil temperature level 3' = { - table2Version = 128 ; - indicatorOfParameter = 183 ; - } -#Soil temperature level 3 -'Soil temperature level 3' = { - table2Version = 160 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - table2Version = 128 ; - indicatorOfParameter = 184 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - table2Version = 170 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 186 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 187 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 187 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 188 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration -'Sunshine duration' = { - table2Version = 128 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance -'East-West component of sub-gridscale orographic variance' = { - table2Version = 128 ; - indicatorOfParameter = 190 ; - } -#East-West component of sub-gridscale orographic variance -'East-West component of sub-gridscale orographic variance' = { - table2Version = 160 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance -'North-South component of sub-gridscale orographic variance' = { - table2Version = 128 ; - indicatorOfParameter = 191 ; - } -#North-South component of sub-gridscale orographic variance -'North-South component of sub-gridscale orographic variance' = { - table2Version = 160 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'North-West/South-East component of sub-gridscale orographic variance' = { - table2Version = 128 ; - indicatorOfParameter = 192 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'North-West/South-East component of sub-gridscale orographic variance' = { - table2Version = 160 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'North-East/South-West component of sub-gridscale orographic variance' = { - table2Version = 128 ; - indicatorOfParameter = 193 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'North-East/South-West component of sub-gridscale orographic variance' = { - table2Version = 160 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 128 ; - indicatorOfParameter = 194 ; - } -#Eastward gravity wave surface stress -'Eastward gravity wave surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 195 ; - } -#Eastward gravity wave surface stress -'Eastward gravity wave surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 195 ; - } -#Northward gravity wave surface stress -'Northward gravity wave surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 196 ; - } -#Northward gravity wave surface stress -'Northward gravity wave surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - table2Version = 128 ; - indicatorOfParameter = 197 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - table2Version = 160 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content -'Skin reservoir content' = { - table2Version = 128 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction -'Vegetation fraction' = { - table2Version = 128 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography -'Variance of sub-gridscale orography' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -#Variance of sub-gridscale orography -'Variance of sub-gridscale orography' = { - table2Version = 160 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - table2Version = 170 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - table2Version = 190 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - table2Version = 170 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - table2Version = 190 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio -'Ozone mass mixing ratio' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights -'Precipitation analysis weights' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -#Precipitation analysis weights -'Precipitation analysis weights' = { - table2Version = 160 ; - indicatorOfParameter = 204 ; - } -#Runoff -'Runoff' = { - table2Version = 128 ; - indicatorOfParameter = 205 ; - } -#Runoff -'Runoff' = { - table2Version = 180 ; - indicatorOfParameter = 205 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed -'10 metre wind speed' = { - table2Version = 128 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - table2Version = 128 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - table2Version = 128 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation -'TOA incident solar radiation' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -#Vertically integrated moisture divergence -'Vertically integrated moisture divergence' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation -'Diabatic heating large-scale condensation' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency -'East-West gravity wave drag tendency' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency -'North-South gravity wave drag tendency' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind -'Convective tendency of zonal wind' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of zonal wind -'Convective tendency of zonal wind' = { - table2Version = 130 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind -'Convective tendency of meridional wind' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -#Convective tendency of meridional wind -'Convective tendency of meridional wind' = { - table2Version = 130 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - table2Version = 128 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - table2Version = 128 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - table2Version = 128 ; - indicatorOfParameter = 226 ; - } -#Tendency due to removal of negative humidity -'Tendency due to removal of negative humidity' = { - table2Version = 128 ; - indicatorOfParameter = 227 ; - } -#Tendency due to removal of negative humidity -'Tendency due to removal of negative humidity' = { - table2Version = 130 ; - indicatorOfParameter = 227 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 128 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 160 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 170 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 190 ; - indicatorOfParameter = 228 ; - } -#Instantaneous eastward turbulent surface stress -'Instantaneous eastward turbulent surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 229 ; - } -#Instantaneous eastward turbulent surface stress -'Instantaneous eastward turbulent surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 229 ; - } -#Instantaneous northward turbulent surface stress -'Instantaneous northward turbulent surface stress' = { - table2Version = 128 ; - indicatorOfParameter = 230 ; - } -#Instantaneous northward turbulent surface stress -'Instantaneous northward turbulent surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface sensible heat flux -'Instantaneous surface sensible heat flux' = { - table2Version = 128 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux -'Instantaneous moisture flux' = { - table2Version = 128 ; - indicatorOfParameter = 232 ; - } -#Instantaneous moisture flux -'Instantaneous moisture flux' = { - table2Version = 160 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity -'Apparent surface humidity' = { - table2Version = 128 ; - indicatorOfParameter = 233 ; - } -#Apparent surface humidity -'Apparent surface humidity' = { - table2Version = 160 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat -'Logarithm of surface roughness length for heat' = { - table2Version = 128 ; - indicatorOfParameter = 234 ; - } -#Logarithm of surface roughness length for heat -'Logarithm of surface roughness length for heat' = { - table2Version = 160 ; - indicatorOfParameter = 234 ; - } -#Skin temperature -'Skin temperature' = { - table2Version = 128 ; - indicatorOfParameter = 235 ; - } -#Skin temperature -'Skin temperature' = { - table2Version = 160 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 -'Soil temperature level 4' = { - table2Version = 128 ; - indicatorOfParameter = 236 ; - } -#Soil temperature level 4 -'Soil temperature level 4' = { - table2Version = 160 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 -'Soil wetness level 4' = { - table2Version = 128 ; - indicatorOfParameter = 237 ; - } -#Soil wetness level 4 -'Soil wetness level 4' = { - table2Version = 160 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer -'Temperature of snow layer' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'Temperature of snow layer' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 128 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall -'Large-scale snowfall' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency -'Accumulated cloud fraction tendency' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency -'Accumulated liquid water tendency' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - table2Version = 128 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness -'Forecast surface roughness' = { - table2Version = 128 ; - indicatorOfParameter = 244 ; - } -#Forecast surface roughness -'Forecast surface roughness' = { - table2Version = 160 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat -'Forecast logarithm of surface roughness for heat' = { - table2Version = 128 ; - indicatorOfParameter = 245 ; - } -#Forecast logarithm of surface roughness for heat -'Forecast logarithm of surface roughness for heat' = { - table2Version = 160 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content -'Specific cloud liquid water content' = { - table2Version = 128 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - table2Version = 128 ; - indicatorOfParameter = 247 ; - } -#Fraction of cloud cover -'Fraction of cloud cover' = { - table2Version = 128 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency -'Accumulated ice water tendency' = { - table2Version = 128 ; - indicatorOfParameter = 249 ; - } -#Ice age -'Ice age' = { - table2Version = 128 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - table2Version = 128 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - table2Version = 128 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - table2Version = 128 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - table2Version = 128 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 132 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 160 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 170 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 180 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 190 ; - indicatorOfParameter = 255 ; - } -#Stream function difference -'Stream function difference' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Velocity potential difference -'Velocity potential difference' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Potential temperature difference -'Potential temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature difference -'Equivalent potential temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature difference -'Saturated equivalent potential temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind difference -'U component of divergent wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind difference -'V component of divergent wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind difference -'U component of rotational wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind difference -'V component of rotational wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature difference -'Unbalanced component of temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'Unbalanced component of logarithm of surface pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence difference -'Unbalanced component of divergence difference' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Lake cover difference -'Lake cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover difference -'Low vegetation cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover difference -'High vegetation cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation difference -'Type of low vegetation difference' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation difference -'Type of high vegetation difference' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover difference -'Sea-ice cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Snow albedo difference -'Snow albedo difference' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Snow density difference -'Snow density difference' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature difference -'Sea surface temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 difference -'Ice surface temperature layer 1 difference' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 difference -'Ice surface temperature layer 2 difference' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 difference -'Ice surface temperature layer 3 difference' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 difference -'Ice surface temperature layer 4 difference' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 difference -'Volumetric soil water layer 1 difference' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 difference -'Volumetric soil water layer 2 difference' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 difference -'Volumetric soil water layer 3 difference' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 difference -'Volumetric soil water layer 4 difference' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Soil type difference -'Soil type difference' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation difference -'Snow evaporation difference' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Snowmelt difference -'Snowmelt difference' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Solar duration difference -'Solar duration difference' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation difference -'Direct solar radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress difference -'Magnitude of turbulent surface stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust difference -'10 metre wind gust difference' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction difference -'Large-scale precipitation fraction difference' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature difference -'Maximum 2 metre temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature difference -'Minimum 2 metre temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential difference -'Montgomery potential difference' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Pressure difference -'Pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'Mean 2 metre temperature in the last 24 hours difference' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface difference -'Downward UV radiation at the surface difference' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface difference -'Photosynthetically active radiation at the surface difference' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy difference -'Convective available potential energy difference' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity difference -'Potential vorticity difference' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations difference -'Total precipitation from observations difference' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Observation count difference -'Observation count difference' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'Total column ice water' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'Experimental product' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres difference -'Maximum temperature at 2 metres difference' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres difference -'Minimum temperature at 2 metres difference' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10 metre wind gust in the last 6 hours difference' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide difference -'Atmospheric tide difference' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Budget values difference -'Budget values difference' = { - table2Version = 200 ; - indicatorOfParameter = 128 ; - } -#Geopotential difference -'Geopotential difference' = { - table2Version = 200 ; - indicatorOfParameter = 129 ; - } -#Temperature difference -'Temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 130 ; - } -#U component of wind difference -'U component of wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 131 ; - } -#V component of wind difference -'V component of wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Specific humidity difference -'Specific humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 133 ; - } -#Surface pressure difference -'Surface pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) difference -'Vertical velocity (pressure) difference' = { - table2Version = 200 ; - indicatorOfParameter = 135 ; - } -#Total column water difference -'Total column water difference' = { - table2Version = 200 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour difference -'Total column water vapour difference' = { - table2Version = 200 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) difference -'Vorticity (relative) difference' = { - table2Version = 200 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 difference -'Soil temperature level 1 difference' = { - table2Version = 200 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 difference -'Soil wetness level 1 difference' = { - table2Version = 200 ; - indicatorOfParameter = 140 ; - } -#Snow depth difference -'Snow depth difference' = { - table2Version = 200 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'Stratiform precipitation (Large-scale precipitation) difference' = { - table2Version = 200 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation difference -'Convective precipitation difference' = { - table2Version = 200 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) difference -'Snowfall (convective + stratiform) difference' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation difference -'Boundary layer dissipation difference' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux difference -'Surface sensible heat flux difference' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux difference -'Surface latent heat flux difference' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Charnock difference -'Charnock difference' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation difference -'Surface net radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 149 ; - } -#Top net radiation difference -'Top net radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure difference -'Mean sea level pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure difference -'Logarithm of surface pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate difference -'Short-wave heating rate difference' = { - table2Version = 200 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate difference -'Long-wave heating rate difference' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Divergence difference -'Divergence difference' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#Height difference -'Height difference' = { - table2Version = 200 ; - indicatorOfParameter = 156 ; - } -#Relative humidity difference -'Relative humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure difference -'Tendency of surface pressure difference' = { - table2Version = 200 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height difference -'Boundary layer height difference' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography difference -'Standard deviation of orography difference' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'Anisotropy of sub-gridscale orography difference' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography difference -'Angle of sub-gridscale orography difference' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography difference -'Slope of sub-gridscale orography difference' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover difference -'Total cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component difference -'10 metre U wind component difference' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component difference -'10 metre V wind component difference' = { - table2Version = 200 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature difference -'2 metre temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 167 ; - } -#Surface solar radiation downwards difference -'Surface solar radiation downwards difference' = { - table2Version = 200 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 difference -'Soil temperature level 2 difference' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 difference -'Soil wetness level 2 difference' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask difference -'Land-sea mask difference' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Surface roughness difference -'Surface roughness difference' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Albedo difference -'Albedo difference' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards difference -'Surface thermal radiation downwards difference' = { - table2Version = 200 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation difference -'Surface net solar radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation difference -'Surface net thermal radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation difference -'Top net solar radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation difference -'Top net thermal radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress difference -'East-West surface stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress difference -'North-South surface stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 181 ; - } -#Evaporation difference -'Evaporation difference' = { - table2Version = 200 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 difference -'Soil temperature level 3 difference' = { - table2Version = 200 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 difference -'Soil wetness level 3 difference' = { - table2Version = 200 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover difference -'Convective cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover difference -'Low cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover difference -'Medium cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 187 ; - } -#High cloud cover difference -'High cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration difference -'Sunshine duration difference' = { - table2Version = 200 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'East-West component of sub-gridscale orographic variance difference' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'North-South component of sub-gridscale orographic variance difference' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'North-West/South-East component of sub-gridscale orographic variance difference' = { - table2Version = 200 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'North-East/South-West component of sub-gridscale orographic variance difference' = { - table2Version = 200 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature difference -'Brightness temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress difference -'Longitudinal component of gravity wave stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress difference -'Meridional component of gravity wave stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation difference -'Gravity wave dissipation difference' = { - table2Version = 200 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content difference -'Skin reservoir content difference' = { - table2Version = 200 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction difference -'Vegetation fraction difference' = { - table2Version = 200 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography difference -'Variance of sub-gridscale orography difference' = { - table2Version = 200 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'Maximum temperature at 2 metres since previous post-processing difference' = { - table2Version = 200 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'Minimum temperature at 2 metres since previous post-processing difference' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio difference -'Ozone mass mixing ratio difference' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights difference -'Precipitation analysis weights difference' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Runoff difference -'Runoff difference' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Total column ozone difference -'Total column ozone difference' = { - table2Version = 200 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed difference -'10 metre wind speed difference' = { - table2Version = 200 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky difference -'Top net solar radiation, clear sky difference' = { - table2Version = 200 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky difference -'Top net thermal radiation, clear sky difference' = { - table2Version = 200 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky difference -'Surface net solar radiation, clear sky difference' = { - table2Version = 200 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky difference -'Surface net thermal radiation, clear sky difference' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation difference -'TOA incident solar radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation difference -'Diabatic heating by radiation difference' = { - table2Version = 200 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion difference -'Diabatic heating by vertical diffusion difference' = { - table2Version = 200 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection difference -'Diabatic heating by cumulus convection difference' = { - table2Version = 200 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation difference -'Diabatic heating large-scale condensation difference' = { - table2Version = 200 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind difference -'Vertical diffusion of zonal wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind difference -'Vertical diffusion of meridional wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency difference -'East-West gravity wave drag tendency difference' = { - table2Version = 200 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency difference -'North-South gravity wave drag tendency difference' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind difference -'Convective tendency of zonal wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind difference -'Convective tendency of meridional wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity difference -'Vertical diffusion of humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection difference -'Humidity tendency by cumulus convection difference' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation difference -'Humidity tendency by large-scale condensation difference' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity difference -'Change from removal of negative humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total precipitation difference -'Total precipitation difference' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress difference -'Instantaneous X surface stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress difference -'Instantaneous Y surface stress difference' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux difference -'Instantaneous surface heat flux difference' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux difference -'Instantaneous moisture flux difference' = { - table2Version = 200 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity difference -'Apparent surface humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat difference -'Logarithm of surface roughness length for heat difference' = { - table2Version = 200 ; - indicatorOfParameter = 234 ; - } -#Skin temperature difference -'Skin temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 difference -'Soil temperature level 4 difference' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 difference -'Soil wetness level 4 difference' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer difference -'Temperature of snow layer difference' = { - table2Version = 200 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall difference -'Convective snowfall difference' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall difference -'Large scale snowfall difference' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency difference -'Accumulated cloud fraction tendency difference' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency difference -'Accumulated liquid water tendency difference' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo difference -'Forecast albedo difference' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness difference -'Forecast surface roughness difference' = { - table2Version = 200 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'Forecast logarithm of surface roughness for heat difference' = { - table2Version = 200 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content difference -'Specific cloud liquid water content difference' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content difference -'Specific cloud ice water content difference' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Cloud cover difference -'Cloud cover difference' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency difference -'Accumulated ice water tendency difference' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Ice age difference -'Ice age difference' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature difference -'Adiabatic tendency of temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity difference -'Adiabatic tendency of humidity difference' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind difference -'Adiabatic tendency of zonal wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind difference -'Adiabatic tendency of meridional wind difference' = { - table2Version = 200 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 200 ; - indicatorOfParameter = 255 ; - } -#Probability of a tropical storm -'Probability of a tropical storm' = { - table2Version = 131 ; - indicatorOfParameter = 89 ; - } -#Probability of a hurricane -'Probability of a hurricane' = { - table2Version = 131 ; - indicatorOfParameter = 90 ; - } -#Probability of a tropical depression -'Probability of a tropical depression' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Climatological probability of a tropical storm -'Climatological probability of a tropical storm' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Climatological probability of a hurricane -'Climatological probability of a hurricane' = { - table2Version = 131 ; - indicatorOfParameter = 93 ; - } -#Climatological probability of a tropical depression -'Climatological probability of a tropical depression' = { - table2Version = 131 ; - indicatorOfParameter = 94 ; - } -#Probability anomaly of a tropical storm -'Probability anomaly of a tropical storm' = { - table2Version = 131 ; - indicatorOfParameter = 95 ; - } -#Probability anomaly of a hurricane -'Probability anomaly of a hurricane' = { - table2Version = 131 ; - indicatorOfParameter = 96 ; - } -#Probability anomaly of a tropical depression -'Probability anomaly of a tropical depression' = { - table2Version = 131 ; - indicatorOfParameter = 97 ; - } -#Total precipitation of at least 25 mm -'Total precipitation of at least 25 mm' = { - table2Version = 131 ; - indicatorOfParameter = 98 ; - } -#Total precipitation of at least 50 mm -'Total precipitation of at least 50 mm' = { - table2Version = 131 ; - indicatorOfParameter = 99 ; - } -#10 metre wind gust of at least 10 m/s -'10 metre wind gust of at least 10 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 100 ; - } -#Convective available potential energy shear index -'Convective available potential energy shear index' = { - table2Version = 132 ; - indicatorOfParameter = 44 ; - } -#Water vapour flux index -'Water vapour flux index' = { - table2Version = 132 ; - indicatorOfParameter = 45 ; - } -#Convective available potential energy index -'Convective available potential energy index' = { - table2Version = 132 ; - indicatorOfParameter = 59 ; - } -#Maximum of significant wave height index -'Maximum of significant wave height index' = { - table2Version = 132 ; - indicatorOfParameter = 216 ; - } -#Wave experimental parameter 1 -'Wave experimental parameter 1' = { - table2Version = 140 ; - indicatorOfParameter = 80 ; - } -#Wave experimental parameter 2 -'Wave experimental parameter 2' = { - table2Version = 140 ; - indicatorOfParameter = 81 ; - } -#Wave experimental parameter 3 -'Wave experimental parameter 3' = { - table2Version = 140 ; - indicatorOfParameter = 82 ; - } -#Wave experimental parameter 4 -'Wave experimental parameter 4' = { - table2Version = 140 ; - indicatorOfParameter = 83 ; - } -#Wave experimental parameter 5 -'Wave experimental parameter 5' = { - table2Version = 140 ; - indicatorOfParameter = 84 ; - } -#Wave induced mean sea level correction -'Wave induced mean sea level correction' = { - table2Version = 140 ; - indicatorOfParameter = 98 ; - } -#Ratio of wave angular and frequency width -'Ratio of wave angular and frequency width' = { - table2Version = 140 ; - indicatorOfParameter = 99 ; - } -#Number of events in freak waves statistics -'Number of events in freak waves statistics' = { - table2Version = 140 ; - indicatorOfParameter = 100 ; - } -#U-component of atmospheric surface momentum flux -'U-component of atmospheric surface momentum flux' = { - table2Version = 140 ; - indicatorOfParameter = 101 ; - } -#V-component of atmospheric surface momentum flux -'V-component of atmospheric surface momentum flux' = { - table2Version = 140 ; - indicatorOfParameter = 102 ; - } -#U-component of surface momentum flux into ocean -'U-component of surface momentum flux into ocean' = { - table2Version = 140 ; - indicatorOfParameter = 103 ; - } -#V-component of surface momentum flux into ocean -'V-component of surface momentum flux into ocean' = { - table2Version = 140 ; - indicatorOfParameter = 104 ; - } -#Wave turbulent energy flux into ocean -'Wave turbulent energy flux into ocean' = { - table2Version = 140 ; - indicatorOfParameter = 105 ; - } -#Wave directional width of first swell partition -'Wave directional width of first swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 106 ; - } -#Wave frequency width of first swell partition -'Wave frequency width of first swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 107 ; - } -#Wave directional width of second swell partition -'Wave directional width of second swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 108 ; - } -#Wave frequency width of second swell partition -'Wave frequency width of second swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 109 ; - } -#Wave directional width of third swell partition -'Wave directional width of third swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 110 ; - } -#Wave frequency width of third swell partition -'Wave frequency width of third swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 111 ; - } -#Wave energy flux magnitude -'Wave energy flux magnitude' = { - table2Version = 140 ; - indicatorOfParameter = 112 ; - } -#Wave energy flux mean direction -'Wave energy flux mean direction' = { - table2Version = 140 ; - indicatorOfParameter = 113 ; - } -#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds -'Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 114 ; - } -#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds -'Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 115 ; - } -#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds -'Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 116 ; - } -#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds -'Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 117 ; - } -#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds -'Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 118 ; - } -#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds -'Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds' = { - table2Version = 140 ; - indicatorOfParameter = 119 ; - } -#Significant wave height of all waves with period larger than 10s -'Significant wave height of all waves with period larger than 10s' = { - table2Version = 140 ; - indicatorOfParameter = 120 ; - } -#Significant wave height of first swell partition -'Significant wave height of first swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 121 ; - } -#Mean wave direction of first swell partition -'Mean wave direction of first swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 122 ; - } -#Mean wave period of first swell partition -'Mean wave period of first swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 123 ; - } -#Significant wave height of second swell partition -'Significant wave height of second swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 124 ; - } -#Mean wave direction of second swell partition -'Mean wave direction of second swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 125 ; - } -#Mean wave period of second swell partition -'Mean wave period of second swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 126 ; - } -#Significant wave height of third swell partition -'Significant wave height of third swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 127 ; - } -#Mean wave direction of third swell partition -'Mean wave direction of third swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 128 ; - } -#Mean wave period of third swell partition -'Mean wave period of third swell partition' = { - table2Version = 140 ; - indicatorOfParameter = 129 ; - } -#Wave Spectral Skewness -'Wave Spectral Skewness' = { - table2Version = 140 ; - indicatorOfParameter = 207 ; - } -#Free convective velocity over the oceans -'Free convective velocity over the oceans' = { - table2Version = 140 ; - indicatorOfParameter = 208 ; - } -#Air density over the oceans -'Air density over the oceans' = { - table2Version = 140 ; - indicatorOfParameter = 209 ; - } -#Mean square wave strain in sea ice -'Mean square wave strain in sea ice' = { - table2Version = 140 ; - indicatorOfParameter = 210 ; - } -#Normalized energy flux into waves -'Normalized energy flux into waves' = { - table2Version = 140 ; - indicatorOfParameter = 211 ; - } -#Normalized energy flux into ocean -'Normalized energy flux into ocean' = { - table2Version = 140 ; - indicatorOfParameter = 212 ; - } -#Turbulent Langmuir number -'Turbulent Langmuir number' = { - table2Version = 140 ; - indicatorOfParameter = 213 ; - } -#Normalized stress into ocean -'Normalized stress into ocean' = { - table2Version = 140 ; - indicatorOfParameter = 214 ; - } -#Reserved -'Reserved' = { - table2Version = 151 ; - indicatorOfParameter = 193 ; - } -#Water vapour flux -'Water vapour flux' = { - table2Version = 162 ; - indicatorOfParameter = 45 ; - } -#Vertical integral of divergence of cloud liquid water flux -'Vertical integral of divergence of cloud liquid water flux' = { - table2Version = 162 ; - indicatorOfParameter = 79 ; - } -#Vertical integral of divergence of cloud frozen water flux -'Vertical integral of divergence of cloud frozen water flux' = { - table2Version = 162 ; - indicatorOfParameter = 80 ; - } -#Vertical integral of eastward cloud liquid water flux -'Vertical integral of eastward cloud liquid water flux' = { - table2Version = 162 ; - indicatorOfParameter = 88 ; - } -#Vertical integral of northward cloud liquid water flux -'Vertical integral of northward cloud liquid water flux' = { - table2Version = 162 ; - indicatorOfParameter = 89 ; - } -#Vertical integral of eastward cloud frozen water flux -'Vertical integral of eastward cloud frozen water flux' = { - table2Version = 162 ; - indicatorOfParameter = 90 ; - } -#Vertical integral of northward cloud frozen water flux -'Vertical integral of northward cloud frozen water flux ' = { - table2Version = 162 ; - indicatorOfParameter = 91 ; - } -#Vertical integral of mass tendency -'Vertical integral of mass tendency' = { - table2Version = 162 ; - indicatorOfParameter = 92 ; - } -#U-tendency from dynamics -'U-tendency from dynamics' = { - table2Version = 162 ; - indicatorOfParameter = 114 ; - } -#V-tendency from dynamics -'V-tendency from dynamics' = { - table2Version = 162 ; - indicatorOfParameter = 115 ; - } -#T-tendency from dynamics -'T-tendency from dynamics' = { - table2Version = 162 ; - indicatorOfParameter = 116 ; - } -#q-tendency from dynamics -'q-tendency from dynamics' = { - table2Version = 162 ; - indicatorOfParameter = 117 ; - } -#T-tendency from radiation -'T-tendency from radiation' = { - table2Version = 162 ; - indicatorOfParameter = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'U-tendency from turbulent diffusion + subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'V-tendency from turbulent diffusion + subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'T-tendency from turbulent diffusion + subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 121 ; - } -#q-tendency from turbulent diffusion -'q-tendency from turbulent diffusion' = { - table2Version = 162 ; - indicatorOfParameter = 122 ; - } -#U-tendency from subgrid orography -'U-tendency from subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 123 ; - } -#V-tendency from subgrid orography -'V-tendency from subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 124 ; - } -#T-tendency from subgrid orography -'T-tendency from subgrid orography' = { - table2Version = 162 ; - indicatorOfParameter = 125 ; - } -#U-tendency from convection (deep+shallow) -'U-tendency from convection (deep+shallow)' = { - table2Version = 162 ; - indicatorOfParameter = 126 ; - } -#V-tendency from convection (deep+shallow) -'V-tendency from convection (deep+shallow)' = { - table2Version = 162 ; - indicatorOfParameter = 127 ; - } -#T-tendency from convection (deep+shallow) -'T-tendency from convection (deep+shallow)' = { - table2Version = 162 ; - indicatorOfParameter = 128 ; - } -#q-tendency from convection (deep+shallow) -'q-tendency from convection (deep+shallow)' = { - table2Version = 162 ; - indicatorOfParameter = 129 ; - } -#Liquid Precipitation flux from convection -'Liquid Precipitation flux from convection' = { - table2Version = 162 ; - indicatorOfParameter = 130 ; - } -#Ice Precipitation flux from convection -'Ice Precipitation flux from convection' = { - table2Version = 162 ; - indicatorOfParameter = 131 ; - } -#T-tendency from cloud scheme -'T-tendency from cloud scheme' = { - table2Version = 162 ; - indicatorOfParameter = 132 ; - } -#q-tendency from cloud scheme -'q-tendency from cloud scheme' = { - table2Version = 162 ; - indicatorOfParameter = 133 ; - } -#ql-tendency from cloud scheme -'ql-tendency from cloud scheme' = { - table2Version = 162 ; - indicatorOfParameter = 134 ; - } -#qi-tendency from cloud scheme -'qi-tendency from cloud scheme' = { - table2Version = 162 ; - indicatorOfParameter = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'Liquid Precip flux from cloud scheme (stratiform)' = { - table2Version = 162 ; - indicatorOfParameter = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'Ice Precip flux from cloud scheme (stratiform)' = { - table2Version = 162 ; - indicatorOfParameter = 137 ; - } -#U-tendency from shallow convection -'U-tendency from shallow convection' = { - table2Version = 162 ; - indicatorOfParameter = 138 ; - } -#V-tendency from shallow convection -'V-tendency from shallow convection' = { - table2Version = 162 ; - indicatorOfParameter = 139 ; - } -#T-tendency from shallow convection -'T-tendency from shallow convection' = { - table2Version = 162 ; - indicatorOfParameter = 140 ; - } -#q-tendency from shallow convection -'q-tendency from shallow convection' = { - table2Version = 162 ; - indicatorOfParameter = 141 ; - } -#Standardised precipitation index valid in the last 3 months -'Standardised precipitation index valid in the last 3 months' = { - table2Version = 170 ; - indicatorOfParameter = 1 ; - } -#Standardised precipitation index valid in the last 6 months -'Standardised precipitation index valid in the last 6 months' = { - table2Version = 170 ; - indicatorOfParameter = 2 ; - } -#Standardised precipitation index valid in the last 12 months -'Standardised precipitation index valid in the last 12 months' = { - table2Version = 170 ; - indicatorOfParameter = 3 ; - } -#100 metre U wind component anomaly -'100 metre U wind component anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 6 ; - } -#100 metre V wind component anomaly -'100 metre V wind component anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature anomaly -'Lake mix-layer temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 24 ; - } -#Lake ice depth anomaly -'Lake ice depth anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'Maximum temperature at 2 metres in the last 6 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'Minimum temperature at 2 metres in the last 6 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 122 ; - } -#Mean surface runoff rate -'Mean surface runoff rate' = { - table2Version = 172 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate -'Mean sub-surface runoff rate' = { - table2Version = 172 ; - indicatorOfParameter = 9 ; - } -#Mean surface runoff rate anomaly -'Mean surface runoff rate anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate anomaly -'Mean sub-surface runoff rate anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 9 ; - } -#Clear-sky (II) down surface sw flux -'Clear-sky (II) down surface sw flux' = { - table2Version = 174 ; - indicatorOfParameter = 10 ; - } -#Clear-sky (II) up surface sw flux -'Clear-sky (II) up surface sw flux' = { - table2Version = 174 ; - indicatorOfParameter = 13 ; - } -#Visibility at 1.5m -'Visibility at 1.5m' = { - table2Version = 174 ; - indicatorOfParameter = 25 ; - } -#Minimum temperature at 1.5m since previous post-processing -'Minimum temperature at 1.5m since previous post-processing' = { - table2Version = 174 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 1.5m since previous post-processing -'Maximum temperature at 1.5m since previous post-processing' = { - table2Version = 174 ; - indicatorOfParameter = 51 ; - } -#Relative humidity at 1.5m -'Relative humidity at 1.5m' = { - table2Version = 174 ; - indicatorOfParameter = 52 ; - } -#2 metre specific humidity -'2 metre specific humidity' = { - table2Version = 174 ; - indicatorOfParameter = 96 ; - } -#Sea ice snow thickness -'Sea ice snow thickness' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Short wave radiation flux at surface -'Short wave radiation flux at surface' = { - table2Version = 174 ; - indicatorOfParameter = 116 ; - } -#Short wave radiation flux at top of atmosphere -'Short wave radiation flux at top of atmosphere' = { - table2Version = 174 ; - indicatorOfParameter = 117 ; - } -#Total column water vapour -'Total column water vapour' = { - table2Version = 174 ; - indicatorOfParameter = 137 ; - } -#Large scale rainfall rate -'Large scale rainfall rate' = { - table2Version = 174 ; - indicatorOfParameter = 142 ; - } -#Convective rainfall rate -'Convective rainfall rate' = { - table2Version = 174 ; - indicatorOfParameter = 143 ; - } -#Very low cloud amount -'Very low cloud amount' = { - table2Version = 174 ; - indicatorOfParameter = 186 ; - } -#Convective snowfall rate -'Convective snowfall rate' = { - table2Version = 174 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall rate -'Large scale snowfall rate' = { - table2Version = 174 ; - indicatorOfParameter = 240 ; - } -#Total cloud amount - random overlap -'Total cloud amount - random overlap' = { - table2Version = 174 ; - indicatorOfParameter = 248 ; - } -#Total cloud amount in lw radiation -'Total cloud amount in lw radiation' = { - table2Version = 174 ; - indicatorOfParameter = 249 ; - } -#Volcanic ash aerosol mixing ratio -'Volcanic ash aerosol mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'Volcanic sulphate aerosol mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'Volcanic SO2 precursor mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - table2Version = 210 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - table2Version = 210 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - table2Version = 210 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'Experimental product' = { - table2Version = 210 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'Experimental product' = { - table2Version = 210 ; - indicatorOfParameter = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'Mixing ration of organic carbon aerosol, nucleation mode' = { - table2Version = 210 ; - indicatorOfParameter = 57 ; - } -#Monoterpene precursor mixing ratio -'Monoterpene precursor mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 58 ; - } -#Secondary organic precursor mixing ratio -'Secondary organic precursor mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 59 ; - } -#Injection height (from IS4FIRES) -'Injection height (from IS4FIRES)' = { - table2Version = 210 ; - indicatorOfParameter = 60 ; - } -#Particulate matter d < 1 um -'Particulate matter d < 1 um' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'Particulate matter d < 2.5 um' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'Particulate matter d < 10 um' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Wildfire viewing angle of observation -'Wildfire viewing angle of observation' = { - table2Version = 210 ; - indicatorOfParameter = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'Wildfire Flux of Ethane (C2H6)' = { - table2Version = 210 ; - indicatorOfParameter = 118 ; - } -#Mean altitude of maximum injection -'Mean altitude of maximum injection' = { - table2Version = 210 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - table2Version = 210 ; - indicatorOfParameter = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'UV visible albedo for direct radiation, isotropic component ' = { - table2Version = 210 ; - indicatorOfParameter = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'UV visible albedo for direct radiation, volumetric component ' = { - table2Version = 210 ; - indicatorOfParameter = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'UV visible albedo for direct radiation, geometric component ' = { - table2Version = 210 ; - indicatorOfParameter = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'Near IR albedo for direct radiation, isotropic component ' = { - table2Version = 210 ; - indicatorOfParameter = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'Near IR albedo for direct radiation, volumetric component' = { - table2Version = 210 ; - indicatorOfParameter = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'Near IR albedo for direct radiation, geometric component ' = { - table2Version = 210 ; - indicatorOfParameter = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'UV visible albedo for diffuse radiation, isotropic component ' = { - table2Version = 210 ; - indicatorOfParameter = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'UV visible albedo for diffuse radiation, volumetric component ' = { - table2Version = 210 ; - indicatorOfParameter = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'UV visible albedo for diffuse radiation, geometric component ' = { - table2Version = 210 ; - indicatorOfParameter = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'Near IR albedo for diffuse radiation, isotropic component ' = { - table2Version = 210 ; - indicatorOfParameter = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'Near IR albedo for diffuse radiation, volumetric component ' = { - table2Version = 210 ; - indicatorOfParameter = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'Near IR albedo for diffuse radiation, geometric component ' = { - table2Version = 210 ; - indicatorOfParameter = 197 ; - } -#Total aerosol optical depth at 340 nm -'Total aerosol optical depth at 340 nm' = { - table2Version = 210 ; - indicatorOfParameter = 217 ; - } -#Total aerosol optical depth at 355 nm -'Total aerosol optical depth at 355 nm' = { - table2Version = 210 ; - indicatorOfParameter = 218 ; - } -#Total aerosol optical depth at 380 nm -'Total aerosol optical depth at 380 nm' = { - table2Version = 210 ; - indicatorOfParameter = 219 ; - } -#Total aerosol optical depth at 400 nm -'Total aerosol optical depth at 400 nm' = { - table2Version = 210 ; - indicatorOfParameter = 220 ; - } -#Total aerosol optical depth at 440 nm -'Total aerosol optical depth at 440 nm' = { - table2Version = 210 ; - indicatorOfParameter = 221 ; - } -#Total aerosol optical depth at 500 nm -'Total aerosol optical depth at 500 nm' = { - table2Version = 210 ; - indicatorOfParameter = 222 ; - } -#Total aerosol optical depth at 532 nm -'Total aerosol optical depth at 532 nm' = { - table2Version = 210 ; - indicatorOfParameter = 223 ; - } -#Total aerosol optical depth at 645 nm -'Total aerosol optical depth at 645 nm' = { - table2Version = 210 ; - indicatorOfParameter = 224 ; - } -#Total aerosol optical depth at 800 nm -'Total aerosol optical depth at 800 nm' = { - table2Version = 210 ; - indicatorOfParameter = 225 ; - } -#Total aerosol optical depth at 858 nm -'Total aerosol optical depth at 858 nm' = { - table2Version = 210 ; - indicatorOfParameter = 226 ; - } -#Total aerosol optical depth at 1020 nm -'Total aerosol optical depth at 1020 nm' = { - table2Version = 210 ; - indicatorOfParameter = 227 ; - } -#Total aerosol optical depth at 1064 nm -'Total aerosol optical depth at 1064 nm' = { - table2Version = 210 ; - indicatorOfParameter = 228 ; - } -#Total aerosol optical depth at 1640 nm -'Total aerosol optical depth at 1640 nm' = { - table2Version = 210 ; - indicatorOfParameter = 229 ; - } -#Total aerosol optical depth at 2130 nm -'Total aerosol optical depth at 2130 nm' = { - table2Version = 210 ; - indicatorOfParameter = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'Wildfire Flux of Toluene (C7H8)' = { - table2Version = 210 ; - indicatorOfParameter = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'Wildfire Flux of Benzene (C6H6)' = { - table2Version = 210 ; - indicatorOfParameter = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'Wildfire Flux of Xylene (C8H10)' = { - table2Version = 210 ; - indicatorOfParameter = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'Wildfire Flux of Butenes (C4H8)' = { - table2Version = 210 ; - indicatorOfParameter = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'Wildfire Flux of Pentenes (C5H10)' = { - table2Version = 210 ; - indicatorOfParameter = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'Wildfire Flux of Hexene (C6H12)' = { - table2Version = 210 ; - indicatorOfParameter = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'Wildfire Flux of Octene (C8H16)' = { - table2Version = 210 ; - indicatorOfParameter = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'Wildfire Flux of Butanes (C4H10)' = { - table2Version = 210 ; - indicatorOfParameter = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'Wildfire Flux of Pentanes (C5H12)' = { - table2Version = 210 ; - indicatorOfParameter = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'Wildfire Flux of Hexanes (C6H14)' = { - table2Version = 210 ; - indicatorOfParameter = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'Wildfire Flux of Heptane (C7H16)' = { - table2Version = 210 ; - indicatorOfParameter = 241 ; - } -#Altitude of plume bottom -'Altitude of plume bottom' = { - table2Version = 210 ; - indicatorOfParameter = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'Volcanic sulphate aerosol optical depth at 550 nm' = { - table2Version = 210 ; - indicatorOfParameter = 243 ; - } -#Volcanic ash optical depth at 550 nm -'Volcanic ash optical depth at 550 nm' = { - table2Version = 210 ; - indicatorOfParameter = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'Profile of total aerosol dry extinction coefficient' = { - table2Version = 210 ; - indicatorOfParameter = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'Profile of total aerosol dry absorption coefficient' = { - table2Version = 210 ; - indicatorOfParameter = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'Nitrate fine mode aerosol mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 247 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'Nitrate coarse mode aerosol mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 248 ; - } -#Ammonium aerosol mass mixing ratio -'Ammonium aerosol mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 249 ; - } -#Nitrate aerosol optical depth at 550 nm -'Nitrate aerosol optical depth at 550 nm' = { - table2Version = 210 ; - indicatorOfParameter = 250 ; - } -#Ammonium aerosol optical depth at 550 nm -'Ammonium aerosol optical depth at 550 nm' = { - table2Version = 210 ; - indicatorOfParameter = 251 ; - } -#Aerosol type 13 mass mixing ratio -'Aerosol type 13 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 13 ; - } -#Aerosol type 14 mass mixing ratio -'Aerosol type 14 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 14 ; - } -#Aerosol type 15 mass mixing ratio -'Aerosol type 15 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - table2Version = 211 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - table2Version = 211 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - table2Version = 211 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - table2Version = 211 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - table2Version = 211 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'Experimental product' = { - table2Version = 211 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'Experimental product' = { - table2Version = 211 ; - indicatorOfParameter = 56 ; - } -#Wildfire Flux of Ethane (C2H6) -'Wildfire Flux of Ethane (C2H6)' = { - table2Version = 211 ; - indicatorOfParameter = 118 ; - } -#Altitude of emitter -'Altitude of emitter' = { - table2Version = 211 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - table2Version = 211 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'Experimental product' = { - table2Version = 212 ; - indicatorOfParameter = 255 ; - } -#Random pattern 1 for sppt -'Random pattern 1 for sppt' = { - table2Version = 213 ; - indicatorOfParameter = 1 ; - } -#Random pattern 2 for sppt -'Random pattern 2 for sppt' = { - table2Version = 213 ; - indicatorOfParameter = 2 ; - } -#Random pattern 3 for sppt -'Random pattern 3 for sppt' = { - table2Version = 213 ; - indicatorOfParameter = 3 ; - } -#Random pattern 4 for sppt -'Random pattern 4 for sppt' = { - table2Version = 213 ; - indicatorOfParameter = 4 ; - } -#Random pattern 5 for sppt -'Random pattern 5 for sppt' = { - table2Version = 213 ; - indicatorOfParameter = 5 ; - } -#Random pattern 1 for SPP scheme -'Random pattern 1 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 101 ; - } -#Random pattern 2 for SPP scheme -'Random pattern 2 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 102 ; - } -#Random pattern 3 for SPP scheme -'Random pattern 3 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 103 ; - } -#Random pattern 4 for SPP scheme -'Random pattern 4 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 104 ; - } -#Random pattern 5 for SPP scheme -'Random pattern 5 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 105 ; - } -#Random pattern 6 for SPP scheme -'Random pattern 6 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 106 ; - } -#Random pattern 7 for SPP scheme -'Random pattern 7 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 107 ; - } -#Random pattern 8 for SPP scheme -'Random pattern 8 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 108 ; - } -#Random pattern 9 for SPP scheme -'Random pattern 9 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 109 ; - } -#Random pattern 10 for SPP scheme -'Random pattern 10 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 110 ; - } -#Random pattern 11 for SPP scheme -'Random pattern 11 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 111 ; - } -#Random pattern 12 for SPP scheme -'Random pattern 12 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 112 ; - } -#Random pattern 13 for SPP scheme -'Random pattern 13 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 113 ; - } -#Random pattern 14 for SPP scheme -'Random pattern 14 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 114 ; - } -#Random pattern 15 for SPP scheme -'Random pattern 15 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 115 ; - } -#Random pattern 16 for SPP scheme -'Random pattern 16 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 116 ; - } -#Random pattern 17 for SPP scheme -'Random pattern 17 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 117 ; - } -#Random pattern 18 for SPP scheme -'Random pattern 18 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 118 ; - } -#Random pattern 19 for SPP scheme -'Random pattern 19 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 119 ; - } -#Random pattern 20 for SPP scheme -'Random pattern 20 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 120 ; - } -#Random pattern 21 for SPP scheme -'Random pattern 21 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 121 ; - } -#Random pattern 22 for SPP scheme -'Random pattern 22 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 122 ; - } -#Random pattern 23 for SPP scheme -'Random pattern 23 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 123 ; - } -#Random pattern 24 for SPP scheme -'Random pattern 24 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 124 ; - } -#Random pattern 25 for SPP scheme -'Random pattern 25 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 125 ; - } -#Random pattern 26 for SPP scheme -'Random pattern 26 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 126 ; - } -#Random pattern 27 for SPP scheme -'Random pattern 27 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 127 ; - } -#Random pattern 28 for SPP scheme -'Random pattern 28 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 128 ; - } -#Random pattern 29 for SPP scheme -'Random pattern 29 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 129 ; - } -#Random pattern 30 for SPP scheme -'Random pattern 30 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 130 ; - } -#Random pattern 31 for SPP scheme -'Random pattern 31 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 131 ; - } -#Random pattern 32 for SPP scheme -'Random pattern 32 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 132 ; - } -#Random pattern 33 for SPP scheme -'Random pattern 33 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 133 ; - } -#Random pattern 34 for SPP scheme -'Random pattern 34 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 134 ; - } -#Random pattern 35 for SPP scheme -'Random pattern 35 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 135 ; - } -#Random pattern 36 for SPP scheme -'Random pattern 36 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 136 ; - } -#Random pattern 37 for SPP scheme -'Random pattern 37 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 137 ; - } -#Random pattern 38 for SPP scheme -'Random pattern 38 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 138 ; - } -#Random pattern 39 for SPP scheme -'Random pattern 39 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 139 ; - } -#Random pattern 40 for SPP scheme -'Random pattern 40 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 140 ; - } -#Random pattern 41 for SPP scheme -'Random pattern 41 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 141 ; - } -#Random pattern 42 for SPP scheme -'Random pattern 42 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 142 ; - } -#Random pattern 43 for SPP scheme -'Random pattern 43 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 143 ; - } -#Random pattern 44 for SPP scheme -'Random pattern 44 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 144 ; - } -#Random pattern 45 for SPP scheme -'Random pattern 45 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 145 ; - } -#Random pattern 46 for SPP scheme -'Random pattern 46 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 146 ; - } -#Random pattern 47 for SPP scheme -'Random pattern 47 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 147 ; - } -#Random pattern 48 for SPP scheme -'Random pattern 48 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 148 ; - } -#Random pattern 49 for SPP scheme -'Random pattern 49 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 149 ; - } -#Random pattern 50 for SPP scheme -'Random pattern 50 for SPP scheme' = { - table2Version = 213 ; - indicatorOfParameter = 150 ; - } -#Cosine of solar zenith angle -'Cosine of solar zenith angle' = { - table2Version = 214 ; - indicatorOfParameter = 1 ; - } -#UV biologically effective dose -'UV biologically effective dose' = { - table2Version = 214 ; - indicatorOfParameter = 2 ; - } -#UV biologically effective dose clear-sky -'UV biologically effective dose clear-sky' = { - table2Version = 214 ; - indicatorOfParameter = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'Total surface UV spectral flux (280-285 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'Total surface UV spectral flux (285-290 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'Total surface UV spectral flux (290-295 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'Total surface UV spectral flux (295-300 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'Total surface UV spectral flux (300-305 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'Total surface UV spectral flux (305-310 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'Total surface UV spectral flux (310-315 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'Total surface UV spectral flux (315-320 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'Total surface UV spectral flux (320-325 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'Total surface UV spectral flux (325-330 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'Total surface UV spectral flux (330-335 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'Total surface UV spectral flux (335-340 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'Total surface UV spectral flux (340-345 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'Total surface UV spectral flux (345-350 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'Total surface UV spectral flux (350-355 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'Total surface UV spectral flux (355-360 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'Total surface UV spectral flux (360-365 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'Total surface UV spectral flux (365-370 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'Total surface UV spectral flux (370-375 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'Total surface UV spectral flux (375-380 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'Total surface UV spectral flux (380-385 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'Total surface UV spectral flux (385-390 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'Total surface UV spectral flux (390-395 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'Total surface UV spectral flux (395-400 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'Clear-sky surface UV spectral flux (280-285 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'Clear-sky surface UV spectral flux (285-290 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'Clear-sky surface UV spectral flux (290-295 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'Clear-sky surface UV spectral flux (295-300 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'Clear-sky surface UV spectral flux (300-305 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'Clear-sky surface UV spectral flux (305-310 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'Clear-sky surface UV spectral flux (310-315 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'Clear-sky surface UV spectral flux (315-320 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'Clear-sky surface UV spectral flux (320-325 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'Clear-sky surface UV spectral flux (325-330 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'Clear-sky surface UV spectral flux (330-335 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'Clear-sky surface UV spectral flux (335-340 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'Clear-sky surface UV spectral flux (340-345 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'Clear-sky surface UV spectral flux (345-350 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'Clear-sky surface UV spectral flux (350-355 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'Clear-sky surface UV spectral flux (355-360 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'Clear-sky surface UV spectral flux (360-365 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'Clear-sky surface UV spectral flux (365-370 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'Clear-sky surface UV spectral flux (370-375 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'Clear-sky surface UV spectral flux (375-380 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'Clear-sky surface UV spectral flux (380-385 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'Clear-sky surface UV spectral flux (385-390 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'Clear-sky surface UV spectral flux (390-395 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'Clear-sky surface UV spectral flux (395-400 nm)' = { - table2Version = 214 ; - indicatorOfParameter = 51 ; - } -#Profile of optical thickness at 340 nm -'Profile of optical thickness at 340 nm' = { - table2Version = 214 ; - indicatorOfParameter = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'Source/gain of sea salt aerosol (0.5 - 5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'Source/gain of sea salt aerosol (5 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'Dry deposition of sea salt aerosol (0.5 - 5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'Dry deposition of sea salt aerosol (5 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'Sedimentation of sea salt aerosol (0.5 - 5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'Sedimentation of sea salt aerosol (5 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'Negative fixer of sea salt aerosol (0.5 - 5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'Negative fixer of sea salt aerosol (5 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { - table2Version = 215 ; - indicatorOfParameter = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'Sea salt aerosol (0.03 - 0.5 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'Sea salt aerosol (0.5 - 5 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'Sea salt aerosol (5 - 20 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'Source/gain of dust aerosol (0.03 - 0.55 um)' = { - table2Version = 215 ; - indicatorOfParameter = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'Source/gain of dust aerosol (0.55 - 9 um)' = { - table2Version = 215 ; - indicatorOfParameter = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'Source/gain of dust aerosol (9 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'Dry deposition of dust aerosol (0.03 - 0.55 um)' = { - table2Version = 215 ; - indicatorOfParameter = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'Dry deposition of dust aerosol (0.55 - 9 um)' = { - table2Version = 215 ; - indicatorOfParameter = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'Dry deposition of dust aerosol (9 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'Sedimentation of dust aerosol (0.03 - 0.55 um)' = { - table2Version = 215 ; - indicatorOfParameter = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'Sedimentation of dust aerosol (0.55 - 9 um)' = { - table2Version = 215 ; - indicatorOfParameter = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'Sedimentation of dust aerosol (9 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'Negative fixer of dust aerosol (0.03 - 0.55 um)' = { - table2Version = 215 ; - indicatorOfParameter = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'Negative fixer of dust aerosol (0.55 - 9 um)' = { - table2Version = 215 ; - indicatorOfParameter = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'Negative fixer of dust aerosol (9 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { - table2Version = 215 ; - indicatorOfParameter = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { - table2Version = 215 ; - indicatorOfParameter = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'Vertically integrated mass of dust aerosol (9 - 20 um)' = { - table2Version = 215 ; - indicatorOfParameter = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'Dust aerosol (0.03 - 0.55 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'Dust aerosol (0.55 - 9 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'Dust aerosol (9 - 20 um) optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'Source/gain of hydrophobic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'Source/gain of hydrophilic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'Dry deposition of hydrophobic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'Dry deposition of hydrophilic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'Sedimentation of hydrophobic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'Sedimentation of hydrophilic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'Negative fixer of hydrophobic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'Negative fixer of hydrophilic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'Vertically integrated mass of hydrophobic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'Vertically integrated mass of hydrophilic organic matter aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'Hydrophobic organic matter aerosol optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'Hydrophilic organic matter aerosol optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'Source/gain of hydrophobic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'Source/gain of hydrophilic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'Dry deposition of hydrophobic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'Dry deposition of hydrophilic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'Sedimentation of hydrophobic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'Sedimentation of hydrophilic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'Negative fixer of hydrophobic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'Negative fixer of hydrophilic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'Vertically integrated mass of hydrophobic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'Vertically integrated mass of hydrophilic black carbon aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'Hydrophobic black carbon aerosol optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'Hydrophilic black carbon aerosol optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 80 ; - } -#Source/gain of sulphate aerosol -'Source/gain of sulphate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 81 ; - } -#Dry deposition of sulphate aerosol -'Dry deposition of sulphate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 82 ; - } -#Sedimentation of sulphate aerosol -'Sedimentation of sulphate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'Wet deposition of sulphate aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'Wet deposition of sulphate aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 85 ; - } -#Negative fixer of sulphate aerosol -'Negative fixer of sulphate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'Vertically integrated mass of sulphate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 87 ; - } -#Sulphate aerosol optical depth -'Sulphate aerosol optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'Accumulated total aerosol optical depth at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'Effective (snow effect included) UV visible albedo for direct radiation' = { - table2Version = 215 ; - indicatorOfParameter = 90 ; - } -#10 metre wind speed dust emission potential -'10 metre wind speed dust emission potential' = { - table2Version = 215 ; - indicatorOfParameter = 91 ; - } -#10 metre wind gustiness dust emission potential -'10 metre wind gustiness dust emission potential' = { - table2Version = 215 ; - indicatorOfParameter = 92 ; - } -#Total aerosol optical thickness at 532 nm -'Total aerosol optical thickness at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'Total absorption aerosol optical depth at 340 nm' = { - table2Version = 215 ; - indicatorOfParameter = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'Total absorption aerosol optical depth at 355 nm' = { - table2Version = 215 ; - indicatorOfParameter = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'Total absorption aerosol optical depth at 380 nm' = { - table2Version = 215 ; - indicatorOfParameter = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'Total absorption aerosol optical depth at 400 nm' = { - table2Version = 215 ; - indicatorOfParameter = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'Total absorption aerosol optical depth at 440 nm' = { - table2Version = 215 ; - indicatorOfParameter = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'Total absorption aerosol optical depth at 469 nm' = { - table2Version = 215 ; - indicatorOfParameter = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'Total absorption aerosol optical depth at 500 nm' = { - table2Version = 215 ; - indicatorOfParameter = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'Total absorption aerosol optical depth at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'Total absorption aerosol optical depth at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'Total absorption aerosol optical depth at 645 nm' = { - table2Version = 215 ; - indicatorOfParameter = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'Total absorption aerosol optical depth at 670 nm' = { - table2Version = 215 ; - indicatorOfParameter = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'Total absorption aerosol optical depth at 800 nm' = { - table2Version = 215 ; - indicatorOfParameter = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'Total absorption aerosol optical depth at 858 nm' = { - table2Version = 215 ; - indicatorOfParameter = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'Total absorption aerosol optical depth at 865 nm' = { - table2Version = 215 ; - indicatorOfParameter = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'Total absorption aerosol optical depth at 1020 nm' = { - table2Version = 215 ; - indicatorOfParameter = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'Total absorption aerosol optical depth at 1064 nm' = { - table2Version = 215 ; - indicatorOfParameter = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'Total absorption aerosol optical depth at 1240 nm' = { - table2Version = 215 ; - indicatorOfParameter = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'Total absorption aerosol optical depth at 1640 nm' = { - table2Version = 215 ; - indicatorOfParameter = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { - table2Version = 215 ; - indicatorOfParameter = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { - table2Version = 215 ; - indicatorOfParameter = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { - table2Version = 215 ; - indicatorOfParameter = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { - table2Version = 215 ; - indicatorOfParameter = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { - table2Version = 215 ; - indicatorOfParameter = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { - table2Version = 215 ; - indicatorOfParameter = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { - table2Version = 215 ; - indicatorOfParameter = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { - table2Version = 215 ; - indicatorOfParameter = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { - table2Version = 215 ; - indicatorOfParameter = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { - table2Version = 215 ; - indicatorOfParameter = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { - table2Version = 215 ; - indicatorOfParameter = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { - table2Version = 215 ; - indicatorOfParameter = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { - table2Version = 215 ; - indicatorOfParameter = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { - table2Version = 215 ; - indicatorOfParameter = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { - table2Version = 215 ; - indicatorOfParameter = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { - table2Version = 215 ; - indicatorOfParameter = 131 ; - } -#Single scattering albedo at 340 nm -'Single scattering albedo at 340 nm' = { - table2Version = 215 ; - indicatorOfParameter = 132 ; - } -#Single scattering albedo at 355 nm -'Single scattering albedo at 355 nm' = { - table2Version = 215 ; - indicatorOfParameter = 133 ; - } -#Single scattering albedo at 380 nm -'Single scattering albedo at 380 nm' = { - table2Version = 215 ; - indicatorOfParameter = 134 ; - } -#Single scattering albedo at 400 nm -'Single scattering albedo at 400 nm' = { - table2Version = 215 ; - indicatorOfParameter = 135 ; - } -#Single scattering albedo at 440 nm -'Single scattering albedo at 440 nm' = { - table2Version = 215 ; - indicatorOfParameter = 136 ; - } -#Single scattering albedo at 469 nm -'Single scattering albedo at 469 nm' = { - table2Version = 215 ; - indicatorOfParameter = 137 ; - } -#Single scattering albedo at 500 nm -'Single scattering albedo at 500 nm' = { - table2Version = 215 ; - indicatorOfParameter = 138 ; - } -#Single scattering albedo at 532 nm -'Single scattering albedo at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 139 ; - } -#Single scattering albedo at 550 nm -'Single scattering albedo at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 140 ; - } -#Single scattering albedo at 645 nm -'Single scattering albedo at 645 nm' = { - table2Version = 215 ; - indicatorOfParameter = 141 ; - } -#Single scattering albedo at 670 nm -'Single scattering albedo at 670 nm' = { - table2Version = 215 ; - indicatorOfParameter = 142 ; - } -#Single scattering albedo at 800 nm -'Single scattering albedo at 800 nm' = { - table2Version = 215 ; - indicatorOfParameter = 143 ; - } -#Single scattering albedo at 858 nm -'Single scattering albedo at 858 nm' = { - table2Version = 215 ; - indicatorOfParameter = 144 ; - } -#Single scattering albedo at 865 nm -'Single scattering albedo at 865 nm' = { - table2Version = 215 ; - indicatorOfParameter = 145 ; - } -#Single scattering albedo at 1020 nm -'Single scattering albedo at 1020 nm' = { - table2Version = 215 ; - indicatorOfParameter = 146 ; - } -#Single scattering albedo at 1064 nm -'Single scattering albedo at 1064 nm' = { - table2Version = 215 ; - indicatorOfParameter = 147 ; - } -#Single scattering albedo at 1240 nm -'Single scattering albedo at 1240 nm' = { - table2Version = 215 ; - indicatorOfParameter = 148 ; - } -#Single scattering albedo at 1640 nm -'Single scattering albedo at 1640 nm' = { - table2Version = 215 ; - indicatorOfParameter = 149 ; - } -#Asymmetry factor at 340 nm -'Asymmetry factor at 340 nm' = { - table2Version = 215 ; - indicatorOfParameter = 150 ; - } -#Asymmetry factor at 355 nm -'Asymmetry factor at 355 nm' = { - table2Version = 215 ; - indicatorOfParameter = 151 ; - } -#Asymmetry factor at 380 nm -'Asymmetry factor at 380 nm' = { - table2Version = 215 ; - indicatorOfParameter = 152 ; - } -#Asymmetry factor at 400 nm -'Asymmetry factor at 400 nm' = { - table2Version = 215 ; - indicatorOfParameter = 153 ; - } -#Asymmetry factor at 440 nm -'Asymmetry factor at 440 nm' = { - table2Version = 215 ; - indicatorOfParameter = 154 ; - } -#Asymmetry factor at 469 nm -'Asymmetry factor at 469 nm' = { - table2Version = 215 ; - indicatorOfParameter = 155 ; - } -#Asymmetry factor at 500 nm -'Asymmetry factor at 500 nm' = { - table2Version = 215 ; - indicatorOfParameter = 156 ; - } -#Asymmetry factor at 532 nm -'Asymmetry factor at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 157 ; - } -#Asymmetry factor at 550 nm -'Asymmetry factor at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 158 ; - } -#Asymmetry factor at 645 nm -'Asymmetry factor at 645 nm' = { - table2Version = 215 ; - indicatorOfParameter = 159 ; - } -#Asymmetry factor at 670 nm -'Asymmetry factor at 670 nm' = { - table2Version = 215 ; - indicatorOfParameter = 160 ; - } -#Asymmetry factor at 800 nm -'Asymmetry factor at 800 nm' = { - table2Version = 215 ; - indicatorOfParameter = 161 ; - } -#Asymmetry factor at 858 nm -'Asymmetry factor at 858 nm' = { - table2Version = 215 ; - indicatorOfParameter = 162 ; - } -#Asymmetry factor at 865 nm -'Asymmetry factor at 865 nm' = { - table2Version = 215 ; - indicatorOfParameter = 163 ; - } -#Asymmetry factor at 1020 nm -'Asymmetry factor at 1020 nm' = { - table2Version = 215 ; - indicatorOfParameter = 164 ; - } -#Asymmetry factor at 1064 nm -'Asymmetry factor at 1064 nm' = { - table2Version = 215 ; - indicatorOfParameter = 165 ; - } -#Asymmetry factor at 1240 nm -'Asymmetry factor at 1240 nm' = { - table2Version = 215 ; - indicatorOfParameter = 166 ; - } -#Asymmetry factor at 1640 nm -'Asymmetry factor at 1640 nm' = { - table2Version = 215 ; - indicatorOfParameter = 167 ; - } -#Source/gain of sulphur dioxide -'Source/gain of sulphur dioxide' = { - table2Version = 215 ; - indicatorOfParameter = 168 ; - } -#Dry deposition of sulphur dioxide -'Dry deposition of sulphur dioxide' = { - table2Version = 215 ; - indicatorOfParameter = 169 ; - } -#Sedimentation of sulphur dioxide -'Sedimentation of sulphur dioxide' = { - table2Version = 215 ; - indicatorOfParameter = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'Wet deposition of sulphur dioxide by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'Wet deposition of sulphur dioxide by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 172 ; - } -#Negative fixer of sulphur dioxide -'Negative fixer of sulphur dioxide' = { - table2Version = 215 ; - indicatorOfParameter = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'Vertically integrated mass of sulphur dioxide' = { - table2Version = 215 ; - indicatorOfParameter = 174 ; - } -#Sulphur dioxide optical depth -'Sulphur dioxide optical depth' = { - table2Version = 215 ; - indicatorOfParameter = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'Total absorption aerosol optical depth at 2130 nm' = { - table2Version = 215 ; - indicatorOfParameter = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { - table2Version = 215 ; - indicatorOfParameter = 177 ; - } -#Single scattering albedo at 2130 nm -'Single scattering albedo at 2130 nm' = { - table2Version = 215 ; - indicatorOfParameter = 178 ; - } -#Asymmetry factor at 2130 nm -'Asymmetry factor at 2130 nm' = { - table2Version = 215 ; - indicatorOfParameter = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'Aerosol extinction coefficient at 355 nm' = { - table2Version = 215 ; - indicatorOfParameter = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'Aerosol extinction coefficient at 532 nm' = { - table2Version = 215 ; - indicatorOfParameter = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'Aerosol extinction coefficient at 1064 nm' = { - table2Version = 215 ; - indicatorOfParameter = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { - table2Version = 215 ; - indicatorOfParameter = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { - table2Version = 215 ; - indicatorOfParameter = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { - table2Version = 215 ; - indicatorOfParameter = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'Aerosol backscatter coefficient at 355 nm (from ground)' = { - table2Version = 215 ; - indicatorOfParameter = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'Aerosol backscatter coefficient at 532 nm (from ground)' = { - table2Version = 215 ; - indicatorOfParameter = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'Aerosol backscatter coefficient at 1064 nm (from ground)' = { - table2Version = 215 ; - indicatorOfParameter = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'Source/gain of fine-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 189 ; - } -#Source/gain of coarse-mode nitrate aerosol -'Source/gain of coarse-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 190 ; - } -#Dry deposition of fine-mode nitrate aerosol -'Dry deposition of fine-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 191 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'Dry deposition of coarse-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 192 ; - } -#Sedimentation of fine-mode nitrate aerosol -'Sedimentation of fine-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 193 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'Sedimentation of coarse-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 194 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'Wet deposition of fine-mode nitrate aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 195 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 196 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'Wet deposition of fine-mode nitrate aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 197 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'Wet deposition of coarse-mode nitrate aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 198 ; - } -#Negative fixer of fine-mode nitrate aerosol -'Negative fixer of fine-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 199 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'Negative fixer of coarse-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 200 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'Vertically integrated mass of fine-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 201 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'Vertically integrated mass of coarse-mode nitrate aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 202 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'Fine-mode nitrate aerosol optical depth at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 203 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'Coarse-mode nitrate aerosol optical depth at 550 nm' = { - table2Version = 215 ; - indicatorOfParameter = 204 ; - } -#Source/gain of ammonium aerosol -'Source/gain of ammonium aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 205 ; - } -#Dry deposition of ammonium aerosol -'Dry deposition of ammonium aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 206 ; - } -#Sedimentation of ammonium aerosol -'Sedimentation of ammonium aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 207 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'Wet deposition of ammonium aerosol by large-scale precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 208 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'Wet deposition of ammonium aerosol by convective precipitation' = { - table2Version = 215 ; - indicatorOfParameter = 209 ; - } -#Negative fixer of ammonium aerosol -'Negative fixer of ammonium aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 210 ; - } -#Vertically integrated mass of ammonium aerosol -'Vertically integrated mass of ammonium aerosol' = { - table2Version = 215 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'Experimental product' = { - table2Version = 216 ; - indicatorOfParameter = 255 ; - } -#Hydrogen peroxide -'Hydrogen peroxide' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'Methane (chemistry)' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'Nitric acid' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide -'Methyl peroxide' = { - table2Version = 217 ; - indicatorOfParameter = 7 ; - } -#Paraffins -'Paraffins' = { - table2Version = 217 ; - indicatorOfParameter = 9 ; - } -#Ethene -'Ethene' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Olefins -'Olefins' = { - table2Version = 217 ; - indicatorOfParameter = 11 ; - } -#Aldehydes -'Aldehydes' = { - table2Version = 217 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate -'Peroxyacetyl nitrate' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Peroxides -'Peroxides' = { - table2Version = 217 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates -'Organic nitrates' = { - table2Version = 217 ; - indicatorOfParameter = 15 ; - } -#Isoprene -'Isoprene' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'Dimethyl sulfide' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'Ammonia' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Sulfate -'Sulfate' = { - table2Version = 217 ; - indicatorOfParameter = 20 ; - } -#Ammonium -'Ammonium' = { - table2Version = 217 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid -'Methane sulfonic acid' = { - table2Version = 217 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal -'Methyl glyoxal' = { - table2Version = 217 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone -'Stratospheric ozone' = { - table2Version = 217 ; - indicatorOfParameter = 24 ; - } -#Lead -'Lead' = { - table2Version = 217 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide -'Nitrogen monoxide' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical -'Hydroperoxy radical' = { - table2Version = 217 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical -'Methylperoxy radical' = { - table2Version = 217 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical -'Hydroxyl radical' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'Nitrate radical' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'Dinitrogen pentoxide' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid -'Pernitric acid' = { - table2Version = 217 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical -'Peroxy acetyl radical' = { - table2Version = 217 ; - indicatorOfParameter = 35 ; - } -#Organic ethers -'Organic ethers' = { - table2Version = 217 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector -'PAR budget corrector' = { - table2Version = 217 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator -'NO to NO2 operator' = { - table2Version = 217 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator -'NO to alkyl nitrate operator' = { - table2Version = 217 ; - indicatorOfParameter = 39 ; - } -#Amine -'Amine' = { - table2Version = 217 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud -'Polar stratospheric cloud' = { - table2Version = 217 ; - indicatorOfParameter = 41 ; - } -#Methanol -'Methanol' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'Formic acid' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid -'Methacrylic acid' = { - table2Version = 217 ; - indicatorOfParameter = 44 ; - } -#Ethane -'Ethane' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'Ethanol' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'Propane' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'Propene' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'Terpenes' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK -'Methacrolein MVK' = { - table2Version = 217 ; - indicatorOfParameter = 50 ; - } -#Nitrate -'Nitrate' = { - table2Version = 217 ; - indicatorOfParameter = 51 ; - } -#Acetone -'Acetone' = { - table2Version = 217 ; - indicatorOfParameter = 52 ; - } -#Acetone product -'Acetone product' = { - table2Version = 217 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 -'IC3H7O2' = { - table2Version = 217 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 -'HYPROPO2' = { - table2Version = 217 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp -'Nitrogen oxides Transp' = { - table2Version = 217 ; - indicatorOfParameter = 56 ; - } -#Total column hydrogen peroxide -'Total column hydrogen peroxide' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'Total column methane' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'Total column nitric acid' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column methyl peroxide -'Total column methyl peroxide' = { - table2Version = 218 ; - indicatorOfParameter = 7 ; - } -#Total column paraffins -'Total column paraffins' = { - table2Version = 218 ; - indicatorOfParameter = 9 ; - } -#Total column ethene -'Total column ethene' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column olefins -'Total column olefins' = { - table2Version = 218 ; - indicatorOfParameter = 11 ; - } -#Total column aldehydes -'Total column aldehydes' = { - table2Version = 218 ; - indicatorOfParameter = 12 ; - } -#Total column peroxyacetyl nitrate -'Total column peroxyacetyl nitrate' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column peroxides -'Total column peroxides' = { - table2Version = 218 ; - indicatorOfParameter = 14 ; - } -#Total column organic nitrates -'Total column organic nitrates' = { - table2Version = 218 ; - indicatorOfParameter = 15 ; - } -#Total column isoprene -'Total column isoprene' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'Total column dimethyl sulfide' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'Total column ammonia' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'Total column sulfate' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column ammonium -'Total column ammonium' = { - table2Version = 218 ; - indicatorOfParameter = 21 ; - } -#Total column methane sulfonic acid -'Total column methane sulfonic acid' = { - table2Version = 218 ; - indicatorOfParameter = 22 ; - } -#Total column methyl glyoxal -'Total column methyl glyoxal' = { - table2Version = 218 ; - indicatorOfParameter = 23 ; - } -#Total column stratospheric ozone -'Total column stratospheric ozone' = { - table2Version = 218 ; - indicatorOfParameter = 24 ; - } -#Total column lead -'Total column lead' = { - table2Version = 218 ; - indicatorOfParameter = 26 ; - } -#Total column nitrogen monoxide -'Total column nitrogen monoxide' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroperoxy radical -'Total column hydroperoxy radical' = { - table2Version = 218 ; - indicatorOfParameter = 28 ; - } -#Total column methylperoxy radical -'Total column methylperoxy radical' = { - table2Version = 218 ; - indicatorOfParameter = 29 ; - } -#Total column hydroxyl radical -'Total column hydroxyl radical' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'Total column nitrate radical' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'Total column dinitrogen pentoxide' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column pernitric acid -'Total column pernitric acid' = { - table2Version = 218 ; - indicatorOfParameter = 34 ; - } -#Total column peroxy acetyl radical -'Total column peroxy acetyl radical' = { - table2Version = 218 ; - indicatorOfParameter = 35 ; - } -#Total column organic ethers -'Total column organic ethers' = { - table2Version = 218 ; - indicatorOfParameter = 36 ; - } -#Total column PAR budget corrector -'Total column PAR budget corrector' = { - table2Version = 218 ; - indicatorOfParameter = 37 ; - } -#Total column NO to NO2 operator -'Total column NO to NO2 operator' = { - table2Version = 218 ; - indicatorOfParameter = 38 ; - } -#Total column NO to alkyl nitrate operator -'Total column NO to alkyl nitrate operator' = { - table2Version = 218 ; - indicatorOfParameter = 39 ; - } -#Total column amine -'Total column amine' = { - table2Version = 218 ; - indicatorOfParameter = 40 ; - } -#Total column polar stratospheric cloud -'Total column polar stratospheric cloud' = { - table2Version = 218 ; - indicatorOfParameter = 41 ; - } -#Total column methanol -'Total column methanol' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'Total column formic acid' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column methacrylic acid -'Total column methacrylic acid' = { - table2Version = 218 ; - indicatorOfParameter = 44 ; - } -#Total column ethane -'Total column ethane' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'Total column ethanol' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'Total column propane' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'Total column propene' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'Total column terpenes' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Total column methacrolein MVK -'Total column methacrolein MVK' = { - table2Version = 218 ; - indicatorOfParameter = 50 ; - } -#Total column nitrate -'Total column nitrate' = { - table2Version = 218 ; - indicatorOfParameter = 51 ; - } -#Total column acetone -'Total column acetone' = { - table2Version = 218 ; - indicatorOfParameter = 52 ; - } -#Total column acetone product -'Total column acetone product' = { - table2Version = 218 ; - indicatorOfParameter = 53 ; - } -#Total column IC3H7O2 -'Total column IC3H7O2' = { - table2Version = 218 ; - indicatorOfParameter = 54 ; - } -#Total column HYPROPO2 -'Total column HYPROPO2' = { - table2Version = 218 ; - indicatorOfParameter = 55 ; - } -#Total column nitrogen oxides Transp -'Total column nitrogen oxides Transp' = { - table2Version = 218 ; - indicatorOfParameter = 56 ; - } -#Ozone emissions -'Ozone emissions' = { - table2Version = 219 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides emissions -'Nitrogen oxides emissions' = { - table2Version = 219 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide emissions -'Hydrogen peroxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 3 ; - } -#Methane emissions -'Methane emissions' = { - table2Version = 219 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide emissions -'Carbon monoxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 5 ; - } -#Nitric acid emissions -'Nitric acid emissions' = { - table2Version = 219 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide emissions -'Methyl peroxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde emissions -'Formaldehyde emissions' = { - table2Version = 219 ; - indicatorOfParameter = 8 ; - } -#Paraffins emissions -'Paraffins emissions' = { - table2Version = 219 ; - indicatorOfParameter = 9 ; - } -#Ethene emissions -'Ethene emissions' = { - table2Version = 219 ; - indicatorOfParameter = 10 ; - } -#Olefins emissions -'Olefins emissions' = { - table2Version = 219 ; - indicatorOfParameter = 11 ; - } -#Aldehydes emissions -'Aldehydes emissions' = { - table2Version = 219 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate emissions -'Peroxyacetyl nitrate emissions' = { - table2Version = 219 ; - indicatorOfParameter = 13 ; - } -#Peroxides emissions -'Peroxides emissions' = { - table2Version = 219 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates emissions -'Organic nitrates emissions' = { - table2Version = 219 ; - indicatorOfParameter = 15 ; - } -#Isoprene emissions -'Isoprene emissions' = { - table2Version = 219 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide emissions -'Sulfur dioxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide emissions -'Dimethyl sulfide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 18 ; - } -#Ammonia emissions -'Ammonia emissions' = { - table2Version = 219 ; - indicatorOfParameter = 19 ; - } -#Sulfate emissions -'Sulfate emissions' = { - table2Version = 219 ; - indicatorOfParameter = 20 ; - } -#Ammonium emissions -'Ammonium emissions' = { - table2Version = 219 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid emissions -'Methane sulfonic acid emissions' = { - table2Version = 219 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal emissions -'Methyl glyoxal emissions' = { - table2Version = 219 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone emissions -'Stratospheric ozone emissions' = { - table2Version = 219 ; - indicatorOfParameter = 24 ; - } -#Radon emissions -'Radon emissions' = { - table2Version = 219 ; - indicatorOfParameter = 25 ; - } -#Lead emissions -'Lead emissions' = { - table2Version = 219 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide emissions -'Nitrogen monoxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical emissions -'Hydroperoxy radical emissions' = { - table2Version = 219 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical emissions -'Methylperoxy radical emissions' = { - table2Version = 219 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical emissions -'Hydroxyl radical emissions' = { - table2Version = 219 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide emissions -'Nitrogen dioxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical emissions -'Nitrate radical emissions' = { - table2Version = 219 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide emissions -'Dinitrogen pentoxide emissions' = { - table2Version = 219 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid emissions -'Pernitric acid emissions' = { - table2Version = 219 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical emissions -'Peroxy acetyl radical emissions' = { - table2Version = 219 ; - indicatorOfParameter = 35 ; - } -#Organic ethers emissions -'Organic ethers emissions' = { - table2Version = 219 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector emissions -'PAR budget corrector emissions' = { - table2Version = 219 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator emissions -'NO to NO2 operator emissions' = { - table2Version = 219 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator emissions -'NO to alkyl nitrate operator emissions' = { - table2Version = 219 ; - indicatorOfParameter = 39 ; - } -#Amine emissions -'Amine emissions' = { - table2Version = 219 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud emissions -'Polar stratospheric cloud emissions' = { - table2Version = 219 ; - indicatorOfParameter = 41 ; - } -#Methanol emissions -'Methanol emissions' = { - table2Version = 219 ; - indicatorOfParameter = 42 ; - } -#Formic acid emissions -'Formic acid emissions' = { - table2Version = 219 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid emissions -'Methacrylic acid emissions' = { - table2Version = 219 ; - indicatorOfParameter = 44 ; - } -#Ethane emissions -'Ethane emissions' = { - table2Version = 219 ; - indicatorOfParameter = 45 ; - } -#Ethanol emissions -'Ethanol emissions' = { - table2Version = 219 ; - indicatorOfParameter = 46 ; - } -#Propane emissions -'Propane emissions' = { - table2Version = 219 ; - indicatorOfParameter = 47 ; - } -#Propene emissions -'Propene emissions' = { - table2Version = 219 ; - indicatorOfParameter = 48 ; - } -#Terpenes emissions -'Terpenes emissions' = { - table2Version = 219 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK emissions -'Methacrolein MVK emissions' = { - table2Version = 219 ; - indicatorOfParameter = 50 ; - } -#Nitrate emissions -'Nitrate emissions' = { - table2Version = 219 ; - indicatorOfParameter = 51 ; - } -#Acetone emissions -'Acetone emissions' = { - table2Version = 219 ; - indicatorOfParameter = 52 ; - } -#Acetone product emissions -'Acetone product emissions' = { - table2Version = 219 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 emissions -'IC3H7O2 emissions' = { - table2Version = 219 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 emissions -'HYPROPO2 emissions' = { - table2Version = 219 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp emissions -'Nitrogen oxides Transp emissions' = { - table2Version = 219 ; - indicatorOfParameter = 56 ; - } -#Ozone deposition velocity -'Ozone deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides deposition velocity -'Nitrogen oxides deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide deposition velocity -'Hydrogen peroxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 3 ; - } -#Methane deposition velocity -'Methane deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide deposition velocity -'Carbon monoxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 5 ; - } -#Nitric acid deposition velocity -'Nitric acid deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide deposition velocity -'Methyl peroxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde deposition velocity -'Formaldehyde deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 8 ; - } -#Paraffins deposition velocity -'Paraffins deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 9 ; - } -#Ethene deposition velocity -'Ethene deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 10 ; - } -#Olefins deposition velocity -'Olefins deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 11 ; - } -#Aldehydes deposition velocity -'Aldehydes deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'Peroxyacetyl nitrate deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 13 ; - } -#Peroxides deposition velocity -'Peroxides deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates deposition velocity -'Organic nitrates deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 15 ; - } -#Isoprene deposition velocity -'Isoprene deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide deposition velocity -'Sulfur dioxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide deposition velocity -'Dimethyl sulfide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 18 ; - } -#Ammonia deposition velocity -'Ammonia deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 19 ; - } -#Sulfate deposition velocity -'Sulfate deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 20 ; - } -#Ammonium deposition velocity -'Ammonium deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid deposition velocity -'Methane sulfonic acid deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal deposition velocity -'Methyl glyoxal deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone deposition velocity -'Stratospheric ozone deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 24 ; - } -#Radon deposition velocity -'Radon deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 25 ; - } -#Lead deposition velocity -'Lead deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide deposition velocity -'Nitrogen monoxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical deposition velocity -'Hydroperoxy radical deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical deposition velocity -'Methylperoxy radical deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical deposition velocity -'Hydroxyl radical deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide deposition velocity -'Nitrogen dioxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical deposition velocity -'Nitrate radical deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'Dinitrogen pentoxide deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid deposition velocity -'Pernitric acid deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical deposition velocity -'Peroxy acetyl radical deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 35 ; - } -#Organic ethers deposition velocity -'Organic ethers deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector deposition velocity -'PAR budget corrector deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator deposition velocity -'NO to NO2 operator deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'NO to alkyl nitrate operator deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 39 ; - } -#Amine deposition velocity -'Amine deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud deposition velocity -'Polar stratospheric cloud deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 41 ; - } -#Methanol deposition velocity -'Methanol deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 42 ; - } -#Formic acid deposition velocity -'Formic acid deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid deposition velocity -'Methacrylic acid deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 44 ; - } -#Ethane deposition velocity -'Ethane deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 45 ; - } -#Ethanol deposition velocity -'Ethanol deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 46 ; - } -#Propane deposition velocity -'Propane deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 47 ; - } -#Propene deposition velocity -'Propene deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 48 ; - } -#Terpenes deposition velocity -'Terpenes deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK deposition velocity -'Methacrolein MVK deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 50 ; - } -#Nitrate deposition velocity -'Nitrate deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 51 ; - } -#Acetone deposition velocity -'Acetone deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 52 ; - } -#Acetone product deposition velocity -'Acetone product deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 deposition velocity -'IC3H7O2 deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 deposition velocity -'HYPROPO2 deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'Nitrogen oxides Transp deposition velocity' = { - table2Version = 221 ; - indicatorOfParameter = 56 ; - } -#-10 degrees C isothermal level (atm) -'-10 degrees C isothermal level (atm)' = { - table2Version = 228 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface -'Total sky direct solar radiation at surface' = { - table2Version = 228 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface -'Clear-sky direct solar radiation at surface' = { - table2Version = 228 ; - indicatorOfParameter = 22 ; - } -#Cloud base height -'Cloud base height' = { - table2Version = 228 ; - indicatorOfParameter = 23 ; - } -#0 degrees C isothermal level (atm) -'0 degrees C isothermal level (atm)' = { - table2Version = 228 ; - indicatorOfParameter = 24 ; - } -#Horizontal visibility -'Horizontal visibility' = { - table2Version = 228 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'Maximum temperature at 2 metres in the last 3 hours' = { - table2Version = 228 ; - indicatorOfParameter = 26 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'Minimum temperature at 2 metres in the last 3 hours' = { - table2Version = 228 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - table2Version = 228 ; - indicatorOfParameter = 28 ; - } -#Instantaneous 10 metre wind gust -'Instantaneous 10 metre wind gust' = { - table2Version = 228 ; - indicatorOfParameter = 29 ; - } -#2 metre relative humidity with respect to water -'2 metre relative humidity with respect to water' = { - table2Version = 228 ; - indicatorOfParameter = 37 ; - } -#Soil wetness index in layer 1 -'Soil wetness index in layer 1' = { - table2Version = 228 ; - indicatorOfParameter = 40 ; - } -#Soil wetness index in layer 2 -'Soil wetness index in layer 2' = { - table2Version = 228 ; - indicatorOfParameter = 41 ; - } -#Soil wetness index in layer 3 -'Soil wetness index in layer 3' = { - table2Version = 228 ; - indicatorOfParameter = 42 ; - } -#Soil wetness index in layer 4 -'Soil wetness index in layer 4' = { - table2Version = 228 ; - indicatorOfParameter = 43 ; - } -#Convective available potential energy shear -'Convective available potential energy shear' = { - table2Version = 228 ; - indicatorOfParameter = 44 ; - } -#Height of convective cloud top -'Height of convective cloud top' = { - table2Version = 228 ; - indicatorOfParameter = 46 ; - } -#Height of zero-degree wet-bulb temperature -'Height of zero-degree wet-bulb temperature' = { - table2Version = 228 ; - indicatorOfParameter = 47 ; - } -#Height of one-degree wet-bulb temperature -'Height of one-degree wet-bulb temperature' = { - table2Version = 228 ; - indicatorOfParameter = 48 ; - } -#Instantaneous total lightning flash density -'Instantaneous total lightning flash density' = { - table2Version = 228 ; - indicatorOfParameter = 50 ; - } -#Averaged total lightning flash density in the last hour -'Averaged total lightning flash density in the last hour' = { - table2Version = 228 ; - indicatorOfParameter = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'Instantaneous cloud-to-ground lightning flash density' = { - table2Version = 228 ; - indicatorOfParameter = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'Averaged cloud-to-ground lightning flash density in the last hour' = { - table2Version = 228 ; - indicatorOfParameter = 53 ; - } -#SMOS observed soil moisture retrieved using neural network -'SMOS observed soil moisture retrieved using neural network' = { - table2Version = 228 ; - indicatorOfParameter = 70 ; - } -#SMOS observed soil moisture uncertainty retrieved using neural network -'SMOS observed soil moisture uncertainty retrieved using neural network' = { - table2Version = 228 ; - indicatorOfParameter = 71 ; - } -#SMOS radio frequency interference probability -'SMOS radio frequency interference probability' = { - table2Version = 228 ; - indicatorOfParameter = 72 ; - } -#SMOS number of observations per grid point -'SMOS number of observations per grid point' = { - table2Version = 228 ; - indicatorOfParameter = 73 ; - } -#SMOS observation time for the satellite soil moisture data -'SMOS observation time for the satellite soil moisture data' = { - table2Version = 228 ; - indicatorOfParameter = 74 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'GPP coefficient from Biogenic Flux Adjustment System' = { - table2Version = 228 ; - indicatorOfParameter = 78 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'Rec coefficient from Biogenic Flux Adjustment System' = { - table2Version = 228 ; - indicatorOfParameter = 79 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { - table2Version = 228 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'Accumulated Carbon Dioxide Gross Primary Production' = { - table2Version = 228 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'Accumulated Carbon Dioxide Ecosystem Respiration' = { - table2Version = 228 ; - indicatorOfParameter = 82 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'Flux of Carbon Dioxide Net Ecosystem Exchange' = { - table2Version = 228 ; - indicatorOfParameter = 83 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'Flux of Carbon Dioxide Gross Primary Production' = { - table2Version = 228 ; - indicatorOfParameter = 84 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'Flux of Carbon Dioxide Ecosystem Respiration' = { - table2Version = 228 ; - indicatorOfParameter = 85 ; - } -#Total column supercooled liquid water -'Total column supercooled liquid water' = { - table2Version = 228 ; - indicatorOfParameter = 88 ; - } -#Total column rain water -'Total column rain water' = { - table2Version = 228 ; - indicatorOfParameter = 89 ; - } -#Total column snow water -'Total column snow water' = { - table2Version = 228 ; - indicatorOfParameter = 90 ; - } -#Canopy cover fraction -'Canopy cover fraction' = { - table2Version = 228 ; - indicatorOfParameter = 91 ; - } -#Soil texture fraction -'Soil texture fraction' = { - table2Version = 228 ; - indicatorOfParameter = 92 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - table2Version = 228 ; - indicatorOfParameter = 93 ; - } -#Ice temperature -'Ice temperature' = { - table2Version = 228 ; - indicatorOfParameter = 94 ; - } -#Surface solar radiation downward clear-sky -'Surface solar radiation downward clear-sky' = { - table2Version = 228 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky -'Surface thermal radiation downward clear-sky' = { - table2Version = 228 ; - indicatorOfParameter = 130 ; - } -#Accumulated freezing rain -'Accumulated freezing rain' = { - table2Version = 228 ; - indicatorOfParameter = 216 ; - } -#Instantaneous large-scale surface precipitation fraction -'Instantaneous large-scale surface precipitation fraction' = { - table2Version = 228 ; - indicatorOfParameter = 217 ; - } -#Convective rain rate -'Convective rain rate' = { - table2Version = 228 ; - indicatorOfParameter = 218 ; - } -#Large scale rain rate -'Large scale rain rate' = { - table2Version = 228 ; - indicatorOfParameter = 219 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - table2Version = 228 ; - indicatorOfParameter = 220 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - table2Version = 228 ; - indicatorOfParameter = 221 ; - } -#Maximum total precipitation rate in the last 3 hours -'Maximum total precipitation rate in the last 3 hours' = { - table2Version = 228 ; - indicatorOfParameter = 222 ; - } -#Minimum total precipitation rate in the last 3 hours -'Minimum total precipitation rate in the last 3 hours' = { - table2Version = 228 ; - indicatorOfParameter = 223 ; - } -#Maximum total precipitation rate in the last 6 hours -'Maximum total precipitation rate in the last 6 hours' = { - table2Version = 228 ; - indicatorOfParameter = 224 ; - } -#Minimum total precipitation rate in the last 6 hours -'Minimum total precipitation rate in the last 6 hours' = { - table2Version = 228 ; - indicatorOfParameter = 225 ; - } -#Maximum total precipitation rate since previous post-processing -'Maximum total precipitation rate since previous post-processing' = { - table2Version = 228 ; - indicatorOfParameter = 226 ; - } -#Minimum total precipitation rate since previous post-processing -'Minimum total precipitation rate since previous post-processing' = { - table2Version = 228 ; - indicatorOfParameter = 227 ; - } -#SMOS first Brightness Temperature Bias Correction parameter -'SMOS first Brightness Temperature Bias Correction parameter' = { - table2Version = 228 ; - indicatorOfParameter = 229 ; - } -#SMOS second Brightness Temperature Bias Correction parameter -'SMOS second Brightness Temperature Bias Correction parameter' = { - table2Version = 228 ; - indicatorOfParameter = 230 ; - } -#200 metre U wind component -'200 metre U wind component' = { - table2Version = 228 ; - indicatorOfParameter = 239 ; - } -#200 metre V wind component -'200 metre V wind component' = { - table2Version = 228 ; - indicatorOfParameter = 240 ; - } -#200 metre wind speed -'200 metre wind speed' = { - table2Version = 228 ; - indicatorOfParameter = 241 ; - } -#Surface solar radiation diffuse total sky -'Surface solar radiation diffuse total sky' = { - table2Version = 228 ; - indicatorOfParameter = 242 ; - } -#Surface solar radiation diffuse clear-sky -'Surface solar radiation diffuse clear-sky' = { - table2Version = 228 ; - indicatorOfParameter = 243 ; - } -#Surface albedo of direct radiation -'Surface albedo of direct radiation' = { - table2Version = 228 ; - indicatorOfParameter = 244 ; - } -#Surface albedo of diffuse radiation -'Surface albedo of diffuse radiation' = { - table2Version = 228 ; - indicatorOfParameter = 245 ; - } -#100 metre wind speed -'100 metre wind speed' = { - table2Version = 228 ; - indicatorOfParameter = 249 ; - } -#Irrigation fraction -'Irrigation fraction' = { - table2Version = 228 ; - indicatorOfParameter = 250 ; - } -#Potential evaporation -'Potential evaporation' = { - table2Version = 228 ; - indicatorOfParameter = 251 ; - } -#Irrigation -'Irrigation' = { - table2Version = 228 ; - indicatorOfParameter = 252 ; - } -#Surface runoff (variable resolution) -'Surface runoff (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff (variable resolution) -'Sub-surface runoff (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 9 ; - } -#Clear sky surface photosynthetically active radiation (variable resolution) -'Clear sky surface photosynthetically active radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface (variable resolution) -'Total sky direct solar radiation at surface (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface (variable resolution) -'Clear-sky direct solar radiation at surface (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 22 ; - } -#Direct solar radiation (variable resolution) -'Direct solar radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 47 ; - } -#Large-scale precipitation fraction (variable resolution) -'Large-scale precipitation fraction (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 50 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) -'Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) -'Accumulated Carbon Dioxide Gross Primary Production (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) -'Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 82 ; - } -#Surface solar radiation downward clear-sky (variable resolution) -'Surface solar radiation downward clear-sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky (variable resolution) -'Surface thermal radiation downward clear-sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 130 ; - } -#Albedo (variable resolution) -'Albedo (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 174 ; - } -#Vertically integrated moisture divergence (variable resolution) -'Vertically integrated moisture divergence (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 213 ; - } -#Accumulated freezing rain (variable resolution) -'Accumulated freezing rain (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 216 ; - } -#Total precipitation (variable resolution) -'Total precipitation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall (variable resolution) -'Convective snowfall (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall (variable resolution) -'Large-scale snowfall (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 240 ; - } -#Potential evaporation (variable resolution) -'Potential evaporation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 251 ; - } -#Mean surface runoff rate -'Mean surface runoff rate' = { - table2Version = 235 ; - indicatorOfParameter = 20 ; - } -#Mean sub-surface runoff rate -'Mean sub-surface runoff rate' = { - table2Version = 235 ; - indicatorOfParameter = 21 ; - } -#Mean surface photosynthetically active radiation flux, clear sky -'Mean surface photosynthetically active radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 22 ; - } -#Mean snow evaporation rate -'Mean snow evaporation rate' = { - table2Version = 235 ; - indicatorOfParameter = 23 ; - } -#Mean snowmelt rate -'Mean snowmelt rate' = { - table2Version = 235 ; - indicatorOfParameter = 24 ; - } -#Mean magnitude of turbulent surface stress -'Mean magnitude of turbulent surface stress' = { - table2Version = 235 ; - indicatorOfParameter = 25 ; - } -#Mean large-scale precipitation fraction -'Mean large-scale precipitation fraction' = { - table2Version = 235 ; - indicatorOfParameter = 26 ; - } -#Mean surface downward UV radiation flux -'Mean surface downward UV radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 27 ; - } -#Mean surface photosynthetically active radiation flux -'Mean surface photosynthetically active radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 28 ; - } -#Mean large-scale precipitation rate -'Mean large-scale precipitation rate' = { - table2Version = 235 ; - indicatorOfParameter = 29 ; - } -#Mean convective precipitation rate -'Mean convective precipitation rate' = { - table2Version = 235 ; - indicatorOfParameter = 30 ; - } -#Mean snowfall rate -'Mean snowfall rate' = { - table2Version = 235 ; - indicatorOfParameter = 31 ; - } -#Mean boundary layer dissipation -'Mean boundary layer dissipation' = { - table2Version = 235 ; - indicatorOfParameter = 32 ; - } -#Mean surface sensible heat flux -'Mean surface sensible heat flux' = { - table2Version = 235 ; - indicatorOfParameter = 33 ; - } -#Mean surface latent heat flux -'Mean surface latent heat flux' = { - table2Version = 235 ; - indicatorOfParameter = 34 ; - } -#Mean surface downward short-wave radiation flux -'Mean surface downward short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 35 ; - } -#Mean surface downward long-wave radiation flux -'Mean surface downward long-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 36 ; - } -#Mean surface net short-wave radiation flux -'Mean surface net short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 37 ; - } -#Mean surface net long-wave radiation flux -'Mean surface net long-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 38 ; - } -#Mean top net short-wave radiation flux -'Mean top net short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 39 ; - } -#Mean top net long-wave radiation flux -'Mean top net long-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 40 ; - } -#Mean eastward turbulent surface stress -'Mean eastward turbulent surface stress' = { - table2Version = 235 ; - indicatorOfParameter = 41 ; - } -#Mean northward turbulent surface stress -'Mean northward turbulent surface stress' = { - table2Version = 235 ; - indicatorOfParameter = 42 ; - } -#Mean evaporation rate -'Mean evaporation rate' = { - table2Version = 235 ; - indicatorOfParameter = 43 ; - } -#Sunshine duration fraction -'Sunshine duration fraction' = { - table2Version = 235 ; - indicatorOfParameter = 44 ; - } -#Mean eastward gravity wave surface stress -'Mean eastward gravity wave surface stress' = { - table2Version = 235 ; - indicatorOfParameter = 45 ; - } -#Mean northward gravity wave surface stress -'Mean northward gravity wave surface stress' = { - table2Version = 235 ; - indicatorOfParameter = 46 ; - } -#Mean gravity wave dissipation -'Mean gravity wave dissipation' = { - table2Version = 235 ; - indicatorOfParameter = 47 ; - } -#Mean runoff rate -'Mean runoff rate' = { - table2Version = 235 ; - indicatorOfParameter = 48 ; - } -#Mean top net short-wave radiation flux, clear sky -'Mean top net short-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 49 ; - } -#Mean top net long-wave radiation flux, clear sky -'Mean top net long-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 50 ; - } -#Mean surface net short-wave radiation flux, clear sky -'Mean surface net short-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 51 ; - } -#Mean surface net long-wave radiation flux, clear sky -'Mean surface net long-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 52 ; - } -#Mean top downward short-wave radiation flux -'Mean top downward short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 53 ; - } -#Mean vertically integrated moisture divergence -'Mean vertically integrated moisture divergence' = { - table2Version = 235 ; - indicatorOfParameter = 54 ; - } -#Mean total precipitation rate -'Mean total precipitation rate' = { - table2Version = 235 ; - indicatorOfParameter = 55 ; - } -#Mean convective snowfall rate -'Mean convective snowfall rate' = { - table2Version = 235 ; - indicatorOfParameter = 56 ; - } -#Mean large-scale snowfall rate -'Mean large-scale snowfall rate' = { - table2Version = 235 ; - indicatorOfParameter = 57 ; - } -#Mean surface direct short-wave radiation flux -'Mean surface direct short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 58 ; - } -#Mean surface direct short-wave radiation flux, clear sky -'Mean surface direct short-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 59 ; - } -#Mean surface diffuse short-wave radiation flux -'Mean surface diffuse short-wave radiation flux' = { - table2Version = 235 ; - indicatorOfParameter = 60 ; - } -#Mean surface diffuse short-wave radiation flux, clear sky -'Mean surface diffuse short-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 61 ; - } -#Mean carbon dioxide net ecosystem exchange flux -'Mean carbon dioxide net ecosystem exchange flux' = { - table2Version = 235 ; - indicatorOfParameter = 62 ; - } -#Mean carbon dioxide gross primary production flux -'Mean carbon dioxide gross primary production flux' = { - table2Version = 235 ; - indicatorOfParameter = 63 ; - } -#Mean carbon dioxide ecosystem respiration flux -'Mean carbon dioxide ecosystem respiration flux' = { - table2Version = 235 ; - indicatorOfParameter = 64 ; - } -#Mean rain rate -'Mean rain rate' = { - table2Version = 235 ; - indicatorOfParameter = 65 ; - } -#Mean convective rain rate -'Mean convective rain rate' = { - table2Version = 235 ; - indicatorOfParameter = 66 ; - } -#Mean large-scale rain rate -'Mean large-scale rain rate' = { - table2Version = 235 ; - indicatorOfParameter = 67 ; - } -#Mean surface downward short-wave radiation flux, clear sky -'Mean surface downward short-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 68 ; - } -#Mean surface downward long-wave radiation flux, clear sky -'Mean surface downward long-wave radiation flux, clear sky' = { - table2Version = 235 ; - indicatorOfParameter = 69 ; - } -#Mean potential evaporation rate -'Mean potential evaporation rate' = { - table2Version = 235 ; - indicatorOfParameter = 70 ; - } -#Total precipitation rate -'Total precipitation rate' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#Ceiling -'Ceiling' = { - table2Version = 228 ; - indicatorOfParameter = 109 ; - } -#K index -'K index' = { - table2Version = 228 ; - indicatorOfParameter = 121 ; - } -#Total totals index -'Total totals index' = { - table2Version = 228 ; - indicatorOfParameter = 123 ; - } -#Stream function gradient -'Stream function gradient' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Velocity potential gradient -'Velocity potential gradient' = { - table2Version = 129 ; - indicatorOfParameter = 2 ; - } -#Potential temperature gradient -'Potential temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature gradient -'Equivalent potential temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature gradient -'Saturated equivalent potential temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind gradient -'U component of divergent wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind gradient -'V component of divergent wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind gradient -'U component of rotational wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind gradient -'V component of rotational wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature gradient -'Unbalanced component of temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'Unbalanced component of logarithm of surface pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence gradient -'Unbalanced component of divergence gradient' = { - table2Version = 129 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 129 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - table2Version = 129 ; - indicatorOfParameter = 25 ; - } -#Lake cover gradient -'Lake cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover gradient -'Low vegetation cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover gradient -'High vegetation cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation gradient -'Type of low vegetation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation gradient -'Type of high vegetation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover gradient -'Sea-ice cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 31 ; - } -#Snow albedo gradient -'Snow albedo gradient' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#Snow density gradient -'Snow density gradient' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature gradient -'Sea surface temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 gradient -'Ice surface temperature layer 1 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 gradient -'Ice surface temperature layer 2 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 gradient -'Ice surface temperature layer 3 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 gradient -'Ice surface temperature layer 4 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 gradient -'Volumetric soil water layer 1 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 gradient -'Volumetric soil water layer 2 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 gradient -'Volumetric soil water layer 3 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 gradient -'Volumetric soil water layer 4 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 42 ; - } -#Soil type gradient -'Soil type gradient' = { - table2Version = 129 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation gradient -'Snow evaporation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 44 ; - } -#Snowmelt gradient -'Snowmelt gradient' = { - table2Version = 129 ; - indicatorOfParameter = 45 ; - } -#Solar duration gradient -'Solar duration gradient' = { - table2Version = 129 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation gradient -'Direct solar radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress gradient -'Magnitude of turbulent surface stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust gradient -'10 metre wind gust gradient' = { - table2Version = 129 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction gradient -'Large-scale precipitation fraction gradient' = { - table2Version = 129 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature gradient -'Maximum 2 metre temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature gradient -'Minimum 2 metre temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential gradient -'Montgomery potential gradient' = { - table2Version = 129 ; - indicatorOfParameter = 53 ; - } -#Pressure gradient -'Pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'Mean 2 metre temperature in the last 24 hours gradient' = { - table2Version = 129 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { - table2Version = 129 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface gradient -'Downward UV radiation at the surface gradient' = { - table2Version = 129 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'Photosynthetically active radiation at the surface gradient' = { - table2Version = 129 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy gradient -'Convective available potential energy gradient' = { - table2Version = 129 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity gradient -'Potential vorticity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations gradient -'Total precipitation from observations gradient' = { - table2Version = 129 ; - indicatorOfParameter = 61 ; - } -#Observation count gradient -'Observation count gradient' = { - table2Version = 129 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - table2Version = 129 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - table2Version = 129 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - table2Version = 129 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'Total column ice water' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'Experimental product' = { - table2Version = 129 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres gradient -'Maximum temperature at 2 metres gradient' = { - table2Version = 129 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres gradient -'Minimum temperature at 2 metres gradient' = { - table2Version = 129 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10 metre wind gust in the last 6 hours gradient' = { - table2Version = 129 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - table2Version = 129 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - table2Version = 129 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide gradient -'Atmospheric tide gradient' = { - table2Version = 129 ; - indicatorOfParameter = 127 ; - } -#Budget values gradient -'Budget values gradient' = { - table2Version = 129 ; - indicatorOfParameter = 128 ; - } -#Geopotential gradient -'Geopotential gradient' = { - table2Version = 129 ; - indicatorOfParameter = 129 ; - } -#Temperature gradient -'Temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 130 ; - } -#U component of wind gradient -'U component of wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 131 ; - } -#V component of wind gradient -'V component of wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 132 ; - } -#Specific humidity gradient -'Specific humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 133 ; - } -#Surface pressure gradient -'Surface pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 134 ; - } -#vertical velocity (pressure) gradient -'vertical velocity (pressure) gradient' = { - table2Version = 129 ; - indicatorOfParameter = 135 ; - } -#Total column water gradient -'Total column water gradient' = { - table2Version = 129 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour gradient -'Total column water vapour gradient' = { - table2Version = 129 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) gradient -'Vorticity (relative) gradient' = { - table2Version = 129 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 gradient -'Soil temperature level 1 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 gradient -'Soil wetness level 1 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 140 ; - } -#Snow depth gradient -'Snow depth gradient' = { - table2Version = 129 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'Stratiform precipitation (Large-scale precipitation) gradient' = { - table2Version = 129 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation gradient -'Convective precipitation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) gradient -'Snowfall (convective + stratiform) gradient' = { - table2Version = 129 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation gradient -'Boundary layer dissipation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux gradient -'Surface sensible heat flux gradient' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux gradient -'Surface latent heat flux gradient' = { - table2Version = 129 ; - indicatorOfParameter = 147 ; - } -#Charnock gradient -'Charnock gradient' = { - table2Version = 129 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation gradient -'Surface net radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 149 ; - } -#Top net radiation gradient -'Top net radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure gradient -'Mean sea level pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure gradient -'Logarithm of surface pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate gradient -'Short-wave heating rate gradient' = { - table2Version = 129 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate gradient -'Long-wave heating rate gradient' = { - table2Version = 129 ; - indicatorOfParameter = 154 ; - } -#Divergence gradient -'Divergence gradient' = { - table2Version = 129 ; - indicatorOfParameter = 155 ; - } -#Height gradient -'Height gradient' = { - table2Version = 129 ; - indicatorOfParameter = 156 ; - } -#Relative humidity gradient -'Relative humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure gradient -'Tendency of surface pressure gradient' = { - table2Version = 129 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height gradient -'Boundary layer height gradient' = { - table2Version = 129 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography gradient -'Standard deviation of orography gradient' = { - table2Version = 129 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'Anisotropy of sub-gridscale orography gradient' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography gradient -'Angle of sub-gridscale orography gradient' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography gradient -'Slope of sub-gridscale orography gradient' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover gradient -'Total cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component gradient -'10 metre U wind component gradient' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component gradient -'10 metre V wind component gradient' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature gradient -'2 metre temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature gradient -'2 metre dewpoint temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards gradient -'Surface solar radiation downwards gradient' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 gradient -'Soil temperature level 2 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 gradient -'Soil wetness level 2 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask gradient -'Land-sea mask gradient' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#Surface roughness gradient -'Surface roughness gradient' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#Albedo gradient -'Albedo gradient' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards gradient -'Surface thermal radiation downwards gradient' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation gradient -'Surface net solar radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation gradient -'Surface net thermal radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation gradient -'Top net solar radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation gradient -'Top net thermal radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress gradient -'East-West surface stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress gradient -'North-South surface stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#Evaporation gradient -'Evaporation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 gradient -'Soil temperature level 3 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 gradient -'Soil wetness level 3 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover gradient -'Convective cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover gradient -'Low cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover gradient -'Medium cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#High cloud cover gradient -'High cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration gradient -'Sunshine duration gradient' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'East-West component of sub-gridscale orographic variance gradient' = { - table2Version = 129 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'North-South component of sub-gridscale orographic variance gradient' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'North-West/South-East component of sub-gridscale orographic variance gradient' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'North-East/South-West component of sub-gridscale orographic variance gradient' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature gradient -'Brightness temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'Longitudinal component of gravity wave stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress gradient -'Meridional component of gravity wave stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation gradient -'Gravity wave dissipation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content gradient -'Skin reservoir content gradient' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction gradient -'Vegetation fraction gradient' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography gradient -'Variance of sub-gridscale orography gradient' = { - table2Version = 129 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'Maximum temperature at 2 metres since previous post-processing gradient' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'Minimum temperature at 2 metres since previous post-processing gradient' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio gradient -'Ozone mass mixing ratio gradient' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights gradient -'Precipitation analysis weights gradient' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#Runoff gradient -'Runoff gradient' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#Total column ozone gradient -'Total column ozone gradient' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed gradient -'10 metre wind speed gradient' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky gradient -'Top net solar radiation, clear sky gradient' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky gradient -'Top net thermal radiation, clear sky gradient' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky gradient -'Surface net solar radiation, clear sky gradient' = { - table2Version = 129 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'Surface net thermal radiation, clear sky gradient' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation gradient -'TOA incident solar radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation gradient -'Diabatic heating by radiation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'Diabatic heating by vertical diffusion gradient' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection gradient -'Diabatic heating by cumulus convection gradient' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation gradient -'Diabatic heating large-scale condensation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind gradient -'Vertical diffusion of zonal wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind gradient -'Vertical diffusion of meridional wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency gradient -'East-West gravity wave drag tendency gradient' = { - table2Version = 129 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency gradient -'North-South gravity wave drag tendency gradient' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind gradient -'Convective tendency of zonal wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind gradient -'Convective tendency of meridional wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity gradient -'Vertical diffusion of humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection gradient -'Humidity tendency by cumulus convection gradient' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'Humidity tendency by large-scale condensation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity gradient -'Change from removal of negative humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#Total precipitation gradient -'Total precipitation gradient' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress gradient -'Instantaneous X surface stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress gradient -'Instantaneous Y surface stress gradient' = { - table2Version = 129 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux gradient -'Instantaneous surface heat flux gradient' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux gradient -'Instantaneous moisture flux gradient' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity gradient -'Apparent surface humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'Logarithm of surface roughness length for heat gradient' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#Skin temperature gradient -'Skin temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 gradient -'Soil temperature level 4 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 gradient -'Soil wetness level 4 gradient' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer gradient -'Temperature of snow layer gradient' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall gradient -'Convective snowfall gradient' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall gradient -'Large scale snowfall gradient' = { - table2Version = 129 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency gradient -'Accumulated cloud fraction tendency gradient' = { - table2Version = 129 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency gradient -'Accumulated liquid water tendency gradient' = { - table2Version = 129 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo gradient -'Forecast albedo gradient' = { - table2Version = 129 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness gradient -'Forecast surface roughness gradient' = { - table2Version = 129 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'Forecast logarithm of surface roughness for heat gradient' = { - table2Version = 129 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content gradient -'Specific cloud liquid water content gradient' = { - table2Version = 129 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content gradient -'Specific cloud ice water content gradient' = { - table2Version = 129 ; - indicatorOfParameter = 247 ; - } -#Cloud cover gradient -'Cloud cover gradient' = { - table2Version = 129 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency gradient -'Accumulated ice water tendency gradient' = { - table2Version = 129 ; - indicatorOfParameter = 249 ; - } -#Ice age gradient -'Ice age gradient' = { - table2Version = 129 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature gradient -'Adiabatic tendency of temperature gradient' = { - table2Version = 129 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity gradient -'Adiabatic tendency of humidity gradient' = { - table2Version = 129 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'Adiabatic tendency of zonal wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'Adiabatic tendency of meridional wind gradient' = { - table2Version = 129 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -#Top solar radiation upward -'Top solar radiation upward' = { - table2Version = 130 ; - indicatorOfParameter = 208 ; - } -#Top thermal radiation upward -'Top thermal radiation upward' = { - table2Version = 130 ; - indicatorOfParameter = 209 ; - } -#Top solar radiation upward, clear sky -'Top solar radiation upward, clear sky' = { - table2Version = 130 ; - indicatorOfParameter = 210 ; - } -#Top thermal radiation upward, clear sky -'Top thermal radiation upward, clear sky' = { - table2Version = 130 ; - indicatorOfParameter = 211 ; - } -#Cloud liquid water -'Cloud liquid water' = { - table2Version = 130 ; - indicatorOfParameter = 212 ; - } -#Cloud fraction -'Cloud fraction' = { - table2Version = 130 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - table2Version = 130 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - table2Version = 130 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - table2Version = 130 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation -'Diabatic heating by large-scale condensation' = { - table2Version = 130 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - table2Version = 130 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - table2Version = 130 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag -'East-West gravity wave drag' = { - table2Version = 130 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag -'North-South gravity wave drag' = { - table2Version = 130 ; - indicatorOfParameter = 221 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - table2Version = 130 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - table2Version = 130 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - table2Version = 130 ; - indicatorOfParameter = 226 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - table2Version = 130 ; - indicatorOfParameter = 228 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - table2Version = 130 ; - indicatorOfParameter = 229 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - table2Version = 130 ; - indicatorOfParameter = 230 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - table2Version = 130 ; - indicatorOfParameter = 231 ; - } -#Mean vertical velocity -'Mean vertical velocity' = { - table2Version = 130 ; - indicatorOfParameter = 232 ; - } -#2m temperature anomaly of at least +2K -'2m temperature anomaly of at least +2K' = { - table2Version = 131 ; - indicatorOfParameter = 1 ; - } -#2m temperature anomaly of at least +1K -'2m temperature anomaly of at least +1K' = { - table2Version = 131 ; - indicatorOfParameter = 2 ; - } -#2m temperature anomaly of at least 0K -'2m temperature anomaly of at least 0K' = { - table2Version = 131 ; - indicatorOfParameter = 3 ; - } -#2m temperature anomaly of at most -1K -'2m temperature anomaly of at most -1K' = { - table2Version = 131 ; - indicatorOfParameter = 4 ; - } -#2m temperature anomaly of at most -2K -'2m temperature anomaly of at most -2K' = { - table2Version = 131 ; - indicatorOfParameter = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'Total precipitation anomaly of at least 20 mm' = { - table2Version = 131 ; - indicatorOfParameter = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'Total precipitation anomaly of at least 10 mm' = { - table2Version = 131 ; - indicatorOfParameter = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'Total precipitation anomaly of at least 0 mm' = { - table2Version = 131 ; - indicatorOfParameter = 8 ; - } -#Surface temperature anomaly of at least 0K -'Surface temperature anomaly of at least 0K' = { - table2Version = 131 ; - indicatorOfParameter = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'Mean sea level pressure anomaly of at least 0 Pa' = { - table2Version = 131 ; - indicatorOfParameter = 10 ; - } -#Height of 0 degree isotherm probability -'Height of 0 degree isotherm probability' = { - table2Version = 131 ; - indicatorOfParameter = 15 ; - } -#Height of snowfall limit probability -'Height of snowfall limit probability' = { - table2Version = 131 ; - indicatorOfParameter = 16 ; - } -#Showalter index probability -'Showalter index probability' = { - table2Version = 131 ; - indicatorOfParameter = 17 ; - } -#Whiting index probability -'Whiting index probability' = { - table2Version = 131 ; - indicatorOfParameter = 18 ; - } -#Temperature anomaly less than -2 K -'Temperature anomaly less than -2 K' = { - table2Version = 131 ; - indicatorOfParameter = 20 ; - } -#Temperature anomaly of at least +2 K -'Temperature anomaly of at least +2 K' = { - table2Version = 131 ; - indicatorOfParameter = 21 ; - } -#Temperature anomaly less than -8 K -'Temperature anomaly less than -8 K' = { - table2Version = 131 ; - indicatorOfParameter = 22 ; - } -#Temperature anomaly less than -4 K -'Temperature anomaly less than -4 K' = { - table2Version = 131 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly greater than +4 K -'Temperature anomaly greater than +4 K' = { - table2Version = 131 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly greater than +8 K -'Temperature anomaly greater than +8 K' = { - table2Version = 131 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability -'10 metre wind gust probability' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Convective available potential energy probability -'Convective available potential energy probability' = { - table2Version = 131 ; - indicatorOfParameter = 59 ; - } -#Total precipitation less than 0.1 mm -'Total precipitation less than 0.1 mm' = { - table2Version = 131 ; - indicatorOfParameter = 64 ; - } -#Total precipitation rate less than 1 mm/day -'Total precipitation rate less than 1 mm/day' = { - table2Version = 131 ; - indicatorOfParameter = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'Total precipitation rate of at least 3 mm/day' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'Total precipitation rate of at least 5 mm/day' = { - table2Version = 131 ; - indicatorOfParameter = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10 metre Wind speed of at least 10 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10 metre Wind speed of at least 15 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 69 ; - } -#10 metre wind gust of at least 15 m/s -'10 metre wind gust of at least 15 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 70 ; - } -#10 metre wind gust of at least 20 m/s -'10 metre wind gust of at least 20 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 71 ; - } -#10 metre wind gust of at least 25 m/s -'10 metre wind gust of at least 25 m/s' = { - table2Version = 131 ; - indicatorOfParameter = 72 ; - } -#2 metre temperature less than 273.15 K -'2 metre temperature less than 273.15 K' = { - table2Version = 131 ; - indicatorOfParameter = 73 ; - } -#Significant wave height of at least 2 m -'Significant wave height of at least 2 m' = { - table2Version = 131 ; - indicatorOfParameter = 74 ; - } -#Significant wave height of at least 4 m -'Significant wave height of at least 4 m' = { - table2Version = 131 ; - indicatorOfParameter = 75 ; - } -#Significant wave height of at least 6 m -'Significant wave height of at least 6 m' = { - table2Version = 131 ; - indicatorOfParameter = 76 ; - } -#Significant wave height of at least 8 m -'Significant wave height of at least 8 m' = { - table2Version = 131 ; - indicatorOfParameter = 77 ; - } -#Mean wave period of at least 8 s -'Mean wave period of at least 8 s' = { - table2Version = 131 ; - indicatorOfParameter = 78 ; - } -#Mean wave period of at least 10 s -'Mean wave period of at least 10 s' = { - table2Version = 131 ; - indicatorOfParameter = 79 ; - } -#Mean wave period of at least 12 s -'Mean wave period of at least 12 s' = { - table2Version = 131 ; - indicatorOfParameter = 80 ; - } -#Mean wave period of at least 15 s -'Mean wave period of at least 15 s' = { - table2Version = 131 ; - indicatorOfParameter = 81 ; - } -#Geopotential probability -'Geopotential probability' = { - table2Version = 131 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly probability -'Temperature anomaly probability' = { - table2Version = 131 ; - indicatorOfParameter = 130 ; - } -#Soil temperature level 1 probability -'Soil temperature level 1 probability' = { - table2Version = 131 ; - indicatorOfParameter = 139 ; - } -#Snowfall (convective + stratiform) probability -'Snowfall (convective + stratiform) probability' = { - table2Version = 131 ; - indicatorOfParameter = 144 ; - } -#Mean sea level pressure probability -'Mean sea level pressure probability' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Total cloud cover probability -'Total cloud cover probability' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#10 metre speed probability -'10 metre speed probability' = { - table2Version = 131 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature probability -'2 metre temperature probability' = { - table2Version = 131 ; - indicatorOfParameter = 167 ; - } -#Maximum 2 metre temperature probability -'Maximum 2 metre temperature probability' = { - table2Version = 131 ; - indicatorOfParameter = 201 ; - } -#Minimum 2 metre temperature probability -'Minimum 2 metre temperature probability' = { - table2Version = 131 ; - indicatorOfParameter = 202 ; - } -#Total precipitation probability -'Total precipitation probability' = { - table2Version = 131 ; - indicatorOfParameter = 228 ; - } -#Significant wave height probability -'Significant wave height probability' = { - table2Version = 131 ; - indicatorOfParameter = 229 ; - } -#Mean wave period probability -'Mean wave period probability' = { - table2Version = 131 ; - indicatorOfParameter = 232 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust index -'10 metre wind gust index' = { - table2Version = 132 ; - indicatorOfParameter = 49 ; - } -#Snowfall index -'Snowfall index' = { - table2Version = 132 ; - indicatorOfParameter = 144 ; - } -#10 metre speed index -'10 metre speed index' = { - table2Version = 132 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature index -'2 metre temperature index' = { - table2Version = 132 ; - indicatorOfParameter = 167 ; - } -#Maximum temperature at 2 metres index -'Maximum temperature at 2 metres index' = { - table2Version = 132 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres index -'Minimum temperature at 2 metres index' = { - table2Version = 132 ; - indicatorOfParameter = 202 ; - } -#Total precipitation index -'Total precipitation index' = { - table2Version = 132 ; - indicatorOfParameter = 228 ; - } -#2m temperature probability less than -10 C -'2m temperature probability less than -10 C' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#2m temperature probability less than -5 C -'2m temperature probability less than -5 C' = { - table2Version = 133 ; - indicatorOfParameter = 2 ; - } -#2m temperature probability less than 0 C -'2m temperature probability less than 0 C' = { - table2Version = 133 ; - indicatorOfParameter = 3 ; - } -#2m temperature probability less than 5 C -'2m temperature probability less than 5 C' = { - table2Version = 133 ; - indicatorOfParameter = 4 ; - } -#2m temperature probability less than 10 C -'2m temperature probability less than 10 C' = { - table2Version = 133 ; - indicatorOfParameter = 5 ; - } -#2m temperature probability greater than 25 C -'2m temperature probability greater than 25 C' = { - table2Version = 133 ; - indicatorOfParameter = 6 ; - } -#2m temperature probability greater than 30 C -'2m temperature probability greater than 30 C' = { - table2Version = 133 ; - indicatorOfParameter = 7 ; - } -#2m temperature probability greater than 35 C -'2m temperature probability greater than 35 C' = { - table2Version = 133 ; - indicatorOfParameter = 8 ; - } -#2m temperature probability greater than 40 C -'2m temperature probability greater than 40 C' = { - table2Version = 133 ; - indicatorOfParameter = 9 ; - } -#2m temperature probability greater than 45 C -'2m temperature probability greater than 45 C' = { - table2Version = 133 ; - indicatorOfParameter = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'Minimum 2 metre temperature probability less than -10 C' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'Minimum 2 metre temperature probability less than -5 C' = { - table2Version = 133 ; - indicatorOfParameter = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'Minimum 2 metre temperature probability less than 0 C' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'Minimum 2 metre temperature probability less than 5 C' = { - table2Version = 133 ; - indicatorOfParameter = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'Minimum 2 metre temperature probability less than 10 C' = { - table2Version = 133 ; - indicatorOfParameter = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'Maximum 2 metre temperature probability greater than 25 C' = { - table2Version = 133 ; - indicatorOfParameter = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'Maximum 2 metre temperature probability greater than 30 C' = { - table2Version = 133 ; - indicatorOfParameter = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'Maximum 2 metre temperature probability greater than 35 C' = { - table2Version = 133 ; - indicatorOfParameter = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'Maximum 2 metre temperature probability greater than 40 C' = { - table2Version = 133 ; - indicatorOfParameter = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'Maximum 2 metre temperature probability greater than 45 C' = { - table2Version = 133 ; - indicatorOfParameter = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10 metre wind speed probability of at least 10 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10 metre wind speed probability of at least 15 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10 metre wind speed probability of at least 20 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10 metre wind speed probability of at least 35 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10 metre wind speed probability of at least 50 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10 metre wind gust probability of at least 20 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10 metre wind gust probability of at least 35 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10 metre wind gust probability of at least 50 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10 metre wind gust probability of at least 75 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10 metre wind gust probability of at least 100 m/s' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Total precipitation probability of at least 1 mm -'Total precipitation probability of at least 1 mm' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Total precipitation probability of at least 5 mm -'Total precipitation probability of at least 5 mm' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#Total precipitation probability of at least 10 mm -'Total precipitation probability of at least 10 mm' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#Total precipitation probability of at least 20 mm -'Total precipitation probability of at least 20 mm' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Total precipitation probability of at least 40 mm -'Total precipitation probability of at least 40 mm' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Total precipitation probability of at least 60 mm -'Total precipitation probability of at least 60 mm' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Total precipitation probability of at least 80 mm -'Total precipitation probability of at least 80 mm' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Total precipitation probability of at least 100 mm -'Total precipitation probability of at least 100 mm' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Total precipitation probability of at least 150 mm -'Total precipitation probability of at least 150 mm' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Total precipitation probability of at least 200 mm -'Total precipitation probability of at least 200 mm' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Total precipitation probability of at least 300 mm -'Total precipitation probability of at least 300 mm' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Snowfall probability of at least 1 mm -'Snowfall probability of at least 1 mm' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Snowfall probability of at least 5 mm -'Snowfall probability of at least 5 mm' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Snowfall probability of at least 10 mm -'Snowfall probability of at least 10 mm' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Snowfall probability of at least 20 mm -'Snowfall probability of at least 20 mm' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Snowfall probability of at least 40 mm -'Snowfall probability of at least 40 mm' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Snowfall probability of at least 60 mm -'Snowfall probability of at least 60 mm' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Snowfall probability of at least 80 mm -'Snowfall probability of at least 80 mm' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#Snowfall probability of at least 100 mm -'Snowfall probability of at least 100 mm' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#Snowfall probability of at least 150 mm -'Snowfall probability of at least 150 mm' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Snowfall probability of at least 200 mm -'Snowfall probability of at least 200 mm' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snowfall probability of at least 300 mm -'Snowfall probability of at least 300 mm' = { - table2Version = 133 ; - indicatorOfParameter = 52 ; - } -#Total Cloud Cover probability greater than 10% -'Total Cloud Cover probability greater than 10%' = { - table2Version = 133 ; - indicatorOfParameter = 53 ; - } -#Total Cloud Cover probability greater than 20% -'Total Cloud Cover probability greater than 20%' = { - table2Version = 133 ; - indicatorOfParameter = 54 ; - } -#Total Cloud Cover probability greater than 30% -'Total Cloud Cover probability greater than 30%' = { - table2Version = 133 ; - indicatorOfParameter = 55 ; - } -#Total Cloud Cover probability greater than 40% -'Total Cloud Cover probability greater than 40%' = { - table2Version = 133 ; - indicatorOfParameter = 56 ; - } -#Total Cloud Cover probability greater than 50% -'Total Cloud Cover probability greater than 50%' = { - table2Version = 133 ; - indicatorOfParameter = 57 ; - } -#Total Cloud Cover probability greater than 60% -'Total Cloud Cover probability greater than 60%' = { - table2Version = 133 ; - indicatorOfParameter = 58 ; - } -#Total Cloud Cover probability greater than 70% -'Total Cloud Cover probability greater than 70%' = { - table2Version = 133 ; - indicatorOfParameter = 59 ; - } -#Total Cloud Cover probability greater than 80% -'Total Cloud Cover probability greater than 80%' = { - table2Version = 133 ; - indicatorOfParameter = 60 ; - } -#Total Cloud Cover probability greater than 90% -'Total Cloud Cover probability greater than 90%' = { - table2Version = 133 ; - indicatorOfParameter = 61 ; - } -#Total Cloud Cover probability greater than 99% -'Total Cloud Cover probability greater than 99%' = { - table2Version = 133 ; - indicatorOfParameter = 62 ; - } -#High Cloud Cover probability greater than 10% -'High Cloud Cover probability greater than 10%' = { - table2Version = 133 ; - indicatorOfParameter = 63 ; - } -#High Cloud Cover probability greater than 20% -'High Cloud Cover probability greater than 20%' = { - table2Version = 133 ; - indicatorOfParameter = 64 ; - } -#High Cloud Cover probability greater than 30% -'High Cloud Cover probability greater than 30%' = { - table2Version = 133 ; - indicatorOfParameter = 65 ; - } -#High Cloud Cover probability greater than 40% -'High Cloud Cover probability greater than 40%' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#High Cloud Cover probability greater than 50% -'High Cloud Cover probability greater than 50%' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#High Cloud Cover probability greater than 60% -'High Cloud Cover probability greater than 60%' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#High Cloud Cover probability greater than 70% -'High Cloud Cover probability greater than 70%' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#High Cloud Cover probability greater than 80% -'High Cloud Cover probability greater than 80%' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#High Cloud Cover probability greater than 90% -'High Cloud Cover probability greater than 90%' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#High Cloud Cover probability greater than 99% -'High Cloud Cover probability greater than 99%' = { - table2Version = 133 ; - indicatorOfParameter = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'Medium Cloud Cover probability greater than 10%' = { - table2Version = 133 ; - indicatorOfParameter = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'Medium Cloud Cover probability greater than 20%' = { - table2Version = 133 ; - indicatorOfParameter = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'Medium Cloud Cover probability greater than 30%' = { - table2Version = 133 ; - indicatorOfParameter = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'Medium Cloud Cover probability greater than 40%' = { - table2Version = 133 ; - indicatorOfParameter = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'Medium Cloud Cover probability greater than 50%' = { - table2Version = 133 ; - indicatorOfParameter = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'Medium Cloud Cover probability greater than 60%' = { - table2Version = 133 ; - indicatorOfParameter = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'Medium Cloud Cover probability greater than 70%' = { - table2Version = 133 ; - indicatorOfParameter = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'Medium Cloud Cover probability greater than 80%' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'Medium Cloud Cover probability greater than 90%' = { - table2Version = 133 ; - indicatorOfParameter = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'Medium Cloud Cover probability greater than 99%' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Low Cloud Cover probability greater than 10% -'Low Cloud Cover probability greater than 10%' = { - table2Version = 133 ; - indicatorOfParameter = 83 ; - } -#Low Cloud Cover probability greater than 20% -'Low Cloud Cover probability greater than 20%' = { - table2Version = 133 ; - indicatorOfParameter = 84 ; - } -#Low Cloud Cover probability greater than 30% -'Low Cloud Cover probability greater than 30%' = { - table2Version = 133 ; - indicatorOfParameter = 85 ; - } -#Low Cloud Cover probability greater than 40% -'Low Cloud Cover probability greater than 40%' = { - table2Version = 133 ; - indicatorOfParameter = 86 ; - } -#Low Cloud Cover probability greater than 50% -'Low Cloud Cover probability greater than 50%' = { - table2Version = 133 ; - indicatorOfParameter = 87 ; - } -#Low Cloud Cover probability greater than 60% -'Low Cloud Cover probability greater than 60%' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Low Cloud Cover probability greater than 70% -'Low Cloud Cover probability greater than 70%' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Low Cloud Cover probability greater than 80% -'Low Cloud Cover probability greater than 80%' = { - table2Version = 133 ; - indicatorOfParameter = 90 ; - } -#Low Cloud Cover probability greater than 90% -'Low Cloud Cover probability greater than 90%' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Low Cloud Cover probability greater than 99% -'Low Cloud Cover probability greater than 99%' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Maximum of significant wave height -'Maximum of significant wave height' = { - table2Version = 140 ; - indicatorOfParameter = 200 ; - } -#Period corresponding to maximum individual wave height -'Period corresponding to maximum individual wave height' = { - table2Version = 140 ; - indicatorOfParameter = 217 ; - } -#Maximum individual wave height -'Maximum individual wave height' = { - table2Version = 140 ; - indicatorOfParameter = 218 ; - } -#Model bathymetry -'Model bathymetry' = { - table2Version = 140 ; - indicatorOfParameter = 219 ; - } -#Mean wave period based on first moment -'Mean wave period based on first moment' = { - table2Version = 140 ; - indicatorOfParameter = 220 ; - } -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - table2Version = 140 ; - indicatorOfParameter = 221 ; - } -#Wave spectral directional width -'Wave spectral directional width' = { - table2Version = 140 ; - indicatorOfParameter = 222 ; - } -#Mean wave period based on first moment for wind waves -'Mean wave period based on first moment for wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 223 ; - } -#Mean wave period based on second moment for wind waves -'Mean wave period based on second moment for wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 224 ; - } -#Wave spectral directional width for wind waves -'Wave spectral directional width for wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 225 ; - } -#Mean wave period based on first moment for swell -'Mean wave period based on first moment for swell' = { - table2Version = 140 ; - indicatorOfParameter = 226 ; - } -#Mean wave period based on second moment for swell -'Mean wave period based on second moment for swell' = { - table2Version = 140 ; - indicatorOfParameter = 227 ; - } -#Wave spectral directional width for swell -'Wave spectral directional width for swell' = { - table2Version = 140 ; - indicatorOfParameter = 228 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 140 ; - indicatorOfParameter = 229 ; - } -#Mean wave direction -'Mean wave direction' = { - table2Version = 140 ; - indicatorOfParameter = 230 ; - } -#Peak wave period -'Peak wave period' = { - table2Version = 140 ; - indicatorOfParameter = 231 ; - } -#Mean wave period -'Mean wave period' = { - table2Version = 140 ; - indicatorOfParameter = 232 ; - } -#Coefficient of drag with waves -'Coefficient of drag with waves' = { - table2Version = 140 ; - indicatorOfParameter = 233 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 234 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 235 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 140 ; - indicatorOfParameter = 236 ; - } -#Significant height of total swell -'Significant height of total swell' = { - table2Version = 140 ; - indicatorOfParameter = 237 ; - } -#Mean direction of total swell -'Mean direction of total swell' = { - table2Version = 140 ; - indicatorOfParameter = 238 ; - } -#Mean period of total swell -'Mean period of total swell' = { - table2Version = 140 ; - indicatorOfParameter = 239 ; - } -#Standard deviation wave height -'Standard deviation wave height' = { - table2Version = 140 ; - indicatorOfParameter = 240 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - table2Version = 140 ; - indicatorOfParameter = 241 ; - } -#Mean wind direction -'Mean wind direction' = { - table2Version = 140 ; - indicatorOfParameter = 242 ; - } -#Standard deviation of 10 metre wind speed -'Standard deviation of 10 metre wind speed' = { - table2Version = 140 ; - indicatorOfParameter = 243 ; - } -#Mean square slope of waves -'Mean square slope of waves' = { - table2Version = 140 ; - indicatorOfParameter = 244 ; - } -#10 metre wind speed -'10 metre wind speed' = { - table2Version = 140 ; - indicatorOfParameter = 245 ; - } -#Altimeter wave height -'Altimeter wave height' = { - table2Version = 140 ; - indicatorOfParameter = 246 ; - } -#Altimeter corrected wave height -'Altimeter corrected wave height' = { - table2Version = 140 ; - indicatorOfParameter = 247 ; - } -#Altimeter range relative correction -'Altimeter range relative correction' = { - table2Version = 140 ; - indicatorOfParameter = 248 ; - } -#10 metre wind direction -'10 metre wind direction' = { - table2Version = 140 ; - indicatorOfParameter = 249 ; - } -#2D wave spectra (multiple) -'2D wave spectra (multiple)' = { - table2Version = 140 ; - indicatorOfParameter = 250 ; - } -#2D wave spectra (single) -'2D wave spectra (single)' = { - table2Version = 140 ; - indicatorOfParameter = 251 ; - } -#Wave spectral kurtosis -'Wave spectral kurtosis' = { - table2Version = 140 ; - indicatorOfParameter = 252 ; - } -#Benjamin-Feir index -'Benjamin-Feir index' = { - table2Version = 140 ; - indicatorOfParameter = 253 ; - } -#Wave spectral peakedness -'Wave spectral peakedness' = { - table2Version = 140 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -#Ocean potential temperature -'Ocean potential temperature' = { - table2Version = 150 ; - indicatorOfParameter = 129 ; - } -#Ocean salinity -'Ocean salinity' = { - table2Version = 150 ; - indicatorOfParameter = 130 ; - } -#Ocean potential density -'Ocean potential density' = { - table2Version = 150 ; - indicatorOfParameter = 131 ; - } -#Ocean U wind component -'Ocean U wind component' = { - table2Version = 150 ; - indicatorOfParameter = 133 ; - } -#Ocean V wind component -'Ocean V wind component' = { - table2Version = 150 ; - indicatorOfParameter = 134 ; - } -#Ocean W wind component -'Ocean W wind component' = { - table2Version = 150 ; - indicatorOfParameter = 135 ; - } -#Richardson number -'Richardson number' = { - table2Version = 150 ; - indicatorOfParameter = 137 ; - } -#U*V product -'U*V product' = { - table2Version = 150 ; - indicatorOfParameter = 139 ; - } -#U*T product -'U*T product' = { - table2Version = 150 ; - indicatorOfParameter = 140 ; - } -#V*T product -'V*T product' = { - table2Version = 150 ; - indicatorOfParameter = 141 ; - } -#U*U product -'U*U product' = { - table2Version = 150 ; - indicatorOfParameter = 142 ; - } -#V*V product -'V*V product' = { - table2Version = 150 ; - indicatorOfParameter = 143 ; - } -#UV - U~V~ -'UV - U~V~' = { - table2Version = 150 ; - indicatorOfParameter = 144 ; - } -#UT - U~T~ -'UT - U~T~' = { - table2Version = 150 ; - indicatorOfParameter = 145 ; - } -#VT - V~T~ -'VT - V~T~' = { - table2Version = 150 ; - indicatorOfParameter = 146 ; - } -#UU - U~U~ -'UU - U~U~' = { - table2Version = 150 ; - indicatorOfParameter = 147 ; - } -#VV - V~V~ -'VV - V~V~' = { - table2Version = 150 ; - indicatorOfParameter = 148 ; - } -#Sea level -'Sea level' = { - table2Version = 150 ; - indicatorOfParameter = 152 ; - } -#Barotropic stream function -'Barotropic stream function' = { - table2Version = 150 ; - indicatorOfParameter = 153 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 150 ; - indicatorOfParameter = 154 ; - } -#Depth -'Depth' = { - table2Version = 150 ; - indicatorOfParameter = 155 ; - } -#U stress -'U stress' = { - table2Version = 150 ; - indicatorOfParameter = 168 ; - } -#V stress -'V stress' = { - table2Version = 150 ; - indicatorOfParameter = 169 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - table2Version = 150 ; - indicatorOfParameter = 170 ; - } -#Net surface heat flux -'Net surface heat flux' = { - table2Version = 150 ; - indicatorOfParameter = 171 ; - } -#Surface solar radiation -'Surface solar radiation' = { - table2Version = 150 ; - indicatorOfParameter = 172 ; - } -#P-E -'P-E' = { - table2Version = 150 ; - indicatorOfParameter = 173 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - table2Version = 150 ; - indicatorOfParameter = 180 ; - } -#Heat flux correction -'Heat flux correction' = { - table2Version = 150 ; - indicatorOfParameter = 181 ; - } -#Observed sea surface temperature -'Observed sea surface temperature' = { - table2Version = 150 ; - indicatorOfParameter = 182 ; - } -#Observed heat flux -'Observed heat flux' = { - table2Version = 150 ; - indicatorOfParameter = 183 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -#In situ Temperature -'In situ Temperature' = { - table2Version = 151 ; - indicatorOfParameter = 128 ; - } -#Sea water potential temperature -'Sea water potential temperature' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'Sea water practical salinity' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'Eastward sea water velocity' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'Northward sea water velocity' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'Upward sea water velocity' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Modulus of strain rate tensor -'Modulus of strain rate tensor' = { - table2Version = 151 ; - indicatorOfParameter = 134 ; - } -#Vertical viscosity -'Vertical viscosity' = { - table2Version = 151 ; - indicatorOfParameter = 135 ; - } -#Vertical diffusivity -'Vertical diffusivity' = { - table2Version = 151 ; - indicatorOfParameter = 136 ; - } -#Bottom level Depth -'Bottom level Depth' = { - table2Version = 151 ; - indicatorOfParameter = 137 ; - } -#Sea water sigma theta -'Sea water sigma theta' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Richardson number -'Richardson number' = { - table2Version = 151 ; - indicatorOfParameter = 139 ; - } -#UV product -'UV product' = { - table2Version = 151 ; - indicatorOfParameter = 140 ; - } -#UT product -'UT product' = { - table2Version = 151 ; - indicatorOfParameter = 141 ; - } -#VT product -'VT product' = { - table2Version = 151 ; - indicatorOfParameter = 142 ; - } -#UU product -'UU product' = { - table2Version = 151 ; - indicatorOfParameter = 143 ; - } -#VV product -'VV product' = { - table2Version = 151 ; - indicatorOfParameter = 144 ; - } -#Sea surface height -'Sea surface height' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Sea level previous timestep -'Sea level previous timestep' = { - table2Version = 151 ; - indicatorOfParameter = 146 ; - } -#Ocean barotropic stream function -'Ocean barotropic stream function' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 151 ; - indicatorOfParameter = 148 ; - } -#Bottom Pressure (equivalent height) -'Bottom Pressure (equivalent height)' = { - table2Version = 151 ; - indicatorOfParameter = 149 ; - } -#Steric height -'Steric height' = { - table2Version = 151 ; - indicatorOfParameter = 150 ; - } -#Curl of Wind Stress -'Curl of Wind Stress' = { - table2Version = 151 ; - indicatorOfParameter = 151 ; - } -#Divergence of wind stress -'Divergence of wind stress' = { - table2Version = 151 ; - indicatorOfParameter = 152 ; - } -#Surface downward eastward stress -'Surface downward eastward stress' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'Surface downward northward stress' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - table2Version = 151 ; - indicatorOfParameter = 155 ; - } -#Net surface heat flux -'Net surface heat flux' = { - table2Version = 151 ; - indicatorOfParameter = 156 ; - } -#Absorbed solar radiation -'Absorbed solar radiation' = { - table2Version = 151 ; - indicatorOfParameter = 157 ; - } -#Precipitation - evaporation -'Precipitation - evaporation' = { - table2Version = 151 ; - indicatorOfParameter = 158 ; - } -#Specified sea surface temperature -'Specified sea surface temperature' = { - table2Version = 151 ; - indicatorOfParameter = 159 ; - } -#Specified surface heat flux -'Specified surface heat flux' = { - table2Version = 151 ; - indicatorOfParameter = 160 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - table2Version = 151 ; - indicatorOfParameter = 161 ; - } -#Heat flux correction -'Heat flux correction' = { - table2Version = 151 ; - indicatorOfParameter = 162 ; - } -#Depth of 20C isotherm -'Depth of 20C isotherm' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Average potential temperature in the upper 300m -'Average potential temperature in the upper 300m' = { - table2Version = 151 ; - indicatorOfParameter = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'Vertically integrated zonal velocity (previous time step)' = { - table2Version = 151 ; - indicatorOfParameter = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'Vertically Integrated meridional velocity (previous time step)' = { - table2Version = 151 ; - indicatorOfParameter = 166 ; - } -#Vertically integrated zonal volume transport -'Vertically integrated zonal volume transport' = { - table2Version = 151 ; - indicatorOfParameter = 167 ; - } -#Vertically integrated meridional volume transport -'Vertically integrated meridional volume transport' = { - table2Version = 151 ; - indicatorOfParameter = 168 ; - } -#Vertically integrated zonal heat transport -'Vertically integrated zonal heat transport' = { - table2Version = 151 ; - indicatorOfParameter = 169 ; - } -#Vertically integrated meridional heat transport -'Vertically integrated meridional heat transport' = { - table2Version = 151 ; - indicatorOfParameter = 170 ; - } -#U velocity maximum -'U velocity maximum' = { - table2Version = 151 ; - indicatorOfParameter = 171 ; - } -#Depth of the velocity maximum -'Depth of the velocity maximum' = { - table2Version = 151 ; - indicatorOfParameter = 172 ; - } -#Salinity maximum -'Salinity maximum' = { - table2Version = 151 ; - indicatorOfParameter = 173 ; - } -#Depth of salinity maximum -'Depth of salinity maximum' = { - table2Version = 151 ; - indicatorOfParameter = 174 ; - } -#Average salinity in the upper 300m -'Average salinity in the upper 300m' = { - table2Version = 151 ; - indicatorOfParameter = 175 ; - } -#Layer Thickness at scalar points -'Layer Thickness at scalar points' = { - table2Version = 151 ; - indicatorOfParameter = 176 ; - } -#Layer Thickness at vector points -'Layer Thickness at vector points' = { - table2Version = 151 ; - indicatorOfParameter = 177 ; - } -#Potential temperature increment -'Potential temperature increment' = { - table2Version = 151 ; - indicatorOfParameter = 178 ; - } -#Potential temperature analysis error -'Potential temperature analysis error' = { - table2Version = 151 ; - indicatorOfParameter = 179 ; - } -#Background potential temperature -'Background potential temperature' = { - table2Version = 151 ; - indicatorOfParameter = 180 ; - } -#Analysed potential temperature -'Analysed potential temperature' = { - table2Version = 151 ; - indicatorOfParameter = 181 ; - } -#Potential temperature background error -'Potential temperature background error' = { - table2Version = 151 ; - indicatorOfParameter = 182 ; - } -#Analysed salinity -'Analysed salinity' = { - table2Version = 151 ; - indicatorOfParameter = 183 ; - } -#Salinity increment -'Salinity increment' = { - table2Version = 151 ; - indicatorOfParameter = 184 ; - } -#Estimated Bias in Temperature -'Estimated Bias in Temperature' = { - table2Version = 151 ; - indicatorOfParameter = 185 ; - } -#Estimated Bias in Salinity -'Estimated Bias in Salinity' = { - table2Version = 151 ; - indicatorOfParameter = 186 ; - } -#Zonal Velocity increment (from balance operator) -'Zonal Velocity increment (from balance operator)' = { - table2Version = 151 ; - indicatorOfParameter = 187 ; - } -#Meridional Velocity increment (from balance operator) -'Meridional Velocity increment (from balance operator)' = { - table2Version = 151 ; - indicatorOfParameter = 188 ; - } -#Salinity increment (from salinity data) -'Salinity increment (from salinity data)' = { - table2Version = 151 ; - indicatorOfParameter = 190 ; - } -#Salinity analysis error -'Salinity analysis error' = { - table2Version = 151 ; - indicatorOfParameter = 191 ; - } -#Background Salinity -'Background Salinity' = { - table2Version = 151 ; - indicatorOfParameter = 192 ; - } -#Salinity background error -'Salinity background error' = { - table2Version = 151 ; - indicatorOfParameter = 194 ; - } -#Estimated temperature bias from assimilation -'Estimated temperature bias from assimilation' = { - table2Version = 151 ; - indicatorOfParameter = 199 ; - } -#Estimated salinity bias from assimilation -'Estimated salinity bias from assimilation' = { - table2Version = 151 ; - indicatorOfParameter = 200 ; - } -#Temperature increment from relaxation term -'Temperature increment from relaxation term' = { - table2Version = 151 ; - indicatorOfParameter = 201 ; - } -#Salinity increment from relaxation term -'Salinity increment from relaxation term' = { - table2Version = 151 ; - indicatorOfParameter = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Bias in the zonal pressure gradient (applied)' = { - table2Version = 151 ; - indicatorOfParameter = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Bias in the meridional pressure gradient (applied)' = { - table2Version = 151 ; - indicatorOfParameter = 204 ; - } -#Estimated temperature bias from relaxation -'Estimated temperature bias from relaxation' = { - table2Version = 151 ; - indicatorOfParameter = 205 ; - } -#Estimated salinity bias from relaxation -'Estimated salinity bias from relaxation' = { - table2Version = 151 ; - indicatorOfParameter = 206 ; - } -#First guess bias in temperature -'First guess bias in temperature' = { - table2Version = 151 ; - indicatorOfParameter = 207 ; - } -#First guess bias in salinity -'First guess bias in salinity' = { - table2Version = 151 ; - indicatorOfParameter = 208 ; - } -#Applied bias in pressure -'Applied bias in pressure' = { - table2Version = 151 ; - indicatorOfParameter = 209 ; - } -#FG bias in pressure -'FG bias in pressure' = { - table2Version = 151 ; - indicatorOfParameter = 210 ; - } -#Bias in temperature(applied) -'Bias in temperature(applied)' = { - table2Version = 151 ; - indicatorOfParameter = 211 ; - } -#Bias in salinity (applied) -'Bias in salinity (applied)' = { - table2Version = 151 ; - indicatorOfParameter = 212 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust during averaging time -'10 metre wind gust during averaging time' = { - table2Version = 160 ; - indicatorOfParameter = 49 ; - } -#vertical velocity (pressure) -'vertical velocity (pressure)' = { - table2Version = 160 ; - indicatorOfParameter = 135 ; - } -#Precipitable water content -'Precipitable water content' = { - table2Version = 160 ; - indicatorOfParameter = 137 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - table2Version = 160 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'Snow depth' = { - table2Version = 160 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - table2Version = 160 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 160 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'Snowfall' = { - table2Version = 160 ; - indicatorOfParameter = 144 ; - } -#Height -'Height' = { - table2Version = 160 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 160 ; - indicatorOfParameter = 157 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - table2Version = 160 ; - indicatorOfParameter = 171 ; - } -#East-West surface stress -'East-West surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress -'North-South surface stress' = { - table2Version = 160 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'Evaporation' = { - table2Version = 160 ; - indicatorOfParameter = 182 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - table2Version = 160 ; - indicatorOfParameter = 184 ; - } -#Skin reservoir content -'Skin reservoir content' = { - table2Version = 160 ; - indicatorOfParameter = 198 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - table2Version = 160 ; - indicatorOfParameter = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'Maximum temperature at 2 metres during averaging time' = { - table2Version = 160 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'Minimum temperature at 2 metres during averaging time' = { - table2Version = 160 ; - indicatorOfParameter = 202 ; - } -#Runoff -'Runoff' = { - table2Version = 160 ; - indicatorOfParameter = 205 ; - } -#Standard deviation of geopotential -'Standard deviation of geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 206 ; - } -#Covariance of temperature and geopotential -'Covariance of temperature and geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 207 ; - } -#Standard deviation of temperature -'Standard deviation of temperature' = { - table2Version = 160 ; - indicatorOfParameter = 208 ; - } -#Covariance of specific humidity and geopotential -'Covariance of specific humidity and geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 209 ; - } -#Covariance of specific humidity and temperature -'Covariance of specific humidity and temperature' = { - table2Version = 160 ; - indicatorOfParameter = 210 ; - } -#Standard deviation of specific humidity -'Standard deviation of specific humidity' = { - table2Version = 160 ; - indicatorOfParameter = 211 ; - } -#Covariance of U component and geopotential -'Covariance of U component and geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 212 ; - } -#Covariance of U component and temperature -'Covariance of U component and temperature' = { - table2Version = 160 ; - indicatorOfParameter = 213 ; - } -#Covariance of U component and specific humidity -'Covariance of U component and specific humidity' = { - table2Version = 160 ; - indicatorOfParameter = 214 ; - } -#Standard deviation of U velocity -'Standard deviation of U velocity' = { - table2Version = 160 ; - indicatorOfParameter = 215 ; - } -#Covariance of V component and geopotential -'Covariance of V component and geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 216 ; - } -#Covariance of V component and temperature -'Covariance of V component and temperature' = { - table2Version = 160 ; - indicatorOfParameter = 217 ; - } -#Covariance of V component and specific humidity -'Covariance of V component and specific humidity' = { - table2Version = 160 ; - indicatorOfParameter = 218 ; - } -#Covariance of V component and U component -'Covariance of V component and U component' = { - table2Version = 160 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of V component -'Standard deviation of V component' = { - table2Version = 160 ; - indicatorOfParameter = 220 ; - } -#Covariance of W component and geopotential -'Covariance of W component and geopotential' = { - table2Version = 160 ; - indicatorOfParameter = 221 ; - } -#Covariance of W component and temperature -'Covariance of W component and temperature' = { - table2Version = 160 ; - indicatorOfParameter = 222 ; - } -#Covariance of W component and specific humidity -'Covariance of W component and specific humidity' = { - table2Version = 160 ; - indicatorOfParameter = 223 ; - } -#Covariance of W component and U component -'Covariance of W component and U component' = { - table2Version = 160 ; - indicatorOfParameter = 224 ; - } -#Covariance of W component and V component -'Covariance of W component and V component' = { - table2Version = 160 ; - indicatorOfParameter = 225 ; - } -#Standard deviation of vertical velocity -'Standard deviation of vertical velocity' = { - table2Version = 160 ; - indicatorOfParameter = 226 ; - } -#Instantaneous surface heat flux -'Instantaneous surface heat flux' = { - table2Version = 160 ; - indicatorOfParameter = 231 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 160 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - table2Version = 160 ; - indicatorOfParameter = 240 ; - } -#Cloud liquid water content -'Cloud liquid water content' = { - table2Version = 160 ; - indicatorOfParameter = 241 ; - } -#Cloud cover -'Cloud cover' = { - table2Version = 160 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - table2Version = 160 ; - indicatorOfParameter = 243 ; - } -#10 metre wind speed -'10 metre wind speed' = { - table2Version = 160 ; - indicatorOfParameter = 246 ; - } -#Momentum flux -'Momentum flux' = { - table2Version = 160 ; - indicatorOfParameter = 247 ; - } -#Gravity wave dissipation flux -'Gravity wave dissipation flux' = { - table2Version = 160 ; - indicatorOfParameter = 249 ; - } -#Heaviside beta function -'Heaviside beta function' = { - table2Version = 160 ; - indicatorOfParameter = 254 ; - } -#Surface geopotential -'Surface geopotential' = { - table2Version = 162 ; - indicatorOfParameter = 51 ; - } -#Vertical integral of mass of atmosphere -'Vertical integral of mass of atmosphere' = { - table2Version = 162 ; - indicatorOfParameter = 53 ; - } -#Vertical integral of temperature -'Vertical integral of temperature' = { - table2Version = 162 ; - indicatorOfParameter = 54 ; - } -#Vertical integral of water vapour -'Vertical integral of water vapour' = { - table2Version = 162 ; - indicatorOfParameter = 55 ; - } -#Vertical integral of cloud liquid water -'Vertical integral of cloud liquid water' = { - table2Version = 162 ; - indicatorOfParameter = 56 ; - } -#Vertical integral of cloud frozen water -'Vertical integral of cloud frozen water' = { - table2Version = 162 ; - indicatorOfParameter = 57 ; - } -#Vertical integral of ozone -'Vertical integral of ozone' = { - table2Version = 162 ; - indicatorOfParameter = 58 ; - } -#Vertical integral of kinetic energy -'Vertical integral of kinetic energy' = { - table2Version = 162 ; - indicatorOfParameter = 59 ; - } -#Vertical integral of thermal energy -'Vertical integral of thermal energy' = { - table2Version = 162 ; - indicatorOfParameter = 60 ; - } -#Vertical integral of potential+internal energy -'Vertical integral of potential+internal energy' = { - table2Version = 162 ; - indicatorOfParameter = 61 ; - } -#Vertical integral of potential+internal+latent energy -'Vertical integral of potential+internal+latent energy' = { - table2Version = 162 ; - indicatorOfParameter = 62 ; - } -#Vertical integral of total energy -'Vertical integral of total energy' = { - table2Version = 162 ; - indicatorOfParameter = 63 ; - } -#Vertical integral of energy conversion -'Vertical integral of energy conversion' = { - table2Version = 162 ; - indicatorOfParameter = 64 ; - } -#Vertical integral of eastward mass flux -'Vertical integral of eastward mass flux' = { - table2Version = 162 ; - indicatorOfParameter = 65 ; - } -#Vertical integral of northward mass flux -'Vertical integral of northward mass flux' = { - table2Version = 162 ; - indicatorOfParameter = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'Vertical integral of eastward kinetic energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 67 ; - } -#Vertical integral of northward kinetic energy flux -'Vertical integral of northward kinetic energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 68 ; - } -#Vertical integral of eastward heat flux -'Vertical integral of eastward heat flux' = { - table2Version = 162 ; - indicatorOfParameter = 69 ; - } -#Vertical integral of northward heat flux -'Vertical integral of northward heat flux' = { - table2Version = 162 ; - indicatorOfParameter = 70 ; - } -#Vertical integral of eastward water vapour flux -'Vertical integral of eastward water vapour flux' = { - table2Version = 162 ; - indicatorOfParameter = 71 ; - } -#Vertical integral of northward water vapour flux -'Vertical integral of northward water vapour flux' = { - table2Version = 162 ; - indicatorOfParameter = 72 ; - } -#Vertical integral of eastward geopotential flux -'Vertical integral of eastward geopotential flux' = { - table2Version = 162 ; - indicatorOfParameter = 73 ; - } -#Vertical integral of northward geopotential flux -'Vertical integral of northward geopotential flux' = { - table2Version = 162 ; - indicatorOfParameter = 74 ; - } -#Vertical integral of eastward total energy flux -'Vertical integral of eastward total energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 75 ; - } -#Vertical integral of northward total energy flux -'Vertical integral of northward total energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 76 ; - } -#Vertical integral of eastward ozone flux -'Vertical integral of eastward ozone flux' = { - table2Version = 162 ; - indicatorOfParameter = 77 ; - } -#Vertical integral of northward ozone flux -'Vertical integral of northward ozone flux' = { - table2Version = 162 ; - indicatorOfParameter = 78 ; - } -#Vertical integral of divergence of mass flux -'Vertical integral of divergence of mass flux' = { - table2Version = 162 ; - indicatorOfParameter = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'Vertical integral of divergence of kinetic energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'Vertical integral of divergence of thermal energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 83 ; - } -#Vertical integral of divergence of moisture flux -'Vertical integral of divergence of moisture flux' = { - table2Version = 162 ; - indicatorOfParameter = 84 ; - } -#Vertical integral of divergence of geopotential flux -'Vertical integral of divergence of geopotential flux' = { - table2Version = 162 ; - indicatorOfParameter = 85 ; - } -#Vertical integral of divergence of total energy flux -'Vertical integral of divergence of total energy flux' = { - table2Version = 162 ; - indicatorOfParameter = 86 ; - } -#Vertical integral of divergence of ozone flux -'Vertical integral of divergence of ozone flux' = { - table2Version = 162 ; - indicatorOfParameter = 87 ; - } -#Tendency of short wave radiation -'Tendency of short wave radiation' = { - table2Version = 162 ; - indicatorOfParameter = 100 ; - } -#Tendency of long wave radiation -'Tendency of long wave radiation' = { - table2Version = 162 ; - indicatorOfParameter = 101 ; - } -#Tendency of clear sky short wave radiation -'Tendency of clear sky short wave radiation' = { - table2Version = 162 ; - indicatorOfParameter = 102 ; - } -#Tendency of clear sky long wave radiation -'Tendency of clear sky long wave radiation' = { - table2Version = 162 ; - indicatorOfParameter = 103 ; - } -#Updraught mass flux -'Updraught mass flux' = { - table2Version = 162 ; - indicatorOfParameter = 104 ; - } -#Downdraught mass flux -'Downdraught mass flux' = { - table2Version = 162 ; - indicatorOfParameter = 105 ; - } -#Updraught detrainment rate -'Updraught detrainment rate' = { - table2Version = 162 ; - indicatorOfParameter = 106 ; - } -#Downdraught detrainment rate -'Downdraught detrainment rate' = { - table2Version = 162 ; - indicatorOfParameter = 107 ; - } -#Total precipitation flux -'Total precipitation flux' = { - table2Version = 162 ; - indicatorOfParameter = 108 ; - } -#Turbulent diffusion coefficient for heat -'Turbulent diffusion coefficient for heat' = { - table2Version = 162 ; - indicatorOfParameter = 109 ; - } -#Tendency of temperature due to physics -'Tendency of temperature due to physics' = { - table2Version = 162 ; - indicatorOfParameter = 110 ; - } -#Tendency of specific humidity due to physics -'Tendency of specific humidity due to physics' = { - table2Version = 162 ; - indicatorOfParameter = 111 ; - } -#Tendency of u component due to physics -'Tendency of u component due to physics' = { - table2Version = 162 ; - indicatorOfParameter = 112 ; - } -#Tendency of v component due to physics -'Tendency of v component due to physics' = { - table2Version = 162 ; - indicatorOfParameter = 113 ; - } -#Variance of geopotential -'Variance of geopotential' = { - table2Version = 162 ; - indicatorOfParameter = 206 ; - } -#Covariance of geopotential/temperature -'Covariance of geopotential/temperature' = { - table2Version = 162 ; - indicatorOfParameter = 207 ; - } -#Variance of temperature -'Variance of temperature' = { - table2Version = 162 ; - indicatorOfParameter = 208 ; - } -#Covariance of geopotential/specific humidity -'Covariance of geopotential/specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 209 ; - } -#Covariance of temperature/specific humidity -'Covariance of temperature/specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 210 ; - } -#Variance of specific humidity -'Variance of specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 211 ; - } -#Covariance of u component/geopotential -'Covariance of u component/geopotential' = { - table2Version = 162 ; - indicatorOfParameter = 212 ; - } -#Covariance of u component/temperature -'Covariance of u component/temperature' = { - table2Version = 162 ; - indicatorOfParameter = 213 ; - } -#Covariance of u component/specific humidity -'Covariance of u component/specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 214 ; - } -#Variance of u component -'Variance of u component' = { - table2Version = 162 ; - indicatorOfParameter = 215 ; - } -#Covariance of v component/geopotential -'Covariance of v component/geopotential' = { - table2Version = 162 ; - indicatorOfParameter = 216 ; - } -#Covariance of v component/temperature -'Covariance of v component/temperature' = { - table2Version = 162 ; - indicatorOfParameter = 217 ; - } -#Covariance of v component/specific humidity -'Covariance of v component/specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 218 ; - } -#Covariance of v component/u component -'Covariance of v component/u component' = { - table2Version = 162 ; - indicatorOfParameter = 219 ; - } -#Variance of v component -'Variance of v component' = { - table2Version = 162 ; - indicatorOfParameter = 220 ; - } -#Covariance of omega/geopotential -'Covariance of omega/geopotential' = { - table2Version = 162 ; - indicatorOfParameter = 221 ; - } -#Covariance of omega/temperature -'Covariance of omega/temperature' = { - table2Version = 162 ; - indicatorOfParameter = 222 ; - } -#Covariance of omega/specific humidity -'Covariance of omega/specific humidity' = { - table2Version = 162 ; - indicatorOfParameter = 223 ; - } -#Covariance of omega/u component -'Covariance of omega/u component' = { - table2Version = 162 ; - indicatorOfParameter = 224 ; - } -#Covariance of omega/v component -'Covariance of omega/v component' = { - table2Version = 162 ; - indicatorOfParameter = 225 ; - } -#Variance of omega -'Variance of omega' = { - table2Version = 162 ; - indicatorOfParameter = 226 ; - } -#Variance of surface pressure -'Variance of surface pressure' = { - table2Version = 162 ; - indicatorOfParameter = 227 ; - } -#Variance of relative humidity -'Variance of relative humidity' = { - table2Version = 162 ; - indicatorOfParameter = 229 ; - } -#Covariance of u component/ozone -'Covariance of u component/ozone' = { - table2Version = 162 ; - indicatorOfParameter = 230 ; - } -#Covariance of v component/ozone -'Covariance of v component/ozone' = { - table2Version = 162 ; - indicatorOfParameter = 231 ; - } -#Covariance of omega/ozone -'Covariance of omega/ozone' = { - table2Version = 162 ; - indicatorOfParameter = 232 ; - } -#Variance of ozone -'Variance of ozone' = { - table2Version = 162 ; - indicatorOfParameter = 233 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 162 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - table2Version = 170 ; - indicatorOfParameter = 149 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - table2Version = 170 ; - indicatorOfParameter = 171 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - table2Version = 170 ; - indicatorOfParameter = 179 ; - } -#Stream function anomaly -'Stream function anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 1 ; - } -#Velocity potential anomaly -'Velocity potential anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 2 ; - } -#Potential temperature anomaly -'Potential temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature anomaly -'Equivalent potential temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature anomaly -'Saturated equivalent potential temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind anomaly -'U component of divergent wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind anomaly -'V component of divergent wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind anomaly -'U component of rotational wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind anomaly -'V component of rotational wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature anomaly -'Unbalanced component of temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'Unbalanced component of logarithm of surface pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence anomaly -'Unbalanced component of divergence anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 23 ; - } -#Lake cover anomaly -'Lake cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover anomaly -'Low vegetation cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover anomaly -'High vegetation cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation anomaly -'Type of low vegetation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation anomaly -'Type of high vegetation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover anomaly -'Sea-ice cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 31 ; - } -#Snow albedo anomaly -'Snow albedo anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 32 ; - } -#Snow density anomaly -'Snow density anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature anomaly -'Sea surface temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature anomaly layer 1 -'Ice surface temperature anomaly layer 1' = { - table2Version = 171 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature anomaly layer 2 -'Ice surface temperature anomaly layer 2' = { - table2Version = 171 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature anomaly layer 3 -'Ice surface temperature anomaly layer 3' = { - table2Version = 171 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature anomaly layer 4 -'Ice surface temperature anomaly layer 4' = { - table2Version = 171 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water anomaly layer 1 -'Volumetric soil water anomaly layer 1' = { - table2Version = 171 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water anomaly layer 2 -'Volumetric soil water anomaly layer 2' = { - table2Version = 171 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water anomaly layer 3 -'Volumetric soil water anomaly layer 3' = { - table2Version = 171 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water anomaly layer 4 -'Volumetric soil water anomaly layer 4' = { - table2Version = 171 ; - indicatorOfParameter = 42 ; - } -#Soil type anomaly -'Soil type anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 45 ; - } -#Solar duration anomaly -'Solar duration anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation anomaly -'Direct solar radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust anomaly -'10 metre wind gust anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'Maximum 2 metre temperature in the last 24 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'Minimum 2 metre temperature in the last 24 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential anomaly -'Montgomery potential anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 53 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'Mean 2 metre temperature in the last 24 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface anomaly -'Downward UV radiation at the surface anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'Photosynthetically active radiation at the surface anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy anomaly -'Convective available potential energy anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity anomaly -'Potential vorticity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations anomaly -'Total precipitation from observations anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 61 ; - } -#Observation count anomaly -'Observation count anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference anomaly -'Start time for skin temperature difference anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference anomaly -'Finish time for skin temperature difference anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference anomaly -'Skin temperature difference anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 65 ; - } -#Total column liquid water anomaly -'Total column liquid water anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 78 ; - } -#Total column ice water anomaly -'Total column ice water anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 79 ; - } -#Vertically integrated total energy anomaly -'Vertically integrated total energy anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - table2Version = 171 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide anomaly -'Atmospheric tide anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 127 ; - } -#Budget values anomaly -'Budget values anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 128 ; - } -#Geopotential anomaly -'Geopotential anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 130 ; - } -#U component of wind anomaly -'U component of wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 131 ; - } -#V component of wind anomaly -'V component of wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 132 ; - } -#Specific humidity anomaly -'Specific humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 133 ; - } -#Surface pressure anomaly -'Surface pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) anomaly -'Vertical velocity (pressure) anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 135 ; - } -#Total column water anomaly -'Total column water anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour anomaly -'Total column water vapour anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 137 ; - } -#Relative vorticity anomaly -'Relative vorticity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 138 ; - } -#Soil temperature anomaly level 1 -'Soil temperature anomaly level 1' = { - table2Version = 171 ; - indicatorOfParameter = 139 ; - } -#Soil wetness anomaly level 1 -'Soil wetness anomaly level 1' = { - table2Version = 171 ; - indicatorOfParameter = 140 ; - } -#Snow depth anomaly -'Snow depth anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'Stratiform precipitation (Large-scale precipitation) anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation anomaly -'Convective precipitation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'Snowfall (convective + stratiform) anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomaly -'Surface sensible heat flux anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomaly -'Surface latent heat flux anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 147 ; - } -#Charnock anomaly -'Charnock anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 149 ; - } -#Top net radiation anomaly -'Top net radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure anomaly -'Mean sea level pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure anomaly -'Logarithm of surface pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 154 ; - } -#Relative divergence anomaly -'Relative divergence anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 155 ; - } -#Height anomaly -'Height anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 156 ; - } -#Relative humidity anomaly -'Relative humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure anomaly -'Tendency of surface pressure anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height anomaly -'Boundary layer height anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography anomaly -'Standard deviation of orography anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'Anisotropy of sub-gridscale orography anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography anomaly -'Angle of sub-gridscale orography anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography anomaly -'Slope of sub-gridscale orography anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover anomaly -'Total cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component anomaly -'10 metre U wind component anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component anomaly -'10 metre V wind component anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature anomaly -'2 metre temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature anomaly -'2 metre dewpoint temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards anomaly -'Surface solar radiation downwards anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 169 ; - } -#Soil temperature anomaly level 2 -'Soil temperature anomaly level 2' = { - table2Version = 171 ; - indicatorOfParameter = 170 ; - } -#Soil wetness anomaly level 2 -'Soil wetness anomaly level 2' = { - table2Version = 171 ; - indicatorOfParameter = 171 ; - } -#Surface roughness anomaly -'Surface roughness anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 173 ; - } -#Albedo anomaly -'Albedo anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards anomaly -'Surface thermal radiation downwards anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation anomaly -'Surface net solar radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation anomaly -'Surface net thermal radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation anomaly -'Top net solar radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation anomaly -'Top net thermal radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomaly -'East-West surface stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomaly -'North-South surface stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomaly -'Evaporation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 182 ; - } -#Soil temperature anomaly level 3 -'Soil temperature anomaly level 3' = { - table2Version = 171 ; - indicatorOfParameter = 183 ; - } -#Soil wetness anomaly level 3 -'Soil wetness anomaly level 3' = { - table2Version = 171 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover anomaly -'Convective cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover anomaly -'Low cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover anomaly -'Medium cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 187 ; - } -#High cloud cover anomaly -'High cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration anomaly -'Sunshine duration anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'East-West component of sub-gridscale orographic variance anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'North-South component of sub-gridscale orographic variance anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'North-West/South-East component of sub-gridscale orographic variance anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'North-East/South-West component of sub-gridscale orographic variance anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature anomaly -'Brightness temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content anomaly -'Skin reservoir content anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction anomaly -'Vegetation fraction anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography anomaly -'Variance of sub-gridscale orography anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres anomaly -'Maximum temperature at 2 metres anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres anomaly -'Minimum temperature at 2 metres anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio anomaly -'Ozone mass mixing ratio anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights anomaly -'Precipitation analysis weights anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 204 ; - } -#Runoff anomaly -'Runoff anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 205 ; - } -#Total column ozone anomaly -'Total column ozone anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed anomaly -'10 metre wind speed anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation clear sky anomaly -'Top net solar radiation clear sky anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation clear sky anomaly -'Top net thermal radiation clear sky anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation clear sky anomaly -'Surface net solar radiation clear sky anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomaly -'Solar insolation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation anomaly -'Diabatic heating by radiation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'Diabatic heating by vertical diffusion anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'Diabatic heating by cumulus convection anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'Diabatic heating by large-scale condensation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'Vertical diffusion of zonal wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'Vertical diffusion of meridional wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency anomaly -'East-West gravity wave drag tendency anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency anomaly -'North-South gravity wave drag tendency anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind anomaly -'Convective tendency of zonal wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind anomaly -'Convective tendency of meridional wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity anomaly -'Vertical diffusion of humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'Humidity tendency by cumulus convection anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'Humidity tendency by large-scale condensation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity anomaly -'Change from removal of negative humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 227 ; - } -#Total precipitation anomaly -'Total precipitation anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress anomaly -'Instantaneous X surface stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress anomaly -'Instantaneous Y surface stress anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux anomaly -'Instantaneous surface heat flux anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux anomaly -'Instantaneous moisture flux anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity anomaly -'Apparent surface humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'Logarithm of surface roughness length for heat anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 234 ; - } -#Skin temperature anomaly -'Skin temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 anomaly -'Soil temperature level 4 anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 anomaly -'Soil wetness level 4 anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer anomaly -'Temperature of snow layer anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'Accumulated cloud fraction tendency anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency anomaly -'Accumulated liquid water tendency anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo anomaly -'Forecast albedo anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness anomaly -'Forecast surface roughness anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'Forecast logarithm of surface roughness for heat anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 245 ; - } -#Cloud liquid water content anomaly -'Cloud liquid water content anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 246 ; - } -#Cloud ice water content anomaly -'Cloud ice water content anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 247 ; - } -#Cloud cover anomaly -'Cloud cover anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency anomaly -'Accumulated ice water tendency anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 249 ; - } -#Ice age anomaly -'Ice age anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature anomaly -'Adiabatic tendency of temperature anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity anomaly -'Adiabatic tendency of humidity anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'Adiabatic tendency of zonal wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'Adiabatic tendency of meridional wind anomaly' = { - table2Version = 171 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 171 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation -'Snow evaporation' = { - table2Version = 172 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'Snowmelt' = { - table2Version = 172 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - table2Version = 172 ; - indicatorOfParameter = 48 ; - } -#Mean large-scale precipitation fraction -'Mean large-scale precipitation fraction' = { - table2Version = 172 ; - indicatorOfParameter = 50 ; - } -#Mean large-scale precipitation rate -'Mean large-scale precipitation rate' = { - table2Version = 172 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate -'Mean convective precipitation rate' = { - table2Version = 172 ; - indicatorOfParameter = 143 ; - } -#Mean total snowfall rate -'Mean total snowfall rate' = { - table2Version = 172 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 172 ; - indicatorOfParameter = 145 ; - } -#Mean surface sensible heat flux -'Mean surface sensible heat flux' = { - table2Version = 172 ; - indicatorOfParameter = 146 ; - } -#Mean surface latent heat flux -'Mean surface latent heat flux' = { - table2Version = 172 ; - indicatorOfParameter = 147 ; - } -#Mean surface net radiation flux -'Mean surface net radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 149 ; - } -#Mean short-wave heating rate -'Mean short-wave heating rate' = { - table2Version = 172 ; - indicatorOfParameter = 153 ; - } -#Mean long-wave heating rate -'Mean long-wave heating rate' = { - table2Version = 172 ; - indicatorOfParameter = 154 ; - } -#Mean surface downward solar radiation flux -'Mean surface downward solar radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 169 ; - } -#Mean surface downward thermal radiation flux -'Mean surface downward thermal radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 175 ; - } -#Mean surface net solar radiation flux -'Mean surface net solar radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 176 ; - } -#Mean surface net thermal radiation flux -'Mean surface net thermal radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 177 ; - } -#Mean top net solar radiation flux -'Mean top net solar radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 178 ; - } -#Mean top net thermal radiation flux -'Mean top net thermal radiation flux' = { - table2Version = 172 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress rate of accumulation -'East-West surface stress rate of accumulation' = { - table2Version = 172 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress rate of accumulation -'North-South surface stress rate of accumulation' = { - table2Version = 172 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'Evaporation' = { - table2Version = 172 ; - indicatorOfParameter = 182 ; - } -#Mean sunshine duration rate -'Mean sunshine duration rate' = { - table2Version = 172 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress -'Longitudinal component of gravity wave stress' = { - table2Version = 172 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress -'Meridional component of gravity wave stress' = { - table2Version = 172 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - table2Version = 172 ; - indicatorOfParameter = 197 ; - } -#Mean runoff rate -'Mean runoff rate' = { - table2Version = 172 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - table2Version = 172 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - table2Version = 172 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - table2Version = 172 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - table2Version = 172 ; - indicatorOfParameter = 211 ; - } -#Solar insolation rate of accumulation -'Solar insolation rate of accumulation' = { - table2Version = 172 ; - indicatorOfParameter = 212 ; - } -#Mean total precipitation rate -'Mean total precipitation rate' = { - table2Version = 172 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 172 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - table2Version = 172 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 172 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 48 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate anomaly -'Mean convective precipitation rate anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'Snowfall (convective + stratiform) anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'Surface sensible heat flux anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'Surface latent heat flux anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 147 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 149 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'Surface solar radiation downwards anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'Surface thermal radiation downwards anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'Surface solar radiation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'Surface thermal radiation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'Top solar radiation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'Top thermal radiation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'East-West surface stress anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'North-South surface stress anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomalous rate of accumulation -'Evaporation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'Sunshine duration anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 197 ; - } -#Runoff anomalous rate of accumulation -'Runoff anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky anomaly -'Top net solar radiation, clear sky anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'Top net thermal radiation, clear sky anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'Surface net solar radiation, clear sky anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomalous rate of accumulation -'Solar insolation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 212 ; - } -#Total precipitation anomalous rate of accumulation -'Total precipitation anomalous rate of accumulation' = { - table2Version = 173 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - table2Version = 173 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 173 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - table2Version = 174 ; - indicatorOfParameter = 6 ; - } -#Surface runoff -'Surface runoff' = { - table2Version = 174 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - table2Version = 174 ; - indicatorOfParameter = 9 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - table2Version = 174 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - table2Version = 174 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - table2Version = 174 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - table2Version = 174 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - table2Version = 174 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - table2Version = 174 ; - indicatorOfParameter = 42 ; - } -#10 metre wind gust in the last 24 hours -'10 metre wind gust in the last 24 hours' = { - table2Version = 174 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - table2Version = 174 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - table2Version = 174 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - table2Version = 174 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - table2Version = 174 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - table2Version = 174 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - table2Version = 174 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - table2Version = 174 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - table2Version = 174 ; - indicatorOfParameter = 90 ; - } -#Mean sea surface temperature -'Mean sea surface temperature' = { - table2Version = 174 ; - indicatorOfParameter = 94 ; - } -#1.5m specific humidity -'1.5m specific humidity' = { - table2Version = 174 ; - indicatorOfParameter = 95 ; - } -#Sea-ice thickness -'Sea-ice thickness' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Liquid water potential temperature -'Liquid water potential temperature' = { - table2Version = 174 ; - indicatorOfParameter = 99 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - table2Version = 174 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - table2Version = 174 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - table2Version = 174 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - table2Version = 174 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - table2Version = 174 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - table2Version = 174 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - table2Version = 174 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - table2Version = 174 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - table2Version = 174 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - table2Version = 174 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - table2Version = 174 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - table2Version = 174 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 174 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - table2Version = 175 ; - indicatorOfParameter = 6 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - table2Version = 175 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - table2Version = 175 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - table2Version = 175 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - table2Version = 175 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - table2Version = 175 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - table2Version = 175 ; - indicatorOfParameter = 42 ; - } -#10m wind gust in the last 24 hours -'10m wind gust in the last 24 hours' = { - table2Version = 175 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - table2Version = 175 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - table2Version = 175 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - table2Version = 175 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - table2Version = 175 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - table2Version = 175 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - table2Version = 175 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - table2Version = 175 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - table2Version = 175 ; - indicatorOfParameter = 90 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - table2Version = 175 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - table2Version = 175 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - table2Version = 175 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - table2Version = 175 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - table2Version = 175 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - table2Version = 175 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - table2Version = 175 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - table2Version = 175 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - table2Version = 175 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - table2Version = 175 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - table2Version = 175 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - table2Version = 175 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 175 ; - indicatorOfParameter = 255 ; - } -#Total soil wetness -'Total soil wetness' = { - table2Version = 180 ; - indicatorOfParameter = 149 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - table2Version = 180 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - table2Version = 180 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'Top net solar radiation' = { - table2Version = 180 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - table2Version = 180 ; - indicatorOfParameter = 179 ; - } -#Snow depth -'Snow depth' = { - table2Version = 190 ; - indicatorOfParameter = 141 ; - } -#Field capacity -'Field capacity' = { - table2Version = 190 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'Wilting point' = { - table2Version = 190 ; - indicatorOfParameter = 171 ; - } -#Roughness length -'Roughness length' = { - table2Version = 190 ; - indicatorOfParameter = 173 ; - } -#Total soil moisture -'Total soil moisture' = { - table2Version = 190 ; - indicatorOfParameter = 229 ; - } -#2 metre dewpoint temperature difference -'2 metre dewpoint temperature difference' = { - table2Version = 200 ; - indicatorOfParameter = 168 ; - } -#downward shortwave radiant flux density -'downward shortwave radiant flux density' = { - table2Version = 201 ; - indicatorOfParameter = 1 ; - } -#upward shortwave radiant flux density -'upward shortwave radiant flux density' = { - table2Version = 201 ; - indicatorOfParameter = 2 ; - } -#downward longwave radiant flux density -'downward longwave radiant flux density' = { - table2Version = 201 ; - indicatorOfParameter = 3 ; - } -#upward longwave radiant flux density -'upward longwave radiant flux density' = { - table2Version = 201 ; - indicatorOfParameter = 4 ; - } -#downwd photosynthetic active radiant flux density -'downwd photosynthetic active radiant flux density' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - } -#net shortwave flux -'net shortwave flux' = { - table2Version = 201 ; - indicatorOfParameter = 6 ; - } -#net longwave flux -'net longwave flux' = { - table2Version = 201 ; - indicatorOfParameter = 7 ; - } -#total net radiative flux density -'total net radiative flux density' = { - table2Version = 201 ; - indicatorOfParameter = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'downw shortw radiant flux density, cloudfree part' = { - table2Version = 201 ; - indicatorOfParameter = 9 ; - } -#upw shortw radiant flux density, cloudy part -'upw shortw radiant flux density, cloudy part' = { - table2Version = 201 ; - indicatorOfParameter = 10 ; - } -#downw longw radiant flux density, cloudfree part -'downw longw radiant flux density, cloudfree part' = { - table2Version = 201 ; - indicatorOfParameter = 11 ; - } -#upw longw radiant flux density, cloudy part -'upw longw radiant flux density, cloudy part' = { - table2Version = 201 ; - indicatorOfParameter = 12 ; - } -#shortwave radiative heating rate -'shortwave radiative heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } -#longwave radiative heating rate -'longwave radiative heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } -#total radiative heating rate -'total radiative heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 15 ; - } -#soil heat flux, surface -'soil heat flux, surface' = { - table2Version = 201 ; - indicatorOfParameter = 16 ; - } -#soil heat flux, bottom of layer -'soil heat flux, bottom of layer' = { - table2Version = 201 ; - indicatorOfParameter = 17 ; - } -#fractional cloud cover -'fractional cloud cover' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } -#cloud cover, grid scale -'cloud cover, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } -#specific cloud water content -'specific cloud water content' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } -#cloud water content, grid scale, vert integrated -'cloud water content, grid scale, vert integrated' = { - table2Version = 201 ; - indicatorOfParameter = 32 ; - } -#specific cloud ice content, grid scale -'specific cloud ice content, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } -#cloud ice content, grid scale, vert integrated -'cloud ice content, grid scale, vert integrated' = { - table2Version = 201 ; - indicatorOfParameter = 34 ; - } -#specific rainwater content, grid scale -'specific rainwater content, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } -#specific snow content, grid scale -'specific snow content, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } -#specific rainwater content, gs, vert. integrated -'specific rainwater content, gs, vert. integrated' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } -#specific snow content, gs, vert. integrated -'specific snow content, gs, vert. integrated' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } -#total column water -'total column water' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } -#vert. integral of divergence of tot. water content -'vert. integral of divergence of tot. water content' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'cloud covers CH_CM_CL (000...888)' = { - table2Version = 201 ; - indicatorOfParameter = 50 ; - } -#cloud cover CH (0..8) -'cloud cover CH (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'cloud cover CM (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'cloud cover CL (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#total cloud cover (0..8) -'total cloud cover (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 54 ; - } -#fog (0..8) -'fog (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 55 ; - } -#fog -'fog' = { - table2Version = 201 ; - indicatorOfParameter = 56 ; - } -#cloud cover, convective cirrus -'cloud cover, convective cirrus' = { - table2Version = 201 ; - indicatorOfParameter = 60 ; - } -#specific cloud water content, convective clouds -'specific cloud water content, convective clouds' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } -#cloud water content, conv clouds, vert integrated -'cloud water content, conv clouds, vert integrated' = { - table2Version = 201 ; - indicatorOfParameter = 62 ; - } -#specific cloud ice content, convective clouds -'specific cloud ice content, convective clouds' = { - table2Version = 201 ; - indicatorOfParameter = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'cloud ice content, conv clouds, vert integrated' = { - table2Version = 201 ; - indicatorOfParameter = 64 ; - } -#convective mass flux -'convective mass flux' = { - table2Version = 201 ; - indicatorOfParameter = 65 ; - } -#Updraft velocity, convection -'Updraft velocity, convection' = { - table2Version = 201 ; - indicatorOfParameter = 66 ; - } -#entrainment parameter, convection -'entrainment parameter, convection' = { - table2Version = 201 ; - indicatorOfParameter = 67 ; - } -#cloud base, convective clouds (above msl) -'cloud base, convective clouds (above msl)' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - } -#cloud top, convective clouds (above msl) -'cloud top, convective clouds (above msl)' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - } -#convective layers (00...77) (BKE) -'convective layers (00...77) (BKE)' = { - table2Version = 201 ; - indicatorOfParameter = 70 ; - } -#KO-index -'KO-index' = { - table2Version = 201 ; - indicatorOfParameter = 71 ; - } -#convection base index -'convection base index' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - } -#convection top index -'convection top index' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - } -#convective temperature tendency -'convective temperature tendency' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } -#convective tendency of specific humidity -'convective tendency of specific humidity' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } -#convective tendency of total heat -'convective tendency of total heat' = { - table2Version = 201 ; - indicatorOfParameter = 76 ; - } -#convective tendency of total water -'convective tendency of total water' = { - table2Version = 201 ; - indicatorOfParameter = 77 ; - } -#convective momentum tendency (X-component) -'convective momentum tendency (X-component)' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } -#convective momentum tendency (Y-component) -'convective momentum tendency (Y-component)' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } -#convective vorticity tendency -'convective vorticity tendency' = { - table2Version = 201 ; - indicatorOfParameter = 80 ; - } -#convective divergence tendency -'convective divergence tendency' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#top of dry convection (above msl) -'top of dry convection (above msl)' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - } -#dry convection top index -'dry convection top index' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'height of 0 degree Celsius isotherm above msl' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - } -#height of snow-fall limit -'height of snow-fall limit' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - } -#spec. content of precip. particles -'spec. content of precip. particles' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } -#surface precipitation rate, rain, grid scale -'surface precipitation rate, rain, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } -#surface precipitation rate, snow, grid scale -'surface precipitation rate, snow, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } -#surface precipitation amount, rain, grid scale -'surface precipitation amount, rain, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } -#surface precipitation rate, rain, convective -'surface precipitation rate, rain, convective' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } -#surface precipitation rate, snow, convective -'surface precipitation rate, snow, convective' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } -#surface precipitation amount, rain, convective -'surface precipitation amount, rain, convective' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } -#deviation of pressure from reference value -'deviation of pressure from reference value' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } -#coefficient of horizontal diffusion -'coefficient of horizontal diffusion' = { - table2Version = 201 ; - indicatorOfParameter = 150 ; - } -#Maximum wind velocity -'Maximum wind velocity' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - } -#water content of interception store -'water content of interception store' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } -#snow temperature -'snow temperature' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } -#ice surface temperature -'ice surface temperature' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } -#convective available potential energy -'convective available potential energy' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } -#Indicates a missing value -'Indicates a missing value' = { - table2Version = 201 ; - indicatorOfParameter = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } -#SO2 precursor mixing ratio -'SO2 precursor mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - table2Version = 210 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - table2Version = 210 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - table2Version = 210 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - table2Version = 210 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - table2Version = 210 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - table2Version = 210 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'Soil clay content' = { - table2Version = 210 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'Methane' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#CO2 column-mean molar fraction -'CO2 column-mean molar fraction' = { - table2Version = 210 ; - indicatorOfParameter = 64 ; - } -#CH4 column-mean molar fraction -'CH4 column-mean molar fraction' = { - table2Version = 210 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - table2Version = 210 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - table2Version = 210 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'Wildfire flux of Carbon Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'Wildfire flux of Carbon Monoxide' = { - table2Version = 210 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'Wildfire flux of Methane' = { - table2Version = 210 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'Wildfire flux of Non-Methane Hydro-Carbons' = { - table2Version = 210 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'Wildfire flux of Hydrogen' = { - table2Version = 210 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'Wildfire flux of Nitrogen Oxides NOx' = { - table2Version = 210 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'Wildfire flux of Nitrous Oxide' = { - table2Version = 210 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'Wildfire flux of Particulate Matter PM2.5' = { - table2Version = 210 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'Wildfire flux of Total Particulate Matter' = { - table2Version = 210 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'Wildfire flux of Total Carbon in Aerosols' = { - table2Version = 210 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'Wildfire flux of Organic Carbon' = { - table2Version = 210 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'Wildfire flux of Black Carbon' = { - table2Version = 210 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - table2Version = 210 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - table2Version = 210 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - table2Version = 210 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - table2Version = 210 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - table2Version = 210 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - table2Version = 210 ; - indicatorOfParameter = 97 ; - } -#Number of positive FRP pixels per grid cell -'Number of positive FRP pixels per grid cell' = { - table2Version = 210 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - table2Version = 210 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - table2Version = 210 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - table2Version = 210 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - table2Version = 210 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - table2Version = 210 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - table2Version = 210 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - table2Version = 210 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - table2Version = 210 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - table2Version = 210 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - table2Version = 210 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - table2Version = 210 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - table2Version = 210 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - table2Version = 210 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - table2Version = 210 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - table2Version = 210 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - table2Version = 210 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - table2Version = 210 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - table2Version = 210 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - table2Version = 210 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - table2Version = 210 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - table2Version = 210 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - table2Version = 210 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - table2Version = 210 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - table2Version = 210 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - table2Version = 210 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - table2Version = 210 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - table2Version = 210 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - table2Version = 210 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - table2Version = 210 ; - indicatorOfParameter = 166 ; - } -#Radon -'Radon' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - table2Version = 210 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'Total column Radon' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - table2Version = 210 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - table2Version = 210 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - table2Version = 210 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - table2Version = 210 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - table2Version = 210 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - table2Version = 210 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - table2Version = 210 ; - indicatorOfParameter = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - table2Version = 211 ; - indicatorOfParameter = 11 ; - } -#Aerosol type 12 mixing ratio -'Aerosol type 12 mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - table2Version = 211 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - table2Version = 211 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - table2Version = 211 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - table2Version = 211 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - table2Version = 211 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - table2Version = 211 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'Soil clay content' = { - table2Version = 211 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 61 ; - } -#Methane -'Methane' = { - table2Version = 211 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - table2Version = 211 ; - indicatorOfParameter = 63 ; - } -#Total column Carbon Dioxide -'Total column Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 64 ; - } -#Total column Methane -'Total column Methane' = { - table2Version = 211 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - table2Version = 211 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - table2Version = 211 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - table2Version = 211 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'Wildfire flux of Carbon Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'Wildfire flux of Carbon Monoxide' = { - table2Version = 211 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'Wildfire flux of Methane' = { - table2Version = 211 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'Wildfire flux of Non-Methane Hydro-Carbons' = { - table2Version = 211 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'Wildfire flux of Hydrogen' = { - table2Version = 211 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'Wildfire flux of Nitrogen Oxides NOx' = { - table2Version = 211 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'Wildfire flux of Nitrous Oxide' = { - table2Version = 211 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'Wildfire flux of Particulate Matter PM2.5' = { - table2Version = 211 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'Wildfire flux of Total Particulate Matter' = { - table2Version = 211 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'Wildfire flux of Total Carbon in Aerosols' = { - table2Version = 211 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'Wildfire flux of Organic Carbon' = { - table2Version = 211 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'Wildfire flux of Black Carbon' = { - table2Version = 211 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - table2Version = 211 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - table2Version = 211 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - table2Version = 211 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - table2Version = 211 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - table2Version = 211 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - table2Version = 211 ; - indicatorOfParameter = 97 ; - } -#Wildfire observed area -'Wildfire observed area' = { - table2Version = 211 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - table2Version = 211 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - table2Version = 211 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - table2Version = 211 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - table2Version = 211 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - table2Version = 211 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - table2Version = 211 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - table2Version = 211 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - table2Version = 211 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - table2Version = 211 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - table2Version = 211 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - table2Version = 211 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - table2Version = 211 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - table2Version = 211 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - table2Version = 211 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - table2Version = 211 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - table2Version = 211 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - table2Version = 211 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - table2Version = 211 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - table2Version = 211 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - table2Version = 211 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - table2Version = 211 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - table2Version = 211 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - table2Version = 211 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - table2Version = 211 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - table2Version = 211 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - table2Version = 211 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - table2Version = 211 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - table2Version = 211 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - table2Version = 211 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - table2Version = 211 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - table2Version = 211 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - table2Version = 211 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - table2Version = 211 ; - indicatorOfParameter = 166 ; - } -#Radon -'Radon' = { - table2Version = 211 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - table2Version = 211 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'Total column Radon' = { - table2Version = 211 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - table2Version = 211 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - table2Version = 211 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - table2Version = 211 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - table2Version = 211 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - table2Version = 211 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - table2Version = 211 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - table2Version = 211 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - table2Version = 211 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - table2Version = 211 ; - indicatorOfParameter = 216 ; - } -#Total precipitation observation count -'Total precipitation observation count' = { - table2Version = 220 ; - indicatorOfParameter = 228 ; - } -#Convective inhibition -'Convective inhibition' = { - table2Version = 228 ; - indicatorOfParameter = 1 ; - } -#Orography -'Orography' = { - table2Version = 228 ; - indicatorOfParameter = 2 ; - } -#Friction velocity -'Friction velocity' = { - table2Version = 228 ; - indicatorOfParameter = 3 ; - } -#Mean temperature at 2 metres -'Mean temperature at 2 metres' = { - table2Version = 228 ; - indicatorOfParameter = 4 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - table2Version = 228 ; - indicatorOfParameter = 5 ; - } -#Mean total cloud cover -'Mean total cloud cover' = { - table2Version = 228 ; - indicatorOfParameter = 6 ; - } -#Lake depth -'Lake depth' = { - table2Version = 228 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature -'Lake mix-layer temperature' = { - table2Version = 228 ; - indicatorOfParameter = 8 ; - } -#Lake mix-layer depth -'Lake mix-layer depth' = { - table2Version = 228 ; - indicatorOfParameter = 9 ; - } -#Lake bottom temperature -'Lake bottom temperature' = { - table2Version = 228 ; - indicatorOfParameter = 10 ; - } -#Lake total layer temperature -'Lake total layer temperature' = { - table2Version = 228 ; - indicatorOfParameter = 11 ; - } -#Lake shape factor -'Lake shape factor' = { - table2Version = 228 ; - indicatorOfParameter = 12 ; - } -#Lake ice temperature -'Lake ice temperature' = { - table2Version = 228 ; - indicatorOfParameter = 13 ; - } -#Lake ice depth -'Lake ice depth' = { - table2Version = 228 ; - indicatorOfParameter = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'Minimum vertical gradient of refractivity inside trapping layer' = { - table2Version = 228 ; - indicatorOfParameter = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'Mean vertical gradient of refractivity inside trapping layer' = { - table2Version = 228 ; - indicatorOfParameter = 16 ; - } -#Duct base height -'Duct base height' = { - table2Version = 228 ; - indicatorOfParameter = 17 ; - } -#Trapping layer base height -'Trapping layer base height' = { - table2Version = 228 ; - indicatorOfParameter = 18 ; - } -#Trapping layer top height -'Trapping layer top height' = { - table2Version = 228 ; - indicatorOfParameter = 19 ; - } -#Soil Moisture -'Soil Moisture' = { - table2Version = 228 ; - indicatorOfParameter = 39 ; - } -#Neutral wind at 10 m u-component -'Neutral wind at 10 m u-component' = { - table2Version = 228 ; - indicatorOfParameter = 131 ; - } -#Neutral wind at 10 m v-component -'Neutral wind at 10 m v-component' = { - table2Version = 228 ; - indicatorOfParameter = 132 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 228 ; - indicatorOfParameter = 139 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 228 ; - indicatorOfParameter = 141 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - table2Version = 228 ; - indicatorOfParameter = 144 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 228 ; - indicatorOfParameter = 164 ; - } -#Field capacity -'Field capacity' = { - table2Version = 228 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'Wilting point' = { - table2Version = 228 ; - indicatorOfParameter = 171 ; - } -#Total Precipitation -'Total Precipitation' = { - table2Version = 228 ; - indicatorOfParameter = 228 ; - } -#Snow evaporation (variable resolution) -'Snow evaporation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 44 ; - } -#Snowmelt (variable resolution) -'Snowmelt (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 45 ; - } -#Solar duration (variable resolution) -'Solar duration (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 46 ; - } -#Downward UV radiation at the surface (variable resolution) -'Downward UV radiation at the surface (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface (variable resolution) -'Photosynthetically active radiation at the surface (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 58 ; - } -#Stratiform precipitation (Large-scale precipitation) (variable resolution) -'Stratiform precipitation (Large-scale precipitation) (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation (variable resolution) -'Convective precipitation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) (variable resolution) -'Snowfall (convective + stratiform) (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation (variable resolution) -'Boundary layer dissipation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux (variable resolution) -'Surface sensible heat flux (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux (variable resolution) -'Surface latent heat flux (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 147 ; - } -#Surface solar radiation downwards (variable resolution) -'Surface solar radiation downwards (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards (variable resolution) -'Surface thermal radiation downwards (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation (variable resolution) -'Surface net solar radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation (variable resolution) -'Surface net thermal radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation (variable resolution) -'Top net solar radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation (variable resolution) -'Top net thermal radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress (variable resolution) -'East-West surface stress (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress (variable resolution) -'North-South surface stress (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 181 ; - } -#Evaporation (variable resolution) -'Evaporation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration (variable resolution) -'Sunshine duration (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress (variable resolution) -'Longitudinal component of gravity wave stress (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress (variable resolution) -'Meridional component of gravity wave stress (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation (variable resolution) -'Gravity wave dissipation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content (variable resolution) -'Skin reservoir content (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 198 ; - } -#Runoff (variable resolution) -'Runoff (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky (variable resolution) -'Top net solar radiation, clear sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky (variable resolution) -'Top net thermal radiation, clear sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky (variable resolution) -'Surface net solar radiation, clear sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky (variable resolution) -'Surface net thermal radiation, clear sky (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation (variable resolution) -'TOA incident solar radiation (variable resolution)' = { - table2Version = 230 ; - indicatorOfParameter = 212 ; - } -#Surface temperature significance -'Surface temperature significance' = { - table2Version = 234 ; - indicatorOfParameter = 139 ; - } -#Mean sea level pressure significance -'Mean sea level pressure significance' = { - table2Version = 234 ; - indicatorOfParameter = 151 ; - } -#2 metre temperature significance -'2 metre temperature significance' = { - table2Version = 234 ; - indicatorOfParameter = 167 ; - } -#Total precipitation significance -'Total precipitation significance' = { - table2Version = 234 ; - indicatorOfParameter = 228 ; - } -#U-component stokes drift -'U-component stokes drift' = { - table2Version = 140 ; - indicatorOfParameter = 215 ; - } -#V-component stokes drift -'V-component stokes drift' = { - table2Version = 140 ; - indicatorOfParameter = 216 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - table2Version = 210 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'Wildfire flux of Sulfur Dioxide' = { - table2Version = 210 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'Wildfire Flux of Methanol (CH3OH)' = { - table2Version = 210 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'Wildfire Flux of Ethanol (C2H5OH)' = { - table2Version = 210 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'Wildfire Flux of Propane (C3H8)' = { - table2Version = 210 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'Wildfire Flux of Ethene (C2H4)' = { - table2Version = 210 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'Wildfire Flux of Propene (C3H6)' = { - table2Version = 210 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'Wildfire Flux of Isoprene (C5H8)' = { - table2Version = 210 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'Wildfire Flux of Terpenes (C5H8)n' = { - table2Version = 210 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { - table2Version = 210 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { - table2Version = 210 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { - table2Version = 210 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'Wildfire Flux of Formaldehyde (CH2O)' = { - table2Version = 210 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'Wildfire Flux of Acetaldehyde (C2H4O)' = { - table2Version = 210 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'Wildfire Flux of Acetone (C3H6O)' = { - table2Version = 210 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'Wildfire Flux of Ammonia (NH3)' = { - table2Version = 210 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { - table2Version = 210 ; - indicatorOfParameter = 117 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - table2Version = 211 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'Wildfire flux of Sulfur Dioxide' = { - table2Version = 211 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'Wildfire Flux of Methanol (CH3OH)' = { - table2Version = 211 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'Wildfire Flux of Ethanol (C2H5OH)' = { - table2Version = 211 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'Wildfire Flux of Propane (C3H8)' = { - table2Version = 211 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'Wildfire Flux of Ethene (C2H4)' = { - table2Version = 211 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'Wildfire Flux of Propene (C3H6)' = { - table2Version = 211 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'Wildfire Flux of Isoprene (C5H8)' = { - table2Version = 211 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'Wildfire Flux of Terpenes (C5H8)n' = { - table2Version = 211 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { - table2Version = 211 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { - table2Version = 211 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { - table2Version = 211 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'Wildfire Flux of Formaldehyde (CH2O)' = { - table2Version = 211 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'Wildfire Flux of Acetaldehyde (C2H4O)' = { - table2Version = 211 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'Wildfire Flux of Acetone (C3H6O)' = { - table2Version = 211 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'Wildfire Flux of Ammonia (NH3)' = { - table2Version = 211 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { - table2Version = 211 ; - indicatorOfParameter = 117 ; - } -#V-tendency from non-orographic wave drag -'V-tendency from non-orographic wave drag' = { - table2Version = 228 ; - indicatorOfParameter = 134 ; - } -#U-tendency from non-orographic wave drag -'U-tendency from non-orographic wave drag' = { - table2Version = 228 ; - indicatorOfParameter = 136 ; - } -#100 metre U wind component -'100 metre U wind component' = { - table2Version = 228 ; - indicatorOfParameter = 246 ; - } -#100 metre V wind component -'100 metre V wind component' = { - table2Version = 228 ; - indicatorOfParameter = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ASCAT first soil moisture CDF matching parameter' = { - table2Version = 228 ; - indicatorOfParameter = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ASCAT second soil moisture CDF matching parameter' = { - table2Version = 228 ; - indicatorOfParameter = 254 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def deleted file mode 100644 index 8b237823..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/paramId.def +++ /dev/null @@ -1,17676 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'131060' = { - table2Version = 131 ; - indicatorOfParameter = 60 ; - } -#Total precipitation of at least 5 mm -'131061' = { - table2Version = 131 ; - indicatorOfParameter = 61 ; - } -#Total precipitation of at least 10 mm -'131062' = { - table2Version = 131 ; - indicatorOfParameter = 62 ; - } -#Total precipitation of at least 20 mm -'131063' = { - table2Version = 131 ; - indicatorOfParameter = 63 ; - } -#Total precipitation of at least 40 mm -'131082' = { - table2Version = 131 ; - indicatorOfParameter = 82 ; - } -#Total precipitation of at least 60 mm -'131083' = { - table2Version = 131 ; - indicatorOfParameter = 83 ; - } -#Total precipitation of at least 80 mm -'131084' = { - table2Version = 131 ; - indicatorOfParameter = 84 ; - } -#Total precipitation of at least 100 mm -'131085' = { - table2Version = 131 ; - indicatorOfParameter = 85 ; - } -#Total precipitation of at least 150 mm -'131086' = { - table2Version = 131 ; - indicatorOfParameter = 86 ; - } -#Total precipitation of at least 200 mm -'131087' = { - table2Version = 131 ; - indicatorOfParameter = 87 ; - } -#Total precipitation of at least 300 mm -'131088' = { - table2Version = 131 ; - indicatorOfParameter = 88 ; - } -#Stream function -'1' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -#Velocity potential -'2' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -#Potential temperature -'3' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature -'4' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature -'5' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -#Soil sand fraction -'6' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -#Soil clay fraction -'7' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -#Surface runoff -'8' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'9' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -#Wind speed -'10' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -#U component of divergent wind -'11' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind -'12' = { - table2Version = 128 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind -'13' = { - table2Version = 128 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind -'14' = { - table2Version = 128 ; - indicatorOfParameter = 14 ; - } -#UV visible albedo for direct radiation -'15' = { - table2Version = 128 ; - indicatorOfParameter = 15 ; - } -#UV visible albedo for diffuse radiation -'16' = { - table2Version = 128 ; - indicatorOfParameter = 16 ; - } -#Near IR albedo for direct radiation -'17' = { - table2Version = 128 ; - indicatorOfParameter = 17 ; - } -#Near IR albedo for diffuse radiation -'18' = { - table2Version = 128 ; - indicatorOfParameter = 18 ; - } -#Clear sky surface UV -'19' = { - table2Version = 128 ; - indicatorOfParameter = 19 ; - } -#Clear sky surface photosynthetically active radiation -'20' = { - table2Version = 128 ; - indicatorOfParameter = 20 ; - } -#Unbalanced component of temperature -'21' = { - table2Version = 128 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'22' = { - table2Version = 128 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence -'23' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'24' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'25' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -#Lake cover -'26' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover -'27' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover -'28' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation -'29' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation -'30' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -#Sea ice area fraction -'31' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Snow albedo -'32' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -#Snow density -'33' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature -'34' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -#Ice temperature layer 1 -'35' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -#Ice temperature layer 2 -'36' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -#Ice temperature layer 3 -'37' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -#Ice temperature layer 4 -'38' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 -'39' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'40' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'41' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'42' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -#Soil type -'43' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation -'44' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'45' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -#Solar duration -'46' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation -'47' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress -'48' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust since previous post-processing -'49' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction -'50' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'51' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'52' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential -'53' = { - table2Version = 128 ; - indicatorOfParameter = 53 ; - } -#Pressure -'54' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -#Mean temperature at 2 metres in the last 24 hours -'55' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'56' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface -'57' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface -'58' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy -'59' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity -'60' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -#Observation count -'62' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'63' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'64' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'65' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'66' = { - table2Version = 128 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'67' = { - table2Version = 128 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'68' = { - table2Version = 128 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'69' = { - table2Version = 128 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'70' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'71' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -#Instantaneous surface solar radiation downwards -'72' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -#Instantaneous surface thermal radiation downwards -'73' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -#Standard deviation of filtered subgrid orography -'74' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -#Specific rain water content -'75' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -#Specific snow water content -'76' = { - table2Version = 128 ; - indicatorOfParameter = 76 ; - } -#Eta-coordinate vertical velocity -'77' = { - table2Version = 128 ; - indicatorOfParameter = 77 ; - } -#Total column cloud liquid water -'78' = { - table2Version = 128 ; - indicatorOfParameter = 78 ; - } -#Total column cloud ice water -'79' = { - table2Version = 128 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'80' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'81' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'82' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'83' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'84' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'85' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'86' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'87' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'88' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'89' = { - table2Version = 128 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'90' = { - table2Version = 128 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'91' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'92' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'93' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'94' = { - table2Version = 128 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'95' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'96' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'97' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'98' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'99' = { - table2Version = 128 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'100' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'101' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'102' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'103' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'104' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'105' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'106' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'107' = { - table2Version = 128 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'108' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'109' = { - table2Version = 128 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'110' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'111' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'112' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'113' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'114' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'115' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'116' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'117' = { - table2Version = 128 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'118' = { - table2Version = 128 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'119' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'120' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours -'123' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -#Surface emissivity -'124' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -#Vertically integrated total energy -'125' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'126' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide -'127' = { - table2Version = 128 ; - indicatorOfParameter = 127 ; - } -#Atmospheric tide -'127' = { - table2Version = 160 ; - indicatorOfParameter = 127 ; - } -#Budget values -'128' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -#Budget values -'128' = { - table2Version = 160 ; - indicatorOfParameter = 128 ; - } -#Geopotential -'129' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'129' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'129' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'129' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'129' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'130' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'130' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'130' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'130' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'130' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'131' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'131' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'131' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'131' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'131' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'132' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'132' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'132' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'132' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'132' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'133' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'133' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'133' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'133' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'133' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'134' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'134' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'134' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'134' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'134' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'135' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'135' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water -'136' = { - table2Version = 128 ; - indicatorOfParameter = 136 ; - } -#Total column water -'136' = { - table2Version = 160 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour -'137' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'137' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'138' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'138' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'138' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'138' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'138' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'139' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'139' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'139' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'139' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'140' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'140' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'141' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'141' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'141' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'142' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'142' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'142' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'143' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'143' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'143' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'144' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'144' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'145' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'145' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'146' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'146' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'146' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'146' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'146' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'147' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'147' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'147' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'147' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'147' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Charnock -'148' = { - table2Version = 128 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation -'149' = { - table2Version = 128 ; - indicatorOfParameter = 149 ; - } -#Top net radiation -'150' = { - table2Version = 128 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure -'151' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'151' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'151' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'151' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'151' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure -'152' = { - table2Version = 128 ; - indicatorOfParameter = 152 ; - } -#Logarithm of surface pressure -'152' = { - table2Version = 160 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate -'153' = { - table2Version = 128 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate -'154' = { - table2Version = 128 ; - indicatorOfParameter = 154 ; - } -#Divergence -'155' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'155' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'155' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'155' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'155' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'156' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'157' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'157' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'157' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'158' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'158' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height -'159' = { - table2Version = 128 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography -'160' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography -'161' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography -'162' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography -'163' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover -'164' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'164' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'164' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'164' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'164' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component -'165' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'165' = { - table2Version = 160 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'165' = { - table2Version = 180 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'165' = { - table2Version = 190 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'166' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'166' = { - table2Version = 160 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'166' = { - table2Version = 180 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'166' = { - table2Version = 190 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature -'167' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'167' = { - table2Version = 160 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'167' = { - table2Version = 180 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'167' = { - table2Version = 190 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 160 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 180 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 190 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards -'169' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'169' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 -'170' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -#Soil temperature level 2 -'170' = { - table2Version = 160 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 -'171' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask -'172' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'172' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'173' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'173' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'174' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'174' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'174' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards -'175' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -#Surface thermal radiation downwards -'175' = { - table2Version = 190 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation -'176' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'176' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'176' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'176' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'177' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'177' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'177' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'177' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'178' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'178' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'178' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'179' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'179' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'179' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'180' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'180' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'180' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'181' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'181' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'181' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'182' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'182' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'182' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'182' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 -'183' = { - table2Version = 128 ; - indicatorOfParameter = 183 ; - } -#Soil temperature level 3 -'183' = { - table2Version = 160 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 -'184' = { - table2Version = 128 ; - indicatorOfParameter = 184 ; - } -#Soil wetness level 3 -'184' = { - table2Version = 170 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover -'185' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'185' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'185' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover -'186' = { - table2Version = 128 ; - indicatorOfParameter = 186 ; - } -#Low cloud cover -'186' = { - table2Version = 160 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover -'187' = { - table2Version = 128 ; - indicatorOfParameter = 187 ; - } -#Medium cloud cover -'187' = { - table2Version = 160 ; - indicatorOfParameter = 187 ; - } -#High cloud cover -'188' = { - table2Version = 128 ; - indicatorOfParameter = 188 ; - } -#High cloud cover -'188' = { - table2Version = 160 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration -'189' = { - table2Version = 128 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance -'190' = { - table2Version = 128 ; - indicatorOfParameter = 190 ; - } -#East-West component of sub-gridscale orographic variance -'190' = { - table2Version = 160 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance -'191' = { - table2Version = 128 ; - indicatorOfParameter = 191 ; - } -#North-South component of sub-gridscale orographic variance -'191' = { - table2Version = 160 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'192' = { - table2Version = 128 ; - indicatorOfParameter = 192 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'192' = { - table2Version = 160 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'193' = { - table2Version = 128 ; - indicatorOfParameter = 193 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'193' = { - table2Version = 160 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature -'194' = { - table2Version = 128 ; - indicatorOfParameter = 194 ; - } -#Eastward gravity wave surface stress -'195' = { - table2Version = 128 ; - indicatorOfParameter = 195 ; - } -#Eastward gravity wave surface stress -'195' = { - table2Version = 160 ; - indicatorOfParameter = 195 ; - } -#Northward gravity wave surface stress -'196' = { - table2Version = 128 ; - indicatorOfParameter = 196 ; - } -#Northward gravity wave surface stress -'196' = { - table2Version = 160 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'197' = { - table2Version = 128 ; - indicatorOfParameter = 197 ; - } -#Gravity wave dissipation -'197' = { - table2Version = 160 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content -'198' = { - table2Version = 128 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction -'199' = { - table2Version = 128 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography -'200' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -#Variance of sub-gridscale orography -'200' = { - table2Version = 160 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - table2Version = 170 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - table2Version = 190 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - table2Version = 170 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - table2Version = 190 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio -'203' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights -'204' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -#Precipitation analysis weights -'204' = { - table2Version = 160 ; - indicatorOfParameter = 204 ; - } -#Runoff -'205' = { - table2Version = 128 ; - indicatorOfParameter = 205 ; - } -#Runoff -'205' = { - table2Version = 180 ; - indicatorOfParameter = 205 ; - } -#Total column ozone -'206' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed -'207' = { - table2Version = 128 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky -'208' = { - table2Version = 128 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'209' = { - table2Version = 128 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'210' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'211' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation -'212' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -#Vertically integrated moisture divergence -'213' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'214' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'215' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'216' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation -'217' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'218' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'219' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency -'220' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency -'221' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind -'222' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of zonal wind -'222' = { - table2Version = 130 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind -'223' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -#Convective tendency of meridional wind -'223' = { - table2Version = 130 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity -'224' = { - table2Version = 128 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'225' = { - table2Version = 128 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'226' = { - table2Version = 128 ; - indicatorOfParameter = 226 ; - } -#Tendency due to removal of negative humidity -'227' = { - table2Version = 128 ; - indicatorOfParameter = 227 ; - } -#Tendency due to removal of negative humidity -'227' = { - table2Version = 130 ; - indicatorOfParameter = 227 ; - } -#Total precipitation -'228' = { - table2Version = 128 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'228' = { - table2Version = 160 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'228' = { - table2Version = 170 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'228' = { - table2Version = 190 ; - indicatorOfParameter = 228 ; - } -#Instantaneous eastward turbulent surface stress -'229' = { - table2Version = 128 ; - indicatorOfParameter = 229 ; - } -#Instantaneous eastward turbulent surface stress -'229' = { - table2Version = 160 ; - indicatorOfParameter = 229 ; - } -#Instantaneous northward turbulent surface stress -'230' = { - table2Version = 128 ; - indicatorOfParameter = 230 ; - } -#Instantaneous northward turbulent surface stress -'230' = { - table2Version = 160 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface sensible heat flux -'231' = { - table2Version = 128 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux -'232' = { - table2Version = 128 ; - indicatorOfParameter = 232 ; - } -#Instantaneous moisture flux -'232' = { - table2Version = 160 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity -'233' = { - table2Version = 128 ; - indicatorOfParameter = 233 ; - } -#Apparent surface humidity -'233' = { - table2Version = 160 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat -'234' = { - table2Version = 128 ; - indicatorOfParameter = 234 ; - } -#Logarithm of surface roughness length for heat -'234' = { - table2Version = 160 ; - indicatorOfParameter = 234 ; - } -#Skin temperature -'235' = { - table2Version = 128 ; - indicatorOfParameter = 235 ; - } -#Skin temperature -'235' = { - table2Version = 160 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 -'236' = { - table2Version = 128 ; - indicatorOfParameter = 236 ; - } -#Soil temperature level 4 -'236' = { - table2Version = 160 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 -'237' = { - table2Version = 128 ; - indicatorOfParameter = 237 ; - } -#Soil wetness level 4 -'237' = { - table2Version = 160 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer -'238' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'238' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall -'239' = { - table2Version = 128 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall -'240' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency -'241' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency -'242' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'243' = { - table2Version = 128 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness -'244' = { - table2Version = 128 ; - indicatorOfParameter = 244 ; - } -#Forecast surface roughness -'244' = { - table2Version = 160 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat -'245' = { - table2Version = 128 ; - indicatorOfParameter = 245 ; - } -#Forecast logarithm of surface roughness for heat -'245' = { - table2Version = 160 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content -'246' = { - table2Version = 128 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content -'247' = { - table2Version = 128 ; - indicatorOfParameter = 247 ; - } -#Fraction of cloud cover -'248' = { - table2Version = 128 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency -'249' = { - table2Version = 128 ; - indicatorOfParameter = 249 ; - } -#Ice age -'250' = { - table2Version = 128 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature -'251' = { - table2Version = 128 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity -'252' = { - table2Version = 128 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind -'253' = { - table2Version = 128 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind -'254' = { - table2Version = 128 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'255' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 132 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 160 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 170 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 180 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'255' = { - table2Version = 190 ; - indicatorOfParameter = 255 ; - } -#Stream function difference -'200001' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Velocity potential difference -'200002' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Potential temperature difference -'200003' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature difference -'200004' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature difference -'200005' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind difference -'200011' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind difference -'200012' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind difference -'200013' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind difference -'200014' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature difference -'200021' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'200022' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence difference -'200023' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'200024' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'200025' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Lake cover difference -'200026' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover difference -'200027' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover difference -'200028' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation difference -'200029' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation difference -'200030' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover difference -'200031' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Snow albedo difference -'200032' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Snow density difference -'200033' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature difference -'200034' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 difference -'200035' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 difference -'200036' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 difference -'200037' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 difference -'200038' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 difference -'200039' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 difference -'200040' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 difference -'200041' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 difference -'200042' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Soil type difference -'200043' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation difference -'200044' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Snowmelt difference -'200045' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Solar duration difference -'200046' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation difference -'200047' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress difference -'200048' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust difference -'200049' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction difference -'200050' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature difference -'200051' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature difference -'200052' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential difference -'200053' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Pressure difference -'200054' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'200055' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'200056' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface difference -'200057' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface difference -'200058' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy difference -'200059' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity difference -'200060' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations difference -'200061' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Observation count difference -'200062' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'200063' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'200064' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'200065' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'200066' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'200067' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'200068' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'200069' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'200070' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'200071' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'200078' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'200079' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'200080' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'200081' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'200082' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'200083' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'200084' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'200085' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'200086' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'200087' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'200088' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'200089' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'200090' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'200091' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'200092' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'200093' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'200094' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'200095' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'200096' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'200097' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'200098' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'200099' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'200100' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'200101' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'200102' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'200103' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'200104' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'200105' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'200106' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'200107' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'200108' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'200109' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'200110' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'200111' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'200112' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'200113' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'200114' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'200115' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'200116' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'200117' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'200118' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'200119' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'200120' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres difference -'200121' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres difference -'200122' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'200123' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'200125' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'200126' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide difference -'200127' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Budget values difference -'200128' = { - table2Version = 200 ; - indicatorOfParameter = 128 ; - } -#Geopotential difference -'200129' = { - table2Version = 200 ; - indicatorOfParameter = 129 ; - } -#Temperature difference -'200130' = { - table2Version = 200 ; - indicatorOfParameter = 130 ; - } -#U component of wind difference -'200131' = { - table2Version = 200 ; - indicatorOfParameter = 131 ; - } -#V component of wind difference -'200132' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Specific humidity difference -'200133' = { - table2Version = 200 ; - indicatorOfParameter = 133 ; - } -#Surface pressure difference -'200134' = { - table2Version = 200 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) difference -'200135' = { - table2Version = 200 ; - indicatorOfParameter = 135 ; - } -#Total column water difference -'200136' = { - table2Version = 200 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour difference -'200137' = { - table2Version = 200 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) difference -'200138' = { - table2Version = 200 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 difference -'200139' = { - table2Version = 200 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 difference -'200140' = { - table2Version = 200 ; - indicatorOfParameter = 140 ; - } -#Snow depth difference -'200141' = { - table2Version = 200 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'200142' = { - table2Version = 200 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation difference -'200143' = { - table2Version = 200 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) difference -'200144' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation difference -'200145' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux difference -'200146' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux difference -'200147' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Charnock difference -'200148' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation difference -'200149' = { - table2Version = 200 ; - indicatorOfParameter = 149 ; - } -#Top net radiation difference -'200150' = { - table2Version = 200 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure difference -'200151' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure difference -'200152' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate difference -'200153' = { - table2Version = 200 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate difference -'200154' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Divergence difference -'200155' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#Height difference -'200156' = { - table2Version = 200 ; - indicatorOfParameter = 156 ; - } -#Relative humidity difference -'200157' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure difference -'200158' = { - table2Version = 200 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height difference -'200159' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography difference -'200160' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'200161' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography difference -'200162' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography difference -'200163' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover difference -'200164' = { - table2Version = 200 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component difference -'200165' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component difference -'200166' = { - table2Version = 200 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature difference -'200167' = { - table2Version = 200 ; - indicatorOfParameter = 167 ; - } -#Surface solar radiation downwards difference -'200169' = { - table2Version = 200 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 difference -'200170' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 difference -'200171' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask difference -'200172' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Surface roughness difference -'200173' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Albedo difference -'200174' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards difference -'200175' = { - table2Version = 200 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation difference -'200176' = { - table2Version = 200 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation difference -'200177' = { - table2Version = 200 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation difference -'200178' = { - table2Version = 200 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation difference -'200179' = { - table2Version = 200 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress difference -'200180' = { - table2Version = 200 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress difference -'200181' = { - table2Version = 200 ; - indicatorOfParameter = 181 ; - } -#Evaporation difference -'200182' = { - table2Version = 200 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 difference -'200183' = { - table2Version = 200 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 difference -'200184' = { - table2Version = 200 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover difference -'200185' = { - table2Version = 200 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover difference -'200186' = { - table2Version = 200 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover difference -'200187' = { - table2Version = 200 ; - indicatorOfParameter = 187 ; - } -#High cloud cover difference -'200188' = { - table2Version = 200 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration difference -'200189' = { - table2Version = 200 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'200190' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'200191' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'200192' = { - table2Version = 200 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'200193' = { - table2Version = 200 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature difference -'200194' = { - table2Version = 200 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress difference -'200195' = { - table2Version = 200 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress difference -'200196' = { - table2Version = 200 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation difference -'200197' = { - table2Version = 200 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content difference -'200198' = { - table2Version = 200 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction difference -'200199' = { - table2Version = 200 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography difference -'200200' = { - table2Version = 200 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'200201' = { - table2Version = 200 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'200202' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio difference -'200203' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights difference -'200204' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Runoff difference -'200205' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Total column ozone difference -'200206' = { - table2Version = 200 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed difference -'200207' = { - table2Version = 200 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky difference -'200208' = { - table2Version = 200 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky difference -'200209' = { - table2Version = 200 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky difference -'200210' = { - table2Version = 200 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky difference -'200211' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation difference -'200212' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation difference -'200214' = { - table2Version = 200 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion difference -'200215' = { - table2Version = 200 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection difference -'200216' = { - table2Version = 200 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation difference -'200217' = { - table2Version = 200 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind difference -'200218' = { - table2Version = 200 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind difference -'200219' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency difference -'200220' = { - table2Version = 200 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency difference -'200221' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind difference -'200222' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind difference -'200223' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity difference -'200224' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection difference -'200225' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation difference -'200226' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity difference -'200227' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total precipitation difference -'200228' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress difference -'200229' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress difference -'200230' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux difference -'200231' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux difference -'200232' = { - table2Version = 200 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity difference -'200233' = { - table2Version = 200 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat difference -'200234' = { - table2Version = 200 ; - indicatorOfParameter = 234 ; - } -#Skin temperature difference -'200235' = { - table2Version = 200 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 difference -'200236' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 difference -'200237' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer difference -'200238' = { - table2Version = 200 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall difference -'200239' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall difference -'200240' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency difference -'200241' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency difference -'200242' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo difference -'200243' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness difference -'200244' = { - table2Version = 200 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'200245' = { - table2Version = 200 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content difference -'200246' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content difference -'200247' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Cloud cover difference -'200248' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency difference -'200249' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Ice age difference -'200250' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature difference -'200251' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity difference -'200252' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind difference -'200253' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind difference -'200254' = { - table2Version = 200 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'200255' = { - table2Version = 200 ; - indicatorOfParameter = 255 ; - } -#Probability of a tropical storm -'131089' = { - table2Version = 131 ; - indicatorOfParameter = 89 ; - } -#Probability of a hurricane -'131090' = { - table2Version = 131 ; - indicatorOfParameter = 90 ; - } -#Probability of a tropical depression -'131091' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Climatological probability of a tropical storm -'131092' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Climatological probability of a hurricane -'131093' = { - table2Version = 131 ; - indicatorOfParameter = 93 ; - } -#Climatological probability of a tropical depression -'131094' = { - table2Version = 131 ; - indicatorOfParameter = 94 ; - } -#Probability anomaly of a tropical storm -'131095' = { - table2Version = 131 ; - indicatorOfParameter = 95 ; - } -#Probability anomaly of a hurricane -'131096' = { - table2Version = 131 ; - indicatorOfParameter = 96 ; - } -#Probability anomaly of a tropical depression -'131097' = { - table2Version = 131 ; - indicatorOfParameter = 97 ; - } -#Total precipitation of at least 25 mm -'131098' = { - table2Version = 131 ; - indicatorOfParameter = 98 ; - } -#Total precipitation of at least 50 mm -'131099' = { - table2Version = 131 ; - indicatorOfParameter = 99 ; - } -#10 metre wind gust of at least 10 m/s -'131100' = { - table2Version = 131 ; - indicatorOfParameter = 100 ; - } -#Convective available potential energy shear index -'132044' = { - table2Version = 132 ; - indicatorOfParameter = 44 ; - } -#Water vapour flux index -'132045' = { - table2Version = 132 ; - indicatorOfParameter = 45 ; - } -#Convective available potential energy index -'132059' = { - table2Version = 132 ; - indicatorOfParameter = 59 ; - } -#Maximum of significant wave height index -'132216' = { - table2Version = 132 ; - indicatorOfParameter = 216 ; - } -#Wave experimental parameter 1 -'140080' = { - table2Version = 140 ; - indicatorOfParameter = 80 ; - } -#Wave experimental parameter 2 -'140081' = { - table2Version = 140 ; - indicatorOfParameter = 81 ; - } -#Wave experimental parameter 3 -'140082' = { - table2Version = 140 ; - indicatorOfParameter = 82 ; - } -#Wave experimental parameter 4 -'140083' = { - table2Version = 140 ; - indicatorOfParameter = 83 ; - } -#Wave experimental parameter 5 -'140084' = { - table2Version = 140 ; - indicatorOfParameter = 84 ; - } -#Wave induced mean sea level correction -'140098' = { - table2Version = 140 ; - indicatorOfParameter = 98 ; - } -#Ratio of wave angular and frequency width -'140099' = { - table2Version = 140 ; - indicatorOfParameter = 99 ; - } -#Number of events in freak waves statistics -'140100' = { - table2Version = 140 ; - indicatorOfParameter = 100 ; - } -#U-component of atmospheric surface momentum flux -'140101' = { - table2Version = 140 ; - indicatorOfParameter = 101 ; - } -#V-component of atmospheric surface momentum flux -'140102' = { - table2Version = 140 ; - indicatorOfParameter = 102 ; - } -#U-component of surface momentum flux into ocean -'140103' = { - table2Version = 140 ; - indicatorOfParameter = 103 ; - } -#V-component of surface momentum flux into ocean -'140104' = { - table2Version = 140 ; - indicatorOfParameter = 104 ; - } -#Wave turbulent energy flux into ocean -'140105' = { - table2Version = 140 ; - indicatorOfParameter = 105 ; - } -#Wave directional width of first swell partition -'140106' = { - table2Version = 140 ; - indicatorOfParameter = 106 ; - } -#Wave frequency width of first swell partition -'140107' = { - table2Version = 140 ; - indicatorOfParameter = 107 ; - } -#Wave directional width of second swell partition -'140108' = { - table2Version = 140 ; - indicatorOfParameter = 108 ; - } -#Wave frequency width of second swell partition -'140109' = { - table2Version = 140 ; - indicatorOfParameter = 109 ; - } -#Wave directional width of third swell partition -'140110' = { - table2Version = 140 ; - indicatorOfParameter = 110 ; - } -#Wave frequency width of third swell partition -'140111' = { - table2Version = 140 ; - indicatorOfParameter = 111 ; - } -#Wave energy flux magnitude -'140112' = { - table2Version = 140 ; - indicatorOfParameter = 112 ; - } -#Wave energy flux mean direction -'140113' = { - table2Version = 140 ; - indicatorOfParameter = 113 ; - } -#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds -'140114' = { - table2Version = 140 ; - indicatorOfParameter = 114 ; - } -#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds -'140115' = { - table2Version = 140 ; - indicatorOfParameter = 115 ; - } -#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds -'140116' = { - table2Version = 140 ; - indicatorOfParameter = 116 ; - } -#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds -'140117' = { - table2Version = 140 ; - indicatorOfParameter = 117 ; - } -#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds -'140118' = { - table2Version = 140 ; - indicatorOfParameter = 118 ; - } -#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds -'140119' = { - table2Version = 140 ; - indicatorOfParameter = 119 ; - } -#Significant wave height of all waves with period larger than 10s -'140120' = { - table2Version = 140 ; - indicatorOfParameter = 120 ; - } -#Significant wave height of first swell partition -'140121' = { - table2Version = 140 ; - indicatorOfParameter = 121 ; - } -#Mean wave direction of first swell partition -'140122' = { - table2Version = 140 ; - indicatorOfParameter = 122 ; - } -#Mean wave period of first swell partition -'140123' = { - table2Version = 140 ; - indicatorOfParameter = 123 ; - } -#Significant wave height of second swell partition -'140124' = { - table2Version = 140 ; - indicatorOfParameter = 124 ; - } -#Mean wave direction of second swell partition -'140125' = { - table2Version = 140 ; - indicatorOfParameter = 125 ; - } -#Mean wave period of second swell partition -'140126' = { - table2Version = 140 ; - indicatorOfParameter = 126 ; - } -#Significant wave height of third swell partition -'140127' = { - table2Version = 140 ; - indicatorOfParameter = 127 ; - } -#Mean wave direction of third swell partition -'140128' = { - table2Version = 140 ; - indicatorOfParameter = 128 ; - } -#Mean wave period of third swell partition -'140129' = { - table2Version = 140 ; - indicatorOfParameter = 129 ; - } -#Wave Spectral Skewness -'140207' = { - table2Version = 140 ; - indicatorOfParameter = 207 ; - } -#Free convective velocity over the oceans -'140208' = { - table2Version = 140 ; - indicatorOfParameter = 208 ; - } -#Air density over the oceans -'140209' = { - table2Version = 140 ; - indicatorOfParameter = 209 ; - } -#Mean square wave strain in sea ice -'140210' = { - table2Version = 140 ; - indicatorOfParameter = 210 ; - } -#Normalized energy flux into waves -'140211' = { - table2Version = 140 ; - indicatorOfParameter = 211 ; - } -#Normalized energy flux into ocean -'140212' = { - table2Version = 140 ; - indicatorOfParameter = 212 ; - } -#Turbulent Langmuir number -'140213' = { - table2Version = 140 ; - indicatorOfParameter = 213 ; - } -#Normalized stress into ocean -'140214' = { - table2Version = 140 ; - indicatorOfParameter = 214 ; - } -#Reserved -'151193' = { - table2Version = 151 ; - indicatorOfParameter = 193 ; - } -#Water vapour flux -'162045' = { - table2Version = 162 ; - indicatorOfParameter = 45 ; - } -#Vertical integral of divergence of cloud liquid water flux -'162079' = { - table2Version = 162 ; - indicatorOfParameter = 79 ; - } -#Vertical integral of divergence of cloud frozen water flux -'162080' = { - table2Version = 162 ; - indicatorOfParameter = 80 ; - } -#Vertical integral of eastward cloud liquid water flux -'162088' = { - table2Version = 162 ; - indicatorOfParameter = 88 ; - } -#Vertical integral of northward cloud liquid water flux -'162089' = { - table2Version = 162 ; - indicatorOfParameter = 89 ; - } -#Vertical integral of eastward cloud frozen water flux -'162090' = { - table2Version = 162 ; - indicatorOfParameter = 90 ; - } -#Vertical integral of northward cloud frozen water flux -'162091' = { - table2Version = 162 ; - indicatorOfParameter = 91 ; - } -#Vertical integral of mass tendency -'162092' = { - table2Version = 162 ; - indicatorOfParameter = 92 ; - } -#U-tendency from dynamics -'162114' = { - table2Version = 162 ; - indicatorOfParameter = 114 ; - } -#V-tendency from dynamics -'162115' = { - table2Version = 162 ; - indicatorOfParameter = 115 ; - } -#T-tendency from dynamics -'162116' = { - table2Version = 162 ; - indicatorOfParameter = 116 ; - } -#q-tendency from dynamics -'162117' = { - table2Version = 162 ; - indicatorOfParameter = 117 ; - } -#T-tendency from radiation -'162118' = { - table2Version = 162 ; - indicatorOfParameter = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'162119' = { - table2Version = 162 ; - indicatorOfParameter = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'162120' = { - table2Version = 162 ; - indicatorOfParameter = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'162121' = { - table2Version = 162 ; - indicatorOfParameter = 121 ; - } -#q-tendency from turbulent diffusion -'162122' = { - table2Version = 162 ; - indicatorOfParameter = 122 ; - } -#U-tendency from subgrid orography -'162123' = { - table2Version = 162 ; - indicatorOfParameter = 123 ; - } -#V-tendency from subgrid orography -'162124' = { - table2Version = 162 ; - indicatorOfParameter = 124 ; - } -#T-tendency from subgrid orography -'162125' = { - table2Version = 162 ; - indicatorOfParameter = 125 ; - } -#U-tendency from convection (deep+shallow) -'162126' = { - table2Version = 162 ; - indicatorOfParameter = 126 ; - } -#V-tendency from convection (deep+shallow) -'162127' = { - table2Version = 162 ; - indicatorOfParameter = 127 ; - } -#T-tendency from convection (deep+shallow) -'162128' = { - table2Version = 162 ; - indicatorOfParameter = 128 ; - } -#q-tendency from convection (deep+shallow) -'162129' = { - table2Version = 162 ; - indicatorOfParameter = 129 ; - } -#Liquid Precipitation flux from convection -'162130' = { - table2Version = 162 ; - indicatorOfParameter = 130 ; - } -#Ice Precipitation flux from convection -'162131' = { - table2Version = 162 ; - indicatorOfParameter = 131 ; - } -#T-tendency from cloud scheme -'162132' = { - table2Version = 162 ; - indicatorOfParameter = 132 ; - } -#q-tendency from cloud scheme -'162133' = { - table2Version = 162 ; - indicatorOfParameter = 133 ; - } -#ql-tendency from cloud scheme -'162134' = { - table2Version = 162 ; - indicatorOfParameter = 134 ; - } -#qi-tendency from cloud scheme -'162135' = { - table2Version = 162 ; - indicatorOfParameter = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'162136' = { - table2Version = 162 ; - indicatorOfParameter = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'162137' = { - table2Version = 162 ; - indicatorOfParameter = 137 ; - } -#U-tendency from shallow convection -'162138' = { - table2Version = 162 ; - indicatorOfParameter = 138 ; - } -#V-tendency from shallow convection -'162139' = { - table2Version = 162 ; - indicatorOfParameter = 139 ; - } -#T-tendency from shallow convection -'162140' = { - table2Version = 162 ; - indicatorOfParameter = 140 ; - } -#q-tendency from shallow convection -'162141' = { - table2Version = 162 ; - indicatorOfParameter = 141 ; - } -#Standardised precipitation index valid in the last 3 months -'170001' = { - table2Version = 170 ; - indicatorOfParameter = 1 ; - } -#Standardised precipitation index valid in the last 6 months -'170002' = { - table2Version = 170 ; - indicatorOfParameter = 2 ; - } -#Standardised precipitation index valid in the last 12 months -'170003' = { - table2Version = 170 ; - indicatorOfParameter = 3 ; - } -#100 metre U wind component anomaly -'171006' = { - table2Version = 171 ; - indicatorOfParameter = 6 ; - } -#100 metre V wind component anomaly -'171007' = { - table2Version = 171 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature anomaly -'171024' = { - table2Version = 171 ; - indicatorOfParameter = 24 ; - } -#Lake ice depth anomaly -'171025' = { - table2Version = 171 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'171121' = { - table2Version = 171 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'171122' = { - table2Version = 171 ; - indicatorOfParameter = 122 ; - } -#Mean surface runoff rate -'172008' = { - table2Version = 172 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate -'172009' = { - table2Version = 172 ; - indicatorOfParameter = 9 ; - } -#Mean surface runoff rate anomaly -'173008' = { - table2Version = 173 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate anomaly -'173009' = { - table2Version = 173 ; - indicatorOfParameter = 9 ; - } -#Clear-sky (II) down surface sw flux -'174010' = { - table2Version = 174 ; - indicatorOfParameter = 10 ; - } -#Clear-sky (II) up surface sw flux -'174013' = { - table2Version = 174 ; - indicatorOfParameter = 13 ; - } -#Visibility at 1.5m -'174025' = { - table2Version = 174 ; - indicatorOfParameter = 25 ; - } -#Minimum temperature at 1.5m since previous post-processing -'174050' = { - table2Version = 174 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 1.5m since previous post-processing -'174051' = { - table2Version = 174 ; - indicatorOfParameter = 51 ; - } -#Relative humidity at 1.5m -'174052' = { - table2Version = 174 ; - indicatorOfParameter = 52 ; - } -#2 metre specific humidity -'174096' = { - table2Version = 174 ; - indicatorOfParameter = 96 ; - } -#Sea ice snow thickness -'174097' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Short wave radiation flux at surface -'174116' = { - table2Version = 174 ; - indicatorOfParameter = 116 ; - } -#Short wave radiation flux at top of atmosphere -'174117' = { - table2Version = 174 ; - indicatorOfParameter = 117 ; - } -#Total column water vapour -'174137' = { - table2Version = 174 ; - indicatorOfParameter = 137 ; - } -#Large scale rainfall rate -'174142' = { - table2Version = 174 ; - indicatorOfParameter = 142 ; - } -#Convective rainfall rate -'174143' = { - table2Version = 174 ; - indicatorOfParameter = 143 ; - } -#Very low cloud amount -'174186' = { - table2Version = 174 ; - indicatorOfParameter = 186 ; - } -#Convective snowfall rate -'174239' = { - table2Version = 174 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall rate -'174240' = { - table2Version = 174 ; - indicatorOfParameter = 240 ; - } -#Total cloud amount - random overlap -'174248' = { - table2Version = 174 ; - indicatorOfParameter = 248 ; - } -#Total cloud amount in lw radiation -'174249' = { - table2Version = 174 ; - indicatorOfParameter = 249 ; - } -#Volcanic ash aerosol mixing ratio -'210013' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'210014' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'210015' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'210028' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'210029' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'210030' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'210043' = { - table2Version = 210 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'210044' = { - table2Version = 210 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'210045' = { - table2Version = 210 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'210055' = { - table2Version = 210 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'210056' = { - table2Version = 210 ; - indicatorOfParameter = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'210057' = { - table2Version = 210 ; - indicatorOfParameter = 57 ; - } -#Monoterpene precursor mixing ratio -'210058' = { - table2Version = 210 ; - indicatorOfParameter = 58 ; - } -#Secondary organic precursor mixing ratio -'210059' = { - table2Version = 210 ; - indicatorOfParameter = 59 ; - } -#Injection height (from IS4FIRES) -'210060' = { - table2Version = 210 ; - indicatorOfParameter = 60 ; - } -#Particulate matter d < 1 um -'210072' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'210073' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'210074' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Wildfire viewing angle of observation -'210079' = { - table2Version = 210 ; - indicatorOfParameter = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'210118' = { - table2Version = 210 ; - indicatorOfParameter = 118 ; - } -#Mean altitude of maximum injection -'210119' = { - table2Version = 210 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'210120' = { - table2Version = 210 ; - indicatorOfParameter = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'210186' = { - table2Version = 210 ; - indicatorOfParameter = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'210187' = { - table2Version = 210 ; - indicatorOfParameter = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'210188' = { - table2Version = 210 ; - indicatorOfParameter = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'210189' = { - table2Version = 210 ; - indicatorOfParameter = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'210190' = { - table2Version = 210 ; - indicatorOfParameter = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'210191' = { - table2Version = 210 ; - indicatorOfParameter = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'210192' = { - table2Version = 210 ; - indicatorOfParameter = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'210193' = { - table2Version = 210 ; - indicatorOfParameter = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'210194' = { - table2Version = 210 ; - indicatorOfParameter = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'210195' = { - table2Version = 210 ; - indicatorOfParameter = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'210196' = { - table2Version = 210 ; - indicatorOfParameter = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'210197' = { - table2Version = 210 ; - indicatorOfParameter = 197 ; - } -#Total aerosol optical depth at 340 nm -'210217' = { - table2Version = 210 ; - indicatorOfParameter = 217 ; - } -#Total aerosol optical depth at 355 nm -'210218' = { - table2Version = 210 ; - indicatorOfParameter = 218 ; - } -#Total aerosol optical depth at 380 nm -'210219' = { - table2Version = 210 ; - indicatorOfParameter = 219 ; - } -#Total aerosol optical depth at 400 nm -'210220' = { - table2Version = 210 ; - indicatorOfParameter = 220 ; - } -#Total aerosol optical depth at 440 nm -'210221' = { - table2Version = 210 ; - indicatorOfParameter = 221 ; - } -#Total aerosol optical depth at 500 nm -'210222' = { - table2Version = 210 ; - indicatorOfParameter = 222 ; - } -#Total aerosol optical depth at 532 nm -'210223' = { - table2Version = 210 ; - indicatorOfParameter = 223 ; - } -#Total aerosol optical depth at 645 nm -'210224' = { - table2Version = 210 ; - indicatorOfParameter = 224 ; - } -#Total aerosol optical depth at 800 nm -'210225' = { - table2Version = 210 ; - indicatorOfParameter = 225 ; - } -#Total aerosol optical depth at 858 nm -'210226' = { - table2Version = 210 ; - indicatorOfParameter = 226 ; - } -#Total aerosol optical depth at 1020 nm -'210227' = { - table2Version = 210 ; - indicatorOfParameter = 227 ; - } -#Total aerosol optical depth at 1064 nm -'210228' = { - table2Version = 210 ; - indicatorOfParameter = 228 ; - } -#Total aerosol optical depth at 1640 nm -'210229' = { - table2Version = 210 ; - indicatorOfParameter = 229 ; - } -#Total aerosol optical depth at 2130 nm -'210230' = { - table2Version = 210 ; - indicatorOfParameter = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'210231' = { - table2Version = 210 ; - indicatorOfParameter = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'210232' = { - table2Version = 210 ; - indicatorOfParameter = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'210233' = { - table2Version = 210 ; - indicatorOfParameter = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'210234' = { - table2Version = 210 ; - indicatorOfParameter = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'210235' = { - table2Version = 210 ; - indicatorOfParameter = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'210236' = { - table2Version = 210 ; - indicatorOfParameter = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'210237' = { - table2Version = 210 ; - indicatorOfParameter = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'210238' = { - table2Version = 210 ; - indicatorOfParameter = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'210239' = { - table2Version = 210 ; - indicatorOfParameter = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'210240' = { - table2Version = 210 ; - indicatorOfParameter = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'210241' = { - table2Version = 210 ; - indicatorOfParameter = 241 ; - } -#Altitude of plume bottom -'210242' = { - table2Version = 210 ; - indicatorOfParameter = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'210243' = { - table2Version = 210 ; - indicatorOfParameter = 243 ; - } -#Volcanic ash optical depth at 550 nm -'210244' = { - table2Version = 210 ; - indicatorOfParameter = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'210245' = { - table2Version = 210 ; - indicatorOfParameter = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'210246' = { - table2Version = 210 ; - indicatorOfParameter = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'210247' = { - table2Version = 210 ; - indicatorOfParameter = 247 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'210248' = { - table2Version = 210 ; - indicatorOfParameter = 248 ; - } -#Ammonium aerosol mass mixing ratio -'210249' = { - table2Version = 210 ; - indicatorOfParameter = 249 ; - } -#Nitrate aerosol optical depth at 550 nm -'210250' = { - table2Version = 210 ; - indicatorOfParameter = 250 ; - } -#Ammonium aerosol optical depth at 550 nm -'210251' = { - table2Version = 210 ; - indicatorOfParameter = 251 ; - } -#Aerosol type 13 mass mixing ratio -'211013' = { - table2Version = 211 ; - indicatorOfParameter = 13 ; - } -#Aerosol type 14 mass mixing ratio -'211014' = { - table2Version = 211 ; - indicatorOfParameter = 14 ; - } -#Aerosol type 15 mass mixing ratio -'211015' = { - table2Version = 211 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'211028' = { - table2Version = 211 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'211029' = { - table2Version = 211 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'211030' = { - table2Version = 211 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'211043' = { - table2Version = 211 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'211044' = { - table2Version = 211 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'211045' = { - table2Version = 211 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'211055' = { - table2Version = 211 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'211056' = { - table2Version = 211 ; - indicatorOfParameter = 56 ; - } -#Wildfire Flux of Ethane (C2H6) -'211118' = { - table2Version = 211 ; - indicatorOfParameter = 118 ; - } -#Altitude of emitter -'211119' = { - table2Version = 211 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'211120' = { - table2Version = 211 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'212001' = { - table2Version = 212 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'212002' = { - table2Version = 212 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'212003' = { - table2Version = 212 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'212004' = { - table2Version = 212 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'212005' = { - table2Version = 212 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'212006' = { - table2Version = 212 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'212007' = { - table2Version = 212 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'212008' = { - table2Version = 212 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'212009' = { - table2Version = 212 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'212010' = { - table2Version = 212 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'212011' = { - table2Version = 212 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'212012' = { - table2Version = 212 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'212013' = { - table2Version = 212 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'212014' = { - table2Version = 212 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'212015' = { - table2Version = 212 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'212016' = { - table2Version = 212 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'212017' = { - table2Version = 212 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'212018' = { - table2Version = 212 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'212019' = { - table2Version = 212 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'212020' = { - table2Version = 212 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'212021' = { - table2Version = 212 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'212022' = { - table2Version = 212 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'212023' = { - table2Version = 212 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'212024' = { - table2Version = 212 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'212025' = { - table2Version = 212 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'212026' = { - table2Version = 212 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'212027' = { - table2Version = 212 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'212028' = { - table2Version = 212 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'212029' = { - table2Version = 212 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'212030' = { - table2Version = 212 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'212031' = { - table2Version = 212 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'212032' = { - table2Version = 212 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'212033' = { - table2Version = 212 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'212034' = { - table2Version = 212 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'212035' = { - table2Version = 212 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'212036' = { - table2Version = 212 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'212037' = { - table2Version = 212 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'212038' = { - table2Version = 212 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'212039' = { - table2Version = 212 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'212040' = { - table2Version = 212 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'212041' = { - table2Version = 212 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'212042' = { - table2Version = 212 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'212043' = { - table2Version = 212 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'212044' = { - table2Version = 212 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'212045' = { - table2Version = 212 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'212046' = { - table2Version = 212 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'212047' = { - table2Version = 212 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'212048' = { - table2Version = 212 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'212049' = { - table2Version = 212 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'212050' = { - table2Version = 212 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'212051' = { - table2Version = 212 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'212052' = { - table2Version = 212 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'212053' = { - table2Version = 212 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'212054' = { - table2Version = 212 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'212055' = { - table2Version = 212 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'212056' = { - table2Version = 212 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'212057' = { - table2Version = 212 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'212058' = { - table2Version = 212 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'212059' = { - table2Version = 212 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'212060' = { - table2Version = 212 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'212061' = { - table2Version = 212 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'212062' = { - table2Version = 212 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'212063' = { - table2Version = 212 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'212064' = { - table2Version = 212 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'212065' = { - table2Version = 212 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'212066' = { - table2Version = 212 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'212067' = { - table2Version = 212 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'212068' = { - table2Version = 212 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'212069' = { - table2Version = 212 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'212070' = { - table2Version = 212 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'212071' = { - table2Version = 212 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'212072' = { - table2Version = 212 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'212073' = { - table2Version = 212 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'212074' = { - table2Version = 212 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'212075' = { - table2Version = 212 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'212076' = { - table2Version = 212 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'212077' = { - table2Version = 212 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'212078' = { - table2Version = 212 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'212079' = { - table2Version = 212 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'212080' = { - table2Version = 212 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'212081' = { - table2Version = 212 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'212082' = { - table2Version = 212 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'212083' = { - table2Version = 212 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'212084' = { - table2Version = 212 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'212085' = { - table2Version = 212 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'212086' = { - table2Version = 212 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'212087' = { - table2Version = 212 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'212088' = { - table2Version = 212 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'212089' = { - table2Version = 212 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'212090' = { - table2Version = 212 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'212091' = { - table2Version = 212 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'212092' = { - table2Version = 212 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'212093' = { - table2Version = 212 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'212094' = { - table2Version = 212 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'212095' = { - table2Version = 212 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'212096' = { - table2Version = 212 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'212097' = { - table2Version = 212 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'212098' = { - table2Version = 212 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'212099' = { - table2Version = 212 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'212100' = { - table2Version = 212 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'212101' = { - table2Version = 212 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'212102' = { - table2Version = 212 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'212103' = { - table2Version = 212 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'212104' = { - table2Version = 212 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'212105' = { - table2Version = 212 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'212106' = { - table2Version = 212 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'212107' = { - table2Version = 212 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'212108' = { - table2Version = 212 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'212109' = { - table2Version = 212 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'212110' = { - table2Version = 212 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'212111' = { - table2Version = 212 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'212112' = { - table2Version = 212 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'212113' = { - table2Version = 212 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'212114' = { - table2Version = 212 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'212115' = { - table2Version = 212 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'212116' = { - table2Version = 212 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'212117' = { - table2Version = 212 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'212118' = { - table2Version = 212 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'212119' = { - table2Version = 212 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'212120' = { - table2Version = 212 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'212121' = { - table2Version = 212 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'212122' = { - table2Version = 212 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'212123' = { - table2Version = 212 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'212124' = { - table2Version = 212 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'212125' = { - table2Version = 212 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'212126' = { - table2Version = 212 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'212127' = { - table2Version = 212 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'212128' = { - table2Version = 212 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'212129' = { - table2Version = 212 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'212130' = { - table2Version = 212 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'212131' = { - table2Version = 212 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'212132' = { - table2Version = 212 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'212133' = { - table2Version = 212 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'212134' = { - table2Version = 212 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'212135' = { - table2Version = 212 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'212136' = { - table2Version = 212 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'212137' = { - table2Version = 212 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'212138' = { - table2Version = 212 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'212139' = { - table2Version = 212 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'212140' = { - table2Version = 212 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'212141' = { - table2Version = 212 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'212142' = { - table2Version = 212 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'212143' = { - table2Version = 212 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'212144' = { - table2Version = 212 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'212145' = { - table2Version = 212 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'212146' = { - table2Version = 212 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'212147' = { - table2Version = 212 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'212148' = { - table2Version = 212 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'212149' = { - table2Version = 212 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'212150' = { - table2Version = 212 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'212151' = { - table2Version = 212 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'212152' = { - table2Version = 212 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'212153' = { - table2Version = 212 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'212154' = { - table2Version = 212 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'212155' = { - table2Version = 212 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'212156' = { - table2Version = 212 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'212157' = { - table2Version = 212 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'212158' = { - table2Version = 212 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'212159' = { - table2Version = 212 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'212160' = { - table2Version = 212 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'212161' = { - table2Version = 212 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'212162' = { - table2Version = 212 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'212163' = { - table2Version = 212 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'212164' = { - table2Version = 212 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'212165' = { - table2Version = 212 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'212166' = { - table2Version = 212 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'212167' = { - table2Version = 212 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'212168' = { - table2Version = 212 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'212169' = { - table2Version = 212 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'212170' = { - table2Version = 212 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'212171' = { - table2Version = 212 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'212172' = { - table2Version = 212 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'212173' = { - table2Version = 212 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'212174' = { - table2Version = 212 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'212175' = { - table2Version = 212 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'212176' = { - table2Version = 212 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'212177' = { - table2Version = 212 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'212178' = { - table2Version = 212 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'212179' = { - table2Version = 212 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'212180' = { - table2Version = 212 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'212181' = { - table2Version = 212 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'212182' = { - table2Version = 212 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'212183' = { - table2Version = 212 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'212184' = { - table2Version = 212 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'212185' = { - table2Version = 212 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'212186' = { - table2Version = 212 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'212187' = { - table2Version = 212 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'212188' = { - table2Version = 212 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'212189' = { - table2Version = 212 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'212190' = { - table2Version = 212 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'212191' = { - table2Version = 212 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'212192' = { - table2Version = 212 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'212193' = { - table2Version = 212 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'212194' = { - table2Version = 212 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'212195' = { - table2Version = 212 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'212196' = { - table2Version = 212 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'212197' = { - table2Version = 212 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'212198' = { - table2Version = 212 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'212199' = { - table2Version = 212 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'212200' = { - table2Version = 212 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'212201' = { - table2Version = 212 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'212202' = { - table2Version = 212 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'212203' = { - table2Version = 212 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'212204' = { - table2Version = 212 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'212205' = { - table2Version = 212 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'212206' = { - table2Version = 212 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'212207' = { - table2Version = 212 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'212208' = { - table2Version = 212 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'212209' = { - table2Version = 212 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'212210' = { - table2Version = 212 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'212211' = { - table2Version = 212 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'212212' = { - table2Version = 212 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'212213' = { - table2Version = 212 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'212214' = { - table2Version = 212 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'212215' = { - table2Version = 212 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'212216' = { - table2Version = 212 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'212217' = { - table2Version = 212 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'212218' = { - table2Version = 212 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'212219' = { - table2Version = 212 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'212220' = { - table2Version = 212 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'212221' = { - table2Version = 212 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'212222' = { - table2Version = 212 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'212223' = { - table2Version = 212 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'212224' = { - table2Version = 212 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'212225' = { - table2Version = 212 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'212226' = { - table2Version = 212 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'212227' = { - table2Version = 212 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'212228' = { - table2Version = 212 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'212229' = { - table2Version = 212 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'212230' = { - table2Version = 212 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'212231' = { - table2Version = 212 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'212232' = { - table2Version = 212 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'212233' = { - table2Version = 212 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'212234' = { - table2Version = 212 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'212235' = { - table2Version = 212 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'212236' = { - table2Version = 212 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'212237' = { - table2Version = 212 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'212238' = { - table2Version = 212 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'212239' = { - table2Version = 212 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'212240' = { - table2Version = 212 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'212241' = { - table2Version = 212 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'212242' = { - table2Version = 212 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'212243' = { - table2Version = 212 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'212244' = { - table2Version = 212 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'212245' = { - table2Version = 212 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'212246' = { - table2Version = 212 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'212247' = { - table2Version = 212 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'212248' = { - table2Version = 212 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'212249' = { - table2Version = 212 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'212250' = { - table2Version = 212 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'212251' = { - table2Version = 212 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'212252' = { - table2Version = 212 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'212253' = { - table2Version = 212 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'212254' = { - table2Version = 212 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'212255' = { - table2Version = 212 ; - indicatorOfParameter = 255 ; - } -#Random pattern 1 for sppt -'213001' = { - table2Version = 213 ; - indicatorOfParameter = 1 ; - } -#Random pattern 2 for sppt -'213002' = { - table2Version = 213 ; - indicatorOfParameter = 2 ; - } -#Random pattern 3 for sppt -'213003' = { - table2Version = 213 ; - indicatorOfParameter = 3 ; - } -#Random pattern 4 for sppt -'213004' = { - table2Version = 213 ; - indicatorOfParameter = 4 ; - } -#Random pattern 5 for sppt -'213005' = { - table2Version = 213 ; - indicatorOfParameter = 5 ; - } -#Random pattern 1 for SPP scheme -'213101' = { - table2Version = 213 ; - indicatorOfParameter = 101 ; - } -#Random pattern 2 for SPP scheme -'213102' = { - table2Version = 213 ; - indicatorOfParameter = 102 ; - } -#Random pattern 3 for SPP scheme -'213103' = { - table2Version = 213 ; - indicatorOfParameter = 103 ; - } -#Random pattern 4 for SPP scheme -'213104' = { - table2Version = 213 ; - indicatorOfParameter = 104 ; - } -#Random pattern 5 for SPP scheme -'213105' = { - table2Version = 213 ; - indicatorOfParameter = 105 ; - } -#Random pattern 6 for SPP scheme -'213106' = { - table2Version = 213 ; - indicatorOfParameter = 106 ; - } -#Random pattern 7 for SPP scheme -'213107' = { - table2Version = 213 ; - indicatorOfParameter = 107 ; - } -#Random pattern 8 for SPP scheme -'213108' = { - table2Version = 213 ; - indicatorOfParameter = 108 ; - } -#Random pattern 9 for SPP scheme -'213109' = { - table2Version = 213 ; - indicatorOfParameter = 109 ; - } -#Random pattern 10 for SPP scheme -'213110' = { - table2Version = 213 ; - indicatorOfParameter = 110 ; - } -#Random pattern 11 for SPP scheme -'213111' = { - table2Version = 213 ; - indicatorOfParameter = 111 ; - } -#Random pattern 12 for SPP scheme -'213112' = { - table2Version = 213 ; - indicatorOfParameter = 112 ; - } -#Random pattern 13 for SPP scheme -'213113' = { - table2Version = 213 ; - indicatorOfParameter = 113 ; - } -#Random pattern 14 for SPP scheme -'213114' = { - table2Version = 213 ; - indicatorOfParameter = 114 ; - } -#Random pattern 15 for SPP scheme -'213115' = { - table2Version = 213 ; - indicatorOfParameter = 115 ; - } -#Random pattern 16 for SPP scheme -'213116' = { - table2Version = 213 ; - indicatorOfParameter = 116 ; - } -#Random pattern 17 for SPP scheme -'213117' = { - table2Version = 213 ; - indicatorOfParameter = 117 ; - } -#Random pattern 18 for SPP scheme -'213118' = { - table2Version = 213 ; - indicatorOfParameter = 118 ; - } -#Random pattern 19 for SPP scheme -'213119' = { - table2Version = 213 ; - indicatorOfParameter = 119 ; - } -#Random pattern 20 for SPP scheme -'213120' = { - table2Version = 213 ; - indicatorOfParameter = 120 ; - } -#Random pattern 21 for SPP scheme -'213121' = { - table2Version = 213 ; - indicatorOfParameter = 121 ; - } -#Random pattern 22 for SPP scheme -'213122' = { - table2Version = 213 ; - indicatorOfParameter = 122 ; - } -#Random pattern 23 for SPP scheme -'213123' = { - table2Version = 213 ; - indicatorOfParameter = 123 ; - } -#Random pattern 24 for SPP scheme -'213124' = { - table2Version = 213 ; - indicatorOfParameter = 124 ; - } -#Random pattern 25 for SPP scheme -'213125' = { - table2Version = 213 ; - indicatorOfParameter = 125 ; - } -#Random pattern 26 for SPP scheme -'213126' = { - table2Version = 213 ; - indicatorOfParameter = 126 ; - } -#Random pattern 27 for SPP scheme -'213127' = { - table2Version = 213 ; - indicatorOfParameter = 127 ; - } -#Random pattern 28 for SPP scheme -'213128' = { - table2Version = 213 ; - indicatorOfParameter = 128 ; - } -#Random pattern 29 for SPP scheme -'213129' = { - table2Version = 213 ; - indicatorOfParameter = 129 ; - } -#Random pattern 30 for SPP scheme -'213130' = { - table2Version = 213 ; - indicatorOfParameter = 130 ; - } -#Random pattern 31 for SPP scheme -'213131' = { - table2Version = 213 ; - indicatorOfParameter = 131 ; - } -#Random pattern 32 for SPP scheme -'213132' = { - table2Version = 213 ; - indicatorOfParameter = 132 ; - } -#Random pattern 33 for SPP scheme -'213133' = { - table2Version = 213 ; - indicatorOfParameter = 133 ; - } -#Random pattern 34 for SPP scheme -'213134' = { - table2Version = 213 ; - indicatorOfParameter = 134 ; - } -#Random pattern 35 for SPP scheme -'213135' = { - table2Version = 213 ; - indicatorOfParameter = 135 ; - } -#Random pattern 36 for SPP scheme -'213136' = { - table2Version = 213 ; - indicatorOfParameter = 136 ; - } -#Random pattern 37 for SPP scheme -'213137' = { - table2Version = 213 ; - indicatorOfParameter = 137 ; - } -#Random pattern 38 for SPP scheme -'213138' = { - table2Version = 213 ; - indicatorOfParameter = 138 ; - } -#Random pattern 39 for SPP scheme -'213139' = { - table2Version = 213 ; - indicatorOfParameter = 139 ; - } -#Random pattern 40 for SPP scheme -'213140' = { - table2Version = 213 ; - indicatorOfParameter = 140 ; - } -#Random pattern 41 for SPP scheme -'213141' = { - table2Version = 213 ; - indicatorOfParameter = 141 ; - } -#Random pattern 42 for SPP scheme -'213142' = { - table2Version = 213 ; - indicatorOfParameter = 142 ; - } -#Random pattern 43 for SPP scheme -'213143' = { - table2Version = 213 ; - indicatorOfParameter = 143 ; - } -#Random pattern 44 for SPP scheme -'213144' = { - table2Version = 213 ; - indicatorOfParameter = 144 ; - } -#Random pattern 45 for SPP scheme -'213145' = { - table2Version = 213 ; - indicatorOfParameter = 145 ; - } -#Random pattern 46 for SPP scheme -'213146' = { - table2Version = 213 ; - indicatorOfParameter = 146 ; - } -#Random pattern 47 for SPP scheme -'213147' = { - table2Version = 213 ; - indicatorOfParameter = 147 ; - } -#Random pattern 48 for SPP scheme -'213148' = { - table2Version = 213 ; - indicatorOfParameter = 148 ; - } -#Random pattern 49 for SPP scheme -'213149' = { - table2Version = 213 ; - indicatorOfParameter = 149 ; - } -#Random pattern 50 for SPP scheme -'213150' = { - table2Version = 213 ; - indicatorOfParameter = 150 ; - } -#Cosine of solar zenith angle -'214001' = { - table2Version = 214 ; - indicatorOfParameter = 1 ; - } -#UV biologically effective dose -'214002' = { - table2Version = 214 ; - indicatorOfParameter = 2 ; - } -#UV biologically effective dose clear-sky -'214003' = { - table2Version = 214 ; - indicatorOfParameter = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'214004' = { - table2Version = 214 ; - indicatorOfParameter = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'214005' = { - table2Version = 214 ; - indicatorOfParameter = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'214006' = { - table2Version = 214 ; - indicatorOfParameter = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'214007' = { - table2Version = 214 ; - indicatorOfParameter = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'214008' = { - table2Version = 214 ; - indicatorOfParameter = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'214009' = { - table2Version = 214 ; - indicatorOfParameter = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'214010' = { - table2Version = 214 ; - indicatorOfParameter = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'214011' = { - table2Version = 214 ; - indicatorOfParameter = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'214012' = { - table2Version = 214 ; - indicatorOfParameter = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'214013' = { - table2Version = 214 ; - indicatorOfParameter = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'214014' = { - table2Version = 214 ; - indicatorOfParameter = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'214015' = { - table2Version = 214 ; - indicatorOfParameter = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'214016' = { - table2Version = 214 ; - indicatorOfParameter = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'214017' = { - table2Version = 214 ; - indicatorOfParameter = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'214018' = { - table2Version = 214 ; - indicatorOfParameter = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'214019' = { - table2Version = 214 ; - indicatorOfParameter = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'214020' = { - table2Version = 214 ; - indicatorOfParameter = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'214021' = { - table2Version = 214 ; - indicatorOfParameter = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'214022' = { - table2Version = 214 ; - indicatorOfParameter = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'214023' = { - table2Version = 214 ; - indicatorOfParameter = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'214024' = { - table2Version = 214 ; - indicatorOfParameter = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'214025' = { - table2Version = 214 ; - indicatorOfParameter = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'214026' = { - table2Version = 214 ; - indicatorOfParameter = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'214027' = { - table2Version = 214 ; - indicatorOfParameter = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'214028' = { - table2Version = 214 ; - indicatorOfParameter = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'214029' = { - table2Version = 214 ; - indicatorOfParameter = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'214030' = { - table2Version = 214 ; - indicatorOfParameter = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'214031' = { - table2Version = 214 ; - indicatorOfParameter = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'214032' = { - table2Version = 214 ; - indicatorOfParameter = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'214033' = { - table2Version = 214 ; - indicatorOfParameter = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'214034' = { - table2Version = 214 ; - indicatorOfParameter = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'214035' = { - table2Version = 214 ; - indicatorOfParameter = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'214036' = { - table2Version = 214 ; - indicatorOfParameter = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'214037' = { - table2Version = 214 ; - indicatorOfParameter = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'214038' = { - table2Version = 214 ; - indicatorOfParameter = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'214039' = { - table2Version = 214 ; - indicatorOfParameter = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'214040' = { - table2Version = 214 ; - indicatorOfParameter = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'214041' = { - table2Version = 214 ; - indicatorOfParameter = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'214042' = { - table2Version = 214 ; - indicatorOfParameter = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'214043' = { - table2Version = 214 ; - indicatorOfParameter = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'214044' = { - table2Version = 214 ; - indicatorOfParameter = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'214045' = { - table2Version = 214 ; - indicatorOfParameter = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'214046' = { - table2Version = 214 ; - indicatorOfParameter = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'214047' = { - table2Version = 214 ; - indicatorOfParameter = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'214048' = { - table2Version = 214 ; - indicatorOfParameter = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'214049' = { - table2Version = 214 ; - indicatorOfParameter = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'214050' = { - table2Version = 214 ; - indicatorOfParameter = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'214051' = { - table2Version = 214 ; - indicatorOfParameter = 51 ; - } -#Profile of optical thickness at 340 nm -'214052' = { - table2Version = 214 ; - indicatorOfParameter = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'215001' = { - table2Version = 215 ; - indicatorOfParameter = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'215002' = { - table2Version = 215 ; - indicatorOfParameter = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'215003' = { - table2Version = 215 ; - indicatorOfParameter = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'215004' = { - table2Version = 215 ; - indicatorOfParameter = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'215005' = { - table2Version = 215 ; - indicatorOfParameter = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'215006' = { - table2Version = 215 ; - indicatorOfParameter = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'215007' = { - table2Version = 215 ; - indicatorOfParameter = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'215008' = { - table2Version = 215 ; - indicatorOfParameter = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'215009' = { - table2Version = 215 ; - indicatorOfParameter = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'215010' = { - table2Version = 215 ; - indicatorOfParameter = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'215011' = { - table2Version = 215 ; - indicatorOfParameter = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'215012' = { - table2Version = 215 ; - indicatorOfParameter = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'215013' = { - table2Version = 215 ; - indicatorOfParameter = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'215014' = { - table2Version = 215 ; - indicatorOfParameter = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'215015' = { - table2Version = 215 ; - indicatorOfParameter = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'215016' = { - table2Version = 215 ; - indicatorOfParameter = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'215017' = { - table2Version = 215 ; - indicatorOfParameter = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'215018' = { - table2Version = 215 ; - indicatorOfParameter = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'215019' = { - table2Version = 215 ; - indicatorOfParameter = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'215020' = { - table2Version = 215 ; - indicatorOfParameter = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'215021' = { - table2Version = 215 ; - indicatorOfParameter = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'215022' = { - table2Version = 215 ; - indicatorOfParameter = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'215023' = { - table2Version = 215 ; - indicatorOfParameter = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'215024' = { - table2Version = 215 ; - indicatorOfParameter = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'215025' = { - table2Version = 215 ; - indicatorOfParameter = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'215026' = { - table2Version = 215 ; - indicatorOfParameter = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'215027' = { - table2Version = 215 ; - indicatorOfParameter = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'215028' = { - table2Version = 215 ; - indicatorOfParameter = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'215029' = { - table2Version = 215 ; - indicatorOfParameter = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'215030' = { - table2Version = 215 ; - indicatorOfParameter = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'215031' = { - table2Version = 215 ; - indicatorOfParameter = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'215032' = { - table2Version = 215 ; - indicatorOfParameter = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'215033' = { - table2Version = 215 ; - indicatorOfParameter = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'215034' = { - table2Version = 215 ; - indicatorOfParameter = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'215035' = { - table2Version = 215 ; - indicatorOfParameter = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'215036' = { - table2Version = 215 ; - indicatorOfParameter = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'215037' = { - table2Version = 215 ; - indicatorOfParameter = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'215038' = { - table2Version = 215 ; - indicatorOfParameter = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'215039' = { - table2Version = 215 ; - indicatorOfParameter = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'215040' = { - table2Version = 215 ; - indicatorOfParameter = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'215041' = { - table2Version = 215 ; - indicatorOfParameter = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'215042' = { - table2Version = 215 ; - indicatorOfParameter = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'215043' = { - table2Version = 215 ; - indicatorOfParameter = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'215044' = { - table2Version = 215 ; - indicatorOfParameter = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'215045' = { - table2Version = 215 ; - indicatorOfParameter = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'215046' = { - table2Version = 215 ; - indicatorOfParameter = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'215047' = { - table2Version = 215 ; - indicatorOfParameter = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'215048' = { - table2Version = 215 ; - indicatorOfParameter = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'215049' = { - table2Version = 215 ; - indicatorOfParameter = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'215050' = { - table2Version = 215 ; - indicatorOfParameter = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'215051' = { - table2Version = 215 ; - indicatorOfParameter = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'215052' = { - table2Version = 215 ; - indicatorOfParameter = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'215053' = { - table2Version = 215 ; - indicatorOfParameter = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'215054' = { - table2Version = 215 ; - indicatorOfParameter = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'215055' = { - table2Version = 215 ; - indicatorOfParameter = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'215056' = { - table2Version = 215 ; - indicatorOfParameter = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'215057' = { - table2Version = 215 ; - indicatorOfParameter = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'215058' = { - table2Version = 215 ; - indicatorOfParameter = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'215059' = { - table2Version = 215 ; - indicatorOfParameter = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'215060' = { - table2Version = 215 ; - indicatorOfParameter = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'215061' = { - table2Version = 215 ; - indicatorOfParameter = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'215062' = { - table2Version = 215 ; - indicatorOfParameter = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'215063' = { - table2Version = 215 ; - indicatorOfParameter = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'215064' = { - table2Version = 215 ; - indicatorOfParameter = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'215065' = { - table2Version = 215 ; - indicatorOfParameter = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'215066' = { - table2Version = 215 ; - indicatorOfParameter = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'215067' = { - table2Version = 215 ; - indicatorOfParameter = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'215068' = { - table2Version = 215 ; - indicatorOfParameter = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'215069' = { - table2Version = 215 ; - indicatorOfParameter = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'215070' = { - table2Version = 215 ; - indicatorOfParameter = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'215071' = { - table2Version = 215 ; - indicatorOfParameter = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'215072' = { - table2Version = 215 ; - indicatorOfParameter = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'215073' = { - table2Version = 215 ; - indicatorOfParameter = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'215074' = { - table2Version = 215 ; - indicatorOfParameter = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'215075' = { - table2Version = 215 ; - indicatorOfParameter = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'215076' = { - table2Version = 215 ; - indicatorOfParameter = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'215077' = { - table2Version = 215 ; - indicatorOfParameter = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'215078' = { - table2Version = 215 ; - indicatorOfParameter = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'215079' = { - table2Version = 215 ; - indicatorOfParameter = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'215080' = { - table2Version = 215 ; - indicatorOfParameter = 80 ; - } -#Source/gain of sulphate aerosol -'215081' = { - table2Version = 215 ; - indicatorOfParameter = 81 ; - } -#Dry deposition of sulphate aerosol -'215082' = { - table2Version = 215 ; - indicatorOfParameter = 82 ; - } -#Sedimentation of sulphate aerosol -'215083' = { - table2Version = 215 ; - indicatorOfParameter = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'215084' = { - table2Version = 215 ; - indicatorOfParameter = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'215085' = { - table2Version = 215 ; - indicatorOfParameter = 85 ; - } -#Negative fixer of sulphate aerosol -'215086' = { - table2Version = 215 ; - indicatorOfParameter = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'215087' = { - table2Version = 215 ; - indicatorOfParameter = 87 ; - } -#Sulphate aerosol optical depth -'215088' = { - table2Version = 215 ; - indicatorOfParameter = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'215089' = { - table2Version = 215 ; - indicatorOfParameter = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'215090' = { - table2Version = 215 ; - indicatorOfParameter = 90 ; - } -#10 metre wind speed dust emission potential -'215091' = { - table2Version = 215 ; - indicatorOfParameter = 91 ; - } -#10 metre wind gustiness dust emission potential -'215092' = { - table2Version = 215 ; - indicatorOfParameter = 92 ; - } -#Total aerosol optical thickness at 532 nm -'215093' = { - table2Version = 215 ; - indicatorOfParameter = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'215094' = { - table2Version = 215 ; - indicatorOfParameter = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'215095' = { - table2Version = 215 ; - indicatorOfParameter = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'215096' = { - table2Version = 215 ; - indicatorOfParameter = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'215097' = { - table2Version = 215 ; - indicatorOfParameter = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'215098' = { - table2Version = 215 ; - indicatorOfParameter = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'215099' = { - table2Version = 215 ; - indicatorOfParameter = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'215100' = { - table2Version = 215 ; - indicatorOfParameter = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'215101' = { - table2Version = 215 ; - indicatorOfParameter = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'215102' = { - table2Version = 215 ; - indicatorOfParameter = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'215103' = { - table2Version = 215 ; - indicatorOfParameter = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'215104' = { - table2Version = 215 ; - indicatorOfParameter = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'215105' = { - table2Version = 215 ; - indicatorOfParameter = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'215106' = { - table2Version = 215 ; - indicatorOfParameter = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'215107' = { - table2Version = 215 ; - indicatorOfParameter = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'215108' = { - table2Version = 215 ; - indicatorOfParameter = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'215109' = { - table2Version = 215 ; - indicatorOfParameter = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'215110' = { - table2Version = 215 ; - indicatorOfParameter = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'215111' = { - table2Version = 215 ; - indicatorOfParameter = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'215112' = { - table2Version = 215 ; - indicatorOfParameter = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'215113' = { - table2Version = 215 ; - indicatorOfParameter = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'215114' = { - table2Version = 215 ; - indicatorOfParameter = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'215115' = { - table2Version = 215 ; - indicatorOfParameter = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'215116' = { - table2Version = 215 ; - indicatorOfParameter = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'215117' = { - table2Version = 215 ; - indicatorOfParameter = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'215118' = { - table2Version = 215 ; - indicatorOfParameter = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'215119' = { - table2Version = 215 ; - indicatorOfParameter = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'215120' = { - table2Version = 215 ; - indicatorOfParameter = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'215121' = { - table2Version = 215 ; - indicatorOfParameter = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'215122' = { - table2Version = 215 ; - indicatorOfParameter = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'215123' = { - table2Version = 215 ; - indicatorOfParameter = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'215124' = { - table2Version = 215 ; - indicatorOfParameter = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'215125' = { - table2Version = 215 ; - indicatorOfParameter = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'215126' = { - table2Version = 215 ; - indicatorOfParameter = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'215127' = { - table2Version = 215 ; - indicatorOfParameter = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'215128' = { - table2Version = 215 ; - indicatorOfParameter = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'215129' = { - table2Version = 215 ; - indicatorOfParameter = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'215130' = { - table2Version = 215 ; - indicatorOfParameter = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'215131' = { - table2Version = 215 ; - indicatorOfParameter = 131 ; - } -#Single scattering albedo at 340 nm -'215132' = { - table2Version = 215 ; - indicatorOfParameter = 132 ; - } -#Single scattering albedo at 355 nm -'215133' = { - table2Version = 215 ; - indicatorOfParameter = 133 ; - } -#Single scattering albedo at 380 nm -'215134' = { - table2Version = 215 ; - indicatorOfParameter = 134 ; - } -#Single scattering albedo at 400 nm -'215135' = { - table2Version = 215 ; - indicatorOfParameter = 135 ; - } -#Single scattering albedo at 440 nm -'215136' = { - table2Version = 215 ; - indicatorOfParameter = 136 ; - } -#Single scattering albedo at 469 nm -'215137' = { - table2Version = 215 ; - indicatorOfParameter = 137 ; - } -#Single scattering albedo at 500 nm -'215138' = { - table2Version = 215 ; - indicatorOfParameter = 138 ; - } -#Single scattering albedo at 532 nm -'215139' = { - table2Version = 215 ; - indicatorOfParameter = 139 ; - } -#Single scattering albedo at 550 nm -'215140' = { - table2Version = 215 ; - indicatorOfParameter = 140 ; - } -#Single scattering albedo at 645 nm -'215141' = { - table2Version = 215 ; - indicatorOfParameter = 141 ; - } -#Single scattering albedo at 670 nm -'215142' = { - table2Version = 215 ; - indicatorOfParameter = 142 ; - } -#Single scattering albedo at 800 nm -'215143' = { - table2Version = 215 ; - indicatorOfParameter = 143 ; - } -#Single scattering albedo at 858 nm -'215144' = { - table2Version = 215 ; - indicatorOfParameter = 144 ; - } -#Single scattering albedo at 865 nm -'215145' = { - table2Version = 215 ; - indicatorOfParameter = 145 ; - } -#Single scattering albedo at 1020 nm -'215146' = { - table2Version = 215 ; - indicatorOfParameter = 146 ; - } -#Single scattering albedo at 1064 nm -'215147' = { - table2Version = 215 ; - indicatorOfParameter = 147 ; - } -#Single scattering albedo at 1240 nm -'215148' = { - table2Version = 215 ; - indicatorOfParameter = 148 ; - } -#Single scattering albedo at 1640 nm -'215149' = { - table2Version = 215 ; - indicatorOfParameter = 149 ; - } -#Asymmetry factor at 340 nm -'215150' = { - table2Version = 215 ; - indicatorOfParameter = 150 ; - } -#Asymmetry factor at 355 nm -'215151' = { - table2Version = 215 ; - indicatorOfParameter = 151 ; - } -#Asymmetry factor at 380 nm -'215152' = { - table2Version = 215 ; - indicatorOfParameter = 152 ; - } -#Asymmetry factor at 400 nm -'215153' = { - table2Version = 215 ; - indicatorOfParameter = 153 ; - } -#Asymmetry factor at 440 nm -'215154' = { - table2Version = 215 ; - indicatorOfParameter = 154 ; - } -#Asymmetry factor at 469 nm -'215155' = { - table2Version = 215 ; - indicatorOfParameter = 155 ; - } -#Asymmetry factor at 500 nm -'215156' = { - table2Version = 215 ; - indicatorOfParameter = 156 ; - } -#Asymmetry factor at 532 nm -'215157' = { - table2Version = 215 ; - indicatorOfParameter = 157 ; - } -#Asymmetry factor at 550 nm -'215158' = { - table2Version = 215 ; - indicatorOfParameter = 158 ; - } -#Asymmetry factor at 645 nm -'215159' = { - table2Version = 215 ; - indicatorOfParameter = 159 ; - } -#Asymmetry factor at 670 nm -'215160' = { - table2Version = 215 ; - indicatorOfParameter = 160 ; - } -#Asymmetry factor at 800 nm -'215161' = { - table2Version = 215 ; - indicatorOfParameter = 161 ; - } -#Asymmetry factor at 858 nm -'215162' = { - table2Version = 215 ; - indicatorOfParameter = 162 ; - } -#Asymmetry factor at 865 nm -'215163' = { - table2Version = 215 ; - indicatorOfParameter = 163 ; - } -#Asymmetry factor at 1020 nm -'215164' = { - table2Version = 215 ; - indicatorOfParameter = 164 ; - } -#Asymmetry factor at 1064 nm -'215165' = { - table2Version = 215 ; - indicatorOfParameter = 165 ; - } -#Asymmetry factor at 1240 nm -'215166' = { - table2Version = 215 ; - indicatorOfParameter = 166 ; - } -#Asymmetry factor at 1640 nm -'215167' = { - table2Version = 215 ; - indicatorOfParameter = 167 ; - } -#Source/gain of sulphur dioxide -'215168' = { - table2Version = 215 ; - indicatorOfParameter = 168 ; - } -#Dry deposition of sulphur dioxide -'215169' = { - table2Version = 215 ; - indicatorOfParameter = 169 ; - } -#Sedimentation of sulphur dioxide -'215170' = { - table2Version = 215 ; - indicatorOfParameter = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'215171' = { - table2Version = 215 ; - indicatorOfParameter = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'215172' = { - table2Version = 215 ; - indicatorOfParameter = 172 ; - } -#Negative fixer of sulphur dioxide -'215173' = { - table2Version = 215 ; - indicatorOfParameter = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'215174' = { - table2Version = 215 ; - indicatorOfParameter = 174 ; - } -#Sulphur dioxide optical depth -'215175' = { - table2Version = 215 ; - indicatorOfParameter = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'215176' = { - table2Version = 215 ; - indicatorOfParameter = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'215177' = { - table2Version = 215 ; - indicatorOfParameter = 177 ; - } -#Single scattering albedo at 2130 nm -'215178' = { - table2Version = 215 ; - indicatorOfParameter = 178 ; - } -#Asymmetry factor at 2130 nm -'215179' = { - table2Version = 215 ; - indicatorOfParameter = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'215180' = { - table2Version = 215 ; - indicatorOfParameter = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'215181' = { - table2Version = 215 ; - indicatorOfParameter = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'215182' = { - table2Version = 215 ; - indicatorOfParameter = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'215183' = { - table2Version = 215 ; - indicatorOfParameter = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'215184' = { - table2Version = 215 ; - indicatorOfParameter = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'215185' = { - table2Version = 215 ; - indicatorOfParameter = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'215186' = { - table2Version = 215 ; - indicatorOfParameter = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'215187' = { - table2Version = 215 ; - indicatorOfParameter = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'215188' = { - table2Version = 215 ; - indicatorOfParameter = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'215189' = { - table2Version = 215 ; - indicatorOfParameter = 189 ; - } -#Source/gain of coarse-mode nitrate aerosol -'215190' = { - table2Version = 215 ; - indicatorOfParameter = 190 ; - } -#Dry deposition of fine-mode nitrate aerosol -'215191' = { - table2Version = 215 ; - indicatorOfParameter = 191 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'215192' = { - table2Version = 215 ; - indicatorOfParameter = 192 ; - } -#Sedimentation of fine-mode nitrate aerosol -'215193' = { - table2Version = 215 ; - indicatorOfParameter = 193 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'215194' = { - table2Version = 215 ; - indicatorOfParameter = 194 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'215195' = { - table2Version = 215 ; - indicatorOfParameter = 195 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'215196' = { - table2Version = 215 ; - indicatorOfParameter = 196 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'215197' = { - table2Version = 215 ; - indicatorOfParameter = 197 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'215198' = { - table2Version = 215 ; - indicatorOfParameter = 198 ; - } -#Negative fixer of fine-mode nitrate aerosol -'215199' = { - table2Version = 215 ; - indicatorOfParameter = 199 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'215200' = { - table2Version = 215 ; - indicatorOfParameter = 200 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'215201' = { - table2Version = 215 ; - indicatorOfParameter = 201 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'215202' = { - table2Version = 215 ; - indicatorOfParameter = 202 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'215203' = { - table2Version = 215 ; - indicatorOfParameter = 203 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'215204' = { - table2Version = 215 ; - indicatorOfParameter = 204 ; - } -#Source/gain of ammonium aerosol -'215205' = { - table2Version = 215 ; - indicatorOfParameter = 205 ; - } -#Dry deposition of ammonium aerosol -'215206' = { - table2Version = 215 ; - indicatorOfParameter = 206 ; - } -#Sedimentation of ammonium aerosol -'215207' = { - table2Version = 215 ; - indicatorOfParameter = 207 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'215208' = { - table2Version = 215 ; - indicatorOfParameter = 208 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'215209' = { - table2Version = 215 ; - indicatorOfParameter = 209 ; - } -#Negative fixer of ammonium aerosol -'215210' = { - table2Version = 215 ; - indicatorOfParameter = 210 ; - } -#Vertically integrated mass of ammonium aerosol -'215211' = { - table2Version = 215 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'216001' = { - table2Version = 216 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'216002' = { - table2Version = 216 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'216003' = { - table2Version = 216 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'216004' = { - table2Version = 216 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'216005' = { - table2Version = 216 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'216006' = { - table2Version = 216 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'216007' = { - table2Version = 216 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'216008' = { - table2Version = 216 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'216009' = { - table2Version = 216 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'216010' = { - table2Version = 216 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'216011' = { - table2Version = 216 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'216012' = { - table2Version = 216 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'216013' = { - table2Version = 216 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'216014' = { - table2Version = 216 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'216015' = { - table2Version = 216 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'216016' = { - table2Version = 216 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'216017' = { - table2Version = 216 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'216018' = { - table2Version = 216 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'216019' = { - table2Version = 216 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'216020' = { - table2Version = 216 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'216021' = { - table2Version = 216 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'216022' = { - table2Version = 216 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'216023' = { - table2Version = 216 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'216024' = { - table2Version = 216 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'216025' = { - table2Version = 216 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'216026' = { - table2Version = 216 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'216027' = { - table2Version = 216 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'216028' = { - table2Version = 216 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'216029' = { - table2Version = 216 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'216030' = { - table2Version = 216 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'216031' = { - table2Version = 216 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'216032' = { - table2Version = 216 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'216033' = { - table2Version = 216 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'216034' = { - table2Version = 216 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'216035' = { - table2Version = 216 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'216036' = { - table2Version = 216 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'216037' = { - table2Version = 216 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'216038' = { - table2Version = 216 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'216039' = { - table2Version = 216 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'216040' = { - table2Version = 216 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'216041' = { - table2Version = 216 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'216042' = { - table2Version = 216 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'216043' = { - table2Version = 216 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'216044' = { - table2Version = 216 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'216045' = { - table2Version = 216 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'216046' = { - table2Version = 216 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'216047' = { - table2Version = 216 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'216048' = { - table2Version = 216 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'216049' = { - table2Version = 216 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'216050' = { - table2Version = 216 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'216051' = { - table2Version = 216 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'216052' = { - table2Version = 216 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'216053' = { - table2Version = 216 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'216054' = { - table2Version = 216 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'216055' = { - table2Version = 216 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'216056' = { - table2Version = 216 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'216057' = { - table2Version = 216 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'216058' = { - table2Version = 216 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'216059' = { - table2Version = 216 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'216060' = { - table2Version = 216 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'216061' = { - table2Version = 216 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'216062' = { - table2Version = 216 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'216063' = { - table2Version = 216 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'216064' = { - table2Version = 216 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'216065' = { - table2Version = 216 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'216066' = { - table2Version = 216 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'216067' = { - table2Version = 216 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'216068' = { - table2Version = 216 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'216069' = { - table2Version = 216 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'216070' = { - table2Version = 216 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'216071' = { - table2Version = 216 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'216072' = { - table2Version = 216 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'216073' = { - table2Version = 216 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'216074' = { - table2Version = 216 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'216075' = { - table2Version = 216 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'216076' = { - table2Version = 216 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'216077' = { - table2Version = 216 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'216078' = { - table2Version = 216 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'216079' = { - table2Version = 216 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'216080' = { - table2Version = 216 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'216081' = { - table2Version = 216 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'216082' = { - table2Version = 216 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'216083' = { - table2Version = 216 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'216084' = { - table2Version = 216 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'216085' = { - table2Version = 216 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'216086' = { - table2Version = 216 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'216087' = { - table2Version = 216 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'216088' = { - table2Version = 216 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'216089' = { - table2Version = 216 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'216090' = { - table2Version = 216 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'216091' = { - table2Version = 216 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'216092' = { - table2Version = 216 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'216093' = { - table2Version = 216 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'216094' = { - table2Version = 216 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'216095' = { - table2Version = 216 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'216096' = { - table2Version = 216 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'216097' = { - table2Version = 216 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'216098' = { - table2Version = 216 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'216099' = { - table2Version = 216 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'216100' = { - table2Version = 216 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'216101' = { - table2Version = 216 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'216102' = { - table2Version = 216 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'216103' = { - table2Version = 216 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'216104' = { - table2Version = 216 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'216105' = { - table2Version = 216 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'216106' = { - table2Version = 216 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'216107' = { - table2Version = 216 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'216108' = { - table2Version = 216 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'216109' = { - table2Version = 216 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'216110' = { - table2Version = 216 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'216111' = { - table2Version = 216 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'216112' = { - table2Version = 216 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'216113' = { - table2Version = 216 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'216114' = { - table2Version = 216 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'216115' = { - table2Version = 216 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'216116' = { - table2Version = 216 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'216117' = { - table2Version = 216 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'216118' = { - table2Version = 216 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'216119' = { - table2Version = 216 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'216120' = { - table2Version = 216 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'216121' = { - table2Version = 216 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'216122' = { - table2Version = 216 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'216123' = { - table2Version = 216 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'216124' = { - table2Version = 216 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'216125' = { - table2Version = 216 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'216126' = { - table2Version = 216 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'216127' = { - table2Version = 216 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'216128' = { - table2Version = 216 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'216129' = { - table2Version = 216 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'216130' = { - table2Version = 216 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'216131' = { - table2Version = 216 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'216132' = { - table2Version = 216 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'216133' = { - table2Version = 216 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'216134' = { - table2Version = 216 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'216135' = { - table2Version = 216 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'216136' = { - table2Version = 216 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'216137' = { - table2Version = 216 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'216138' = { - table2Version = 216 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'216139' = { - table2Version = 216 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'216140' = { - table2Version = 216 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'216141' = { - table2Version = 216 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'216142' = { - table2Version = 216 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'216143' = { - table2Version = 216 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'216144' = { - table2Version = 216 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'216145' = { - table2Version = 216 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'216146' = { - table2Version = 216 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'216147' = { - table2Version = 216 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'216148' = { - table2Version = 216 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'216149' = { - table2Version = 216 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'216150' = { - table2Version = 216 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'216151' = { - table2Version = 216 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'216152' = { - table2Version = 216 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'216153' = { - table2Version = 216 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'216154' = { - table2Version = 216 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'216155' = { - table2Version = 216 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'216156' = { - table2Version = 216 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'216157' = { - table2Version = 216 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'216158' = { - table2Version = 216 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'216159' = { - table2Version = 216 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'216160' = { - table2Version = 216 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'216161' = { - table2Version = 216 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'216162' = { - table2Version = 216 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'216163' = { - table2Version = 216 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'216164' = { - table2Version = 216 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'216165' = { - table2Version = 216 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'216166' = { - table2Version = 216 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'216167' = { - table2Version = 216 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'216168' = { - table2Version = 216 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'216169' = { - table2Version = 216 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'216170' = { - table2Version = 216 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'216171' = { - table2Version = 216 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'216172' = { - table2Version = 216 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'216173' = { - table2Version = 216 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'216174' = { - table2Version = 216 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'216175' = { - table2Version = 216 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'216176' = { - table2Version = 216 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'216177' = { - table2Version = 216 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'216178' = { - table2Version = 216 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'216179' = { - table2Version = 216 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'216180' = { - table2Version = 216 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'216181' = { - table2Version = 216 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'216182' = { - table2Version = 216 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'216183' = { - table2Version = 216 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'216184' = { - table2Version = 216 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'216185' = { - table2Version = 216 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'216186' = { - table2Version = 216 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'216187' = { - table2Version = 216 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'216188' = { - table2Version = 216 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'216189' = { - table2Version = 216 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'216190' = { - table2Version = 216 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'216191' = { - table2Version = 216 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'216192' = { - table2Version = 216 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'216193' = { - table2Version = 216 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'216194' = { - table2Version = 216 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'216195' = { - table2Version = 216 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'216196' = { - table2Version = 216 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'216197' = { - table2Version = 216 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'216198' = { - table2Version = 216 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'216199' = { - table2Version = 216 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'216200' = { - table2Version = 216 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'216201' = { - table2Version = 216 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'216202' = { - table2Version = 216 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'216203' = { - table2Version = 216 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'216204' = { - table2Version = 216 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'216205' = { - table2Version = 216 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'216206' = { - table2Version = 216 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'216207' = { - table2Version = 216 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'216208' = { - table2Version = 216 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'216209' = { - table2Version = 216 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'216210' = { - table2Version = 216 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'216211' = { - table2Version = 216 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'216212' = { - table2Version = 216 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'216213' = { - table2Version = 216 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'216214' = { - table2Version = 216 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'216215' = { - table2Version = 216 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'216216' = { - table2Version = 216 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'216217' = { - table2Version = 216 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'216218' = { - table2Version = 216 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'216219' = { - table2Version = 216 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'216220' = { - table2Version = 216 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'216221' = { - table2Version = 216 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'216222' = { - table2Version = 216 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'216223' = { - table2Version = 216 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'216224' = { - table2Version = 216 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'216225' = { - table2Version = 216 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'216226' = { - table2Version = 216 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'216227' = { - table2Version = 216 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'216228' = { - table2Version = 216 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'216229' = { - table2Version = 216 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'216230' = { - table2Version = 216 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'216231' = { - table2Version = 216 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'216232' = { - table2Version = 216 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'216233' = { - table2Version = 216 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'216234' = { - table2Version = 216 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'216235' = { - table2Version = 216 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'216236' = { - table2Version = 216 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'216237' = { - table2Version = 216 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'216238' = { - table2Version = 216 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'216239' = { - table2Version = 216 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'216240' = { - table2Version = 216 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'216241' = { - table2Version = 216 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'216242' = { - table2Version = 216 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'216243' = { - table2Version = 216 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'216244' = { - table2Version = 216 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'216245' = { - table2Version = 216 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'216246' = { - table2Version = 216 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'216247' = { - table2Version = 216 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'216248' = { - table2Version = 216 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'216249' = { - table2Version = 216 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'216250' = { - table2Version = 216 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'216251' = { - table2Version = 216 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'216252' = { - table2Version = 216 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'216253' = { - table2Version = 216 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'216254' = { - table2Version = 216 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'216255' = { - table2Version = 216 ; - indicatorOfParameter = 255 ; - } -#Hydrogen peroxide -'217003' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'217004' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'217006' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide -'217007' = { - table2Version = 217 ; - indicatorOfParameter = 7 ; - } -#Paraffins -'217009' = { - table2Version = 217 ; - indicatorOfParameter = 9 ; - } -#Ethene -'217010' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Olefins -'217011' = { - table2Version = 217 ; - indicatorOfParameter = 11 ; - } -#Aldehydes -'217012' = { - table2Version = 217 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate -'217013' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Peroxides -'217014' = { - table2Version = 217 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates -'217015' = { - table2Version = 217 ; - indicatorOfParameter = 15 ; - } -#Isoprene -'217016' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'217018' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'217019' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Sulfate -'217020' = { - table2Version = 217 ; - indicatorOfParameter = 20 ; - } -#Ammonium -'217021' = { - table2Version = 217 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid -'217022' = { - table2Version = 217 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal -'217023' = { - table2Version = 217 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone -'217024' = { - table2Version = 217 ; - indicatorOfParameter = 24 ; - } -#Lead -'217026' = { - table2Version = 217 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide -'217027' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical -'217028' = { - table2Version = 217 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical -'217029' = { - table2Version = 217 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical -'217030' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'217032' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'217033' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid -'217034' = { - table2Version = 217 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical -'217035' = { - table2Version = 217 ; - indicatorOfParameter = 35 ; - } -#Organic ethers -'217036' = { - table2Version = 217 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector -'217037' = { - table2Version = 217 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator -'217038' = { - table2Version = 217 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator -'217039' = { - table2Version = 217 ; - indicatorOfParameter = 39 ; - } -#Amine -'217040' = { - table2Version = 217 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud -'217041' = { - table2Version = 217 ; - indicatorOfParameter = 41 ; - } -#Methanol -'217042' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'217043' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid -'217044' = { - table2Version = 217 ; - indicatorOfParameter = 44 ; - } -#Ethane -'217045' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'217046' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'217047' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'217048' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'217049' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK -'217050' = { - table2Version = 217 ; - indicatorOfParameter = 50 ; - } -#Nitrate -'217051' = { - table2Version = 217 ; - indicatorOfParameter = 51 ; - } -#Acetone -'217052' = { - table2Version = 217 ; - indicatorOfParameter = 52 ; - } -#Acetone product -'217053' = { - table2Version = 217 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 -'217054' = { - table2Version = 217 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 -'217055' = { - table2Version = 217 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp -'217056' = { - table2Version = 217 ; - indicatorOfParameter = 56 ; - } -#Total column hydrogen peroxide -'218003' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'218004' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'218006' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column methyl peroxide -'218007' = { - table2Version = 218 ; - indicatorOfParameter = 7 ; - } -#Total column paraffins -'218009' = { - table2Version = 218 ; - indicatorOfParameter = 9 ; - } -#Total column ethene -'218010' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column olefins -'218011' = { - table2Version = 218 ; - indicatorOfParameter = 11 ; - } -#Total column aldehydes -'218012' = { - table2Version = 218 ; - indicatorOfParameter = 12 ; - } -#Total column peroxyacetyl nitrate -'218013' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column peroxides -'218014' = { - table2Version = 218 ; - indicatorOfParameter = 14 ; - } -#Total column organic nitrates -'218015' = { - table2Version = 218 ; - indicatorOfParameter = 15 ; - } -#Total column isoprene -'218016' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'218018' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'218019' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'218020' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column ammonium -'218021' = { - table2Version = 218 ; - indicatorOfParameter = 21 ; - } -#Total column methane sulfonic acid -'218022' = { - table2Version = 218 ; - indicatorOfParameter = 22 ; - } -#Total column methyl glyoxal -'218023' = { - table2Version = 218 ; - indicatorOfParameter = 23 ; - } -#Total column stratospheric ozone -'218024' = { - table2Version = 218 ; - indicatorOfParameter = 24 ; - } -#Total column lead -'218026' = { - table2Version = 218 ; - indicatorOfParameter = 26 ; - } -#Total column nitrogen monoxide -'218027' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroperoxy radical -'218028' = { - table2Version = 218 ; - indicatorOfParameter = 28 ; - } -#Total column methylperoxy radical -'218029' = { - table2Version = 218 ; - indicatorOfParameter = 29 ; - } -#Total column hydroxyl radical -'218030' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'218032' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'218033' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column pernitric acid -'218034' = { - table2Version = 218 ; - indicatorOfParameter = 34 ; - } -#Total column peroxy acetyl radical -'218035' = { - table2Version = 218 ; - indicatorOfParameter = 35 ; - } -#Total column organic ethers -'218036' = { - table2Version = 218 ; - indicatorOfParameter = 36 ; - } -#Total column PAR budget corrector -'218037' = { - table2Version = 218 ; - indicatorOfParameter = 37 ; - } -#Total column NO to NO2 operator -'218038' = { - table2Version = 218 ; - indicatorOfParameter = 38 ; - } -#Total column NO to alkyl nitrate operator -'218039' = { - table2Version = 218 ; - indicatorOfParameter = 39 ; - } -#Total column amine -'218040' = { - table2Version = 218 ; - indicatorOfParameter = 40 ; - } -#Total column polar stratospheric cloud -'218041' = { - table2Version = 218 ; - indicatorOfParameter = 41 ; - } -#Total column methanol -'218042' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'218043' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column methacrylic acid -'218044' = { - table2Version = 218 ; - indicatorOfParameter = 44 ; - } -#Total column ethane -'218045' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'218046' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'218047' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'218048' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'218049' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Total column methacrolein MVK -'218050' = { - table2Version = 218 ; - indicatorOfParameter = 50 ; - } -#Total column nitrate -'218051' = { - table2Version = 218 ; - indicatorOfParameter = 51 ; - } -#Total column acetone -'218052' = { - table2Version = 218 ; - indicatorOfParameter = 52 ; - } -#Total column acetone product -'218053' = { - table2Version = 218 ; - indicatorOfParameter = 53 ; - } -#Total column IC3H7O2 -'218054' = { - table2Version = 218 ; - indicatorOfParameter = 54 ; - } -#Total column HYPROPO2 -'218055' = { - table2Version = 218 ; - indicatorOfParameter = 55 ; - } -#Total column nitrogen oxides Transp -'218056' = { - table2Version = 218 ; - indicatorOfParameter = 56 ; - } -#Ozone emissions -'219001' = { - table2Version = 219 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides emissions -'219002' = { - table2Version = 219 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide emissions -'219003' = { - table2Version = 219 ; - indicatorOfParameter = 3 ; - } -#Methane emissions -'219004' = { - table2Version = 219 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide emissions -'219005' = { - table2Version = 219 ; - indicatorOfParameter = 5 ; - } -#Nitric acid emissions -'219006' = { - table2Version = 219 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide emissions -'219007' = { - table2Version = 219 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde emissions -'219008' = { - table2Version = 219 ; - indicatorOfParameter = 8 ; - } -#Paraffins emissions -'219009' = { - table2Version = 219 ; - indicatorOfParameter = 9 ; - } -#Ethene emissions -'219010' = { - table2Version = 219 ; - indicatorOfParameter = 10 ; - } -#Olefins emissions -'219011' = { - table2Version = 219 ; - indicatorOfParameter = 11 ; - } -#Aldehydes emissions -'219012' = { - table2Version = 219 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate emissions -'219013' = { - table2Version = 219 ; - indicatorOfParameter = 13 ; - } -#Peroxides emissions -'219014' = { - table2Version = 219 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates emissions -'219015' = { - table2Version = 219 ; - indicatorOfParameter = 15 ; - } -#Isoprene emissions -'219016' = { - table2Version = 219 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide emissions -'219017' = { - table2Version = 219 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide emissions -'219018' = { - table2Version = 219 ; - indicatorOfParameter = 18 ; - } -#Ammonia emissions -'219019' = { - table2Version = 219 ; - indicatorOfParameter = 19 ; - } -#Sulfate emissions -'219020' = { - table2Version = 219 ; - indicatorOfParameter = 20 ; - } -#Ammonium emissions -'219021' = { - table2Version = 219 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid emissions -'219022' = { - table2Version = 219 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal emissions -'219023' = { - table2Version = 219 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone emissions -'219024' = { - table2Version = 219 ; - indicatorOfParameter = 24 ; - } -#Radon emissions -'219025' = { - table2Version = 219 ; - indicatorOfParameter = 25 ; - } -#Lead emissions -'219026' = { - table2Version = 219 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide emissions -'219027' = { - table2Version = 219 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical emissions -'219028' = { - table2Version = 219 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical emissions -'219029' = { - table2Version = 219 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical emissions -'219030' = { - table2Version = 219 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide emissions -'219031' = { - table2Version = 219 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical emissions -'219032' = { - table2Version = 219 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide emissions -'219033' = { - table2Version = 219 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid emissions -'219034' = { - table2Version = 219 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical emissions -'219035' = { - table2Version = 219 ; - indicatorOfParameter = 35 ; - } -#Organic ethers emissions -'219036' = { - table2Version = 219 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector emissions -'219037' = { - table2Version = 219 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator emissions -'219038' = { - table2Version = 219 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator emissions -'219039' = { - table2Version = 219 ; - indicatorOfParameter = 39 ; - } -#Amine emissions -'219040' = { - table2Version = 219 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud emissions -'219041' = { - table2Version = 219 ; - indicatorOfParameter = 41 ; - } -#Methanol emissions -'219042' = { - table2Version = 219 ; - indicatorOfParameter = 42 ; - } -#Formic acid emissions -'219043' = { - table2Version = 219 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid emissions -'219044' = { - table2Version = 219 ; - indicatorOfParameter = 44 ; - } -#Ethane emissions -'219045' = { - table2Version = 219 ; - indicatorOfParameter = 45 ; - } -#Ethanol emissions -'219046' = { - table2Version = 219 ; - indicatorOfParameter = 46 ; - } -#Propane emissions -'219047' = { - table2Version = 219 ; - indicatorOfParameter = 47 ; - } -#Propene emissions -'219048' = { - table2Version = 219 ; - indicatorOfParameter = 48 ; - } -#Terpenes emissions -'219049' = { - table2Version = 219 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK emissions -'219050' = { - table2Version = 219 ; - indicatorOfParameter = 50 ; - } -#Nitrate emissions -'219051' = { - table2Version = 219 ; - indicatorOfParameter = 51 ; - } -#Acetone emissions -'219052' = { - table2Version = 219 ; - indicatorOfParameter = 52 ; - } -#Acetone product emissions -'219053' = { - table2Version = 219 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 emissions -'219054' = { - table2Version = 219 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 emissions -'219055' = { - table2Version = 219 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp emissions -'219056' = { - table2Version = 219 ; - indicatorOfParameter = 56 ; - } -#Ozone deposition velocity -'221001' = { - table2Version = 221 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides deposition velocity -'221002' = { - table2Version = 221 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide deposition velocity -'221003' = { - table2Version = 221 ; - indicatorOfParameter = 3 ; - } -#Methane deposition velocity -'221004' = { - table2Version = 221 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide deposition velocity -'221005' = { - table2Version = 221 ; - indicatorOfParameter = 5 ; - } -#Nitric acid deposition velocity -'221006' = { - table2Version = 221 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide deposition velocity -'221007' = { - table2Version = 221 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde deposition velocity -'221008' = { - table2Version = 221 ; - indicatorOfParameter = 8 ; - } -#Paraffins deposition velocity -'221009' = { - table2Version = 221 ; - indicatorOfParameter = 9 ; - } -#Ethene deposition velocity -'221010' = { - table2Version = 221 ; - indicatorOfParameter = 10 ; - } -#Olefins deposition velocity -'221011' = { - table2Version = 221 ; - indicatorOfParameter = 11 ; - } -#Aldehydes deposition velocity -'221012' = { - table2Version = 221 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'221013' = { - table2Version = 221 ; - indicatorOfParameter = 13 ; - } -#Peroxides deposition velocity -'221014' = { - table2Version = 221 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates deposition velocity -'221015' = { - table2Version = 221 ; - indicatorOfParameter = 15 ; - } -#Isoprene deposition velocity -'221016' = { - table2Version = 221 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide deposition velocity -'221017' = { - table2Version = 221 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide deposition velocity -'221018' = { - table2Version = 221 ; - indicatorOfParameter = 18 ; - } -#Ammonia deposition velocity -'221019' = { - table2Version = 221 ; - indicatorOfParameter = 19 ; - } -#Sulfate deposition velocity -'221020' = { - table2Version = 221 ; - indicatorOfParameter = 20 ; - } -#Ammonium deposition velocity -'221021' = { - table2Version = 221 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid deposition velocity -'221022' = { - table2Version = 221 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal deposition velocity -'221023' = { - table2Version = 221 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone deposition velocity -'221024' = { - table2Version = 221 ; - indicatorOfParameter = 24 ; - } -#Radon deposition velocity -'221025' = { - table2Version = 221 ; - indicatorOfParameter = 25 ; - } -#Lead deposition velocity -'221026' = { - table2Version = 221 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide deposition velocity -'221027' = { - table2Version = 221 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical deposition velocity -'221028' = { - table2Version = 221 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical deposition velocity -'221029' = { - table2Version = 221 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical deposition velocity -'221030' = { - table2Version = 221 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide deposition velocity -'221031' = { - table2Version = 221 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical deposition velocity -'221032' = { - table2Version = 221 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'221033' = { - table2Version = 221 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid deposition velocity -'221034' = { - table2Version = 221 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical deposition velocity -'221035' = { - table2Version = 221 ; - indicatorOfParameter = 35 ; - } -#Organic ethers deposition velocity -'221036' = { - table2Version = 221 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector deposition velocity -'221037' = { - table2Version = 221 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator deposition velocity -'221038' = { - table2Version = 221 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'221039' = { - table2Version = 221 ; - indicatorOfParameter = 39 ; - } -#Amine deposition velocity -'221040' = { - table2Version = 221 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud deposition velocity -'221041' = { - table2Version = 221 ; - indicatorOfParameter = 41 ; - } -#Methanol deposition velocity -'221042' = { - table2Version = 221 ; - indicatorOfParameter = 42 ; - } -#Formic acid deposition velocity -'221043' = { - table2Version = 221 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid deposition velocity -'221044' = { - table2Version = 221 ; - indicatorOfParameter = 44 ; - } -#Ethane deposition velocity -'221045' = { - table2Version = 221 ; - indicatorOfParameter = 45 ; - } -#Ethanol deposition velocity -'221046' = { - table2Version = 221 ; - indicatorOfParameter = 46 ; - } -#Propane deposition velocity -'221047' = { - table2Version = 221 ; - indicatorOfParameter = 47 ; - } -#Propene deposition velocity -'221048' = { - table2Version = 221 ; - indicatorOfParameter = 48 ; - } -#Terpenes deposition velocity -'221049' = { - table2Version = 221 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK deposition velocity -'221050' = { - table2Version = 221 ; - indicatorOfParameter = 50 ; - } -#Nitrate deposition velocity -'221051' = { - table2Version = 221 ; - indicatorOfParameter = 51 ; - } -#Acetone deposition velocity -'221052' = { - table2Version = 221 ; - indicatorOfParameter = 52 ; - } -#Acetone product deposition velocity -'221053' = { - table2Version = 221 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 deposition velocity -'221054' = { - table2Version = 221 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 deposition velocity -'221055' = { - table2Version = 221 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'221056' = { - table2Version = 221 ; - indicatorOfParameter = 56 ; - } -#-10 degrees C isothermal level (atm) -'228020' = { - table2Version = 228 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface -'228021' = { - table2Version = 228 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface -'228022' = { - table2Version = 228 ; - indicatorOfParameter = 22 ; - } -#Cloud base height -'228023' = { - table2Version = 228 ; - indicatorOfParameter = 23 ; - } -#0 degrees C isothermal level (atm) -'228024' = { - table2Version = 228 ; - indicatorOfParameter = 24 ; - } -#Horizontal visibility -'228025' = { - table2Version = 228 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'228026' = { - table2Version = 228 ; - indicatorOfParameter = 26 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'228027' = { - table2Version = 228 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust in the last 3 hours -'228028' = { - table2Version = 228 ; - indicatorOfParameter = 28 ; - } -#Instantaneous 10 metre wind gust -'228029' = { - table2Version = 228 ; - indicatorOfParameter = 29 ; - } -#2 metre relative humidity with respect to water -'228037' = { - table2Version = 228 ; - indicatorOfParameter = 37 ; - } -#Soil wetness index in layer 1 -'228040' = { - table2Version = 228 ; - indicatorOfParameter = 40 ; - } -#Soil wetness index in layer 2 -'228041' = { - table2Version = 228 ; - indicatorOfParameter = 41 ; - } -#Soil wetness index in layer 3 -'228042' = { - table2Version = 228 ; - indicatorOfParameter = 42 ; - } -#Soil wetness index in layer 4 -'228043' = { - table2Version = 228 ; - indicatorOfParameter = 43 ; - } -#Convective available potential energy shear -'228044' = { - table2Version = 228 ; - indicatorOfParameter = 44 ; - } -#Height of convective cloud top -'228046' = { - table2Version = 228 ; - indicatorOfParameter = 46 ; - } -#Height of zero-degree wet-bulb temperature -'228047' = { - table2Version = 228 ; - indicatorOfParameter = 47 ; - } -#Height of one-degree wet-bulb temperature -'228048' = { - table2Version = 228 ; - indicatorOfParameter = 48 ; - } -#Instantaneous total lightning flash density -'228050' = { - table2Version = 228 ; - indicatorOfParameter = 50 ; - } -#Averaged total lightning flash density in the last hour -'228051' = { - table2Version = 228 ; - indicatorOfParameter = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'228052' = { - table2Version = 228 ; - indicatorOfParameter = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'228053' = { - table2Version = 228 ; - indicatorOfParameter = 53 ; - } -#SMOS observed soil moisture retrieved using neural network -'228070' = { - table2Version = 228 ; - indicatorOfParameter = 70 ; - } -#SMOS observed soil moisture uncertainty retrieved using neural network -'228071' = { - table2Version = 228 ; - indicatorOfParameter = 71 ; - } -#SMOS radio frequency interference probability -'228072' = { - table2Version = 228 ; - indicatorOfParameter = 72 ; - } -#SMOS number of observations per grid point -'228073' = { - table2Version = 228 ; - indicatorOfParameter = 73 ; - } -#SMOS observation time for the satellite soil moisture data -'228074' = { - table2Version = 228 ; - indicatorOfParameter = 74 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'228078' = { - table2Version = 228 ; - indicatorOfParameter = 78 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'228079' = { - table2Version = 228 ; - indicatorOfParameter = 79 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'228080' = { - table2Version = 228 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'228081' = { - table2Version = 228 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'228082' = { - table2Version = 228 ; - indicatorOfParameter = 82 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'228083' = { - table2Version = 228 ; - indicatorOfParameter = 83 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'228084' = { - table2Version = 228 ; - indicatorOfParameter = 84 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'228085' = { - table2Version = 228 ; - indicatorOfParameter = 85 ; - } -#Total column supercooled liquid water -'228088' = { - table2Version = 228 ; - indicatorOfParameter = 88 ; - } -#Total column rain water -'228089' = { - table2Version = 228 ; - indicatorOfParameter = 89 ; - } -#Total column snow water -'228090' = { - table2Version = 228 ; - indicatorOfParameter = 90 ; - } -#Canopy cover fraction -'228091' = { - table2Version = 228 ; - indicatorOfParameter = 91 ; - } -#Soil texture fraction -'228092' = { - table2Version = 228 ; - indicatorOfParameter = 92 ; - } -#Volumetric soil moisture -'228093' = { - table2Version = 228 ; - indicatorOfParameter = 93 ; - } -#Ice temperature -'228094' = { - table2Version = 228 ; - indicatorOfParameter = 94 ; - } -#Surface solar radiation downward clear-sky -'228129' = { - table2Version = 228 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky -'228130' = { - table2Version = 228 ; - indicatorOfParameter = 130 ; - } -#Accumulated freezing rain -'228216' = { - table2Version = 228 ; - indicatorOfParameter = 216 ; - } -#Instantaneous large-scale surface precipitation fraction -'228217' = { - table2Version = 228 ; - indicatorOfParameter = 217 ; - } -#Convective rain rate -'228218' = { - table2Version = 228 ; - indicatorOfParameter = 218 ; - } -#Large scale rain rate -'228219' = { - table2Version = 228 ; - indicatorOfParameter = 219 ; - } -#Convective snowfall rate water equivalent -'228220' = { - table2Version = 228 ; - indicatorOfParameter = 220 ; - } -#Large scale snowfall rate water equivalent -'228221' = { - table2Version = 228 ; - indicatorOfParameter = 221 ; - } -#Maximum total precipitation rate in the last 3 hours -'228222' = { - table2Version = 228 ; - indicatorOfParameter = 222 ; - } -#Minimum total precipitation rate in the last 3 hours -'228223' = { - table2Version = 228 ; - indicatorOfParameter = 223 ; - } -#Maximum total precipitation rate in the last 6 hours -'228224' = { - table2Version = 228 ; - indicatorOfParameter = 224 ; - } -#Minimum total precipitation rate in the last 6 hours -'228225' = { - table2Version = 228 ; - indicatorOfParameter = 225 ; - } -#Maximum total precipitation rate since previous post-processing -'228226' = { - table2Version = 228 ; - indicatorOfParameter = 226 ; - } -#Minimum total precipitation rate since previous post-processing -'228227' = { - table2Version = 228 ; - indicatorOfParameter = 227 ; - } -#SMOS first Brightness Temperature Bias Correction parameter -'228229' = { - table2Version = 228 ; - indicatorOfParameter = 229 ; - } -#SMOS second Brightness Temperature Bias Correction parameter -'228230' = { - table2Version = 228 ; - indicatorOfParameter = 230 ; - } -#200 metre U wind component -'228239' = { - table2Version = 228 ; - indicatorOfParameter = 239 ; - } -#200 metre V wind component -'228240' = { - table2Version = 228 ; - indicatorOfParameter = 240 ; - } -#200 metre wind speed -'228241' = { - table2Version = 228 ; - indicatorOfParameter = 241 ; - } -#Surface solar radiation diffuse total sky -'228242' = { - table2Version = 228 ; - indicatorOfParameter = 242 ; - } -#Surface solar radiation diffuse clear-sky -'228243' = { - table2Version = 228 ; - indicatorOfParameter = 243 ; - } -#Surface albedo of direct radiation -'228244' = { - table2Version = 228 ; - indicatorOfParameter = 244 ; - } -#Surface albedo of diffuse radiation -'228245' = { - table2Version = 228 ; - indicatorOfParameter = 245 ; - } -#100 metre wind speed -'228249' = { - table2Version = 228 ; - indicatorOfParameter = 249 ; - } -#Irrigation fraction -'228250' = { - table2Version = 228 ; - indicatorOfParameter = 250 ; - } -#Potential evaporation -'228251' = { - table2Version = 228 ; - indicatorOfParameter = 251 ; - } -#Irrigation -'228252' = { - table2Version = 228 ; - indicatorOfParameter = 252 ; - } -#Surface runoff (variable resolution) -'230008' = { - table2Version = 230 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff (variable resolution) -'230009' = { - table2Version = 230 ; - indicatorOfParameter = 9 ; - } -#Clear sky surface photosynthetically active radiation (variable resolution) -'230020' = { - table2Version = 230 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface (variable resolution) -'230021' = { - table2Version = 230 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface (variable resolution) -'230022' = { - table2Version = 230 ; - indicatorOfParameter = 22 ; - } -#Direct solar radiation (variable resolution) -'230047' = { - table2Version = 230 ; - indicatorOfParameter = 47 ; - } -#Large-scale precipitation fraction (variable resolution) -'230050' = { - table2Version = 230 ; - indicatorOfParameter = 50 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) -'230080' = { - table2Version = 230 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) -'230081' = { - table2Version = 230 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) -'230082' = { - table2Version = 230 ; - indicatorOfParameter = 82 ; - } -#Surface solar radiation downward clear-sky (variable resolution) -'230129' = { - table2Version = 230 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky (variable resolution) -'230130' = { - table2Version = 230 ; - indicatorOfParameter = 130 ; - } -#Albedo (variable resolution) -'230174' = { - table2Version = 230 ; - indicatorOfParameter = 174 ; - } -#Vertically integrated moisture divergence (variable resolution) -'230213' = { - table2Version = 230 ; - indicatorOfParameter = 213 ; - } -#Accumulated freezing rain (variable resolution) -'230216' = { - table2Version = 230 ; - indicatorOfParameter = 216 ; - } -#Total precipitation (variable resolution) -'230228' = { - table2Version = 230 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall (variable resolution) -'230239' = { - table2Version = 230 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall (variable resolution) -'230240' = { - table2Version = 230 ; - indicatorOfParameter = 240 ; - } -#Potential evaporation (variable resolution) -'230251' = { - table2Version = 230 ; - indicatorOfParameter = 251 ; - } -#Mean surface runoff rate -'235020' = { - table2Version = 235 ; - indicatorOfParameter = 20 ; - } -#Mean sub-surface runoff rate -'235021' = { - table2Version = 235 ; - indicatorOfParameter = 21 ; - } -#Mean surface photosynthetically active radiation flux, clear sky -'235022' = { - table2Version = 235 ; - indicatorOfParameter = 22 ; - } -#Mean snow evaporation rate -'235023' = { - table2Version = 235 ; - indicatorOfParameter = 23 ; - } -#Mean snowmelt rate -'235024' = { - table2Version = 235 ; - indicatorOfParameter = 24 ; - } -#Mean magnitude of turbulent surface stress -'235025' = { - table2Version = 235 ; - indicatorOfParameter = 25 ; - } -#Mean large-scale precipitation fraction -'235026' = { - table2Version = 235 ; - indicatorOfParameter = 26 ; - } -#Mean surface downward UV radiation flux -'235027' = { - table2Version = 235 ; - indicatorOfParameter = 27 ; - } -#Mean surface photosynthetically active radiation flux -'235028' = { - table2Version = 235 ; - indicatorOfParameter = 28 ; - } -#Mean large-scale precipitation rate -'235029' = { - table2Version = 235 ; - indicatorOfParameter = 29 ; - } -#Mean convective precipitation rate -'235030' = { - table2Version = 235 ; - indicatorOfParameter = 30 ; - } -#Mean snowfall rate -'235031' = { - table2Version = 235 ; - indicatorOfParameter = 31 ; - } -#Mean boundary layer dissipation -'235032' = { - table2Version = 235 ; - indicatorOfParameter = 32 ; - } -#Mean surface sensible heat flux -'235033' = { - table2Version = 235 ; - indicatorOfParameter = 33 ; - } -#Mean surface latent heat flux -'235034' = { - table2Version = 235 ; - indicatorOfParameter = 34 ; - } -#Mean surface downward short-wave radiation flux -'235035' = { - table2Version = 235 ; - indicatorOfParameter = 35 ; - } -#Mean surface downward long-wave radiation flux -'235036' = { - table2Version = 235 ; - indicatorOfParameter = 36 ; - } -#Mean surface net short-wave radiation flux -'235037' = { - table2Version = 235 ; - indicatorOfParameter = 37 ; - } -#Mean surface net long-wave radiation flux -'235038' = { - table2Version = 235 ; - indicatorOfParameter = 38 ; - } -#Mean top net short-wave radiation flux -'235039' = { - table2Version = 235 ; - indicatorOfParameter = 39 ; - } -#Mean top net long-wave radiation flux -'235040' = { - table2Version = 235 ; - indicatorOfParameter = 40 ; - } -#Mean eastward turbulent surface stress -'235041' = { - table2Version = 235 ; - indicatorOfParameter = 41 ; - } -#Mean northward turbulent surface stress -'235042' = { - table2Version = 235 ; - indicatorOfParameter = 42 ; - } -#Mean evaporation rate -'235043' = { - table2Version = 235 ; - indicatorOfParameter = 43 ; - } -#Sunshine duration fraction -'235044' = { - table2Version = 235 ; - indicatorOfParameter = 44 ; - } -#Mean eastward gravity wave surface stress -'235045' = { - table2Version = 235 ; - indicatorOfParameter = 45 ; - } -#Mean northward gravity wave surface stress -'235046' = { - table2Version = 235 ; - indicatorOfParameter = 46 ; - } -#Mean gravity wave dissipation -'235047' = { - table2Version = 235 ; - indicatorOfParameter = 47 ; - } -#Mean runoff rate -'235048' = { - table2Version = 235 ; - indicatorOfParameter = 48 ; - } -#Mean top net short-wave radiation flux, clear sky -'235049' = { - table2Version = 235 ; - indicatorOfParameter = 49 ; - } -#Mean top net long-wave radiation flux, clear sky -'235050' = { - table2Version = 235 ; - indicatorOfParameter = 50 ; - } -#Mean surface net short-wave radiation flux, clear sky -'235051' = { - table2Version = 235 ; - indicatorOfParameter = 51 ; - } -#Mean surface net long-wave radiation flux, clear sky -'235052' = { - table2Version = 235 ; - indicatorOfParameter = 52 ; - } -#Mean top downward short-wave radiation flux -'235053' = { - table2Version = 235 ; - indicatorOfParameter = 53 ; - } -#Mean vertically integrated moisture divergence -'235054' = { - table2Version = 235 ; - indicatorOfParameter = 54 ; - } -#Mean total precipitation rate -'235055' = { - table2Version = 235 ; - indicatorOfParameter = 55 ; - } -#Mean convective snowfall rate -'235056' = { - table2Version = 235 ; - indicatorOfParameter = 56 ; - } -#Mean large-scale snowfall rate -'235057' = { - table2Version = 235 ; - indicatorOfParameter = 57 ; - } -#Mean surface direct short-wave radiation flux -'235058' = { - table2Version = 235 ; - indicatorOfParameter = 58 ; - } -#Mean surface direct short-wave radiation flux, clear sky -'235059' = { - table2Version = 235 ; - indicatorOfParameter = 59 ; - } -#Mean surface diffuse short-wave radiation flux -'235060' = { - table2Version = 235 ; - indicatorOfParameter = 60 ; - } -#Mean surface diffuse short-wave radiation flux, clear sky -'235061' = { - table2Version = 235 ; - indicatorOfParameter = 61 ; - } -#Mean carbon dioxide net ecosystem exchange flux -'235062' = { - table2Version = 235 ; - indicatorOfParameter = 62 ; - } -#Mean carbon dioxide gross primary production flux -'235063' = { - table2Version = 235 ; - indicatorOfParameter = 63 ; - } -#Mean carbon dioxide ecosystem respiration flux -'235064' = { - table2Version = 235 ; - indicatorOfParameter = 64 ; - } -#Mean rain rate -'235065' = { - table2Version = 235 ; - indicatorOfParameter = 65 ; - } -#Mean convective rain rate -'235066' = { - table2Version = 235 ; - indicatorOfParameter = 66 ; - } -#Mean large-scale rain rate -'235067' = { - table2Version = 235 ; - indicatorOfParameter = 67 ; - } -#Mean surface downward short-wave radiation flux, clear sky -'235068' = { - table2Version = 235 ; - indicatorOfParameter = 68 ; - } -#Mean surface downward long-wave radiation flux, clear sky -'235069' = { - table2Version = 235 ; - indicatorOfParameter = 69 ; - } -#Mean potential evaporation rate -'235070' = { - table2Version = 235 ; - indicatorOfParameter = 70 ; - } -#Total precipitation rate -'260048' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#Ceiling -'260109' = { - table2Version = 228 ; - indicatorOfParameter = 109 ; - } -#K index -'260121' = { - table2Version = 228 ; - indicatorOfParameter = 121 ; - } -#Total totals index -'260123' = { - table2Version = 228 ; - indicatorOfParameter = 123 ; - } -#Stream function gradient -'129001' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Velocity potential gradient -'129002' = { - table2Version = 129 ; - indicatorOfParameter = 2 ; - } -#Potential temperature gradient -'129003' = { - table2Version = 129 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature gradient -'129004' = { - table2Version = 129 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature gradient -'129005' = { - table2Version = 129 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind gradient -'129011' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind gradient -'129012' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind gradient -'129013' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind gradient -'129014' = { - table2Version = 129 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature gradient -'129021' = { - table2Version = 129 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'129022' = { - table2Version = 129 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence gradient -'129023' = { - table2Version = 129 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'129024' = { - table2Version = 129 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'129025' = { - table2Version = 129 ; - indicatorOfParameter = 25 ; - } -#Lake cover gradient -'129026' = { - table2Version = 129 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover gradient -'129027' = { - table2Version = 129 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover gradient -'129028' = { - table2Version = 129 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation gradient -'129029' = { - table2Version = 129 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation gradient -'129030' = { - table2Version = 129 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover gradient -'129031' = { - table2Version = 129 ; - indicatorOfParameter = 31 ; - } -#Snow albedo gradient -'129032' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#Snow density gradient -'129033' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature gradient -'129034' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 gradient -'129035' = { - table2Version = 129 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 gradient -'129036' = { - table2Version = 129 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 gradient -'129037' = { - table2Version = 129 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 gradient -'129038' = { - table2Version = 129 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 gradient -'129039' = { - table2Version = 129 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 gradient -'129040' = { - table2Version = 129 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 gradient -'129041' = { - table2Version = 129 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 gradient -'129042' = { - table2Version = 129 ; - indicatorOfParameter = 42 ; - } -#Soil type gradient -'129043' = { - table2Version = 129 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation gradient -'129044' = { - table2Version = 129 ; - indicatorOfParameter = 44 ; - } -#Snowmelt gradient -'129045' = { - table2Version = 129 ; - indicatorOfParameter = 45 ; - } -#Solar duration gradient -'129046' = { - table2Version = 129 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation gradient -'129047' = { - table2Version = 129 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress gradient -'129048' = { - table2Version = 129 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust gradient -'129049' = { - table2Version = 129 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction gradient -'129050' = { - table2Version = 129 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature gradient -'129051' = { - table2Version = 129 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature gradient -'129052' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential gradient -'129053' = { - table2Version = 129 ; - indicatorOfParameter = 53 ; - } -#Pressure gradient -'129054' = { - table2Version = 129 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'129055' = { - table2Version = 129 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'129056' = { - table2Version = 129 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface gradient -'129057' = { - table2Version = 129 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'129058' = { - table2Version = 129 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy gradient -'129059' = { - table2Version = 129 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity gradient -'129060' = { - table2Version = 129 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations gradient -'129061' = { - table2Version = 129 ; - indicatorOfParameter = 61 ; - } -#Observation count gradient -'129062' = { - table2Version = 129 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'129063' = { - table2Version = 129 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'129064' = { - table2Version = 129 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'129065' = { - table2Version = 129 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'129066' = { - table2Version = 129 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'129067' = { - table2Version = 129 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'129068' = { - table2Version = 129 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'129069' = { - table2Version = 129 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'129070' = { - table2Version = 129 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'129071' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'129078' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'129079' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'129080' = { - table2Version = 129 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'129081' = { - table2Version = 129 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'129082' = { - table2Version = 129 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'129083' = { - table2Version = 129 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'129084' = { - table2Version = 129 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'129085' = { - table2Version = 129 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'129086' = { - table2Version = 129 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'129087' = { - table2Version = 129 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'129088' = { - table2Version = 129 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'129089' = { - table2Version = 129 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'129090' = { - table2Version = 129 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'129091' = { - table2Version = 129 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'129092' = { - table2Version = 129 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'129093' = { - table2Version = 129 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'129094' = { - table2Version = 129 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'129095' = { - table2Version = 129 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'129096' = { - table2Version = 129 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'129097' = { - table2Version = 129 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'129098' = { - table2Version = 129 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'129099' = { - table2Version = 129 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'129100' = { - table2Version = 129 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'129101' = { - table2Version = 129 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'129102' = { - table2Version = 129 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'129103' = { - table2Version = 129 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'129104' = { - table2Version = 129 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'129105' = { - table2Version = 129 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'129106' = { - table2Version = 129 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'129107' = { - table2Version = 129 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'129108' = { - table2Version = 129 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'129109' = { - table2Version = 129 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'129110' = { - table2Version = 129 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'129111' = { - table2Version = 129 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'129112' = { - table2Version = 129 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'129113' = { - table2Version = 129 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'129114' = { - table2Version = 129 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'129115' = { - table2Version = 129 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'129116' = { - table2Version = 129 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'129117' = { - table2Version = 129 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'129118' = { - table2Version = 129 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'129119' = { - table2Version = 129 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'129120' = { - table2Version = 129 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres gradient -'129121' = { - table2Version = 129 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres gradient -'129122' = { - table2Version = 129 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'129123' = { - table2Version = 129 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'129125' = { - table2Version = 129 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'129126' = { - table2Version = 129 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide gradient -'129127' = { - table2Version = 129 ; - indicatorOfParameter = 127 ; - } -#Budget values gradient -'129128' = { - table2Version = 129 ; - indicatorOfParameter = 128 ; - } -#Geopotential gradient -'129129' = { - table2Version = 129 ; - indicatorOfParameter = 129 ; - } -#Temperature gradient -'129130' = { - table2Version = 129 ; - indicatorOfParameter = 130 ; - } -#U component of wind gradient -'129131' = { - table2Version = 129 ; - indicatorOfParameter = 131 ; - } -#V component of wind gradient -'129132' = { - table2Version = 129 ; - indicatorOfParameter = 132 ; - } -#Specific humidity gradient -'129133' = { - table2Version = 129 ; - indicatorOfParameter = 133 ; - } -#Surface pressure gradient -'129134' = { - table2Version = 129 ; - indicatorOfParameter = 134 ; - } -#vertical velocity (pressure) gradient -'129135' = { - table2Version = 129 ; - indicatorOfParameter = 135 ; - } -#Total column water gradient -'129136' = { - table2Version = 129 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour gradient -'129137' = { - table2Version = 129 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) gradient -'129138' = { - table2Version = 129 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 gradient -'129139' = { - table2Version = 129 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 gradient -'129140' = { - table2Version = 129 ; - indicatorOfParameter = 140 ; - } -#Snow depth gradient -'129141' = { - table2Version = 129 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'129142' = { - table2Version = 129 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation gradient -'129143' = { - table2Version = 129 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) gradient -'129144' = { - table2Version = 129 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation gradient -'129145' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux gradient -'129146' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux gradient -'129147' = { - table2Version = 129 ; - indicatorOfParameter = 147 ; - } -#Charnock gradient -'129148' = { - table2Version = 129 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation gradient -'129149' = { - table2Version = 129 ; - indicatorOfParameter = 149 ; - } -#Top net radiation gradient -'129150' = { - table2Version = 129 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure gradient -'129151' = { - table2Version = 129 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure gradient -'129152' = { - table2Version = 129 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate gradient -'129153' = { - table2Version = 129 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate gradient -'129154' = { - table2Version = 129 ; - indicatorOfParameter = 154 ; - } -#Divergence gradient -'129155' = { - table2Version = 129 ; - indicatorOfParameter = 155 ; - } -#Height gradient -'129156' = { - table2Version = 129 ; - indicatorOfParameter = 156 ; - } -#Relative humidity gradient -'129157' = { - table2Version = 129 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure gradient -'129158' = { - table2Version = 129 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height gradient -'129159' = { - table2Version = 129 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography gradient -'129160' = { - table2Version = 129 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'129161' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography gradient -'129162' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography gradient -'129163' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover gradient -'129164' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component gradient -'129165' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component gradient -'129166' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature gradient -'129167' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature gradient -'129168' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards gradient -'129169' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 gradient -'129170' = { - table2Version = 129 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 gradient -'129171' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask gradient -'129172' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#Surface roughness gradient -'129173' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#Albedo gradient -'129174' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards gradient -'129175' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation gradient -'129176' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation gradient -'129177' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation gradient -'129178' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation gradient -'129179' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress gradient -'129180' = { - table2Version = 129 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress gradient -'129181' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#Evaporation gradient -'129182' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 gradient -'129183' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 gradient -'129184' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover gradient -'129185' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover gradient -'129186' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover gradient -'129187' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#High cloud cover gradient -'129188' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration gradient -'129189' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'129190' = { - table2Version = 129 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'129191' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'129192' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'129193' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature gradient -'129194' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'129195' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress gradient -'129196' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation gradient -'129197' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content gradient -'129198' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction gradient -'129199' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography gradient -'129200' = { - table2Version = 129 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'129201' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'129202' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio gradient -'129203' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights gradient -'129204' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#Runoff gradient -'129205' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#Total column ozone gradient -'129206' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed gradient -'129207' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky gradient -'129208' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky gradient -'129209' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky gradient -'129210' = { - table2Version = 129 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'129211' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation gradient -'129212' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation gradient -'129214' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'129215' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection gradient -'129216' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation gradient -'129217' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind gradient -'129218' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind gradient -'129219' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency gradient -'129220' = { - table2Version = 129 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency gradient -'129221' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind gradient -'129222' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind gradient -'129223' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity gradient -'129224' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection gradient -'129225' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'129226' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity gradient -'129227' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#Total precipitation gradient -'129228' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress gradient -'129229' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress gradient -'129230' = { - table2Version = 129 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux gradient -'129231' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux gradient -'129232' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity gradient -'129233' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'129234' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#Skin temperature gradient -'129235' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 gradient -'129236' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 gradient -'129237' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer gradient -'129238' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall gradient -'129239' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall gradient -'129240' = { - table2Version = 129 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency gradient -'129241' = { - table2Version = 129 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency gradient -'129242' = { - table2Version = 129 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo gradient -'129243' = { - table2Version = 129 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness gradient -'129244' = { - table2Version = 129 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'129245' = { - table2Version = 129 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content gradient -'129246' = { - table2Version = 129 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content gradient -'129247' = { - table2Version = 129 ; - indicatorOfParameter = 247 ; - } -#Cloud cover gradient -'129248' = { - table2Version = 129 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency gradient -'129249' = { - table2Version = 129 ; - indicatorOfParameter = 249 ; - } -#Ice age gradient -'129250' = { - table2Version = 129 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature gradient -'129251' = { - table2Version = 129 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity gradient -'129252' = { - table2Version = 129 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'129253' = { - table2Version = 129 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'129254' = { - table2Version = 129 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'129255' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -#Top solar radiation upward -'130208' = { - table2Version = 130 ; - indicatorOfParameter = 208 ; - } -#Top thermal radiation upward -'130209' = { - table2Version = 130 ; - indicatorOfParameter = 209 ; - } -#Top solar radiation upward, clear sky -'130210' = { - table2Version = 130 ; - indicatorOfParameter = 210 ; - } -#Top thermal radiation upward, clear sky -'130211' = { - table2Version = 130 ; - indicatorOfParameter = 211 ; - } -#Cloud liquid water -'130212' = { - table2Version = 130 ; - indicatorOfParameter = 212 ; - } -#Cloud fraction -'130213' = { - table2Version = 130 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'130214' = { - table2Version = 130 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'130215' = { - table2Version = 130 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'130216' = { - table2Version = 130 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation -'130217' = { - table2Version = 130 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'130218' = { - table2Version = 130 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'130219' = { - table2Version = 130 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag -'130220' = { - table2Version = 130 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag -'130221' = { - table2Version = 130 ; - indicatorOfParameter = 221 ; - } -#Vertical diffusion of humidity -'130224' = { - table2Version = 130 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'130225' = { - table2Version = 130 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'130226' = { - table2Version = 130 ; - indicatorOfParameter = 226 ; - } -#Adiabatic tendency of temperature -'130228' = { - table2Version = 130 ; - indicatorOfParameter = 228 ; - } -#Adiabatic tendency of humidity -'130229' = { - table2Version = 130 ; - indicatorOfParameter = 229 ; - } -#Adiabatic tendency of zonal wind -'130230' = { - table2Version = 130 ; - indicatorOfParameter = 230 ; - } -#Adiabatic tendency of meridional wind -'130231' = { - table2Version = 130 ; - indicatorOfParameter = 231 ; - } -#Mean vertical velocity -'130232' = { - table2Version = 130 ; - indicatorOfParameter = 232 ; - } -#2m temperature anomaly of at least +2K -'131001' = { - table2Version = 131 ; - indicatorOfParameter = 1 ; - } -#2m temperature anomaly of at least +1K -'131002' = { - table2Version = 131 ; - indicatorOfParameter = 2 ; - } -#2m temperature anomaly of at least 0K -'131003' = { - table2Version = 131 ; - indicatorOfParameter = 3 ; - } -#2m temperature anomaly of at most -1K -'131004' = { - table2Version = 131 ; - indicatorOfParameter = 4 ; - } -#2m temperature anomaly of at most -2K -'131005' = { - table2Version = 131 ; - indicatorOfParameter = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'131006' = { - table2Version = 131 ; - indicatorOfParameter = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'131007' = { - table2Version = 131 ; - indicatorOfParameter = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'131008' = { - table2Version = 131 ; - indicatorOfParameter = 8 ; - } -#Surface temperature anomaly of at least 0K -'131009' = { - table2Version = 131 ; - indicatorOfParameter = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'131010' = { - table2Version = 131 ; - indicatorOfParameter = 10 ; - } -#Height of 0 degree isotherm probability -'131015' = { - table2Version = 131 ; - indicatorOfParameter = 15 ; - } -#Height of snowfall limit probability -'131016' = { - table2Version = 131 ; - indicatorOfParameter = 16 ; - } -#Showalter index probability -'131017' = { - table2Version = 131 ; - indicatorOfParameter = 17 ; - } -#Whiting index probability -'131018' = { - table2Version = 131 ; - indicatorOfParameter = 18 ; - } -#Temperature anomaly less than -2 K -'131020' = { - table2Version = 131 ; - indicatorOfParameter = 20 ; - } -#Temperature anomaly of at least +2 K -'131021' = { - table2Version = 131 ; - indicatorOfParameter = 21 ; - } -#Temperature anomaly less than -8 K -'131022' = { - table2Version = 131 ; - indicatorOfParameter = 22 ; - } -#Temperature anomaly less than -4 K -'131023' = { - table2Version = 131 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly greater than +4 K -'131024' = { - table2Version = 131 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly greater than +8 K -'131025' = { - table2Version = 131 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability -'131049' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Convective available potential energy probability -'131059' = { - table2Version = 131 ; - indicatorOfParameter = 59 ; - } -#Total precipitation less than 0.1 mm -'131064' = { - table2Version = 131 ; - indicatorOfParameter = 64 ; - } -#Total precipitation rate less than 1 mm/day -'131065' = { - table2Version = 131 ; - indicatorOfParameter = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'131066' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'131067' = { - table2Version = 131 ; - indicatorOfParameter = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'131068' = { - table2Version = 131 ; - indicatorOfParameter = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'131069' = { - table2Version = 131 ; - indicatorOfParameter = 69 ; - } -#10 metre wind gust of at least 15 m/s -'131070' = { - table2Version = 131 ; - indicatorOfParameter = 70 ; - } -#10 metre wind gust of at least 20 m/s -'131071' = { - table2Version = 131 ; - indicatorOfParameter = 71 ; - } -#10 metre wind gust of at least 25 m/s -'131072' = { - table2Version = 131 ; - indicatorOfParameter = 72 ; - } -#2 metre temperature less than 273.15 K -'131073' = { - table2Version = 131 ; - indicatorOfParameter = 73 ; - } -#Significant wave height of at least 2 m -'131074' = { - table2Version = 131 ; - indicatorOfParameter = 74 ; - } -#Significant wave height of at least 4 m -'131075' = { - table2Version = 131 ; - indicatorOfParameter = 75 ; - } -#Significant wave height of at least 6 m -'131076' = { - table2Version = 131 ; - indicatorOfParameter = 76 ; - } -#Significant wave height of at least 8 m -'131077' = { - table2Version = 131 ; - indicatorOfParameter = 77 ; - } -#Mean wave period of at least 8 s -'131078' = { - table2Version = 131 ; - indicatorOfParameter = 78 ; - } -#Mean wave period of at least 10 s -'131079' = { - table2Version = 131 ; - indicatorOfParameter = 79 ; - } -#Mean wave period of at least 12 s -'131080' = { - table2Version = 131 ; - indicatorOfParameter = 80 ; - } -#Mean wave period of at least 15 s -'131081' = { - table2Version = 131 ; - indicatorOfParameter = 81 ; - } -#Geopotential probability -'131129' = { - table2Version = 131 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly probability -'131130' = { - table2Version = 131 ; - indicatorOfParameter = 130 ; - } -#Soil temperature level 1 probability -'131139' = { - table2Version = 131 ; - indicatorOfParameter = 139 ; - } -#Snowfall (convective + stratiform) probability -'131144' = { - table2Version = 131 ; - indicatorOfParameter = 144 ; - } -#Mean sea level pressure probability -'131151' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Total cloud cover probability -'131164' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#10 metre speed probability -'131165' = { - table2Version = 131 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature probability -'131167' = { - table2Version = 131 ; - indicatorOfParameter = 167 ; - } -#Maximum 2 metre temperature probability -'131201' = { - table2Version = 131 ; - indicatorOfParameter = 201 ; - } -#Minimum 2 metre temperature probability -'131202' = { - table2Version = 131 ; - indicatorOfParameter = 202 ; - } -#Total precipitation probability -'131228' = { - table2Version = 131 ; - indicatorOfParameter = 228 ; - } -#Significant wave height probability -'131229' = { - table2Version = 131 ; - indicatorOfParameter = 229 ; - } -#Mean wave period probability -'131232' = { - table2Version = 131 ; - indicatorOfParameter = 232 ; - } -#Indicates a missing value -'131255' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust index -'132049' = { - table2Version = 132 ; - indicatorOfParameter = 49 ; - } -#Snowfall index -'132144' = { - table2Version = 132 ; - indicatorOfParameter = 144 ; - } -#10 metre speed index -'132165' = { - table2Version = 132 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature index -'132167' = { - table2Version = 132 ; - indicatorOfParameter = 167 ; - } -#Maximum temperature at 2 metres index -'132201' = { - table2Version = 132 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres index -'132202' = { - table2Version = 132 ; - indicatorOfParameter = 202 ; - } -#Total precipitation index -'132228' = { - table2Version = 132 ; - indicatorOfParameter = 228 ; - } -#2m temperature probability less than -10 C -'133001' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#2m temperature probability less than -5 C -'133002' = { - table2Version = 133 ; - indicatorOfParameter = 2 ; - } -#2m temperature probability less than 0 C -'133003' = { - table2Version = 133 ; - indicatorOfParameter = 3 ; - } -#2m temperature probability less than 5 C -'133004' = { - table2Version = 133 ; - indicatorOfParameter = 4 ; - } -#2m temperature probability less than 10 C -'133005' = { - table2Version = 133 ; - indicatorOfParameter = 5 ; - } -#2m temperature probability greater than 25 C -'133006' = { - table2Version = 133 ; - indicatorOfParameter = 6 ; - } -#2m temperature probability greater than 30 C -'133007' = { - table2Version = 133 ; - indicatorOfParameter = 7 ; - } -#2m temperature probability greater than 35 C -'133008' = { - table2Version = 133 ; - indicatorOfParameter = 8 ; - } -#2m temperature probability greater than 40 C -'133009' = { - table2Version = 133 ; - indicatorOfParameter = 9 ; - } -#2m temperature probability greater than 45 C -'133010' = { - table2Version = 133 ; - indicatorOfParameter = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'133011' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'133012' = { - table2Version = 133 ; - indicatorOfParameter = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'133013' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'133014' = { - table2Version = 133 ; - indicatorOfParameter = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'133015' = { - table2Version = 133 ; - indicatorOfParameter = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'133016' = { - table2Version = 133 ; - indicatorOfParameter = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'133017' = { - table2Version = 133 ; - indicatorOfParameter = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'133018' = { - table2Version = 133 ; - indicatorOfParameter = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'133019' = { - table2Version = 133 ; - indicatorOfParameter = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'133020' = { - table2Version = 133 ; - indicatorOfParameter = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'133021' = { - table2Version = 133 ; - indicatorOfParameter = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'133022' = { - table2Version = 133 ; - indicatorOfParameter = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'133023' = { - table2Version = 133 ; - indicatorOfParameter = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'133024' = { - table2Version = 133 ; - indicatorOfParameter = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'133025' = { - table2Version = 133 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'133026' = { - table2Version = 133 ; - indicatorOfParameter = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'133027' = { - table2Version = 133 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'133028' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'133029' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'133030' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Total precipitation probability of at least 1 mm -'133031' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Total precipitation probability of at least 5 mm -'133032' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#Total precipitation probability of at least 10 mm -'133033' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#Total precipitation probability of at least 20 mm -'133034' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Total precipitation probability of at least 40 mm -'133035' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Total precipitation probability of at least 60 mm -'133036' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Total precipitation probability of at least 80 mm -'133037' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Total precipitation probability of at least 100 mm -'133038' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Total precipitation probability of at least 150 mm -'133039' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Total precipitation probability of at least 200 mm -'133040' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Total precipitation probability of at least 300 mm -'133041' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Snowfall probability of at least 1 mm -'133042' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Snowfall probability of at least 5 mm -'133043' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Snowfall probability of at least 10 mm -'133044' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Snowfall probability of at least 20 mm -'133045' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Snowfall probability of at least 40 mm -'133046' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Snowfall probability of at least 60 mm -'133047' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Snowfall probability of at least 80 mm -'133048' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#Snowfall probability of at least 100 mm -'133049' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#Snowfall probability of at least 150 mm -'133050' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Snowfall probability of at least 200 mm -'133051' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snowfall probability of at least 300 mm -'133052' = { - table2Version = 133 ; - indicatorOfParameter = 52 ; - } -#Total Cloud Cover probability greater than 10% -'133053' = { - table2Version = 133 ; - indicatorOfParameter = 53 ; - } -#Total Cloud Cover probability greater than 20% -'133054' = { - table2Version = 133 ; - indicatorOfParameter = 54 ; - } -#Total Cloud Cover probability greater than 30% -'133055' = { - table2Version = 133 ; - indicatorOfParameter = 55 ; - } -#Total Cloud Cover probability greater than 40% -'133056' = { - table2Version = 133 ; - indicatorOfParameter = 56 ; - } -#Total Cloud Cover probability greater than 50% -'133057' = { - table2Version = 133 ; - indicatorOfParameter = 57 ; - } -#Total Cloud Cover probability greater than 60% -'133058' = { - table2Version = 133 ; - indicatorOfParameter = 58 ; - } -#Total Cloud Cover probability greater than 70% -'133059' = { - table2Version = 133 ; - indicatorOfParameter = 59 ; - } -#Total Cloud Cover probability greater than 80% -'133060' = { - table2Version = 133 ; - indicatorOfParameter = 60 ; - } -#Total Cloud Cover probability greater than 90% -'133061' = { - table2Version = 133 ; - indicatorOfParameter = 61 ; - } -#Total Cloud Cover probability greater than 99% -'133062' = { - table2Version = 133 ; - indicatorOfParameter = 62 ; - } -#High Cloud Cover probability greater than 10% -'133063' = { - table2Version = 133 ; - indicatorOfParameter = 63 ; - } -#High Cloud Cover probability greater than 20% -'133064' = { - table2Version = 133 ; - indicatorOfParameter = 64 ; - } -#High Cloud Cover probability greater than 30% -'133065' = { - table2Version = 133 ; - indicatorOfParameter = 65 ; - } -#High Cloud Cover probability greater than 40% -'133066' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#High Cloud Cover probability greater than 50% -'133067' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#High Cloud Cover probability greater than 60% -'133068' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#High Cloud Cover probability greater than 70% -'133069' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#High Cloud Cover probability greater than 80% -'133070' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#High Cloud Cover probability greater than 90% -'133071' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#High Cloud Cover probability greater than 99% -'133072' = { - table2Version = 133 ; - indicatorOfParameter = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'133073' = { - table2Version = 133 ; - indicatorOfParameter = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'133074' = { - table2Version = 133 ; - indicatorOfParameter = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'133075' = { - table2Version = 133 ; - indicatorOfParameter = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'133076' = { - table2Version = 133 ; - indicatorOfParameter = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'133077' = { - table2Version = 133 ; - indicatorOfParameter = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'133078' = { - table2Version = 133 ; - indicatorOfParameter = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'133079' = { - table2Version = 133 ; - indicatorOfParameter = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'133080' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'133081' = { - table2Version = 133 ; - indicatorOfParameter = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'133082' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Low Cloud Cover probability greater than 10% -'133083' = { - table2Version = 133 ; - indicatorOfParameter = 83 ; - } -#Low Cloud Cover probability greater than 20% -'133084' = { - table2Version = 133 ; - indicatorOfParameter = 84 ; - } -#Low Cloud Cover probability greater than 30% -'133085' = { - table2Version = 133 ; - indicatorOfParameter = 85 ; - } -#Low Cloud Cover probability greater than 40% -'133086' = { - table2Version = 133 ; - indicatorOfParameter = 86 ; - } -#Low Cloud Cover probability greater than 50% -'133087' = { - table2Version = 133 ; - indicatorOfParameter = 87 ; - } -#Low Cloud Cover probability greater than 60% -'133088' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Low Cloud Cover probability greater than 70% -'133089' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Low Cloud Cover probability greater than 80% -'133090' = { - table2Version = 133 ; - indicatorOfParameter = 90 ; - } -#Low Cloud Cover probability greater than 90% -'133091' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Low Cloud Cover probability greater than 99% -'133092' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Maximum of significant wave height -'140200' = { - table2Version = 140 ; - indicatorOfParameter = 200 ; - } -#Period corresponding to maximum individual wave height -'140217' = { - table2Version = 140 ; - indicatorOfParameter = 217 ; - } -#Maximum individual wave height -'140218' = { - table2Version = 140 ; - indicatorOfParameter = 218 ; - } -#Model bathymetry -'140219' = { - table2Version = 140 ; - indicatorOfParameter = 219 ; - } -#Mean wave period based on first moment -'140220' = { - table2Version = 140 ; - indicatorOfParameter = 220 ; - } -#Mean zero-crossing wave period -'140221' = { - table2Version = 140 ; - indicatorOfParameter = 221 ; - } -#Wave spectral directional width -'140222' = { - table2Version = 140 ; - indicatorOfParameter = 222 ; - } -#Mean wave period based on first moment for wind waves -'140223' = { - table2Version = 140 ; - indicatorOfParameter = 223 ; - } -#Mean wave period based on second moment for wind waves -'140224' = { - table2Version = 140 ; - indicatorOfParameter = 224 ; - } -#Wave spectral directional width for wind waves -'140225' = { - table2Version = 140 ; - indicatorOfParameter = 225 ; - } -#Mean wave period based on first moment for swell -'140226' = { - table2Version = 140 ; - indicatorOfParameter = 226 ; - } -#Mean wave period based on second moment for swell -'140227' = { - table2Version = 140 ; - indicatorOfParameter = 227 ; - } -#Wave spectral directional width for swell -'140228' = { - table2Version = 140 ; - indicatorOfParameter = 228 ; - } -#Significant height of combined wind waves and swell -'140229' = { - table2Version = 140 ; - indicatorOfParameter = 229 ; - } -#Mean wave direction -'140230' = { - table2Version = 140 ; - indicatorOfParameter = 230 ; - } -#Peak wave period -'140231' = { - table2Version = 140 ; - indicatorOfParameter = 231 ; - } -#Mean wave period -'140232' = { - table2Version = 140 ; - indicatorOfParameter = 232 ; - } -#Coefficient of drag with waves -'140233' = { - table2Version = 140 ; - indicatorOfParameter = 233 ; - } -#Significant height of wind waves -'140234' = { - table2Version = 140 ; - indicatorOfParameter = 234 ; - } -#Mean direction of wind waves -'140235' = { - table2Version = 140 ; - indicatorOfParameter = 235 ; - } -#Mean period of wind waves -'140236' = { - table2Version = 140 ; - indicatorOfParameter = 236 ; - } -#Significant height of total swell -'140237' = { - table2Version = 140 ; - indicatorOfParameter = 237 ; - } -#Mean direction of total swell -'140238' = { - table2Version = 140 ; - indicatorOfParameter = 238 ; - } -#Mean period of total swell -'140239' = { - table2Version = 140 ; - indicatorOfParameter = 239 ; - } -#Standard deviation wave height -'140240' = { - table2Version = 140 ; - indicatorOfParameter = 240 ; - } -#Mean of 10 metre wind speed -'140241' = { - table2Version = 140 ; - indicatorOfParameter = 241 ; - } -#Mean wind direction -'140242' = { - table2Version = 140 ; - indicatorOfParameter = 242 ; - } -#Standard deviation of 10 metre wind speed -'140243' = { - table2Version = 140 ; - indicatorOfParameter = 243 ; - } -#Mean square slope of waves -'140244' = { - table2Version = 140 ; - indicatorOfParameter = 244 ; - } -#10 metre wind speed -'140245' = { - table2Version = 140 ; - indicatorOfParameter = 245 ; - } -#Altimeter wave height -'140246' = { - table2Version = 140 ; - indicatorOfParameter = 246 ; - } -#Altimeter corrected wave height -'140247' = { - table2Version = 140 ; - indicatorOfParameter = 247 ; - } -#Altimeter range relative correction -'140248' = { - table2Version = 140 ; - indicatorOfParameter = 248 ; - } -#10 metre wind direction -'140249' = { - table2Version = 140 ; - indicatorOfParameter = 249 ; - } -#2D wave spectra (multiple) -'140250' = { - table2Version = 140 ; - indicatorOfParameter = 250 ; - } -#2D wave spectra (single) -'140251' = { - table2Version = 140 ; - indicatorOfParameter = 251 ; - } -#Wave spectral kurtosis -'140252' = { - table2Version = 140 ; - indicatorOfParameter = 252 ; - } -#Benjamin-Feir index -'140253' = { - table2Version = 140 ; - indicatorOfParameter = 253 ; - } -#Wave spectral peakedness -'140254' = { - table2Version = 140 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'140255' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -#Ocean potential temperature -'150129' = { - table2Version = 150 ; - indicatorOfParameter = 129 ; - } -#Ocean salinity -'150130' = { - table2Version = 150 ; - indicatorOfParameter = 130 ; - } -#Ocean potential density -'150131' = { - table2Version = 150 ; - indicatorOfParameter = 131 ; - } -#Ocean U wind component -'150133' = { - table2Version = 150 ; - indicatorOfParameter = 133 ; - } -#Ocean V wind component -'150134' = { - table2Version = 150 ; - indicatorOfParameter = 134 ; - } -#Ocean W wind component -'150135' = { - table2Version = 150 ; - indicatorOfParameter = 135 ; - } -#Richardson number -'150137' = { - table2Version = 150 ; - indicatorOfParameter = 137 ; - } -#U*V product -'150139' = { - table2Version = 150 ; - indicatorOfParameter = 139 ; - } -#U*T product -'150140' = { - table2Version = 150 ; - indicatorOfParameter = 140 ; - } -#V*T product -'150141' = { - table2Version = 150 ; - indicatorOfParameter = 141 ; - } -#U*U product -'150142' = { - table2Version = 150 ; - indicatorOfParameter = 142 ; - } -#V*V product -'150143' = { - table2Version = 150 ; - indicatorOfParameter = 143 ; - } -#UV - U~V~ -'150144' = { - table2Version = 150 ; - indicatorOfParameter = 144 ; - } -#UT - U~T~ -'150145' = { - table2Version = 150 ; - indicatorOfParameter = 145 ; - } -#VT - V~T~ -'150146' = { - table2Version = 150 ; - indicatorOfParameter = 146 ; - } -#UU - U~U~ -'150147' = { - table2Version = 150 ; - indicatorOfParameter = 147 ; - } -#VV - V~V~ -'150148' = { - table2Version = 150 ; - indicatorOfParameter = 148 ; - } -#Sea level -'150152' = { - table2Version = 150 ; - indicatorOfParameter = 152 ; - } -#Barotropic stream function -'150153' = { - table2Version = 150 ; - indicatorOfParameter = 153 ; - } -#Mixed layer depth -'150154' = { - table2Version = 150 ; - indicatorOfParameter = 154 ; - } -#Depth -'150155' = { - table2Version = 150 ; - indicatorOfParameter = 155 ; - } -#U stress -'150168' = { - table2Version = 150 ; - indicatorOfParameter = 168 ; - } -#V stress -'150169' = { - table2Version = 150 ; - indicatorOfParameter = 169 ; - } -#Turbulent kinetic energy input -'150170' = { - table2Version = 150 ; - indicatorOfParameter = 170 ; - } -#Net surface heat flux -'150171' = { - table2Version = 150 ; - indicatorOfParameter = 171 ; - } -#Surface solar radiation -'150172' = { - table2Version = 150 ; - indicatorOfParameter = 172 ; - } -#P-E -'150173' = { - table2Version = 150 ; - indicatorOfParameter = 173 ; - } -#Diagnosed sea surface temperature error -'150180' = { - table2Version = 150 ; - indicatorOfParameter = 180 ; - } -#Heat flux correction -'150181' = { - table2Version = 150 ; - indicatorOfParameter = 181 ; - } -#Observed sea surface temperature -'150182' = { - table2Version = 150 ; - indicatorOfParameter = 182 ; - } -#Observed heat flux -'150183' = { - table2Version = 150 ; - indicatorOfParameter = 183 ; - } -#Indicates a missing value -'150255' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -#In situ Temperature -'151128' = { - table2Version = 151 ; - indicatorOfParameter = 128 ; - } -#Sea water potential temperature -'151129' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'151130' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'151131' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'151132' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'151133' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Modulus of strain rate tensor -'151134' = { - table2Version = 151 ; - indicatorOfParameter = 134 ; - } -#Vertical viscosity -'151135' = { - table2Version = 151 ; - indicatorOfParameter = 135 ; - } -#Vertical diffusivity -'151136' = { - table2Version = 151 ; - indicatorOfParameter = 136 ; - } -#Bottom level Depth -'151137' = { - table2Version = 151 ; - indicatorOfParameter = 137 ; - } -#Sea water sigma theta -'151138' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Richardson number -'151139' = { - table2Version = 151 ; - indicatorOfParameter = 139 ; - } -#UV product -'151140' = { - table2Version = 151 ; - indicatorOfParameter = 140 ; - } -#UT product -'151141' = { - table2Version = 151 ; - indicatorOfParameter = 141 ; - } -#VT product -'151142' = { - table2Version = 151 ; - indicatorOfParameter = 142 ; - } -#UU product -'151143' = { - table2Version = 151 ; - indicatorOfParameter = 143 ; - } -#VV product -'151144' = { - table2Version = 151 ; - indicatorOfParameter = 144 ; - } -#Sea surface height -'151145' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Sea level previous timestep -'151146' = { - table2Version = 151 ; - indicatorOfParameter = 146 ; - } -#Ocean barotropic stream function -'151147' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Mixed layer depth -'151148' = { - table2Version = 151 ; - indicatorOfParameter = 148 ; - } -#Bottom Pressure (equivalent height) -'151149' = { - table2Version = 151 ; - indicatorOfParameter = 149 ; - } -#Steric height -'151150' = { - table2Version = 151 ; - indicatorOfParameter = 150 ; - } -#Curl of Wind Stress -'151151' = { - table2Version = 151 ; - indicatorOfParameter = 151 ; - } -#Divergence of wind stress -'151152' = { - table2Version = 151 ; - indicatorOfParameter = 152 ; - } -#Surface downward eastward stress -'151153' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'151154' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Turbulent kinetic energy input -'151155' = { - table2Version = 151 ; - indicatorOfParameter = 155 ; - } -#Net surface heat flux -'151156' = { - table2Version = 151 ; - indicatorOfParameter = 156 ; - } -#Absorbed solar radiation -'151157' = { - table2Version = 151 ; - indicatorOfParameter = 157 ; - } -#Precipitation - evaporation -'151158' = { - table2Version = 151 ; - indicatorOfParameter = 158 ; - } -#Specified sea surface temperature -'151159' = { - table2Version = 151 ; - indicatorOfParameter = 159 ; - } -#Specified surface heat flux -'151160' = { - table2Version = 151 ; - indicatorOfParameter = 160 ; - } -#Diagnosed sea surface temperature error -'151161' = { - table2Version = 151 ; - indicatorOfParameter = 161 ; - } -#Heat flux correction -'151162' = { - table2Version = 151 ; - indicatorOfParameter = 162 ; - } -#Depth of 20C isotherm -'151163' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Average potential temperature in the upper 300m -'151164' = { - table2Version = 151 ; - indicatorOfParameter = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'151165' = { - table2Version = 151 ; - indicatorOfParameter = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'151166' = { - table2Version = 151 ; - indicatorOfParameter = 166 ; - } -#Vertically integrated zonal volume transport -'151167' = { - table2Version = 151 ; - indicatorOfParameter = 167 ; - } -#Vertically integrated meridional volume transport -'151168' = { - table2Version = 151 ; - indicatorOfParameter = 168 ; - } -#Vertically integrated zonal heat transport -'151169' = { - table2Version = 151 ; - indicatorOfParameter = 169 ; - } -#Vertically integrated meridional heat transport -'151170' = { - table2Version = 151 ; - indicatorOfParameter = 170 ; - } -#U velocity maximum -'151171' = { - table2Version = 151 ; - indicatorOfParameter = 171 ; - } -#Depth of the velocity maximum -'151172' = { - table2Version = 151 ; - indicatorOfParameter = 172 ; - } -#Salinity maximum -'151173' = { - table2Version = 151 ; - indicatorOfParameter = 173 ; - } -#Depth of salinity maximum -'151174' = { - table2Version = 151 ; - indicatorOfParameter = 174 ; - } -#Average salinity in the upper 300m -'151175' = { - table2Version = 151 ; - indicatorOfParameter = 175 ; - } -#Layer Thickness at scalar points -'151176' = { - table2Version = 151 ; - indicatorOfParameter = 176 ; - } -#Layer Thickness at vector points -'151177' = { - table2Version = 151 ; - indicatorOfParameter = 177 ; - } -#Potential temperature increment -'151178' = { - table2Version = 151 ; - indicatorOfParameter = 178 ; - } -#Potential temperature analysis error -'151179' = { - table2Version = 151 ; - indicatorOfParameter = 179 ; - } -#Background potential temperature -'151180' = { - table2Version = 151 ; - indicatorOfParameter = 180 ; - } -#Analysed potential temperature -'151181' = { - table2Version = 151 ; - indicatorOfParameter = 181 ; - } -#Potential temperature background error -'151182' = { - table2Version = 151 ; - indicatorOfParameter = 182 ; - } -#Analysed salinity -'151183' = { - table2Version = 151 ; - indicatorOfParameter = 183 ; - } -#Salinity increment -'151184' = { - table2Version = 151 ; - indicatorOfParameter = 184 ; - } -#Estimated Bias in Temperature -'151185' = { - table2Version = 151 ; - indicatorOfParameter = 185 ; - } -#Estimated Bias in Salinity -'151186' = { - table2Version = 151 ; - indicatorOfParameter = 186 ; - } -#Zonal Velocity increment (from balance operator) -'151187' = { - table2Version = 151 ; - indicatorOfParameter = 187 ; - } -#Meridional Velocity increment (from balance operator) -'151188' = { - table2Version = 151 ; - indicatorOfParameter = 188 ; - } -#Salinity increment (from salinity data) -'151190' = { - table2Version = 151 ; - indicatorOfParameter = 190 ; - } -#Salinity analysis error -'151191' = { - table2Version = 151 ; - indicatorOfParameter = 191 ; - } -#Background Salinity -'151192' = { - table2Version = 151 ; - indicatorOfParameter = 192 ; - } -#Salinity background error -'151194' = { - table2Version = 151 ; - indicatorOfParameter = 194 ; - } -#Estimated temperature bias from assimilation -'151199' = { - table2Version = 151 ; - indicatorOfParameter = 199 ; - } -#Estimated salinity bias from assimilation -'151200' = { - table2Version = 151 ; - indicatorOfParameter = 200 ; - } -#Temperature increment from relaxation term -'151201' = { - table2Version = 151 ; - indicatorOfParameter = 201 ; - } -#Salinity increment from relaxation term -'151202' = { - table2Version = 151 ; - indicatorOfParameter = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'151203' = { - table2Version = 151 ; - indicatorOfParameter = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'151204' = { - table2Version = 151 ; - indicatorOfParameter = 204 ; - } -#Estimated temperature bias from relaxation -'151205' = { - table2Version = 151 ; - indicatorOfParameter = 205 ; - } -#Estimated salinity bias from relaxation -'151206' = { - table2Version = 151 ; - indicatorOfParameter = 206 ; - } -#First guess bias in temperature -'151207' = { - table2Version = 151 ; - indicatorOfParameter = 207 ; - } -#First guess bias in salinity -'151208' = { - table2Version = 151 ; - indicatorOfParameter = 208 ; - } -#Applied bias in pressure -'151209' = { - table2Version = 151 ; - indicatorOfParameter = 209 ; - } -#FG bias in pressure -'151210' = { - table2Version = 151 ; - indicatorOfParameter = 210 ; - } -#Bias in temperature(applied) -'151211' = { - table2Version = 151 ; - indicatorOfParameter = 211 ; - } -#Bias in salinity (applied) -'151212' = { - table2Version = 151 ; - indicatorOfParameter = 212 ; - } -#Indicates a missing value -'151255' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust during averaging time -'160049' = { - table2Version = 160 ; - indicatorOfParameter = 49 ; - } -#vertical velocity (pressure) -'160135' = { - table2Version = 160 ; - indicatorOfParameter = 135 ; - } -#Precipitable water content -'160137' = { - table2Version = 160 ; - indicatorOfParameter = 137 ; - } -#Soil wetness level 1 -'160140' = { - table2Version = 160 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'160141' = { - table2Version = 160 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'160142' = { - table2Version = 160 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'160143' = { - table2Version = 160 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'160144' = { - table2Version = 160 ; - indicatorOfParameter = 144 ; - } -#Height -'160156' = { - table2Version = 160 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'160157' = { - table2Version = 160 ; - indicatorOfParameter = 157 ; - } -#Soil wetness level 2 -'160171' = { - table2Version = 160 ; - indicatorOfParameter = 171 ; - } -#East-West surface stress -'160180' = { - table2Version = 160 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress -'160181' = { - table2Version = 160 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'160182' = { - table2Version = 160 ; - indicatorOfParameter = 182 ; - } -#Soil wetness level 3 -'160184' = { - table2Version = 160 ; - indicatorOfParameter = 184 ; - } -#Skin reservoir content -'160198' = { - table2Version = 160 ; - indicatorOfParameter = 198 ; - } -#Percentage of vegetation -'160199' = { - table2Version = 160 ; - indicatorOfParameter = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'160201' = { - table2Version = 160 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'160202' = { - table2Version = 160 ; - indicatorOfParameter = 202 ; - } -#Runoff -'160205' = { - table2Version = 160 ; - indicatorOfParameter = 205 ; - } -#Standard deviation of geopotential -'160206' = { - table2Version = 160 ; - indicatorOfParameter = 206 ; - } -#Covariance of temperature and geopotential -'160207' = { - table2Version = 160 ; - indicatorOfParameter = 207 ; - } -#Standard deviation of temperature -'160208' = { - table2Version = 160 ; - indicatorOfParameter = 208 ; - } -#Covariance of specific humidity and geopotential -'160209' = { - table2Version = 160 ; - indicatorOfParameter = 209 ; - } -#Covariance of specific humidity and temperature -'160210' = { - table2Version = 160 ; - indicatorOfParameter = 210 ; - } -#Standard deviation of specific humidity -'160211' = { - table2Version = 160 ; - indicatorOfParameter = 211 ; - } -#Covariance of U component and geopotential -'160212' = { - table2Version = 160 ; - indicatorOfParameter = 212 ; - } -#Covariance of U component and temperature -'160213' = { - table2Version = 160 ; - indicatorOfParameter = 213 ; - } -#Covariance of U component and specific humidity -'160214' = { - table2Version = 160 ; - indicatorOfParameter = 214 ; - } -#Standard deviation of U velocity -'160215' = { - table2Version = 160 ; - indicatorOfParameter = 215 ; - } -#Covariance of V component and geopotential -'160216' = { - table2Version = 160 ; - indicatorOfParameter = 216 ; - } -#Covariance of V component and temperature -'160217' = { - table2Version = 160 ; - indicatorOfParameter = 217 ; - } -#Covariance of V component and specific humidity -'160218' = { - table2Version = 160 ; - indicatorOfParameter = 218 ; - } -#Covariance of V component and U component -'160219' = { - table2Version = 160 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of V component -'160220' = { - table2Version = 160 ; - indicatorOfParameter = 220 ; - } -#Covariance of W component and geopotential -'160221' = { - table2Version = 160 ; - indicatorOfParameter = 221 ; - } -#Covariance of W component and temperature -'160222' = { - table2Version = 160 ; - indicatorOfParameter = 222 ; - } -#Covariance of W component and specific humidity -'160223' = { - table2Version = 160 ; - indicatorOfParameter = 223 ; - } -#Covariance of W component and U component -'160224' = { - table2Version = 160 ; - indicatorOfParameter = 224 ; - } -#Covariance of W component and V component -'160225' = { - table2Version = 160 ; - indicatorOfParameter = 225 ; - } -#Standard deviation of vertical velocity -'160226' = { - table2Version = 160 ; - indicatorOfParameter = 226 ; - } -#Instantaneous surface heat flux -'160231' = { - table2Version = 160 ; - indicatorOfParameter = 231 ; - } -#Convective snowfall -'160239' = { - table2Version = 160 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'160240' = { - table2Version = 160 ; - indicatorOfParameter = 240 ; - } -#Cloud liquid water content -'160241' = { - table2Version = 160 ; - indicatorOfParameter = 241 ; - } -#Cloud cover -'160242' = { - table2Version = 160 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'160243' = { - table2Version = 160 ; - indicatorOfParameter = 243 ; - } -#10 metre wind speed -'160246' = { - table2Version = 160 ; - indicatorOfParameter = 246 ; - } -#Momentum flux -'160247' = { - table2Version = 160 ; - indicatorOfParameter = 247 ; - } -#Gravity wave dissipation flux -'160249' = { - table2Version = 160 ; - indicatorOfParameter = 249 ; - } -#Heaviside beta function -'160254' = { - table2Version = 160 ; - indicatorOfParameter = 254 ; - } -#Surface geopotential -'162051' = { - table2Version = 162 ; - indicatorOfParameter = 51 ; - } -#Vertical integral of mass of atmosphere -'162053' = { - table2Version = 162 ; - indicatorOfParameter = 53 ; - } -#Vertical integral of temperature -'162054' = { - table2Version = 162 ; - indicatorOfParameter = 54 ; - } -#Vertical integral of water vapour -'162055' = { - table2Version = 162 ; - indicatorOfParameter = 55 ; - } -#Vertical integral of cloud liquid water -'162056' = { - table2Version = 162 ; - indicatorOfParameter = 56 ; - } -#Vertical integral of cloud frozen water -'162057' = { - table2Version = 162 ; - indicatorOfParameter = 57 ; - } -#Vertical integral of ozone -'162058' = { - table2Version = 162 ; - indicatorOfParameter = 58 ; - } -#Vertical integral of kinetic energy -'162059' = { - table2Version = 162 ; - indicatorOfParameter = 59 ; - } -#Vertical integral of thermal energy -'162060' = { - table2Version = 162 ; - indicatorOfParameter = 60 ; - } -#Vertical integral of potential+internal energy -'162061' = { - table2Version = 162 ; - indicatorOfParameter = 61 ; - } -#Vertical integral of potential+internal+latent energy -'162062' = { - table2Version = 162 ; - indicatorOfParameter = 62 ; - } -#Vertical integral of total energy -'162063' = { - table2Version = 162 ; - indicatorOfParameter = 63 ; - } -#Vertical integral of energy conversion -'162064' = { - table2Version = 162 ; - indicatorOfParameter = 64 ; - } -#Vertical integral of eastward mass flux -'162065' = { - table2Version = 162 ; - indicatorOfParameter = 65 ; - } -#Vertical integral of northward mass flux -'162066' = { - table2Version = 162 ; - indicatorOfParameter = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'162067' = { - table2Version = 162 ; - indicatorOfParameter = 67 ; - } -#Vertical integral of northward kinetic energy flux -'162068' = { - table2Version = 162 ; - indicatorOfParameter = 68 ; - } -#Vertical integral of eastward heat flux -'162069' = { - table2Version = 162 ; - indicatorOfParameter = 69 ; - } -#Vertical integral of northward heat flux -'162070' = { - table2Version = 162 ; - indicatorOfParameter = 70 ; - } -#Vertical integral of eastward water vapour flux -'162071' = { - table2Version = 162 ; - indicatorOfParameter = 71 ; - } -#Vertical integral of northward water vapour flux -'162072' = { - table2Version = 162 ; - indicatorOfParameter = 72 ; - } -#Vertical integral of eastward geopotential flux -'162073' = { - table2Version = 162 ; - indicatorOfParameter = 73 ; - } -#Vertical integral of northward geopotential flux -'162074' = { - table2Version = 162 ; - indicatorOfParameter = 74 ; - } -#Vertical integral of eastward total energy flux -'162075' = { - table2Version = 162 ; - indicatorOfParameter = 75 ; - } -#Vertical integral of northward total energy flux -'162076' = { - table2Version = 162 ; - indicatorOfParameter = 76 ; - } -#Vertical integral of eastward ozone flux -'162077' = { - table2Version = 162 ; - indicatorOfParameter = 77 ; - } -#Vertical integral of northward ozone flux -'162078' = { - table2Version = 162 ; - indicatorOfParameter = 78 ; - } -#Vertical integral of divergence of mass flux -'162081' = { - table2Version = 162 ; - indicatorOfParameter = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'162082' = { - table2Version = 162 ; - indicatorOfParameter = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'162083' = { - table2Version = 162 ; - indicatorOfParameter = 83 ; - } -#Vertical integral of divergence of moisture flux -'162084' = { - table2Version = 162 ; - indicatorOfParameter = 84 ; - } -#Vertical integral of divergence of geopotential flux -'162085' = { - table2Version = 162 ; - indicatorOfParameter = 85 ; - } -#Vertical integral of divergence of total energy flux -'162086' = { - table2Version = 162 ; - indicatorOfParameter = 86 ; - } -#Vertical integral of divergence of ozone flux -'162087' = { - table2Version = 162 ; - indicatorOfParameter = 87 ; - } -#Tendency of short wave radiation -'162100' = { - table2Version = 162 ; - indicatorOfParameter = 100 ; - } -#Tendency of long wave radiation -'162101' = { - table2Version = 162 ; - indicatorOfParameter = 101 ; - } -#Tendency of clear sky short wave radiation -'162102' = { - table2Version = 162 ; - indicatorOfParameter = 102 ; - } -#Tendency of clear sky long wave radiation -'162103' = { - table2Version = 162 ; - indicatorOfParameter = 103 ; - } -#Updraught mass flux -'162104' = { - table2Version = 162 ; - indicatorOfParameter = 104 ; - } -#Downdraught mass flux -'162105' = { - table2Version = 162 ; - indicatorOfParameter = 105 ; - } -#Updraught detrainment rate -'162106' = { - table2Version = 162 ; - indicatorOfParameter = 106 ; - } -#Downdraught detrainment rate -'162107' = { - table2Version = 162 ; - indicatorOfParameter = 107 ; - } -#Total precipitation flux -'162108' = { - table2Version = 162 ; - indicatorOfParameter = 108 ; - } -#Turbulent diffusion coefficient for heat -'162109' = { - table2Version = 162 ; - indicatorOfParameter = 109 ; - } -#Tendency of temperature due to physics -'162110' = { - table2Version = 162 ; - indicatorOfParameter = 110 ; - } -#Tendency of specific humidity due to physics -'162111' = { - table2Version = 162 ; - indicatorOfParameter = 111 ; - } -#Tendency of u component due to physics -'162112' = { - table2Version = 162 ; - indicatorOfParameter = 112 ; - } -#Tendency of v component due to physics -'162113' = { - table2Version = 162 ; - indicatorOfParameter = 113 ; - } -#Variance of geopotential -'162206' = { - table2Version = 162 ; - indicatorOfParameter = 206 ; - } -#Covariance of geopotential/temperature -'162207' = { - table2Version = 162 ; - indicatorOfParameter = 207 ; - } -#Variance of temperature -'162208' = { - table2Version = 162 ; - indicatorOfParameter = 208 ; - } -#Covariance of geopotential/specific humidity -'162209' = { - table2Version = 162 ; - indicatorOfParameter = 209 ; - } -#Covariance of temperature/specific humidity -'162210' = { - table2Version = 162 ; - indicatorOfParameter = 210 ; - } -#Variance of specific humidity -'162211' = { - table2Version = 162 ; - indicatorOfParameter = 211 ; - } -#Covariance of u component/geopotential -'162212' = { - table2Version = 162 ; - indicatorOfParameter = 212 ; - } -#Covariance of u component/temperature -'162213' = { - table2Version = 162 ; - indicatorOfParameter = 213 ; - } -#Covariance of u component/specific humidity -'162214' = { - table2Version = 162 ; - indicatorOfParameter = 214 ; - } -#Variance of u component -'162215' = { - table2Version = 162 ; - indicatorOfParameter = 215 ; - } -#Covariance of v component/geopotential -'162216' = { - table2Version = 162 ; - indicatorOfParameter = 216 ; - } -#Covariance of v component/temperature -'162217' = { - table2Version = 162 ; - indicatorOfParameter = 217 ; - } -#Covariance of v component/specific humidity -'162218' = { - table2Version = 162 ; - indicatorOfParameter = 218 ; - } -#Covariance of v component/u component -'162219' = { - table2Version = 162 ; - indicatorOfParameter = 219 ; - } -#Variance of v component -'162220' = { - table2Version = 162 ; - indicatorOfParameter = 220 ; - } -#Covariance of omega/geopotential -'162221' = { - table2Version = 162 ; - indicatorOfParameter = 221 ; - } -#Covariance of omega/temperature -'162222' = { - table2Version = 162 ; - indicatorOfParameter = 222 ; - } -#Covariance of omega/specific humidity -'162223' = { - table2Version = 162 ; - indicatorOfParameter = 223 ; - } -#Covariance of omega/u component -'162224' = { - table2Version = 162 ; - indicatorOfParameter = 224 ; - } -#Covariance of omega/v component -'162225' = { - table2Version = 162 ; - indicatorOfParameter = 225 ; - } -#Variance of omega -'162226' = { - table2Version = 162 ; - indicatorOfParameter = 226 ; - } -#Variance of surface pressure -'162227' = { - table2Version = 162 ; - indicatorOfParameter = 227 ; - } -#Variance of relative humidity -'162229' = { - table2Version = 162 ; - indicatorOfParameter = 229 ; - } -#Covariance of u component/ozone -'162230' = { - table2Version = 162 ; - indicatorOfParameter = 230 ; - } -#Covariance of v component/ozone -'162231' = { - table2Version = 162 ; - indicatorOfParameter = 231 ; - } -#Covariance of omega/ozone -'162232' = { - table2Version = 162 ; - indicatorOfParameter = 232 ; - } -#Variance of ozone -'162233' = { - table2Version = 162 ; - indicatorOfParameter = 233 ; - } -#Indicates a missing value -'162255' = { - table2Version = 162 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'170149' = { - table2Version = 170 ; - indicatorOfParameter = 149 ; - } -#Soil wetness level 2 -'170171' = { - table2Version = 170 ; - indicatorOfParameter = 171 ; - } -#Top net thermal radiation -'170179' = { - table2Version = 170 ; - indicatorOfParameter = 179 ; - } -#Stream function anomaly -'171001' = { - table2Version = 171 ; - indicatorOfParameter = 1 ; - } -#Velocity potential anomaly -'171002' = { - table2Version = 171 ; - indicatorOfParameter = 2 ; - } -#Potential temperature anomaly -'171003' = { - table2Version = 171 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature anomaly -'171004' = { - table2Version = 171 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature anomaly -'171005' = { - table2Version = 171 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind anomaly -'171011' = { - table2Version = 171 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind anomaly -'171012' = { - table2Version = 171 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind anomaly -'171013' = { - table2Version = 171 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind anomaly -'171014' = { - table2Version = 171 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature anomaly -'171021' = { - table2Version = 171 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'171022' = { - table2Version = 171 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence anomaly -'171023' = { - table2Version = 171 ; - indicatorOfParameter = 23 ; - } -#Lake cover anomaly -'171026' = { - table2Version = 171 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover anomaly -'171027' = { - table2Version = 171 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover anomaly -'171028' = { - table2Version = 171 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation anomaly -'171029' = { - table2Version = 171 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation anomaly -'171030' = { - table2Version = 171 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover anomaly -'171031' = { - table2Version = 171 ; - indicatorOfParameter = 31 ; - } -#Snow albedo anomaly -'171032' = { - table2Version = 171 ; - indicatorOfParameter = 32 ; - } -#Snow density anomaly -'171033' = { - table2Version = 171 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature anomaly -'171034' = { - table2Version = 171 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature anomaly layer 1 -'171035' = { - table2Version = 171 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature anomaly layer 2 -'171036' = { - table2Version = 171 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature anomaly layer 3 -'171037' = { - table2Version = 171 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature anomaly layer 4 -'171038' = { - table2Version = 171 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water anomaly layer 1 -'171039' = { - table2Version = 171 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water anomaly layer 2 -'171040' = { - table2Version = 171 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water anomaly layer 3 -'171041' = { - table2Version = 171 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water anomaly layer 4 -'171042' = { - table2Version = 171 ; - indicatorOfParameter = 42 ; - } -#Soil type anomaly -'171043' = { - table2Version = 171 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation anomaly -'171044' = { - table2Version = 171 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'171045' = { - table2Version = 171 ; - indicatorOfParameter = 45 ; - } -#Solar duration anomaly -'171046' = { - table2Version = 171 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation anomaly -'171047' = { - table2Version = 171 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'171048' = { - table2Version = 171 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust anomaly -'171049' = { - table2Version = 171 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction anomaly -'171050' = { - table2Version = 171 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'171051' = { - table2Version = 171 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'171052' = { - table2Version = 171 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential anomaly -'171053' = { - table2Version = 171 ; - indicatorOfParameter = 53 ; - } -#Pressure anomaly -'171054' = { - table2Version = 171 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'171055' = { - table2Version = 171 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'171056' = { - table2Version = 171 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface anomaly -'171057' = { - table2Version = 171 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'171058' = { - table2Version = 171 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy anomaly -'171059' = { - table2Version = 171 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity anomaly -'171060' = { - table2Version = 171 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations anomaly -'171061' = { - table2Version = 171 ; - indicatorOfParameter = 61 ; - } -#Observation count anomaly -'171062' = { - table2Version = 171 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference anomaly -'171063' = { - table2Version = 171 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference anomaly -'171064' = { - table2Version = 171 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference anomaly -'171065' = { - table2Version = 171 ; - indicatorOfParameter = 65 ; - } -#Total column liquid water anomaly -'171078' = { - table2Version = 171 ; - indicatorOfParameter = 78 ; - } -#Total column ice water anomaly -'171079' = { - table2Version = 171 ; - indicatorOfParameter = 79 ; - } -#Vertically integrated total energy anomaly -'171125' = { - table2Version = 171 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'171126' = { - table2Version = 171 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide anomaly -'171127' = { - table2Version = 171 ; - indicatorOfParameter = 127 ; - } -#Budget values anomaly -'171128' = { - table2Version = 171 ; - indicatorOfParameter = 128 ; - } -#Geopotential anomaly -'171129' = { - table2Version = 171 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly -'171130' = { - table2Version = 171 ; - indicatorOfParameter = 130 ; - } -#U component of wind anomaly -'171131' = { - table2Version = 171 ; - indicatorOfParameter = 131 ; - } -#V component of wind anomaly -'171132' = { - table2Version = 171 ; - indicatorOfParameter = 132 ; - } -#Specific humidity anomaly -'171133' = { - table2Version = 171 ; - indicatorOfParameter = 133 ; - } -#Surface pressure anomaly -'171134' = { - table2Version = 171 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) anomaly -'171135' = { - table2Version = 171 ; - indicatorOfParameter = 135 ; - } -#Total column water anomaly -'171136' = { - table2Version = 171 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour anomaly -'171137' = { - table2Version = 171 ; - indicatorOfParameter = 137 ; - } -#Relative vorticity anomaly -'171138' = { - table2Version = 171 ; - indicatorOfParameter = 138 ; - } -#Soil temperature anomaly level 1 -'171139' = { - table2Version = 171 ; - indicatorOfParameter = 139 ; - } -#Soil wetness anomaly level 1 -'171140' = { - table2Version = 171 ; - indicatorOfParameter = 140 ; - } -#Snow depth anomaly -'171141' = { - table2Version = 171 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'171142' = { - table2Version = 171 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation anomaly -'171143' = { - table2Version = 171 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'171144' = { - table2Version = 171 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'171145' = { - table2Version = 171 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomaly -'171146' = { - table2Version = 171 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomaly -'171147' = { - table2Version = 171 ; - indicatorOfParameter = 147 ; - } -#Charnock anomaly -'171148' = { - table2Version = 171 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation anomaly -'171149' = { - table2Version = 171 ; - indicatorOfParameter = 149 ; - } -#Top net radiation anomaly -'171150' = { - table2Version = 171 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure anomaly -'171151' = { - table2Version = 171 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure anomaly -'171152' = { - table2Version = 171 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate anomaly -'171153' = { - table2Version = 171 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'171154' = { - table2Version = 171 ; - indicatorOfParameter = 154 ; - } -#Relative divergence anomaly -'171155' = { - table2Version = 171 ; - indicatorOfParameter = 155 ; - } -#Height anomaly -'171156' = { - table2Version = 171 ; - indicatorOfParameter = 156 ; - } -#Relative humidity anomaly -'171157' = { - table2Version = 171 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure anomaly -'171158' = { - table2Version = 171 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height anomaly -'171159' = { - table2Version = 171 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography anomaly -'171160' = { - table2Version = 171 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'171161' = { - table2Version = 171 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography anomaly -'171162' = { - table2Version = 171 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography anomaly -'171163' = { - table2Version = 171 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover anomaly -'171164' = { - table2Version = 171 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component anomaly -'171165' = { - table2Version = 171 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component anomaly -'171166' = { - table2Version = 171 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature anomaly -'171167' = { - table2Version = 171 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature anomaly -'171168' = { - table2Version = 171 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards anomaly -'171169' = { - table2Version = 171 ; - indicatorOfParameter = 169 ; - } -#Soil temperature anomaly level 2 -'171170' = { - table2Version = 171 ; - indicatorOfParameter = 170 ; - } -#Soil wetness anomaly level 2 -'171171' = { - table2Version = 171 ; - indicatorOfParameter = 171 ; - } -#Surface roughness anomaly -'171173' = { - table2Version = 171 ; - indicatorOfParameter = 173 ; - } -#Albedo anomaly -'171174' = { - table2Version = 171 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards anomaly -'171175' = { - table2Version = 171 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation anomaly -'171176' = { - table2Version = 171 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation anomaly -'171177' = { - table2Version = 171 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation anomaly -'171178' = { - table2Version = 171 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation anomaly -'171179' = { - table2Version = 171 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomaly -'171180' = { - table2Version = 171 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomaly -'171181' = { - table2Version = 171 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomaly -'171182' = { - table2Version = 171 ; - indicatorOfParameter = 182 ; - } -#Soil temperature anomaly level 3 -'171183' = { - table2Version = 171 ; - indicatorOfParameter = 183 ; - } -#Soil wetness anomaly level 3 -'171184' = { - table2Version = 171 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover anomaly -'171185' = { - table2Version = 171 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover anomaly -'171186' = { - table2Version = 171 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover anomaly -'171187' = { - table2Version = 171 ; - indicatorOfParameter = 187 ; - } -#High cloud cover anomaly -'171188' = { - table2Version = 171 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration anomaly -'171189' = { - table2Version = 171 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'171190' = { - table2Version = 171 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'171191' = { - table2Version = 171 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'171192' = { - table2Version = 171 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'171193' = { - table2Version = 171 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature anomaly -'171194' = { - table2Version = 171 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'171195' = { - table2Version = 171 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'171196' = { - table2Version = 171 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'171197' = { - table2Version = 171 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content anomaly -'171198' = { - table2Version = 171 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction anomaly -'171199' = { - table2Version = 171 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography anomaly -'171200' = { - table2Version = 171 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres anomaly -'171201' = { - table2Version = 171 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres anomaly -'171202' = { - table2Version = 171 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio anomaly -'171203' = { - table2Version = 171 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights anomaly -'171204' = { - table2Version = 171 ; - indicatorOfParameter = 204 ; - } -#Runoff anomaly -'171205' = { - table2Version = 171 ; - indicatorOfParameter = 205 ; - } -#Total column ozone anomaly -'171206' = { - table2Version = 171 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed anomaly -'171207' = { - table2Version = 171 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation clear sky anomaly -'171208' = { - table2Version = 171 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation clear sky anomaly -'171209' = { - table2Version = 171 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation clear sky anomaly -'171210' = { - table2Version = 171 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'171211' = { - table2Version = 171 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomaly -'171212' = { - table2Version = 171 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation anomaly -'171214' = { - table2Version = 171 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'171215' = { - table2Version = 171 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'171216' = { - table2Version = 171 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'171217' = { - table2Version = 171 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'171218' = { - table2Version = 171 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'171219' = { - table2Version = 171 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency anomaly -'171220' = { - table2Version = 171 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency anomaly -'171221' = { - table2Version = 171 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind anomaly -'171222' = { - table2Version = 171 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind anomaly -'171223' = { - table2Version = 171 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity anomaly -'171224' = { - table2Version = 171 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'171225' = { - table2Version = 171 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'171226' = { - table2Version = 171 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity anomaly -'171227' = { - table2Version = 171 ; - indicatorOfParameter = 227 ; - } -#Total precipitation anomaly -'171228' = { - table2Version = 171 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress anomaly -'171229' = { - table2Version = 171 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress anomaly -'171230' = { - table2Version = 171 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux anomaly -'171231' = { - table2Version = 171 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux anomaly -'171232' = { - table2Version = 171 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity anomaly -'171233' = { - table2Version = 171 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'171234' = { - table2Version = 171 ; - indicatorOfParameter = 234 ; - } -#Skin temperature anomaly -'171235' = { - table2Version = 171 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 anomaly -'171236' = { - table2Version = 171 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 anomaly -'171237' = { - table2Version = 171 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer anomaly -'171238' = { - table2Version = 171 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall anomaly -'171239' = { - table2Version = 171 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'171240' = { - table2Version = 171 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'171241' = { - table2Version = 171 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency anomaly -'171242' = { - table2Version = 171 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo anomaly -'171243' = { - table2Version = 171 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness anomaly -'171244' = { - table2Version = 171 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'171245' = { - table2Version = 171 ; - indicatorOfParameter = 245 ; - } -#Cloud liquid water content anomaly -'171246' = { - table2Version = 171 ; - indicatorOfParameter = 246 ; - } -#Cloud ice water content anomaly -'171247' = { - table2Version = 171 ; - indicatorOfParameter = 247 ; - } -#Cloud cover anomaly -'171248' = { - table2Version = 171 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency anomaly -'171249' = { - table2Version = 171 ; - indicatorOfParameter = 249 ; - } -#Ice age anomaly -'171250' = { - table2Version = 171 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature anomaly -'171251' = { - table2Version = 171 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity anomaly -'171252' = { - table2Version = 171 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'171253' = { - table2Version = 171 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'171254' = { - table2Version = 171 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'171255' = { - table2Version = 171 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation -'172044' = { - table2Version = 172 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'172045' = { - table2Version = 172 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress -'172048' = { - table2Version = 172 ; - indicatorOfParameter = 48 ; - } -#Mean large-scale precipitation fraction -'172050' = { - table2Version = 172 ; - indicatorOfParameter = 50 ; - } -#Mean large-scale precipitation rate -'172142' = { - table2Version = 172 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate -'172143' = { - table2Version = 172 ; - indicatorOfParameter = 143 ; - } -#Mean total snowfall rate -'172144' = { - table2Version = 172 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'172145' = { - table2Version = 172 ; - indicatorOfParameter = 145 ; - } -#Mean surface sensible heat flux -'172146' = { - table2Version = 172 ; - indicatorOfParameter = 146 ; - } -#Mean surface latent heat flux -'172147' = { - table2Version = 172 ; - indicatorOfParameter = 147 ; - } -#Mean surface net radiation flux -'172149' = { - table2Version = 172 ; - indicatorOfParameter = 149 ; - } -#Mean short-wave heating rate -'172153' = { - table2Version = 172 ; - indicatorOfParameter = 153 ; - } -#Mean long-wave heating rate -'172154' = { - table2Version = 172 ; - indicatorOfParameter = 154 ; - } -#Mean surface downward solar radiation flux -'172169' = { - table2Version = 172 ; - indicatorOfParameter = 169 ; - } -#Mean surface downward thermal radiation flux -'172175' = { - table2Version = 172 ; - indicatorOfParameter = 175 ; - } -#Mean surface net solar radiation flux -'172176' = { - table2Version = 172 ; - indicatorOfParameter = 176 ; - } -#Mean surface net thermal radiation flux -'172177' = { - table2Version = 172 ; - indicatorOfParameter = 177 ; - } -#Mean top net solar radiation flux -'172178' = { - table2Version = 172 ; - indicatorOfParameter = 178 ; - } -#Mean top net thermal radiation flux -'172179' = { - table2Version = 172 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress rate of accumulation -'172180' = { - table2Version = 172 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress rate of accumulation -'172181' = { - table2Version = 172 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'172182' = { - table2Version = 172 ; - indicatorOfParameter = 182 ; - } -#Mean sunshine duration rate -'172189' = { - table2Version = 172 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress -'172195' = { - table2Version = 172 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress -'172196' = { - table2Version = 172 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'172197' = { - table2Version = 172 ; - indicatorOfParameter = 197 ; - } -#Mean runoff rate -'172205' = { - table2Version = 172 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky -'172208' = { - table2Version = 172 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'172209' = { - table2Version = 172 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'172210' = { - table2Version = 172 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'172211' = { - table2Version = 172 ; - indicatorOfParameter = 211 ; - } -#Solar insolation rate of accumulation -'172212' = { - table2Version = 172 ; - indicatorOfParameter = 212 ; - } -#Mean total precipitation rate -'172228' = { - table2Version = 172 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall -'172239' = { - table2Version = 172 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'172240' = { - table2Version = 172 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'172255' = { - table2Version = 172 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation anomaly -'173044' = { - table2Version = 173 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'173045' = { - table2Version = 173 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'173048' = { - table2Version = 173 ; - indicatorOfParameter = 48 ; - } -#Large-scale precipitation fraction anomaly -'173050' = { - table2Version = 173 ; - indicatorOfParameter = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'173142' = { - table2Version = 173 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate anomaly -'173143' = { - table2Version = 173 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'173144' = { - table2Version = 173 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'173145' = { - table2Version = 173 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'173146' = { - table2Version = 173 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'173147' = { - table2Version = 173 ; - indicatorOfParameter = 147 ; - } -#Surface net radiation anomaly -'173149' = { - table2Version = 173 ; - indicatorOfParameter = 149 ; - } -#Short-wave heating rate anomaly -'173153' = { - table2Version = 173 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'173154' = { - table2Version = 173 ; - indicatorOfParameter = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'173169' = { - table2Version = 173 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'173175' = { - table2Version = 173 ; - indicatorOfParameter = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'173176' = { - table2Version = 173 ; - indicatorOfParameter = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'173177' = { - table2Version = 173 ; - indicatorOfParameter = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'173178' = { - table2Version = 173 ; - indicatorOfParameter = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'173179' = { - table2Version = 173 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'173180' = { - table2Version = 173 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'173181' = { - table2Version = 173 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomalous rate of accumulation -'173182' = { - table2Version = 173 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'173189' = { - table2Version = 173 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'173195' = { - table2Version = 173 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'173196' = { - table2Version = 173 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'173197' = { - table2Version = 173 ; - indicatorOfParameter = 197 ; - } -#Runoff anomalous rate of accumulation -'173205' = { - table2Version = 173 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky anomaly -'173208' = { - table2Version = 173 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'173209' = { - table2Version = 173 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'173210' = { - table2Version = 173 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'173211' = { - table2Version = 173 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomalous rate of accumulation -'173212' = { - table2Version = 173 ; - indicatorOfParameter = 212 ; - } -#Total precipitation anomalous rate of accumulation -'173228' = { - table2Version = 173 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall anomaly -'173239' = { - table2Version = 173 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'173240' = { - table2Version = 173 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'173255' = { - table2Version = 173 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'174006' = { - table2Version = 174 ; - indicatorOfParameter = 6 ; - } -#Surface runoff -'174008' = { - table2Version = 174 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'174009' = { - table2Version = 174 ; - indicatorOfParameter = 9 ; - } -#Fraction of sea-ice in sea -'174031' = { - table2Version = 174 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'174034' = { - table2Version = 174 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'174039' = { - table2Version = 174 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'174040' = { - table2Version = 174 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'174041' = { - table2Version = 174 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'174042' = { - table2Version = 174 ; - indicatorOfParameter = 42 ; - } -#10 metre wind gust in the last 24 hours -'174049' = { - table2Version = 174 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'174055' = { - table2Version = 174 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'174083' = { - table2Version = 174 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'174085' = { - table2Version = 174 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'174086' = { - table2Version = 174 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'174087' = { - table2Version = 174 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'174088' = { - table2Version = 174 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'174089' = { - table2Version = 174 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'174090' = { - table2Version = 174 ; - indicatorOfParameter = 90 ; - } -#Mean sea surface temperature -'174094' = { - table2Version = 174 ; - indicatorOfParameter = 94 ; - } -#1.5m specific humidity -'174095' = { - table2Version = 174 ; - indicatorOfParameter = 95 ; - } -#Sea-ice thickness -'174098' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Liquid water potential temperature -'174099' = { - table2Version = 174 ; - indicatorOfParameter = 99 ; - } -#Ocean ice concentration -'174110' = { - table2Version = 174 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'174111' = { - table2Version = 174 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'174139' = { - table2Version = 174 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'174164' = { - table2Version = 174 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'174167' = { - table2Version = 174 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'174168' = { - table2Version = 174 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'174170' = { - table2Version = 174 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'174175' = { - table2Version = 174 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'174183' = { - table2Version = 174 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'174201' = { - table2Version = 174 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'174202' = { - table2Version = 174 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'174236' = { - table2Version = 174 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'174255' = { - table2Version = 174 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'175006' = { - table2Version = 175 ; - indicatorOfParameter = 6 ; - } -#Fraction of sea-ice in sea -'175031' = { - table2Version = 175 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'175034' = { - table2Version = 175 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'175039' = { - table2Version = 175 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'175040' = { - table2Version = 175 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'175041' = { - table2Version = 175 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'175042' = { - table2Version = 175 ; - indicatorOfParameter = 42 ; - } -#10m wind gust in the last 24 hours -'175049' = { - table2Version = 175 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'175055' = { - table2Version = 175 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'175083' = { - table2Version = 175 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'175085' = { - table2Version = 175 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'175086' = { - table2Version = 175 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'175087' = { - table2Version = 175 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'175088' = { - table2Version = 175 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'175089' = { - table2Version = 175 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'175090' = { - table2Version = 175 ; - indicatorOfParameter = 90 ; - } -#Ocean ice concentration -'175110' = { - table2Version = 175 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'175111' = { - table2Version = 175 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'175139' = { - table2Version = 175 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'175164' = { - table2Version = 175 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'175167' = { - table2Version = 175 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'175168' = { - table2Version = 175 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'175170' = { - table2Version = 175 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'175175' = { - table2Version = 175 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'175183' = { - table2Version = 175 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'175201' = { - table2Version = 175 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'175202' = { - table2Version = 175 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'175236' = { - table2Version = 175 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'175255' = { - table2Version = 175 ; - indicatorOfParameter = 255 ; - } -#Total soil wetness -'180149' = { - table2Version = 180 ; - indicatorOfParameter = 149 ; - } -#Surface net solar radiation -'180176' = { - table2Version = 180 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'180177' = { - table2Version = 180 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'180178' = { - table2Version = 180 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'180179' = { - table2Version = 180 ; - indicatorOfParameter = 179 ; - } -#Snow depth -'190141' = { - table2Version = 190 ; - indicatorOfParameter = 141 ; - } -#Field capacity -'190170' = { - table2Version = 190 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'190171' = { - table2Version = 190 ; - indicatorOfParameter = 171 ; - } -#Roughness length -'190173' = { - table2Version = 190 ; - indicatorOfParameter = 173 ; - } -#Total soil moisture -'190229' = { - table2Version = 190 ; - indicatorOfParameter = 229 ; - } -#2 metre dewpoint temperature difference -'200168' = { - table2Version = 200 ; - indicatorOfParameter = 168 ; - } -#downward shortwave radiant flux density -'201001' = { - table2Version = 201 ; - indicatorOfParameter = 1 ; - } -#upward shortwave radiant flux density -'201002' = { - table2Version = 201 ; - indicatorOfParameter = 2 ; - } -#downward longwave radiant flux density -'201003' = { - table2Version = 201 ; - indicatorOfParameter = 3 ; - } -#upward longwave radiant flux density -'201004' = { - table2Version = 201 ; - indicatorOfParameter = 4 ; - } -#downwd photosynthetic active radiant flux density -'201005' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - } -#net shortwave flux -'201006' = { - table2Version = 201 ; - indicatorOfParameter = 6 ; - } -#net longwave flux -'201007' = { - table2Version = 201 ; - indicatorOfParameter = 7 ; - } -#total net radiative flux density -'201008' = { - table2Version = 201 ; - indicatorOfParameter = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'201009' = { - table2Version = 201 ; - indicatorOfParameter = 9 ; - } -#upw shortw radiant flux density, cloudy part -'201010' = { - table2Version = 201 ; - indicatorOfParameter = 10 ; - } -#downw longw radiant flux density, cloudfree part -'201011' = { - table2Version = 201 ; - indicatorOfParameter = 11 ; - } -#upw longw radiant flux density, cloudy part -'201012' = { - table2Version = 201 ; - indicatorOfParameter = 12 ; - } -#shortwave radiative heating rate -'201013' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } -#longwave radiative heating rate -'201014' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } -#total radiative heating rate -'201015' = { - table2Version = 201 ; - indicatorOfParameter = 15 ; - } -#soil heat flux, surface -'201016' = { - table2Version = 201 ; - indicatorOfParameter = 16 ; - } -#soil heat flux, bottom of layer -'201017' = { - table2Version = 201 ; - indicatorOfParameter = 17 ; - } -#fractional cloud cover -'201029' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } -#cloud cover, grid scale -'201030' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } -#specific cloud water content -'201031' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } -#cloud water content, grid scale, vert integrated -'201032' = { - table2Version = 201 ; - indicatorOfParameter = 32 ; - } -#specific cloud ice content, grid scale -'201033' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } -#cloud ice content, grid scale, vert integrated -'201034' = { - table2Version = 201 ; - indicatorOfParameter = 34 ; - } -#specific rainwater content, grid scale -'201035' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } -#specific snow content, grid scale -'201036' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } -#specific rainwater content, gs, vert. integrated -'201037' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } -#specific snow content, gs, vert. integrated -'201038' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } -#total column water -'201041' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } -#vert. integral of divergence of tot. water content -'201042' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'201050' = { - table2Version = 201 ; - indicatorOfParameter = 50 ; - } -#cloud cover CH (0..8) -'201051' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'201052' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'201053' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#total cloud cover (0..8) -'201054' = { - table2Version = 201 ; - indicatorOfParameter = 54 ; - } -#fog (0..8) -'201055' = { - table2Version = 201 ; - indicatorOfParameter = 55 ; - } -#fog -'201056' = { - table2Version = 201 ; - indicatorOfParameter = 56 ; - } -#cloud cover, convective cirrus -'201060' = { - table2Version = 201 ; - indicatorOfParameter = 60 ; - } -#specific cloud water content, convective clouds -'201061' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } -#cloud water content, conv clouds, vert integrated -'201062' = { - table2Version = 201 ; - indicatorOfParameter = 62 ; - } -#specific cloud ice content, convective clouds -'201063' = { - table2Version = 201 ; - indicatorOfParameter = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'201064' = { - table2Version = 201 ; - indicatorOfParameter = 64 ; - } -#convective mass flux -'201065' = { - table2Version = 201 ; - indicatorOfParameter = 65 ; - } -#Updraft velocity, convection -'201066' = { - table2Version = 201 ; - indicatorOfParameter = 66 ; - } -#entrainment parameter, convection -'201067' = { - table2Version = 201 ; - indicatorOfParameter = 67 ; - } -#cloud base, convective clouds (above msl) -'201068' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - } -#cloud top, convective clouds (above msl) -'201069' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - } -#convective layers (00...77) (BKE) -'201070' = { - table2Version = 201 ; - indicatorOfParameter = 70 ; - } -#KO-index -'201071' = { - table2Version = 201 ; - indicatorOfParameter = 71 ; - } -#convection base index -'201072' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - } -#convection top index -'201073' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - } -#convective temperature tendency -'201074' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } -#convective tendency of specific humidity -'201075' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } -#convective tendency of total heat -'201076' = { - table2Version = 201 ; - indicatorOfParameter = 76 ; - } -#convective tendency of total water -'201077' = { - table2Version = 201 ; - indicatorOfParameter = 77 ; - } -#convective momentum tendency (X-component) -'201078' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } -#convective momentum tendency (Y-component) -'201079' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } -#convective vorticity tendency -'201080' = { - table2Version = 201 ; - indicatorOfParameter = 80 ; - } -#convective divergence tendency -'201081' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#top of dry convection (above msl) -'201082' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - } -#dry convection top index -'201083' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'201084' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - } -#height of snow-fall limit -'201085' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - } -#spec. content of precip. particles -'201099' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } -#surface precipitation rate, rain, grid scale -'201100' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } -#surface precipitation rate, snow, grid scale -'201101' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } -#surface precipitation amount, rain, grid scale -'201102' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } -#surface precipitation rate, rain, convective -'201111' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } -#surface precipitation rate, snow, convective -'201112' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } -#surface precipitation amount, rain, convective -'201113' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } -#deviation of pressure from reference value -'201139' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } -#coefficient of horizontal diffusion -'201150' = { - table2Version = 201 ; - indicatorOfParameter = 150 ; - } -#Maximum wind velocity -'201187' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - } -#water content of interception store -'201200' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } -#snow temperature -'201203' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } -#ice surface temperature -'201215' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } -#convective available potential energy -'201241' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } -#Indicates a missing value -'201255' = { - table2Version = 201 ; - indicatorOfParameter = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'210001' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'210002' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'210003' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'210004' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'210005' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'210006' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'210007' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'210008' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'210009' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'210010' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'210011' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } -#SO2 precursor mixing ratio -'210012' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'210016' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'210017' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'210018' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'210019' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'210020' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'210021' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'210022' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'210023' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'210024' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'210025' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'210026' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'210027' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'210031' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'210032' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'210033' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'210034' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'210035' = { - table2Version = 210 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'210036' = { - table2Version = 210 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'210037' = { - table2Version = 210 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'210038' = { - table2Version = 210 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'210039' = { - table2Version = 210 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'210040' = { - table2Version = 210 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'210041' = { - table2Version = 210 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'210042' = { - table2Version = 210 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'210046' = { - table2Version = 210 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'210047' = { - table2Version = 210 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'210048' = { - table2Version = 210 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'210049' = { - table2Version = 210 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'210050' = { - table2Version = 210 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'210051' = { - table2Version = 210 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'210052' = { - table2Version = 210 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'210053' = { - table2Version = 210 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'210054' = { - table2Version = 210 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'210061' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'210062' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'210063' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#CO2 column-mean molar fraction -'210064' = { - table2Version = 210 ; - indicatorOfParameter = 64 ; - } -#CH4 column-mean molar fraction -'210065' = { - table2Version = 210 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'210066' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'210067' = { - table2Version = 210 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'210068' = { - table2Version = 210 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'210069' = { - table2Version = 210 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'210070' = { - table2Version = 210 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'210071' = { - table2Version = 210 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'210080' = { - table2Version = 210 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'210081' = { - table2Version = 210 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'210082' = { - table2Version = 210 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'210083' = { - table2Version = 210 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'210084' = { - table2Version = 210 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'210085' = { - table2Version = 210 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'210086' = { - table2Version = 210 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'210087' = { - table2Version = 210 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'210088' = { - table2Version = 210 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'210089' = { - table2Version = 210 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'210090' = { - table2Version = 210 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'210091' = { - table2Version = 210 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'210092' = { - table2Version = 210 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'210093' = { - table2Version = 210 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'210094' = { - table2Version = 210 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'210095' = { - table2Version = 210 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'210096' = { - table2Version = 210 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'210097' = { - table2Version = 210 ; - indicatorOfParameter = 97 ; - } -#Number of positive FRP pixels per grid cell -'210098' = { - table2Version = 210 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'210099' = { - table2Version = 210 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'210100' = { - table2Version = 210 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'210121' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'210122' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'210123' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'210124' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'210125' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'210126' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'210127' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'210128' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'210129' = { - table2Version = 210 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'210130' = { - table2Version = 210 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'210131' = { - table2Version = 210 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'210132' = { - table2Version = 210 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'210133' = { - table2Version = 210 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'210134' = { - table2Version = 210 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'210135' = { - table2Version = 210 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'210136' = { - table2Version = 210 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'210137' = { - table2Version = 210 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'210138' = { - table2Version = 210 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'210139' = { - table2Version = 210 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'210140' = { - table2Version = 210 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'210141' = { - table2Version = 210 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'210142' = { - table2Version = 210 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'210143' = { - table2Version = 210 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'210144' = { - table2Version = 210 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'210145' = { - table2Version = 210 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'210146' = { - table2Version = 210 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'210147' = { - table2Version = 210 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'210148' = { - table2Version = 210 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'210149' = { - table2Version = 210 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'210150' = { - table2Version = 210 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'210151' = { - table2Version = 210 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'210152' = { - table2Version = 210 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'210153' = { - table2Version = 210 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'210154' = { - table2Version = 210 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'210155' = { - table2Version = 210 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'210156' = { - table2Version = 210 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'210157' = { - table2Version = 210 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'210158' = { - table2Version = 210 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'210159' = { - table2Version = 210 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'210160' = { - table2Version = 210 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'210161' = { - table2Version = 210 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'210162' = { - table2Version = 210 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'210163' = { - table2Version = 210 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'210164' = { - table2Version = 210 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'210165' = { - table2Version = 210 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'210166' = { - table2Version = 210 ; - indicatorOfParameter = 166 ; - } -#Radon -'210181' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'210182' = { - table2Version = 210 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'210183' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'210184' = { - table2Version = 210 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'210185' = { - table2Version = 210 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'210203' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'210206' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'210207' = { - table2Version = 210 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'210208' = { - table2Version = 210 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'210209' = { - table2Version = 210 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'210210' = { - table2Version = 210 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'210211' = { - table2Version = 210 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'210212' = { - table2Version = 210 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'210213' = { - table2Version = 210 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'210214' = { - table2Version = 210 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'210215' = { - table2Version = 210 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'210216' = { - table2Version = 210 ; - indicatorOfParameter = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'211001' = { - table2Version = 211 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'211002' = { - table2Version = 211 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'211003' = { - table2Version = 211 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'211004' = { - table2Version = 211 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'211005' = { - table2Version = 211 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'211006' = { - table2Version = 211 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'211007' = { - table2Version = 211 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'211008' = { - table2Version = 211 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'211009' = { - table2Version = 211 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'211010' = { - table2Version = 211 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'211011' = { - table2Version = 211 ; - indicatorOfParameter = 11 ; - } -#Aerosol type 12 mixing ratio -'211012' = { - table2Version = 211 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'211016' = { - table2Version = 211 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'211017' = { - table2Version = 211 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'211018' = { - table2Version = 211 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'211019' = { - table2Version = 211 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'211020' = { - table2Version = 211 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'211021' = { - table2Version = 211 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'211022' = { - table2Version = 211 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'211023' = { - table2Version = 211 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'211024' = { - table2Version = 211 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'211025' = { - table2Version = 211 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'211026' = { - table2Version = 211 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'211027' = { - table2Version = 211 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'211031' = { - table2Version = 211 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'211032' = { - table2Version = 211 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'211033' = { - table2Version = 211 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'211034' = { - table2Version = 211 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'211035' = { - table2Version = 211 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'211036' = { - table2Version = 211 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'211037' = { - table2Version = 211 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'211038' = { - table2Version = 211 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'211039' = { - table2Version = 211 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'211040' = { - table2Version = 211 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'211041' = { - table2Version = 211 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'211042' = { - table2Version = 211 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'211046' = { - table2Version = 211 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'211047' = { - table2Version = 211 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'211048' = { - table2Version = 211 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'211049' = { - table2Version = 211 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'211050' = { - table2Version = 211 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'211051' = { - table2Version = 211 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'211052' = { - table2Version = 211 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'211053' = { - table2Version = 211 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'211054' = { - table2Version = 211 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'211061' = { - table2Version = 211 ; - indicatorOfParameter = 61 ; - } -#Methane -'211062' = { - table2Version = 211 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'211063' = { - table2Version = 211 ; - indicatorOfParameter = 63 ; - } -#Total column Carbon Dioxide -'211064' = { - table2Version = 211 ; - indicatorOfParameter = 64 ; - } -#Total column Methane -'211065' = { - table2Version = 211 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'211066' = { - table2Version = 211 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'211067' = { - table2Version = 211 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'211068' = { - table2Version = 211 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'211069' = { - table2Version = 211 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'211070' = { - table2Version = 211 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'211071' = { - table2Version = 211 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'211080' = { - table2Version = 211 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'211081' = { - table2Version = 211 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'211082' = { - table2Version = 211 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'211083' = { - table2Version = 211 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'211084' = { - table2Version = 211 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'211085' = { - table2Version = 211 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'211086' = { - table2Version = 211 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'211087' = { - table2Version = 211 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'211088' = { - table2Version = 211 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'211089' = { - table2Version = 211 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'211090' = { - table2Version = 211 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'211091' = { - table2Version = 211 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'211092' = { - table2Version = 211 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'211093' = { - table2Version = 211 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'211094' = { - table2Version = 211 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'211095' = { - table2Version = 211 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'211096' = { - table2Version = 211 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'211097' = { - table2Version = 211 ; - indicatorOfParameter = 97 ; - } -#Wildfire observed area -'211098' = { - table2Version = 211 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'211099' = { - table2Version = 211 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'211100' = { - table2Version = 211 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'211121' = { - table2Version = 211 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'211122' = { - table2Version = 211 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'211123' = { - table2Version = 211 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'211124' = { - table2Version = 211 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'211125' = { - table2Version = 211 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'211126' = { - table2Version = 211 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'211127' = { - table2Version = 211 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'211128' = { - table2Version = 211 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'211129' = { - table2Version = 211 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'211130' = { - table2Version = 211 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'211131' = { - table2Version = 211 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'211132' = { - table2Version = 211 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'211133' = { - table2Version = 211 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'211134' = { - table2Version = 211 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'211135' = { - table2Version = 211 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'211136' = { - table2Version = 211 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'211137' = { - table2Version = 211 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'211138' = { - table2Version = 211 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'211139' = { - table2Version = 211 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'211140' = { - table2Version = 211 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'211141' = { - table2Version = 211 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'211142' = { - table2Version = 211 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'211143' = { - table2Version = 211 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'211144' = { - table2Version = 211 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'211145' = { - table2Version = 211 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'211146' = { - table2Version = 211 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'211147' = { - table2Version = 211 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'211148' = { - table2Version = 211 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'211149' = { - table2Version = 211 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'211150' = { - table2Version = 211 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'211151' = { - table2Version = 211 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'211152' = { - table2Version = 211 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'211153' = { - table2Version = 211 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'211154' = { - table2Version = 211 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'211155' = { - table2Version = 211 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'211156' = { - table2Version = 211 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'211157' = { - table2Version = 211 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'211158' = { - table2Version = 211 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'211159' = { - table2Version = 211 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'211160' = { - table2Version = 211 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'211161' = { - table2Version = 211 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'211162' = { - table2Version = 211 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'211163' = { - table2Version = 211 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'211164' = { - table2Version = 211 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'211165' = { - table2Version = 211 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'211166' = { - table2Version = 211 ; - indicatorOfParameter = 166 ; - } -#Radon -'211181' = { - table2Version = 211 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'211182' = { - table2Version = 211 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'211183' = { - table2Version = 211 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'211184' = { - table2Version = 211 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'211185' = { - table2Version = 211 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'211203' = { - table2Version = 211 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'211206' = { - table2Version = 211 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'211207' = { - table2Version = 211 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'211208' = { - table2Version = 211 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'211209' = { - table2Version = 211 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'211210' = { - table2Version = 211 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'211211' = { - table2Version = 211 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'211212' = { - table2Version = 211 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'211213' = { - table2Version = 211 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'211214' = { - table2Version = 211 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'211215' = { - table2Version = 211 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'211216' = { - table2Version = 211 ; - indicatorOfParameter = 216 ; - } -#Total precipitation observation count -'220228' = { - table2Version = 220 ; - indicatorOfParameter = 228 ; - } -#Convective inhibition -'228001' = { - table2Version = 228 ; - indicatorOfParameter = 1 ; - } -#Orography -'228002' = { - table2Version = 228 ; - indicatorOfParameter = 2 ; - } -#Friction velocity -'228003' = { - table2Version = 228 ; - indicatorOfParameter = 3 ; - } -#Mean temperature at 2 metres -'228004' = { - table2Version = 228 ; - indicatorOfParameter = 4 ; - } -#Mean of 10 metre wind speed -'228005' = { - table2Version = 228 ; - indicatorOfParameter = 5 ; - } -#Mean total cloud cover -'228006' = { - table2Version = 228 ; - indicatorOfParameter = 6 ; - } -#Lake depth -'228007' = { - table2Version = 228 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature -'228008' = { - table2Version = 228 ; - indicatorOfParameter = 8 ; - } -#Lake mix-layer depth -'228009' = { - table2Version = 228 ; - indicatorOfParameter = 9 ; - } -#Lake bottom temperature -'228010' = { - table2Version = 228 ; - indicatorOfParameter = 10 ; - } -#Lake total layer temperature -'228011' = { - table2Version = 228 ; - indicatorOfParameter = 11 ; - } -#Lake shape factor -'228012' = { - table2Version = 228 ; - indicatorOfParameter = 12 ; - } -#Lake ice temperature -'228013' = { - table2Version = 228 ; - indicatorOfParameter = 13 ; - } -#Lake ice depth -'228014' = { - table2Version = 228 ; - indicatorOfParameter = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'228015' = { - table2Version = 228 ; - indicatorOfParameter = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'228016' = { - table2Version = 228 ; - indicatorOfParameter = 16 ; - } -#Duct base height -'228017' = { - table2Version = 228 ; - indicatorOfParameter = 17 ; - } -#Trapping layer base height -'228018' = { - table2Version = 228 ; - indicatorOfParameter = 18 ; - } -#Trapping layer top height -'228019' = { - table2Version = 228 ; - indicatorOfParameter = 19 ; - } -#Soil Moisture -'228039' = { - table2Version = 228 ; - indicatorOfParameter = 39 ; - } -#Neutral wind at 10 m u-component -'228131' = { - table2Version = 228 ; - indicatorOfParameter = 131 ; - } -#Neutral wind at 10 m v-component -'228132' = { - table2Version = 228 ; - indicatorOfParameter = 132 ; - } -#Soil Temperature -'228139' = { - table2Version = 228 ; - indicatorOfParameter = 139 ; - } -#Snow depth water equivalent -'228141' = { - table2Version = 228 ; - indicatorOfParameter = 141 ; - } -#Snow Fall water equivalent -'228144' = { - table2Version = 228 ; - indicatorOfParameter = 144 ; - } -#Total Cloud Cover -'228164' = { - table2Version = 228 ; - indicatorOfParameter = 164 ; - } -#Field capacity -'228170' = { - table2Version = 228 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'228171' = { - table2Version = 228 ; - indicatorOfParameter = 171 ; - } -#Total Precipitation -'228228' = { - table2Version = 228 ; - indicatorOfParameter = 228 ; - } -#Snow evaporation (variable resolution) -'230044' = { - table2Version = 230 ; - indicatorOfParameter = 44 ; - } -#Snowmelt (variable resolution) -'230045' = { - table2Version = 230 ; - indicatorOfParameter = 45 ; - } -#Solar duration (variable resolution) -'230046' = { - table2Version = 230 ; - indicatorOfParameter = 46 ; - } -#Downward UV radiation at the surface (variable resolution) -'230057' = { - table2Version = 230 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface (variable resolution) -'230058' = { - table2Version = 230 ; - indicatorOfParameter = 58 ; - } -#Stratiform precipitation (Large-scale precipitation) (variable resolution) -'230142' = { - table2Version = 230 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation (variable resolution) -'230143' = { - table2Version = 230 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) (variable resolution) -'230144' = { - table2Version = 230 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation (variable resolution) -'230145' = { - table2Version = 230 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux (variable resolution) -'230146' = { - table2Version = 230 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux (variable resolution) -'230147' = { - table2Version = 230 ; - indicatorOfParameter = 147 ; - } -#Surface solar radiation downwards (variable resolution) -'230169' = { - table2Version = 230 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards (variable resolution) -'230175' = { - table2Version = 230 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation (variable resolution) -'230176' = { - table2Version = 230 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation (variable resolution) -'230177' = { - table2Version = 230 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation (variable resolution) -'230178' = { - table2Version = 230 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation (variable resolution) -'230179' = { - table2Version = 230 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress (variable resolution) -'230180' = { - table2Version = 230 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress (variable resolution) -'230181' = { - table2Version = 230 ; - indicatorOfParameter = 181 ; - } -#Evaporation (variable resolution) -'230182' = { - table2Version = 230 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration (variable resolution) -'230189' = { - table2Version = 230 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress (variable resolution) -'230195' = { - table2Version = 230 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress (variable resolution) -'230196' = { - table2Version = 230 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation (variable resolution) -'230197' = { - table2Version = 230 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content (variable resolution) -'230198' = { - table2Version = 230 ; - indicatorOfParameter = 198 ; - } -#Runoff (variable resolution) -'230205' = { - table2Version = 230 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky (variable resolution) -'230208' = { - table2Version = 230 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky (variable resolution) -'230209' = { - table2Version = 230 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky (variable resolution) -'230210' = { - table2Version = 230 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky (variable resolution) -'230211' = { - table2Version = 230 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation (variable resolution) -'230212' = { - table2Version = 230 ; - indicatorOfParameter = 212 ; - } -#Surface temperature significance -'234139' = { - table2Version = 234 ; - indicatorOfParameter = 139 ; - } -#Mean sea level pressure significance -'234151' = { - table2Version = 234 ; - indicatorOfParameter = 151 ; - } -#2 metre temperature significance -'234167' = { - table2Version = 234 ; - indicatorOfParameter = 167 ; - } -#Total precipitation significance -'234228' = { - table2Version = 234 ; - indicatorOfParameter = 228 ; - } -#U-component stokes drift -'140215' = { - table2Version = 140 ; - indicatorOfParameter = 215 ; - } -#V-component stokes drift -'140216' = { - table2Version = 140 ; - indicatorOfParameter = 216 ; - } -#Wildfire radiative power maximum -'210101' = { - table2Version = 210 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'210102' = { - table2Version = 210 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'210103' = { - table2Version = 210 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'210104' = { - table2Version = 210 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'210105' = { - table2Version = 210 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'210106' = { - table2Version = 210 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'210107' = { - table2Version = 210 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'210108' = { - table2Version = 210 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'210109' = { - table2Version = 210 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'210110' = { - table2Version = 210 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'210111' = { - table2Version = 210 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'210112' = { - table2Version = 210 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'210113' = { - table2Version = 210 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'210114' = { - table2Version = 210 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'210115' = { - table2Version = 210 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'210116' = { - table2Version = 210 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'210117' = { - table2Version = 210 ; - indicatorOfParameter = 117 ; - } -#Wildfire radiative power maximum -'211101' = { - table2Version = 211 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'211102' = { - table2Version = 211 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'211103' = { - table2Version = 211 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'211104' = { - table2Version = 211 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'211105' = { - table2Version = 211 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'211106' = { - table2Version = 211 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'211107' = { - table2Version = 211 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'211108' = { - table2Version = 211 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'211109' = { - table2Version = 211 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'211110' = { - table2Version = 211 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'211111' = { - table2Version = 211 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'211112' = { - table2Version = 211 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'211113' = { - table2Version = 211 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'211114' = { - table2Version = 211 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'211115' = { - table2Version = 211 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'211116' = { - table2Version = 211 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'211117' = { - table2Version = 211 ; - indicatorOfParameter = 117 ; - } -#V-tendency from non-orographic wave drag -'228134' = { - table2Version = 228 ; - indicatorOfParameter = 134 ; - } -#U-tendency from non-orographic wave drag -'228136' = { - table2Version = 228 ; - indicatorOfParameter = 136 ; - } -#100 metre U wind component -'228246' = { - table2Version = 228 ; - indicatorOfParameter = 246 ; - } -#100 metre V wind component -'228247' = { - table2Version = 228 ; - indicatorOfParameter = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'228253' = { - table2Version = 228 ; - indicatorOfParameter = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'228254' = { - table2Version = 228 ; - indicatorOfParameter = 254 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def deleted file mode 100644 index c6bbdf88..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/shortName.def +++ /dev/null @@ -1,17676 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - table2Version = 131 ; - indicatorOfParameter = 60 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - table2Version = 131 ; - indicatorOfParameter = 61 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - table2Version = 131 ; - indicatorOfParameter = 62 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - table2Version = 131 ; - indicatorOfParameter = 63 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - table2Version = 131 ; - indicatorOfParameter = 82 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - table2Version = 131 ; - indicatorOfParameter = 83 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - table2Version = 131 ; - indicatorOfParameter = 84 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - table2Version = 131 ; - indicatorOfParameter = 85 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - table2Version = 131 ; - indicatorOfParameter = 86 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - table2Version = 131 ; - indicatorOfParameter = 87 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - table2Version = 131 ; - indicatorOfParameter = 88 ; - } -#Stream function -'strf' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -#Velocity potential -'vp' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -#Potential temperature -'pt' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature -'eqpt' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -#Soil sand fraction -'ssfr' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -#Soil clay fraction -'scfr' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -#Surface runoff -'sro' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'ssro' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -#Wind speed -'ws' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -#U component of divergent wind -'udvw' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind -'vdvw' = { - table2Version = 128 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind -'urtw' = { - table2Version = 128 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind -'vrtw' = { - table2Version = 128 ; - indicatorOfParameter = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - table2Version = 128 ; - indicatorOfParameter = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - table2Version = 128 ; - indicatorOfParameter = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - table2Version = 128 ; - indicatorOfParameter = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - table2Version = 128 ; - indicatorOfParameter = 18 ; - } -#Clear sky surface UV -'uvcs' = { - table2Version = 128 ; - indicatorOfParameter = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - table2Version = 128 ; - indicatorOfParameter = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - table2Version = 128 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - table2Version = 128 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -#Lake cover -'cl' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover -'cvl' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover -'cvh' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation -'tvl' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation -'tvh' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -#Sea ice area fraction -'ci' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Snow albedo -'asn' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -#Snow density -'rsn' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature -'sst' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -#Ice temperature layer 1 -'istl1' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -#Soil type -'slt' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation -'es' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'smlt' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -#Solar duration -'sdur' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation -'dsrp' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust since previous post-processing -'10fg' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction -'lspf' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential -'mont' = { - table2Version = 128 ; - indicatorOfParameter = 53 ; - } -#Pressure -'pres' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy -'cape' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity -'pv' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -#Observation count -'obct' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'sktd' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - table2Version = 128 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - table2Version = 128 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - table2Version = 128 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - table2Version = 128 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -#Specific rain water content -'crwc' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -#Specific snow water content -'cswc' = { - table2Version = 128 ; - indicatorOfParameter = 76 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - table2Version = 128 ; - indicatorOfParameter = 77 ; - } -#Total column cloud liquid water -'tclw' = { - table2Version = 128 ; - indicatorOfParameter = 78 ; - } -#Total column cloud ice water -'tciw' = { - table2Version = 128 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours -'10fg6' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -#Surface emissivity -'emis' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -#Vertically integrated total energy -'vite' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide -'at' = { - table2Version = 128 ; - indicatorOfParameter = 127 ; - } -#Atmospheric tide -'at' = { - table2Version = 160 ; - indicatorOfParameter = 127 ; - } -#Budget values -'bv' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -#Budget values -'bv' = { - table2Version = 160 ; - indicatorOfParameter = 128 ; - } -#Geopotential -'z' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'z' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'t' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'t' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'u' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'u' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'v' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'v' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'q' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'q' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'sp' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'sp' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'sp' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'w' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'w' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water -'tcw' = { - table2Version = 128 ; - indicatorOfParameter = 136 ; - } -#Total column water -'tcw' = { - table2Version = 160 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'stl1' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'swl1' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'swl1' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'sd' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'sd' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'sd' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'cp' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'cp' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'cp' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'sf' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'sf' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Charnock -'chnk' = { - table2Version = 128 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation -'snr' = { - table2Version = 128 ; - indicatorOfParameter = 149 ; - } -#Top net radiation -'tnr' = { - table2Version = 128 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure -'lnsp' = { - table2Version = 128 ; - indicatorOfParameter = 152 ; - } -#Logarithm of surface pressure -'lnsp' = { - table2Version = 160 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate -'swhr' = { - table2Version = 128 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate -'lwhr' = { - table2Version = 128 ; - indicatorOfParameter = 154 ; - } -#Divergence -'d' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'d' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'gh' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'r' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'r' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'r' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'tsp' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'tsp' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height -'blh' = { - table2Version = 128 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography -'sdor' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover -'tcc' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'tcc' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component -'10u' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10u' = { - table2Version = 160 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10u' = { - table2Version = 180 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'10u' = { - table2Version = 190 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'10v' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10v' = { - table2Version = 160 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10v' = { - table2Version = 180 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'10v' = { - table2Version = 190 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature -'2t' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2t' = { - table2Version = 160 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2t' = { - table2Version = 180 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'2t' = { - table2Version = 190 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 160 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 180 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 190 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards -'ssrd' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'ssrd' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 -'stl2' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -#Soil temperature level 2 -'stl2' = { - table2Version = 160 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 -'swl2' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask -'lsm' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'lsm' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'sr' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'sr' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'al' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'al' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'al' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards -'strd' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -#Surface thermal radiation downwards -'strd' = { - table2Version = 190 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'ewss' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'nsss' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'e' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'e' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 -'stl3' = { - table2Version = 128 ; - indicatorOfParameter = 183 ; - } -#Soil temperature level 3 -'stl3' = { - table2Version = 160 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 -'swl3' = { - table2Version = 128 ; - indicatorOfParameter = 184 ; - } -#Soil wetness level 3 -'swl3' = { - table2Version = 170 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover -'lcc' = { - table2Version = 128 ; - indicatorOfParameter = 186 ; - } -#Low cloud cover -'lcc' = { - table2Version = 160 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 128 ; - indicatorOfParameter = 187 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 160 ; - indicatorOfParameter = 187 ; - } -#High cloud cover -'hcc' = { - table2Version = 128 ; - indicatorOfParameter = 188 ; - } -#High cloud cover -'hcc' = { - table2Version = 160 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration -'sund' = { - table2Version = 128 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - table2Version = 128 ; - indicatorOfParameter = 190 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - table2Version = 160 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - table2Version = 128 ; - indicatorOfParameter = 191 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - table2Version = 160 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - table2Version = 128 ; - indicatorOfParameter = 192 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - table2Version = 160 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - table2Version = 128 ; - indicatorOfParameter = 193 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - table2Version = 160 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature -'btmp' = { - table2Version = 128 ; - indicatorOfParameter = 194 ; - } -#Eastward gravity wave surface stress -'lgws' = { - table2Version = 128 ; - indicatorOfParameter = 195 ; - } -#Eastward gravity wave surface stress -'lgws' = { - table2Version = 160 ; - indicatorOfParameter = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - table2Version = 128 ; - indicatorOfParameter = 196 ; - } -#Northward gravity wave surface stress -'mgws' = { - table2Version = 160 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'gwd' = { - table2Version = 128 ; - indicatorOfParameter = 197 ; - } -#Gravity wave dissipation -'gwd' = { - table2Version = 160 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content -'src' = { - table2Version = 128 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction -'veg' = { - table2Version = 128 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -#Variance of sub-gridscale orography -'vso' = { - table2Version = 160 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 170 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - table2Version = 190 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 170 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - table2Version = 190 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio -'o3' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights -'paw' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -#Precipitation analysis weights -'paw' = { - table2Version = 160 ; - indicatorOfParameter = 204 ; - } -#Runoff -'ro' = { - table2Version = 128 ; - indicatorOfParameter = 205 ; - } -#Runoff -'ro' = { - table2Version = 180 ; - indicatorOfParameter = 205 ; - } -#Total column ozone -'tco3' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed -'10si' = { - table2Version = 128 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - table2Version = 128 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - table2Version = 128 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation -'tisr' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of zonal wind -'ctzw' = { - table2Version = 130 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -#Convective tendency of meridional wind -'ctmw' = { - table2Version = 130 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - table2Version = 128 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - table2Version = 128 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - table2Version = 128 ; - indicatorOfParameter = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - table2Version = 128 ; - indicatorOfParameter = 227 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - table2Version = 130 ; - indicatorOfParameter = 227 ; - } -#Total precipitation -'tp' = { - table2Version = 128 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 160 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 170 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'tp' = { - table2Version = 190 ; - indicatorOfParameter = 228 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - table2Version = 128 ; - indicatorOfParameter = 229 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - table2Version = 160 ; - indicatorOfParameter = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - table2Version = 128 ; - indicatorOfParameter = 230 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - table2Version = 160 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - table2Version = 128 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux -'ie' = { - table2Version = 128 ; - indicatorOfParameter = 232 ; - } -#Instantaneous moisture flux -'ie' = { - table2Version = 160 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity -'asq' = { - table2Version = 128 ; - indicatorOfParameter = 233 ; - } -#Apparent surface humidity -'asq' = { - table2Version = 160 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - table2Version = 128 ; - indicatorOfParameter = 234 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - table2Version = 160 ; - indicatorOfParameter = 234 ; - } -#Skin temperature -'skt' = { - table2Version = 128 ; - indicatorOfParameter = 235 ; - } -#Skin temperature -'skt' = { - table2Version = 160 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 -'stl4' = { - table2Version = 128 ; - indicatorOfParameter = 236 ; - } -#Soil temperature level 4 -'stl4' = { - table2Version = 160 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 -'swl4' = { - table2Version = 128 ; - indicatorOfParameter = 237 ; - } -#Soil wetness level 4 -'swl4' = { - table2Version = 160 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer -'tsn' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'tsn' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall -'csf' = { - table2Version = 128 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall -'lsf' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'fal' = { - table2Version = 128 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness -'fsr' = { - table2Version = 128 ; - indicatorOfParameter = 244 ; - } -#Forecast surface roughness -'fsr' = { - table2Version = 160 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - table2Version = 128 ; - indicatorOfParameter = 245 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - table2Version = 160 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content -'clwc' = { - table2Version = 128 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content -'ciwc' = { - table2Version = 128 ; - indicatorOfParameter = 247 ; - } -#Fraction of cloud cover -'cc' = { - table2Version = 128 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency -'aiw' = { - table2Version = 128 ; - indicatorOfParameter = 249 ; - } -#Ice age -'ice' = { - table2Version = 128 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - table2Version = 128 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - table2Version = 128 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - table2Version = 128 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - table2Version = 128 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 132 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 160 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 170 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 180 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 190 ; - indicatorOfParameter = 255 ; - } -#Stream function difference -'strfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Potential temperature difference -'ptdiff' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Lake cover difference -'cldiff' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Snow albedo difference -'asndiff' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Snow density difference -'rsndiff' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Soil type difference -'sltdiff' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation difference -'esdiff' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Snowmelt difference -'smltdiff' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Solar duration difference -'sdurdiff' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust difference -'10fgdiff' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential difference -'montdiff' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Pressure difference -'presdiff' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy difference -'capediff' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Observation count difference -'obctdiff' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'~' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'~' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'~' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10fg6diff' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'~' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Budget values difference -'bvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 128 ; - } -#Geopotential difference -'zdiff' = { - table2Version = 200 ; - indicatorOfParameter = 129 ; - } -#Temperature difference -'tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 130 ; - } -#U component of wind difference -'udiff' = { - table2Version = 200 ; - indicatorOfParameter = 131 ; - } -#V component of wind difference -'vdiff' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Specific humidity difference -'qdiff' = { - table2Version = 200 ; - indicatorOfParameter = 133 ; - } -#Surface pressure difference -'spdiff' = { - table2Version = 200 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - table2Version = 200 ; - indicatorOfParameter = 135 ; - } -#Total column water difference -'tcwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - table2Version = 200 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - table2Version = 200 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - table2Version = 200 ; - indicatorOfParameter = 140 ; - } -#Snow depth difference -'sddiff' = { - table2Version = 200 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Charnock difference -'chnkdiff' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Divergence difference -'ddiff' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#Height difference -'ghdiff' = { - table2Version = 200 ; - indicatorOfParameter = 156 ; - } -#Relative humidity difference -'rdiff' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - table2Version = 200 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component difference -'10udiff' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component difference -'10vdiff' = { - table2Version = 200 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature difference -'2tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - table2Version = 200 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Surface roughness difference -'srdiff' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Albedo difference -'aldiff' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - table2Version = 200 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - table2Version = 200 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 181 ; - } -#Evaporation difference -'ediff' = { - table2Version = 200 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - table2Version = 200 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 187 ; - } -#High cloud cover difference -'hccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - table2Version = 200 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - table2Version = 200 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - table2Version = 200 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - table2Version = 200 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - table2Version = 200 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Runoff difference -'rodiff' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Total column ozone difference -'tco3diff' = { - table2Version = 200 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed difference -'10sidiff' = { - table2Version = 200 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - table2Version = 200 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - table2Version = 200 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total precipitation difference -'tpdiff' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - table2Version = 200 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - table2Version = 200 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - table2Version = 200 ; - indicatorOfParameter = 234 ; - } -#Skin temperature difference -'sktdiff' = { - table2Version = 200 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - table2Version = 200 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo difference -'faldiff' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - table2Version = 200 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Cloud cover difference -'ccdiff' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Ice age difference -'icediff' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - table2Version = 200 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 200 ; - indicatorOfParameter = 255 ; - } -#Probability of a tropical storm -'pts' = { - table2Version = 131 ; - indicatorOfParameter = 89 ; - } -#Probability of a hurricane -'ph' = { - table2Version = 131 ; - indicatorOfParameter = 90 ; - } -#Probability of a tropical depression -'ptd' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Climatological probability of a tropical storm -'cpts' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Climatological probability of a hurricane -'cph' = { - table2Version = 131 ; - indicatorOfParameter = 93 ; - } -#Climatological probability of a tropical depression -'cptd' = { - table2Version = 131 ; - indicatorOfParameter = 94 ; - } -#Probability anomaly of a tropical storm -'pats' = { - table2Version = 131 ; - indicatorOfParameter = 95 ; - } -#Probability anomaly of a hurricane -'pah' = { - table2Version = 131 ; - indicatorOfParameter = 96 ; - } -#Probability anomaly of a tropical depression -'patd' = { - table2Version = 131 ; - indicatorOfParameter = 97 ; - } -#Total precipitation of at least 25 mm -'tpg25' = { - table2Version = 131 ; - indicatorOfParameter = 98 ; - } -#Total precipitation of at least 50 mm -'tpg50' = { - table2Version = 131 ; - indicatorOfParameter = 99 ; - } -#10 metre wind gust of at least 10 m/s -'10fgg10' = { - table2Version = 131 ; - indicatorOfParameter = 100 ; - } -#Convective available potential energy shear index -'capesi' = { - table2Version = 132 ; - indicatorOfParameter = 44 ; - } -#Water vapour flux index -'wvfi' = { - table2Version = 132 ; - indicatorOfParameter = 45 ; - } -#Convective available potential energy index -'capei' = { - table2Version = 132 ; - indicatorOfParameter = 59 ; - } -#Maximum of significant wave height index -'maxswhi' = { - table2Version = 132 ; - indicatorOfParameter = 216 ; - } -#Wave experimental parameter 1 -'wx1' = { - table2Version = 140 ; - indicatorOfParameter = 80 ; - } -#Wave experimental parameter 2 -'wx2' = { - table2Version = 140 ; - indicatorOfParameter = 81 ; - } -#Wave experimental parameter 3 -'wx3' = { - table2Version = 140 ; - indicatorOfParameter = 82 ; - } -#Wave experimental parameter 4 -'wx4' = { - table2Version = 140 ; - indicatorOfParameter = 83 ; - } -#Wave experimental parameter 5 -'wx5' = { - table2Version = 140 ; - indicatorOfParameter = 84 ; - } -#Wave induced mean sea level correction -'weta' = { - table2Version = 140 ; - indicatorOfParameter = 98 ; - } -#Ratio of wave angular and frequency width -'wraf' = { - table2Version = 140 ; - indicatorOfParameter = 99 ; - } -#Number of events in freak waves statistics -'wnslc' = { - table2Version = 140 ; - indicatorOfParameter = 100 ; - } -#U-component of atmospheric surface momentum flux -'utaua' = { - table2Version = 140 ; - indicatorOfParameter = 101 ; - } -#V-component of atmospheric surface momentum flux -'vtaua' = { - table2Version = 140 ; - indicatorOfParameter = 102 ; - } -#U-component of surface momentum flux into ocean -'utauo' = { - table2Version = 140 ; - indicatorOfParameter = 103 ; - } -#V-component of surface momentum flux into ocean -'vtauo' = { - table2Version = 140 ; - indicatorOfParameter = 104 ; - } -#Wave turbulent energy flux into ocean -'wphio' = { - table2Version = 140 ; - indicatorOfParameter = 105 ; - } -#Wave directional width of first swell partition -'wdw1' = { - table2Version = 140 ; - indicatorOfParameter = 106 ; - } -#Wave frequency width of first swell partition -'wfw1' = { - table2Version = 140 ; - indicatorOfParameter = 107 ; - } -#Wave directional width of second swell partition -'wdw2' = { - table2Version = 140 ; - indicatorOfParameter = 108 ; - } -#Wave frequency width of second swell partition -'wfw2' = { - table2Version = 140 ; - indicatorOfParameter = 109 ; - } -#Wave directional width of third swell partition -'wdw3' = { - table2Version = 140 ; - indicatorOfParameter = 110 ; - } -#Wave frequency width of third swell partition -'wfw3' = { - table2Version = 140 ; - indicatorOfParameter = 111 ; - } -#Wave energy flux magnitude -'wefxm' = { - table2Version = 140 ; - indicatorOfParameter = 112 ; - } -#Wave energy flux mean direction -'wefxd' = { - table2Version = 140 ; - indicatorOfParameter = 113 ; - } -#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds -'h1012' = { - table2Version = 140 ; - indicatorOfParameter = 114 ; - } -#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds -'h1214' = { - table2Version = 140 ; - indicatorOfParameter = 115 ; - } -#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds -'h1417' = { - table2Version = 140 ; - indicatorOfParameter = 116 ; - } -#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds -'h1721' = { - table2Version = 140 ; - indicatorOfParameter = 117 ; - } -#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds -'h2125' = { - table2Version = 140 ; - indicatorOfParameter = 118 ; - } -#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds -'h2530' = { - table2Version = 140 ; - indicatorOfParameter = 119 ; - } -#Significant wave height of all waves with period larger than 10s -'sh10' = { - table2Version = 140 ; - indicatorOfParameter = 120 ; - } -#Significant wave height of first swell partition -'swh1' = { - table2Version = 140 ; - indicatorOfParameter = 121 ; - } -#Mean wave direction of first swell partition -'mwd1' = { - table2Version = 140 ; - indicatorOfParameter = 122 ; - } -#Mean wave period of first swell partition -'mwp1' = { - table2Version = 140 ; - indicatorOfParameter = 123 ; - } -#Significant wave height of second swell partition -'swh2' = { - table2Version = 140 ; - indicatorOfParameter = 124 ; - } -#Mean wave direction of second swell partition -'mwd2' = { - table2Version = 140 ; - indicatorOfParameter = 125 ; - } -#Mean wave period of second swell partition -'mwp2' = { - table2Version = 140 ; - indicatorOfParameter = 126 ; - } -#Significant wave height of third swell partition -'swh3' = { - table2Version = 140 ; - indicatorOfParameter = 127 ; - } -#Mean wave direction of third swell partition -'mwd3' = { - table2Version = 140 ; - indicatorOfParameter = 128 ; - } -#Mean wave period of third swell partition -'mwp3' = { - table2Version = 140 ; - indicatorOfParameter = 129 ; - } -#Wave Spectral Skewness -'wss' = { - table2Version = 140 ; - indicatorOfParameter = 207 ; - } -#Free convective velocity over the oceans -'wstar' = { - table2Version = 140 ; - indicatorOfParameter = 208 ; - } -#Air density over the oceans -'rhoao' = { - table2Version = 140 ; - indicatorOfParameter = 209 ; - } -#Mean square wave strain in sea ice -'mswsi' = { - table2Version = 140 ; - indicatorOfParameter = 210 ; - } -#Normalized energy flux into waves -'phiaw' = { - table2Version = 140 ; - indicatorOfParameter = 211 ; - } -#Normalized energy flux into ocean -'phioc' = { - table2Version = 140 ; - indicatorOfParameter = 212 ; - } -#Turbulent Langmuir number -'tla' = { - table2Version = 140 ; - indicatorOfParameter = 213 ; - } -#Normalized stress into ocean -'tauoc' = { - table2Version = 140 ; - indicatorOfParameter = 214 ; - } -#Reserved -'~' = { - table2Version = 151 ; - indicatorOfParameter = 193 ; - } -#Water vapour flux -'wvf' = { - table2Version = 162 ; - indicatorOfParameter = 45 ; - } -#Vertical integral of divergence of cloud liquid water flux -'vilwd' = { - table2Version = 162 ; - indicatorOfParameter = 79 ; - } -#Vertical integral of divergence of cloud frozen water flux -'viiwd' = { - table2Version = 162 ; - indicatorOfParameter = 80 ; - } -#Vertical integral of eastward cloud liquid water flux -'vilwe' = { - table2Version = 162 ; - indicatorOfParameter = 88 ; - } -#Vertical integral of northward cloud liquid water flux -'vilwn' = { - table2Version = 162 ; - indicatorOfParameter = 89 ; - } -#Vertical integral of eastward cloud frozen water flux -'viiwe' = { - table2Version = 162 ; - indicatorOfParameter = 90 ; - } -#Vertical integral of northward cloud frozen water flux -'viiwn' = { - table2Version = 162 ; - indicatorOfParameter = 91 ; - } -#Vertical integral of mass tendency -'vimat' = { - table2Version = 162 ; - indicatorOfParameter = 92 ; - } -#U-tendency from dynamics -'utendd' = { - table2Version = 162 ; - indicatorOfParameter = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - table2Version = 162 ; - indicatorOfParameter = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - table2Version = 162 ; - indicatorOfParameter = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - table2Version = 162 ; - indicatorOfParameter = 117 ; - } -#T-tendency from radiation -'ttendr' = { - table2Version = 162 ; - indicatorOfParameter = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - table2Version = 162 ; - indicatorOfParameter = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - table2Version = 162 ; - indicatorOfParameter = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - table2Version = 162 ; - indicatorOfParameter = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - table2Version = 162 ; - indicatorOfParameter = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - table2Version = 162 ; - indicatorOfParameter = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - table2Version = 162 ; - indicatorOfParameter = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - table2Version = 162 ; - indicatorOfParameter = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - table2Version = 162 ; - indicatorOfParameter = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - table2Version = 162 ; - indicatorOfParameter = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - table2Version = 162 ; - indicatorOfParameter = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - table2Version = 162 ; - indicatorOfParameter = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - table2Version = 162 ; - indicatorOfParameter = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - table2Version = 162 ; - indicatorOfParameter = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - table2Version = 162 ; - indicatorOfParameter = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - table2Version = 162 ; - indicatorOfParameter = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - table2Version = 162 ; - indicatorOfParameter = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - table2Version = 162 ; - indicatorOfParameter = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - table2Version = 162 ; - indicatorOfParameter = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - table2Version = 162 ; - indicatorOfParameter = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - table2Version = 162 ; - indicatorOfParameter = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - table2Version = 162 ; - indicatorOfParameter = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - table2Version = 162 ; - indicatorOfParameter = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - table2Version = 162 ; - indicatorOfParameter = 141 ; - } -#Standardised precipitation index valid in the last 3 months -'spi03' = { - table2Version = 170 ; - indicatorOfParameter = 1 ; - } -#Standardised precipitation index valid in the last 6 months -'spi06' = { - table2Version = 170 ; - indicatorOfParameter = 2 ; - } -#Standardised precipitation index valid in the last 12 months -'spi12' = { - table2Version = 170 ; - indicatorOfParameter = 3 ; - } -#100 metre U wind component anomaly -'100ua' = { - table2Version = 171 ; - indicatorOfParameter = 6 ; - } -#100 metre V wind component anomaly -'100va' = { - table2Version = 171 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature anomaly -'lmlta' = { - table2Version = 171 ; - indicatorOfParameter = 24 ; - } -#Lake ice depth anomaly -'licda' = { - table2Version = 171 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - table2Version = 171 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - table2Version = 171 ; - indicatorOfParameter = 122 ; - } -#Mean surface runoff rate -'msror' = { - table2Version = 172 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate -'mssror' = { - table2Version = 172 ; - indicatorOfParameter = 9 ; - } -#Mean surface runoff rate anomaly -'msrora' = { - table2Version = 173 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate anomaly -'mssrora' = { - table2Version = 173 ; - indicatorOfParameter = 9 ; - } -#Clear-sky (II) down surface sw flux -'sswcsdown' = { - table2Version = 174 ; - indicatorOfParameter = 10 ; - } -#Clear-sky (II) up surface sw flux -'sswcsup' = { - table2Version = 174 ; - indicatorOfParameter = 13 ; - } -#Visibility at 1.5m -'vis15' = { - table2Version = 174 ; - indicatorOfParameter = 25 ; - } -#Minimum temperature at 1.5m since previous post-processing -'mn15t' = { - table2Version = 174 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 1.5m since previous post-processing -'mx15t' = { - table2Version = 174 ; - indicatorOfParameter = 51 ; - } -#Relative humidity at 1.5m -'rhum' = { - table2Version = 174 ; - indicatorOfParameter = 52 ; - } -#2 metre specific humidity -'2sh' = { - table2Version = 174 ; - indicatorOfParameter = 96 ; - } -#Sea ice snow thickness -'sisnthick' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Short wave radiation flux at surface -'swrsurf' = { - table2Version = 174 ; - indicatorOfParameter = 116 ; - } -#Short wave radiation flux at top of atmosphere -'swrtop' = { - table2Version = 174 ; - indicatorOfParameter = 117 ; - } -#Total column water vapour -'tcwvap' = { - table2Version = 174 ; - indicatorOfParameter = 137 ; - } -#Large scale rainfall rate -'lsrrate' = { - table2Version = 174 ; - indicatorOfParameter = 142 ; - } -#Convective rainfall rate -'crfrate' = { - table2Version = 174 ; - indicatorOfParameter = 143 ; - } -#Very low cloud amount -'vlca' = { - table2Version = 174 ; - indicatorOfParameter = 186 ; - } -#Convective snowfall rate -'csfrate' = { - table2Version = 174 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall rate -'lsfrate' = { - table2Version = 174 ; - indicatorOfParameter = 240 ; - } -#Total cloud amount - random overlap -'tccro' = { - table2Version = 174 ; - indicatorOfParameter = 248 ; - } -#Total cloud amount in lw radiation -'tcclwr' = { - table2Version = 174 ; - indicatorOfParameter = 249 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'emdms' = { - table2Version = 210 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - table2Version = 210 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - table2Version = 210 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 210 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 210 ; - indicatorOfParameter = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - table2Version = 210 ; - indicatorOfParameter = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - table2Version = 210 ; - indicatorOfParameter = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - table2Version = 210 ; - indicatorOfParameter = 59 ; - } -#Injection height (from IS4FIRES) -'injh' = { - table2Version = 210 ; - indicatorOfParameter = 60 ; - } -#Particulate matter d < 1 um -'pm1' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - table2Version = 210 ; - indicatorOfParameter = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 118 ; - } -#Mean altitude of maximum injection -'mami' = { - table2Version = 210 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'apt' = { - table2Version = 210 ; - indicatorOfParameter = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - table2Version = 210 ; - indicatorOfParameter = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - table2Version = 210 ; - indicatorOfParameter = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - table2Version = 210 ; - indicatorOfParameter = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - table2Version = 210 ; - indicatorOfParameter = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - table2Version = 210 ; - indicatorOfParameter = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - table2Version = 210 ; - indicatorOfParameter = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - table2Version = 210 ; - indicatorOfParameter = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - table2Version = 210 ; - indicatorOfParameter = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - table2Version = 210 ; - indicatorOfParameter = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - table2Version = 210 ; - indicatorOfParameter = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - table2Version = 210 ; - indicatorOfParameter = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - table2Version = 210 ; - indicatorOfParameter = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - table2Version = 210 ; - indicatorOfParameter = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - table2Version = 210 ; - indicatorOfParameter = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - table2Version = 210 ; - indicatorOfParameter = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - table2Version = 210 ; - indicatorOfParameter = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - table2Version = 210 ; - indicatorOfParameter = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - table2Version = 210 ; - indicatorOfParameter = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - table2Version = 210 ; - indicatorOfParameter = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - table2Version = 210 ; - indicatorOfParameter = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - table2Version = 210 ; - indicatorOfParameter = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - table2Version = 210 ; - indicatorOfParameter = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - table2Version = 210 ; - indicatorOfParameter = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - table2Version = 210 ; - indicatorOfParameter = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - table2Version = 210 ; - indicatorOfParameter = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - table2Version = 210 ; - indicatorOfParameter = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'c7h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'c6h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'c8h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'c4h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'c5h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'c6h12fire' = { - table2Version = 210 ; - indicatorOfParameter = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'c8h16fire' = { - table2Version = 210 ; - indicatorOfParameter = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'c4h10fire' = { - table2Version = 210 ; - indicatorOfParameter = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'c5h12fire' = { - table2Version = 210 ; - indicatorOfParameter = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'c6h14fire' = { - table2Version = 210 ; - indicatorOfParameter = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'c7h16fire' = { - table2Version = 210 ; - indicatorOfParameter = 241 ; - } -#Altitude of plume bottom -'apb' = { - table2Version = 210 ; - indicatorOfParameter = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - table2Version = 210 ; - indicatorOfParameter = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - table2Version = 210 ; - indicatorOfParameter = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - table2Version = 210 ; - indicatorOfParameter = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - table2Version = 210 ; - indicatorOfParameter = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16' = { - table2Version = 210 ; - indicatorOfParameter = 247 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17' = { - table2Version = 210 ; - indicatorOfParameter = 248 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18' = { - table2Version = 210 ; - indicatorOfParameter = 249 ; - } -#Nitrate aerosol optical depth at 550 nm -'niaod550' = { - table2Version = 210 ; - indicatorOfParameter = 250 ; - } -#Ammonium aerosol optical depth at 550 nm -'amaod550' = { - table2Version = 210 ; - indicatorOfParameter = 251 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - table2Version = 211 ; - indicatorOfParameter = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - table2Version = 211 ; - indicatorOfParameter = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - table2Version = 211 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - table2Version = 211 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - table2Version = 211 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - table2Version = 211 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - table2Version = 211 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - table2Version = 211 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - table2Version = 211 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 211 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 211 ; - indicatorOfParameter = 56 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6firediff' = { - table2Version = 211 ; - indicatorOfParameter = 118 ; - } -#Altitude of emitter -'alediff' = { - table2Version = 211 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'aptdiff' = { - table2Version = 211 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - table2Version = 213 ; - indicatorOfParameter = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - table2Version = 213 ; - indicatorOfParameter = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - table2Version = 213 ; - indicatorOfParameter = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - table2Version = 213 ; - indicatorOfParameter = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - table2Version = 213 ; - indicatorOfParameter = 5 ; - } -#Random pattern 1 for SPP scheme -'spp1' = { - table2Version = 213 ; - indicatorOfParameter = 101 ; - } -#Random pattern 2 for SPP scheme -'spp2' = { - table2Version = 213 ; - indicatorOfParameter = 102 ; - } -#Random pattern 3 for SPP scheme -'spp3' = { - table2Version = 213 ; - indicatorOfParameter = 103 ; - } -#Random pattern 4 for SPP scheme -'spp4' = { - table2Version = 213 ; - indicatorOfParameter = 104 ; - } -#Random pattern 5 for SPP scheme -'spp5' = { - table2Version = 213 ; - indicatorOfParameter = 105 ; - } -#Random pattern 6 for SPP scheme -'spp6' = { - table2Version = 213 ; - indicatorOfParameter = 106 ; - } -#Random pattern 7 for SPP scheme -'spp7' = { - table2Version = 213 ; - indicatorOfParameter = 107 ; - } -#Random pattern 8 for SPP scheme -'spp8' = { - table2Version = 213 ; - indicatorOfParameter = 108 ; - } -#Random pattern 9 for SPP scheme -'spp9' = { - table2Version = 213 ; - indicatorOfParameter = 109 ; - } -#Random pattern 10 for SPP scheme -'spp10' = { - table2Version = 213 ; - indicatorOfParameter = 110 ; - } -#Random pattern 11 for SPP scheme -'spp11' = { - table2Version = 213 ; - indicatorOfParameter = 111 ; - } -#Random pattern 12 for SPP scheme -'spp12' = { - table2Version = 213 ; - indicatorOfParameter = 112 ; - } -#Random pattern 13 for SPP scheme -'spp13' = { - table2Version = 213 ; - indicatorOfParameter = 113 ; - } -#Random pattern 14 for SPP scheme -'spp14' = { - table2Version = 213 ; - indicatorOfParameter = 114 ; - } -#Random pattern 15 for SPP scheme -'spp15' = { - table2Version = 213 ; - indicatorOfParameter = 115 ; - } -#Random pattern 16 for SPP scheme -'spp16' = { - table2Version = 213 ; - indicatorOfParameter = 116 ; - } -#Random pattern 17 for SPP scheme -'spp17' = { - table2Version = 213 ; - indicatorOfParameter = 117 ; - } -#Random pattern 18 for SPP scheme -'spp18' = { - table2Version = 213 ; - indicatorOfParameter = 118 ; - } -#Random pattern 19 for SPP scheme -'spp19' = { - table2Version = 213 ; - indicatorOfParameter = 119 ; - } -#Random pattern 20 for SPP scheme -'spp20' = { - table2Version = 213 ; - indicatorOfParameter = 120 ; - } -#Random pattern 21 for SPP scheme -'spp21' = { - table2Version = 213 ; - indicatorOfParameter = 121 ; - } -#Random pattern 22 for SPP scheme -'spp22' = { - table2Version = 213 ; - indicatorOfParameter = 122 ; - } -#Random pattern 23 for SPP scheme -'spp23' = { - table2Version = 213 ; - indicatorOfParameter = 123 ; - } -#Random pattern 24 for SPP scheme -'spp24' = { - table2Version = 213 ; - indicatorOfParameter = 124 ; - } -#Random pattern 25 for SPP scheme -'spp25' = { - table2Version = 213 ; - indicatorOfParameter = 125 ; - } -#Random pattern 26 for SPP scheme -'spp26' = { - table2Version = 213 ; - indicatorOfParameter = 126 ; - } -#Random pattern 27 for SPP scheme -'spp27' = { - table2Version = 213 ; - indicatorOfParameter = 127 ; - } -#Random pattern 28 for SPP scheme -'spp28' = { - table2Version = 213 ; - indicatorOfParameter = 128 ; - } -#Random pattern 29 for SPP scheme -'spp29' = { - table2Version = 213 ; - indicatorOfParameter = 129 ; - } -#Random pattern 30 for SPP scheme -'spp30' = { - table2Version = 213 ; - indicatorOfParameter = 130 ; - } -#Random pattern 31 for SPP scheme -'spp31' = { - table2Version = 213 ; - indicatorOfParameter = 131 ; - } -#Random pattern 32 for SPP scheme -'spp32' = { - table2Version = 213 ; - indicatorOfParameter = 132 ; - } -#Random pattern 33 for SPP scheme -'spp33' = { - table2Version = 213 ; - indicatorOfParameter = 133 ; - } -#Random pattern 34 for SPP scheme -'spp34' = { - table2Version = 213 ; - indicatorOfParameter = 134 ; - } -#Random pattern 35 for SPP scheme -'spp35' = { - table2Version = 213 ; - indicatorOfParameter = 135 ; - } -#Random pattern 36 for SPP scheme -'spp36' = { - table2Version = 213 ; - indicatorOfParameter = 136 ; - } -#Random pattern 37 for SPP scheme -'spp37' = { - table2Version = 213 ; - indicatorOfParameter = 137 ; - } -#Random pattern 38 for SPP scheme -'spp38' = { - table2Version = 213 ; - indicatorOfParameter = 138 ; - } -#Random pattern 39 for SPP scheme -'spp39' = { - table2Version = 213 ; - indicatorOfParameter = 139 ; - } -#Random pattern 40 for SPP scheme -'spp40' = { - table2Version = 213 ; - indicatorOfParameter = 140 ; - } -#Random pattern 41 for SPP scheme -'spp41' = { - table2Version = 213 ; - indicatorOfParameter = 141 ; - } -#Random pattern 42 for SPP scheme -'spp42' = { - table2Version = 213 ; - indicatorOfParameter = 142 ; - } -#Random pattern 43 for SPP scheme -'spp43' = { - table2Version = 213 ; - indicatorOfParameter = 143 ; - } -#Random pattern 44 for SPP scheme -'spp44' = { - table2Version = 213 ; - indicatorOfParameter = 144 ; - } -#Random pattern 45 for SPP scheme -'spp45' = { - table2Version = 213 ; - indicatorOfParameter = 145 ; - } -#Random pattern 46 for SPP scheme -'spp46' = { - table2Version = 213 ; - indicatorOfParameter = 146 ; - } -#Random pattern 47 for SPP scheme -'spp47' = { - table2Version = 213 ; - indicatorOfParameter = 147 ; - } -#Random pattern 48 for SPP scheme -'spp48' = { - table2Version = 213 ; - indicatorOfParameter = 148 ; - } -#Random pattern 49 for SPP scheme -'spp49' = { - table2Version = 213 ; - indicatorOfParameter = 149 ; - } -#Random pattern 50 for SPP scheme -'spp50' = { - table2Version = 213 ; - indicatorOfParameter = 150 ; - } -#Cosine of solar zenith angle -'uvcossza' = { - table2Version = 214 ; - indicatorOfParameter = 1 ; - } -#UV biologically effective dose -'uvbed' = { - table2Version = 214 ; - indicatorOfParameter = 2 ; - } -#UV biologically effective dose clear-sky -'uvbedcs' = { - table2Version = 214 ; - indicatorOfParameter = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - table2Version = 214 ; - indicatorOfParameter = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - table2Version = 214 ; - indicatorOfParameter = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - table2Version = 214 ; - indicatorOfParameter = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - table2Version = 214 ; - indicatorOfParameter = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - table2Version = 214 ; - indicatorOfParameter = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - table2Version = 214 ; - indicatorOfParameter = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - table2Version = 214 ; - indicatorOfParameter = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - table2Version = 214 ; - indicatorOfParameter = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - table2Version = 214 ; - indicatorOfParameter = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - table2Version = 214 ; - indicatorOfParameter = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - table2Version = 214 ; - indicatorOfParameter = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - table2Version = 214 ; - indicatorOfParameter = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - table2Version = 214 ; - indicatorOfParameter = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - table2Version = 214 ; - indicatorOfParameter = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - table2Version = 214 ; - indicatorOfParameter = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - table2Version = 214 ; - indicatorOfParameter = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - table2Version = 214 ; - indicatorOfParameter = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - table2Version = 214 ; - indicatorOfParameter = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - table2Version = 214 ; - indicatorOfParameter = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - table2Version = 214 ; - indicatorOfParameter = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - table2Version = 214 ; - indicatorOfParameter = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - table2Version = 214 ; - indicatorOfParameter = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - table2Version = 214 ; - indicatorOfParameter = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - table2Version = 214 ; - indicatorOfParameter = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - table2Version = 214 ; - indicatorOfParameter = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - table2Version = 214 ; - indicatorOfParameter = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - table2Version = 214 ; - indicatorOfParameter = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - table2Version = 214 ; - indicatorOfParameter = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - table2Version = 214 ; - indicatorOfParameter = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - table2Version = 214 ; - indicatorOfParameter = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - table2Version = 214 ; - indicatorOfParameter = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - table2Version = 214 ; - indicatorOfParameter = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - table2Version = 214 ; - indicatorOfParameter = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - table2Version = 214 ; - indicatorOfParameter = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - table2Version = 214 ; - indicatorOfParameter = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - table2Version = 214 ; - indicatorOfParameter = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - table2Version = 214 ; - indicatorOfParameter = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - table2Version = 214 ; - indicatorOfParameter = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - table2Version = 214 ; - indicatorOfParameter = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - table2Version = 214 ; - indicatorOfParameter = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - table2Version = 214 ; - indicatorOfParameter = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - table2Version = 214 ; - indicatorOfParameter = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - table2Version = 214 ; - indicatorOfParameter = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - table2Version = 214 ; - indicatorOfParameter = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - table2Version = 214 ; - indicatorOfParameter = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - table2Version = 214 ; - indicatorOfParameter = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - table2Version = 214 ; - indicatorOfParameter = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - table2Version = 214 ; - indicatorOfParameter = 51 ; - } -#Profile of optical thickness at 340 nm -'aot340' = { - table2Version = 214 ; - indicatorOfParameter = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - table2Version = 215 ; - indicatorOfParameter = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - table2Version = 215 ; - indicatorOfParameter = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - table2Version = 215 ; - indicatorOfParameter = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - table2Version = 215 ; - indicatorOfParameter = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - table2Version = 215 ; - indicatorOfParameter = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - table2Version = 215 ; - indicatorOfParameter = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - table2Version = 215 ; - indicatorOfParameter = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - table2Version = 215 ; - indicatorOfParameter = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - table2Version = 215 ; - indicatorOfParameter = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - table2Version = 215 ; - indicatorOfParameter = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - table2Version = 215 ; - indicatorOfParameter = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - table2Version = 215 ; - indicatorOfParameter = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - table2Version = 215 ; - indicatorOfParameter = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - table2Version = 215 ; - indicatorOfParameter = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - table2Version = 215 ; - indicatorOfParameter = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - table2Version = 215 ; - indicatorOfParameter = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - table2Version = 215 ; - indicatorOfParameter = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - table2Version = 215 ; - indicatorOfParameter = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - table2Version = 215 ; - indicatorOfParameter = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - table2Version = 215 ; - indicatorOfParameter = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - table2Version = 215 ; - indicatorOfParameter = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - table2Version = 215 ; - indicatorOfParameter = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - table2Version = 215 ; - indicatorOfParameter = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - table2Version = 215 ; - indicatorOfParameter = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - table2Version = 215 ; - indicatorOfParameter = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - table2Version = 215 ; - indicatorOfParameter = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - table2Version = 215 ; - indicatorOfParameter = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - table2Version = 215 ; - indicatorOfParameter = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - table2Version = 215 ; - indicatorOfParameter = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - table2Version = 215 ; - indicatorOfParameter = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - table2Version = 215 ; - indicatorOfParameter = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - table2Version = 215 ; - indicatorOfParameter = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - table2Version = 215 ; - indicatorOfParameter = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - table2Version = 215 ; - indicatorOfParameter = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - table2Version = 215 ; - indicatorOfParameter = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - table2Version = 215 ; - indicatorOfParameter = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - table2Version = 215 ; - indicatorOfParameter = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - table2Version = 215 ; - indicatorOfParameter = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - table2Version = 215 ; - indicatorOfParameter = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - table2Version = 215 ; - indicatorOfParameter = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - table2Version = 215 ; - indicatorOfParameter = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - table2Version = 215 ; - indicatorOfParameter = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - table2Version = 215 ; - indicatorOfParameter = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - table2Version = 215 ; - indicatorOfParameter = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - table2Version = 215 ; - indicatorOfParameter = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - table2Version = 215 ; - indicatorOfParameter = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - table2Version = 215 ; - indicatorOfParameter = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - table2Version = 215 ; - indicatorOfParameter = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - table2Version = 215 ; - indicatorOfParameter = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - table2Version = 215 ; - indicatorOfParameter = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - table2Version = 215 ; - indicatorOfParameter = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - table2Version = 215 ; - indicatorOfParameter = 80 ; - } -#Source/gain of sulphate aerosol -'aersrcsu' = { - table2Version = 215 ; - indicatorOfParameter = 81 ; - } -#Dry deposition of sulphate aerosol -'aerddpsu' = { - table2Version = 215 ; - indicatorOfParameter = 82 ; - } -#Sedimentation of sulphate aerosol -'aersdmsu' = { - table2Version = 215 ; - indicatorOfParameter = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - table2Version = 215 ; - indicatorOfParameter = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - table2Version = 215 ; - indicatorOfParameter = 85 ; - } -#Negative fixer of sulphate aerosol -'aerngtsu' = { - table2Version = 215 ; - indicatorOfParameter = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'aermsssu' = { - table2Version = 215 ; - indicatorOfParameter = 87 ; - } -#Sulphate aerosol optical depth -'aerodsu' = { - table2Version = 215 ; - indicatorOfParameter = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - table2Version = 215 ; - indicatorOfParameter = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - table2Version = 215 ; - indicatorOfParameter = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - table2Version = 215 ; - indicatorOfParameter = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - table2Version = 215 ; - indicatorOfParameter = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - table2Version = 215 ; - indicatorOfParameter = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - table2Version = 215 ; - indicatorOfParameter = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - table2Version = 215 ; - indicatorOfParameter = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - table2Version = 215 ; - indicatorOfParameter = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - table2Version = 215 ; - indicatorOfParameter = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - table2Version = 215 ; - indicatorOfParameter = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - table2Version = 215 ; - indicatorOfParameter = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - table2Version = 215 ; - indicatorOfParameter = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - table2Version = 215 ; - indicatorOfParameter = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - table2Version = 215 ; - indicatorOfParameter = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - table2Version = 215 ; - indicatorOfParameter = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - table2Version = 215 ; - indicatorOfParameter = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - table2Version = 215 ; - indicatorOfParameter = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - table2Version = 215 ; - indicatorOfParameter = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - table2Version = 215 ; - indicatorOfParameter = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - table2Version = 215 ; - indicatorOfParameter = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - table2Version = 215 ; - indicatorOfParameter = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - table2Version = 215 ; - indicatorOfParameter = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - table2Version = 215 ; - indicatorOfParameter = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - table2Version = 215 ; - indicatorOfParameter = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - table2Version = 215 ; - indicatorOfParameter = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - table2Version = 215 ; - indicatorOfParameter = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - table2Version = 215 ; - indicatorOfParameter = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - table2Version = 215 ; - indicatorOfParameter = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - table2Version = 215 ; - indicatorOfParameter = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - table2Version = 215 ; - indicatorOfParameter = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - table2Version = 215 ; - indicatorOfParameter = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - table2Version = 215 ; - indicatorOfParameter = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - table2Version = 215 ; - indicatorOfParameter = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - table2Version = 215 ; - indicatorOfParameter = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - table2Version = 215 ; - indicatorOfParameter = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - table2Version = 215 ; - indicatorOfParameter = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - table2Version = 215 ; - indicatorOfParameter = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - table2Version = 215 ; - indicatorOfParameter = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - table2Version = 215 ; - indicatorOfParameter = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - table2Version = 215 ; - indicatorOfParameter = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - table2Version = 215 ; - indicatorOfParameter = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - table2Version = 215 ; - indicatorOfParameter = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - table2Version = 215 ; - indicatorOfParameter = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - table2Version = 215 ; - indicatorOfParameter = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - table2Version = 215 ; - indicatorOfParameter = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - table2Version = 215 ; - indicatorOfParameter = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - table2Version = 215 ; - indicatorOfParameter = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - table2Version = 215 ; - indicatorOfParameter = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - table2Version = 215 ; - indicatorOfParameter = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - table2Version = 215 ; - indicatorOfParameter = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - table2Version = 215 ; - indicatorOfParameter = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - table2Version = 215 ; - indicatorOfParameter = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - table2Version = 215 ; - indicatorOfParameter = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - table2Version = 215 ; - indicatorOfParameter = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - table2Version = 215 ; - indicatorOfParameter = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - table2Version = 215 ; - indicatorOfParameter = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - table2Version = 215 ; - indicatorOfParameter = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - table2Version = 215 ; - indicatorOfParameter = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - table2Version = 215 ; - indicatorOfParameter = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - table2Version = 215 ; - indicatorOfParameter = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - table2Version = 215 ; - indicatorOfParameter = 149 ; - } -#Asymmetry factor at 340 nm -'asymmetry340' = { - table2Version = 215 ; - indicatorOfParameter = 150 ; - } -#Asymmetry factor at 355 nm -'asymmetry355' = { - table2Version = 215 ; - indicatorOfParameter = 151 ; - } -#Asymmetry factor at 380 nm -'asymmetry380' = { - table2Version = 215 ; - indicatorOfParameter = 152 ; - } -#Asymmetry factor at 400 nm -'asymmetry400' = { - table2Version = 215 ; - indicatorOfParameter = 153 ; - } -#Asymmetry factor at 440 nm -'asymmetry440' = { - table2Version = 215 ; - indicatorOfParameter = 154 ; - } -#Asymmetry factor at 469 nm -'asymmetry469' = { - table2Version = 215 ; - indicatorOfParameter = 155 ; - } -#Asymmetry factor at 500 nm -'asymmetry500' = { - table2Version = 215 ; - indicatorOfParameter = 156 ; - } -#Asymmetry factor at 532 nm -'asymmetry532' = { - table2Version = 215 ; - indicatorOfParameter = 157 ; - } -#Asymmetry factor at 550 nm -'asymmetry550' = { - table2Version = 215 ; - indicatorOfParameter = 158 ; - } -#Asymmetry factor at 645 nm -'asymmetry645' = { - table2Version = 215 ; - indicatorOfParameter = 159 ; - } -#Asymmetry factor at 670 nm -'asymmetry670' = { - table2Version = 215 ; - indicatorOfParameter = 160 ; - } -#Asymmetry factor at 800 nm -'asymmetry800' = { - table2Version = 215 ; - indicatorOfParameter = 161 ; - } -#Asymmetry factor at 858 nm -'asymmetry858' = { - table2Version = 215 ; - indicatorOfParameter = 162 ; - } -#Asymmetry factor at 865 nm -'asymmetry865' = { - table2Version = 215 ; - indicatorOfParameter = 163 ; - } -#Asymmetry factor at 1020 nm -'asymmetry1020' = { - table2Version = 215 ; - indicatorOfParameter = 164 ; - } -#Asymmetry factor at 1064 nm -'asymmetry1064' = { - table2Version = 215 ; - indicatorOfParameter = 165 ; - } -#Asymmetry factor at 1240 nm -'asymmetry1240' = { - table2Version = 215 ; - indicatorOfParameter = 166 ; - } -#Asymmetry factor at 1640 nm -'asymmetry1640' = { - table2Version = 215 ; - indicatorOfParameter = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - table2Version = 215 ; - indicatorOfParameter = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - table2Version = 215 ; - indicatorOfParameter = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - table2Version = 215 ; - indicatorOfParameter = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - table2Version = 215 ; - indicatorOfParameter = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - table2Version = 215 ; - indicatorOfParameter = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - table2Version = 215 ; - indicatorOfParameter = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - table2Version = 215 ; - indicatorOfParameter = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - table2Version = 215 ; - indicatorOfParameter = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - table2Version = 215 ; - indicatorOfParameter = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - table2Version = 215 ; - indicatorOfParameter = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - table2Version = 215 ; - indicatorOfParameter = 178 ; - } -#Asymmetry factor at 2130 nm -'asymmetry2130' = { - table2Version = 215 ; - indicatorOfParameter = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - table2Version = 215 ; - indicatorOfParameter = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - table2Version = 215 ; - indicatorOfParameter = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - table2Version = 215 ; - indicatorOfParameter = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - table2Version = 215 ; - indicatorOfParameter = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - table2Version = 215 ; - indicatorOfParameter = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - table2Version = 215 ; - indicatorOfParameter = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - table2Version = 215 ; - indicatorOfParameter = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - table2Version = 215 ; - indicatorOfParameter = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - table2Version = 215 ; - indicatorOfParameter = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'aersrcnif' = { - table2Version = 215 ; - indicatorOfParameter = 189 ; - } -#Source/gain of coarse-mode nitrate aerosol -'aersrcnic' = { - table2Version = 215 ; - indicatorOfParameter = 190 ; - } -#Dry deposition of fine-mode nitrate aerosol -'aerddpnif' = { - table2Version = 215 ; - indicatorOfParameter = 191 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'aerddpnic' = { - table2Version = 215 ; - indicatorOfParameter = 192 ; - } -#Sedimentation of fine-mode nitrate aerosol -'aersdmnif' = { - table2Version = 215 ; - indicatorOfParameter = 193 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'aersdmnic' = { - table2Version = 215 ; - indicatorOfParameter = 194 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'aerwdlnif' = { - table2Version = 215 ; - indicatorOfParameter = 195 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'aerwdlnic' = { - table2Version = 215 ; - indicatorOfParameter = 196 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'aerwdcnif' = { - table2Version = 215 ; - indicatorOfParameter = 197 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'aerwdcnic' = { - table2Version = 215 ; - indicatorOfParameter = 198 ; - } -#Negative fixer of fine-mode nitrate aerosol -'aerngtnif' = { - table2Version = 215 ; - indicatorOfParameter = 199 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'aerngtnic' = { - table2Version = 215 ; - indicatorOfParameter = 200 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'aermssnif' = { - table2Version = 215 ; - indicatorOfParameter = 201 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'aermssnic' = { - table2Version = 215 ; - indicatorOfParameter = 202 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'aerodnif' = { - table2Version = 215 ; - indicatorOfParameter = 203 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'aerodnic' = { - table2Version = 215 ; - indicatorOfParameter = 204 ; - } -#Source/gain of ammonium aerosol -'aersrcam' = { - table2Version = 215 ; - indicatorOfParameter = 205 ; - } -#Dry deposition of ammonium aerosol -'aerddpam' = { - table2Version = 215 ; - indicatorOfParameter = 206 ; - } -#Sedimentation of ammonium aerosol -'aersdmam' = { - table2Version = 215 ; - indicatorOfParameter = 207 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'aerwdlam' = { - table2Version = 215 ; - indicatorOfParameter = 208 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'aerwdcam' = { - table2Version = 215 ; - indicatorOfParameter = 209 ; - } -#Negative fixer of ammonium aerosol -'aerngtam' = { - table2Version = 215 ; - indicatorOfParameter = 210 ; - } -#Vertically integrated mass of ammonium aerosol -'aermssam' = { - table2Version = 215 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'ch4_c' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'hno3' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - table2Version = 217 ; - indicatorOfParameter = 7 ; - } -#Paraffins -'par' = { - table2Version = 217 ; - indicatorOfParameter = 9 ; - } -#Ethene -'c2h4' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Olefins -'ole' = { - table2Version = 217 ; - indicatorOfParameter = 11 ; - } -#Aldehydes -'ald2' = { - table2Version = 217 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Peroxides -'rooh' = { - table2Version = 217 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates -'onit' = { - table2Version = 217 ; - indicatorOfParameter = 15 ; - } -#Isoprene -'c5h8' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'dms' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'nh3' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Sulfate -'so4' = { - table2Version = 217 ; - indicatorOfParameter = 20 ; - } -#Ammonium -'nh4' = { - table2Version = 217 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid -'msa' = { - table2Version = 217 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - table2Version = 217 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone -'o3s' = { - table2Version = 217 ; - indicatorOfParameter = 24 ; - } -#Lead -'pb' = { - table2Version = 217 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide -'no' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical -'ho2' = { - table2Version = 217 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - table2Version = 217 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical -'oh' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'no3' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid -'ho2no2' = { - table2Version = 217 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - table2Version = 217 ; - indicatorOfParameter = 35 ; - } -#Organic ethers -'ror' = { - table2Version = 217 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector -'rxpar' = { - table2Version = 217 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator -'xo2' = { - table2Version = 217 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - table2Version = 217 ; - indicatorOfParameter = 39 ; - } -#Amine -'nh2' = { - table2Version = 217 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud -'psc' = { - table2Version = 217 ; - indicatorOfParameter = 41 ; - } -#Methanol -'ch3oh' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'hcooh' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid -'mcooh' = { - table2Version = 217 ; - indicatorOfParameter = 44 ; - } -#Ethane -'c2h6' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'c2h5oh' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'c3h8' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'c3h6' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'c10h16' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK -'ispd' = { - table2Version = 217 ; - indicatorOfParameter = 50 ; - } -#Nitrate -'no3_a' = { - table2Version = 217 ; - indicatorOfParameter = 51 ; - } -#Acetone -'ch3coch3' = { - table2Version = 217 ; - indicatorOfParameter = 52 ; - } -#Acetone product -'aco2' = { - table2Version = 217 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - table2Version = 217 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 -'hypropo2' = { - table2Version = 217 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - table2Version = 217 ; - indicatorOfParameter = 56 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'tc_ch4' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - table2Version = 218 ; - indicatorOfParameter = 7 ; - } -#Total column paraffins -'tc_par' = { - table2Version = 218 ; - indicatorOfParameter = 9 ; - } -#Total column ethene -'tc_c2h4' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column olefins -'tc_ole' = { - table2Version = 218 ; - indicatorOfParameter = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - table2Version = 218 ; - indicatorOfParameter = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column peroxides -'tc_rooh' = { - table2Version = 218 ; - indicatorOfParameter = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - table2Version = 218 ; - indicatorOfParameter = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'tc_nh3' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'tc_so4' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column ammonium -'tc_nh4' = { - table2Version = 218 ; - indicatorOfParameter = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - table2Version = 218 ; - indicatorOfParameter = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - table2Version = 218 ; - indicatorOfParameter = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - table2Version = 218 ; - indicatorOfParameter = 24 ; - } -#Total column lead -'tc_pb' = { - table2Version = 218 ; - indicatorOfParameter = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - table2Version = 218 ; - indicatorOfParameter = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - table2Version = 218 ; - indicatorOfParameter = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - table2Version = 218 ; - indicatorOfParameter = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - table2Version = 218 ; - indicatorOfParameter = 35 ; - } -#Total column organic ethers -'tc_ror' = { - table2Version = 218 ; - indicatorOfParameter = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - table2Version = 218 ; - indicatorOfParameter = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - table2Version = 218 ; - indicatorOfParameter = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - table2Version = 218 ; - indicatorOfParameter = 39 ; - } -#Total column amine -'tc_nh2' = { - table2Version = 218 ; - indicatorOfParameter = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - table2Version = 218 ; - indicatorOfParameter = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - table2Version = 218 ; - indicatorOfParameter = 44 ; - } -#Total column ethane -'tc_c2h6' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'tc_c3h8' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'tc_c3h6' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - table2Version = 218 ; - indicatorOfParameter = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - table2Version = 218 ; - indicatorOfParameter = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - table2Version = 218 ; - indicatorOfParameter = 52 ; - } -#Total column acetone product -'tc_aco2' = { - table2Version = 218 ; - indicatorOfParameter = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - table2Version = 218 ; - indicatorOfParameter = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - table2Version = 218 ; - indicatorOfParameter = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - table2Version = 218 ; - indicatorOfParameter = 56 ; - } -#Ozone emissions -'e_go3' = { - table2Version = 219 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - table2Version = 219 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - table2Version = 219 ; - indicatorOfParameter = 3 ; - } -#Methane emissions -'e_ch4' = { - table2Version = 219 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - table2Version = 219 ; - indicatorOfParameter = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - table2Version = 219 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - table2Version = 219 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - table2Version = 219 ; - indicatorOfParameter = 8 ; - } -#Paraffins emissions -'e_par' = { - table2Version = 219 ; - indicatorOfParameter = 9 ; - } -#Ethene emissions -'e_c2h4' = { - table2Version = 219 ; - indicatorOfParameter = 10 ; - } -#Olefins emissions -'e_ole' = { - table2Version = 219 ; - indicatorOfParameter = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - table2Version = 219 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - table2Version = 219 ; - indicatorOfParameter = 13 ; - } -#Peroxides emissions -'e_rooh' = { - table2Version = 219 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - table2Version = 219 ; - indicatorOfParameter = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - table2Version = 219 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - table2Version = 219 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - table2Version = 219 ; - indicatorOfParameter = 18 ; - } -#Ammonia emissions -'e_nh3' = { - table2Version = 219 ; - indicatorOfParameter = 19 ; - } -#Sulfate emissions -'e_so4' = { - table2Version = 219 ; - indicatorOfParameter = 20 ; - } -#Ammonium emissions -'e_nh4' = { - table2Version = 219 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - table2Version = 219 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - table2Version = 219 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - table2Version = 219 ; - indicatorOfParameter = 24 ; - } -#Radon emissions -'e_ra' = { - table2Version = 219 ; - indicatorOfParameter = 25 ; - } -#Lead emissions -'e_pb' = { - table2Version = 219 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - table2Version = 219 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - table2Version = 219 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - table2Version = 219 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - table2Version = 219 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - table2Version = 219 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - table2Version = 219 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - table2Version = 219 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - table2Version = 219 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - table2Version = 219 ; - indicatorOfParameter = 35 ; - } -#Organic ethers emissions -'e_ror' = { - table2Version = 219 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - table2Version = 219 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - table2Version = 219 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - table2Version = 219 ; - indicatorOfParameter = 39 ; - } -#Amine emissions -'e_nh2' = { - table2Version = 219 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - table2Version = 219 ; - indicatorOfParameter = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - table2Version = 219 ; - indicatorOfParameter = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - table2Version = 219 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - table2Version = 219 ; - indicatorOfParameter = 44 ; - } -#Ethane emissions -'e_c2h6' = { - table2Version = 219 ; - indicatorOfParameter = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - table2Version = 219 ; - indicatorOfParameter = 46 ; - } -#Propane emissions -'e_c3h8' = { - table2Version = 219 ; - indicatorOfParameter = 47 ; - } -#Propene emissions -'e_c3h6' = { - table2Version = 219 ; - indicatorOfParameter = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - table2Version = 219 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - table2Version = 219 ; - indicatorOfParameter = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - table2Version = 219 ; - indicatorOfParameter = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - table2Version = 219 ; - indicatorOfParameter = 52 ; - } -#Acetone product emissions -'e_aco2' = { - table2Version = 219 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - table2Version = 219 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - table2Version = 219 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - table2Version = 219 ; - indicatorOfParameter = 56 ; - } -#Ozone deposition velocity -'dv_go3' = { - table2Version = 221 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - table2Version = 221 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - table2Version = 221 ; - indicatorOfParameter = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - table2Version = 221 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - table2Version = 221 ; - indicatorOfParameter = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - table2Version = 221 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - table2Version = 221 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - table2Version = 221 ; - indicatorOfParameter = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - table2Version = 221 ; - indicatorOfParameter = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - table2Version = 221 ; - indicatorOfParameter = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - table2Version = 221 ; - indicatorOfParameter = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - table2Version = 221 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - table2Version = 221 ; - indicatorOfParameter = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - table2Version = 221 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - table2Version = 221 ; - indicatorOfParameter = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - table2Version = 221 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - table2Version = 221 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - table2Version = 221 ; - indicatorOfParameter = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - table2Version = 221 ; - indicatorOfParameter = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - table2Version = 221 ; - indicatorOfParameter = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - table2Version = 221 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - table2Version = 221 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - table2Version = 221 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - table2Version = 221 ; - indicatorOfParameter = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - table2Version = 221 ; - indicatorOfParameter = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - table2Version = 221 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - table2Version = 221 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - table2Version = 221 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - table2Version = 221 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - table2Version = 221 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - table2Version = 221 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - table2Version = 221 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - table2Version = 221 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - table2Version = 221 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - table2Version = 221 ; - indicatorOfParameter = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - table2Version = 221 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - table2Version = 221 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - table2Version = 221 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - table2Version = 221 ; - indicatorOfParameter = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - table2Version = 221 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - table2Version = 221 ; - indicatorOfParameter = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - table2Version = 221 ; - indicatorOfParameter = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - table2Version = 221 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - table2Version = 221 ; - indicatorOfParameter = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - table2Version = 221 ; - indicatorOfParameter = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - table2Version = 221 ; - indicatorOfParameter = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - table2Version = 221 ; - indicatorOfParameter = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - table2Version = 221 ; - indicatorOfParameter = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - table2Version = 221 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - table2Version = 221 ; - indicatorOfParameter = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - table2Version = 221 ; - indicatorOfParameter = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - table2Version = 221 ; - indicatorOfParameter = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - table2Version = 221 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - table2Version = 221 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - table2Version = 221 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - table2Version = 221 ; - indicatorOfParameter = 56 ; - } -#-10 degrees C isothermal level (atm) -'degm10l' = { - table2Version = 228 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - table2Version = 228 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - table2Version = 228 ; - indicatorOfParameter = 22 ; - } -#Cloud base height -'cbh' = { - table2Version = 228 ; - indicatorOfParameter = 23 ; - } -#0 degrees C isothermal level (atm) -'deg0l' = { - table2Version = 228 ; - indicatorOfParameter = 24 ; - } -#Horizontal visibility -'hvis' = { - table2Version = 228 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - table2Version = 228 ; - indicatorOfParameter = 26 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - table2Version = 228 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust in the last 3 hours -'10fg3' = { - table2Version = 228 ; - indicatorOfParameter = 28 ; - } -#Instantaneous 10 metre wind gust -'i10fg' = { - table2Version = 228 ; - indicatorOfParameter = 29 ; - } -#2 metre relative humidity with respect to water -'2rhw' = { - table2Version = 228 ; - indicatorOfParameter = 37 ; - } -#Soil wetness index in layer 1 -'swi1' = { - table2Version = 228 ; - indicatorOfParameter = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - table2Version = 228 ; - indicatorOfParameter = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - table2Version = 228 ; - indicatorOfParameter = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - table2Version = 228 ; - indicatorOfParameter = 43 ; - } -#Convective available potential energy shear -'capes' = { - table2Version = 228 ; - indicatorOfParameter = 44 ; - } -#Height of convective cloud top -'hcct' = { - table2Version = 228 ; - indicatorOfParameter = 46 ; - } -#Height of zero-degree wet-bulb temperature -'hwbt0' = { - table2Version = 228 ; - indicatorOfParameter = 47 ; - } -#Height of one-degree wet-bulb temperature -'hwbt1' = { - table2Version = 228 ; - indicatorOfParameter = 48 ; - } -#Instantaneous total lightning flash density -'litoti' = { - table2Version = 228 ; - indicatorOfParameter = 50 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - table2Version = 228 ; - indicatorOfParameter = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - table2Version = 228 ; - indicatorOfParameter = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - table2Version = 228 ; - indicatorOfParameter = 53 ; - } -#SMOS observed soil moisture retrieved using neural network -'smnnob' = { - table2Version = 228 ; - indicatorOfParameter = 70 ; - } -#SMOS observed soil moisture uncertainty retrieved using neural network -'smnner' = { - table2Version = 228 ; - indicatorOfParameter = 71 ; - } -#SMOS radio frequency interference probability -'smnnrfi' = { - table2Version = 228 ; - indicatorOfParameter = 72 ; - } -#SMOS number of observations per grid point -'smnnnb' = { - table2Version = 228 ; - indicatorOfParameter = 73 ; - } -#SMOS observation time for the satellite soil moisture data -'smnntim' = { - table2Version = 228 ; - indicatorOfParameter = 74 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'gppbfas' = { - table2Version = 228 ; - indicatorOfParameter = 78 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'recbfas' = { - table2Version = 228 ; - indicatorOfParameter = 79 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'aco2nee' = { - table2Version = 228 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'aco2gpp' = { - table2Version = 228 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'aco2rec' = { - table2Version = 228 ; - indicatorOfParameter = 82 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'fco2nee' = { - table2Version = 228 ; - indicatorOfParameter = 83 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'fco2gpp' = { - table2Version = 228 ; - indicatorOfParameter = 84 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'fco2rec' = { - table2Version = 228 ; - indicatorOfParameter = 85 ; - } -#Total column supercooled liquid water -'tcslw' = { - table2Version = 228 ; - indicatorOfParameter = 88 ; - } -#Total column rain water -'tcrw' = { - table2Version = 228 ; - indicatorOfParameter = 89 ; - } -#Total column snow water -'tcsw' = { - table2Version = 228 ; - indicatorOfParameter = 90 ; - } -#Canopy cover fraction -'ccf' = { - table2Version = 228 ; - indicatorOfParameter = 91 ; - } -#Soil texture fraction -'stf' = { - table2Version = 228 ; - indicatorOfParameter = 92 ; - } -#Volumetric soil moisture -'swv' = { - table2Version = 228 ; - indicatorOfParameter = 93 ; - } -#Ice temperature -'ist' = { - table2Version = 228 ; - indicatorOfParameter = 94 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - table2Version = 228 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - table2Version = 228 ; - indicatorOfParameter = 130 ; - } -#Accumulated freezing rain -'fzra' = { - table2Version = 228 ; - indicatorOfParameter = 216 ; - } -#Instantaneous large-scale surface precipitation fraction -'ilspf' = { - table2Version = 228 ; - indicatorOfParameter = 217 ; - } -#Convective rain rate -'crr' = { - table2Version = 228 ; - indicatorOfParameter = 218 ; - } -#Large scale rain rate -'lsrr' = { - table2Version = 228 ; - indicatorOfParameter = 219 ; - } -#Convective snowfall rate water equivalent -'csfr' = { - table2Version = 228 ; - indicatorOfParameter = 220 ; - } -#Large scale snowfall rate water equivalent -'lssfr' = { - table2Version = 228 ; - indicatorOfParameter = 221 ; - } -#Maximum total precipitation rate in the last 3 hours -'mxtpr3' = { - table2Version = 228 ; - indicatorOfParameter = 222 ; - } -#Minimum total precipitation rate in the last 3 hours -'mntpr3' = { - table2Version = 228 ; - indicatorOfParameter = 223 ; - } -#Maximum total precipitation rate in the last 6 hours -'mxtpr6' = { - table2Version = 228 ; - indicatorOfParameter = 224 ; - } -#Minimum total precipitation rate in the last 6 hours -'mntpr6' = { - table2Version = 228 ; - indicatorOfParameter = 225 ; - } -#Maximum total precipitation rate since previous post-processing -'mxtpr' = { - table2Version = 228 ; - indicatorOfParameter = 226 ; - } -#Minimum total precipitation rate since previous post-processing -'mntpr' = { - table2Version = 228 ; - indicatorOfParameter = 227 ; - } -#SMOS first Brightness Temperature Bias Correction parameter -'smos_tb_cdfa' = { - table2Version = 228 ; - indicatorOfParameter = 229 ; - } -#SMOS second Brightness Temperature Bias Correction parameter -'smos_tb_cdfb' = { - table2Version = 228 ; - indicatorOfParameter = 230 ; - } -#200 metre U wind component -'200u' = { - table2Version = 228 ; - indicatorOfParameter = 239 ; - } -#200 metre V wind component -'200v' = { - table2Version = 228 ; - indicatorOfParameter = 240 ; - } -#200 metre wind speed -'200si' = { - table2Version = 228 ; - indicatorOfParameter = 241 ; - } -#Surface solar radiation diffuse total sky -'fdif' = { - table2Version = 228 ; - indicatorOfParameter = 242 ; - } -#Surface solar radiation diffuse clear-sky -'cdif' = { - table2Version = 228 ; - indicatorOfParameter = 243 ; - } -#Surface albedo of direct radiation -'aldr' = { - table2Version = 228 ; - indicatorOfParameter = 244 ; - } -#Surface albedo of diffuse radiation -'aldf' = { - table2Version = 228 ; - indicatorOfParameter = 245 ; - } -#100 metre wind speed -'100si' = { - table2Version = 228 ; - indicatorOfParameter = 249 ; - } -#Irrigation fraction -'irrfr' = { - table2Version = 228 ; - indicatorOfParameter = 250 ; - } -#Potential evaporation -'pev' = { - table2Version = 228 ; - indicatorOfParameter = 251 ; - } -#Irrigation -'irr' = { - table2Version = 228 ; - indicatorOfParameter = 252 ; - } -#Surface runoff (variable resolution) -'srovar' = { - table2Version = 230 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff (variable resolution) -'ssrovar' = { - table2Version = 230 ; - indicatorOfParameter = 9 ; - } -#Clear sky surface photosynthetically active radiation (variable resolution) -'parcsvar' = { - table2Version = 230 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface (variable resolution) -'fdirvar' = { - table2Version = 230 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface (variable resolution) -'cdirvar' = { - table2Version = 230 ; - indicatorOfParameter = 22 ; - } -#Direct solar radiation (variable resolution) -'dsrpvar' = { - table2Version = 230 ; - indicatorOfParameter = 47 ; - } -#Large-scale precipitation fraction (variable resolution) -'lspfvar' = { - table2Version = 230 ; - indicatorOfParameter = 50 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) -'aco2neevar' = { - table2Version = 230 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) -'aco2gppvar' = { - table2Version = 230 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) -'aco2recvar' = { - table2Version = 230 ; - indicatorOfParameter = 82 ; - } -#Surface solar radiation downward clear-sky (variable resolution) -'ssrdcvar' = { - table2Version = 230 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky (variable resolution) -'strdcvar' = { - table2Version = 230 ; - indicatorOfParameter = 130 ; - } -#Albedo (variable resolution) -'alvar' = { - table2Version = 230 ; - indicatorOfParameter = 174 ; - } -#Vertically integrated moisture divergence (variable resolution) -'vimdvar' = { - table2Version = 230 ; - indicatorOfParameter = 213 ; - } -#Accumulated freezing rain (variable resolution) -'fzravar' = { - table2Version = 230 ; - indicatorOfParameter = 216 ; - } -#Total precipitation (variable resolution) -'tpvar' = { - table2Version = 230 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall (variable resolution) -'csfvar' = { - table2Version = 230 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall (variable resolution) -'lsfvar' = { - table2Version = 230 ; - indicatorOfParameter = 240 ; - } -#Potential evaporation (variable resolution) -'pevvar' = { - table2Version = 230 ; - indicatorOfParameter = 251 ; - } -#Mean surface runoff rate -'msror' = { - table2Version = 235 ; - indicatorOfParameter = 20 ; - } -#Mean sub-surface runoff rate -'mssror' = { - table2Version = 235 ; - indicatorOfParameter = 21 ; - } -#Mean surface photosynthetically active radiation flux, clear sky -'msparfcs' = { - table2Version = 235 ; - indicatorOfParameter = 22 ; - } -#Mean snow evaporation rate -'mser' = { - table2Version = 235 ; - indicatorOfParameter = 23 ; - } -#Mean snowmelt rate -'msmr' = { - table2Version = 235 ; - indicatorOfParameter = 24 ; - } -#Mean magnitude of turbulent surface stress -'mmtss' = { - table2Version = 235 ; - indicatorOfParameter = 25 ; - } -#Mean large-scale precipitation fraction -'mlspf' = { - table2Version = 235 ; - indicatorOfParameter = 26 ; - } -#Mean surface downward UV radiation flux -'msdwuvrf' = { - table2Version = 235 ; - indicatorOfParameter = 27 ; - } -#Mean surface photosynthetically active radiation flux -'msparf' = { - table2Version = 235 ; - indicatorOfParameter = 28 ; - } -#Mean large-scale precipitation rate -'mlspr' = { - table2Version = 235 ; - indicatorOfParameter = 29 ; - } -#Mean convective precipitation rate -'mcpr' = { - table2Version = 235 ; - indicatorOfParameter = 30 ; - } -#Mean snowfall rate -'msr' = { - table2Version = 235 ; - indicatorOfParameter = 31 ; - } -#Mean boundary layer dissipation -'mbld' = { - table2Version = 235 ; - indicatorOfParameter = 32 ; - } -#Mean surface sensible heat flux -'msshf' = { - table2Version = 235 ; - indicatorOfParameter = 33 ; - } -#Mean surface latent heat flux -'mslhf' = { - table2Version = 235 ; - indicatorOfParameter = 34 ; - } -#Mean surface downward short-wave radiation flux -'msdwswrf' = { - table2Version = 235 ; - indicatorOfParameter = 35 ; - } -#Mean surface downward long-wave radiation flux -'msdwlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 36 ; - } -#Mean surface net short-wave radiation flux -'msnswrf' = { - table2Version = 235 ; - indicatorOfParameter = 37 ; - } -#Mean surface net long-wave radiation flux -'msnlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 38 ; - } -#Mean top net short-wave radiation flux -'mtnswrf' = { - table2Version = 235 ; - indicatorOfParameter = 39 ; - } -#Mean top net long-wave radiation flux -'mtnlwrf' = { - table2Version = 235 ; - indicatorOfParameter = 40 ; - } -#Mean eastward turbulent surface stress -'metss' = { - table2Version = 235 ; - indicatorOfParameter = 41 ; - } -#Mean northward turbulent surface stress -'mntss' = { - table2Version = 235 ; - indicatorOfParameter = 42 ; - } -#Mean evaporation rate -'mer' = { - table2Version = 235 ; - indicatorOfParameter = 43 ; - } -#Sunshine duration fraction -'sdf' = { - table2Version = 235 ; - indicatorOfParameter = 44 ; - } -#Mean eastward gravity wave surface stress -'megwss' = { - table2Version = 235 ; - indicatorOfParameter = 45 ; - } -#Mean northward gravity wave surface stress -'mngwss' = { - table2Version = 235 ; - indicatorOfParameter = 46 ; - } -#Mean gravity wave dissipation -'mgwd' = { - table2Version = 235 ; - indicatorOfParameter = 47 ; - } -#Mean runoff rate -'mror' = { - table2Version = 235 ; - indicatorOfParameter = 48 ; - } -#Mean top net short-wave radiation flux, clear sky -'mtnswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 49 ; - } -#Mean top net long-wave radiation flux, clear sky -'mtnlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 50 ; - } -#Mean surface net short-wave radiation flux, clear sky -'msnswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 51 ; - } -#Mean surface net long-wave radiation flux, clear sky -'msnlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 52 ; - } -#Mean top downward short-wave radiation flux -'mtdwswrf' = { - table2Version = 235 ; - indicatorOfParameter = 53 ; - } -#Mean vertically integrated moisture divergence -'mvimd' = { - table2Version = 235 ; - indicatorOfParameter = 54 ; - } -#Mean total precipitation rate -'mtpr' = { - table2Version = 235 ; - indicatorOfParameter = 55 ; - } -#Mean convective snowfall rate -'mcsr' = { - table2Version = 235 ; - indicatorOfParameter = 56 ; - } -#Mean large-scale snowfall rate -'mlssr' = { - table2Version = 235 ; - indicatorOfParameter = 57 ; - } -#Mean surface direct short-wave radiation flux -'msdrswrf' = { - table2Version = 235 ; - indicatorOfParameter = 58 ; - } -#Mean surface direct short-wave radiation flux, clear sky -'msdrswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 59 ; - } -#Mean surface diffuse short-wave radiation flux -'msdfswrf' = { - table2Version = 235 ; - indicatorOfParameter = 60 ; - } -#Mean surface diffuse short-wave radiation flux, clear sky -'msdfswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 61 ; - } -#Mean carbon dioxide net ecosystem exchange flux -'mcdneef' = { - table2Version = 235 ; - indicatorOfParameter = 62 ; - } -#Mean carbon dioxide gross primary production flux -'mcdgppf' = { - table2Version = 235 ; - indicatorOfParameter = 63 ; - } -#Mean carbon dioxide ecosystem respiration flux -'mcderf' = { - table2Version = 235 ; - indicatorOfParameter = 64 ; - } -#Mean rain rate -'mrr' = { - table2Version = 235 ; - indicatorOfParameter = 65 ; - } -#Mean convective rain rate -'mcrr' = { - table2Version = 235 ; - indicatorOfParameter = 66 ; - } -#Mean large-scale rain rate -'mlsrr' = { - table2Version = 235 ; - indicatorOfParameter = 67 ; - } -#Mean surface downward short-wave radiation flux, clear sky -'msdwswrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 68 ; - } -#Mean surface downward long-wave radiation flux, clear sky -'msdwlwrfcs' = { - table2Version = 235 ; - indicatorOfParameter = 69 ; - } -#Mean potential evaporation rate -'mper' = { - table2Version = 235 ; - indicatorOfParameter = 70 ; - } -#Total precipitation rate -'tprate' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#Ceiling -'ceil' = { - table2Version = 228 ; - indicatorOfParameter = 109 ; - } -#K index -'kx' = { - table2Version = 228 ; - indicatorOfParameter = 121 ; - } -#Total totals index -'totalx' = { - table2Version = 228 ; - indicatorOfParameter = 123 ; - } -#Stream function gradient -'strfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - table2Version = 129 ; - indicatorOfParameter = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - table2Version = 129 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - table2Version = 129 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - table2Version = 129 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - table2Version = 129 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 129 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 129 ; - indicatorOfParameter = 25 ; - } -#Lake cover gradient -'clgrd' = { - table2Version = 129 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - table2Version = 129 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - table2Version = 129 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - table2Version = 129 ; - indicatorOfParameter = 31 ; - } -#Snow albedo gradient -'asngrd' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#Snow density gradient -'rsngrd' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 42 ; - } -#Soil type gradient -'sltgrd' = { - table2Version = 129 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - table2Version = 129 ; - indicatorOfParameter = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - table2Version = 129 ; - indicatorOfParameter = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - table2Version = 129 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust gradient -'10fggrd' = { - table2Version = 129 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - table2Version = 129 ; - indicatorOfParameter = 53 ; - } -#Pressure gradient -'presgrd' = { - table2Version = 129 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - table2Version = 129 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - table2Version = 129 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - table2Version = 129 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - table2Version = 129 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - table2Version = 129 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - table2Version = 129 ; - indicatorOfParameter = 61 ; - } -#Observation count gradient -'obctgrd' = { - table2Version = 129 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'~' = { - table2Version = 129 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'~' = { - table2Version = 129 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'~' = { - table2Version = 129 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'~' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'~' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'~' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - table2Version = 129 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - table2Version = 129 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10fg6grd' = { - table2Version = 129 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'~' = { - table2Version = 129 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - table2Version = 129 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - table2Version = 129 ; - indicatorOfParameter = 127 ; - } -#Budget values gradient -'bvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 128 ; - } -#Geopotential gradient -'zgrd' = { - table2Version = 129 ; - indicatorOfParameter = 129 ; - } -#Temperature gradient -'tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 130 ; - } -#U component of wind gradient -'ugrd' = { - table2Version = 129 ; - indicatorOfParameter = 131 ; - } -#V component of wind gradient -'vgrd' = { - table2Version = 129 ; - indicatorOfParameter = 132 ; - } -#Specific humidity gradient -'qgrd' = { - table2Version = 129 ; - indicatorOfParameter = 133 ; - } -#Surface pressure gradient -'spgrd' = { - table2Version = 129 ; - indicatorOfParameter = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - table2Version = 129 ; - indicatorOfParameter = 135 ; - } -#Total column water gradient -'tcwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - table2Version = 129 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - table2Version = 129 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - table2Version = 129 ; - indicatorOfParameter = 140 ; - } -#Snow depth gradient -'sdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 147 ; - } -#Charnock gradient -'chnkgrd' = { - table2Version = 129 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - table2Version = 129 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 154 ; - } -#Divergence gradient -'dgrd' = { - table2Version = 129 ; - indicatorOfParameter = 155 ; - } -#Height gradient -'ghgrd' = { - table2Version = 129 ; - indicatorOfParameter = 156 ; - } -#Relative humidity gradient -'rgrd' = { - table2Version = 129 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - table2Version = 129 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component gradient -'10ugrd' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component gradient -'10vgrd' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature gradient -'2tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature gradient -'2dgrd' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#Surface roughness gradient -'srgrd' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#Albedo gradient -'algrd' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#Evaporation gradient -'egrd' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - table2Version = 129 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#Runoff gradient -'rogrd' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed gradient -'10sigrd' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - table2Version = 129 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - table2Version = 129 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - table2Version = 129 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - table2Version = 129 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - table2Version = 129 ; - indicatorOfParameter = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - table2Version = 129 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 249 ; - } -#Ice age gradient -'icegrd' = { - table2Version = 129 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - table2Version = 129 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - table2Version = 129 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - table2Version = 129 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - table2Version = 129 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -#Top solar radiation upward -'tsru' = { - table2Version = 130 ; - indicatorOfParameter = 208 ; - } -#Top thermal radiation upward -'ttru' = { - table2Version = 130 ; - indicatorOfParameter = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - table2Version = 130 ; - indicatorOfParameter = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - table2Version = 130 ; - indicatorOfParameter = 211 ; - } -#Cloud liquid water -'clw' = { - table2Version = 130 ; - indicatorOfParameter = 212 ; - } -#Cloud fraction -'cf' = { - table2Version = 130 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - table2Version = 130 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - table2Version = 130 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - table2Version = 130 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - table2Version = 130 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - table2Version = 130 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - table2Version = 130 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - table2Version = 130 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - table2Version = 130 ; - indicatorOfParameter = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - table2Version = 130 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - table2Version = 130 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - table2Version = 130 ; - indicatorOfParameter = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - table2Version = 130 ; - indicatorOfParameter = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - table2Version = 130 ; - indicatorOfParameter = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - table2Version = 130 ; - indicatorOfParameter = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - table2Version = 130 ; - indicatorOfParameter = 231 ; - } -#Mean vertical velocity -'mvv' = { - table2Version = 130 ; - indicatorOfParameter = 232 ; - } -#2m temperature anomaly of at least +2K -'2tag2' = { - table2Version = 131 ; - indicatorOfParameter = 1 ; - } -#2m temperature anomaly of at least +1K -'2tag1' = { - table2Version = 131 ; - indicatorOfParameter = 2 ; - } -#2m temperature anomaly of at least 0K -'2tag0' = { - table2Version = 131 ; - indicatorOfParameter = 3 ; - } -#2m temperature anomaly of at most -1K -'2talm1' = { - table2Version = 131 ; - indicatorOfParameter = 4 ; - } -#2m temperature anomaly of at most -2K -'2talm2' = { - table2Version = 131 ; - indicatorOfParameter = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - table2Version = 131 ; - indicatorOfParameter = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - table2Version = 131 ; - indicatorOfParameter = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - table2Version = 131 ; - indicatorOfParameter = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - table2Version = 131 ; - indicatorOfParameter = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - table2Version = 131 ; - indicatorOfParameter = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - table2Version = 131 ; - indicatorOfParameter = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - table2Version = 131 ; - indicatorOfParameter = 16 ; - } -#Showalter index probability -'saip' = { - table2Version = 131 ; - indicatorOfParameter = 17 ; - } -#Whiting index probability -'whip' = { - table2Version = 131 ; - indicatorOfParameter = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - table2Version = 131 ; - indicatorOfParameter = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - table2Version = 131 ; - indicatorOfParameter = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - table2Version = 131 ; - indicatorOfParameter = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - table2Version = 131 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - table2Version = 131 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - table2Version = 131 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability -'10gp' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Convective available potential energy probability -'capep' = { - table2Version = 131 ; - indicatorOfParameter = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - table2Version = 131 ; - indicatorOfParameter = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - table2Version = 131 ; - indicatorOfParameter = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - table2Version = 131 ; - indicatorOfParameter = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10spg10' = { - table2Version = 131 ; - indicatorOfParameter = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10spg15' = { - table2Version = 131 ; - indicatorOfParameter = 69 ; - } -#10 metre wind gust of at least 15 m/s -'10fgg15' = { - table2Version = 131 ; - indicatorOfParameter = 70 ; - } -#10 metre wind gust of at least 20 m/s -'10fgg20' = { - table2Version = 131 ; - indicatorOfParameter = 71 ; - } -#10 metre wind gust of at least 25 m/s -'10fgg25' = { - table2Version = 131 ; - indicatorOfParameter = 72 ; - } -#2 metre temperature less than 273.15 K -'2tl273' = { - table2Version = 131 ; - indicatorOfParameter = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - table2Version = 131 ; - indicatorOfParameter = 74 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - table2Version = 131 ; - indicatorOfParameter = 75 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - table2Version = 131 ; - indicatorOfParameter = 76 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - table2Version = 131 ; - indicatorOfParameter = 77 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - table2Version = 131 ; - indicatorOfParameter = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - table2Version = 131 ; - indicatorOfParameter = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - table2Version = 131 ; - indicatorOfParameter = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - table2Version = 131 ; - indicatorOfParameter = 81 ; - } -#Geopotential probability -'zp' = { - table2Version = 131 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly probability -'tap' = { - table2Version = 131 ; - indicatorOfParameter = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - table2Version = 131 ; - indicatorOfParameter = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - table2Version = 131 ; - indicatorOfParameter = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Total cloud cover probability -'tccp' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#10 metre speed probability -'10sp' = { - table2Version = 131 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature probability -'2tp' = { - table2Version = 131 ; - indicatorOfParameter = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - table2Version = 131 ; - indicatorOfParameter = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - table2Version = 131 ; - indicatorOfParameter = 202 ; - } -#Total precipitation probability -'tpp' = { - table2Version = 131 ; - indicatorOfParameter = 228 ; - } -#Significant wave height probability -'swhp' = { - table2Version = 131 ; - indicatorOfParameter = 229 ; - } -#Mean wave period probability -'mwpp' = { - table2Version = 131 ; - indicatorOfParameter = 232 ; - } -#Indicates a missing value -'~' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust index -'10fgi' = { - table2Version = 132 ; - indicatorOfParameter = 49 ; - } -#Snowfall index -'sfi' = { - table2Version = 132 ; - indicatorOfParameter = 144 ; - } -#10 metre speed index -'10wsi' = { - table2Version = 132 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature index -'2ti' = { - table2Version = 132 ; - indicatorOfParameter = 167 ; - } -#Maximum temperature at 2 metres index -'mx2ti' = { - table2Version = 132 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres index -'mn2ti' = { - table2Version = 132 ; - indicatorOfParameter = 202 ; - } -#Total precipitation index -'tpi' = { - table2Version = 132 ; - indicatorOfParameter = 228 ; - } -#2m temperature probability less than -10 C -'2tplm10' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#2m temperature probability less than -5 C -'2tplm5' = { - table2Version = 133 ; - indicatorOfParameter = 2 ; - } -#2m temperature probability less than 0 C -'2tpl0' = { - table2Version = 133 ; - indicatorOfParameter = 3 ; - } -#2m temperature probability less than 5 C -'2tpl5' = { - table2Version = 133 ; - indicatorOfParameter = 4 ; - } -#2m temperature probability less than 10 C -'2tpl10' = { - table2Version = 133 ; - indicatorOfParameter = 5 ; - } -#2m temperature probability greater than 25 C -'2tpg25' = { - table2Version = 133 ; - indicatorOfParameter = 6 ; - } -#2m temperature probability greater than 30 C -'2tpg30' = { - table2Version = 133 ; - indicatorOfParameter = 7 ; - } -#2m temperature probability greater than 35 C -'2tpg35' = { - table2Version = 133 ; - indicatorOfParameter = 8 ; - } -#2m temperature probability greater than 40 C -'2tpg40' = { - table2Version = 133 ; - indicatorOfParameter = 9 ; - } -#2m temperature probability greater than 45 C -'2tpg45' = { - table2Version = 133 ; - indicatorOfParameter = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - table2Version = 133 ; - indicatorOfParameter = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - table2Version = 133 ; - indicatorOfParameter = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - table2Version = 133 ; - indicatorOfParameter = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - table2Version = 133 ; - indicatorOfParameter = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - table2Version = 133 ; - indicatorOfParameter = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - table2Version = 133 ; - indicatorOfParameter = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - table2Version = 133 ; - indicatorOfParameter = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - table2Version = 133 ; - indicatorOfParameter = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10spg10' = { - table2Version = 133 ; - indicatorOfParameter = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10spg15' = { - table2Version = 133 ; - indicatorOfParameter = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10spg20' = { - table2Version = 133 ; - indicatorOfParameter = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10spg35' = { - table2Version = 133 ; - indicatorOfParameter = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10spg50' = { - table2Version = 133 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10gpg20' = { - table2Version = 133 ; - indicatorOfParameter = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10gpg35' = { - table2Version = 133 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10gpg50' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10gpg75' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10gpg100' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - table2Version = 133 ; - indicatorOfParameter = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - table2Version = 133 ; - indicatorOfParameter = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - table2Version = 133 ; - indicatorOfParameter = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - table2Version = 133 ; - indicatorOfParameter = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - table2Version = 133 ; - indicatorOfParameter = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - table2Version = 133 ; - indicatorOfParameter = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - table2Version = 133 ; - indicatorOfParameter = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - table2Version = 140 ; - indicatorOfParameter = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - table2Version = 140 ; - indicatorOfParameter = 217 ; - } -#Maximum individual wave height -'hmax' = { - table2Version = 140 ; - indicatorOfParameter = 218 ; - } -#Model bathymetry -'wmb' = { - table2Version = 140 ; - indicatorOfParameter = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - table2Version = 140 ; - indicatorOfParameter = 220 ; - } -#Mean zero-crossing wave period -'mp2' = { - table2Version = 140 ; - indicatorOfParameter = 221 ; - } -#Wave spectral directional width -'wdw' = { - table2Version = 140 ; - indicatorOfParameter = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - table2Version = 140 ; - indicatorOfParameter = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - table2Version = 140 ; - indicatorOfParameter = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - table2Version = 140 ; - indicatorOfParameter = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - table2Version = 140 ; - indicatorOfParameter = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - table2Version = 140 ; - indicatorOfParameter = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - table2Version = 140 ; - indicatorOfParameter = 228 ; - } -#Significant height of combined wind waves and swell -'swh' = { - table2Version = 140 ; - indicatorOfParameter = 229 ; - } -#Mean wave direction -'mwd' = { - table2Version = 140 ; - indicatorOfParameter = 230 ; - } -#Peak wave period -'pp1d' = { - table2Version = 140 ; - indicatorOfParameter = 231 ; - } -#Mean wave period -'mwp' = { - table2Version = 140 ; - indicatorOfParameter = 232 ; - } -#Coefficient of drag with waves -'cdww' = { - table2Version = 140 ; - indicatorOfParameter = 233 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 140 ; - indicatorOfParameter = 234 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 140 ; - indicatorOfParameter = 235 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 140 ; - indicatorOfParameter = 236 ; - } -#Significant height of total swell -'shts' = { - table2Version = 140 ; - indicatorOfParameter = 237 ; - } -#Mean direction of total swell -'mdts' = { - table2Version = 140 ; - indicatorOfParameter = 238 ; - } -#Mean period of total swell -'mpts' = { - table2Version = 140 ; - indicatorOfParameter = 239 ; - } -#Standard deviation wave height -'sdhs' = { - table2Version = 140 ; - indicatorOfParameter = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - table2Version = 140 ; - indicatorOfParameter = 241 ; - } -#Mean wind direction -'mdwi' = { - table2Version = 140 ; - indicatorOfParameter = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - table2Version = 140 ; - indicatorOfParameter = 243 ; - } -#Mean square slope of waves -'msqs' = { - table2Version = 140 ; - indicatorOfParameter = 244 ; - } -#10 metre wind speed -'wind' = { - table2Version = 140 ; - indicatorOfParameter = 245 ; - } -#Altimeter wave height -'awh' = { - table2Version = 140 ; - indicatorOfParameter = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - table2Version = 140 ; - indicatorOfParameter = 247 ; - } -#Altimeter range relative correction -'arrc' = { - table2Version = 140 ; - indicatorOfParameter = 248 ; - } -#10 metre wind direction -'dwi' = { - table2Version = 140 ; - indicatorOfParameter = 249 ; - } -#2D wave spectra (multiple) -'2dsp' = { - table2Version = 140 ; - indicatorOfParameter = 250 ; - } -#2D wave spectra (single) -'2dfd' = { - table2Version = 140 ; - indicatorOfParameter = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - table2Version = 140 ; - indicatorOfParameter = 252 ; - } -#Benjamin-Feir index -'bfi' = { - table2Version = 140 ; - indicatorOfParameter = 253 ; - } -#Wave spectral peakedness -'wsp' = { - table2Version = 140 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -#Ocean potential temperature -'ocpt' = { - table2Version = 150 ; - indicatorOfParameter = 129 ; - } -#Ocean salinity -'ocs' = { - table2Version = 150 ; - indicatorOfParameter = 130 ; - } -#Ocean potential density -'ocpd' = { - table2Version = 150 ; - indicatorOfParameter = 131 ; - } -#Ocean U wind component -'~' = { - table2Version = 150 ; - indicatorOfParameter = 133 ; - } -#Ocean V wind component -'~' = { - table2Version = 150 ; - indicatorOfParameter = 134 ; - } -#Ocean W wind component -'ocw' = { - table2Version = 150 ; - indicatorOfParameter = 135 ; - } -#Richardson number -'rn' = { - table2Version = 150 ; - indicatorOfParameter = 137 ; - } -#U*V product -'uv' = { - table2Version = 150 ; - indicatorOfParameter = 139 ; - } -#U*T product -'ut' = { - table2Version = 150 ; - indicatorOfParameter = 140 ; - } -#V*T product -'vt' = { - table2Version = 150 ; - indicatorOfParameter = 141 ; - } -#U*U product -'uu' = { - table2Version = 150 ; - indicatorOfParameter = 142 ; - } -#V*V product -'vv' = { - table2Version = 150 ; - indicatorOfParameter = 143 ; - } -#UV - U~V~ -'~' = { - table2Version = 150 ; - indicatorOfParameter = 144 ; - } -#UT - U~T~ -'~' = { - table2Version = 150 ; - indicatorOfParameter = 145 ; - } -#VT - V~T~ -'~' = { - table2Version = 150 ; - indicatorOfParameter = 146 ; - } -#UU - U~U~ -'~' = { - table2Version = 150 ; - indicatorOfParameter = 147 ; - } -#VV - V~V~ -'~' = { - table2Version = 150 ; - indicatorOfParameter = 148 ; - } -#Sea level -'sl' = { - table2Version = 150 ; - indicatorOfParameter = 152 ; - } -#Barotropic stream function -'~' = { - table2Version = 150 ; - indicatorOfParameter = 153 ; - } -#Mixed layer depth -'mld' = { - table2Version = 150 ; - indicatorOfParameter = 154 ; - } -#Depth -'~' = { - table2Version = 150 ; - indicatorOfParameter = 155 ; - } -#U stress -'~' = { - table2Version = 150 ; - indicatorOfParameter = 168 ; - } -#V stress -'~' = { - table2Version = 150 ; - indicatorOfParameter = 169 ; - } -#Turbulent kinetic energy input -'~' = { - table2Version = 150 ; - indicatorOfParameter = 170 ; - } -#Net surface heat flux -'nsf' = { - table2Version = 150 ; - indicatorOfParameter = 171 ; - } -#Surface solar radiation -'~' = { - table2Version = 150 ; - indicatorOfParameter = 172 ; - } -#P-E -'~' = { - table2Version = 150 ; - indicatorOfParameter = 173 ; - } -#Diagnosed sea surface temperature error -'~' = { - table2Version = 150 ; - indicatorOfParameter = 180 ; - } -#Heat flux correction -'~' = { - table2Version = 150 ; - indicatorOfParameter = 181 ; - } -#Observed sea surface temperature -'~' = { - table2Version = 150 ; - indicatorOfParameter = 182 ; - } -#Observed heat flux -'~' = { - table2Version = 150 ; - indicatorOfParameter = 183 ; - } -#Indicates a missing value -'~' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -#In situ Temperature -'~' = { - table2Version = 151 ; - indicatorOfParameter = 128 ; - } -#Sea water potential temperature -'thetao' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'so' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'ocu' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'ocv' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'wo' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - table2Version = 151 ; - indicatorOfParameter = 134 ; - } -#Vertical viscosity -'vvs' = { - table2Version = 151 ; - indicatorOfParameter = 135 ; - } -#Vertical diffusivity -'vdf' = { - table2Version = 151 ; - indicatorOfParameter = 136 ; - } -#Bottom level Depth -'dep' = { - table2Version = 151 ; - indicatorOfParameter = 137 ; - } -#Sea water sigma theta -'sigmat' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Richardson number -'rn' = { - table2Version = 151 ; - indicatorOfParameter = 139 ; - } -#UV product -'uv' = { - table2Version = 151 ; - indicatorOfParameter = 140 ; - } -#UT product -'ut' = { - table2Version = 151 ; - indicatorOfParameter = 141 ; - } -#VT product -'vt' = { - table2Version = 151 ; - indicatorOfParameter = 142 ; - } -#UU product -'uu' = { - table2Version = 151 ; - indicatorOfParameter = 143 ; - } -#VV product -'vv' = { - table2Version = 151 ; - indicatorOfParameter = 144 ; - } -#Sea surface height -'zos' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Sea level previous timestep -'sl_1' = { - table2Version = 151 ; - indicatorOfParameter = 146 ; - } -#Ocean barotropic stream function -'stfbarot' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Mixed layer depth -'mld' = { - table2Version = 151 ; - indicatorOfParameter = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - table2Version = 151 ; - indicatorOfParameter = 149 ; - } -#Steric height -'sh' = { - table2Version = 151 ; - indicatorOfParameter = 150 ; - } -#Curl of Wind Stress -'crl' = { - table2Version = 151 ; - indicatorOfParameter = 151 ; - } -#Divergence of wind stress -'~' = { - table2Version = 151 ; - indicatorOfParameter = 152 ; - } -#Surface downward eastward stress -'taueo' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'tauno' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - table2Version = 151 ; - indicatorOfParameter = 155 ; - } -#Net surface heat flux -'nsf' = { - table2Version = 151 ; - indicatorOfParameter = 156 ; - } -#Absorbed solar radiation -'asr' = { - table2Version = 151 ; - indicatorOfParameter = 157 ; - } -#Precipitation - evaporation -'pme' = { - table2Version = 151 ; - indicatorOfParameter = 158 ; - } -#Specified sea surface temperature -'sst' = { - table2Version = 151 ; - indicatorOfParameter = 159 ; - } -#Specified surface heat flux -'shf' = { - table2Version = 151 ; - indicatorOfParameter = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - table2Version = 151 ; - indicatorOfParameter = 161 ; - } -#Heat flux correction -'hfc' = { - table2Version = 151 ; - indicatorOfParameter = 162 ; - } -#Depth of 20C isotherm -'t20d' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - table2Version = 151 ; - indicatorOfParameter = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - table2Version = 151 ; - indicatorOfParameter = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - table2Version = 151 ; - indicatorOfParameter = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - table2Version = 151 ; - indicatorOfParameter = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - table2Version = 151 ; - indicatorOfParameter = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - table2Version = 151 ; - indicatorOfParameter = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - table2Version = 151 ; - indicatorOfParameter = 170 ; - } -#U velocity maximum -'umax' = { - table2Version = 151 ; - indicatorOfParameter = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - table2Version = 151 ; - indicatorOfParameter = 172 ; - } -#Salinity maximum -'smax' = { - table2Version = 151 ; - indicatorOfParameter = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - table2Version = 151 ; - indicatorOfParameter = 174 ; - } -#Average salinity in the upper 300m -'sav300' = { - table2Version = 151 ; - indicatorOfParameter = 175 ; - } -#Layer Thickness at scalar points -'ldp' = { - table2Version = 151 ; - indicatorOfParameter = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - table2Version = 151 ; - indicatorOfParameter = 177 ; - } -#Potential temperature increment -'pti' = { - table2Version = 151 ; - indicatorOfParameter = 178 ; - } -#Potential temperature analysis error -'ptae' = { - table2Version = 151 ; - indicatorOfParameter = 179 ; - } -#Background potential temperature -'bpt' = { - table2Version = 151 ; - indicatorOfParameter = 180 ; - } -#Analysed potential temperature -'apt' = { - table2Version = 151 ; - indicatorOfParameter = 181 ; - } -#Potential temperature background error -'ptbe' = { - table2Version = 151 ; - indicatorOfParameter = 182 ; - } -#Analysed salinity -'as' = { - table2Version = 151 ; - indicatorOfParameter = 183 ; - } -#Salinity increment -'sali' = { - table2Version = 151 ; - indicatorOfParameter = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - table2Version = 151 ; - indicatorOfParameter = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - table2Version = 151 ; - indicatorOfParameter = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - table2Version = 151 ; - indicatorOfParameter = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - table2Version = 151 ; - indicatorOfParameter = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - table2Version = 151 ; - indicatorOfParameter = 190 ; - } -#Salinity analysis error -'sale' = { - table2Version = 151 ; - indicatorOfParameter = 191 ; - } -#Background Salinity -'bsal' = { - table2Version = 151 ; - indicatorOfParameter = 192 ; - } -#Salinity background error -'salbe' = { - table2Version = 151 ; - indicatorOfParameter = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - table2Version = 151 ; - indicatorOfParameter = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - table2Version = 151 ; - indicatorOfParameter = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - table2Version = 151 ; - indicatorOfParameter = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - table2Version = 151 ; - indicatorOfParameter = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - table2Version = 151 ; - indicatorOfParameter = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - table2Version = 151 ; - indicatorOfParameter = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - table2Version = 151 ; - indicatorOfParameter = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - table2Version = 151 ; - indicatorOfParameter = 206 ; - } -#First guess bias in temperature -'fgbt' = { - table2Version = 151 ; - indicatorOfParameter = 207 ; - } -#First guess bias in salinity -'fgbs' = { - table2Version = 151 ; - indicatorOfParameter = 208 ; - } -#Applied bias in pressure -'bpa' = { - table2Version = 151 ; - indicatorOfParameter = 209 ; - } -#FG bias in pressure -'fgbp' = { - table2Version = 151 ; - indicatorOfParameter = 210 ; - } -#Bias in temperature(applied) -'pta' = { - table2Version = 151 ; - indicatorOfParameter = 211 ; - } -#Bias in salinity (applied) -'psa' = { - table2Version = 151 ; - indicatorOfParameter = 212 ; - } -#Indicates a missing value -'~' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust during averaging time -'10fgrea' = { - table2Version = 160 ; - indicatorOfParameter = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - table2Version = 160 ; - indicatorOfParameter = 135 ; - } -#Precipitable water content -'pwcrea' = { - table2Version = 160 ; - indicatorOfParameter = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - table2Version = 160 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'sdrea' = { - table2Version = 160 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'lsprea' = { - table2Version = 160 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'cprea' = { - table2Version = 160 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'sfrea' = { - table2Version = 160 ; - indicatorOfParameter = 144 ; - } -#Height -'ghrea' = { - table2Version = 160 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'rrea' = { - table2Version = 160 ; - indicatorOfParameter = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - table2Version = 160 ; - indicatorOfParameter = 171 ; - } -#East-West surface stress -'ewssrea' = { - table2Version = 160 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress -'nsssrea' = { - table2Version = 160 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'erea' = { - table2Version = 160 ; - indicatorOfParameter = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - table2Version = 160 ; - indicatorOfParameter = 184 ; - } -#Skin reservoir content -'srcrea' = { - table2Version = 160 ; - indicatorOfParameter = 198 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 160 ; - indicatorOfParameter = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - table2Version = 160 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - table2Version = 160 ; - indicatorOfParameter = 202 ; - } -#Runoff -'rorea' = { - table2Version = 160 ; - indicatorOfParameter = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - table2Version = 160 ; - indicatorOfParameter = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - table2Version = 160 ; - indicatorOfParameter = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - table2Version = 160 ; - indicatorOfParameter = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - table2Version = 160 ; - indicatorOfParameter = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - table2Version = 160 ; - indicatorOfParameter = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - table2Version = 160 ; - indicatorOfParameter = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - table2Version = 160 ; - indicatorOfParameter = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - table2Version = 160 ; - indicatorOfParameter = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - table2Version = 160 ; - indicatorOfParameter = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - table2Version = 160 ; - indicatorOfParameter = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - table2Version = 160 ; - indicatorOfParameter = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - table2Version = 160 ; - indicatorOfParameter = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - table2Version = 160 ; - indicatorOfParameter = 218 ; - } -#Covariance of V component and U component -'vurea' = { - table2Version = 160 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of V component -'vvrea' = { - table2Version = 160 ; - indicatorOfParameter = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - table2Version = 160 ; - indicatorOfParameter = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - table2Version = 160 ; - indicatorOfParameter = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - table2Version = 160 ; - indicatorOfParameter = 223 ; - } -#Covariance of W component and U component -'wurea' = { - table2Version = 160 ; - indicatorOfParameter = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - table2Version = 160 ; - indicatorOfParameter = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - table2Version = 160 ; - indicatorOfParameter = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - table2Version = 160 ; - indicatorOfParameter = 231 ; - } -#Convective snowfall -'csfrea' = { - table2Version = 160 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'lsfrea' = { - table2Version = 160 ; - indicatorOfParameter = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - table2Version = 160 ; - indicatorOfParameter = 241 ; - } -#Cloud cover -'ccrea' = { - table2Version = 160 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'falrea' = { - table2Version = 160 ; - indicatorOfParameter = 243 ; - } -#10 metre wind speed -'10wsrea' = { - table2Version = 160 ; - indicatorOfParameter = 246 ; - } -#Momentum flux -'moflrea' = { - table2Version = 160 ; - indicatorOfParameter = 247 ; - } -#Gravity wave dissipation flux -'~' = { - table2Version = 160 ; - indicatorOfParameter = 249 ; - } -#Heaviside beta function -'hsdrea' = { - table2Version = 160 ; - indicatorOfParameter = 254 ; - } -#Surface geopotential -'~' = { - table2Version = 162 ; - indicatorOfParameter = 51 ; - } -#Vertical integral of mass of atmosphere -'vima' = { - table2Version = 162 ; - indicatorOfParameter = 53 ; - } -#Vertical integral of temperature -'vit' = { - table2Version = 162 ; - indicatorOfParameter = 54 ; - } -#Vertical integral of water vapour -'viwv' = { - table2Version = 162 ; - indicatorOfParameter = 55 ; - } -#Vertical integral of cloud liquid water -'vilw' = { - table2Version = 162 ; - indicatorOfParameter = 56 ; - } -#Vertical integral of cloud frozen water -'viiw' = { - table2Version = 162 ; - indicatorOfParameter = 57 ; - } -#Vertical integral of ozone -'vioz' = { - table2Version = 162 ; - indicatorOfParameter = 58 ; - } -#Vertical integral of kinetic energy -'vike' = { - table2Version = 162 ; - indicatorOfParameter = 59 ; - } -#Vertical integral of thermal energy -'vithe' = { - table2Version = 162 ; - indicatorOfParameter = 60 ; - } -#Vertical integral of potential+internal energy -'vipie' = { - table2Version = 162 ; - indicatorOfParameter = 61 ; - } -#Vertical integral of potential+internal+latent energy -'vipile' = { - table2Version = 162 ; - indicatorOfParameter = 62 ; - } -#Vertical integral of total energy -'vitoe' = { - table2Version = 162 ; - indicatorOfParameter = 63 ; - } -#Vertical integral of energy conversion -'viec' = { - table2Version = 162 ; - indicatorOfParameter = 64 ; - } -#Vertical integral of eastward mass flux -'vimae' = { - table2Version = 162 ; - indicatorOfParameter = 65 ; - } -#Vertical integral of northward mass flux -'viman' = { - table2Version = 162 ; - indicatorOfParameter = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'vikee' = { - table2Version = 162 ; - indicatorOfParameter = 67 ; - } -#Vertical integral of northward kinetic energy flux -'viken' = { - table2Version = 162 ; - indicatorOfParameter = 68 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - table2Version = 162 ; - indicatorOfParameter = 69 ; - } -#Vertical integral of northward heat flux -'vithen' = { - table2Version = 162 ; - indicatorOfParameter = 70 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - table2Version = 162 ; - indicatorOfParameter = 71 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - table2Version = 162 ; - indicatorOfParameter = 72 ; - } -#Vertical integral of eastward geopotential flux -'vige' = { - table2Version = 162 ; - indicatorOfParameter = 73 ; - } -#Vertical integral of northward geopotential flux -'vign' = { - table2Version = 162 ; - indicatorOfParameter = 74 ; - } -#Vertical integral of eastward total energy flux -'vitoee' = { - table2Version = 162 ; - indicatorOfParameter = 75 ; - } -#Vertical integral of northward total energy flux -'vitoen' = { - table2Version = 162 ; - indicatorOfParameter = 76 ; - } -#Vertical integral of eastward ozone flux -'vioze' = { - table2Version = 162 ; - indicatorOfParameter = 77 ; - } -#Vertical integral of northward ozone flux -'viozn' = { - table2Version = 162 ; - indicatorOfParameter = 78 ; - } -#Vertical integral of divergence of mass flux -'vimad' = { - table2Version = 162 ; - indicatorOfParameter = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'viked' = { - table2Version = 162 ; - indicatorOfParameter = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'vithed' = { - table2Version = 162 ; - indicatorOfParameter = 83 ; - } -#Vertical integral of divergence of moisture flux -'viwvd' = { - table2Version = 162 ; - indicatorOfParameter = 84 ; - } -#Vertical integral of divergence of geopotential flux -'vigd' = { - table2Version = 162 ; - indicatorOfParameter = 85 ; - } -#Vertical integral of divergence of total energy flux -'vitoed' = { - table2Version = 162 ; - indicatorOfParameter = 86 ; - } -#Vertical integral of divergence of ozone flux -'viozd' = { - table2Version = 162 ; - indicatorOfParameter = 87 ; - } -#Tendency of short wave radiation -'srta' = { - table2Version = 162 ; - indicatorOfParameter = 100 ; - } -#Tendency of long wave radiation -'trta' = { - table2Version = 162 ; - indicatorOfParameter = 101 ; - } -#Tendency of clear sky short wave radiation -'srtca' = { - table2Version = 162 ; - indicatorOfParameter = 102 ; - } -#Tendency of clear sky long wave radiation -'trtca' = { - table2Version = 162 ; - indicatorOfParameter = 103 ; - } -#Updraught mass flux -'umfa' = { - table2Version = 162 ; - indicatorOfParameter = 104 ; - } -#Downdraught mass flux -'dmfa' = { - table2Version = 162 ; - indicatorOfParameter = 105 ; - } -#Updraught detrainment rate -'udra' = { - table2Version = 162 ; - indicatorOfParameter = 106 ; - } -#Downdraught detrainment rate -'ddra' = { - table2Version = 162 ; - indicatorOfParameter = 107 ; - } -#Total precipitation flux -'tpfa' = { - table2Version = 162 ; - indicatorOfParameter = 108 ; - } -#Turbulent diffusion coefficient for heat -'tdcha' = { - table2Version = 162 ; - indicatorOfParameter = 109 ; - } -#Tendency of temperature due to physics -'ttpha' = { - table2Version = 162 ; - indicatorOfParameter = 110 ; - } -#Tendency of specific humidity due to physics -'qtpha' = { - table2Version = 162 ; - indicatorOfParameter = 111 ; - } -#Tendency of u component due to physics -'utpha' = { - table2Version = 162 ; - indicatorOfParameter = 112 ; - } -#Tendency of v component due to physics -'vtpha' = { - table2Version = 162 ; - indicatorOfParameter = 113 ; - } -#Variance of geopotential -'~' = { - table2Version = 162 ; - indicatorOfParameter = 206 ; - } -#Covariance of geopotential/temperature -'~' = { - table2Version = 162 ; - indicatorOfParameter = 207 ; - } -#Variance of temperature -'~' = { - table2Version = 162 ; - indicatorOfParameter = 208 ; - } -#Covariance of geopotential/specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 209 ; - } -#Covariance of temperature/specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 210 ; - } -#Variance of specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 211 ; - } -#Covariance of u component/geopotential -'~' = { - table2Version = 162 ; - indicatorOfParameter = 212 ; - } -#Covariance of u component/temperature -'~' = { - table2Version = 162 ; - indicatorOfParameter = 213 ; - } -#Covariance of u component/specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 214 ; - } -#Variance of u component -'~' = { - table2Version = 162 ; - indicatorOfParameter = 215 ; - } -#Covariance of v component/geopotential -'~' = { - table2Version = 162 ; - indicatorOfParameter = 216 ; - } -#Covariance of v component/temperature -'~' = { - table2Version = 162 ; - indicatorOfParameter = 217 ; - } -#Covariance of v component/specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 218 ; - } -#Covariance of v component/u component -'~' = { - table2Version = 162 ; - indicatorOfParameter = 219 ; - } -#Variance of v component -'~' = { - table2Version = 162 ; - indicatorOfParameter = 220 ; - } -#Covariance of omega/geopotential -'~' = { - table2Version = 162 ; - indicatorOfParameter = 221 ; - } -#Covariance of omega/temperature -'~' = { - table2Version = 162 ; - indicatorOfParameter = 222 ; - } -#Covariance of omega/specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 223 ; - } -#Covariance of omega/u component -'~' = { - table2Version = 162 ; - indicatorOfParameter = 224 ; - } -#Covariance of omega/v component -'~' = { - table2Version = 162 ; - indicatorOfParameter = 225 ; - } -#Variance of omega -'~' = { - table2Version = 162 ; - indicatorOfParameter = 226 ; - } -#Variance of surface pressure -'~' = { - table2Version = 162 ; - indicatorOfParameter = 227 ; - } -#Variance of relative humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 229 ; - } -#Covariance of u component/ozone -'~' = { - table2Version = 162 ; - indicatorOfParameter = 230 ; - } -#Covariance of v component/ozone -'~' = { - table2Version = 162 ; - indicatorOfParameter = 231 ; - } -#Covariance of omega/ozone -'~' = { - table2Version = 162 ; - indicatorOfParameter = 232 ; - } -#Variance of ozone -'~' = { - table2Version = 162 ; - indicatorOfParameter = 233 ; - } -#Indicates a missing value -'~' = { - table2Version = 162 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'tsw' = { - table2Version = 170 ; - indicatorOfParameter = 149 ; - } -#Soil wetness level 2 -'swl2' = { - table2Version = 170 ; - indicatorOfParameter = 171 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 170 ; - indicatorOfParameter = 179 ; - } -#Stream function anomaly -'strfa' = { - table2Version = 171 ; - indicatorOfParameter = 1 ; - } -#Velocity potential anomaly -'vpota' = { - table2Version = 171 ; - indicatorOfParameter = 2 ; - } -#Potential temperature anomaly -'pta' = { - table2Version = 171 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - table2Version = 171 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - table2Version = 171 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - table2Version = 171 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - table2Version = 171 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - table2Version = 171 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - table2Version = 171 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - table2Version = 171 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - table2Version = 171 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - table2Version = 171 ; - indicatorOfParameter = 23 ; - } -#Lake cover anomaly -'cla' = { - table2Version = 171 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - table2Version = 171 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - table2Version = 171 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - table2Version = 171 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - table2Version = 171 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - table2Version = 171 ; - indicatorOfParameter = 31 ; - } -#Snow albedo anomaly -'asna' = { - table2Version = 171 ; - indicatorOfParameter = 32 ; - } -#Snow density anomaly -'rsna' = { - table2Version = 171 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - table2Version = 171 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - table2Version = 171 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - table2Version = 171 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - table2Version = 171 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - table2Version = 171 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - table2Version = 171 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - table2Version = 171 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - table2Version = 171 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - table2Version = 171 ; - indicatorOfParameter = 42 ; - } -#Soil type anomaly -'slta' = { - table2Version = 171 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation anomaly -'esa' = { - table2Version = 171 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'smlta' = { - table2Version = 171 ; - indicatorOfParameter = 45 ; - } -#Solar duration anomaly -'sdura' = { - table2Version = 171 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - table2Version = 171 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - table2Version = 171 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust anomaly -'10fga' = { - table2Version = 171 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - table2Version = 171 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential anomaly -'monta' = { - table2Version = 171 ; - indicatorOfParameter = 53 ; - } -#Pressure anomaly -'pa' = { - table2Version = 171 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mean2t24a' = { - table2Version = 171 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - table2Version = 171 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - table2Version = 171 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - table2Version = 171 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - table2Version = 171 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity anomaly -'pva' = { - table2Version = 171 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - table2Version = 171 ; - indicatorOfParameter = 61 ; - } -#Observation count anomaly -'obcta' = { - table2Version = 171 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - table2Version = 171 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - table2Version = 171 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - table2Version = 171 ; - indicatorOfParameter = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - table2Version = 171 ; - indicatorOfParameter = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - table2Version = 171 ; - indicatorOfParameter = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - table2Version = 171 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - table2Version = 171 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - table2Version = 171 ; - indicatorOfParameter = 127 ; - } -#Budget values anomaly -'bva' = { - table2Version = 171 ; - indicatorOfParameter = 128 ; - } -#Geopotential anomaly -'za' = { - table2Version = 171 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly -'ta' = { - table2Version = 171 ; - indicatorOfParameter = 130 ; - } -#U component of wind anomaly -'ua' = { - table2Version = 171 ; - indicatorOfParameter = 131 ; - } -#V component of wind anomaly -'va' = { - table2Version = 171 ; - indicatorOfParameter = 132 ; - } -#Specific humidity anomaly -'qa' = { - table2Version = 171 ; - indicatorOfParameter = 133 ; - } -#Surface pressure anomaly -'spa' = { - table2Version = 171 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - table2Version = 171 ; - indicatorOfParameter = 135 ; - } -#Total column water anomaly -'tcwa' = { - table2Version = 171 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - table2Version = 171 ; - indicatorOfParameter = 137 ; - } -#Relative vorticity anomaly -'voa' = { - table2Version = 171 ; - indicatorOfParameter = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - table2Version = 171 ; - indicatorOfParameter = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - table2Version = 171 ; - indicatorOfParameter = 140 ; - } -#Snow depth anomaly -'sda' = { - table2Version = 171 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - table2Version = 171 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - table2Version = 171 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - table2Version = 171 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - table2Version = 171 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - table2Version = 171 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - table2Version = 171 ; - indicatorOfParameter = 147 ; - } -#Charnock anomaly -'chnka' = { - table2Version = 171 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation anomaly -'snra' = { - table2Version = 171 ; - indicatorOfParameter = 149 ; - } -#Top net radiation anomaly -'tnra' = { - table2Version = 171 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - table2Version = 171 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - table2Version = 171 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - table2Version = 171 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - table2Version = 171 ; - indicatorOfParameter = 154 ; - } -#Relative divergence anomaly -'da' = { - table2Version = 171 ; - indicatorOfParameter = 155 ; - } -#Height anomaly -'gha' = { - table2Version = 171 ; - indicatorOfParameter = 156 ; - } -#Relative humidity anomaly -'ra' = { - table2Version = 171 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - table2Version = 171 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height anomaly -'blha' = { - table2Version = 171 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - table2Version = 171 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - table2Version = 171 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - table2Version = 171 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - table2Version = 171 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - table2Version = 171 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component anomaly -'10ua' = { - table2Version = 171 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component anomaly -'10va' = { - table2Version = 171 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature anomaly -'2ta' = { - table2Version = 171 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature anomaly -'2da' = { - table2Version = 171 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - table2Version = 171 ; - indicatorOfParameter = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - table2Version = 171 ; - indicatorOfParameter = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - table2Version = 171 ; - indicatorOfParameter = 171 ; - } -#Surface roughness anomaly -'sra' = { - table2Version = 171 ; - indicatorOfParameter = 173 ; - } -#Albedo anomaly -'ala' = { - table2Version = 171 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - table2Version = 171 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - table2Version = 171 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - table2Version = 171 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - table2Version = 171 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - table2Version = 171 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - table2Version = 171 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - table2Version = 171 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomaly -'ea' = { - table2Version = 171 ; - indicatorOfParameter = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - table2Version = 171 ; - indicatorOfParameter = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - table2Version = 171 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - table2Version = 171 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - table2Version = 171 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - table2Version = 171 ; - indicatorOfParameter = 187 ; - } -#High cloud cover anomaly -'hcca' = { - table2Version = 171 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - table2Version = 171 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - table2Version = 171 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - table2Version = 171 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - table2Version = 171 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - table2Version = 171 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - table2Version = 171 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - table2Version = 171 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - table2Version = 171 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - table2Version = 171 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - table2Version = 171 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - table2Version = 171 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - table2Version = 171 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - table2Version = 171 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - table2Version = 171 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - table2Version = 171 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - table2Version = 171 ; - indicatorOfParameter = 204 ; - } -#Runoff anomaly -'roa' = { - table2Version = 171 ; - indicatorOfParameter = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - table2Version = 171 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed anomaly -'10sia' = { - table2Version = 171 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - table2Version = 171 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - table2Version = 171 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - table2Version = 171 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - table2Version = 171 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomaly -'sia' = { - table2Version = 171 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - table2Version = 171 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - table2Version = 171 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - table2Version = 171 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - table2Version = 171 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - table2Version = 171 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - table2Version = 171 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - table2Version = 171 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - table2Version = 171 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - table2Version = 171 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - table2Version = 171 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - table2Version = 171 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - table2Version = 171 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - table2Version = 171 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - table2Version = 171 ; - indicatorOfParameter = 227 ; - } -#Total precipitation anomaly -'tpa' = { - table2Version = 171 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - table2Version = 171 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - table2Version = 171 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - table2Version = 171 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - table2Version = 171 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - table2Version = 171 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - table2Version = 171 ; - indicatorOfParameter = 234 ; - } -#Skin temperature anomaly -'skta' = { - table2Version = 171 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - table2Version = 171 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - table2Version = 171 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - table2Version = 171 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - table2Version = 171 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - table2Version = 171 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - table2Version = 171 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - table2Version = 171 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo anomaly -'fala' = { - table2Version = 171 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - table2Version = 171 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - table2Version = 171 ; - indicatorOfParameter = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - table2Version = 171 ; - indicatorOfParameter = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - table2Version = 171 ; - indicatorOfParameter = 247 ; - } -#Cloud cover anomaly -'cca' = { - table2Version = 171 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - table2Version = 171 ; - indicatorOfParameter = 249 ; - } -#Ice age anomaly -'iaa' = { - table2Version = 171 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - table2Version = 171 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - table2Version = 171 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - table2Version = 171 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - table2Version = 171 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 171 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation -'esrate' = { - table2Version = 172 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'~' = { - table2Version = 172 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress -'~' = { - table2Version = 172 ; - indicatorOfParameter = 48 ; - } -#Mean large-scale precipitation fraction -'mlspfr' = { - table2Version = 172 ; - indicatorOfParameter = 50 ; - } -#Mean large-scale precipitation rate -'mlsprt' = { - table2Version = 172 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate -'cprate' = { - table2Version = 172 ; - indicatorOfParameter = 143 ; - } -#Mean total snowfall rate -'mtsfr' = { - table2Version = 172 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - table2Version = 172 ; - indicatorOfParameter = 145 ; - } -#Mean surface sensible heat flux -'msshfl' = { - table2Version = 172 ; - indicatorOfParameter = 146 ; - } -#Mean surface latent heat flux -'mslhfl' = { - table2Version = 172 ; - indicatorOfParameter = 147 ; - } -#Mean surface net radiation flux -'msnrf' = { - table2Version = 172 ; - indicatorOfParameter = 149 ; - } -#Mean short-wave heating rate -'mswhr' = { - table2Version = 172 ; - indicatorOfParameter = 153 ; - } -#Mean long-wave heating rate -'mlwhr' = { - table2Version = 172 ; - indicatorOfParameter = 154 ; - } -#Mean surface downward solar radiation flux -'msdsrf' = { - table2Version = 172 ; - indicatorOfParameter = 169 ; - } -#Mean surface downward thermal radiation flux -'msdtrf' = { - table2Version = 172 ; - indicatorOfParameter = 175 ; - } -#Mean surface net solar radiation flux -'msnsrf' = { - table2Version = 172 ; - indicatorOfParameter = 176 ; - } -#Mean surface net thermal radiation flux -'msntrf' = { - table2Version = 172 ; - indicatorOfParameter = 177 ; - } -#Mean top net solar radiation flux -'mtnsrf' = { - table2Version = 172 ; - indicatorOfParameter = 178 ; - } -#Mean top net thermal radiation flux -'mtntrf' = { - table2Version = 172 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress rate of accumulation -'ewssra' = { - table2Version = 172 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress rate of accumulation -'nsssra' = { - table2Version = 172 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'erate' = { - table2Version = 172 ; - indicatorOfParameter = 182 ; - } -#Mean sunshine duration rate -'msdr' = { - table2Version = 172 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress -'~' = { - table2Version = 172 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress -'~' = { - table2Version = 172 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - table2Version = 172 ; - indicatorOfParameter = 197 ; - } -#Mean runoff rate -'mrort' = { - table2Version = 172 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky -'~' = { - table2Version = 172 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'~' = { - table2Version = 172 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'~' = { - table2Version = 172 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'~' = { - table2Version = 172 ; - indicatorOfParameter = 211 ; - } -#Solar insolation rate of accumulation -'soira' = { - table2Version = 172 ; - indicatorOfParameter = 212 ; - } -#Mean total precipitation rate -'tprate' = { - table2Version = 172 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall -'~' = { - table2Version = 172 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'~' = { - table2Version = 172 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'~' = { - table2Version = 172 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'lspara' = { - table2Version = 173 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate anomaly -'mcpra' = { - table2Version = 173 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - table2Version = 173 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'sshfara' = { - table2Version = 173 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'slhfara' = { - table2Version = 173 ; - indicatorOfParameter = 147 ; - } -#Surface net radiation anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 149 ; - } -#Short-wave heating rate anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'ssrdara' = { - table2Version = 173 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'strdara' = { - table2Version = 173 ; - indicatorOfParameter = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'ssrara' = { - table2Version = 173 ; - indicatorOfParameter = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'strara' = { - table2Version = 173 ; - indicatorOfParameter = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'tsrara' = { - table2Version = 173 ; - indicatorOfParameter = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'ttrara' = { - table2Version = 173 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'ewssara' = { - table2Version = 173 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'nsssara' = { - table2Version = 173 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomalous rate of accumulation -'evara' = { - table2Version = 173 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - table2Version = 173 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 197 ; - } -#Runoff anomalous rate of accumulation -'roara' = { - table2Version = 173 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomalous rate of accumulation -'soiara' = { - table2Version = 173 ; - indicatorOfParameter = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - table2Version = 173 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'~' = { - table2Version = 173 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'~' = { - table2Version = 174 ; - indicatorOfParameter = 6 ; - } -#Surface runoff -'sro' = { - table2Version = 174 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'ssro' = { - table2Version = 174 ; - indicatorOfParameter = 9 ; - } -#Fraction of sea-ice in sea -'~' = { - table2Version = 174 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'~' = { - table2Version = 174 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 42 ; - } -#10 metre wind gust in the last 24 hours -'~' = { - table2Version = 174 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - table2Version = 174 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'~' = { - table2Version = 174 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'~' = { - table2Version = 174 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'~' = { - table2Version = 174 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'~' = { - table2Version = 174 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - table2Version = 174 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'~' = { - table2Version = 174 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'~' = { - table2Version = 174 ; - indicatorOfParameter = 90 ; - } -#Mean sea surface temperature -'~' = { - table2Version = 174 ; - indicatorOfParameter = 94 ; - } -#1.5m specific humidity -'~' = { - table2Version = 174 ; - indicatorOfParameter = 95 ; - } -#Sea-ice thickness -'sithick' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Liquid water potential temperature -'~' = { - table2Version = 174 ; - indicatorOfParameter = 99 ; - } -#Ocean ice concentration -'~' = { - table2Version = 174 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'~' = { - table2Version = 174 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - table2Version = 174 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'~' = { - table2Version = 174 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'~' = { - table2Version = 174 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - table2Version = 174 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - table2Version = 174 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - table2Version = 174 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'~' = { - table2Version = 174 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'~' = { - table2Version = 174 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'~' = { - table2Version = 175 ; - indicatorOfParameter = 6 ; - } -#Fraction of sea-ice in sea -'~' = { - table2Version = 175 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'~' = { - table2Version = 175 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 42 ; - } -#10m wind gust in the last 24 hours -'~' = { - table2Version = 175 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - table2Version = 175 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'~' = { - table2Version = 175 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'~' = { - table2Version = 175 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'~' = { - table2Version = 175 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'~' = { - table2Version = 175 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - table2Version = 175 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'~' = { - table2Version = 175 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'~' = { - table2Version = 175 ; - indicatorOfParameter = 90 ; - } -#Ocean ice concentration -'~' = { - table2Version = 175 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'~' = { - table2Version = 175 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - table2Version = 175 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'~' = { - table2Version = 175 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'~' = { - table2Version = 175 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - table2Version = 175 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - table2Version = 175 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - table2Version = 175 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'~' = { - table2Version = 175 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'~' = { - table2Version = 175 ; - indicatorOfParameter = 255 ; - } -#Total soil wetness -'tsw' = { - table2Version = 180 ; - indicatorOfParameter = 149 ; - } -#Surface net solar radiation -'ssr' = { - table2Version = 180 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'str' = { - table2Version = 180 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'tsr' = { - table2Version = 180 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'ttr' = { - table2Version = 180 ; - indicatorOfParameter = 179 ; - } -#Snow depth -'sdsien' = { - table2Version = 190 ; - indicatorOfParameter = 141 ; - } -#Field capacity -'cap' = { - table2Version = 190 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'wiltsien' = { - table2Version = 190 ; - indicatorOfParameter = 171 ; - } -#Roughness length -'sr' = { - table2Version = 190 ; - indicatorOfParameter = 173 ; - } -#Total soil moisture -'tsm' = { - table2Version = 190 ; - indicatorOfParameter = 229 ; - } -#2 metre dewpoint temperature difference -'2ddiff' = { - table2Version = 200 ; - indicatorOfParameter = 168 ; - } -#downward shortwave radiant flux density -'~' = { - table2Version = 201 ; - indicatorOfParameter = 1 ; - } -#upward shortwave radiant flux density -'~' = { - table2Version = 201 ; - indicatorOfParameter = 2 ; - } -#downward longwave radiant flux density -'~' = { - table2Version = 201 ; - indicatorOfParameter = 3 ; - } -#upward longwave radiant flux density -'~' = { - table2Version = 201 ; - indicatorOfParameter = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - } -#net shortwave flux -'~' = { - table2Version = 201 ; - indicatorOfParameter = 6 ; - } -#net longwave flux -'~' = { - table2Version = 201 ; - indicatorOfParameter = 7 ; - } -#total net radiative flux density -'~' = { - table2Version = 201 ; - indicatorOfParameter = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'~' = { - table2Version = 201 ; - indicatorOfParameter = 9 ; - } -#upw shortw radiant flux density, cloudy part -'~' = { - table2Version = 201 ; - indicatorOfParameter = 10 ; - } -#downw longw radiant flux density, cloudfree part -'~' = { - table2Version = 201 ; - indicatorOfParameter = 11 ; - } -#upw longw radiant flux density, cloudy part -'~' = { - table2Version = 201 ; - indicatorOfParameter = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } -#total radiative heating rate -'~' = { - table2Version = 201 ; - indicatorOfParameter = 15 ; - } -#soil heat flux, surface -'~' = { - table2Version = 201 ; - indicatorOfParameter = 16 ; - } -#soil heat flux, bottom of layer -'~' = { - table2Version = 201 ; - indicatorOfParameter = 17 ; - } -#fractional cloud cover -'clc' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } -#cloud cover, grid scale -'~' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } -#specific cloud water content -'qc' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } -#cloud water content, grid scale, vert integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } -#cloud ice content, grid scale, vert integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 34 ; - } -#specific rainwater content, grid scale -'~' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } -#specific snow content, grid scale -'~' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } -#specific rainwater content, gs, vert. integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } -#specific snow content, gs, vert. integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } -#total column water -'twater' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } -#vert. integral of divergence of tot. water content -'~' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - table2Version = 201 ; - indicatorOfParameter = 50 ; - } -#cloud cover CH (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#total cloud cover (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 54 ; - } -#fog (0..8) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 55 ; - } -#fog -'~' = { - table2Version = 201 ; - indicatorOfParameter = 56 ; - } -#cloud cover, convective cirrus -'~' = { - table2Version = 201 ; - indicatorOfParameter = 60 ; - } -#specific cloud water content, convective clouds -'~' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } -#cloud water content, conv clouds, vert integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 62 ; - } -#specific cloud ice content, convective clouds -'~' = { - table2Version = 201 ; - indicatorOfParameter = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'~' = { - table2Version = 201 ; - indicatorOfParameter = 64 ; - } -#convective mass flux -'~' = { - table2Version = 201 ; - indicatorOfParameter = 65 ; - } -#Updraft velocity, convection -'~' = { - table2Version = 201 ; - indicatorOfParameter = 66 ; - } -#entrainment parameter, convection -'~' = { - table2Version = 201 ; - indicatorOfParameter = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - } -#convective layers (00...77) (BKE) -'~' = { - table2Version = 201 ; - indicatorOfParameter = 70 ; - } -#KO-index -'~' = { - table2Version = 201 ; - indicatorOfParameter = 71 ; - } -#convection base index -'bas_con' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - } -#convection top index -'top_con' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - } -#convective temperature tendency -'dt_con' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } -#convective tendency of total heat -'~' = { - table2Version = 201 ; - indicatorOfParameter = 76 ; - } -#convective tendency of total water -'~' = { - table2Version = 201 ; - indicatorOfParameter = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } -#convective vorticity tendency -'~' = { - table2Version = 201 ; - indicatorOfParameter = 80 ; - } -#convective divergence tendency -'~' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - } -#dry convection top index -'~' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } -#deviation of pressure from reference value -'pp' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } -#coefficient of horizontal diffusion -'~' = { - table2Version = 201 ; - indicatorOfParameter = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - } -#water content of interception store -'w_i' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } -#snow temperature -'t_snow' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } -#ice surface temperature -'t_ice' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } -#convective available potential energy -'cape_con' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } -#Indicates a missing value -'~' = { - table2Version = 201 ; - indicatorOfParameter = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - table2Version = 210 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - table2Version = 210 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - table2Version = 210 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - table2Version = 210 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - table2Version = 210 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - table2Version = 210 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - table2Version = 210 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - table2Version = 210 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - table2Version = 210 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - table2Version = 210 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - table2Version = 210 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - table2Version = 210 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - table2Version = 210 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - table2Version = 210 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'aerdep' = { - table2Version = 210 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'aerlts' = { - table2Version = 210 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'aerscc' = { - table2Version = 210 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'co2' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'ch4' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'n2o' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#CO2 column-mean molar fraction -'tcco2' = { - table2Version = 210 ; - indicatorOfParameter = 64 ; - } -#CH4 column-mean molar fraction -'tcch4' = { - table2Version = 210 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - table2Version = 210 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - table2Version = 210 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - table2Version = 210 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - table2Version = 210 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - table2Version = 210 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2fire' = { - table2Version = 210 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofire' = { - table2Version = 210 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'ch4fire' = { - table2Version = 210 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfire' = { - table2Version = 210 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'h2fire' = { - table2Version = 210 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfire' = { - table2Version = 210 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofire' = { - table2Version = 210 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5fire' = { - table2Version = 210 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfire' = { - table2Version = 210 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfire' = { - table2Version = 210 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfire' = { - table2Version = 210 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'bcfire' = { - table2Version = 210 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - table2Version = 210 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - table2Version = 210 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - table2Version = 210 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - table2Version = 210 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - table2Version = 210 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - table2Version = 210 ; - indicatorOfParameter = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - table2Version = 210 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'frpfire' = { - table2Version = 210 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'crfire' = { - table2Version = 210 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'no2' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'so2' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'co' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'hcho' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'nox' = { - table2Version = 210 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - table2Version = 210 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - table2Version = 210 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - table2Version = 210 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - table2Version = 210 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - table2Version = 210 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - table2Version = 210 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - table2Version = 210 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - table2Version = 210 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - table2Version = 210 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - table2Version = 210 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - table2Version = 210 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - table2Version = 210 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - table2Version = 210 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - table2Version = 210 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - table2Version = 210 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - table2Version = 210 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - table2Version = 210 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - table2Version = 210 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - table2Version = 210 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - table2Version = 210 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - table2Version = 210 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - table2Version = 210 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - table2Version = 210 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - table2Version = 210 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - table2Version = 210 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - table2Version = 210 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - table2Version = 210 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - table2Version = 210 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - table2Version = 210 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - table2Version = 210 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - table2Version = 210 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - table2Version = 210 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - table2Version = 210 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - table2Version = 210 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - table2Version = 210 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - table2Version = 210 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - table2Version = 210 ; - indicatorOfParameter = 166 ; - } -#Radon -'ra' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - table2Version = 210 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'tcra' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - table2Version = 210 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - table2Version = 210 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'go3' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - table2Version = 210 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - table2Version = 210 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - table2Version = 210 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - table2Version = 210 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - table2Version = 210 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - table2Version = 210 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - table2Version = 210 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - table2Version = 210 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - table2Version = 210 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - table2Version = 210 ; - indicatorOfParameter = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - table2Version = 211 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - table2Version = 211 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - table2Version = 211 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - table2Version = 211 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - table2Version = 211 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - table2Version = 211 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - table2Version = 211 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - table2Version = 211 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - table2Version = 211 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - table2Version = 211 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - table2Version = 211 ; - indicatorOfParameter = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - table2Version = 211 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - table2Version = 211 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - table2Version = 211 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - table2Version = 211 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - table2Version = 211 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - table2Version = 211 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - table2Version = 211 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - table2Version = 211 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - table2Version = 211 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - table2Version = 211 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - table2Version = 211 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - table2Version = 211 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - table2Version = 211 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - table2Version = 211 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - table2Version = 211 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - table2Version = 211 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - table2Version = 211 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - table2Version = 211 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - table2Version = 211 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - table2Version = 211 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - table2Version = 211 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - table2Version = 211 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - table2Version = 211 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - table2Version = 211 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - table2Version = 211 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - table2Version = 211 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - table2Version = 211 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - table2Version = 211 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - table2Version = 211 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - table2Version = 211 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - table2Version = 211 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - table2Version = 211 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - table2Version = 211 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'aersccdiff' = { - table2Version = 211 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'co2diff' = { - table2Version = 211 ; - indicatorOfParameter = 61 ; - } -#Methane -'ch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'n2odiff' = { - table2Version = 211 ; - indicatorOfParameter = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - table2Version = 211 ; - indicatorOfParameter = 64 ; - } -#Total column Methane -'tcch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - table2Version = 211 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - table2Version = 211 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - table2Version = 211 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - table2Version = 211 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'ch4firediff' = { - table2Version = 211 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'h2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5firediff' = { - table2Version = 211 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'bcfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - table2Version = 211 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - table2Version = 211 ; - indicatorOfParameter = 97 ; - } -#Wildfire observed area -'oafirediff' = { - table2Version = 211 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - table2Version = 211 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'so2diff' = { - table2Version = 211 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'codiff' = { - table2Version = 211 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'hchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - table2Version = 211 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - table2Version = 211 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - table2Version = 211 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - table2Version = 211 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - table2Version = 211 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - table2Version = 211 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - table2Version = 211 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - table2Version = 211 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - table2Version = 211 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - table2Version = 211 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - table2Version = 211 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - table2Version = 211 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - table2Version = 211 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - table2Version = 211 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - table2Version = 211 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - table2Version = 211 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - table2Version = 211 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - table2Version = 211 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - table2Version = 211 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - table2Version = 211 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - table2Version = 211 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - table2Version = 211 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - table2Version = 211 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - table2Version = 211 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - table2Version = 211 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - table2Version = 211 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - table2Version = 211 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - table2Version = 211 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - table2Version = 211 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - table2Version = 211 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - table2Version = 211 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - table2Version = 211 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - table2Version = 211 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - table2Version = 211 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - table2Version = 211 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - table2Version = 211 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - table2Version = 211 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - table2Version = 211 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - table2Version = 211 ; - indicatorOfParameter = 166 ; - } -#Radon -'radiff' = { - table2Version = 211 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - table2Version = 211 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'tcradiff' = { - table2Version = 211 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - table2Version = 211 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - table2Version = 211 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'go3diff' = { - table2Version = 211 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - table2Version = 211 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - table2Version = 211 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - table2Version = 211 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - table2Version = 211 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - table2Version = 211 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - table2Version = 211 ; - indicatorOfParameter = 216 ; - } -#Total precipitation observation count -'tpoc' = { - table2Version = 220 ; - indicatorOfParameter = 228 ; - } -#Convective inhibition -'cin' = { - table2Version = 228 ; - indicatorOfParameter = 1 ; - } -#Orography -'orog' = { - table2Version = 228 ; - indicatorOfParameter = 2 ; - } -#Friction velocity -'zust' = { - table2Version = 228 ; - indicatorOfParameter = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - table2Version = 228 ; - indicatorOfParameter = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - table2Version = 228 ; - indicatorOfParameter = 5 ; - } -#Mean total cloud cover -'meantcc' = { - table2Version = 228 ; - indicatorOfParameter = 6 ; - } -#Lake depth -'dl' = { - table2Version = 228 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - table2Version = 228 ; - indicatorOfParameter = 8 ; - } -#Lake mix-layer depth -'lmld' = { - table2Version = 228 ; - indicatorOfParameter = 9 ; - } -#Lake bottom temperature -'lblt' = { - table2Version = 228 ; - indicatorOfParameter = 10 ; - } -#Lake total layer temperature -'ltlt' = { - table2Version = 228 ; - indicatorOfParameter = 11 ; - } -#Lake shape factor -'lshf' = { - table2Version = 228 ; - indicatorOfParameter = 12 ; - } -#Lake ice temperature -'lict' = { - table2Version = 228 ; - indicatorOfParameter = 13 ; - } -#Lake ice depth -'licd' = { - table2Version = 228 ; - indicatorOfParameter = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - table2Version = 228 ; - indicatorOfParameter = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - table2Version = 228 ; - indicatorOfParameter = 16 ; - } -#Duct base height -'dctb' = { - table2Version = 228 ; - indicatorOfParameter = 17 ; - } -#Trapping layer base height -'tplb' = { - table2Version = 228 ; - indicatorOfParameter = 18 ; - } -#Trapping layer top height -'tplt' = { - table2Version = 228 ; - indicatorOfParameter = 19 ; - } -#Soil Moisture -'sm' = { - table2Version = 228 ; - indicatorOfParameter = 39 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - table2Version = 228 ; - indicatorOfParameter = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - table2Version = 228 ; - indicatorOfParameter = 132 ; - } -#Soil Temperature -'st' = { - table2Version = 228 ; - indicatorOfParameter = 139 ; - } -#Snow depth water equivalent -'sd' = { - table2Version = 228 ; - indicatorOfParameter = 141 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 228 ; - indicatorOfParameter = 144 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 228 ; - indicatorOfParameter = 164 ; - } -#Field capacity -'cap' = { - table2Version = 228 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'wilt' = { - table2Version = 228 ; - indicatorOfParameter = 171 ; - } -#Total Precipitation -'tp' = { - table2Version = 228 ; - indicatorOfParameter = 228 ; - } -#Snow evaporation (variable resolution) -'esvar' = { - table2Version = 230 ; - indicatorOfParameter = 44 ; - } -#Snowmelt (variable resolution) -'smltvar' = { - table2Version = 230 ; - indicatorOfParameter = 45 ; - } -#Solar duration (variable resolution) -'sdurvar' = { - table2Version = 230 ; - indicatorOfParameter = 46 ; - } -#Downward UV radiation at the surface (variable resolution) -'uvbvar' = { - table2Version = 230 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface (variable resolution) -'parvar' = { - table2Version = 230 ; - indicatorOfParameter = 58 ; - } -#Stratiform precipitation (Large-scale precipitation) (variable resolution) -'lspvar' = { - table2Version = 230 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation (variable resolution) -'cpvar' = { - table2Version = 230 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) (variable resolution) -'sfvar' = { - table2Version = 230 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation (variable resolution) -'bldvar' = { - table2Version = 230 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux (variable resolution) -'sshfvar' = { - table2Version = 230 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux (variable resolution) -'slhfvar' = { - table2Version = 230 ; - indicatorOfParameter = 147 ; - } -#Surface solar radiation downwards (variable resolution) -'ssrdvar' = { - table2Version = 230 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards (variable resolution) -'strdvar' = { - table2Version = 230 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation (variable resolution) -'ssrvar' = { - table2Version = 230 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation (variable resolution) -'strvar' = { - table2Version = 230 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation (variable resolution) -'tsrvar' = { - table2Version = 230 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation (variable resolution) -'ttrvar' = { - table2Version = 230 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress (variable resolution) -'ewssvar' = { - table2Version = 230 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress (variable resolution) -'nsssvar' = { - table2Version = 230 ; - indicatorOfParameter = 181 ; - } -#Evaporation (variable resolution) -'evar' = { - table2Version = 230 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration (variable resolution) -'sundvar' = { - table2Version = 230 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress (variable resolution) -'lgwsvar' = { - table2Version = 230 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress (variable resolution) -'mgwsvar' = { - table2Version = 230 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation (variable resolution) -'gwdvar' = { - table2Version = 230 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content (variable resolution) -'srcvar' = { - table2Version = 230 ; - indicatorOfParameter = 198 ; - } -#Runoff (variable resolution) -'rovar' = { - table2Version = 230 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky (variable resolution) -'tsrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky (variable resolution) -'ttrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky (variable resolution) -'ssrcvar' = { - table2Version = 230 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky (variable resolution) -'strcvar' = { - table2Version = 230 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation (variable resolution) -'tisrvar' = { - table2Version = 230 ; - indicatorOfParameter = 212 ; - } -#Surface temperature significance -'sts' = { - table2Version = 234 ; - indicatorOfParameter = 139 ; - } -#Mean sea level pressure significance -'msls' = { - table2Version = 234 ; - indicatorOfParameter = 151 ; - } -#2 metre temperature significance -'2ts' = { - table2Version = 234 ; - indicatorOfParameter = 167 ; - } -#Total precipitation significance -'tps' = { - table2Version = 234 ; - indicatorOfParameter = 228 ; - } -#U-component stokes drift -'ust' = { - table2Version = 140 ; - indicatorOfParameter = 215 ; - } -#V-component stokes drift -'vst' = { - table2Version = 140 ; - indicatorOfParameter = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - table2Version = 210 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2fire' = { - table2Version = 210 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfire' = { - table2Version = 210 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfire' = { - table2Version = 210 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4fire' = { - table2Version = 210 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6fire' = { - table2Version = 210 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8fire' = { - table2Version = 210 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfire' = { - table2Version = 210 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefire' = { - table2Version = 210 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfire' = { - table2Version = 210 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfire' = { - table2Version = 210 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofire' = { - table2Version = 210 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofire' = { - table2Version = 210 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofire' = { - table2Version = 210 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3fire' = { - table2Version = 210 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfire' = { - table2Version = 210 ; - indicatorOfParameter = 117 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2firediff' = { - table2Version = 211 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8firediff' = { - table2Version = 211 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4firediff' = { - table2Version = 211 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6firediff' = { - table2Version = 211 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8firediff' = { - table2Version = 211 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefirediff' = { - table2Version = 211 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofirediff' = { - table2Version = 211 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3firediff' = { - table2Version = 211 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfirediff' = { - table2Version = 211 ; - indicatorOfParameter = 117 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - table2Version = 228 ; - indicatorOfParameter = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - table2Version = 228 ; - indicatorOfParameter = 136 ; - } -#100 metre U wind component -'100u' = { - table2Version = 228 ; - indicatorOfParameter = 246 ; - } -#100 metre V wind component -'100v' = { - table2Version = 228 ; - indicatorOfParameter = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - table2Version = 228 ; - indicatorOfParameter = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - table2Version = 228 ; - indicatorOfParameter = 254 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def deleted file mode 100644 index 6dc6e213..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/stepType.def +++ /dev/null @@ -1,35 +0,0 @@ -# Concept stepType for ECMWF -# In case of a repeated entry: -# set uses the FIRST one -# get returns the LAST match - -"instant" = {timeRangeIndicator=0;} -"instant" = {timeRangeIndicator=10;} -"instant" = {timeRangeIndicator=1;} -"instant" = {timeRangeIndicator=14;} # Fields from DWD in MARS - -"avg" = {timeRangeIndicator=3;} - -"avgd" = {timeRangeIndicator=113;} -"avgfc" = {timeRangeIndicator=113;} - -"accum" = {timeRangeIndicator=4;} -"accum" = {timeRangeIndicator=2;} - -# Since grib1 has not min/max, we had to use our own convention -# therefore we set the centre to ECMWF (98) -"min" = {timeRangeIndicator=2;centre=98;} -"min" = {timeRangeIndicator=119;} -"max" = {timeRangeIndicator=2;centre=98;} -"max" = {timeRangeIndicator=118;} - -"diff" = {timeRangeIndicator=5;} -"rms" = {timeRangeIndicator=120;} -"sd" = {timeRangeIndicator=121;} -"cov" = {timeRangeIndicator=122;} -"avgua" = {timeRangeIndicator=123;} -"avgia" = {timeRangeIndicator=124;} - -"avgas" = {timeRangeIndicator=128;} -"avgad" = {timeRangeIndicator=130;} -"avgid" = {timeRangeIndicator=133;} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def deleted file mode 100644 index 28115c3a..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/stepTypeForConversion.def +++ /dev/null @@ -1,28 +0,0 @@ -# Concept stepTypeForConversion for ECMWF -# set uses the FIRST one -# get returns the LAST match - -# ECC-457: ECMWF Total Precipitation -"accum" = {timeRangeIndicator=0;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} -"accum" = {timeRangeIndicator=1;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} -"accum" = {timeRangeIndicator=10;indicatorOfParameter=228;gribTablesVersionNo=128;centre=98;} - -# sshf -"accum" = {indicatorOfParameter=146;gribTablesVersionNo=128;centre=98;} -# slhf -"accum" = {indicatorOfParameter=147;gribTablesVersionNo=128;centre=98;} - -# ssrd -"accum" = {indicatorOfParameter=169;gribTablesVersionNo=128;centre=98;} - -# strd -"accum" = {indicatorOfParameter=175;gribTablesVersionNo=128;centre=98;} -# ssr -"accum" = {indicatorOfParameter=176;gribTablesVersionNo=128;centre=98;} -# str -"accum" = {indicatorOfParameter=177;gribTablesVersionNo=128;centre=98;} -# ttr -"accum" = {indicatorOfParameter=179;gribTablesVersionNo=128;centre=98;} - -# sund -"accum" = {indicatorOfParameter=189;gribTablesVersionNo=128;centre=98;} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def deleted file mode 100644 index c43d20a7..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/typeOfLevel.def +++ /dev/null @@ -1,38 +0,0 @@ -# ECMWF concept type of level -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricInPa' = {indicatorOfTypeOfLevel=210;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} -'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} -'oceanWave' = {indicatorOfTypeOfLevel=211;} -'oceanMixedLayer' = {indicatorOfTypeOfLevel=212;} diff --git a/eccodes/definitions.save/grib1/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib1/localConcepts/ecmf/units.def deleted file mode 100644 index 609f3d1c..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ecmf/units.def +++ /dev/null @@ -1,17676 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 60 ; - } -#Total precipitation of at least 5 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 61 ; - } -#Total precipitation of at least 10 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 62 ; - } -#Total precipitation of at least 20 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 63 ; - } -#Total precipitation of at least 40 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 82 ; - } -#Total precipitation of at least 60 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 83 ; - } -#Total precipitation of at least 80 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 84 ; - } -#Total precipitation of at least 100 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 85 ; - } -#Total precipitation of at least 150 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 86 ; - } -#Total precipitation of at least 200 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 87 ; - } -#Total precipitation of at least 300 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 88 ; - } -#Stream function -'m**2 s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -#Potential temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -#Soil sand fraction -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -#Soil clay fraction -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -#Surface runoff -'m' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'m' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -#Wind speed -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -#U component of divergent wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 14 ; - } -#UV visible albedo for direct radiation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 15 ; - } -#UV visible albedo for diffuse radiation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 16 ; - } -#Near IR albedo for direct radiation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 17 ; - } -#Near IR albedo for diffuse radiation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 18 ; - } -#Clear sky surface UV -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 19 ; - } -#Clear sky surface photosynthetically active radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 20 ; - } -#Unbalanced component of temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'~' = { - table2Version = 128 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence -'s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -#Lake cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation -'~' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation -'~' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -#Sea ice area fraction -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -#Snow albedo -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -#Snow density -'kg m**-3' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -#Ice temperature layer 1 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -#Ice temperature layer 2 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -#Ice temperature layer 3 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -#Ice temperature layer 4 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -#Soil type -'~' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -#Solar duration -'s' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress -'N m**-2 s' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust since previous post-processing -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction -'s' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential -'m**2 s**-2' = { - table2Version = 128 ; - indicatorOfParameter = 53 ; - } -#Pressure -'Pa' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -#Mean temperature at 2 metres in the last 24 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy -'J kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -#Observation count -'~' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'s' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'s' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'K' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - table2Version = 128 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - table2Version = 128 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -#Instantaneous surface solar radiation downwards -'W m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -#Instantaneous surface thermal radiation downwards -'W m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -#Standard deviation of filtered subgrid orography -'m' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -#Specific rain water content -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -#Specific snow water content -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 76 ; - } -#Eta-coordinate vertical velocity -'s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 77 ; - } -#Total column cloud liquid water -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 78 ; - } -#Total column cloud ice water -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -#Surface emissivity -'dimensionless' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -#Vertically integrated total energy -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide -'~' = { - table2Version = 128 ; - indicatorOfParameter = 127 ; - } -#Atmospheric tide -'~' = { - table2Version = 160 ; - indicatorOfParameter = 127 ; - } -#Budget values -'~' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -#Budget values -'~' = { - table2Version = 160 ; - indicatorOfParameter = 128 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 128 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 170 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 180 ; - indicatorOfParameter = 129 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 190 ; - indicatorOfParameter = 129 ; - } -#Temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 130 ; - } -#Temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 130 ; - } -#Temperature -'K' = { - table2Version = 170 ; - indicatorOfParameter = 130 ; - } -#Temperature -'K' = { - table2Version = 180 ; - indicatorOfParameter = 130 ; - } -#Temperature -'K' = { - table2Version = 190 ; - indicatorOfParameter = 130 ; - } -#U component of wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'m s**-1' = { - table2Version = 170 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'m s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 131 ; - } -#U component of wind -'m s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 131 ; - } -#V component of wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'m s**-1' = { - table2Version = 170 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'m s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 132 ; - } -#V component of wind -'m s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 132 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 160 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 170 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 180 ; - indicatorOfParameter = 133 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 190 ; - indicatorOfParameter = 133 ; - } -#Surface pressure -'Pa' = { - table2Version = 128 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Pa' = { - table2Version = 160 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Pa' = { - table2Version = 162 ; - indicatorOfParameter = 52 ; - } -#Surface pressure -'Pa' = { - table2Version = 180 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Pa' = { - table2Version = 190 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 135 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 170 ; - indicatorOfParameter = 135 ; - } -#Total column water -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 136 ; - } -#Total column water -'kg m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 137 ; - } -#Total column water vapour -'kg m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 170 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 138 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'K' = { - table2Version = 160 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'K' = { - table2Version = 170 ; - indicatorOfParameter = 139 ; - } -#Soil temperature level 1 -'K' = { - table2Version = 190 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -#Soil wetness level 1 -'m of water equivalent' = { - table2Version = 170 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'m of water equivalent' = { - table2Version = 170 ; - indicatorOfParameter = 141 ; - } -#Snow depth -'m of water equivalent' = { - table2Version = 180 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'m' = { - table2Version = 128 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'m' = { - table2Version = 170 ; - indicatorOfParameter = 142 ; - } -#Large-scale precipitation -'m' = { - table2Version = 180 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'m' = { - table2Version = 128 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'m' = { - table2Version = 170 ; - indicatorOfParameter = 143 ; - } -#Convective precipitation -'m' = { - table2Version = 180 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 144 ; - } -#Snowfall -'m of water equivalent' = { - table2Version = 180 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 145 ; - } -#Boundary layer dissipation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 170 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 146 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 170 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 147 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 147 ; - } -#Charnock -'~' = { - table2Version = 128 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 149 ; - } -#Top net radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 128 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 160 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 170 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 180 ; - indicatorOfParameter = 151 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 190 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure -'~' = { - table2Version = 128 ; - indicatorOfParameter = 152 ; - } -#Logarithm of surface pressure -'~' = { - table2Version = 160 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate -'K' = { - table2Version = 128 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate -'K' = { - table2Version = 128 ; - indicatorOfParameter = 154 ; - } -#Divergence -'s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 155 ; - } -#Divergence -'s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 155 ; - } -#Divergence -'s**-1' = { - table2Version = 170 ; - indicatorOfParameter = 155 ; - } -#Divergence -'s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 155 ; - } -#Divergence -'s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 155 ; - } -#Geopotential Height -'gpm' = { - table2Version = 128 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'%' = { - table2Version = 128 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'%' = { - table2Version = 170 ; - indicatorOfParameter = 157 ; - } -#Relative humidity -'%' = { - table2Version = 190 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure -'Pa s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 158 ; - } -#Tendency of surface pressure -'Pa s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height -'m' = { - table2Version = 128 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography -'~' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography -'~' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography -'radians' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography -'~' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 170 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 180 ; - indicatorOfParameter = 164 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 165 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 180 ; - indicatorOfParameter = 166 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 190 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'K' = { - table2Version = 180 ; - indicatorOfParameter = 167 ; - } -#2 metre temperature -'K' = { - table2Version = 190 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 180 ; - indicatorOfParameter = 168 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 190 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -#Surface solar radiation downwards -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -#Soil temperature level 2 -'K' = { - table2Version = 160 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 175 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 180 ; - indicatorOfParameter = 172 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 172 ; - } -#Surface roughness -'m' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -#Surface roughness -'m' = { - table2Version = 160 ; - indicatorOfParameter = 173 ; - } -#Albedo -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -#Albedo -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 174 ; - } -#Albedo -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -#Surface thermal radiation downwards -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'J m**-2' = { - table2Version = 170 ; - indicatorOfParameter = 176 ; - } -#Surface net solar radiation -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'J m**-2' = { - table2Version = 170 ; - indicatorOfParameter = 177 ; - } -#Surface net thermal radiation -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 178 ; - } -#Top net solar radiation -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 179 ; - } -#Top net thermal radiation -'J m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 179 ; - } -#Eastward turbulent surface stress -'N m**-2 s' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'N m**-2 s' = { - table2Version = 170 ; - indicatorOfParameter = 180 ; - } -#Eastward turbulent surface stress -'N m**-2 s' = { - table2Version = 180 ; - indicatorOfParameter = 180 ; - } -#Northward turbulent surface stress -'N m**-2 s' = { - table2Version = 128 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'N m**-2 s' = { - table2Version = 170 ; - indicatorOfParameter = 181 ; - } -#Northward turbulent surface stress -'N m**-2 s' = { - table2Version = 180 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 170 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 180 ; - indicatorOfParameter = 182 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 190 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 183 ; - } -#Soil temperature level 3 -'K' = { - table2Version = 160 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 184 ; - } -#Soil wetness level 3 -'m of water equivalent' = { - table2Version = 170 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 185 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 170 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 186 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 187 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 187 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 188 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration -'s' = { - table2Version = 128 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance -'m**2' = { - table2Version = 128 ; - indicatorOfParameter = 190 ; - } -#East-West component of sub-gridscale orographic variance -'m**2' = { - table2Version = 160 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance -'m**2' = { - table2Version = 128 ; - indicatorOfParameter = 191 ; - } -#North-South component of sub-gridscale orographic variance -'m**2' = { - table2Version = 160 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'m**2' = { - table2Version = 128 ; - indicatorOfParameter = 192 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'m**2' = { - table2Version = 160 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'m**2' = { - table2Version = 128 ; - indicatorOfParameter = 193 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'m**2' = { - table2Version = 160 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 194 ; - } -#Eastward gravity wave surface stress -'N m**-2 s' = { - table2Version = 128 ; - indicatorOfParameter = 195 ; - } -#Eastward gravity wave surface stress -'N m**-2 s' = { - table2Version = 160 ; - indicatorOfParameter = 195 ; - } -#Northward gravity wave surface stress -'N m**-2 s' = { - table2Version = 128 ; - indicatorOfParameter = 196 ; - } -#Northward gravity wave surface stress -'N m**-2 s' = { - table2Version = 160 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 197 ; - } -#Gravity wave dissipation -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography -'m**2' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -#Variance of sub-gridscale orography -'m**2' = { - table2Version = 160 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 170 ; - indicatorOfParameter = 201 ; - } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 190 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 170 ; - indicatorOfParameter = 202 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - table2Version = 190 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights -'~' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -#Precipitation analysis weights -'~' = { - table2Version = 160 ; - indicatorOfParameter = 204 ; - } -#Runoff -'m' = { - table2Version = 128 ; - indicatorOfParameter = 205 ; - } -#Runoff -'m' = { - table2Version = 180 ; - indicatorOfParameter = 205 ; - } -#Total column ozone -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation -'J m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -#Vertically integrated moisture divergence -'kg m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'K' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'K' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'K' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation -'K' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of zonal wind -'m s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -#Convective tendency of meridional wind -'m s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 226 ; - } -#Tendency due to removal of negative humidity -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 227 ; - } -#Tendency due to removal of negative humidity -'kg kg**-1' = { - table2Version = 130 ; - indicatorOfParameter = 227 ; - } -#Total precipitation -'m' = { - table2Version = 128 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'m' = { - table2Version = 160 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'m' = { - table2Version = 170 ; - indicatorOfParameter = 228 ; - } -#Total precipitation -'m' = { - table2Version = 190 ; - indicatorOfParameter = 228 ; - } -#Instantaneous eastward turbulent surface stress -'N m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 229 ; - } -#Instantaneous eastward turbulent surface stress -'N m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 229 ; - } -#Instantaneous northward turbulent surface stress -'N m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 230 ; - } -#Instantaneous northward turbulent surface stress -'N m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface sensible heat flux -'W m**-2' = { - table2Version = 128 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux -'kg m**-2 s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 232 ; - } -#Instantaneous moisture flux -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 233 ; - } -#Apparent surface humidity -'kg kg**-1' = { - table2Version = 160 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat -'~' = { - table2Version = 128 ; - indicatorOfParameter = 234 ; - } -#Logarithm of surface roughness length for heat -'~' = { - table2Version = 160 ; - indicatorOfParameter = 234 ; - } -#Skin temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 235 ; - } -#Skin temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 -'K' = { - table2Version = 128 ; - indicatorOfParameter = 236 ; - } -#Soil temperature level 4 -'K' = { - table2Version = 160 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 -'m' = { - table2Version = 128 ; - indicatorOfParameter = 237 ; - } -#Soil wetness level 4 -'m' = { - table2Version = 160 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer -'K' = { - table2Version = 128 ; - indicatorOfParameter = 238 ; - } -#Temperature of snow layer -'K' = { - table2Version = 160 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall -'m of water equivalent' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency -'(-1 to 1)' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency -'(-1 to 1)' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness -'m' = { - table2Version = 128 ; - indicatorOfParameter = 244 ; - } -#Forecast surface roughness -'m' = { - table2Version = 160 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat -'~' = { - table2Version = 128 ; - indicatorOfParameter = 245 ; - } -#Forecast logarithm of surface roughness for heat -'~' = { - table2Version = 160 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 247 ; - } -#Fraction of cloud cover -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency -'(-1 to 1)' = { - table2Version = 128 ; - indicatorOfParameter = 249 ; - } -#Ice age -'(0 - 1)' = { - table2Version = 128 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature -'K' = { - table2Version = 128 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity -'kg kg**-1' = { - table2Version = 128 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind -'m s**-1' = { - table2Version = 128 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 132 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 160 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 170 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 180 ; - indicatorOfParameter = 255 ; - } -#Indicates a missing value -'~' = { - table2Version = 190 ; - indicatorOfParameter = 255 ; - } -#Stream function difference -'m**2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Velocity potential difference -'m**2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Potential temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence difference -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Lake cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Snow albedo difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Snow density difference -'kg m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 difference -'m**3 m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 difference -'m**3 m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 difference -'m**3 m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 difference -'m**3 m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Soil type difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Snowmelt difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Solar duration difference -'s' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress difference -'N m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction difference -'s' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential difference -'m**2 s**-2' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Pressure difference -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy difference -'J kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity difference -'K m**2 kg**-1 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations difference -'Millimetres*100 + number of stations' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Observation count difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'s' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'s' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Budget values difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 128 ; - } -#Geopotential difference -'m**2 s**-2' = { - table2Version = 200 ; - indicatorOfParameter = 129 ; - } -#Temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 130 ; - } -#U component of wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 131 ; - } -#V component of wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Specific humidity difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 133 ; - } -#Surface pressure difference -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) difference -'Pa s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 135 ; - } -#Total column water difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) difference -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 140 ; - } -#Snow depth difference -'m of water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) difference -'m of water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Charnock difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 149 ; - } -#Top net radiation difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure difference -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Divergence difference -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#Height difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 156 ; - } -#Relative humidity difference -'%' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure difference -'Pa s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography difference -'radians' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 167 ; - } -#Surface solar radiation downwards difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Surface roughness difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Albedo difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress difference -'N m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress difference -'N m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 181 ; - } -#Evaporation difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 187 ; - } -#High cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration difference -'s' = { - table2Version = 200 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'m**2' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'m**2' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'m**2' = { - table2Version = 200 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'m**2' = { - table2Version = 200 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress difference -'N m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress difference -'N m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography difference -'m**2' = { - table2Version = 200 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Runoff difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Total column ozone difference -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total precipitation difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress difference -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress difference -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux difference -'J m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux difference -'kg m**-2 s' = { - table2Version = 200 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 234 ; - } -#Skin temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall difference -'m of water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall difference -'m of water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency difference -'(-1 to 1)' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency difference -'(-1 to 1)' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness difference -'m' = { - table2Version = 200 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'~' = { - table2Version = 200 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Cloud cover difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency difference -'(-1 to 1)' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Ice age difference -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity difference -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind difference -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 200 ; - indicatorOfParameter = 255 ; - } -#Probability of a tropical storm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 89 ; - } -#Probability of a hurricane -'%' = { - table2Version = 131 ; - indicatorOfParameter = 90 ; - } -#Probability of a tropical depression -'%' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Climatological probability of a tropical storm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Climatological probability of a hurricane -'%' = { - table2Version = 131 ; - indicatorOfParameter = 93 ; - } -#Climatological probability of a tropical depression -'%' = { - table2Version = 131 ; - indicatorOfParameter = 94 ; - } -#Probability anomaly of a tropical storm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 95 ; - } -#Probability anomaly of a hurricane -'%' = { - table2Version = 131 ; - indicatorOfParameter = 96 ; - } -#Probability anomaly of a tropical depression -'%' = { - table2Version = 131 ; - indicatorOfParameter = 97 ; - } -#Total precipitation of at least 25 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 98 ; - } -#Total precipitation of at least 50 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 99 ; - } -#10 metre wind gust of at least 10 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 100 ; - } -#Convective available potential energy shear index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 44 ; - } -#Water vapour flux index -'dimensionless' = { - table2Version = 132 ; - indicatorOfParameter = 45 ; - } -#Convective available potential energy index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 59 ; - } -#Maximum of significant wave height index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 216 ; - } -#Wave experimental parameter 1 -'~' = { - table2Version = 140 ; - indicatorOfParameter = 80 ; - } -#Wave experimental parameter 2 -'~' = { - table2Version = 140 ; - indicatorOfParameter = 81 ; - } -#Wave experimental parameter 3 -'~' = { - table2Version = 140 ; - indicatorOfParameter = 82 ; - } -#Wave experimental parameter 4 -'~' = { - table2Version = 140 ; - indicatorOfParameter = 83 ; - } -#Wave experimental parameter 5 -'~' = { - table2Version = 140 ; - indicatorOfParameter = 84 ; - } -#Wave induced mean sea level correction -'m' = { - table2Version = 140 ; - indicatorOfParameter = 98 ; - } -#Ratio of wave angular and frequency width -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 99 ; - } -#Number of events in freak waves statistics -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 100 ; - } -#U-component of atmospheric surface momentum flux -'N m**-2' = { - table2Version = 140 ; - indicatorOfParameter = 101 ; - } -#V-component of atmospheric surface momentum flux -'N m**-2' = { - table2Version = 140 ; - indicatorOfParameter = 102 ; - } -#U-component of surface momentum flux into ocean -'N m**-2' = { - table2Version = 140 ; - indicatorOfParameter = 103 ; - } -#V-component of surface momentum flux into ocean -'N m**-2' = { - table2Version = 140 ; - indicatorOfParameter = 104 ; - } -#Wave turbulent energy flux into ocean -'W m**-2' = { - table2Version = 140 ; - indicatorOfParameter = 105 ; - } -#Wave directional width of first swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 106 ; - } -#Wave frequency width of first swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 107 ; - } -#Wave directional width of second swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 108 ; - } -#Wave frequency width of second swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 109 ; - } -#Wave directional width of third swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 110 ; - } -#Wave frequency width of third swell partition -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 111 ; - } -#Wave energy flux magnitude -'W m**-1' = { - table2Version = 140 ; - indicatorOfParameter = 112 ; - } -#Wave energy flux mean direction -'Degree true' = { - table2Version = 140 ; - indicatorOfParameter = 113 ; - } -#Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 114 ; - } -#Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 115 ; - } -#Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 116 ; - } -#Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 117 ; - } -#Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 118 ; - } -#Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds -'m' = { - table2Version = 140 ; - indicatorOfParameter = 119 ; - } -#Significant wave height of all waves with period larger than 10s -'m' = { - table2Version = 140 ; - indicatorOfParameter = 120 ; - } -#Significant wave height of first swell partition -'m' = { - table2Version = 140 ; - indicatorOfParameter = 121 ; - } -#Mean wave direction of first swell partition -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 122 ; - } -#Mean wave period of first swell partition -'s' = { - table2Version = 140 ; - indicatorOfParameter = 123 ; - } -#Significant wave height of second swell partition -'m' = { - table2Version = 140 ; - indicatorOfParameter = 124 ; - } -#Mean wave direction of second swell partition -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 125 ; - } -#Mean wave period of second swell partition -'s' = { - table2Version = 140 ; - indicatorOfParameter = 126 ; - } -#Significant wave height of third swell partition -'m' = { - table2Version = 140 ; - indicatorOfParameter = 127 ; - } -#Mean wave direction of third swell partition -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 128 ; - } -#Mean wave period of third swell partition -'s' = { - table2Version = 140 ; - indicatorOfParameter = 129 ; - } -#Wave Spectral Skewness -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 207 ; - } -#Free convective velocity over the oceans -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 208 ; - } -#Air density over the oceans -'kg m**-3' = { - table2Version = 140 ; - indicatorOfParameter = 209 ; - } -#Mean square wave strain in sea ice -'~' = { - table2Version = 140 ; - indicatorOfParameter = 210 ; - } -#Normalized energy flux into waves -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 211 ; - } -#Normalized energy flux into ocean -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 212 ; - } -#Turbulent Langmuir number -'~' = { - table2Version = 140 ; - indicatorOfParameter = 213 ; - } -#Normalized stress into ocean -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 214 ; - } -#Reserved -'~' = { - table2Version = 151 ; - indicatorOfParameter = 193 ; - } -#Water vapour flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 45 ; - } -#Vertical integral of divergence of cloud liquid water flux -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 79 ; - } -#Vertical integral of divergence of cloud frozen water flux -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 80 ; - } -#Vertical integral of eastward cloud liquid water flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 88 ; - } -#Vertical integral of northward cloud liquid water flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 89 ; - } -#Vertical integral of eastward cloud frozen water flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 90 ; - } -#Vertical integral of northward cloud frozen water flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 91 ; - } -#Vertical integral of mass tendency -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 92 ; - } -#U-tendency from dynamics -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 114 ; - } -#V-tendency from dynamics -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 115 ; - } -#T-tendency from dynamics -'K' = { - table2Version = 162 ; - indicatorOfParameter = 116 ; - } -#q-tendency from dynamics -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 117 ; - } -#T-tendency from radiation -'K' = { - table2Version = 162 ; - indicatorOfParameter = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'K' = { - table2Version = 162 ; - indicatorOfParameter = 121 ; - } -#q-tendency from turbulent diffusion -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 122 ; - } -#U-tendency from subgrid orography -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 123 ; - } -#V-tendency from subgrid orography -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 124 ; - } -#T-tendency from subgrid orography -'K' = { - table2Version = 162 ; - indicatorOfParameter = 125 ; - } -#U-tendency from convection (deep+shallow) -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 126 ; - } -#V-tendency from convection (deep+shallow) -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 127 ; - } -#T-tendency from convection (deep+shallow) -'K' = { - table2Version = 162 ; - indicatorOfParameter = 128 ; - } -#q-tendency from convection (deep+shallow) -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 129 ; - } -#Liquid Precipitation flux from convection -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 130 ; - } -#Ice Precipitation flux from convection -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 131 ; - } -#T-tendency from cloud scheme -'K' = { - table2Version = 162 ; - indicatorOfParameter = 132 ; - } -#q-tendency from cloud scheme -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 133 ; - } -#ql-tendency from cloud scheme -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 134 ; - } -#qi-tendency from cloud scheme -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 137 ; - } -#U-tendency from shallow convection -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 138 ; - } -#V-tendency from shallow convection -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 139 ; - } -#T-tendency from shallow convection -'K' = { - table2Version = 162 ; - indicatorOfParameter = 140 ; - } -#q-tendency from shallow convection -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 141 ; - } -#Standardised precipitation index valid in the last 3 months -'dimensionless' = { - table2Version = 170 ; - indicatorOfParameter = 1 ; - } -#Standardised precipitation index valid in the last 6 months -'dimensionless' = { - table2Version = 170 ; - indicatorOfParameter = 2 ; - } -#Standardised precipitation index valid in the last 12 months -'dimensionless' = { - table2Version = 170 ; - indicatorOfParameter = 3 ; - } -#100 metre U wind component anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 6 ; - } -#100 metre V wind component anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 24 ; - } -#Lake ice depth anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 122 ; - } -#Mean surface runoff rate -'m of water equivalent s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate -'m of water equivalent s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 9 ; - } -#Mean surface runoff rate anomaly -'m of water equivalent s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 8 ; - } -#Mean sub-surface runoff rate anomaly -'m of water equivalent s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 9 ; - } -#Clear-sky (II) down surface sw flux -'W m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 10 ; - } -#Clear-sky (II) up surface sw flux -'W m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 13 ; - } -#Visibility at 1.5m -'m' = { - table2Version = 174 ; - indicatorOfParameter = 25 ; - } -#Minimum temperature at 1.5m since previous post-processing -'K' = { - table2Version = 174 ; - indicatorOfParameter = 50 ; - } -#Maximum temperature at 1.5m since previous post-processing -'K' = { - table2Version = 174 ; - indicatorOfParameter = 51 ; - } -#Relative humidity at 1.5m -'kg kg**-1' = { - table2Version = 174 ; - indicatorOfParameter = 52 ; - } -#2 metre specific humidity -'kg kg**-1' = { - table2Version = 174 ; - indicatorOfParameter = 96 ; - } -#Sea ice snow thickness -'m' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; - } -#Short wave radiation flux at surface -'J m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 116 ; - } -#Short wave radiation flux at top of atmosphere -'J m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 117 ; - } -#Total column water vapour -'kg m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 137 ; - } -#Large scale rainfall rate -'kg m**-2 s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 142 ; - } -#Convective rainfall rate -'kg m**-2 s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 143 ; - } -#Very low cloud amount -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 186 ; - } -#Convective snowfall rate -'kg m**-2 s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall rate -'kg m**-2 s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 240 ; - } -#Total cloud amount - random overlap -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 248 ; - } -#Total cloud amount in lw radiation -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 249 ; - } -#Volcanic ash aerosol mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 210 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 210 ; - indicatorOfParameter = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 57 ; - } -#Monoterpene precursor mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 58 ; - } -#Secondary organic precursor mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 59 ; - } -#Injection height (from IS4FIRES) -'m' = { - table2Version = 210 ; - indicatorOfParameter = 60 ; - } -#Particulate matter d < 1 um -'kg m**-3' = { - table2Version = 210 ; - indicatorOfParameter = 72 ; - } -#Particulate matter d < 2.5 um -'kg m**-3' = { - table2Version = 210 ; - indicatorOfParameter = 73 ; - } -#Particulate matter d < 10 um -'kg m**-3' = { - table2Version = 210 ; - indicatorOfParameter = 74 ; - } -#Wildfire viewing angle of observation -'deg' = { - table2Version = 210 ; - indicatorOfParameter = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 118 ; - } -#Mean altitude of maximum injection -'m' = { - table2Version = 210 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'m' = { - table2Version = 210 ; - indicatorOfParameter = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'(0 - 1)' = { - table2Version = 210 ; - indicatorOfParameter = 197 ; - } -#Total aerosol optical depth at 340 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 217 ; - } -#Total aerosol optical depth at 355 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 218 ; - } -#Total aerosol optical depth at 380 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 219 ; - } -#Total aerosol optical depth at 400 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 220 ; - } -#Total aerosol optical depth at 440 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 221 ; - } -#Total aerosol optical depth at 500 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 222 ; - } -#Total aerosol optical depth at 532 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 223 ; - } -#Total aerosol optical depth at 645 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 224 ; - } -#Total aerosol optical depth at 800 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 225 ; - } -#Total aerosol optical depth at 858 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 226 ; - } -#Total aerosol optical depth at 1020 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 227 ; - } -#Total aerosol optical depth at 1064 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 228 ; - } -#Total aerosol optical depth at 1640 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 229 ; - } -#Total aerosol optical depth at 2130 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 241 ; - } -#Altitude of plume bottom -'m' = { - table2Version = 210 ; - indicatorOfParameter = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 243 ; - } -#Volcanic ash optical depth at 550 nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'m**-1' = { - table2Version = 210 ; - indicatorOfParameter = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'m**-1' = { - table2Version = 210 ; - indicatorOfParameter = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 247 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 248 ; - } -#Ammonium aerosol mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 249 ; - } -#Nitrate aerosol optical depth at 550 nm -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 250 ; - } -#Ammonium aerosol optical depth at 550 nm -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 251 ; - } -#Aerosol type 13 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 13 ; - } -#Aerosol type 14 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 14 ; - } -#Aerosol type 15 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 211 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 211 ; - indicatorOfParameter = 56 ; - } -#Wildfire Flux of Ethane (C2H6) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 118 ; - } -#Altitude of emitter -'m' = { - table2Version = 211 ; - indicatorOfParameter = 119 ; - } -#Altitude of plume top -'m' = { - table2Version = 211 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'~' = { - table2Version = 212 ; - indicatorOfParameter = 255 ; - } -#Random pattern 1 for sppt -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 1 ; - } -#Random pattern 2 for sppt -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 2 ; - } -#Random pattern 3 for sppt -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 3 ; - } -#Random pattern 4 for sppt -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 4 ; - } -#Random pattern 5 for sppt -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 5 ; - } -#Random pattern 1 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 101 ; - } -#Random pattern 2 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 102 ; - } -#Random pattern 3 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 103 ; - } -#Random pattern 4 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 104 ; - } -#Random pattern 5 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 105 ; - } -#Random pattern 6 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 106 ; - } -#Random pattern 7 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 107 ; - } -#Random pattern 8 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 108 ; - } -#Random pattern 9 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 109 ; - } -#Random pattern 10 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 110 ; - } -#Random pattern 11 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 111 ; - } -#Random pattern 12 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 112 ; - } -#Random pattern 13 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 113 ; - } -#Random pattern 14 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 114 ; - } -#Random pattern 15 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 115 ; - } -#Random pattern 16 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 116 ; - } -#Random pattern 17 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 117 ; - } -#Random pattern 18 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 118 ; - } -#Random pattern 19 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 119 ; - } -#Random pattern 20 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 120 ; - } -#Random pattern 21 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 121 ; - } -#Random pattern 22 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 122 ; - } -#Random pattern 23 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 123 ; - } -#Random pattern 24 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 124 ; - } -#Random pattern 25 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 125 ; - } -#Random pattern 26 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 126 ; - } -#Random pattern 27 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 127 ; - } -#Random pattern 28 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 128 ; - } -#Random pattern 29 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 129 ; - } -#Random pattern 30 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 130 ; - } -#Random pattern 31 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 131 ; - } -#Random pattern 32 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 132 ; - } -#Random pattern 33 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 133 ; - } -#Random pattern 34 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 134 ; - } -#Random pattern 35 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 135 ; - } -#Random pattern 36 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 136 ; - } -#Random pattern 37 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 137 ; - } -#Random pattern 38 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 138 ; - } -#Random pattern 39 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 139 ; - } -#Random pattern 40 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 140 ; - } -#Random pattern 41 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 141 ; - } -#Random pattern 42 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 142 ; - } -#Random pattern 43 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 143 ; - } -#Random pattern 44 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 144 ; - } -#Random pattern 45 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 145 ; - } -#Random pattern 46 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 146 ; - } -#Random pattern 47 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 147 ; - } -#Random pattern 48 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 148 ; - } -#Random pattern 49 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 149 ; - } -#Random pattern 50 for SPP scheme -'dimensionless' = { - table2Version = 213 ; - indicatorOfParameter = 150 ; - } -#Cosine of solar zenith angle -'~' = { - table2Version = 214 ; - indicatorOfParameter = 1 ; - } -#UV biologically effective dose -'~' = { - table2Version = 214 ; - indicatorOfParameter = 2 ; - } -#UV biologically effective dose clear-sky -'~' = { - table2Version = 214 ; - indicatorOfParameter = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'W m**-2' = { - table2Version = 214 ; - indicatorOfParameter = 51 ; - } -#Profile of optical thickness at 340 nm -'~' = { - table2Version = 214 ; - indicatorOfParameter = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 80 ; - } -#Source/gain of sulphate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 81 ; - } -#Dry deposition of sulphate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 82 ; - } -#Sedimentation of sulphate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 85 ; - } -#Negative fixer of sulphate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 87 ; - } -#Sulphate aerosol optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'s' = { - table2Version = 215 ; - indicatorOfParameter = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 90 ; - } -#10 metre wind speed dust emission potential -'kg s**2 m**-5' = { - table2Version = 215 ; - indicatorOfParameter = 91 ; - } -#10 metre wind gustiness dust emission potential -'kg s**2 m**-5' = { - table2Version = 215 ; - indicatorOfParameter = 92 ; - } -#Total aerosol optical thickness at 532 nm -'dimensionless' = { - table2Version = 215 ; - indicatorOfParameter = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'dimensionless' = { - table2Version = 215 ; - indicatorOfParameter = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'dimensionless' = { - table2Version = 215 ; - indicatorOfParameter = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 131 ; - } -#Single scattering albedo at 340 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 132 ; - } -#Single scattering albedo at 355 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 133 ; - } -#Single scattering albedo at 380 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 134 ; - } -#Single scattering albedo at 400 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 135 ; - } -#Single scattering albedo at 440 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 136 ; - } -#Single scattering albedo at 469 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 137 ; - } -#Single scattering albedo at 500 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 138 ; - } -#Single scattering albedo at 532 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 139 ; - } -#Single scattering albedo at 550 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 140 ; - } -#Single scattering albedo at 645 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 141 ; - } -#Single scattering albedo at 670 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 142 ; - } -#Single scattering albedo at 800 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 143 ; - } -#Single scattering albedo at 858 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 144 ; - } -#Single scattering albedo at 865 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 145 ; - } -#Single scattering albedo at 1020 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 146 ; - } -#Single scattering albedo at 1064 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 147 ; - } -#Single scattering albedo at 1240 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 148 ; - } -#Single scattering albedo at 1640 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 149 ; - } -#Asymmetry factor at 340 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 150 ; - } -#Asymmetry factor at 355 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 151 ; - } -#Asymmetry factor at 380 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 152 ; - } -#Asymmetry factor at 400 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 153 ; - } -#Asymmetry factor at 440 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 154 ; - } -#Asymmetry factor at 469 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 155 ; - } -#Asymmetry factor at 500 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 156 ; - } -#Asymmetry factor at 532 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 157 ; - } -#Asymmetry factor at 550 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 158 ; - } -#Asymmetry factor at 645 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 159 ; - } -#Asymmetry factor at 670 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 160 ; - } -#Asymmetry factor at 800 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 161 ; - } -#Asymmetry factor at 858 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 162 ; - } -#Asymmetry factor at 865 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 163 ; - } -#Asymmetry factor at 1020 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 164 ; - } -#Asymmetry factor at 1064 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 165 ; - } -#Asymmetry factor at 1240 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 166 ; - } -#Asymmetry factor at 1640 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 167 ; - } -#Source/gain of sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 168 ; - } -#Dry deposition of sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 169 ; - } -#Sedimentation of sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 172 ; - } -#Negative fixer of sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 174 ; - } -#Sulphur dioxide optical depth -'~' = { - table2Version = 215 ; - indicatorOfParameter = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 177 ; - } -#Single scattering albedo at 2130 nm -'(0 - 1)' = { - table2Version = 215 ; - indicatorOfParameter = 178 ; - } -#Asymmetry factor at 2130 nm -'~' = { - table2Version = 215 ; - indicatorOfParameter = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'m**-1' = { - table2Version = 215 ; - indicatorOfParameter = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'m**-1' = { - table2Version = 215 ; - indicatorOfParameter = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'m**-1' = { - table2Version = 215 ; - indicatorOfParameter = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'m**-1 sr**-1' = { - table2Version = 215 ; - indicatorOfParameter = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 189 ; - } -#Source/gain of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 190 ; - } -#Dry deposition of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 191 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 192 ; - } -#Sedimentation of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 193 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 194 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 195 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 196 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 197 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 198 ; - } -#Negative fixer of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 199 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 200 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 201 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 202 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'dimensionless' = { - table2Version = 215 ; - indicatorOfParameter = 203 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'dimensionless' = { - table2Version = 215 ; - indicatorOfParameter = 204 ; - } -#Source/gain of ammonium aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 205 ; - } -#Dry deposition of ammonium aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 206 ; - } -#Sedimentation of ammonium aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 207 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 208 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 209 ; - } -#Negative fixer of ammonium aerosol -'kg m**-2 s**-1' = { - table2Version = 215 ; - indicatorOfParameter = 210 ; - } -#Vertically integrated mass of ammonium aerosol -'kg m**-2' = { - table2Version = 215 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 1 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 2 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 3 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 4 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 5 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 6 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 7 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 8 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 9 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 10 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 11 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 12 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 13 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 14 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 15 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 16 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 17 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 18 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 19 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 20 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 21 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 22 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 23 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 24 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 25 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 26 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 27 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 28 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 29 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 30 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 31 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 32 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 33 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 34 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 35 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 36 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 37 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 38 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 39 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 40 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 41 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 42 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 43 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 44 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 45 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 46 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 47 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 48 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 49 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 50 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 51 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 52 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 53 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 54 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 55 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 56 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 57 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 58 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 59 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 60 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 61 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 62 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 63 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 64 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 65 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 66 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 67 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 68 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 69 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 70 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 71 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 72 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 73 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 74 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 75 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 76 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 77 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 78 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 120 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 121 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 122 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 123 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 124 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 125 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 126 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 127 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 128 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 129 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 130 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 131 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 132 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 133 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 134 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 135 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 136 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 137 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 138 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 139 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 140 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 141 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 142 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 143 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 144 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 145 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 146 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 147 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 148 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 149 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 150 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 151 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 152 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 153 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 154 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 155 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 156 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 157 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 158 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 159 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 160 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 161 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 162 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 163 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 164 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 165 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 166 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 167 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 168 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 169 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 170 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 171 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 172 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 173 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 174 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 175 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 176 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 177 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 178 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 179 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 180 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 181 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 182 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 183 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 184 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 185 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 186 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 187 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 188 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 189 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 190 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 191 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 192 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 193 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 194 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 195 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 196 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 197 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 198 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 199 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 200 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 201 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 202 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 203 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 204 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 205 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 206 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 207 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 208 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 209 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 210 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 211 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 212 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 213 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 214 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 215 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 216 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 217 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 218 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 219 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 220 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 221 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 222 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 223 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 224 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 225 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 226 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 227 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 228 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 229 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 230 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 231 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 232 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 233 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 234 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 235 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 236 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 237 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 238 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 239 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 240 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 241 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 242 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 243 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 244 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 245 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 246 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 247 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 248 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 249 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 250 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 251 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 252 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 253 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 254 ; - } -#Experimental product -'~' = { - table2Version = 216 ; - indicatorOfParameter = 255 ; - } -#Hydrogen peroxide -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 3 ; - } -#Methane (chemistry) -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 4 ; - } -#Nitric acid -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 7 ; - } -#Paraffins -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 9 ; - } -#Ethene -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 10 ; - } -#Olefins -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 11 ; - } -#Aldehydes -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 13 ; - } -#Peroxides -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 15 ; - } -#Isoprene -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 16 ; - } -#Dimethyl sulfide -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 18 ; - } -#Ammonia -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 19 ; - } -#Sulfate -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 20 ; - } -#Ammonium -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 24 ; - } -#Lead -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 30 ; - } -#Nitrate radical -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 35 ; - } -#Organic ethers -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 39 ; - } -#Amine -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 41 ; - } -#Methanol -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 42 ; - } -#Formic acid -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 44 ; - } -#Ethane -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 45 ; - } -#Ethanol -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 46 ; - } -#Propane -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 47 ; - } -#Propene -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 48 ; - } -#Terpenes -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 50 ; - } -#Nitrate -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 51 ; - } -#Acetone -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 52 ; - } -#Acetone product -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp -'kg kg**-1' = { - table2Version = 217 ; - indicatorOfParameter = 56 ; - } -#Total column hydrogen peroxide -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 3 ; - } -#Total column methane -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 4 ; - } -#Total column nitric acid -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 6 ; - } -#Total column methyl peroxide -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 7 ; - } -#Total column paraffins -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 9 ; - } -#Total column ethene -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 10 ; - } -#Total column olefins -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 11 ; - } -#Total column aldehydes -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 12 ; - } -#Total column peroxyacetyl nitrate -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 13 ; - } -#Total column peroxides -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 14 ; - } -#Total column organic nitrates -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 15 ; - } -#Total column isoprene -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 16 ; - } -#Total column dimethyl sulfide -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 18 ; - } -#Total column ammonia -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 19 ; - } -#Total column sulfate -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 20 ; - } -#Total column ammonium -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 21 ; - } -#Total column methane sulfonic acid -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 22 ; - } -#Total column methyl glyoxal -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 23 ; - } -#Total column stratospheric ozone -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 24 ; - } -#Total column lead -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 26 ; - } -#Total column nitrogen monoxide -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 27 ; - } -#Total column hydroperoxy radical -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 28 ; - } -#Total column methylperoxy radical -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 29 ; - } -#Total column hydroxyl radical -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 30 ; - } -#Total column nitrate radical -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 32 ; - } -#Total column dinitrogen pentoxide -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 33 ; - } -#Total column pernitric acid -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 34 ; - } -#Total column peroxy acetyl radical -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 35 ; - } -#Total column organic ethers -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 36 ; - } -#Total column PAR budget corrector -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 37 ; - } -#Total column NO to NO2 operator -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 38 ; - } -#Total column NO to alkyl nitrate operator -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 39 ; - } -#Total column amine -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 40 ; - } -#Total column polar stratospheric cloud -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 41 ; - } -#Total column methanol -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 42 ; - } -#Total column formic acid -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 43 ; - } -#Total column methacrylic acid -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 44 ; - } -#Total column ethane -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 45 ; - } -#Total column ethanol -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 46 ; - } -#Total column propane -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 47 ; - } -#Total column propene -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 48 ; - } -#Total column terpenes -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 49 ; - } -#Total column methacrolein MVK -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 50 ; - } -#Total column nitrate -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 51 ; - } -#Total column acetone -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 52 ; - } -#Total column acetone product -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 53 ; - } -#Total column IC3H7O2 -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 54 ; - } -#Total column HYPROPO2 -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 55 ; - } -#Total column nitrogen oxides Transp -'kg m**-2' = { - table2Version = 218 ; - indicatorOfParameter = 56 ; - } -#Ozone emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 3 ; - } -#Methane emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 5 ; - } -#Nitric acid emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 8 ; - } -#Paraffins emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 9 ; - } -#Ethene emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 10 ; - } -#Olefins emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 11 ; - } -#Aldehydes emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 13 ; - } -#Peroxides emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 15 ; - } -#Isoprene emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 18 ; - } -#Ammonia emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 19 ; - } -#Sulfate emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 20 ; - } -#Ammonium emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 24 ; - } -#Radon emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 25 ; - } -#Lead emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 35 ; - } -#Organic ethers emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 39 ; - } -#Amine emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 41 ; - } -#Methanol emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 42 ; - } -#Formic acid emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 44 ; - } -#Ethane emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 45 ; - } -#Ethanol emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 46 ; - } -#Propane emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 47 ; - } -#Propene emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 48 ; - } -#Terpenes emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 50 ; - } -#Nitrate emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 51 ; - } -#Acetone emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 52 ; - } -#Acetone product emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp emissions -'kg m**-2 s**-1' = { - table2Version = 219 ; - indicatorOfParameter = 56 ; - } -#Ozone deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 1 ; - } -#Nitrogen oxides deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 2 ; - } -#Hydrogen peroxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 3 ; - } -#Methane deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 4 ; - } -#Carbon monoxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 5 ; - } -#Nitric acid deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 6 ; - } -#Methyl peroxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 7 ; - } -#Formaldehyde deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 8 ; - } -#Paraffins deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 9 ; - } -#Ethene deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 10 ; - } -#Olefins deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 11 ; - } -#Aldehydes deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 13 ; - } -#Peroxides deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 14 ; - } -#Organic nitrates deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 15 ; - } -#Isoprene deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 16 ; - } -#Sulfur dioxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 17 ; - } -#Dimethyl sulfide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 18 ; - } -#Ammonia deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 19 ; - } -#Sulfate deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 20 ; - } -#Ammonium deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 21 ; - } -#Methane sulfonic acid deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 22 ; - } -#Methyl glyoxal deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 23 ; - } -#Stratospheric ozone deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 24 ; - } -#Radon deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 25 ; - } -#Lead deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 26 ; - } -#Nitrogen monoxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 27 ; - } -#Hydroperoxy radical deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 28 ; - } -#Methylperoxy radical deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 29 ; - } -#Hydroxyl radical deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 30 ; - } -#Nitrogen dioxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 31 ; - } -#Nitrate radical deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 33 ; - } -#Pernitric acid deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 34 ; - } -#Peroxy acetyl radical deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 35 ; - } -#Organic ethers deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 36 ; - } -#PAR budget corrector deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 37 ; - } -#NO to NO2 operator deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 39 ; - } -#Amine deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 40 ; - } -#Polar stratospheric cloud deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 41 ; - } -#Methanol deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 42 ; - } -#Formic acid deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 43 ; - } -#Methacrylic acid deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 44 ; - } -#Ethane deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 45 ; - } -#Ethanol deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 46 ; - } -#Propane deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 47 ; - } -#Propene deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 48 ; - } -#Terpenes deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 49 ; - } -#Methacrolein MVK deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 50 ; - } -#Nitrate deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 51 ; - } -#Acetone deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 52 ; - } -#Acetone product deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 53 ; - } -#IC3H7O2 deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 54 ; - } -#HYPROPO2 deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'m s**-1' = { - table2Version = 221 ; - indicatorOfParameter = 56 ; - } -#-10 degrees C isothermal level (atm) -'m' = { - table2Version = 228 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 22 ; - } -#Cloud base height -'m' = { - table2Version = 228 ; - indicatorOfParameter = 23 ; - } -#0 degrees C isothermal level (atm) -'m' = { - table2Version = 228 ; - indicatorOfParameter = 24 ; - } -#Horizontal visibility -'m' = { - table2Version = 228 ; - indicatorOfParameter = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'K' = { - table2Version = 228 ; - indicatorOfParameter = 26 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'K' = { - table2Version = 228 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust in the last 3 hours -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 28 ; - } -#Instantaneous 10 metre wind gust -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 29 ; - } -#2 metre relative humidity with respect to water -'%' = { - table2Version = 228 ; - indicatorOfParameter = 37 ; - } -#Soil wetness index in layer 1 -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 40 ; - } -#Soil wetness index in layer 2 -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 41 ; - } -#Soil wetness index in layer 3 -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 42 ; - } -#Soil wetness index in layer 4 -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 43 ; - } -#Convective available potential energy shear -'m**2 s**-2' = { - table2Version = 228 ; - indicatorOfParameter = 44 ; - } -#Height of convective cloud top -'m' = { - table2Version = 228 ; - indicatorOfParameter = 46 ; - } -#Height of zero-degree wet-bulb temperature -'m' = { - table2Version = 228 ; - indicatorOfParameter = 47 ; - } -#Height of one-degree wet-bulb temperature -'m' = { - table2Version = 228 ; - indicatorOfParameter = 48 ; - } -#Instantaneous total lightning flash density -'km**-2 day**-1' = { - table2Version = 228 ; - indicatorOfParameter = 50 ; - } -#Averaged total lightning flash density in the last hour -'km**-2 day**-1' = { - table2Version = 228 ; - indicatorOfParameter = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'km**-2 day**-1' = { - table2Version = 228 ; - indicatorOfParameter = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'km**-2 day**-1' = { - table2Version = 228 ; - indicatorOfParameter = 53 ; - } -#SMOS observed soil moisture retrieved using neural network -'m**3 m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 70 ; - } -#SMOS observed soil moisture uncertainty retrieved using neural network -'m**3 m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 71 ; - } -#SMOS radio frequency interference probability -'%' = { - table2Version = 228 ; - indicatorOfParameter = 72 ; - } -#SMOS number of observations per grid point -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 73 ; - } -#SMOS observation time for the satellite soil moisture data -'hour' = { - table2Version = 228 ; - indicatorOfParameter = 74 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 78 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 79 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 82 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 83 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 84 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 85 ; - } -#Total column supercooled liquid water -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 88 ; - } -#Total column rain water -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 89 ; - } -#Total column snow water -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 90 ; - } -#Canopy cover fraction -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 91 ; - } -#Soil texture fraction -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 92 ; - } -#Volumetric soil moisture -'m**3 m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 93 ; - } -#Ice temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 94 ; - } -#Surface solar radiation downward clear-sky -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 130 ; - } -#Accumulated freezing rain -'m' = { - table2Version = 228 ; - indicatorOfParameter = 216 ; - } -#Instantaneous large-scale surface precipitation fraction -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 217 ; - } -#Convective rain rate -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 218 ; - } -#Large scale rain rate -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 219 ; - } -#Convective snowfall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 220 ; - } -#Large scale snowfall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 221 ; - } -#Maximum total precipitation rate in the last 3 hours -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 222 ; - } -#Minimum total precipitation rate in the last 3 hours -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 223 ; - } -#Maximum total precipitation rate in the last 6 hours -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 224 ; - } -#Minimum total precipitation rate in the last 6 hours -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 225 ; - } -#Maximum total precipitation rate since previous post-processing -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 226 ; - } -#Minimum total precipitation rate since previous post-processing -'kg m**-2 s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 227 ; - } -#SMOS first Brightness Temperature Bias Correction parameter -'K' = { - table2Version = 228 ; - indicatorOfParameter = 229 ; - } -#SMOS second Brightness Temperature Bias Correction parameter -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 230 ; - } -#200 metre U wind component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 239 ; - } -#200 metre V wind component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 240 ; - } -#200 metre wind speed -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 241 ; - } -#Surface solar radiation diffuse total sky -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 242 ; - } -#Surface solar radiation diffuse clear-sky -'J m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 243 ; - } -#Surface albedo of direct radiation -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 244 ; - } -#Surface albedo of diffuse radiation -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 245 ; - } -#100 metre wind speed -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 249 ; - } -#Irrigation fraction -'Proportion' = { - table2Version = 228 ; - indicatorOfParameter = 250 ; - } -#Potential evaporation -'m' = { - table2Version = 228 ; - indicatorOfParameter = 251 ; - } -#Irrigation -'m' = { - table2Version = 228 ; - indicatorOfParameter = 252 ; - } -#Surface runoff (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 9 ; - } -#Clear sky surface photosynthetically active radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 20 ; - } -#Total sky direct solar radiation at surface (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 21 ; - } -#Clear-sky direct solar radiation at surface (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 22 ; - } -#Direct solar radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 47 ; - } -#Large-scale precipitation fraction (variable resolution) -'s' = { - table2Version = 230 ; - indicatorOfParameter = 50 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 80 ; - } -#Accumulated Carbon Dioxide Gross Primary Production (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 81 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 82 ; - } -#Surface solar radiation downward clear-sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 129 ; - } -#Surface thermal radiation downward clear-sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 130 ; - } -#Albedo (variable resolution) -'(0 - 1)' = { - table2Version = 230 ; - indicatorOfParameter = 174 ; - } -#Vertically integrated moisture divergence (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 213 ; - } -#Accumulated freezing rain (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 216 ; - } -#Total precipitation (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall (variable resolution) -'m of water equivalent' = { - table2Version = 230 ; - indicatorOfParameter = 239 ; - } -#Large-scale snowfall (variable resolution) -'m of water equivalent' = { - table2Version = 230 ; - indicatorOfParameter = 240 ; - } -#Potential evaporation (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 251 ; - } -#Mean surface runoff rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 20 ; - } -#Mean sub-surface runoff rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 21 ; - } -#Mean surface photosynthetically active radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 22 ; - } -#Mean snow evaporation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 23 ; - } -#Mean snowmelt rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 24 ; - } -#Mean magnitude of turbulent surface stress -'N m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 25 ; - } -#Mean large-scale precipitation fraction -'Proportion' = { - table2Version = 235 ; - indicatorOfParameter = 26 ; - } -#Mean surface downward UV radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 27 ; - } -#Mean surface photosynthetically active radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 28 ; - } -#Mean large-scale precipitation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 29 ; - } -#Mean convective precipitation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 30 ; - } -#Mean snowfall rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 31 ; - } -#Mean boundary layer dissipation -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 32 ; - } -#Mean surface sensible heat flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 33 ; - } -#Mean surface latent heat flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 34 ; - } -#Mean surface downward short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 35 ; - } -#Mean surface downward long-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 36 ; - } -#Mean surface net short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 37 ; - } -#Mean surface net long-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 38 ; - } -#Mean top net short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 39 ; - } -#Mean top net long-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 40 ; - } -#Mean eastward turbulent surface stress -'N m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 41 ; - } -#Mean northward turbulent surface stress -'N m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 42 ; - } -#Mean evaporation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 43 ; - } -#Sunshine duration fraction -'Proportion' = { - table2Version = 235 ; - indicatorOfParameter = 44 ; - } -#Mean eastward gravity wave surface stress -'N m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 45 ; - } -#Mean northward gravity wave surface stress -'N m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 46 ; - } -#Mean gravity wave dissipation -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 47 ; - } -#Mean runoff rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 48 ; - } -#Mean top net short-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 49 ; - } -#Mean top net long-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 50 ; - } -#Mean surface net short-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 51 ; - } -#Mean surface net long-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 52 ; - } -#Mean top downward short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 53 ; - } -#Mean vertically integrated moisture divergence -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 54 ; - } -#Mean total precipitation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 55 ; - } -#Mean convective snowfall rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 56 ; - } -#Mean large-scale snowfall rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 57 ; - } -#Mean surface direct short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 58 ; - } -#Mean surface direct short-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 59 ; - } -#Mean surface diffuse short-wave radiation flux -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 60 ; - } -#Mean surface diffuse short-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 61 ; - } -#Mean carbon dioxide net ecosystem exchange flux -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 62 ; - } -#Mean carbon dioxide gross primary production flux -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 63 ; - } -#Mean carbon dioxide ecosystem respiration flux -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 64 ; - } -#Mean rain rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 65 ; - } -#Mean convective rain rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 66 ; - } -#Mean large-scale rain rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 67 ; - } -#Mean surface downward short-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 68 ; - } -#Mean surface downward long-wave radiation flux, clear sky -'W m**-2' = { - table2Version = 235 ; - indicatorOfParameter = 69 ; - } -#Mean potential evaporation rate -'kg m**-2 s**-1' = { - table2Version = 235 ; - indicatorOfParameter = 70 ; - } -#Total precipitation rate -'kg m**-2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#Ceiling -'m' = { - table2Version = 228 ; - indicatorOfParameter = 109 ; - } -#K index -'K' = { - table2Version = 228 ; - indicatorOfParameter = 121 ; - } -#Total totals index -'K' = { - table2Version = 228 ; - indicatorOfParameter = 123 ; - } -#Stream function gradient -'m**2 s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Velocity potential gradient -'m**2 s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 2 ; - } -#Potential temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence gradient -'s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 23 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 129 ; - indicatorOfParameter = 24 ; - } -#Reserved for future unbalanced components -'~' = { - table2Version = 129 ; - indicatorOfParameter = 25 ; - } -#Lake cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 31 ; - } -#Snow albedo gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#Snow density gradient -'kg m**-3' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature layer 1 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature layer 2 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature layer 3 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature layer 4 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water layer 1 gradient -'m**3 m**-3' = { - table2Version = 129 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 gradient -'m**3 m**-3' = { - table2Version = 129 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 gradient -'m**3 m**-3' = { - table2Version = 129 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 gradient -'m**3 m**-3' = { - table2Version = 129 ; - indicatorOfParameter = 42 ; - } -#Soil type gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 44 ; - } -#Snowmelt gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 45 ; - } -#Solar duration gradient -'s' = { - table2Version = 129 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress gradient -'N m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction gradient -'s' = { - table2Version = 129 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential gradient -'m**2 s**-2' = { - table2Version = 129 ; - indicatorOfParameter = 53 ; - } -#Pressure gradient -'Pa' = { - table2Version = 129 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy gradient -'J kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity gradient -'K m**2 kg**-1 s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations gradient -'Millimetres*100 + number of stations' = { - table2Version = 129 ; - indicatorOfParameter = 61 ; - } -#Observation count gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference -'s' = { - table2Version = 129 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference -'s' = { - table2Version = 129 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference -'K' = { - table2Version = 129 ; - indicatorOfParameter = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - table2Version = 129 ; - indicatorOfParameter = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - table2Version = 129 ; - indicatorOfParameter = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Total column liquid water -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Total column ice water -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 80 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 81 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 82 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 83 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 84 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 85 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 86 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 87 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 88 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 89 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 90 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 91 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 92 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 93 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 94 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 95 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 96 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 97 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 98 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 99 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 100 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 101 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 102 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 103 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 104 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 105 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 106 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 107 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 108 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 109 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 110 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 111 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 112 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 113 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 114 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 115 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 116 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 117 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 118 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 119 ; - } -#Experimental product -'~' = { - table2Version = 129 ; - indicatorOfParameter = 120 ; - } -#Maximum temperature at 2 metres gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 121 ; - } -#Minimum temperature at 2 metres gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - table2Version = 129 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 127 ; - } -#Budget values gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 128 ; - } -#Geopotential gradient -'m**2 s**-2' = { - table2Version = 129 ; - indicatorOfParameter = 129 ; - } -#Temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 130 ; - } -#U component of wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 131 ; - } -#V component of wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 132 ; - } -#Specific humidity gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 133 ; - } -#Surface pressure gradient -'Pa' = { - table2Version = 129 ; - indicatorOfParameter = 134 ; - } -#vertical velocity (pressure) gradient -'Pa s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 135 ; - } -#Total column water gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 137 ; - } -#Vorticity (relative) gradient -'s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 138 ; - } -#Soil temperature level 1 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 139 ; - } -#Soil wetness level 1 gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 140 ; - } -#Snow depth gradient -'m of water equivalent' = { - table2Version = 129 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) gradient -'m of water equivalent' = { - table2Version = 129 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 147 ; - } -#Charnock gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 149 ; - } -#Top net radiation gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure gradient -'Pa' = { - table2Version = 129 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 154 ; - } -#Divergence gradient -'s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 155 ; - } -#Height gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 156 ; - } -#Relative humidity gradient -'%' = { - table2Version = 129 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure gradient -'Pa s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography gradient -'radians' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#Soil temperature level 2 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 170 ; - } -#Soil wetness level 2 gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#Land-sea mask gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#Surface roughness gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#Albedo gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress gradient -'N m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress gradient -'N m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#Evaporation gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#Soil temperature level 3 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#Soil wetness level 3 gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#High cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration gradient -'s' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'m**2' = { - table2Version = 129 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'m**2' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'m**2' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'m**2' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'N m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress gradient -'N m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography gradient -'m**2' = { - table2Version = 129 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#Runoff gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#Total column ozone gradient -'kg m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation, clear sky gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating large-scale condensation gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#Total precipitation gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress gradient -'N m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress gradient -'N m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux gradient -'J m**-2' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux gradient -'kg m**-2 s' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#Skin temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall gradient -'m of water equivalent' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall gradient -'m of water equivalent' = { - table2Version = 129 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency gradient -'(-1 to 1)' = { - table2Version = 129 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency gradient -'(-1 to 1)' = { - table2Version = 129 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness gradient -'m' = { - table2Version = 129 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'~' = { - table2Version = 129 ; - indicatorOfParameter = 245 ; - } -#Specific cloud liquid water content gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 246 ; - } -#Specific cloud ice water content gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 247 ; - } -#Cloud cover gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency gradient -'(-1 to 1)' = { - table2Version = 129 ; - indicatorOfParameter = 249 ; - } -#Ice age gradient -'(0 - 1)' = { - table2Version = 129 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature gradient -'K' = { - table2Version = 129 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity gradient -'kg kg**-1' = { - table2Version = 129 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'m s**-1' = { - table2Version = 129 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -#Top solar radiation upward -'J m**-2' = { - table2Version = 130 ; - indicatorOfParameter = 208 ; - } -#Top thermal radiation upward -'J m**-2' = { - table2Version = 130 ; - indicatorOfParameter = 209 ; - } -#Top solar radiation upward, clear sky -'J m**-2' = { - table2Version = 130 ; - indicatorOfParameter = 210 ; - } -#Top thermal radiation upward, clear sky -'J m**-2' = { - table2Version = 130 ; - indicatorOfParameter = 211 ; - } -#Cloud liquid water -'kg kg**-1' = { - table2Version = 130 ; - indicatorOfParameter = 212 ; - } -#Cloud fraction -'(0 - 1)' = { - table2Version = 130 ; - indicatorOfParameter = 213 ; - } -#Diabatic heating by radiation -'K s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion -'K s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection -'K s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation -'K s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 221 ; - } -#Vertical diffusion of humidity -'kg kg**-1 s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1 s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1 s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 226 ; - } -#Adiabatic tendency of temperature -'K s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 228 ; - } -#Adiabatic tendency of humidity -'kg kg**-1 s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 229 ; - } -#Adiabatic tendency of zonal wind -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 230 ; - } -#Adiabatic tendency of meridional wind -'m**2 s**-3' = { - table2Version = 130 ; - indicatorOfParameter = 231 ; - } -#Mean vertical velocity -'Pa s**-1' = { - table2Version = 130 ; - indicatorOfParameter = 232 ; - } -#2m temperature anomaly of at least +2K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 1 ; - } -#2m temperature anomaly of at least +1K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 2 ; - } -#2m temperature anomaly of at least 0K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 3 ; - } -#2m temperature anomaly of at most -1K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 4 ; - } -#2m temperature anomaly of at most -2K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 8 ; - } -#Surface temperature anomaly of at least 0K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'%' = { - table2Version = 131 ; - indicatorOfParameter = 10 ; - } -#Height of 0 degree isotherm probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 15 ; - } -#Height of snowfall limit probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 16 ; - } -#Showalter index probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 17 ; - } -#Whiting index probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 18 ; - } -#Temperature anomaly less than -2 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 20 ; - } -#Temperature anomaly of at least +2 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 21 ; - } -#Temperature anomaly less than -8 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 22 ; - } -#Temperature anomaly less than -4 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly greater than +4 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly greater than +8 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Convective available potential energy probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 59 ; - } -#Total precipitation less than 0.1 mm -'%' = { - table2Version = 131 ; - indicatorOfParameter = 64 ; - } -#Total precipitation rate less than 1 mm/day -'%' = { - table2Version = 131 ; - indicatorOfParameter = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'%' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'%' = { - table2Version = 131 ; - indicatorOfParameter = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 69 ; - } -#10 metre wind gust of at least 15 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 70 ; - } -#10 metre wind gust of at least 20 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 71 ; - } -#10 metre wind gust of at least 25 m/s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 72 ; - } -#2 metre temperature less than 273.15 K -'%' = { - table2Version = 131 ; - indicatorOfParameter = 73 ; - } -#Significant wave height of at least 2 m -'%' = { - table2Version = 131 ; - indicatorOfParameter = 74 ; - } -#Significant wave height of at least 4 m -'%' = { - table2Version = 131 ; - indicatorOfParameter = 75 ; - } -#Significant wave height of at least 6 m -'%' = { - table2Version = 131 ; - indicatorOfParameter = 76 ; - } -#Significant wave height of at least 8 m -'%' = { - table2Version = 131 ; - indicatorOfParameter = 77 ; - } -#Mean wave period of at least 8 s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 78 ; - } -#Mean wave period of at least 10 s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 79 ; - } -#Mean wave period of at least 12 s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 80 ; - } -#Mean wave period of at least 15 s -'%' = { - table2Version = 131 ; - indicatorOfParameter = 81 ; - } -#Geopotential probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 130 ; - } -#Soil temperature level 1 probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 139 ; - } -#Snowfall (convective + stratiform) probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 144 ; - } -#Mean sea level pressure probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Total cloud cover probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#10 metre speed probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 167 ; - } -#Maximum 2 metre temperature probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 201 ; - } -#Minimum 2 metre temperature probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 202 ; - } -#Total precipitation probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 228 ; - } -#Significant wave height probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 229 ; - } -#Mean wave period probability -'%' = { - table2Version = 131 ; - indicatorOfParameter = 232 ; - } -#Indicates a missing value -'~' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 49 ; - } -#Snowfall index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 144 ; - } -#10 metre speed index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 165 ; - } -#2 metre temperature index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 167 ; - } -#Maximum temperature at 2 metres index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 202 ; - } -#Total precipitation index -'(-1 to 1)' = { - table2Version = 132 ; - indicatorOfParameter = 228 ; - } -#2m temperature probability less than -10 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#2m temperature probability less than -5 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 2 ; - } -#2m temperature probability less than 0 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 3 ; - } -#2m temperature probability less than 5 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 4 ; - } -#2m temperature probability less than 10 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 5 ; - } -#2m temperature probability greater than 25 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 6 ; - } -#2m temperature probability greater than 30 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 7 ; - } -#2m temperature probability greater than 35 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 8 ; - } -#2m temperature probability greater than 40 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 9 ; - } -#2m temperature probability greater than 45 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'%' = { - table2Version = 133 ; - indicatorOfParameter = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'%' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Total precipitation probability of at least 1 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Total precipitation probability of at least 5 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#Total precipitation probability of at least 10 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#Total precipitation probability of at least 20 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Total precipitation probability of at least 40 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Total precipitation probability of at least 60 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Total precipitation probability of at least 80 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Total precipitation probability of at least 100 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Total precipitation probability of at least 150 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Total precipitation probability of at least 200 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Total precipitation probability of at least 300 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Snowfall probability of at least 1 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Snowfall probability of at least 5 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Snowfall probability of at least 10 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Snowfall probability of at least 20 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Snowfall probability of at least 40 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Snowfall probability of at least 60 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Snowfall probability of at least 80 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#Snowfall probability of at least 100 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#Snowfall probability of at least 150 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Snowfall probability of at least 200 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snowfall probability of at least 300 mm -'%' = { - table2Version = 133 ; - indicatorOfParameter = 52 ; - } -#Total Cloud Cover probability greater than 10% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 53 ; - } -#Total Cloud Cover probability greater than 20% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 54 ; - } -#Total Cloud Cover probability greater than 30% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 55 ; - } -#Total Cloud Cover probability greater than 40% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 56 ; - } -#Total Cloud Cover probability greater than 50% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 57 ; - } -#Total Cloud Cover probability greater than 60% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 58 ; - } -#Total Cloud Cover probability greater than 70% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 59 ; - } -#Total Cloud Cover probability greater than 80% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 60 ; - } -#Total Cloud Cover probability greater than 90% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 61 ; - } -#Total Cloud Cover probability greater than 99% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 62 ; - } -#High Cloud Cover probability greater than 10% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 63 ; - } -#High Cloud Cover probability greater than 20% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 64 ; - } -#High Cloud Cover probability greater than 30% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 65 ; - } -#High Cloud Cover probability greater than 40% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#High Cloud Cover probability greater than 50% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#High Cloud Cover probability greater than 60% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#High Cloud Cover probability greater than 70% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#High Cloud Cover probability greater than 80% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#High Cloud Cover probability greater than 90% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#High Cloud Cover probability greater than 99% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Low Cloud Cover probability greater than 10% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 83 ; - } -#Low Cloud Cover probability greater than 20% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 84 ; - } -#Low Cloud Cover probability greater than 30% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 85 ; - } -#Low Cloud Cover probability greater than 40% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 86 ; - } -#Low Cloud Cover probability greater than 50% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 87 ; - } -#Low Cloud Cover probability greater than 60% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Low Cloud Cover probability greater than 70% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Low Cloud Cover probability greater than 80% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 90 ; - } -#Low Cloud Cover probability greater than 90% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Low Cloud Cover probability greater than 99% -'%' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Maximum of significant wave height -'m' = { - table2Version = 140 ; - indicatorOfParameter = 200 ; - } -#Period corresponding to maximum individual wave height -'s' = { - table2Version = 140 ; - indicatorOfParameter = 217 ; - } -#Maximum individual wave height -'m' = { - table2Version = 140 ; - indicatorOfParameter = 218 ; - } -#Model bathymetry -'m' = { - table2Version = 140 ; - indicatorOfParameter = 219 ; - } -#Mean wave period based on first moment -'s' = { - table2Version = 140 ; - indicatorOfParameter = 220 ; - } -#Mean zero-crossing wave period -'s' = { - table2Version = 140 ; - indicatorOfParameter = 221 ; - } -#Wave spectral directional width -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 222 ; - } -#Mean wave period based on first moment for wind waves -'s' = { - table2Version = 140 ; - indicatorOfParameter = 223 ; - } -#Mean wave period based on second moment for wind waves -'s' = { - table2Version = 140 ; - indicatorOfParameter = 224 ; - } -#Wave spectral directional width for wind waves -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 225 ; - } -#Mean wave period based on first moment for swell -'s' = { - table2Version = 140 ; - indicatorOfParameter = 226 ; - } -#Mean wave period based on second moment for swell -'s' = { - table2Version = 140 ; - indicatorOfParameter = 227 ; - } -#Wave spectral directional width for swell -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 228 ; - } -#Significant height of combined wind waves and swell -'m' = { - table2Version = 140 ; - indicatorOfParameter = 229 ; - } -#Mean wave direction -'Degree true' = { - table2Version = 140 ; - indicatorOfParameter = 230 ; - } -#Peak wave period -'s' = { - table2Version = 140 ; - indicatorOfParameter = 231 ; - } -#Mean wave period -'s' = { - table2Version = 140 ; - indicatorOfParameter = 232 ; - } -#Coefficient of drag with waves -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 233 ; - } -#Significant height of wind waves -'m' = { - table2Version = 140 ; - indicatorOfParameter = 234 ; - } -#Mean direction of wind waves -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 235 ; - } -#Mean period of wind waves -'s' = { - table2Version = 140 ; - indicatorOfParameter = 236 ; - } -#Significant height of total swell -'m' = { - table2Version = 140 ; - indicatorOfParameter = 237 ; - } -#Mean direction of total swell -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 238 ; - } -#Mean period of total swell -'s' = { - table2Version = 140 ; - indicatorOfParameter = 239 ; - } -#Standard deviation wave height -'m' = { - table2Version = 140 ; - indicatorOfParameter = 240 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 241 ; - } -#Mean wind direction -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 242 ; - } -#Standard deviation of 10 metre wind speed -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 243 ; - } -#Mean square slope of waves -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 244 ; - } -#10 metre wind speed -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 245 ; - } -#Altimeter wave height -'m' = { - table2Version = 140 ; - indicatorOfParameter = 246 ; - } -#Altimeter corrected wave height -'m' = { - table2Version = 140 ; - indicatorOfParameter = 247 ; - } -#Altimeter range relative correction -'~' = { - table2Version = 140 ; - indicatorOfParameter = 248 ; - } -#10 metre wind direction -'degrees' = { - table2Version = 140 ; - indicatorOfParameter = 249 ; - } -#2D wave spectra (multiple) -'m**2 s radian**-1' = { - table2Version = 140 ; - indicatorOfParameter = 250 ; - } -#2D wave spectra (single) -'m**2 s radian**-1' = { - table2Version = 140 ; - indicatorOfParameter = 251 ; - } -#Wave spectral kurtosis -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 252 ; - } -#Benjamin-Feir index -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 253 ; - } -#Wave spectral peakedness -'dimensionless' = { - table2Version = 140 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -#Ocean potential temperature -'deg C' = { - table2Version = 150 ; - indicatorOfParameter = 129 ; - } -#Ocean salinity -'psu' = { - table2Version = 150 ; - indicatorOfParameter = 130 ; - } -#Ocean potential density -'kg m**-3 -1000' = { - table2Version = 150 ; - indicatorOfParameter = 131 ; - } -#Ocean U wind component -'m s**-1' = { - table2Version = 150 ; - indicatorOfParameter = 133 ; - } -#Ocean V wind component -'m s**-1' = { - table2Version = 150 ; - indicatorOfParameter = 134 ; - } -#Ocean W wind component -'m s**-1' = { - table2Version = 150 ; - indicatorOfParameter = 135 ; - } -#Richardson number -'~' = { - table2Version = 150 ; - indicatorOfParameter = 137 ; - } -#U*V product -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 139 ; - } -#U*T product -'m s**-1 deg C' = { - table2Version = 150 ; - indicatorOfParameter = 140 ; - } -#V*T product -'m s**-1 deg C' = { - table2Version = 150 ; - indicatorOfParameter = 141 ; - } -#U*U product -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 142 ; - } -#V*V product -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 143 ; - } -#UV - U~V~ -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 144 ; - } -#UT - U~T~ -'m s**-1 deg C' = { - table2Version = 150 ; - indicatorOfParameter = 145 ; - } -#VT - V~T~ -'m s**-1 deg C' = { - table2Version = 150 ; - indicatorOfParameter = 146 ; - } -#UU - U~U~ -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 147 ; - } -#VV - V~V~ -'m s**-2' = { - table2Version = 150 ; - indicatorOfParameter = 148 ; - } -#Sea level -'m' = { - table2Version = 150 ; - indicatorOfParameter = 152 ; - } -#Barotropic stream function -'~' = { - table2Version = 150 ; - indicatorOfParameter = 153 ; - } -#Mixed layer depth -'m' = { - table2Version = 150 ; - indicatorOfParameter = 154 ; - } -#Depth -'m' = { - table2Version = 150 ; - indicatorOfParameter = 155 ; - } -#U stress -'Pa' = { - table2Version = 150 ; - indicatorOfParameter = 168 ; - } -#V stress -'Pa' = { - table2Version = 150 ; - indicatorOfParameter = 169 ; - } -#Turbulent kinetic energy input -'~' = { - table2Version = 150 ; - indicatorOfParameter = 170 ; - } -#Net surface heat flux -'~' = { - table2Version = 150 ; - indicatorOfParameter = 171 ; - } -#Surface solar radiation -'~' = { - table2Version = 150 ; - indicatorOfParameter = 172 ; - } -#P-E -'~' = { - table2Version = 150 ; - indicatorOfParameter = 173 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - table2Version = 150 ; - indicatorOfParameter = 180 ; - } -#Heat flux correction -'J m**-2' = { - table2Version = 150 ; - indicatorOfParameter = 181 ; - } -#Observed sea surface temperature -'deg C' = { - table2Version = 150 ; - indicatorOfParameter = 182 ; - } -#Observed heat flux -'J m**-2' = { - table2Version = 150 ; - indicatorOfParameter = 183 ; - } -#Indicates a missing value -'~' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -#In situ Temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 128 ; - } -#Sea water potential temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; - } -#Sea water practical salinity -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; - } -#Eastward sea water velocity -'m s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; - } -#Northward sea water velocity -'m s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; - } -#Upward sea water velocity -'m s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; - } -#Modulus of strain rate tensor -'s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 134 ; - } -#Vertical viscosity -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 135 ; - } -#Vertical diffusivity -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 136 ; - } -#Bottom level Depth -'m' = { - table2Version = 151 ; - indicatorOfParameter = 137 ; - } -#Sea water sigma theta -'kg m**-3' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; - } -#Richardson number -'~' = { - table2Version = 151 ; - indicatorOfParameter = 139 ; - } -#UV product -'m**2 s**-2' = { - table2Version = 151 ; - indicatorOfParameter = 140 ; - } -#UT product -'m s**-1 degC' = { - table2Version = 151 ; - indicatorOfParameter = 141 ; - } -#VT product -'m s**-1 deg C' = { - table2Version = 151 ; - indicatorOfParameter = 142 ; - } -#UU product -'m**2 s**-2' = { - table2Version = 151 ; - indicatorOfParameter = 143 ; - } -#VV product -'m**2 s**-2' = { - table2Version = 151 ; - indicatorOfParameter = 144 ; - } -#Sea surface height -'m' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; - } -#Sea level previous timestep -'m' = { - table2Version = 151 ; - indicatorOfParameter = 146 ; - } -#Ocean barotropic stream function -'m**3 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; - } -#Mixed layer depth -'m' = { - table2Version = 151 ; - indicatorOfParameter = 148 ; - } -#Bottom Pressure (equivalent height) -'m' = { - table2Version = 151 ; - indicatorOfParameter = 149 ; - } -#Steric height -'m' = { - table2Version = 151 ; - indicatorOfParameter = 150 ; - } -#Curl of Wind Stress -'N m**-3' = { - table2Version = 151 ; - indicatorOfParameter = 151 ; - } -#Divergence of wind stress -'Nm**-3' = { - table2Version = 151 ; - indicatorOfParameter = 152 ; - } -#Surface downward eastward stress -'N m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; - } -#Surface downward northward stress -'N m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; - } -#Turbulent kinetic energy input -'J m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 155 ; - } -#Net surface heat flux -'J m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 156 ; - } -#Absorbed solar radiation -'J m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 157 ; - } -#Precipitation - evaporation -'m s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 158 ; - } -#Specified sea surface temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 159 ; - } -#Specified surface heat flux -'J m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 160 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 161 ; - } -#Heat flux correction -'J m**-2' = { - table2Version = 151 ; - indicatorOfParameter = 162 ; - } -#Depth of 20C isotherm -'m' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; - } -#Average potential temperature in the upper 300m -'degrees C' = { - table2Version = 151 ; - indicatorOfParameter = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 166 ; - } -#Vertically integrated zonal volume transport -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 167 ; - } -#Vertically integrated meridional volume transport -'m**2 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 168 ; - } -#Vertically integrated zonal heat transport -'J m**-1 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 169 ; - } -#Vertically integrated meridional heat transport -'J m**-1 s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 170 ; - } -#U velocity maximum -'m s**-1' = { - table2Version = 151 ; - indicatorOfParameter = 171 ; - } -#Depth of the velocity maximum -'m' = { - table2Version = 151 ; - indicatorOfParameter = 172 ; - } -#Salinity maximum -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 173 ; - } -#Depth of salinity maximum -'m' = { - table2Version = 151 ; - indicatorOfParameter = 174 ; - } -#Average salinity in the upper 300m -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 175 ; - } -#Layer Thickness at scalar points -'m' = { - table2Version = 151 ; - indicatorOfParameter = 176 ; - } -#Layer Thickness at vector points -'m' = { - table2Version = 151 ; - indicatorOfParameter = 177 ; - } -#Potential temperature increment -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 178 ; - } -#Potential temperature analysis error -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 179 ; - } -#Background potential temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 180 ; - } -#Analysed potential temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 181 ; - } -#Potential temperature background error -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 182 ; - } -#Analysed salinity -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 183 ; - } -#Salinity increment -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 184 ; - } -#Estimated Bias in Temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 185 ; - } -#Estimated Bias in Salinity -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 186 ; - } -#Zonal Velocity increment (from balance operator) -'m s**-1 per time step' = { - table2Version = 151 ; - indicatorOfParameter = 187 ; - } -#Meridional Velocity increment (from balance operator) -'~' = { - table2Version = 151 ; - indicatorOfParameter = 188 ; - } -#Salinity increment (from salinity data) -'psu per time step' = { - table2Version = 151 ; - indicatorOfParameter = 190 ; - } -#Salinity analysis error -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 191 ; - } -#Background Salinity -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 192 ; - } -#Salinity background error -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 194 ; - } -#Estimated temperature bias from assimilation -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 199 ; - } -#Estimated salinity bias from assimilation -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 200 ; - } -#Temperature increment from relaxation term -'deg C per time step' = { - table2Version = 151 ; - indicatorOfParameter = 201 ; - } -#Salinity increment from relaxation term -'~' = { - table2Version = 151 ; - indicatorOfParameter = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Pa m**-1' = { - table2Version = 151 ; - indicatorOfParameter = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Pa m**-1' = { - table2Version = 151 ; - indicatorOfParameter = 204 ; - } -#Estimated temperature bias from relaxation -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 205 ; - } -#Estimated salinity bias from relaxation -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 206 ; - } -#First guess bias in temperature -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 207 ; - } -#First guess bias in salinity -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 208 ; - } -#Applied bias in pressure -'Pa' = { - table2Version = 151 ; - indicatorOfParameter = 209 ; - } -#FG bias in pressure -'Pa' = { - table2Version = 151 ; - indicatorOfParameter = 210 ; - } -#Bias in temperature(applied) -'deg C' = { - table2Version = 151 ; - indicatorOfParameter = 211 ; - } -#Bias in salinity (applied) -'psu' = { - table2Version = 151 ; - indicatorOfParameter = 212 ; - } -#Indicates a missing value -'~' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -#10 metre wind gust during averaging time -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 49 ; - } -#vertical velocity (pressure) -'Pa s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 135 ; - } -#Precipitable water content -'kg m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 137 ; - } -#Soil wetness level 1 -'m' = { - table2Version = 160 ; - indicatorOfParameter = 140 ; - } -#Snow depth -'kg m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 141 ; - } -#Large-scale precipitation -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 143 ; - } -#Snowfall -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 144 ; - } -#Height -'m' = { - table2Version = 160 ; - indicatorOfParameter = 156 ; - } -#Relative humidity -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 157 ; - } -#Soil wetness level 2 -'m' = { - table2Version = 160 ; - indicatorOfParameter = 171 ; - } -#East-West surface stress -'N m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress -'N m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 182 ; - } -#Soil wetness level 3 -'m' = { - table2Version = 160 ; - indicatorOfParameter = 184 ; - } -#Skin reservoir content -'kg m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 198 ; - } -#Percentage of vegetation -'%' = { - table2Version = 160 ; - indicatorOfParameter = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'K' = { - table2Version = 160 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'K' = { - table2Version = 160 ; - indicatorOfParameter = 202 ; - } -#Runoff -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 205 ; - } -#Standard deviation of geopotential -'m**2 s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 206 ; - } -#Covariance of temperature and geopotential -'K m**2 s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 207 ; - } -#Standard deviation of temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 208 ; - } -#Covariance of specific humidity and geopotential -'m**2 s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 209 ; - } -#Covariance of specific humidity and temperature -'K' = { - table2Version = 160 ; - indicatorOfParameter = 210 ; - } -#Standard deviation of specific humidity -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 211 ; - } -#Covariance of U component and geopotential -'m**3 s**-3' = { - table2Version = 160 ; - indicatorOfParameter = 212 ; - } -#Covariance of U component and temperature -'K m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 213 ; - } -#Covariance of U component and specific humidity -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 214 ; - } -#Standard deviation of U velocity -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 215 ; - } -#Covariance of V component and geopotential -'m**3 s**-3' = { - table2Version = 160 ; - indicatorOfParameter = 216 ; - } -#Covariance of V component and temperature -'K m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 217 ; - } -#Covariance of V component and specific humidity -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 218 ; - } -#Covariance of V component and U component -'m**2 s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of V component -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 220 ; - } -#Covariance of W component and geopotential -'Pa m**2 s**-3' = { - table2Version = 160 ; - indicatorOfParameter = 221 ; - } -#Covariance of W component and temperature -'K Pa s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 222 ; - } -#Covariance of W component and specific humidity -'Pa s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 223 ; - } -#Covariance of W component and U component -'Pa m s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 224 ; - } -#Covariance of W component and V component -'Pa m s**-2' = { - table2Version = 160 ; - indicatorOfParameter = 225 ; - } -#Standard deviation of vertical velocity -'Pa s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 226 ; - } -#Instantaneous surface heat flux -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 231 ; - } -#Convective snowfall -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'kg m**-2 s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 240 ; - } -#Cloud liquid water content -'kg kg**-1' = { - table2Version = 160 ; - indicatorOfParameter = 241 ; - } -#Cloud cover -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo -'~' = { - table2Version = 160 ; - indicatorOfParameter = 243 ; - } -#10 metre wind speed -'m s**-1' = { - table2Version = 160 ; - indicatorOfParameter = 246 ; - } -#Momentum flux -'N m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 247 ; - } -#Gravity wave dissipation flux -'J m**-2' = { - table2Version = 160 ; - indicatorOfParameter = 249 ; - } -#Heaviside beta function -'(0 - 1)' = { - table2Version = 160 ; - indicatorOfParameter = 254 ; - } -#Surface geopotential -'m**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 51 ; - } -#Vertical integral of mass of atmosphere -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 53 ; - } -#Vertical integral of temperature -'K kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 54 ; - } -#Vertical integral of water vapour -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 55 ; - } -#Vertical integral of cloud liquid water -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 56 ; - } -#Vertical integral of cloud frozen water -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 57 ; - } -#Vertical integral of ozone -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 58 ; - } -#Vertical integral of kinetic energy -'J m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 59 ; - } -#Vertical integral of thermal energy -'J m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 60 ; - } -#Vertical integral of potential+internal energy -'J m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 61 ; - } -#Vertical integral of potential+internal+latent energy -'J m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 62 ; - } -#Vertical integral of total energy -'J m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 63 ; - } -#Vertical integral of energy conversion -'W m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 64 ; - } -#Vertical integral of eastward mass flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 65 ; - } -#Vertical integral of northward mass flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 67 ; - } -#Vertical integral of northward kinetic energy flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 68 ; - } -#Vertical integral of eastward heat flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 69 ; - } -#Vertical integral of northward heat flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 70 ; - } -#Vertical integral of eastward water vapour flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 71 ; - } -#Vertical integral of northward water vapour flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 72 ; - } -#Vertical integral of eastward geopotential flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 73 ; - } -#Vertical integral of northward geopotential flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 74 ; - } -#Vertical integral of eastward total energy flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 75 ; - } -#Vertical integral of northward total energy flux -'W m**-1' = { - table2Version = 162 ; - indicatorOfParameter = 76 ; - } -#Vertical integral of eastward ozone flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 77 ; - } -#Vertical integral of northward ozone flux -'kg m**-1 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 78 ; - } -#Vertical integral of divergence of mass flux -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'W m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'W m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 83 ; - } -#Vertical integral of divergence of moisture flux -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 84 ; - } -#Vertical integral of divergence of geopotential flux -'W m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 85 ; - } -#Vertical integral of divergence of total energy flux -'W m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 86 ; - } -#Vertical integral of divergence of ozone flux -'kg m**-2 s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 87 ; - } -#Tendency of short wave radiation -'K' = { - table2Version = 162 ; - indicatorOfParameter = 100 ; - } -#Tendency of long wave radiation -'K' = { - table2Version = 162 ; - indicatorOfParameter = 101 ; - } -#Tendency of clear sky short wave radiation -'K' = { - table2Version = 162 ; - indicatorOfParameter = 102 ; - } -#Tendency of clear sky long wave radiation -'K' = { - table2Version = 162 ; - indicatorOfParameter = 103 ; - } -#Updraught mass flux -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 104 ; - } -#Downdraught mass flux -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 105 ; - } -#Updraught detrainment rate -'kg m**-3' = { - table2Version = 162 ; - indicatorOfParameter = 106 ; - } -#Downdraught detrainment rate -'kg m**-3' = { - table2Version = 162 ; - indicatorOfParameter = 107 ; - } -#Total precipitation flux -'kg m**-2' = { - table2Version = 162 ; - indicatorOfParameter = 108 ; - } -#Turbulent diffusion coefficient for heat -'m**2' = { - table2Version = 162 ; - indicatorOfParameter = 109 ; - } -#Tendency of temperature due to physics -'K' = { - table2Version = 162 ; - indicatorOfParameter = 110 ; - } -#Tendency of specific humidity due to physics -'kg kg**-1' = { - table2Version = 162 ; - indicatorOfParameter = 111 ; - } -#Tendency of u component due to physics -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 112 ; - } -#Tendency of v component due to physics -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 113 ; - } -#Variance of geopotential -'m**4 s**-4' = { - table2Version = 162 ; - indicatorOfParameter = 206 ; - } -#Covariance of geopotential/temperature -'m**2 K s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 207 ; - } -#Variance of temperature -'K**2' = { - table2Version = 162 ; - indicatorOfParameter = 208 ; - } -#Covariance of geopotential/specific humidity -'m**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 209 ; - } -#Covariance of temperature/specific humidity -'K' = { - table2Version = 162 ; - indicatorOfParameter = 210 ; - } -#Variance of specific humidity -'~' = { - table2Version = 162 ; - indicatorOfParameter = 211 ; - } -#Covariance of u component/geopotential -'m**3 s**-3' = { - table2Version = 162 ; - indicatorOfParameter = 212 ; - } -#Covariance of u component/temperature -'m s**-1 K' = { - table2Version = 162 ; - indicatorOfParameter = 213 ; - } -#Covariance of u component/specific humidity -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 214 ; - } -#Variance of u component -'m**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 215 ; - } -#Covariance of v component/geopotential -'m**3 s**-3' = { - table2Version = 162 ; - indicatorOfParameter = 216 ; - } -#Covariance of v component/temperature -'m s**-1 K' = { - table2Version = 162 ; - indicatorOfParameter = 217 ; - } -#Covariance of v component/specific humidity -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 218 ; - } -#Covariance of v component/u component -'m**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 219 ; - } -#Variance of v component -'m**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 220 ; - } -#Covariance of omega/geopotential -'m**2 Pa s**-3' = { - table2Version = 162 ; - indicatorOfParameter = 221 ; - } -#Covariance of omega/temperature -'Pa s**-1 K' = { - table2Version = 162 ; - indicatorOfParameter = 222 ; - } -#Covariance of omega/specific humidity -'Pa s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 223 ; - } -#Covariance of omega/u component -'m Pa s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 224 ; - } -#Covariance of omega/v component -'m Pa s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 225 ; - } -#Variance of omega -'Pa**2 s**-2' = { - table2Version = 162 ; - indicatorOfParameter = 226 ; - } -#Variance of surface pressure -'Pa**2' = { - table2Version = 162 ; - indicatorOfParameter = 227 ; - } -#Variance of relative humidity -'dimensionless' = { - table2Version = 162 ; - indicatorOfParameter = 229 ; - } -#Covariance of u component/ozone -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 230 ; - } -#Covariance of v component/ozone -'m s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 231 ; - } -#Covariance of omega/ozone -'Pa s**-1' = { - table2Version = 162 ; - indicatorOfParameter = 232 ; - } -#Variance of ozone -'dimensionless' = { - table2Version = 162 ; - indicatorOfParameter = 233 ; - } -#Indicates a missing value -'~' = { - table2Version = 162 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'m' = { - table2Version = 170 ; - indicatorOfParameter = 149 ; - } -#Soil wetness level 2 -'m' = { - table2Version = 170 ; - indicatorOfParameter = 171 ; - } -#Top net thermal radiation -'J m**-2' = { - table2Version = 170 ; - indicatorOfParameter = 179 ; - } -#Stream function anomaly -'m**2 s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 1 ; - } -#Velocity potential anomaly -'m**2 s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 2 ; - } -#Potential temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 3 ; - } -#Equivalent potential temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 4 ; - } -#Saturated equivalent potential temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 5 ; - } -#U component of divergent wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 11 ; - } -#V component of divergent wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 12 ; - } -#U component of rotational wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 13 ; - } -#V component of rotational wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 14 ; - } -#Unbalanced component of temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 22 ; - } -#Unbalanced component of divergence anomaly -'s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 23 ; - } -#Lake cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 26 ; - } -#Low vegetation cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 27 ; - } -#High vegetation cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 28 ; - } -#Type of low vegetation anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 29 ; - } -#Type of high vegetation anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 30 ; - } -#Sea-ice cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 31 ; - } -#Snow albedo anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 32 ; - } -#Snow density anomaly -'kg m**-3' = { - table2Version = 171 ; - indicatorOfParameter = 33 ; - } -#Sea surface temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 34 ; - } -#Ice surface temperature anomaly layer 1 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 35 ; - } -#Ice surface temperature anomaly layer 2 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 36 ; - } -#Ice surface temperature anomaly layer 3 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 37 ; - } -#Ice surface temperature anomaly layer 4 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 38 ; - } -#Volumetric soil water anomaly layer 1 -'m**3 m**-3' = { - table2Version = 171 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water anomaly layer 2 -'m**3 m**-3' = { - table2Version = 171 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water anomaly layer 3 -'m**3 m**-3' = { - table2Version = 171 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water anomaly layer 4 -'m**3 m**-3' = { - table2Version = 171 ; - indicatorOfParameter = 42 ; - } -#Soil type anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 43 ; - } -#Snow evaporation anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 45 ; - } -#Solar duration anomaly -'s' = { - table2Version = 171 ; - indicatorOfParameter = 46 ; - } -#Direct solar radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 48 ; - } -#10 metre wind gust anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 49 ; - } -#Large-scale precipitation fraction anomaly -'s' = { - table2Version = 171 ; - indicatorOfParameter = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 52 ; - } -#Montgomery potential anomaly -'m**2 s**-2' = { - table2Version = 171 ; - indicatorOfParameter = 53 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 171 ; - indicatorOfParameter = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 56 ; - } -#Downward UV radiation at the surface anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 58 ; - } -#Convective available potential energy anomaly -'J kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 59 ; - } -#Potential vorticity anomaly -'K m**2 kg**-1 s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 60 ; - } -#Total precipitation from observations anomaly -'Millimetres*100 + number of stations' = { - table2Version = 171 ; - indicatorOfParameter = 61 ; - } -#Observation count anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 62 ; - } -#Start time for skin temperature difference anomaly -'s' = { - table2Version = 171 ; - indicatorOfParameter = 63 ; - } -#Finish time for skin temperature difference anomaly -'s' = { - table2Version = 171 ; - indicatorOfParameter = 64 ; - } -#Skin temperature difference anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 65 ; - } -#Total column liquid water anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 78 ; - } -#Total column ice water anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 79 ; - } -#Vertically integrated total energy anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - table2Version = 171 ; - indicatorOfParameter = 126 ; - } -#Atmospheric tide anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 127 ; - } -#Budget values anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 128 ; - } -#Geopotential anomaly -'m**2 s**-2' = { - table2Version = 171 ; - indicatorOfParameter = 129 ; - } -#Temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 130 ; - } -#U component of wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 131 ; - } -#V component of wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 132 ; - } -#Specific humidity anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 133 ; - } -#Surface pressure anomaly -'Pa' = { - table2Version = 171 ; - indicatorOfParameter = 134 ; - } -#Vertical velocity (pressure) anomaly -'Pa s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 135 ; - } -#Total column water anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 136 ; - } -#Total column water vapour anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 137 ; - } -#Relative vorticity anomaly -'s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 138 ; - } -#Soil temperature anomaly level 1 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 139 ; - } -#Soil wetness anomaly level 1 -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 140 ; - } -#Snow depth anomaly -'m of water equivalent' = { - table2Version = 171 ; - indicatorOfParameter = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'m of water equivalent' = { - table2Version = 171 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 147 ; - } -#Charnock anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 148 ; - } -#Surface net radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 149 ; - } -#Top net radiation anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 150 ; - } -#Mean sea level pressure anomaly -'Pa' = { - table2Version = 171 ; - indicatorOfParameter = 151 ; - } -#Logarithm of surface pressure anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 152 ; - } -#Short-wave heating rate anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 154 ; - } -#Relative divergence anomaly -'s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 155 ; - } -#Height anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 156 ; - } -#Relative humidity anomaly -'%' = { - table2Version = 171 ; - indicatorOfParameter = 157 ; - } -#Tendency of surface pressure anomaly -'Pa s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 158 ; - } -#Boundary layer height anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 159 ; - } -#Standard deviation of orography anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 161 ; - } -#Angle of sub-gridscale orography anomaly -'radians' = { - table2Version = 171 ; - indicatorOfParameter = 162 ; - } -#Slope of sub-gridscale orography anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 163 ; - } -#Total cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 164 ; - } -#10 metre U wind component anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 166 ; - } -#2 metre temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 167 ; - } -#2 metre dewpoint temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 168 ; - } -#Surface solar radiation downwards anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 169 ; - } -#Soil temperature anomaly level 2 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 170 ; - } -#Soil wetness anomaly level 2 -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 171 ; - } -#Surface roughness anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 173 ; - } -#Albedo anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 174 ; - } -#Surface thermal radiation downwards anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomaly -'N m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomaly -'N m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 182 ; - } -#Soil temperature anomaly level 3 -'K' = { - table2Version = 171 ; - indicatorOfParameter = 183 ; - } -#Soil wetness anomaly level 3 -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 184 ; - } -#Convective cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 185 ; - } -#Low cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 186 ; - } -#Medium cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 187 ; - } -#High cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 188 ; - } -#Sunshine duration anomaly -'s' = { - table2Version = 171 ; - indicatorOfParameter = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'m**2' = { - table2Version = 171 ; - indicatorOfParameter = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'m**2' = { - table2Version = 171 ; - indicatorOfParameter = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'m**2' = { - table2Version = 171 ; - indicatorOfParameter = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'m**2' = { - table2Version = 171 ; - indicatorOfParameter = 193 ; - } -#Brightness temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 198 ; - } -#Vegetation fraction anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 199 ; - } -#Variance of sub-gridscale orography anomaly -'m**2' = { - table2Version = 171 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature at 2 metres anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 201 ; - } -#Minimum temperature at 2 metres anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 202 ; - } -#Ozone mass mixing ratio anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 203 ; - } -#Precipitation analysis weights anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 204 ; - } -#Runoff anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 205 ; - } -#Total column ozone anomaly -'kg m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 206 ; - } -#10 metre wind speed anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 207 ; - } -#Top net solar radiation clear sky anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation clear sky anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation clear sky anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 212 ; - } -#Diabatic heating by radiation anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 219 ; - } -#East-West gravity wave drag tendency anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 220 ; - } -#North-South gravity wave drag tendency anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 221 ; - } -#Convective tendency of zonal wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 222 ; - } -#Convective tendency of meridional wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion of humidity anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 226 ; - } -#Change from removal of negative humidity anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 227 ; - } -#Total precipitation anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 228 ; - } -#Instantaneous X surface stress anomaly -'N m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 229 ; - } -#Instantaneous Y surface stress anomaly -'N m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 230 ; - } -#Instantaneous surface heat flux anomaly -'J m**-2' = { - table2Version = 171 ; - indicatorOfParameter = 231 ; - } -#Instantaneous moisture flux anomaly -'kg m**-2 s' = { - table2Version = 171 ; - indicatorOfParameter = 232 ; - } -#Apparent surface humidity anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 234 ; - } -#Skin temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 235 ; - } -#Soil temperature level 4 anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 236 ; - } -#Soil wetness level 4 anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 237 ; - } -#Temperature of snow layer anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 238 ; - } -#Convective snowfall anomaly -'m of water equivalent' = { - table2Version = 171 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent' = { - table2Version = 171 ; - indicatorOfParameter = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'(-1 to 1)' = { - table2Version = 171 ; - indicatorOfParameter = 241 ; - } -#Accumulated liquid water tendency anomaly -'(-1 to 1)' = { - table2Version = 171 ; - indicatorOfParameter = 242 ; - } -#Forecast albedo anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 243 ; - } -#Forecast surface roughness anomaly -'m' = { - table2Version = 171 ; - indicatorOfParameter = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'~' = { - table2Version = 171 ; - indicatorOfParameter = 245 ; - } -#Cloud liquid water content anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 246 ; - } -#Cloud ice water content anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 247 ; - } -#Cloud cover anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 248 ; - } -#Accumulated ice water tendency anomaly -'(-1 to 1)' = { - table2Version = 171 ; - indicatorOfParameter = 249 ; - } -#Ice age anomaly -'(0 - 1)' = { - table2Version = 171 ; - indicatorOfParameter = 250 ; - } -#Adiabatic tendency of temperature anomaly -'K' = { - table2Version = 171 ; - indicatorOfParameter = 251 ; - } -#Adiabatic tendency of humidity anomaly -'kg kg**-1' = { - table2Version = 171 ; - indicatorOfParameter = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'m s**-1' = { - table2Version = 171 ; - indicatorOfParameter = 254 ; - } -#Indicates a missing value -'~' = { - table2Version = 171 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation -'m of water s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 44 ; - } -#Snowmelt -'m of water s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress -'N m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 48 ; - } -#Mean large-scale precipitation fraction -'~' = { - table2Version = 172 ; - indicatorOfParameter = 50 ; - } -#Mean large-scale precipitation rate -'m s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate -'m s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 143 ; - } -#Mean total snowfall rate -'m of water equivalent s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 145 ; - } -#Mean surface sensible heat flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 146 ; - } -#Mean surface latent heat flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 147 ; - } -#Mean surface net radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 149 ; - } -#Mean short-wave heating rate -'K s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 153 ; - } -#Mean long-wave heating rate -'K s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 154 ; - } -#Mean surface downward solar radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 169 ; - } -#Mean surface downward thermal radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 175 ; - } -#Mean surface net solar radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 176 ; - } -#Mean surface net thermal radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 177 ; - } -#Mean top net solar radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 178 ; - } -#Mean top net thermal radiation flux -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress rate of accumulation -'N m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress rate of accumulation -'N m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 181 ; - } -#Evaporation -'m of water s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 182 ; - } -#Mean sunshine duration rate -'s s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress -'N m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress -'N m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 197 ; - } -#Mean runoff rate -'m s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 211 ; - } -#Solar insolation rate of accumulation -'W m**-2' = { - table2Version = 172 ; - indicatorOfParameter = 212 ; - } -#Mean total precipitation rate -'m s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall -'m of water equivalent s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall -'m of water equivalent s**-1' = { - table2Version = 172 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'~' = { - table2Version = 172 ; - indicatorOfParameter = 255 ; - } -#Snow evaporation anomaly -'m of water s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 44 ; - } -#Snowmelt anomaly -'m of water s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - table2Version = 173 ; - indicatorOfParameter = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'m s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 142 ; - } -#Mean convective precipitation rate anomaly -'m s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'m of water equivalent s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 147 ; - } -#Surface net radiation anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 149 ; - } -#Short-wave heating rate anomaly -'K s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 153 ; - } -#Long-wave heating rate anomaly -'K s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'N m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'N m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 181 ; - } -#Evaporation anomalous rate of accumulation -'m of water s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'dimensionless' = { - table2Version = 173 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 197 ; - } -#Runoff anomalous rate of accumulation -'m s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - table2Version = 173 ; - indicatorOfParameter = 211 ; - } -#Solar insolation anomalous rate of accumulation -'W m**-2 s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 212 ; - } -#Total precipitation anomalous rate of accumulation -'m s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 228 ; - } -#Convective snowfall anomaly -'m of water equivalent s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent s**-1' = { - table2Version = 173 ; - indicatorOfParameter = 240 ; - } -#Indicates a missing value -'~' = { - table2Version = 173 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'m' = { - table2Version = 174 ; - indicatorOfParameter = 6 ; - } -#Surface runoff -'kg m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 8 ; - } -#Sub-surface runoff -'kg m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 9 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'K' = { - table2Version = 174 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - table2Version = 174 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - table2Version = 174 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - table2Version = 174 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - table2Version = 174 ; - indicatorOfParameter = 42 ; - } -#10 metre wind gust in the last 24 hours -'m s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - table2Version = 174 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'m s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'m s**-1' = { - table2Version = 174 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'K' = { - table2Version = 174 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - table2Version = 174 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - table2Version = 174 ; - indicatorOfParameter = 90 ; - } -#Mean sea surface temperature -'K' = { - table2Version = 174 ; - indicatorOfParameter = 94 ; - } -#1.5m specific humidity -'kg kg**-1' = { - table2Version = 174 ; - indicatorOfParameter = 95 ; - } -#Sea-ice thickness -'m' = { - table2Version = 174 ; - indicatorOfParameter = 98 ; - } -#Liquid water potential temperature -'K' = { - table2Version = 174 ; - indicatorOfParameter = 99 ; - } -#Ocean ice concentration -'(0 - 1)' = { - table2Version = 174 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'m' = { - table2Version = 174 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'K' = { - table2Version = 174 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - table2Version = 174 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'K' = { - table2Version = 174 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'K' = { - table2Version = 174 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'K' = { - table2Version = 174 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - table2Version = 174 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'K' = { - table2Version = 174 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - table2Version = 174 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - table2Version = 174 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'K' = { - table2Version = 174 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'~' = { - table2Version = 174 ; - indicatorOfParameter = 255 ; - } -#Total soil moisture -'m' = { - table2Version = 175 ; - indicatorOfParameter = 6 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - table2Version = 175 ; - indicatorOfParameter = 31 ; - } -#Open-sea surface temperature -'K' = { - table2Version = 175 ; - indicatorOfParameter = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - table2Version = 175 ; - indicatorOfParameter = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - table2Version = 175 ; - indicatorOfParameter = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - table2Version = 175 ; - indicatorOfParameter = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - table2Version = 175 ; - indicatorOfParameter = 42 ; - } -#10m wind gust in the last 24 hours -'m s**-1' = { - table2Version = 175 ; - indicatorOfParameter = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - table2Version = 175 ; - indicatorOfParameter = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - table2Version = 175 ; - indicatorOfParameter = 83 ; - } -#10m U wind over land -'m s**-1' = { - table2Version = 175 ; - indicatorOfParameter = 85 ; - } -#10m V wind over land -'m s**-1' = { - table2Version = 175 ; - indicatorOfParameter = 86 ; - } -#1.5m temperature over land -'K' = { - table2Version = 175 ; - indicatorOfParameter = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - table2Version = 175 ; - indicatorOfParameter = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - table2Version = 175 ; - indicatorOfParameter = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - table2Version = 175 ; - indicatorOfParameter = 90 ; - } -#Ocean ice concentration -'(0 - 1)' = { - table2Version = 175 ; - indicatorOfParameter = 110 ; - } -#Ocean mean ice depth -'m' = { - table2Version = 175 ; - indicatorOfParameter = 111 ; - } -#Soil temperature layer 1 -'K' = { - table2Version = 175 ; - indicatorOfParameter = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - table2Version = 175 ; - indicatorOfParameter = 164 ; - } -#1.5m temperature -'K' = { - table2Version = 175 ; - indicatorOfParameter = 167 ; - } -#1.5m dewpoint temperature -'K' = { - table2Version = 175 ; - indicatorOfParameter = 168 ; - } -#Soil temperature layer 2 -'K' = { - table2Version = 175 ; - indicatorOfParameter = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - table2Version = 175 ; - indicatorOfParameter = 175 ; - } -#Soil temperature layer 3 -'K' = { - table2Version = 175 ; - indicatorOfParameter = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - table2Version = 175 ; - indicatorOfParameter = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - table2Version = 175 ; - indicatorOfParameter = 202 ; - } -#Soil temperature layer 4 -'K' = { - table2Version = 175 ; - indicatorOfParameter = 236 ; - } -#Indicates a missing value -'~' = { - table2Version = 175 ; - indicatorOfParameter = 255 ; - } -#Total soil wetness -'m' = { - table2Version = 180 ; - indicatorOfParameter = 149 ; - } -#Surface net solar radiation -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation -'J m**-2' = { - table2Version = 180 ; - indicatorOfParameter = 179 ; - } -#Snow depth -'kg m**-2' = { - table2Version = 190 ; - indicatorOfParameter = 141 ; - } -#Field capacity -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 171 ; - } -#Roughness length -'(0 - 1)' = { - table2Version = 190 ; - indicatorOfParameter = 173 ; - } -#Total soil moisture -'m**3 m**-3' = { - table2Version = 190 ; - indicatorOfParameter = 229 ; - } -#2 metre dewpoint temperature difference -'K' = { - table2Version = 200 ; - indicatorOfParameter = 168 ; - } -#downward shortwave radiant flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 1 ; - } -#upward shortwave radiant flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 2 ; - } -#downward longwave radiant flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 3 ; - } -#upward longwave radiant flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 4 ; - } -#downwd photosynthetic active radiant flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - } -#net shortwave flux -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 6 ; - } -#net longwave flux -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 7 ; - } -#total net radiative flux density -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 9 ; - } -#upw shortw radiant flux density, cloudy part -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 10 ; - } -#downw longw radiant flux density, cloudfree part -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 11 ; - } -#upw longw radiant flux density, cloudy part -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 12 ; - } -#shortwave radiative heating rate -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } -#longwave radiative heating rate -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } -#total radiative heating rate -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 15 ; - } -#soil heat flux, surface -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 16 ; - } -#soil heat flux, bottom of layer -'J m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 17 ; - } -#fractional cloud cover -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } -#cloud cover, grid scale -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } -#specific cloud water content -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } -#cloud water content, grid scale, vert integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 32 ; - } -#specific cloud ice content, grid scale -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } -#cloud ice content, grid scale, vert integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 34 ; - } -#specific rainwater content, grid scale -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } -#specific snow content, grid scale -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } -#specific rainwater content, gs, vert. integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } -#specific snow content, gs, vert. integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } -#total column water -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } -#vert. integral of divergence of tot. water content -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 50 ; - } -#cloud cover CH (0..8) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } -#cloud cover CM (0..8) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } -#cloud cover CL (0..8) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } -#total cloud cover (0..8) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 54 ; - } -#fog (0..8) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 55 ; - } -#fog -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 56 ; - } -#cloud cover, convective cirrus -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 60 ; - } -#specific cloud water content, convective clouds -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } -#cloud water content, conv clouds, vert integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 62 ; - } -#specific cloud ice content, convective clouds -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 64 ; - } -#convective mass flux -'kg s**-1 m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 65 ; - } -#Updraft velocity, convection -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 66 ; - } -#entrainment parameter, convection -'m**-1' = { - table2Version = 201 ; - indicatorOfParameter = 67 ; - } -#cloud base, convective clouds (above msl) -'m' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - } -#cloud top, convective clouds (above msl) -'m' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - } -#convective layers (00...77) (BKE) -'(0 - 1)' = { - table2Version = 201 ; - indicatorOfParameter = 70 ; - } -#KO-index -'dimensionless' = { - table2Version = 201 ; - indicatorOfParameter = 71 ; - } -#convection base index -'dimensionless' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - } -#convection top index -'dimensionless' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - } -#convective temperature tendency -'K s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } -#convective tendency of specific humidity -'s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } -#convective tendency of total heat -'J kg**-1 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 76 ; - } -#convective tendency of total water -'s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 77 ; - } -#convective momentum tendency (X-component) -'m s**-2' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } -#convective momentum tendency (Y-component) -'m s**-2' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } -#convective vorticity tendency -'s**-2' = { - table2Version = 201 ; - indicatorOfParameter = 80 ; - } -#convective divergence tendency -'s**-2' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#top of dry convection (above msl) -'m' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - } -#dry convection top index -'dimensionless' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'m' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - } -#height of snow-fall limit -'m' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - } -#spec. content of precip. particles -'kg kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } -#surface precipitation rate, rain, grid scale -'kg s**-1 m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } -#surface precipitation rate, snow, grid scale -'kg s**-1 m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } -#surface precipitation amount, rain, grid scale -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } -#surface precipitation rate, rain, convective -'kg s**-1 m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } -#surface precipitation rate, snow, convective -'kg s**-1 m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } -#surface precipitation amount, rain, convective -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } -#deviation of pressure from reference value -'Pa' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } -#coefficient of horizontal diffusion -'m**2 s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 150 ; - } -#Maximum wind velocity -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - } -#water content of interception store -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } -#snow temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } -#ice surface temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } -#convective available potential energy -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } -#Indicates a missing value -'~' = { - table2Version = 201 ; - indicatorOfParameter = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } -#SO2 precursor mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - table2Version = 210 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'%' = { - table2Version = 210 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 61 ; - } -#Methane -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 63 ; - } -#CO2 column-mean molar fraction -'ppm' = { - table2Version = 210 ; - indicatorOfParameter = 64 ; - } -#CH4 column-mean molar fraction -'ppb' = { - table2Version = 210 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - table2Version = 210 ; - indicatorOfParameter = 97 ; - } -#Number of positive FRP pixels per grid cell -'~' = { - table2Version = 210 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 166 ; - } -#Radon -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - table2Version = 210 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - table2Version = 210 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - table2Version = 210 ; - indicatorOfParameter = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 11 ; - } -#Aerosol type 12 mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - table2Version = 211 ; - indicatorOfParameter = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 53 ; - } -#Soil clay content -'%' = { - table2Version = 211 ; - indicatorOfParameter = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 61 ; - } -#Methane -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 63 ; - } -#Total column Carbon Dioxide -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 64 ; - } -#Total column Methane -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 71 ; - } -#Wildfire flux of Carbon Dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 80 ; - } -#Wildfire flux of Carbon Monoxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 81 ; - } -#Wildfire flux of Methane -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 83 ; - } -#Wildfire flux of Hydrogen -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 85 ; - } -#Wildfire flux of Nitrous Oxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 87 ; - } -#Wildfire flux of Total Particulate Matter -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 89 ; - } -#Wildfire flux of Organic Carbon -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 90 ; - } -#Wildfire flux of Black Carbon -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 91 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - table2Version = 211 ; - indicatorOfParameter = 97 ; - } -#Wildfire observed area -'m**2' = { - table2Version = 211 ; - indicatorOfParameter = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 166 ; - } -#Radon -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 182 ; - } -#Total column Radon -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - table2Version = 211 ; - indicatorOfParameter = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - table2Version = 211 ; - indicatorOfParameter = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - table2Version = 211 ; - indicatorOfParameter = 216 ; - } -#Total precipitation observation count -'dimensionless' = { - table2Version = 220 ; - indicatorOfParameter = 228 ; - } -#Convective inhibition -'J kg**-1' = { - table2Version = 228 ; - indicatorOfParameter = 1 ; - } -#Orography -'m' = { - table2Version = 228 ; - indicatorOfParameter = 2 ; - } -#Friction velocity -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 3 ; - } -#Mean temperature at 2 metres -'K' = { - table2Version = 228 ; - indicatorOfParameter = 4 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 5 ; - } -#Mean total cloud cover -'(0 - 1)' = { - table2Version = 228 ; - indicatorOfParameter = 6 ; - } -#Lake depth -'m' = { - table2Version = 228 ; - indicatorOfParameter = 7 ; - } -#Lake mix-layer temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 8 ; - } -#Lake mix-layer depth -'m' = { - table2Version = 228 ; - indicatorOfParameter = 9 ; - } -#Lake bottom temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 10 ; - } -#Lake total layer temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 11 ; - } -#Lake shape factor -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 12 ; - } -#Lake ice temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 13 ; - } -#Lake ice depth -'m' = { - table2Version = 228 ; - indicatorOfParameter = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'m**-1' = { - table2Version = 228 ; - indicatorOfParameter = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'m**-1' = { - table2Version = 228 ; - indicatorOfParameter = 16 ; - } -#Duct base height -'m' = { - table2Version = 228 ; - indicatorOfParameter = 17 ; - } -#Trapping layer base height -'m' = { - table2Version = 228 ; - indicatorOfParameter = 18 ; - } -#Trapping layer top height -'m' = { - table2Version = 228 ; - indicatorOfParameter = 19 ; - } -#Soil Moisture -'kg m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 39 ; - } -#Neutral wind at 10 m u-component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 131 ; - } -#Neutral wind at 10 m v-component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 132 ; - } -#Soil Temperature -'K' = { - table2Version = 228 ; - indicatorOfParameter = 139 ; - } -#Snow depth water equivalent -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 141 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 144 ; - } -#Total Cloud Cover -'%' = { - table2Version = 228 ; - indicatorOfParameter = 164 ; - } -#Field capacity -'kg m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 170 ; - } -#Wilting point -'kg m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 171 ; - } -#Total Precipitation -'kg m**-2' = { - table2Version = 228 ; - indicatorOfParameter = 228 ; - } -#Snow evaporation (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 44 ; - } -#Snowmelt (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 45 ; - } -#Solar duration (variable resolution) -'s' = { - table2Version = 230 ; - indicatorOfParameter = 46 ; - } -#Downward UV radiation at the surface (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 57 ; - } -#Photosynthetically active radiation at the surface (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 58 ; - } -#Stratiform precipitation (Large-scale precipitation) (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 142 ; - } -#Convective precipitation (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 143 ; - } -#Snowfall (convective + stratiform) (variable resolution) -'m of water equivalent' = { - table2Version = 230 ; - indicatorOfParameter = 144 ; - } -#Boundary layer dissipation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 145 ; - } -#Surface sensible heat flux (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 146 ; - } -#Surface latent heat flux (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 147 ; - } -#Surface solar radiation downwards (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 169 ; - } -#Surface thermal radiation downwards (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 175 ; - } -#Surface net solar radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 176 ; - } -#Surface net thermal radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 177 ; - } -#Top net solar radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 178 ; - } -#Top net thermal radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 179 ; - } -#East-West surface stress (variable resolution) -'N m**-2 s' = { - table2Version = 230 ; - indicatorOfParameter = 180 ; - } -#North-South surface stress (variable resolution) -'N m**-2 s' = { - table2Version = 230 ; - indicatorOfParameter = 181 ; - } -#Evaporation (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 182 ; - } -#Sunshine duration (variable resolution) -'s' = { - table2Version = 230 ; - indicatorOfParameter = 189 ; - } -#Longitudinal component of gravity wave stress (variable resolution) -'N m**-2 s' = { - table2Version = 230 ; - indicatorOfParameter = 195 ; - } -#Meridional component of gravity wave stress (variable resolution) -'N m**-2 s' = { - table2Version = 230 ; - indicatorOfParameter = 196 ; - } -#Gravity wave dissipation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 197 ; - } -#Skin reservoir content (variable resolution) -'kg m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 198 ; - } -#Runoff (variable resolution) -'m' = { - table2Version = 230 ; - indicatorOfParameter = 205 ; - } -#Top net solar radiation, clear sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 208 ; - } -#Top net thermal radiation, clear sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 209 ; - } -#Surface net solar radiation, clear sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 210 ; - } -#Surface net thermal radiation, clear sky (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 211 ; - } -#TOA incident solar radiation (variable resolution) -'J m**-2' = { - table2Version = 230 ; - indicatorOfParameter = 212 ; - } -#Surface temperature significance -'%' = { - table2Version = 234 ; - indicatorOfParameter = 139 ; - } -#Mean sea level pressure significance -'%' = { - table2Version = 234 ; - indicatorOfParameter = 151 ; - } -#2 metre temperature significance -'%' = { - table2Version = 234 ; - indicatorOfParameter = 167 ; - } -#Total precipitation significance -'%' = { - table2Version = 234 ; - indicatorOfParameter = 228 ; - } -#U-component stokes drift -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 215 ; - } -#V-component stokes drift -'m s**-1' = { - table2Version = 140 ; - indicatorOfParameter = 216 ; - } -#Wildfire radiative power maximum -'W' = { - table2Version = 210 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'kg m**-2 s**-1' = { - table2Version = 210 ; - indicatorOfParameter = 117 ; - } -#Wildfire radiative power maximum -'W' = { - table2Version = 211 ; - indicatorOfParameter = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'kg m**-2 s**-1' = { - table2Version = 211 ; - indicatorOfParameter = 117 ; - } -#V-tendency from non-orographic wave drag -'m s**-2' = { - table2Version = 228 ; - indicatorOfParameter = 134 ; - } -#U-tendency from non-orographic wave drag -'m s**-2' = { - table2Version = 228 ; - indicatorOfParameter = 136 ; - } -#100 metre U wind component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 246 ; - } -#100 metre V wind component -'m s**-1' = { - table2Version = 228 ; - indicatorOfParameter = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'m**3 m**-3' = { - table2Version = 228 ; - indicatorOfParameter = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'dimensionless' = { - table2Version = 228 ; - indicatorOfParameter = 254 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/name.def b/eccodes/definitions.save/grib1/localConcepts/edzw/name.def deleted file mode 100755 index 47f2c21a..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/name.def +++ /dev/null @@ -1,8992 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500001 -#Pressure -'Pressure' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'Pressure Tendency (S)' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'Geopotential (S)' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'Geopotential (full lev)' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500006 -#Geopotential -'Geopotential' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'Geometric Height of the earths surface above sea level' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'Geometric Height of the layer limits above sea level(NN)' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500010 -#Temperature (G) -'Temperature (G)' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500011 -#2m Temperature -'2m Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'2m Temperature (AV)' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'Climat. temperature, 2m Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500014 -#Temperature -'Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'Max 2m Temperature (i)' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'Min 2m Temperature (i)' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'2m Dew Point Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'2m Dew Point Temperature (AV)' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500020 -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500021 -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500022 -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'Wind Direction (DD_10M)' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'Wind Direction (DD)' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'Wind speed (SP_10M)' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'Wind speed (SP)' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500027 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500029 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'Vertical Velocity (Geometric) (w)' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'Specific Humidity (2m)' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'Specific Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500036 -#2m Relative Humidity -'2m Relative Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'Relative Humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'Total column integrated water vapour' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500039 -#Evaporation (s) -'Evaporation (s)' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'Total Column-Integrated Cloud Ice' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'Total Precipitation (Accumulation)' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'Large-Scale Precipitation (Accumulation)' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'Convective Precipitation (Accumulation)' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500045 -#Snow Depth -'Snow Depth' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500046 -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'Convective Cloud Cover' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'Convective Snowfall water equivalent (s)' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'Large-Scale snowfall - water equivalent (Accumulation)' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'Albedo (in short-wave, average)' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'Soil Temperature ( 36 cm depth, vv=0h)' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'Soil Temperature (41 cm depth)' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; - bottomLevel = 190 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'Column-integrated Soil Moisture (1) 0 -10 cm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'Column-integrated Soil Moisture (2) 10-100cm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } - -#paramId: 500065 -#Plant cover -'Plant cover' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500066 -#Water Runoff -'Water Runoff' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'Water Runoff (s)' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'Sea Ice Thickness' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500072 -#Direction of wind waves -'Direction of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500073 -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500074 -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500075 -#Mean direction of total swell -'Mean direction of total swell' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500076 -#Significant height of total swell -'Significant height of total swell' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500077 -#Mean period of total swell -'Mean period of total swell' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'Net short wave radiation flux (on the model top)' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'Net long wave radiation flux (m) (on the model top)' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'Photosynthetically active radiation (m) (at the surface)' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'Solar radiation heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'Thermal radiation heating rate' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'Latent heat flux from bare soil' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'Latent heat flux from plants' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500096 -#Sunshine duration in h -'Sunshine duration in h' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500097 -#Stomatal Resistance -'Stomatal Resistance' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500098 -#Cloud cover -'Cloud cover' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'Non-Convective Cloud Cover, grid scale' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'Cloud Mixing Ratio' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'Cloud Ice Mixing Ratio' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500102 -#Rain mixing ratio -'Rain mixing ratio' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500103 -#Snow mixing ratio -'Snow mixing ratio' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500104 -#Total column integrated rain -'Total column integrated rain' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500105 -#Total column integrated snow -'Total column integrated snow' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500106 -#Grauple -'Grauple' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500107 -#Total column integrated grauple -'Total column integrated grauple' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'Total Column integrated water (all components incl. precipitation)' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500109 -#vertical integral of divergence of total water content (s) -'vertical integral of divergence of total water content (s)' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500110 -#subgrid scale cloud water -'subgrid scale cloud water' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500111 -#subgridscale cloud ice -'subgridscale cloud ice' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500112 -#cloud cover CH (0..8) -'cloud cover CH (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500113 -#cloud cover CM (0..8) -'cloud cover CM (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500114 -#cloud cover CL (0..8) -'cloud cover CL (0..8)' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500115 -#cloud base above msl, shallow convection -'cloud base above msl, shallow convection' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500116 -#Cloud top above msl, shallow convection -'Cloud top above msl, shallow convection' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500117 -#specific cloud water content, convective cloud -'specific cloud water content, convective cloud' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'Height of Convective Cloud Base above msl' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'Height of Convective Cloud Top above msl' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500120 -#base index (vertical level) of main convective cloud (i) -'base index (vertical level) of main convective cloud (i)' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500121 -#top index (vertical level) of main convective cloud (i) -'top index (vertical level) of main convective cloud (i)' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'Temperature tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'Specific humidity tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500124 -#zonal wind tendency due to convection -'zonal wind tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500125 -#meridional wind tendency due to convection -'meridional wind tendency due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'Height of top of dry convection above MSL' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'Height of 0 degree Celsius isotherm above msl' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'Height of snow fall limit above MSL' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'Tendency of specific cloud liquid water content due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500130 -#tendency of specific cloud ice content due to convection -'tendency of specific cloud ice content due to convection' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'Specific content of precipitation particles (needed for water loading)' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500132 -#Large scale rain rate -'Large scale rain rate' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'Large scale rain (Accumulation)' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500135 -#Convective rain rate -'Convective rain rate' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500137 -#Convective rain -'Convective rain' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'rain amount, grid-scale plus convective' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'snow amount, grid-scale plus convective' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipation -'Temperature tendency due to grid scale precipation' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'Specific humidity tendency due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation -'tendency of specific cloud liquid water content due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation -'tendency of specific cloud ice content due to grid scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'Graupel (snow pellets) precipitation (Accumulation)' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500147 -#Snow density -'Snow density' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500148 -#Pressure perturbation -'Pressure perturbation' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) -'supercell detection index 1 (rot. up+down drafts)' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500150 -#supercell detection index 2 (only rot. up drafts) -'supercell detection index 2 (only rot. up drafts)' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'Convective Available Potential Energy, most unstable' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'Convective Inhibition, most unstable' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'Convective Available Potential Energy, mean layer' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'Convective Inhibition, mean layer' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'Convective turbulent kinetic enery' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'Tendency of turbulent kinetic energy' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500157 -#Kinetic Energy -'Kinetic Energy' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'Turbulent diffusioncoefficient for momentum' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'Turbulent diffusion coefficient for heat (and moisture)' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'Turbulent transfer coefficient for impulse' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'Turbulent transfer coefficient for heat (and Moisture)' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500163 -#mixed layer depth -'mixed layer depth' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500164 -#maximum Wind 10m -'maximum Wind 10m' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'Soil Temperature (multilayer model)' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'Column-integrated Soil Moisture (multilayers)' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'soil ice content (multilayers)' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'Plant Canopy Surface Water' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'Snow temperature (top of snow)' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'Minimal Stomatal Resistance' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'Sea Ice Temperature' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500173 -#Base reflectivity -'Base reflectivity' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'Base reflectivity' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'Base reflectivity (cmax)' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } - -#paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart -'solution of 2-d Helmholtz equations - needed for restart' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'Effective transmissivity of solar radiation' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500178 -#sum of contributions to evaporation -'sum of contributions to evaporation' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500179 -#total transpiration from all soil layers -'total transpiration from all soil layers' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500180 -#total forcing at soil surface -'total forcing at soil surface' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500181 -#residuum of soil moisture -'residuum of soil moisture' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500182 -#Massflux at convective cloud base -'Massflux at convective cloud base' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'Convective Available Potential Energy' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500184 -#moisture convergence for Kuo-type closure -'moisture convergence for Kuo-type closure' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500185 -#Total Wave Direction -'Total Wave Direction' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500187 -#Peak period of total swell -'Peak period of total swell' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500189 -#Swell peak period -'Swell peak period' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500190 -#Total wave peak period -'Total wave peak period' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500191 -#Total wave mean period -'Total wave mean period' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500192 -#Total Tm1 period -'Total Tm1 period' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500193 -#Total Tm2 period -'Total Tm2 period' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500194 -#Total directional spread -'Total directional spread' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) -'analysis error(standard deviation), geopotential(gpm)' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'analysis error(standard deviation), u-comp. of wind' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'analysis error(standard deviation), v-comp. of wind' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500198 -#zonal wind tendency due to subgrid scale oro. -'zonal wind tendency due to subgrid scale oro.' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500199 -#meridional wind tendency due to subgrid scale oro. -'meridional wind tendency due to subgrid scale oro.' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500204 -#surface emissivity -'surface emissivity' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500205 -#soil type of grid (1...9, local soilType.table) -'soil type of grid (1...9, local soilType.table)' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500206 -#Leaf area index -'Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500207 -#root depth of vegetation -'root depth of vegetation' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500208 -#height of ozone maximum (climatological) -'height of ozone maximum (climatological)' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500209 -#vertically integrated ozone content (climatological) -'vertically integrated ozone content (climatological)' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'Plant covering degree in the vegetation phase' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'Plant covering degree in the quiescent phas' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500212 -#Max Leaf area index -'Max Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500213 -#Min Leaf area index -'Min Leaf area index' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'Orographie + Land-Meer-Verteilung' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500215 -#variance of soil moisture content (0-10) -'variance of soil moisture content (0-10)' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500216 -#variance of soil moisture content (10-100) -'variance of soil moisture content (10-100)' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500217 -#evergreen forest -'evergreen forest' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500218 -#deciduous forest -'deciduous forest' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'normalized differential vegetation index' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'normalized differential vegetation index (NDVI)' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500222 -#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'Total sulfate aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'Total sulfate aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'Total soil dust aerosol (climatology)' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'Total soil dust aerosol (climatology,12M)' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500227 -#Organic aerosol -'Organic aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'Organic aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500229 -#Black carbon aerosol -'Black carbon aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'Black carbon aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500231 -#Sea salt aerosol -'Sea salt aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'Sea salt aerosol (12M)' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500233 -#tendency of specific humidity -'tendency of specific humidity' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500234 -#water vapor flux -'water vapor flux' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500235 -#Coriolis parameter -'Coriolis parameter' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500236 -#geographical latitude -'geographical latitude' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500237 -#geographical longitude -'geographical longitude' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500239 -#Delay of the GPS signal trough the (total) atm. -'Delay of the GPS signal trough the (total) atm.' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500240 -#Delay of the GPS signal trough wet atmos. -'Delay of the GPS signal trough wet atmos.' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500241 -#Delay of the GPS signal trough dry atmos. -'Delay of the GPS signal trough dry atmos.' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'Ozone Mixing Ratio' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Air concentration of Ruthenium 103' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Ru103 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Ru103 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Air concentration of Strontium 90' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Sr90 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Sr90 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'Air concentration of Iodine 131 aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500250 -#I131 - dry deposition -'I131 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500251 -#I131 - wet deposition -'I131 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Air concentration of Caesium 137' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Cs137 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Air concentration of Tellurium 132' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Te132 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Te132 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Air concentration of Zirconium 95' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Zr95 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Zr95 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Air concentration of Krypton 85' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Kr85 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Kr85 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500264 -#TRACER - concentration -'TRACER - concentration' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'TRACER - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'TRACER - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Air concentration of Xenon 133' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Xe133 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'Air concentration of Iodine 131 elementary gaseous' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500271 -#I131g - dry deposition -'I131g - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500272 -#I131g - wet deposition -'I131g - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'Air concentration of Iodine 131 organic bounded' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500274 -#I131o - dry deposition -'I131o - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500275 -#I131o - wet deposition -'I131o - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Air concentration of Barium 140' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Ba140 - dry deposition' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Ba140 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500279 -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500280 -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500281 -#v-momentum flux due to SSO-effects (average) -'v-momentum flux due to SSO-effects (average)' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500282 -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500283 -#Gravity wave dissipation (initialisation) -'Gravity wave dissipation (initialisation)' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'UV Index, clouded sky, maximum' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500286 -#Vertical speed shear -'Vertical speed shear' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500287 -#storm relative helicity -'storm relative helicity' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'Absolute vorticity advection' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) -'Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab)' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'Hoehe der Konvektionsuntergrenze ueber Grund' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'Hoehe der Konvektionsuntergrenze ueber nn' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'weather interpretation (WMO)' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'geostrophische Vorticityadvektion' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500294 -#geostrophische Schichtdickenadvektion -'geostrophische Schichtdickenadvektion' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'Schichtdickenadvektion' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500296 -#Winddivergenz -'Winddivergenz' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'Q-Vektor senkrecht zu den Isothermen' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'Isentrope potentielle Vorticity' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'Wind X-Komponente auf isentropen Flaechen' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'Wind Y-Komponente auf isentropen Flaechen' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'Druck einer isentropen Flaeche' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500302 -#KO index -'KO index' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'Aequivalentpotentielle Temperatur' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500304 -#Ceiling -'Ceiling' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Icing Grade (1=LGT,2=MOD,3=SEV)' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500306 -#modified cloud depth for media -'modified cloud depth for media' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500307 -#modified cloud cover for media -'modified cloud cover for media' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'Monthly Mean of RMS of difference FG-AN of geopotential' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'Monthly Mean of RMS of difference IA-AN of geopotential' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'Monthly Mean of RMS of difference FG-AN of relative humidity' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'Monthly Mean of RMS of difference IA-AN of relative humidity' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'Monthly Mean of RMS of difference FG-AN of temperature' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'Monthly Mean of RMS of difference IA-AN of temperature' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500322 -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500323 -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'smoothed forecast, temperature' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'smoothed forecast, maximum temp.' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'smoothed forecast, minimum temp.' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'smoothed forecast, dew point temp.' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'smoothed forecast, u comp. of wind' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'smoothed forecast, v comp. of wind' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'smoothed forecast, total precipitation (Accumulation)' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'smoothed forecast, total cloud cover' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'smoothed forecast, cloud cover low' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'smoothed forecast, cloud cover medium' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'smoothed forecast, cloud cover high' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'smoothed forecast, large-scale snowfall' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'smoothed forecast, soil temperature' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'smoothed forecast, wind speed (gust)' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'calibrated forecast, total precipitation (Accumulation)' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'calibrated forecast, large-scale snowfall' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'calibrated forecast, wind speed (gust)' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'Total Precipitation Difference' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500402 -#Max 2m Temperature long periods > h -'Max 2m Temperature long periods > h' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500403 -#Min 2m Temperature long periods > h -'Min 2m Temperature long periods > h' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500404 -#Total Precipitation (Accumulation) Initialisation -'Total Precipitation (Accumulation) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500408 -#Large scale rain (Accumulation) Initialisation -'Large scale rain (Accumulation) Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500409 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'Large-Scale snowfall - water equivalent (Accumulation) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500410 -#Convective rain Initialisation -'Convective rain Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500411 -#Convective Snowfall water equivalent (s) Initialisation -'Convective Snowfall water equivalent (s) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500412 -#maximum Wind 10m Initialisation -'maximum Wind 10m Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 10 ; - } - -#paramId: 500416 -#Evaporation (s) Initialisation -'Evaporation (s) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500417 -#Max 2m Temperature (i) Initialisation -'Max 2m Temperature (i) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500418 -#Min 2m Temperature (i) Initialisation -'Min 2m Temperature (i) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'Net long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500423 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'Large-Scale snowfall - water equivalent (Accumulation) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500424 -#Convective Snowfall water equivalent (s) Initialisation -'Convective Snowfall water equivalent (s) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500425 -#Total Precipitation (Accumulation) Initialisation -'Total Precipitation (Accumulation) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500428 -#Latent Heat Net Flux (m) Initialisation -'Latent Heat Net Flux (m) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500429 -#Sensible Heat Net Flux (m) Initialisation -'Sensible Heat Net Flux (m) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500430 -#Momentum Flux, U-Component (m) Initialisation -'Momentum Flux, U-Component (m) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500431 -#Momentum Flux, V-Component (m) Initialisation -'Momentum Flux, V-Component (m) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500432 -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500433 -#Large scale rain (Accumulation) Initialisation -'Large scale rain (Accumulation) Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500434 -#Convective rain Initialisation -'Convective rain Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500436 -#Graupel (snow pellets) precipitation (Initialisation) -'Graupel (snow pellets) precipitation (Initialisation)' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'Probability of 1h total precipitation >= 10mm' = { - table2Version = 208 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'Probability of 1h total precipitation >= 25mm' = { - table2Version = 208 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'Probability of 6h total precipitation >= 20mm' = { - table2Version = 208 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'Probability of 6h total precipitation >= 35mm' = { - table2Version = 208 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'Probability of 12h total precipitation >= 25mm' = { - table2Version = 208 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'Probability of 12h total precipitation >= 40mm' = { - table2Version = 208 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'Probability of 12h total precipitation >= 70mm' = { - table2Version = 208 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'Probability of 6h accumulated snow >=0.5cm' = { - table2Version = 208 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'Probability of 6h accumulated snow >= 5cm' = { - table2Version = 208 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'Probability of 6h accumulated snow >= 10cm' = { - table2Version = 208 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'Probability of 12h accumulated snow >=0.5cm' = { - table2Version = 208 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'Probability of 12h accumulated snow >= 10cm' = { - table2Version = 208 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'Probability of 12h accumulated snow >= 15cm' = { - table2Version = 208 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'Probability of 12h accumulated snow >= 25cm' = { - table2Version = 208 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'Probability of 1h maximum wind gust speed >= 14m/s' = { - table2Version = 208 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'Probability of 1h maximum wind gust speed >= 18m/s' = { - table2Version = 208 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'Probability of 1h maximum wind gust speed >= 25m/s' = { - table2Version = 208 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'Probability of 1h maximum wind gust speed >= 29m/s' = { - table2Version = 208 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'Probability of 1h maximum wind gust speed >= 33m/s' = { - table2Version = 208 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'Probability of 1h maximum wind gust speed >= 39m/s' = { - table2Version = 208 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'Probability of black ice during 1h' = { - table2Version = 208 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'Probability of thunderstorm during 1h' = { - table2Version = 208 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'Probability of heavy thunderstorm during 1h' = { - table2Version = 208 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'Probability of severe thunderstorm during 1h' = { - table2Version = 208 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'Probability of snowdrift during 12h' = { - table2Version = 208 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'Probability of strong snowdrift during 12h' = { - table2Version = 208 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'Probability of temperature < 0 deg C during 1h' = { - table2Version = 208 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'Probability of temperature <= -10 deg C during 6h' = { - table2Version = 208 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'UV Index, clear sky; corrected for albedo, aerosol and altitude' = { - table2Version = 202 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol' = { - table2Version = 202 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds' = { - table2Version = 202 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'UV Index, clear sky, maximum' = { - table2Version = 202 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500469 -#Total ozone -'Total ozone' = { - table2Version = 202 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'Time of maximum of UV Index, clouded' = { - table2Version = 202 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500472 -#Konvektionsart (0..4) -'Konvektionsart (0..4)' = { - table2Version = 203 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500473 -#perceived temperature -'perceived temperature' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500475 -#Water temperature -'Water temperature' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500476 -#Water temperature in C -'Water temperature in C' = { - table2Version = 203 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500477 -#Absolute Vorticity -'Absolute Vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'probability to perceive sultriness' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500479 -#value of isolation of clothes -'value of isolation of clothes' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'Downward direct short wave radiation flux at surface (mean over forecast time)' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux -'Downward diffusive short wave radiation flux' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500486 -#vertical integral of divergence of total water content (s) -'vertical integral of divergence of total water content (s)' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500487 -#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation -'Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500488 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500489 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500490 -#Water Fraction -'Water Fraction' = { - table2Version = 202 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500491 -#Lake depth -'Lake depth' = { - table2Version = 201 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500492 -#Wind fetch -'Wind fetch' = { - table2Version = 201 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'Attenuation coefficient of water with respect to solar radiation' = { - table2Version = 201 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'Depth of thermally active layer of bottom sediment' = { - table2Version = 201 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'Temperature at the lower boundary of the thermally active layer of bottom sediment' = { - table2Version = 201 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'Mean temperature of the water column' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'Mixed-layer temperature' = { - table2Version = 201 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'Bottom temperature (temperature at the water-bottom sediment interface)' = { - table2Version = 201 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500499 -#Mixed-layer depth -'Mixed-layer depth' = { - table2Version = 201 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'Shape factor with respect to the temperature profile in the thermocline' = { - table2Version = 201 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave)' = { - table2Version = 201 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'Sediment thickness of the upper layer of bottom sediments' = { - table2Version = 201 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500503 -#Icing Base (hft) - Prognose Icing Degree Composit -'Icing Base (hft) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Prognose Icing Degree Composit -'Icing Max Base (hft) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Prognose Icing Degree Composit -'Icing Max Top (hft) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500506 -#Icing Top (hft) - Prognose Icing Degree Composit -'Icing Top (hft) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit -'Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500509 -#Icing Base (hft) - Prognose Icing Scenario Composit -'Icing Base (hft) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit -'Icing Signifikant Base (hft) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit -'Icing Signifikant Top (hft) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500512 -#Icing Top (hft) - Prognose Icing Scenario Composit -'Icing Top (hft) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit -'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500515 -#Icing Base (hft) - Diagnose Icing Degree Composit -'Icing Base (hft) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Diagnose Icing Degree Composit -'Icing Max Base (hft) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Diagnose Icing Degree Composit -'Icing Max Top (hft) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500518 -#Icing Top (hft) - Diagnose Icing Degree Composit -'Icing Top (hft) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit -'Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500521 -#Icing Base (hft) - Diagnose Icing Scenario Composit -'Icing Base (hft) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit -'Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit -'Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500524 -#Icing Top (hft) - Diagnose Icing Scenario Composit -'Icing Top (hft) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit -'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500527 -#Prognose Icing Degree Code (1=light,2=moderate,3=severe) -'Prognose Icing Degree Code (1=light,2=moderate,3=severe)' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500528 -#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500529 -#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) -'Diagnose Icing Degree Code (1=light,2=moderate,3=severe)' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500530 -#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'current weather (symbol number: 0..9)' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500541 -#relative vorticity,U-component -'relative vorticity,U-component' = { - table2Version = 202 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500542 -#relative vorticity,V-component -'relative vorticity,V-component' = { - table2Version = 202 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500543 -#vertical vorticity -'vertical vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500544 -#Potential vorticity -'Potential vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500545 -#Density -'Density' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'Convective Precipitation (difference)' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'Potentielle Vorticity (auf Druckflaechen, nicht isentrop)' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'geostrophische Vorticity' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'Forcing rechte Seite Omegagleichung' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'Q-Vektor X-Komponente (geostrophisch)' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'Q-Vektor Y-Komponente (geostrophisch)' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'Divergenz Q (geostrophisch)' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'Q-Vektor senkrecht zu d. Isothermen (geostrophisch)' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'Q-Vektor parallel zu d. Isothermen (geostrophisch)' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'Divergenz Qn geostrophisch' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'Divergenz Qs geostrophisch' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'Frontogenesefunktion' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500562 -#Divergenz -'Divergenz' = { - table2Version = 203 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'Q-Vektor parallel zu den Isothermen' = { - table2Version = 203 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500564 -#Divergenz Qn -'Divergenz Qn' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500565 -#Divergenz Qs -'Divergenz Qs' = { - table2Version = 203 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500566 -#Frontogenesis function -'Frontogenesis function' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'Clear Air Turbulence Index' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500568 -#Geopotential height -'Geopotential height' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500569 -#Relative Divergenz -'Relative Divergenz' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500570 -#dry convection top index -'dry convection top index' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500571 -#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 -'- FE1 I128A[AMP]ROUTI von 199809 bis 199905' = { - table2Version = 201 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500572 -#tidal tendencies -'tidal tendencies' = { - table2Version = 202 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'Sea surface temperature interpolated in time in C' = { - table2Version = 202 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'Logarithm of Pressure' = { - table2Version = 202 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500575 -#3 hour pressure change -'3 hour pressure change' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500576 -#covariance of soil moisture content (0-10) -'covariance of soil moisture content (0-10)' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'Soil Temperature (layer)' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'Soil Moisture Content (0-7 cm)' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 7 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'Soil Moisture Content (7-50 cm)' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 7 ; - bottomLevel = 50 ; - } - -#paramId: 500582 -#Max 2m Temperature (i) Initialisation -'Max 2m Temperature (i) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500583 -#Min 2m Temperature (i) Initialisation -'Min 2m Temperature (i) Initialisation' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'Eddy Dissipation Rate' = { - table2Version = 204 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500586 -#Ellrod Index -'Ellrod Index' = { - table2Version = 204 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500588 -#Snow melt -'Snow melt' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500592 -#Geopotential height -'Geopotential height' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500593 -#Global radiation flux -'Global radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500600 -#Prob Windboeen > 25 kn -'Prob Windboeen > 25 kn' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500601 -#Prob Windboeen > 27 kn -'Prob Windboeen > 27 kn' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500602 -#Prob Sturmboeen > 33 kn -'Prob Sturmboeen > 33 kn' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500603 -#Prob Sturmboeen > 40 kn -'Prob Sturmboeen > 40 kn' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500604 -#Prob Schwere Sturmboeen > 47 kn -'Prob Schwere Sturmboeen > 47 kn' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500605 -#Prob Orkanartige Boeen > 55 kn -'Prob Orkanartige Boeen > 55 kn' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500606 -#Prob Orkanboeen > 63 kn -'Prob Orkanboeen > 63 kn' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500607 -#Prob Oberoertliche Orkanboeen > 75 kn -'Prob Oberoertliche Orkanboeen > 75 kn' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500608 -#Prob Starkregen > 10 mm -'Prob Starkregen > 10 mm' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500609 -#Prob Heftiger Starkregen > 25 mm -'Prob Heftiger Starkregen > 25 mm' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500610 -#Prob Extrem Heftiger Starkregen > 50 mm -'Prob Extrem Heftiger Starkregen > 50 mm' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500611 -#Prob Leichter Schneefall > 0,1 mm -'Prob Leichter Schneefall > 0,1 mm' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500612 -#Prob Leichter Schneefall > 0,1 cm -'Prob Leichter Schneefall > 0,1 cm' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500613 -#Prob Leichter Schneefall > 0,5 cm -'Prob Leichter Schneefall > 0,5 cm' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500614 -#Prob Leichter Schneefall > 1 cm -'Prob Leichter Schneefall > 1 cm' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500615 -#Prob Schneefall > 5 cm -'Prob Schneefall > 5 cm' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500616 -#Prob Starker Schneefall > 10 cm -'Prob Starker Schneefall > 10 cm' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500617 -#Prob Extrem starker Schneefall > 25 cm -'Prob Extrem starker Schneefall > 25 cm' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500618 -#Prob Frost -'Prob Frost' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500619 -#Prob Strenger Frost -'Prob Strenger Frost' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500620 -#Prob Gewitter -'Prob Gewitter' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'Prob Starkes Gewitter' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'Prob Schweres Gewitter' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500623 -#Prob Dauerregen -'Prob Dauerregen' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'Prob Ergiebiger Dauerregen' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'Prob Extrem ergiebiger Dauerregen' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'Prob Schneeverwehung' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'Prob Starke Schneeverwehung' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500628 -#Prob Glaette -'Prob Glaette' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'Prob oertlich Glatteis' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500630 -#Prob Glatteis -'Prob Glatteis' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'Prob Nebel (ueberoertl. Sichtweite < 150 m)' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500632 -#Prob Tauwetter -'Prob Tauwetter' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'Prob Starkes Tauwetter' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500634 -#wake-production of TKE due to sub grid scale orography -'wake-production of TKE due to sub grid scale orography' = { - table2Version = 201 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes -'shear-production of TKE due to separated horizontal shear modes' = { - table2Version = 201 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection -'buoyancy-production of TKE due to sub grid scale convection' = { - table2Version = 201 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500638 -#Atmospheric Resistance -'Atmospheric Resistance' = { - table2Version = 201 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'Height of thermals above MSL' = { - table2Version = 201 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500640 -#mass concentration of dust (minimum mode) -'mass concentration of dust (minimum mode)' = { - table2Version = 242 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500642 -#Lapse rate -'Lapse rate' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500643 -#mass concentration of dust (medium mode) -'mass concentration of dust (medium mode)' = { - table2Version = 242 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500644 -#mass concentration of dust (maximum mode) -'mass concentration of dust (maximum mode)' = { - table2Version = 242 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500645 -#number concentration of dust (minimum mode) -'number concentration of dust (minimum mode)' = { - table2Version = 242 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500646 -#number concentration of dust (medium mode) -'number concentration of dust (medium mode)' = { - table2Version = 242 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500647 -#number concentration of dust (maximum mode) -'number concentration of dust (maximum mode)' = { - table2Version = 242 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500648 -#mass concentration of dust (sum of all modes) -'mass concentration of dust (sum of all modes)' = { - table2Version = 242 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500649 -#number concentration of dust (sum of all modes) -'number concentration of dust (sum of all modes)' = { - table2Version = 242 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'DUMMY_1' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'DUMMY_2' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'DUMMY_3' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'DUMMY_4' = { - table2Version = 254 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'DUMMY_5' = { - table2Version = 254 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'DUMMY_6' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'DUMMY_7' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'DUMMY_8' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'DUMMY_9' = { - table2Version = 254 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'DUMMY_10' = { - table2Version = 254 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'DUMMY_11' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'DUMMY_12' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'DUMMY_13' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'DUMMY_14' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'DUMMY_15' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'DUMMY_16' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'DUMMY_17' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'DUMMY_18' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'DUMMY_19' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'DUMMY_20' = { - table2Version = 254 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'DUMMY_21' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'DUMMY_22' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'DUMMY_23' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'DUMMY_24' = { - table2Version = 254 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'DUMMY_25' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'DUMMY_26' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'DUMMY_27' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'DUMMY_28' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'DUMMY_29' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'DUMMY_30' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'DUMMY_31' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'DUMMY_32' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'DUMMY_33' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'DUMMY_34' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'DUMMY_35' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'DUMMY_36' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'DUMMY_37' = { - table2Version = 254 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'DUMMY_38' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'DUMMY_39' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'DUMMY_40' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'DUMMY_41' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'DUMMY_42' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'DUMMY_43' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'DUMMY_44' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'DUMMY_45' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'DUMMY_46' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'DUMMY_47' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'DUMMY_48' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'DUMMY_49' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'DUMMY_50' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'DUMMY_51' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'DUMMY_52' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'DUMMY_53' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'DUMMY_54' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'DUMMY_55' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'DUMMY_56' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'DUMMY_57' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'DUMMY_58' = { - table2Version = 254 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'DUMMY_59' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'DUMMY_60' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'DUMMY_61' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'DUMMY_62' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'DUMMY_63' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'DUMMY_64' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'DUMMY_65' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'DUMMY_66' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'DUMMY_67' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'DUMMY_68' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'DUMMY_69' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'DUMMY_70' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'DUMMY_71' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'DUMMY_72' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'DUMMY_73' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'DUMMY_74' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'DUMMY_75' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'DUMMY_76' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'DUMMY_77' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'DUMMY_78' = { - table2Version = 254 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'DUMMY_79' = { - table2Version = 254 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'DUMMY_80' = { - table2Version = 254 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'DUMMY_81' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'DUMMY_82' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'DUMMY_83' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'DUMMY_84' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'DUMMY_85' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'DUMMY_86' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'DUMMY_87' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'DUMMY_88' = { - table2Version = 254 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'DUMMY_89' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'DUMMY_90' = { - table2Version = 254 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'DUMMY_91' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'DUMMY_92' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'DUMMY_93' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'DUMMY_94' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'DUMMY_95' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'DUMMY_96' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'DUMMY_97' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'DUMMY_98' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'DUMMY_99' = { - table2Version = 254 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'DUMMY_100' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'DUMMY_101' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'DUMMY_102' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'DUMMY_103' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'DUMMY_104' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'DUMMY_105' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'DUMMY_106' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'DUMMY_107' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'DUMMY_108' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'DUMMY_109' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'DUMMY_110' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'DUMMY_111' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'DUMMY_112' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'DUMMY_113' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'DUMMY_114' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'DUMMY_115' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'DUMMY_116' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'DUMMY_117' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'DUMMY_118' = { - table2Version = 254 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'DUMMY_119' = { - table2Version = 254 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'DUMMY_120' = { - table2Version = 254 ; - indicatorOfParameter = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'DUMMY_121' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'DUMMY_122' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'DUMMY_123' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'DUMMY_124' = { - table2Version = 254 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'DUMMY_125' = { - table2Version = 254 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'DUMMY_126' = { - table2Version = 254 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'DUMMY_127' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'DUMMY_128' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'DUMMY_143' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'DUMMY_144' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'DUMMY_145' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'DUMMY_146' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'DUMMY_147' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'DUMMY_148' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'DUMMY_149' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'DUMMY_150' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'DUMMY_151' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'DUMMY_152' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'DUMMY_153' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'DUMMY_154' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'DUMMY_155' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'DUMMY_156' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'DUMMY_157' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'DUMMY_158' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'DUMMY_159' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'DUMMY_160' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'DUMMY_161' = { - table2Version = 254 ; - indicatorOfParameter = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'DUMMY_162' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'DUMMY_163' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'DUMMY_164' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'DUMMY_165' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'DUMMY_166' = { - table2Version = 254 ; - indicatorOfParameter = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'DUMMY_167' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'DUMMY_168' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'DUMMY_169' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'DUMMY_170' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'DUMMY_171' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'DUMMY_172' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'DUMMY_173' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'DUMMY_174' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'DUMMY_175' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'DUMMY_176' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'DUMMY_177' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'DUMMY_178' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'DUMMY_179' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'DUMMY_180' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'DUMMY_181' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'DUMMY_182' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'DUMMY_183' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'DUMMY_184' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'DUMMY_185' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'DUMMY_186' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'DUMMY_187' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'DUMMY_188' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'DUMMY_189' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'DUMMY_190' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'DUMMY_191' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'DUMMY_192' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'DUMMY_193' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'DUMMY_194' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'DUMMY_195' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'DUMMY_196' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'DUMMY_197' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'DUMMY_198' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'DUMMY_199' = { - table2Version = 254 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'DUMMY_200' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'DUMMY_201' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'DUMMY_202' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'DUMMY_203' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'DUMMY_204' = { - table2Version = 254 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'DUMMY_205' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'DUMMY_206' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'DUMMY_207' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'DUMMY_208' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'DUMMY_209' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'DUMMY_210' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'DUMMY_211' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'DUMMY_212' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'DUMMY_213' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'DUMMY_214' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'DUMMY_215' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'DUMMY_216' = { - table2Version = 254 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'DUMMY_217' = { - table2Version = 254 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'DUMMY_218' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'DUMMY_219' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'DUMMY_220' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'DUMMY_221' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'DUMMY_222' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'DUMMY_223' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'DUMMY_224' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'DUMMY_225' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'DUMMY_226' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'DUMMY_227' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'DUMMY_228' = { - table2Version = 254 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'DUMMY_229' = { - table2Version = 254 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'DUMMY_230' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'DUMMY_231' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'DUMMY_232' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'DUMMY_233' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'DUMMY_234' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'DUMMY_235' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'DUMMY_236' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'DUMMY_237' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'DUMMY_238' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'DUMMY_239' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'DUMMY_240' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'DUMMY_241' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'DUMMY_242' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'DUMMY_243' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'DUMMY_244' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'DUMMY_245' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'DUMMY_246' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'DUMMY_247' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'DUMMY_248' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'DUMMY_249' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'DUMMY_250' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'DUMMY_251' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'DUMMY_252' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'DUMMY_253' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'DUMMY_254' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'Specific Humidity (S)' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'Albedo - diffusive solar - time average (0.3 - 5.0 m-6) ' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - timeRangeIndicator = 3 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'Albedo - diffusive solar (0.3 - 5.0 m-6)' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'Latent Heat Net Flux - instant - at surface' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'Sensible Heat Net Flux - instant - at surface' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502333 -#salinity -'salinity' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502334 -#Stream function -'Stream function' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502335 -#Velocity potential -'Velocity potential' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502336 -#Skin temperature -'Skin temperature' = { - table2Version = 202 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux -'Downward direct short wave radiation flux' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502350 -#Temperature (G) -'Temperature (G)' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502355 -#Stream function -'Stream function' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502356 -#Velocity potential -'Velocity potential' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502357 -#Wind speed (SP) -'Wind speed (SP)' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502358 -#Pressure -'Pressure' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502359 -#Potential vorticity -'Potential vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502360 -#Potential vorticity -'Potential vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502361 -#Geopotential -'Geopotential' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502362 -#Max 2m Temperature -'Max 2m Temperature ' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502363 -#Min 2m Temperature -'Min 2m Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502364 -#Temperature -'Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502365 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502366 -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502367 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502368 -#Specific Humidity -'Specific Humidity' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502369 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502370 -#vertical vorticity -'vertical vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502371 -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502372 -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502373 -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502374 -#Relative Divergenz -'Relative Divergenz' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502375 -#Geopotential height -'Geopotential height' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502376 -#Relative Humidity -'Relative Humidity' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502377 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502378 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502379 -#2m Temperature -'2m Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502381 -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502382 -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502383 -#Albedo (in short-wave, average) -'Albedo (in short-wave, average)' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502384 -#Evaporation (s) -'Evaporation (s)' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502385 -#Convective Cloud Cover -'Convective Cloud Cover' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502386 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502387 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502388 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502389 -#Plant cover -'Plant cover' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502390 -#Water Runoff -'Water Runoff ' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502391 -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502392 -#Convective Snowfall water equivalent (s) -'Convective Snowfall water equivalent (s)' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502393 -#Large-Scale snowfall - water equivalent (Accumulation) -'Large-Scale snowfall - water equivalent (Accumulation)' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502394 -#Large-Scale Precipitation -'Large-Scale Precipitation ' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502395 -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502396 -#Virtual Temperature -'Virtual Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502397 -#Virtual Temperature -'Virtual Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502398 -#Virtual Temperature -'Virtual Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502399 -#Brightness Temperature -'Brightness Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502400 -#Boundary Layer Dissipitation -'Boundary Layer Dissipitation' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502401 -#Pressure Tendency -'Pressure Tendency ' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502402 -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502403 -#Geometric Height -'Geometric Height' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502404 -#Max Temperature -'Max Temperature ' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502405 -#Min Temperature -'Min Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502406 -#Dew Point Temperature -'Dew Point Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502407 -#Dew point depression(or deficit) -'Dew point depression(or deficit)' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502408 -#Lapse rate -'Lapse rate' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502409 -#Visibility -'Visibility' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502410 -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502411 -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502412 -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502413 -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502414 -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502415 -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502416 -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502417 -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502418 -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502419 -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502420 -#Wind Direction (DD) -'Wind Direction (DD)' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502421 -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502422 -#Absolute Vorticity -'Absolute Vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502423 -#Absolute divergence -'Absolute divergence' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502424 -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502425 -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502426 -#Direction of current -'Direction of current' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502427 -#Speed of current -'Speed of current' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502428 -#U-component of current -'U-component of current' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502429 -#V-component of current -'V-component of current' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502430 -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502431 -#Precipitable water -'Precipitable water' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502432 -#Vapour pressure -'Vapour pressure' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502433 -#Saturation deficit -'Saturation deficit' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502434 -#Precipitation rate -'Precipitation rate' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502435 -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502436 -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502437 -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502438 -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502439 -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502440 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502441 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502442 -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502443 -#Water temperature -'Water temperature' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502444 -#Deviation of sea-elbel from mean -'Deviation of sea-elbel from mean' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502445 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502446 -#salinity -'salinity' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502447 -#Density -'Density' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502448 -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502449 -#sea Ice Thickness -'sea Ice Thickness' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502450 -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502451 -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502452 -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502453 -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502454 -#Ice growth rate -'Ice growth rate' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502455 -#Snow melt -'Snow melt' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502456 -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502457 -#Direction of wind waves -'Direction of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502458 -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502459 -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502460 -#Mean direction of total swell -'Mean direction of total swell' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502461 -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502462 -#Swell Mean Period -'Swell Mean Period' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502465 -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502466 -#Secondary wave period -'Secondary wave period' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502467 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502468 -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502469 -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502470 -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502471 -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502472 -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502473 -#Global radiation flux -'Global radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502474 -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502475 -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502476 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502477 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502478 -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502479 -#Image data -'Image data' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502480 -#Geopotential height -'Geopotential height' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502481 -#Soil Temperature -'Soil Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502482 -#Snow Depth water equivalent -'Snow Depth water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502483 -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502484 -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502485 -#Total Precipitation (Accumulation) -'Total Precipitation (Accumulation)' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502486 -#Boundary Layer Dissipitation -'Boundary Layer Dissipitation' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502487 -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502488 -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502490 -#Evaporation (s) -'Evaporation (s)' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502491 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502492 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502493 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502494 -#Brightness Temperature -'Brightness Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502495 -#Water Runoff -'Water Runoff ' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502496 -#Geometric Height -'Geometric Height' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502497 -#Standard devation of height -'Standard devation of height' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502498 -#Standard devation of height -'Standard devation of height' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502499 -#Pseudo-adiabatic potential Temperature -'Pseudo-adiabatic potential Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502500 -#Pseudo-adiabatic potential Temperature -'Pseudo-adiabatic potential Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502501 -#Max Temperature -'Max Temperature ' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502502 -#Min Temperature -'Min Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502503 -#Dew Point Temperature -'Dew Point Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502504 -#Dew point depression(or deficit) -'Dew point depression(or deficit)' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502505 -#Visibility -'Visibility' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502506 -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502507 -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502508 -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502509 -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502510 -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502511 -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502512 -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502513 -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502514 -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502515 -#Absolute divergence -'Absolute divergence' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502516 -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502517 -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502518 -#Direction of current -'Direction of current' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502519 -#Speed of current -'Speed of current' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502520 -#U-component of current -'U-component of current' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502521 -#V-component of current -'V-component of current' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502522 -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502523 -#Vapour pressure -'Vapour pressure' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502524 -#Saturation deficit -'Saturation deficit' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502525 -#Precipitation rate -'Precipitation rate' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502526 -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502527 -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502528 -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502529 -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502530 -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502531 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502532 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502533 -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502534 -#Deviation of sea-elbel from mean -'Deviation of sea-elbel from mean' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502535 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502536 -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502537 -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502538 -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502539 -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502540 -#Ice growth rate -'Ice growth rate' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502542 -#Snow melt -'Snow melt' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502545 -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502546 -#Secondary wave period -'Secondary wave period' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502547 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502548 -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502549 -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502550 -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502551 -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502552 -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502553 -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502554 -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502555 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502556 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502557 -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502558 -#Image data -'Image data' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502559 -#Geopotential height -'Geopotential height' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502560 -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502562 -#Potential temperature -'Potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502563 -#Potential temperature -'Potential temperature' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502564 -#Wind speed (SP) -'Wind speed (SP)' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502565 -#Pressure -'Pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502566 -#Max 2m Temperature -'Max 2m Temperature ' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502567 -#Min 2m Temperature -'Min 2m Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502568 -#Geopotential -'Geopotential' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502569 -#Temperature -'Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502570 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502571 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502572 -#Specific Humidity -'Specific Humidity' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502573 -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502574 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502575 -#vertical vorticity -'vertical vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502576 -#Boundary Layer Dissipitation -'Boundary Layer Dissipitation' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502577 -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502578 -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502579 -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502581 -#Geopotential height -'Geopotential height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502582 -#Relative Humidity -'Relative Humidity' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502583 -#U-Component of Wind -'U-Component of Wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502584 -#V-Component of Wind -'V-Component of Wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502585 -#2m Temperature -'2m Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502587 -#Relative Divergenz -'Relative Divergenz' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502588 -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502589 -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502590 -#Albedo (in short-wave, average) -'Albedo (in short-wave, average)' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502591 -#Evaporation (s) -'Evaporation (s)' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502592 -#Convective Cloud Cover -'Convective Cloud Cover' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502593 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502594 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502595 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502596 -#Brightness Temperature -'Brightness Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502597 -#Plant cover -'Plant cover' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502598 -#Water Runoff -'Water Runoff ' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502599 -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502600 -#Convective Snowfall water equivalent (s) -'Convective Snowfall water equivalent (s)' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502601 -#Large-Scale snowfall - water equivalent (Accumulation) -'Large-Scale snowfall - water equivalent (Accumulation)' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502602 -#Large-Scale Precipitation -'Large-Scale Precipitation ' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502603 -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502604 -#Pressure Tendency -'Pressure Tendency ' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502605 -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502606 -#Geometric Height -'Geometric Height' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502607 -#Standard devation of height -'Standard devation of height' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502608 -#Pseudo-adiabatic potential Temperature -'Pseudo-adiabatic potential Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502609 -#Max Temperature -'Max Temperature ' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502610 -#Min Temperature -'Min Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502611 -#Dew Point Temperature -'Dew Point Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502612 -#Dew point depression(or deficit) -'Dew point depression(or deficit)' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502613 -#Lapse rate -'Lapse rate' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502614 -#Visibility -'Visibility' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502615 -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502616 -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502617 -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502618 -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502619 -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502620 -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502621 -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502622 -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502623 -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502624 -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502625 -#Wind Direction (DD) -'Wind Direction (DD)' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502626 -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502627 -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502628 -#Absolute Vorticity -'Absolute Vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502629 -#Absolute divergence -'Absolute divergence' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502630 -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502631 -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502632 -#Direction of current -'Direction of current' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502633 -#Speed of current -'Speed of current' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502634 -#U-component of current -'U-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502635 -#V-component of current -'V-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502636 -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502637 -#Precipitable water -'Precipitable water' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502638 -#Vapour pressure -'Vapour pressure' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502639 -#Saturation deficit -'Saturation deficit' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502640 -#Precipitation rate -'Precipitation rate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502641 -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502642 -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502643 -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502644 -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502645 -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502646 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502647 -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502648 -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502649 -#Water temperature -'Water temperature' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502650 -#Deviation of sea-elbel from mean -'Deviation of sea-elbel from mean' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502651 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502652 -#salinity -'salinity' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502653 -#Density -'Density' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502654 -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502655 -#sea Ice Thickness -'sea Ice Thickness' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502656 -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502657 -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502658 -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502659 -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502660 -#Ice growth rate -'Ice growth rate' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502662 -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502663 -#Direction of wind waves -'Direction of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502664 -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502665 -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502666 -#Mean direction of total swell -'Mean direction of total swell' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502667 -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502668 -#Swell Mean Period -'Swell Mean Period' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502671 -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502672 -#Secondary wave period -'Secondary wave period' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502673 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502674 -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502675 -#Net short wave radiation flux -'Net short wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502676 -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502677 -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502678 -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502679 -#Global radiation flux -'Global radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502680 -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502681 -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502682 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502683 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502684 -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502685 -#Image data -'Image data' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502686 -#Geopotential height -'Geopotential height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502687 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502688 -#Soil Temperature -'Soil Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502689 -#Snow Depth water equivalent -'Snow Depth water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502690 -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502691 -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502692 -#Total Precipitation (Accumulation) -'Total Precipitation (Accumulation)' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502693 -#Potential temperature -'Potential temperature' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502694 -#Ice divergence -'Ice divergence' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502695 -#Ice divergence -'Ice divergence' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502696 -#Ice divergence -'Ice divergence' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502697 -#Velocity potential -'Velocity potential' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502750 -#Stream function -'Stream function' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502796 -#Precipitation -'Precipitation' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'Eddy dissipitation rate of TKE' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'Downward diffusive short wave radiation flux at surface ( mean over forecast time)' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503065 -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503066 -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'precipitation, qualified,BRD' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; - } - -#paramId: 503069 -#precipitation,BRD -'precipitation,BRD' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'precipitation phase,BRD' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; - } - -#paramId: 503071 -#hail flag,BRD -'hail flag,BRD' = { - table2Version = 203 ; - indicatorOfParameter = 76 ; - } - -#paramId: 503072 -#snow rate,BRD -'snow rate,BRD' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; - } - -#paramId: 503073 -#snow rate, qualified,BRD -'snow rate, qualified,BRD' = { - table2Version = 204 ; - indicatorOfParameter = 46 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'Gravity wave dissipation ' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503078 -#relative humidity over mixed phase -'relative humidity over mixed phase' = { - table2Version = 250 ; - indicatorOfParameter = 20 ; - } - -#paramId: 503082 -#Friction Velocity -'Friction Velocity' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - } - -#paramId: 503098 -#Vertical Velocity (Geometric) (w) -'Vertical Velocity (Geometric) (w)' = { - table2Version = 3 ; - indicatorOfParameter = 40 ; - } - -#paramId: 503099 -#Fog_fraction -'Fog_fraction' = { - table2Version = 3 ; - indicatorOfParameter = 138 ; - } - -#paramId: 503100 -#accumulated_convective_rain -'accumulated_convective_rain' = { - table2Version = 3 ; - indicatorOfParameter = 140 ; - } - -#paramId: 503101 -#cloud_fraction_below_1000ft -'cloud_fraction_below_1000ft' = { - table2Version = 3 ; - indicatorOfParameter = 207 ; - } - -#paramId: 503103 -#Lowest_cloud_base_height -'Lowest_cloud_base_height' = { - table2Version = 3 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503104 -#wet_bulb_freezing_level_ht -'wet_bulb_freezing_level_ht' = { - table2Version = 3 ; - indicatorOfParameter = 152 ; - } - -#paramId: 503105 -#freezing_level_ICAO_height -'freezing_level_ICAO_height' = { - table2Version = 3 ; - indicatorOfParameter = 162 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'Downward long-wave radiation flux avg' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'Downward long-wave radiation flux accum' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 4 ; - } - -#paramId: 503140 -#orography -'orography' = { - table2Version = 3 ; - indicatorOfParameter = 148 ; - } - -#paramId: 503141 -#wind_gust_10m -'wind_gust_10m' = { - table2Version = 3 ; - indicatorOfParameter = 149 ; - } - -#paramId: 503142 -#Lightning Potential Index -'Lightning Potential Index' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'Impervious (paved or sealed) surface fraction' = { - table2Version = 202 ; - indicatorOfParameter = 33 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'Antropogenic heat flux (e.g. urban heating, traffic)' = { - table2Version = 202 ; - indicatorOfParameter = 34 ; - } - -#paramId: 503325 -#Lightning Potential Index -'Lightning Potential Index' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'Maximum amplitude (positive or negative) of updraft helicity (over given time interval)' = { - table2Version = 203 ; - indicatorOfParameter = 35 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { - table2Version = 203 ; - indicatorOfParameter = 36 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'Maximum updraft track (over given time interval and column)' = { - table2Version = 203 ; - indicatorOfParameter = 37 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'Maximum total-column integrated condensed water above -10 C isotherm (over given time interval)' = { - table2Version = 201 ; - indicatorOfParameter = 49 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'Maximum total-column integrated condensed water (over given time interval)' = { - table2Version = 201 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'Composite reflectivity - observation' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'Composite reflectivity - forecast (simulation)' = { - table2Version = 201 ; - indicatorOfParameter = 234 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'Maximum of Lightning Potential Index (over given time interval)' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'Maximum reflectivity track (over given time interval and entire atmosphere)' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503350 -#relative vorticity -'relative vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present' = { - table2Version = 202 ; - indicatorOfParameter = 36 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'Echotop-height: largest height where radar reflectivity above a threshold is present' = { - table2Version = 202 ; - indicatorOfParameter = 37 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)' = { - table2Version = 202 ; - indicatorOfParameter = 39 ; - } - diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def b/eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def deleted file mode 100755 index e2701369..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/paramId.def +++ /dev/null @@ -1,8992 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE,do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'500000' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500001 -#Pressure -'500001' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'500002' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'500003' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'500004' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'500005' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500006 -#Geopotential -'500006' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'500007' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'500008' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'500009' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500010 -#Temperature (G) -'500010' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500011 -#2m Temperature -'500011' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'500012' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'500013' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500014 -#Temperature -'500014' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'500015' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'500016' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'500017' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'500018' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'500019' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500020 -#Wave spectra (1) -'500020' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500021 -#Wave spectra (2) -'500021' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500022 -#Wave spectra (3) -'500022' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'500023' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'500024' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'500025' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'500026' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500027 -#U-Component of Wind -'500027' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'500028' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500029 -#V-Component of Wind -'500029' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'500030' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'500031' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'500032' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'500034' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'500035' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500036 -#2m Relative Humidity -'500036' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'500037' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'500038' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500039 -#Evaporation (s) -'500039' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'500040' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'500041' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'500042' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'500043' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'500044' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500045 -#Snow Depth -'500045' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500046 -#Total Cloud Cover -'500046' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'500047' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'500048' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'500049' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'500050' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'500051' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'500052' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'500053' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'500054' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'500055' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'500056' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'500057' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'500058' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'500059' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'500060' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'500061' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'500062' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; - bottomLevel = 190 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'500063' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'500064' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } - -#paramId: 500065 -#Plant cover -'500065' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500066 -#Water Runoff -'500066' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'500068' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'500069' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'500070' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'500071' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500072 -#Direction of wind waves -'500072' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500073 -#Significant height of wind waves -'500073' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500074 -#Mean period of wind waves -'500074' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500075 -#Mean direction of total swell -'500075' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500076 -#Significant height of total swell -'500076' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500077 -#Mean period of total swell -'500077' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'500078' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'500079' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'500080' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'500081' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'500082' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'500083' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'500084' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'500085' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'500086' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'500087' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'500088' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'500089' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'500401' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500404 -#Total Precipitation (Accumulation) Initialisation -'500404' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500409 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'500409' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500411 -#Convective Snowfall water equivalent (s) Initialisation -'500411' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500416 -#Evaporation (s) Initialisation -'500416' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500417 -#Max 2m Temperature (i) Initialisation -'500417' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500418 -#Min 2m Temperature (i) Initialisation -'500418' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'500419' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'500420' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'500421' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'500422' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500423 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'500423' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500424 -#Convective Snowfall water equivalent (s) Initialisation -'500424' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500425 -#Total Precipitation (Accumulation) Initialisation -'500425' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500428 -#Latent Heat Net Flux (m) Initialisation -'500428' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500429 -#Sensible Heat Net Flux (m) Initialisation -'500429' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500430 -#Momentum Flux, U-Component (m) Initialisation -'500430' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500431 -#Momentum Flux, V-Component (m) Initialisation -'500431' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500475 -#Water temperature -'500475' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500477 -#Absolute Vorticity -'500477' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500543 -#vertical vorticity -'500543' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500544 -#Potential vorticity -'500544' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500545 -#Density -'500545' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'500547' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500568 -#Geopotential height -'500568' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500569 -#Relative Divergenz -'500569' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'500579' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'500580' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 7 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'500581' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 7 ; - bottomLevel = 50 ; - } - -#paramId: 500582 -#Max 2m Temperature (i) Initialisation -'500582' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500583 -#Min 2m Temperature (i) Initialisation -'500583' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500588 -#Snow melt -'500588' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'500590' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500593 -#Global radiation flux -'500593' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500642 -#Lapse rate -'500642' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'500905' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'502317' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'502318' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502333 -#salinity -'502333' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502334 -#Stream function -'502334' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502335 -#Velocity potential -'502335' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502350 -#Temperature (G) -'502350' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502355 -#Stream function -'502355' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502356 -#Velocity potential -'502356' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502357 -#Wind speed (SP) -'502357' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502358 -#Pressure -'502358' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502359 -#Potential vorticity -'502359' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502360 -#Potential vorticity -'502360' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502361 -#Geopotential -'502361' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502362 -#Max 2m Temperature -'502362' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502363 -#Min 2m Temperature -'502363' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502364 -#Temperature -'502364' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502365 -#U-Component of Wind -'502365' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502366 -#Pressure (S) (not reduced) -'502366' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502367 -#V-Component of Wind -'502367' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502368 -#Specific Humidity -'502368' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502369 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'502369' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502370 -#vertical vorticity -'502370' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502371 -#Sensible Heat Net Flux (m) -'502371' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502372 -#Latent Heat Net Flux (m) -'502372' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502373 -#Pressure Reduced to MSL -'502373' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502374 -#Relative Divergenz -'502374' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502375 -#Geopotential height -'502375' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502376 -#Relative Humidity -'502376' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502377 -#U-Component of Wind -'502377' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502378 -#V-Component of Wind -'502378' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502379 -#2m Temperature -'502379' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502381 -#Land Cover (1=land, 0=sea) -'502381' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502382 -#Surface Roughness length Surface Roughness -'502382' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502383 -#Albedo (in short-wave, average) -'502383' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502384 -#Evaporation (s) -'502384' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502385 -#Convective Cloud Cover -'502385' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502386 -#Cloud Cover (800 hPa - Soil) -'502386' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502387 -#Cloud Cover (400 - 800 hPa) -'502387' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502388 -#Cloud Cover (0 - 400 hPa) -'502388' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502389 -#Plant cover -'502389' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502390 -#Water Runoff -'502390' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502391 -#Total Column Integrated Ozone -'502391' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502392 -#Convective Snowfall water equivalent (s) -'502392' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502393 -#Large-Scale snowfall - water equivalent (Accumulation) -'502393' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502394 -#Large-Scale Precipitation -'502394' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502395 -#Total Column-Integrated Cloud Water -'502395' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502396 -#Virtual Temperature -'502396' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502397 -#Virtual Temperature -'502397' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502398 -#Virtual Temperature -'502398' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502399 -#Brightness Temperature -'502399' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502400 -#Boundary Layer Dissipitation -'502400' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502401 -#Pressure Tendency -'502401' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502402 -#ICAO Standard Atmosphere reference height -'502402' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502403 -#Geometric Height -'502403' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502404 -#Max Temperature -'502404' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502405 -#Min Temperature -'502405' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502406 -#Dew Point Temperature -'502406' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502407 -#Dew point depression(or deficit) -'502407' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502408 -#Lapse rate -'502408' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502409 -#Visibility -'502409' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502410 -#Radar spectra (1) -'502410' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502411 -#Radar spectra (2) -'502411' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502412 -#Radar spectra (3) -'502412' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502413 -#Parcel lifted index (to 500 hPa) -'502413' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502414 -#Temperature anomaly -'502414' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502415 -#Pressure anomaly -'502415' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502416 -#Geopotential height anomaly -'502416' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502417 -#Wave spectra (1) -'502417' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502418 -#Wave spectra (2) -'502418' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502419 -#Wave spectra (3) -'502419' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502420 -#Wind Direction (DD) -'502420' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502421 -#Sigma coordinate vertical velocity -'502421' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502422 -#Absolute Vorticity -'502422' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502423 -#Absolute divergence -'502423' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502424 -#Vertical u-component shear -'502424' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502425 -#Vertical v-component shear -'502425' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502426 -#Direction of current -'502426' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502427 -#Speed of current -'502427' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502428 -#U-component of current -'502428' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502429 -#V-component of current -'502429' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502430 -#Humidity mixing ratio -'502430' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502431 -#Precipitable water -'502431' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502432 -#Vapour pressure -'502432' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502433 -#Saturation deficit -'502433' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502434 -#Precipitation rate -'502434' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502435 -#Thunderstorm probability -'502435' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502436 -#Convective precipitation (water) -'502436' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502437 -#Snow fall rate water equivalent -'502437' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502438 -#Mixed layer depth -'502438' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502439 -#Transient thermocline depth -'502439' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502440 -#Main thermocline depth -'502440' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502441 -#Main thermocline depth -'502441' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502442 -#Best lifted index (to 500 hPa) -'502442' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502443 -#Water temperature -'502443' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502444 -#Deviation of sea-elbel from mean -'502444' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502445 -#Column-integrated Soil Moisture -'502445' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502446 -#salinity -'502446' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502447 -#Density -'502447' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502448 -#Sea Ice Cover ( 0= free, 1=cover) -'502448' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502449 -#sea Ice Thickness -'502449' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502450 -#Direction of ice drift -'502450' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502451 -#Speed of ice drift -'502451' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502452 -#U-component of ice drift -'502452' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502453 -#V-component of ice drift -'502453' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502454 -#Ice growth rate -'502454' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502455 -#Snow melt -'502455' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502456 -#Significant height of combined wind waves and swell -'502456' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502457 -#Direction of wind waves -'502457' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502458 -#Significant height of wind waves -'502458' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502459 -#Mean period of wind waves -'502459' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502460 -#Mean direction of total swell -'502460' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502461 -#Significant height of swell waves -'502461' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502462 -#Swell Mean Period -'502462' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502465 -#Secondary wave direction -'502465' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502466 -#Secondary wave period -'502466' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502467 -#Net short wave radiation flux (at the surface) -'502467' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502468 -#Net long wave radiation flux (m) (at the surface) -'502468' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502469 -#Net short wave radiation flux -'502469' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502470 -#Net long-wave radiation flux(atmosph.top) -'502470' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502471 -#Long wave radiation flux -'502471' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502472 -#Short wave radiation flux -'502472' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502473 -#Global radiation flux -'502473' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502474 -#Radiance (with respect to wave number) -'502474' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502475 -#Radiance (with respect to wave length) -'502475' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502476 -#Momentum Flux, U-Component (m) -'502476' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502477 -#Momentum Flux, V-Component (m) -'502477' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502478 -#Wind mixing energy -'502478' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502479 -#Image data -'502479' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502480 -#Geopotential height -'502480' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502481 -#Soil Temperature -'502481' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502482 -#Snow Depth water equivalent -'502482' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502483 -#Snow depth water equivalent -'502483' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502484 -#Total Cloud Cover -'502484' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502485 -#Total Precipitation (Accumulation) -'502485' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502486 -#Boundary Layer Dissipitation -'502486' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502487 -#Sensible Heat Net Flux (m) -'502487' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502488 -#Latent Heat Net Flux (m) -'502488' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502490 -#Evaporation (s) -'502490' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502491 -#Cloud Cover (800 hPa - Soil) -'502491' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502492 -#Cloud Cover (400 - 800 hPa) -'502492' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502493 -#Cloud Cover (0 - 400 hPa) -'502493' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502494 -#Brightness Temperature -'502494' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502495 -#Water Runoff -'502495' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502496 -#Geometric Height -'502496' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502497 -#Standard devation of height -'502497' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502498 -#Standard devation of height -'502498' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502499 -#Pseudo-adiabatic potential Temperature -'502499' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502500 -#Pseudo-adiabatic potential Temperature -'502500' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502501 -#Max Temperature -'502501' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502502 -#Min Temperature -'502502' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502503 -#Dew Point Temperature -'502503' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502504 -#Dew point depression(or deficit) -'502504' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502505 -#Visibility -'502505' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502506 -#Radar spectra (2) -'502506' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502507 -#Radar spectra (3) -'502507' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502508 -#Parcel lifted index (to 500 hPa) -'502508' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502509 -#Temperature anomaly -'502509' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502510 -#Pressure anomaly -'502510' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502511 -#Geopotential height anomaly -'502511' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502512 -#Montgomery stream Function -'502512' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502513 -#Montgomery stream Function -'502513' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502514 -#Sigma coordinate vertical velocity -'502514' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502515 -#Absolute divergence -'502515' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502516 -#Vertical u-component shear -'502516' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502517 -#Vertical v-component shear -'502517' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502518 -#Direction of current -'502518' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502519 -#Speed of current -'502519' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502520 -#U-component of current -'502520' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502521 -#V-component of current -'502521' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502522 -#Humidity mixing ratio -'502522' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502523 -#Vapour pressure -'502523' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502524 -#Saturation deficit -'502524' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502525 -#Precipitation rate -'502525' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502526 -#Thunderstorm probability -'502526' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502527 -#Convective precipitation (water) -'502527' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502528 -#Snow fall rate water equivalent -'502528' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502529 -#Mixed layer depth -'502529' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502530 -#Transient thermocline depth -'502530' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502531 -#Main thermocline depth -'502531' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502532 -#Main thermocline depth -'502532' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502533 -#Best lifted index (to 500 hPa) -'502533' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502534 -#Deviation of sea-elbel from mean -'502534' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502535 -#Column-integrated Soil Moisture -'502535' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502536 -#Direction of ice drift -'502536' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502537 -#Speed of ice drift -'502537' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502538 -#U-component of ice drift -'502538' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502539 -#V-component of ice drift -'502539' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502540 -#Ice growth rate -'502540' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502542 -#Snow melt -'502542' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502545 -#Secondary wave direction -'502545' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502546 -#Secondary wave period -'502546' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502547 -#Net short wave radiation flux (at the surface) -'502547' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502548 -#Net long wave radiation flux (m) (at the surface) -'502548' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502549 -#Net short wave radiation flux -'502549' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502550 -#Net long-wave radiation flux(atmosph.top) -'502550' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502551 -#Long wave radiation flux -'502551' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502552 -#Short wave radiation flux -'502552' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502553 -#Radiance (with respect to wave number) -'502553' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502554 -#Radiance (with respect to wave length) -'502554' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502555 -#Momentum Flux, U-Component (m) -'502555' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502556 -#Momentum Flux, V-Component (m) -'502556' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502557 -#Wind mixing energy -'502557' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502558 -#Image data -'502558' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502559 -#Geopotential height -'502559' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502560 -#Soil Temperature -'502560' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502562 -#Potential temperature -'502562' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502563 -#Potential temperature -'502563' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502564 -#Wind speed (SP) -'502564' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502565 -#Pressure -'502565' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502566 -#Max 2m Temperature -'502566' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502567 -#Min 2m Temperature -'502567' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502568 -#Geopotential -'502568' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502569 -#Temperature -'502569' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502570 -#U-Component of Wind -'502570' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502571 -#V-Component of Wind -'502571' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502572 -#Specific Humidity -'502572' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502573 -#Pressure (S) (not reduced) -'502573' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502574 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'502574' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502575 -#vertical vorticity -'502575' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502576 -#Boundary Layer Dissipitation -'502576' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502577 -#Sensible Heat Net Flux (m) -'502577' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502578 -#Latent Heat Net Flux (m) -'502578' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502579 -#Pressure Reduced to MSL -'502579' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502581 -#Geopotential height -'502581' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502582 -#Relative Humidity -'502582' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502583 -#U-Component of Wind -'502583' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502584 -#V-Component of Wind -'502584' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502585 -#2m Temperature -'502585' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502587 -#Relative Divergenz -'502587' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502588 -#Land Cover (1=land, 0=sea) -'502588' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502589 -#Surface Roughness length Surface Roughness -'502589' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502590 -#Albedo (in short-wave, average) -'502590' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502591 -#Evaporation (s) -'502591' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502592 -#Convective Cloud Cover -'502592' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502593 -#Cloud Cover (800 hPa - Soil) -'502593' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502594 -#Cloud Cover (400 - 800 hPa) -'502594' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502595 -#Cloud Cover (0 - 400 hPa) -'502595' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502596 -#Brightness Temperature -'502596' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502597 -#Plant cover -'502597' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502598 -#Water Runoff -'502598' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502599 -#Total Column Integrated Ozone -'502599' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502600 -#Convective Snowfall water equivalent (s) -'502600' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502601 -#Large-Scale snowfall - water equivalent (Accumulation) -'502601' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502602 -#Large-Scale Precipitation -'502602' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502603 -#Total Column-Integrated Cloud Water -'502603' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502604 -#Pressure Tendency -'502604' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502605 -#ICAO Standard Atmosphere reference height -'502605' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502606 -#Geometric Height -'502606' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502607 -#Standard devation of height -'502607' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502608 -#Pseudo-adiabatic potential Temperature -'502608' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502609 -#Max Temperature -'502609' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502610 -#Min Temperature -'502610' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502611 -#Dew Point Temperature -'502611' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502612 -#Dew point depression(or deficit) -'502612' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502613 -#Lapse rate -'502613' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502614 -#Visibility -'502614' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502615 -#Radar spectra (1) -'502615' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502616 -#Radar spectra (2) -'502616' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502617 -#Radar spectra (3) -'502617' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502618 -#Parcel lifted index (to 500 hPa) -'502618' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502619 -#Temperature anomaly -'502619' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502620 -#Pressure anomaly -'502620' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502621 -#Geopotential height anomaly -'502621' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502622 -#Wave spectra (1) -'502622' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502623 -#Wave spectra (2) -'502623' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502624 -#Wave spectra (3) -'502624' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502625 -#Wind Direction (DD) -'502625' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502626 -#Montgomery stream Function -'502626' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502627 -#Sigma coordinate vertical velocity -'502627' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502628 -#Absolute Vorticity -'502628' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502629 -#Absolute divergence -'502629' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502630 -#Vertical u-component shear -'502630' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502631 -#Vertical v-component shear -'502631' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502632 -#Direction of current -'502632' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502633 -#Speed of current -'502633' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502634 -#U-component of current -'502634' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502635 -#V-component of current -'502635' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502636 -#Humidity mixing ratio -'502636' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502637 -#Precipitable water -'502637' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502638 -#Vapour pressure -'502638' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502639 -#Saturation deficit -'502639' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502640 -#Precipitation rate -'502640' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502641 -#Thunderstorm probability -'502641' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502642 -#Convective precipitation (water) -'502642' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502643 -#Snow fall rate water equivalent -'502643' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502644 -#Mixed layer depth -'502644' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502645 -#Transient thermocline depth -'502645' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502646 -#Main thermocline depth -'502646' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502647 -#Main thermocline depth -'502647' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502648 -#Best lifted index (to 500 hPa) -'502648' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502649 -#Water temperature -'502649' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502650 -#Deviation of sea-elbel from mean -'502650' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502651 -#Column-integrated Soil Moisture -'502651' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502652 -#salinity -'502652' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502653 -#Density -'502653' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502654 -#Sea Ice Cover ( 0= free, 1=cover) -'502654' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502655 -#sea Ice Thickness -'502655' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502656 -#Direction of ice drift -'502656' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502657 -#Speed of ice drift -'502657' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502658 -#U-component of ice drift -'502658' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502659 -#V-component of ice drift -'502659' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502660 -#Ice growth rate -'502660' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502662 -#Significant height of combined wind waves and swell -'502662' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502663 -#Direction of wind waves -'502663' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502664 -#Significant height of wind waves -'502664' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502665 -#Mean period of wind waves -'502665' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502666 -#Mean direction of total swell -'502666' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502667 -#Significant height of swell waves -'502667' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502668 -#Swell Mean Period -'502668' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502671 -#Secondary wave direction -'502671' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502672 -#Secondary wave period -'502672' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502673 -#Net short wave radiation flux (at the surface) -'502673' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502674 -#Net long wave radiation flux (m) (at the surface) -'502674' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502675 -#Net short wave radiation flux -'502675' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502676 -#Net long-wave radiation flux(atmosph.top) -'502676' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502677 -#Long wave radiation flux -'502677' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502678 -#Short wave radiation flux -'502678' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502679 -#Global radiation flux -'502679' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502680 -#Radiance (with respect to wave number) -'502680' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502681 -#Radiance (with respect to wave length) -'502681' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502682 -#Momentum Flux, U-Component (m) -'502682' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502683 -#Momentum Flux, V-Component (m) -'502683' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502684 -#Wind mixing energy -'502684' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502685 -#Image data -'502685' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502686 -#Geopotential height -'502686' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502687 -#Column-integrated Soil Moisture -'502687' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502688 -#Soil Temperature -'502688' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502689 -#Snow Depth water equivalent -'502689' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502690 -#Snow depth water equivalent -'502690' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502691 -#Total Cloud Cover -'502691' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502692 -#Total Precipitation (Accumulation) -'502692' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502693 -#Potential temperature -'502693' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502694 -#Ice divergence -'502694' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502695 -#Ice divergence -'502695' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502696 -#Ice divergence -'502696' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502697 -#Velocity potential -'502697' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502750 -#Stream function -'502750' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'503063' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'503064' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503098 -#Vertical Velocity (Geometric) (w) -'503098' = { - table2Version = 3 ; - indicatorOfParameter = 40 ; - } - -#paramId: 503099 -#Fog_fraction -'503099' = { - table2Version = 3 ; - indicatorOfParameter = 138 ; - } - -#paramId: 503100 -#accumulated_convective_rain -'503100' = { - table2Version = 3 ; - indicatorOfParameter = 140 ; - } - -#paramId: 503101 -#cloud_fraction_below_1000ft -'503101' = { - table2Version = 3 ; - indicatorOfParameter = 207 ; - } - -#paramId: 503103 -#Lowest_cloud_base_height -'503103' = { - table2Version = 3 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503104 -#wet_bulb_freezing_level_ht -'503104' = { - table2Version = 3 ; - indicatorOfParameter = 152 ; - } - -#paramId: 503105 -#freezing_level_ICAO_height -'503105' = { - table2Version = 3 ; - indicatorOfParameter = 162 ; - } - -#paramId: 503140 -#orography -'503140' = { - table2Version = 3 ; - indicatorOfParameter = 148 ; - } - -#paramId: 503141 -#wind_gust_10m -'503141' = { - table2Version = 3 ; - indicatorOfParameter = 149 ; - } - -#paramId: 503350 -#relative vorticity -'503350' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'500090' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'500091' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'500092' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'500093' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'500094' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'500095' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500096 -#Sunshine duration in h -'500096' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500097 -#Stomatal Resistance -'500097' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500098 -#Cloud cover -'500098' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'500099' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'500100' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'500101' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500102 -#Rain mixing ratio -'500102' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500103 -#Snow mixing ratio -'500103' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500104 -#Total column integrated rain -'500104' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500105 -#Total column integrated snow -'500105' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500106 -#Grauple -'500106' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500107 -#Total column integrated grauple -'500107' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'500108' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500109 -#vertical integral of divergence of total water content (s) -'500109' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500110 -#subgrid scale cloud water -'500110' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500111 -#subgridscale cloud ice -'500111' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500112 -#cloud cover CH (0..8) -'500112' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500113 -#cloud cover CM (0..8) -'500113' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500114 -#cloud cover CL (0..8) -'500114' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500115 -#cloud base above msl, shallow convection -'500115' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500116 -#Cloud top above msl, shallow convection -'500116' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500117 -#specific cloud water content, convective cloud -'500117' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'500118' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'500119' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500120 -#base index (vertical level) of main convective cloud (i) -'500120' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500121 -#top index (vertical level) of main convective cloud (i) -'500121' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'500122' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'500123' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500124 -#zonal wind tendency due to convection -'500124' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500125 -#meridional wind tendency due to convection -'500125' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'500126' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'500127' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'500128' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'500129' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500130 -#tendency of specific cloud ice content due to convection -'500130' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'500131' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500132 -#Large scale rain rate -'500132' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'500133' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'500134' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500135 -#Convective rain rate -'500135' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'500136' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500137 -#Convective rain -'500137' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'500138' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'500139' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipation -'500140' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'500141' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation -'500142' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'500143' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation -'500144' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'500145' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'500146' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500147 -#Snow density -'500147' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500148 -#Pressure perturbation -'500148' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) -'500149' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500150 -#supercell detection index 2 (only rot. up drafts) -'500150' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'500151' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'500152' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'500153' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'500154' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'500155' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'500156' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500157 -#Kinetic Energy -'500157' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'500158' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'500159' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'500160' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'500161' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'500162' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500163 -#mixed layer depth -'500163' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500164 -#maximum Wind 10m -'500164' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'500166' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'500167' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'500168' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'500169' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'500170' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'500171' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'500172' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500173 -#Base reflectivity -'500173' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'500174' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'500175' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } - -#paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart -'500176' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'500177' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500178 -#sum of contributions to evaporation -'500178' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500179 -#total transpiration from all soil layers -'500179' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500180 -#total forcing at soil surface -'500180' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500181 -#residuum of soil moisture -'500181' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500182 -#Massflux at convective cloud base -'500182' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'500183' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500184 -#moisture convergence for Kuo-type closure -'500184' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500185 -#Total Wave Direction -'500185' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500187 -#Peak period of total swell -'500187' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500189 -#Swell peak period -'500189' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500190 -#Total wave peak period -'500190' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500191 -#Total wave mean period -'500191' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500192 -#Total Tm1 period -'500192' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500193 -#Total Tm2 period -'500193' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500194 -#Total directional spread -'500194' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) -'500195' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'500196' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'500197' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500198 -#zonal wind tendency due to subgrid scale oro. -'500198' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500199 -#meridional wind tendency due to subgrid scale oro. -'500199' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'500200' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'500201' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'500202' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'500203' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500204 -#surface emissivity -'500204' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500205 -#soil type of grid (1...9, local soilType.table) -'500205' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500206 -#Leaf area index -'500206' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500207 -#root depth of vegetation -'500207' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500208 -#height of ozone maximum (climatological) -'500208' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500209 -#vertically integrated ozone content (climatological) -'500209' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'500210' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'500211' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500212 -#Max Leaf area index -'500212' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500213 -#Min Leaf area index -'500213' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'500214' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500215 -#variance of soil moisture content (0-10) -'500215' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500216 -#variance of soil moisture content (10-100) -'500216' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500217 -#evergreen forest -'500217' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500218 -#deciduous forest -'500218' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'500219' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'500220' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500221' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500222 -#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500222' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'500223' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'500224' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'500225' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'500226' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500227 -#Organic aerosol -'500227' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'500228' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500229 -#Black carbon aerosol -'500229' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'500230' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500231 -#Sea salt aerosol -'500231' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'500232' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500233 -#tendency of specific humidity -'500233' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500234 -#water vapor flux -'500234' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500235 -#Coriolis parameter -'500235' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500236 -#geographical latitude -'500236' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500237 -#geographical longitude -'500237' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500239 -#Delay of the GPS signal trough the (total) atm. -'500239' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500240 -#Delay of the GPS signal trough wet atmos. -'500240' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500241 -#Delay of the GPS signal trough dry atmos. -'500241' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'500242' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'500243' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'500244' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'500245' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'500246' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'500247' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'500248' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'500249' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500250 -#I131 - dry deposition -'500250' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500251 -#I131 - wet deposition -'500251' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'500252' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'500253' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'500255' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'500256' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'500257' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'500258' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'500259' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'500260' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'500261' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'500262' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'500263' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500264 -#TRACER - concentration -'500264' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'500265' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'500266' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'500267' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'500268' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'500269' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'500270' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500271 -#I131g - dry deposition -'500271' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500272 -#I131g - wet deposition -'500272' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'500273' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500274 -#I131o - dry deposition -'500274' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500275 -#I131o - wet deposition -'500275' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'500276' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'500277' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'500278' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500279 -#u-momentum flux due to SSO-effects -'500279' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500280 -#u-momentum flux due to SSO-effects -'500280' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500281 -#v-momentum flux due to SSO-effects (average) -'500281' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500282 -#v-momentum flux due to SSO-effects -'500282' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500283 -#Gravity wave dissipation (initialisation) -'500283' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'500284' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'500285' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500286 -#Vertical speed shear -'500286' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500287 -#storm relative helicity -'500287' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'500288' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) -'500289' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'500290' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'500291' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'500292' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'500293' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500294 -#geostrophische Schichtdickenadvektion -'500294' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'500295' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500296 -#Winddivergenz -'500296' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'500297' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'500298' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'500299' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'500300' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'500301' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500302 -#KO index -'500302' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'500303' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500304 -#Ceiling -'500304' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'500305' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500306 -#modified cloud depth for media -'500306' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500307 -#modified cloud cover for media -'500307' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'500308' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'500309' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'500310' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'500311' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'500312' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'500313' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'500314' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'500315' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'500316' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'500317' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'500318' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'500319' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'500320' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'500321' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500322 -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'500322' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500323 -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'500323' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'500324' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'500325' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'500326' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'500327' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'500328' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'500329' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'500330' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'500331' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'500332' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'500333' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'500334' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'500335' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'500336' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'500337' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'500338' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'500339' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'500340' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'500341' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'500342' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'500343' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'500344' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'500345' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'500346' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'500347' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'500348' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'500349' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'500350' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'500351' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'500352' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'500353' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'500354' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'500355' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'500356' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'500357' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'500358' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'500359' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'500360' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'500361' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'500362' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'500363' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'500364' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'500365' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'500366' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'500367' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'500368' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'500369' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'500370' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'500371' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'500372' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'500373' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'500374' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'500375' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'500376' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'500377' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'500378' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'500379' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'500380' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'500381' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'500382' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'500383' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'500384' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'500385' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'500386' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'500387' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'500388' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500402 -#Max 2m Temperature long periods > h -'500402' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500403 -#Min 2m Temperature long periods > h -'500403' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500408 -#Large scale rain (Accumulation) Initialisation -'500408' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500410 -#Convective rain Initialisation -'500410' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500412 -#maximum Wind 10m Initialisation -'500412' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 10 ; - } - -#paramId: 500432 -#Photosynthetically active radiation -'500432' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500433 -#Large scale rain (Accumulation) Initialisation -'500433' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500434 -#Convective rain Initialisation -'500434' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500436 -#Graupel (snow pellets) precipitation (Initialisation) -'500436' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'500437' = { - table2Version = 208 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'500438' = { - table2Version = 208 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'500439' = { - table2Version = 208 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'500440' = { - table2Version = 208 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'500441' = { - table2Version = 208 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'500442' = { - table2Version = 208 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'500443' = { - table2Version = 208 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'500444' = { - table2Version = 208 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'500445' = { - table2Version = 208 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'500446' = { - table2Version = 208 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'500447' = { - table2Version = 208 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'500448' = { - table2Version = 208 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'500449' = { - table2Version = 208 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'500450' = { - table2Version = 208 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'500451' = { - table2Version = 208 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'500452' = { - table2Version = 208 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'500453' = { - table2Version = 208 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'500454' = { - table2Version = 208 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'500455' = { - table2Version = 208 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'500456' = { - table2Version = 208 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'500457' = { - table2Version = 208 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'500458' = { - table2Version = 208 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'500459' = { - table2Version = 208 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'500460' = { - table2Version = 208 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'500461' = { - table2Version = 208 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'500462' = { - table2Version = 208 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'500463' = { - table2Version = 208 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'500464' = { - table2Version = 208 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'500465' = { - table2Version = 202 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'500466' = { - table2Version = 202 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'500467' = { - table2Version = 202 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'500468' = { - table2Version = 202 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500469 -#Total ozone -'500469' = { - table2Version = 202 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'500471' = { - table2Version = 202 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500472 -#Konvektionsart (0..4) -'500472' = { - table2Version = 203 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500473 -#perceived temperature -'500473' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500476 -#Water temperature in C -'500476' = { - table2Version = 203 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'500478' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500479 -#value of isolation of clothes -'500479' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'500480' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux -'500481' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'500482' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500486 -#vertical integral of divergence of total water content (s) -'500486' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500487 -#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation -'500487' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500488 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'500488' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500489 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'500489' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500490 -#Water Fraction -'500490' = { - table2Version = 202 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500491 -#Lake depth -'500491' = { - table2Version = 201 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500492 -#Wind fetch -'500492' = { - table2Version = 201 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'500493' = { - table2Version = 201 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'500494' = { - table2Version = 201 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'500495' = { - table2Version = 201 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'500496' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'500497' = { - table2Version = 201 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'500498' = { - table2Version = 201 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500499 -#Mixed-layer depth -'500499' = { - table2Version = 201 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'500500' = { - table2Version = 201 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'500501' = { - table2Version = 201 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'500502' = { - table2Version = 201 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500503 -#Icing Base (hft) - Prognose Icing Degree Composit -'500503' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Prognose Icing Degree Composit -'500504' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Prognose Icing Degree Composit -'500505' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500506 -#Icing Top (hft) - Prognose Icing Degree Composit -'500506' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit -'500507' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit -'500508' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500509 -#Icing Base (hft) - Prognose Icing Scenario Composit -'500509' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit -'500510' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit -'500511' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500512 -#Icing Top (hft) - Prognose Icing Scenario Composit -'500512' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit -'500513' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit -'500514' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500515 -#Icing Base (hft) - Diagnose Icing Degree Composit -'500515' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Diagnose Icing Degree Composit -'500516' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Diagnose Icing Degree Composit -'500517' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500518 -#Icing Top (hft) - Diagnose Icing Degree Composit -'500518' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit -'500519' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit -'500520' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500521 -#Icing Base (hft) - Diagnose Icing Scenario Composit -'500521' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit -'500522' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit -'500523' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500524 -#Icing Top (hft) - Diagnose Icing Scenario Composit -'500524' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit -'500525' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit -'500526' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500527 -#Prognose Icing Degree Code (1=light,2=moderate,3=severe) -'500527' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500528 -#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'500528' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500529 -#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) -'500529' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500530 -#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'500530' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'500531' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500541 -#relative vorticity,U-component -'500541' = { - table2Version = 202 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500542 -#relative vorticity,V-component -'500542' = { - table2Version = 202 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'500550' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'500551' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'500552' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'500553' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'500554' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'500555' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'500556' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'500557' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'500558' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'500559' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'500560' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500562 -#Divergenz -'500562' = { - table2Version = 203 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'500563' = { - table2Version = 203 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500564 -#Divergenz Qn -'500564' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500565 -#Divergenz Qs -'500565' = { - table2Version = 203 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500566 -#Frontogenesis function -'500566' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'500567' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500570 -#dry convection top index -'500570' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500571 -#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 -'500571' = { - table2Version = 201 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500572 -#tidal tendencies -'500572' = { - table2Version = 202 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'500573' = { - table2Version = 202 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'500574' = { - table2Version = 202 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500575 -#3 hour pressure change -'500575' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500576 -#covariance of soil moisture content (0-10) -'500576' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'500585' = { - table2Version = 204 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500586 -#Ellrod Index -'500586' = { - table2Version = 204 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500592 -#Geopotential height -'500592' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500600 -#Prob Windboeen > 25 kn -'500600' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500601 -#Prob Windboeen > 27 kn -'500601' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500602 -#Prob Sturmboeen > 33 kn -'500602' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500603 -#Prob Sturmboeen > 40 kn -'500603' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500604 -#Prob Schwere Sturmboeen > 47 kn -'500604' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500605 -#Prob Orkanartige Boeen > 55 kn -'500605' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500606 -#Prob Orkanboeen > 63 kn -'500606' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500607 -#Prob Oberoertliche Orkanboeen > 75 kn -'500607' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500608 -#Prob Starkregen > 10 mm -'500608' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500609 -#Prob Heftiger Starkregen > 25 mm -'500609' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500610 -#Prob Extrem Heftiger Starkregen > 50 mm -'500610' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500611 -#Prob Leichter Schneefall > 0,1 mm -'500611' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500612 -#Prob Leichter Schneefall > 0,1 cm -'500612' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500613 -#Prob Leichter Schneefall > 0,5 cm -'500613' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500614 -#Prob Leichter Schneefall > 1 cm -'500614' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500615 -#Prob Schneefall > 5 cm -'500615' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500616 -#Prob Starker Schneefall > 10 cm -'500616' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500617 -#Prob Extrem starker Schneefall > 25 cm -'500617' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500618 -#Prob Frost -'500618' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500619 -#Prob Strenger Frost -'500619' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500620 -#Prob Gewitter -'500620' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'500621' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'500622' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500623 -#Prob Dauerregen -'500623' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'500624' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'500625' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'500626' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'500627' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500628 -#Prob Glaette -'500628' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'500629' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500630 -#Prob Glatteis -'500630' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'500631' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500632 -#Prob Tauwetter -'500632' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'500633' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500634 -#wake-production of TKE due to sub grid scale orography -'500634' = { - table2Version = 201 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes -'500635' = { - table2Version = 201 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection -'500636' = { - table2Version = 201 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500638 -#Atmospheric Resistance -'500638' = { - table2Version = 201 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'500639' = { - table2Version = 201 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500640 -#mass concentration of dust (minimum mode) -'500640' = { - table2Version = 242 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500643 -#mass concentration of dust (medium mode) -'500643' = { - table2Version = 242 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500644 -#mass concentration of dust (maximum mode) -'500644' = { - table2Version = 242 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500645 -#number concentration of dust (minimum mode) -'500645' = { - table2Version = 242 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500646 -#number concentration of dust (medium mode) -'500646' = { - table2Version = 242 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500647 -#number concentration of dust (maximum mode) -'500647' = { - table2Version = 242 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500648 -#mass concentration of dust (sum of all modes) -'500648' = { - table2Version = 242 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500649 -#number concentration of dust (sum of all modes) -'500649' = { - table2Version = 242 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'500650' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'500651' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'500652' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'500654' = { - table2Version = 254 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'500655' = { - table2Version = 254 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'500656' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'500657' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'500658' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'500659' = { - table2Version = 254 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'500660' = { - table2Version = 254 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'500661' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'500662' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'500663' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'500664' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'500665' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'500666' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'500667' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'500668' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'500669' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'500670' = { - table2Version = 254 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'500671' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'500672' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'500673' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'500674' = { - table2Version = 254 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'500675' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'500676' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'500677' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'500678' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'500679' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'500680' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'500681' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'500682' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'500683' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'500684' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'500685' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'500686' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'500687' = { - table2Version = 254 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'500688' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'500689' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'500690' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'500691' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'500692' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'500693' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'500694' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'500695' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'500696' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'500697' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'500698' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'500699' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'500700' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'500701' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'500702' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'500703' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'500704' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'500705' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'500706' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'500707' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'500708' = { - table2Version = 254 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'500709' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'500710' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'500711' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'500712' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'500713' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'500714' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'500715' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'500716' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'500717' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'500718' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'500719' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'500720' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'500721' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'500722' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'500723' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'500724' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'500725' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'500726' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'500727' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'500728' = { - table2Version = 254 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'500729' = { - table2Version = 254 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'500730' = { - table2Version = 254 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'500731' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'500732' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'500733' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'500734' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'500735' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'500736' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'500737' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'500738' = { - table2Version = 254 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'500739' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'500740' = { - table2Version = 254 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'500741' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'500742' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'500743' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'500744' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'500745' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'500746' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'500747' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'500748' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'500749' = { - table2Version = 254 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'500750' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'500751' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'500752' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'500753' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'500754' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'500755' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'500756' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'500757' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'500758' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'500759' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'500760' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'500761' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'500762' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'500763' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'500764' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'500765' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'500766' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'500767' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'500768' = { - table2Version = 254 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'500769' = { - table2Version = 254 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'500770' = { - table2Version = 254 ; - indicatorOfParameter = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'500771' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'500772' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'500773' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'500774' = { - table2Version = 254 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'500775' = { - table2Version = 254 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'500776' = { - table2Version = 254 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'500777' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'500778' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'500793' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'500794' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'500795' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'500796' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'500797' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'500798' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'500799' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'500800' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'500801' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'500802' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'500803' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'500804' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'500805' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'500806' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'500807' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'500808' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'500809' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'500810' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'500811' = { - table2Version = 254 ; - indicatorOfParameter = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'500812' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'500813' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'500814' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'500815' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'500816' = { - table2Version = 254 ; - indicatorOfParameter = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'500817' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'500818' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'500819' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'500820' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'500821' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'500822' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'500823' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'500824' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'500825' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'500826' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'500827' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'500828' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'500829' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'500830' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'500831' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'500832' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'500833' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'500834' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'500835' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'500836' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'500837' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'500838' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'500839' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'500840' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'500841' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'500842' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'500843' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'500844' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'500845' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'500846' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'500847' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'500848' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'500849' = { - table2Version = 254 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'500850' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'500851' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'500852' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'500853' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'500854' = { - table2Version = 254 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'500855' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'500856' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'500857' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'500858' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'500859' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'500860' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'500861' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'500862' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'500863' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'500864' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'500865' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'500866' = { - table2Version = 254 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'500867' = { - table2Version = 254 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'500868' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'500869' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'500870' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'500871' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'500872' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'500873' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'500874' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'500875' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'500876' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'500877' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'500878' = { - table2Version = 254 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'500879' = { - table2Version = 254 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'500880' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'500881' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'500882' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'500883' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'500884' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'500885' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'500886' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'500887' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'500888' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'500889' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'500890' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'500891' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'500892' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'500893' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'500894' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'500895' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'500896' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'500897' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'500898' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'500899' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'500900' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'500901' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'500902' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'500903' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'500904' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'502307' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - timeRangeIndicator = 3 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'502308' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - } - -#paramId: 502336 -#Skin temperature -'502336' = { - table2Version = 202 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux -'502339' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502796 -#Precipitation -'502796' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'503049' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'503061' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'503062' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503065 -#u-momentum flux due to SSO-effects -'503065' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503066 -#v-momentum flux due to SSO-effects -'503066' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'503068' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; - } - -#paramId: 503069 -#precipitation,BRD -'503069' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'503070' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; - } - -#paramId: 503071 -#hail flag,BRD -'503071' = { - table2Version = 203 ; - indicatorOfParameter = 76 ; - } - -#paramId: 503072 -#snow rate,BRD -'503072' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; - } - -#paramId: 503073 -#snow rate, qualified,BRD -'503073' = { - table2Version = 204 ; - indicatorOfParameter = 46 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'503076' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503078 -#relative humidity over mixed phase -'503078' = { - table2Version = 250 ; - indicatorOfParameter = 20 ; - } - -#paramId: 503082 -#Friction Velocity -'503082' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'503134' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'503135' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'503136' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 4 ; - } - -#paramId: 503142 -#Lightning Potential Index -'503142' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'503286' = { - table2Version = 202 ; - indicatorOfParameter = 33 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'503287' = { - table2Version = 202 ; - indicatorOfParameter = 34 ; - } - -#paramId: 503325 -#Lightning Potential Index -'503325' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'503341' = { - table2Version = 203 ; - indicatorOfParameter = 35 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'503342' = { - table2Version = 203 ; - indicatorOfParameter = 36 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'503343' = { - table2Version = 203 ; - indicatorOfParameter = 37 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'503344' = { - table2Version = 201 ; - indicatorOfParameter = 49 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'503345' = { - table2Version = 201 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'503346' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'503347' = { - table2Version = 201 ; - indicatorOfParameter = 234 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'503348' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'503349' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'503421' = { - table2Version = 202 ; - indicatorOfParameter = 36 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'503422' = { - table2Version = 202 ; - indicatorOfParameter = 37 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'503425' = { - table2Version = 202 ; - indicatorOfParameter = 39 ; - } - diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def b/eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def deleted file mode 100755 index 3ee953db..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/shortName.def +++ /dev/null @@ -1,8992 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'PS' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500001 -#Pressure -'P' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'PMSL' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'DPSDT' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'FIS' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'FIF' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500006 -#Geopotential -'FI' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'HSURF' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'HHL' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'TO3' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500010 -#Temperature (G) -'T_G' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500011 -#2m Temperature -'T_2M' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'T_2M_AV' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'T_2M_CL' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500014 -#Temperature -'T' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'TMAX_2M' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'TMIN_2M' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'TD_2M' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'TD_2M_AV' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'DBZ_MAX' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500020 -#Wave spectra (1) -'WVSP1' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500021 -#Wave spectra (2) -'WVSP2' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500022 -#Wave spectra (3) -'WVSP3' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'DD_10M' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'DD' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'SP_10M' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'SP' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500027 -#U-Component of Wind -'U_10M' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'U' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500029 -#V-Component of Wind -'V_10M' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'V' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'OMEGA' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'W' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'QV_2M' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'QV' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500036 -#2m Relative Humidity -'RELHUM_2M' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'RELHUM' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'TQV' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500039 -#Evaporation (s) -'AEVAP_S' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'TQI' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'TOT_PREC' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'PREC_GSP' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'PREC_CON' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'W_SNOW' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500045 -#Snow Depth -'H_SNOW' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500046 -#Total Cloud Cover -'CLCT' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'CLC_CON' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'TQC' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'SNOW_CON' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'SNOW_GSP' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'FR_LAND' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'Z0' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'ALB_RAD' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'ALBEDO_B' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'T_CL' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'T_CL_LM' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'T_M' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'T_S' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'W_CL' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; - bottomLevel = 190 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'W_G1' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'W_G2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } - -#paramId: 500065 -#Plant cover -'PLCOV' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500066 -#Water Runoff -'RUNOFF_G' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'RUNOFF_S' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'FR_ICE' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'H_ICE' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'SWH' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500072 -#Direction of wind waves -'MDWW' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500073 -#Significant height of wind waves -'SHWW' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500074 -#Mean period of wind waves -'MPWW' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500075 -#Mean direction of total swell -'MDTS' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500076 -#Significant height of total swell -'SHTS' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500077 -#Mean period of total swell -'MPTS' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'SOBS_RAD' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'ATHB_S' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'THBS_RAD' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'ASOB_T' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'SOBT_RAD' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'ATHB_T' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'THBT_RAD' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'ALHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'ASHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'AUMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'AVMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'APAB_S' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'PABS_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'SOHR_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'THHR_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'ALHFL_BS' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'ALHFL_PL' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500096 -#Sunshine duration in h -'SUNSHHRS' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500097 -#Stomatal Resistance -'RSTOM' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500098 -#Cloud cover -'CLC' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'CLC_SGS' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'QC' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'QI' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500102 -#Rain mixing ratio -'QR' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500103 -#Snow mixing ratio -'QS' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500104 -#Total column integrated rain -'TQR' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500105 -#Total column integrated snow -'TQS' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500106 -#Grauple -'QG' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500107 -#Total column integrated grauple -'TQG' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'TWATER' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500109 -#vertical integral of divergence of total water content (s) -'TDIV_HUM' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500110 -#subgrid scale cloud water -'QC_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500111 -#subgridscale cloud ice -'QI_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500112 -#cloud cover CH (0..8) -'CLCH_8' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500113 -#cloud cover CM (0..8) -'CLCM_8' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500114 -#cloud cover CL (0..8) -'CLCL_8' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500115 -#cloud base above msl, shallow convection -'HBAS_SC' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500116 -#Cloud top above msl, shallow convection -'HTOP_SC' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500117 -#specific cloud water content, convective cloud -'CLW_CON' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'HBAS_CON' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'HTOP_CON' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500120 -#base index (vertical level) of main convective cloud (i) -'BAS_CON' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500121 -#top index (vertical level) of main convective cloud (i) -'TOP_CON' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'DT_CON' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'DQV_CON' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500124 -#zonal wind tendency due to convection -'DU_CON' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500125 -#meridional wind tendency due to convection -'DV_CON' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'HTOP_DC' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'HZEROCL' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'SNOWLMT' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'DQC_CON' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500130 -#tendency of specific cloud ice content due to convection -'DQI_CON' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'Q_SEDIM' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500132 -#Large scale rain rate -'PRR_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'PRS_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'RAIN_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500135 -#Convective rain rate -'PRR_CON' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'PRS_CON' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500137 -#Convective rain -'RAIN_CON' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'TOT_RAIN' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'TOT_SNOW' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipation -'DT_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'DQV_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation -'DQC_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'FRESHSNW' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation -'DQI_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'PRG_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'GRAU_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500147 -#Snow density -'RHO_SNOW' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500148 -#Pressure perturbation -'PP' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) -'SDI_1' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500150 -#supercell detection index 2 (only rot. up drafts) -'SDI_2' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'CAPE_MU' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'CIN_MU' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'CAPE_ML' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'CIN_ML' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'TKE_CON' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'TKETENS' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500157 -#Kinetic Energy -'KE' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'TKE' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'TKVM' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'TKVH' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'TCM' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'TCH' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500163 -#mixed layer depth -'MH' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500164 -#maximum Wind 10m -'VMAX_10M' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'T_SO' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'W_SO' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'W_SO_ICE' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'W_I' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'T_SNOW' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'RSMIN' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'T_ICE' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500173 -#Base reflectivity -'DBZ_850' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'DBZ' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'DBZ_CMAX' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } - -#paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart -'DTTDIV' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'SOTR_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500178 -#sum of contributions to evaporation -'EVATRA_SUM' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500179 -#total transpiration from all soil layers -'TRA_SUM' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500180 -#total forcing at soil surface -'TOTFORCE_S' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500181 -#residuum of soil moisture -'RESID_WSO' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500182 -#Massflux at convective cloud base -'MFLX_CON' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'CAPE_CON' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500184 -#moisture convergence for Kuo-type closure -'QCVG_CON' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500185 -#Total Wave Direction -'MWD' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500187 -#Peak period of total swell -'PPTS' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500189 -#Swell peak period -'PPWW' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500190 -#Total wave peak period -'PP1D' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500191 -#Total wave mean period -'TM10' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500192 -#Total Tm1 period -'TM01' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500193 -#Total Tm2 period -'TM02' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500194 -#Total directional spread -'SPRD' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) -'ANA_ERR_FI' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'ANA_ERR_U' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'ANA_ERR_V' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500198 -#zonal wind tendency due to subgrid scale oro. -'DU_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500199 -#meridional wind tendency due to subgrid scale oro. -'DV_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'SSO_STDH' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'SSO_GAMMA' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'SSO_THETA' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'SSO_SIGMA' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500204 -#surface emissivity -'EMIS_RAD' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500205 -#soil type of grid (1...9, local soilType.table) -'SOILTYP' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500206 -#Leaf area index -'LAI' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500207 -#root depth of vegetation -'ROOTDP' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500208 -#height of ozone maximum (climatological) -'HMO3' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500209 -#vertically integrated ozone content (climatological) -'VIO3' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'PLCOV_MX' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'PLCOV_MN' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500212 -#Max Leaf area index -'LAI_MX' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500213 -#Min Leaf area index -'LAI_MN' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'ORO_MOD' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500215 -#variance of soil moisture content (0-10) -'WVAR1' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500216 -#variance of soil moisture content (10-100) -'WVAR2' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500217 -#evergreen forest -'FOR_E' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500218 -#deciduous forest -'FOR_D' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'NDVI' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'NDVI_MAX' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'NDVI_MRAT' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500222 -#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'NDVIRATIO' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'AER_SO4' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'AER_SO412' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'AER_DUST' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'AER_DUST12' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500227 -#Organic aerosol -'AER_ORG' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'AER_ORG12' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500229 -#Black carbon aerosol -'AER_BC' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'AER_BC12' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500231 -#Sea salt aerosol -'AER_SS' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'AER_SS12' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500233 -#tendency of specific humidity -'DQVDT' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500234 -#water vapor flux -'QVSFLX' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500235 -#Coriolis parameter -'FC' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500236 -#geographical latitude -'RLAT' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500237 -#geographical longitude -'RLON' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500239 -#Delay of the GPS signal trough the (total) atm. -'ZTD' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500240 -#Delay of the GPS signal trough wet atmos. -'ZWD' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500241 -#Delay of the GPS signal trough dry atmos. -'ZHD' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'O3' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Ru-103' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Ru-103d' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Ru-103w' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Sr-90' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Sr-90d' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Sr-90w' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'I-131a' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500250 -#I131 - dry deposition -'I-131ad' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500251 -#I131 - wet deposition -'I-131aw' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Cs-137' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Cs-137d' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Te-132' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Te-132d' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Te-132w' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Zr-95' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Zr-95d' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Zr-95w' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Kr-85' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Kr-85d' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Kr-85w' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500264 -#TRACER - concentration -'Tr-2' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'Tr-2d' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'Tr-2w' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Xe-133' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Xe-133d' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Xe-133w' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'I-131g' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500271 -#I131g - dry deposition -'I-131gd' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500272 -#I131g - wet deposition -'I-131gw' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'I-131o' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500274 -#I131o - dry deposition -'I-131od' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500275 -#I131o - wet deposition -'I-131ow' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Ba-140' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Ba-140d' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Ba-140w' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500279 -#u-momentum flux due to SSO-effects -'AUSTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500280 -#u-momentum flux due to SSO-effects -'USTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500281 -#v-momentum flux due to SSO-effects (average) -'AVSTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500282 -#v-momentum flux due to SSO-effects -'VSTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500283 -#Gravity wave dissipation (initialisation) -'AVDIS_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'VDIS_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'UVI_MAX_CL' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500286 -#Vertical speed shear -'W_SHAER' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500287 -#storm relative helicity -'SRH' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'VABS' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) -'CL_TYP' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'CCL_GND' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'CCL_NN' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'WW' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'ADVORG' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500294 -#geostrophische Schichtdickenadvektion -'ADVOR' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'ADRTG' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500296 -#Winddivergenz -'WDIV' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'QVN' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'IPV' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'UP' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'VP' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'PTHETA' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500302 -#KO index -'KO' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'THETAE' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500304 -#Ceiling -'CEILING' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'ICE_GRD' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500306 -#modified cloud depth for media -'CLDEPTH' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500307 -#modified cloud cover for media -'CLCT_MOD' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'EFA-PS' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'EIA-PS' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'EFA-U' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'EIA-U' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'EFA-V' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'EIA-V' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'EFA-FI' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'EIA-FI' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'EFA-RH' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'EIA-RH' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'EFA-T' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'EIA-T' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'EFA-OM' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'EIA-OM' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500322 -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'EFA-KE' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500323 -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'EIA-KE' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'SYNME5_BT_CL' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'SYNME5_BT_CS' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'SYNME5_RAD_CL' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'SYNME5_RAD_CS' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'SYNME6_BT_CL' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'SYNME6_BT_CS' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'SYNME6_RAD_CL' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'SYNME6_RAD_CS' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'SYNME7_BT_CL_IR11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'SYNME7_BT_CL_WV6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'SYNME7_BT_CS_IR11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'SYNME7_BT_CS_WV6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'SYNME7_RAD_CL_IR11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'SYNME7_RAD_CL_WV6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'SYNME7_RAD_CS_IR11.5' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'SYNME7_RAD_CS_WV6.4' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_WV6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_WV7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_WV6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_WV7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_WV6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_WV7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR10.8' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR12.1' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR13.4' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR3.9' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR8.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR9.7' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_WV6.2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_WV7.3' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'T_2M_S' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'TMAX_2M_S' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'TMIN_2M_S' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'TD_2M_S' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'U_10M_S' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'V_10M_S' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'TOT_PREC_S' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'CLCT_S' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'CLCL_S' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'CLCM_S' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'CLCH_S' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'SNOW_GSP_S' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'T_S_S' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'VMAX_10M_S' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'TOT_PREC_C' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'SNOW_GSP_C' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'VMAX_10M_C' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'TOT_PREC_D' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500402 -#Max 2m Temperature long periods > h -'TMAX_2M_L' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500403 -#Min 2m Temperature long periods > h -'TMIN_2M_L' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500404 -#Total Precipitation (Accumulation) Initialisation -'TOT_PREC' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500408 -#Large scale rain (Accumulation) Initialisation -'RAIN_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500409 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'SNOW_GSP' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500410 -#Convective rain Initialisation -'RAIN_CON' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500411 -#Convective Snowfall water equivalent (s) Initialisation -'SNOW_CON' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500412 -#maximum Wind 10m Initialisation -'VMAX_10M' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 10 ; - } - -#paramId: 500416 -#Evaporation (s) Initialisation -'AEVAP_S' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500417 -#Max 2m Temperature (i) Initialisation -'TMAX_2M' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500418 -#Min 2m Temperature (i) Initialisation -'TMIN_2M' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'ASOB_T' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'ATHB_T' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'ATHB_S' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500423 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'SNOW_GSP' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500424 -#Convective Snowfall water equivalent (s) Initialisation -'SNOW_CON' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500425 -#Total Precipitation (Accumulation) Initialisation -'TOT_PREC' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500428 -#Latent Heat Net Flux (m) Initialisation -'ALHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500429 -#Sensible Heat Net Flux (m) Initialisation -'ASHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500430 -#Momentum Flux, U-Component (m) Initialisation -'AUMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500431 -#Momentum Flux, V-Component (m) Initialisation -'AVMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500432 -#Photosynthetically active radiation -'APAB_S' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500433 -#Large scale rain (Accumulation) Initialisation -'RAIN_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500434 -#Convective rain Initialisation -'RAIN_CON' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500436 -#Graupel (snow pellets) precipitation (Initialisation) -'GRAU_GSP' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'W_SKRR_01' = { - table2Version = 208 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'U_SKRRH_01' = { - table2Version = 208 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'W_SKRR_06' = { - table2Version = 208 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'U_SKRRH_06' = { - table2Version = 208 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'W_DRR_12' = { - table2Version = 208 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'U_DRRER_12' = { - table2Version = 208 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'E_DR_12' = { - table2Version = 208 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'W_SFL_06' = { - table2Version = 208 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'W_SF_06' = { - table2Version = 208 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'U_SFSK_06' = { - table2Version = 208 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'W_SFL_12' = { - table2Version = 208 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'W_SF_12' = { - table2Version = 208 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'U_SFSK_12' = { - table2Version = 208 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'E_SF_12' = { - table2Version = 208 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'W_WND_01' = { - table2Version = 208 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'W_STM_01' = { - table2Version = 208 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'W_STMSW_01' = { - table2Version = 208 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'U_ORKAR_01' = { - table2Version = 208 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'U_ORK_01' = { - table2Version = 208 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'E_ORK_01' = { - table2Version = 208 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'W_GLEIS_01' = { - table2Version = 208 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'W_GEW_01' = { - table2Version = 208 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'W_GEWSK_01' = { - table2Version = 208 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'U_GEWSW_01' = { - table2Version = 208 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'W_SVW_12' = { - table2Version = 208 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'U_SVWSK_12' = { - table2Version = 208 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'W_FR_01' = { - table2Version = 208 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'W_FRSTR_06' = { - table2Version = 208 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'UVI_CS_COR' = { - table2Version = 202 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'UVI_B_CS' = { - table2Version = 202 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'UVI_CL_COR' = { - table2Version = 202 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'UVI_MAX_CS' = { - table2Version = 202 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500469 -#Total ozone -'TOT_O3' = { - table2Version = 202 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'UVI_MAX_H' = { - table2Version = 202 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500472 -#Konvektionsart (0..4) -'C_TYPE' = { - table2Version = 203 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500473 -#perceived temperature -'PT1M' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500475 -#Water temperature -'T_SEA' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500476 -#Water temperature in C -'T_SEA_C' = { - table2Version = 203 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500477 -#Absolute Vorticity -'ABSV' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'SUL_PROB' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500479 -#value of isolation of clothes -'CLO' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'ASWDIR_S' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux -'ASWDIFD_S' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'ASWDIFU_S' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500486 -#vertical integral of divergence of total water content (s) -'TDIV_HUM' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500487 -#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation -'ASWDIR_S' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500488 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'ASWDIFD_S' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500489 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'ASWDIFU_S' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500490 -#Water Fraction -'FR_LAKE' = { - table2Version = 202 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500491 -#Lake depth -'DEPTH_LK' = { - table2Version = 201 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500492 -#Wind fetch -'FETCH_LK' = { - table2Version = 201 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'GAMSO_LK' = { - table2Version = 201 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'DP_BS_LK' = { - table2Version = 201 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'T_BS_LK' = { - table2Version = 201 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'T_MNW_LK' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'T_WML_LK' = { - table2Version = 201 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'T_BOT_LK' = { - table2Version = 201 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500499 -#Mixed-layer depth -'H_ML_LK' = { - table2Version = 201 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'C_T_LK' = { - table2Version = 201 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'T_B1_LK' = { - table2Version = 201 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'H_B1_LK' = { - table2Version = 201 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500503 -#Icing Base (hft) - Prognose Icing Degree Composit -'PIDC_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Prognose Icing Degree Composit -'PIDC_MAX_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Prognose Icing Degree Composit -'PIDC_MAX_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500506 -#Icing Top (hft) - Prognose Icing Degree Composit -'PIDC_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit -'PIDC_VERT_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit -'PIDC_MAX_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500509 -#Icing Base (hft) - Prognose Icing Scenario Composit -'PISC_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit -'PISC_SIG_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit -'PISC_SIG_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500512 -#Icing Top (hft) - Prognose Icing Scenario Composit -'PISC_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit -'PISC_VERT_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit -'PISC_SIG_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500515 -#Icing Base (hft) - Diagnose Icing Degree Composit -'DIDC_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Diagnose Icing Degree Composit -'DIDC_MAX_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Diagnose Icing Degree Composit -'DIDC_MAX_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500518 -#Icing Top (hft) - Diagnose Icing Degree Composit -'DIDC_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit -'DIDC_VERT_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit -'DIDC_MAX_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500521 -#Icing Base (hft) - Diagnose Icing Scenario Composit -'DISC_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit -'DISC_SIG_BASE_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit -'DISC_SIG_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500524 -#Icing Top (hft) - Diagnose Icing Scenario Composit -'DISC_TOP_HFT' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit -'DISC_VERT_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit -'DISC_SIG_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500527 -#Prognose Icing Degree Code (1=light,2=moderate,3=severe) -'PID_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500528 -#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'PIS_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500529 -#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) -'DID_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500530 -#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'DIS_CODE' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'WW_0-9' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500541 -#relative vorticity,U-component -'VORTIC_U' = { - table2Version = 202 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500542 -#relative vorticity,V-component -'VORTIC_V' = { - table2Version = 202 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500543 -#vertical vorticity -'VORTIC_W' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500544 -#Potential vorticity -'POT_VORTIC' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500545 -#Density -'DEN' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'PREC_CON_D' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'PVP' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'VORG' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'FORCOMEGA' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'QVX' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'QVY' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'DIVGEO' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'QVNGEO' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'QVSGEO' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'DIVQNGEO' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'DIVQSGEO' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'FRONTO' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500562 -#Divergenz -'DIVQ' = { - table2Version = 203 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'QVS' = { - table2Version = 203 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500564 -#Divergenz Qn -'DIVQN' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500565 -#Divergenz Qs -'DIVQS' = { - table2Version = 203 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500566 -#Frontogenesis function -'FRONTOF' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'CATIX' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500568 -#Geopotential height -'GH' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500569 -#Relative Divergenz -'RDIV' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500570 -#dry convection top index -'TOP_DCON' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500571 -#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 -'FE1' = { - table2Version = 201 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500572 -#tidal tendencies -'TIDAL' = { - table2Version = 202 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'SST_IC' = { - table2Version = 202 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'LNPS' = { - table2Version = 202 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500575 -#3 hour pressure change -'PPP' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500576 -#covariance of soil moisture content (0-10) -'WCOV1' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'T_S_L' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'W_G3' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 7 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'W_G4' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 7 ; - bottomLevel = 50 ; - } - -#paramId: 500582 -#Max 2m Temperature (i) Initialisation -'TMAX_2M' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500583 -#Min 2m Temperature (i) Initialisation -'TMIN_2M' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'EDP' = { - table2Version = 204 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500586 -#Ellrod Index -'ELD' = { - table2Version = 204 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500588 -#Snow melt -'SNOW_MELT' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'ICAHT' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500592 -#Geopotential height -'GH_10GPM' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500593 -#Global radiation flux -'GRAD' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500600 -#Prob Windboeen > 25 kn -'FX25' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500601 -#Prob Windboeen > 27 kn -'FX27' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500602 -#Prob Sturmboeen > 33 kn -'FX33' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500603 -#Prob Sturmboeen > 40 kn -'FX40' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500604 -#Prob Schwere Sturmboeen > 47 kn -'FX47' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500605 -#Prob Orkanartige Boeen > 55 kn -'FX55' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500606 -#Prob Orkanboeen > 63 kn -'FX63' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500607 -#Prob Oberoertliche Orkanboeen > 75 kn -'FX75' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500608 -#Prob Starkregen > 10 mm -'SH10' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500609 -#Prob Heftiger Starkregen > 25 mm -'SH25' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500610 -#Prob Extrem Heftiger Starkregen > 50 mm -'SH50' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500611 -#Prob Leichter Schneefall > 0,1 mm -'SN00' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500612 -#Prob Leichter Schneefall > 0,1 cm -'SN001' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500613 -#Prob Leichter Schneefall > 0,5 cm -'SN005' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500614 -#Prob Leichter Schneefall > 1 cm -'SN01' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500615 -#Prob Schneefall > 5 cm -'SN05' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500616 -#Prob Starker Schneefall > 10 cm -'SN10' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500617 -#Prob Extrem starker Schneefall > 25 cm -'SN25' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500618 -#Prob Frost -'TN00' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500619 -#Prob Strenger Frost -'TN10' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500620 -#Prob Gewitter -'TS' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'TSX' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'TSXX' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500623 -#Prob Dauerregen -'RA25' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'RA40' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'RA70' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'BLSN6' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'BLSN8' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500628 -#Prob Glaette -'FZ' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'FZRA' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500630 -#Prob Glatteis -'FZRAX' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'FG' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500632 -#Prob Tauwetter -'TAU' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'TAUX' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500634 -#wake-production of TKE due to sub grid scale orography -'DTKE_SSO' = { - table2Version = 201 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes -'DTKE_HSH' = { - table2Version = 201 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection -'DTKE_CON' = { - table2Version = 201 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500638 -#Atmospheric Resistance -'ATM_RSTC' = { - table2Version = 201 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'HTOP_THERM' = { - table2Version = 201 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500640 -#mass concentration of dust (minimum mode) -'VSOILA' = { - table2Version = 242 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500642 -#Lapse rate -'LAPSE_RATE' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500643 -#mass concentration of dust (medium mode) -'VSOILB' = { - table2Version = 242 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500644 -#mass concentration of dust (maximum mode) -'VSOILC' = { - table2Version = 242 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500645 -#number concentration of dust (minimum mode) -'VSOILA0' = { - table2Version = 242 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500646 -#number concentration of dust (medium mode) -'VSOILB0' = { - table2Version = 242 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500647 -#number concentration of dust (maximum mode) -'VSOILC0' = { - table2Version = 242 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500648 -#mass concentration of dust (sum of all modes) -'VSOILS' = { - table2Version = 242 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500649 -#number concentration of dust (sum of all modes) -'VSOILS0' = { - table2Version = 242 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'DUMMY_1' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'DUMMY_2' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'DUMMY_3' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'DUMMY_4' = { - table2Version = 254 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'DUMMY_5' = { - table2Version = 254 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'DUMMY_6' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'DUMMY_7' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'DUMMY_8' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'DUMMY_9' = { - table2Version = 254 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'DUMMY_10' = { - table2Version = 254 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'DUMMY_11' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'DUMMY_12' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'DUMMY_13' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'DUMMY_14' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'DUMMY_15' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'DUMMY_16' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'DUMMY_17' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'DUMMY_18' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'DUMMY_19' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'DUMMY_20' = { - table2Version = 254 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'DUMMY_21' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'DUMMY_22' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'DUMMY_23' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'DUMMY_24' = { - table2Version = 254 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'DUMMY_25' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'DUMMY_26' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'DUMMY_27' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'DUMMY_28' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'DUMMY_29' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'DUMMY_30' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'DUMMY_31' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'DUMMY_32' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'DUMMY_33' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'DUMMY_34' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'DUMMY_35' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'DUMMY_36' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'DUMMY_37' = { - table2Version = 254 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'DUMMY_38' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'DUMMY_39' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'DUMMY_40' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'DUMMY_41' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'DUMMY_42' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'DUMMY_43' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'DUMMY_44' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'DUMMY_45' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'DUMMY_46' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'DUMMY_47' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'DUMMY_48' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'DUMMY_49' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'DUMMY_50' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'DUMMY_51' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'DUMMY_52' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'DUMMY_53' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'DUMMY_54' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'DUMMY_55' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'DUMMY_56' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'DUMMY_57' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'DUMMY_58' = { - table2Version = 254 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'DUMMY_59' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'DUMMY_60' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'DUMMY_61' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'DUMMY_62' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'DUMMY_63' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'DUMMY_64' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'DUMMY_65' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'DUMMY_66' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'DUMMY_67' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'DUMMY_68' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'DUMMY_69' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'DUMMY_70' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'DUMMY_71' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'DUMMY_72' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'DUMMY_73' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'DUMMY_74' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'DUMMY_75' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'DUMMY_76' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'DUMMY_77' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'DUMMY_78' = { - table2Version = 254 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'DUMMY_79' = { - table2Version = 254 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'DUMMY_80' = { - table2Version = 254 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'DUMMY_81' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'DUMMY_82' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'DUMMY_83' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'DUMMY_84' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'DUMMY_85' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'DUMMY_86' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'DUMMY_87' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'DUMMY_88' = { - table2Version = 254 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'DUMMY_89' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'DUMMY_90' = { - table2Version = 254 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'DUMMY_91' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'DUMMY_92' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'DUMMY_93' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'DUMMY_94' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'DUMMY_95' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'DUMMY_96' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'DUMMY_97' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'DUMMY_98' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'DUMMY_99' = { - table2Version = 254 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'DUMMY_100' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'DUMMY_101' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'DUMMY_102' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'DUMMY_103' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'DUMMY_104' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'DUMMY_105' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'DUMMY_106' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'DUMMY_107' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'DUMMY_108' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'DUMMY_109' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'DUMMY_110' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'DUMMY_111' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'DUMMY_112' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'DUMMY_113' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'DUMMY_114' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'DUMMY_115' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'DUMMY_116' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'DUMMY_117' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'DUMMY_118' = { - table2Version = 254 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'DUMMY_119' = { - table2Version = 254 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'DUMMY_120' = { - table2Version = 254 ; - indicatorOfParameter = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'DUMMY_121' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'DUMMY_122' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'DUMMY_123' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'DUMMY_124' = { - table2Version = 254 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'DUMMY_125' = { - table2Version = 254 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'DUMMY_126' = { - table2Version = 254 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'DUMMY_127' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'DUMMY_128' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'DUMMY_143' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'DUMMY_144' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'DUMMY_145' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'DUMMY_146' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'DUMMY_147' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'DUMMY_148' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'DUMMY_149' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'DUMMY_150' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'DUMMY_151' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'DUMMY_152' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'DUMMY_153' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'DUMMY_154' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'DUMMY_155' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'DUMMY_156' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'DUMMY_157' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'DUMMY_158' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'DUMMY_159' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'DUMMY_160' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'DUMMY_161' = { - table2Version = 254 ; - indicatorOfParameter = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'DUMMY_162' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'DUMMY_163' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'DUMMY_164' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'DUMMY_165' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'DUMMY_166' = { - table2Version = 254 ; - indicatorOfParameter = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'DUMMY_167' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'DUMMY_168' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'DUMMY_169' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'DUMMY_170' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'DUMMY_171' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'DUMMY_172' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'DUMMY_173' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'DUMMY_174' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'DUMMY_175' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'DUMMY_176' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'DUMMY_177' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'DUMMY_178' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'DUMMY_179' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'DUMMY_180' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'DUMMY_181' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'DUMMY_182' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'DUMMY_183' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'DUMMY_184' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'DUMMY_185' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'DUMMY_186' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'DUMMY_187' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'DUMMY_188' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'DUMMY_189' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'DUMMY_190' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'DUMMY_191' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'DUMMY_192' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'DUMMY_193' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'DUMMY_194' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'DUMMY_195' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'DUMMY_196' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'DUMMY_197' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'DUMMY_198' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'DUMMY_199' = { - table2Version = 254 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'DUMMY_200' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'DUMMY_201' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'DUMMY_202' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'DUMMY_203' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'DUMMY_204' = { - table2Version = 254 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'DUMMY_205' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'DUMMY_206' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'DUMMY_207' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'DUMMY_208' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'DUMMY_209' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'DUMMY_210' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'DUMMY_211' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'DUMMY_212' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'DUMMY_213' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'DUMMY_214' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'DUMMY_215' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'DUMMY_216' = { - table2Version = 254 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'DUMMY_217' = { - table2Version = 254 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'DUMMY_218' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'DUMMY_219' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'DUMMY_220' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'DUMMY_221' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'DUMMY_222' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'DUMMY_223' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'DUMMY_224' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'DUMMY_225' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'DUMMY_226' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'DUMMY_227' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'DUMMY_228' = { - table2Version = 254 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'DUMMY_229' = { - table2Version = 254 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'DUMMY_230' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'DUMMY_231' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'DUMMY_232' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'DUMMY_233' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'DUMMY_234' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'DUMMY_235' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'DUMMY_236' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'DUMMY_237' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'DUMMY_238' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'DUMMY_239' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'DUMMY_240' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'DUMMY_241' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'DUMMY_242' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'DUMMY_243' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'DUMMY_244' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'DUMMY_245' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'DUMMY_246' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'DUMMY_247' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'DUMMY_248' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'DUMMY_249' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'DUMMY_250' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'DUMMY_251' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'DUMMY_252' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'DUMMY_253' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'DUMMY_254' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'QV_S' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'ALB_DIF12' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - timeRangeIndicator = 3 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'ALB_DIF' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'LHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'SHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502333 -#salinity -'SALT_LK' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502334 -#Stream function -'STRF' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502335 -#Velocity potential -'VPOT' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502336 -#Skin temperature -'SKT' = { - table2Version = 202 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux -'SWDIRS_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502350 -#Temperature (G) -'T_G' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502355 -#Stream function -'STRF' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502356 -#Velocity potential -'VPOT' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502357 -#Wind speed (SP) -'SP' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502358 -#Pressure -'P' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502359 -#Potential vorticity -'POT_VORTIC' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502360 -#Potential vorticity -'POT_VORTIC' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502361 -#Geopotential -'FIS' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502362 -#Max 2m Temperature -'TMAX_2M' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502363 -#Min 2m Temperature -'TMIN_2M' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502364 -#Temperature -'T' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502365 -#U-Component of Wind -'U' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502366 -#Pressure (S) (not reduced) -'PS' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502367 -#V-Component of Wind -'V' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502368 -#Specific Humidity -'QV' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502369 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'OMEGA' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502370 -#vertical vorticity -'VORTIC_W' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502371 -#Sensible Heat Net Flux (m) -'ASHFL_S' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502372 -#Latent Heat Net Flux (m) -'ALHFL_S' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502373 -#Pressure Reduced to MSL -'PMSL' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502374 -#Relative Divergenz -'RDIV' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502375 -#Geopotential height -'GH' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502376 -#Relative Humidity -'RELHUM' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502377 -#U-Component of Wind -'U_10M' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502378 -#V-Component of Wind -'V_10M' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502379 -#2m Temperature -'T_2M' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502381 -#Land Cover (1=land, 0=sea) -'FR_LAND' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502382 -#Surface Roughness length Surface Roughness -'Z0' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502383 -#Albedo (in short-wave, average) -'ALBEDO_B' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502384 -#Evaporation (s) -'AEVAP_S' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502385 -#Convective Cloud Cover -'CLC_CON' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502386 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502387 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502388 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502389 -#Plant cover -'PLCOV' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502390 -#Water Runoff -'RUNOFF' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502391 -#Total Column Integrated Ozone -'TO3' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502392 -#Convective Snowfall water equivalent (s) -'SNOW_CON' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502393 -#Large-Scale snowfall - water equivalent (Accumulation) -'SNOW_GSP' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502394 -#Large-Scale Precipitation -'PREC_GSP' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502395 -#Total Column-Integrated Cloud Water -'TQC' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502396 -#Virtual Temperature -'VTMP' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502397 -#Virtual Temperature -'VTMP' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502398 -#Virtual Temperature -'VTMP' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502399 -#Brightness Temperature -'BTMP' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502400 -#Boundary Layer Dissipitation -'BLD' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502401 -#Pressure Tendency -'DPSDT' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502402 -#ICAO Standard Atmosphere reference height -'ICAHT' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502403 -#Geometric Height -'HSURF' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502404 -#Max Temperature -'TMAX' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502405 -#Min Temperature -'TMIN' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502406 -#Dew Point Temperature -'TD' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502407 -#Dew point depression(or deficit) -'DEPR' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502408 -#Lapse rate -'LAPSE_RATE' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502409 -#Visibility -'VIS' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502410 -#Radar spectra (1) -'DBZ_MAX' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502411 -#Radar spectra (2) -'RDSP2' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502412 -#Radar spectra (3) -'RDSP3' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502413 -#Parcel lifted index (to 500 hPa) -'PLI' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502414 -#Temperature anomaly -'TA' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502415 -#Pressure anomaly -'PRESA' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502416 -#Geopotential height anomaly -'GPA' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502417 -#Wave spectra (1) -'WVSP1' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502418 -#Wave spectra (2) -'WVSP2' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502419 -#Wave spectra (3) -'WVSP3' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502420 -#Wind Direction (DD) -'DD' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502421 -#Sigma coordinate vertical velocity -'SGCVV' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502422 -#Absolute Vorticity -'ABSV' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502423 -#Absolute divergence -'ABSD' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502424 -#Vertical u-component shear -'VUCSH' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502425 -#Vertical v-component shear -'VVCSH' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502426 -#Direction of current -'DIRC' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502427 -#Speed of current -'SPC' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502428 -#U-component of current -'UCURR' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502429 -#V-component of current -'VCURR' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502430 -#Humidity mixing ratio -'MIXR' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502431 -#Precipitable water -'TQV' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502432 -#Vapour pressure -'VP' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502433 -#Saturation deficit -'SATD' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502434 -#Precipitation rate -'PRATE' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502435 -#Thunderstorm probability -'TSTM' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502436 -#Convective precipitation (water) -'ACPCP' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502437 -#Snow fall rate water equivalent -'SRWEQ' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502438 -#Mixed layer depth -'MLD' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502439 -#Transient thermocline depth -'TTHDP' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502440 -#Main thermocline depth -'MTHD' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502441 -#Main thermocline depth -'MTHA' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502442 -#Best lifted index (to 500 hPa) -'BLI' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502443 -#Water temperature -'T_SEA' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502444 -#Deviation of sea-elbel from mean -'DSLM' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502445 -#Column-integrated Soil Moisture -'W_CL' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502446 -#salinity -'S' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502447 -#Density -'DEN' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502448 -#Sea Ice Cover ( 0= free, 1=cover) -'FR_ICE' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502449 -#sea Ice Thickness -'H_ICE' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502450 -#Direction of ice drift -'DICED' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502451 -#Speed of ice drift -'SICED' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502452 -#U-component of ice drift -'UICE' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502453 -#V-component of ice drift -'VICED' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502454 -#Ice growth rate -'ICEG' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502455 -#Snow melt -'SNOM' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502456 -#Significant height of combined wind waves and swell -'SWH' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502457 -#Direction of wind waves -'MDWW' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502458 -#Significant height of wind waves -'SHWW' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502459 -#Mean period of wind waves -'MPWW' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502460 -#Mean direction of total swell -'MDTS' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502461 -#Significant height of swell waves -'SHTS' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502462 -#Swell Mean Period -'MPTS' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502465 -#Secondary wave direction -'DIRSW' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502466 -#Secondary wave period -'SWP' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502467 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502468 -#Net long wave radiation flux (m) (at the surface) -'ATHB_S' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502469 -#Net short wave radiation flux -'ASOB_T' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502470 -#Net long-wave radiation flux(atmosph.top) -'NLWRT' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502471 -#Long wave radiation flux -'LWAVR' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502472 -#Short wave radiation flux -'SWAVR' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502473 -#Global radiation flux -'GRAD' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502474 -#Radiance (with respect to wave number) -'LWRAD' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502475 -#Radiance (with respect to wave length) -'SWRAD' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502476 -#Momentum Flux, U-Component (m) -'AUMFL_S' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502477 -#Momentum Flux, V-Component (m) -'AVMFL_S' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502478 -#Wind mixing energy -'WMIXE' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502479 -#Image data -'IMGD' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502480 -#Geopotential height -'OROG' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502481 -#Soil Temperature -'T_S' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502482 -#Snow Depth water equivalent -'H_SNOW' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502483 -#Snow depth water equivalent -'W_SNOW' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502484 -#Total Cloud Cover -'CLCT' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502485 -#Total Precipitation (Accumulation) -'TOT_PREC' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502486 -#Boundary Layer Dissipitation -'BLD' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502487 -#Sensible Heat Net Flux (m) -'ASHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502488 -#Latent Heat Net Flux (m) -'ALHFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502490 -#Evaporation (s) -'AEVAP_S' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502491 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502492 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502493 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502494 -#Brightness Temperature -'BTMP' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502495 -#Water Runoff -'RUNOFF' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502496 -#Geometric Height -'HSURF' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502497 -#Standard devation of height -'HSTDV' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502498 -#Standard devation of height -'HSTDV' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502499 -#Pseudo-adiabatic potential Temperature -'PAPT' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502500 -#Pseudo-adiabatic potential Temperature -'PAPT' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502501 -#Max Temperature -'TMAX' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502502 -#Min Temperature -'TMIN' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502503 -#Dew Point Temperature -'TD' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502504 -#Dew point depression(or deficit) -'DEPR' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502505 -#Visibility -'VIS' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502506 -#Radar spectra (2) -'RDSP2' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502507 -#Radar spectra (3) -'RDSP3' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502508 -#Parcel lifted index (to 500 hPa) -'PLI' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502509 -#Temperature anomaly -'TA' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502510 -#Pressure anomaly -'PRESA' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502511 -#Geopotential height anomaly -'GPA' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502512 -#Montgomery stream Function -'MNTSF' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502513 -#Montgomery stream Function -'MNTSF' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502514 -#Sigma coordinate vertical velocity -'SGCVV' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502515 -#Absolute divergence -'ABSD' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502516 -#Vertical u-component shear -'VUCSH' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502517 -#Vertical v-component shear -'VVCSH' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502518 -#Direction of current -'DIRC' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502519 -#Speed of current -'SPC' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502520 -#U-component of current -'UCURR' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502521 -#V-component of current -'VCURR' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502522 -#Humidity mixing ratio -'MIXR' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502523 -#Vapour pressure -'VP' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502524 -#Saturation deficit -'SATD' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502525 -#Precipitation rate -'PRATE' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502526 -#Thunderstorm probability -'TSTM' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502527 -#Convective precipitation (water) -'ACPCP' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502528 -#Snow fall rate water equivalent -'SRWEQ' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502529 -#Mixed layer depth -'MLD' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502530 -#Transient thermocline depth -'TTHDP' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502531 -#Main thermocline depth -'MTHD' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502532 -#Main thermocline depth -'MTHA' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502533 -#Best lifted index (to 500 hPa) -'BLI' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502534 -#Deviation of sea-elbel from mean -'DSLM' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502535 -#Column-integrated Soil Moisture -'W_CL' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502536 -#Direction of ice drift -'DICED' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502537 -#Speed of ice drift -'SICED' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502538 -#U-component of ice drift -'UICE' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502539 -#V-component of ice drift -'VICED' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502540 -#Ice growth rate -'ICEG' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502542 -#Snow melt -'SNOW' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502545 -#Secondary wave direction -'DIRSW' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502546 -#Secondary wave period -'SWP' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502547 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502548 -#Net long wave radiation flux (m) (at the surface) -'ATHB_S' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502549 -#Net short wave radiation flux -'ASOB_T' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502550 -#Net long-wave radiation flux(atmosph.top) -'NLWRT' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502551 -#Long wave radiation flux -'LWAVR' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502552 -#Short wave radiation flux -'SWAVR' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502553 -#Radiance (with respect to wave number) -'LWRAD' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502554 -#Radiance (with respect to wave length) -'SWRAD' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502555 -#Momentum Flux, U-Component (m) -'AUMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502556 -#Momentum Flux, V-Component (m) -'AVMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502557 -#Wind mixing energy -'WMIXE' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502558 -#Image data -'IMGD' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502559 -#Geopotential height -'OROG' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502560 -#Soil Temperature -'T_S' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502562 -#Potential temperature -'PT' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502563 -#Potential temperature -'PT' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502564 -#Wind speed (SP) -'SP' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502565 -#Pressure -'P' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502566 -#Max 2m Temperature -'TMAX_2M' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502567 -#Min 2m Temperature -'TMIN_2M' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502568 -#Geopotential -'FIS' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502569 -#Temperature -'T' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502570 -#U-Component of Wind -'U' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502571 -#V-Component of Wind -'V' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502572 -#Specific Humidity -'QV' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502573 -#Pressure (S) (not reduced) -'PS' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502574 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'OMEGA' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502575 -#vertical vorticity -'VORTIC_W' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502576 -#Boundary Layer Dissipitation -'BLD' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502577 -#Sensible Heat Net Flux (m) -'ASHFL_S' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502578 -#Latent Heat Net Flux (m) -'ALHFL_S' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502579 -#Pressure Reduced to MSL -'PMSL' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502581 -#Geopotential height -'GH' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502582 -#Relative Humidity -'RELHUM' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502583 -#U-Component of Wind -'U_10M' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502584 -#V-Component of Wind -'V_10M' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502585 -#2m Temperature -'T_2M' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502587 -#Relative Divergenz -'RDIV' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502588 -#Land Cover (1=land, 0=sea) -'FR_LAND' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502589 -#Surface Roughness length Surface Roughness -'Z0' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502590 -#Albedo (in short-wave, average) -'ALBEDO_B' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502591 -#Evaporation (s) -'AEVAP_S' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502592 -#Convective Cloud Cover -'CLC_CON' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502593 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502594 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502595 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502596 -#Brightness Temperature -'BTMP' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502597 -#Plant cover -'PLCOV' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502598 -#Water Runoff -'RUNOFF' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502599 -#Total Column Integrated Ozone -'TO3' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502600 -#Convective Snowfall water equivalent (s) -'SNOW_CON' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502601 -#Large-Scale snowfall - water equivalent (Accumulation) -'SNOW_GSP' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502602 -#Large-Scale Precipitation -'PREC_GSP' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502603 -#Total Column-Integrated Cloud Water -'TQC' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502604 -#Pressure Tendency -'DPSDT' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502605 -#ICAO Standard Atmosphere reference height -'ICAHT' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502606 -#Geometric Height -'HSURF' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502607 -#Standard devation of height -'HSTDV' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502608 -#Pseudo-adiabatic potential Temperature -'PAPT' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502609 -#Max Temperature -'TMAX' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502610 -#Min Temperature -'TMIN' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502611 -#Dew Point Temperature -'TD' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502612 -#Dew point depression(or deficit) -'DEPR' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502613 -#Lapse rate -'LAPSE_RATE' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502614 -#Visibility -'VIS' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502615 -#Radar spectra (1) -'DBZ_MAX' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502616 -#Radar spectra (2) -'RDSP2' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502617 -#Radar spectra (3) -'RDSP3' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502618 -#Parcel lifted index (to 500 hPa) -'PLI' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502619 -#Temperature anomaly -'TA' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502620 -#Pressure anomaly -'PRESA' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502621 -#Geopotential height anomaly -'GPA' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502622 -#Wave spectra (1) -'WVSP1' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502623 -#Wave spectra (2) -'WVSP2' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502624 -#Wave spectra (3) -'WVSP3' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502625 -#Wind Direction (DD) -'DD' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502626 -#Montgomery stream Function -'MNTSF' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502627 -#Sigma coordinate vertical velocity -'SGCVV' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502628 -#Absolute Vorticity -'ABSV' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502629 -#Absolute divergence -'ABSD' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502630 -#Vertical u-component shear -'VUCSH' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502631 -#Vertical v-component shear -'VVCSH' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502632 -#Direction of current -'DIRC' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502633 -#Speed of current -'SPC' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502634 -#U-component of current -'UCURR' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502635 -#V-component of current -'VCURR' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502636 -#Humidity mixing ratio -'MIXR' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502637 -#Precipitable water -'TQV' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502638 -#Vapour pressure -'VP' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502639 -#Saturation deficit -'SATD' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502640 -#Precipitation rate -'PRATE' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502641 -#Thunderstorm probability -'TSTM' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502642 -#Convective precipitation (water) -'ACPCP' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502643 -#Snow fall rate water equivalent -'SRWEQ' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502644 -#Mixed layer depth -'MLD' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502645 -#Transient thermocline depth -'TTHDP' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502646 -#Main thermocline depth -'MTHD' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502647 -#Main thermocline depth -'MTHA' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502648 -#Best lifted index (to 500 hPa) -'BLI' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502649 -#Water temperature -'T_SEA' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502650 -#Deviation of sea-elbel from mean -'DSLM' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502651 -#Column-integrated Soil Moisture -'W_CL' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502652 -#salinity -'S' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502653 -#Density -'DEN' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502654 -#Sea Ice Cover ( 0= free, 1=cover) -'FR_ICE' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502655 -#sea Ice Thickness -'H_ICE' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502656 -#Direction of ice drift -'DICED' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502657 -#Speed of ice drift -'SICED' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502658 -#U-component of ice drift -'UICE' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502659 -#V-component of ice drift -'VICED' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502660 -#Ice growth rate -'ICEG' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502662 -#Significant height of combined wind waves and swell -'SWH' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502663 -#Direction of wind waves -'MDWW' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502664 -#Significant height of wind waves -'SHWW' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502665 -#Mean period of wind waves -'MPWW' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502666 -#Mean direction of total swell -'MDTS' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502667 -#Significant height of swell waves -'SHTS' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502668 -#Swell Mean Period -'MPTS' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502671 -#Secondary wave direction -'DIRSW' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502672 -#Secondary wave period -'SWP' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502673 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502674 -#Net long wave radiation flux (m) (at the surface) -'ATHB_S' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502675 -#Net short wave radiation flux -'ASOB_T' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502676 -#Net long-wave radiation flux(atmosph.top) -'NLWRT' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502677 -#Long wave radiation flux -'LWAVR' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502678 -#Short wave radiation flux -'SWAVR' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502679 -#Global radiation flux -'GRAD' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502680 -#Radiance (with respect to wave number) -'LWRAD' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502681 -#Radiance (with respect to wave length) -'SWRAD' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502682 -#Momentum Flux, U-Component (m) -'AUMFL_S' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502683 -#Momentum Flux, V-Component (m) -'AVMFL_S' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502684 -#Wind mixing energy -'WMIXE' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502685 -#Image data -'IMGD' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502686 -#Geopotential height -'OROG' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502687 -#Column-integrated Soil Moisture -'W_CL' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502688 -#Soil Temperature -'T_S' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502689 -#Snow Depth water equivalent -'H_SNOW' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502690 -#Snow depth water equivalent -'W_SNOW' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502691 -#Total Cloud Cover -'CLCT' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502692 -#Total Precipitation (Accumulation) -'TOT_PREC' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502693 -#Potential temperature -'PT' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502694 -#Ice divergence -'ICED' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502695 -#Ice divergence -'ICED' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502696 -#Ice divergence -'ICED' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502697 -#Velocity potential -'VPOT' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502750 -#Stream function -'STRF' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502796 -#Precipitation -'PREC' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'EDR' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'SWDIFDS_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'SWDIFUS_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'UMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'VMFL_S' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503065 -#u-momentum flux due to SSO-effects -'AUSTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503066 -#v-momentum flux due to SSO-effects -'AVSTR_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'RADAR_RQ' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; - } - -#paramId: 503069 -#precipitation,BRD -'RADAR_RS' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'RADAR_RE' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; - } - -#paramId: 503071 -#hail flag,BRD -'RADAR_RH' = { - table2Version = 203 ; - indicatorOfParameter = 76 ; - } - -#paramId: 503072 -#snow rate,BRD -'RADAR_FS' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; - } - -#paramId: 503073 -#snow rate, qualified,BRD -'RADAR_FQ' = { - table2Version = 204 ; - indicatorOfParameter = 46 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'AVDIS_SSO' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503078 -#relative humidity over mixed phase -'RH_MIX_EC' = { - table2Version = 250 ; - indicatorOfParameter = 20 ; - } - -#paramId: 503082 -#Friction Velocity -'USTR' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - } - -#paramId: 503098 -#Vertical Velocity (Geometric) (w) -'W' = { - table2Version = 3 ; - indicatorOfParameter = 40 ; - } - -#paramId: 503099 -#Fog_fraction -'FOGFRAC_E' = { - table2Version = 3 ; - indicatorOfParameter = 138 ; - } - -#paramId: 503100 -#accumulated_convective_rain -'PREC_CON_E' = { - table2Version = 3 ; - indicatorOfParameter = 140 ; - } - -#paramId: 503101 -#cloud_fraction_below_1000ft -'CFRAC' = { - table2Version = 3 ; - indicatorOfParameter = 207 ; - } - -#paramId: 503103 -#Lowest_cloud_base_height -'CEILING_E' = { - table2Version = 3 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503104 -#wet_bulb_freezing_level_ht -'WBFL_E' = { - table2Version = 3 ; - indicatorOfParameter = 152 ; - } - -#paramId: 503105 -#freezing_level_ICAO_height -'FL_E' = { - table2Version = 3 ; - indicatorOfParameter = 162 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'THDS_RAD' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'ATHD_S' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'ACCTHD_S' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 4 ; - } - -#paramId: 503140 -#orography -'ORO_UK' = { - table2Version = 3 ; - indicatorOfParameter = 148 ; - } - -#paramId: 503141 -#wind_gust_10m -'GUST_10M_UK' = { - table2Version = 3 ; - indicatorOfParameter = 149 ; - } - -#paramId: 503142 -#Lightning Potential Index -'LPI' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'FR_PAVED' = { - table2Version = 202 ; - indicatorOfParameter = 33 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'AHF' = { - table2Version = 202 ; - indicatorOfParameter = 34 ; - } - -#paramId: 503325 -#Lightning Potential Index -'LPI' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'UH_MAX' = { - table2Version = 203 ; - indicatorOfParameter = 35 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'VORW_CTMAX' = { - table2Version = 203 ; - indicatorOfParameter = 36 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'W_CTMAX' = { - table2Version = 203 ; - indicatorOfParameter = 37 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'TCOND10_MX' = { - table2Version = 201 ; - indicatorOfParameter = 49 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'TCOND_MAX' = { - table2Version = 201 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'DBZCMP_OBS' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'DBZCMP_SIM' = { - table2Version = 201 ; - indicatorOfParameter = 234 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'LPI_MAX' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'DBZ_CTMAX' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503350 -#relative vorticity -'RELV' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'ECHOTOP' = { - table2Version = 202 ; - indicatorOfParameter = 36 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'ECHOTOPinM' = { - table2Version = 202 ; - indicatorOfParameter = 37 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'SKC' = { - table2Version = 202 ; - indicatorOfParameter = 39 ; - } - diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def b/eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def deleted file mode 100644 index e47d0bde..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/stepType.def +++ /dev/null @@ -1,146 +0,0 @@ -# Concept stepType for DWD -# set uses the FIRST one -# get returns the LAST match - -# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=1;} -# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=2;} -# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=3;} -# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=228;table2Version=128;} -# "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=228;table2Version=128;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=57;table2Version=2;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=61;table2Version=2;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=78;table2Version=2;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=79;table2Version=2;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=90;table2Version=2;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=42;table2Version=201;} -#ASOB_S/T;ATHB_S/T - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=111;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=112;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=113;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=114;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=111;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=112;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=113;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=114;table2Version=2;} -# - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=121;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=122;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=124;table2Version=2;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=125;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=124;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=125;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=121;table2Version=2;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=122;table2Version=2;} -#APAB_S - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=5;table2Version=201;} -# - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=22;table2Version=201;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=23;table2Version=201;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=24;table2Version=201;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=5;table2Version=201;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=22;table2Version=201;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=23;table2Version=201;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=24;table2Version=201;} -#AUSTR_SSO,AVSTR_SSO,AVDIS_SSO - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=231;table2Version=202;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=232;table2Version=202;} - "avg" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=233;table2Version=202;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=231;table2Version=202;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=232;table2Version=202;} - "avg" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=233;table2Version=202;} -# - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=102;table2Version=201;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=132;table2Version=201;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=132;table2Version=201;} - "accum" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=113;table2Version=201;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=102;table2Version=201;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=102;table2Version=201;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=61;table2Version=2;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=61;table2Version=2;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=78;table2Version=2;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=90;table2Version=2;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=113;table2Version=201;} - "accum" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=79;table2Version=2;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=90;table2Version=2;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=42;table2Version=201;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=57;table2Version=2;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=79;table2Version=2;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=113;table2Version=201;} - "accum" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=78;table2Version=2;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=67;table2Version=202;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=69;table2Version=202;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=248;table2Version=202;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=243;table2Version=202;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=187;table2Version=201;} - "max" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=187;table2Version=201;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=15;table2Version=2;} - "max" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=15;table2Version=2;} - "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=16;table2Version=2;} - "min" = {timeRangeIndicator=13;centre=78;indicatorOfParameter=16;table2Version=2;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=15;table2Version=2;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=78;table2Version=202;} - "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=16;table2Version=2;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=187;table2Version=201;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=55;table2Version=203;} - "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=56;table2Version=203;} - "max" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=15;table2Version=206;} - "min" = {timeRangeIndicator=2;centre=78;indicatorOfParameter=16;table2Version=206;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=67;table2Version=202;} - "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=68;table2Version=202;} - "max" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=69;table2Version=202;} - "min" = {timeRangeIndicator=0;centre=78;indicatorOfParameter=70;table2Version=202;} - "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=15;table2Version=2;} - "min" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=16;table2Version=2;} - "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=187;table2Version=201;} - "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=42;table2Version=201;} - "max" = {timeRangeIndicator=1;centre=78;indicatorOfParameter=57;table2Version=2;} - "instant" = {timeRangeIndicator=14;} # Fields from DWD in MARS - "instant" = {timeRangeIndicator=1;} - "instant" = {timeRangeIndicator=10;} -#orig "instant" = {timeRangeIndicator=0;} - "instant" = {timeRangeIndicator=13;centre=78;} - "instant" = {timeRangeIndicator=11;centre=78;} - "instant" = {timeRangeIndicator=14;centre=78;} - -#orig "avg" = {timeRangeIndicator=3;} - "avgfc" = {timeRangeIndicator=113;} - "avgd" = {timeRangeIndicator=113;} - "accum" = {timeRangeIndicator=2;} -#dwd+1 - "accum" = {timeRangeIndicator=4;} - "max" = {timeRangeIndicator=118;} - "max" = {timeRangeIndicator=2;centre=98;} - "min" = {timeRangeIndicator=119;} - "min" = {timeRangeIndicator=2;centre=98;} -#dwd+1 - "diff" = {timeRangeIndicator=5;} - "rms" = {timeRangeIndicator=120;} - "sd" = {timeRangeIndicator=121;} - "cov" = {timeRangeIndicator=122;} - "avgua" = {timeRangeIndicator=123;} - "avgia" = {timeRangeIndicator=124;} -#tab204 monthly mean rms - "rms" = {centre=78;indicatorOfParameter=1;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=2;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=3;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=4;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=5;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=6;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=7;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=8;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=9;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=10;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=11;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=12;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=13;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=14;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=15;table2Version=204;} - "rms" = {centre=78;indicatorOfParameter=16;table2Version=204;} -#tab208 still TODO - "max" = {centre=78;table2Version=208;} - "instant" = {timeRangeIndicator=0;} - "max" = {timeRangeIndicator=2;} - "min" = {timeRangeIndicator=2;} - "avg" = {timeRangeIndicator=3;} - "accum" = {timeRangeIndicator=4;} - "diff" = {timeRangeIndicator=5;} diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def deleted file mode 100644 index fcc38a21..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/typeOfLevel.def +++ /dev/null @@ -1,41 +0,0 @@ -# ECMWF concept type of level -#set uses the last one -#get returns the first match -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricInPa' = {indicatorOfTypeOfLevel=210;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} -'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} -'oceanWave' = {indicatorOfTypeOfLevel=211;} -'oceanMixedLayer' = {indicatorOfTypeOfLevel=212;} -'synSat' = {indicatorOfTypeOfLevel=222;} diff --git a/eccodes/definitions.save/grib1/localConcepts/edzw/units.def b/eccodes/definitions.save/grib1/localConcepts/edzw/units.def deleted file mode 100755 index d525620a..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/edzw/units.def +++ /dev/null @@ -1,8992 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500001 -#Pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'Pa s-1' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'m2 s-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'m2 s-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500006 -#Geopotential -'m2 s-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - indicatorOfTypeOfLevel = 109 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'DU' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500010 -#Temperature (G) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500011 -#2m Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500014 -#Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 3 ; - level = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500020 -#Wave spectra (1) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500021 -#Wave spectra (2) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500022 -#Wave spectra (3) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500027 -#U-Component of Wind -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500029 -#V-Component of Wind -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s-1' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'kg kg-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'kg kg-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500036 -#2m Relative Humidity -'%' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'%' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500039 -#Evaporation (s) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500045 -#Snow Depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500046 -#Total Cloud Cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'Proportion' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'%' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; - bottomLevel = 190 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 10 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; - bottomLevel = 100 ; - } - -#paramId: 500065 -#Plant cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500066 -#Water Runoff -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - topLevel = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'Proportion' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'m' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500072 -#Direction of wind waves -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500073 -#Significant height of wind waves -'m' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500074 -#Mean period of wind waves -'s' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500075 -#Mean direction of total swell -'degree coming from' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500076 -#Significant height of total swell -'m' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500077 -#Mean period of total swell -'s' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'K s-1' = { - table2Version = 201 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'K s-1' = { - table2Version = 201 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 18 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 19 ; - indicatorOfTypeOfLevel = 111 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500096 -#Sunshine duration in h -'h' = { - table2Version = 201 ; - indicatorOfParameter = 20 ; - timeRangeIndicator = 4 ; - } - -#paramId: 500097 -#Stomatal Resistance -'s m-1' = { - table2Version = 201 ; - indicatorOfParameter = 21 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500098 -#Cloud cover -'%' = { - table2Version = 201 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'%' = { - table2Version = 201 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500102 -#Rain mixing ratio -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500103 -#Snow mixing ratio -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500104 -#Total column integrated rain -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500105 -#Total column integrated snow -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500106 -#Grauple -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500107 -#Total column integrated grauple -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500109 -#vertical integral of divergence of total water content (s) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500110 -#subgrid scale cloud water -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500111 -#subgridscale cloud ice -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500112 -#cloud cover CH (0..8) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500113 -#cloud cover CM (0..8) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500114 -#cloud cover CL (0..8) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500115 -#cloud base above msl, shallow convection -'m' = { - table2Version = 201 ; - indicatorOfParameter = 58 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500116 -#Cloud top above msl, shallow convection -'m' = { - table2Version = 201 ; - indicatorOfParameter = 59 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500117 -#specific cloud water content, convective cloud -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'m' = { - table2Version = 201 ; - indicatorOfParameter = 68 ; - indicatorOfTypeOfLevel = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'m' = { - table2Version = 201 ; - indicatorOfParameter = 69 ; - indicatorOfTypeOfLevel = 3 ; - } - -#paramId: 500120 -#base index (vertical level) of main convective cloud (i) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 72 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500121 -#top index (vertical level) of main convective cloud (i) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'K s-1' = { - table2Version = 201 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500124 -#zonal wind tendency due to convection -'m s-2' = { - table2Version = 201 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500125 -#meridional wind tendency due to convection -'m s-2' = { - table2Version = 201 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'m' = { - table2Version = 201 ; - indicatorOfParameter = 82 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'m' = { - table2Version = 201 ; - indicatorOfParameter = 84 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'m' = { - table2Version = 201 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500130 -#tendency of specific cloud ice content due to convection -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'kg kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500132 -#Large scale rain rate -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500135 -#Convective rain rate -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500137 -#Convective rain -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipation -'K s-1' = { - table2Version = 201 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation -'kg kg-1 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500147 -#Snow density -'kg m-3' = { - table2Version = 201 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500148 -#Pressure perturbation -'Pa' = { - table2Version = 201 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) -'s-1' = { - table2Version = 201 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500150 -#supercell detection index 2 (only rot. up drafts) -'s-1' = { - table2Version = 201 ; - indicatorOfParameter = 142 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 143 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 144 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 145 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 146 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'m2 s-3' = { - table2Version = 201 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500157 -#Kinetic Energy -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'m2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'m2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500163 -#mixed layer depth -'m' = { - table2Version = 201 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500164 -#maximum Wind 10m -'m s-1' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 197 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 198 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 199 ; - indicatorOfTypeOfLevel = 111 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'s m-1' = { - table2Version = 201 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500173 -#Base reflectivity -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 110 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - } - -#paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'K s-1' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500178 -#sum of contributions to evaporation -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500179 -#total transpiration from all soil layers -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500180 -#total forcing at soil surface -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500181 -#residuum of soil moisture -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500182 -#Massflux at convective cloud base -'kg m-2 s-1' = { - table2Version = 201 ; - indicatorOfParameter = 240 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500184 -#moisture convergence for Kuo-type closure -'s-1' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500185 -#Total Wave Direction -'degree true' = { - table2Version = 202 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500187 -#Peak period of total swell -'s' = { - table2Version = 202 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500189 -#Swell peak period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500190 -#Total wave peak period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500191 -#Total wave mean period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500192 -#Total Tm1 period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500193 -#Total Tm2 period -'s' = { - table2Version = 202 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500194 -#Total directional spread -'degree true' = { - table2Version = 202 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) -'gpm' = { - table2Version = 202 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'m2 s-2' = { - table2Version = 202 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'m2 s-2' = { - table2Version = 202 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500198 -#zonal wind tendency due to subgrid scale oro. -'m s-2' = { - table2Version = 202 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500199 -#meridional wind tendency due to subgrid scale oro. -'m s-2' = { - table2Version = 202 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'m' = { - table2Version = 202 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'rad' = { - table2Version = 202 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500204 -#surface emissivity -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500205 -#soil type of grid (1...9, local soilType.table) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500206 -#Leaf area index -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500207 -#root depth of vegetation -'m' = { - table2Version = 202 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500208 -#height of ozone maximum (climatological) -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500209 -#vertically integrated ozone content (climatological) -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500212 -#Max Leaf area index -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500213 -#Min Leaf area index -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'m' = { - table2Version = 202 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500215 -#variance of soil moisture content (0-10) -'kg2 m-4' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500216 -#variance of soil moisture content (10-100) -'kg2 m-4' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500217 -#evergreen forest -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500218 -#deciduous forest -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 77 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500222 -#current ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 84 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 86 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500227 -#Organic aerosol -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 91 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500229 -#Black carbon aerosol -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 92 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500231 -#Sea salt aerosol -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 93 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500233 -#tendency of specific humidity -'s-1' = { - table2Version = 202 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500234 -#water vapor flux -'s-1 m-2' = { - table2Version = 202 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500235 -#Coriolis parameter -'s-1' = { - table2Version = 202 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500236 -#geographical latitude -'deg N' = { - table2Version = 202 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500237 -#geographical longitude -'deg E' = { - table2Version = 202 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500239 -#Delay of the GPS signal trough the (total) atm. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500240 -#Delay of the GPS signal trough wet atmos. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500241 -#Delay of the GPS signal trough dry atmos. -'m' = { - table2Version = 202 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'kg kg-1' = { - table2Version = 202 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500250 -#I131 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500251 -#I131 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500264 -#TRACER - concentration -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500271 -#I131g - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500272 -#I131g - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500274 -#I131o - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500275 -#I131o - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Bq m-3' = { - table2Version = 202 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500279 -#u-momentum flux due to SSO-effects -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500280 -#u-momentum flux due to SSO-effects -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500281 -#v-momentum flux due to SSO-effects (average) -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500282 -#v-momentum flux due to SSO-effects -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500283 -#Gravity wave dissipation (initialisation) -'W m-2' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'W m-2' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500286 -#Vertical speed shear -'s-1' = { - table2Version = 203 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500287 -#storm relative helicity -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'s-2' = { - table2Version = 203 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ,tab) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'m' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'m' = { - table2Version = 203 ; - indicatorOfParameter = 94 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'s-2' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500294 -#geostrophische Schichtdickenadvektion -'m3 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'m3 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500296 -#Winddivergenz -'s-1' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'K m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; - indicatorOfTypeOfLevel = 100 ; - } - -#paramId: 500302 -#KO index -'K' = { - table2Version = 203 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'K' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500304 -#Ceiling -'m' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500306 -#modified cloud depth for media -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500307 -#modified cloud cover for media -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Pa' = { - table2Version = 204 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Pa' = { - table2Version = 204 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'m s-1' = { - table2Version = 204 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'m s-1' = { - table2Version = 204 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'m s-1' = { - table2Version = 204 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'m s-1' = { - table2Version = 204 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'m2 s-2' = { - table2Version = 204 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'m2 s-2' = { - table2Version = 204 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'%' = { - table2Version = 204 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'%' = { - table2Version = 204 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'K' = { - table2Version = 204 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'K' = { - table2Version = 204 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Pa s-1' = { - table2Version = 204 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Pa s-1' = { - table2Version = 204 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500322 -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'J kg-1' = { - table2Version = 204 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500323 -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'J kg-1' = { - table2Version = 204 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 1 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'K' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 3 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 6 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 7 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 8 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 1 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 4 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 5 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 2 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; - localElementNumber = 4 ; - indicatorOfTypeOfLevel = 222 ; - level = 3 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'K' = { - table2Version = 206 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'K' = { - table2Version = 206 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'m s-1' = { - table2Version = 206 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'m s-1' = { - table2Version = 206 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'kg m-2' = { - table2Version = 206 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'%' = { - table2Version = 206 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'%' = { - table2Version = 206 ; - indicatorOfParameter = 73 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'%' = { - table2Version = 206 ; - indicatorOfParameter = 74 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'%' = { - table2Version = 206 ; - indicatorOfParameter = 75 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'kg m-2' = { - table2Version = 206 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'K' = { - table2Version = 206 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 111 ; - level = 0 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'m s-1' = { - table2Version = 206 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'kg m-2' = { - table2Version = 207 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'kg m-2' = { - table2Version = 207 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'m s-1' = { - table2Version = 207 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500402 -#Max 2m Temperature long periods > h -'C' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500403 -#Min 2m Temperature long periods > h -'C' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 2 ; - level = 2 ; - } - -#paramId: 500404 -#Total Precipitation (Accumulation) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500408 -#Large scale rain (Accumulation) Initialisation -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500409 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500410 -#Convective rain Initialisation -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500411 -#Convective Snowfall water equivalent (s) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500412 -#maximum Wind 10m Initialisation -'m s-1' = { - table2Version = 201 ; - indicatorOfParameter = 187 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 10 ; - } - -#paramId: 500416 -#Evaporation (s) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500417 -#Max 2m Temperature (i) Initialisation -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500418 -#Min 2m Temperature (i) Initialisation -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 0 ; - level = 2 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - indicatorOfTypeOfLevel = 8 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500423 -#Large-Scale snowfall - water equivalent (Accumulation) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500424 -#Convective Snowfall water equivalent (s) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500425 -#Total Precipitation (Accumulation) Initialisation -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500428 -#Latent Heat Net Flux (m) Initialisation -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500429 -#Sensible Heat Net Flux (m) Initialisation -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500430 -#Momentum Flux, U-Component (m) Initialisation -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500431 -#Momentum Flux, V-Component (m) Initialisation -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500432 -#Photosynthetically active radiation -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 5 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500433 -#Large scale rain (Accumulation) Initialisation -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 102 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500434 -#Convective rain Initialisation -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 113 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500436 -#Graupel (snow pellets) precipitation (Initialisation) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 132 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'kg m2' = { - table2Version = 208 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'m s-1' = { - table2Version = 208 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'Numeric' = { - table2Version = 208 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'K' = { - table2Version = 208 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'K' = { - table2Version = 208 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500469 -#Total ozone -'DU' = { - table2Version = 202 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'Numeric' = { - table2Version = 202 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500472 -#Konvektionsart (0..4) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500473 -#perceived temperature -'K' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500475 -#Water temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500476 -#Water temperature in C -'C' = { - table2Version = 203 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500477 -#Absolute Vorticity -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500479 -#value of isolation of clothes -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 3 ; - } - -#paramId: 500486 -#vertical integral of divergence of total water content (s) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 42 ; - timeRangeIndicator = 0 ; - } - -#paramId: 500487 -#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500488 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500489 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - timeRangeIndicator = 1 ; - } - -#paramId: 500490 -#Water Fraction -'Proportion' = { - table2Version = 202 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500491 -#Lake depth -'m' = { - table2Version = 201 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500492 -#Wind fetch -'m' = { - table2Version = 201 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'m-1' = { - table2Version = 201 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'m' = { - table2Version = 201 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'K' = { - table2Version = 201 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'K' = { - table2Version = 201 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500499 -#Mixed-layer depth -'m' = { - table2Version = 201 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'K' = { - table2Version = 201 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'m' = { - table2Version = 201 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500503 -#Icing Base (hft) - Prognose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Prognose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Prognose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500506 -#Icing Top (hft) - Prognose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Degree Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Prognose Icing Degree Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500509 -#Icing Base (hft) - Prognose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Prognose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Prognose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500512 -#Icing Top (hft) - Prognose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Prognose Icing Scenario Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Prognose Icing Scenario Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500515 -#Icing Base (hft) - Diagnose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Diagnose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Diagnose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500518 -#Icing Top (hft) - Diagnose Icing Degree Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Degree Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Diagnose Icing Degree Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500521 -#Icing Base (hft) - Diagnose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 1 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Diagnose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 2 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Diagnose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 3 ; - } - -#paramId: 500524 -#Icing Top (hft) - Diagnose Icing Scenario Composit -'hft' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 4 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Diagnose Icing Scenario Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 5 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Diagnose Icing Scenario Composit -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; - indicatorOfTypeOfLevel = 202 ; - level = 6 ; - } - -#paramId: 500527 -#Prognose Icing Degree Code (1=light,2=moderate,3=severe) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500528 -#Prognose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500529 -#Diagnose Icing Degree Code (1=light,2=moderate,3=severe) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500530 -#Diagnose Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500541 -#relative vorticity,U-component -'s-1' = { - table2Version = 202 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500542 -#relative vorticity,V-component -'s-1' = { - table2Version = 202 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500543 -#vertical vorticity -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500544 -#Potential vorticity -'K m2 kg-1 s-1' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500545 -#Density -'kg m-3' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - timeRangeIndicator = 5 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'K m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'s-1' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'K2 m-2 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500562 -#Divergenz -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'m2 kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500564 -#Divergenz Qn -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500565 -#Divergenz Qs -'m kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500566 -#Frontogenesis function -'Km kg-1 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'s-1' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500568 -#Geopotential height -'gpm' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500569 -#Relative Divergenz -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500570 -#dry convection top index -'Numeric' = { - table2Version = 201 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500571 -#- FE1 I128A[AMP]ROUTI von 199809 bis 199905 -'' = { - table2Version = 201 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500572 -#tidal tendencies -'s2 m-2' = { - table2Version = 202 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'C' = { - table2Version = 202 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500575 -#3 hour pressure change -'Pa-3h' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500576 -#covariance of soil moisture content (0-10) -'kg2 m-4' = { - table2Version = 202 ; - indicatorOfParameter = 74 ; - localElementNumber = 2 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - indicatorOfTypeOfLevel = 112 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; - bottomLevel = 7 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - indicatorOfTypeOfLevel = 112 ; - topLevel = 7 ; - bottomLevel = 50 ; - } - -#paramId: 500582 -#Max 2m Temperature (i) Initialisation -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500583 -#Min 2m Temperature (i) Initialisation -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - timeRangeIndicator = 1 ; - level = 2 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'m2/3 s-1' = { - table2Version = 204 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500586 -#Ellrod Index -'10-7 s-2' = { - table2Version = 204 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500588 -#Snow melt -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500592 -#Geopotential height -'10 gpm' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500593 -#Global radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500600 -#Prob Windboeen > 25 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500601 -#Prob Windboeen > 27 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500602 -#Prob Sturmboeen > 33 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500603 -#Prob Sturmboeen > 40 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500604 -#Prob Schwere Sturmboeen > 47 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500605 -#Prob Orkanartige Boeen > 55 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500606 -#Prob Orkanboeen > 63 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500607 -#Prob Oberoertliche Orkanboeen > 75 kn -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500608 -#Prob Starkregen > 10 mm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500609 -#Prob Heftiger Starkregen > 25 mm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500610 -#Prob Extrem Heftiger Starkregen > 50 mm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500611 -#Prob Leichter Schneefall > 0,1 mm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500612 -#Prob Leichter Schneefall > 0,1 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500613 -#Prob Leichter Schneefall > 0,5 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500614 -#Prob Leichter Schneefall > 1 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500615 -#Prob Schneefall > 5 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500616 -#Prob Starker Schneefall > 10 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500617 -#Prob Extrem starker Schneefall > 25 cm -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500618 -#Prob Frost -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500619 -#Prob Strenger Frost -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500620 -#Prob Gewitter -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500623 -#Prob Dauerregen -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500628 -#Prob Glaette -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500630 -#Prob Glatteis -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500632 -#Prob Tauwetter -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'Numeric' = { - table2Version = 210 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500634 -#wake-production of TKE due to sub grid scale orography -'m2 s-3' = { - table2Version = 201 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes -'m2 s-3' = { - table2Version = 201 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection -'m2 s-3' = { - table2Version = 201 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500638 -#Atmospheric Resistance -'s m-1' = { - table2Version = 201 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'m' = { - table2Version = 201 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500640 -#mass concentration of dust (minimum mode) -'kg m-3' = { - table2Version = 242 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500642 -#Lapse rate -'K m-1' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500643 -#mass concentration of dust (medium mode) -'kg m-3' = { - table2Version = 242 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500644 -#mass concentration of dust (maximum mode) -'kg m-3' = { - table2Version = 242 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500645 -#number concentration of dust (minimum mode) -'m-3' = { - table2Version = 242 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500646 -#number concentration of dust (medium mode) -'m-3' = { - table2Version = 242 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500647 -#number concentration of dust (maximum mode) -'m-3' = { - table2Version = 242 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500648 -#mass concentration of dust (sum of all modes) -'kg m-3' = { - table2Version = 242 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500649 -#number concentration of dust (sum of all modes) -'m-3' = { - table2Version = 242 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'' = { - table2Version = 254 ; - indicatorOfParameter = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'' = { - table2Version = 254 ; - indicatorOfParameter = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'' = { - table2Version = 254 ; - indicatorOfParameter = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'' = { - table2Version = 254 ; - indicatorOfParameter = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'' = { - table2Version = 254 ; - indicatorOfParameter = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'' = { - table2Version = 254 ; - indicatorOfParameter = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'' = { - table2Version = 254 ; - indicatorOfParameter = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'' = { - table2Version = 254 ; - indicatorOfParameter = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'' = { - table2Version = 254 ; - indicatorOfParameter = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'' = { - table2Version = 254 ; - indicatorOfParameter = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'' = { - table2Version = 254 ; - indicatorOfParameter = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'' = { - table2Version = 254 ; - indicatorOfParameter = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'' = { - table2Version = 254 ; - indicatorOfParameter = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'' = { - table2Version = 254 ; - indicatorOfParameter = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'' = { - table2Version = 254 ; - indicatorOfParameter = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'' = { - table2Version = 254 ; - indicatorOfParameter = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'' = { - table2Version = 254 ; - indicatorOfParameter = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'' = { - table2Version = 254 ; - indicatorOfParameter = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'' = { - table2Version = 254 ; - indicatorOfParameter = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'' = { - table2Version = 254 ; - indicatorOfParameter = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'' = { - table2Version = 254 ; - indicatorOfParameter = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'' = { - table2Version = 254 ; - indicatorOfParameter = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'' = { - table2Version = 254 ; - indicatorOfParameter = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'' = { - table2Version = 254 ; - indicatorOfParameter = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'' = { - table2Version = 254 ; - indicatorOfParameter = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'' = { - table2Version = 254 ; - indicatorOfParameter = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'' = { - table2Version = 254 ; - indicatorOfParameter = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'' = { - table2Version = 254 ; - indicatorOfParameter = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'kg kg-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'%' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - timeRangeIndicator = 3 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'%' = { - table2Version = 202 ; - indicatorOfParameter = 129 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502333 -#salinity -'kg kg-1' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502334 -#Stream function -'m2 s-1' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502335 -#Velocity potential -'m2 s-1' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502336 -#Skin temperature -'K' = { - table2Version = 202 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux -'' = { - table2Version = 201 ; - indicatorOfParameter = 22 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502350 -#Temperature (G) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502355 -#Stream function -'m2 s-1' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502356 -#Velocity potential -'m2 s-1' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502357 -#Wind speed (SP) -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502358 -#Pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502359 -#Potential vorticity -'K m2 kg-1 s-1' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502360 -#Potential vorticity -'K m2 kg-1 s-1' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } - -#paramId: 502361 -#Geopotential -'m2 s-2' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502362 -#Max 2m Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502363 -#Min 2m Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502364 -#Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502365 -#U-Component of Wind -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502366 -#Pressure (S) (not reduced) -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502367 -#V-Component of Wind -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502368 -#Specific Humidity -'kg kg-1' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502369 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s-1' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502370 -#vertical vorticity -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502371 -#Sensible Heat Net Flux (m) -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502372 -#Latent Heat Net Flux (m) -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502373 -#Pressure Reduced to MSL -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502374 -#Relative Divergenz -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502375 -#Geopotential height -'gpm' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502376 -#Relative Humidity -'%' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502377 -#U-Component of Wind -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502378 -#V-Component of Wind -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502379 -#2m Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502381 -#Land Cover (1=land, 0=sea) -'Proportion' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502382 -#Surface Roughness length Surface Roughness -'m' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502383 -#Albedo (in short-wave, average) -'%' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502384 -#Evaporation (s) -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502385 -#Convective Cloud Cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502386 -#Cloud Cover (800 hPa - Soil) -'%' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502387 -#Cloud Cover (400 - 800 hPa) -'%' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502388 -#Cloud Cover (0 - 400 hPa) -'%' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502389 -#Plant cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502390 -#Water Runoff -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502391 -#Total Column Integrated Ozone -'DU' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502392 -#Convective Snowfall water equivalent (s) -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502393 -#Large-Scale snowfall - water equivalent (Accumulation) -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502394 -#Large-Scale Precipitation -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502395 -#Total Column-Integrated Cloud Water -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502396 -#Virtual Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502397 -#Virtual Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502398 -#Virtual Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } - -#paramId: 502399 -#Brightness Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502400 -#Boundary Layer Dissipitation -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502401 -#Pressure Tendency -'Pa s-1' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502402 -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502403 -#Geometric Height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502404 -#Max Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502405 -#Min Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502406 -#Dew Point Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502407 -#Dew point depression(or deficit) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502408 -#Lapse rate -'K m-1' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502409 -#Visibility -'m' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502410 -#Radar spectra (1) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502411 -#Radar spectra (2) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502412 -#Radar spectra (3) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502413 -#Parcel lifted index (to 500 hPa) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502414 -#Temperature anomaly -'K' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502415 -#Pressure anomaly -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502416 -#Geopotential height anomaly -'gpm' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502417 -#Wave spectra (1) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502418 -#Wave spectra (2) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502419 -#Wave spectra (3) -'Numeric' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502420 -#Wind Direction (DD) -'degree true' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502421 -#Sigma coordinate vertical velocity -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502422 -#Absolute Vorticity -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502423 -#Absolute divergence -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502424 -#Vertical u-component shear -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502425 -#Vertical v-component shear -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502426 -#Direction of current -'degree true' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502427 -#Speed of current -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502428 -#U-component of current -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502429 -#V-component of current -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502430 -#Humidity mixing ratio -'kg kg-1' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502431 -#Precipitable water -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502432 -#Vapour pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502433 -#Saturation deficit -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502434 -#Precipitation rate -'kg m-2 s-1' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502435 -#Thunderstorm probability -'%' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502436 -#Convective precipitation (water) -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502437 -#Snow fall rate water equivalent -'kg m-2 s-1' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502438 -#Mixed layer depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502439 -#Transient thermocline depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502440 -#Main thermocline depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502441 -#Main thermocline depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502442 -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502443 -#Water temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502444 -#Deviation of sea-elbel from mean -'m' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502445 -#Column-integrated Soil Moisture -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502446 -#salinity -'' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502447 -#Density -'kg m-3' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502448 -#Sea Ice Cover ( 0= free, 1=cover) -'Proportion' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502449 -#sea Ice Thickness -'m' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502450 -#Direction of ice drift -'degree true' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502451 -#Speed of ice drift -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502452 -#U-component of ice drift -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502453 -#V-component of ice drift -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502454 -#Ice growth rate -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502455 -#Snow melt -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502456 -#Significant height of combined wind waves and swell -'m' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502457 -#Direction of wind waves -'degree true' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502458 -#Significant height of wind waves -'m' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502459 -#Mean period of wind waves -'s' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502460 -#Mean direction of total swell -'degree coming from' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502461 -#Significant height of swell waves -'m' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502462 -#Swell Mean Period -'s' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502465 -#Secondary wave direction -'degree true' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502466 -#Secondary wave period -'s' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502467 -#Net short wave radiation flux (at the surface) -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502468 -#Net long wave radiation flux (m) (at the surface) -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502469 -#Net short wave radiation flux -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502470 -#Net long-wave radiation flux(atmosph.top) -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502471 -#Long wave radiation flux -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502472 -#Short wave radiation flux -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502473 -#Global radiation flux -'W m-2' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502474 -#Radiance (with respect to wave number) -'' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502475 -#Radiance (with respect to wave length) -'' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502476 -#Momentum Flux, U-Component (m) -'N m-2' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502477 -#Momentum Flux, V-Component (m) -'N m-2' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502478 -#Wind mixing energy -'J' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502479 -#Image data -'' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502480 -#Geopotential height -'gpm' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502481 -#Soil Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502482 -#Snow Depth water equivalent -'m' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502483 -#Snow depth water equivalent -'kg -2' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502484 -#Total Cloud Cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502485 -#Total Precipitation (Accumulation) -'kg m-2' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502486 -#Boundary Layer Dissipitation -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502487 -#Sensible Heat Net Flux (m) -'' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502488 -#Latent Heat Net Flux (m) -'' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502490 -#Evaporation (s) -'' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502491 -#Cloud Cover (800 hPa - Soil) -'' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502492 -#Cloud Cover (400 - 800 hPa) -'' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502493 -#Cloud Cover (0 - 400 hPa) -'' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502494 -#Brightness Temperature -'' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502495 -#Water Runoff -'' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502496 -#Geometric Height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502497 -#Standard devation of height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502498 -#Standard devation of height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502499 -#Pseudo-adiabatic potential Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502500 -#Pseudo-adiabatic potential Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502501 -#Max Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502502 -#Min Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502503 -#Dew Point Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502504 -#Dew point depression(or deficit) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502505 -#Visibility -'m' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502506 -#Radar spectra (2) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502507 -#Radar spectra (3) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502508 -#Parcel lifted index (to 500 hPa) -'Numeric' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502509 -#Temperature anomaly -'K' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502510 -#Pressure anomaly -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502511 -#Geopotential height anomaly -'gpm' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502512 -#Montgomery stream Function -'m-2/s-2' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502513 -#Montgomery stream Function -'m-2/s-2' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502514 -#Sigma coordinate vertical velocity -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502515 -#Absolute divergence -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502516 -#Vertical u-component shear -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502517 -#Vertical v-component shear -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502518 -#Direction of current -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502519 -#Speed of current -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502520 -#U-component of current -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502521 -#V-component of current -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502522 -#Humidity mixing ratio -'kg kg-1' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502523 -#Vapour pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502524 -#Saturation deficit -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502525 -#Precipitation rate -'kg m-2 s-1' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502526 -#Thunderstorm probability -'%' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502527 -#Convective precipitation (water) -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502528 -#Snow fall rate water equivalent -'kg m-2 s-1' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502529 -#Mixed layer depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502530 -#Transient thermocline depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502531 -#Main thermocline depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502532 -#Main thermocline depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502533 -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502534 -#Deviation of sea-elbel from mean -'m' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502535 -#Column-integrated Soil Moisture -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502536 -#Direction of ice drift -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502537 -#Speed of ice drift -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502538 -#U-component of ice drift -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502539 -#V-component of ice drift -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502540 -#Ice growth rate -'m s-1' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502542 -#Snow melt -'kg m-2' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } - -#paramId: 502545 -#Secondary wave direction -'degree true' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502546 -#Secondary wave period -'s' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502547 -#Net short wave radiation flux (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502548 -#Net long wave radiation flux (m) (at the surface) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502549 -#Net short wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502550 -#Net long-wave radiation flux(atmosph.top) -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502551 -#Long wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502552 -#Short wave radiation flux -'W m-2' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502553 -#Radiance (with respect to wave number) -'' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502554 -#Radiance (with respect to wave length) -'' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502555 -#Momentum Flux, U-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502556 -#Momentum Flux, V-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502557 -#Wind mixing energy -'J' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502558 -#Image data -'' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502559 -#Geopotential height -'gpm' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502560 -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502562 -#Potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502563 -#Potential temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502564 -#Wind speed (SP) -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } - -#paramId: 502565 -#Pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } - -#paramId: 502566 -#Max 2m Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502567 -#Min 2m Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502568 -#Geopotential -'m2 s-2' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } - -#paramId: 502569 -#Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } - -#paramId: 502570 -#U-Component of Wind -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } - -#paramId: 502571 -#V-Component of Wind -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } - -#paramId: 502572 -#Specific Humidity -'kg kg-1' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } - -#paramId: 502573 -#Pressure (S) (not reduced) -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502574 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s-1' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } - -#paramId: 502575 -#vertical vorticity -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } - -#paramId: 502576 -#Boundary Layer Dissipitation -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } - -#paramId: 502577 -#Sensible Heat Net Flux (m) -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } - -#paramId: 502578 -#Latent Heat Net Flux (m) -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } - -#paramId: 502579 -#Pressure Reduced to MSL -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } - -#paramId: 502581 -#Geopotential height -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } - -#paramId: 502582 -#Relative Humidity -'%' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } - -#paramId: 502583 -#U-Component of Wind -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502584 -#V-Component of Wind -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } - -#paramId: 502585 -#2m Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } - -#paramId: 502587 -#Relative Divergenz -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } - -#paramId: 502588 -#Land Cover (1=land, 0=sea) -'Proportion' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } - -#paramId: 502589 -#Surface Roughness length Surface Roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } - -#paramId: 502590 -#Albedo (in short-wave, average) -'%' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } - -#paramId: 502591 -#Evaporation (s) -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } - -#paramId: 502592 -#Convective Cloud Cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } - -#paramId: 502593 -#Cloud Cover (800 hPa - Soil) -'%' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } - -#paramId: 502594 -#Cloud Cover (400 - 800 hPa) -'%' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } - -#paramId: 502595 -#Cloud Cover (0 - 400 hPa) -'%' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } - -#paramId: 502596 -#Brightness Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } - -#paramId: 502597 -#Plant cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } - -#paramId: 502598 -#Water Runoff -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } - -#paramId: 502599 -#Total Column Integrated Ozone -'DU' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } - -#paramId: 502600 -#Convective Snowfall water equivalent (s) -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } - -#paramId: 502601 -#Large-Scale snowfall - water equivalent (Accumulation) -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } - -#paramId: 502602 -#Large-Scale Precipitation -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } - -#paramId: 502603 -#Total Column-Integrated Cloud Water -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } - -#paramId: 502604 -#Pressure Tendency -'Pa s-1' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } - -#paramId: 502605 -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } - -#paramId: 502606 -#Geometric Height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } - -#paramId: 502607 -#Standard devation of height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } - -#paramId: 502608 -#Pseudo-adiabatic potential Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } - -#paramId: 502609 -#Max Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } - -#paramId: 502610 -#Min Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } - -#paramId: 502611 -#Dew Point Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } - -#paramId: 502612 -#Dew point depression(or deficit) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } - -#paramId: 502613 -#Lapse rate -'K m-1' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } - -#paramId: 502614 -#Visibility -'m' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } - -#paramId: 502615 -#Radar spectra (1) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } - -#paramId: 502616 -#Radar spectra (2) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } - -#paramId: 502617 -#Radar spectra (3) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } - -#paramId: 502618 -#Parcel lifted index (to 500 hPa) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } - -#paramId: 502619 -#Temperature anomaly -'K' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } - -#paramId: 502620 -#Pressure anomaly -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } - -#paramId: 502621 -#Geopotential height anomaly -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } - -#paramId: 502622 -#Wave spectra (1) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } - -#paramId: 502623 -#Wave spectra (2) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } - -#paramId: 502624 -#Wave spectra (3) -'Numeric' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } - -#paramId: 502625 -#Wind Direction (DD) -'degree true' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } - -#paramId: 502626 -#Montgomery stream Function -'m-2/s-2' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } - -#paramId: 502627 -#Sigma coordinate vertical velocity -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } - -#paramId: 502628 -#Absolute Vorticity -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } - -#paramId: 502629 -#Absolute divergence -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } - -#paramId: 502630 -#Vertical u-component shear -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } - -#paramId: 502631 -#Vertical v-component shear -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } - -#paramId: 502632 -#Direction of current -'degree true' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } - -#paramId: 502633 -#Speed of current -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } - -#paramId: 502634 -#U-component of current -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } - -#paramId: 502635 -#V-component of current -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } - -#paramId: 502636 -#Humidity mixing ratio -'kg kg-1' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } - -#paramId: 502637 -#Precipitable water -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } - -#paramId: 502638 -#Vapour pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } - -#paramId: 502639 -#Saturation deficit -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } - -#paramId: 502640 -#Precipitation rate -'kg m-2 s-1' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } - -#paramId: 502641 -#Thunderstorm probability -'%' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } - -#paramId: 502642 -#Convective precipitation (water) -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } - -#paramId: 502643 -#Snow fall rate water equivalent -'kg m-2 s-1' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } - -#paramId: 502644 -#Mixed layer depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } - -#paramId: 502645 -#Transient thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } - -#paramId: 502646 -#Main thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } - -#paramId: 502647 -#Main thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } - -#paramId: 502648 -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } - -#paramId: 502649 -#Water temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } - -#paramId: 502650 -#Deviation of sea-elbel from mean -'m' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } - -#paramId: 502651 -#Column-integrated Soil Moisture -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502652 -#salinity -'' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } - -#paramId: 502653 -#Density -'kg m-3' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } - -#paramId: 502654 -#Sea Ice Cover ( 0= free, 1=cover) -'Proportion' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } - -#paramId: 502655 -#sea Ice Thickness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } - -#paramId: 502656 -#Direction of ice drift -'degree true' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } - -#paramId: 502657 -#Speed of ice drift -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } - -#paramId: 502658 -#U-component of ice drift -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } - -#paramId: 502659 -#V-component of ice drift -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } - -#paramId: 502660 -#Ice growth rate -'m s-1' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } - -#paramId: 502662 -#Significant height of combined wind waves and swell -'m' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } - -#paramId: 502663 -#Direction of wind waves -'degree true' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } - -#paramId: 502664 -#Significant height of wind waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } - -#paramId: 502665 -#Mean period of wind waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } - -#paramId: 502666 -#Mean direction of total swell -'degree coming from' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } - -#paramId: 502667 -#Significant height of swell waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } - -#paramId: 502668 -#Swell Mean Period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } - -#paramId: 502671 -#Secondary wave direction -'degree true' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } - -#paramId: 502672 -#Secondary wave period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } - -#paramId: 502673 -#Net short wave radiation flux (at the surface) -'w m-2' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } - -#paramId: 502674 -#Net long wave radiation flux (m) (at the surface) -'w m-2' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } - -#paramId: 502675 -#Net short wave radiation flux -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } - -#paramId: 502676 -#Net long-wave radiation flux(atmosph.top) -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } - -#paramId: 502677 -#Long wave radiation flux -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } - -#paramId: 502678 -#Short wave radiation flux -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } - -#paramId: 502679 -#Global radiation flux -'W m-2' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } - -#paramId: 502680 -#Radiance (with respect to wave number) -'' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } - -#paramId: 502681 -#Radiance (with respect to wave length) -'' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } - -#paramId: 502682 -#Momentum Flux, U-Component (m) -'N m-2' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } - -#paramId: 502683 -#Momentum Flux, V-Component (m) -'N m-2' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } - -#paramId: 502684 -#Wind mixing energy -'J' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } - -#paramId: 502685 -#Image data -'' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } - -#paramId: 502686 -#Geopotential height -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 502687 -#Column-integrated Soil Moisture -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } - -#paramId: 502688 -#Soil Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } - -#paramId: 502689 -#Snow Depth water equivalent -'m' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } - -#paramId: 502690 -#Snow depth water equivalent -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } - -#paramId: 502691 -#Total Cloud Cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } - -#paramId: 502692 -#Total Precipitation (Accumulation) -'kg m-2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } - -#paramId: 502693 -#Potential temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } - -#paramId: 502694 -#Ice divergence -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502695 -#Ice divergence -'s-1' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502696 -#Ice divergence -'s-1' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } - -#paramId: 502697 -#Velocity potential -'m2 s-1' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } - -#paramId: 502750 -#Stream function -'m2 2-1' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } - -#paramId: 502796 -#Precipitation -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'m2 s-3' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 23 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'W m-2' = { - table2Version = 201 ; - indicatorOfParameter = 24 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'N m-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - indicatorOfTypeOfLevel = 1 ; - } - -#paramId: 503065 -#u-momentum flux due to SSO-effects -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 231 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503066 -#v-momentum flux due to SSO-effects -'N m-2' = { - table2Version = 202 ; - indicatorOfParameter = 232 ; - timeRangeIndicator = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; - } - -#paramId: 503069 -#precipitation,BRD -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'1' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; - } - -#paramId: 503071 -#hail flag,BRD -'Numeric' = { - table2Version = 203 ; - indicatorOfParameter = 76 ; - } - -#paramId: 503072 -#snow rate,BRD -'0.01 m' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; - } - -#paramId: 503073 -#snow rate, qualified,BRD -'0.01 m' = { - table2Version = 204 ; - indicatorOfParameter = 46 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'W m-2' = { - table2Version = 202 ; - indicatorOfParameter = 233 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503078 -#relative humidity over mixed phase -'%' = { - table2Version = 250 ; - indicatorOfParameter = 20 ; - } - -#paramId: 503082 -#Friction Velocity -'' = { - table2Version = 202 ; - indicatorOfParameter = 120 ; - } - -#paramId: 503098 -#Vertical Velocity (Geometric) (w) -'m s-1' = { - table2Version = 3 ; - indicatorOfParameter = 40 ; - } - -#paramId: 503099 -#Fog_fraction -'' = { - table2Version = 3 ; - indicatorOfParameter = 138 ; - } - -#paramId: 503100 -#accumulated_convective_rain -'' = { - table2Version = 3 ; - indicatorOfParameter = 140 ; - } - -#paramId: 503101 -#cloud_fraction_below_1000ft -'' = { - table2Version = 3 ; - indicatorOfParameter = 207 ; - } - -#paramId: 503103 -#Lowest_cloud_base_height -'' = { - table2Version = 3 ; - indicatorOfParameter = 151 ; - } - -#paramId: 503104 -#wet_bulb_freezing_level_ht -'' = { - table2Version = 3 ; - indicatorOfParameter = 152 ; - } - -#paramId: 503105 -#freezing_level_ICAO_height -'' = { - table2Version = 3 ; - indicatorOfParameter = 162 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'W m-2 ' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'W m-2 ' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 3 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'W m-2 ' = { - table2Version = 201 ; - indicatorOfParameter = 25 ; - timeRangeIndicator = 4 ; - } - -#paramId: 503140 -#orography -'' = { - table2Version = 3 ; - indicatorOfParameter = 148 ; - } - -#paramId: 503141 -#wind_gust_10m -'' = { - table2Version = 3 ; - indicatorOfParameter = 149 ; - } - -#paramId: 503142 -#Lightning Potential Index -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'Proportion' = { - table2Version = 202 ; - indicatorOfParameter = 33 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'W m-2' = { - table2Version = 202 ; - indicatorOfParameter = 34 ; - } - -#paramId: 503325 -#Lightning Potential Index -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'m2s-2' = { - table2Version = 203 ; - indicatorOfParameter = 35 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'s-1' = { - table2Version = 203 ; - indicatorOfParameter = 36 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 37 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 49 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'kg m-2' = { - table2Version = 201 ; - indicatorOfParameter = 48 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 234 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'J kg-1' = { - table2Version = 201 ; - indicatorOfParameter = 196 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'dBZ' = { - table2Version = 201 ; - indicatorOfParameter = 230 ; - indicatorOfTypeOfLevel = 200 ; - timeRangeIndicator = 2 ; - } - -#paramId: 503350 -#relative vorticity -'s-1' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'Pa' = { - table2Version = 202 ; - indicatorOfParameter = 36 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'m' = { - table2Version = 202 ; - indicatorOfParameter = 37 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'W m-2 K-1' = { - table2Version = 202 ; - indicatorOfParameter = 39 ; - } - diff --git a/eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def deleted file mode 100644 index 727ee660..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/efkl/cfVarName.def +++ /dev/null @@ -1,1121 +0,0 @@ -# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi -'P-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 1 ; -} -'Z-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; -} -'HL-M' = { - table2Version = 203 ; - indicatorOfParameter = 3 ; -} -'T-C' = { - table2Version = 203 ; - indicatorOfParameter = 4 ; -} -'TP-K' = { - table2Version = 203 ; - indicatorOfParameter = 8 ; -} -'TPW-K' = { - table2Version = 203 ; - indicatorOfParameter = 9 ; -} -'TD-C' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; -} -'Q-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 12 ; -} -'RH-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 13 ; -} -'CLDSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 15 ; -} -'FRNTSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 18 ; -} -'FOGSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 19 ; -} -'DD-D' = { - table2Version = 203 ; - indicatorOfParameter = 20 ; -} -'FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 21 ; -} -'DF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 22 ; -} -'U-MS' = { - table2Version = 203 ; - indicatorOfParameter = 23 ; -} -'V-MS' = { - table2Version = 203 ; - indicatorOfParameter = 24 ; -} -'FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 27 ; -} -'HM20C-M' = { - table2Version = 203 ; - indicatorOfParameter = 28 ; -} -'ABSVO-HZ-5' = { - table2Version = 203 ; - indicatorOfParameter = 31 ; -} -'AQI-N' = { - table2Version = 203 ; - indicatorOfParameter = 38 ; -} -'FF10-MS' = { - table2Version = 203 ; - indicatorOfParameter = 39 ; -} -'VV-PAS' = { - table2Version = 203 ; - indicatorOfParameter = 40 ; -} -'VV-MMS' = { - table2Version = 203 ; - indicatorOfParameter = 43 ; -} -'VV-MS' = { - table2Version = 203 ; - indicatorOfParameter = 44 ; -} -'PRCWAT-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 47 ; -} -'RR-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 50 ; -} -'SD-M' = { - table2Version = 203 ; - indicatorOfParameter = 51 ; -} -'HSADE1-N' = { - table2Version = 203 ; - indicatorOfParameter = 52 ; -} -'HSADE2-N' = { - table2Version = 203 ; - indicatorOfParameter = 53 ; -} -'RR-6-MM' = { - table2Version = 203 ; - indicatorOfParameter = 54 ; -} -'RR-12-MM' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; -} -'RR-1-MM' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; -} -'RR-2-MM' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; -} -'RR-3-MM' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; -} -'PRECFORM-N' = { - table2Version = 203 ; - indicatorOfParameter = 59 ; -} -'SMOGI-N' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; -} -'RRL-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 62 ; -} -'RRC-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 63 ; -} -'SNACC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 68 ; -} -'RNETLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 69 ; -} -'H0C-M' = { - table2Version = 203 ; - indicatorOfParameter = 70 ; -} -'RRR-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; -} -'RRRC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; -} -'RRRL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; -} -'LNSP-N' = { - table2Version = 203 ; - indicatorOfParameter = 74 ; -} -'TG-K' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; -} -'LSSN-M100' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; -} -'CLDWAT-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 78 ; -} -'N-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 79 ; -} -'KINDEX-N' = { - table2Version = 203 ; - indicatorOfParameter = 80 ; -} -'ALBEDO' = { - table2Version = 203 ; - indicatorOfParameter = 89 ; -} -'HESSAA-N' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; -} -'RADLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 95 ; -} -'RADGLO-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 96 ; -} -'LC-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; -} -'IC-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; -} -'RHO-KGM3' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; -} -'SSICING-N' = { - table2Version = 203 ; - indicatorOfParameter = 102 ; -} -'ICING-N' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; -} -'CLDICE-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 104 ; -} -'CLDCND-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; -} -'SNL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 106 ; -} -'SNC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; -} -'SNRL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 108 ; -} -'SNRC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; -} -'SNR-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 110 ; -} -'T-C1-C' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; -} -'T-C2-C' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; -} -'T-C3-C' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; -} -'T-C4-C' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; -} -'T-C5-C' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; -} -'T-C6-C' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; -} -'Z-C1-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; -} -'Z-C2-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; -} -'Z-C3-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; -} -'Z-C4-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 120 ; -} -'Z-C5-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 121 ; -} -'Z-C6-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 122 ; -} -'RTOPLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; -} -'RNETSW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; -} -'TPE-K' = { - table2Version = 203 ; - indicatorOfParameter = 129 ; -} -'ABSH-KGM3' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; -} -'PROB-T-1' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; -} -'PROB-T-2' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; -} -'PROB-T-3' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; -} -'PROB-T-4' = { - table2Version = 203 ; - indicatorOfParameter = 134 ; -} -'PROB-RR-1' = { - table2Version = 203 ; - indicatorOfParameter = 141 ; -} -'PROB-RR-2' = { - table2Version = 203 ; - indicatorOfParameter = 142 ; -} -'PROB-RR-3' = { - table2Version = 203 ; - indicatorOfParameter = 143 ; -} -'PROB-RR-4' = { - table2Version = 203 ; - indicatorOfParameter = 144 ; -} -'WSH-KT' = { - table2Version = 203 ; - indicatorOfParameter = 145 ; -} -'WSH-1-KT' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; -} -'HLCY-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 147 ; -} -'HLCY-1-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 148 ; -} -'FF1500-MS' = { - table2Version = 203 ; - indicatorOfParameter = 149 ; -} -'TPE3-C' = { - table2Version = 203 ; - indicatorOfParameter = 150 ; -} -'PROB-W-1' = { - table2Version = 203 ; - indicatorOfParameter = 151 ; -} -'PROB-W-2' = { - table2Version = 203 ; - indicatorOfParameter = 152 ; -} -'PROB-WG-1' = { - table2Version = 203 ; - indicatorOfParameter = 153 ; -} -'PROB-WG-2' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; -} -'PROB-WG-3' = { - table2Version = 203 ; - indicatorOfParameter = 155 ; -} -'EFI-WS' = { - table2Version = 203 ; - indicatorOfParameter = 156 ; -} -'EFI-T' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; -} -'EFI-WG' = { - table2Version = 203 ; - indicatorOfParameter = 158 ; -} -'EFI-RR' = { - table2Version = 203 ; - indicatorOfParameter = 159 ; -} -'PROBSN-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 161 ; -} -'MOL-M' = { - table2Version = 203 ; - indicatorOfParameter = 163 ; -} -'SRMOM-M' = { - table2Version = 203 ; - indicatorOfParameter = 164 ; -} -'RRI-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 165 ; -} -'RSI-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 166 ; -} -'MIXHGT-M' = { - table2Version = 203 ; - indicatorOfParameter = 167 ; -} -'SI-N' = { - table2Version = 203 ; - indicatorOfParameter = 168 ; -} -'LI-N' = { - table2Version = 203 ; - indicatorOfParameter = 169 ; -} -'CTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 170 ; -} -'VTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 171 ; -} -'TTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 172 ; -} -'F0-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 173 ; -} -'F10-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 174 ; -} -'F25-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 175 ; -} -'F50-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 176 ; -} -'F75-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 177 ; -} -'F90-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 178 ; -} -'F100-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 179 ; -} -'LCL-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 180 ; -} -'LFC-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; -} -'EL-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; -} -'SR-M' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; -} -'LCL-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; -} -'LFC-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 185 ; -} -'SM-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 186 ; -} -'F0-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 187 ; -} -'F10-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 188 ; -} -'F25-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 189 ; -} -'F50-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 190 ; -} -'F75-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; -} -'F90-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; -} -'F100-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; -} -'EL-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; -} -'CAPE-MU-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 195 ; -} -'UVIMAX-N' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; -} -'UVI-N' = { - table2Version = 203 ; - indicatorOfParameter = 197 ; -} -'O3ANOM-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 198 ; -} -'CIN-MU-N' = { - table2Version = 203 ; - indicatorOfParameter = 199 ; -} -'CANW-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 200 ; -} -'FLLAT-JM2' = { - table2Version = 203 ; - indicatorOfParameter = 201 ; -} -'FLSEN-JM2' = { - table2Version = 203 ; - indicatorOfParameter = 202 ; -} -'FLMOM-PA' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; -} -'CAPE-0-3-MU' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; -} -'CAPE1040-MU' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; -} -'ILSAA1-N' = { - table2Version = 203 ; - indicatorOfParameter = 206 ; -} -'SOILTY-N' = { - table2Version = 203 ; - indicatorOfParameter = 207 ; -} -'TKEN-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 208 ; -} -'UFLMOM-NM2' = { - table2Version = 203 ; - indicatorOfParameter = 209 ; -} -'VFLMOM-NM2' = { - table2Version = 203 ; - indicatorOfParameter = 210 ; -} -'VEGET-N' = { - table2Version = 203 ; - indicatorOfParameter = 211 ; -} -'GRR-MMH' = { - table2Version = 203 ; - indicatorOfParameter = 212 ; -} -'RRRS-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 213 ; -} -'F0-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 214 ; -} -'F10-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 215 ; -} -'F25-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 216 ; -} -'F50-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 217 ; -} -'F75-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 218 ; -} -'F90-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 219 ; -} -'F100-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 220 ; -} -'F0-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 221 ; -} -'F10-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 222 ; -} -'F25-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 223 ; -} -'F50-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 224 ; -} -'F75-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 225 ; -} -'F90-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 226 ; -} -'F100-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 227 ; -} -'F0-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 228 ; -} -'F10-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 229 ; -} -'F25-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 230 ; -} -'F50-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 231 ; -} -'F75-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 232 ; -} -'F90-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 233 ; -} -'F100-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 234 ; -} -'LCL-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 235 ; -} -'LFC-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 236 ; -} -'EL-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 237 ; -} -'LCL-M' = { - table2Version = 203 ; - indicatorOfParameter = 238 ; -} -'LFC-M' = { - table2Version = 203 ; - indicatorOfParameter = 239 ; -} -'EL-M' = { - table2Version = 203 ; - indicatorOfParameter = 240 ; -} -'CAPE-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 241 ; -} -'CAPE-500' = { - table2Version = 203 ; - indicatorOfParameter = 242 ; -} -'CAPE1040' = { - table2Version = 203 ; - indicatorOfParameter = 243 ; -} -'CIN-N' = { - table2Version = 203 ; - indicatorOfParameter = 244 ; -} -'LCL-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 245 ; -} -'LFC-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 246 ; -} -'EL-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 247 ; -} -'LCL-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 248 ; -} -'LFC-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 249 ; -} -'EL-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 250 ; -} -'CAPE-0-3' = { - table2Version = 203 ; - indicatorOfParameter = 251 ; -} -'CAPE-0-3-500' = { - table2Version = 203 ; - indicatorOfParameter = 252 ; -} -'CAPE1040-500' = { - table2Version = 203 ; - indicatorOfParameter = 253 ; -} -'CIN-500-N' = { - table2Version = 203 ; - indicatorOfParameter = 254 ; -} -'PRECFORM2-N' = { - table2Version = 203 ; - indicatorOfParameter = 255 ; -} -'TSEA-C' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; -} -'ICNCT-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; -} -'ITHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; -} -'IMINTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; -} -'IMAXTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 5 ; -} -'IRIDGE-CM' = { - table2Version = 205 ; - indicatorOfParameter = 6 ; -} -'IVELU-MS' = { - table2Version = 205 ; - indicatorOfParameter = 7 ; -} -'IVELV-MS' = { - table2Version = 205 ; - indicatorOfParameter = 8 ; -} -'IMEANTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 9 ; -} -'IRIDGC-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 10 ; -} -'IRAFTTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 11 ; -} -'IRCNCT-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 12 ; -} -'IDD-D' = { - table2Version = 205 ; - indicatorOfParameter = 13 ; -} -'IFF-MS' = { - table2Version = 205 ; - indicatorOfParameter = 14 ; -} -'P-PA' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; -} -'P-PA' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; -} -'Z-M2S2' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; -} -'HL-M' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; -} -'T-K' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; -} -'TP-K' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; -} -'TMAX-C' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; -} -'TMIN-C' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; -} -'TD-K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; -} -'VV-M' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; -} -'U-MS' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; -} -'V-MS' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; -} -'VV-PAS' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; -} -'VV-MS' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; -} -'ABSVO-HZ' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; -} -'Q-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; -} -'RH-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; -} -'PRCWAT-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; -} -'EVAP-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; -} -'CLDICE-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; -} -'RR-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; -} -'SD-M' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; -} -'MIXHGT-M' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; -} -'N-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; -} -'NL-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; -} -'NM-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; -} -'NH-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; -} -'CLDWAT-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; -} -'LC-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; -} -'SR-M' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; -} -'ALBEDO' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; -} -'SM-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; -} -'IC-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; -} -'DW-D' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; -} -'HWS-M' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; -} -'PWS-S' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; -} -'RNETSWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; -} -'RNETLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; -} -'RTOPSW-WM2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'RTOPSWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'RTOPLW-WM2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'RTOPLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'RADLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; -} -'RADGLOA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; -} -'FLLAT-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; -} -'FLSEN-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; -} -'UFLMOM-NM2' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; -} -'VFLMOM-NM2' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; -} -'ICINGWARN-N' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; -} -'PRECTYPE-N' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; -} -'CAPE-JKG' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; -} -'WGU-MS' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; -} -'WGV-MS' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; -} -'RRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; -} -'SNACC-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'SNRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'RRS-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; -} -'CLDBASE-M' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; -} -'CLDTOP-M' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; -} -'TKEN-JKG' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; -} -'GR-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'GRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'RRH-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; -} -'FL-MPLTY-N' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; -} -'REFLTY-DBZ' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; -} -'FFG-MS' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/efkl/name.def b/eccodes/definitions.save/grib1/localConcepts/efkl/name.def deleted file mode 100644 index 4ccde83b..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/efkl/name.def +++ /dev/null @@ -1,1121 +0,0 @@ -# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi -'Pressure in hPa' = { - table2Version = 203 ; - indicatorOfParameter = 1 ; -} -'Geopotential' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; -} -'Height of level in meters' = { - table2Version = 203 ; - indicatorOfParameter = 3 ; -} -'Temperature in Celsius' = { - table2Version = 203 ; - indicatorOfParameter = 4 ; -} -'Potential temperature' = { - table2Version = 203 ; - indicatorOfParameter = 8 ; -} -'Pseudoadiabatic potential temperature in K' = { - table2Version = 203 ; - indicatorOfParameter = 9 ; -} -'Dew point Temperature in C' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; -} -'Specific Humidity in kg/kg' = { - table2Version = 203 ; - indicatorOfParameter = 12 ; -} -'Relative Humidity in percents' = { - table2Version = 203 ; - indicatorOfParameter = 13 ; -} -'Cloud Symbol' = { - table2Version = 203 ; - indicatorOfParameter = 15 ; -} -'Front Symbol' = { - table2Version = 203 ; - indicatorOfParameter = 18 ; -} -'Fog symbol' = { - table2Version = 203 ; - indicatorOfParameter = 19 ; -} -'Wind Direction in Degrees' = { - table2Version = 203 ; - indicatorOfParameter = 20 ; -} -'Wind speed in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 21 ; -} -'Wind Vector in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 22 ; -} -'U wind in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 23 ; -} -'V wind in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 24 ; -} -'Instantaneous Wind Speed in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 27 ; -} -'Height of -20 C level in meters' = { - table2Version = 203 ; - indicatorOfParameter = 28 ; -} -'Absolute Vorticity in HZ/10000' = { - table2Version = 203 ; - indicatorOfParameter = 31 ; -} -'FMI Air Quality Index' = { - table2Version = 203 ; - indicatorOfParameter = 38 ; -} -'WindSpeed at 10 m in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 39 ; -} -'Vertical Velocity in pa/s' = { - table2Version = 203 ; - indicatorOfParameter = 40 ; -} -'Vertical Velocity in mm/s' = { - table2Version = 203 ; - indicatorOfParameter = 43 ; -} -'Vertical Velocity in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 44 ; -} -'Precipitable water in mm' = { - table2Version = 203 ; - indicatorOfParameter = 47 ; -} -'Total precipitation' = { - table2Version = 203 ; - indicatorOfParameter = 50 ; -} -'Snow Depth in Meters' = { - table2Version = 203 ; - indicatorOfParameter = 51 ; -} -'Precalculated weather symbol' = { - table2Version = 203 ; - indicatorOfParameter = 52 ; -} -'Precalculated weather symbol' = { - table2Version = 203 ; - indicatorOfParameter = 53 ; -} -'Rain over the last 6 hours in mm' = { - table2Version = 203 ; - indicatorOfParameter = 54 ; -} -'Rain over the last 12 hours in mm' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; -} -'Rain over the last 1 hour in mm' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; -} -'Rain over the last 2 hours in mm' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; -} -'Rain over the last 3 hours in mm' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; -} -'Precipitation form' = { - table2Version = 203 ; - indicatorOfParameter = 59 ; -} -'Calculated smog appearance' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; -} -'Large Scale precipitation in 10ths of mm' = { - table2Version = 203 ; - indicatorOfParameter = 62 ; -} -'Convective precipitation in 10ths of mm' = { - table2Version = 203 ; - indicatorOfParameter = 63 ; -} -'Snowfall accumulation in mm' = { - table2Version = 203 ; - indicatorOfParameter = 68 ; -} -'Net long wave radiation' = { - table2Version = 203 ; - indicatorOfParameter = 69 ; -} -'Height of 0 C level in meters' = { - table2Version = 203 ; - indicatorOfParameter = 70 ; -} -'Total Precipitation rate in kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; -} -'Convective Precipitation rate in kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; -} -'Large Scale Precipitation rate in kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; -} -'Log Surface Pressure' = { - table2Version = 203 ; - indicatorOfParameter = 74 ; -} -'Ground Temperature in Kelvins' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; -} -'Loose snow depth in cm' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; -} -'Cloud water' = { - table2Version = 203 ; - indicatorOfParameter = 78 ; -} -'Total Cloud Cover in %' = { - table2Version = 203 ; - indicatorOfParameter = 79 ; -} -'Stability index (-50 -> 50)' = { - table2Version = 203 ; - indicatorOfParameter = 80 ; -} -'ALBEDO 0 to 1' = { - table2Version = 203 ; - indicatorOfParameter = 89 ; -} -'Simple weather symbol fo HS and others' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; -} -'Long wave radiation' = { - table2Version = 203 ; - indicatorOfParameter = 95 ; -} -'Global radiation' = { - table2Version = 203 ; - indicatorOfParameter = 96 ; -} -'Land Cover, 1=land, 0=sea' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; -} -'Ice Cover, 1=ice, 0=no ice' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; -} -'Density of dry air in Kg m-3' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; -} -'Sea spray icing for major oceans' = { - table2Version = 203 ; - indicatorOfParameter = 102 ; -} -'Icing, code 20041 in BUFR' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; -} -'Cloud ice' = { - table2Version = 203 ; - indicatorOfParameter = 104 ; -} -'Cloud condensate' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; -} -'Large scale snow accumulation in kg/m2' = { - table2Version = 203 ; - indicatorOfParameter = 106 ; -} -'Convective snow accumulation in kg/m2' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; -} -'Large scale snowfall rate in mm/h' = { - table2Version = 203 ; - indicatorOfParameter = 108 ; -} -'Convective snowfall rate in mm/h' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; -} -'Snowfall rate in mm/s or mm/h' = { - table2Version = 203 ; - indicatorOfParameter = 110 ; -} -'Temperature in cluster 1 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; -} -'Temperature in cluster 2 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; -} -'Temperature in cluster 3 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; -} -'Temperature in cluster 4 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; -} -'Temperature in cluster 5 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; -} -'Temperature in cluster 6 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; -} -'Geopotential in cluster 1 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; -} -'Geopotential in cluster 2 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; -} -'Geopotential in cluster 3 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; -} -'Geopotential in cluster 4 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 120 ; -} -'Geopotential in cluster 5 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 121 ; -} -'Geopotential in cluster 6 of EPS' = { - table2Version = 203 ; - indicatorOfParameter = 122 ; -} -'Net long wave radiation, top of athmosphere' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; -} -'Net short wave radiation' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; -} -'Equivalent potential temperature in K' = { - table2Version = 203 ; - indicatorOfParameter = 129 ; -} -'Absolute humidity, kg/m^3' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; -} -'Probability of big negative temperature anomaly (-8 K) in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; -} -'Probability of moderate negative temperature anomaly (-4 K) in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; -} -'Probability of moderate positive temperature anomaly (+4 K) in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; -} -'Probability of big positive temperature anomaly (+8 K) in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 134 ; -} -'Probability of reaching precipitation of 1 mm in 24 hours in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 141 ; -} -'Probability of reaching precipitation of 5 mm in 24 hours in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 142 ; -} -'Probability of reaching precipitation of 10 mm in 24 hours in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 143 ; -} -'Probability of reaching precipitation of 20 mm in 24 hours in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 144 ; -} -'Wind shear in knots' = { - table2Version = 203 ; - indicatorOfParameter = 145 ; -} -'Wind shear at 1km in knots' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; -} -'Storm relative helicity' = { - table2Version = 203 ; - indicatorOfParameter = 147 ; -} -'Storm relative helicity, 0 .. 1 km' = { - table2Version = 203 ; - indicatorOfParameter = 148 ; -} -'Wind speed at 1500 meters in m/s' = { - table2Version = 203 ; - indicatorOfParameter = 149 ; -} -'Equivalent potential temperature from range 0 ..3km in C' = { - table2Version = 203 ; - indicatorOfParameter = 150 ; -} -'Probability of reaching wind speed of 10 m/s in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 151 ; -} -'Probability of reaching wind speed of 15 m/s in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 152 ; -} -'Probability of reaching wind gust speed of 15 m/s in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 153 ; -} -'Probability of reaching wind gust speed of 20 m/s in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; -} -'Probability of reaching wind gust speed of 25 m/s in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 155 ; -} -'Extreme forecast index for wind speed' = { - table2Version = 203 ; - indicatorOfParameter = 156 ; -} -'Extreme forecast index for temperature' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; -} -'Extreme forecast index for wind gusts' = { - table2Version = 203 ; - indicatorOfParameter = 158 ; -} -'Extreme forecast index for precipitation' = { - table2Version = 203 ; - indicatorOfParameter = 159 ; -} -'Probability of snow' = { - table2Version = 203 ; - indicatorOfParameter = 161 ; -} -'Inverse of Monin-Obukhov length, i.e. 1/L in m-1' = { - table2Version = 203 ; - indicatorOfParameter = 163 ; -} -'Surface Roughness (momentum) in meters' = { - table2Version = 203 ; - indicatorOfParameter = 164 ; -} -'Instant rain in kg/m2' = { - table2Version = 203 ; - indicatorOfParameter = 165 ; -} -'Instant solid precipitation (snow+graupel) in kg/m2' = { - table2Version = 203 ; - indicatorOfParameter = 166 ; -} -'Mixed layer height in m' = { - table2Version = 203 ; - indicatorOfParameter = 167 ; -} -'Showalter index' = { - table2Version = 203 ; - indicatorOfParameter = 168 ; -} -'Lifted index' = { - table2Version = 203 ; - indicatorOfParameter = 169 ; -} -'Cross totals index' = { - table2Version = 203 ; - indicatorOfParameter = 170 ; -} -'Vertical totals index' = { - table2Version = 203 ; - indicatorOfParameter = 171 ; -} -'Total totals index' = { - table2Version = 203 ; - indicatorOfParameter = 172 ; -} -'0th fractal (ie. minimum) temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 173 ; -} -'10th fractal temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 174 ; -} -'25th fractal temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 175 ; -} -'50th fractal temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 176 ; -} -'75th fractal temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 177 ; -} -'90th fractal temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 178 ; -} -'100th fractal (ie. maximum) temperature in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 179 ; -} -'Height of LCL in hPa, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 180 ; -} -'Height of LFC in hPa, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; -} -'Height of EL in hPa, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; -} -'Surface Roughness in Meters' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; -} -'Height of LCL in meters, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; -} -'Height of LFC in meters, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 185 ; -} -'Soil Moisture Content in Kg per square meter' = { - table2Version = 203 ; - indicatorOfParameter = 186 ; -} -'0th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 187 ; -} -'10th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 188 ; -} -'25th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 189 ; -} -'50th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 190 ; -} -'75th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; -} -'90th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; -} -'100th fractal precipitation in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; -} -'Height of EL in meters, source data is found from most unstable level' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; -} -'Convective available potential energy, source data is most unstable' = { - table2Version = 203 ; - indicatorOfParameter = 195 ; -} -'UV index maximum' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; -} -'UV index' = { - table2Version = 203 ; - indicatorOfParameter = 197 ; -} -'Ozone anomaly' = { - table2Version = 203 ; - indicatorOfParameter = 198 ; -} -'Convective inhibition, source data is most unstable' = { - table2Version = 203 ; - indicatorOfParameter = 199 ; -} -'Canopy water' = { - table2Version = 203 ; - indicatorOfParameter = 200 ; -} -'Latent heat flux' = { - table2Version = 203 ; - indicatorOfParameter = 201 ; -} -'Sensible heat flux' = { - table2Version = 203 ; - indicatorOfParameter = 202 ; -} -'Scalar momentum flux in Pa' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; -} -'CAPE, source data is most unstable, value of CAPE between 0 .. 3km' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; -} -'CAPE, source data is most unstable, value of parameter when -40C < T < -10C' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; -} -'FMIWEATHERSYMBOL1' = { - table2Version = 203 ; - indicatorOfParameter = 206 ; -} -'Soil type' = { - table2Version = 203 ; - indicatorOfParameter = 207 ; -} -'Kinetic energy of turbulence in J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 208 ; -} -'U-component of momentum flux in N m-2' = { - table2Version = 203 ; - indicatorOfParameter = 209 ; -} -'V-component of momentum flux in N m-2' = { - table2Version = 203 ; - indicatorOfParameter = 210 ; -} -'Vegetation type' = { - table2Version = 203 ; - indicatorOfParameter = 211 ; -} -'Graupel rate in mm/h' = { - table2Version = 203 ; - indicatorOfParameter = 212 ; -} -'Solid precipitation rate (f.ex. snow+graupel)' = { - table2Version = 203 ; - indicatorOfParameter = 213 ; -} -'0th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 214 ; -} -'10th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 215 ; -} -'25th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 216 ; -} -'50th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 217 ; -} -'75th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 218 ; -} -'90th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 219 ; -} -'100th fractal cloudiness in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 220 ; -} -'0th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 221 ; -} -'10th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 222 ; -} -'25th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 223 ; -} -'50th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 224 ; -} -'75th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 225 ; -} -'90th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 226 ; -} -'100th fractal wind gust speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 227 ; -} -'0th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 228 ; -} -'10th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 229 ; -} -'25th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 230 ; -} -'50th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 231 ; -} -'75th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 232 ; -} -'90th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 233 ; -} -'100th fractal wind speed in EPS' = { - table2Version = 203 ; - indicatorOfParameter = 234 ; -} -'Height of LCL in hPa' = { - table2Version = 203 ; - indicatorOfParameter = 235 ; -} -'Height of LFC in hPa' = { - table2Version = 203 ; - indicatorOfParameter = 236 ; -} -'Height of EL in hPa' = { - table2Version = 203 ; - indicatorOfParameter = 237 ; -} -'Height of LCL in meters' = { - table2Version = 203 ; - indicatorOfParameter = 238 ; -} -'Height of LFC in meters' = { - table2Version = 203 ; - indicatorOfParameter = 239 ; -} -'Height of EL in meters' = { - table2Version = 203 ; - indicatorOfParameter = 240 ; -} -'Convective available potential energy' = { - table2Version = 203 ; - indicatorOfParameter = 241 ; -} -'Convective available potential energy, source data is LCL-500 and EL-500' = { - table2Version = 203 ; - indicatorOfParameter = 242 ; -} -'Convective available potential energy, value of parameter when -40C < T < -10C' = { - table2Version = 203 ; - indicatorOfParameter = 243 ; -} -'Convective inhibition (cin)' = { - table2Version = 203 ; - indicatorOfParameter = 244 ; -} -'Height of LCL in hPa, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 245 ; -} -'Height of LFC in hPa, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 246 ; -} -'Height of EL in hPa, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 247 ; -} -'Height of LCL in meters, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 248 ; -} -'Height of LFC in meters, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 249 ; -} -'Height of EL in meters, source data is averaged between 0 .. 500m' = { - table2Version = 203 ; - indicatorOfParameter = 250 ; -} -'Convective available potential energy, value of CAPE between 0 .. 3km' = { - table2Version = 203 ; - indicatorOfParameter = 251 ; -} -'CAPE, source data is LFC-500 and EL-500, value of CAPE between 0 .. 3km' = { - table2Version = 203 ; - indicatorOfParameter = 252 ; -} -'CAPE, source data is LFC-500 and EL-500, value of CAPE when -40C < T < -10C' = { - table2Version = 203 ; - indicatorOfParameter = 253 ; -} -'Convective inhibition, source data is LFC-500 and EL-500' = { - table2Version = 203 ; - indicatorOfParameter = 254 ; -} -'Precipitation form, duplicate parameter for HIMAN purposes' = { - table2Version = 203 ; - indicatorOfParameter = 255 ; -} -'Sea Temperature in Celsius' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; -} -'Ice concentration' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; -} -'Ice thickness' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; -} -'Ice minimum thickness' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; -} -'Ice maximum thickness' = { - table2Version = 205 ; - indicatorOfParameter = 5 ; -} -'Ice degree of ridging' = { - table2Version = 205 ; - indicatorOfParameter = 6 ; -} -'Sea ice velocity (U) in m/s' = { - table2Version = 205 ; - indicatorOfParameter = 7 ; -} -'Sea ice velocity (V) in m/s' = { - table2Version = 205 ; - indicatorOfParameter = 8 ; -} -'Ice mean thickness' = { - table2Version = 205 ; - indicatorOfParameter = 9 ; -} -'Ice concentration of ridging' = { - table2Version = 205 ; - indicatorOfParameter = 10 ; -} -'Rafted sea ice mean thickness' = { - table2Version = 205 ; - indicatorOfParameter = 11 ; -} -'Rafted sea ice concentration' = { - table2Version = 205 ; - indicatorOfParameter = 12 ; -} -'Ice Direction in Degrees' = { - table2Version = 205 ; - indicatorOfParameter = 13 ; -} -'Ice speed in m/s' = { - table2Version = 205 ; - indicatorOfParameter = 14 ; -} -'Pressure in Pascals' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; -} -'Pressure in Pascals' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; -} -'Geopotential' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; -} -'Height of level in meters' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; -} -'Temperature in Kelvins' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; -} -'Potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; -} -'Maximum Temperature in Celsius' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; -} -'Minimum Temperature in Celsius' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; -} -'Dew point Temperature in K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; -} -'Visibility in Meters' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; -} -'U wind in m/s' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; -} -'V wind in m/s' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; -} -'Vertical Velocity in pa/s' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; -} -'Vertical Velocity in m/s' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; -} -'Absolute Vorticity in HZ' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; -} -'Specific Humidity in kg/kg' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; -} -'Relative Humidity in percents' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; -} -'Precipitable water in mm' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; -} -'Evaporation in mm' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; -} -'Cloud ice' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; -} -'Total precipitation in kg/m2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; -} -'Snow Depth in Meters' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; -} -'Mixed layer height in m' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; -} -'Cloudiness 0...1' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; -} -'Low Cloud Amount' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; -} -'Medium Cloud Amount' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; -} -'High Cloud Amount' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; -} -'Cloud water' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; -} -'Land Cover, 1=land, 0=sea' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; -} -'Surface Roughness in Meters' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; -} -'ALBEDO 0 to 1' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; -} -'Soil Moisture Content in Kg per square meter' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; -} -'Ice Cover, 1=ice, 0=no ice' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; -} -'Mean wave direction at spectral peak in degrees' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; -} -'Significant wave height in m' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; -} -'Peak wave period in s' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; -} -'Net short wave radiation accumulation' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; -} -'Net long wave radiation accumulation' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; -} -'Net short wave radiation, top of athmosphere' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'Net short wave radiation accumulation, top of atmosphere' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'Net long wave radiation, top of athmosphere' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'Net long wave radiation accumulation, top of atmosphere' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'Long wave radiation accumulation' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; -} -'Global radiation accumulation' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; -} -'Latent heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; -} -'Sensible heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; -} -'U-component of momentum flux in N m-2' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; -} -'V-component of momentum flux in N m-2' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; -} -'Icing warning index, values between 0 ... 4' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; -} -'Precipitation type' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; -} -'Convective available potential energy' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; -} -'U-component of wind gust' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; -} -'V-component of wind gust' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; -} -'Instant rain in kg/m2' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; -} -'Snowfall accumulation in mm' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'Instant snowfall rate in mm/s or mm/h' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'Solid precipitation (f.ex. snow+graupel)' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; -} -'Cloud base height' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; -} -'Height of cloud top' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; -} -'Kinetic energy of turbulence in J kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; -} -'Graupel precipitation in kg/m2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'Instant graupel in kg/m2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'Total hail precipitation in kg/m2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; -} -'Multiplicity Of The Flash, Number' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; -} -'Clutter corrected ceflectivity' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; -} -'Instantaneous Wind Speed in m/s' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def b/eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def deleted file mode 100644 index 53e6b4e0..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/efkl/paramId.def +++ /dev/null @@ -1,801 +0,0 @@ -# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi -'1' = { - table2Version = 203 ; - indicatorOfParameter = 1 ; -} -'2' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; -} -'3' = { - table2Version = 203 ; - indicatorOfParameter = 3 ; -} -'4' = { - table2Version = 203 ; - indicatorOfParameter = 4 ; -} -'8' = { - table2Version = 203 ; - indicatorOfParameter = 8 ; -} -'9' = { - table2Version = 203 ; - indicatorOfParameter = 9 ; -} -'10' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; -} -'12' = { - table2Version = 203 ; - indicatorOfParameter = 12 ; -} -'13' = { - table2Version = 203 ; - indicatorOfParameter = 13 ; -} -'15' = { - table2Version = 203 ; - indicatorOfParameter = 15 ; -} -'18' = { - table2Version = 203 ; - indicatorOfParameter = 18 ; -} -'19' = { - table2Version = 203 ; - indicatorOfParameter = 19 ; -} -'20' = { - table2Version = 203 ; - indicatorOfParameter = 20 ; -} -'21' = { - table2Version = 203 ; - indicatorOfParameter = 21 ; -} -'22' = { - table2Version = 203 ; - indicatorOfParameter = 22 ; -} -'23' = { - table2Version = 203 ; - indicatorOfParameter = 23 ; -} -'24' = { - table2Version = 203 ; - indicatorOfParameter = 24 ; -} -'27' = { - table2Version = 203 ; - indicatorOfParameter = 27 ; -} -'28' = { - table2Version = 203 ; - indicatorOfParameter = 28 ; -} -'31' = { - table2Version = 203 ; - indicatorOfParameter = 31 ; -} -'38' = { - table2Version = 203 ; - indicatorOfParameter = 38 ; -} -'39' = { - table2Version = 203 ; - indicatorOfParameter = 39 ; -} -'40' = { - table2Version = 203 ; - indicatorOfParameter = 40 ; -} -'43' = { - table2Version = 203 ; - indicatorOfParameter = 43 ; -} -'44' = { - table2Version = 203 ; - indicatorOfParameter = 44 ; -} -'47' = { - table2Version = 203 ; - indicatorOfParameter = 47 ; -} -'50' = { - table2Version = 203 ; - indicatorOfParameter = 50 ; -} -'51' = { - table2Version = 203 ; - indicatorOfParameter = 51 ; -} -'52' = { - table2Version = 203 ; - indicatorOfParameter = 52 ; -} -'53' = { - table2Version = 203 ; - indicatorOfParameter = 53 ; -} -'54' = { - table2Version = 203 ; - indicatorOfParameter = 54 ; -} -'55' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; -} -'56' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; -} -'57' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; -} -'58' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; -} -'59' = { - table2Version = 203 ; - indicatorOfParameter = 59 ; -} -'60' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; -} -'62' = { - table2Version = 203 ; - indicatorOfParameter = 62 ; -} -'63' = { - table2Version = 203 ; - indicatorOfParameter = 63 ; -} -'68' = { - table2Version = 203 ; - indicatorOfParameter = 68 ; -} -'69' = { - table2Version = 203 ; - indicatorOfParameter = 69 ; -} -'70' = { - table2Version = 203 ; - indicatorOfParameter = 70 ; -} -'71' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; -} -'72' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; -} -'73' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; -} -'74' = { - table2Version = 203 ; - indicatorOfParameter = 74 ; -} -'75' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; -} -'77' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; -} -'78' = { - table2Version = 203 ; - indicatorOfParameter = 78 ; -} -'79' = { - table2Version = 203 ; - indicatorOfParameter = 79 ; -} -'80' = { - table2Version = 203 ; - indicatorOfParameter = 80 ; -} -'89' = { - table2Version = 203 ; - indicatorOfParameter = 89 ; -} -'91' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; -} -'95' = { - table2Version = 203 ; - indicatorOfParameter = 95 ; -} -'96' = { - table2Version = 203 ; - indicatorOfParameter = 96 ; -} -'99' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; -} -'100' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; -} -'101' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; -} -'102' = { - table2Version = 203 ; - indicatorOfParameter = 102 ; -} -'103' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; -} -'104' = { - table2Version = 203 ; - indicatorOfParameter = 104 ; -} -'105' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; -} -'106' = { - table2Version = 203 ; - indicatorOfParameter = 106 ; -} -'107' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; -} -'108' = { - table2Version = 203 ; - indicatorOfParameter = 108 ; -} -'109' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; -} -'110' = { - table2Version = 203 ; - indicatorOfParameter = 110 ; -} -'111' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; -} -'112' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; -} -'113' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; -} -'114' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; -} -'115' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; -} -'116' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; -} -'117' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; -} -'118' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; -} -'119' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; -} -'120' = { - table2Version = 203 ; - indicatorOfParameter = 120 ; -} -'121' = { - table2Version = 203 ; - indicatorOfParameter = 121 ; -} -'122' = { - table2Version = 203 ; - indicatorOfParameter = 122 ; -} -'126' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; -} -'128' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; -} -'129' = { - table2Version = 203 ; - indicatorOfParameter = 129 ; -} -'130' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; -} -'131' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; -} -'132' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; -} -'133' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; -} -'134' = { - table2Version = 203 ; - indicatorOfParameter = 134 ; -} -'141' = { - table2Version = 203 ; - indicatorOfParameter = 141 ; -} -'142' = { - table2Version = 203 ; - indicatorOfParameter = 142 ; -} -'143' = { - table2Version = 203 ; - indicatorOfParameter = 143 ; -} -'144' = { - table2Version = 203 ; - indicatorOfParameter = 144 ; -} -'145' = { - table2Version = 203 ; - indicatorOfParameter = 145 ; -} -'146' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; -} -'147' = { - table2Version = 203 ; - indicatorOfParameter = 147 ; -} -'148' = { - table2Version = 203 ; - indicatorOfParameter = 148 ; -} -'149' = { - table2Version = 203 ; - indicatorOfParameter = 149 ; -} -'150' = { - table2Version = 203 ; - indicatorOfParameter = 150 ; -} -'151' = { - table2Version = 203 ; - indicatorOfParameter = 151 ; -} -'152' = { - table2Version = 203 ; - indicatorOfParameter = 152 ; -} -'153' = { - table2Version = 203 ; - indicatorOfParameter = 153 ; -} -'154' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; -} -'155' = { - table2Version = 203 ; - indicatorOfParameter = 155 ; -} -'156' = { - table2Version = 203 ; - indicatorOfParameter = 156 ; -} -'157' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; -} -'158' = { - table2Version = 203 ; - indicatorOfParameter = 158 ; -} -'159' = { - table2Version = 203 ; - indicatorOfParameter = 159 ; -} -'161' = { - table2Version = 203 ; - indicatorOfParameter = 161 ; -} -'163' = { - table2Version = 203 ; - indicatorOfParameter = 163 ; -} -'164' = { - table2Version = 203 ; - indicatorOfParameter = 164 ; -} -'165' = { - table2Version = 203 ; - indicatorOfParameter = 165 ; -} -'166' = { - table2Version = 203 ; - indicatorOfParameter = 166 ; -} -'167' = { - table2Version = 203 ; - indicatorOfParameter = 167 ; -} -'168' = { - table2Version = 203 ; - indicatorOfParameter = 168 ; -} -'169' = { - table2Version = 203 ; - indicatorOfParameter = 169 ; -} -'170' = { - table2Version = 203 ; - indicatorOfParameter = 170 ; -} -'171' = { - table2Version = 203 ; - indicatorOfParameter = 171 ; -} -'172' = { - table2Version = 203 ; - indicatorOfParameter = 172 ; -} -'173' = { - table2Version = 203 ; - indicatorOfParameter = 173 ; -} -'174' = { - table2Version = 203 ; - indicatorOfParameter = 174 ; -} -'175' = { - table2Version = 203 ; - indicatorOfParameter = 175 ; -} -'176' = { - table2Version = 203 ; - indicatorOfParameter = 176 ; -} -'177' = { - table2Version = 203 ; - indicatorOfParameter = 177 ; -} -'178' = { - table2Version = 203 ; - indicatorOfParameter = 178 ; -} -'179' = { - table2Version = 203 ; - indicatorOfParameter = 179 ; -} -'180' = { - table2Version = 203 ; - indicatorOfParameter = 180 ; -} -'181' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; -} -'182' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; -} -'183' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; -} -'184' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; -} -'185' = { - table2Version = 203 ; - indicatorOfParameter = 185 ; -} -'186' = { - table2Version = 203 ; - indicatorOfParameter = 186 ; -} -'187' = { - table2Version = 203 ; - indicatorOfParameter = 187 ; -} -'188' = { - table2Version = 203 ; - indicatorOfParameter = 188 ; -} -'189' = { - table2Version = 203 ; - indicatorOfParameter = 189 ; -} -'190' = { - table2Version = 203 ; - indicatorOfParameter = 190 ; -} -'191' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; -} -'192' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; -} -'193' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; -} -'194' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; -} -'195' = { - table2Version = 203 ; - indicatorOfParameter = 195 ; -} -'196' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; -} -'197' = { - table2Version = 203 ; - indicatorOfParameter = 197 ; -} -'198' = { - table2Version = 203 ; - indicatorOfParameter = 198 ; -} -'199' = { - table2Version = 203 ; - indicatorOfParameter = 199 ; -} -'200' = { - table2Version = 203 ; - indicatorOfParameter = 200 ; -} -'201' = { - table2Version = 203 ; - indicatorOfParameter = 201 ; -} -'202' = { - table2Version = 203 ; - indicatorOfParameter = 202 ; -} -'203' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; -} -'204' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; -} -'205' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; -} -'206' = { - table2Version = 203 ; - indicatorOfParameter = 206 ; -} -'207' = { - table2Version = 203 ; - indicatorOfParameter = 207 ; -} -'208' = { - table2Version = 203 ; - indicatorOfParameter = 208 ; -} -'209' = { - table2Version = 203 ; - indicatorOfParameter = 209 ; -} -'210' = { - table2Version = 203 ; - indicatorOfParameter = 210 ; -} -'211' = { - table2Version = 203 ; - indicatorOfParameter = 211 ; -} -'212' = { - table2Version = 203 ; - indicatorOfParameter = 212 ; -} -'213' = { - table2Version = 203 ; - indicatorOfParameter = 213 ; -} -'214' = { - table2Version = 203 ; - indicatorOfParameter = 214 ; -} -'215' = { - table2Version = 203 ; - indicatorOfParameter = 215 ; -} -'216' = { - table2Version = 203 ; - indicatorOfParameter = 216 ; -} -'217' = { - table2Version = 203 ; - indicatorOfParameter = 217 ; -} -'218' = { - table2Version = 203 ; - indicatorOfParameter = 218 ; -} -'219' = { - table2Version = 203 ; - indicatorOfParameter = 219 ; -} -'220' = { - table2Version = 203 ; - indicatorOfParameter = 220 ; -} -'221' = { - table2Version = 203 ; - indicatorOfParameter = 221 ; -} -'222' = { - table2Version = 203 ; - indicatorOfParameter = 222 ; -} -'223' = { - table2Version = 203 ; - indicatorOfParameter = 223 ; -} -'224' = { - table2Version = 203 ; - indicatorOfParameter = 224 ; -} -'225' = { - table2Version = 203 ; - indicatorOfParameter = 225 ; -} -'226' = { - table2Version = 203 ; - indicatorOfParameter = 226 ; -} -'227' = { - table2Version = 203 ; - indicatorOfParameter = 227 ; -} -'228' = { - table2Version = 203 ; - indicatorOfParameter = 228 ; -} -'229' = { - table2Version = 203 ; - indicatorOfParameter = 229 ; -} -'230' = { - table2Version = 203 ; - indicatorOfParameter = 230 ; -} -'231' = { - table2Version = 203 ; - indicatorOfParameter = 231 ; -} -'232' = { - table2Version = 203 ; - indicatorOfParameter = 232 ; -} -'233' = { - table2Version = 203 ; - indicatorOfParameter = 233 ; -} -'234' = { - table2Version = 203 ; - indicatorOfParameter = 234 ; -} -'235' = { - table2Version = 203 ; - indicatorOfParameter = 235 ; -} -'236' = { - table2Version = 203 ; - indicatorOfParameter = 236 ; -} -'237' = { - table2Version = 203 ; - indicatorOfParameter = 237 ; -} -'238' = { - table2Version = 203 ; - indicatorOfParameter = 238 ; -} -'239' = { - table2Version = 203 ; - indicatorOfParameter = 239 ; -} -'240' = { - table2Version = 203 ; - indicatorOfParameter = 240 ; -} -'241' = { - table2Version = 203 ; - indicatorOfParameter = 241 ; -} -'242' = { - table2Version = 203 ; - indicatorOfParameter = 242 ; -} -'243' = { - table2Version = 203 ; - indicatorOfParameter = 243 ; -} -'244' = { - table2Version = 203 ; - indicatorOfParameter = 244 ; -} -'245' = { - table2Version = 203 ; - indicatorOfParameter = 245 ; -} -'246' = { - table2Version = 203 ; - indicatorOfParameter = 246 ; -} -'247' = { - table2Version = 203 ; - indicatorOfParameter = 247 ; -} -'248' = { - table2Version = 203 ; - indicatorOfParameter = 248 ; -} -'249' = { - table2Version = 203 ; - indicatorOfParameter = 249 ; -} -'250' = { - table2Version = 203 ; - indicatorOfParameter = 250 ; -} -'251' = { - table2Version = 203 ; - indicatorOfParameter = 251 ; -} -'252' = { - table2Version = 203 ; - indicatorOfParameter = 252 ; -} -'253' = { - table2Version = 203 ; - indicatorOfParameter = 253 ; -} -'254' = { - table2Version = 203 ; - indicatorOfParameter = 254 ; -} -'255' = { - table2Version = 203 ; - indicatorOfParameter = 255 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def b/eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def deleted file mode 100644 index 727ee660..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/efkl/shortName.def +++ /dev/null @@ -1,1121 +0,0 @@ -# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi -'P-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 1 ; -} -'Z-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; -} -'HL-M' = { - table2Version = 203 ; - indicatorOfParameter = 3 ; -} -'T-C' = { - table2Version = 203 ; - indicatorOfParameter = 4 ; -} -'TP-K' = { - table2Version = 203 ; - indicatorOfParameter = 8 ; -} -'TPW-K' = { - table2Version = 203 ; - indicatorOfParameter = 9 ; -} -'TD-C' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; -} -'Q-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 12 ; -} -'RH-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 13 ; -} -'CLDSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 15 ; -} -'FRNTSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 18 ; -} -'FOGSYM-N' = { - table2Version = 203 ; - indicatorOfParameter = 19 ; -} -'DD-D' = { - table2Version = 203 ; - indicatorOfParameter = 20 ; -} -'FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 21 ; -} -'DF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 22 ; -} -'U-MS' = { - table2Version = 203 ; - indicatorOfParameter = 23 ; -} -'V-MS' = { - table2Version = 203 ; - indicatorOfParameter = 24 ; -} -'FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 27 ; -} -'HM20C-M' = { - table2Version = 203 ; - indicatorOfParameter = 28 ; -} -'ABSVO-HZ-5' = { - table2Version = 203 ; - indicatorOfParameter = 31 ; -} -'AQI-N' = { - table2Version = 203 ; - indicatorOfParameter = 38 ; -} -'FF10-MS' = { - table2Version = 203 ; - indicatorOfParameter = 39 ; -} -'VV-PAS' = { - table2Version = 203 ; - indicatorOfParameter = 40 ; -} -'VV-MMS' = { - table2Version = 203 ; - indicatorOfParameter = 43 ; -} -'VV-MS' = { - table2Version = 203 ; - indicatorOfParameter = 44 ; -} -'PRCWAT-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 47 ; -} -'RR-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 50 ; -} -'SD-M' = { - table2Version = 203 ; - indicatorOfParameter = 51 ; -} -'HSADE1-N' = { - table2Version = 203 ; - indicatorOfParameter = 52 ; -} -'HSADE2-N' = { - table2Version = 203 ; - indicatorOfParameter = 53 ; -} -'RR-6-MM' = { - table2Version = 203 ; - indicatorOfParameter = 54 ; -} -'RR-12-MM' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; -} -'RR-1-MM' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; -} -'RR-2-MM' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; -} -'RR-3-MM' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; -} -'PRECFORM-N' = { - table2Version = 203 ; - indicatorOfParameter = 59 ; -} -'SMOGI-N' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; -} -'RRL-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 62 ; -} -'RRC-MM10' = { - table2Version = 203 ; - indicatorOfParameter = 63 ; -} -'SNACC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 68 ; -} -'RNETLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 69 ; -} -'H0C-M' = { - table2Version = 203 ; - indicatorOfParameter = 70 ; -} -'RRR-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; -} -'RRRC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; -} -'RRRL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; -} -'LNSP-N' = { - table2Version = 203 ; - indicatorOfParameter = 74 ; -} -'TG-K' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; -} -'LSSN-M100' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; -} -'CLDWAT-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 78 ; -} -'N-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 79 ; -} -'KINDEX-N' = { - table2Version = 203 ; - indicatorOfParameter = 80 ; -} -'ALBEDO' = { - table2Version = 203 ; - indicatorOfParameter = 89 ; -} -'HESSAA-N' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; -} -'RADLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 95 ; -} -'RADGLO-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 96 ; -} -'LC-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; -} -'IC-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; -} -'RHO-KGM3' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; -} -'SSICING-N' = { - table2Version = 203 ; - indicatorOfParameter = 102 ; -} -'ICING-N' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; -} -'CLDICE-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 104 ; -} -'CLDCND-KGKG' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; -} -'SNL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 106 ; -} -'SNC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; -} -'SNRL-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 108 ; -} -'SNRC-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; -} -'SNR-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 110 ; -} -'T-C1-C' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; -} -'T-C2-C' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; -} -'T-C3-C' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; -} -'T-C4-C' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; -} -'T-C5-C' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; -} -'T-C6-C' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; -} -'Z-C1-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; -} -'Z-C2-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; -} -'Z-C3-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; -} -'Z-C4-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 120 ; -} -'Z-C5-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 121 ; -} -'Z-C6-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 122 ; -} -'RTOPLW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; -} -'RNETSW-WM2' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; -} -'TPE-K' = { - table2Version = 203 ; - indicatorOfParameter = 129 ; -} -'ABSH-KGM3' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; -} -'PROB-T-1' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; -} -'PROB-T-2' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; -} -'PROB-T-3' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; -} -'PROB-T-4' = { - table2Version = 203 ; - indicatorOfParameter = 134 ; -} -'PROB-RR-1' = { - table2Version = 203 ; - indicatorOfParameter = 141 ; -} -'PROB-RR-2' = { - table2Version = 203 ; - indicatorOfParameter = 142 ; -} -'PROB-RR-3' = { - table2Version = 203 ; - indicatorOfParameter = 143 ; -} -'PROB-RR-4' = { - table2Version = 203 ; - indicatorOfParameter = 144 ; -} -'WSH-KT' = { - table2Version = 203 ; - indicatorOfParameter = 145 ; -} -'WSH-1-KT' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; -} -'HLCY-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 147 ; -} -'HLCY-1-M2S2' = { - table2Version = 203 ; - indicatorOfParameter = 148 ; -} -'FF1500-MS' = { - table2Version = 203 ; - indicatorOfParameter = 149 ; -} -'TPE3-C' = { - table2Version = 203 ; - indicatorOfParameter = 150 ; -} -'PROB-W-1' = { - table2Version = 203 ; - indicatorOfParameter = 151 ; -} -'PROB-W-2' = { - table2Version = 203 ; - indicatorOfParameter = 152 ; -} -'PROB-WG-1' = { - table2Version = 203 ; - indicatorOfParameter = 153 ; -} -'PROB-WG-2' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; -} -'PROB-WG-3' = { - table2Version = 203 ; - indicatorOfParameter = 155 ; -} -'EFI-WS' = { - table2Version = 203 ; - indicatorOfParameter = 156 ; -} -'EFI-T' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; -} -'EFI-WG' = { - table2Version = 203 ; - indicatorOfParameter = 158 ; -} -'EFI-RR' = { - table2Version = 203 ; - indicatorOfParameter = 159 ; -} -'PROBSN-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 161 ; -} -'MOL-M' = { - table2Version = 203 ; - indicatorOfParameter = 163 ; -} -'SRMOM-M' = { - table2Version = 203 ; - indicatorOfParameter = 164 ; -} -'RRI-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 165 ; -} -'RSI-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 166 ; -} -'MIXHGT-M' = { - table2Version = 203 ; - indicatorOfParameter = 167 ; -} -'SI-N' = { - table2Version = 203 ; - indicatorOfParameter = 168 ; -} -'LI-N' = { - table2Version = 203 ; - indicatorOfParameter = 169 ; -} -'CTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 170 ; -} -'VTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 171 ; -} -'TTI-N' = { - table2Version = 203 ; - indicatorOfParameter = 172 ; -} -'F0-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 173 ; -} -'F10-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 174 ; -} -'F25-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 175 ; -} -'F50-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 176 ; -} -'F75-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 177 ; -} -'F90-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 178 ; -} -'F100-T-K' = { - table2Version = 203 ; - indicatorOfParameter = 179 ; -} -'LCL-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 180 ; -} -'LFC-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; -} -'EL-MU-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; -} -'SR-M' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; -} -'LCL-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; -} -'LFC-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 185 ; -} -'SM-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 186 ; -} -'F0-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 187 ; -} -'F10-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 188 ; -} -'F25-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 189 ; -} -'F50-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 190 ; -} -'F75-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; -} -'F90-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; -} -'F100-RR-6' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; -} -'EL-MU-M' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; -} -'CAPE-MU-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 195 ; -} -'UVIMAX-N' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; -} -'UVI-N' = { - table2Version = 203 ; - indicatorOfParameter = 197 ; -} -'O3ANOM-PRCNT' = { - table2Version = 203 ; - indicatorOfParameter = 198 ; -} -'CIN-MU-N' = { - table2Version = 203 ; - indicatorOfParameter = 199 ; -} -'CANW-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 200 ; -} -'FLLAT-JM2' = { - table2Version = 203 ; - indicatorOfParameter = 201 ; -} -'FLSEN-JM2' = { - table2Version = 203 ; - indicatorOfParameter = 202 ; -} -'FLMOM-PA' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; -} -'CAPE-0-3-MU' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; -} -'CAPE1040-MU' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; -} -'ILSAA1-N' = { - table2Version = 203 ; - indicatorOfParameter = 206 ; -} -'SOILTY-N' = { - table2Version = 203 ; - indicatorOfParameter = 207 ; -} -'TKEN-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 208 ; -} -'UFLMOM-NM2' = { - table2Version = 203 ; - indicatorOfParameter = 209 ; -} -'VFLMOM-NM2' = { - table2Version = 203 ; - indicatorOfParameter = 210 ; -} -'VEGET-N' = { - table2Version = 203 ; - indicatorOfParameter = 211 ; -} -'GRR-MMH' = { - table2Version = 203 ; - indicatorOfParameter = 212 ; -} -'RRRS-KGM2' = { - table2Version = 203 ; - indicatorOfParameter = 213 ; -} -'F0-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 214 ; -} -'F10-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 215 ; -} -'F25-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 216 ; -} -'F50-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 217 ; -} -'F75-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 218 ; -} -'F90-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 219 ; -} -'F100-N-0TO1' = { - table2Version = 203 ; - indicatorOfParameter = 220 ; -} -'F0-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 221 ; -} -'F10-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 222 ; -} -'F25-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 223 ; -} -'F50-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 224 ; -} -'F75-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 225 ; -} -'F90-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 226 ; -} -'F100-FFG-MS' = { - table2Version = 203 ; - indicatorOfParameter = 227 ; -} -'F0-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 228 ; -} -'F10-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 229 ; -} -'F25-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 230 ; -} -'F50-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 231 ; -} -'F75-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 232 ; -} -'F90-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 233 ; -} -'F100-FF-MS' = { - table2Version = 203 ; - indicatorOfParameter = 234 ; -} -'LCL-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 235 ; -} -'LFC-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 236 ; -} -'EL-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 237 ; -} -'LCL-M' = { - table2Version = 203 ; - indicatorOfParameter = 238 ; -} -'LFC-M' = { - table2Version = 203 ; - indicatorOfParameter = 239 ; -} -'EL-M' = { - table2Version = 203 ; - indicatorOfParameter = 240 ; -} -'CAPE-JKG' = { - table2Version = 203 ; - indicatorOfParameter = 241 ; -} -'CAPE-500' = { - table2Version = 203 ; - indicatorOfParameter = 242 ; -} -'CAPE1040' = { - table2Version = 203 ; - indicatorOfParameter = 243 ; -} -'CIN-N' = { - table2Version = 203 ; - indicatorOfParameter = 244 ; -} -'LCL-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 245 ; -} -'LFC-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 246 ; -} -'EL-500-HPA' = { - table2Version = 203 ; - indicatorOfParameter = 247 ; -} -'LCL-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 248 ; -} -'LFC-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 249 ; -} -'EL-500-M' = { - table2Version = 203 ; - indicatorOfParameter = 250 ; -} -'CAPE-0-3' = { - table2Version = 203 ; - indicatorOfParameter = 251 ; -} -'CAPE-0-3-500' = { - table2Version = 203 ; - indicatorOfParameter = 252 ; -} -'CAPE1040-500' = { - table2Version = 203 ; - indicatorOfParameter = 253 ; -} -'CIN-500-N' = { - table2Version = 203 ; - indicatorOfParameter = 254 ; -} -'PRECFORM2-N' = { - table2Version = 203 ; - indicatorOfParameter = 255 ; -} -'TSEA-C' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; -} -'ICNCT-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; -} -'ITHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; -} -'IMINTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; -} -'IMAXTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 5 ; -} -'IRIDGE-CM' = { - table2Version = 205 ; - indicatorOfParameter = 6 ; -} -'IVELU-MS' = { - table2Version = 205 ; - indicatorOfParameter = 7 ; -} -'IVELV-MS' = { - table2Version = 205 ; - indicatorOfParameter = 8 ; -} -'IMEANTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 9 ; -} -'IRIDGC-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 10 ; -} -'IRAFTTHK-CM' = { - table2Version = 205 ; - indicatorOfParameter = 11 ; -} -'IRCNCT-PRCNT' = { - table2Version = 205 ; - indicatorOfParameter = 12 ; -} -'IDD-D' = { - table2Version = 205 ; - indicatorOfParameter = 13 ; -} -'IFF-MS' = { - table2Version = 205 ; - indicatorOfParameter = 14 ; -} -'P-PA' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; -} -'P-PA' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; -} -'Z-M2S2' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; -} -'HL-M' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; -} -'T-K' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; -} -'TP-K' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; -} -'TMAX-C' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; -} -'TMIN-C' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; -} -'TD-K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; -} -'VV-M' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; -} -'U-MS' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; -} -'V-MS' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; -} -'VV-PAS' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; -} -'VV-MS' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; -} -'ABSVO-HZ' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; -} -'Q-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; -} -'RH-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; -} -'PRCWAT-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; -} -'EVAP-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; -} -'CLDICE-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; -} -'RR-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; -} -'SD-M' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; -} -'MIXHGT-M' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; -} -'N-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; -} -'NL-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; -} -'NM-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; -} -'NH-PRCNT' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; -} -'CLDWAT-KGKG' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; -} -'LC-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; -} -'SR-M' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; -} -'ALBEDO' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; -} -'SM-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; -} -'IC-0TO1' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; -} -'DW-D' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; -} -'HWS-M' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; -} -'PWS-S' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; -} -'RNETSWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; -} -'RNETLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; -} -'RTOPSW-WM2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'RTOPSWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'RTOPLW-WM2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'RTOPLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'RADLWA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; -} -'RADGLOA-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; -} -'FLLAT-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; -} -'FLSEN-JM2' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; -} -'UFLMOM-NM2' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; -} -'VFLMOM-NM2' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; -} -'ICINGWARN-N' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; -} -'PRECTYPE-N' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; -} -'CAPE-JKG' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; -} -'WGU-MS' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; -} -'WGV-MS' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; -} -'RRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; -} -'SNACC-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'SNRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'RRS-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; -} -'CLDBASE-M' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; -} -'CLDTOP-M' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; -} -'TKEN-JKG' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; -} -'GR-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'GRI-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'RRH-KGM2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; -} -'FL-MPLTY-N' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; -} -'REFLTY-DBZ' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; -} -'FFG-MS' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/efkl/units.def b/eccodes/definitions.save/grib1/localConcepts/efkl/units.def deleted file mode 100644 index e0114b96..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/efkl/units.def +++ /dev/null @@ -1,1121 +0,0 @@ -# file generated by get_86_paramdef_for_grib_api.pl at 2014-11-14 10:59:45 EET host gogol.fmi.fi -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 1 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 2 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 3 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 4 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 8 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 9 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 10 ; -} -'kg kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 12 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 13 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 15 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 18 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 19 ; -} -'Deg' = { - table2Version = 203 ; - indicatorOfParameter = 20 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 21 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 22 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 23 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 24 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 27 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 28 ; -} -'s-1 10-5' = { - table2Version = 203 ; - indicatorOfParameter = 31 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 38 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 39 ; -} -'Pa/s' = { - table2Version = 203 ; - indicatorOfParameter = 40 ; -} -'mm s-1' = { - table2Version = 203 ; - indicatorOfParameter = 43 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 44 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 47 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 50 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 51 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 52 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 53 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 54 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 55 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 56 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 57 ; -} -'mm' = { - table2Version = 203 ; - indicatorOfParameter = 58 ; -} -'JustAnumber' = { - table2Version = 203 ; - indicatorOfParameter = 59 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 60 ; -} -'m 10-4' = { - table2Version = 203 ; - indicatorOfParameter = 62 ; -} -'m 10-4' = { - table2Version = 203 ; - indicatorOfParameter = 63 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 68 ; -} -'W m-2' = { - table2Version = 203 ; - indicatorOfParameter = 69 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 70 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 71 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 72 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 73 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 74 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 75 ; -} -'cm' = { - table2Version = 203 ; - indicatorOfParameter = 77 ; -} -'kg kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 78 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 79 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 80 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 89 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 91 ; -} -'W m-2' = { - table2Version = 203 ; - indicatorOfParameter = 95 ; -} -'W m-2' = { - table2Version = 203 ; - indicatorOfParameter = 96 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 99 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 100 ; -} -'kg m-3' = { - table2Version = 203 ; - indicatorOfParameter = 101 ; -} -'Code' = { - table2Version = 203 ; - indicatorOfParameter = 102 ; -} -'Code' = { - table2Version = 203 ; - indicatorOfParameter = 103 ; -} -'kg kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 104 ; -} -'kg kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 105 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 106 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 107 ; -} -'kg m-2 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 108 ; -} -'kg m-2 s-1' = { - table2Version = 203 ; - indicatorOfParameter = 109 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 110 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 111 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 112 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 113 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 114 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 115 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 116 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 117 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 118 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 119 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 120 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 121 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 122 ; -} -'W m-2' = { - table2Version = 203 ; - indicatorOfParameter = 126 ; -} -'W m-2' = { - table2Version = 203 ; - indicatorOfParameter = 128 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 129 ; -} -'kg m-3' = { - table2Version = 203 ; - indicatorOfParameter = 130 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 131 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 132 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 133 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 134 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 141 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 142 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 143 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 144 ; -} -'kt' = { - table2Version = 203 ; - indicatorOfParameter = 145 ; -} -'kt' = { - table2Version = 203 ; - indicatorOfParameter = 146 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 147 ; -} -'m2 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 148 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 149 ; -} -'C' = { - table2Version = 203 ; - indicatorOfParameter = 150 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 151 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 152 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 153 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 154 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 155 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 156 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 157 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 158 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 159 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 161 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 163 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 164 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 165 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 166 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 167 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 168 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 169 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 170 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 171 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 172 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 173 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 174 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 175 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 176 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 177 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 178 ; -} -'K' = { - table2Version = 203 ; - indicatorOfParameter = 179 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 180 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 181 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 182 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 183 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 184 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 185 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 186 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 187 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 188 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 189 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 190 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 191 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 192 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 193 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 194 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 195 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 196 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 197 ; -} -'%' = { - table2Version = 203 ; - indicatorOfParameter = 198 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 199 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 200 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 201 ; -} -'kg s-2' = { - table2Version = 203 ; - indicatorOfParameter = 202 ; -} -'kg m-1 s-2' = { - table2Version = 203 ; - indicatorOfParameter = 203 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 204 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 205 ; -} -'JustAnumber' = { - table2Version = 203 ; - indicatorOfParameter = 206 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 207 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 208 ; -} -'N m-2 s' = { - table2Version = 203 ; - indicatorOfParameter = 209 ; -} -'N m-2 s' = { - table2Version = 203 ; - indicatorOfParameter = 210 ; -} -'No Unit' = { - table2Version = 203 ; - indicatorOfParameter = 211 ; -} -'kg/m2/h' = { - table2Version = 203 ; - indicatorOfParameter = 212 ; -} -'kg m-2' = { - table2Version = 203 ; - indicatorOfParameter = 213 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 214 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 215 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 216 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 217 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 218 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 219 ; -} -'0to1' = { - table2Version = 203 ; - indicatorOfParameter = 220 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 221 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 222 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 223 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 224 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 225 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 226 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 227 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 228 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 229 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 230 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 231 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 232 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 233 ; -} -'m s-1' = { - table2Version = 203 ; - indicatorOfParameter = 234 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 235 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 236 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 237 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 238 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 239 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 240 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 241 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 242 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 243 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 244 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 245 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 246 ; -} -'hPa' = { - table2Version = 203 ; - indicatorOfParameter = 247 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 248 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 249 ; -} -'m' = { - table2Version = 203 ; - indicatorOfParameter = 250 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 251 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 252 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 253 ; -} -'J kg-1' = { - table2Version = 203 ; - indicatorOfParameter = 254 ; -} -'JustAnumber' = { - table2Version = 203 ; - indicatorOfParameter = 255 ; -} -'C' = { - table2Version = 205 ; - indicatorOfParameter = 1 ; -} -'%' = { - table2Version = 205 ; - indicatorOfParameter = 2 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 3 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 4 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 5 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 6 ; -} -'m s-1' = { - table2Version = 205 ; - indicatorOfParameter = 7 ; -} -'m s-1' = { - table2Version = 205 ; - indicatorOfParameter = 8 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 9 ; -} -'%' = { - table2Version = 205 ; - indicatorOfParameter = 10 ; -} -'cm' = { - table2Version = 205 ; - indicatorOfParameter = 11 ; -} -'%' = { - table2Version = 205 ; - indicatorOfParameter = 12 ; -} -'m s-1' = { - table2Version = 205 ; - indicatorOfParameter = 13 ; -} -'m s-1' = { - table2Version = 205 ; - indicatorOfParameter = 14 ; -} -'kg m-1 s-2' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; -} -'kg m-1 s-2' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; -} -'m2 s-2' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; -} -'K' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; -} -'K' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; -} -'C' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; -} -'C' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; -} -'K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; -} -'m s-1' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; -} -'m s-1' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; -} -'Pa/s' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; -} -'m s-1' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; -} -'s-1' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; -} -'kg kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; -} -'%' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; -} -'hPa s-1' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; -} -'kg kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; -} -'0to1' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; -} -'%' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; -} -'%' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; -} -'%' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; -} -'kg kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; -} -'0to1' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; -} -'%' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; -} -'0to1' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; -} -'Deg' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; -} -'s' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; -} -'W m-2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; -} -'W m-2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; -} -'J m-2' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; -} -'kg s-2' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; -} -'kg s-2' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; -} -'N m-2 s' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; -} -'N m-2 s' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; -} -'Code' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; -} -'JustAnumber' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; -} -'J kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; -} -'kg/m2/h' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'kg/m2/h' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; -} -'m' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; -} -'J kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'kg/m2/h' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; -} -'kg m-2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; -} -'JustAnumber' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; -} -'dBZ' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; -} -'m s-1' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/eidb/name.def b/eccodes/definitions.save/grib1/localConcepts/eidb/name.def deleted file mode 100644 index 08c43a54..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eidb/name.def +++ /dev/null @@ -1,1840 +0,0 @@ -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'Geopotential' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'Geopotential height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'Wind speed' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u-component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v-component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'Stream function' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'Montgomery stream function' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pressure Vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'Relative vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'Relative divergence' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'Evaporation' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'Cloud ice' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'Large scale precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'Water equivalent of accumulated snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'Snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'Cloud water' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'Large scale snowfall' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'Water temperature' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'Land cover (1=land, 0=sea)' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'Albedo' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'Soil temperature' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'Vegetation' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'Salinity' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'Water run-off' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'Ice cover (1=land, 0=sea)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean Direction of wind waves -'Mean Direction of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'Mean direction of primary swell' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'Mean period of primary swell' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'Net short-wave radiation flux (atmosph.top)' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'Net long-wave radiation flux (atmosph.top)' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'Long-wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'Short-wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'Momentum flux' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Max wind speed (at 10m) -'Max wind speed (at 10m)' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Temperature over land -'Temperature over land' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'Specific humidity over land' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land Fraction -'Relative humidity over land Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land K -'Dew point over land K' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'Slope fraction' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'Shadow fraction' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter A -'Shadow parameter A' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter B -'Shadow parameter B' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Surface slope -'Surface slope' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'Sky wiew factor' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'Fraction of aspect' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Snow albedo -'Snow albedo' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'Snow density' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'Water on canopy level' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'Surface soil ice' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Soil type code -'Soil type code' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'Fraction of lake' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'Fraction of forest' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'Fraction of open land' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'Vegetation type (Olsson land use)' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Maximum slope of smallest scale orography -'Maximum slope of smallest scale orography' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'Standard deviation of smallest scale orography' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Max wind gust -'Max wind gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Pressure -'Pressure' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'Geopotential' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'Geopotential height' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Temperature -'Temperature' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 253 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 253 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 253 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 253 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'Wind speed' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u-component of wind' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v-component of wind' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#Stream function -'Stream function' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 253 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'Montgomery stream function' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pressure Vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'Relative vorticity' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'Relative divergence' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'Evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'Cloud ice' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'Large scale precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'Water equivalent of accumulated snow depth' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'Snow depth' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'Cloud water' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'Large scale snowfall' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'Water temperature' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'Land cover (1=land, 0=sea)' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Albedo -'Albedo' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'Soil temperature' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'Vegetation' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Salinity -'Salinity' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'Water run-off' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'Ice cover (1=land, 0=sea)' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'Mean direction of primary swell' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'Mean period of primary swell' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'Net short-wave radiation flux (atmosph.top)' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'Net long-wave radiation flux (atmosph.top)' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'Long-wave radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'Short-wave radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Analysed RMS of PHI (CANARI) -'Analysed RMS of PHI (CANARI)' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Forecast RMS of PHI (CANARI) -'Forecast RMS of PHI (CANARI)' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#SW net clear sky rad -'SW net clear sky rad' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#LW net clear sky rad -'LW net clear sky rad' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#Latent heat flux through evaporation -'Latent heat flux through evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Mask of significant cloud amount -'Mask of significant cloud amount' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Icing index -'Icing index' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'Pseudo satellite image: cloud top temperature (infrared)' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: water vapour Tb -'Pseudo satellite image: water vapour Tb' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'Pseudo satellite image: water vapour Tb + correction for clouds' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'Pseudo satellite image: cloud water reflectivity (visible)' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Direct normal irradiance -'Direct normal irradiance' = { - table2Version = 253 ; - indicatorOfParameter = 140 ; - } -#Precipitation Type -'Precipitation Type' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Surface downward moon radiation -'Surface downward moon radiation' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#CAPE out of the model -'CAPE out of the model' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#AROME hail diagnostic -'AROME hail diagnostic' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Gust, u-component -'Gust, u-component' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#Gust, v-component -'Gust, v-component' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#MOCON out of the model -'MOCON out of the model' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Total water vapour -'Total water vapour' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Brightness temperature OZ clear -'Brightness temperature OZ clear' = { - table2Version = 253 ; - indicatorOfParameter = 170 ; - } -#Brightness temperature OZ cloud -'Brightness temperature OZ cloud' = { - table2Version = 253 ; - indicatorOfParameter = 171 ; - } -#Brightness temperature IR clear -'Brightness temperature IR clear' = { - table2Version = 253 ; - indicatorOfParameter = 172 ; - } -#Brightness temperature IR cloud -'Brightness temperature IR cloud' = { - table2Version = 253 ; - indicatorOfParameter = 173 ; - } -#Brightness temperature WV clear -'Brightness temperature WV clear' = { - table2Version = 253 ; - indicatorOfParameter = 174 ; - } -#Brightness temperature WV cloud -'Brightness temperature WV cloud' = { - table2Version = 253 ; - indicatorOfParameter = 175 ; - } -#Rain -'Rain' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Stratiform rain -'Stratiform rain' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Convective rain -'Convective rain' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Snow -'Snow' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Total solid precipitation -'Total solid precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Cloud base -'Cloud base' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Cloud top -'Cloud top' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Fraction of urban land -'Fraction of urban land' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Snow albedo -'Snow albedo' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Snow density -'Snow density' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Water on canopy (Interception content) -'Water on canopy (Interception content)' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Soil ice -'Soil ice' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Gravity wave stress U-comp -'Gravity wave stress U-comp' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'Gravity wave stress V-comp' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#TKE -'TKE' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Graupel -'Graupel' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Hail -'Hail' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#Simulated reflectivity -'Simulated reflectivity' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Lightning -'Lightning' = { - table2Version = 253 ; - indicatorOfParameter = 211 ; - } -#Pressure departure -'Pressure departure' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Vertical Divergence -'Vertical Divergence' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Updraft omega -'Updraft omega' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#Downdraft omega -'Downdraft omega' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Updraft mesh fraction -'Updraft mesh fraction' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Downdraft mesh fraction -'Downdraft mesh fraction' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Surface albedo for non snow covered areas -'Surface albedo for non snow covered areas' = { - table2Version = 253 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of orography * g -'Standard deviation of orography * g' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Anisotropy coeff of topography -'Anisotropy coeff of topography' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Direction of main axis of topography -'Direction of main axis of topography' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Roughness length of bare surface * g -'Roughness length of bare surface * g' = { - table2Version = 253 ; - indicatorOfParameter = 223 ; - } -#Roughness length for vegetation * g -'Roughness length for vegetation * g' = { - table2Version = 253 ; - indicatorOfParameter = 224 ; - } -#Fraction of clay within soil -'Fraction of clay within soil' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#Fraction of sand within soil -'Fraction of sand within soil' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Maximum - of vegetation -'Maximum - of vegetation' = { - table2Version = 253 ; - indicatorOfParameter = 227 ; - } -#Gust -'Gust' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Albedo of bare ground -'Albedo of bare ground' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'Albedo of vegetation' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#Stomatal minimum resistance -'Stomatal minimum resistance' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Leaf area index -'Leaf area index' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Dominant vegetation index -'Dominant vegetation index' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Surface emissivity -'Surface emissivity' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Maximum soil depth -'Maximum soil depth' = { - table2Version = 253 ; - indicatorOfParameter = 236 ; - } -#Soil depth -'Soil depth' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Soil wetness -'Soil wetness' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Thermal roughness length * g -'Thermal roughness length * g' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } -#Resistance to evapotransiration -'Resistance to evapotransiration' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'Minimum relative moisture at 2 meters' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'Maximum relative moisture at 2 meters' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Duration of total precipitation -'Duration of total precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Latent Heat Sublimation -'Latent Heat Sublimation' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Water evaporation -'Water evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Snow Sublimation -'Snow Sublimation' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Snow history -'Snow history' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#A Ozone -'A Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#B Ozone -'B Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#C Ozone -'C Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Surface aerosol sea -'Surface aerosol sea' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Surface aerosol land -'Surface aerosol land' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol soot (carbon) -'Surface aerosol soot (carbon)' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'Surface aerosol desert' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Missing -'Missing' = { - table2Version = 253 ; - indicatorOfParameter = 255 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def b/eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def deleted file mode 100644 index 1d7cc058..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eidb/paramId.def +++ /dev/null @@ -1,1840 +0,0 @@ -#Reserved -'233001000' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'233001001' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'233001002' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'233001003' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'233001004' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'233001005' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'233001006' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'233001007' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'233001008' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'233001009' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'233001010' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'233001011' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'233001012' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'233001013' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'233001014' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'233001015' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'233001016' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'233001017' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'233001018' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'233001019' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'233001020' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'233001021' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'233001022' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'233001023' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'233001024' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'233001025' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'233001026' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'233001027' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'233001028' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'233001029' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'233001030' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'233001031' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'233001032' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'233001033' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'233001034' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'233001035' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'233001036' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'233001037' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'233001038' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'233001039' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'233001040' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'233001041' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'233001042' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'233001043' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'233001044' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'233001045' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'233001046' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'233001047' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'233001048' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'233001049' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'233001050' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'233001051' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'233001052' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'233001053' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'233001054' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'233001055' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'233001056' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'233001057' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'233001058' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'233001059' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'233001060' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'233001061' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'233001062' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'233001063' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'233001064' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'233001065' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'233001066' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'233001067' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'233001068' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'233001069' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'233001070' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'233001071' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'233001072' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'233001073' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'233001074' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'233001075' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'233001076' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'233001077' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'233001078' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'233001079' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'233001080' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'233001081' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'233001082' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'233001083' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'233001084' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'233001085' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'233001086' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'233001087' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'233001088' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'233001089' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'233001090' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'233001091' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'233001092' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'233001093' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'233001094' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'233001095' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'233001096' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'233001097' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'233001098' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'233001099' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'233001100' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean Direction of wind waves -'233001101' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'233001102' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'233001103' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'233001104' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'233001105' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'233001106' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'233001107' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'233001108' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'233001109' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'233001110' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'233001111' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'233001112' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'233001113' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'233001114' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'233001115' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'233001116' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'233001117' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'233001118' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'233001119' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'233001120' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'233001121' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'233001122' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'233001123' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'233001124' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'233001125' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'233001126' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'233001127' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'233001128' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Max wind speed (at 10m) -'233001135' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Temperature over land -'233001140' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'233001141' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land Fraction -'233001142' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land K -'233001143' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'233001160' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'233001161' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter A -'233001162' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter B -'233001163' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Surface slope -'233001165' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'233001166' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'233001167' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Snow albedo -'233001190' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'233001191' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'233001192' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'233001193' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Soil type code -'233001195' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'233001196' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'233001197' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'233001198' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'233001199' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'233001200' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Maximum slope of smallest scale orography -'233001208' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'233001209' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Max wind gust -'233001228' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Pressure -'233253001' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'233253002' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'233253003' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'233253004' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'233253005' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'233253006' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'233253007' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'233253008' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'233253009' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'233253010' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Temperature -'233253011' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'233253012' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'233253013' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'233253014' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'233253015' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'233253016' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'233253017' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'233253018' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'233253019' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Visibility -'233253020' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'233253021' = { - table2Version = 253 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'233253022' = { - table2Version = 253 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'233253023' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'233253024' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'233253025' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'233253026' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'233253027' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'233253028' = { - table2Version = 253 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'233253029' = { - table2Version = 253 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'233253030' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'233253031' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'233253032' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'233253033' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'233253034' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#Stream function -'233253035' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'233253036' = { - table2Version = 253 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'233253037' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'233253038' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'233253039' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'233253040' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'233253041' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'233253042' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'233253043' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'233253044' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'233253045' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'233253046' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'233253047' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'233253048' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'233253049' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'233253050' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'233253051' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'233253052' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'233253053' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'233253054' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'233253055' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'233253056' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'233253057' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'233253058' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'233253059' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'233253060' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'233253061' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'233253062' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'233253063' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'233253064' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'233253065' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'233253066' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'233253067' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'233253068' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'233253069' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'233253070' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'233253071' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'233253072' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'233253073' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'233253074' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'233253075' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'233253076' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'233253077' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'233253078' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'233253079' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'233253080' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'233253081' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'233253082' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'233253083' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Albedo -'233253084' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'233253085' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'233253086' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'233253087' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Salinity -'233253088' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Density -'233253089' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'233253090' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'233253091' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'233253092' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'233253093' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'233253094' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'233253095' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'233253096' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'233253097' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'233253098' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'233253099' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'233253100' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'233253101' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'233253102' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'233253103' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'233253104' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'233253105' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'233253106' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'233253107' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'233253108' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'233253109' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'233253110' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'233253111' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'233253112' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'233253113' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'233253114' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'233253115' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'233253116' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'233253117' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'233253118' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'233253119' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'233253120' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'233253121' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'233253122' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'233253123' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'233253124' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'233253125' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'233253126' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Image data -'233253127' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Analysed RMS of PHI (CANARI) -'233253128' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Forecast RMS of PHI (CANARI) -'233253129' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#SW net clear sky rad -'233253130' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#LW net clear sky rad -'233253131' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#Latent heat flux through evaporation -'233253132' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Mask of significant cloud amount -'233253133' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Icing index -'233253135' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'233253136' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: water vapour Tb -'233253137' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'233253138' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'233253139' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Direct normal irradiance -'233253140' = { - table2Version = 253 ; - indicatorOfParameter = 140 ; - } -#Precipitation Type -'233253144' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Surface downward moon radiation -'233253158' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#CAPE out of the model -'233253160' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#AROME hail diagnostic -'233253161' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Gust, u-component -'233253162' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#Gust, v-component -'233253163' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#MOCON out of the model -'233253166' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Total water vapour -'233253167' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Brightness temperature OZ clear -'233253170' = { - table2Version = 253 ; - indicatorOfParameter = 170 ; - } -#Brightness temperature OZ cloud -'233253171' = { - table2Version = 253 ; - indicatorOfParameter = 171 ; - } -#Brightness temperature IR clear -'233253172' = { - table2Version = 253 ; - indicatorOfParameter = 172 ; - } -#Brightness temperature IR cloud -'233253173' = { - table2Version = 253 ; - indicatorOfParameter = 173 ; - } -#Brightness temperature WV clear -'233253174' = { - table2Version = 253 ; - indicatorOfParameter = 174 ; - } -#Brightness temperature WV cloud -'233253175' = { - table2Version = 253 ; - indicatorOfParameter = 175 ; - } -#Rain -'233253181' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Stratiform rain -'233253182' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Convective rain -'233253183' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Snow -'233253184' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Total solid precipitation -'233253185' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Cloud base -'233253186' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Cloud top -'233253187' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Fraction of urban land -'233253188' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Snow albedo -'233253190' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Snow density -'233253191' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Water on canopy (Interception content) -'233253192' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Soil ice -'233253193' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Gravity wave stress U-comp -'233253195' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'233253196' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#TKE -'233253200' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Graupel -'233253201' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Hail -'233253204' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#Simulated reflectivity -'233253210' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Lightning -'233253211' = { - table2Version = 253 ; - indicatorOfParameter = 211 ; - } -#Pressure departure -'233253212' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Vertical Divergence -'233253213' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Updraft omega -'233253214' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#Downdraft omega -'233253215' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Updraft mesh fraction -'233253216' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Downdraft mesh fraction -'233253217' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Surface albedo for non snow covered areas -'233253219' = { - table2Version = 253 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of orography * g -'233253220' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Anisotropy coeff of topography -'233253221' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Direction of main axis of topography -'233253222' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Roughness length of bare surface * g -'233253223' = { - table2Version = 253 ; - indicatorOfParameter = 223 ; - } -#Roughness length for vegetation * g -'233253224' = { - table2Version = 253 ; - indicatorOfParameter = 224 ; - } -#Fraction of clay within soil -'233253225' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#Fraction of sand within soil -'233253226' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Maximum - of vegetation -'233253227' = { - table2Version = 253 ; - indicatorOfParameter = 227 ; - } -#Gust -'233253228' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Albedo of bare ground -'233253229' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'233253230' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#Stomatal minimum resistance -'233253231' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Leaf area index -'233253232' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Dominant vegetation index -'233253234' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Surface emissivity -'233253235' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Maximum soil depth -'233253236' = { - table2Version = 253 ; - indicatorOfParameter = 236 ; - } -#Soil depth -'233253237' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Soil wetness -'233253238' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Thermal roughness length * g -'233253239' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } -#Resistance to evapotransiration -'233253240' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'233253241' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'233253242' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Duration of total precipitation -'233253243' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Latent Heat Sublimation -'233253244' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Water evaporation -'233253245' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Snow Sublimation -'233253246' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Snow history -'233253247' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#A Ozone -'233253248' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#B Ozone -'233253249' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#C Ozone -'233253250' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Surface aerosol sea -'233253251' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Surface aerosol land -'233253252' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol soot (carbon) -'233253253' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'233253254' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Missing -'233253255' = { - table2Version = 253 ; - indicatorOfParameter = 255 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def b/eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def deleted file mode 100644 index 914d526b..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eidb/shortName.def +++ /dev/null @@ -1,1840 +0,0 @@ -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'pres' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'ptend' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'pv' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'z' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gh' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'h' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'tco3' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'t' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'vptmp' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'pt' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'td' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'ws' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'strf' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'mntsf' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'w' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'tw' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'absv' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'vo' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'d' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'q' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'r' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'e' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'ciwc' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'prate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'lsp' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'sf' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'sd' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'mld' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'tcc' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'cwat' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'csf' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'lsf' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'wtmp' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'lsm' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'sr' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'al' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'st' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'sm' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'veg' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'s' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'ro' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'icec' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean Direction of wind waves -'mdww' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'mdps' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'mpps' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'nswrt' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'nlwrt' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'lwavr' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'swavr' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'btmp' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'slhf' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'sshf' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'mofl' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Max wind speed (at 10m) -'maxv' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Temperature over land -'tland' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'qland' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land Fraction -'rhland' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land K -'dptland' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'slfr' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'shfr' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter A -'rsha' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter B -'rshb' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Surface slope -'susl' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'skwf' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'frasp' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Snow albedo -'asn' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'dsn' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'watcn' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'ssi' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Soil type code -'sltyp' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'fol' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'fof' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'fool' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'vgtyp' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'tke' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Maximum slope of smallest scale orography -'mssso' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'sdsso' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Max wind gust -'gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Pressure -'pres' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'ptend' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'pv' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'z' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gh' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'h' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'tco3' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Temperature -'t' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'vptmp' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'pt' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'td' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 253 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 253 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 253 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 253 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'ws' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#Stream function -'strf' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 253 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'mntsf' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'w' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'tw' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'absv' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'vo' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'d' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'q' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'r' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'e' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'ciwc' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'prate' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'tp' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'lsp' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'sf' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'sd' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'mld' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'tcc' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'cwat' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'csf' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'lsf' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'wtmp' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'lsm' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'sr' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Albedo -'al' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'st' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'sm' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'veg' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Salinity -'s' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'ro' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'icec' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'mdps' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'mpps' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'nswrt' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'nlwrt' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'lwavr' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'swavr' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'btmp' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'slhf' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'sshf' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Analysed RMS of PHI (CANARI) -'armsp' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Forecast RMS of PHI (CANARI) -'frmsp' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#SW net clear sky rad -'cssw' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#LW net clear sky rad -'cslw' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#Latent heat flux through evaporation -'lhe' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Mask of significant cloud amount -'msca' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Icing index -'icei' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'psct' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: water vapour Tb -'pstb' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'pstbc' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'pscw' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Direct normal irradiance -'dni' = { - table2Version = 253 ; - indicatorOfParameter = 140 ; - } -#Precipitation Type -'prtp' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Surface downward moon radiation -'mrad' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#CAPE out of the model -'cape' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#AROME hail diagnostic -'xhail' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Gust, u-component -'ugst' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#Gust, v-component -'vgst' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#MOCON out of the model -'mcn' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Total water vapour -'totqv' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Brightness temperature OZ clear -'bt_oz_cs' = { - table2Version = 253 ; - indicatorOfParameter = 170 ; - } -#Brightness temperature OZ cloud -'bt_oz_cl' = { - table2Version = 253 ; - indicatorOfParameter = 171 ; - } -#Brightness temperature IR clear -'bt_ir_cs' = { - table2Version = 253 ; - indicatorOfParameter = 172 ; - } -#Brightness temperature IR cloud -'bt_ir_cl' = { - table2Version = 253 ; - indicatorOfParameter = 173 ; - } -#Brightness temperature WV clear -'bt_wv_cs' = { - table2Version = 253 ; - indicatorOfParameter = 174 ; - } -#Brightness temperature WV cloud -'bt_wv_cl' = { - table2Version = 253 ; - indicatorOfParameter = 175 ; - } -#Rain -'rain' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Stratiform rain -'srain' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Convective rain -'cr' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Snow -'snow' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Total solid precipitation -'tpsolid' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Cloud base -'cb' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Cloud top -'ct' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Fraction of urban land -'ful' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Snow albedo -'asn' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Snow density -'rsn' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Water on canopy (Interception content) -'w_i' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Soil ice -'w_so_ice' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Gravity wave stress U-comp -'gwdu' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'gwdv' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#TKE -'tke' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Graupel -'grpl' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Hail -'hail' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#Simulated reflectivity -'refl' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Lightning -'lgt' = { - table2Version = 253 ; - indicatorOfParameter = 211 ; - } -#Pressure departure -'pdep' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Vertical Divergence -'vdiv' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Updraft omega -'upom' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#Downdraft omega -'dnom' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Updraft mesh fraction -'upmf' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Downdraft mesh fraction -'dnmf' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Surface albedo for non snow covered areas -'alns' = { - table2Version = 253 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of orography * g -'stdo' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Anisotropy coeff of topography -'atop' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Direction of main axis of topography -'dtop' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Roughness length of bare surface * g -'srbs' = { - table2Version = 253 ; - indicatorOfParameter = 223 ; - } -#Roughness length for vegetation * g -'srveg' = { - table2Version = 253 ; - indicatorOfParameter = 224 ; - } -#Fraction of clay within soil -'clfr' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#Fraction of sand within soil -'slfr' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Maximum - of vegetation -'vegmax' = { - table2Version = 253 ; - indicatorOfParameter = 227 ; - } -#Gust -'fg' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Albedo of bare ground -'alb' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'alv' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#Stomatal minimum resistance -'smnr' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Leaf area index -'lai' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Dominant vegetation index -'dvi' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Surface emissivity -'se' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Maximum soil depth -'sdmax' = { - table2Version = 253 ; - indicatorOfParameter = 236 ; - } -#Soil depth -'sld' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Soil wetness -'swv' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Thermal roughness length * g -'zt' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } -#Resistance to evapotransiration -'rev' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'rmn' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'rmx' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Duration of total precipitation -'dutp' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Latent Heat Sublimation -'lhsub' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Water evaporation -'wevap' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Snow Sublimation -'snsub' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Snow history -'shis' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#A Ozone -'ao' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#B Ozone -'bo' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#C Ozone -'co' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Surface aerosol sea -'aers' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Surface aerosol land -'aerl' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol soot (carbon) -'aerc' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'aerd' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Missing -'-' = { - table2Version = 253 ; - indicatorOfParameter = 255 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def deleted file mode 100644 index a312b4c2..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eidb/typeOfLevel.def +++ /dev/null @@ -1,49 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 May 2013 -# -######################### -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'northTile' = {indicatorOfTypeOfLevel=191;} -'northEastTile' = {indicatorOfTypeOfLevel=192;} -'eastTile' = {indicatorOfTypeOfLevel=193;} -'southEastTile' = {indicatorOfTypeOfLevel=194;} -'southTile' = {indicatorOfTypeOfLevel=195;} -'southWestTile' = {indicatorOfTypeOfLevel=196;} -'westTile' = {indicatorOfTypeOfLevel=197;} -'northWestTile' = {indicatorOfTypeOfLevel=198;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} -'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eidb/units.def b/eccodes/definitions.save/grib1/localConcepts/eidb/units.def deleted file mode 100644 index e7688d7a..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eidb/units.def +++ /dev/null @@ -1,1840 +0,0 @@ -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'Dobson' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'m2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'m**2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pa s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'%' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'%' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'%' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean Direction of wind waves -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'s' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m-**3 sr**-1' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Max wind speed (at 10m) -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Temperature over land -'K' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land Fraction -'' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land K -'' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'-' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'-' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter A -'-' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter B -'-' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Surface slope -'-' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'-' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'-' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Snow albedo -'-' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'-' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'m**3 m**-3' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Soil type code -'-' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'-' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'-' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'-' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'J kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Maximum slope of smallest scale orography -'rad' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Max wind gust -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gpm' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geometrical height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#Total column ozone -'Dobson' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Virtual potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#Stream function -'m2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'m**2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pa s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'%' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Cloud ice -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Water equivalent of accumulated snow depth -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#Convective snowfall -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#Large scale snowfall -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Water temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Land cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'m' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Albedo -'-' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'%' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Water run-off -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Ice cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Mean direction of primary swell -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean period of primary swell -'s' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux (atmosph.top) -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux (atmosph.top) -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Long-wave radiation flux -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Short-wave radiation flux -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m-**3 sr**-1' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Image data -'-' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Analysed RMS of PHI (CANARI) -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Forecast RMS of PHI (CANARI) -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#SW net clear sky rad -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#LW net clear sky rad -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#Latent heat flux through evaporation -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Mask of significant cloud amount -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Icing index -'-' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: water vapour Tb -'-' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'-' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Direct normal irradiance -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 140 ; - } -#Precipitation Type -'-' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Surface downward moon radiation -'-' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#CAPE out of the model -'J kg-1' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#AROME hail diagnostic -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Gust, u-component -'m s*-1' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#Gust, v-component -'m s*-1' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#MOCON out of the model -' kg kg**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Total water vapour -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Brightness temperature OZ clear -'K' = { - table2Version = 253 ; - indicatorOfParameter = 170 ; - } -#Brightness temperature OZ cloud -'K' = { - table2Version = 253 ; - indicatorOfParameter = 171 ; - } -#Brightness temperature IR clear -'K' = { - table2Version = 253 ; - indicatorOfParameter = 172 ; - } -#Brightness temperature IR cloud -'K' = { - table2Version = 253 ; - indicatorOfParameter = 173 ; - } -#Brightness temperature WV clear -'K' = { - table2Version = 253 ; - indicatorOfParameter = 174 ; - } -#Brightness temperature WV cloud -'K' = { - table2Version = 253 ; - indicatorOfParameter = 175 ; - } -#Rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Stratiform rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Convective rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Snow -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Total solid precipitation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Cloud base -'m' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Cloud top -'m' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Fraction of urban land -'%' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Snow albedo -'(0-1)' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Snow density -'kg m**-3' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Water on canopy (Interception content) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Soil ice -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Gravity wave stress U-comp -'kg m**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'kg m**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#TKE -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Graupel -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Hail -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#Simulated reflectivity -'dBz' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Lightning -'-' = { - table2Version = 253 ; - indicatorOfParameter = 211 ; - } -#Pressure departure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Vertical Divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Updraft omega -'ms*-1' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#Downdraft omega -'ms*-1' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Updraft mesh fraction -'-' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Downdraft mesh fraction -'-' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Surface albedo for non snow covered areas -'-' = { - table2Version = 253 ; - indicatorOfParameter = 219 ; - } -#Standard deviation of orography * g -'m**2s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Anisotropy coeff of topography -'rad' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Direction of main axis of topography -'-' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Roughness length of bare surface * g -'m2 2**-2' = { - table2Version = 253 ; - indicatorOfParameter = 223 ; - } -#Roughness length for vegetation * g -'m2 2**-2' = { - table2Version = 253 ; - indicatorOfParameter = 224 ; - } -#Fraction of clay within soil -'-' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#Fraction of sand within soil -'-' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Maximum - of vegetation -'-' = { - table2Version = 253 ; - indicatorOfParameter = 227 ; - } -#Gust -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Albedo of bare ground -'-' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'-' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#Stomatal minimum resistance -'s m**-1' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Leaf area index -'m**2 m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Dominant vegetation index -'-' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Surface emissivity -'-' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Maximum soil depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 236 ; - } -#Soil depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Soil wetness -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Thermal roughness length * g -'m' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } -#Resistance to evapotransiration -'s m**-1' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'-' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'-' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Duration of total precipitation -'s' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Latent Heat Sublimation -'J kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Water evaporation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Snow Sublimation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Snow history -'???' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#A Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#B Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#C Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Surface aerosol sea -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Surface aerosol land -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol soot (carbon) -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Missing -'' = { - table2Version = 253 ; - indicatorOfParameter = 255 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/ekmi/name.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/name.def deleted file mode 100644 index 2e4c487d..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ekmi/name.def +++ /dev/null @@ -1,21 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Total precipitation -'Total precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#10 metre wind gust -'10 metre wind gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#convective available potential energy -'Convective available potential energy' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Convective inhibition -'Convective inhibition' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def deleted file mode 100644 index 9039a994..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ekmi/paramId.def +++ /dev/null @@ -1,21 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Total precipitation -'94001061' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#10 metre wind gust -'94001228' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#convective available potential energy -'94001225' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Convective inhibition -'94001224' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def deleted file mode 100644 index 02692374..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ekmi/shortName.def +++ /dev/null @@ -1,21 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Total precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#10 metre wind gust -'gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#convective available potential energy -'cape' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Convective inhibition -'cin' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/ekmi/units.def b/eccodes/definitions.save/grib1/localConcepts/ekmi/units.def deleted file mode 100644 index 276dd233..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/ekmi/units.def +++ /dev/null @@ -1,21 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Total precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#10 metre wind gust -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#convective available potential energy -'J kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Convective inhibition -'J kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/enmi/name.def b/eccodes/definitions.save/grib1/localConcepts/enmi/name.def deleted file mode 100644 index 1e93243e..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/enmi/name.def +++ /dev/null @@ -1,16 +0,0 @@ -#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) -#Total precipitation -'Total precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Convective available potential energy -'Convective available potential energy' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; -} -#10 metre wind gust -'10 metre wind gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def deleted file mode 100644 index 07280764..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/enmi/paramId.def +++ /dev/null @@ -1,16 +0,0 @@ -#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) -#Total precipitation -'88001061' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Convective available potential energy -'59' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; -} -#10 metre wind gust -'88001228' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def deleted file mode 100644 index 7a8fddd4..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/enmi/shortName.def +++ /dev/null @@ -1,16 +0,0 @@ -#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) -#Total precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Convective available potential energy -'cape' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; -} -#10 metre wind gust -'gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/enmi/units.def b/eccodes/definitions.save/grib1/localConcepts/enmi/units.def deleted file mode 100644 index 67b2e16c..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/enmi/units.def +++ /dev/null @@ -1,16 +0,0 @@ -#Provided by Inger-Lise Frogner (Norwegian Meteorological Institute) -#Total precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Convective available potential energy -'J kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; -} -#10 metre wind gust -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def deleted file mode 100644 index 2cf2abdd..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolConcept.def +++ /dev/null @@ -1,20 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 13 May 2013 -# modified: -# -######################### -"none"={matchAerosolBinNumber=0;} -"bin1"={matchAerosolBinNumber=1;} -"bin2"={matchAerosolBinNumber=2;} -"bin3"={matchAerosolBinNumber=3;} -"bin4"={matchAerosolBinNumber=4;} -"bin5"={matchAerosolBinNumber=5;} -"bin6"={matchAerosolBinNumber=6;} -"bin7"={matchAerosolBinNumber=7;} -"bin8"={matchAerosolBinNumber=8;} -"bin9"={matchAerosolBinNumber=9;} -"bin10"={matchAerosolBinNumber=10;} -"all"={matchAerosolBinNumber=100;} -"missing"={matchAerosolBinNumber=255;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table b/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table deleted file mode 100644 index c39cb655..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/aerosolbinnumber.table +++ /dev/null @@ -1,24 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# -# Model 50 (MATCH) SMHI local definitions aerosol bin number -# -# Aerosol bin number parameter in local extension -# -0 0 none -1 1 Aerosol Binary number 1 -2 2 Aerosol Binary number 2 -3 3 Aerosol Binary number 3 -4 4 Aerosol Binary number 4 -5 5 Aerosol Binary number 5 -6 6 Aerosol Binary number 6 -7 7 Aerosol Binary number 7 -8 8 Aerosol Binary number 8 -9 9 Aerosol Binary number 9 -10 10 Aerosol Binary number 10 -100 100 All binary number -255 255 missing value diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def deleted file mode 100644 index e9489783..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/landTypeConcept.def +++ /dev/null @@ -1,39 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 13 May 2013 -# modified: -# -######################### -"all"={matchLandType=0;} -"water"={matchLandType=1;} -"rural"={matchLandType=2;} -"urban"={matchLandType=3;} -"lowveg"={matchLandType=4;} -"forest"={matchLandType=5;} -"noveg"={matchLandType=6;} -"pasture"={matchLandType=21;} -"arable"={matchLandType=22;} -"beechoak"={matchLandType=23;} -"deciduous"={matchLandType=24;} -"spruce"={matchLandType=25;} -"pine"={matchLandType=26;} -"wetland"={matchLandType=27;} -"mountain"={matchLandType=28;} -"birch"={matchLandType=29;} -"ice"={matchLandType=51;} -"snow"={matchLandType=52;} -"hslowv"={matchLandType=71;} -"hsfor"={matchLandType=72;} -"politi"={matchLandType=73;} -"mask"={matchLandType=74;} -"regional"={matchLandType=81;} -"long-range"={matchLandType=82;} -"local"={matchLandType=83;} -"zone"={matchLandType=90;} -"top"={matchLandType=100;} -"effdose"={matchLandType=150;} -"skin"={matchLandType=151;} -"thyroid"={matchLandType=152;} -"lung"={matchLandType=153;} -"missing"={matchLandType=255;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table b/eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table deleted file mode 100644 index 8181b835..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/landtype.table +++ /dev/null @@ -1,43 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# -# Model 50 (MATCH) SMHI local definitions landtype -# -# landtype parameter in local extension -# -0 0 All surfaces -1 1 Water or Sea Water (fraction) -2 2 Rural (fraction) -3 3 Urban (fraction) -4 4 Lowveg (fraction) -5 5 Forest (fraction) -6 6 Noveg (fraction) -21 21 Pasture (fraction) -22 22 Arable (fraction) -23 23 Beech_oak (fraction) -24 24 Deciduous (fraction) -25 25 Spruce (fraction) -26 26 Pine (fraction) -27 27 Wetland (fraction) -28 28 Mountain (fraction) -29 29 Birch (fraction) -51 51 Ice (fraction) -52 52 Snow (fraction) -71 71 Hendersen-Sellers classification -72 72 Hendersen-Sellers classification -73 73 Politi -74 74 Mask -81 81 Regional contribution -82 82 Long-range contribution -83 83 Local (urban) contribution -90 90 Zone index -100 100 Top layer -150 150 Effective dose [Sv] -151 151 Skin dose [Sv] -152 152 Thyroid dose [Sv] -153 153 Lung dose [Sv] -255 255 missing value diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/name.def b/eccodes/definitions.save/grib1/localConcepts/eswi/name.def deleted file mode 100644 index 2c2ece7e..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/name.def +++ /dev/null @@ -1,5580 +0,0 @@ -############### table2Version 1 ############ -############### WMO/Hirlam ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'Geopotential' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'Geopotential height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'Geometric height' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total ozone -'Total ozone' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar Spectra (1) -'Radar Spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar Spectra (2) -'Radar Spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar Spectra (3) -'Radar Spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave Spectra (1) -'Wave Spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave Spectra (2) -'Wave Spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave Spectra (3) -'Wave Spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'Wind speed' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u-component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v-component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'Stream function' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'Montgomery stream function' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coord. vertical velocity -'Sigma coord. vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pressure Vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Geometric Vertical velocity -'Geometric Vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'Relative vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'Relative divergence' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#u-component of current -'u-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#v-component of current -'v-component of current' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'Evaporation' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud Ice -'Cloud Ice' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'Large scale precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snowfall rate water equivalent -'Snowfall rate water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equiv. of accum. snow depth -'Water equiv. of accum. snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'Snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'Cloud water' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snow -'Convective snow' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snow -'Large scale snow' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water Temperature -'Water Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'Land-sea mask (1=land 0=sea) (see note)' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea level from mean -'Deviation of sea level from mean' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'Albedo' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'Soil temperature' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'Vegetation' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'Salinity' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run off -'Water run off' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'Ice cover (ice=1 no ice=0)(see note)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#u-component of ice drift -'u-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#v-component of ice drift -'v-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'Direction of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short wave radiation flux (surface) -'Net short wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long wave radiation flux (surface) -'Net long wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short wave radiation flux (top of atmos.) -'Net short wave radiation flux (top of atmos.)' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long wave radiation flux (top of atmos.) -'Net long wave radiation flux (top of atmos.)' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat net flux -'Latent heat net flux' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat net flux -'Sensible heat net flux' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u component -'Momentum flux, u component' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v component -'Momentum flux, v component' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'Momentum flux' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Humidity tendencies -'Humidity tendencies' = { - table2Version = 1 ; - indicatorOfParameter = 129 ; - } -#Radiation at top of atmosphere -'Radiation at top of atmosphere' = { - table2Version = 1 ; - indicatorOfParameter = 130 ; - } -#Cloud top temperature, infrared -'Cloud top temperature, infrared' = { - table2Version = 1 ; - indicatorOfParameter = 131 ; - } -#Water vapor brightness temperature -'Water vapor brightness temperature' = { - table2Version = 1 ; - indicatorOfParameter = 132 ; - } -#Water vapor brightness temperature, correction -'Water vapor brightness temperature, correction' = { - table2Version = 1 ; - indicatorOfParameter = 133 ; - } -#Cloud water reflectivity -'Cloud water reflectivity' = { - table2Version = 1 ; - indicatorOfParameter = 134 ; - } -#Maximum wind -'Maximum wind' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Minimum wind -'Minimum wind' = { - table2Version = 1 ; - indicatorOfParameter = 136 ; - } -#Integrated cloud condensate -'Integrated cloud condensate' = { - table2Version = 1 ; - indicatorOfParameter = 137 ; - } -#Snow depth, cold snow -'Snow depth, cold snow' = { - table2Version = 1 ; - indicatorOfParameter = 138 ; - } -#Open land snow depth -'Open land snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 139 ; - } -#Temperature over land -'Temperature over land' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'Specific humidity over land' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land -'Relative humidity over land' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land -'Dew point over land' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'Slope fraction' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'Shadow fraction' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter RSHA -'Shadow parameter RSHA' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter RSHB -'Shadow parameter RSHB' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Momentum vegetation roughness -'Momentum vegetation roughness' = { - table2Version = 1 ; - indicatorOfParameter = 164 ; - } -#Surface slope -'Surface slope' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'Sky wiew factor' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'Fraction of aspect' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Heat roughness -'Heat roughness' = { - table2Version = 1 ; - indicatorOfParameter = 168 ; - } -#Albedo with solar angle correction -'Albedo with solar angle correction' = { - table2Version = 1 ; - indicatorOfParameter = 169 ; - } -#Soil wetness index -'Soil wetness index' = { - table2Version = 1 ; - indicatorOfParameter = 189 ; - } -#Snow albedo -'Snow albedo' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'Snow density' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'Water on canopy level' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'Surface soil ice' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Fraction of surface type -'Fraction of surface type' = { - table2Version = 1 ; - indicatorOfParameter = 194 ; - } -#Soil type -'Soil type' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'Fraction of lake' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'Fraction of forest' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'Fraction of open land' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'Vegetation type (Olsson land use)' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Standard deviation of mesoscale orography -'Standard deviation of mesoscale orography' = { - table2Version = 1 ; - indicatorOfParameter = 204 ; - } -#Anisotrophic mesoscale orography -'Anisotrophic mesoscale orography' = { - table2Version = 1 ; - indicatorOfParameter = 205 ; - } -#X-angle of mesoscale orography -'X-angle of mesoscale orography' = { - table2Version = 1 ; - indicatorOfParameter = 206 ; - } -#Maximum slope of smallest scale orography -'Maximum slope of smallest scale orography' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'Standard deviation of smallest scale orography' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Ice existence -'Ice existence' = { - table2Version = 1 ; - indicatorOfParameter = 210 ; - } -#Lifting condensation level -'Lifting condensation level' = { - table2Version = 1 ; - indicatorOfParameter = 222 ; - } -#Level of neutral buoyancy -'Level of neutral buoyancy' = { - table2Version = 1 ; - indicatorOfParameter = 223 ; - } -#Convective inhibation -'Convective inhibation' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } -#CAPE -'CAPE' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Precipitation type -'Precipitation type' = { - table2Version = 1 ; - indicatorOfParameter = 226 ; - } -#Friction velocity -'Friction velocity' = { - table2Version = 1 ; - indicatorOfParameter = 227 ; - } -#Wind gust -'Wind gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Analysed 3-hour precipitation (-3h/0h) -'Analysed 3-hour precipitation (-3h/0h)' = { - table2Version = 1 ; - indicatorOfParameter = 250 ; - } -#Analysed 12-hour precipitation (-12h/0h) -'Analysed 12-hour precipitation (-12h/0h)' = { - table2Version = 1 ; - indicatorOfParameter = 251 ; - } -#Missing -'Missing' = { - table2Version = 1 ; - indicatorOfParameter = 255 ; - } -############### table2Version 128 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 128 ; - indicatorOfParameter = 0 ; - } -# SO2/SO2 -'SO2/SO2' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'SO4(2-)/SO4(2-) (sulphate)' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -# DMS/DMS -'DMS/DMS' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -# MSA/MSA -'MSA/MSA' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -# H2S/H2S -'H2S/H2S' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -# NH4SO4/(NH4)1.5H0.5SO4 -'NH4SO4/(NH4)1.5H0.5SO4' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -# NH4HSO4/NH4HSO4 -'NH4HSO4/NH4HSO4' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -# NH42SO4/(NH4)2SO4 -'NH42SO4/(NH4)2SO4' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -# SULFATE/SULFATE -'SULFATE/SULFATE' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -# SO2_AQ/SO2 in aqueous phase -'SO2_AQ/SO2 in aqueous phase' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -# SO4_AQ/sulfate in aqueous phase -'SO4_AQ/sulfate in aqueous phase' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -# LRT_SO2_S/long-range SO2_S -'LRT_SO2_S/long-range SO2_S' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -# LRT_SO4_S/LRT-contriubtion to SO4_S -'LRT_SO4_S/LRT-contriubtion to SO4_S' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -# LRT_SOX_S/LRT-contriubtion to SO4_S -'LRT_SOX_S/LRT-contriubtion to SO4_S' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -# XSOX_S/excess SOX (corrected for sea salt as sulfur) -'XSOX_S/excess SOX (corrected for sea salt as sulfur)' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -# SO2_S/SO2 (as sulphur) -'SO2_S/SO2 (as sulphur)' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -# SO4_S/SO4 (as sulphur) -'SO4_S/SO4 (as sulphur)' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'SOX_S/All oxidised sulphur compounds (as sulphur)' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -# NO -'NO' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -# NO2/NO2 -'NO2/NO2' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -# HNO3/HNO3 -'HNO3/HNO3' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -# NO3(-1)/NO3(-1) (nitrate) -'NO3(-1)/NO3(-1) (nitrate)' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -# NH4NO3/NH4NO3 -'NH4NO3/NH4NO3' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -# NITRATE/NITRATE -'NITRATE/NITRATE' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -# PNO3/(COARSE) NITRATE -'PNO3/(COARSE) NITRATE' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -# LRT_NOY_N/long-range NOY_N -'LRT_NOY_N/long-range NOY_N' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -# NO3_N/NO3 as N -'NO3_N/NO3 as N' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -# HNO3_N/HNO3 as N -'HNO3_N/HNO3 as N' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -# LRT_NO3_N/long-range NO3_N -'LRT_NO3_N/long-range NO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -# LRT_HNO3_N/long-range HNO3_N -'LRT_HNO3_N/long-range HNO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -# LRT_NO2_N/long-range NO2_N -'LRT_NO2_N/long-range NO2_N' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -# LRT_NOZ_N/long-range NOZ_N -'LRT_NOZ_N/long-range NOZ_N' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -# NOX/NOX as NO2 -'NOX/NOX as NO2' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -# NO_N/NO as N -'NO_N/NO as N' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -# NO2_N/NO2 as N -'NO2_N/NO2 as N' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'NOX_N/NO2+NO (NOx) as nitrogen' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'NOY_N/All oxidised N-compounds (as nitrogen)' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -# NOZ_N/NOy-NOx (as nitrogen) -'NOZ_N/NOy-NOx (as nitrogen)' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -# NH3/NH3 -'NH3/NH3' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -# NH4(+1)/NH4 -'NH4(+1)/NH4' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -# AMMONIUM/AMMONIUM -'AMMONIUM/AMMONIUM' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -# NH3_N/NH3 (as nitrogen) -'NH3_N/NH3 (as nitrogen)' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -# NH4_N/NH4 (as nitrogen) -'NH4_N/NH4 (as nitrogen)' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -# LRT_NH3_N/long-range NH3_N -'LRT_NH3_N/long-range NH3_N' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -# LRT_NH4_N/long-range NH4_N -'LRT_NH4_N/long-range NH4_N' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -# LRT_NHX_N/long-range NHX_N -'LRT_NHX_N/long-range NHX_N' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'NHX_N/All reduced nitrogen (as nitrogen)' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -# O3 -'O3' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -# H2O2/H2O2 -'H2O2/H2O2' = { - table2Version = 128 ; - indicatorOfParameter = 61 ; - } -# OH/OH -'OH/OH' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -# O3_AQ/O3 in aqueous phase -'O3_AQ/O3 in aqueous phase' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -# H2O2_AQ/H2O2 in aqueous phase -'H2O2_AQ/H2O2 in aqueous phase' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -# OX/Ox=O3+NO2 -'OX/Ox=O3+NO2' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -# C -'C' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -# CO/CO -'CO/CO' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -# CO2/CO2 -'CO2/CO2' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -# CH4/CH4 -'CH4/CH4' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -# OC/Organic carbon (particles) -'OC/Organic carbon (particles)' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -# EC/Elementary carbon (particles) -'EC/Elementary carbon (particles)' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -# CF6 -'CF6' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -# PMCH/PMCH -'PMCH/PMCH' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -# PMCP/PMCP -'PMCP/PMCP' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -# TRACER/Tracer -'TRACER/Tracer' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -# Inert/Inert -'Inert/Inert' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -# H3 -'H3' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -# Ar41/Ar41 -'Ar41/Ar41' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -# Kr85/Kr85 -'Kr85/Kr85' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -# Kr88/Kr88 -'Kr88/Kr88' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -# Xe131/Xe131 -'Xe131/Xe131' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -# Xe133/Xe133 -'Xe133/Xe133' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -# Rn222/Rn222 -'Rn222/Rn222' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -# I131/I131 -'I131/I131' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -# I132/I132 -'I132/I132' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -# I133/I133 -'I133/I133' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -# I135/I135 -'I135/I135' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -# Sr90 -'Sr90' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -# Co60/Co60 -'Co60/Co60' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -# Ru103/Ru103 -'Ru103/Ru103' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -# Ru106/Ru106 -'Ru106/Ru106' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -# Cs134/Cs134 -'Cs134/Cs134' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -# Cs137/Cs137 -'Cs137/Cs137' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -# Ra223/Ra123 -'Ra223/Ra123' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -# Ra228/Ra228 -'Ra228/Ra228' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -# Zr95 -'Zr95' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -# Nb95/Nb95 -'Nb95/Nb95' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -# Ce144/Ce144 -'Ce144/Ce144' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -# Np238/Np238 -'Np238/Np238' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -# Np239/Np239 -'Np239/Np239' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -# Pu241/Pu241 -'Pu241/Pu241' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -# Pb210/Pb210 -'Pb210/Pb210' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -# ALL -'ALL' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -# NACL -'NACL' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -# SODIUM/Na+ -'SODIUM/Na+' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -# MAGNESIUM/Mg++ -'MAGNESIUM/Mg++' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -# POTASSIUM/K+ -'POTASSIUM/K+' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -# CALCIUM/Ca++ -'CALCIUM/Ca++' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -# XMG/excess Mg++ (corrected for sea salt) -'XMG/excess Mg++ (corrected for sea salt)' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -# XK/excess K+ (corrected for sea salt) -'XK/excess K+ (corrected for sea salt)' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -# XCA/excess Ca++ (corrected for sea salt) -'XCA/excess Ca++ (corrected for sea salt)' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -# Cl2/Cloride -'Cl2/Cloride' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -# PMFINE -'PMFINE' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -# PMCOARSE/Coarse particles -'PMCOARSE/Coarse particles' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -# DUST/Dust (particles) -'DUST/Dust (particles)' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -# PNUMBER/Number concentration -'PNUMBER/Number concentration' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -# PRADIUS/Particle radius -'PRADIUS/Particle radius' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -# PSURFACE/Particle surface conc -'PSURFACE/Particle surface conc' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -# PMASS/Particle mass conc -'PMASS/Particle mass conc' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -# PM10/PM10 particles -'PM10/PM10 particles' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -# PSOX/Particulate sulfate -'PSOX/Particulate sulfate' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -# PNOX/Particulate nitrate -'PNOX/Particulate nitrate' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -# PNHX/Particulate ammonium -'PNHX/Particulate ammonium' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -# PPMFINE/Primary emitted fine particles -'PPMFINE/Primary emitted fine particles' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -# PPM10/Primary emitted particles -'PPM10/Primary emitted particles' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -# SOA/Secondary Organic Aerosol -'SOA/Secondary Organic Aerosol' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -# PM2.5/PM2.5 particles -'PM2.5/PM2.5 particles' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -# PM/Total particulate matter -'PM/Total particulate matter' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -# BIRCH_POLLEN/Birch pollen -'BIRCH_POLLEN/Birch pollen' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -# KZ -'KZ' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -# L/Monin-Obukhovs length [m] -'L/Monin-Obukhovs length [m]' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -# U*/Friction velocity [m/s] -'U*/Friction velocity [m/s]' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -# W*/Convective velocity scale [m/s] -'W*/Convective velocity scale [m/s]' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -# Z-D/Z0 minus displacement length [m] -'Z-D/Z0 minus displacement length [m]' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -# SURFTYPE/Surface type (see link{OCTET45}) -'SURFTYPE/Surface type (see link{OCTET45})' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -# LAI/Leaf area index -'LAI/Leaf area index' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -# SOILTYPE/Soil type -'SOILTYPE/Soil type' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -# SSALB/Single scattering albodo [1] -'SSALB/Single scattering albodo [1]' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -# ASYMPAR/Asymmetry parameter -'ASYMPAR/Asymmetry parameter' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -# VIS/Visibility [m] -'VIS/Visibility [m]' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -# EXT/Extinction [1/m] -'EXT/Extinction [1/m]' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -# BSCA/Backscattering coeff [1/m/sr] -'BSCA/Backscattering coeff [1/m/sr]' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -# AOD/Aerosol opt depth [1] -'AOD/Aerosol opt depth [1]' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -# DAOD/AOD per layer [1] -'DAOD/AOD per layer [1]' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -# CONV_TIED -'CONV_TIED' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -# CONV_BOT/Convective cloud bottom (unit?) -'CONV_BOT/Convective cloud bottom (unit?)' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -# CONV_TOP/Convective cloud top (unit?) -'CONV_TOP/Convective cloud top (unit?)' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -# DXDY/Gridsize [m2] -'DXDY/Gridsize [m2]' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -# EMIS/Sectoral emissions -'EMIS/Sectoral emissions' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -# LONG/Longitude -'LONG/Longitude' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -# LAT/Latitude -'LAT/Latitude' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Missing -'Missing' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -############### table2Version 129 ############ -############### Mesan ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 129 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Temperature -'Temperature' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#Wet bulb temperature -'Wet bulb temperature' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#24 hour mean of 2 meter temperature -'24 hour mean of 2 meter temperature' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 129 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 129 ; - indicatorOfParameter = 16 ; - } -#Visibility -'Visibility' = { - table2Version = 129 ; - indicatorOfParameter = 20 ; - } -#Wind gusts -'Wind gusts' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u-component of wind' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v-component of wind' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 129 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'Medium cloud cove' = { - table2Version = 129 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 129 ; - indicatorOfParameter = 75 ; - } -#Fraction of significant clouds -'Fraction of significant clouds' = { - table2Version = 129 ; - indicatorOfParameter = 77 ; - } -#Cloud base of significant clouds -'Cloud base of significant clouds' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Cloud top of significant clouds -'Cloud top of significant clouds' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Type of precipitation -'Type of precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Sort of precipitation -'Sort of precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#6 hour precipitation -'6 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#12 hour precipitation -'12 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#18 hour precipitation -'18 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#24 hour precipitation -'24 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#1 hour precipitation -'1 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#2 hour precipitation -'2 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#3 hour precipitation -'3 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#9 hour precipitation -'9 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#15 hour precipitation -'15 hour precipitation' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#6 hour fresh snow cover -'6 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#12 hour fresh snow cover -'12 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#18 hour fresh snow cover -'18 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#24 hour fresh snow cover -'24 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#1 hour fresh snow cover -'1 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#2 hour fresh snow cover -'2 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#3 hour fresh snow cover -'3 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#9 hour fresh snow cover -'9 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#15 hour fresh snow cover -'15 hour fresh snow cover' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#6 hour precipitation, corrected -'6 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#12 hour precipitation, corrected -'12 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#18 hour precipitation, corrected -'18 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#24 hour precipitation, corrected -'24 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#1 hour precipitation, corrected -'1 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#2 hour precipitation, corrected -'2 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#3 hour precipitation, corrected -'3 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#9 hour precipitation, corrected -'9 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#15 hour precipitation, corrected -'15 hour precipitation, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#6 hour fresh snow cover, corrected -'6 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#12 hour fresh snow cover, corrected -'12 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#18 hour fresh snow cover, corrected -'18 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#24 hour fresh snow cover, corrected -'24 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#1 hour fresh snow cover, corrected -'1 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#2 hour fresh snow cover, corrected -'2 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#3 hour fresh snow cover, corrected -'3 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#9 hour fresh snow cover, corrected -'9 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#15 hour fresh snow cover, corrected -'15 hour fresh snow cover, corrected' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#6 hour precipitation, standardized -'6 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#12 hour precipitation, standardized -'12 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#18 hour precipitation, standardized -'18 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#24 hour precipitation, standardized -'24 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#1 hour precipitation, standardized -'1 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#2 hour precipitation, standardized -'2 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#3 hour precipitation, standardized -'3 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#9 hour precipitation, standardized -'9 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#15 hour precipitation, standardized -'15 hour precipitation, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#6 hour fresh snow cover, standardized -'6 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#12 hour fresh snow cover, standardized -'12 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#18 hour fresh snow cover, standardized -'18 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 213 ; - } -#24 hour fresh snow cover, standardized -'24 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#1 hour fresh snow cover, standardized -'1 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#2 hour fresh snow cover, standardized -'2 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#3 hour fresh snow cover, standardized -'3 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#9 hour fresh snow cover, standardized -'9 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#15 hour fresh snow cover, standardized -'15 hour fresh snow cover, standardized' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#6 hour precipitation, corrected and standardized -'6 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#12 hour precipitation, corrected and standardized -'12 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#18 hour precipitation, corrected and standardized -'18 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#24 hour precipitation, corrected and standardized -'24 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#1 hour precipitation, corrected and standardized -'1 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#2 hour precipitation, corrected and standardized -'2 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#3 hour precipitation, corrected and standardized -'3 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#9 hour precipitation, corrected and standardized -'9 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#15 hour precipitation, corrected and standardized -'15 hour precipitation, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#6 hour fresh snow cover, corrected and standardized -'6 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#12 hour fresh snow cover, corrected and standardized -'12 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#18 hour fresh snow cover, corrected and standardized -'18 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#24 hour fresh snow cover, corrected and standardized -'24 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#1 hour fresh snow cover, corrected and standardized -'1 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#2 hour fresh snow cover, corrected and standardized -'2 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#3 hour fresh snow cover, corrected and standardized -'3 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#9 hour fresh snow cover, corrected and standardized -'9 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#15 hour fresh snow cover, corrected and standardized -'15 hour fresh snow cover, corrected and standardized' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Missing -'Missing' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -############### table2Version 130 ############ -############### PMP ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 130 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - table2Version = 130 ; - indicatorOfParameter = 1 ; - } -#Temperature -'Temperature' = { - table2Version = 130 ; - indicatorOfParameter = 11 ; - } -#Visibility -'Visibility' = { - table2Version = 130 ; - indicatorOfParameter = 20 ; - } -#u-component of wind -'u-component of wind' = { - table2Version = 130 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v-component of wind' = { - table2Version = 130 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 130 ; - indicatorOfParameter = 52 ; - } -#Probability of frozen rain -'Probability of frozen rain' = { - table2Version = 130 ; - indicatorOfParameter = 58 ; - } -#Probability thunderstorm -'Probability thunderstorm' = { - table2Version = 130 ; - indicatorOfParameter = 60 ; - } -#Total_precipitation -'Total_precipitation' = { - table2Version = 130 ; - indicatorOfParameter = 61 ; - } -#Water_equiv._of_snow_depth -'Water_equiv._of_snow_depth' = { - table2Version = 130 ; - indicatorOfParameter = 65 ; - } -#Area_time_min_totalcloudcover -'Area_time_min_totalcloudcover' = { - table2Version = 130 ; - indicatorOfParameter = 67 ; - } -#Area_time_max_totalcloudcover -'Area_time_max_totalcloudcover' = { - table2Version = 130 ; - indicatorOfParameter = 68 ; - } -#Area_time_median_totalcloudcover -'Area_time_median_totalcloudcover' = { - table2Version = 130 ; - indicatorOfParameter = 69 ; - } -#Area_time_mean_totalcloudcover -'Area_time_mean_totalcloudcover' = { - table2Version = 130 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 130 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 130 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 130 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'Medium cloud cove' = { - table2Version = 130 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 130 ; - indicatorOfParameter = 75 ; - } -#cloud mask -'cloud mask' = { - table2Version = 130 ; - indicatorOfParameter = 77 ; - } -#Index 2m maxtemperatur over 3 dygn -'Index 2m maxtemperatur over 3 dygn' = { - table2Version = 130 ; - indicatorOfParameter = 100 ; - } -#EPS T mean -'EPS T mean' = { - table2Version = 130 ; - indicatorOfParameter = 110 ; - } -#EPS T standard deviation -'EPS T standard deviation' = { - table2Version = 130 ; - indicatorOfParameter = 111 ; - } -#Maximum wind (mean 10 min) -'Maximum wind (mean 10 min)' = { - table2Version = 130 ; - indicatorOfParameter = 130 ; - } -#Wind gust -'Wind gust' = { - table2Version = 130 ; - indicatorOfParameter = 131 ; - } -#Cloud base (significant) -'Cloud base (significant)' = { - table2Version = 130 ; - indicatorOfParameter = 135 ; - } -#Cloud top (significant) -'Cloud top (significant)' = { - table2Version = 130 ; - indicatorOfParameter = 136 ; - } -#Omradesnederbord gridpunkts-min -'Omradesnederbord gridpunkts-min' = { - table2Version = 130 ; - indicatorOfParameter = 137 ; - } -#Omradesnederbord gridpunkts-max -'Omradesnederbord gridpunkts-max' = { - table2Version = 130 ; - indicatorOfParameter = 138 ; - } -#Omradesnederbord gridpunkts-medel -'Omradesnederbord gridpunkts-medel' = { - table2Version = 130 ; - indicatorOfParameter = 139 ; - } -#Precipitation intensity total -'Precipitation intensity total' = { - table2Version = 130 ; - indicatorOfParameter = 140 ; - } -#Precipitation intensity snow -'Precipitation intensity snow' = { - table2Version = 130 ; - indicatorOfParameter = 141 ; - } -#Area_time_min_precipitation -'Area_time_min_precipitation' = { - table2Version = 130 ; - indicatorOfParameter = 142 ; - } -#Area_time_max_precipitation -'Area_time_max_precipitation' = { - table2Version = 130 ; - indicatorOfParameter = 143 ; - } -#Precipitation type, conv 0, large scale 1, no prec -9 -'Precipitation type, conv 0, large scale 1, no prec -9' = { - table2Version = 130 ; - indicatorOfParameter = 145 ; - } -#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle -'Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle' = { - table2Version = 130 ; - indicatorOfParameter = 146 ; - } -#Vadersymbol -'Vadersymbol' = { - table2Version = 130 ; - indicatorOfParameter = 147 ; - } -#Area_time_mean_precipitation -'Area_time_mean_precipitation' = { - table2Version = 130 ; - indicatorOfParameter = 148 ; - } -#Area_time_median_precipitation -'Area_time_median_precipitation' = { - table2Version = 130 ; - indicatorOfParameter = 149 ; - } -#Missing -'Missing' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -############### table2Version 131 ############ -############### RCA ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 131 ; - indicatorOfParameter = 0 ; - } -#Sea surface temperature (LAKE) -'Sea surface temperature (LAKE)' = { - table2Version = 131 ; - indicatorOfParameter = 11 ; - } -#Current east -'Current east' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Current north -'Current north' = { - table2Version = 131 ; - indicatorOfParameter = 50 ; - } -#Snowdepth in Probe -'Snowdepth in Probe' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Ice concentration (LAKE) -'Ice concentration (LAKE)' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Ice thickness Probe-lake -'Ice thickness Probe-lake' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Temperature ABC-lake -'Temperature ABC-lake' = { - table2Version = 131 ; - indicatorOfParameter = 150 ; - } -#Temperature C-lake -'Temperature C-lake' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Temperature D-lake -'Temperature D-lake' = { - table2Version = 131 ; - indicatorOfParameter = 152 ; - } -#Temperature E-lake -'Temperature E-lake' = { - table2Version = 131 ; - indicatorOfParameter = 153 ; - } -#Area ABC-lake -'Area ABC-lake' = { - table2Version = 131 ; - indicatorOfParameter = 160 ; - } -#Depth ABC-lake -'Depth ABC-lake' = { - table2Version = 131 ; - indicatorOfParameter = 161 ; - } -#C-lakes -'C-lakes' = { - table2Version = 131 ; - indicatorOfParameter = 162 ; - } -#D-lakes -'D-lakes' = { - table2Version = 131 ; - indicatorOfParameter = 163 ; - } -#E-lakes -'E-lakes' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#Ice thickness ABC-lake -'Ice thickness ABC-lake' = { - table2Version = 131 ; - indicatorOfParameter = 170 ; - } -#Ice thickness C-lake -'Ice thickness C-lake' = { - table2Version = 131 ; - indicatorOfParameter = 171 ; - } -#Ice thickness D-lake -'Ice thickness D-lake' = { - table2Version = 131 ; - indicatorOfParameter = 172 ; - } -#Ice thickness E-lake -'Ice thickness E-lake' = { - table2Version = 131 ; - indicatorOfParameter = 173 ; - } -#Sea surface temperature (T) -'Sea surface temperature (T)' = { - table2Version = 131 ; - indicatorOfParameter = 180 ; - } -#Ice concentration (I) -'Ice concentration (I)' = { - table2Version = 131 ; - indicatorOfParameter = 183 ; - } -#Fraction lake -'Fraction lake' = { - table2Version = 131 ; - indicatorOfParameter = 196 ; - } -#Black ice thickness in Probe -'Black ice thickness in Probe' = { - table2Version = 131 ; - indicatorOfParameter = 241 ; - } -#Vallad istjocklek i Probe -'Vallad istjocklek i Probe' = { - table2Version = 131 ; - indicatorOfParameter = 244 ; - } -#Internal ice concentration in Probe -'Internal ice concentration in Probe' = { - table2Version = 131 ; - indicatorOfParameter = 245 ; - } -#Isfrontlaege i Probe -'Isfrontlaege i Probe' = { - table2Version = 131 ; - indicatorOfParameter = 246 ; - } -#Heat in Probe -'Heat in Probe' = { - table2Version = 131 ; - indicatorOfParameter = 250 ; - } -#Turbulent Kintetic Energy -'Turbulent Kintetic Energy' = { - table2Version = 131 ; - indicatorOfParameter = 251 ; - } -#Dissipation rate Turbulent Kinetic Energy -'Dissipation rate Turbulent Kinetic Energy' = { - table2Version = 131 ; - indicatorOfParameter = 252 ; - } -#Missing -'Missing' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -############### table2Version 133 ############ -############### Hiromb ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 133 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#Temperature -'Temperature' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'Wind speed' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#U-component of Wind -'U-component of Wind' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#V-component of Wind -'V-component of Wind' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Stream function -'Stream function' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'Montgomery stream function' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Z-component of velocity (pressure) -'Z-component of velocity (pressure)' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Z-component of velocity (geometric) -'Z-component of velocity (geometric)' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'Relative vorticity' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'Relative divergence' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Direction of horizontal current -'Direction of horizontal current' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Speed of horizontal current -'Speed of horizontal current' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#U-comp of Current -'U-comp of Current' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#V-comp of Current -'V-comp of Current' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snow Depth -'Snow Depth' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#Water temperature -'Water temperature' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea level from mean -'Deviation of sea level from mean' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Salinity -'Salinity' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Ice Cover -'Ice Cover' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Total ice thickness -'Total ice thickness' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 133 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 133 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 133 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 133 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 133 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 133 ; - indicatorOfParameter = 98 ; - } -#Significant wave height -'Significant wave height' = { - table2Version = 133 ; - indicatorOfParameter = 100 ; - } -#Direction of Wind Waves -'Direction of Wind Waves' = { - table2Version = 133 ; - indicatorOfParameter = 101 ; - } -#Sign Height Wind Waves -'Sign Height Wind Waves' = { - table2Version = 133 ; - indicatorOfParameter = 102 ; - } -#Mean Period Wind Waves -'Mean Period Wind Waves' = { - table2Version = 133 ; - indicatorOfParameter = 103 ; - } -#Direction of Swell Waves -'Direction of Swell Waves' = { - table2Version = 133 ; - indicatorOfParameter = 104 ; - } -#Sign Height Swell Waves -'Sign Height Swell Waves' = { - table2Version = 133 ; - indicatorOfParameter = 105 ; - } -#Mean Period Swell Waves -'Mean Period Swell Waves' = { - table2Version = 133 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 133 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 133 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 133 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 133 ; - indicatorOfParameter = 110 ; - } -#Mean period of waves -'Mean period of waves' = { - table2Version = 133 ; - indicatorOfParameter = 111 ; - } -#Mean direction of Waves -'Mean direction of Waves' = { - table2Version = 133 ; - indicatorOfParameter = 112 ; - } -#Peak period of 1D spectra -'Peak period of 1D spectra' = { - table2Version = 133 ; - indicatorOfParameter = 113 ; - } -#Skin velocity, x-comp. -'Skin velocity, x-comp.' = { - table2Version = 133 ; - indicatorOfParameter = 130 ; - } -#Skin velocity, y-comp. -'Skin velocity, y-comp.' = { - table2Version = 133 ; - indicatorOfParameter = 131 ; - } -#Nitrate -'Nitrate' = { - table2Version = 133 ; - indicatorOfParameter = 151 ; - } -#Ammonium -'Ammonium' = { - table2Version = 133 ; - indicatorOfParameter = 152 ; - } -#Phosphate -'Phosphate' = { - table2Version = 133 ; - indicatorOfParameter = 153 ; - } -#Oxygen -'Oxygen' = { - table2Version = 133 ; - indicatorOfParameter = 154 ; - } -#Phytoplankton -'Phytoplankton' = { - table2Version = 133 ; - indicatorOfParameter = 155 ; - } -#Zooplankton -'Zooplankton' = { - table2Version = 133 ; - indicatorOfParameter = 156 ; - } -#Detritus -'Detritus' = { - table2Version = 133 ; - indicatorOfParameter = 157 ; - } -#Bentos nitrogen -'Bentos nitrogen' = { - table2Version = 133 ; - indicatorOfParameter = 158 ; - } -#Bentos phosphorus -'Bentos phosphorus' = { - table2Version = 133 ; - indicatorOfParameter = 159 ; - } -#Silicate -'Silicate' = { - table2Version = 133 ; - indicatorOfParameter = 160 ; - } -#Biogenic silica -'Biogenic silica' = { - table2Version = 133 ; - indicatorOfParameter = 161 ; - } -#Light in water column -'Light in water column' = { - table2Version = 133 ; - indicatorOfParameter = 162 ; - } -#Inorganic suspended matter -'Inorganic suspended matter' = { - table2Version = 133 ; - indicatorOfParameter = 163 ; - } -#Diatomes (algae) -'Diatomes (algae)' = { - table2Version = 133 ; - indicatorOfParameter = 164 ; - } -#Flagellates (algae) -'Flagellates (algae)' = { - table2Version = 133 ; - indicatorOfParameter = 165 ; - } -#Nitrate (aggregated) -'Nitrate (aggregated)' = { - table2Version = 133 ; - indicatorOfParameter = 166 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - table2Version = 133 ; - indicatorOfParameter = 200 ; - } -#Dissipation rate of TKE -'Dissipation rate of TKE' = { - table2Version = 133 ; - indicatorOfParameter = 201 ; - } -#Eddy viscosity -'Eddy viscosity' = { - table2Version = 133 ; - indicatorOfParameter = 202 ; - } -#Eddy diffusivity -'Eddy diffusivity' = { - table2Version = 133 ; - indicatorOfParameter = 203 ; - } -# Level ice thickness -' Level ice thickness' = { - table2Version = 133 ; - indicatorOfParameter = 220 ; - } -#Ridged ice thickness -'Ridged ice thickness' = { - table2Version = 133 ; - indicatorOfParameter = 221 ; - } -#Ice ridge height -'Ice ridge height' = { - table2Version = 133 ; - indicatorOfParameter = 222 ; - } -#Ice ridge density -'Ice ridge density' = { - table2Version = 133 ; - indicatorOfParameter = 223 ; - } -#U-mean (prev. timestep) -'U-mean (prev. timestep)' = { - table2Version = 133 ; - indicatorOfParameter = 231 ; - } -#V-mean (prev. timestep) -'V-mean (prev. timestep)' = { - table2Version = 133 ; - indicatorOfParameter = 232 ; - } -#W-mean (prev. timestep) -'W-mean (prev. timestep)' = { - table2Version = 133 ; - indicatorOfParameter = 233 ; - } -#Snow temperature -'Snow temperature' = { - table2Version = 133 ; - indicatorOfParameter = 239 ; - } -#Total depth in meters -'Total depth in meters' = { - table2Version = 133 ; - indicatorOfParameter = 243 ; - } -#Missing -'Missing' = { - table2Version = 133 ; - indicatorOfParameter = 255 ; - } -############### table2Version 134 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 0 ; - } -#C2H6/Ethane -'C2H6/Ethane' = { - table2Version = 134 ; - indicatorOfParameter = 1 ; - } -#NC4H10/N-butane -'NC4H10/N-butane' = { - table2Version = 134 ; - indicatorOfParameter = 2 ; - } -#C2H4/Ethene -'C2H4/Ethene' = { - table2Version = 134 ; - indicatorOfParameter = 3 ; - } -#C3H6/Propene -'C3H6/Propene' = { - table2Version = 134 ; - indicatorOfParameter = 4 ; - } -#OXYLENE/O-xylene -'OXYLENE/O-xylene' = { - table2Version = 134 ; - indicatorOfParameter = 5 ; - } -#HCHO/Formalydehyde -'HCHO/Formalydehyde' = { - table2Version = 134 ; - indicatorOfParameter = 6 ; - } -#CH3CHO/Acetaldehyde -'CH3CHO/Acetaldehyde' = { - table2Version = 134 ; - indicatorOfParameter = 7 ; - } -#CH3COC2H5/Ethyl methyl keton -'CH3COC2H5/Ethyl methyl keton' = { - table2Version = 134 ; - indicatorOfParameter = 8 ; - } -#MGLYOX/Methyl-glyoxal (CH3COCHO) -'MGLYOX/Methyl-glyoxal (CH3COCHO)' = { - table2Version = 134 ; - indicatorOfParameter = 9 ; - } -#GLYOX/Glyoxal (HCOCHO) -'GLYOX/Glyoxal (HCOCHO)' = { - table2Version = 134 ; - indicatorOfParameter = 10 ; - } -#C5H8/Isoprene -'C5H8/Isoprene' = { - table2Version = 134 ; - indicatorOfParameter = 11 ; - } -#C2H5OH/Ethanol -'C2H5OH/Ethanol' = { - table2Version = 134 ; - indicatorOfParameter = 12 ; - } -#CH3OH/Metanol -'CH3OH/Metanol' = { - table2Version = 134 ; - indicatorOfParameter = 13 ; - } -#HCOOH/Formic acid -'HCOOH/Formic acid' = { - table2Version = 134 ; - indicatorOfParameter = 14 ; - } -#CH3COOH/Acetic acid -'CH3COOH/Acetic acid' = { - table2Version = 134 ; - indicatorOfParameter = 15 ; - } -#NMVOC_C/Total NMVOC as C -'NMVOC_C/Total NMVOC as C' = { - table2Version = 134 ; - indicatorOfParameter = 19 ; - } -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 20 ; - } -#PAN/Peroxy acetyl nitrate -'PAN/Peroxy acetyl nitrate' = { - table2Version = 134 ; - indicatorOfParameter = 21 ; - } -#NO3/Nitrate radical -'NO3/Nitrate radical' = { - table2Version = 134 ; - indicatorOfParameter = 22 ; - } -#N2O5/Dinitrogen pentoxide -'N2O5/Dinitrogen pentoxide' = { - table2Version = 134 ; - indicatorOfParameter = 23 ; - } -#ONIT/Organic nitrate -'ONIT/Organic nitrate' = { - table2Version = 134 ; - indicatorOfParameter = 24 ; - } -#ISONRO2/Isoprene-NO3 adduct -'ISONRO2/Isoprene-NO3 adduct' = { - table2Version = 134 ; - indicatorOfParameter = 25 ; - } -#HO2NO2/HO2NO2 -'HO2NO2/HO2NO2' = { - table2Version = 134 ; - indicatorOfParameter = 26 ; - } -#MPAN -'MPAN' = { - table2Version = 134 ; - indicatorOfParameter = 27 ; - } -#ISONO3H -'ISONO3H' = { - table2Version = 134 ; - indicatorOfParameter = 28 ; - } -#HONO -'HONO' = { - table2Version = 134 ; - indicatorOfParameter = 29 ; - } -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 30 ; - } -#HO2/Hydroperhydroxyl radical -'HO2/Hydroperhydroxyl radical' = { - table2Version = 134 ; - indicatorOfParameter = 31 ; - } -#H2/Molecular hydrogen -'H2/Molecular hydrogen' = { - table2Version = 134 ; - indicatorOfParameter = 32 ; - } -#O/Oxygen atomic ground state (3P) -'O/Oxygen atomic ground state (3P)' = { - table2Version = 134 ; - indicatorOfParameter = 33 ; - } -#O1D/Oxygen atomic first singlet state -'O1D/Oxygen atomic first singlet state' = { - table2Version = 134 ; - indicatorOfParameter = 34 ; - } -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 40 ; - } -#CH3O2/Methyl peroxy radical -'CH3O2/Methyl peroxy radical' = { - table2Version = 134 ; - indicatorOfParameter = 41 ; - } -#CH3O2H/Methyl hydroperoxide -'CH3O2H/Methyl hydroperoxide' = { - table2Version = 134 ; - indicatorOfParameter = 42 ; - } -#C2H5O2/Ethyl peroxy radical -'C2H5O2/Ethyl peroxy radical' = { - table2Version = 134 ; - indicatorOfParameter = 43 ; - } -#CH3COO2/Peroxy acetyl radical -'CH3COO2/Peroxy acetyl radical' = { - table2Version = 134 ; - indicatorOfParameter = 44 ; - } -#SECC4H9O2/Buthyl peroxy radical -'SECC4H9O2/Buthyl peroxy radical' = { - table2Version = 134 ; - indicatorOfParameter = 45 ; - } -#CH3COCHO2CH3/peroxy radical from MEK -'CH3COCHO2CH3/peroxy radical from MEK' = { - table2Version = 134 ; - indicatorOfParameter = 46 ; - } -#ACETOL/acetol (hydroxy acetone) -'ACETOL/acetol (hydroxy acetone)' = { - table2Version = 134 ; - indicatorOfParameter = 47 ; - } -#CH2O2CH2OH -'CH2O2CH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 48 ; - } -#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH -'CH3CHO2CH2OH/Peroxy radical from C3H6 + OH' = { - table2Version = 134 ; - indicatorOfParameter = 49 ; - } -#MAL/CH3COCH=CHCHO -'MAL/CH3COCH=CHCHO' = { - table2Version = 134 ; - indicatorOfParameter = 50 ; - } -#MALO2/Peroxy radical from MAL + oh -'MALO2/Peroxy radical from MAL + oh' = { - table2Version = 134 ; - indicatorOfParameter = 51 ; - } -#ISRO2/Peroxy radical from isoprene + oh -'ISRO2/Peroxy radical from isoprene + oh' = { - table2Version = 134 ; - indicatorOfParameter = 52 ; - } -#ISOPROD/Peroxy radical from ISOPROD -'ISOPROD/Peroxy radical from ISOPROD' = { - table2Version = 134 ; - indicatorOfParameter = 53 ; - } -#C2H5OOH/Ethyl hydroperoxide -'C2H5OOH/Ethyl hydroperoxide' = { - table2Version = 134 ; - indicatorOfParameter = 54 ; - } -#CH3COO2H -'CH3COO2H' = { - table2Version = 134 ; - indicatorOfParameter = 55 ; - } -#OXYO2H/Hydroperoxide from OXYO2 -'OXYO2H/Hydroperoxide from OXYO2' = { - table2Version = 134 ; - indicatorOfParameter = 56 ; - } -#SECC4H9O2H/Buthyl hydroperoxide -'SECC4H9O2H/Buthyl hydroperoxide' = { - table2Version = 134 ; - indicatorOfParameter = 57 ; - } -#CH2OOHCH2OH -'CH2OOHCH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 58 ; - } -#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 -'CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2' = { - table2Version = 134 ; - indicatorOfParameter = 59 ; - } -#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 -'CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2' = { - table2Version = 134 ; - indicatorOfParameter = 60 ; - } -#MALO2H/Hydroperoxide from MALO2 + ho2 -'MALO2H/Hydroperoxide from MALO2 + ho2' = { - table2Version = 134 ; - indicatorOfParameter = 61 ; - } -#IPRO2 -'IPRO2' = { - table2Version = 134 ; - indicatorOfParameter = 62 ; - } -#XO2 -'XO2' = { - table2Version = 134 ; - indicatorOfParameter = 63 ; - } -#OXYO2/Peroxy radical from o-xylene + oh -'OXYO2/Peroxy radical from o-xylene + oh' = { - table2Version = 134 ; - indicatorOfParameter = 64 ; - } -#ISRO2H -'ISRO2H' = { - table2Version = 134 ; - indicatorOfParameter = 65 ; - } -#MVK -'MVK' = { - table2Version = 134 ; - indicatorOfParameter = 66 ; - } -#MVKO2 -'MVKO2' = { - table2Version = 134 ; - indicatorOfParameter = 67 ; - } -#MVKO2H -'MVKO2H' = { - table2Version = 134 ; - indicatorOfParameter = 68 ; - } -#BENZENE -'BENZENE' = { - table2Version = 134 ; - indicatorOfParameter = 70 ; - } -#ISNI -'ISNI' = { - table2Version = 134 ; - indicatorOfParameter = 74 ; - } -#ISNIR -'ISNIR' = { - table2Version = 134 ; - indicatorOfParameter = 75 ; - } -#ISNIRH -'ISNIRH' = { - table2Version = 134 ; - indicatorOfParameter = 76 ; - } -#MACR -'MACR' = { - table2Version = 134 ; - indicatorOfParameter = 77 ; - } -#AOH1 -'AOH1' = { - table2Version = 134 ; - indicatorOfParameter = 78 ; - } -#AOH1H -'AOH1H' = { - table2Version = 134 ; - indicatorOfParameter = 79 ; - } -#MACRO2 -'MACRO2' = { - table2Version = 134 ; - indicatorOfParameter = 80 ; - } -#MACO3H -'MACO3H' = { - table2Version = 134 ; - indicatorOfParameter = 81 ; - } -#MACOOH -'MACOOH' = { - table2Version = 134 ; - indicatorOfParameter = 82 ; - } -#CH2CCH3 -'CH2CCH3' = { - table2Version = 134 ; - indicatorOfParameter = 83 ; - } -#CH2CO2HCH3 -'CH2CO2HCH3' = { - table2Version = 134 ; - indicatorOfParameter = 84 ; - } -#BIGENE -'BIGENE' = { - table2Version = 134 ; - indicatorOfParameter = 90 ; - } -#BIGALK -'BIGALK' = { - table2Version = 134 ; - indicatorOfParameter = 91 ; - } -#TOLUENE -'TOLUENE' = { - table2Version = 134 ; - indicatorOfParameter = 92 ; - } -#CH2CHCN -'CH2CHCN' = { - table2Version = 134 ; - indicatorOfParameter = 100 ; - } -#(CH3)2NNH2/Dimetylhydrazin -'(CH3)2NNH2/Dimetylhydrazin' = { - table2Version = 134 ; - indicatorOfParameter = 101 ; - } -#CH2OC2H3Cl/Epiklorhydrin -'CH2OC2H3Cl/Epiklorhydrin' = { - table2Version = 134 ; - indicatorOfParameter = 102 ; - } -#CH2OC2/Etylenoxid -'CH2OC2/Etylenoxid' = { - table2Version = 134 ; - indicatorOfParameter = 103 ; - } -#HF/Vaetefluorid -'HF/Vaetefluorid' = { - table2Version = 134 ; - indicatorOfParameter = 105 ; - } -#Hcl/Vaeteklorid -'Hcl/Vaeteklorid' = { - table2Version = 134 ; - indicatorOfParameter = 106 ; - } -#CS2/Koldisulfid -'CS2/Koldisulfid' = { - table2Version = 134 ; - indicatorOfParameter = 107 ; - } -#CH3NH2/Metylamin -'CH3NH2/Metylamin' = { - table2Version = 134 ; - indicatorOfParameter = 108 ; - } -#SF6/Sulphurhexafloride -'SF6/Sulphurhexafloride' = { - table2Version = 134 ; - indicatorOfParameter = 110 ; - } -#HCN/Vaetecyanid -'HCN/Vaetecyanid' = { - table2Version = 134 ; - indicatorOfParameter = 111 ; - } -#COCl2/Fosgen -'COCl2/Fosgen' = { - table2Version = 134 ; - indicatorOfParameter = 112 ; - } -#H2CCHCl/Vinylklorid -'H2CCHCl/Vinylklorid' = { - table2Version = 134 ; - indicatorOfParameter = 113 ; - } -#Missing -'Missing' = { - table2Version = 134 ; - indicatorOfParameter = 255 ; - } -############### table2Version 135 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 135 ; - indicatorOfParameter = 0 ; - } -#GRG1/MOZART specie -'GRG1/MOZART specie' = { - table2Version = 135 ; - indicatorOfParameter = 1 ; - } -#GRG2/MOZART specie -'GRG2/MOZART specie' = { - table2Version = 135 ; - indicatorOfParameter = 2 ; - } -#GRG3/MOZART specie -'GRG3/MOZART specie' = { - table2Version = 135 ; - indicatorOfParameter = 3 ; - } -#GRG4/MOZART specie -'GRG4/MOZART specie' = { - table2Version = 135 ; - indicatorOfParameter = 4 ; - } -#GRG5/MOZART specie -'GRG5/MOZART specie' = { - table2Version = 135 ; - indicatorOfParameter = 5 ; - } -#VIS-340/Visibility at 340 nm -'VIS-340/Visibility at 340 nm' = { - table2Version = 135 ; - indicatorOfParameter = 100 ; - } -#VIS-355/Visibility at 355 nm -'VIS-355/Visibility at 355 nm' = { - table2Version = 135 ; - indicatorOfParameter = 101 ; - } -#VIS-380/Visibility at 380 nm -'VIS-380/Visibility at 380 nm' = { - table2Version = 135 ; - indicatorOfParameter = 102 ; - } -#VIS-440/Visibility at 440 nm -'VIS-440/Visibility at 440 nm' = { - table2Version = 135 ; - indicatorOfParameter = 103 ; - } -#VIS-500/Visibility at 500 nm -'VIS-500/Visibility at 500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 104 ; - } -#VIS-532/Visibility at 532 nm -'VIS-532/Visibility at 532 nm' = { - table2Version = 135 ; - indicatorOfParameter = 105 ; - } -#VIS-675/Visibility at 675 nm -'VIS-675/Visibility at 675 nm' = { - table2Version = 135 ; - indicatorOfParameter = 106 ; - } -#VIS-870/Visibility at 870 nm -'VIS-870/Visibility at 870 nm' = { - table2Version = 135 ; - indicatorOfParameter = 107 ; - } -#VIS-1020/Visibility at 1020 nm -'VIS-1020/Visibility at 1020 nm' = { - table2Version = 135 ; - indicatorOfParameter = 108 ; - } -#VIS-1064/Visibility at 1064 nm -'VIS-1064/Visibility at 1064 nm' = { - table2Version = 135 ; - indicatorOfParameter = 109 ; - } -#VIS-3500/Visibility at 3500 nm -'VIS-3500/Visibility at 3500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 110 ; - } -#VIS-10000/Visibility at 10000 nm -'VIS-10000/Visibility at 10000 nm' = { - table2Version = 135 ; - indicatorOfParameter = 111 ; - } -#BSCA-340/Backscatter at 340 nm -'BSCA-340/Backscatter at 340 nm' = { - table2Version = 135 ; - indicatorOfParameter = 120 ; - } -#BSCA-355/Backscatter at 355 nm -'BSCA-355/Backscatter at 355 nm' = { - table2Version = 135 ; - indicatorOfParameter = 121 ; - } -#BSCA-380/Backscatter at 380 nm -'BSCA-380/Backscatter at 380 nm' = { - table2Version = 135 ; - indicatorOfParameter = 122 ; - } -#BSCA-440/Backscatter at 440 nm -'BSCA-440/Backscatter at 440 nm' = { - table2Version = 135 ; - indicatorOfParameter = 123 ; - } -#BSCA-500/Backscatter at 500 nm -'BSCA-500/Backscatter at 500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 124 ; - } -#BSCA-532/Backscatter at 532 nm -'BSCA-532/Backscatter at 532 nm' = { - table2Version = 135 ; - indicatorOfParameter = 125 ; - } -#BSCA-675/Backscatter at 675 nm -'BSCA-675/Backscatter at 675 nm' = { - table2Version = 135 ; - indicatorOfParameter = 126 ; - } -#BSCA-870/Backscatter at 870 nm -'BSCA-870/Backscatter at 870 nm' = { - table2Version = 135 ; - indicatorOfParameter = 127 ; - } -#BSCA-1020/Backscatter at 1020 nm -'BSCA-1020/Backscatter at 1020 nm' = { - table2Version = 135 ; - indicatorOfParameter = 128 ; - } -#BSCA-1064/Backscatter at 1064 nm -'BSCA-1064/Backscatter at 1064 nm' = { - table2Version = 135 ; - indicatorOfParameter = 129 ; - } -#BSCA-3500/Backscatter at 3500 nm -'BSCA-3500/Backscatter at 3500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 130 ; - } -#BSCA-10000/Backscatter at 10000 nm -'BSCA-10000/Backscatter at 10000 nm' = { - table2Version = 135 ; - indicatorOfParameter = 131 ; - } -#EXT-340/Extinction at 340 nm -'EXT-340/Extinction at 340 nm' = { - table2Version = 135 ; - indicatorOfParameter = 140 ; - } -#EXT-355/Extinction at 355 nm -'EXT-355/Extinction at 355 nm' = { - table2Version = 135 ; - indicatorOfParameter = 141 ; - } -#EXT-380/Extinction at 380 nm -'EXT-380/Extinction at 380 nm' = { - table2Version = 135 ; - indicatorOfParameter = 142 ; - } -#EXT-440/Extinction at 440 nm -'EXT-440/Extinction at 440 nm' = { - table2Version = 135 ; - indicatorOfParameter = 143 ; - } -#EXT-500/Extinction at 500 nm -'EXT-500/Extinction at 500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 144 ; - } -#EXT-532/Extinction at 532 nm -'EXT-532/Extinction at 532 nm' = { - table2Version = 135 ; - indicatorOfParameter = 145 ; - } -#EXT-675/Extinction at 675 nm -'EXT-675/Extinction at 675 nm' = { - table2Version = 135 ; - indicatorOfParameter = 146 ; - } -#EXT-870/Extinction at 870 nm -'EXT-870/Extinction at 870 nm' = { - table2Version = 135 ; - indicatorOfParameter = 147 ; - } -#EXT-1020/Extinction at 1020 nm -'EXT-1020/Extinction at 1020 nm' = { - table2Version = 135 ; - indicatorOfParameter = 148 ; - } -#EXT-1064/Extinction at 1064 nm -'EXT-1064/Extinction at 1064 nm' = { - table2Version = 135 ; - indicatorOfParameter = 149 ; - } -#EXT-3500/Extinction at 3500 nm -'EXT-3500/Extinction at 3500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 150 ; - } -#EXT-10000/Extinction at 10000 nm -'EXT-10000/Extinction at 10000 nm' = { - table2Version = 135 ; - indicatorOfParameter = 151 ; - } -#AOD-340/Aerosol optical depth at 340 nm -'AOD-340/Aerosol optical depth at 340 nm' = { - table2Version = 135 ; - indicatorOfParameter = 160 ; - } -#AOD-355/Aerosol optical depth at 355 nm -'AOD-355/Aerosol optical depth at 355 nm' = { - table2Version = 135 ; - indicatorOfParameter = 161 ; - } -#AOD-380/Aerosol optical depth at 380 nm -'AOD-380/Aerosol optical depth at 380 nm' = { - table2Version = 135 ; - indicatorOfParameter = 162 ; - } -#AOD-440/Aerosol optical depth at 440 nm -'AOD-440/Aerosol optical depth at 440 nm' = { - table2Version = 135 ; - indicatorOfParameter = 163 ; - } -#AOD-500/Aerosol optical depth at 500 nm -'AOD-500/Aerosol optical depth at 500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 164 ; - } -#AOD-532/Aerosol optical depth at 532 nm -'AOD-532/Aerosol optical depth at 532 nm' = { - table2Version = 135 ; - indicatorOfParameter = 165 ; - } -#AOD-675/Aerosol optical depth at 675 nm -'AOD-675/Aerosol optical depth at 675 nm' = { - table2Version = 135 ; - indicatorOfParameter = 166 ; - } -#AOD-870/Aerosol optical depth at 870 nm -'AOD-870/Aerosol optical depth at 870 nm' = { - table2Version = 135 ; - indicatorOfParameter = 167 ; - } -#AOD-1020/Aerosol optical depth at 1020 nm -'AOD-1020/Aerosol optical depth at 1020 nm' = { - table2Version = 135 ; - indicatorOfParameter = 168 ; - } -#AOD-1064/Aerosol optical depth at 1064 nm -'AOD-1064/Aerosol optical depth at 1064 nm' = { - table2Version = 135 ; - indicatorOfParameter = 169 ; - } -#AOD-3500/Aerosol optical depth at 3500 nm -'AOD-3500/Aerosol optical depth at 3500 nm' = { - table2Version = 135 ; - indicatorOfParameter = 170 ; - } -#AOD-10000/Aerosol optical depth at 10000 nm -'AOD-10000/Aerosol optical depth at 10000 nm' = { - table2Version = 135 ; - indicatorOfParameter = 171 ; - } -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - table2Version = 135 ; - indicatorOfParameter = 208 ; - } -#Rain factor -'Rain factor' = { - table2Version = 135 ; - indicatorOfParameter = 209 ; - } -#Total column integrated rain -'Total column integrated rain' = { - table2Version = 135 ; - indicatorOfParameter = 210 ; - } -#Total column integrated snow -'Total column integrated snow' = { - table2Version = 135 ; - indicatorOfParameter = 211 ; - } -#Total water precipitation -'Total water precipitation' = { - table2Version = 135 ; - indicatorOfParameter = 212 ; - } -#Total snow precipitation -'Total snow precipitation' = { - table2Version = 135 ; - indicatorOfParameter = 213 ; - } -#Total column water (Vertically integrated total water) -'Total column water (Vertically integrated total water)' = { - table2Version = 135 ; - indicatorOfParameter = 214 ; - } -#Large scale precipitation rate -'Large scale precipitation rate' = { - table2Version = 135 ; - indicatorOfParameter = 215 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - table2Version = 135 ; - indicatorOfParameter = 216 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - table2Version = 135 ; - indicatorOfParameter = 217 ; - } -#Total snowfall rate -'Total snowfall rate' = { - table2Version = 135 ; - indicatorOfParameter = 218 ; - } -#Convective snowfall rate -'Convective snowfall rate' = { - table2Version = 135 ; - indicatorOfParameter = 219 ; - } -#Large scale snowfall rate -'Large scale snowfall rate' = { - table2Version = 135 ; - indicatorOfParameter = 220 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 135 ; - indicatorOfParameter = 221 ; - } -#Snow evaporation -'Snow evaporation' = { - table2Version = 135 ; - indicatorOfParameter = 222 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - table2Version = 135 ; - indicatorOfParameter = 223 ; - } -#Rain precipitation rate -'Rain precipitation rate' = { - table2Version = 135 ; - indicatorOfParameter = 224 ; - } -#Snow precipitation rate -'Snow precipitation rate' = { - table2Version = 135 ; - indicatorOfParameter = 225 ; - } -#Freezing rain precipitation rate -'Freezing rain precipitation rate' = { - table2Version = 135 ; - indicatorOfParameter = 226 ; - } -#Ice pellets precipitation rate -'Ice pellets precipitation rate' = { - table2Version = 135 ; - indicatorOfParameter = 227 ; - } -#Specific cloud liquid water content -'Specific cloud liquid water content' = { - table2Version = 135 ; - indicatorOfParameter = 228 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - table2Version = 135 ; - indicatorOfParameter = 229 ; - } -#Specific rain water content -'Specific rain water content' = { - table2Version = 135 ; - indicatorOfParameter = 230 ; - } -#Specific snow water content -'Specific snow water content' = { - table2Version = 135 ; - indicatorOfParameter = 231 ; - } -#u-component of wind (gust) -'u-component of wind (gust)' = { - table2Version = 135 ; - indicatorOfParameter = 232 ; - } -#v-component of wind (gust) -'v-component of wind (gust)' = { - table2Version = 135 ; - indicatorOfParameter = 233 ; - } -#Vertical speed shear -'Vertical speed shear' = { - table2Version = 135 ; - indicatorOfParameter = 234 ; - } -#Horizontal momentum flux -'Horizontal momentum flux' = { - table2Version = 135 ; - indicatorOfParameter = 235 ; - } -#u-component storm motion -'u-component storm motion' = { - table2Version = 135 ; - indicatorOfParameter = 236 ; - } -#v-component storm motion -'v-component storm motion' = { - table2Version = 135 ; - indicatorOfParameter = 237 ; - } -#Drag coefficient -'Drag coefficient' = { - table2Version = 135 ; - indicatorOfParameter = 238 ; - } -#Eta coordinate vertical velocity -'Eta coordinate vertical velocity' = { - table2Version = 135 ; - indicatorOfParameter = 239 ; - } -#Altimeter setting -'Altimeter setting' = { - table2Version = 135 ; - indicatorOfParameter = 240 ; - } -#Thickness -'Thickness' = { - table2Version = 135 ; - indicatorOfParameter = 241 ; - } -#Pressure altitude -'Pressure altitude' = { - table2Version = 135 ; - indicatorOfParameter = 242 ; - } -#Density altitude -'Density altitude' = { - table2Version = 135 ; - indicatorOfParameter = 243 ; - } -#5-wave geopotential height -'5-wave geopotential height' = { - table2Version = 135 ; - indicatorOfParameter = 244 ; - } -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - table2Version = 135 ; - indicatorOfParameter = 245 ; - } -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - table2Version = 135 ; - indicatorOfParameter = 246 ; - } -#Planetary boundary layer height -'Planetary boundary layer height' = { - table2Version = 135 ; - indicatorOfParameter = 247 ; - } -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - table2Version = 135 ; - indicatorOfParameter = 248 ; - } -#Standard deviation of sub-gridscale orography -'Standard deviation of sub-gridscale orography' = { - table2Version = 135 ; - indicatorOfParameter = 249 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - table2Version = 135 ; - indicatorOfParameter = 250 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - table2Version = 135 ; - indicatorOfParameter = 251 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - table2Version = 135 ; - indicatorOfParameter = 252 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - table2Version = 135 ; - indicatorOfParameter = 253 ; - } -#Natural logarithm of pressure in Pa -'Natural logarithm of pressure in Pa' = { - table2Version = 135 ; - indicatorOfParameter = 254 ; - } -#Missing -'Missing' = { - table2Version = 135 ; - indicatorOfParameter = 255 ; - } -############### table2Version 136 ############ -############### Strang ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 136 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pressure' = { - table2Version = 136 ; - indicatorOfParameter = 1 ; - } -#Temperature -'Temperature' = { - table2Version = 136 ; - indicatorOfParameter = 11 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 136 ; - indicatorOfParameter = 51 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 136 ; - indicatorOfParameter = 54 ; - } -#Snow depth -'Snow depth' = { - table2Version = 136 ; - indicatorOfParameter = 66 ; - } -#Total cloud cover -'Total cloud cover' = { - table2Version = 136 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 136 ; - indicatorOfParameter = 73 ; - } -#Probability for significant cloud base -'Probability for significant cloud base' = { - table2Version = 136 ; - indicatorOfParameter = 77 ; - } -#Significant cloud base -'Significant cloud base' = { - table2Version = 136 ; - indicatorOfParameter = 78 ; - } -#Significant cloud top -'Significant cloud top' = { - table2Version = 136 ; - indicatorOfParameter = 79 ; - } -#Albedo (lev 0=global radiation lev 1=UV radiation) -'Albedo (lev 0=global radiation lev 1=UV radiation)' = { - table2Version = 136 ; - indicatorOfParameter = 84 ; - } -#Ice concentration -'Ice concentration' = { - table2Version = 136 ; - indicatorOfParameter = 91 ; - } -#CIE-weighted UV irradiance -'CIE-weighted UV irradiance' = { - table2Version = 136 ; - indicatorOfParameter = 116 ; - } -#Global irradiance -'Global irradiance' = { - table2Version = 136 ; - indicatorOfParameter = 117 ; - } -#Beam normal irradiance -'Beam normal irradiance' = { - table2Version = 136 ; - indicatorOfParameter = 118 ; - } -#Sunshine duration -'Sunshine duration' = { - table2Version = 136 ; - indicatorOfParameter = 119 ; - } -#PAR -'PAR' = { - table2Version = 136 ; - indicatorOfParameter = 120 ; - } -#Accumulated precipitation, 1 hours -'Accumulated precipitation, 1 hours' = { - table2Version = 136 ; - indicatorOfParameter = 165 ; - } -#Accumulated fresh snow, 1 hours -'Accumulated fresh snow, 1 hours' = { - table2Version = 136 ; - indicatorOfParameter = 175 ; - } -#Total ozone -'Total ozone' = { - table2Version = 136 ; - indicatorOfParameter = 206 ; - } -#Missing -'Missing' = { - table2Version = 136 ; - indicatorOfParameter = 255 ; - } -############### table2Version 137 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 137 ; - indicatorOfParameter = 0 ; - } -#Concentration of SOX, excluding seasalt, in air -'Concentration of SOX, excluding seasalt, in air' = { - table2Version = 137 ; - indicatorOfParameter = 1 ; - } -#Drydeposition of SOX, excluding seasalt, mixed gound -'Drydeposition of SOX, excluding seasalt, mixed gound' = { - table2Version = 137 ; - indicatorOfParameter = 2 ; - } -#Drydeposition of SOX, excluding seasalt, Pasture -'Drydeposition of SOX, excluding seasalt, Pasture' = { - table2Version = 137 ; - indicatorOfParameter = 3 ; - } -#Drydeposition of SOX, excluding seasalt, Arable -'Drydeposition of SOX, excluding seasalt, Arable' = { - table2Version = 137 ; - indicatorOfParameter = 4 ; - } -#Drydeposition of SOX, excluding seasalt, Beach Oak -'Drydeposition of SOX, excluding seasalt, Beach Oak' = { - table2Version = 137 ; - indicatorOfParameter = 5 ; - } -#Drydeposition of SOX, excluding seasalt, Deciduous -'Drydeposition of SOX, excluding seasalt, Deciduous' = { - table2Version = 137 ; - indicatorOfParameter = 6 ; - } -#Drydeposition of SOX, excluding seasalt, Spruce -'Drydeposition of SOX, excluding seasalt, Spruce' = { - table2Version = 137 ; - indicatorOfParameter = 7 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 10 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 11 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 12 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 13 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 14 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 15 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 16 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 17 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 20 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 21 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 22 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 23 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 24 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 25 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 26 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 27 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 30 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 31 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 32 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 33 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 34 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 35 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 36 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 37 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 40 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 41 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 42 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 43 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 44 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 45 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 46 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 47 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 50 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 51 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 52 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 53 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 54 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 55 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 56 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 57 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 60 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 61 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 62 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 63 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 64 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 65 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 66 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 67 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 70 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 71 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 72 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 73 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 74 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 75 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 76 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 77 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 100 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 101 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 102 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 103 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 104 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 105 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 106 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 107 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 110 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 111 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 112 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 113 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 114 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 115 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 116 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 117 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 120 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 121 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 122 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 123 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 124 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 125 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 126 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 127 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'Drydeposition of SOX, excluding seasalt, Pine' = { - table2Version = 137 ; - indicatorOfParameter = 130 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'Drydeposition of SOX, excluding seasalt, Wetland' = { - table2Version = 137 ; - indicatorOfParameter = 131 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'Drydeposition of SOX, excluding seasalt, Mountain' = { - table2Version = 137 ; - indicatorOfParameter = 132 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'Drydeposition of SOX, excluding seasalt, Urban' = { - table2Version = 137 ; - indicatorOfParameter = 133 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'Drydeposition of SOX, excluding seasalt, Water' = { - table2Version = 137 ; - indicatorOfParameter = 134 ; - } -#Wetdeposition of SOX, excluding seasalt -'Wetdeposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 135 ; - } -#Total deposition of SOX, excluding seasalt -'Total deposition of SOX, excluding seasalt' = { - table2Version = 137 ; - indicatorOfParameter = 136 ; - } -#Concentration of SOX in air -'Concentration of SOX in air' = { - table2Version = 137 ; - indicatorOfParameter = 137 ; - } -#Missing -'Missing' = { - table2Version = 137 ; - indicatorOfParameter = 255 ; - } -############### table2Version 140 ############ -############### Blixtlokalisering ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 140 ; - indicatorOfParameter = 0 ; - } -#Cloud to ground discharge count -'Cloud to ground discharge count' = { - table2Version = 140 ; - indicatorOfParameter = 1 ; - } -#Cloud to cloud discharge count -'Cloud to cloud discharge count' = { - table2Version = 140 ; - indicatorOfParameter = 2 ; - } -#Total discharge count -'Total discharge count' = { - table2Version = 140 ; - indicatorOfParameter = 3 ; - } -#Cloud to ground accumulated absolute peek current -'Cloud to ground accumulated absolute peek current' = { - table2Version = 140 ; - indicatorOfParameter = 4 ; - } -#Cloud to cloud accumulated absolute peek current -'Cloud to cloud accumulated absolute peek current' = { - table2Version = 140 ; - indicatorOfParameter = 5 ; - } -#Total accumulated absolute peek current -'Total accumulated absolute peek current' = { - table2Version = 140 ; - indicatorOfParameter = 6 ; - } -#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) -'Significant cloud to ground discharge count (discharges with absolute peek current above 100kA)' = { - table2Version = 140 ; - indicatorOfParameter = 7 ; - } -#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) -'Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA)' = { - table2Version = 140 ; - indicatorOfParameter = 8 ; - } -#Significant total discharge count (discharges with absolute peek current above 100kA) -'Significant total discharge count (discharges with absolute peek current above 100kA)' = { - table2Version = 140 ; - indicatorOfParameter = 9 ; - } -#Missing -'Missing' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -############### table2Version 150 ############ -############### Hirlam postpr ############ -################################################# -#Reserved -'Reserved ' = { - table2Version = 150 ; - indicatorOfParameter = 0 ; - } -#Evaporation Penman formula -'Evaporation Penman formula' = { - table2Version = 150 ; - indicatorOfParameter = 57 ; - } -#Spray weather recomendation -'Spray weather recomendation' = { - table2Version = 150 ; - indicatorOfParameter = 58 ; - } -#Missing -'Missing' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -############### table2Version 151 ############ -############### ECMWF postpr ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 151 ; - indicatorOfParameter = 0 ; - } -#Probability total precipitation between 1 and 10 mm -'Probability total precipitation between 1 and 10 mm' = { - table2Version = 151 ; - indicatorOfParameter = 1 ; - } -#Probability total precipitation between 10 and 50 mm -'Probability total precipitation between 10 and 50 mm' = { - table2Version = 151 ; - indicatorOfParameter = 2 ; - } -#Probability total precipitation more than 50 mm -'Probability total precipitation more than 50 mm' = { - table2Version = 151 ; - indicatorOfParameter = 3 ; - } -#Evaporation Penman formula -'Evaporation Penman formula' = { - table2Version = 151 ; - indicatorOfParameter = 57 ; - } -#Missing -'Missing' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -### HARMONIE tables ### -#Absolute divergence -'Absolute divergence' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Surface aerosol soot (carbon) -'Surface aerosol soot (carbon)' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'Surface aerosol desert' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Surface aerosol land -'Surface aerosol land' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol sea -'Surface aerosol sea' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Albedo -'Albedo' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Albedo of bare ground -'Albedo of bare ground ' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'Albedo of vegetation ' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#A Ozone -'A Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#Analysed RMS of PHI (CANARI) -'Analysed RMS of PHI (CANARI)' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Snow albedo -'Snow albedo' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Anisotropy coeff of topography -'Anisotropy coeff of topography ' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#B Ozone -'B Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#CAPE out of the model -'CAPE out of the model' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#Cloud base -'Cloud base' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Cloud ice water content -'Cloud ice water content' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Fraction of clay within soil -'Fraction of clay within soil ' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#C Ozone -'C Ozone' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Convective rain -'Convective rain' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Convective snowfall -'Convective snowfall' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#LW net clear sky rad -'LW net clear sky rad' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#SW net clear sky rad -'SW net clear sky rad' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#Cloud top -'Cloud top' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Cloud water -'Cloud water' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Divergence -'Divergence' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Density -'Density' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Direction of current -'Direction of current' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Downdraft mesh fraction -'Downdraft mesh fraction' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Downdraft omega -'Downdraft omega' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Direction of main axis of topography -'Direction of main axis of topography ' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Duration of total precipitation -'Duration of total precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Dominant vegetation index -'Dominant vegetation index ' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Evaporation -'Evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Gust -'Gust' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Forecast RMS of PHI (CANARI) -'Forecast RMS of PHI (CANARI)' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#Fraction of urban land -'Fraction of urban land' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Graupel -'Graupel' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Gravity wave stress U-comp -'Gravity wave stress U-comp' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'Gravity wave stress V-comp' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Hail -'Hail' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Ice cover (1=land, 0=sea) -'Ice cover (1=land, 0=sea)' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Icing index -'Icing index' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Image data -'Image data' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Leaf area index -'Leaf area index ' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Lightning -'Lightning' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; - } -#Latent heat flux through evaporation -'Latent heat flux through evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Latent Heat Sublimation -'Latent Heat Sublimation' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Large-scale snowfall -'Large-scale snowfall' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#large scale precipitation (water) -'large scale precipitation (water)' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#MOCON out of the model -'MOCON out of the model ' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Mean direction of primary swell -'Mean direction of primary swell' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Mean period of primary swell -'Mean period of primary swell' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Surface downward moon radiation -'Surface downward moon radiation' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#Mask of significant cloud amount -'Mask of significant cloud amount' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net short-wave radiationflux(atmosph.top) -'Net short-wave radiationflux(atmosph.top)' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Pressure departure -'Pressure departure' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Pressure -'Pressure' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Precipitation Type -'Precipitation Type' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'Pseudo satellite image: cloud top temperature (infrared)' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'Pseudo satellite image: cloud water reflectivity (visible)' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Pseudo satellite image: water vapour Tb -'Pseudo satellite image: water vapour Tb' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'Pseudo satellite image: water vapour Tb + correction for clouds' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Rain -'Rain' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Simulated reflectivity -'Simulated reflectivity ' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Resistance to evapotransiration -'Resistance to evapotransiration ' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'Minimum relative moisture at 2 meters' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'Maximum relative moisture at 2 meters' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Runoff -'Runoff' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Snow density -'Snow density' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Salinity -'Salinity' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Surface emissivity -'Surface emissivity ' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Snow history -'Snow history' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#Soil depth -'Soil depth' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Fraction of sand within soil -'Fraction of sand within soil ' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil Moisture -'Soil Moisture' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Stomatal minimum resistance -'Stomatal minimum resistance ' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Snow melt -'Snow melt' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Snow -'Snow' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Snow Sublimation -'Snow Sublimation' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Speed of current -'Speed of current' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#Stratiform rain -'Stratiform rain' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Surface roughness * g -'Surface roughness * g' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Standard deviation of orography * g -'Standard deviation of orography * g ' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Stream function -'Stream function' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Secondary wave period -'Secondary wave period' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Soil wetness -'Soil wetness' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Temperature -'Temperature' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#TKE -'TKE' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Total water vapour -'Total water vapour' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Total solid precipitation -'Total solid precipitation' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#U component of wind -'U component of wind' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#U-component of current -'U-component of current ' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Gust, u-component -'Gust, u-component' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#Updraft mesh fraction -'Updraft mesh fraction' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Updraft omega -'Updraft omega' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#V component of wind -'V component of wind' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#V-component of current -'V-component of current ' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Vertical Divergence -'Vertical Divergence' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Vegetation fraction -'Vegetation fraction' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Gust, v-component -'Gust, v-component' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Visibility -'Visibility' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Water on canopy (Interception content) -'Water on canopy (Interception content)' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Water on canopy (Interception content) -'Water on canopy (Interception content)' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Wind direction -'Wind direction' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Water evaporation -'Water evaporation' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Wind speed -'Wind speed' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#Water temperature -'Water temperature' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#AROME hail diagnostic -'AROME hail diagnostic' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Geopotential -'Geopotential' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Thermal roughness length * g -'Thermal roughness length * g ' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def b/eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def deleted file mode 100644 index 5c9738db..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/paramId.def +++ /dev/null @@ -1,5580 +0,0 @@ -############### table2Version 1 ############ -############### WMO/Hirlam ############ -################################################# -#Reserved -'82001000' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'82001001' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to MSL -'82001002' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'82001003' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'82001004' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'82001005' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'82001006' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'82001007' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'82001008' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'82001009' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total ozone -'82001010' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'82001011' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'82001012' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'82001013' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'82001014' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'82001015' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'82001016' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'82001017' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'82001018' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'82001019' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'82001020' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar Spectra (1) -'82001021' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar Spectra (2) -'82001022' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar Spectra (3) -'82001023' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'82001024' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'82001025' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'82001026' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'82001027' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave Spectra (1) -'82001028' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave Spectra (2) -'82001029' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave Spectra (3) -'82001030' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'82001031' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'82001032' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'82001033' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'82001034' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'82001035' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'82001036' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'82001037' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coord. vertical velocity -'82001038' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'82001039' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Geometric Vertical velocity -'82001040' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'82001041' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'82001042' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'82001043' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'82001044' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'82001045' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'82001046' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'82001047' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'82001048' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#u-component of current -'82001049' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#v-component of current -'82001050' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'82001051' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'82001052' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'82001053' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'82001054' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'82001055' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'82001056' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'82001057' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud Ice -'82001058' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'82001059' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'82001060' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'82001061' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'82001062' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'82001063' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snowfall rate water equivalent -'82001064' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equiv. of accum. snow depth -'82001065' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'82001066' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'82001067' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'82001068' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'82001069' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'82001070' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'82001071' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'82001072' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'82001073' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'82001074' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'82001075' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'82001076' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'82001077' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snow -'82001078' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snow -'82001079' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water Temperature -'82001080' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'82001081' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea level from mean -'82001082' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'82001083' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'82001084' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'82001085' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'82001086' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'82001087' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'82001088' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'82001089' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run off -'82001090' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'82001091' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'82001092' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'82001093' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'82001094' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#u-component of ice drift -'82001095' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#v-component of ice drift -'82001096' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'82001097' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'82001098' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'82001099' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Significant height of combined wind waves and swell -'82001100' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'82001101' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'82001102' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'82001103' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'82001104' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'82001105' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'82001106' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'82001107' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'82001108' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'82001109' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'82001110' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short wave radiation flux (surface) -'82001111' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long wave radiation flux (surface) -'82001112' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short wave radiation flux (top of atmos.) -'82001113' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long wave radiation flux (top of atmos.) -'82001114' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'82001115' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'82001116' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'82001117' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'82001118' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'82001119' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'82001120' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat net flux -'82001121' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat net flux -'82001122' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'82001123' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u component -'82001124' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v component -'82001125' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'82001126' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'82001127' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'82001128' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Humidity tendencies -'82001129' = { - table2Version = 1 ; - indicatorOfParameter = 129 ; - } -#Radiation at top of atmosphere -'82001130' = { - table2Version = 1 ; - indicatorOfParameter = 130 ; - } -#Cloud top temperature, infrared -'82001131' = { - table2Version = 1 ; - indicatorOfParameter = 131 ; - } -#Water vapor brightness temperature -'82001132' = { - table2Version = 1 ; - indicatorOfParameter = 132 ; - } -#Water vapor brightness temperature, correction -'82001133' = { - table2Version = 1 ; - indicatorOfParameter = 133 ; - } -#Cloud water reflectivity -'82001134' = { - table2Version = 1 ; - indicatorOfParameter = 134 ; - } -#Maximum wind -'82001135' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Minimum wind -'82001136' = { - table2Version = 1 ; - indicatorOfParameter = 136 ; - } -#Integrated cloud condensate -'82001137' = { - table2Version = 1 ; - indicatorOfParameter = 137 ; - } -#Snow depth, cold snow -'82001138' = { - table2Version = 1 ; - indicatorOfParameter = 138 ; - } -#Open land snow depth -'82001139' = { - table2Version = 1 ; - indicatorOfParameter = 139 ; - } -#Temperature over land -'82001140' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'82001141' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land -'82001142' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land -'82001143' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'82001160' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'82001161' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter RSHA -'82001162' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter RSHB -'82001163' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Momentum vegetation roughness -'82001164' = { - table2Version = 1 ; - indicatorOfParameter = 164 ; - } -#Surface slope -'82001165' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'82001166' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'82001167' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Heat roughness -'82001168' = { - table2Version = 1 ; - indicatorOfParameter = 168 ; - } -#Albedo with solar angle correction -'82001169' = { - table2Version = 1 ; - indicatorOfParameter = 169 ; - } -#Soil wetness index -'82001189' = { - table2Version = 1 ; - indicatorOfParameter = 189 ; - } -#Snow albedo -'82001190' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'82001191' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'82001192' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'82001193' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Fraction of surface type -'82001194' = { - table2Version = 1 ; - indicatorOfParameter = 194 ; - } -#Soil type -'82001195' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'82001196' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'82001197' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'82001198' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'82001199' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'82001200' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Standard deviation of mesoscale orography -'82001204' = { - table2Version = 1 ; - indicatorOfParameter = 204 ; - } -#Anisotrophic mesoscale orography -'82001205' = { - table2Version = 1 ; - indicatorOfParameter = 205 ; - } -#X-angle of mesoscale orography -'82001206' = { - table2Version = 1 ; - indicatorOfParameter = 206 ; - } -#Maximum slope of smallest scale orography -'82001208' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'82001209' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Ice existence -'82001210' = { - table2Version = 1 ; - indicatorOfParameter = 210 ; - } -#Lifting condensation level -'82001222' = { - table2Version = 1 ; - indicatorOfParameter = 222 ; - } -#Level of neutral buoyancy -'82001223' = { - table2Version = 1 ; - indicatorOfParameter = 223 ; - } -#Convective inhibation -'82001224' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } -#CAPE -'82001225' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Precipitation type -'82001226' = { - table2Version = 1 ; - indicatorOfParameter = 226 ; - } -#Friction velocity -'82001227' = { - table2Version = 1 ; - indicatorOfParameter = 227 ; - } -#Wind gust -'82001228' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Analysed 3-hour precipitation (-3h/0h) -'82001250' = { - table2Version = 1 ; - indicatorOfParameter = 250 ; - } -#Analysed 12-hour precipitation (-12h/0h) -'82001251' = { - table2Version = 1 ; - indicatorOfParameter = 251 ; - } -#Missing -'82001255' = { - table2Version = 1 ; - indicatorOfParameter = 255 ; - } -############### table2Version 128 ############ -############### Match ############ -################################################# -#Reserved -'82128000' = { - table2Version = 128 ; - indicatorOfParameter = 0 ; - } -# SO2/SO2 -'82128001' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'82128002' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -# DMS/DMS -'82128003' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -# MSA/MSA -'82128004' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -# H2S/H2S -'82128005' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -# NH4SO4/(NH4)1.5H0.5SO4 -'82128006' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -# NH4HSO4/NH4HSO4 -'82128007' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -# NH42SO4/(NH4)2SO4 -'82128008' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -# SULFATE/SULFATE -'82128009' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -# SO2_AQ/SO2 in aqueous phase -'82128010' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -# SO4_AQ/sulfate in aqueous phase -'82128011' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -# LRT_SO2_S/long-range SO2_S -'82128023' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -# LRT_SO4_S/LRT-contriubtion to SO4_S -'82128024' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -# LRT_SOX_S/LRT-contriubtion to SO4_S -'82128025' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -# XSOX_S/excess SOX (corrected for sea salt as sulfur) -'82128026' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -# SO2_S/SO2 (as sulphur) -'82128027' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -# SO4_S/SO4 (as sulphur) -'82128028' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'82128029' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -# NO -'82128030' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -# NO2/NO2 -'82128031' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -# HNO3/HNO3 -'82128032' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -# NO3(-1)/NO3(-1) (nitrate) -'82128033' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -# NH4NO3/NH4NO3 -'82128034' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -# NITRATE/NITRATE -'82128035' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -# PNO3/(COARSE) NITRATE -'82128036' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -# LRT_NOY_N/long-range NOY_N -'82128037' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -# NO3_N/NO3 as N -'82128038' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -# HNO3_N/HNO3 as N -'82128039' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -# LRT_NO3_N/long-range NO3_N -'82128040' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -# LRT_HNO3_N/long-range HNO3_N -'82128041' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -# LRT_NO2_N/long-range NO2_N -'82128042' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -# LRT_NOZ_N/long-range NOZ_N -'82128043' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -# NOX/NOX as NO2 -'82128044' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -# NO_N/NO as N -'82128045' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -# NO2_N/NO2 as N -'82128046' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'82128047' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'82128048' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -# NOZ_N/NOy-NOx (as nitrogen) -'82128049' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -# NH3/NH3 -'82128050' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -# NH4(+1)/NH4 -'82128051' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -# AMMONIUM/AMMONIUM -'82128052' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -# NH3_N/NH3 (as nitrogen) -'82128054' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -# NH4_N/NH4 (as nitrogen) -'82128055' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -# LRT_NH3_N/long-range NH3_N -'82128056' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -# LRT_NH4_N/long-range NH4_N -'82128057' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -# LRT_NHX_N/long-range NHX_N -'82128058' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'82128059' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -# O3 -'82128060' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -# H2O2/H2O2 -'82128061' = { - table2Version = 128 ; - indicatorOfParameter = 61 ; - } -# OH/OH -'82128062' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -# O3_AQ/O3 in aqueous phase -'82128063' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -# H2O2_AQ/H2O2 in aqueous phase -'82128064' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -# OX/Ox=O3+NO2 -'82128065' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -# C -'82128070' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -# CO/CO -'82128071' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -# CO2/CO2 -'82128072' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -# CH4/CH4 -'82128073' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -# OC/Organic carbon (particles) -'82128074' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -# EC/Elementary carbon (particles) -'82128075' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -# CF6 -'82128080' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -# PMCH/PMCH -'82128081' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -# PMCP/PMCP -'82128082' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -# TRACER/Tracer -'82128083' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -# Inert/Inert -'82128084' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -# H3 -'82128085' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -# Ar41/Ar41 -'82128086' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -# Kr85/Kr85 -'82128087' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -# Kr88/Kr88 -'82128088' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -# Xe131/Xe131 -'82128091' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -# Xe133/Xe133 -'82128092' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -# Rn222/Rn222 -'82128093' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -# I131/I131 -'82128095' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -# I132/I132 -'82128096' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -# I133/I133 -'82128097' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -# I135/I135 -'82128098' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -# Sr90 -'82128100' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -# Co60/Co60 -'82128101' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -# Ru103/Ru103 -'82128102' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -# Ru106/Ru106 -'82128103' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -# Cs134/Cs134 -'82128104' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -# Cs137/Cs137 -'82128105' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -# Ra223/Ra123 -'82128106' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -# Ra228/Ra228 -'82128108' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -# Zr95 -'82128110' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -# Nb95/Nb95 -'82128111' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -# Ce144/Ce144 -'82128112' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -# Np238/Np238 -'82128113' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -# Np239/Np239 -'82128114' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -# Pu241/Pu241 -'82128115' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -# Pb210/Pb210 -'82128116' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -# ALL -'82128119' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -# NACL -'82128120' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -# SODIUM/Na+ -'82128121' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -# MAGNESIUM/Mg++ -'82128122' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -# POTASSIUM/K+ -'82128123' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -# CALCIUM/Ca++ -'82128124' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -# XMG/excess Mg++ (corrected for sea salt) -'82128125' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -# XK/excess K+ (corrected for sea salt) -'82128126' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -# XCA/excess Ca++ (corrected for sea salt) -'82128128' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -# Cl2/Cloride -'82128140' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -# PMFINE -'82128160' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -# PMCOARSE/Coarse particles -'82128161' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -# DUST/Dust (particles) -'82128162' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -# PNUMBER/Number concentration -'82128163' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -# PRADIUS/Particle radius -'82128164' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -# PSURFACE/Particle surface conc -'82128165' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -# PMASS/Particle mass conc -'82128166' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -# PM10/PM10 particles -'82128167' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -# PSOX/Particulate sulfate -'82128168' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -# PNOX/Particulate nitrate -'82128169' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -# PNHX/Particulate ammonium -'82128170' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -# PPMFINE/Primary emitted fine particles -'82128171' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -# PPM10/Primary emitted particles -'82128172' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -# SOA/Secondary Organic Aerosol -'82128173' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -# PM2.5/PM2.5 particles -'82128174' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -# PM/Total particulate matter -'82128175' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -# BIRCH_POLLEN/Birch pollen -'82128180' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -# KZ -'82128200' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -# L/Monin-Obukhovs length [m] -'82128201' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -# U*/Friction velocity [m/s] -'82128202' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -# W*/Convective velocity scale [m/s] -'82128203' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -# Z-D/Z0 minus displacement length [m] -'82128204' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -# SURFTYPE/Surface type (see link{OCTET45}) -'82128210' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -# LAI/Leaf area index -'82128211' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -# SOILTYPE/Soil type -'82128212' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -# SSALB/Single scattering albodo [1] -'82128213' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -# ASYMPAR/Asymmetry parameter -'82128214' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -# VIS/Visibility [m] -'82128215' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -# EXT/Extinction [1/m] -'82128216' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -# BSCA/Backscattering coeff [1/m/sr] -'82128217' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -# AOD/Aerosol opt depth [1] -'82128218' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -# DAOD/AOD per layer [1] -'82128219' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -# CONV_TIED -'82128220' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -# CONV_BOT/Convective cloud bottom (unit?) -'82128221' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -# CONV_TOP/Convective cloud top (unit?) -'82128222' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -# DXDY/Gridsize [m2] -'82128223' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -# EMIS/Sectoral emissions -'82128240' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -# LONG/Longitude -'82128241' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -# LAT/Latitude -'82128242' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Missing -'82128255' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -############### table2Version 129 ############ -############### Mesan ############ -################################################# -#Reserved -'82129000' = { - table2Version = 129 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'82129001' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Temperature -'82129011' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#Wet bulb temperature -'82129012' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#24 hour mean of 2 meter temperature -'82129013' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#Maximum temperature -'82129015' = { - table2Version = 129 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'82129016' = { - table2Version = 129 ; - indicatorOfParameter = 16 ; - } -#Visibility -'82129020' = { - table2Version = 129 ; - indicatorOfParameter = 20 ; - } -#Wind gusts -'82129032' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'82129033' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'82129034' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'82129052' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Total cloud cover -'82129071' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'82129073' = { - table2Version = 129 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'82129074' = { - table2Version = 129 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'82129075' = { - table2Version = 129 ; - indicatorOfParameter = 75 ; - } -#Fraction of significant clouds -'82129077' = { - table2Version = 129 ; - indicatorOfParameter = 77 ; - } -#Cloud base of significant clouds -'82129078' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Cloud top of significant clouds -'82129079' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Type of precipitation -'82129145' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Sort of precipitation -'82129146' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#6 hour precipitation -'82129161' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#12 hour precipitation -'82129162' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#18 hour precipitation -'82129163' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#24 hour precipitation -'82129164' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#1 hour precipitation -'82129165' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#2 hour precipitation -'82129166' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#3 hour precipitation -'82129167' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#9 hour precipitation -'82129168' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#15 hour precipitation -'82129169' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#6 hour fresh snow cover -'82129171' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#12 hour fresh snow cover -'82129172' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#18 hour fresh snow cover -'82129173' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#24 hour fresh snow cover -'82129174' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#1 hour fresh snow cover -'82129175' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#2 hour fresh snow cover -'82129176' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#3 hour fresh snow cover -'82129177' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#9 hour fresh snow cover -'82129178' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#15 hour fresh snow cover -'82129179' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#6 hour precipitation, corrected -'82129181' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#12 hour precipitation, corrected -'82129182' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#18 hour precipitation, corrected -'82129183' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#24 hour precipitation, corrected -'82129184' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#1 hour precipitation, corrected -'82129185' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#2 hour precipitation, corrected -'82129186' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#3 hour precipitation, corrected -'82129187' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#9 hour precipitation, corrected -'82129188' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#15 hour precipitation, corrected -'82129189' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#6 hour fresh snow cover, corrected -'82129191' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#12 hour fresh snow cover, corrected -'82129192' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#18 hour fresh snow cover, corrected -'82129193' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#24 hour fresh snow cover, corrected -'82129194' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#1 hour fresh snow cover, corrected -'82129195' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#2 hour fresh snow cover, corrected -'82129196' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#3 hour fresh snow cover, corrected -'82129197' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#9 hour fresh snow cover, corrected -'82129198' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#15 hour fresh snow cover, corrected -'82129199' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#6 hour precipitation, standardized -'82129201' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#12 hour precipitation, standardized -'82129202' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#18 hour precipitation, standardized -'82129203' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#24 hour precipitation, standardized -'82129204' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#1 hour precipitation, standardized -'82129205' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#2 hour precipitation, standardized -'82129206' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#3 hour precipitation, standardized -'82129207' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#9 hour precipitation, standardized -'82129208' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#15 hour precipitation, standardized -'82129209' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#6 hour fresh snow cover, standardized -'82129211' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#12 hour fresh snow cover, standardized -'82129212' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#18 hour fresh snow cover, standardized -'82129213' = { - table2Version = 129 ; - indicatorOfParameter = 213 ; - } -#24 hour fresh snow cover, standardized -'82129214' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#1 hour fresh snow cover, standardized -'82129215' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#2 hour fresh snow cover, standardized -'82129216' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#3 hour fresh snow cover, standardized -'82129217' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#9 hour fresh snow cover, standardized -'82129218' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#15 hour fresh snow cover, standardized -'82129219' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#6 hour precipitation, corrected and standardized -'82129221' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#12 hour precipitation, corrected and standardized -'82129222' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#18 hour precipitation, corrected and standardized -'82129223' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#24 hour precipitation, corrected and standardized -'82129224' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#1 hour precipitation, corrected and standardized -'82129225' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#2 hour precipitation, corrected and standardized -'82129226' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#3 hour precipitation, corrected and standardized -'82129227' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#9 hour precipitation, corrected and standardized -'82129228' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#15 hour precipitation, corrected and standardized -'82129229' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#6 hour fresh snow cover, corrected and standardized -'82129231' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#12 hour fresh snow cover, corrected and standardized -'82129232' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#18 hour fresh snow cover, corrected and standardized -'82129233' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#24 hour fresh snow cover, corrected and standardized -'82129234' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#1 hour fresh snow cover, corrected and standardized -'82129235' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#2 hour fresh snow cover, corrected and standardized -'82129236' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#3 hour fresh snow cover, corrected and standardized -'82129237' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#9 hour fresh snow cover, corrected and standardized -'82129238' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#15 hour fresh snow cover, corrected and standardized -'82129239' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Missing -'82129255' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -############### table2Version 130 ############ -############### PMP ############ -################################################# -#Reserved -'82130000' = { - table2Version = 130 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'82130001' = { - table2Version = 130 ; - indicatorOfParameter = 1 ; - } -#Temperature -'82130011' = { - table2Version = 130 ; - indicatorOfParameter = 11 ; - } -#Visibility -'82130020' = { - table2Version = 130 ; - indicatorOfParameter = 20 ; - } -#u-component of wind -'82130033' = { - table2Version = 130 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'82130034' = { - table2Version = 130 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'82130052' = { - table2Version = 130 ; - indicatorOfParameter = 52 ; - } -#Probability of frozen rain -'82130058' = { - table2Version = 130 ; - indicatorOfParameter = 58 ; - } -#Probability thunderstorm -'82130060' = { - table2Version = 130 ; - indicatorOfParameter = 60 ; - } -#Total_precipitation -'82130061' = { - table2Version = 130 ; - indicatorOfParameter = 61 ; - } -#Water_equiv._of_snow_depth -'82130065' = { - table2Version = 130 ; - indicatorOfParameter = 65 ; - } -#Area_time_min_totalcloudcover -'82130067' = { - table2Version = 130 ; - indicatorOfParameter = 67 ; - } -#Area_time_max_totalcloudcover -'82130068' = { - table2Version = 130 ; - indicatorOfParameter = 68 ; - } -#Area_time_median_totalcloudcover -'82130069' = { - table2Version = 130 ; - indicatorOfParameter = 69 ; - } -#Area_time_mean_totalcloudcover -'82130070' = { - table2Version = 130 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'82130071' = { - table2Version = 130 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'82130072' = { - table2Version = 130 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'82130073' = { - table2Version = 130 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'82130074' = { - table2Version = 130 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'82130075' = { - table2Version = 130 ; - indicatorOfParameter = 75 ; - } -#cloud mask -'82130077' = { - table2Version = 130 ; - indicatorOfParameter = 77 ; - } -#Index 2m maxtemperatur over 3 dygn -'82130100' = { - table2Version = 130 ; - indicatorOfParameter = 100 ; - } -#EPS T mean -'82130110' = { - table2Version = 130 ; - indicatorOfParameter = 110 ; - } -#EPS T standard deviation -'82130111' = { - table2Version = 130 ; - indicatorOfParameter = 111 ; - } -#Maximum wind (mean 10 min) -'82130130' = { - table2Version = 130 ; - indicatorOfParameter = 130 ; - } -#Wind gust -'82130131' = { - table2Version = 130 ; - indicatorOfParameter = 131 ; - } -#Cloud base (significant) -'82130135' = { - table2Version = 130 ; - indicatorOfParameter = 135 ; - } -#Cloud top (significant) -'82130136' = { - table2Version = 130 ; - indicatorOfParameter = 136 ; - } -#Omradesnederbord gridpunkts-min -'82130137' = { - table2Version = 130 ; - indicatorOfParameter = 137 ; - } -#Omradesnederbord gridpunkts-max -'82130138' = { - table2Version = 130 ; - indicatorOfParameter = 138 ; - } -#Omradesnederbord gridpunkts-medel -'82130139' = { - table2Version = 130 ; - indicatorOfParameter = 139 ; - } -#Precipitation intensity total -'82130140' = { - table2Version = 130 ; - indicatorOfParameter = 140 ; - } -#Precipitation intensity snow -'82130141' = { - table2Version = 130 ; - indicatorOfParameter = 141 ; - } -#Area_time_min_precipitation -'82130142' = { - table2Version = 130 ; - indicatorOfParameter = 142 ; - } -#Area_time_max_precipitation -'82130143' = { - table2Version = 130 ; - indicatorOfParameter = 143 ; - } -#Precipitation type, conv 0, large scale 1, no prec -9 -'82130145' = { - table2Version = 130 ; - indicatorOfParameter = 145 ; - } -#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle -'82130146' = { - table2Version = 130 ; - indicatorOfParameter = 146 ; - } -#Vadersymbol -'82130147' = { - table2Version = 130 ; - indicatorOfParameter = 147 ; - } -#Area_time_mean_precipitation -'82130148' = { - table2Version = 130 ; - indicatorOfParameter = 148 ; - } -#Area_time_median_precipitation -'82130149' = { - table2Version = 130 ; - indicatorOfParameter = 149 ; - } -#Missing -'82130255' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -############### table2Version 131 ############ -############### RCA ############ -################################################# -#Reserved -'82131000' = { - table2Version = 131 ; - indicatorOfParameter = 0 ; - } -#Sea surface temperature (LAKE) -'82131011' = { - table2Version = 131 ; - indicatorOfParameter = 11 ; - } -#Current east -'82131049' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Current north -'82131050' = { - table2Version = 131 ; - indicatorOfParameter = 50 ; - } -#Snowdepth in Probe -'82131066' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Ice concentration (LAKE) -'82131091' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Ice thickness Probe-lake -'82131092' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Temperature ABC-lake -'82131150' = { - table2Version = 131 ; - indicatorOfParameter = 150 ; - } -#Temperature C-lake -'82131151' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Temperature D-lake -'82131152' = { - table2Version = 131 ; - indicatorOfParameter = 152 ; - } -#Temperature E-lake -'82131153' = { - table2Version = 131 ; - indicatorOfParameter = 153 ; - } -#Area ABC-lake -'82131160' = { - table2Version = 131 ; - indicatorOfParameter = 160 ; - } -#Depth ABC-lake -'82131161' = { - table2Version = 131 ; - indicatorOfParameter = 161 ; - } -#C-lakes -'82131162' = { - table2Version = 131 ; - indicatorOfParameter = 162 ; - } -#D-lakes -'82131163' = { - table2Version = 131 ; - indicatorOfParameter = 163 ; - } -#E-lakes -'82131164' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#Ice thickness ABC-lake -'82131170' = { - table2Version = 131 ; - indicatorOfParameter = 170 ; - } -#Ice thickness C-lake -'82131171' = { - table2Version = 131 ; - indicatorOfParameter = 171 ; - } -#Ice thickness D-lake -'82131172' = { - table2Version = 131 ; - indicatorOfParameter = 172 ; - } -#Ice thickness E-lake -'82131173' = { - table2Version = 131 ; - indicatorOfParameter = 173 ; - } -#Sea surface temperature (T) -'82131180' = { - table2Version = 131 ; - indicatorOfParameter = 180 ; - } -#Ice concentration (I) -'82131183' = { - table2Version = 131 ; - indicatorOfParameter = 183 ; - } -#Fraction lake -'82131196' = { - table2Version = 131 ; - indicatorOfParameter = 196 ; - } -#Black ice thickness in Probe -'82131241' = { - table2Version = 131 ; - indicatorOfParameter = 241 ; - } -#Vallad istjocklek i Probe -'82131244' = { - table2Version = 131 ; - indicatorOfParameter = 244 ; - } -#Internal ice concentration in Probe -'82131245' = { - table2Version = 131 ; - indicatorOfParameter = 245 ; - } -#Isfrontlaege i Probe -'82131246' = { - table2Version = 131 ; - indicatorOfParameter = 246 ; - } -#Heat in Probe -'82131250' = { - table2Version = 131 ; - indicatorOfParameter = 250 ; - } -#Turbulent Kintetic Energy -'82131251' = { - table2Version = 131 ; - indicatorOfParameter = 251 ; - } -#Dissipation rate Turbulent Kinetic Energy -'82131252' = { - table2Version = 131 ; - indicatorOfParameter = 252 ; - } -#Missing -'82131255' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -############### table2Version 133 ############ -############### Hiromb ############ -################################################# -#Reserved -'82133000' = { - table2Version = 133 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'82133001' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#Temperature -'82133011' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Potential temperature -'82133013' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Wave spectra (1) -'82133028' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'82133029' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'82133030' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'82133031' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'82133032' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#U-component of Wind -'82133033' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#V-component of Wind -'82133034' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Stream function -'82133035' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'82133036' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'82133037' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'82133038' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Z-component of velocity (pressure) -'82133039' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Z-component of velocity (geometric) -'82133040' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'82133041' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'82133042' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'82133043' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'82133044' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'82133045' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'82133046' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Direction of horizontal current -'82133047' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Speed of horizontal current -'82133048' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#U-comp of Current -'82133049' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#V-comp of Current -'82133050' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'82133051' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snow Depth -'82133066' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'82133067' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'82133068' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'82133069' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'82133070' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#Total Cloud Cover -'82133071' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#Water temperature -'82133080' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea level from mean -'82133082' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Salinity -'82133088' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Density -'82133089' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Ice Cover -'82133091' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Total ice thickness -'82133092' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'82133093' = { - table2Version = 133 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'82133094' = { - table2Version = 133 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'82133095' = { - table2Version = 133 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'82133096' = { - table2Version = 133 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'82133097' = { - table2Version = 133 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'82133098' = { - table2Version = 133 ; - indicatorOfParameter = 98 ; - } -#Significant wave height -'82133100' = { - table2Version = 133 ; - indicatorOfParameter = 100 ; - } -#Direction of Wind Waves -'82133101' = { - table2Version = 133 ; - indicatorOfParameter = 101 ; - } -#Sign Height Wind Waves -'82133102' = { - table2Version = 133 ; - indicatorOfParameter = 102 ; - } -#Mean Period Wind Waves -'82133103' = { - table2Version = 133 ; - indicatorOfParameter = 103 ; - } -#Direction of Swell Waves -'82133104' = { - table2Version = 133 ; - indicatorOfParameter = 104 ; - } -#Sign Height Swell Waves -'82133105' = { - table2Version = 133 ; - indicatorOfParameter = 105 ; - } -#Mean Period Swell Waves -'82133106' = { - table2Version = 133 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'82133107' = { - table2Version = 133 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'82133108' = { - table2Version = 133 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'82133109' = { - table2Version = 133 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'82133110' = { - table2Version = 133 ; - indicatorOfParameter = 110 ; - } -#Mean period of waves -'82133111' = { - table2Version = 133 ; - indicatorOfParameter = 111 ; - } -#Mean direction of Waves -'82133112' = { - table2Version = 133 ; - indicatorOfParameter = 112 ; - } -#Peak period of 1D spectra -'82133113' = { - table2Version = 133 ; - indicatorOfParameter = 113 ; - } -#Skin velocity, x-comp. -'82133130' = { - table2Version = 133 ; - indicatorOfParameter = 130 ; - } -#Skin velocity, y-comp. -'82133131' = { - table2Version = 133 ; - indicatorOfParameter = 131 ; - } -#Nitrate -'82133151' = { - table2Version = 133 ; - indicatorOfParameter = 151 ; - } -#Ammonium -'82133152' = { - table2Version = 133 ; - indicatorOfParameter = 152 ; - } -#Phosphate -'82133153' = { - table2Version = 133 ; - indicatorOfParameter = 153 ; - } -#Oxygen -'82133154' = { - table2Version = 133 ; - indicatorOfParameter = 154 ; - } -#Phytoplankton -'82133155' = { - table2Version = 133 ; - indicatorOfParameter = 155 ; - } -#Zooplankton -'82133156' = { - table2Version = 133 ; - indicatorOfParameter = 156 ; - } -#Detritus -'82133157' = { - table2Version = 133 ; - indicatorOfParameter = 157 ; - } -#Bentos nitrogen -'82133158' = { - table2Version = 133 ; - indicatorOfParameter = 158 ; - } -#Bentos phosphorus -'82133159' = { - table2Version = 133 ; - indicatorOfParameter = 159 ; - } -#Silicate -'82133160' = { - table2Version = 133 ; - indicatorOfParameter = 160 ; - } -#Biogenic silica -'82133161' = { - table2Version = 133 ; - indicatorOfParameter = 161 ; - } -#Light in water column -'82133162' = { - table2Version = 133 ; - indicatorOfParameter = 162 ; - } -#Inorganic suspended matter -'82133163' = { - table2Version = 133 ; - indicatorOfParameter = 163 ; - } -#Diatomes (algae) -'82133164' = { - table2Version = 133 ; - indicatorOfParameter = 164 ; - } -#Flagellates (algae) -'82133165' = { - table2Version = 133 ; - indicatorOfParameter = 165 ; - } -#Nitrate (aggregated) -'82133166' = { - table2Version = 133 ; - indicatorOfParameter = 166 ; - } -#Turbulent Kinetic Energy -'82133200' = { - table2Version = 133 ; - indicatorOfParameter = 200 ; - } -#Dissipation rate of TKE -'82133201' = { - table2Version = 133 ; - indicatorOfParameter = 201 ; - } -#Eddy viscosity -'82133202' = { - table2Version = 133 ; - indicatorOfParameter = 202 ; - } -#Eddy diffusivity -'82133203' = { - table2Version = 133 ; - indicatorOfParameter = 203 ; - } -# Level ice thickness -'82133220' = { - table2Version = 133 ; - indicatorOfParameter = 220 ; - } -#Ridged ice thickness -'82133221' = { - table2Version = 133 ; - indicatorOfParameter = 221 ; - } -#Ice ridge height -'82133222' = { - table2Version = 133 ; - indicatorOfParameter = 222 ; - } -#Ice ridge density -'82133223' = { - table2Version = 133 ; - indicatorOfParameter = 223 ; - } -#U-mean (prev. timestep) -'82133231' = { - table2Version = 133 ; - indicatorOfParameter = 231 ; - } -#V-mean (prev. timestep) -'82133232' = { - table2Version = 133 ; - indicatorOfParameter = 232 ; - } -#W-mean (prev. timestep) -'82133233' = { - table2Version = 133 ; - indicatorOfParameter = 233 ; - } -#Snow temperature -'82133239' = { - table2Version = 133 ; - indicatorOfParameter = 239 ; - } -#Total depth in meters -'82133243' = { - table2Version = 133 ; - indicatorOfParameter = 243 ; - } -#Missing -'82133255' = { - table2Version = 133 ; - indicatorOfParameter = 255 ; - } -############### table2Version 134 ############ -############### Match ############ -################################################# -#Reserved -'82134000' = { - table2Version = 134 ; - indicatorOfParameter = 0 ; - } -#C2H6/Ethane -'82134001' = { - table2Version = 134 ; - indicatorOfParameter = 1 ; - } -#NC4H10/N-butane -'82134002' = { - table2Version = 134 ; - indicatorOfParameter = 2 ; - } -#C2H4/Ethene -'82134003' = { - table2Version = 134 ; - indicatorOfParameter = 3 ; - } -#C3H6/Propene -'82134004' = { - table2Version = 134 ; - indicatorOfParameter = 4 ; - } -#OXYLENE/O-xylene -'82134005' = { - table2Version = 134 ; - indicatorOfParameter = 5 ; - } -#HCHO/Formalydehyde -'82134006' = { - table2Version = 134 ; - indicatorOfParameter = 6 ; - } -#CH3CHO/Acetaldehyde -'82134007' = { - table2Version = 134 ; - indicatorOfParameter = 7 ; - } -#CH3COC2H5/Ethyl methyl keton -'82134008' = { - table2Version = 134 ; - indicatorOfParameter = 8 ; - } -#MGLYOX/Methyl-glyoxal (CH3COCHO) -'82134009' = { - table2Version = 134 ; - indicatorOfParameter = 9 ; - } -#GLYOX/Glyoxal (HCOCHO) -'82134010' = { - table2Version = 134 ; - indicatorOfParameter = 10 ; - } -#C5H8/Isoprene -'82134011' = { - table2Version = 134 ; - indicatorOfParameter = 11 ; - } -#C2H5OH/Ethanol -'82134012' = { - table2Version = 134 ; - indicatorOfParameter = 12 ; - } -#CH3OH/Metanol -'82134013' = { - table2Version = 134 ; - indicatorOfParameter = 13 ; - } -#HCOOH/Formic acid -'82134014' = { - table2Version = 134 ; - indicatorOfParameter = 14 ; - } -#CH3COOH/Acetic acid -'82134015' = { - table2Version = 134 ; - indicatorOfParameter = 15 ; - } -#NMVOC_C/Total NMVOC as C -'82134019' = { - table2Version = 134 ; - indicatorOfParameter = 19 ; - } -#Reserved -'82134020' = { - table2Version = 134 ; - indicatorOfParameter = 20 ; - } -#PAN/Peroxy acetyl nitrate -'82134021' = { - table2Version = 134 ; - indicatorOfParameter = 21 ; - } -#NO3/Nitrate radical -'82134022' = { - table2Version = 134 ; - indicatorOfParameter = 22 ; - } -#N2O5/Dinitrogen pentoxide -'82134023' = { - table2Version = 134 ; - indicatorOfParameter = 23 ; - } -#ONIT/Organic nitrate -'82134024' = { - table2Version = 134 ; - indicatorOfParameter = 24 ; - } -#ISONRO2/Isoprene-NO3 adduct -'82134025' = { - table2Version = 134 ; - indicatorOfParameter = 25 ; - } -#HO2NO2/HO2NO2 -'82134026' = { - table2Version = 134 ; - indicatorOfParameter = 26 ; - } -#MPAN -'82134027' = { - table2Version = 134 ; - indicatorOfParameter = 27 ; - } -#ISONO3H -'82134028' = { - table2Version = 134 ; - indicatorOfParameter = 28 ; - } -#HONO -'82134029' = { - table2Version = 134 ; - indicatorOfParameter = 29 ; - } -#Reserved -'82134030' = { - table2Version = 134 ; - indicatorOfParameter = 30 ; - } -#HO2/Hydroperhydroxyl radical -'82134031' = { - table2Version = 134 ; - indicatorOfParameter = 31 ; - } -#H2/Molecular hydrogen -'82134032' = { - table2Version = 134 ; - indicatorOfParameter = 32 ; - } -#O/Oxygen atomic ground state (3P) -'82134033' = { - table2Version = 134 ; - indicatorOfParameter = 33 ; - } -#O1D/Oxygen atomic first singlet state -'82134034' = { - table2Version = 134 ; - indicatorOfParameter = 34 ; - } -#Reserved -'82134040' = { - table2Version = 134 ; - indicatorOfParameter = 40 ; - } -#CH3O2/Methyl peroxy radical -'82134041' = { - table2Version = 134 ; - indicatorOfParameter = 41 ; - } -#CH3O2H/Methyl hydroperoxide -'82134042' = { - table2Version = 134 ; - indicatorOfParameter = 42 ; - } -#C2H5O2/Ethyl peroxy radical -'82134043' = { - table2Version = 134 ; - indicatorOfParameter = 43 ; - } -#CH3COO2/Peroxy acetyl radical -'82134044' = { - table2Version = 134 ; - indicatorOfParameter = 44 ; - } -#SECC4H9O2/Buthyl peroxy radical -'82134045' = { - table2Version = 134 ; - indicatorOfParameter = 45 ; - } -#CH3COCHO2CH3/peroxy radical from MEK -'82134046' = { - table2Version = 134 ; - indicatorOfParameter = 46 ; - } -#ACETOL/acetol (hydroxy acetone) -'82134047' = { - table2Version = 134 ; - indicatorOfParameter = 47 ; - } -#CH2O2CH2OH -'82134048' = { - table2Version = 134 ; - indicatorOfParameter = 48 ; - } -#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH -'82134049' = { - table2Version = 134 ; - indicatorOfParameter = 49 ; - } -#MAL/CH3COCH=CHCHO -'82134050' = { - table2Version = 134 ; - indicatorOfParameter = 50 ; - } -#MALO2/Peroxy radical from MAL + oh -'82134051' = { - table2Version = 134 ; - indicatorOfParameter = 51 ; - } -#ISRO2/Peroxy radical from isoprene + oh -'82134052' = { - table2Version = 134 ; - indicatorOfParameter = 52 ; - } -#ISOPROD/Peroxy radical from ISOPROD -'82134053' = { - table2Version = 134 ; - indicatorOfParameter = 53 ; - } -#C2H5OOH/Ethyl hydroperoxide -'82134054' = { - table2Version = 134 ; - indicatorOfParameter = 54 ; - } -#CH3COO2H -'82134055' = { - table2Version = 134 ; - indicatorOfParameter = 55 ; - } -#OXYO2H/Hydroperoxide from OXYO2 -'82134056' = { - table2Version = 134 ; - indicatorOfParameter = 56 ; - } -#SECC4H9O2H/Buthyl hydroperoxide -'82134057' = { - table2Version = 134 ; - indicatorOfParameter = 57 ; - } -#CH2OOHCH2OH -'82134058' = { - table2Version = 134 ; - indicatorOfParameter = 58 ; - } -#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 -'82134059' = { - table2Version = 134 ; - indicatorOfParameter = 59 ; - } -#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 -'82134060' = { - table2Version = 134 ; - indicatorOfParameter = 60 ; - } -#MALO2H/Hydroperoxide from MALO2 + ho2 -'82134061' = { - table2Version = 134 ; - indicatorOfParameter = 61 ; - } -#IPRO2 -'82134062' = { - table2Version = 134 ; - indicatorOfParameter = 62 ; - } -#XO2 -'82134063' = { - table2Version = 134 ; - indicatorOfParameter = 63 ; - } -#OXYO2/Peroxy radical from o-xylene + oh -'82134064' = { - table2Version = 134 ; - indicatorOfParameter = 64 ; - } -#ISRO2H -'82134065' = { - table2Version = 134 ; - indicatorOfParameter = 65 ; - } -#MVK -'82134066' = { - table2Version = 134 ; - indicatorOfParameter = 66 ; - } -#MVKO2 -'82134067' = { - table2Version = 134 ; - indicatorOfParameter = 67 ; - } -#MVKO2H -'82134068' = { - table2Version = 134 ; - indicatorOfParameter = 68 ; - } -#BENZENE -'82134070' = { - table2Version = 134 ; - indicatorOfParameter = 70 ; - } -#ISNI -'82134074' = { - table2Version = 134 ; - indicatorOfParameter = 74 ; - } -#ISNIR -'82134075' = { - table2Version = 134 ; - indicatorOfParameter = 75 ; - } -#ISNIRH -'82134076' = { - table2Version = 134 ; - indicatorOfParameter = 76 ; - } -#MACR -'82134077' = { - table2Version = 134 ; - indicatorOfParameter = 77 ; - } -#AOH1 -'82134078' = { - table2Version = 134 ; - indicatorOfParameter = 78 ; - } -#AOH1H -'82134079' = { - table2Version = 134 ; - indicatorOfParameter = 79 ; - } -#MACRO2 -'82134080' = { - table2Version = 134 ; - indicatorOfParameter = 80 ; - } -#MACO3H -'82134081' = { - table2Version = 134 ; - indicatorOfParameter = 81 ; - } -#MACOOH -'82134082' = { - table2Version = 134 ; - indicatorOfParameter = 82 ; - } -#CH2CCH3 -'82134083' = { - table2Version = 134 ; - indicatorOfParameter = 83 ; - } -#CH2CO2HCH3 -'82134084' = { - table2Version = 134 ; - indicatorOfParameter = 84 ; - } -#BIGENE -'82134090' = { - table2Version = 134 ; - indicatorOfParameter = 90 ; - } -#BIGALK -'82134091' = { - table2Version = 134 ; - indicatorOfParameter = 91 ; - } -#TOLUENE -'82134092' = { - table2Version = 134 ; - indicatorOfParameter = 92 ; - } -#CH2CHCN -'82134100' = { - table2Version = 134 ; - indicatorOfParameter = 100 ; - } -#(CH3)2NNH2/Dimetylhydrazin -'82134101' = { - table2Version = 134 ; - indicatorOfParameter = 101 ; - } -#CH2OC2H3Cl/Epiklorhydrin -'82134102' = { - table2Version = 134 ; - indicatorOfParameter = 102 ; - } -#CH2OC2/Etylenoxid -'82134103' = { - table2Version = 134 ; - indicatorOfParameter = 103 ; - } -#HF/Vaetefluorid -'82134105' = { - table2Version = 134 ; - indicatorOfParameter = 105 ; - } -#Hcl/Vaeteklorid -'82134106' = { - table2Version = 134 ; - indicatorOfParameter = 106 ; - } -#CS2/Koldisulfid -'82134107' = { - table2Version = 134 ; - indicatorOfParameter = 107 ; - } -#CH3NH2/Metylamin -'82134108' = { - table2Version = 134 ; - indicatorOfParameter = 108 ; - } -#SF6/Sulphurhexafloride -'82134110' = { - table2Version = 134 ; - indicatorOfParameter = 110 ; - } -#HCN/Vaetecyanid -'82134111' = { - table2Version = 134 ; - indicatorOfParameter = 111 ; - } -#COCl2/Fosgen -'82134112' = { - table2Version = 134 ; - indicatorOfParameter = 112 ; - } -#H2CCHCl/Vinylklorid -'82134113' = { - table2Version = 134 ; - indicatorOfParameter = 113 ; - } -#Missing -'82134255' = { - table2Version = 134 ; - indicatorOfParameter = 255 ; - } -############### table2Version 135 ############ -############### Match ############ -################################################# -#Reserved -'82135000' = { - table2Version = 135 ; - indicatorOfParameter = 0 ; - } -#GRG1/MOZART specie -'82135001' = { - table2Version = 135 ; - indicatorOfParameter = 1 ; - } -#GRG2/MOZART specie -'82135002' = { - table2Version = 135 ; - indicatorOfParameter = 2 ; - } -#GRG3/MOZART specie -'82135003' = { - table2Version = 135 ; - indicatorOfParameter = 3 ; - } -#GRG4/MOZART specie -'82135004' = { - table2Version = 135 ; - indicatorOfParameter = 4 ; - } -#GRG5/MOZART specie -'82135005' = { - table2Version = 135 ; - indicatorOfParameter = 5 ; - } -#VIS-340/Visibility at 340 nm -'82135100' = { - table2Version = 135 ; - indicatorOfParameter = 100 ; - } -#VIS-355/Visibility at 355 nm -'82135101' = { - table2Version = 135 ; - indicatorOfParameter = 101 ; - } -#VIS-380/Visibility at 380 nm -'82135102' = { - table2Version = 135 ; - indicatorOfParameter = 102 ; - } -#VIS-440/Visibility at 440 nm -'82135103' = { - table2Version = 135 ; - indicatorOfParameter = 103 ; - } -#VIS-500/Visibility at 500 nm -'82135104' = { - table2Version = 135 ; - indicatorOfParameter = 104 ; - } -#VIS-532/Visibility at 532 nm -'82135105' = { - table2Version = 135 ; - indicatorOfParameter = 105 ; - } -#VIS-675/Visibility at 675 nm -'82135106' = { - table2Version = 135 ; - indicatorOfParameter = 106 ; - } -#VIS-870/Visibility at 870 nm -'82135107' = { - table2Version = 135 ; - indicatorOfParameter = 107 ; - } -#VIS-1020/Visibility at 1020 nm -'82135108' = { - table2Version = 135 ; - indicatorOfParameter = 108 ; - } -#VIS-1064/Visibility at 1064 nm -'82135109' = { - table2Version = 135 ; - indicatorOfParameter = 109 ; - } -#VIS-3500/Visibility at 3500 nm -'82135110' = { - table2Version = 135 ; - indicatorOfParameter = 110 ; - } -#VIS-10000/Visibility at 10000 nm -'82135111' = { - table2Version = 135 ; - indicatorOfParameter = 111 ; - } -#BSCA-340/Backscatter at 340 nm -'82135120' = { - table2Version = 135 ; - indicatorOfParameter = 120 ; - } -#BSCA-355/Backscatter at 355 nm -'82135121' = { - table2Version = 135 ; - indicatorOfParameter = 121 ; - } -#BSCA-380/Backscatter at 380 nm -'82135122' = { - table2Version = 135 ; - indicatorOfParameter = 122 ; - } -#BSCA-440/Backscatter at 440 nm -'82135123' = { - table2Version = 135 ; - indicatorOfParameter = 123 ; - } -#BSCA-500/Backscatter at 500 nm -'82135124' = { - table2Version = 135 ; - indicatorOfParameter = 124 ; - } -#BSCA-532/Backscatter at 532 nm -'82135125' = { - table2Version = 135 ; - indicatorOfParameter = 125 ; - } -#BSCA-675/Backscatter at 675 nm -'82135126' = { - table2Version = 135 ; - indicatorOfParameter = 126 ; - } -#BSCA-870/Backscatter at 870 nm -'82135127' = { - table2Version = 135 ; - indicatorOfParameter = 127 ; - } -#BSCA-1020/Backscatter at 1020 nm -'82135128' = { - table2Version = 135 ; - indicatorOfParameter = 128 ; - } -#BSCA-1064/Backscatter at 1064 nm -'82135129' = { - table2Version = 135 ; - indicatorOfParameter = 129 ; - } -#BSCA-3500/Backscatter at 3500 nm -'82135130' = { - table2Version = 135 ; - indicatorOfParameter = 130 ; - } -#BSCA-10000/Backscatter at 10000 nm -'82135131' = { - table2Version = 135 ; - indicatorOfParameter = 131 ; - } -#EXT-340/Extinction at 340 nm -'82135140' = { - table2Version = 135 ; - indicatorOfParameter = 140 ; - } -#EXT-355/Extinction at 355 nm -'82135141' = { - table2Version = 135 ; - indicatorOfParameter = 141 ; - } -#EXT-380/Extinction at 380 nm -'82135142' = { - table2Version = 135 ; - indicatorOfParameter = 142 ; - } -#EXT-440/Extinction at 440 nm -'82135143' = { - table2Version = 135 ; - indicatorOfParameter = 143 ; - } -#EXT-500/Extinction at 500 nm -'82135144' = { - table2Version = 135 ; - indicatorOfParameter = 144 ; - } -#EXT-532/Extinction at 532 nm -'82135145' = { - table2Version = 135 ; - indicatorOfParameter = 145 ; - } -#EXT-675/Extinction at 675 nm -'82135146' = { - table2Version = 135 ; - indicatorOfParameter = 146 ; - } -#EXT-870/Extinction at 870 nm -'82135147' = { - table2Version = 135 ; - indicatorOfParameter = 147 ; - } -#EXT-1020/Extinction at 1020 nm -'82135148' = { - table2Version = 135 ; - indicatorOfParameter = 148 ; - } -#EXT-1064/Extinction at 1064 nm -'82135149' = { - table2Version = 135 ; - indicatorOfParameter = 149 ; - } -#EXT-3500/Extinction at 3500 nm -'82135150' = { - table2Version = 135 ; - indicatorOfParameter = 150 ; - } -#EXT-10000/Extinction at 10000 nm -'82135151' = { - table2Version = 135 ; - indicatorOfParameter = 151 ; - } -#AOD-340/Aerosol optical depth at 340 nm -'82135160' = { - table2Version = 135 ; - indicatorOfParameter = 160 ; - } -#AOD-355/Aerosol optical depth at 355 nm -'82135161' = { - table2Version = 135 ; - indicatorOfParameter = 161 ; - } -#AOD-380/Aerosol optical depth at 380 nm -'82135162' = { - table2Version = 135 ; - indicatorOfParameter = 162 ; - } -#AOD-440/Aerosol optical depth at 440 nm -'82135163' = { - table2Version = 135 ; - indicatorOfParameter = 163 ; - } -#AOD-500/Aerosol optical depth at 500 nm -'82135164' = { - table2Version = 135 ; - indicatorOfParameter = 164 ; - } -#AOD-532/Aerosol optical depth at 532 nm -'82135165' = { - table2Version = 135 ; - indicatorOfParameter = 165 ; - } -#AOD-675/Aerosol optical depth at 675 nm -'82135166' = { - table2Version = 135 ; - indicatorOfParameter = 166 ; - } -#AOD-870/Aerosol optical depth at 870 nm -'82135167' = { - table2Version = 135 ; - indicatorOfParameter = 167 ; - } -#AOD-1020/Aerosol optical depth at 1020 nm -'82135168' = { - table2Version = 135 ; - indicatorOfParameter = 168 ; - } -#AOD-1064/Aerosol optical depth at 1064 nm -'82135169' = { - table2Version = 135 ; - indicatorOfParameter = 169 ; - } -#AOD-3500/Aerosol optical depth at 3500 nm -'82135170' = { - table2Version = 135 ; - indicatorOfParameter = 170 ; - } -#AOD-10000/Aerosol optical depth at 10000 nm -'82135171' = { - table2Version = 135 ; - indicatorOfParameter = 171 ; - } -#Rain fraction of total cloud water -'82135208' = { - table2Version = 135 ; - indicatorOfParameter = 208 ; - } -#Rain factor -'82135209' = { - table2Version = 135 ; - indicatorOfParameter = 209 ; - } -#Total column integrated rain -'82135210' = { - table2Version = 135 ; - indicatorOfParameter = 210 ; - } -#Total column integrated snow -'82135211' = { - table2Version = 135 ; - indicatorOfParameter = 211 ; - } -#Total water precipitation -'82135212' = { - table2Version = 135 ; - indicatorOfParameter = 212 ; - } -#Total snow precipitation -'82135213' = { - table2Version = 135 ; - indicatorOfParameter = 213 ; - } -#Total column water (Vertically integrated total water) -'82135214' = { - table2Version = 135 ; - indicatorOfParameter = 214 ; - } -#Large scale precipitation rate -'82135215' = { - table2Version = 135 ; - indicatorOfParameter = 215 ; - } -#Convective snowfall rate water equivalent -'82135216' = { - table2Version = 135 ; - indicatorOfParameter = 216 ; - } -#Large scale snowfall rate water equivalent -'82135217' = { - table2Version = 135 ; - indicatorOfParameter = 217 ; - } -#Total snowfall rate -'82135218' = { - table2Version = 135 ; - indicatorOfParameter = 218 ; - } -#Convective snowfall rate -'82135219' = { - table2Version = 135 ; - indicatorOfParameter = 219 ; - } -#Large scale snowfall rate -'82135220' = { - table2Version = 135 ; - indicatorOfParameter = 220 ; - } -#Snow depth water equivalent -'82135221' = { - table2Version = 135 ; - indicatorOfParameter = 221 ; - } -#Snow evaporation -'82135222' = { - table2Version = 135 ; - indicatorOfParameter = 222 ; - } -#Total column integrated water vapour -'82135223' = { - table2Version = 135 ; - indicatorOfParameter = 223 ; - } -#Rain precipitation rate -'82135224' = { - table2Version = 135 ; - indicatorOfParameter = 224 ; - } -#Snow precipitation rate -'82135225' = { - table2Version = 135 ; - indicatorOfParameter = 225 ; - } -#Freezing rain precipitation rate -'82135226' = { - table2Version = 135 ; - indicatorOfParameter = 226 ; - } -#Ice pellets precipitation rate -'82135227' = { - table2Version = 135 ; - indicatorOfParameter = 227 ; - } -#Specific cloud liquid water content -'82135228' = { - table2Version = 135 ; - indicatorOfParameter = 228 ; - } -#Specific cloud ice water content -'82135229' = { - table2Version = 135 ; - indicatorOfParameter = 229 ; - } -#Specific rain water content -'82135230' = { - table2Version = 135 ; - indicatorOfParameter = 230 ; - } -#Specific snow water content -'82135231' = { - table2Version = 135 ; - indicatorOfParameter = 231 ; - } -#u-component of wind (gust) -'82135232' = { - table2Version = 135 ; - indicatorOfParameter = 232 ; - } -#v-component of wind (gust) -'82135233' = { - table2Version = 135 ; - indicatorOfParameter = 233 ; - } -#Vertical speed shear -'82135234' = { - table2Version = 135 ; - indicatorOfParameter = 234 ; - } -#Horizontal momentum flux -'82135235' = { - table2Version = 135 ; - indicatorOfParameter = 235 ; - } -#u-component storm motion -'82135236' = { - table2Version = 135 ; - indicatorOfParameter = 236 ; - } -#v-component storm motion -'82135237' = { - table2Version = 135 ; - indicatorOfParameter = 237 ; - } -#Drag coefficient -'82135238' = { - table2Version = 135 ; - indicatorOfParameter = 238 ; - } -#Eta coordinate vertical velocity -'82135239' = { - table2Version = 135 ; - indicatorOfParameter = 239 ; - } -#Altimeter setting -'82135240' = { - table2Version = 135 ; - indicatorOfParameter = 240 ; - } -#Thickness -'82135241' = { - table2Version = 135 ; - indicatorOfParameter = 241 ; - } -#Pressure altitude -'82135242' = { - table2Version = 135 ; - indicatorOfParameter = 242 ; - } -#Density altitude -'82135243' = { - table2Version = 135 ; - indicatorOfParameter = 243 ; - } -#5-wave geopotential height -'82135244' = { - table2Version = 135 ; - indicatorOfParameter = 244 ; - } -#Zonal flux of gravity wave stress -'82135245' = { - table2Version = 135 ; - indicatorOfParameter = 245 ; - } -#Meridional flux of gravity wave stress -'82135246' = { - table2Version = 135 ; - indicatorOfParameter = 246 ; - } -#Planetary boundary layer height -'82135247' = { - table2Version = 135 ; - indicatorOfParameter = 247 ; - } -#5-wave geopotential height anomaly -'82135248' = { - table2Version = 135 ; - indicatorOfParameter = 248 ; - } -#Standard deviation of sub-gridscale orography -'82135249' = { - table2Version = 135 ; - indicatorOfParameter = 249 ; - } -#Angle of sub-gridscale orography -'82135250' = { - table2Version = 135 ; - indicatorOfParameter = 250 ; - } -#Slope of sub-gridscale orography -'82135251' = { - table2Version = 135 ; - indicatorOfParameter = 251 ; - } -#Gravity wave dissipation -'82135252' = { - table2Version = 135 ; - indicatorOfParameter = 252 ; - } -#Anisotropy of sub-gridscale orography -'82135253' = { - table2Version = 135 ; - indicatorOfParameter = 253 ; - } -#Natural logarithm of pressure in Pa -'82135254' = { - table2Version = 135 ; - indicatorOfParameter = 254 ; - } -#Missing -'82135255' = { - table2Version = 135 ; - indicatorOfParameter = 255 ; - } -############### table2Version 136 ############ -############### Strang ############ -################################################# -#Reserved -'82136000' = { - table2Version = 136 ; - indicatorOfParameter = 0 ; - } -#Pressure -'82136001' = { - table2Version = 136 ; - indicatorOfParameter = 1 ; - } -#Temperature -'82136011' = { - table2Version = 136 ; - indicatorOfParameter = 11 ; - } -#Specific humidity -'82136051' = { - table2Version = 136 ; - indicatorOfParameter = 51 ; - } -#Precipitable water -'82136054' = { - table2Version = 136 ; - indicatorOfParameter = 54 ; - } -#Snow depth -'82136066' = { - table2Version = 136 ; - indicatorOfParameter = 66 ; - } -#Total cloud cover -'82136071' = { - table2Version = 136 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'82136073' = { - table2Version = 136 ; - indicatorOfParameter = 73 ; - } -#Probability for significant cloud base -'82136077' = { - table2Version = 136 ; - indicatorOfParameter = 77 ; - } -#Significant cloud base -'82136078' = { - table2Version = 136 ; - indicatorOfParameter = 78 ; - } -#Significant cloud top -'82136079' = { - table2Version = 136 ; - indicatorOfParameter = 79 ; - } -#Albedo (lev 0=global radiation lev 1=UV radiation) -'82136084' = { - table2Version = 136 ; - indicatorOfParameter = 84 ; - } -#Ice concentration -'82136091' = { - table2Version = 136 ; - indicatorOfParameter = 91 ; - } -#CIE-weighted UV irradiance -'82136116' = { - table2Version = 136 ; - indicatorOfParameter = 116 ; - } -#Global irradiance -'82136117' = { - table2Version = 136 ; - indicatorOfParameter = 117 ; - } -#Beam normal irradiance -'82136118' = { - table2Version = 136 ; - indicatorOfParameter = 118 ; - } -#Sunshine duration -'82136119' = { - table2Version = 136 ; - indicatorOfParameter = 119 ; - } -#PAR -'82136120' = { - table2Version = 136 ; - indicatorOfParameter = 120 ; - } -#Accumulated precipitation, 1 hours -'82136165' = { - table2Version = 136 ; - indicatorOfParameter = 165 ; - } -#Accumulated fresh snow, 1 hours -'82136175' = { - table2Version = 136 ; - indicatorOfParameter = 175 ; - } -#Total ozone -'82136206' = { - table2Version = 136 ; - indicatorOfParameter = 206 ; - } -#Missing -'82136255' = { - table2Version = 136 ; - indicatorOfParameter = 255 ; - } -############### table2Version 137 ############ -############### Match ############ -################################################# -#Reserved -'82137000' = { - table2Version = 137 ; - indicatorOfParameter = 0 ; - } -#Concentration of SOX, excluding seasalt, in air -'82137001' = { - table2Version = 137 ; - indicatorOfParameter = 1 ; - } -#Drydeposition of SOX, excluding seasalt, mixed gound -'82137002' = { - table2Version = 137 ; - indicatorOfParameter = 2 ; - } -#Drydeposition of SOX, excluding seasalt, Pasture -'82137003' = { - table2Version = 137 ; - indicatorOfParameter = 3 ; - } -#Drydeposition of SOX, excluding seasalt, Arable -'82137004' = { - table2Version = 137 ; - indicatorOfParameter = 4 ; - } -#Drydeposition of SOX, excluding seasalt, Beach Oak -'82137005' = { - table2Version = 137 ; - indicatorOfParameter = 5 ; - } -#Drydeposition of SOX, excluding seasalt, Deciduous -'82137006' = { - table2Version = 137 ; - indicatorOfParameter = 6 ; - } -#Drydeposition of SOX, excluding seasalt, Spruce -'82137007' = { - table2Version = 137 ; - indicatorOfParameter = 7 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137010' = { - table2Version = 137 ; - indicatorOfParameter = 10 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137011' = { - table2Version = 137 ; - indicatorOfParameter = 11 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137012' = { - table2Version = 137 ; - indicatorOfParameter = 12 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137013' = { - table2Version = 137 ; - indicatorOfParameter = 13 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137014' = { - table2Version = 137 ; - indicatorOfParameter = 14 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137015' = { - table2Version = 137 ; - indicatorOfParameter = 15 ; - } -#Total deposition of SOX, excluding seasalt -'82137016' = { - table2Version = 137 ; - indicatorOfParameter = 16 ; - } -#Concentration of SOX in air -'82137017' = { - table2Version = 137 ; - indicatorOfParameter = 17 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137020' = { - table2Version = 137 ; - indicatorOfParameter = 20 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137021' = { - table2Version = 137 ; - indicatorOfParameter = 21 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137022' = { - table2Version = 137 ; - indicatorOfParameter = 22 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137023' = { - table2Version = 137 ; - indicatorOfParameter = 23 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137024' = { - table2Version = 137 ; - indicatorOfParameter = 24 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137025' = { - table2Version = 137 ; - indicatorOfParameter = 25 ; - } -#Total deposition of SOX, excluding seasalt -'82137026' = { - table2Version = 137 ; - indicatorOfParameter = 26 ; - } -#Concentration of SOX in air -'82137027' = { - table2Version = 137 ; - indicatorOfParameter = 27 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137030' = { - table2Version = 137 ; - indicatorOfParameter = 30 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137031' = { - table2Version = 137 ; - indicatorOfParameter = 31 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137032' = { - table2Version = 137 ; - indicatorOfParameter = 32 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137033' = { - table2Version = 137 ; - indicatorOfParameter = 33 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137034' = { - table2Version = 137 ; - indicatorOfParameter = 34 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137035' = { - table2Version = 137 ; - indicatorOfParameter = 35 ; - } -#Total deposition of SOX, excluding seasalt -'82137036' = { - table2Version = 137 ; - indicatorOfParameter = 36 ; - } -#Concentration of SOX in air -'82137037' = { - table2Version = 137 ; - indicatorOfParameter = 37 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137040' = { - table2Version = 137 ; - indicatorOfParameter = 40 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137041' = { - table2Version = 137 ; - indicatorOfParameter = 41 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137042' = { - table2Version = 137 ; - indicatorOfParameter = 42 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137043' = { - table2Version = 137 ; - indicatorOfParameter = 43 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137044' = { - table2Version = 137 ; - indicatorOfParameter = 44 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137045' = { - table2Version = 137 ; - indicatorOfParameter = 45 ; - } -#Total deposition of SOX, excluding seasalt -'82137046' = { - table2Version = 137 ; - indicatorOfParameter = 46 ; - } -#Concentration of SOX in air -'82137047' = { - table2Version = 137 ; - indicatorOfParameter = 47 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137050' = { - table2Version = 137 ; - indicatorOfParameter = 50 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137051' = { - table2Version = 137 ; - indicatorOfParameter = 51 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137052' = { - table2Version = 137 ; - indicatorOfParameter = 52 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137053' = { - table2Version = 137 ; - indicatorOfParameter = 53 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137054' = { - table2Version = 137 ; - indicatorOfParameter = 54 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137055' = { - table2Version = 137 ; - indicatorOfParameter = 55 ; - } -#Total deposition of SOX, excluding seasalt -'82137056' = { - table2Version = 137 ; - indicatorOfParameter = 56 ; - } -#Concentration of SOX in air -'82137057' = { - table2Version = 137 ; - indicatorOfParameter = 57 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137060' = { - table2Version = 137 ; - indicatorOfParameter = 60 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137061' = { - table2Version = 137 ; - indicatorOfParameter = 61 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137062' = { - table2Version = 137 ; - indicatorOfParameter = 62 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137063' = { - table2Version = 137 ; - indicatorOfParameter = 63 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137064' = { - table2Version = 137 ; - indicatorOfParameter = 64 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137065' = { - table2Version = 137 ; - indicatorOfParameter = 65 ; - } -#Total deposition of SOX, excluding seasalt -'82137066' = { - table2Version = 137 ; - indicatorOfParameter = 66 ; - } -#Concentration of SOX in air -'82137067' = { - table2Version = 137 ; - indicatorOfParameter = 67 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137070' = { - table2Version = 137 ; - indicatorOfParameter = 70 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137071' = { - table2Version = 137 ; - indicatorOfParameter = 71 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137072' = { - table2Version = 137 ; - indicatorOfParameter = 72 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137073' = { - table2Version = 137 ; - indicatorOfParameter = 73 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137074' = { - table2Version = 137 ; - indicatorOfParameter = 74 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137075' = { - table2Version = 137 ; - indicatorOfParameter = 75 ; - } -#Total deposition of SOX, excluding seasalt -'82137076' = { - table2Version = 137 ; - indicatorOfParameter = 76 ; - } -#Concentration of SOX in air -'82137077' = { - table2Version = 137 ; - indicatorOfParameter = 77 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137100' = { - table2Version = 137 ; - indicatorOfParameter = 100 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137101' = { - table2Version = 137 ; - indicatorOfParameter = 101 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137102' = { - table2Version = 137 ; - indicatorOfParameter = 102 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137103' = { - table2Version = 137 ; - indicatorOfParameter = 103 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137104' = { - table2Version = 137 ; - indicatorOfParameter = 104 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137105' = { - table2Version = 137 ; - indicatorOfParameter = 105 ; - } -#Total deposition of SOX, excluding seasalt -'82137106' = { - table2Version = 137 ; - indicatorOfParameter = 106 ; - } -#Concentration of SOX in air -'82137107' = { - table2Version = 137 ; - indicatorOfParameter = 107 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137110' = { - table2Version = 137 ; - indicatorOfParameter = 110 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137111' = { - table2Version = 137 ; - indicatorOfParameter = 111 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137112' = { - table2Version = 137 ; - indicatorOfParameter = 112 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137113' = { - table2Version = 137 ; - indicatorOfParameter = 113 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137114' = { - table2Version = 137 ; - indicatorOfParameter = 114 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137115' = { - table2Version = 137 ; - indicatorOfParameter = 115 ; - } -#Total deposition of SOX, excluding seasalt -'82137116' = { - table2Version = 137 ; - indicatorOfParameter = 116 ; - } -#Concentration of SOX in air -'82137117' = { - table2Version = 137 ; - indicatorOfParameter = 117 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137120' = { - table2Version = 137 ; - indicatorOfParameter = 120 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137121' = { - table2Version = 137 ; - indicatorOfParameter = 121 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137122' = { - table2Version = 137 ; - indicatorOfParameter = 122 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137123' = { - table2Version = 137 ; - indicatorOfParameter = 123 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137124' = { - table2Version = 137 ; - indicatorOfParameter = 124 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137125' = { - table2Version = 137 ; - indicatorOfParameter = 125 ; - } -#Total deposition of SOX, excluding seasalt -'82137126' = { - table2Version = 137 ; - indicatorOfParameter = 126 ; - } -#Concentration of SOX in air -'82137127' = { - table2Version = 137 ; - indicatorOfParameter = 127 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'82137130' = { - table2Version = 137 ; - indicatorOfParameter = 130 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'82137131' = { - table2Version = 137 ; - indicatorOfParameter = 131 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'82137132' = { - table2Version = 137 ; - indicatorOfParameter = 132 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'82137133' = { - table2Version = 137 ; - indicatorOfParameter = 133 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'82137134' = { - table2Version = 137 ; - indicatorOfParameter = 134 ; - } -#Wetdeposition of SOX, excluding seasalt -'82137135' = { - table2Version = 137 ; - indicatorOfParameter = 135 ; - } -#Total deposition of SOX, excluding seasalt -'82137136' = { - table2Version = 137 ; - indicatorOfParameter = 136 ; - } -#Concentration of SOX in air -'82137137' = { - table2Version = 137 ; - indicatorOfParameter = 137 ; - } -#Missing -'82137255' = { - table2Version = 137 ; - indicatorOfParameter = 255 ; - } -############### table2Version 140 ############ -############### Blixtlokalisering ############ -################################################# -#Reserved -'82140000' = { - table2Version = 140 ; - indicatorOfParameter = 0 ; - } -#Cloud to ground discharge count -'82140001' = { - table2Version = 140 ; - indicatorOfParameter = 1 ; - } -#Cloud to cloud discharge count -'82140002' = { - table2Version = 140 ; - indicatorOfParameter = 2 ; - } -#Total discharge count -'82140003' = { - table2Version = 140 ; - indicatorOfParameter = 3 ; - } -#Cloud to ground accumulated absolute peek current -'82140004' = { - table2Version = 140 ; - indicatorOfParameter = 4 ; - } -#Cloud to cloud accumulated absolute peek current -'82140005' = { - table2Version = 140 ; - indicatorOfParameter = 5 ; - } -#Total accumulated absolute peek current -'82140006' = { - table2Version = 140 ; - indicatorOfParameter = 6 ; - } -#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) -'82140007' = { - table2Version = 140 ; - indicatorOfParameter = 7 ; - } -#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) -'82140008' = { - table2Version = 140 ; - indicatorOfParameter = 8 ; - } -#Significant total discharge count (discharges with absolute peek current above 100kA) -'82140009' = { - table2Version = 140 ; - indicatorOfParameter = 9 ; - } -#Missing -'82140255' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -############### table2Version 150 ############ -############### Hirlam postpr ############ -################################################# -#Reserved -'82150000' = { - table2Version = 150 ; - indicatorOfParameter = 0 ; - } -#Evaporation Penman formula -'82150057' = { - table2Version = 150 ; - indicatorOfParameter = 57 ; - } -#Spray weather recomendation -'82150058' = { - table2Version = 150 ; - indicatorOfParameter = 58 ; - } -#Missing -'82150255' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -############### table2Version 151 ############ -############### ECMWF postpr ############ -################################################# -#Reserved -'82151000' = { - table2Version = 151 ; - indicatorOfParameter = 0 ; - } -#Probability total precipitation between 1 and 10 mm -'82151001' = { - table2Version = 151 ; - indicatorOfParameter = 1 ; - } -#Probability total precipitation between 10 and 50 mm -'82151002' = { - table2Version = 151 ; - indicatorOfParameter = 2 ; - } -#Probability total precipitation more than 50 mm -'82151003' = { - table2Version = 151 ; - indicatorOfParameter = 3 ; - } -#Evaporation Penman formula -'82151057' = { - table2Version = 151 ; - indicatorOfParameter = 57 ; - } -#Missing -'82151255' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -### HARMONIE tables ### -#Absolute divergence -'82253042' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Absolute vorticity -'82253041' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Convective precipitation (water) -'82253063' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Surface aerosol soot (carbon) -'82253253' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'82253254' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Surface aerosol land -'82253252' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol sea -'82253251' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Albedo -'82253084' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Albedo of bare ground -'82253229' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'82253230' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#A Ozone -'82253248' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#Analysed RMS of PHI (CANARI) -'82253128' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Snow albedo -'82253190' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Anisotropy coeff of topography -'82253221' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Boundary layer dissipation -'82253123' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Best lifted index (to 500 hPa) -'82253077' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#B Ozone -'82253249' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#Brightness temperature -'82253118' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#CAPE out of the model -'82253160' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#Cloud base -'82253186' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Convective cloud cover -'82253072' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Cloud ice water content -'82253058' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Fraction of clay within soil -'82253225' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#C Ozone -'82253250' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Convective rain -'82253183' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Convective snowfall -'82253078' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#LW net clear sky rad -'82253131' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#SW net clear sky rad -'82253130' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#Cloud top -'82253187' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Cloud water -'82253076' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Divergence -'82253044' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Density -'82253089' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Dew point depression (or deficit) -'82253018' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Direction of ice drift -'82253093' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Direction of current -'82253047' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Secondary wave direction -'82253109' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Downdraft mesh fraction -'82253217' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Downdraft omega -'82253215' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Deviation of sea-level from mean -'82253082' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Direction of main axis of topography -'82253222' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Duration of total precipitation -'82253243' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Dominant vegetation index -'82253234' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Evaporation -'82253057' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Gust -'82253228' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Forecast RMS of PHI (CANARI) -'82253129' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#Fraction of urban land -'82253188' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Geopotential Height -'82253007' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geopotential height anomaly -'82253027' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Global radiation flux -'82253117' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Graupel -'82253201' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Gravity wave stress U-comp -'82253195' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'82253196' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#Geometrical height -'82253008' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Hail -'82253204' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#High cloud cover -'82253075' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Standard deviation of height -'82253009' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#ICAO Standard Atmosphere reference height -'82253005' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Ice cover (1=land, 0=sea) -'82253091' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice divergence -'82253098' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Ice growth rate -'82253097' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Icing index -'82253135' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Ice thickness -'82253092' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Image data -'82253127' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Leaf area index -'82253232' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Lapse rate -'82253019' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Low cloud cover -'82253073' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Lightning -'82253209' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; - } -#Latent heat flux through evaporation -'82253132' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Latent Heat Sublimation -'82253244' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Large-scale snowfall -'82253079' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Land-sea mask -'82253081' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#large scale precipitation (water) -'82253062' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Long wave radiation flux -'82253115' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Radiance (with respect to wave number) -'82253119' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Medium cloud cover -'82253074' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#MOCON out of the model -'82253166' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Mean direction of primary swell -'82253107' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean direction of wind waves -'82253101' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Humidity mixing ratio -'82253053' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Mixed layer depth -'82253067' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Montgomery stream Function -'82253037' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Mean period of primary swell -'82253108' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Mean period of wind waves -'82253103' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Surface downward moon radiation -'82253158' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#Mask of significant cloud amount -'82253133' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Mean sea level pressure -'82253002' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Main thermocline anomaly -'82253070' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Main thermocline depth -'82253069' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Net long-wave radiation flux (surface) -'82253112' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net long-wave radiation flux(atmosph.top) -'82253114' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Net short-wave radiation flux (surface) -'82253111' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net short-wave radiationflux(atmosph.top) -'82253113' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Pseudo-adiabatic potential temperature -'82253014' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Pressure departure -'82253212' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Parcel lifted index (to 500 hPa) -'82253024' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Precipitation rate -'82253059' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Pressure -'82253001' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Pressure anomaly -'82253026' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Precipitation Type -'82253144' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'82253136' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'82253139' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Pseudo satellite image: water vapour Tb -'82253137' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'82253138' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Potential temperature -'82253013' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pressure tendency -'82253003' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'82253004' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#Precipitable water -'82253054' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Specific humidity -'82253051' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'82253052' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Rain -'82253181' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Radar spectra (3) -'82253023' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Simulated reflectivity -'82253210' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Resistance to evapotransiration -'82253240' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'82253241' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'82253242' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Runoff -'82253090' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Snow density -'82253191' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Salinity -'82253088' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Saturation deficit -'82253056' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Snow depth water equivalent -'82253066' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Surface emissivity -'82253235' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Snow Fall water equivalent -'82253065' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Sigma coordinate vertical velocity -'82253038' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Snow history -'82253247' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#Significant height of wind waves -'82253102' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Speed of ice drift -'82253094' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#Soil depth -'82253237' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Fraction of sand within soil -'82253226' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Surface latent heat flux -'82253121' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Soil Temperature -'82253085' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil Moisture -'82253086' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Stomatal minimum resistance -'82253231' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Snow melt -'82253099' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Snow -'82253184' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Snow Sublimation -'82253246' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Speed of current -'82253048' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#Stratiform rain -'82253182' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Surface roughness * g -'82253083' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Snow fall rate water equivalent -'82253064' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Surface sensible heat flux -'82253122' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Standard deviation of orography * g -'82253220' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Stream function -'82253035' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Short wave radiation flux -'82253116' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Direction of swell waves -'82253104' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'82253105' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Signific.height,combined wind waves+swell -'82253100' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Secondary wave period -'82253110' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Mean period of swell waves -'82253106' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Radiance (with respect to wave length) -'82253120' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Soil wetness -'82253238' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Temperature -'82253011' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Temperature anomaly -'82253025' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Total Cloud Cover -'82253071' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Total column ozone -'82253010' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Dew point temperature -'82253017' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#TKE -'82001200' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature -'82253015' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'82253016' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Total water vapour -'82253167' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Total precipitation -'82253061' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Total solid precipitation -'82253185' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Thunderstorm probability -'82253060' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Transient thermocline depth -'82253068' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Vertical velocity -'82253040' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#U component of wind -'82253033' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#U-component of current -'82253049' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#Momentum flux, u-component -'82253124' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Gust, u-component -'82253162' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#U-component of ice drift -'82253095' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#Updraft mesh fraction -'82253216' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Updraft omega -'82253214' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#V component of wind -'82253034' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#V-component of current -'82253050' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Vertical Divergence -'82253213' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Vegetation fraction -'82253087' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Momentum flux, v-component -'82253125' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Gust, v-component -'82253163' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#V-component of ice drift -'82253096' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Visibility -'82253020' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Vorticity (relative) -'82253043' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Vapour pressure -'82253055' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Virtual potential temperature -'82253012' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Vertical u-component shear -'82253045' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'82253046' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Vertical velocity -'82253039' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Water on canopy (Interception content) -'82253192' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Water on canopy (Interception content) -'82253193' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Wind direction -'82253031' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Water evaporation -'82253245' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Wind mixing energy -'82253126' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Wind speed -'82253032' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#Water temperature -'82253080' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Wave spectra (3) -'82253030' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#AROME hail diagnostic -'82253161' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Geopotential -'82253006' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Thermal roughness length * g -'82253239' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def b/eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def deleted file mode 100644 index 8db79009..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/shortName.def +++ /dev/null @@ -1,5580 +0,0 @@ -############### table2Version 1 ############ -############### WMO/Hirlam ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'pres' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to MSL -'msl' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'ptend' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'pv' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'z' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gh' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'h' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total ozone -'tozne' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'t' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'pt' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'dptd' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar Spectra (1) -'rdsp1' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar Spectra (2) -'rdsp2' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar Spectra (3) -'rdsp3' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave Spectra (1) -'wvsp1' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave Spectra (2) -'wvsp2' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave Spectra (3) -'wvsp3' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'ws' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'strf' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'mntsf' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coord. vertical velocity -'sgcvv' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'omega' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Geometric Vertical velocity -'w' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'absv' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'vo' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'d' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'vusch' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvsch' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#u-component of current -'ucurr' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#v-component of current -'vcurr' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'q' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'r' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'e' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud Ice -'cice' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'prate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'lsp' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'acpcp' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snowfall rate water equivalent -'srweq' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equiv. of accum. snow depth -'sdwe' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'sd' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'mld' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'tcc' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'cwat' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snow -'csf' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snow -'lsf' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water Temperature -'wtmp' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'lsm' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea level from mean -'dslm' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'sr' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'al' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'st' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'ssw' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'veg' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'s' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run off -'watr' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'icec' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#u-component of ice drift -'uice' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#v-component of ice drift -'vice' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Significant height of combined wind waves and swell -'swh' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'mdww' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'prwd' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'perpw' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'persw' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short wave radiation flux (surface) -'nswrs' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short wave radiation flux (top of atmos.) -'nswrt' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long wave radiation flux (top of atmos.) -'nlwrt' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'btmp' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat net flux -'lhtfl' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat net flux -'shtfl' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u component -'uflx' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v component -'vflx' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'mofl' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Humidity tendencies -'qten' = { - table2Version = 1 ; - indicatorOfParameter = 129 ; - } -#Radiation at top of atmosphere -'radtop' = { - table2Version = 1 ; - indicatorOfParameter = 130 ; - } -#Cloud top temperature, infrared -'ctt' = { - table2Version = 1 ; - indicatorOfParameter = 131 ; - } -#Water vapor brightness temperature -'wvbt' = { - table2Version = 1 ; - indicatorOfParameter = 132 ; - } -#Water vapor brightness temperature, correction -'wvbt_corr' = { - table2Version = 1 ; - indicatorOfParameter = 133 ; - } -#Cloud water reflectivity -'cwref' = { - table2Version = 1 ; - indicatorOfParameter = 134 ; - } -#Maximum wind -'maxgust' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Minimum wind -'mingust' = { - table2Version = 1 ; - indicatorOfParameter = 136 ; - } -#Integrated cloud condensate -'icc' = { - table2Version = 1 ; - indicatorOfParameter = 137 ; - } -#Snow depth, cold snow -'sd_cold' = { - table2Version = 1 ; - indicatorOfParameter = 138 ; - } -#Open land snow depth -'sd_cold_ol' = { - table2Version = 1 ; - indicatorOfParameter = 139 ; - } -#Temperature over land -'tland' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'qland' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land -'rhland' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land -'dptland' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'slfr' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'shfr' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter RSHA -'RSHA' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter RSHB -'RSHB' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Momentum vegetation roughness -'movegro' = { - table2Version = 1 ; - indicatorOfParameter = 164 ; - } -#Surface slope -'susl' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'skwf' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'frasp' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Heat roughness -'hero' = { - table2Version = 1 ; - indicatorOfParameter = 168 ; - } -#Albedo with solar angle correction -'al_scorr' = { - table2Version = 1 ; - indicatorOfParameter = 169 ; - } -#Soil wetness index -'swi' = { - table2Version = 1 ; - indicatorOfParameter = 189 ; - } -#Snow albedo -'asn' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'dsn' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'watcn' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'ssi' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Fraction of surface type -'frst' = { - table2Version = 1 ; - indicatorOfParameter = 194 ; - } -#Soil type -'slt' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'fol' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'fof' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'fool' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'vgtyp' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'TKE' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Standard deviation of mesoscale orography -'orostdv' = { - table2Version = 1 ; - indicatorOfParameter = 204 ; - } -#Anisotrophic mesoscale orography -'amo' = { - table2Version = 1 ; - indicatorOfParameter = 205 ; - } -#X-angle of mesoscale orography -'anmo' = { - table2Version = 1 ; - indicatorOfParameter = 206 ; - } -#Maximum slope of smallest scale orography -'mssso' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'sdsso' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Ice existence -'iceex' = { - table2Version = 1 ; - indicatorOfParameter = 210 ; - } -#Lifting condensation level -'lcl' = { - table2Version = 1 ; - indicatorOfParameter = 222 ; - } -#Level of neutral buoyancy -'lnb' = { - table2Version = 1 ; - indicatorOfParameter = 223 ; - } -#Convective inhibation -'ci' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } -#CAPE -'CAPE' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Precipitation type -'ptype' = { - table2Version = 1 ; - indicatorOfParameter = 226 ; - } -#Friction velocity -'vfr' = { - table2Version = 1 ; - indicatorOfParameter = 227 ; - } -#Wind gust -'gust' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Analysed 3-hour precipitation (-3h/0h) -'anpr3' = { - table2Version = 1 ; - indicatorOfParameter = 250 ; - } -#Analysed 12-hour precipitation (-12h/0h) -'anpr12' = { - table2Version = 1 ; - indicatorOfParameter = 251 ; - } -#Missing -'Missing' = { - table2Version = 1 ; - indicatorOfParameter = 255 ; - } -############### table2Version 128 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 128 ; - indicatorOfParameter = 0 ; - } -# SO2/SO2 -'SO2' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'SO4(2-)' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -# DMS/DMS -'DMS' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -# MSA/MSA -'MSA' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -# H2S/H2S -'H2S' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -# NH4SO4/(NH4)1.5H0.5SO4 -'NH4SO4' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -# NH4HSO4/NH4HSO4 -'NH4HSO4' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -# NH42SO4/(NH4)2SO4 -'NH42SO4' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -# SULFATE/SULFATE -'SFT' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -# SO2_AQ/SO2 in aqueous phase -'SO2_AQ' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -# SO4_AQ/sulfate in aqueous phase -'SO4_AQ' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -# LRT_SO2_S/long-range SO2_S -'LRT_SO2_S' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -# LRT_SO4_S/LRT-contriubtion to SO4_S -'LRT_SO4_S' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -# LRT_SOX_S/LRT-contriubtion to SO4_S -'LRT_SOX_S' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -# XSOX_S/excess SOX (corrected for sea salt as sulfur) -'XSOX_S' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -# SO2_S/SO2 (as sulphur) -'SO2_S' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -# SO4_S/SO4 (as sulphur) -'SO4_S' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'SOX_S' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -# NO -'NO' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -# NO2/NO2 -'NO2' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -# HNO3/HNO3 -'HNO3' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -# NO3(-1)/NO3(-1) (nitrate) -'NO3(-1)' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -# NH4NO3/NH4NO3 -'NH4NO3' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -# NITRATE/NITRATE -'NITRATE' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -# PNO3/(COARSE) NITRATE -'PNO3' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -# LRT_NOY_N/long-range NOY_N -'LRT_NOY_N' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -# NO3_N/NO3 as N -'NO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -# HNO3_N/HNO3 as N -'HNO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -# LRT_NO3_N/long-range NO3_N -'LRT_NO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -# LRT_HNO3_N/long-range HNO3_N -'LRT_HNO3_N' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -# LRT_NO2_N/long-range NO2_N -'LRT_NO2_N' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -# LRT_NOZ_N/long-range NOZ_N -'LRT_NOZ_N' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -# NOX/NOX as NO2 -'NOX' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -# NO_N/NO as N -'NO_N' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -# NO2_N/NO2 as N -'NO2_N' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'NOX_N' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'NOY_N' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -# NOZ_N/NOy-NOx (as nitrogen) -'NOZ_N' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -# NH3/NH3 -'NH3' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -# NH4(+1)/NH4 -'NH4(+1)' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -# AMMONIUM/AMMONIUM -'AMMONIUM' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -# NH3_N/NH3 (as nitrogen) -'NH3_N' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -# NH4_N/NH4 (as nitrogen) -'NH4_N' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -# LRT_NH3_N/long-range NH3_N -'LRT_NH3_N' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -# LRT_NH4_N/long-range NH4_N -'LRT_NH4_N' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -# LRT_NHX_N/long-range NHX_N -'LRT_NHX_N' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'NHX_N' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -# O3 -'O3' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -# H2O2/H2O2 -'H2O2' = { - table2Version = 128 ; - indicatorOfParameter = 61 ; - } -# OH/OH -'OH' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -# O3_AQ/O3 in aqueous phase -'O3_AQ' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -# H2O2_AQ/H2O2 in aqueous phase -'H2O2_AQ' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -# OX/Ox=O3+NO2 -'OX' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -# C -'C' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -# CO/CO -'CO' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -# CO2/CO2 -'CO2' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -# CH4/CH4 -'CH4' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -# OC/Organic carbon (particles) -'OC' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -# EC/Elementary carbon (particles) -'EC' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -# CF6 -'CF6' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -# PMCH/PMCH -'PMCH' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -# PMCP/PMCP -'PMCP' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -# TRACER/Tracer -'TRACER' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -# Inert/Inert -'Inert' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -# H3 -'H3' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -# Ar41/Ar41 -'Ar41' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -# Kr85/Kr85 -'Kr85' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -# Kr88/Kr88 -'Kr88' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -# Xe131/Xe131 -'Xe131' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -# Xe133/Xe133 -'Xe133' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -# Rn222/Rn222 -'Rn222' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -# I131/I131 -'I131' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -# I132/I132 -'I132' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -# I133/I133 -'I133' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -# I135/I135 -'I135' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -# Sr90 -'Sr90' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -# Co60/Co60 -'Co60' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -# Ru103/Ru103 -'Ru103' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -# Ru106/Ru106 -'Ru106' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -# Cs134/Cs134 -'Cs134' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -# Cs137/Cs137 -'Cs137' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -# Ra223/Ra123 -'Ra223' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -# Ra228/Ra228 -'Ra228' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -# Zr95 -'Zr95' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -# Nb95/Nb95 -'Nb95' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -# Ce144/Ce144 -'Ce144' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -# Np238/Np238 -'Np238' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -# Np239/Np239 -'Np239' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -# Pu241/Pu241 -'Pu241' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -# Pb210/Pb210 -'Pb210' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -# ALL -'ALL' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -# NACL -'NACL' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -# SODIUM/Na+ -'Na+'= { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -# MAGNESIUM/Mg++ -'Mg++' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -# POTASSIUM/K+ -'K+' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -# CALCIUM/Ca++ -'Ca++' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -# XMG/excess Mg++ (corrected for sea salt) -'XMG' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -# XK/excess K+ (corrected for sea salt) -'XK' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -# XCA/excess Ca++ (corrected for sea salt) -'XCA' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -# Cl2/Cloride -'Cl2' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -# PMFINE -'PMFINE' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -# PMCOARSE/Coarse particles -'PMCOARSE' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -# DUST/Dust (particles) -'DUST' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -# PNUMBER/Number concentration -'PNUMBER' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -# PRADIUS/Particle radius -'PRADIUS' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -# PSURFACE/Particle surface conc -'PSURFACE' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -# PMASS/Particle mass conc -'PMASS' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -# PM10/PM10 particles -'PM10' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -# PSOX/Particulate sulfate -'PSOX' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -# PNOX/Particulate nitrate -'PNOX' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -# PNHX/Particulate ammonium -'PNHX' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -# PPMFINE/Primary emitted fine particles -'PPMFINE' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -# PPM10/Primary emitted particles -'PPM10' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -# SOA/Secondary Organic Aerosol -'SOA' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -# PM2.5/PM2.5 particles -'PM2.5' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -# PM/Total particulate matter -'PM' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -# BIRCH_POLLEN/Birch pollen -'BIRCH_POLLEN' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -# KZ -'KZ' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -# L/Monin-Obukhovs length [m] -'L' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -# U*/Friction velocity [m/s] -'U*' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -# W*/Convective velocity scale [m/s] -'W*' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -# Z-D/Z0 minus displacement length [m] -'Z-D' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -# SURFTYPE/Surface type (see link{OCTET45}) -'SURFTYPE' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -# LAI/Leaf area index -'LAI' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -# SOILTYPE/Soil type -'SOILTYPE' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -# SSALB/Single scattering albodo [1] -'SSALB' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -# ASYMPAR/Asymmetry parameter -'ASYMPAR' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -# VIS/Visibility [m] -'VIS' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -# EXT/Extinction [1/m] -'EXT' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -# BSCA/Backscattering coeff [1/m/sr] -'BSCA' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -# AOD/Aerosol opt depth [1] -'AOD' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -# DAOD/AOD per layer [1] -'DAOD' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -# CONV_TIED -'CONV_TIED' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -# CONV_BOT/Convective cloud bottom (unit?) -'CONV_BOT' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -# CONV_TOP/Convective cloud top (unit?) -'CONV_TOP' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -# DXDY/Gridsize [m2] -'DXDY' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -# EMIS/Sectoral emissions -'EMIS' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -# LONG/Longitude -'LONG' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -# LAT/Latitude -'LAT' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Missing -'Missing' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -############### table2Version 129 ############ -############### Mesan ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 129 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'MSL' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Temperature -'t' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#Wet bulb temperature -'Tiw' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#24 hour mean of 2 meter temperature -'mean2t24h' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#Maximum temperature -'tmax' = { - table2Version = 129 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 129 ; - indicatorOfParameter = 16 ; - } -#Visibility -'vis' = { - table2Version = 129 ; - indicatorOfParameter = 20 ; - } -#Wind gusts -'gust' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'u' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'r' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Total cloud cover -'tcc' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'lcc' = { - table2Version = 129 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'mcc' = { - table2Version = 129 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 129 ; - indicatorOfParameter = 75 ; - } -#Fraction of significant clouds -'c_sigfr' = { - table2Version = 129 ; - indicatorOfParameter = 77 ; - } -#Cloud base of significant clouds -'cb_sig' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Cloud top of significant clouds -'ct_sig' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Type of precipitation -'prtype' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Sort of precipitation -'prsort' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#6 hour precipitation -'prec6h' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#12 hour precipitation -'prec12h' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#18 hour precipitation -'prec18h' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#24 hour precipitation -'prec24h' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#1 hour precipitation -'prec1h' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#2 hour precipitation -'prec2h' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#3 hour precipitation -'prec3h' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#9 hour precipitation -'prec9h' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#15 hour precipitation -'prec15h' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#6 hour fresh snow cover -'frsn6h' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#12 hour fresh snow cover -'frsn12h' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#18 hour fresh snow cover -'frsn18h' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#24 hour fresh snow cover -'frsn24h' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#1 hour fresh snow cover -'frsn1h' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#2 hour fresh snow cover -'frsn2h' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#3 hour fresh snow cover -'frsn3h' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#9 hour fresh snow cover -'frsn9h' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#15 hour fresh snow cover -'frsn15h' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#6 hour precipitation, corrected -'prec6h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#12 hour precipitation, corrected -'prec12h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#18 hour precipitation, corrected -'prec18h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#24 hour precipitation, corrected -'prec24h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#1 hour precipitation, corrected -'prec1h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#2 hour precipitation, corrected -'prec2h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#3 hour precipitation, corrected -'prec3h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#9 hour precipitation, corrected -'prec9h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#15 hour precipitation, corrected -'prec15h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#6 hour fresh snow cover, corrected -'frsn6h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#12 hour fresh snow cover, corrected -'frsn12h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#18 hour fresh snow cover, corrected -'frsn18h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#24 hour fresh snow cover, corrected -'frsn24h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#1 hour fresh snow cover, corrected -'frsn1h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#2 hour fresh snow cover, corrected -'frsn2h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#3 hour fresh snow cover, corrected -'frsn3h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#9 hour fresh snow cover, corrected -'frsn9h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#15 hour fresh snow cover, corrected -'frsn15h_cor' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#6 hour precipitation, standardized -'prec6h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#12 hour precipitation, standardized -'prec12h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#18 hour precipitation, standardized -'prec18h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#24 hour precipitation, standardized -'prec24h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#1 hour precipitation, standardized -'prec1h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#2 hour precipitation, standardized -'prec2h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#3 hour precipitation, standardized -'prec3h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#9 hour precipitation, standardized -'prec9h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#15 hour precipitation, standardized -'prec15h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#6 hour fresh snow cover, standardized -'frsn6h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#12 hour fresh snow cover, standardized -'frsn12h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#18 hour fresh snow cover, standardized -'frsn18h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 213 ; - } -#24 hour fresh snow cover, standardized -'frsn24h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#1 hour fresh snow cover, standardized -'frsn1h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#2 hour fresh snow cover, standardized -'frsn2h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#3 hour fresh snow cover, standardized -'frsn3h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#9 hour fresh snow cover, standardized -'frsn9h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#15 hour fresh snow cover, standardized -'frsn15h_sta' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#6 hour precipitation, corrected and standardized -'prec6h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#12 hour precipitation, corrected and standardized -'prec12h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#18 hour precipitation, corrected and standardized -'prec18h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#24 hour precipitation, corrected and standardized -'prec24h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#1 hour precipitation, corrected and standardized -'prec1h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#2 hour precipitation, corrected and standardized -'prec2h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#3 hour precipitation, corrected and standardized -'prec3h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#9 hour precipitation, corrected and standardized -'prec9h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#15 hour precipitation, corrected and standardized -'prec15h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#6 hour fresh snow cover, corrected and standardized -'frsn6h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#12 hour fresh snow cover, corrected and standardized -'frsn12h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#18 hour fresh snow cover, corrected and standardized -'frsn18h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#24 hour fresh snow cover, corrected and standardized -'frsn24h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#1 hour fresh snow cover, corrected and standardized -'frsn1h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#2 hour fresh snow cover, corrected and standardized -'frsn2h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#3 hour fresh snow cover, corrected and standardized -'frsn3h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#9 hour fresh snow cover, corrected and standardized -'frsn9h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#15 hour fresh snow cover, corrected and standardized -'frsn15h_corsta' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Missing -'Missing' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -############### table2Version 130 ############ -############### PMP ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 130 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'msl' = { - table2Version = 130 ; - indicatorOfParameter = 1 ; - } -#Temperature -'t' = { - table2Version = 130 ; - indicatorOfParameter = 11 ; - } -#Visibility -'vis' = { - table2Version = 130 ; - indicatorOfParameter = 20 ; - } -#u-component of wind -'u' = { - table2Version = 130 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'v' = { - table2Version = 130 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'r' = { - table2Version = 130 ; - indicatorOfParameter = 52 ; - } -#Probability of frozen rain -'fzrpr' = { - table2Version = 130 ; - indicatorOfParameter = 58 ; - } -#Probability thunderstorm -'tstm' = { - table2Version = 130 ; - indicatorOfParameter = 60 ; - } -#Total_precipitation -'tp' = { - table2Version = 130 ; - indicatorOfParameter = 61 ; - } -#Water_equiv._of_snow_depth -'sdwe' = { - table2Version = 130 ; - indicatorOfParameter = 65 ; - } -#Area_time_min_totalcloudcover -'tccarmin' = { - table2Version = 130 ; - indicatorOfParameter = 67 ; - } -#Area_time_max_totalcloudcover -'tccarmax' = { - table2Version = 130 ; - indicatorOfParameter = 68 ; - } -#Area_time_median_totalcloudcover -'tccarmedian' = { - table2Version = 130 ; - indicatorOfParameter = 69 ; - } -#Area_time_mean_totalcloudcover -'tccarmean' = { - table2Version = 130 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'tcc' = { - table2Version = 130 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 130 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 130 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'mcc' = { - table2Version = 130 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 130 ; - indicatorOfParameter = 75 ; - } -#cloud mask -'cm' = { - table2Version = 130 ; - indicatorOfParameter = 77 ; - } -#Index 2m maxtemperatur over 3 dygn -'2tmax3dind' = { - table2Version = 130 ; - indicatorOfParameter = 100 ; - } -#EPS T mean -'epstm' = { - table2Version = 130 ; - indicatorOfParameter = 110 ; - } -#EPS T standard deviation -'epststdv' = { - table2Version = 130 ; - indicatorOfParameter = 111 ; - } -#Maximum wind (mean 10 min) -'maxws' = { - table2Version = 130 ; - indicatorOfParameter = 130 ; - } -#Wind gust -'gust' = { - table2Version = 130 ; - indicatorOfParameter = 131 ; - } -#Cloud base (significant) -'cb_sig' = { - table2Version = 130 ; - indicatorOfParameter = 135 ; - } -#Cloud top (significant) -'ct_sig' = { - table2Version = 130 ; - indicatorOfParameter = 136 ; - } -#Omradesnederbord gridpunkts-min -'parmin2' = { - table2Version = 130 ; - indicatorOfParameter = 137 ; - } -#Omradesnederbord gridpunkts-max -'parmax2' = { - table2Version = 130 ; - indicatorOfParameter = 138 ; - } -#Omradesnederbord gridpunkts-medel -'parmean2' = { - table2Version = 130 ; - indicatorOfParameter = 139 ; - } -#Precipitation intensity total -'pit' = { - table2Version = 130 ; - indicatorOfParameter = 140 ; - } -#Precipitation intensity snow -'pis' = { - table2Version = 130 ; - indicatorOfParameter = 141 ; - } -#Area_time_min_precipitation -'parmin' = { - table2Version = 130 ; - indicatorOfParameter = 142 ; - } -#Area_time_max_precipitation -'parmax' = { - table2Version = 130 ; - indicatorOfParameter = 143 ; - } -#Precipitation type, conv 0, large scale 1, no prec -9 -'ptype' = { - table2Version = 130 ; - indicatorOfParameter = 145 ; - } -#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle -'pcat' = { - table2Version = 130 ; - indicatorOfParameter = 146 ; - } -#Vadersymbol -'Wsymb' = { - table2Version = 130 ; - indicatorOfParameter = 147 ; - } -#Area_time_mean_precipitation -'parmean' = { - table2Version = 130 ; - indicatorOfParameter = 148 ; - } -#Area_time_median_precipitation -'parmedian' = { - table2Version = 130 ; - indicatorOfParameter = 149 ; - } -#Missing -'Missing' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -############### table2Version 131 ############ -############### RCA ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 131 ; - indicatorOfParameter = 0 ; - } -#Sea surface temperature (LAKE) -'sstLAKE' = { - table2Version = 131 ; - indicatorOfParameter = 11 ; - } -#Current east -'ecurr' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Current north -'ncurr' = { - table2Version = 131 ; - indicatorOfParameter = 50 ; - } -#Snowdepth in Probe -'sd_pr' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Ice concentration (LAKE) -'iccLAKE' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Ice thickness Probe-lake -'icth_pr' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Temperature ABC-lake -'t_ABC' = { - table2Version = 131 ; - indicatorOfParameter = 150 ; - } -#Temperature C-lake -'t_C' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Temperature D-lake -'t_D' = { - table2Version = 131 ; - indicatorOfParameter = 152 ; - } -#Temperature E-lake -'t_E' = { - table2Version = 131 ; - indicatorOfParameter = 153 ; - } -#Area ABC-lake -'ar_ABC' = { - table2Version = 131 ; - indicatorOfParameter = 160 ; - } -#Depth ABC-lake -'dp_ABC' = { - table2Version = 131 ; - indicatorOfParameter = 161 ; - } -#C-lakes -'Clake' = { - table2Version = 131 ; - indicatorOfParameter = 162 ; - } -#D-lakes -'Dlake' = { - table2Version = 131 ; - indicatorOfParameter = 163 ; - } -#E-lakes -'Elake' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#Ice thickness ABC-lake -'icth_ABC' = { - table2Version = 131 ; - indicatorOfParameter = 170 ; - } -#Ice thickness C-lake -'icth_C' = { - table2Version = 131 ; - indicatorOfParameter = 171 ; - } -#Ice thickness D-lake -'icth_D' = { - table2Version = 131 ; - indicatorOfParameter = 172 ; - } -#Ice thickness E-lake -'icth_E' = { - table2Version = 131 ; - indicatorOfParameter = 173 ; - } -#Sea surface temperature (T) -'sst' = { - table2Version = 131 ; - indicatorOfParameter = 180 ; - } -#Ice concentration (I) -'icc' = { - table2Version = 131 ; - indicatorOfParameter = 183 ; - } -#Fraction lake -'fl' = { - table2Version = 131 ; - indicatorOfParameter = 196 ; - } -#Black ice thickness in Probe -'bit_pr' = { - table2Version = 131 ; - indicatorOfParameter = 241 ; - } -#Vallad istjocklek i Probe -'icth_ri' = { - table2Version = 131 ; - indicatorOfParameter = 244 ; - } -#Internal ice concentration in Probe -'intic_pr' = { - table2Version = 131 ; - indicatorOfParameter = 245 ; - } -#Isfrontlaege i Probe -'icfr_pr' = { - table2Version = 131 ; - indicatorOfParameter = 246 ; - } -#Heat in Probe -'heat_pr' = { - table2Version = 131 ; - indicatorOfParameter = 250 ; - } -#Turbulent Kintetic Energy -'TKE' = { - table2Version = 131 ; - indicatorOfParameter = 251 ; - } -#Dissipation rate Turbulent Kinetic Energy -'TKEdiss' = { - table2Version = 131 ; - indicatorOfParameter = 252 ; - } -#Missing -'Missing' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -############### table2Version 133 ############ -############### Hiromb ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 133 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'MSL' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#Temperature -'t' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Potential temperature -'pt' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'ws' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#U-component of Wind -'u' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#V-component of Wind -'v' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Stream function -'strf' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'mntsf' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Z-component of velocity (pressure) -'wcur_pr' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Z-component of velocity (geometric) -'wcur_ge' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'absv' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'vo' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'d' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'vshu' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vshv' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Direction of horizontal current -'dirhcur' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Speed of horizontal current -'spdhcur' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#U-comp of Current -'ucur' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#V-comp of Current -'vcur' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'q' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snow Depth -'sd' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'mld' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#Water temperature -'wtmp' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea level from mean -'dslm' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Salinity -'s' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Ice Cover -'icec' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Total ice thickness -'icetk' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 133 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 133 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 133 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 133 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 133 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 133 ; - indicatorOfParameter = 98 ; - } -#Significant wave height -'swh' = { - table2Version = 133 ; - indicatorOfParameter = 100 ; - } -#Direction of Wind Waves -'wvdir' = { - table2Version = 133 ; - indicatorOfParameter = 101 ; - } -#Sign Height Wind Waves -'shww' = { - table2Version = 133 ; - indicatorOfParameter = 102 ; - } -#Mean Period Wind Waves -'mpww' = { - table2Version = 133 ; - indicatorOfParameter = 103 ; - } -#Direction of Swell Waves -'swdir' = { - table2Version = 133 ; - indicatorOfParameter = 104 ; - } -#Sign Height Swell Waves -'shps' = { - table2Version = 133 ; - indicatorOfParameter = 105 ; - } -#Mean Period Swell Waves -'swper' = { - table2Version = 133 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'dirpw' = { - table2Version = 133 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'perpw' = { - table2Version = 133 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 133 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'persw' = { - table2Version = 133 ; - indicatorOfParameter = 110 ; - } -#Mean period of waves -'mpw' = { - table2Version = 133 ; - indicatorOfParameter = 111 ; - } -#Mean direction of Waves -'wadir' = { - table2Version = 133 ; - indicatorOfParameter = 112 ; - } -#Peak period of 1D spectra -'pp1d' = { - table2Version = 133 ; - indicatorOfParameter = 113 ; - } -#Skin velocity, x-comp. -'usurf' = { - table2Version = 133 ; - indicatorOfParameter = 130 ; - } -#Skin velocity, y-comp. -'vsurf' = { - table2Version = 133 ; - indicatorOfParameter = 131 ; - } -#Nitrate -'NO3' = { - table2Version = 133 ; - indicatorOfParameter = 151 ; - } -#Ammonium -'NH4' = { - table2Version = 133 ; - indicatorOfParameter = 152 ; - } -#Phosphate -'PO4' = { - table2Version = 133 ; - indicatorOfParameter = 153 ; - } -#Oxygen -'O2' = { - table2Version = 133 ; - indicatorOfParameter = 154 ; - } -#Phytoplankton -'phpl' = { - table2Version = 133 ; - indicatorOfParameter = 155 ; - } -#Zooplankton -'zpl' = { - table2Version = 133 ; - indicatorOfParameter = 156 ; - } -#Detritus -'dtr' = { - table2Version = 133 ; - indicatorOfParameter = 157 ; - } -#Bentos nitrogen -'benN' = { - table2Version = 133 ; - indicatorOfParameter = 158 ; - } -#Bentos phosphorus -'benP' = { - table2Version = 133 ; - indicatorOfParameter = 159 ; - } -#Silicate -'SiO4' = { - table2Version = 133 ; - indicatorOfParameter = 160 ; - } -#Biogenic silica -'SiO2_bi' = { - table2Version = 133 ; - indicatorOfParameter = 161 ; - } -#Light in water column -'li_wacol' = { - table2Version = 133 ; - indicatorOfParameter = 162 ; - } -#Inorganic suspended matter -'inorg_mat' = { - table2Version = 133 ; - indicatorOfParameter = 163 ; - } -#Diatomes (algae) -'diat' = { - table2Version = 133 ; - indicatorOfParameter = 164 ; - } -#Flagellates (algae) -'flag' = { - table2Version = 133 ; - indicatorOfParameter = 165 ; - } -#Nitrate (aggregated) -'NO3_agg' = { - table2Version = 133 ; - indicatorOfParameter = 166 ; - } -#Turbulent Kinetic Energy -'TKE' = { - table2Version = 133 ; - indicatorOfParameter = 200 ; - } -#Dissipation rate of TKE -'DTKE' = { - table2Version = 133 ; - indicatorOfParameter = 201 ; - } -#Eddy viscosity -'Km' = { - table2Version = 133 ; - indicatorOfParameter = 202 ; - } -#Eddy diffusivity -'Kh' = { - table2Version = 133 ; - indicatorOfParameter = 203 ; - } -# Level ice thickness -'hlev' = { - table2Version = 133 ; - indicatorOfParameter = 220 ; - } -#Ridged ice thickness -'hrdg' = { - table2Version = 133 ; - indicatorOfParameter = 221 ; - } -#Ice ridge height -'Rh' = { - table2Version = 133 ; - indicatorOfParameter = 222 ; - } -#Ice ridge density -'Rd' = { - table2Version = 133 ; - indicatorOfParameter = 223 ; - } -#U-mean (prev. timestep) -'ucurmean' = { - table2Version = 133 ; - indicatorOfParameter = 231 ; - } -#V-mean (prev. timestep) -'vcurmean' = { - table2Version = 133 ; - indicatorOfParameter = 232 ; - } -#W-mean (prev. timestep) -'wcurmean' = { - table2Version = 133 ; - indicatorOfParameter = 233 ; - } -#Snow temperature -'tsn' = { - table2Version = 133 ; - indicatorOfParameter = 239 ; - } -#Total depth in meters -'dpt' = { - table2Version = 133 ; - indicatorOfParameter = 243 ; - } -#Missing -'Missing' = { - table2Version = 133 ; - indicatorOfParameter = 255 ; - } -############### table2Version 134 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 0 ; - } -#C2H6/Ethane -'C2H6' = { - table2Version = 134 ; - indicatorOfParameter = 1 ; - } -#NC4H10/N-butane -'NC4H10' = { - table2Version = 134 ; - indicatorOfParameter = 2 ; - } -#C2H4/Ethene -'C2H4' = { - table2Version = 134 ; - indicatorOfParameter = 3 ; - } -#C3H6/Propene -'C3H6' = { - table2Version = 134 ; - indicatorOfParameter = 4 ; - } -#OXYLENE/O-xylene -'OXYLENE' = { - table2Version = 134 ; - indicatorOfParameter = 5 ; - } -#HCHO/Formalydehyde -'HCHO' = { - table2Version = 134 ; - indicatorOfParameter = 6 ; - } -#CH3CHO/Acetaldehyde -'CH3CHO' = { - table2Version = 134 ; - indicatorOfParameter = 7 ; - } -#CH3COC2H5/Ethyl methyl keton -'CH3COC2H5' = { - table2Version = 134 ; - indicatorOfParameter = 8 ; - } -#MGLYOX/Methyl-glyoxal (CH3COCHO) -'MGLYOX' = { - table2Version = 134 ; - indicatorOfParameter = 9 ; - } -#GLYOX/Glyoxal (HCOCHO) -'GLYOX' = { - table2Version = 134 ; - indicatorOfParameter = 10 ; - } -#C5H8/Isoprene -'C5H8' = { - table2Version = 134 ; - indicatorOfParameter = 11 ; - } -#C2H5OH/Ethanol -'C2H5OH' = { - table2Version = 134 ; - indicatorOfParameter = 12 ; - } -#CH3OH/Metanol -'CH3OH' = { - table2Version = 134 ; - indicatorOfParameter = 13 ; - } -#HCOOH/Formic acid -'HCOOH' = { - table2Version = 134 ; - indicatorOfParameter = 14 ; - } -#CH3COOH/Acetic acid -'CH3COOH' = { - table2Version = 134 ; - indicatorOfParameter = 15 ; - } -#NMVOC_C/Total NMVOC as C -'NMVOC_C' = { - table2Version = 134 ; - indicatorOfParameter = 19 ; - } -#Reserved -'' = { - table2Version = 134 ; - indicatorOfParameter = 20 ; - } -#PAN/Peroxy acetyl nitrate -'PAN' = { - table2Version = 134 ; - indicatorOfParameter = 21 ; - } -#NO3/Nitrate radical -'NO3' = { - table2Version = 134 ; - indicatorOfParameter = 22 ; - } -#N2O5/Dinitrogen pentoxide -'N2O5' = { - table2Version = 134 ; - indicatorOfParameter = 23 ; - } -#ONIT/Organic nitrate -'ONIT' = { - table2Version = 134 ; - indicatorOfParameter = 24 ; - } -#ISONRO2/Isoprene-NO3 adduct -'ISONRO2' = { - table2Version = 134 ; - indicatorOfParameter = 25 ; - } -#HO2NO2/HO2NO2 -'HO2NO2' = { - table2Version = 134 ; - indicatorOfParameter = 26 ; - } -#MPAN -'MPAN' = { - table2Version = 134 ; - indicatorOfParameter = 27 ; - } -#ISONO3H -'ISONO3H' = { - table2Version = 134 ; - indicatorOfParameter = 28 ; - } -#HONO -'HONO' = { - table2Version = 134 ; - indicatorOfParameter = 29 ; - } -#Reserved -'' = { - table2Version = 134 ; - indicatorOfParameter = 30 ; - } -#HO2/Hydroperhydroxyl radical -'HO2' = { - table2Version = 134 ; - indicatorOfParameter = 31 ; - } -#H2/Molecular hydrogen -'H2' = { - table2Version = 134 ; - indicatorOfParameter = 32 ; - } -#O/Oxygen atomic ground state (3P) -'O' = { - table2Version = 134 ; - indicatorOfParameter = 33 ; - } -#O1D/Oxygen atomic first singlet state -'O1D' = { - table2Version = 134 ; - indicatorOfParameter = 34 ; - } -#Reserved -'-' = { - table2Version = 134 ; - indicatorOfParameter = 40 ; - } -#CH3O2/Methyl peroxy radical -'CH3O2' = { - table2Version = 134 ; - indicatorOfParameter = 41 ; - } -#CH3O2H/Methyl hydroperoxide -'CH3O2H' = { - table2Version = 134 ; - indicatorOfParameter = 42 ; - } -#C2H5O2/Ethyl peroxy radical -'C2H5O2' = { - table2Version = 134 ; - indicatorOfParameter = 43 ; - } -#CH3COO2/Peroxy acetyl radical -'CH3COO2' = { - table2Version = 134 ; - indicatorOfParameter = 44 ; - } -#SECC4H9O2/Buthyl peroxy radical -'SECC4H9O2' = { - table2Version = 134 ; - indicatorOfParameter = 45 ; - } -#CH3COCHO2CH3/peroxy radical from MEK -'CH3COCHO2CH3' = { - table2Version = 134 ; - indicatorOfParameter = 46 ; - } -#ACETOL/acetol (hydroxy acetone) -'ACETOL' = { - table2Version = 134 ; - indicatorOfParameter = 47 ; - } -#CH2O2CH2OH -'CH2O2CH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 48 ; - } -#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH -'CH3CHO2CH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 49 ; - } -#MAL/CH3COCH=CHCHO -'MAL' = { - table2Version = 134 ; - indicatorOfParameter = 50 ; - } -#MALO2/Peroxy radical from MAL + oh -'MALO2' = { - table2Version = 134 ; - indicatorOfParameter = 51 ; - } -#ISRO2/Peroxy radical from isoprene + oh -'ISRO2' = { - table2Version = 134 ; - indicatorOfParameter = 52 ; - } -#ISOPROD/Peroxy radical from ISOPROD -'ISOPROD' = { - table2Version = 134 ; - indicatorOfParameter = 53 ; - } -#C2H5OOH/Ethyl hydroperoxide -'C2H5OOH' = { - table2Version = 134 ; - indicatorOfParameter = 54 ; - } -#CH3COO2H -'CH3COO2H' = { - table2Version = 134 ; - indicatorOfParameter = 55 ; - } -#OXYO2H/Hydroperoxide from OXYO2 -'OXYO2H' = { - table2Version = 134 ; - indicatorOfParameter = 56 ; - } -#SECC4H9O2H/Buthyl hydroperoxide -'SECC4H9O2H' = { - table2Version = 134 ; - indicatorOfParameter = 57 ; - } -#CH2OOHCH2OH -'CH2OOHCH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 58 ; - } -#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 -'CH3CHOOHCH2OH' = { - table2Version = 134 ; - indicatorOfParameter = 59 ; - } -#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 -'CH3COCHO2HCH3' = { - table2Version = 134 ; - indicatorOfParameter = 60 ; - } -#MALO2H/Hydroperoxide from MALO2 + ho2 -'MALO2H' = { - table2Version = 134 ; - indicatorOfParameter = 61 ; - } -#IPRO2 -'IPRO2' = { - table2Version = 134 ; - indicatorOfParameter = 62 ; - } -#XO2 -'XO2' = { - table2Version = 134 ; - indicatorOfParameter = 63 ; - } -#OXYO2/Peroxy radical from o-xylene + oh -'OXYO2' = { - table2Version = 134 ; - indicatorOfParameter = 64 ; - } -#ISRO2H -'ISRO2H' = { - table2Version = 134 ; - indicatorOfParameter = 65 ; - } -#MVK -'MVK' = { - table2Version = 134 ; - indicatorOfParameter = 66 ; - } -#MVKO2 -'MVKO2' = { - table2Version = 134 ; - indicatorOfParameter = 67 ; - } -#MVKO2H -'MVKO2H' = { - table2Version = 134 ; - indicatorOfParameter = 68 ; - } -#BENZENE -'BENZENE' = { - table2Version = 134 ; - indicatorOfParameter = 70 ; - } -#ISNI -'ISNI' = { - table2Version = 134 ; - indicatorOfParameter = 74 ; - } -#ISNIR -'ISNIR' = { - table2Version = 134 ; - indicatorOfParameter = 75 ; - } -#ISNIRH -'ISNIRH' = { - table2Version = 134 ; - indicatorOfParameter = 76 ; - } -#MACR -'MACR' = { - table2Version = 134 ; - indicatorOfParameter = 77 ; - } -#AOH1 -'AOH1' = { - table2Version = 134 ; - indicatorOfParameter = 78 ; - } -#AOH1H -'AOH1H' = { - table2Version = 134 ; - indicatorOfParameter = 79 ; - } -#MACRO2 -'MACRO2' = { - table2Version = 134 ; - indicatorOfParameter = 80 ; - } -#MACO3H -'MACO3H' = { - table2Version = 134 ; - indicatorOfParameter = 81 ; - } -#MACOOH -'MACOOH' = { - table2Version = 134 ; - indicatorOfParameter = 82 ; - } -#CH2CCH3 -'CH2CCH3' = { - table2Version = 134 ; - indicatorOfParameter = 83 ; - } -#CH2CO2HCH3 -'CH2CO2HCH3' = { - table2Version = 134 ; - indicatorOfParameter = 84 ; - } -#BIGENE -'BIGENE' = { - table2Version = 134 ; - indicatorOfParameter = 90 ; - } -#BIGALK -'BIGALK' = { - table2Version = 134 ; - indicatorOfParameter = 91 ; - } -#TOLUENE -'TOLUENE' = { - table2Version = 134 ; - indicatorOfParameter = 92 ; - } -#CH2CHCN -'CH2CHCN' = { - table2Version = 134 ; - indicatorOfParameter = 100 ; - } -#(CH3)2NNH2/Dimetylhydrazin -'(CH3)2NNH2' = { - table2Version = 134 ; - indicatorOfParameter = 101 ; - } -#CH2OC2H3Cl/Epiklorhydrin -'CH2OC2H3Cl' = { - table2Version = 134 ; - indicatorOfParameter = 102 ; - } -#CH2OC2/Etylenoxid -'CH2OC2' = { - table2Version = 134 ; - indicatorOfParameter = 103 ; - } -#HF/Vaetefluorid -'HF' = { - table2Version = 134 ; - indicatorOfParameter = 105 ; - } -#Hcl/Vaeteklorid -'Hcl' = { - table2Version = 134 ; - indicatorOfParameter = 106 ; - } -#CS2/Koldisulfid -'CS2' = { - table2Version = 134 ; - indicatorOfParameter = 107 ; - } -#CH3NH2/Metylamin -'CH3NH2' = { - table2Version = 134 ; - indicatorOfParameter = 108 ; - } -#SF6/Sulphurhexafloride -'SF6' = { - table2Version = 134 ; - indicatorOfParameter = 110 ; - } -#HCN/Vaetecyanid -'HCN' = { - table2Version = 134 ; - indicatorOfParameter = 111 ; - } -#COCl2/Fosgen -'COCl2' = { - table2Version = 134 ; - indicatorOfParameter = 112 ; - } -#H2CCHCl/Vinylklorid -'H2CCHCl' = { - table2Version = 134 ; - indicatorOfParameter = 113 ; - } -#Missing -'Missing' = { - table2Version = 134 ; - indicatorOfParameter = 255 ; - } -############### table2Version 135 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 135 ; - indicatorOfParameter = 0 ; - } -#GRG1/MOZART specie -'GRG1' = { - table2Version = 135 ; - indicatorOfParameter = 1 ; - } -#GRG2/MOZART specie -'GRG2' = { - table2Version = 135 ; - indicatorOfParameter = 2 ; - } -#GRG3/MOZART specie -'GRG3' = { - table2Version = 135 ; - indicatorOfParameter = 3 ; - } -#GRG4/MOZART specie -'GRG4' = { - table2Version = 135 ; - indicatorOfParameter = 4 ; - } -#GRG5/MOZART specie -'GRG5' = { - table2Version = 135 ; - indicatorOfParameter = 5 ; - } -#VIS-340/Visibility at 340 nm -'VIS-340' = { - table2Version = 135 ; - indicatorOfParameter = 100 ; - } -#VIS-355/Visibility at 355 nm -'VIS-355' = { - table2Version = 135 ; - indicatorOfParameter = 101 ; - } -#VIS-380/Visibility at 380 nm -'VIS-380' = { - table2Version = 135 ; - indicatorOfParameter = 102 ; - } -#VIS-440/Visibility at 440 nm -'VIS-440' = { - table2Version = 135 ; - indicatorOfParameter = 103 ; - } -#VIS-500/Visibility at 500 nm -'VIS-500' = { - table2Version = 135 ; - indicatorOfParameter = 104 ; - } -#VIS-532/Visibility at 532 nm -'VIS-532' = { - table2Version = 135 ; - indicatorOfParameter = 105 ; - } -#VIS-675/Visibility at 675 nm -'VIS-675' = { - table2Version = 135 ; - indicatorOfParameter = 106 ; - } -#VIS-870/Visibility at 870 nm -'VIS-870' = { - table2Version = 135 ; - indicatorOfParameter = 107 ; - } -#VIS-1020/Visibility at 1020 nm -'VIS-1020' = { - table2Version = 135 ; - indicatorOfParameter = 108 ; - } -#VIS-1064/Visibility at 1064 nm -'VIS-1064' = { - table2Version = 135 ; - indicatorOfParameter = 109 ; - } -#VIS-3500/Visibility at 3500 nm -'VIS-3500' = { - table2Version = 135 ; - indicatorOfParameter = 110 ; - } -#VIS-10000/Visibility at 10000 nm -'VIS-10000' = { - table2Version = 135 ; - indicatorOfParameter = 111 ; - } -#BSCA-340/Backscatter at 340 nm -'BSCA-340' = { - table2Version = 135 ; - indicatorOfParameter = 120 ; - } -#BSCA-355/Backscatter at 355 nm -'BSCA-355' = { - table2Version = 135 ; - indicatorOfParameter = 121 ; - } -#BSCA-380/Backscatter at 380 nm -'BSCA-380' = { - table2Version = 135 ; - indicatorOfParameter = 122 ; - } -#BSCA-440/Backscatter at 440 nm -'BSCA-440' = { - table2Version = 135 ; - indicatorOfParameter = 123 ; - } -#BSCA-500/Backscatter at 500 nm -'BSCA-500' = { - table2Version = 135 ; - indicatorOfParameter = 124 ; - } -#BSCA-532/Backscatter at 532 nm -'BSCA-532' = { - table2Version = 135 ; - indicatorOfParameter = 125 ; - } -#BSCA-675/Backscatter at 675 nm -'BSCA-675' = { - table2Version = 135 ; - indicatorOfParameter = 126 ; - } -#BSCA-870/Backscatter at 870 nm -'BSCA-870' = { - table2Version = 135 ; - indicatorOfParameter = 127 ; - } -#BSCA-1020/Backscatter at 1020 nm -'BSCA-1020' = { - table2Version = 135 ; - indicatorOfParameter = 128 ; - } -#BSCA-1064/Backscatter at 1064 nm -'BSCA-1064' = { - table2Version = 135 ; - indicatorOfParameter = 129 ; - } -#BSCA-3500/Backscatter at 3500 nm -'BSCA-3500' = { - table2Version = 135 ; - indicatorOfParameter = 130 ; - } -#BSCA-10000/Backscatter at 10000 nm -'BSCA-10000' = { - table2Version = 135 ; - indicatorOfParameter = 131 ; - } -#EXT-340/Extinction at 340 nm -'EXT-340' = { - table2Version = 135 ; - indicatorOfParameter = 140 ; - } -#EXT-355/Extinction at 355 nm -'EXT-355' = { - table2Version = 135 ; - indicatorOfParameter = 141 ; - } -#EXT-380/Extinction at 380 nm -'EXT-380' = { - table2Version = 135 ; - indicatorOfParameter = 142 ; - } -#EXT-440/Extinction at 440 nm -'EXT-440' = { - table2Version = 135 ; - indicatorOfParameter = 143 ; - } -#EXT-500/Extinction at 500 nm -'EXT-500' = { - table2Version = 135 ; - indicatorOfParameter = 144 ; - } -#EXT-532/Extinction at 532 nm -'EXT-532' = { - table2Version = 135 ; - indicatorOfParameter = 145 ; - } -#EXT-675/Extinction at 675 nm -'EXT-675' = { - table2Version = 135 ; - indicatorOfParameter = 146 ; - } -#EXT-870/Extinction at 870 nm -'EXT-870' = { - table2Version = 135 ; - indicatorOfParameter = 147 ; - } -#EXT-1020/Extinction at 1020 nm -'EXT-1020' = { - table2Version = 135 ; - indicatorOfParameter = 148 ; - } -#EXT-1064/Extinction at 1064 nm -'EXT-1064' = { - table2Version = 135 ; - indicatorOfParameter = 149 ; - } -#EXT-3500/Extinction at 3500 nm -'EXT-3500' = { - table2Version = 135 ; - indicatorOfParameter = 150 ; - } -#EXT-10000/Extinction at 10000 nm -'EXT-10000' = { - table2Version = 135 ; - indicatorOfParameter = 151 ; - } -#AOD-340/Aerosol optical depth at 340 nm -'AOD-340' = { - table2Version = 135 ; - indicatorOfParameter = 160 ; - } -#AOD-355/Aerosol optical depth at 355 nm -'AOD-355' = { - table2Version = 135 ; - indicatorOfParameter = 161 ; - } -#AOD-380/Aerosol optical depth at 380 nm -'AOD-380' = { - table2Version = 135 ; - indicatorOfParameter = 162 ; - } -#AOD-440/Aerosol optical depth at 440 nm -'AOD-440' = { - table2Version = 135 ; - indicatorOfParameter = 163 ; - } -#AOD-500/Aerosol optical depth at 500 nm -'AOD-500' = { - table2Version = 135 ; - indicatorOfParameter = 164 ; - } -#AOD-532/Aerosol optical depth at 532 nm -'AOD-532' = { - table2Version = 135 ; - indicatorOfParameter = 165 ; - } -#AOD-675/Aerosol optical depth at 675 nm -'AOD-675' = { - table2Version = 135 ; - indicatorOfParameter = 166 ; - } -#AOD-870/Aerosol optical depth at 870 nm -'AOD-870' = { - table2Version = 135 ; - indicatorOfParameter = 167 ; - } -#AOD-1020/Aerosol optical depth at 1020 nm -'AOD-1020' = { - table2Version = 135 ; - indicatorOfParameter = 168 ; - } -#AOD-1064/Aerosol optical depth at 1064 nm -'AOD-1064' = { - table2Version = 135 ; - indicatorOfParameter = 169 ; - } -#AOD-3500/Aerosol optical depth at 3500 nm -'AOD-3500' = { - table2Version = 135 ; - indicatorOfParameter = 170 ; - } -#AOD-10000/Aerosol optical depth at 10000 nm -'AOD-10000' = { - table2Version = 135 ; - indicatorOfParameter = 171 ; - } -#Rain fraction of total cloud water -'fra' = { - table2Version = 135 ; - indicatorOfParameter = 208 ; - } -#Rain factor -'facra' = { - table2Version = 135 ; - indicatorOfParameter = 209 ; - } -#Total column integrated rain -'tqr' = { - table2Version = 135 ; - indicatorOfParameter = 210 ; - } -#Total column integrated snow -'tqs' = { - table2Version = 135 ; - indicatorOfParameter = 211 ; - } -#Total water precipitation -'twatp' = { - table2Version = 135 ; - indicatorOfParameter = 212 ; - } -#Total snow precipitation -'tsnowp' = { - table2Version = 135 ; - indicatorOfParameter = 213 ; - } -#Total column water (Vertically integrated total water) -'tcw' = { - table2Version = 135 ; - indicatorOfParameter = 214 ; - } -#Large scale precipitation rate -'lsprate' = { - table2Version = 135 ; - indicatorOfParameter = 215 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - table2Version = 135 ; - indicatorOfParameter = 216 ; - } -#Large scale snowfall rate water equivalent -'prs_gsp' = { - table2Version = 135 ; - indicatorOfParameter = 217 ; - } -#Total snowfall rate -'tsrate' = { - table2Version = 135 ; - indicatorOfParameter = 218 ; - } -#Convective snowfall rate -'csrate' = { - table2Version = 135 ; - indicatorOfParameter = 219 ; - } -#Large scale snowfall rate -'lssrate' = { - table2Version = 135 ; - indicatorOfParameter = 220 ; - } -#Snow depth water equivalent -'sdwe' = { - table2Version = 135 ; - indicatorOfParameter = 221 ; - } -#Snow evaporation -'se' = { - table2Version = 135 ; - indicatorOfParameter = 222 ; - } -#Total column integrated water vapour -'tciwv' = { - table2Version = 135 ; - indicatorOfParameter = 223 ; - } -#Rain precipitation rate -'rprate' = { - table2Version = 135 ; - indicatorOfParameter = 224 ; - } -#Snow precipitation rate -'sprate' = { - table2Version = 135 ; - indicatorOfParameter = 225 ; - } -#Freezing rain precipitation rate -'fprate' = { - table2Version = 135 ; - indicatorOfParameter = 226 ; - } -#Ice pellets precipitation rate -'iprate' = { - table2Version = 135 ; - indicatorOfParameter = 227 ; - } -#Specific cloud liquid water content -'clwc' = { - table2Version = 135 ; - indicatorOfParameter = 228 ; - } -#Specific cloud ice water content -'ciwc' = { - table2Version = 135 ; - indicatorOfParameter = 229 ; - } -#Specific rain water content -'crwc' = { - table2Version = 135 ; - indicatorOfParameter = 230 ; - } -#Specific snow water content -'cswc' = { - table2Version = 135 ; - indicatorOfParameter = 231 ; - } -#u-component of wind (gust) -'ugust' = { - table2Version = 135 ; - indicatorOfParameter = 232 ; - } -#v-component of wind (gust) -'vgust' = { - table2Version = 135 ; - indicatorOfParameter = 233 ; - } -#Vertical speed shear -'vwsh' = { - table2Version = 135 ; - indicatorOfParameter = 234 ; - } -#Horizontal momentum flux -'mflx' = { - table2Version = 135 ; - indicatorOfParameter = 235 ; - } -#u-component storm motion -'ustm' = { - table2Version = 135 ; - indicatorOfParameter = 236 ; - } -#v-component storm motion -'vstm' = { - table2Version = 135 ; - indicatorOfParameter = 237 ; - } -#Drag coefficient -'cd' = { - table2Version = 135 ; - indicatorOfParameter = 238 ; - } -#Eta coordinate vertical velocity -'eta' = { - table2Version = 135 ; - indicatorOfParameter = 239 ; - } -#Altimeter setting -'alts' = { - table2Version = 135 ; - indicatorOfParameter = 240 ; - } -#Thickness -'thick' = { - table2Version = 135 ; - indicatorOfParameter = 241 ; - } -#Pressure altitude -'presalt' = { - table2Version = 135 ; - indicatorOfParameter = 242 ; - } -#Density altitude -'denalt' = { - table2Version = 135 ; - indicatorOfParameter = 243 ; - } -#5-wave geopotential height -'5wavh' = { - table2Version = 135 ; - indicatorOfParameter = 244 ; - } -#Zonal flux of gravity wave stress -'u-gwd' = { - table2Version = 135 ; - indicatorOfParameter = 245 ; - } -#Meridional flux of gravity wave stress -'v-gwd' = { - table2Version = 135 ; - indicatorOfParameter = 246 ; - } -#Planetary boundary layer height -'hbpl' = { - table2Version = 135 ; - indicatorOfParameter = 247 ; - } -#5-wave geopotential height anomaly -'5wava' = { - table2Version = 135 ; - indicatorOfParameter = 248 ; - } -#Standard deviation of sub-gridscale orography -'stdsgor' = { - table2Version = 135 ; - indicatorOfParameter = 249 ; - } -#Angle of sub-gridscale orography -'angsgor' = { - table2Version = 135 ; - indicatorOfParameter = 250 ; - } -#Slope of sub-gridscale orography -'slsgor' = { - table2Version = 135 ; - indicatorOfParameter = 251 ; - } -#Gravity wave dissipation -'gwd' = { - table2Version = 135 ; - indicatorOfParameter = 252 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - table2Version = 135 ; - indicatorOfParameter = 253 ; - } -#Natural logarithm of pressure in Pa -'nlpres' = { - table2Version = 135 ; - indicatorOfParameter = 254 ; - } -#Missing -'Missing' = { - table2Version = 135 ; - indicatorOfParameter = 255 ; - } -############### table2Version 136 ############ -############### Strang ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 136 ; - indicatorOfParameter = 0 ; - } -#Pressure -'pres' = { - table2Version = 136 ; - indicatorOfParameter = 1 ; - } -#Temperature -'t' = { - table2Version = 136 ; - indicatorOfParameter = 11 ; - } -#Specific humidity -'q' = { - table2Version = 136 ; - indicatorOfParameter = 51 ; - } -#Precipitable water -'pwat' = { - table2Version = 136 ; - indicatorOfParameter = 54 ; - } -#Snow depth -'sd' = { - table2Version = 136 ; - indicatorOfParameter = 66 ; - } -#Total cloud cover -'tcc' = { - table2Version = 136 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'lcc' = { - table2Version = 136 ; - indicatorOfParameter = 73 ; - } -#Probability for significant cloud base -'cb_sigpr' = { - table2Version = 136 ; - indicatorOfParameter = 77 ; - } -#Significant cloud base -'cb_sig' = { - table2Version = 136 ; - indicatorOfParameter = 78 ; - } -#Significant cloud top -'ct_sig' = { - table2Version = 136 ; - indicatorOfParameter = 79 ; - } -#Albedo (lev 0=global radiation lev 1=UV radiation) -'al' = { - table2Version = 136 ; - indicatorOfParameter = 84 ; - } -#Ice concentration -'icec' = { - table2Version = 136 ; - indicatorOfParameter = 91 ; - } -#CIE-weighted UV irradiance -'UVirr' = { - table2Version = 136 ; - indicatorOfParameter = 116 ; - } -#Global irradiance -'GLirr' = { - table2Version = 136 ; - indicatorOfParameter = 117 ; - } -#Beam normal irradiance -'BNirr' = { - table2Version = 136 ; - indicatorOfParameter = 118 ; - } -#Sunshine duration -'sun' = { - table2Version = 136 ; - indicatorOfParameter = 119 ; - } -#PAR -'PAR' = { - table2Version = 136 ; - indicatorOfParameter = 120 ; - } -#Accumulated precipitation, 1 hours -'pr_1h' = { - table2Version = 136 ; - indicatorOfParameter = 165 ; - } -#Accumulated fresh snow, 1 hours -'sn_1h' = { - table2Version = 136 ; - indicatorOfParameter = 175 ; - } -#Total ozone -'totO3' = { - table2Version = 136 ; - indicatorOfParameter = 206 ; - } -#Missing -'Missing' = { - table2Version = 136 ; - indicatorOfParameter = 255 ; - } -############### table2Version 137 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 137 ; - indicatorOfParameter = 0 ; - } -#Concentration of SOX, excluding seasalt, in air -'XSOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 1 ; - } -#Drydeposition of SOX, excluding seasalt, mixed gound -'XSOX_DRY_MIX' = { - table2Version = 137 ; - indicatorOfParameter = 2 ; - } -#Drydeposition of SOX, excluding seasalt, Pasture -'XSOX_DRY_PA' = { - table2Version = 137 ; - indicatorOfParameter = 3 ; - } -#Drydeposition of SOX, excluding seasalt, Arable -'XSOX_DRY_AR' = { - table2Version = 137 ; - indicatorOfParameter = 4 ; - } -#Drydeposition of SOX, excluding seasalt, Beach Oak -'XSOX_DRY_BO' = { - table2Version = 137 ; - indicatorOfParameter = 5 ; - } -#Drydeposition of SOX, excluding seasalt, Deciduous -'XSOX_DRY_DE' = { - table2Version = 137 ; - indicatorOfParameter = 6 ; - } -#Drydeposition of SOX, excluding seasalt, Spruce -'XSOX_DRY_SP' = { - table2Version = 137 ; - indicatorOfParameter = 7 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 10 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 11 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 12 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 13 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 14 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 15 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 16 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 17 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 20 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 21 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 22 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 23 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 24 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 25 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 26 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 27 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 30 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 31 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 32 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 33 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 34 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 35 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 36 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 37 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 40 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 41 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 42 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 43 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 44 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 45 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 46 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 47 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 50 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 51 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 52 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 53 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 54 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 55 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 56 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 57 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 60 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 61 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 62 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 63 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 64 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 65 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 66 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 67 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 70 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 71 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 72 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 73 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 74 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 75 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 76 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 77 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 100 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 101 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 102 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 103 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 104 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 105 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 106 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 107 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 110 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 111 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 112 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 113 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 114 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 115 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 116 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 117 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 120 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 121 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 122 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 123 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 124 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 125 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 126 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 127 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'XSOX_DRY_PI' = { - table2Version = 137 ; - indicatorOfParameter = 130 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'XSOX_DRY_WE' = { - table2Version = 137 ; - indicatorOfParameter = 131 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'XSOX_DRY_MH' = { - table2Version = 137 ; - indicatorOfParameter = 132 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'XSOX_DRY_UR' = { - table2Version = 137 ; - indicatorOfParameter = 133 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'XSOX_DRY_WA' = { - table2Version = 137 ; - indicatorOfParameter = 134 ; - } -#Wetdeposition of SOX, excluding seasalt -'XSOX_WET' = { - table2Version = 137 ; - indicatorOfParameter = 135 ; - } -#Total deposition of SOX, excluding seasalt -'XSOX_TOT' = { - table2Version = 137 ; - indicatorOfParameter = 136 ; - } -#Concentration of SOX in air -'SOX_HIL' = { - table2Version = 137 ; - indicatorOfParameter = 137 ; - } -#Missing -'Missing' = { - table2Version = 137 ; - indicatorOfParameter = 255 ; - } -############### table2Version 140 ############ -############### Blixtlokalisering ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 140 ; - indicatorOfParameter = 0 ; - } -#Cloud to ground discharge count -'CTGDC' = { - table2Version = 140 ; - indicatorOfParameter = 1 ; - } -#Cloud to cloud discharge count -'CTCDC' = { - table2Version = 140 ; - indicatorOfParameter = 2 ; - } -#Total discharge count -'TDC' = { - table2Version = 140 ; - indicatorOfParameter = 3 ; - } -#Cloud to ground accumulated absolute peek current -'CTGAAPC' = { - table2Version = 140 ; - indicatorOfParameter = 4 ; - } -#Cloud to cloud accumulated absolute peek current -'CTCAAPC' = { - table2Version = 140 ; - indicatorOfParameter = 5 ; - } -#Total accumulated absolute peek current -'TAAPC' = { - table2Version = 140 ; - indicatorOfParameter = 6 ; - } -#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) -'SCTGDC' = { - table2Version = 140 ; - indicatorOfParameter = 7 ; - } -#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) -'SCTCDC' = { - table2Version = 140 ; - indicatorOfParameter = 8 ; - } -#Significant total discharge count (discharges with absolute peek current above 100kA) -'STDC' = { - table2Version = 140 ; - indicatorOfParameter = 9 ; - } -#Missing -'Missing' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -############### table2Version 150 ############ -############### Hirlam postpr ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 150 ; - indicatorOfParameter = 0 ; - } -#Evaporation Penman formula -'eP' = { - table2Version = 150 ; - indicatorOfParameter = 57 ; - } -#Spray weather recomendation -'spw' = { - table2Version = 150 ; - indicatorOfParameter = 58 ; - } -#Missing -'Missing' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -############### table2Version 151 ############ -############### ECMWF postpr ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 151 ; - indicatorOfParameter = 0 ; - } -#Probability total precipitation between 1 and 10 mm -'tp_1_10' = { - table2Version = 151 ; - indicatorOfParameter = 1 ; - } -#Probability total precipitation between 10 and 50 mm -'tp_10_50' = { - table2Version = 151 ; - indicatorOfParameter = 2 ; - } -#Probability total precipitation more than 50 mm -'tp_>50' = { - table2Version = 151 ; - indicatorOfParameter = 3 ; - } -#Evaporation Penman formula -'eP' = { - table2Version = 151 ; - indicatorOfParameter = 57 ; - } -#Missing -'Missing' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -### HARMONIE tables ### -#Absolute divergence -'absd' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Absolute vorticity -'absv' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Surface aerosol soot (carbon) -'aerc' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'aerd' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Surface aerosol land -'aerl' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol sea -'aers' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Albedo -'al' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Albedo of bare ground -'alb' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'alv' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#A Ozone -'ao' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#Analysed RMS of PHI (CANARI) -'armsp' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Snow albedo -'asn' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Anisotropy coeff of topography -'atop' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#B Ozone -'bo' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#Brightness temperature -'btmp' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#CAPE out of the model -'cape' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#Cloud base -'cb' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Cloud ice water content -'ciwc' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Fraction of clay within soil -'clfr' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#C Ozone -'co' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Convective rain -'cr' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Convective snowfall -'csf' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#LW net clear sky rad -'cslw' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#SW net clear sky rad -'cssw' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#Cloud top -'ct' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Cloud water -'cwat' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Divergence -'d' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Density -'den' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Direction of ice drift -'diced' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Direction of current -'dirc' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Downdraft mesh fraction -'dnmf' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Downdraft omega -'dnom' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Direction of main axis of topography -'dtop' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Duration of total precipitation -'dutp' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Dominant vegetation index -'dvi' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Evaporation -'e' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Gust -'fg' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Forecast RMS of PHI (CANARI) -'frmsp' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#Fraction of urban land -'ful' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Geopotential Height -'gh' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Global radiation flux -'grad' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Graupel -'grpl' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Gravity wave stress U-comp -'gwdu' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'gwdv' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#Geometrical height -'h' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Hail -'hail' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#High cloud cover -'hcc' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Ice cover (1=land, 0=sea) -'icec' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice divergence -'iced' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Ice growth rate -'iceg' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Icing index -'icei' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Ice thickness -'icetk' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Image data -'imgd' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Leaf area index -'lai' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Lapse rate -'lapr' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Low cloud cover -'lcc' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Lightning -'lgt' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; - } -#Latent heat flux through evaporation -'lhe' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Latent Heat Sublimation -'lhsub' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Large-scale snowfall -'lsf' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Land-sea mask -'lsm' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#large scale precipitation (water) -'lsp' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#MOCON out of the model -'mcn' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Mean direction of primary swell -'mdps' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Mixed layer depth -'mld' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Montgomery stream Function -'mntsf' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Mean period of primary swell -'mpps' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Surface downward moon radiation -'mrad' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#Mask of significant cloud amount -'msca' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net short-wave radiationflux(atmosph.top) -'nswrt' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Pressure departure -'pdep' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Precipitation rate -'prate' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Pressure -'pres' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Pressure anomaly -'presa' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Precipitation Type -'prtp' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'psct' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'pscw' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Pseudo satellite image: water vapour Tb -'pstb' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'pstbc' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Potential temperature -'pt' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pressure tendency -'ptend' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'pv' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#Precipitable water -'pwat' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Specific humidity -'q' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'r' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Rain -'rain' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Radar spectra (3) -'rdsp' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Simulated reflectivity -'refl' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Resistance to evapotransiration -'rev' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'rmn' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'rmx' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Runoff -'ro' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Snow density -'rsn' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Salinity -'s' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Saturation deficit -'satd' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Snow depth water equivalent -'sdp' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Surface emissivity -'se' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Snow history -'shis' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Speed of ice drift -'siced' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#Soil depth -'sld' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Fraction of sand within soil -'slfr' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Surface latent heat flux -'slhf' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Soil Temperature -'slt' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil Moisture -'sm' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Stomatal minimum resistance -'smnr' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Snow melt -'snom' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Snow -'snow' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Snow Sublimation -'snsub' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Speed of current -'spc' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#Stratiform rain -'srain' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Surface roughness * g -'srg' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Surface sensible heat flux -'sshf' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Standard deviation of orography * g -'stdo' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Stream function -'strf' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Secondary wave period -'swp' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Soil wetness -'swv' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Temperature -'t' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Temperature anomaly -'ta' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Total column ozone -'tco' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Dew point temperature -'td' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#TKE -'tke' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature -'tmax' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Total water vapour -'totqv' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Total precipitation -'tp' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Total solid precipitation -'tpsolid' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Vertical velocity -'tw' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#U component of wind -'u' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#U-component of current -'ucurr' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Gust, u-component -'ugst' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#U-component of ice drift -'uice' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#Updraft mesh fraction -'upmf' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Updraft omega -'upom' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#V component of wind -'v' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#V-component of current -'vcurr' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Vertical Divergence -'vdiv' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Vegetation fraction -'veg' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Gust, v-component -'vgst' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#V-component of ice drift -'vice' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Visibility -'vis' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Vapour pressure -'vp' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Virtual potential temperature -'vptmp' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Vertical velocity -'w' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Water on canopy (Interception content) -'w_i' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Water on canopy (Interception content) -'w_so_ice' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Wind direction -'wdir' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Water evaporation -'wevap' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Wind speed -'ws' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#Water temperature -'wtmp' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Wave spectra (3) -'wvsp' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#AROME hail diagnostic -'xhail' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Geopotential -'z' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Thermal roughness length * g -'zt' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/sort.table b/eccodes/definitions.save/grib1/localConcepts/eswi/sort.table deleted file mode 100644 index a4da1613..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/sort.table +++ /dev/null @@ -1,100 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# -# Model 50 SMHI local definitions sort -# -# Sort parameter in local extension -# -0 0 none -1 1 Atm. conc. [g/kg] -2 2 Log Atm. conc. [g/kg] -3 3 Atm. conc. [g/m3] -3 3 Atm. conc. [g/m3] -4 4 Log Atm. conc. [g/m3] -7 7 Atm. conc. [number/m3] -9 9 Atm. conc. [Bq/m3] -10 10 Log Atm. conc. [Bq/m3] -11 11 Atm. conc. at reference height [g/kg] -12 12 Atm. conc. at reference height [g/m3] -13 13 Log Atm. conc. at reference height [g/m3] -14 14 Total column [g/m2] -14 14 Column up to 6000m [g/m2] -14 14 Column up above 6000m [g/m2] -14 14 Max in column up to 6000m [g/m3] -14 14 Max in column above 6000m [g/m3] -15 15 Level at max in column up to 6000m [m] -15 15 Level at max in column above 6000m [m] -21 21 Integrated atm. conc. s [g/kg] -22 22 Log Integrated atm. conc. s [g/kg] -23 23 Integrated atm. conc. s [g/m3] -24 24 Logarith of Integrated atm. conc. s [g/m3] -27 27 Integrated atm. conc. s [number/m3] -29 29 Integrated atm. conc. s [Bq/m3] -30 30 Log Integrated atm. conc. s [Bq/m3] -51 51 Conc. in liquid water [g/m3] -53 53 Conc. in liquid water Equivalents/m3 -54 54 Conc. in liquid water [number/m3] -55 55 Conc. in liquid water [Bq/m3] -61 61 Conc. in ice water [g/m3] -63 63 Conc. in ice water Equivalents/m3 -64 64 Conc. in ice water [number/m3] -65 65 Conc. in ice water [Bq/m3] -71 71 Conc. in precipitation [g/m3] (mg/l) -73 73 Conc. in precipitation Equivalents/m3 -74 74 Conc. in precipitation [number/m3] -75 75 Conc. in precipitation [Bq/m3] -81 81 Dry deposition [g/m2] -82 82 Log Dry deposition [g/m2] -84 84 Dry deposition [number/m2] -85 85 Dry deposition [Bq/m2] -91 91 Wet deposition [g/m2] -92 92 Log Wet deposition [g/m2] -94 94 Wet deposition [number/m2] -95 95 Wet deposition [Bq/m2] -101 101 Total deposition [g/m2] -102 102 Log Total deposition [g/m2] -104 104 Total deposition [number/m2] -105 105 Total deposition [Bq/m2] -110 110 Emissions [ton] -111 111 Emissions [kg] -112 112 Emissions [g] -114 114 Emissions [number] -115 115 Emissions [Bq] -121 121 Emissions [kg/s] -122 122 Emissions [g/s] -124 124 Emissions [number/s] -125 125 Emissions [Bq/s] -131 131 Emissions [kg/(m2 s)] -132 132 Emissions [g/(m2 s)] -134 134 Emissions [number/(m2 s)] -135 135 Emissions [Bq/(m2 s)] -136 136 Surface emissions [kg/(m2 s)] -137 137 Surface emissions [g/(m2 s)] -138 138 Surface emissions [number/(m2 s)] -139 139 Surface emissions [Bq/(m2 s)] -150 150 Inhalation dose [nSv] -151 151 Ground dose [nSv] -152 152 Infinite cloud dose [nSv] -153 153 Sum of cloud and ground dose [nSv] -201 201 Dry deposition velocity [m/s] -202 202 Settling velocity [m/s] -203 203 Scavenging coefficient [1/s] -205 205 Degree hours or days for last day [K] -206 206 Current degree days [K] -207 207 Critical degree days [K] -208 208 Accum pollen emission [grains/m2] -209 209 Correction factor [fraction] -210 210 Aerosol optical depth [] -240 240 Deposition arrival since 1 Jan 1971 [days] -241 241 Latest deposition since 1 Jan 1971 [days] -242 242 Time of max activity since 1 Jan 1971 [days] -243 243 Max radioactive activity [Bq/m2] -244 244 Log Max radioactive activity -250 250 Relative occurrence [] -251 251 statistics [kg] -252 252 statistics [mol] -255 255 missing value diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def deleted file mode 100644 index be7abb05..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/sortConcept.def +++ /dev/null @@ -1,96 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 13 May 2013 -# modified: -# -######################### -"none"={matchSort=0;} -"cm"={matchSort=1;} -"lncm"={matchSort=2;} -"c"={matchSort=3;} -"cc"={matchSort=3;} -"lnc"={matchSort=4;} -"nr"={matchSort=7;} -"cbq"={matchSort=9;} -"lncbq"={matchSort=10;} -"cmrefh"={matchSort=11;} -"crefh"={matchSort=12;} -"lncrefh"={matchSort=13;} -"totcolumn"={matchSort=14;} -"loncolumn"={matchSort=14;} -"highcolumn"={matchSort=14;} -"lowmax"={matchSort=14;} -"highmax"={matchSort=14;} -"lowmaxz"={matchSort=15;} -"highmaxz"={matchSort=15;} -"icm"={matchSort=21;} -"lnicm"={matchSort=22;} -"ic"={matchSort=23;} -"lnic"={matchSort=24;} -"inr"={matchSort=27;} -"icbq"={matchSort=29;} -"lnicbq"={matchSort=30;} -"clw"={matchSort=51;} -"ceqlw"={matchSort=53;} -"cnrlw"={matchSort=54;} -"cbqlwc"={matchSort=55;} -"ciw"={matchSort=61;} -"ceqiw"={matchSort=63;} -"cnriw"={matchSort=64;} -"cbqiw"={matchSort=65;} -"cprec"={matchSort=71;} -"ceqprec"={matchSort=73;} -"cnprec"={matchSort=74;} -"cbqprec"={matchSort=75;} -"drydep"={matchSort=81;} -"lndrydep"={matchSort=82;} -"drydepnr"={matchSort=84;} -"drydepbq"={matchSort=85;} -"wetdep"={matchSort=91;} -"lnwetdep"={matchSort=92;} -"wetdepnr"={matchSort=94;} -"wetdepbq"={matchSort=95;} -"totdep"={matchSort=101;} -"lntotdep"={matchSort=102;} -"totdepnr"={matchSort=104;} -"totdepbq"={matchSort=105;} -"qton"={matchSort=110;} -"qkg"={matchSort=111;} -"qg"={matchSort=112;} -"qnr"={matchSort=114;} -"qbq"={matchSort=115;} -"qkgs"={matchSort=121;} -"qgs"={matchSort=122;} -"qns"={matchSort=124;} -"qbqs"={matchSort=125;} -"aqkgs"={matchSort=131;} -"aqgs"={matchSort=132;} -"aqnrs"={matchSort=134;} -"aqbqs"={matchSort=135;} -"aq0kgs"={matchSort=136;} -"aq0gs"={matchSort=137;} -"aq0nrs"={matchSort=138;} -"aq0bqs"={matchSort=139;} -"inhdose"={matchSort=150;} -"grddose"={matchSort=151;} -"clddose"={matchSort=152;} -"sumdose"={matchSort=153;} -"vd"={matchSort=201;} -"vs"={matchSort=202;} -"lamda"={matchSort=203;} -"tsum"={matchSort=205;} -"hsum"={matchSort=206;} -"hcrit"={matchSort=207;} -"raccum"={matchSort=208;} -"corr"={matchSort=209;} -"aod"={matchSort=210;} -"timearr"={matchSort=240;} -"timelat"={matchSort=241;} -"timemax"={matchSort=242;} -"maxactiv"={matchSort=243;} -"lnmaxactiv"={matchSort=244;} -"freq"={matchSort=250;} -"flux"={matchSort=251;} -"fluxmol"={matchSort=252;} -"missing"={matchSort=255;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def b/eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def deleted file mode 100644 index 5fe275cf..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/timeRepresConcept.def +++ /dev/null @@ -1,48 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 13 May 2013 -# modified: -# -######################### -"none"={matchTimeRepres=0;} -"3hMean"={matchTimeRepres=1;} -"diurnalMean"={matchTimeRepres=2;} -"1hMean"={matchTimeRepres=3;} -"monthlyMean"={matchTimeRepres=5;} -"mean"={matchTimeRepres=6;} -"yearMean"={matchTimeRepres=7;} -"max"={matchTimeRepres=10;} -"min"={matchTimeRepres=11;} -"dailyMax"={matchTimeRepres=12;} -"monthlyMax"={matchTimeRepres=14;} -"yearMax"={matchTimeRepres=16;} -"mMeanDayMax"={matchTimeRepres=17;} -"yMeanDayMax"={matchTimeRepres=18;} -"meanDayMax"={matchTimeRepres=19;} -"accum"={matchTimeRepres=20;} -"dayAccum"={matchTimeRepres=21;} -"monthAccum"={matchTimeRepres=22;} -"3hAccum"={matchTimeRepres=23;} -"3monthAccum"={matchTimeRepres=24;} -"6monthAccum"={matchTimeRepres=25;} -"yearAccum"={matchTimeRepres=26;} -"8hMean"={matchTimeRepres=30;} -"max8hMean"={matchTimeRepres=31;} -"meanMax8h"={matchTimeRepres=32;} -"maxMax8h"={matchTimeRepres=33;} -"perc98h1"={matchTimeRepres=40;} -"perc98d1"={matchTimeRepres=41;} -"perc90d1"={matchTimeRepres=42;} -"median"={matchTimeRepres=43;} -"likelyhood"={matchTimeRepres=44;} -"jointProb"={matchTimeRepres=45;} -"perc"={matchTimeRepres=46;} -"boundary"={matchTimeRepres=50;} -"firatGuess"={matchTimeRepres=51;} -"stdDev"={matchTimeRepres=52;} -"anaIncr"={matchTimeRepres=60;} -"anaErr"={matchTimeRepres=61;} -"bgErr"={matchTimeRepres=62;} -"quality"={matchTimeRepres=70;} -"missing"={matchTimeRepres=255;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table b/eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table deleted file mode 100644 index f98e3b3f..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/timerepres.table +++ /dev/null @@ -1,52 +0,0 @@ -######################### -## -## author: Sebastien Villaume -## created: 6 Oct 2011 -## modified: 13 May 2013 -## -# -# Model 50 (MATCH) SMHI local definitions timerep -# -# Time representation parameter in local extension -# -0 0 No representation specified -1 1 3 Hour mean value (hours) -2 2 Diurnal or Daily mean (hours) -3 3 1 Hour mean value (hours) -5 5 Monthly mean (month) -6 6 Mean from start (hours) -7 7 Annual mean (year) -10 10 Max value -11 11 Min value -12 12 Diurnal max -14 14 Monthly max -16 16 Annual max -17 17 Mean of daily-max -18 18 Mean of daily-max -19 19 Mean of daily-max -20 20 Acc. since start (hours) -21 21 Acc. over one day (hours) -22 22 Acc. over one month (months) -23 23 Acc. over one day (hours) -24 24 Acc. over three months (months) -25 25 Acc. over six months (months) -26 26 Acc. over one year (year) -30 30 Running 8-hour mean (hours) -31 31 Daily maximum of 8-hour mean -32 32 Mean of daily maximum of 8-hour mean -33 33 Max of daily maximum of 8-hour mean -40 40 98 percentil (hours) -41 41 98 percentil (day) -42 42 90 percentil (day) -43 43 Median -44 44 Likelihood -45 45 Joint probability -46 46 Percentile -50 50 Boundary value -51 51 First guess -52 52 Standard deviation -60 ANAINCR Analysis increment -61 ANAERR Analysis error -62 BGERR Background error -70 QUALITY Quality flag -255 255 missing value diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def deleted file mode 100644 index a312b4c2..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/typeOfLevel.def +++ /dev/null @@ -1,49 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 May 2013 -# -######################### -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'northTile' = {indicatorOfTypeOfLevel=191;} -'northEastTile' = {indicatorOfTypeOfLevel=192;} -'eastTile' = {indicatorOfTypeOfLevel=193;} -'southEastTile' = {indicatorOfTypeOfLevel=194;} -'southTile' = {indicatorOfTypeOfLevel=195;} -'southWestTile' = {indicatorOfTypeOfLevel=196;} -'westTile' = {indicatorOfTypeOfLevel=197;} -'northWestTile' = {indicatorOfTypeOfLevel=198;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} -'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions.save/grib1/localConcepts/eswi/units.def b/eccodes/definitions.save/grib1/localConcepts/eswi/units.def deleted file mode 100644 index ea2d049d..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/eswi/units.def +++ /dev/null @@ -1,5580 +0,0 @@ -############### table2Version 1 ############ -############### WMO/Hirlam ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 1 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to MSL -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pa/s' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'K*m2/kg/s' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geopotential -'m2/s2' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'Gpm' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Total ozone -'Dobson' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K/m' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar Spectra (1) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar Spectra (2) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar Spectra (3) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Gpm' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave Spectra (1) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave Spectra (2) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave Spectra (3) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Stream function -'m2/s' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m2/s' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'m2/s2' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coord. vertical velocity -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Pressure Vertical velocity -'Pa/s' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Geometric Vertical velocity -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#u-component of current -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#v-component of current -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'kg/kg' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'%' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'kg/kg' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Cloud Ice -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 58 ; - } -#Precipitation rate -'kg/m2/s' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snowfall rate water equivalent -'kg/m2/s' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Water equiv. of accum. snow depth -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Convective snow -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Large scale snow -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Water Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Deviation of sea level from mean -'m' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Surface roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Albedo -'%' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Soil temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'%' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Salinity -'kg/kg' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'kg/m3' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Water run off -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#u-component of ice drift -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#v-component of ice drift -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'1/s' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Significant height of combined wind waves and swell -'m' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Direction of wind waves -'deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'deg. true' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short wave radiation flux (surface) -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long wave radiation flux (surface) -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short wave radiation flux (top of atmos.) -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long wave radiation flux (top of atmos.) -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Brightness temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Radiance (with respect to wave number) -'W/m/sr' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W/m3/sr' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Latent heat net flux -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat net flux -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W/m2' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Momentum flux, u component -'N/m2' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v component -'N/m2' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'-' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Momentum flux -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 128 ; - } -#Humidity tendencies -'?' = { - table2Version = 1 ; - indicatorOfParameter = 129 ; - } -#Radiation at top of atmosphere -'?' = { - table2Version = 1 ; - indicatorOfParameter = 130 ; - } -#Cloud top temperature, infrared -'K' = { - table2Version = 1 ; - indicatorOfParameter = 131 ; - } -#Water vapor brightness temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 132 ; - } -#Water vapor brightness temperature, correction -'K' = { - table2Version = 1 ; - indicatorOfParameter = 133 ; - } -#Cloud water reflectivity -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 134 ; - } -#Maximum wind -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 135 ; - } -#Minimum wind -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 136 ; - } -#Integrated cloud condensate -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 137 ; - } -#Snow depth, cold snow -'m' = { - table2Version = 1 ; - indicatorOfParameter = 138 ; - } -#Open land snow depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 139 ; - } -#Temperature over land -'K' = { - table2Version = 1 ; - indicatorOfParameter = 140 ; - } -#Specific humidity over land -'kg/kg' = { - table2Version = 1 ; - indicatorOfParameter = 141 ; - } -#Relative humidity over land -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 142 ; - } -#Dew point over land -'K' = { - table2Version = 1 ; - indicatorOfParameter = 143 ; - } -#Slope fraction -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; - } -#Shadow fraction -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 161 ; - } -#Shadow parameter RSHA -'-' = { - table2Version = 1 ; - indicatorOfParameter = 162 ; - } -#Shadow parameter RSHB -'-' = { - table2Version = 1 ; - indicatorOfParameter = 163 ; - } -#Momentum vegetation roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 164 ; - } -#Surface slope -'-' = { - table2Version = 1 ; - indicatorOfParameter = 165 ; - } -#Sky wiew factor -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 166 ; - } -#Fraction of aspect -'-' = { - table2Version = 1 ; - indicatorOfParameter = 167 ; - } -#Heat roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 168 ; - } -#Albedo with solar angle correction -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 169 ; - } -#Soil wetness index -'-' = { - table2Version = 1 ; - indicatorOfParameter = 189 ; - } -#Snow albedo -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 190 ; - } -#Snow density -'?' = { - table2Version = 1 ; - indicatorOfParameter = 191 ; - } -#Water on canopy level -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 192 ; - } -#Surface soil ice -'m3/m3' = { - table2Version = 1 ; - indicatorOfParameter = 193 ; - } -#Fraction of surface type -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 194 ; - } -#Soil type -'code' = { - table2Version = 1 ; - indicatorOfParameter = 195 ; - } -#Fraction of lake -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 196 ; - } -#Fraction of forest -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 197 ; - } -#Fraction of open land -'Fraction' = { - table2Version = 1 ; - indicatorOfParameter = 198 ; - } -#Vegetation type (Olsson land use) -'-' = { - table2Version = 1 ; - indicatorOfParameter = 199 ; - } -#Turbulent Kinetic Energy -'J/kg' = { - table2Version = 1 ; - indicatorOfParameter = 200 ; - } -#Standard deviation of mesoscale orography -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 204 ; - } -#Anisotrophic mesoscale orography -'-' = { - table2Version = 1 ; - indicatorOfParameter = 205 ; - } -#X-angle of mesoscale orography -'rad' = { - table2Version = 1 ; - indicatorOfParameter = 206 ; - } -#Maximum slope of smallest scale orography -'rad' = { - table2Version = 1 ; - indicatorOfParameter = 208 ; - } -#Standard deviation of smallest scale orography -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 209 ; - } -#Ice existence -'?' = { - table2Version = 1 ; - indicatorOfParameter = 210 ; - } -#Lifting condensation level -'m' = { - table2Version = 1 ; - indicatorOfParameter = 222 ; - } -#Level of neutral buoyancy -'m' = { - table2Version = 1 ; - indicatorOfParameter = 223 ; - } -#Convective inhibation -'J/kg' = { - table2Version = 1 ; - indicatorOfParameter = 224 ; - } -#CAPE -'J/kg' = { - table2Version = 1 ; - indicatorOfParameter = 225 ; - } -#Precipitation type -'code' = { - table2Version = 1 ; - indicatorOfParameter = 226 ; - } -#Friction velocity -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 227 ; - } -#Wind gust -'m/s' = { - table2Version = 1 ; - indicatorOfParameter = 228 ; - } -#Analysed 3-hour precipitation (-3h/0h) -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 250 ; - } -#Analysed 12-hour precipitation (-12h/0h) -'kg/m2' = { - table2Version = 1 ; - indicatorOfParameter = 251 ; - } -#Missing -'Missing' = { - table2Version = 1 ; - indicatorOfParameter = 255 ; - } -############### table2Version 128 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 128 ; - indicatorOfParameter = 0 ; - } -# SO2/SO2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 1 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 2 ; - } -# DMS/DMS -'-' = { - table2Version = 128 ; - indicatorOfParameter = 3 ; - } -# MSA/MSA -'-' = { - table2Version = 128 ; - indicatorOfParameter = 4 ; - } -# H2S/H2S -'-' = { - table2Version = 128 ; - indicatorOfParameter = 5 ; - } -# NH4SO4/(NH4)1.5H0.5SO4 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 6 ; - } -# NH4HSO4/NH4HSO4 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 7 ; - } -# NH42SO4/(NH4)2SO4 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 8 ; - } -# SULFATE/SULFATE -'-' = { - table2Version = 128 ; - indicatorOfParameter = 9 ; - } -# SO2_AQ/SO2 in aqueous phase -'-' = { - table2Version = 128 ; - indicatorOfParameter = 10 ; - } -# SO4_AQ/sulfate in aqueous phase -'-' = { - table2Version = 128 ; - indicatorOfParameter = 11 ; - } -# LRT_SO2_S/long-range SO2_S -'-' = { - table2Version = 128 ; - indicatorOfParameter = 23 ; - } -# LRT_SO4_S/LRT-contriubtion to SO4_S -'-' = { - table2Version = 128 ; - indicatorOfParameter = 24 ; - } -# LRT_SOX_S/LRT-contriubtion to SO4_S -'-' = { - table2Version = 128 ; - indicatorOfParameter = 25 ; - } -# XSOX_S/excess SOX (corrected for sea salt as sulfur) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 26 ; - } -# SO2_S/SO2 (as sulphur) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 27 ; - } -# SO4_S/SO4 (as sulphur) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 28 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 29 ; - } -# NO -'-' = { - table2Version = 128 ; - indicatorOfParameter = 30 ; - } -# NO2/NO2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; - } -# HNO3/HNO3 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 32 ; - } -# NO3(-1)/NO3(-1) (nitrate) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 33 ; - } -# NH4NO3/NH4NO3 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 34 ; - } -# NITRATE/NITRATE -'-' = { - table2Version = 128 ; - indicatorOfParameter = 35 ; - } -# PNO3/(COARSE) NITRATE -'-' = { - table2Version = 128 ; - indicatorOfParameter = 36 ; - } -# LRT_NOY_N/long-range NOY_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 37 ; - } -# NO3_N/NO3 as N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 38 ; - } -# HNO3_N/HNO3 as N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 39 ; - } -# LRT_NO3_N/long-range NO3_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 40 ; - } -# LRT_HNO3_N/long-range HNO3_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 41 ; - } -# LRT_NO2_N/long-range NO2_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 42 ; - } -# LRT_NOZ_N/long-range NOZ_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 43 ; - } -# NOX/NOX as NO2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 44 ; - } -# NO_N/NO as N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 45 ; - } -# NO2_N/NO2 as N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 46 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'-' = { - table2Version = 128 ; - indicatorOfParameter = 47 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 48 ; - } -# NOZ_N/NOy-NOx (as nitrogen) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 49 ; - } -# NH3/NH3 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 50 ; - } -# NH4(+1)/NH4 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 51 ; - } -# AMMONIUM/AMMONIUM -'-' = { - table2Version = 128 ; - indicatorOfParameter = 52 ; - } -# NH3_N/NH3 (as nitrogen) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 54 ; - } -# NH4_N/NH4 (as nitrogen) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 55 ; - } -# LRT_NH3_N/long-range NH3_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 56 ; - } -# LRT_NH4_N/long-range NH4_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 57 ; - } -# LRT_NHX_N/long-range NHX_N -'-' = { - table2Version = 128 ; - indicatorOfParameter = 58 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 59 ; - } -# O3 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 60 ; - } -# H2O2/H2O2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 61 ; - } -# OH/OH -'-' = { - table2Version = 128 ; - indicatorOfParameter = 62 ; - } -# O3_AQ/O3 in aqueous phase -'-' = { - table2Version = 128 ; - indicatorOfParameter = 63 ; - } -# H2O2_AQ/H2O2 in aqueous phase -'-' = { - table2Version = 128 ; - indicatorOfParameter = 64 ; - } -# OX/Ox=O3+NO2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 65 ; - } -# C -'-' = { - table2Version = 128 ; - indicatorOfParameter = 70 ; - } -# CO/CO -'-' = { - table2Version = 128 ; - indicatorOfParameter = 71 ; - } -# CO2/CO2 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 72 ; - } -# CH4/CH4 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 73 ; - } -# OC/Organic carbon (particles) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 74 ; - } -# EC/Elementary carbon (particles) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 75 ; - } -# CF6 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 80 ; - } -# PMCH/PMCH -'-' = { - table2Version = 128 ; - indicatorOfParameter = 81 ; - } -# PMCP/PMCP -'-' = { - table2Version = 128 ; - indicatorOfParameter = 82 ; - } -# TRACER/Tracer -'-' = { - table2Version = 128 ; - indicatorOfParameter = 83 ; - } -# Inert/Inert -'-' = { - table2Version = 128 ; - indicatorOfParameter = 84 ; - } -# H3 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 85 ; - } -# Ar41/Ar41 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 86 ; - } -# Kr85/Kr85 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 87 ; - } -# Kr88/Kr88 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 88 ; - } -# Xe131/Xe131 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 91 ; - } -# Xe133/Xe133 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 92 ; - } -# Rn222/Rn222 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 93 ; - } -# I131/I131 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 95 ; - } -# I132/I132 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 96 ; - } -# I133/I133 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 97 ; - } -# I135/I135 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 98 ; - } -# Sr90 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 100 ; - } -# Co60/Co60 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 101 ; - } -# Ru103/Ru103 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 102 ; - } -# Ru106/Ru106 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 103 ; - } -# Cs134/Cs134 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 104 ; - } -# Cs137/Cs137 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 105 ; - } -# Ra223/Ra123 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 106 ; - } -# Ra228/Ra228 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 108 ; - } -# Zr95 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 110 ; - } -# Nb95/Nb95 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 111 ; - } -# Ce144/Ce144 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 112 ; - } -# Np238/Np238 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 113 ; - } -# Np239/Np239 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 114 ; - } -# Pu241/Pu241 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 115 ; - } -# Pb210/Pb210 -'-' = { - table2Version = 128 ; - indicatorOfParameter = 116 ; - } -# ALL -'-' = { - table2Version = 128 ; - indicatorOfParameter = 119 ; - } -# NACL -'-' = { - table2Version = 128 ; - indicatorOfParameter = 120 ; - } -# SODIUM/Na+ -'-' = { - table2Version = 128 ; - indicatorOfParameter = 121 ; - } -# MAGNESIUM/Mg++ -'-' = { - table2Version = 128 ; - indicatorOfParameter = 122 ; - } -# POTASSIUM/K+ -'-' = { - table2Version = 128 ; - indicatorOfParameter = 123 ; - } -# CALCIUM/Ca++ -'-' = { - table2Version = 128 ; - indicatorOfParameter = 124 ; - } -# XMG/excess Mg++ (corrected for sea salt) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 125 ; - } -# XK/excess K+ (corrected for sea salt) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 126 ; - } -# XCA/excess Ca++ (corrected for sea salt) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 128 ; - } -# Cl2/Cloride -'-' = { - table2Version = 128 ; - indicatorOfParameter = 140 ; - } -# PMFINE -'-' = { - table2Version = 128 ; - indicatorOfParameter = 160 ; - } -# PMCOARSE/Coarse particles -'-' = { - table2Version = 128 ; - indicatorOfParameter = 161 ; - } -# DUST/Dust (particles) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 162 ; - } -# PNUMBER/Number concentration -'-' = { - table2Version = 128 ; - indicatorOfParameter = 163 ; - } -# PRADIUS/Particle radius -'-' = { - table2Version = 128 ; - indicatorOfParameter = 164 ; - } -# PSURFACE/Particle surface conc -'-' = { - table2Version = 128 ; - indicatorOfParameter = 165 ; - } -# PMASS/Particle mass conc -'-' = { - table2Version = 128 ; - indicatorOfParameter = 166 ; - } -# PM10/PM10 particles -'-' = { - table2Version = 128 ; - indicatorOfParameter = 167 ; - } -# PSOX/Particulate sulfate -'-' = { - table2Version = 128 ; - indicatorOfParameter = 168 ; - } -# PNOX/Particulate nitrate -'-' = { - table2Version = 128 ; - indicatorOfParameter = 169 ; - } -# PNHX/Particulate ammonium -'-' = { - table2Version = 128 ; - indicatorOfParameter = 170 ; - } -# PPMFINE/Primary emitted fine particles -'-' = { - table2Version = 128 ; - indicatorOfParameter = 171 ; - } -# PPM10/Primary emitted particles -'-' = { - table2Version = 128 ; - indicatorOfParameter = 172 ; - } -# SOA/Secondary Organic Aerosol -'-' = { - table2Version = 128 ; - indicatorOfParameter = 173 ; - } -# PM2.5/PM2.5 particles -'-' = { - table2Version = 128 ; - indicatorOfParameter = 174 ; - } -# PM/Total particulate matter -'-' = { - table2Version = 128 ; - indicatorOfParameter = 175 ; - } -# BIRCH_POLLEN/Birch pollen -'-' = { - table2Version = 128 ; - indicatorOfParameter = 180 ; - } -# KZ -' m2/s' = { - table2Version = 128 ; - indicatorOfParameter = 200 ; - } -# L/Monin-Obukhovs length [m] -' m' = { - table2Version = 128 ; - indicatorOfParameter = 201 ; - } -# U*/Friction velocity [m/s] -' m/s' = { - table2Version = 128 ; - indicatorOfParameter = 202 ; - } -# W*/Convective velocity scale [m/s] -' m/s' = { - table2Version = 128 ; - indicatorOfParameter = 203 ; - } -# Z-D/Z0 minus displacement length [m] -' m' = { - table2Version = 128 ; - indicatorOfParameter = 204 ; - } -# SURFTYPE/Surface type (see link{OCTET45}) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 210 ; - } -# LAI/Leaf area index -'-' = { - table2Version = 128 ; - indicatorOfParameter = 211 ; - } -# SOILTYPE/Soil type -'-' = { - table2Version = 128 ; - indicatorOfParameter = 212 ; - } -# SSALB/Single scattering albodo [1] -'1' = { - table2Version = 128 ; - indicatorOfParameter = 213 ; - } -# ASYMPAR/Asymmetry parameter -'-' = { - table2Version = 128 ; - indicatorOfParameter = 214 ; - } -# VIS/Visibility [m] -' m' = { - table2Version = 128 ; - indicatorOfParameter = 215 ; - } -# EXT/Extinction [1/m] -' 1/m' = { - table2Version = 128 ; - indicatorOfParameter = 216 ; - } -# BSCA/Backscattering coeff [1/m/sr] -' 1/m/sr' = { - table2Version = 128 ; - indicatorOfParameter = 217 ; - } -# AOD/Aerosol opt depth [1] -'1' = { - table2Version = 128 ; - indicatorOfParameter = 218 ; - } -# DAOD/AOD per layer [1] -'1' = { - table2Version = 128 ; - indicatorOfParameter = 219 ; - } -# CONV_TIED -'-' = { - table2Version = 128 ; - indicatorOfParameter = 220 ; - } -# CONV_BOT/Convective cloud bottom (unit?) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 221 ; - } -# CONV_TOP/Convective cloud top (unit?) -'-' = { - table2Version = 128 ; - indicatorOfParameter = 222 ; - } -# DXDY/Gridsize [m2] -' m2' = { - table2Version = 128 ; - indicatorOfParameter = 223 ; - } -# EMIS/Sectoral emissions -'-' = { - table2Version = 128 ; - indicatorOfParameter = 240 ; - } -# LONG/Longitude -'-' = { - table2Version = 128 ; - indicatorOfParameter = 241 ; - } -# LAT/Latitude -'-' = { - table2Version = 128 ; - indicatorOfParameter = 242 ; - } -#Missing -'Missing' = { - table2Version = 128 ; - indicatorOfParameter = 255 ; - } -############### table2Version 129 ############ -############### Mesan ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 129 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pa' = { - table2Version = 129 ; - indicatorOfParameter = 1 ; - } -#Temperature -'K' = { - table2Version = 129 ; - indicatorOfParameter = 11 ; - } -#Wet bulb temperature -'K' = { - table2Version = 129 ; - indicatorOfParameter = 12 ; - } -#24 hour mean of 2 meter temperature -'K' = { - table2Version = 129 ; - indicatorOfParameter = 13 ; - } -#Maximum temperature -'K' = { - table2Version = 129 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 129 ; - indicatorOfParameter = 16 ; - } -#Visibility -'m' = { - table2Version = 129 ; - indicatorOfParameter = 20 ; - } -#Wind gusts -'m/s' = { - table2Version = 129 ; - indicatorOfParameter = 32 ; - } -#u-component of wind -'m/s' = { - table2Version = 129 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'m/s' = { - table2Version = 129 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'%' = { - table2Version = 129 ; - indicatorOfParameter = 52 ; - } -#Total cloud cover -'fraction' = { - table2Version = 129 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'fraction' = { - table2Version = 129 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'fraction' = { - table2Version = 129 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'fraction' = { - table2Version = 129 ; - indicatorOfParameter = 75 ; - } -#Fraction of significant clouds -'fraction' = { - table2Version = 129 ; - indicatorOfParameter = 77 ; - } -#Cloud base of significant clouds -'m' = { - table2Version = 129 ; - indicatorOfParameter = 78 ; - } -#Cloud top of significant clouds -'m' = { - table2Version = 129 ; - indicatorOfParameter = 79 ; - } -#Type of precipitation -'code' = { - table2Version = 129 ; - indicatorOfParameter = 145 ; - } -#Sort of precipitation -'code' = { - table2Version = 129 ; - indicatorOfParameter = 146 ; - } -#6 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 161 ; - } -#12 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 162 ; - } -#18 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 163 ; - } -#24 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 164 ; - } -#1 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 165 ; - } -#2 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 166 ; - } -#3 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 167 ; - } -#9 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 168 ; - } -#15 hour precipitation -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 169 ; - } -#6 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 171 ; - } -#12 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 172 ; - } -#18 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 173 ; - } -#24 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 174 ; - } -#1 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 175 ; - } -#2 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 176 ; - } -#3 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 177 ; - } -#9 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 178 ; - } -#15 hour fresh snow cover -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 179 ; - } -#6 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 181 ; - } -#12 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 182 ; - } -#18 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 183 ; - } -#24 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 184 ; - } -#1 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 185 ; - } -#2 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 186 ; - } -#3 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 187 ; - } -#9 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 188 ; - } -#15 hour precipitation, corrected -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 189 ; - } -#6 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 191 ; - } -#12 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 192 ; - } -#18 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 193 ; - } -#24 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 194 ; - } -#1 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 195 ; - } -#2 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 196 ; - } -#3 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 197 ; - } -#9 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 198 ; - } -#15 hour fresh snow cover, corrected -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 199 ; - } -#6 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 201 ; - } -#12 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 202 ; - } -#18 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 203 ; - } -#24 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 204 ; - } -#1 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 205 ; - } -#2 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 206 ; - } -#3 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 207 ; - } -#9 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 208 ; - } -#15 hour precipitation, standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 209 ; - } -#6 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 211 ; - } -#12 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 212 ; - } -#18 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 213 ; - } -#24 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 214 ; - } -#1 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 215 ; - } -#2 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 216 ; - } -#3 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 217 ; - } -#9 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 218 ; - } -#15 hour fresh snow cover, standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 219 ; - } -#6 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 221 ; - } -#12 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 222 ; - } -#18 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 223 ; - } -#24 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 224 ; - } -#1 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 225 ; - } -#2 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 226 ; - } -#3 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 227 ; - } -#9 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 228 ; - } -#15 hour precipitation, corrected and standardized -'mm' = { - table2Version = 129 ; - indicatorOfParameter = 229 ; - } -#6 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 231 ; - } -#12 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 232 ; - } -#18 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 233 ; - } -#24 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 234 ; - } -#1 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 235 ; - } -#2 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 236 ; - } -#3 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 237 ; - } -#9 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 238 ; - } -#15 hour fresh snow cover, corrected and standardized -'cm' = { - table2Version = 129 ; - indicatorOfParameter = 239 ; - } -#Missing -'Missing' = { - table2Version = 129 ; - indicatorOfParameter = 255 ; - } -############### table2Version 130 ############ -############### PMP ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 130 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pa' = { - table2Version = 130 ; - indicatorOfParameter = 1 ; - } -#Temperature -'K' = { - table2Version = 130 ; - indicatorOfParameter = 11 ; - } -#Visibility -'m' = { - table2Version = 130 ; - indicatorOfParameter = 20 ; - } -#u-component of wind -'m/s' = { - table2Version = 130 ; - indicatorOfParameter = 33 ; - } -#v-component of wind -'m/s' = { - table2Version = 130 ; - indicatorOfParameter = 34 ; - } -#Relative humidity -'%' = { - table2Version = 130 ; - indicatorOfParameter = 52 ; - } -#Probability of frozen rain -'%' = { - table2Version = 130 ; - indicatorOfParameter = 58 ; - } -#Probability thunderstorm -'%' = { - table2Version = 130 ; - indicatorOfParameter = 60 ; - } -#Total_precipitation -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 61 ; - } -#Water_equiv._of_snow_depth -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 65 ; - } -#Area_time_min_totalcloudcover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 67 ; - } -#Area_time_max_totalcloudcover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 68 ; - } -#Area_time_median_totalcloudcover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 69 ; - } -#Area_time_mean_totalcloudcover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 70 ; - } -#Total cloud cover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cove -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 75 ; - } -#cloud mask -'fraction' = { - table2Version = 130 ; - indicatorOfParameter = 77 ; - } -#Index 2m maxtemperatur over 3 dygn -'-' = { - table2Version = 130 ; - indicatorOfParameter = 100 ; - } -#EPS T mean -'K' = { - table2Version = 130 ; - indicatorOfParameter = 110 ; - } -#EPS T standard deviation -'K' = { - table2Version = 130 ; - indicatorOfParameter = 111 ; - } -#Maximum wind (mean 10 min) -'M/S' = { - table2Version = 130 ; - indicatorOfParameter = 130 ; - } -#Wind gust -'M/S' = { - table2Version = 130 ; - indicatorOfParameter = 131 ; - } -#Cloud base (significant) -'m' = { - table2Version = 130 ; - indicatorOfParameter = 135 ; - } -#Cloud top (significant) -'m' = { - table2Version = 130 ; - indicatorOfParameter = 136 ; - } -#Omradesnederbord gridpunkts-min -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 137 ; - } -#Omradesnederbord gridpunkts-max -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 138 ; - } -#Omradesnederbord gridpunkts-medel -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 139 ; - } -#Precipitation intensity total -'kg/m2/s' = { - table2Version = 130 ; - indicatorOfParameter = 140 ; - } -#Precipitation intensity snow -'kg/m2/s' = { - table2Version = 130 ; - indicatorOfParameter = 141 ; - } -#Area_time_min_precipitation -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 142 ; - } -#Area_time_max_precipitation -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 143 ; - } -#Precipitation type, conv 0, large scale 1, no prec -9 -'category' = { - table2Version = 130 ; - indicatorOfParameter = 145 ; - } -#Category of precipitation, 0 no, 1 snow, 2 snow and rain, 3 rain, 4 drizzle, 5, freezing rain, 6 freezing drizzle -'category' = { - table2Version = 130 ; - indicatorOfParameter = 146 ; - } -#Vadersymbol -'category' = { - table2Version = 130 ; - indicatorOfParameter = 147 ; - } -#Area_time_mean_precipitation -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 148 ; - } -#Area_time_median_precipitation -'kg/m2' = { - table2Version = 130 ; - indicatorOfParameter = 149 ; - } -#Missing -'Missing' = { - table2Version = 130 ; - indicatorOfParameter = 255 ; - } -############### table2Version 131 ############ -############### RCA ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 131 ; - indicatorOfParameter = 0 ; - } -#Sea surface temperature (LAKE) -'K' = { - table2Version = 131 ; - indicatorOfParameter = 11 ; - } -#Current east -'m/s' = { - table2Version = 131 ; - indicatorOfParameter = 49 ; - } -#Current north -'m/s' = { - table2Version = 131 ; - indicatorOfParameter = 50 ; - } -#Snowdepth in Probe -'m' = { - table2Version = 131 ; - indicatorOfParameter = 66 ; - } -#Ice concentration (LAKE) -'fraction' = { - table2Version = 131 ; - indicatorOfParameter = 91 ; - } -#Ice thickness Probe-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 92 ; - } -#Temperature ABC-lake -'K' = { - table2Version = 131 ; - indicatorOfParameter = 150 ; - } -#Temperature C-lake -'K' = { - table2Version = 131 ; - indicatorOfParameter = 151 ; - } -#Temperature D-lake -'K' = { - table2Version = 131 ; - indicatorOfParameter = 152 ; - } -#Temperature E-lake -'K' = { - table2Version = 131 ; - indicatorOfParameter = 153 ; - } -#Area ABC-lake -'km2' = { - table2Version = 131 ; - indicatorOfParameter = 160 ; - } -#Depth ABC-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 161 ; - } -#C-lakes -'amount' = { - table2Version = 131 ; - indicatorOfParameter = 162 ; - } -#D-lakes -'amount' = { - table2Version = 131 ; - indicatorOfParameter = 163 ; - } -#E-lakes -'amount' = { - table2Version = 131 ; - indicatorOfParameter = 164 ; - } -#Ice thickness ABC-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 170 ; - } -#Ice thickness C-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 171 ; - } -#Ice thickness D-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 172 ; - } -#Ice thickness E-lake -'m' = { - table2Version = 131 ; - indicatorOfParameter = 173 ; - } -#Sea surface temperature (T) -'K' = { - table2Version = 131 ; - indicatorOfParameter = 180 ; - } -#Ice concentration (I) -'fraction' = { - table2Version = 131 ; - indicatorOfParameter = 183 ; - } -#Fraction lake -'fraction' = { - table2Version = 131 ; - indicatorOfParameter = 196 ; - } -#Black ice thickness in Probe -'m' = { - table2Version = 131 ; - indicatorOfParameter = 241 ; - } -#Vallad istjocklek i Probe -'m' = { - table2Version = 131 ; - indicatorOfParameter = 244 ; - } -#Internal ice concentration in Probe -'fraction' = { - table2Version = 131 ; - indicatorOfParameter = 245 ; - } -#Isfrontlaege i Probe -'m' = { - table2Version = 131 ; - indicatorOfParameter = 246 ; - } -#Heat in Probe -'Joule' = { - table2Version = 131 ; - indicatorOfParameter = 250 ; - } -#Turbulent Kintetic Energy -'J/kg' = { - table2Version = 131 ; - indicatorOfParameter = 251 ; - } -#Dissipation rate Turbulent Kinetic Energy -'W/kg' = { - table2Version = 131 ; - indicatorOfParameter = 252 ; - } -#Missing -'Missing' = { - table2Version = 131 ; - indicatorOfParameter = 255 ; - } -############### table2Version 133 ############ -############### Hiromb ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 133 ; - indicatorOfParameter = 0 ; - } -#Pressure reduced to MSL -'Pa' = { - table2Version = 133 ; - indicatorOfParameter = 1 ; - } -#Temperature -'Deg C' = { - table2Version = 133 ; - indicatorOfParameter = 11 ; - } -#Potential temperature -'K' = { - table2Version = 133 ; - indicatorOfParameter = 13 ; - } -#Wave spectra (1) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Deg true' = { - table2Version = 133 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 32 ; - } -#U-component of Wind -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 33 ; - } -#V-component of Wind -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 34 ; - } -#Stream function -'m2/s' = { - table2Version = 133 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m2/s' = { - table2Version = 133 ; - indicatorOfParameter = 36 ; - } -#Montgomery stream function -'m2/s2' = { - table2Version = 133 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 38 ; - } -#Z-component of velocity (pressure) -'Pa/s' = { - table2Version = 133 ; - indicatorOfParameter = 39 ; - } -#Z-component of velocity (geometric) -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 42 ; - } -#Relative vorticity -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 43 ; - } -#Relative divergence -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 44 ; - } -#Vertical u-component shear -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 46 ; - } -#Direction of horizontal current -'Deg true' = { - table2Version = 133 ; - indicatorOfParameter = 47 ; - } -#Speed of horizontal current -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 48 ; - } -#U-comp of Current -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 49 ; - } -#V-comp of Current -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'g/kg' = { - table2Version = 133 ; - indicatorOfParameter = 51 ; - } -#Snow Depth -'m' = { - table2Version = 133 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'m' = { - table2Version = 133 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 133 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 133 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 133 ; - indicatorOfParameter = 70 ; - } -#Total Cloud Cover -'Fraction' = { - table2Version = 133 ; - indicatorOfParameter = 71 ; - } -#Water temperature -'K' = { - table2Version = 133 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea level from mean -'cm' = { - table2Version = 133 ; - indicatorOfParameter = 82 ; - } -#Salinity -'psu' = { - table2Version = 133 ; - indicatorOfParameter = 88 ; - } -#Density -'kg/m3' = { - table2Version = 133 ; - indicatorOfParameter = 89 ; - } -#Ice Cover -'Fraction' = { - table2Version = 133 ; - indicatorOfParameter = 91 ; - } -#Total ice thickness -'m' = { - table2Version = 133 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Deg true' = { - table2Version = 133 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'1/s' = { - table2Version = 133 ; - indicatorOfParameter = 98 ; - } -#Significant wave height -'m' = { - table2Version = 133 ; - indicatorOfParameter = 100 ; - } -#Direction of Wind Waves -'Deg. true' = { - table2Version = 133 ; - indicatorOfParameter = 101 ; - } -#Sign Height Wind Waves -'m' = { - table2Version = 133 ; - indicatorOfParameter = 102 ; - } -#Mean Period Wind Waves -'s' = { - table2Version = 133 ; - indicatorOfParameter = 103 ; - } -#Direction of Swell Waves -'Deg. true' = { - table2Version = 133 ; - indicatorOfParameter = 104 ; - } -#Sign Height Swell Waves -'m' = { - table2Version = 133 ; - indicatorOfParameter = 105 ; - } -#Mean Period Swell Waves -'s' = { - table2Version = 133 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Deg true' = { - table2Version = 133 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 133 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Deg true' = { - table2Version = 133 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 133 ; - indicatorOfParameter = 110 ; - } -#Mean period of waves -'s' = { - table2Version = 133 ; - indicatorOfParameter = 111 ; - } -#Mean direction of Waves -'Deg. true' = { - table2Version = 133 ; - indicatorOfParameter = 112 ; - } -#Peak period of 1D spectra -'s' = { - table2Version = 133 ; - indicatorOfParameter = 113 ; - } -#Skin velocity, x-comp. -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 130 ; - } -#Skin velocity, y-comp. -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 131 ; - } -#Nitrate -'-' = { - table2Version = 133 ; - indicatorOfParameter = 151 ; - } -#Ammonium -'-' = { - table2Version = 133 ; - indicatorOfParameter = 152 ; - } -#Phosphate -'-' = { - table2Version = 133 ; - indicatorOfParameter = 153 ; - } -#Oxygen -'-' = { - table2Version = 133 ; - indicatorOfParameter = 154 ; - } -#Phytoplankton -'-' = { - table2Version = 133 ; - indicatorOfParameter = 155 ; - } -#Zooplankton -'-' = { - table2Version = 133 ; - indicatorOfParameter = 156 ; - } -#Detritus -'-' = { - table2Version = 133 ; - indicatorOfParameter = 157 ; - } -#Bentos nitrogen -'-' = { - table2Version = 133 ; - indicatorOfParameter = 158 ; - } -#Bentos phosphorus -'-' = { - table2Version = 133 ; - indicatorOfParameter = 159 ; - } -#Silicate -'-' = { - table2Version = 133 ; - indicatorOfParameter = 160 ; - } -#Biogenic silica -'-' = { - table2Version = 133 ; - indicatorOfParameter = 161 ; - } -#Light in water column -'-' = { - table2Version = 133 ; - indicatorOfParameter = 162 ; - } -#Inorganic suspended matter -'-' = { - table2Version = 133 ; - indicatorOfParameter = 163 ; - } -#Diatomes (algae) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 164 ; - } -#Flagellates (algae) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 165 ; - } -#Nitrate (aggregated) -'-' = { - table2Version = 133 ; - indicatorOfParameter = 166 ; - } -#Turbulent Kinetic Energy -'J/kg' = { - table2Version = 133 ; - indicatorOfParameter = 200 ; - } -#Dissipation rate of TKE -'W/kg' = { - table2Version = 133 ; - indicatorOfParameter = 201 ; - } -#Eddy viscosity -'m2/s' = { - table2Version = 133 ; - indicatorOfParameter = 202 ; - } -#Eddy diffusivity -'m2/s' = { - table2Version = 133 ; - indicatorOfParameter = 203 ; - } -# Level ice thickness -'m' = { - table2Version = 133 ; - indicatorOfParameter = 220 ; - } -#Ridged ice thickness -'m' = { - table2Version = 133 ; - indicatorOfParameter = 221 ; - } -#Ice ridge height -'m' = { - table2Version = 133 ; - indicatorOfParameter = 222 ; - } -#Ice ridge density -'1/km' = { - table2Version = 133 ; - indicatorOfParameter = 223 ; - } -#U-mean (prev. timestep) -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 231 ; - } -#V-mean (prev. timestep) -'cm/s' = { - table2Version = 133 ; - indicatorOfParameter = 232 ; - } -#W-mean (prev. timestep) -'m/s' = { - table2Version = 133 ; - indicatorOfParameter = 233 ; - } -#Snow temperature -'Deg C' = { - table2Version = 133 ; - indicatorOfParameter = 239 ; - } -#Total depth in meters -'m' = { - table2Version = 133 ; - indicatorOfParameter = 243 ; - } -#Missing -'Missing' = { - table2Version = 133 ; - indicatorOfParameter = 255 ; - } -############### table2Version 134 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 134 ; - indicatorOfParameter = 0 ; - } -#C2H6/Ethane -'-' = { - table2Version = 134 ; - indicatorOfParameter = 1 ; - } -#NC4H10/N-butane -'-' = { - table2Version = 134 ; - indicatorOfParameter = 2 ; - } -#C2H4/Ethene -'-' = { - table2Version = 134 ; - indicatorOfParameter = 3 ; - } -#C3H6/Propene -'-' = { - table2Version = 134 ; - indicatorOfParameter = 4 ; - } -#OXYLENE/O-xylene -'-' = { - table2Version = 134 ; - indicatorOfParameter = 5 ; - } -#HCHO/Formalydehyde -'-' = { - table2Version = 134 ; - indicatorOfParameter = 6 ; - } -#CH3CHO/Acetaldehyde -'-' = { - table2Version = 134 ; - indicatorOfParameter = 7 ; - } -#CH3COC2H5/Ethyl methyl keton -'-' = { - table2Version = 134 ; - indicatorOfParameter = 8 ; - } -#MGLYOX/Methyl-glyoxal (CH3COCHO) -'-' = { - table2Version = 134 ; - indicatorOfParameter = 9 ; - } -#GLYOX/Glyoxal (HCOCHO) -'-' = { - table2Version = 134 ; - indicatorOfParameter = 10 ; - } -#C5H8/Isoprene -'-' = { - table2Version = 134 ; - indicatorOfParameter = 11 ; - } -#C2H5OH/Ethanol -'-' = { - table2Version = 134 ; - indicatorOfParameter = 12 ; - } -#CH3OH/Metanol -'-' = { - table2Version = 134 ; - indicatorOfParameter = 13 ; - } -#HCOOH/Formic acid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 14 ; - } -#CH3COOH/Acetic acid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 15 ; - } -#NMVOC_C/Total NMVOC as C -'-' = { - table2Version = 134 ; - indicatorOfParameter = 19 ; - } -#Reserved -'' = { - table2Version = 134 ; - indicatorOfParameter = 20 ; - } -#PAN/Peroxy acetyl nitrate -'-' = { - table2Version = 134 ; - indicatorOfParameter = 21 ; - } -#NO3/Nitrate radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 22 ; - } -#N2O5/Dinitrogen pentoxide -'-' = { - table2Version = 134 ; - indicatorOfParameter = 23 ; - } -#ONIT/Organic nitrate -'-' = { - table2Version = 134 ; - indicatorOfParameter = 24 ; - } -#ISONRO2/Isoprene-NO3 adduct -'-' = { - table2Version = 134 ; - indicatorOfParameter = 25 ; - } -#HO2NO2/HO2NO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 26 ; - } -#MPAN -'-' = { - table2Version = 134 ; - indicatorOfParameter = 27 ; - } -#ISONO3H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 28 ; - } -#HONO -'-' = { - table2Version = 134 ; - indicatorOfParameter = 29 ; - } -#Reserved -'' = { - table2Version = 134 ; - indicatorOfParameter = 30 ; - } -#HO2/Hydroperhydroxyl radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 31 ; - } -#H2/Molecular hydrogen -'-' = { - table2Version = 134 ; - indicatorOfParameter = 32 ; - } -#O/Oxygen atomic ground state (3P) -'-' = { - table2Version = 134 ; - indicatorOfParameter = 33 ; - } -#O1D/Oxygen atomic first singlet state -'-' = { - table2Version = 134 ; - indicatorOfParameter = 34 ; - } -#Reserved -'-' = { - table2Version = 134 ; - indicatorOfParameter = 40 ; - } -#CH3O2/Methyl peroxy radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 41 ; - } -#CH3O2H/Methyl hydroperoxide -'-' = { - table2Version = 134 ; - indicatorOfParameter = 42 ; - } -#C2H5O2/Ethyl peroxy radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 43 ; - } -#CH3COO2/Peroxy acetyl radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 44 ; - } -#SECC4H9O2/Buthyl peroxy radical -'-' = { - table2Version = 134 ; - indicatorOfParameter = 45 ; - } -#CH3COCHO2CH3/peroxy radical from MEK -'-' = { - table2Version = 134 ; - indicatorOfParameter = 46 ; - } -#ACETOL/acetol (hydroxy acetone) -'-' = { - table2Version = 134 ; - indicatorOfParameter = 47 ; - } -#CH2O2CH2OH -'-' = { - table2Version = 134 ; - indicatorOfParameter = 48 ; - } -#CH3CHO2CH2OH/Peroxy radical from C3H6 + OH -'-' = { - table2Version = 134 ; - indicatorOfParameter = 49 ; - } -#MAL/CH3COCH=CHCHO -'-' = { - table2Version = 134 ; - indicatorOfParameter = 50 ; - } -#MALO2/Peroxy radical from MAL + oh -'-' = { - table2Version = 134 ; - indicatorOfParameter = 51 ; - } -#ISRO2/Peroxy radical from isoprene + oh -'-' = { - table2Version = 134 ; - indicatorOfParameter = 52 ; - } -#ISOPROD/Peroxy radical from ISOPROD -'-' = { - table2Version = 134 ; - indicatorOfParameter = 53 ; - } -#C2H5OOH/Ethyl hydroperoxide -'-' = { - table2Version = 134 ; - indicatorOfParameter = 54 ; - } -#CH3COO2H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 55 ; - } -#OXYO2H/Hydroperoxide from OXYO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 56 ; - } -#SECC4H9O2H/Buthyl hydroperoxide -'-' = { - table2Version = 134 ; - indicatorOfParameter = 57 ; - } -#CH2OOHCH2OH -'-' = { - table2Version = 134 ; - indicatorOfParameter = 58 ; - } -#CH3CHOOHCH2OH//hydroperoxide from PRRO2 + HO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 59 ; - } -#CH3COCHO2HCH3/hydroperoxide from MEKO2 + HO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 60 ; - } -#MALO2H/Hydroperoxide from MALO2 + ho2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 61 ; - } -#IPRO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 62 ; - } -#XO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 63 ; - } -#OXYO2/Peroxy radical from o-xylene + oh -'-' = { - table2Version = 134 ; - indicatorOfParameter = 64 ; - } -#ISRO2H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 65 ; - } -#MVK -'-' = { - table2Version = 134 ; - indicatorOfParameter = 66 ; - } -#MVKO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 67 ; - } -#MVKO2H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 68 ; - } -#BENZENE -'-' = { - table2Version = 134 ; - indicatorOfParameter = 70 ; - } -#ISNI -'-' = { - table2Version = 134 ; - indicatorOfParameter = 74 ; - } -#ISNIR -'-' = { - table2Version = 134 ; - indicatorOfParameter = 75 ; - } -#ISNIRH -'-' = { - table2Version = 134 ; - indicatorOfParameter = 76 ; - } -#MACR -'-' = { - table2Version = 134 ; - indicatorOfParameter = 77 ; - } -#AOH1 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 78 ; - } -#AOH1H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 79 ; - } -#MACRO2 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 80 ; - } -#MACO3H -'-' = { - table2Version = 134 ; - indicatorOfParameter = 81 ; - } -#MACOOH -'-' = { - table2Version = 134 ; - indicatorOfParameter = 82 ; - } -#CH2CCH3 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 83 ; - } -#CH2CO2HCH3 -'-' = { - table2Version = 134 ; - indicatorOfParameter = 84 ; - } -#BIGENE -'-' = { - table2Version = 134 ; - indicatorOfParameter = 90 ; - } -#BIGALK -'-' = { - table2Version = 134 ; - indicatorOfParameter = 91 ; - } -#TOLUENE -'-' = { - table2Version = 134 ; - indicatorOfParameter = 92 ; - } -#CH2CHCN -'-' = { - table2Version = 134 ; - indicatorOfParameter = 100 ; - } -#(CH3)2NNH2/Dimetylhydrazin -'-' = { - table2Version = 134 ; - indicatorOfParameter = 101 ; - } -#CH2OC2H3Cl/Epiklorhydrin -'-' = { - table2Version = 134 ; - indicatorOfParameter = 102 ; - } -#CH2OC2/Etylenoxid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 103 ; - } -#HF/Vaetefluorid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 105 ; - } -#Hcl/Vaeteklorid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 106 ; - } -#CS2/Koldisulfid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 107 ; - } -#CH3NH2/Metylamin -'-' = { - table2Version = 134 ; - indicatorOfParameter = 108 ; - } -#SF6/Sulphurhexafloride -'-' = { - table2Version = 134 ; - indicatorOfParameter = 110 ; - } -#HCN/Vaetecyanid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 111 ; - } -#COCl2/Fosgen -'-' = { - table2Version = 134 ; - indicatorOfParameter = 112 ; - } -#H2CCHCl/Vinylklorid -'-' = { - table2Version = 134 ; - indicatorOfParameter = 113 ; - } -#Missing -'Missing' = { - table2Version = 134 ; - indicatorOfParameter = 255 ; - } -############### table2Version 135 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 135 ; - indicatorOfParameter = 0 ; - } -#GRG1/MOZART specie -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 1 ; - } -#GRG2/MOZART specie -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 2 ; - } -#GRG3/MOZART specie -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 3 ; - } -#GRG4/MOZART specie -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 4 ; - } -#GRG5/MOZART specie -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 5 ; - } -#VIS-340/Visibility at 340 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 100 ; - } -#VIS-355/Visibility at 355 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 101 ; - } -#VIS-380/Visibility at 380 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 102 ; - } -#VIS-440/Visibility at 440 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 103 ; - } -#VIS-500/Visibility at 500 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 104 ; - } -#VIS-532/Visibility at 532 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 105 ; - } -#VIS-675/Visibility at 675 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 106 ; - } -#VIS-870/Visibility at 870 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 107 ; - } -#VIS-1020/Visibility at 1020 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 108 ; - } -#VIS-1064/Visibility at 1064 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 109 ; - } -#VIS-3500/Visibility at 3500 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 110 ; - } -#VIS-10000/Visibility at 10000 nm -'m' = { - table2Version = 135 ; - indicatorOfParameter = 111 ; - } -#BSCA-340/Backscatter at 340 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 120 ; - } -#BSCA-355/Backscatter at 355 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 121 ; - } -#BSCA-380/Backscatter at 380 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 122 ; - } -#BSCA-440/Backscatter at 440 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 123 ; - } -#BSCA-500/Backscatter at 500 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 124 ; - } -#BSCA-532/Backscatter at 532 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 125 ; - } -#BSCA-675/Backscatter at 675 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 126 ; - } -#BSCA-870/Backscatter at 870 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 127 ; - } -#BSCA-1020/Backscatter at 1020 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 128 ; - } -#BSCA-1064/Backscatter at 1064 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 129 ; - } -#BSCA-3500/Backscatter at 3500 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 130 ; - } -#BSCA-10000/Backscatter at 10000 nm -'1/m/sr' = { - table2Version = 135 ; - indicatorOfParameter = 131 ; - } -#EXT-340/Extinction at 340 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 140 ; - } -#EXT-355/Extinction at 355 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 141 ; - } -#EXT-380/Extinction at 380 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 142 ; - } -#EXT-440/Extinction at 440 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 143 ; - } -#EXT-500/Extinction at 500 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 144 ; - } -#EXT-532/Extinction at 532 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 145 ; - } -#EXT-675/Extinction at 675 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 146 ; - } -#EXT-870/Extinction at 870 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 147 ; - } -#EXT-1020/Extinction at 1020 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 148 ; - } -#EXT-1064/Extinction at 1064 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 149 ; - } -#EXT-3500/Extinction at 3500 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 150 ; - } -#EXT-10000/Extinction at 10000 nm -'1/m' = { - table2Version = 135 ; - indicatorOfParameter = 151 ; - } -#AOD-340/Aerosol optical depth at 340 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 160 ; - } -#AOD-355/Aerosol optical depth at 355 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 161 ; - } -#AOD-380/Aerosol optical depth at 380 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 162 ; - } -#AOD-440/Aerosol optical depth at 440 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 163 ; - } -#AOD-500/Aerosol optical depth at 500 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 164 ; - } -#AOD-532/Aerosol optical depth at 532 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 165 ; - } -#AOD-675/Aerosol optical depth at 675 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 166 ; - } -#AOD-870/Aerosol optical depth at 870 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 167 ; - } -#AOD-1020/Aerosol optical depth at 1020 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 168 ; - } -#AOD-1064/Aerosol optical depth at 1064 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 169 ; - } -#AOD-3500/Aerosol optical depth at 3500 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 170 ; - } -#AOD-10000/Aerosol optical depth at 10000 nm -'1' = { - table2Version = 135 ; - indicatorOfParameter = 171 ; - } -#Rain fraction of total cloud water -'Proportion' = { - table2Version = 135 ; - indicatorOfParameter = 208 ; - } -#Rain factor -'Numeric' = { - table2Version = 135 ; - indicatorOfParameter = 209 ; - } -#Total column integrated rain -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 210 ; - } -#Total column integrated snow -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 211 ; - } -#Total water precipitation -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 212 ; - } -#Total snow precipitation -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 213 ; - } -#Total column water (Vertically integrated total water) -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 214 ; - } -#Large scale precipitation rate -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 215 ; - } -#Convective snowfall rate water equivalent -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 216 ; - } -#Large scale snowfall rate water equivalent -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 217 ; - } -#Total snowfall rate -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 218 ; - } -#Convective snowfall rate -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 219 ; - } -#Large scale snowfall rate -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 220 ; - } -#Snow depth water equivalent -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 221 ; - } -#Snow evaporation -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 222 ; - } -#Total column integrated water vapour -'kg/m2' = { - table2Version = 135 ; - indicatorOfParameter = 223 ; - } -#Rain precipitation rate -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 224 ; - } -#Snow precipitation rate -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 225 ; - } -#Freezing rain precipitation rate -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 226 ; - } -#Ice pellets precipitation rate -'kg/m2/s' = { - table2Version = 135 ; - indicatorOfParameter = 227 ; - } -#Specific cloud liquid water content -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 228 ; - } -#Specific cloud ice water content -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 229 ; - } -#Specific rain water content -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 230 ; - } -#Specific snow water content -'kg/kg' = { - table2Version = 135 ; - indicatorOfParameter = 231 ; - } -#u-component of wind (gust) -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 232 ; - } -#v-component of wind (gust) -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 233 ; - } -#Vertical speed shear -'1/s' = { - table2Version = 135 ; - indicatorOfParameter = 234 ; - } -#Horizontal momentum flux -'N/m2' = { - table2Version = 135 ; - indicatorOfParameter = 235 ; - } -#u-component storm motion -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 236 ; - } -#v-component storm motion -'m/s' = { - table2Version = 135 ; - indicatorOfParameter = 237 ; - } -#Drag coefficient -'Numeric' = { - table2Version = 135 ; - indicatorOfParameter = 238 ; - } -#Eta coordinate vertical velocity -'1/s' = { - table2Version = 135 ; - indicatorOfParameter = 239 ; - } -#Altimeter setting -'Pa' = { - table2Version = 135 ; - indicatorOfParameter = 240 ; - } -#Thickness -'m' = { - table2Version = 135 ; - indicatorOfParameter = 241 ; - } -#Pressure altitude -'m' = { - table2Version = 135 ; - indicatorOfParameter = 242 ; - } -#Density altitude -'m' = { - table2Version = 135 ; - indicatorOfParameter = 243 ; - } -#5-wave geopotential height -'gpm' = { - table2Version = 135 ; - indicatorOfParameter = 244 ; - } -#Zonal flux of gravity wave stress -'N/m2' = { - table2Version = 135 ; - indicatorOfParameter = 245 ; - } -#Meridional flux of gravity wave stress -'N/m2' = { - table2Version = 135 ; - indicatorOfParameter = 246 ; - } -#Planetary boundary layer height -'m' = { - table2Version = 135 ; - indicatorOfParameter = 247 ; - } -#5-wave geopotential height anomaly -'gpm' = { - table2Version = 135 ; - indicatorOfParameter = 248 ; - } -#Standard deviation of sub-gridscale orography -'m' = { - table2Version = 135 ; - indicatorOfParameter = 249 ; - } -#Angle of sub-gridscale orography -'rad' = { - table2Version = 135 ; - indicatorOfParameter = 250 ; - } -#Slope of sub-gridscale orography -'Numeric' = { - table2Version = 135 ; - indicatorOfParameter = 251 ; - } -#Gravity wave dissipation -'W/m2' = { - table2Version = 135 ; - indicatorOfParameter = 252 ; - } -#Anisotropy of sub-gridscale orography -'Numeric' = { - table2Version = 135 ; - indicatorOfParameter = 253 ; - } -#Natural logarithm of pressure in Pa -'Numeric' = { - table2Version = 135 ; - indicatorOfParameter = 254 ; - } -#Missing -'Missing' = { - table2Version = 135 ; - indicatorOfParameter = 255 ; - } -############### table2Version 136 ############ -############### Strang ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 136 ; - indicatorOfParameter = 0 ; - } -#Pressure -'Pa' = { - table2Version = 136 ; - indicatorOfParameter = 1 ; - } -#Temperature -'K' = { - table2Version = 136 ; - indicatorOfParameter = 11 ; - } -#Specific humidity -'kg/kg' = { - table2Version = 136 ; - indicatorOfParameter = 51 ; - } -#Precipitable water -'kg/m2' = { - table2Version = 136 ; - indicatorOfParameter = 54 ; - } -#Snow depth -'m' = { - table2Version = 136 ; - indicatorOfParameter = 66 ; - } -#Total cloud cover -'fraction' = { - table2Version = 136 ; - indicatorOfParameter = 71 ; - } -#Low cloud cover -'fraction' = { - table2Version = 136 ; - indicatorOfParameter = 73 ; - } -#Probability for significant cloud base -'fraction' = { - table2Version = 136 ; - indicatorOfParameter = 77 ; - } -#Significant cloud base -'m' = { - table2Version = 136 ; - indicatorOfParameter = 78 ; - } -#Significant cloud top -'m' = { - table2Version = 136 ; - indicatorOfParameter = 79 ; - } -#Albedo (lev 0=global radiation lev 1=UV radiation) -'fraction' = { - table2Version = 136 ; - indicatorOfParameter = 84 ; - } -#Ice concentration -'fraction' = { - table2Version = 136 ; - indicatorOfParameter = 91 ; - } -#CIE-weighted UV irradiance -'mW/m2' = { - table2Version = 136 ; - indicatorOfParameter = 116 ; - } -#Global irradiance -'W/m2' = { - table2Version = 136 ; - indicatorOfParameter = 117 ; - } -#Beam normal irradiance -'W/m2' = { - table2Version = 136 ; - indicatorOfParameter = 118 ; - } -#Sunshine duration -'min' = { - table2Version = 136 ; - indicatorOfParameter = 119 ; - } -#PAR -'W/m2' = { - table2Version = 136 ; - indicatorOfParameter = 120 ; - } -#Accumulated precipitation, 1 hours -'mm' = { - table2Version = 136 ; - indicatorOfParameter = 165 ; - } -#Accumulated fresh snow, 1 hours -'cm' = { - table2Version = 136 ; - indicatorOfParameter = 175 ; - } -#Total ozone -'Atm cm' = { - table2Version = 136 ; - indicatorOfParameter = 206 ; - } -#Missing -'Missing' = { - table2Version = 136 ; - indicatorOfParameter = 255 ; - } -############### table2Version 137 ############ -############### Match ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 137 ; - indicatorOfParameter = 0 ; - } -#Concentration of SOX, excluding seasalt, in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 1 ; - } -#Drydeposition of SOX, excluding seasalt, mixed gound -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 2 ; - } -#Drydeposition of SOX, excluding seasalt, Pasture -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 3 ; - } -#Drydeposition of SOX, excluding seasalt, Arable -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 4 ; - } -#Drydeposition of SOX, excluding seasalt, Beach Oak -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 5 ; - } -#Drydeposition of SOX, excluding seasalt, Deciduous -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 6 ; - } -#Drydeposition of SOX, excluding seasalt, Spruce -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 7 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 10 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 11 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 12 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 13 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 14 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 15 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 16 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 17 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 20 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 21 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 22 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 23 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 24 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 25 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 26 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 27 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 30 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 31 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 32 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 33 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 34 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 35 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 36 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 37 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 40 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 41 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 42 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 43 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 44 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 45 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 46 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 47 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 50 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 51 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 52 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 53 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 54 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 55 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 56 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 57 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 60 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 61 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 62 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 63 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 64 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 65 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 66 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 67 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 70 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 71 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 72 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 73 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 74 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 75 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 76 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 77 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 100 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 101 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 102 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 103 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 104 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 105 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 106 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 107 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 110 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 111 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 112 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 113 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 114 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 115 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 116 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 117 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 120 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 121 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 122 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 123 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 124 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 125 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 126 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 127 ; - } -#Drydeposition of SOX, excluding seasalt, Pine -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 130 ; - } -#Drydeposition of SOX, excluding seasalt, Wetland -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 131 ; - } -#Drydeposition of SOX, excluding seasalt, Mountain -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 132 ; - } -#Drydeposition of SOX, excluding seasalt, Urban -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 133 ; - } -#Drydeposition of SOX, excluding seasalt, Water -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 134 ; - } -#Wetdeposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 135 ; - } -#Total deposition of SOX, excluding seasalt -'mg S/m**2' = { - table2Version = 137 ; - indicatorOfParameter = 136 ; - } -#Concentration of SOX in air -'ug/m**3' = { - table2Version = 137 ; - indicatorOfParameter = 137 ; - } -#Missing -'Missing' = { - table2Version = 137 ; - indicatorOfParameter = 255 ; - } -############### table2Version 140 ############ -############### Blixtlokalisering ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 140 ; - indicatorOfParameter = 0 ; - } -#Cloud to ground discharge count -'count' = { - table2Version = 140 ; - indicatorOfParameter = 1 ; - } -#Cloud to cloud discharge count -'count' = { - table2Version = 140 ; - indicatorOfParameter = 2 ; - } -#Total discharge count -'count' = { - table2Version = 140 ; - indicatorOfParameter = 3 ; - } -#Cloud to ground accumulated absolute peek current -'kA' = { - table2Version = 140 ; - indicatorOfParameter = 4 ; - } -#Cloud to cloud accumulated absolute peek current -'kA' = { - table2Version = 140 ; - indicatorOfParameter = 5 ; - } -#Total accumulated absolute peek current -'kA' = { - table2Version = 140 ; - indicatorOfParameter = 6 ; - } -#Significant cloud to ground discharge count (discharges with absolute peek current above 100kA) -'count' = { - table2Version = 140 ; - indicatorOfParameter = 7 ; - } -#Significant cloud to cloud discharge count (discharges with absolute peek current above 100kA) -'count' = { - table2Version = 140 ; - indicatorOfParameter = 8 ; - } -#Significant total discharge count (discharges with absolute peek current above 100kA) -'count' = { - table2Version = 140 ; - indicatorOfParameter = 9 ; - } -#Missing -'Missing' = { - table2Version = 140 ; - indicatorOfParameter = 255 ; - } -############### table2Version 150 ############ -############### Hirlam postpr ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 150 ; - indicatorOfParameter = 0 ; - } -#Evaporation Penman formula -'mm' = { - table2Version = 150 ; - indicatorOfParameter = 57 ; - } -#Spray weather recomendation -'index' = { - table2Version = 150 ; - indicatorOfParameter = 58 ; - } -#Missing -'Missing' = { - table2Version = 150 ; - indicatorOfParameter = 255 ; - } -############### table2Version 151 ############ -############### PMP postpr ############ -################################################# -#Reserved -'Reserved' = { - table2Version = 151 ; - indicatorOfParameter = 0 ; - } -#Probability total precipitation between 1 and 10 mm -'%' = { - table2Version = 151 ; - indicatorOfParameter = 1 ; - } -#Probability total precipitation between 10 and 50 mm -'%' = { - table2Version = 151 ; - indicatorOfParameter = 2 ; - } -#Probability total precipitation more than 50 mm -'%' = { - table2Version = 151 ; - indicatorOfParameter = 3 ; - } -#Evaporation Penman formula -'mm' = { - table2Version = 151 ; - indicatorOfParameter = 57 ; - } -#Missing -'Missing' = { - table2Version = 151 ; - indicatorOfParameter = 255 ; - } -### HARMONIE tables ### -#Absolute divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 42 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 41 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 63 ; - } -#Surface aerosol soot (carbon) -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 253 ; - } -#Surface aerosol desert -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 254 ; - } -#Surface aerosol land -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 252 ; - } -#Surface aerosol sea -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 251 ; - } -#Albedo -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 84 ; - } -#Albedo of bare ground -'-' = { - table2Version = 253 ; - indicatorOfParameter = 229 ; - } -#Albedo of vegetation -'-' = { - table2Version = 253 ; - indicatorOfParameter = 230 ; - } -#A Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 248 ; - } -#Analysed RMS of PHI (CANARI) -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 128 ; - } -#Snow albedo -'(0-1)' = { - table2Version = 253 ; - indicatorOfParameter = 190 ; - } -#Anisotropy coeff of topography -'rad' = { - table2Version = 253 ; - indicatorOfParameter = 221 ; - } -#Boundary layer dissipation -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 123 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 77 ; - } -#B Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 249 ; - } -#Brightness temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 118 ; - } -#CAPE out of the model -'J kg-1 ' = { - table2Version = 253 ; - indicatorOfParameter = 160 ; - } -#Cloud base -'m' = { - table2Version = 253 ; - indicatorOfParameter = 186 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 72 ; - } -#Cloud ice water content -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 58 ; - } -#Fraction of clay within soil -'-' = { - table2Version = 253 ; - indicatorOfParameter = 225 ; - } -#C Ozone -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 250 ; - } -#Convective rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 183 ; - } -#Convective snowfall -'m of water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 78 ; - } -#LW net clear sky rad -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 131 ; - } -#SW net clear sky rad -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 130 ; - } -#Cloud top -'m' = { - table2Version = 253 ; - indicatorOfParameter = 187 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 76 ; - } -#Divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 44 ; - } -#Density -'kg m**-3' = { - table2Version = 253 ; - indicatorOfParameter = 89 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 18 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 93 ; - } -#Direction of current -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 47 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 109 ; - } -#Downdraft mesh fraction -'-' = { - table2Version = 253 ; - indicatorOfParameter = 217 ; - } -#Downdraft omega -'ms*-1' = { - table2Version = 253 ; - indicatorOfParameter = 215 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 253 ; - indicatorOfParameter = 82 ; - } -#Direction of main axis of topography -'-' = { - table2Version = 253 ; - indicatorOfParameter = 222 ; - } -#Duration of total precipitation -'s' = { - table2Version = 253 ; - indicatorOfParameter = 243 ; - } -#Dominant vegetation index -'-' = { - table2Version = 253 ; - indicatorOfParameter = 234 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 57 ; - } -#Gust -'m s*-1' = { - table2Version = 253 ; - indicatorOfParameter = 228 ; - } -#Forecast RMS of PHI (CANARI) -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 129 ; - } -#Fraction of urban land -'%' = { - table2Version = 253 ; - indicatorOfParameter = 188 ; - } -#Geopotential Height -'gpm' = { - table2Version = 253 ; - indicatorOfParameter = 7 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 253 ; - indicatorOfParameter = 27 ; - } -#Global radiation flux -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 117 ; - } -#Graupel -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 201 ; - } -#Gravity wave stress U-comp -'kg m**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 195 ; - } -#Gravity wave stress V-comp -'kg m**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 196 ; - } -#Geometrical height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 8 ; - } -#Hail -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 204 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 75 ; - } -#Standard deviation of height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 9 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 253 ; - indicatorOfParameter = 5 ; - } -#Ice cover (1=land, 0=sea) -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 91 ; - } -#Ice divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 98 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 97 ; - } -#Icing index -'-' = { - table2Version = 253 ; - indicatorOfParameter = 135 ; - } -#Ice thickness -'m' = { - table2Version = 253 ; - indicatorOfParameter = 92 ; - } -#Image data -'~' = { - table2Version = 253 ; - indicatorOfParameter = 127 ; - } -#Leaf area index -'m**2 m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 232 ; - } -#Lapse rate -'K s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 19 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 73 ; - } -#Lightning -'-' = { - table2Version = 253 ; - indicatorOfParameter = 209 ; - } -#Latent heat flux through evaporation -'W m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 132 ; - } -#Latent Heat Sublimation -'J kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 244 ; - } -#Large-scale snowfall -'m of water equivalent' = { - table2Version = 253 ; - indicatorOfParameter = 79 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 81 ; - } -#large scale precipitation (water) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 62 ; - } -#Long wave radiation flux -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 115 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 253 ; - indicatorOfParameter = 119 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 74 ; - } -#MOCON out of the model -'kg kg**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 166 ; - } -#Mean direction of primary swell -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 107 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 101 ; - } -#Humidity mixing ratio -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 53 ; - } -#Mixed layer depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 67 ; - } -#Montgomery stream Function -'m**2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 37 ; - } -#Mean period of primary swell -'s' = { - table2Version = 253 ; - indicatorOfParameter = 108 ; - } -#Mean period of wind waves -'s' = { - table2Version = 253 ; - indicatorOfParameter = 103 ; - } -#Surface downward moon radiation -'-' = { - table2Version = 253 ; - indicatorOfParameter = 158 ; - } -#Mask of significant cloud amount -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 133 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 2 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 253 ; - indicatorOfParameter = 70 ; - } -#Main thermocline depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 69 ; - } -#Net long-wave radiation flux (surface) -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 112 ; - } -#Net long-wave radiation flux(atmosph.top) -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 114 ; - } -#Net short-wave radiation flux (surface) -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 111 ; - } -#Net short-wave radiationflux(atmosph.top) -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 113 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 14 ; - } -#Pressure departure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 212 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 253 ; - indicatorOfParameter = 24 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 59 ; - } -#Pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 1 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 26 ; - } -#Precipitation Type -'-' = { - table2Version = 253 ; - indicatorOfParameter = 144 ; - } -#Pseudo satellite image: cloud top temperature (infrared) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 136 ; - } -#Pseudo satellite image: cloud water reflectivity (visible) -'-' = { - table2Version = 253 ; - indicatorOfParameter = 139 ; - } -#Pseudo satellite image: water vapour Tb -'-' = { - table2Version = 253 ; - indicatorOfParameter = 137 ; - } -#Pseudo satellite image: water vapour Tb + correction for clouds -'-' = { - table2Version = 253 ; - indicatorOfParameter = 138 ; - } -#Potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 13 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 3 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 4 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 54 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'%' = { - table2Version = 253 ; - indicatorOfParameter = 52 ; - } -#Rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 181 ; - } -#Radar spectra (3) -'~' = { - table2Version = 253 ; - indicatorOfParameter = 23 ; - } -#Simulated reflectivity -'dBz ?' = { - table2Version = 253 ; - indicatorOfParameter = 210 ; - } -#Resistance to evapotransiration -'s m**-1' = { - table2Version = 253 ; - indicatorOfParameter = 240 ; - } -#Minimum relative moisture at 2 meters -'-' = { - table2Version = 253 ; - indicatorOfParameter = 241 ; - } -#Maximum relative moisture at 2 meters -'-' = { - table2Version = 253 ; - indicatorOfParameter = 242 ; - } -#Runoff -'m' = { - table2Version = 253 ; - indicatorOfParameter = 90 ; - } -#Snow density -'kg m**-3' = { - table2Version = 253 ; - indicatorOfParameter = 191 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 88 ; - } -#Saturation deficit -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 56 ; - } -#Snow depth water equivalent -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 66 ; - } -#Surface emissivity -'-' = { - table2Version = 253 ; - indicatorOfParameter = 235 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 65 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 38 ; - } -#Snow history -'???' = { - table2Version = 253 ; - indicatorOfParameter = 247 ; - } -#Significant height of wind waves -'m' = { - table2Version = 253 ; - indicatorOfParameter = 102 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 94 ; - } -#Soil depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 237 ; - } -#Fraction of sand within soil -'-' = { - table2Version = 253 ; - indicatorOfParameter = 226 ; - } -#Surface latent heat flux -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 121 ; - } -#Soil Temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 85 ; - } -#Soil Moisture -'kg m**-3' = { - table2Version = 253 ; - indicatorOfParameter = 86 ; - } -#Stomatal minimum resistance -'s m**-1' = { - table2Version = 253 ; - indicatorOfParameter = 231 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 99 ; - } -#Snow -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 184 ; - } -#Snow Sublimation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 246 ; - } -#Speed of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 48 ; - } -#Stratiform rain -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 182 ; - } -#Surface roughness * g -'m' = { - table2Version = 253 ; - indicatorOfParameter = 83 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 64 ; - } -#Surface sensible heat flux -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 122 ; - } -#Standard deviation of orography * g -'m**2s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 220 ; - } -#Stream function -'m**2 s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 35 ; - } -#Short wave radiation flux -'J m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 116 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 253 ; - indicatorOfParameter = 105 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 253 ; - indicatorOfParameter = 100 ; - } -#Secondary wave period -'s' = { - table2Version = 253 ; - indicatorOfParameter = 110 ; - } -#Mean period of swell waves -'s' = { - table2Version = 253 ; - indicatorOfParameter = 106 ; - } -#Radiance (with respect to wave length) -'W m**-1 sr**-1' = { - table2Version = 253 ; - indicatorOfParameter = 120 ; - } -#Soil wetness -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 238 ; - } -#Temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 11 ; - } -#Temperature anomaly -'K' = { - table2Version = 253 ; - indicatorOfParameter = 25 ; - } -#Total Cloud Cover -'%' = { - table2Version = 253 ; - indicatorOfParameter = 71 ; - } -#Total column ozone -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 10 ; - } -#Dew point temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 17 ; - } -#TKE -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 200 ; - } -#Maximum temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 16 ; - } -#Total water vapour -'kg kg**-1' = { - table2Version = 253 ; - indicatorOfParameter = 167 ; - } -#Total precipitation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 61 ; - } -#Total solid precipitation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 185 ; - } -#Thunderstorm probability -'%' = { - table2Version = 253 ; - indicatorOfParameter = 60 ; - } -#Transient thermocline depth -'m' = { - table2Version = 253 ; - indicatorOfParameter = 68 ; - } -#Vertical velocity -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 40 ; - } -#U component of wind -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 33 ; - } -#U-component of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 49 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 124 ; - } -#Gust, u-component -'m s*-1' = { - table2Version = 253 ; - indicatorOfParameter = 162 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 95 ; - } -#Updraft mesh fraction -'-' = { - table2Version = 253 ; - indicatorOfParameter = 216 ; - } -#Updraft omega -'ms*-1' = { - table2Version = 253 ; - indicatorOfParameter = 214 ; - } -#V component of wind -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 34 ; - } -#V-component of current -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 50 ; - } -#Vertical Divergence -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 213 ; - } -#Vegetation fraction -'(0 - 1)' = { - table2Version = 253 ; - indicatorOfParameter = 87 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 125 ; - } -#Gust, v-component -'m s*-1' = { - table2Version = 253 ; - indicatorOfParameter = 163 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 96 ; - } -#Visibility -'m' = { - table2Version = 253 ; - indicatorOfParameter = 20 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 43 ; - } -#Vapour pressure -'Pa' = { - table2Version = 253 ; - indicatorOfParameter = 55 ; - } -#Virtual potential temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 12 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 46 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 39 ; - } -#Water on canopy (Interception content) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 192 ; - } -#Water on canopy (Interception content) -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 193 ; - } -#Wind direction -'Degree true' = { - table2Version = 253 ; - indicatorOfParameter = 31 ; - } -#Water evaporation -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 245 ; - } -#Wind mixing energy -'J' = { - table2Version = 253 ; - indicatorOfParameter = 126 ; - } -#Wind speed -'m s**-1' = { - table2Version = 253 ; - indicatorOfParameter = 32 ; - } -#Water temperature -'K' = { - table2Version = 253 ; - indicatorOfParameter = 80 ; - } -#Wave spectra (3) -'~' = { - table2Version = 253 ; - indicatorOfParameter = 30 ; - } -#AROME hail diagnostic -'kg m**-2' = { - table2Version = 253 ; - indicatorOfParameter = 161 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 253 ; - indicatorOfParameter = 6 ; - } -#Thermal roughness length * g -'m' = { - table2Version = 253 ; - indicatorOfParameter = 239 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/kwbc/name.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/name.def deleted file mode 100644 index a49d4245..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/kwbc/name.def +++ /dev/null @@ -1,2 +0,0 @@ -'Snow Depth' = { table2Version=128; indicatorOfParameter =141; } -'V-component of ice drift' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def deleted file mode 100644 index ce22a009..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/kwbc/paramId.def +++ /dev/null @@ -1,2 +0,0 @@ -'260056' = { table2Version=128; indicatorOfParameter =141; } -'3096' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def deleted file mode 100644 index 0089a582..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/kwbc/shortName.def +++ /dev/null @@ -1,2 +0,0 @@ -'sd' = { table2Version=128; indicatorOfParameter =141; } -'vice' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions.save/grib1/localConcepts/kwbc/units.def b/eccodes/definitions.save/grib1/localConcepts/kwbc/units.def deleted file mode 100644 index a7171201..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/kwbc/units.def +++ /dev/null @@ -1,2 +0,0 @@ -'m of water equivalent' = { table2Version=128; indicatorOfParameter =141; } -'m s**-1' = { table2Version=174; indicatorOfParameter =96; } diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def deleted file mode 100644 index 1a579592..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/faFieldName.def +++ /dev/null @@ -1,572 +0,0 @@ -'CLPMHAUT.MOD.XFU' = { - indicatorOfParameter = 165; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLPMOCON.MOD.XFU' = { - indicatorOfParameter = 166; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSHUMI.RELATIVE' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 52; - indicatorOfTypeOfLevel = 105; - level = 2; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSMAXI.TEMPERAT' = { - indicatorOfParameter = 15; - indicatorOfTypeOfLevel = 105; - level = 2; - table2Version = 1; - timeRangeIndicator = 2; -} -'CLSMINI.TEMPERAT' = { - indicatorOfParameter = 16; - indicatorOfTypeOfLevel = 105; - level = 2; - table2Version = 1; - timeRangeIndicator = 2; -} -'CLSTEMPERATURE' = { - indicatorOfParameter = 11; - indicatorOfTypeOfLevel = 105; - level = 2; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSU.RAF.MOD.XFU' = { - indicatorOfParameter = 163; - indicatorOfTypeOfLevel = 105; - level = 10; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSVENT.MERIDIEN' = { - indicatorOfParameter = 34; - indicatorOfTypeOfLevel = 105; - level = 10; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSVENT.ZONAL' = { - indicatorOfParameter = 33; - indicatorOfTypeOfLevel = 105; - level = 10; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLSV.RAF.MOD.XFU' = { - indicatorOfParameter = 164; - indicatorOfTypeOfLevel = 105; - level = 10; - table2Version = 1; - timeRangeIndicator = 0; -} -'CLOUD_FRAC' = { - indicatorOfParameter = 36; - table2Version = 159; - timeRangeIndicator = 0; -} -'HUMI_RELAT' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 52; - table2Version = 1; - timeRangeIndicator = 0; -} -'PRESSURE' = { - indicatorOfParameter = 1; - table2Version = 1; - timeRangeIndicator = 0; -} -'RAD_LIQUID' = { - indicatorOfParameter = 32; - table2Version = 159; - timeRangeIndicator = 0; -} -'RAD_SOLID_' = { - indicatorOfParameter = 247; - table2Version = 128; - timeRangeIndicator = 0; -} -'TEMPERATUR' = { - indicatorOfParameter = 11; - table2Version = 1; - timeRangeIndicator = 0; -} -'TKE' = { - indicatorOfParameter = 37; - table2Version = 159; - timeRangeIndicator = 0; -} -'VENT_MERID' = { - indicatorOfParameter = 34; - table2Version = 1; - timeRangeIndicator = 0; -} -'VENT_ZONAL' = { - indicatorOfParameter = 33; - table2Version = 1; - timeRangeIndicator = 0; -} -'ISOT_ALTIT' = { - indicatorOfParameter = 8; - table2Version = 128; - timeRangeIndicator = 0; -} -'MSLPRESSURE' = { - indicatorOfParameter = 2; - indicatorOfTypeOfLevel = 102; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'ABS_VORTIC' = { - indicatorOfParameter = 41; - table2Version = 1; - timeRangeIndicator = 0; -} -'GEOPOTENTI' = { - indicatorOfParameter = 6; - table2Version = 1; - timeRangeIndicator = 0; -} -'POT_VORTIC' = { - indicatorOfParameter = 4; - table2Version = 1; - timeRangeIndicator = 0; -} -'THETA_PRIM' = { - indicatorOfParameter = 14; - table2Version = 1; - timeRangeIndicator = 0; -} -'VITESSE_VE' = { - indicatorOfParameter = 39; - table2Version = 1; - timeRangeIndicator = 0; -} -'DIVERGENCE' = { - indicatorOfParameter = 44; - table2Version = 1; - timeRangeIndicator = 0; -} -'PROFRESERV.EAU' = { - bottomLevel = 250; - indicatorOfParameter = 153; - indicatorOfTypeOfLevel = 112; - table2Version = 1; - timeRangeIndicator = 0; - topLevel = 0; -} -'PROFRESERV.GLACE' = { - bottomLevel = 250; - indicatorOfParameter = 152; - indicatorOfTypeOfLevel = 112; - table2Version = 1; - timeRangeIndicator = 0; - topLevel = 0; -} -'PROFTEMPERATURE' = { - indicatorOfParameter = 11; - indicatorOfTypeOfLevel = 111; - level = 10; - table2Version = 1; - timeRangeIndicator = 0; -} -'SOMMFLU.RAY.SOLA' = { - LSTCUM = 1; - indicatorOfParameter = 113; - indicatorOfTypeOfLevel = 8; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SOMMFLU.RAY.THER' = { - LSTCUM = 1; - indicatorOfParameter = 114; - indicatorOfTypeOfLevel = 8; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFCAPE.MOD.XFU' = { - indicatorOfParameter = 154; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 159; - timeRangeIndicator = 0; -} -'SURFCAPE.POS.F00' = { - indicatorOfParameter = 160; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFFLU.CHA.SENS' = { - LSTCUM = 1; - indicatorOfParameter = 122; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFFLU.LAT.MTOT' = { - LSTCUM = 1; - indicatorOfParameter = 121; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFFLU.MTOTA.NE' = { - LSTCUM = 1; - indicatorOfParameter = 57; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFFLU.RAY.SOLA' = { - LSTCUM = 1; - indicatorOfParameter = 111; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFFLU.RAY.THER' = { - LSTCUM = 1; - indicatorOfParameter = 112; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFISOTPW0.MALT' = { - indicatorOfParameter = 8; - indicatorOfTypeOfLevel = 20; - level = 27315; - table2Version = 128; - timeRangeIndicator = 0; -} -'SURFNEBUL.BASSE' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 73; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFNEBUL.CONVEC' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 72; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFNEBUL.HAUTE' = { - indicatorOfParameter = 75; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFNEBUL.MOYENN' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 74; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFNEBUL.TOTALE' = { - FMULTM = 1; - FMULTE = 2; - indicatorOfParameter = 71; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFPREC.EAU.CON' = { - LSTCUM = 1; - indicatorOfParameter = 63; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFPREC.EAU.GEC' = { - LSTCUM = 1; - indicatorOfParameter = 62; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFPREC.NEI.CON' = { - LSTCUM = 1; - indicatorOfParameter = 78; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFPREC.NEI.GEC' = { - LSTCUM = 1; - indicatorOfParameter = 79; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFPRESSION' = { - indicatorOfParameter = 1; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFRAYT.LUNE.DE' = { - LSTCUM = 1; - indicatorOfParameter = 158; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFRAYT_SOLA_DE' = { - LSTCUM = 1; - indicatorOfParameter = 105; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 149; - timeRangeIndicator = 4; -} -'SURFRAYT_SOL_CL' = { - LSTCUM = 1; - indicatorOfParameter = 168; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFRAYT_THER_CL' = { - LSTCUM = 1; - indicatorOfParameter = 169; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'SURFRAYT_THER_DE' = { - LSTCUM = 1; - indicatorOfParameter = 104; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 149; - timeRangeIndicator = 4; -} -'SURFRESERV.EAU' = { - bottomLevel = 1; - indicatorOfParameter = 153; - indicatorOfTypeOfLevel = 112; - table2Version = 1; - timeRangeIndicator = 0; - topLevel = 0; -} -'SURFRESERV.GLACE' = { - bottomLevel = 1; - indicatorOfParameter = 152; - indicatorOfTypeOfLevel = 112; - table2Version = 1; - timeRangeIndicator = 0; - topLevel = 0; -} -'SURFRESERV.NEIGE' = { - indicatorOfParameter = 65; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFTEMPERATURE' = { - indicatorOfParameter = 11; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFTENS.TOTA.ME' = { - LSTCUM = 1; - indicatorOfParameter = 131; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFTENS.TOTA.ZO' = { - LSTCUM = 1; - indicatorOfParameter = 130; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFTOT.WAT.VAPO' = { - indicatorOfParameter = 167; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 0; -} -'ABS_VORTICIT' = { - indicatorOfParameter = 41; - table2Version = 1; - timeRangeIndicator = 0; -} -'GEOPOTENTIEL' = { - indicatorOfParameter = 6; - table2Version = 1; - timeRangeIndicator = 0; -} -'TEMPE_POTENT' = { - indicatorOfParameter = 13; - table2Version = 1; - timeRangeIndicator = 0; -} -'VENT_MERIDIE' = { - indicatorOfParameter = 34; - table2Version = 1; - timeRangeIndicator = 0; -} -'C002_METEOSAT_09' = { - indicatorOfParameter = 1; - indicatorOfTypeOfLevel = 100; - level = 62; - table2Version = 129; - timeRangeIndicator = 0; -} -'C006_METEOSAT_09' = { - indicatorOfParameter = 1; - indicatorOfTypeOfLevel = 100; - level = 108; - table2Version = 129; - timeRangeIndicator = 0; -} -'EDR' = { - indicatorOfParameter = 135; - table2Version = 128; - timeRangeIndicator = 0; -} -'SURFISOTPW1.MALT' = { - indicatorOfParameter = 8; - indicatorOfTypeOfLevel = 20; - level = 27315; - table2Version = 128; - timeRangeIndicator = 0; -} -'SURFACCGRAUPEL' = { - LSTCUM = 1; - indicatorOfParameter = 29; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 159; - timeRangeIndicator = 4; -} -'SURFACCNEIGE' = { - LSTCUM = 1; - indicatorOfParameter = 99; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 1; - timeRangeIndicator = 4; -} -'SURFACCPLUIE' = { - LSTCUM = 1; - indicatorOfParameter = 150; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 2; - timeRangeIndicator = 4; -} -'SURFDIAGHAIL' = { - indicatorOfParameter = 248; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 159; - timeRangeIndicator = 0; -} -'SURFREFLECT.MAX' = { - indicatorOfParameter = 217; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 159; - timeRangeIndicator = 0; -} -'CLOUD_WATE' = { - indicatorOfParameter = 32; - table2Version = 159; - timeRangeIndicator = 0; -} -'GRAUPEL' = { - indicatorOfParameter = 35; - table2Version = 159; - timeRangeIndicator = 0; -} -'ICE_CRYSTA' = { - indicatorOfParameter = 247; - table2Version = 128; - timeRangeIndicator = 0; -} -'RAIN' = { - indicatorOfParameter = 33; - table2Version = 159; - timeRangeIndicator = 0; -} -'SNOW' = { - indicatorOfParameter = 34; - table2Version = 159; - timeRangeIndicator = 0; -} -'SIM_REFLEC' = { - indicatorOfParameter = 31; - table2Version = 159; - timeRangeIndicator = 0; -} -'THETA_VIRT' = { - indicatorOfParameter = 38; - table2Version = 159; - timeRangeIndicator = 0; -} -'VERT.VELOC' = { - indicatorOfParameter = 40; - table2Version = 1; - timeRangeIndicator = 0; -} -'SURFRAYT_DIR_SUR' = { - LSTCUM = 1; - indicatorOfParameter = 137; - indicatorOfTypeOfLevel = 1; - level = 0; - table2Version = 128; - timeRangeIndicator = 4; -} -'default' = { - indicatorOfParameter = 255; - table2Version = 255; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def deleted file mode 100644 index 8abf7e84..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/faLevelName.def +++ /dev/null @@ -1,36 +0,0 @@ -'H' = { - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 105; - table2Version = 255; -} -'P' = { - ZLMULT = 1.0000000e-02; - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 100; - table2Version = 255; -} -'V' = { - ZLMULT = 1.0000000e+02; - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 117; - table2Version = 255; -} -'KT' = { - ZLBASE = 1.5000000e+01; - ZLMULT = 1.0000000e+02; - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 115; - table2Version = 255; -} -'KB' = { - ZLBASE = 1.5000000e+01; - ZLMULT = 1.0000000e+02; - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 115; - table2Version = 255; -} -'default' = { - indicatorOfParameter = 255; - indicatorOfTypeOfLevel = 255; - table2Version = 255; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def deleted file mode 100644 index 31b9ed02..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/faModelName.def +++ /dev/null @@ -1,9 +0,0 @@ -'arpege-france-oper-forecast-production' = { generatingProcessIdentifier = 211; } -'arpege-france-oper-forecast-assim' = { generatingProcessIdentifier = 12; } -'arpege-france-dble-forecast-production' = { generatingProcessIdentifier = 212; } -'arpege-france-dble-forecast-assim' = { generatingProcessIdentifier = 22; } -'arome-france-oper-6' = { generatingProcessIdentifier = 204; } -'arome-france-oper-1' = { generatingProcessIdentifier = 213; } -'arome-france-dble-6' = { generatingProcessIdentifier = 209; } -'arome-france-dble-1' = { generatingProcessIdentifier = 210; } -'default' = { generatingProcessIdentifier = 255; } diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/name.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/name.def deleted file mode 100644 index 06aa4274..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/name.def +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total convective Precipitation -'Total convective Precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 156 ; - stepType = "accum" ; - } -#Total large scale precipitation -'Total large scale precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 157 ; - stepType = "accum" ; - } -#Convective Available Potential Energy instantaneous -'Convective Available Potential Energy instantaneous' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def deleted file mode 100644 index d127e96e..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/paramId.def +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total convective Precipitation -'85001156' = { - table2Version = 1 ; - indicatorOfParameter = 156 ; - stepType = "accum" ; - } -#Total large scale precipitation -'85001157' = { - table2Version = 1 ; - indicatorOfParameter = 157 ; - stepType = "accum" ; - } -#Convective Available Potential Energy instantaneous -'85001160' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def deleted file mode 100644 index 7b4f9115..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/shortName.def +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total convective Precipitation -'PREC_CONVEC' = { - table2Version = 1 ; - indicatorOfParameter = 156 ; - stepType = "accum" ; - } -#Total large scale precipitation -'PREC_GDE_ECH' = { - table2Version = 1 ; - indicatorOfParameter = 157 ; - stepType = "accum" ; - } -#Convective Available Potential Energy instantaneous -'CAPE_INS' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lfpw/units.def b/eccodes/definitions.save/grib1/localConcepts/lfpw/units.def deleted file mode 100644 index ba97e24d..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lfpw/units.def +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total convective Precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 156 ; - stepType = "accum" ; - } -#Total large scale precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 157 ; - stepType = "accum" ; - } -#Convective Available Potential Energy instantaneous -'m**2 s**-2' = { - table2Version = 1 ; - indicatorOfParameter = 160 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/lowm/name.def b/eccodes/definitions.save/grib1/localConcepts/lowm/name.def deleted file mode 100644 index abdfa7b5..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lowm/name.def +++ /dev/null @@ -1,66 +0,0 @@ -#Provided by Florian Weidle (ZAMG/Austria) -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } -#Convective available potential energy -'Convective available potential energy' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#Convective inhibition -'Convective inhibition' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } -#Total Precipitation -'Total precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 208 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 201 ; - indicatorOfParameter = 168 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 201 ; - indicatorOfParameter = 167 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 201 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 201 ; - indicatorOfParameter = 166 ; - } -#10 metre wind gust -'10 metre wind gust' = { - table2Version = 201 ; - indicatorOfParameter = 206 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#Geopotential -'Geopotential' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def b/eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def deleted file mode 100644 index 00bad96d..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lowm/paramId.def +++ /dev/null @@ -1,66 +0,0 @@ -#Provided by Florian Weidle (ZAMG/Austria) -#Mean sea level pressure -'151' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } -#Convective available potential energy -'59' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#Convective inhibition -'228001' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } -#Total Precipitation -'228228' = { - table2Version = 201 ; - indicatorOfParameter = 208 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 201 ; - indicatorOfParameter = 168 ; - } -#2 metre temperature -'167' = { - table2Version = 201 ; - indicatorOfParameter = 167 ; - } -#10 metre U wind component -'165' = { - table2Version = 201 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'166' = { - table2Version = 201 ; - indicatorOfParameter = 166 ; - } -#10 metre wind gust -'228028' = { - table2Version = 201 ; - indicatorOfParameter = 206 ; - } -#Large-scale precipitation -'3062' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } -#Land-sea mask -'172' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#Geopotential -'129' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } -#Geopotential Height -'156' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def b/eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def deleted file mode 100644 index dedf91e0..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lowm/shortName.def +++ /dev/null @@ -1,66 +0,0 @@ -#Provided by Florian Weidle (ZAMG/Austria) -#Mean sea level pressure -'msl' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } -#Convective available potential energy -'cape' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#Convective inhibition -'cin' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } -#Total Precipitation -'tp' = { - table2Version = 201 ; - indicatorOfParameter = 208 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 201 ; - indicatorOfParameter = 168 ; - } -#2 metre temperature -'2t' = { - table2Version = 201 ; - indicatorOfParameter = 167 ; - } -#10 metre U wind component -'10u' = { - table2Version = 201 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'10v' = { - table2Version = 201 ; - indicatorOfParameter = 166 ; - } -#10 metre wind gust -'gust' = { - table2Version = 201 ; - indicatorOfParameter = 206 ; - } -#Large-scale precipitation -'lsp' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } -#Land-sea mask -'lsm' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#Geopotential -'z' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } -#Geopotential Height -'gh' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/lowm/units.def b/eccodes/definitions.save/grib1/localConcepts/lowm/units.def deleted file mode 100644 index 11219466..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/lowm/units.def +++ /dev/null @@ -1,66 +0,0 @@ -#Provided by Florian Weidle (ZAMG/Austria) -#Mean sea level pressure -'Pa' = { - table2Version = 201 ; - indicatorOfParameter = 151 ; - } -#Convective available potential energy -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 238 ; - } -#Convective inhibition -'J kg**-1' = { - table2Version = 201 ; - indicatorOfParameter = 243 ; - } -#Total Precipitation -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 208 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 168 ; - } -#2 metre temperature -'K' = { - table2Version = 201 ; - indicatorOfParameter = 167 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 165 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 166 ; - } -#10 metre wind gust -'m s**-1' = { - table2Version = 201 ; - indicatorOfParameter = 206 ; - } -#Large-scale precipitation -'kg m**-2' = { - table2Version = 201 ; - indicatorOfParameter = 232 ; - } -#Land-sea mask -'Proportion' = { - table2Version = 201 ; - indicatorOfParameter = 81 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 201 ; - indicatorOfParameter = 235 ; - } -#Geopotential Height -'gpm' = { - table2Version = 201 ; - indicatorOfParameter = 233 ; - } diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def deleted file mode 100644 index d91932f9..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/cfVarName.def +++ /dev/null @@ -1,962 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'strf' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Sea ice area fraction -'ci' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Montgomery potential -'mont' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Pressure -'pres' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Total column cloud liquid water -'tclw' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total column cloud ice water -'tciw' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Geopotential -'z' = { - table2Version = 200 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 200 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'u10' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'v10' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - topLevel = 10 ; - } -#2 metre temperature -'t2m' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Brightness temperature -'btmp' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Specific cloud ice water content -'ciwc' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Snow depth -'sde' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 200 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 200 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 200 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 200 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#2 metre specific humidity -'sh2' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Convective snow -'snoc' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Maximum wind speed -'maxgust' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#Downward short-wave radiation flux -'dswrf' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Upward short-wave radiation flux -'uswrf' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Cloud water -'cwat' = { - table2Version = 200 ; - indicatorOfParameter = 76 ; - } -#Cloud work function -'cwork' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Total column integrated ozone -'tcioz' = { - table2Version = 200 ; - indicatorOfParameter = 10 ; - } -#Ground heat flux -'gflux' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#2 metre relative humidity -'r2' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Clear Sky Downward Solar Flux -'csdsf' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Clear Sky Upward Solar Flux -'csusf' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Clear Sky Upward Long Wave Flux -'csulf' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Clear Sky Downward Long Wave Flux -'csdlf' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Albedo -'al' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Mean evaporation -'evpsfc' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Mean total precipitation -'tpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Mean large scale precipitation -'lpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Mean convective precipitation -'cpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Mean snowfall rate water equivalent -'srweqsfc' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Mean surface water runoff -'rofsfc' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Square of Brunt-Vaisala frequency -'bvf2tht' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Adiabatic zonal acceleration -'aduahbl' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Adiabatic meridional acceleration -'advaprs' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#Mean frequency of deep convection -'frcvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Mean frequency of shallow convection -'frcvssfc' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Mean frequency of stratocumulus parameterisation -'frscsfc' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Gravity wave zonal acceleration -'gwduahbl' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Gravity wave meridional acceleration -'gwdvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Mean evapotranspiration -'ltrssfc' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Adiabatic heating rate -'adhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Moisture storage on canopy -'mscsfc' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Moisture storage on ground or cover -'msgsfc' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Mass concentration of condensed water in soil -'smcugl' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Upward mass flux at cloud base -'mflxbhbl' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Upward mass flux -'mfluxhbl' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Adiabatic moistening rate -'admrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Ozone mixing ratio -'ozonehbl' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Convective zonal acceleration -'cnvuahbl' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Mean zonal momentum flux by long gravity wave -'fglusfc' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Mean meridional momentum flux by long gravity wave -'fglvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Mean meridional momentum flux by short gravity wave -'fgsvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Mean zonal momentum flux by short gravity wave -'fgsusfc' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Convective meridional acceleration -'cnvvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Large scale condensation heating rate -'lrghrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Convective heating rate -'cnvhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Convective moistening rate -'cnvmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Vertical diffusion heating rate -'vdfhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Vertical diffusion zonal acceleration -'vdfuahbl' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Vertical diffusion meridional acceleration -'vdfvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Vertical diffusion moistening rate -'vdfmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Solar radiative heating rate -'swhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Long wave radiative heating rate -'lwhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Large scale moistening rate -'lrgmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Type of vegetation -'tovg' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#Vertical velocity -'omg2' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Interception loss -'pitp' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Soil wetness of surface -'ussl' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Temperature at canopy -'ctmp' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Ground/surface cover temperature -'tgsc' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Pressure tendency -'ptend' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'h' = { - table2Version = 200 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 200 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 200 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 200 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 200 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 200 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 200 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 200 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'absv' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Vapour pressure -'vp' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'prate' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Mixed layer depth -'mld' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 200 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'wtmp' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'ssw' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Salinity -'s' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Ice thickness -'icetk' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'mdps' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'mpps' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'nswrt' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 200 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Cloud liquid water -'clw' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#Vertical integral of northward heat flux -'vithen' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#specific cloud water content -'qc' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Soil Temperature -'st' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Snow depth water equivalent -'sd' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/name.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/name.def deleted file mode 100644 index bd139be7..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/name.def +++ /dev/null @@ -1,962 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'Stream function' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'Wind speed' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Sea ice area fraction -'Sea ice area fraction' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Montgomery potential -'Montgomery potential' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Pressure -'Pressure' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Total column cloud liquid water -'Total column cloud liquid water' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total column cloud ice water -'Total column cloud ice water' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Geopotential -'Geopotential' = { - table2Version = 200 ; - indicatorOfParameter = 6 ; - } -#Temperature -'Temperature' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'U component of wind' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'V component of wind' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Total column water vapour -'Total column water vapour' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Divergence -'Divergence' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 200 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - topLevel = 10 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Snow depth -'Snow depth' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 200 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 200 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 200 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 200 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'Large scale snow' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#2 metre specific humidity -'2 metre specific humidity' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Convective snow -'Convective snow' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Maximum wind speed -'Maximum wind speed' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Upward short-wave radiation flux -'Upward short-wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Cloud water -'Cloud water' = { - table2Version = 200 ; - indicatorOfParameter = 76 ; - } -#Cloud work function -'Cloud work function' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Total column integrated ozone -'Total column integrated ozone' = { - table2Version = 200 ; - indicatorOfParameter = 10 ; - } -#Ground heat flux -'Ground heat flux' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#2 metre relative humidity -'2 metre relative humidity' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Clear Sky Downward Solar Flux -'Clear Sky Downward Solar Flux' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Clear Sky Upward Solar Flux -'Clear Sky Upward Solar Flux' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Clear Sky Upward Long Wave Flux -'Clear Sky Upward Long Wave Flux' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Clear Sky Downward Long Wave Flux -'Clear Sky Downward Long Wave Flux' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Albedo -'Albedo' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Mean evaporation -'Mean evaporation' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Mean total precipitation -'Mean total precipitation' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Mean large scale precipitation -'Mean large scale precipitation' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Mean convective precipitation -'Mean convective precipitation' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Mean snowfall rate water equivalent -'Mean snowfall rate water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Mean surface water runoff -'Mean surface water runoff' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Square of Brunt-Vaisala frequency -'Square of Brunt-Vaisala frequency' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Adiabatic zonal acceleration -'Adiabatic zonal acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Adiabatic meridional acceleration -'Adiabatic meridional acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#Mean frequency of deep convection -'Mean frequency of deep convection' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Mean frequency of shallow convection -'Mean frequency of shallow convection' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Mean frequency of stratocumulus parameterisation -'Mean frequency of stratocumulus parameterisation' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Gravity wave zonal acceleration -'Gravity wave zonal acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Gravity wave meridional acceleration -'Gravity wave meridional acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Mean evapotranspiration -'Mean evapotranspiration' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Adiabatic heating rate -'Adiabatic heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Moisture storage on canopy -'Moisture storage on canopy' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Moisture storage on ground or cover -'Moisture storage on ground or cover' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Mass concentration of condensed water in soil -'Mass concentration of condensed water in soil' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Upward mass flux at cloud base -'Upward mass flux at cloud base' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Upward mass flux -'Upward mass flux' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Adiabatic moistening rate -'Adiabatic moistening rate' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Ozone mixing ratio -'Ozone mixing ratio' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Convective zonal acceleration -'Convective zonal acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Mean zonal momentum flux by long gravity wave -'Mean zonal momentum flux by long gravity wave' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Mean meridional momentum flux by long gravity wave -'Mean meridional momentum flux by long gravity wave' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Mean meridional momentum flux by short gravity wave -'Mean meridional momentum flux by short gravity wave' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Mean zonal momentum flux by short gravity wave -'Mean zonal momentum flux by short gravity wave' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Convective meridional acceleration -'Convective meridional acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Large scale condensation heating rate -'Large scale condensation heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Convective heating rate -'Convective heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Convective moistening rate -'Convective moistening rate' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Vertical diffusion heating rate -'Vertical diffusion heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Vertical diffusion zonal acceleration -'Vertical diffusion zonal acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Vertical diffusion meridional acceleration -'Vertical diffusion meridional acceleration' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Vertical diffusion moistening rate -'Vertical diffusion moistening rate' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Solar radiative heating rate -'Solar radiative heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Long wave radiative heating rate -'Long wave radiative heating rate' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Large scale moistening rate -'Large scale moistening rate' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Type of vegetation -'Type of vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Interception loss -'Interception loss' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Soil wetness of surface -'Soil wetness of surface' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Temperature at canopy -'Temperature at canopy' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Ground/surface cover temperature -'Ground/surface cover temperature' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 200 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 200 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 200 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 200 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 200 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 200 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 200 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 200 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current ' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current ' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 200 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'Water temperature' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Salinity -'Salinity' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'Net short-wave radiation flux(atmosph.top)' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 200 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Cloud liquid water -'Cloud liquid water' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Vertical integral of eastward heat flux -'Vertical integral of eastward heat flux' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#Vertical integral of northward heat flux -'Vertical integral of northward heat flux' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#Vertical integral of eastward water vapour flux -'Vertical integral of eastward water vapour flux' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Vertical integral of northward water vapour flux -'Vertical integral of northward water vapour flux' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#specific cloud water content -'specific cloud water content' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def deleted file mode 100644 index 300ecdf8..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/paramId.def +++ /dev/null @@ -1,962 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'1' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'2' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'3' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'10' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Sea ice area fraction -'31' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Montgomery potential -'53' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Pressure -'54' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'60' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Total column cloud liquid water -'78' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total column cloud ice water -'79' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Geopotential -'129' = { - table2Version = 200 ; - indicatorOfParameter = 6 ; - } -#Temperature -'130' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'131' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'132' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'133' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'134' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'135' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Total column water vapour -'137' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Vorticity (relative) -'138' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'151' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Divergence -'155' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'156' = { - table2Version = 200 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'157' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'165' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'166' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - topLevel = 10 ; - } -#2 metre temperature -'167' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'172' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'173' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Brightness temperature -'194' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Specific cloud ice water content -'247' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Snow depth -'3066' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'3072' = { - table2Version = 200 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'3073' = { - table2Version = 200 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'3074' = { - table2Version = 200 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'3075' = { - table2Version = 200 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'3079' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'3121' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'3122' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'3123' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#2 metre specific humidity -'174096' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Convective snow -'260011' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Maximum wind speed -'260064' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#Downward short-wave radiation flux -'260087' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Upward short-wave radiation flux -'260088' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#Downward long-wave radiation flux -'260097' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Upward long-wave radiation flux -'260098' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Cloud water -'260102' = { - table2Version = 200 ; - indicatorOfParameter = 76 ; - } -#Cloud work function -'260111' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Total column integrated ozone -'260132' = { - table2Version = 200 ; - indicatorOfParameter = 10 ; - } -#Ground heat flux -'260186' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#2 metre relative humidity -'260242' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Clear Sky Downward Solar Flux -'260342' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Clear Sky Upward Solar Flux -'260344' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Clear Sky Upward Long Wave Flux -'260355' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Clear Sky Downward Long Wave Flux -'260356' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Albedo -'260509' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Mean evaporation -'260600' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Mean total precipitation -'260601' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Mean large scale precipitation -'260602' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Mean convective precipitation -'260603' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Mean snowfall rate water equivalent -'260604' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Mean surface water runoff -'260605' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Square of Brunt-Vaisala frequency -'260606' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Adiabatic zonal acceleration -'260607' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Adiabatic meridional acceleration -'260609' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#Mean frequency of deep convection -'260610' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Mean frequency of shallow convection -'260611' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Mean frequency of stratocumulus parameterisation -'260612' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Gravity wave zonal acceleration -'260613' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Gravity wave meridional acceleration -'260614' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Mean evapotranspiration -'260615' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Adiabatic heating rate -'260616' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Moisture storage on canopy -'260617' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Moisture storage on ground or cover -'260618' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Mass concentration of condensed water in soil -'260619' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Upward mass flux at cloud base -'260621' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Upward mass flux -'260622' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Adiabatic moistening rate -'260623' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Ozone mixing ratio -'260624' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Convective zonal acceleration -'260625' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Mean zonal momentum flux by long gravity wave -'260626' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Mean meridional momentum flux by long gravity wave -'260627' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Mean meridional momentum flux by short gravity wave -'260628' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Mean zonal momentum flux by short gravity wave -'260629' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Convective meridional acceleration -'260632' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Large scale condensation heating rate -'260633' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Convective heating rate -'260634' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Convective moistening rate -'260635' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Vertical diffusion heating rate -'260636' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Vertical diffusion zonal acceleration -'260637' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Vertical diffusion meridional acceleration -'260638' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Vertical diffusion moistening rate -'260639' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Solar radiative heating rate -'260640' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Long wave radiative heating rate -'260641' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Large scale moistening rate -'260642' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Type of vegetation -'260643' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Virtual temperature -'300012' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#Vertical velocity -'300040' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Interception loss -'300179' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Soil wetness of surface -'300182' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Temperature at canopy -'300190' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Ground/surface cover temperature -'300191' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Pressure tendency -'3003' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'3008' = { - table2Version = 200 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'3009' = { - table2Version = 200 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'3015' = { - table2Version = 200 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'3016' = { - table2Version = 200 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'3017' = { - table2Version = 200 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'3018' = { - table2Version = 200 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'3019' = { - table2Version = 200 ; - indicatorOfParameter = 19 ; - } -#Visibility -'3020' = { - table2Version = 200 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'3021' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'3022' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'3023' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'3025' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'3026' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'3027' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'3028' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'3029' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'3030' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'3031' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Sigma coordinate vertical velocity -'3038' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'3041' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'3042' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'3045' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'3046' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'3047' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'3048' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'3049' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'3050' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'3053' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Vapour pressure -'3055' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'3056' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'3059' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'3060' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Mixed layer depth -'3067' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'3068' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'3069' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'3070' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - table2Version = 200 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'3080' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'3082' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'3086' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Salinity -'3088' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Density -'3089' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Ice thickness -'3092' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'3093' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'3094' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'3095' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'3096' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'3097' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'3098' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'3099' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'3100' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'3101' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'3102' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'3103' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'3104' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'3105' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'3106' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'3107' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'3108' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'3109' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'3110' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'3112' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'3113' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'3114' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'3115' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'3116' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'3117' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'3119' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'3120' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'3124' = { - table2Version = 200 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'3125' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'3126' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Image data -'3127' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Cloud liquid water -'130212' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Percentage of vegetation -'160199' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Vertical integral of eastward heat flux -'162069' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#Vertical integral of northward heat flux -'162070' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#Vertical integral of eastward water vapour flux -'162071' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Vertical integral of northward water vapour flux -'162072' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#specific cloud water content -'201031' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Soil Temperature -'228139' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Snow depth water equivalent -'228141' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'228164' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def deleted file mode 100644 index b65dce32..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/shortName.def +++ /dev/null @@ -1,962 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'strf' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Sea ice area fraction -'ci' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Montgomery potential -'mont' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Pressure -'pres' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Total column cloud liquid water -'tclw' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total column cloud ice water -'tciw' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Geopotential -'z' = { - table2Version = 200 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Total column water vapour -'tcwv' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 200 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10u' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10v' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - topLevel = 10 ; - } -#2 metre temperature -'2t' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Brightness temperature -'btmp' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Specific cloud ice water content -'ciwc' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Snow depth -'sde' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 200 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 200 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 200 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 200 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#2 metre specific humidity -'2sh' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Convective snow -'snoc' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Maximum wind speed -'maxgust' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#Downward short-wave radiation flux -'dswrf' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Upward short-wave radiation flux -'uswrf' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Cloud water -'cwat' = { - table2Version = 200 ; - indicatorOfParameter = 76 ; - } -#Cloud work function -'cwork' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Total column integrated ozone -'tcioz' = { - table2Version = 200 ; - indicatorOfParameter = 10 ; - } -#Ground heat flux -'gflux' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#2 metre relative humidity -'2r' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Clear Sky Downward Solar Flux -'csdsf' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Clear Sky Upward Solar Flux -'csusf' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Clear Sky Upward Long Wave Flux -'csulf' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Clear Sky Downward Long Wave Flux -'csdlf' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Albedo -'al' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Mean evaporation -'evpsfc' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Mean total precipitation -'tpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Mean large scale precipitation -'lpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Mean convective precipitation -'cpratsfc' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Mean snowfall rate water equivalent -'srweqsfc' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Mean surface water runoff -'rofsfc' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Square of Brunt-Vaisala frequency -'bvf2tht' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Adiabatic zonal acceleration -'aduahbl' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Adiabatic meridional acceleration -'advaprs' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#Mean frequency of deep convection -'frcvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Mean frequency of shallow convection -'frcvssfc' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Mean frequency of stratocumulus parameterisation -'frscsfc' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Gravity wave zonal acceleration -'gwduahbl' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Gravity wave meridional acceleration -'gwdvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Mean evapotranspiration -'ltrssfc' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Adiabatic heating rate -'adhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Moisture storage on canopy -'mscsfc' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Moisture storage on ground or cover -'msgsfc' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Mass concentration of condensed water in soil -'smcugl' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Upward mass flux at cloud base -'mflxbhbl' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Upward mass flux -'mfluxhbl' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Adiabatic moistening rate -'admrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Ozone mixing ratio -'ozonehbl' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Convective zonal acceleration -'cnvuahbl' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Mean zonal momentum flux by long gravity wave -'fglusfc' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Mean meridional momentum flux by long gravity wave -'fglvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Mean meridional momentum flux by short gravity wave -'fgsvsfc' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Mean zonal momentum flux by short gravity wave -'fgsusfc' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Convective meridional acceleration -'cnvvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Large scale condensation heating rate -'lrghrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Convective heating rate -'cnvhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Convective moistening rate -'cnvmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Vertical diffusion heating rate -'vdfhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Vertical diffusion zonal acceleration -'vdfuahbl' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Vertical diffusion meridional acceleration -'vdfvahbl' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Vertical diffusion moistening rate -'vdfmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Solar radiative heating rate -'swhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Long wave radiative heating rate -'lwhrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Large scale moistening rate -'lrgmrhbl' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Type of vegetation -'tovg' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#Vertical velocity -'omg2' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Interception loss -'pitp' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Soil wetness of surface -'ussl' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Temperature at canopy -'ctmp' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Ground/surface cover temperature -'tgsc' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Pressure tendency -'ptend' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'h' = { - table2Version = 200 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 200 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 200 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 200 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 200 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 200 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 200 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 200 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'absv' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Vapour pressure -'vp' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'prate' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Mixed layer depth -'mld' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 200 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'wtmp' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'ssw' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Salinity -'s' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Ice thickness -'icetk' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'mdps' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'mpps' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'nswrt' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 200 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Cloud liquid water -'clw' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#Vertical integral of northward heat flux -'vithen' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#specific cloud water content -'qc' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Soil Temperature -'st' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Snow depth water equivalent -'sd' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def deleted file mode 100644 index 985938c9..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/stepType.def +++ /dev/null @@ -1,24 +0,0 @@ -# stepType for JMA -# In case of a repeated entry: -# set uses the FIRST one -# get returns the LAST match - -"instant" = {timeRangeIndicator=1;} -"instant" = {timeRangeIndicator=10;} -"instant" = {timeRangeIndicator=0;} -"avg" = {timeRangeIndicator=3;} -"avgfc" = {timeRangeIndicator=113;} -"avgd" = {timeRangeIndicator=113;} -"accum" = {timeRangeIndicator=2;} -"accum" = {timeRangeIndicator=4;} -"diff" = {timeRangeIndicator=5;} -"avgua" = {timeRangeIndicator=123;} -"avgia" = {timeRangeIndicator=124;} - -# Specific to JMA -"avgas" = {timeRangeIndicator=128;} -"avgad" = {timeRangeIndicator=130;} - -"varas" = {timeRangeIndicator=129;} -"varad" = {timeRangeIndicator=131;} -"varins" = {timeRangeIndicator=132;} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def deleted file mode 100644 index bf9f35ff..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/typeOfLevel.def +++ /dev/null @@ -1,43 +0,0 @@ -# Concepts for JMA levels -# -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricInPa' = {indicatorOfTypeOfLevel=210;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} -'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} -# -# The following are specific to JMA -# -'deepSoil' = {indicatorOfTypeOfLevel=211;} -'subSurface' = {indicatorOfTypeOfLevel=212;} -'threeLayers' = {indicatorOfTypeOfLevel=213;} diff --git a/eccodes/definitions.save/grib1/localConcepts/rjtd/units.def b/eccodes/definitions.save/grib1/localConcepts/rjtd/units.def deleted file mode 100644 index 9e951ab1..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/rjtd/units.def +++ /dev/null @@ -1,962 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'m**2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 32 ; - } -#Sea ice area fraction -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 91 ; - } -#Montgomery potential -'m**2 s**-2' = { - table2Version = 200 ; - indicatorOfParameter = 37 ; - } -#Pressure -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 4 ; - } -#Total column cloud liquid water -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 227 ; - } -#Total column cloud ice water -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 58 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 200 ; - indicatorOfParameter = 6 ; - } -#Temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 39 ; - } -#Total column water vapour -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 54 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 2 ; - } -#Divergence -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gpm' = { - table2Version = 200 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'%' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - topLevel = 10 ; - } -#2 metre temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'m' = { - table2Version = 200 ; - indicatorOfParameter = 83 ; - } -#Brightness temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 118 ; - } -#Specific cloud ice water content -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 229 ; - } -#Snow depth -'m' = { - table2Version = 200 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'%' = { - table2Version = 200 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'%' = { - table2Version = 200 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'%' = { - table2Version = 200 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'%' = { - table2Version = 200 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 123 ; - } -#2 metre specific humidity -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 51 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Convective snow -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 78 ; - } -#Maximum wind speed -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 219 ; - } -#Downward short-wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 204 ; - } -#Upward short-wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 211 ; - } -#Downward long-wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 205 ; - } -#Upward long-wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 212 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 76 ; - } -#Cloud work function -'J kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 146 ; - } -#Total column integrated ozone -'DU' = { - table2Version = 200 ; - indicatorOfParameter = 10 ; - } -#Ground heat flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 155 ; - } -#2 metre relative humidity -'%' = { - table2Version = 200 ; - indicatorOfParameter = 52 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Clear Sky Downward Solar Flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 161 ; - } -#Clear Sky Upward Solar Flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 160 ; - } -#Clear Sky Upward Long Wave Flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 162 ; - } -#Clear Sky Downward Long Wave Flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 163 ; - } -#Albedo -'%' = { - table2Version = 200 ; - indicatorOfParameter = 84 ; - } -#Mean evaporation -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 57 ; - } -#Mean total precipitation -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 61 ; - } -#Mean large scale precipitation -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 62 ; - } -#Mean convective precipitation -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 63 ; - } -#Mean snowfall rate water equivalent -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 64 ; - } -#Mean surface water runoff -'mm per day' = { - table2Version = 200 ; - indicatorOfParameter = 90 ; - } -#Square of Brunt-Vaisala frequency -'s**-2' = { - table2Version = 200 ; - indicatorOfParameter = 132 ; - } -#Adiabatic zonal acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 151 ; - } -#Adiabatic meridional acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 165 ; - } -#Mean frequency of deep convection -'%' = { - table2Version = 200 ; - indicatorOfParameter = 170 ; - } -#Mean frequency of shallow convection -'%' = { - table2Version = 200 ; - indicatorOfParameter = 171 ; - } -#Mean frequency of stratocumulus parameterisation -'%' = { - table2Version = 200 ; - indicatorOfParameter = 172 ; - } -#Gravity wave zonal acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 173 ; - } -#Gravity wave meridional acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 174 ; - } -#Mean evapotranspiration -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 202 ; - } -#Adiabatic heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 222 ; - } -#Moisture storage on canopy -'m' = { - table2Version = 200 ; - indicatorOfParameter = 223 ; - } -#Moisture storage on ground or cover -'m' = { - table2Version = 200 ; - indicatorOfParameter = 224 ; - } -#Mass concentration of condensed water in soil -'kg m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 226 ; - } -#Upward mass flux at cloud base -'kg m**-2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 230 ; - } -#Upward mass flux -'kg m**-2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 231 ; - } -#Adiabatic moistening rate -'kg kg**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 236 ; - } -#Ozone mixing ratio -'mg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 237 ; - } -#Convective zonal acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 239 ; - } -#Mean zonal momentum flux by long gravity wave -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 147 ; - } -#Mean meridional momentum flux by long gravity wave -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 148 ; - } -#Mean meridional momentum flux by short gravity wave -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 154 ; - } -#Mean zonal momentum flux by short gravity wave -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 159 ; - } -#Convective meridional acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 240 ; - } -#Large scale condensation heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 241 ; - } -#Convective heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 242 ; - } -#Convective moistening rate -'kg kg**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 243 ; - } -#Vertical diffusion heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 246 ; - } -#Vertical diffusion zonal acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 247 ; - } -#Vertical diffusion meridional acceleration -'m s**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 248 ; - } -#Vertical diffusion moistening rate -'kg kg**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 249 ; - } -#Solar radiative heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 250 ; - } -#Long wave radiative heating rate -'K per day' = { - table2Version = 200 ; - indicatorOfParameter = 251 ; - } -#Large scale moistening rate -'kg kg**-1 per day' = { - table2Version = 200 ; - indicatorOfParameter = 253 ; - } -#Type of vegetation -'Code Table JMA-252' = { - table2Version = 200 ; - indicatorOfParameter = 252 ; - } -#Virtual temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 12 ; - } -#Vertical velocity -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 40 ; - } -#Interception loss -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 203 ; - } -#Soil wetness of surface -'(0 - 1)' = { - table2Version = 200 ; - indicatorOfParameter = 225 ; - } -#Temperature at canopy -'K' = { - table2Version = 200 ; - indicatorOfParameter = 144 ; - } -#Ground/surface cover temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 145 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 200 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'m' = { - table2Version = 200 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 200 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 200 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 200 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 200 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 200 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 200 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 200 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'~' = { - table2Version = 200 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 31 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 53 ; - } -#Vapour pressure -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 200 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 200 ; - indicatorOfParameter = 60 ; - } -#Mixed layer depth -'m' = { - table2Version = 200 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 200 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 200 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 200 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 200 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 200 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 86 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 200 ; - indicatorOfParameter = 89 ; - } -#Ice thickness -'m' = { - table2Version = 200 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 200 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 200 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 200 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 200 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 200 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 200 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 200 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 200 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 200 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - table2Version = 200 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 200 ; - indicatorOfParameter = 126 ; - } -#Image data -'~' = { - table2Version = 200 ; - indicatorOfParameter = 127 ; - } -#Cloud liquid water -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 228 ; - } -#Percentage of vegetation -'%' = { - table2Version = 200 ; - indicatorOfParameter = 87 ; - } -#Vertical integral of eastward heat flux -'W m**-1' = { - table2Version = 200 ; - indicatorOfParameter = 190 ; - } -#Vertical integral of northward heat flux -'W m**-1' = { - table2Version = 200 ; - indicatorOfParameter = 191 ; - } -#Vertical integral of eastward water vapour flux -'kg m**-1 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 157 ; - } -#Vertical integral of northward water vapour flux -'kg m**-1 s**-1' = { - table2Version = 200 ; - indicatorOfParameter = 152 ; - } -#specific cloud water content -'kg kg**-1' = { - table2Version = 200 ; - indicatorOfParameter = 221 ; - } -#Soil Temperature -'K' = { - table2Version = 200 ; - indicatorOfParameter = 85 ; - } -#Snow depth water equivalent -'kg m**-2' = { - table2Version = 200 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'%' = { - table2Version = 200 ; - indicatorOfParameter = 71 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/sbsj/name.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/name.def deleted file mode 100644 index 1540b6b3..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/sbsj/name.def +++ /dev/null @@ -1,1136 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure -'Pressure' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to msl -'Pressure reduced to msl' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } -#Geopotential -'Geopotential' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'Geopotential height' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'Geometric height' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } -#Absolute temperature -'Absolute temperature' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } -#Dew point depression -'Dew point depression' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } -#Radar spectra(1) -'Radar spectra(1)' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } -#Radar spectra(2) -'Radar spectra(2)' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } -#Radar spectra(3) -'Radar spectra(3)' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } -#Geopot height anomaly -'Geopot height anomaly' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } -#Wave spectra(1) -'Wave spectra(1)' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } -#Wave spectra(2) -'Wave spectra(2)' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } -#Wave spectra(3) -'Wave spectra(3)' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'Wind speed' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } -#Zonal wind (u) -'Zonal wind (u)' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } -#Meridional wind (v) -'Meridional wind (v)' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } -#Stream function -'Stream function' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } -#Sigma coord vert vel -'Sigma coord vert vel' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } -#Omega -'Omega' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } -#Vorticity -'Vorticity' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } -#Divergence -'Divergence' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } -#Vertical u-comp shear -'Vertical u-comp shear' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } -#Vert v-comp shear -'Vert v-comp shear' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } -#Inst. precipitable water -'Inst. precipitable water' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'Evaporation' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } -#Thunder probability -'Thunder probability' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'Total precipitation' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'Large scale precipitation' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'Convective precipitation' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } -#Snowfall -'Snowfall' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } -#Wat equiv acc snow depth -'Wat equiv acc snow depth' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'Snow depth' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } -#Trans thermocline depth -'Trans thermocline depth' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anom -'Main thermocline anom' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } -#Cloud cover -'Cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'Cloud water' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hpa) -'Best lifted index (to 500 hpa)' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } -#Land sea mask -'Land sea mask' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } -#Dev sea_lev from mean -'Dev sea_lev from mean' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } -#Roughness length -'Roughness length' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } -#Albedo -'Albedo' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } -#Deep soil temperature -'Deep soil temperature' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'Vegetation' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } -#Density -'Density' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } -#Ice concentration -'Ice concentration' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } -#U-comp of ice drift -'U-comp of ice drift' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } -#V-comp of ice drift -'V-comp of ice drift' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } -#Ice growth -'Ice growth' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } -#Sig hgt com wave/swell -'Sig hgt com wave/swell' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } -#Direction of wind wave -'Direction of wind wave' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } -#Sig hght of wind waves -'Sig hght of wind waves' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } -#Mean period wind waves -'Mean period wind waves' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } -#Direction of swell wave -'Direction of swell wave' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } -#Sig height swell waves -'Sig height swell waves' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } -#Mean period swell waves -'Mean period swell waves' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } -#Prim wave mean period -'Prim wave mean period' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } -#Second wave direction -'Second wave direction' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } -#Second wave mean period -'Second wave mean period' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } -#Short wave absorbed at ground -'Short wave absorbed at ground' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } -#Net long wave at bottom -'Net long wave at bottom' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } -#Net short-wav rad(top) -'Net short-wav rad(top)' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } -#Outgoing long wave at top -'Outgoing long wave at top' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } -#Long-wav rad -'Long-wav rad' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } -#Short wave absorbed by earth/atmosphere -'Short wave absorbed by earth/atmosphere' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } -#Global radiation -'Global radiation' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } -#Latent heat flux from surface -'Latent heat flux from surface' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux from surface -'Sensible heat flux from surface' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } -#Bound layer dissipation -'Bound layer dissipation' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } -#Image -'Image' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } -#10 metre u-wind component -'10 metre u-wind component' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } -#10 metre v-wind component -'10 metre v-wind component' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } -#Topography -'Topography' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } -#Geometric mean surface pressure -'Geometric mean surface pressure' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } -#Ln surface pressure -'Ln surface pressure' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } -#M s l pressure (mesinger method) -'M s l pressure (mesinger method)' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } -#Mask -'Mask' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } -#Maximum u-wind -'Maximum u-wind' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } -#Maximum v-wind -'Maximum v-wind' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } -#Convective avail. pot.energy -'Convective avail. pot.energy' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } -#Convective inhib. energy -'Convective inhib. energy' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } -#Convective latent heating -'Convective latent heating' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } -#Convective moisture source -'Convective moisture source' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } -#Shallow conv. moisture source -'Shallow conv. moisture source' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } -#Shallow convective heating -'Shallow convective heating' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } -#Maximum wind press. lvl -'Maximum wind press. lvl' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } -#Storm motion u-component -'Storm motion u-component' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } -#Storm motion v-component -'Storm motion v-component' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } -#Mean cloud cover -'Mean cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } -#Pressure at cloud base -'Pressure at cloud base' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } -#Pressure at cloud top -'Pressure at cloud top' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } -#Freezing level height -'Freezing level height' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } -#Freezing level relative humidity -'Freezing level relative humidity' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } -#Flight levels temperature -'Flight levels temperature' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } -#Flight levels u-wind -'Flight levels u-wind' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } -#Flight levels v-wind -'Flight levels v-wind' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } -#Tropopause pressure -'Tropopause pressure' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } -#Tropopause temperature -'Tropopause temperature' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } -#Tropopause u-wind component -'Tropopause u-wind component' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } -#Tropopause v-wind component -'Tropopause v-wind component' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } -#Gravity wave drag du/dt -'Gravity wave drag du/dt' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } -#Gravity wave drag dv/dt -'Gravity wave drag dv/dt' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } -#Gravity wave drag sfc zonal stress -'Gravity wave drag sfc zonal stress' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } -#Gravity wave drag sfc meridional stress -'Gravity wave drag sfc meridional stress' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } -#Divergence of specific humidity -'Divergence of specific humidity' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } -#Horiz. moisture flux conv. -'Horiz. moisture flux conv.' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } -#Vert. integrated moisture flux conv. -'Vert. integrated moisture flux conv.' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } -#Vertical moisture advection -'Vertical moisture advection' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } -#Neg. hum. corr. moisture source -'Neg. hum. corr. moisture source' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } -#Large scale latent heating -'Large scale latent heating' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } -#Large scale moisture source -'Large scale moisture source' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } -#Soil moisture availability -'Soil moisture availability' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } -#Soil temperature of root zone -'Soil temperature of root zone' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } -#Bare soil latent heat -'Bare soil latent heat' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } -#Potential sfc evaporation -'Potential sfc evaporation' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } -#Runoff -'Runoff' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } -#Interception loss -'Interception loss' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } -#Vapor pressure of canopy air space -'Vapor pressure of canopy air space' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } -#Surface spec humidity -'Surface spec humidity' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } -#Soil wetness of surface -'Soil wetness of surface' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } -#Soil wetness of root zone -'Soil wetness of root zone' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } -#Soil wetness of drainage zone -'Soil wetness of drainage zone' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } -#Storage on canopy -'Storage on canopy' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } -#Storage on ground -'Storage on ground' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } -#Surface temperature -'Surface temperature' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } -#Surface absolute temperature -'Surface absolute temperature' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } -#Temperature of canopy air space -'Temperature of canopy air space' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } -#Temperature at canopy -'Temperature at canopy' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } -#Ground/surface cover temperature -'Ground/surface cover temperature' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } -#Surface zonal wind (u) -'Surface zonal wind (u)' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } -#Surface zonal wind stress -'Surface zonal wind stress' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } -#Surface meridional wind (v) -'Surface meridional wind (v)' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } -#Surface meridional wind stress -'Surface meridional wind stress' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } -#Surface momentum flux -'Surface momentum flux' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } -#Incident short wave flux -'Incident short wave flux' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } -#Time ave ground ht flx -'Time ave ground ht flx' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } -#Net long wave at bottom (clear) -'Net long wave at bottom (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } -#Outgoing long wave at top (clear) -'Outgoing long wave at top (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } -#Short wv absrbd by earth/atmos (clear) -'Short wv absrbd by earth/atmos (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } -#Short wave absorbed at ground (clear) -'Short wave absorbed at ground (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } -#Long wave radiative heating -'Long wave radiative heating' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } -#Short wave radiative heating -'Short wave radiative heating' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } -#Downward long wave at bottom -'Downward long wave at bottom' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } -#Downward long wave at bottom (clear) -'Downward long wave at bottom (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } -#Downward short wave at ground -'Downward short wave at ground' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } -#Downward short wave at ground (clear) -'Downward short wave at ground (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } -#Upward long wave at bottom -'Upward long wave at bottom' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } -#Upward short wave at ground -'Upward short wave at ground' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } -#Upward short wave at ground (clear) -'Upward short wave at ground (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } -#Upward short wave at top -'Upward short wave at top' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } -#Upward short wave at top (clear) -'Upward short wave at top (clear)' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } -#Horizontal heating diffusion -'Horizontal heating diffusion' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } -#Horizontal moisture diffusion -'Horizontal moisture diffusion' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } -#Horizontal divergence diffusion -'Horizontal divergence diffusion' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } -#Horizontal vorticity diffusion -'Horizontal vorticity diffusion' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } -#Vertical diff. moisture source -'Vertical diff. moisture source' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } -#Vertical diffusion du/dt -'Vertical diffusion du/dt' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion dv/dt -'Vertical diffusion dv/dt' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } -#Vertical diffusion heating -'Vertical diffusion heating' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } -#Surface relative humidity -'Surface relative humidity' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } -#Vertical dist total cloud cover -'Vertical dist total cloud cover' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } -#Time mean surface zonal wind (u) -'Time mean surface zonal wind (u)' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } -#Time mean surface meridional wind (v) -'Time mean surface meridional wind (v)' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } -#Time mean surface absolute temperature -'Time mean surface absolute temperature' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } -#Time mean surface relative humidity -'Time mean surface relative humidity' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } -#Time mean absolute temperature -'Time mean absolute temperature' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } -#Time mean deep soil temperature -'Time mean deep soil temperature' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } -#Time mean derived omega -'Time mean derived omega' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } -#Time mean divergence -'Time mean divergence' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } -#Time mean geopotential height -'Time mean geopotential height' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } -#Time mean log surface pressure -'Time mean log surface pressure' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } -#Time mean mask -'Time mean mask' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } -#Time mean meridional wind (v) -'Time mean meridional wind (v)' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } -#Time mean omega -'Time mean omega' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } -#Time mean potential temperature -'Time mean potential temperature' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } -#Time mean precip. water -'Time mean precip. water' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } -#Time mean relative humidity -'Time mean relative humidity' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } -#Time mean sea level pressure -'Time mean sea level pressure' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } -#Time mean sigmadot -'Time mean sigmadot' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } -#Time mean specific humidity -'Time mean specific humidity' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } -#Time mean stream function -'Time mean stream function' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } -#Time mean surface pressure -'Time mean surface pressure' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } -#Time mean surface temperature -'Time mean surface temperature' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } -#Time mean velocity potential -'Time mean velocity potential' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } -#Time mean virtual temperature -'Time mean virtual temperature' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } -#Time mean vorticity -'Time mean vorticity' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } -#Time mean zonal wind (u) -'Time mean zonal wind (u)' = { - table2Version = 254 ; - indicatorOfParameter = 255 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def deleted file mode 100644 index 235923df..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/sbsj/paramId.def +++ /dev/null @@ -1,1136 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure -'300001' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to msl -'300002' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'300003' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } -#Geopotential -'300006' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'300007' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'300008' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } -#Absolute temperature -'300011' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'300012' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'300013' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'300014' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'300015' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'300016' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'300017' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } -#Dew point depression -'300018' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'300019' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } -#Radar spectra(1) -'300021' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } -#Radar spectra(2) -'300022' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } -#Radar spectra(3) -'300023' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly -'300025' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'300026' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } -#Geopot height anomaly -'300027' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } -#Wave spectra(1) -'300028' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } -#Wave spectra(2) -'300029' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } -#Wave spectra(3) -'300030' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'300031' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'300032' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } -#Zonal wind (u) -'300033' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } -#Meridional wind (v) -'300034' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } -#Stream function -'300035' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'300036' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } -#Sigma coord vert vel -'300038' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } -#Omega -'300039' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'300040' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'300041' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'300042' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } -#Vorticity -'300043' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } -#Divergence -'300044' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } -#Vertical u-comp shear -'300045' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } -#Vert v-comp shear -'300046' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'300047' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'300048' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'300049' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'300050' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'300051' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'300052' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'300053' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } -#Inst. precipitable water -'300054' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'300055' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'300056' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'300057' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } -#Precipitation rate -'300059' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } -#Thunder probability -'300060' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'300061' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'300062' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'300063' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } -#Snowfall -'300064' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } -#Wat equiv acc snow depth -'300065' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'300066' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'300067' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } -#Trans thermocline depth -'300068' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'300069' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anom -'300070' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } -#Cloud cover -'300071' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'300072' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'300073' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'300074' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'300075' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'300076' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hpa) -'300077' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } -#Land sea mask -'300081' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } -#Dev sea_lev from mean -'300082' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } -#Roughness length -'300083' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } -#Albedo -'300084' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } -#Deep soil temperature -'300085' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'300086' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'300087' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } -#Density -'300089' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } -#Ice concentration -'300091' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'300092' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'300093' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'300094' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } -#U-comp of ice drift -'300095' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } -#V-comp of ice drift -'300096' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } -#Ice growth -'300097' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'300098' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } -#Sig hgt com wave/swell -'300100' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } -#Direction of wind wave -'300101' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } -#Sig hght of wind waves -'300102' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } -#Mean period wind waves -'300103' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } -#Direction of swell wave -'300104' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } -#Sig height swell waves -'300105' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } -#Mean period swell waves -'300106' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'300107' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } -#Prim wave mean period -'300108' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } -#Second wave direction -'300109' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } -#Second wave mean period -'300110' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } -#Short wave absorbed at ground -'300111' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } -#Net long wave at bottom -'300112' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } -#Net short-wav rad(top) -'300113' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } -#Outgoing long wave at top -'300114' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } -#Long-wav rad -'300115' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } -#Short wave absorbed by earth/atmosphere -'300116' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } -#Global radiation -'300117' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } -#Latent heat flux from surface -'300121' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux from surface -'300122' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } -#Bound layer dissipation -'300123' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } -#Image -'300127' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } -#2 metre temperature -'300128' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } -#2 metre dewpoint temperature -'300129' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } -#10 metre u-wind component -'300130' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } -#10 metre v-wind component -'300131' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } -#Topography -'300132' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } -#Geometric mean surface pressure -'300133' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } -#Ln surface pressure -'300134' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'300135' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } -#M s l pressure (mesinger method) -'300136' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } -#Mask -'300137' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } -#Maximum u-wind -'300138' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } -#Maximum v-wind -'300139' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } -#Convective avail. pot.energy -'300140' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } -#Convective inhib. energy -'300141' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } -#Convective latent heating -'300142' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } -#Convective moisture source -'300143' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } -#Shallow conv. moisture source -'300144' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } -#Shallow convective heating -'300145' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } -#Maximum wind press. lvl -'300146' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } -#Storm motion u-component -'300147' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } -#Storm motion v-component -'300148' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } -#Mean cloud cover -'300149' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } -#Pressure at cloud base -'300150' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } -#Pressure at cloud top -'300151' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } -#Freezing level height -'300152' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } -#Freezing level relative humidity -'300153' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } -#Flight levels temperature -'300154' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } -#Flight levels u-wind -'300155' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } -#Flight levels v-wind -'300156' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } -#Tropopause pressure -'300157' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } -#Tropopause temperature -'300158' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } -#Tropopause u-wind component -'300159' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } -#Tropopause v-wind component -'300160' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } -#Gravity wave drag du/dt -'300162' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } -#Gravity wave drag dv/dt -'300163' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } -#Gravity wave drag sfc zonal stress -'300164' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } -#Gravity wave drag sfc meridional stress -'300165' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } -#Divergence of specific humidity -'300167' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } -#Horiz. moisture flux conv. -'300168' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } -#Vert. integrated moisture flux conv. -'300169' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } -#Vertical moisture advection -'300170' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } -#Neg. hum. corr. moisture source -'300171' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } -#Large scale latent heating -'300172' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } -#Large scale moisture source -'300173' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } -#Soil moisture availability -'300174' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } -#Soil temperature of root zone -'300175' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } -#Bare soil latent heat -'300176' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } -#Potential sfc evaporation -'300177' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } -#Runoff -'300178' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } -#Interception loss -'300179' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } -#Vapor pressure of canopy air space -'300180' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } -#Surface spec humidity -'300181' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } -#Soil wetness of surface -'300182' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } -#Soil wetness of root zone -'300183' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } -#Soil wetness of drainage zone -'300184' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } -#Storage on canopy -'300185' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } -#Storage on ground -'300186' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } -#Surface temperature -'300187' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } -#Surface absolute temperature -'300188' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } -#Temperature of canopy air space -'300189' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } -#Temperature at canopy -'300190' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } -#Ground/surface cover temperature -'300191' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } -#Surface zonal wind (u) -'300192' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } -#Surface zonal wind stress -'300193' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } -#Surface meridional wind (v) -'300194' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } -#Surface meridional wind stress -'300195' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } -#Surface momentum flux -'300196' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } -#Incident short wave flux -'300197' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } -#Time ave ground ht flx -'300198' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } -#Net long wave at bottom (clear) -'300200' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } -#Outgoing long wave at top (clear) -'300201' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } -#Short wv absrbd by earth/atmos (clear) -'300202' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } -#Short wave absorbed at ground (clear) -'300203' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } -#Long wave radiative heating -'300205' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } -#Short wave radiative heating -'300206' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } -#Downward long wave at bottom -'300207' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } -#Downward long wave at bottom (clear) -'300208' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } -#Downward short wave at ground -'300209' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } -#Downward short wave at ground (clear) -'300210' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } -#Upward long wave at bottom -'300211' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } -#Upward short wave at ground -'300212' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } -#Upward short wave at ground (clear) -'300213' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } -#Upward short wave at top -'300214' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } -#Upward short wave at top (clear) -'300215' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } -#Horizontal heating diffusion -'300218' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } -#Horizontal moisture diffusion -'300219' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } -#Horizontal divergence diffusion -'300220' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } -#Horizontal vorticity diffusion -'300221' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } -#Vertical diff. moisture source -'300222' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } -#Vertical diffusion du/dt -'300223' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion dv/dt -'300224' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } -#Vertical diffusion heating -'300225' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } -#Surface relative humidity -'300226' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } -#Vertical dist total cloud cover -'300227' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } -#Time mean surface zonal wind (u) -'300230' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } -#Time mean surface meridional wind (v) -'300231' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } -#Time mean surface absolute temperature -'300232' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } -#Time mean surface relative humidity -'300233' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } -#Time mean absolute temperature -'300234' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } -#Time mean deep soil temperature -'300235' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } -#Time mean derived omega -'300236' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } -#Time mean divergence -'300237' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } -#Time mean geopotential height -'300238' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } -#Time mean log surface pressure -'300239' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } -#Time mean mask -'300240' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } -#Time mean meridional wind (v) -'300241' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } -#Time mean omega -'300242' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } -#Time mean potential temperature -'300243' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } -#Time mean precip. water -'300244' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } -#Time mean relative humidity -'300245' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } -#Time mean sea level pressure -'300246' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } -#Time mean sigmadot -'300247' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } -#Time mean specific humidity -'300248' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } -#Time mean stream function -'300249' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } -#Time mean surface pressure -'300250' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } -#Time mean surface temperature -'300251' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } -#Time mean velocity potential -'300252' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } -#Time mean virtual temperature -'300253' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } -#Time mean vorticity -'300254' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } -#Time mean zonal wind (u) -'300255' = { - table2Version = 254 ; - indicatorOfParameter = 255 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def deleted file mode 100644 index ce101d89..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/sbsj/shortName.def +++ /dev/null @@ -1,1136 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure -'pres' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to msl -'psnm' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'tsps' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } -#Geopotential -'geop' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'zgeo' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'gzge' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } -#Absolute temperature -'temp' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'ptmp' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'psat' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'mxtp' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'mntp' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'tpor' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } -#Dew point depression -'dptd' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lpsr' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } -#Radar spectra(1) -'rds1' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } -#Radar spectra(2) -'rds2' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } -#Radar spectra(3) -'rds3' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly -'tpan' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'psan' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } -#Geopot height anomaly -'zgan' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } -#Wave spectra(1) -'wvs1' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } -#Wave spectra(2) -'wvs2' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } -#Wave spectra(3) -'wvs3' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wind' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'wins' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } -#Zonal wind (u) -'uvel' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } -#Meridional wind (v) -'vvel' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } -#Stream function -'fcor' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'potv' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } -#Sigma coord vert vel -'sgvv' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } -#Omega -'omeg' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'omg2' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'abvo' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'abdv' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } -#Vorticity -'vort' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } -#Divergence -'divg' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } -#Vertical u-comp shear -'vucs' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } -#Vert v-comp shear -'vvcs' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spdc' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucpc' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcpc' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'umes' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'umrl' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'hmxr' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } -#Inst. precipitable water -'agpl' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vapp' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'sadf' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'evap' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } -#Precipitation rate -'prcr' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } -#Thunder probability -'thpb' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'prec' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'prge' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'prcv' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } -#Snowfall -'neve' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } -#Wat equiv acc snow depth -'wenv' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'nvde' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'mxld' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } -#Trans thermocline depth -'tthd' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anom -'mtha' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } -#Cloud cover -'cbnv' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'cvnv' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lwnv' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mdnv' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hinv' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'wtnv' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hpa) -'bli' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } -#Land sea mask -'lsmk' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } -#Dev sea_lev from mean -'dslm' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } -#Roughness length -'zorl' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } -#Albedo -'albe' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } -#Deep soil temperature -'dstp' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'soic' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'vege' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } -#Density -'dens' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } -#Ice concentration -'icec' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icet' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'iced' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'ices' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } -#U-comp of ice drift -'iceu' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } -#V-comp of ice drift -'icev' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } -#Ice growth -'iceg' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'icdv' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } -#Sig hgt com wave/swell -'shcw' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } -#Direction of wind wave -'wwdi' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } -#Sig hght of wind waves -'wwsh' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } -#Mean period wind waves -'wwmp' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } -#Direction of swell wave -'swdi' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } -#Sig height swell waves -'swsh' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } -#Mean period swell waves -'swmp' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'prwd' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } -#Prim wave mean period -'prmp' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } -#Second wave direction -'swdi' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } -#Second wave mean period -'swmp' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } -#Short wave absorbed at ground -'ocas' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } -#Net long wave at bottom -'slds' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } -#Net short-wav rad(top) -'nswr' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } -#Outgoing long wave at top -'role' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } -#Long-wav rad -'lwrd' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } -#Short wave absorbed by earth/atmosphere -'swea' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } -#Global radiation -'glbr' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } -#Latent heat flux from surface -'clsf' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux from surface -'cssf' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } -#Bound layer dissipation -'blds' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } -#Image -'imag' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } -#2 metre temperature -'tp2m' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } -#2 metre dewpoint temperature -'dp2m' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } -#10 metre u-wind component -'u10m' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } -#10 metre v-wind component -'v10m' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } -#Topography -'topo' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } -#Geometric mean surface pressure -'gsfp' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } -#Ln surface pressure -'lnsp' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'pslc' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } -#M s l pressure (mesinger method) -'pslm' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } -#Mask -'mask' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } -#Maximum u-wind -'mxwu' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } -#Maximum v-wind -'mxwv' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } -#Convective avail. pot.energy -'cape' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } -#Convective inhib. energy -'cine' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } -#Convective latent heating -'lhcv' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } -#Convective moisture source -'mscv' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } -#Shallow conv. moisture source -'scvm' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } -#Shallow convective heating -'scvh' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } -#Maximum wind press. lvl -'mxwp' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } -#Storm motion u-component -'ustr' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } -#Storm motion v-component -'vstr' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } -#Mean cloud cover -'cbnt' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } -#Pressure at cloud base -'pcbs' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } -#Pressure at cloud top -'pctp' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } -#Freezing level height -'fzht' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } -#Freezing level relative humidity -'fzrh' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } -#Flight levels temperature -'fdlt' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } -#Flight levels u-wind -'fdlu' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } -#Flight levels v-wind -'fdlv' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } -#Tropopause pressure -'tppp' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } -#Tropopause temperature -'tppt' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } -#Tropopause u-wind component -'tppu' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } -#Tropopause v-wind component -'tppv' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } -#Gravity wave drag du/dt -'gvdu' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } -#Gravity wave drag dv/dt -'gvdv' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } -#Gravity wave drag sfc zonal stress -'gvus' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } -#Gravity wave drag sfc meridional stress -'gvvs' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } -#Divergence of specific humidity -'dvsh' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } -#Horiz. moisture flux conv. -'hmfc' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } -#Vert. integrated moisture flux conv. -'vmfl' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } -#Vertical moisture advection -'vadv' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } -#Neg. hum. corr. moisture source -'nhcm' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } -#Large scale latent heating -'lglh' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } -#Large scale moisture source -'lgms' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } -#Soil moisture availability -'smav' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } -#Soil temperature of root zone -'tgrz' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } -#Bare soil latent heat -'bslh' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } -#Potential sfc evaporation -'evpp' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } -#Runoff -'rnof' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } -#Interception loss -'pitp' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } -#Vapor pressure of canopy air space -'vpca' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } -#Surface spec humidity -'qsfc' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } -#Soil wetness of surface -'ussl' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } -#Soil wetness of root zone -'uzrs' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } -#Soil wetness of drainage zone -'uzds' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } -#Storage on canopy -'amdl' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } -#Storage on ground -'amsl' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } -#Surface temperature -'tsfc' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } -#Surface absolute temperature -'tems' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } -#Temperature of canopy air space -'tcas' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } -#Temperature at canopy -'ctmp' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } -#Ground/surface cover temperature -'tgsc' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } -#Surface zonal wind (u) -'uves' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } -#Surface zonal wind stress -'usst' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } -#Surface meridional wind (v) -'vves' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } -#Surface meridional wind stress -'vsst' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } -#Surface momentum flux -'suvf' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } -#Incident short wave flux -'iswf' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } -#Time ave ground ht flx -'ghfl' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } -#Net long wave at bottom (clear) -'lwbc' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } -#Outgoing long wave at top (clear) -'lwtc' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } -#Short wv absrbd by earth/atmos (clear) -'swec' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } -#Short wave absorbed at ground (clear) -'ocac' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } -#Long wave radiative heating -'lwrh' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } -#Short wave radiative heating -'swrh' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } -#Downward long wave at bottom -'olis' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } -#Downward long wave at bottom (clear) -'olic' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } -#Downward short wave at ground -'ocis' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } -#Downward short wave at ground (clear) -'ocic' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } -#Upward long wave at bottom -'oles' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } -#Upward short wave at ground -'oces' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } -#Upward short wave at ground (clear) -'swgc' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } -#Upward short wave at top -'roce' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } -#Upward short wave at top (clear) -'swtc' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } -#Horizontal heating diffusion -'hhdf' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } -#Horizontal moisture diffusion -'hmdf' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } -#Horizontal divergence diffusion -'hddf' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } -#Horizontal vorticity diffusion -'hvdf' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } -#Vertical diff. moisture source -'vdms' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } -#Vertical diffusion du/dt -'vdfu' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion dv/dt -'vdfv' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } -#Vertical diffusion heating -'vdfh' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } -#Surface relative humidity -'umrs' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } -#Vertical dist total cloud cover -'vdcc' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } -#Time mean surface zonal wind (u) -'usmt' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } -#Time mean surface meridional wind (v) -'vsmt' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } -#Time mean surface absolute temperature -'tsmt' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } -#Time mean surface relative humidity -'rsmt' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } -#Time mean absolute temperature -'atmt' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } -#Time mean deep soil temperature -'stmt' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } -#Time mean derived omega -'ommt' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } -#Time mean divergence -'dvmt' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } -#Time mean geopotential height -'zhmt' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } -#Time mean log surface pressure -'lnmt' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } -#Time mean mask -'mkmt' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } -#Time mean meridional wind (v) -'vvmt' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } -#Time mean omega -'omtm' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } -#Time mean potential temperature -'ptmt' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } -#Time mean precip. water -'pcmt' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } -#Time mean relative humidity -'rhmt' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } -#Time mean sea level pressure -'mpmt' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } -#Time mean sigmadot -'simt' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } -#Time mean specific humidity -'uemt' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } -#Time mean stream function -'fcmt' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } -#Time mean surface pressure -'psmt' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } -#Time mean surface temperature -'tmmt' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } -#Time mean velocity potential -'pvmt' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } -#Time mean virtual temperature -'tvmt' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } -#Time mean vorticity -'vtmt' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } -#Time mean zonal wind (u) -'uvmt' = { - table2Version = 254 ; - indicatorOfParameter = 255 ; -} diff --git a/eccodes/definitions.save/grib1/localConcepts/sbsj/units.def b/eccodes/definitions.save/grib1/localConcepts/sbsj/units.def deleted file mode 100644 index ba33b886..00000000 --- a/eccodes/definitions.save/grib1/localConcepts/sbsj/units.def +++ /dev/null @@ -1,1136 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 1 ; - } -#Pressure reduced to msl -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 2 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 3 ; - } -#Geopotential -'dam' = { - table2Version = 254 ; - indicatorOfParameter = 6 ; - } -#Geopotential height -'gpm' = { - table2Version = 254 ; - indicatorOfParameter = 7 ; - } -#Geometric height -'m' = { - table2Version = 254 ; - indicatorOfParameter = 8 ; - } -#Absolute temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 11 ; - } -#Virtual temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 12 ; - } -#Potential temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 13 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 17 ; - } -#Dew point depression -'K' = { - table2Version = 254 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 254 ; - indicatorOfParameter = 19 ; - } -#Radar spectra(1) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 21 ; - } -#Radar spectra(2) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 22 ; - } -#Radar spectra(3) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 23 ; - } -#Temperature anomaly -'K' = { - table2Version = 254 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa hPa' = { - table2Version = 254 ; - indicatorOfParameter = 26 ; - } -#Geopot height anomaly -'m' = { - table2Version = 254 ; - indicatorOfParameter = 27 ; - } -#Wave spectra(1) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 28 ; - } -#Wave spectra(2) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 29 ; - } -#Wave spectra(3) -'dimensionless' = { - table2Version = 254 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 31 ; - } -#Wind speed -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 32 ; - } -#Zonal wind (u) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 33 ; - } -#Meridional wind (v) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 34 ; - } -#Stream function -'m**2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 36 ; - } -#Sigma coord vert vel -'s s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 38 ; - } -#Omega -'Pa s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 39 ; - } -#Vertical velocity -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 40 ; - } -#Absolute vorticity -'10**5 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'10**5 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 42 ; - } -#Vorticity -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 43 ; - } -#Divergence -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 44 ; - } -#Vertical u-comp shear -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 45 ; - } -#Vert v-comp shear -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 50 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 254 ; - indicatorOfParameter = 51 ; - } -#Relative humidity -'~' = { - table2Version = 254 ; - indicatorOfParameter = 52 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 254 ; - indicatorOfParameter = 53 ; - } -#Inst. precipitable water -'kg m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa hPa' = { - table2Version = 254 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa hPa' = { - table2Version = 254 ; - indicatorOfParameter = 56 ; - } -#Evaporation -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 57 ; - } -#Precipitation rate -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 59 ; - } -#Thunder probability -'%' = { - table2Version = 254 ; - indicatorOfParameter = 60 ; - } -#Total precipitation -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 61 ; - } -#Large scale precipitation -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 62 ; - } -#Convective precipitation -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 63 ; - } -#Snowfall -'kg m**-2/day' = { - table2Version = 254 ; - indicatorOfParameter = 64 ; - } -#Wat equiv acc snow depth -'kg m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 65 ; - } -#Snow depth -'cm' = { - table2Version = 254 ; - indicatorOfParameter = 66 ; - } -#Mixed layer depth -'m cm' = { - table2Version = 254 ; - indicatorOfParameter = 67 ; - } -#Trans thermocline depth -'m cm' = { - table2Version = 254 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m cm' = { - table2Version = 254 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anom -'m cm' = { - table2Version = 254 ; - indicatorOfParameter = 70 ; - } -#Cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 71 ; - } -#Convective cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 75 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 76 ; - } -#Best lifted index (to 500 hpa) -'K' = { - table2Version = 254 ; - indicatorOfParameter = 77 ; - } -#Land sea mask -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 81 ; - } -#Dev sea_lev from mean -'m' = { - table2Version = 254 ; - indicatorOfParameter = 82 ; - } -#Roughness length -'m' = { - table2Version = 254 ; - indicatorOfParameter = 83 ; - } -#Albedo -'%' = { - table2Version = 254 ; - indicatorOfParameter = 84 ; - } -#Deep soil temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 85 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 86 ; - } -#Vegetation -'%' = { - table2Version = 254 ; - indicatorOfParameter = 87 ; - } -#Density -'kg m**-3' = { - table2Version = 254 ; - indicatorOfParameter = 89 ; - } -#Ice concentration -'Fraction' = { - table2Version = 254 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 254 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 94 ; - } -#U-comp of ice drift -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 95 ; - } -#V-comp of ice drift -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 96 ; - } -#Ice growth -'m' = { - table2Version = 254 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 98 ; - } -#Sig hgt com wave/swell -'m' = { - table2Version = 254 ; - indicatorOfParameter = 100 ; - } -#Direction of wind wave -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 101 ; - } -#Sig hght of wind waves -'m' = { - table2Version = 254 ; - indicatorOfParameter = 102 ; - } -#Mean period wind waves -'s' = { - table2Version = 254 ; - indicatorOfParameter = 103 ; - } -#Direction of swell wave -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 104 ; - } -#Sig height swell waves -'m' = { - table2Version = 254 ; - indicatorOfParameter = 105 ; - } -#Mean period swell waves -'s' = { - table2Version = 254 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 107 ; - } -#Prim wave mean period -'s' = { - table2Version = 254 ; - indicatorOfParameter = 108 ; - } -#Second wave direction -'deg' = { - table2Version = 254 ; - indicatorOfParameter = 109 ; - } -#Second wave mean period -'s' = { - table2Version = 254 ; - indicatorOfParameter = 110 ; - } -#Short wave absorbed at ground -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 111 ; - } -#Net long wave at bottom -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 112 ; - } -#Net short-wav rad(top) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 113 ; - } -#Outgoing long wave at top -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 114 ; - } -#Long-wav rad -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 115 ; - } -#Short wave absorbed by earth/atmosphere -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 116 ; - } -#Global radiation -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 117 ; - } -#Latent heat flux from surface -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux from surface -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 122 ; - } -#Bound layer dissipation -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 123 ; - } -#Image -'image^data' = { - table2Version = 254 ; - indicatorOfParameter = 127 ; - } -#2 metre temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 128 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } -#10 metre u-wind component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } -#10 metre v-wind component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } -#Topography -'m' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } -#Geometric mean surface pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } -#Ln surface pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } -#Surface pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } -#M s l pressure (mesinger method) -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } -#Mask -'-/+' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } -#Maximum u-wind -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } -#Maximum v-wind -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } -#Convective avail. pot.energy -'m**2 s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } -#Convective inhib. energy -'m**2 s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } -#Convective latent heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } -#Convective moisture source -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 143 ; - } -#Shallow conv. moisture source -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 144 ; - } -#Shallow convective heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 145 ; - } -#Maximum wind press. lvl -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 146 ; - } -#Storm motion u-component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 147 ; - } -#Storm motion v-component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 148 ; - } -#Mean cloud cover -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 149 ; - } -#Pressure at cloud base -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 150 ; - } -#Pressure at cloud top -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 151 ; - } -#Freezing level height -'m' = { - table2Version = 254 ; - indicatorOfParameter = 152 ; - } -#Freezing level relative humidity -'%' = { - table2Version = 254 ; - indicatorOfParameter = 153 ; - } -#Flight levels temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 154 ; - } -#Flight levels u-wind -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 155 ; - } -#Flight levels v-wind -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 156 ; - } -#Tropopause pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 157 ; - } -#Tropopause temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 158 ; - } -#Tropopause u-wind component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 159 ; - } -#Tropopause v-wind component -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 160 ; - } -#Gravity wave drag du/dt -'m s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 162 ; - } -#Gravity wave drag dv/dt -'m s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 163 ; - } -#Gravity wave drag sfc zonal stress -'Pa' = { - table2Version = 254 ; - indicatorOfParameter = 164 ; - } -#Gravity wave drag sfc meridional stress -'Pa' = { - table2Version = 254 ; - indicatorOfParameter = 165 ; - } -#Divergence of specific humidity -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 167 ; - } -#Horiz. moisture flux conv. -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 168 ; - } -#Vert. integrated moisture flux conv. -'kg m**-2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 169 ; - } -#Vertical moisture advection -'kg kg**-1 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 170 ; - } -#Neg. hum. corr. moisture source -'kg kg**-1 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 171 ; - } -#Large scale latent heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 172 ; - } -#Large scale moisture source -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 173 ; - } -#Soil moisture availability -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 174 ; - } -#Soil temperature of root zone -'K' = { - table2Version = 254 ; - indicatorOfParameter = 175 ; - } -#Bare soil latent heat -'Ws m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 176 ; - } -#Potential sfc evaporation -'m' = { - table2Version = 254 ; - indicatorOfParameter = 177 ; - } -#Runoff -'kg m**-2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 178 ; - } -#Interception loss -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 179 ; - } -#Vapor pressure of canopy air space -'mb' = { - table2Version = 254 ; - indicatorOfParameter = 180 ; - } -#Surface spec humidity -'kg kg**-1' = { - table2Version = 254 ; - indicatorOfParameter = 181 ; - } -#Soil wetness of surface -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 182 ; - } -#Soil wetness of root zone -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 183 ; - } -#Soil wetness of drainage zone -'(0 - 1)' = { - table2Version = 254 ; - indicatorOfParameter = 184 ; - } -#Storage on canopy -'m' = { - table2Version = 254 ; - indicatorOfParameter = 185 ; - } -#Storage on ground -'m' = { - table2Version = 254 ; - indicatorOfParameter = 186 ; - } -#Surface temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 187 ; - } -#Surface absolute temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 188 ; - } -#Temperature of canopy air space -'K' = { - table2Version = 254 ; - indicatorOfParameter = 189 ; - } -#Temperature at canopy -'K' = { - table2Version = 254 ; - indicatorOfParameter = 190 ; - } -#Ground/surface cover temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 191 ; - } -#Surface zonal wind (u) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 192 ; - } -#Surface zonal wind stress -'Pa' = { - table2Version = 254 ; - indicatorOfParameter = 193 ; - } -#Surface meridional wind (v) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 194 ; - } -#Surface meridional wind stress -'Pa' = { - table2Version = 254 ; - indicatorOfParameter = 195 ; - } -#Surface momentum flux -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 196 ; - } -#Incident short wave flux -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 197 ; - } -#Time ave ground ht flx -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 198 ; - } -#Net long wave at bottom (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 200 ; - } -#Outgoing long wave at top (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 201 ; - } -#Short wv absrbd by earth/atmos (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 202 ; - } -#Short wave absorbed at ground (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 203 ; - } -#Long wave radiative heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 205 ; - } -#Short wave radiative heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 206 ; - } -#Downward long wave at bottom -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 207 ; - } -#Downward long wave at bottom (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 208 ; - } -#Downward short wave at ground -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 209 ; - } -#Downward short wave at ground (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 210 ; - } -#Upward long wave at bottom -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 211 ; - } -#Upward short wave at ground -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 212 ; - } -#Upward short wave at ground (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 213 ; - } -#Upward short wave at top -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 214 ; - } -#Upward short wave at top (clear) -'W m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 215 ; - } -#Horizontal heating diffusion -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 218 ; - } -#Horizontal moisture diffusion -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 219 ; - } -#Horizontal divergence diffusion -'s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 220 ; - } -#Horizontal vorticity diffusion -'s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 221 ; - } -#Vertical diff. moisture source -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 222 ; - } -#Vertical diffusion du/dt -'m s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 223 ; - } -#Vertical diffusion dv/dt -'m s**-12' = { - table2Version = 254 ; - indicatorOfParameter = 224 ; - } -#Vertical diffusion heating -'K s**-2' = { - table2Version = 254 ; - indicatorOfParameter = 225 ; - } -#Surface relative humidity -'~' = { - table2Version = 254 ; - indicatorOfParameter = 226 ; - } -#Vertical dist total cloud cover -'~' = { - table2Version = 254 ; - indicatorOfParameter = 227 ; - } -#Time mean surface zonal wind (u) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 230 ; - } -#Time mean surface meridional wind (v) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 231 ; - } -#Time mean surface absolute temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 232 ; - } -#Time mean surface relative humidity -'~' = { - table2Version = 254 ; - indicatorOfParameter = 233 ; - } -#Time mean absolute temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 234 ; - } -#Time mean deep soil temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 235 ; - } -#Time mean derived omega -'Pa s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 236 ; - } -#Time mean divergence -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 237 ; - } -#Time mean geopotential height -'m' = { - table2Version = 254 ; - indicatorOfParameter = 238 ; - } -#Time mean log surface pressure -'ln(cbar)' = { - table2Version = 254 ; - indicatorOfParameter = 239 ; - } -#Time mean mask -'-/+' = { - table2Version = 254 ; - indicatorOfParameter = 240 ; - } -#Time mean meridional wind (v) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 241 ; - } -#Time mean omega -'cbar s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 242 ; - } -#Time mean potential temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 243 ; - } -#Time mean precip. water -'kg m**-2' = { - table2Version = 254 ; - indicatorOfParameter = 244 ; - } -#Time mean relative humidity -'%' = { - table2Version = 254 ; - indicatorOfParameter = 245 ; - } -#Time mean sea level pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 246 ; - } -#Time mean sigmadot -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 247 ; - } -#Time mean specific humidity -'kg kg**-1' = { - table2Version = 254 ; - indicatorOfParameter = 248 ; - } -#Time mean stream function -'m**2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 249 ; - } -#Time mean surface pressure -'hPa' = { - table2Version = 254 ; - indicatorOfParameter = 250 ; - } -#Time mean surface temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 251 ; - } -#Time mean velocity potential -'m**2 s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 252 ; - } -#Time mean virtual temperature -'K' = { - table2Version = 254 ; - indicatorOfParameter = 253 ; - } -#Time mean vorticity -'s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 254 ; - } -#Time mean zonal wind (u) -'m s**-1' = { - table2Version = 254 ; - indicatorOfParameter = 255 ; -} diff --git a/eccodes/definitions.save/grib1/localDefinitionNumber.34.table b/eccodes/definitions.save/grib1/localDefinitionNumber.34.table deleted file mode 100644 index c730ef41..00000000 --- a/eccodes/definitions.save/grib1/localDefinitionNumber.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# JMA -1 1 MARS labelling or ensemble forecast data diff --git a/eccodes/definitions.save/grib1/localDefinitionNumber.82.table b/eccodes/definitions.save/grib1/localDefinitionNumber.82.table deleted file mode 100644 index 1d00b5d6..00000000 --- a/eccodes/definitions.save/grib1/localDefinitionNumber.82.table +++ /dev/null @@ -1,10 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 May 2013 -# -######################### -82 82 standard operational SMHI -83 83 MATCH data (standard operational SMHI + extra MATCH keywords) -255 255 MISSING diff --git a/eccodes/definitions.save/grib1/localDefinitionNumber.96.table b/eccodes/definitions.save/grib1/localDefinitionNumber.96.table deleted file mode 100644 index 2c0e67e7..00000000 --- a/eccodes/definitions.save/grib1/localDefinitionNumber.96.table +++ /dev/null @@ -1 +0,0 @@ -40 40 MARS labeling with domain and model (for LAM) diff --git a/eccodes/definitions.save/grib1/localDefinitionNumber.98.table b/eccodes/definitions.save/grib1/localDefinitionNumber.98.table deleted file mode 100644 index f63cf147..00000000 --- a/eccodes/definitions.save/grib1/localDefinitionNumber.98.table +++ /dev/null @@ -1,44 +0,0 @@ -1 1 MARS labelling or ensemble forecast data -2 2 Cluster means and standard deviations -3 3 Satellite image data -4 4 Ocean model data -5 5 Forecast probability data -6 6 Surface temperature data -7 7 Sensitivity data -8 8 ECMWF reanalysis data -9 9 Singular vectors and ensemble perturbations -10 10 EPS tubes -11 11 Supplementary data used by the analysis -12 12 Seasonal forecast monthly mean data for lagged systems -13 13 Wave 2D spectra direction and frequency -14 14 Brightness temperature -15 15 Seasonal forecast data -16 16 Seasonal forecast monthly mean data -17 17 Surface temperature or sea-ice data -18 18 Multianalysis ensemble data -19 19 Extreme forecast index data -20 20 4D variational increments -21 21 Sensitive area predictions -22 22 Coupled atmospheric, wave and ocean models (with hindcast support) -23 23 Coupled atmospheric, wave and ocean means (with hindcast support) -24 24 Satellite image simulation -25 25 4DVar model errors -26 26 MARS labelling or ensemble forecast data (with hindcast support) -27 27 Forecasting Systems with Variable Resolution (Obsolete) -28 28 COSMO local area EPS -29 29 COSMO clustering information -30 30 Forecasting Systems with Variable Resolution -31 31 EUROSIP products -32 32 Cluster Scenarios -35 35 Elaboration of ocean model products -36 36 MARS labelling for long window 4Dvar system -37 37 Brightness temperature for long window 4Dvar system -38 38 4D variational increments for long window 4Dvar system -39 39 4DVar model errors for long window 4Dvar system -40 40 MARS labeling with domain and model (for LAM) -49 49 4DVar model errors for ELDA -50 50 Member State data -190 190 Multiple ECMWF local definitions -191 191 Free format data descriptor data -192 192 Multiple ECMWF local definitions - diff --git a/eccodes/definitions.save/grib1/local_no_mars.98.1.def b/eccodes/definitions.save/grib1/local_no_mars.98.1.def deleted file mode 100644 index ed418cee..00000000 --- a/eccodes/definitions.save/grib1/local_no_mars.98.1.def +++ /dev/null @@ -1,66 +0,0 @@ -# START 1/local.98.1 ---------------------------------------------------------------------- -# LOCAL 98 1 -# -# localDefinitionTemplate_001 -# --------------------------- -# -# 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 - -#spareSetToZero 52 PAD n/a 1 -# -constant GRIBEXSection1Problem = 52 - section1Length ; - - -unsigned[1] perturbationNumber : dump; -alias number = perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; -pad padding_local1_1(1); - -#1->2 -alias grib2LocalSectionPresent=present; -constant grib2LocalSectionNumber=1; - -if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } -} else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } - } -} - -# monthly mean -#if (timeRangeIndicator==113) { -#} diff --git a/eccodes/definitions.save/grib1/local_no_mars.98.24.def b/eccodes/definitions.save/grib1/local_no_mars.98.24.def deleted file mode 100644 index efdd3d8a..00000000 --- a/eccodes/definitions.save/grib1/local_no_mars.98.24.def +++ /dev/null @@ -1,25 +0,0 @@ -# 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 - -#satelliteIdentifier 50 I2 42 - -#instrumentIdentifier 52 I2 43 - -#channelNumber 54 I2 44 - -#functionCode 56 I1 45 - -# - -constant GRIBEXSection1Problem = 56 - section1Length ; - -unsigned[2] satelliteIdentifier : dump; -alias mars.ident = satelliteIdentifier; - -unsigned[2] instrumentIdentifier : dump; -alias mars.instrument = instrumentIdentifier; - -unsigned[2] channelNumber : dump ; -alias mars.channel = channelNumber; - -unsigned[1] functionCode : dump ; diff --git a/eccodes/definitions.save/grib1/ls.def b/eccodes/definitions.save/grib1/ls.def deleted file mode 100644 index 92209e99..00000000 --- a/eccodes/definitions.save/grib1/ls.def +++ /dev/null @@ -1,16 +0,0 @@ -alias ls.centre=centre; -#alias ls.param=marsParam; -alias ls.shortName=shortName; - -alias ls.dataType = dataType; - -alias ls.date=date; -alias ls.stepRange = stepRange; - -alias ls.gridType=gridType; -alias ls.numberOfValues=numberOfValues; - -alias ls.levelType=indicatorOfTypeOfLevel; -alias ls.level=level; - -alias ls.packingType=packingType; diff --git a/eccodes/definitions.save/grib1/ls_labeling.82.def b/eccodes/definitions.save/grib1/ls_labeling.82.def deleted file mode 100644 index 3a0e2e40..00000000 --- a/eccodes/definitions.save/grib1/ls_labeling.82.def +++ /dev/null @@ -1,19 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 Sep 2013 -# -######################### - -alias ls.dataType = marsType; - -if (localDefinitionNumber == 83 ) { - - concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",conceptsLocalDirAll,conceptsMasterDir); - concept_nofail ls.sort (unknown,"sortConcept.def",conceptsLocalDirAll,conceptsMasterDir); - concept_nofail ls.landtype (unknown,"landTypeConcept.def",conceptsLocalDirAll,conceptsMasterDir); - concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",conceptsLocalDirAll,conceptsMasterDir); - -} - diff --git a/eccodes/definitions.save/grib1/mars_labeling.23.def b/eccodes/definitions.save/grib1/mars_labeling.23.def deleted file mode 100644 index d373496b..00000000 --- a/eccodes/definitions.save/grib1/mars_labeling.23.def +++ /dev/null @@ -1 +0,0 @@ -# (C) Copyright 2005- ECMWF. diff --git a/eccodes/definitions.save/grib1/mars_labeling.4.def b/eccodes/definitions.save/grib1/mars_labeling.4.def deleted file mode 100644 index 279943ae..00000000 --- a/eccodes/definitions.save/grib1/mars_labeling.4.def +++ /dev/null @@ -1,193 +0,0 @@ -constant P_INST = 0; -constant P_TAVG = 1; -constant P_TACC = 3; - -constant TYPE_AN = 2; -constant TYPE_FC = 9; -constant TYPE_CF = 10; -constant TYPE_PF = 11; -constant TYPE_FF = 25; -constant TYPE_OF = 26; -constant TYPE_OR = 70; -constant TYPE_FX = 71; - -constant coordAveraging0 = "inst"; -constant coordAveraging1 = "tavg"; -constant coordAveraging2 = 2; -constant coordAveraging3 = "tacc"; -constant coordAveragingTims = "tims"; - -constant isectionNumber2 = "h"; -constant isectionNumber3 = "m"; -constant isectionNumber4 = "z"; - - -constant tsectionNumber3 = "v"; -constant tsectionNumber4 = "z"; -constant tsectionNumber5 = "m"; - -constant GRIB_DEPTH = 2; -constant GRIB_LONGITUDE = 3; -constant GRIB_LATITUDE = 4; - -meta verificationDate g1verificationdate(dataDate, dataTime, endStep) : read_only; - - -if(horizontalCoordinateDefinition == 0) -{ - - if(coordinate1Flag == 1 ) - { - -# range - - - if(averaging1Flag == P_TAVG ){ - if( - marsType == TYPE_OR - || marsType == TYPE_FC - || marsType == TYPE_FF - || marsType == TYPE_FX - ) - { - meta marsRange evaluate((coordinate1End - coordinate1Start)/3600); - alias mars.range = marsRange; - } - } -# section - - if(coordinate2Flag == 2) { alias mars.section = isectionNumber2;} - if(coordinate2Flag == 3) { alias mars.section = isectionNumber3;} - if(coordinate2Flag == 4) { alias mars.section = isectionNumber4;} - -# levelist latitude longitude - - if(coordinate2Flag == GRIB_DEPTH){ - meta marsLevelist divdouble( coordinate2Start,1000 ); - meta roundedMarsLevelist round( marsLevelist ,1000); - alias mars.levelist = roundedMarsLevelist ; - - } - if(coordinate2Flag == GRIB_LONGITUDE){ - meta marsLongitude divdouble( coordinate2Start,1000000 ); - meta roundedMarsLongitude round( marsLongitude ,1000); - alias mars.longitude = roundedMarsLongitude ; - } - - if(coordinate2Flag == GRIB_LATITUDE){ - meta marsLatitude divdouble( coordinate2Start,1000000 ); - - meta roundedMarsLatitude round( marsLatitude ,1000); - alias mars.latitude = roundedMarsLatitude ; - } - - -#product - if(averaging1Flag == 0) { alias mars.product = coordAveraging0;} - if(averaging1Flag == 1) { alias mars.product = coordAveraging1;} - if(averaging1Flag == 2) { alias mars.product = coordAveraging2;} - if(averaging1Flag == 3) { alias mars.product = coordAveraging3;} - -# date - if( - (marsType == TYPE_OR && averaging1Flag == P_TAVG) - || (marsType == TYPE_OR && averaging1Flag == P_TACC) - || (marsType == TYPE_FX && averaging1Flag == P_TAVG) - ) - { - #remove mars.date; - alias mars.date = verificationDate; - #remove mars.step; - constant stepZero = 0; - alias mars.step = stepZero; - } - - - } - else - { - - meta coordinateIndexNumber evaluate(coordinate4Flag+coordinate3Flag); - -# levelist latitude longitude - - if(coordinateIndexNumber== 3) - { - meta marsLatitude divdouble( coordinate1Start,1000000); - meta marsLongitude divdouble( coordinate2Start,1000000); - - meta roundedMarsLatitude round( marsLatitude ,1000); - meta roundedMarsLongitude round( marsLongitude ,1000); - - alias mars.latitude = roundedMarsLatitude ; - alias mars.longitude = roundedMarsLongitude ; - - } - - if(coordinateIndexNumber == 4) - { - meta marsLevelist divdouble( coordinate1Start,1000); - meta marsLatitude divdouble( coordinate2Start,1000000); - - meta roundedMarsLevelist round( marsLevelist ,1000); - meta roundedMarsLatitude round( marsLatitude ,1000); - - alias mars.levelist = roundedMarsLevelist ; - alias mars.latitude = roundedMarsLatitude ; - } - - if(coordinateIndexNumber == 5) - { - meta marsLevelist divdouble( coordinate1Start,1000); - meta marsLongitude divdouble( coordinate2Start,1000000); - - meta roundedMarsLevelist round( marsLevelist ,1000); - meta roundedMarsLongitude round( marsLongitude ,1000); - - alias mars.levelist = roundedMarsLevelist ; - alias mars.longitude = roundedMarsLongitude ; - - } - -# section - - if(coordinateIndexNumber == 3) { alias mars.section = tsectionNumber3;} - if(coordinateIndexNumber == 4) { alias mars.section = tsectionNumber4;} - if(coordinateIndexNumber == 5) { alias mars.section = tsectionNumber5;} - -# range - if(averaging1Flag == P_INST){ - if( - (marsType == TYPE_OR) - ||(marsType == TYPE_FC) - ||(marsType == TYPE_CF) - ||(marsType == TYPE_PF) - ||(marsType == TYPE_FF) - ||(marsType == TYPE_OF) - ) - { - if( coordinate4Flag == 1){ - meta marsRange evaluate((coordinate4OfLastGridPoint - coordinate4OfFirstGridPoint)/3600); - }else{ - - meta marsRange evaluate((coordinate3OfLastGridPoint - coordinate3OfFirstGridPoint)/3600); - } - - alias mars.range = marsRange; - } - } - -# product - alias mars.product = coordAveragingTims; -# date - - if(marsType == TYPE_OR && averaging1Flag == P_INST){ - - #remove mars.date; - alias mars.date = verificationDate; - #remove mars.step; - constant stepZero = 0; - alias mars.step =stepZero; - } - } -} diff --git a/eccodes/definitions.save/grib1/mars_labeling.82.def b/eccodes/definitions.save/grib1/mars_labeling.82.def deleted file mode 100644 index 65c785da..00000000 --- a/eccodes/definitions.save/grib1/mars_labeling.82.def +++ /dev/null @@ -1,50 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 6 Oct 2011 -# modified: 13 Sep 2013 -# -######################### - -constant conceptsMasterMarsDir="mars" : hidden; -constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; - -########################## -# # -# Base MARS keywors # -# # -########################## - -alias mars.class = marsClass; -alias mars.type = marsType; -alias mars.stream = marsStream; -alias mars.model = marsModel; -alias mars.expver = experimentVersionNumber; -alias mars.domain = globalDomain; - -######################### -# # -# local section 82 # -# # -######################### - -### nothing needed here... - -######################### -# # -# local section 83 # -# # -######################### - -if ( localDefinitionNumber == 83 ) { - - alias mars.sort = matchSort; - alias mars.timerepres = matchTimeRepres; - alias mars.landtype = matchLandType; - alias mars.aerosolbinnumber = matchAerosolBinNumber; - - concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); - alias mars.aerosolpacking = matchAerosolPacking; - -} - diff --git a/eccodes/definitions.save/grib1/mars_labeling.def b/eccodes/definitions.save/grib1/mars_labeling.def deleted file mode 100644 index 51eae2bd..00000000 --- a/eccodes/definitions.save/grib1/mars_labeling.def +++ /dev/null @@ -1,14 +0,0 @@ -codetable[1] marsClass "mars/class.table" = "od" : dump, string_type, lowercase; -codetable[1] marsType "mars/type.table" = "an" : dump, string_type, lowercase; -codetable[2] marsStream "mars/stream.table" = "oper" : dump, string_type, lowercase ; -ksec1expver[4] experimentVersionNumber = "0001" : dump; - -#alias typeOfProcessedData=marsType; -alias ls.dataType = marsType; - -alias mars.class = marsClass; -alias mars.type = marsType; -alias mars.stream = marsStream; -alias mars.expver = experimentVersionNumber; - -alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions.save/grib1/name.def b/eccodes/definitions.save/grib1/name.def deleted file mode 100644 index 9e7a0b29..00000000 --- a/eccodes/definitions.save/grib1/name.def +++ /dev/null @@ -1,2059 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'Stream function' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'Wind speed' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pressure' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'Geopotential' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'U component of wind' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'V component of wind' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'Divergence' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'Evaporation' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } -#Runoff -'Runoff' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'large scale precipitation' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'Snow depth' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'Large scale snow' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'Convective snow' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'Cloud water' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } -#Albedo -'Albedo' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'Virtual temperature' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 3 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 3 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current ' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current ' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'Water temperature' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Salinity -'Salinity' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'Ice cover (1=ice, 0=no ice)' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 3 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 3 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'Net short-wave radiation flux(atmosph.top)' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } -#Orography -'Orography' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'Soil Moisture' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'Total Precipitation' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'Stream function' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'Wind speed' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pressure' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'Geopotential' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'U component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'V component of wind' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'Divergence' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'Evaporation' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } -#Runoff -'Runoff' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'large scale precipitation' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'Snow depth' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'Large scale snow' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'Convective snow' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'Cloud water' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } -#Albedo -'Albedo' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current ' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current ' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'Water temperature' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Salinity -'Salinity' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'Ice cover (1=ice, 0=no ice)' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 2 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 2 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'Net short-wave radiation flux(atmosph.top)' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } -#Orography -'Orography' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'Soil Moisture' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'Total Precipitation' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'Stream function' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'Velocity potential' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'Potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'Wind speed' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'Geopotential' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'U component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'V component of wind' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'Specific humidity' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Surface pressure' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'Divergence' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'Geopotential Height' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'Relative humidity' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10 metre U wind component' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10 metre V wind component' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2 metre temperature' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'Surface roughness' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'Evaporation' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'Brightness temperature' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Runoff -'Runoff' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'Total column ozone' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'large scale precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'Snow depth' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'Convective cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'Low cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'Medium cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'High cloud cover' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'Large scale snow' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'Latent heat flux' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'Sensible heat flux' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'Convective snow' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'Cloud water' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Albedo -'Albedo' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'Pressure tendency' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'Geometrical height' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'Standard deviation of height' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'Maximum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'Minimum temperature' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'Dew point temperature' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'Lapse rate' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'Visibility' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'Temperature anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pressure anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Wind direction' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'Absolute vorticity' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'Absolute divergence' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Direction of current' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'Speed of current' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'U-component of current ' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'V-component of current ' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'Precipitable water' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Vapour pressure' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Saturation deficit' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'Precipitation rate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'Snow fall rate water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'Mixed layer depth' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'Main thermocline depth' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'Water temperature' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'Deviation of sea-level from mean' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'Soil moisture content' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Salinity -'Salinity' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'Density' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'Ice cover (1=ice, 0=no ice)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'Ice thickness' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Direction of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'Speed of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'U-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'V-component of ice drift' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'Ice growth rate' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'Ice divergence' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'Snow melt' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'Signific.height,combined wind waves+swell' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Direction of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Primary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'Primary wave mean period' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Secondary wave direction' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'Net long-wave radiation flux (surface)' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'Net short-wave radiation flux(atmosph.top)' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'Net long-wave radiation flux(atmosph.top)' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'Global radiation flux' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'Momentum flux, u-component' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'Momentum flux, v-component' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'Wind mixing energy' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'Image data' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Orography -'Orography' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'Soil Moisture' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'Soil Temperature' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'Total Precipitation' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; -} diff --git a/eccodes/definitions.save/grib1/ocean.1.table b/eccodes/definitions.save/grib1/ocean.1.table deleted file mode 100644 index 2ccc5c31..00000000 --- a/eccodes/definitions.save/grib1/ocean.1.table +++ /dev/null @@ -1,17 +0,0 @@ -# CODE TABLE OCEAN 1 -0 0 bit0_off -0 1 bit0_on -1 0 bit1_off -1 1 bit1_on -2 0 bit2_off -2 1 bit2_on -3 0 bit3_off -3 1 bit3_on -4 0 bit4_off -4 1 bit4_on -5 0 bit5_off -5 1 bit5_on -6 0 bit6_off -6 1 bit6_on -7 0 absent -7 1 present diff --git a/eccodes/definitions.save/grib1/param.pl b/eccodes/definitions.save/grib1/param.pl deleted file mode 100755 index 93bc6c4f..00000000 --- a/eccodes/definitions.save/grib1/param.pl +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/local/bin/perl56 -I/usr/local/lib/metaps/perl -use Data::Dumper; -use metdb qw(prod); - -use metdb::grib_parameters; - - -my @x = metdb::grib_parameters->all_fields; -print Dumper(\@x); -my $last; - -foreach my $p ( metdb::grib_parameters->find( - { }, - [qw(grib_originating_centre grib_code_table grib_parameter)])) -{ - my ($centre,$table) = ($p->get_grib_originating_centre,$p->get_grib_code_table); - my ($param,$abbr,$name,$unit) = ($p->get_grib_parameter, $p->get_mars_abbreviation,$p->get_long_name,$p->get_unit); - - $abbr = "-" unless($abbr); - - my $file = "2.$centre.$table.table"; - if($file ne $last) - { - open(OUT,">$file") or die "$file: $!"; - print OUT "# This file was automatically generated by $0\n"; - - $last = $file; - } - - print OUT join(" ",$param,lc($abbr),$name,"($unit)"), "\n"; -} - - -__END__ -'grib_originating_centre', -'grib_code_table', -'grib_parameter', -'mars_abbreviation', -'long_name', -'description', -'web_title', -'unit', -'comment', -'parameter_type', -'wind_corresponding_parameter', -'netcdf_name', -'netcdf_cf_approved', -'magics_abbreviated_text', -'magics_title', -'magics_offset', -'magics_factor', -'magics_scaled_unit', -'magics_contour_interval', -'magics_specification_group', -'magics_comment', -'dissemination_accuracy', -'dissemination', -'insert_date', -'update_date' - diff --git a/eccodes/definitions.save/grib1/paramId.def b/eccodes/definitions.save/grib1/paramId.def deleted file mode 100644 index ed387116..00000000 --- a/eccodes/definitions.save/grib1/paramId.def +++ /dev/null @@ -1,2059 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'1' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'2' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'3' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'10' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } -#Pressure -'54' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'60' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'129' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'130' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'131' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'132' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'133' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'134' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'135' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'138' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'151' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'155' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'156' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'157' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'165' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'166' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'167' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'172' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'173' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'182' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'194' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } -#Runoff -'205' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'206' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'3062' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'3066' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'3072' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'3073' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'3074' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'3075' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'3079' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'3121' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'3122' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'3123' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'260011' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'260102' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } -#Albedo -'260509' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Virtual temperature -'300012' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'300012' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'300012' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } -#Pressure tendency -'3003' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'3008' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'3009' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'3015' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'3016' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'3017' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'3018' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'3019' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } -#Visibility -'3020' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'3021' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'3022' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'3023' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'3025' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'3026' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'3027' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'3028' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'3029' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'3030' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'3031' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'3037' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'3038' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'3041' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'3042' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'3045' = { - table2Version = 3 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'3046' = { - table2Version = 3 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'3047' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'3048' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'3049' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'3050' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'3053' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'3054' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'3055' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'3056' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'3059' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'3060' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'3063' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'3064' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'3067' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'3068' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'3069' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'3070' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'3080' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'3082' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'3086' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Salinity -'3088' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } -#Density -'3089' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'3091' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'3092' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'3093' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'3094' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'3095' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'3096' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'3097' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'3098' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'3099' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'3100' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'3101' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'3102' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'3103' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'3104' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'3105' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'3106' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'3107' = { - table2Version = 3 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'3108' = { - table2Version = 3 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'3109' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'3110' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'3112' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'3113' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'3114' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'3115' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'3116' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'3117' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'3119' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'3120' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'3124' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'3125' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'3126' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } -#Image data -'3127' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'160199' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } -#Orography -'228002' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'228039' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'228139' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'228144' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'228164' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'228228' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'1' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'2' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'3' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'10' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } -#Pressure -'54' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'60' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'129' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'130' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'131' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'132' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'133' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'134' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'135' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'138' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'151' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'155' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'156' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'157' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'165' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'166' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'167' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'172' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'173' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'182' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'194' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } -#Runoff -'205' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'206' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'3062' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'3066' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'3072' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'3073' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'3074' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'3075' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'3079' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'3121' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'3122' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'3123' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'260011' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'260102' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } -#Albedo -'260509' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'3003' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'3008' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'3009' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'3015' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'3016' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'3017' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'3018' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'3019' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } -#Visibility -'3020' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'3021' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'3022' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'3023' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'3025' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'3026' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'3027' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'3028' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'3029' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'3030' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'3031' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'3037' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'3038' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'3041' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'3042' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'3045' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'3046' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'3047' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'3048' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'3049' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'3050' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'3053' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'3054' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'3055' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'3056' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'3059' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'3060' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'3063' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'3064' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'3067' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'3068' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'3069' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'3070' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'3080' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'3082' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'3086' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Salinity -'3088' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } -#Density -'3089' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'3091' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'3092' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'3093' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'3094' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'3095' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'3096' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'3097' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'3098' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'3099' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'3100' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'3101' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'3102' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'3103' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'3104' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'3105' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'3106' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'3107' = { - table2Version = 2 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'3108' = { - table2Version = 2 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'3109' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'3110' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'3112' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'3113' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'3114' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'3115' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'3116' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'3117' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'3119' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'3120' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'3124' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'3125' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'3126' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } -#Image data -'3127' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'160199' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } -#Orography -'228002' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'228039' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'228139' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'228144' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'228164' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'228228' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'1' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'2' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'3' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'10' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#Pressure -'54' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'60' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'129' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'130' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'131' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'132' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'133' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'134' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'135' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'138' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'151' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'155' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'156' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'157' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'165' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'166' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'167' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'168' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'172' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'173' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'182' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'194' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Runoff -'205' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'206' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'3062' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'3066' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'3072' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'3073' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'3074' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'3075' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'3079' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'3121' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'3122' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'3123' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'260011' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'260102' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Albedo -'260509' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'3003' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'3008' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'3009' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'3015' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'3016' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'3017' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'3018' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'3019' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'3020' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'3021' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'3022' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'3023' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'3025' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'3026' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'3027' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'3028' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'3029' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'3030' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'3031' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'3037' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'3038' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'3041' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'3042' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'3045' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'3046' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'3047' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'3048' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'3049' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'3050' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'3053' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'3054' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'3055' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'3056' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'3059' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'3060' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'3063' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'3064' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'3067' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'3068' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'3069' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'3070' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'3080' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'3082' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'3086' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Salinity -'3088' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'3089' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'3091' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'3092' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'3093' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'3094' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'3095' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'3096' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'3097' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'3098' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'3099' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'3100' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'3101' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'3102' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'3103' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'3104' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'3105' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'3106' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'3107' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'3108' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'3109' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'3110' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'3112' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'3113' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'3114' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'3115' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'3116' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'3117' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'3119' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'3120' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'3124' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'3125' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'3126' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'3127' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'160199' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Orography -'228002' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'228039' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'228139' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'228144' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'228164' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'228228' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; -} diff --git a/eccodes/definitions.save/grib1/precision.table b/eccodes/definitions.save/grib1/precision.table deleted file mode 100644 index 5526a4f7..00000000 --- a/eccodes/definitions.save/grib1/precision.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 32bits IEEE 32-bit -2 64bits IEEE 64-bit -3 128bits IEEE 128-bit -255 255 Missing diff --git a/eccodes/definitions.save/grib1/predefined_grid.def b/eccodes/definitions.save/grib1/predefined_grid.def deleted file mode 100644 index 52298f85..00000000 --- a/eccodes/definitions.save/grib1/predefined_grid.def +++ /dev/null @@ -1,129 +0,0 @@ -# Predefined grid 21 - -#position offsetSection2; -#transient section2Length=0 ; - -template predefined_grid_values "grib1/grid_[gridDefinition].def"; - -# NV -- number of vertical coordinate parameters -constant numberOfVerticalCoordinateValues=0 ; - -constant neitherPresent = 255; - -alias NV = numberOfVerticalCoordinateValues; -alias numberOfCoordinatesValues= numberOfVerticalCoordinateValues; - -# PV -- location -# (octet number) -constant pvlLocation = 255; - -# Data representation type -constant dataRepresentationType = 0; - -# Grid definition -# (according to data representation type - octet 6 above) - -# grib 1 -> 2 -constant gridDefinitionTemplateNumber = 0; - -# START 1/grid_definition.latitude_longitude_grid ---------------------------------------------------------------------- -# GRID DEFINITION latitude/longitude grid (or equidistant cylindrical) - -alias numberOfPointsAlongAParallel=Ni; -alias numberOfPointsAlongAMeridian=Nj; - -# Latitudes and Longitudes of the first and the last points -# Resolution and component flags - -# La1 - latitude of first grid point -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; -alias Lo1 = longitudeOfFirstGridPoint; - -# Resolution and component flags -constant resolutionAndComponentFlags = 128; - -# Not flagbit numbers 7 to 0, while wmo is 1 to 8 -constant ijDirectionIncrementGiven = 1 ; - -# For grib 1 to 2 -alias iDirectionIncrementGiven = ijDirectionIncrementGiven; -alias jDirectionIncrementGiven = ijDirectionIncrementGiven; -alias DiGiven = ijDirectionIncrementGiven; -alias DjGiven = ijDirectionIncrementGiven; - -constant earthIsOblate = 0; -constant resolutionAndComponentFlags3 = 0; -constant resolutionAndComponentFlags4 = 0; -constant uvRelativeToGrid = 0; -constant resolutionAndComponentFlags6 = 0; -constant resolutionAndComponentFlags7 = 0; -constant resolutionAndComponentFlags8 = 0; - -# La2 - latitude of last grid point -meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; -alias La2 = latitudeOfLastGridPoint; - -# Lo2 - longitude of last grid point -meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib1divider,truncateDegrees) : read_only; -alias Lo2 = longitudeOfLastGridPoint; - -alias Dj = jDirectionIncrement; -alias Di = iDirectionIncrement; - -# Scanning mode -constant scanningMode = 64; - -# Not flagbit numbers 7 to 0, while wmo is 1 to 8 -constant iScansNegatively = 0 ; -constant jScansPositively = 1 ; -constant jPointsAreConsecutive = 0; -constant iScansPositively = 1; - -constant scanningMode4 = 0; -constant scanningMode5 = 0; -constant scanningMode6 = 0; -constant scanningMode7 = 0; -constant scanningMode8 = 0; - -meta geography.jDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,jDirectionIncrement, - jScansPositively, - latitudeOfFirstGridPointInDegrees,latitudeOfLastGridPointInDegrees, - numberOfPointsAlongAMeridian,oneConstant,grib1divider,0) : read_only; - -meta geography.iDirectionIncrementInDegrees latlon_increment(ijDirectionIncrementGiven,iDirectionIncrement, - iScansPositively, - longitudeOfFirstGridPointInDegrees,longitudeOfLastGridPointInDegrees, - Ni,oneConstant,grib1divider,1) : read_only; - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; -alias DjInDegrees = jDirectionIncrementInDegrees; - -alias numberOfPoints=numberOfDataPoints; -#alias ls.valuesCount=numberOfValues; - -# END 1/grid_definition.latitude_longitude_grid ---------------------------------------------------------------------- -constant PVPresent = 0; -constant PLPresent = 0; -constant reducedGrid =0; - -# we always include the bitmap keys if a GDS is not present -# Number of unused bits at end of Section 3 -constant numberOfUnusedBitsAtEndOfSection3 = 0; - -# Table reference: -constant tableReference = 0; - -#position offsetBeforeBitmap; -meta bitmap gds_not_present_bitmap( missingValue,numberOfValues, - numberOfPoints, - latitudeOfFirstGridPoint, - Ni,numberOfUnusedBitsAtEndOfSection3) : read_only; - diff --git a/eccodes/definitions.save/grib1/regimes.table b/eccodes/definitions.save/grib1/regimes.table deleted file mode 100644 index d9fd1a66..00000000 --- a/eccodes/definitions.save/grib1/regimes.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE Climatological regimes -1 1 Positive NAO -2 2 Scandinavian blocking -3 3 Negative NAO -4 4 Atlantic Ridge diff --git a/eccodes/definitions.save/grib1/resolution_flags.def b/eccodes/definitions.save/grib1/resolution_flags.def deleted file mode 100644 index 6c56f24b..00000000 --- a/eccodes/definitions.save/grib1/resolution_flags.def +++ /dev/null @@ -1,32 +0,0 @@ -# Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib1/7.table' : edition_specific,no_copy ; - -# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 -# (most significant to least significant) - -flagbit ijDirectionIncrementGiven(resolutionAndComponentFlags,7) = 1 ; - -# For grib 1 to 2 -alias iDirectionIncrementGiven = ijDirectionIncrementGiven; -alias jDirectionIncrementGiven = ijDirectionIncrementGiven; -alias DiGiven = ijDirectionIncrementGiven; -alias DjGiven = ijDirectionIncrementGiven; - -flagbit earthIsOblate(resolutionAndComponentFlags,6) : dump; -if (earthIsOblate) { - # Earth assumed oblate spheroidal with size as determined by IAU in 1965 - transient earthMajorAxis = 6378160.0; - transient earthMinorAxis = 6356775.0; - alias earthMajorAxisInMetres=earthMajorAxis; - alias earthMinorAxisInMetres=earthMinorAxis; -} - - -flagbit resolutionAndComponentFlags3(resolutionAndComponentFlags,5) = 0: read_only; -flagbit resolutionAndComponentFlags4(resolutionAndComponentFlags,4) = 0: read_only; - -flagbit uvRelativeToGrid(resolutionAndComponentFlags,3) : dump; - -flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,2) = 0: read_only; -flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,1) = 0: read_only; -flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,0) = 0: read_only; diff --git a/eccodes/definitions.save/grib1/scanning_mode.def b/eccodes/definitions.save/grib1/scanning_mode.def deleted file mode 100644 index 27ad7fd3..00000000 --- a/eccodes/definitions.save/grib1/scanning_mode.def +++ /dev/null @@ -1,37 +0,0 @@ -# Scanning mode -flags[1] scanningMode 'grib1/8.table' : edition_specific,no_copy; - -# Not flagbit numbers 7 to 0, while wmo is 1 to 8 -flagbit iScansNegatively(scanningMode,7) : dump; -flagbit jScansPositively(scanningMode,6) : dump; -flagbit jPointsAreConsecutive(scanningMode,5) : dump; -constant alternativeRowScanning=0 : dump; -transient iScansPositively = !iScansNegatively : constraint; - -alias geography.iScansNegatively=iScansNegatively; -alias geography.jScansPositively=jScansPositively; -alias geography.jPointsAreConsecutive=jPointsAreConsecutive; - -flagbit scanningMode4(scanningMode,4) = 0: read_only; -flagbit scanningMode5(scanningMode,3) = 0: read_only; -flagbit scanningMode6(scanningMode,2) = 0: read_only; -flagbit scanningMode7(scanningMode,1) = 0: read_only; -flagbit scanningMode8(scanningMode,0) = 0: read_only; - -meta swapScanningX change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - xFirst,xLast,x) : edition_specific,hidden,no_copy; -alias swapScanningLon = swapScanningX; - -meta swapScanningY change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - yFirst,yLast,y) : edition_specific,hidden,no_copy; -alias swapScanningLat = swapScanningY; - -if (jPointsAreConsecutive) { - alias numberOfRows=Ni; - alias numberOfColumns=Nj; -} else { - alias numberOfRows=Nj; - alias numberOfColumns=Ni; -} diff --git a/eccodes/definitions.save/grib1/section.0.def b/eccodes/definitions.save/grib1/section.0.def deleted file mode 100644 index dd4673c1..00000000 --- a/eccodes/definitions.save/grib1/section.0.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "_empty"; diff --git a/eccodes/definitions.save/grib1/section.1.def b/eccodes/definitions.save/grib1/section.1.def deleted file mode 100644 index 1ed21d91..00000000 --- a/eccodes/definitions.save/grib1/section.1.def +++ /dev/null @@ -1,327 +0,0 @@ -constant ECMWF = 98 : hidden; -constant ECMWF_s = "ecmf" : hidden; -constant WMO= 0; -constant conceptsMasterDir="grib1" : hidden; -constant conceptsLocalDirECMF="grib1/localConcepts/ecmf" : hidden; -constant conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; - -constant tablesMasterDir="grib1" : hidden; -constant tablesLocalDir="grib1/local/[centre:s]" : hidden; - -# ECC-806: Local concepts precedence order -if (preferLocalConcepts) { - constant conceptsDir1 = conceptsMasterDir : hidden; - constant conceptsDir2 = conceptsLocalDirAll : hidden; -} else { - constant conceptsDir1 = conceptsLocalDirAll : hidden; - constant conceptsDir2 = conceptsMasterDir : hidden; -} - -transient productionStatusOfProcessedData=0; -position offsetSection1; -section_length[3] section1Length ; -meta section1Pointer section_pointer(offsetSection1,section1Length,1); -constant wrongPadding=0; - -# GRIB tables Version No. -# (currently 3 for international exchange) -unsigned[1] table2Version : edition_specific,dump; -alias gribTablesVersionNo=table2Version; - - -#assert(section1Length > 5); - -# Identification of originating/generating centre -codetable[1] centre 'common/c-1.table' : dump,string_type; -alias identificationOfOriginatingGeneratingCentre=centre; -meta centreDescription codetable_title(centre); - -alias parameter.centre=centre; -alias originatingCentre=centre; -alias ls.centre = centre; - -# Generating process identification number -# (allocated by originating centre) -unsigned[1] generatingProcessIdentifier : dump ; -alias generatingProcessIdentificationNumber=generatingProcessIdentifier; -alias process=generatingProcessIdentifier; - -unsigned[1] gridDefinition = 255 : edition_specific ; -flags[1] section1Flags 'grib1/1.table' = 128 : hidden ; # = section 2 present - -alias centreForTable2=centre; - -codetable[1] indicatorOfParameter 'grib1/2.[centreForTable2:l].[table2Version:l].table' : edition_specific,no_copy,dump; -meta parameterName codetable_title(indicatorOfParameter); -meta parameterUnits codetable_units(indicatorOfParameter); - -# Local comes before Master to give precedence to the local, centre-specific table -codetable[1] indicatorOfTypeOfLevel ('3.table',tablesLocalDir,tablesMasterDir) : edition_specific,no_copy,dump,string_type; -alias levelType=indicatorOfTypeOfLevel; - -transient pressureUnits="hPa"; - -concept_nofail typeOfLevelECMF (unknown, "typeOfLevel.def",conceptsMasterDir,conceptsLocalDirECMF); -concept_nofail vertical.typeOfLevel (typeOfLevelECMF, "typeOfLevel.def",conceptsDir2,conceptsDir1); - -when ( typeOfLevel is "isobaricInPa" ) { set pressureUnits="Pa"; } -else { set pressureUnits="hPa";} - -alias ls.typeOfLevel=typeOfLevel; - -if ( indicatorOfTypeOfLevel == 101 or - indicatorOfTypeOfLevel == 104 or - indicatorOfTypeOfLevel == 106 or - indicatorOfTypeOfLevel == 108 or - indicatorOfTypeOfLevel == 110 or - indicatorOfTypeOfLevel == 112 or - indicatorOfTypeOfLevel == 114 or - indicatorOfTypeOfLevel == 116 or - indicatorOfTypeOfLevel == 120 or - indicatorOfTypeOfLevel == 121 or - indicatorOfTypeOfLevel == 128 or - indicatorOfTypeOfLevel == 141 ) -{ - unsigned[1] topLevel : can_be_missing,dump; - unsigned[1] bottomLevel : can_be_missing,dump; - meta levels sprintf("%d-%d",topLevel,bottomLevel) : dump; - alias ls.levels=levels; - alias vertical.level = topLevel; - alias vertical.topLevel = topLevel; - alias vertical.bottomLevel = bottomLevel; -} -else -{ - unsigned[2] level : can_be_missing,dump; - if (indicatorOfTypeOfLevel == 210) { - meta marsLevel scale(level,oneConstant,hundred) : read_only; - alias mars.levelist = marsLevel; - } - alias vertical.level=level; - alias vertical.topLevel = level; - alias vertical.bottomLevel = level; - alias ls.level=level; - alias lev=level; -} - -if( indicatorOfTypeOfLevel == 109 || - indicatorOfTypeOfLevel == 100 || - indicatorOfTypeOfLevel == 110 || - indicatorOfTypeOfLevel == 113 || - indicatorOfTypeOfLevel == 117) -{ - alias mars.levelist = level; -} - -unsigned[1] yearOfCentury : edition_specific ; -unsigned[1] month ; -unsigned[1] day ; -unsigned[1] hour ; -unsigned[1] minute ; -transient second = 0; - -codetable[1] unitOfTimeRange 'grib1/4.table' = 1 : edition_specific; -alias unitOfTime=unitOfTimeRange; -alias indicatorOfUnitOfTimeRange=unitOfTimeRange; - -unsigned[1] P1 : edition_specific; - -unsigned[1] P2 : edition_specific; - -# Local comes before Master to give precedence to the local, centre-specific table -codetable[1] timeRangeIndicator ('5.table',tablesLocalDir,tablesMasterDir) = 1 : dump,edition_specific; - -unsigned[2] numberIncludedInAverage; - -meta mybits bits(numberIncludedInAverage,0,12); - -unsigned[1] numberMissingFromAveragesOrAccumulations; -unsigned[1] centuryOfReferenceTimeOfData ; - -codetable[1] subCentre 'grib1/0.[centre].table' : dump; - -if(table2Version >= 128) { - _if (centre != 98 && subCentre == 98) { - alias centreForTable2 = subCentre; - } else { - alias centreForTable2 = centre; - } -} else { - alias centreForTable2 = WMO; -} - -#if ( subCentre == 98 ) { -# alias conceptsLocalDir=conceptsLocalDirECMF; -#} else { -# alias conceptsLocalDir=conceptsLocalDirAll; -#} - -concept paramIdECMF (defaultParameter,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; -concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type,dump; -# transient pid = paramId : hidden; - -concept cfNameECMF(defaultName,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; - -concept cfVarNameECMF(defaultName,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept cfVarName(cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; - -concept unitsECMF(defaultName,"units.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,read_only; -concept units(unitsECMF,"units.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; - -concept nameECMF(defaultName,"name.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; - -signed[2] decimalScaleFactor :dump; -transient setLocalDefinition= 0 : no_copy; - -# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error -transient optimizeScaleFactor = 0; - -meta dataDate g1date(centuryOfReferenceTimeOfData,yearOfCentury,month,day) : dump; -meta year evaluate(dataDate / 10000) ; - -meta dataTime time(hour,minute,second) : dump; -meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; - -codetable[1] stepUnits 'stepUnits.table' = 1 : transient,dump,no_copy; - -concept_nofail stepType (timeRangeIndicator, "stepType.def", conceptsDir2, conceptsDir1); - -#alias stepTypeInternal=stepType; -#alias lengthOfTimeRange=numberIncludedInAverage; -#alias indicatorOfUnitForTimeRange=unitOfTimeRange; -#alias indicatorOfUnitForTimeIncrement=zero; -#alias timeIncrement=zero; - -#if (timeRangeIndicator==113) { -# alias lengthOfTimeRange=numberIncludedInAverage; -# alias indicatorOfUnitForTimeRange=unitOfTimeRange; -# alias indicatorOfUnitForTimeIncrement=unitOfTimeRange; -# alias timeIncrement=P2; -# alias forecastTime=P1; -#} - -#if (stepType is "accum") { -# transient accumulationRange=P2-P1; -# alias lengthOfTimeRange=accumulationRange; -# alias forecastTime=P1; -# alias indicatorOfUnitForTimeRange=unitOfTimeRange; -#} - -#conversion 1->2 -_if (stepType is "instant" ) { - alias productDefinitionTemplateNumber=zero; -} else { - alias productDefinitionTemplateNumber=eight; -} - -meta stepRange g1step_range(P1,P2,timeRangeIndicator,unitOfTimeRange,stepUnits,stepType) : dump; -meta startStep long_vector(stepRange,0) : dump,no_copy; -meta endStep long_vector(stepRange,1) : dump,no_copy; -meta stepHumanReadable step_human_readable(stepUnits, stepRange): hidden,no_copy; - -alias stepInHours = endStep; -alias ls.stepRange = stepRange; -alias ls.dataDate = dataDate; - -alias mars.step = endStep; -alias mars.date = dataDate; -alias mars.levtype = indicatorOfTypeOfLevel; -alias mars.time = dataTime; -#alias mars.param = paramId; -meta marsParam mars_param(paramId,gribTablesVersionNo,indicatorOfParameter): read_only,dump; -alias mars.param = marsParam; - -# GRIB-860: JRA55 rule for MARS. -# subCentre of 241 means Japanese Reanalysis Project -if (centre == 34 && subCentre == 241) -{ - alias mars.param = paramId; - - if (indicatorOfTypeOfLevel == 101) { - # See ECC-467 - constant sfc_levtype = "sfc"; - alias mars.levtype = sfc_levtype; - } -} - -meta time.validityDate validity_date(dataDate,dataTime,step,stepUnits); -meta time.validityTime validity_time(dataDate,dataTime,step,stepUnits); - -transient deleteLocalDefinition=0; - -if(((section1Length > 40) or new() or setLocalDefinition> 0) and deleteLocalDefinition==0) -{ - constant localUsePresent = 1 : edition_specific; - alias grib2LocalSectionPresent=present; - - if( (centre == ECMWF) or - (centre != ECMWF and - subCentre == ECMWF)) - { - pad reservedNeedNotBePresent(12); - codetable[1] localDefinitionNumber 'grib1/localDefinitionNumber.98.table' = 1 : dump; - template_nofail localDefinition "grib1/local.98.[localDefinitionNumber:l].def"; - if (changed(localDefinitionNumber)) { - if(!new() && localDefinitionNumber!=4 ) { - section_padding localExtensionPadding : read_only; - } - } - - template_nofail marsKeywords "mars/grib.[stream:s].[type:s].def"; - #template marsKeywords "mars/grib.[stream:s].[type:s].def"; - - } - else - { - if ( !new() || setLocalDefinition ) { - # Other centres - pad reservedNeedNotBePresent(12); - template_nofail localDefinition "grib1/local.[centre:l].def"; - - section_padding localExtensionPadding : read_only; - } - } -} -else -{ - constant localUsePresent = 0 : edition_specific; - # template defaultMarsLabeling "mars/default_labeling.def"; -} - -section_padding section1Padding : read_only; - -#if (!wrongPadding) { -# padtoeven evenpadding_sec1(offsetSection1,section1Length); -#} - -concept shortNameECMF (defaultShortName,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy; -concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1) : no_copy,dump; -meta ifsParam ifs_param(paramId,type); - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -alias parameter=paramId; -alias short_name=shortName; - -alias time.stepRange=stepRange; -alias time.stepUnits=stepUnits; -alias time.dataDate=dataDate; -alias time.dataTime=dataTime; -alias time.startStep=startStep; -alias time.endStep=endStep; -alias time.stepType=stepType; - -# ECC-457: GRIB1 to GRIB2 conversion -concept_nofail stepTypeForConversion (unknown, "stepTypeForConversion.def", conceptsDir2, conceptsDir1); -if (stepTypeForConversion is "accum" ) { - alias productDefinitionTemplateNumber=eight; -} - -meta md5Section1 md5(offsetSection1,section1Length); -# md5(start,length,blacklisted1,blacklisted2,...); -meta md5Product md5(offsetSection1,section1Length,gridDefinition,section1Flags,decimalScaleFactor); diff --git a/eccodes/definitions.save/grib1/section.2.def b/eccodes/definitions.save/grib1/section.2.def deleted file mode 100644 index b1f2b98e..00000000 --- a/eccodes/definitions.save/grib1/section.2.def +++ /dev/null @@ -1,100 +0,0 @@ -# START grib1::section -# SECTION 2, Grid description section -# Length of section - -position offsetSection2; -section_length[3] section2Length ; -meta section2Pointer section_pointer(offsetSection2,section2Length,2); -transient radius=6367470; -alias radiusOfTheEarth=radius; -alias radiusInMetres=radius; -transient shapeOfTheEarth=0: hidden; #ECC-811 - -# NV -- number of vertical coordinate parameters - -unsigned[1] numberOfVerticalCoordinateValues : dump ; - -constant neitherPresent = 255; - -alias NV = numberOfVerticalCoordinateValues; -alias numberOfCoordinatesValues= numberOfVerticalCoordinateValues; - -# PV -- location -# (octet number) - -unsigned[1] pvlLocation = 255; - -# Data representation type -codetable[1] dataRepresentationType 'grib1/6.table' = 0; -meta gridDefinitionDescription codetable_title(dataRepresentationType); - - -# Grid definition -# (according to data representation type - octet 6 above) -alias isRotatedGrid=zero; - -if (dataRepresentationType < 192) -{ - template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].def"; -} -else -{ - template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].[centre:l].def"; -} -position endGridDefinition; - -position offsetBeforePV; -transient PVPresent = ( NV > 0); - -if (pvlLocation != neitherPresent) -{ - padto padding_sec2_2(offsetSection2 + pvlLocation - 1); -} else { - padto padding_sec2_2(offsetSection2 + 32 ); -} - -if(PVPresent ) -{ - ibmfloat pv[NV] : dump; - alias vertical.pv=pv; -} - -position offsetBeforePL; - -transient PLPresent = (section2Length > (offsetBeforePL - offsetSection2)) - && (section2Length >= (Nj * 2 + offsetBeforePL - offsetSection2)) ; - -if(PLPresent) -{ - # For grib 1 -> 2 - constant numberOfOctectsForNumberOfPoints = 2; - constant interpretationOfNumberOfPoints = 1; - - unsigned[2] pl[Nj] : dump; - alias geography.pl=pl; -} - -if(PVPresent == 0 && PLPresent == 0) -{ - # pad to the end of the grid definiton as in documentation - # ( gribex compatibility ) - padto padding_sec2_1(offsetSection2 + 32); -} - -#when (PVPresent == 0) { set NV = 0;} -when ((PVPresent == 1) or (PLPresent==1)) { - set pvlLocation = offsetBeforePV - offsetSection2 + 1; -} -when ((PVPresent == 0) and (PLPresent==0)) { set pvlLocation = 255; } - -alias reducedGrid = PLPresent; - -# GRIB-534: To easily remove vertical coordinates, set this key to 1 -concept_nofail deletePV(unknown) { - "1" = { PVPresent=0; NV=0; } -} - -padtoeven padding_sec2_3(offsetSection2,section2Length); - -meta md5Section2 md5(offsetSection2,section2Length); -alias md5GridSection = md5Section2; diff --git a/eccodes/definitions.save/grib1/section.3.def b/eccodes/definitions.save/grib1/section.3.def deleted file mode 100644 index 152c9dcb..00000000 --- a/eccodes/definitions.save/grib1/section.3.def +++ /dev/null @@ -1,25 +0,0 @@ -# SECTION 3, Bit-map section -position offsetSection3; -section_length[3] section3Length ; -meta section3Pointer section_pointer(offsetSection3,section3Length,3); - -# Number of unused bits at end of Section 3 -unsigned[1] numberOfUnusedBitsAtEndOfSection3 = 0: read_only; -alias unusedBitsInBitmap=numberOfUnusedBitsAtEndOfSection3; - -# Table reference: -unsigned[2] tableReference = 0 : dump; - -position offsetBeforeBitmap; -meta geography.bitmap g1bitmap( tableReference, - missingValue, - offsetSection3, - section3Length, - numberOfUnusedBitsAtEndOfSection3) : read_only,dump; - -position offsetAfterBitmap; - -padtoeven padding_sec3_1(offsetSection3,section3Length); -section_padding section3Padding; - -meta md5Section3 md5(offsetSection3,section3Length); diff --git a/eccodes/definitions.save/grib1/section.4.def b/eccodes/definitions.save/grib1/section.4.def deleted file mode 100644 index aef4ec25..00000000 --- a/eccodes/definitions.save/grib1/section.4.def +++ /dev/null @@ -1,245 +0,0 @@ -# GRIB1 SECTION 4, Binary data section -# Length of section -position offsetSection4; - -# Due to a trick done by GRIBEX to support large GRIBs, we need a special treatment -# of the message length and of the section4 lenth, so instead of -# section_length[3] section4Length; -# we get: -g1_section4_length[3] section4Length(totalLength); - -meta section4Pointer section_pointer(offsetSection4,section4Length,4); - -g1_half_byte_codeflag halfByte; -flags[1] dataFlag "grib1/11.table" = 0 : read_only; -signed[2] binaryScaleFactor = 0 : read_only,dump; -ibmfloat referenceValue : read_only,dump; - -meta referenceValueError reference_value_error(referenceValue,ibm); - -flagbit sphericalHarmonics(dataFlag,7) : dump; -flagbit complexPacking(dataFlag,6) : dump; -flagbit integerPointValues(dataFlag,5) : dump; -flagbit additionalFlagPresent(dataFlag,4) : edition_specific,dump; - -# second order packing -if (complexPacking && sphericalHarmonics==0) { - unsigned[1] widthOfFirstOrderValues : dump ; - unsigned [2] N1; - flags[1] extendedFlag "grib1/11-2.table"; - - # Undocumented use of octet 14 extededFlags - # Taken from d2ordr.F - # R------- only bit 1 is reserved. - # -0------ single datum at each grid point. - # -1------ matrix of values at each grid point. - # --0----- no secondary bit map. - # --1----- secondary bit map present. - # ---0---- second order values have constant width. - # ---1---- second order values have different widths. - # ----0--- no general extended second order packing. - # ----1--- general extended second order packing used. - # -----0-- standard field ordering in section 4. - # -----1-- boustrophedonic ordering in section 4. - # ------00 no spatial differencing used. - # ------01 1st-order spatial differencing used. - # ------10 2nd-order " " " . - # ------11 3rd-order " " " . - - #ksec4(8) - flagbit matrixOfValues (extendedFlag,6) = 0 : dump; - #ksec4(9) - flagbit secondaryBitmapPresent (extendedFlag,5) = 0 : dump; - #ksec4(10) - flagbit secondOrderOfDifferentWidth (extendedFlag,4) = 0 : dump; - #ksec4(12) - flagbit generalExtended2ordr (extendedFlag,3) = 0 : dump; - #ksec4(13) - flagbit boustrophedonicOrdering (extendedFlag,2) = 0 : dump; - #ksec4(14) - flagbit twoOrdersOfSPD (extendedFlag,1) = 0 : dump; - #ksec4(15) - flagbit plusOneinOrdersOfSPD (extendedFlag,0) = 0 : dump; - meta orderOfSPD evaluate(plusOneinOrdersOfSPD + 2 * twoOrdersOfSPD); - alias secondaryBitmap = secondaryBitmapPresent; - alias boustrophedonic=boustrophedonicOrdering; -} else { - transient orderOfSPD=2; - transient boustrophedonic=0; -} -transient hideThis=0; - -concept packingType { -#set uses the last one -#get returns the first match - "grid_simple" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_ieee" = { sphericalHarmonics = 0; complexPacking = 0; - integerPointValues=1; additionalFlagPresent=1;} - "spectral_complex" = { sphericalHarmonics = 1; complexPacking = 1; - additionalFlagPresent = 0; } - "spectral_simple" = { sphericalHarmonics = 1; complexPacking = 0; additionalFlagPresent = 0; - representationMode=1;} - "spectral_ieee" = { sphericalHarmonics = 1; complexPacking = 1; - additionalFlagPresent = 0;hideThis=1; } - "grid_simple_matrix" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 1;} - - "grid_second_order_row_by_row" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=0; } - "grid_second_order_constant_width" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=0; - matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } - "grid_second_order_general_grib1" = {sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } - "grid_second_order_no_SPD" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=0;} - "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} - "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} - "grid_second_order_no_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} - "grid_second_order_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} - "grid_second_order_SPD1" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=1; twoOrdersOfSPD=0; } - "grid_second_order_SPD2" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; } - "grid_second_order_SPD3" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=1; twoOrdersOfSPD=1; } - "grid_jpeg" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_png" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_ccsds" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_simple_log_preprocessing"= { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} -} : dump; - - -alias ls.packingType=packingType; -alias typeOfPacking=packingType; - -if( binaryScaleFactor == -32767) { - unsigned[1] bitsPerValue : dump ; - alias numberOfBitsContainingEachPackedValue = bitsPerValue; - - constant dataRepresentationTemplateNumber = 0; - constant bitMapIndicator = 0; - # For grib 1 -> 2 - position offsetBeforeData; - transient numberOfCodedValues=numberOfPoints; - meta values data_dummy_field( - section4Length, - offsetBeforeData, - offsetSection4, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - halfByte, - packingType, - grid_ieee,precision, - missingValue, - numberOfPoints, - bitmap - ) : dump; -} else { - template dataValues "grib1/data.[packingType:s].def"; -} - -position offsetAfterData; - -transient dataLength=(offsetAfterData-offsetBeforeData)/8; - -if (bitmapPresent==1) { - alias numberOfEffectiveValues=numberOfDataPoints; -} else { - alias numberOfEffectiveValues=numberOfCodedValues; -} - -_if (sphericalHarmonics) { - alias numberOfEffectiveValues=numberOfValues; -} - -meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; -meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; -alias setDecimalPrecision=changeDecimalPrecision; - -meta bitsPerValueAndRepack bits_per_value(values,bitsPerValue) : edition_specific; -alias setBitsPerValue=bitsPerValueAndRepack; - -meta scaleValuesBy scale_values(values,missingValue) : edition_specific; -meta offsetValuesBy offset_values(values,missingValue) : edition_specific; - -concept gridType { -#set uses the last one -#get returns the first match - "regular_ll" = {dataRepresentationType = 0; sphericalHarmonics = 0; PLPresent=0;} - "reduced_ll" = {dataRepresentationType = 0; sphericalHarmonics = 0; PLPresent=1; Ni=missing(); } - "mercator" = {dataRepresentationType = 1; sphericalHarmonics = 0; PLPresent=0; } - "lambert" = {dataRepresentationType = 3; sphericalHarmonics = 0; PLPresent=0; } - "polar_stereographic" = {dataRepresentationType = 5; sphericalHarmonics = 0; PLPresent=0; } - "UTM" = {dataRepresentationType = 6; sphericalHarmonics = 0; PLPresent=0; } - "simple_polyconic" = {dataRepresentationType = 7; sphericalHarmonics = 0; PLPresent=0; } - "albers" = {dataRepresentationType = 8; sphericalHarmonics = 0; PLPresent=0; } - "miller" = {dataRepresentationType = 8; sphericalHarmonics = 0; PLPresent=0; } - "rotated_ll" = {dataRepresentationType = 10; sphericalHarmonics = 0; PLPresent=0; } - "stretched_ll" = {dataRepresentationType = 20; sphericalHarmonics = 0; PLPresent=0; } - "stretched_rotated_ll" = {dataRepresentationType = 30; sphericalHarmonics = 0; PLPresent=0; } - "regular_gg" = {dataRepresentationType = 4; sphericalHarmonics = 0; PLPresent=0; } - "rotated_gg" = {dataRepresentationType = 14; sphericalHarmonics = 0; PLPresent=0; } - "stretched_gg" = {dataRepresentationType = 24; sphericalHarmonics = 0; PLPresent=0; } - "stretched_rotated_gg" = {dataRepresentationType = 34; sphericalHarmonics = 0; PLPresent=0; } - "reduced_gg" = {dataRepresentationType = 4; sphericalHarmonics = 0; - PLPresent=1; numberOfPointsAlongAParallel = missing(); - iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} - - "reduced_rotated_gg" = {dataRepresentationType = 14; sphericalHarmonics = 0; - PLPresent=1; numberOfPointsAlongAParallel = missing(); - iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} - "reduced_stretched_gg" = {dataRepresentationType = 24; sphericalHarmonics = 0; - PLPresent=1; numberOfPointsAlongAParallel = missing(); - iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} - "reduced_stretched_rotated_gg" = {dataRepresentationType = 34; sphericalHarmonics = 0; - PLPresent=1; numberOfPointsAlongAParallel = missing(); - iDirectionIncrement = missing(); ijDirectionIncrementGiven=0;} - -# For consistency add the prefix regular_ -"regular_rotated_gg" = { dataRepresentationType = 14; sphericalHarmonics = 0; PLPresent=0; } # = rotated_gg -"regular_stretched_gg" = { dataRepresentationType = 24; sphericalHarmonics = 0; PLPresent=0; } # = stretched_gg -"regular_stretched_rotated_gg" = { dataRepresentationType = 34; sphericalHarmonics = 0; PLPresent=0; } # = stretched_rotated_gg - - "sh" = {dataRepresentationType = 50; sphericalHarmonics = 1; PLPresent=0; } - "rotated_sh" = {dataRepresentationType = 60; sphericalHarmonics = 1; PLPresent=0; } - "stretched_sh" = {dataRepresentationType = 70; sphericalHarmonics = 1; PLPresent=0; } - "stretched_rotated_sh" = {dataRepresentationType = 80; sphericalHarmonics = 1; PLPresent=0; } - "space_view" = {dataRepresentationType = 90; sphericalHarmonics = 0; PLPresent=0; } - "unknown" = {PLPresent=0;} - "unknown_PLPresent" = {PLPresent=1;} -} : dump; - -alias ls.gridType=gridType; -alias geography.gridType=gridType; -alias typeOfGrid=gridType; - -meta projSourceString proj_string(gridType, 0): hidden; -meta projTargetString proj_string(gridType, 1): hidden; -alias projString = projTargetString : hidden; - -meta getNumberOfValues size(values) : edition_specific,dump ; - -if (complexPacking==0 || sphericalHarmonics==1) { - padtoeven padding_sec4_1(offsetSection4,section4Length) ; -} - -meta md5Section4 md5(offsetSection4,section4Length); -alias md5DataSection = md5Section4; diff --git a/eccodes/definitions.save/grib1/section.5.def b/eccodes/definitions.save/grib1/section.5.def deleted file mode 100644 index 3e019b5e..00000000 --- a/eccodes/definitions.save/grib1/section.5.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -position offsetSection5; -constant section5Length=4; - -meta section5Pointer section_pointer(offsetSection5,section5Length,5); - -ascii[4] '7777' = "7777" : read_only; diff --git a/eccodes/definitions.save/grib1/sensitive_area_domain.def b/eccodes/definitions.save/grib1/sensitive_area_domain.def deleted file mode 100644 index ef1aa0b7..00000000 --- a/eccodes/definitions.save/grib1/sensitive_area_domain.def +++ /dev/null @@ -1,27 +0,0 @@ -'h' = {northWestLatitudeOfVerficationArea=4630;northWestLongitudeOfVerficationArea=719;southEastLatitudeOfVerficationArea=2689;southEastLongitudeOfVerficationArea=3140;} -'h' = {northWestLatitudeOfVerficationArea=4760;northWestLongitudeOfVerficationArea=-2180;southEastLatitudeOfVerficationArea=2809;southEastLongitudeOfVerficationArea=250;} -'h' = {northWestLatitudeOfVerficationArea=4800;northWestLongitudeOfVerficationArea=-300;southEastLatitudeOfVerficationArea=2900;southEastLongitudeOfVerficationArea=2100;} -'h' = {northWestLatitudeOfVerficationArea=4940;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=2990;southEastLongitudeOfVerficationArea=2430;} -'h' = {northWestLatitudeOfVerficationArea=5020;northWestLongitudeOfVerficationArea=-720;southEastLatitudeOfVerficationArea=3070;southEastLongitudeOfVerficationArea=1700;} -'h' = {northWestLatitudeOfVerficationArea=5130;northWestLongitudeOfVerficationArea=-739;southEastLatitudeOfVerficationArea=3189;southEastLongitudeOfVerficationArea=1690;} -'h' = {northWestLatitudeOfVerficationArea=5130;northWestLongitudeOfVerficationArea=-739;southEastLatitudeOfVerficationArea=3189;southEastLongitudeOfVerficationArea=169;} -'h' = {northWestLatitudeOfVerficationArea=6200;northWestLongitudeOfVerficationArea=-2160;southEastLatitudeOfVerficationArea=4260;southEastLongitudeOfVerficationArea=260;} -'h' = {northWestLatitudeOfVerficationArea=6640;northWestLongitudeOfVerficationArea=-2340;southEastLatitudeOfVerficationArea=4690;southEastLongitudeOfVerficationArea=90;} -'i' = {northWestLatitudeOfVerficationArea=0;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=0;southEastLongitudeOfVerficationArea=0;} -'i' = {northWestLatitudeOfVerficationArea=4890;northWestLongitudeOfVerficationArea=730;southEastLatitudeOfVerficationArea=2940;southEastLongitudeOfVerficationArea=3160;} -'i' = {northWestLatitudeOfVerficationArea=4900;northWestLongitudeOfVerficationArea=-800;southEastLatitudeOfVerficationArea=2900;southEastLongitudeOfVerficationArea=1500;} -'i' = {northWestLatitudeOfVerficationArea=5020;northWestLongitudeOfVerficationArea=-2290;southEastLatitudeOfVerficationArea=3070;southEastLongitudeOfVerficationArea=130;} -'i' = {northWestLatitudeOfVerficationArea=5100;northWestLongitudeOfVerficationArea=-300;southEastLatitudeOfVerficationArea=3200;southEastLongitudeOfVerficationArea=2000;} -'i' = {northWestLatitudeOfVerficationArea=6140;northWestLongitudeOfVerficationArea=-950;southEastLatitudeOfVerficationArea=4190;southEastLongitudeOfVerficationArea=1479;} -'j' = {northWestLatitudeOfVerficationArea=4700;northWestLongitudeOfVerficationArea=-900;southEastLatitudeOfVerficationArea=2700;southEastLongitudeOfVerficationArea=1400;} -'j' = {northWestLatitudeOfVerficationArea=6660;northWestLongitudeOfVerficationArea=-1870;southEastLatitudeOfVerficationArea=4710;southEastLongitudeOfVerficationArea=550;} -'j' = {northWestLatitudeOfVerficationArea=6660;northWestLongitudeOfVerficationArea=-920;southEastLatitudeOfVerficationArea=4710;southEastLongitudeOfVerficationArea=1510;} -'k' = {northWestLatitudeOfVerficationArea=4910;northWestLongitudeOfVerficationArea=-1000;southEastLatitudeOfVerficationArea=2959;southEastLongitudeOfVerficationArea=1429;} -'k' = {northWestLatitudeOfVerficationArea=5030;northWestLongitudeOfVerficationArea=-59;southEastLatitudeOfVerficationArea=3089;southEastLongitudeOfVerficationArea=2370;} -'k' = {northWestLatitudeOfVerficationArea=5080;northWestLongitudeOfVerficationArea=-1050;southEastLatitudeOfVerficationArea=3139;southEastLongitudeOfVerficationArea=1379;} -'l' = {northWestLatitudeOfVerficationArea=4950;northWestLongitudeOfVerficationArea=0;southEastLatitudeOfVerficationArea=3009;southEastLongitudeOfVerficationArea=2430;} -'l' = {northWestLatitudeOfVerficationArea=5150;northWestLongitudeOfVerficationArea=-90;southEastLatitudeOfVerficationArea=3200;southEastLongitudeOfVerficationArea=2330;} -'l' = {northWestLatitudeOfVerficationArea=6300;northWestLongitudeOfVerficationArea=-1600;southEastLatitudeOfVerficationArea=4300;southEastLongitudeOfVerficationArea=800;} -'p' = {northWestLatitudeOfVerficationArea=6300;northWestLongitudeOfVerficationArea=-1900;southEastLatitudeOfVerficationArea=4400;southEastLongitudeOfVerficationArea=400;} -'i' = {northWestLatitudeOfVerficationArea=7100;northWestLongitudeOfVerficationArea=500;southEastLatitudeOfVerficationArea=5200;southEastLongitudeOfVerficationArea=2900;} - diff --git a/eccodes/definitions.save/grib1/shortName.def b/eccodes/definitions.save/grib1/shortName.def deleted file mode 100644 index 9e902d68..00000000 --- a/eccodes/definitions.save/grib1/shortName.def +++ /dev/null @@ -1,2059 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'strf' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10u' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10v' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2t' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'lsp' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sde' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'cwat' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'vtmp' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } -#Pressure tendency -'ptend' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'h' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'mntsf' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'absv' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 3 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 3 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'prate' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'mld' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'wtmp' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'ssw' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Salinity -'s' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'icec' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'mdps' = { - table2Version = 3 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'mpps' = { - table2Version = 3 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'nswrt' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'strf' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10u' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10v' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2t' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'lsp' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sde' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'cwat' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'ptend' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'h' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'mntsf' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'absv' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'prate' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'mld' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'wtmp' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'ssw' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Salinity -'s' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'icec' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'mdps' = { - table2Version = 2 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'mpps' = { - table2Version = 2 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'nswrt' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'strf' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'pt' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'ws' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#Pressure -'pres' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'pv' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'z' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'t' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'u' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'v' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'q' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'sp' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'w' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'vo' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'msl' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'d' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gh' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'r' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'10u' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'10v' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'2t' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'2d' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'lsm' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'sr' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'e' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'btmp' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Runoff -'ro' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'tco3' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'lsp' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'sde' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'ccc' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'lcc' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'mcc' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'hcc' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'lssf' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'lhf' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'shf' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'bld' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'snoc' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'cwat' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Albedo -'al' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'ptend' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'h' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'hstdv' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'tmax' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'tmin' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'dpt' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'depr' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'lapr' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'vis' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'rdsp1' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'rdsp2' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'rdsp3' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'ta' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'presa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpa' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'wvsp1' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'wvsp2' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'wvsp3' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'wdir' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'mntsf' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'absv' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'absd' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'vucsh' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'vvcsh' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'dirc' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'spc' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'ucurr' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'vcurr' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'mixr' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'pwat' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'vp' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'satd' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'prate' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'tstm' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'acpcp' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'srweq' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'mld' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'tthdp' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'mthd' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'mtha' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'wtmp' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'dslm' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'ssw' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Salinity -'s' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'den' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'icec' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'icetk' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'diced' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'siced' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'uice' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'vice' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'iceg' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'iced' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'snom' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'swh' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'mdww' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'shww' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'mpww' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'swdir' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'swell' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'swper' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'mdps' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'mpps' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'dirsw' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'swp' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'nlwrs' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'nswrt' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'nlwrt' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'lwavr' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'swavr' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'grad' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'swrad' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'uflx' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'vflx' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'wmixe' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'imgd' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'vegrea' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Orography -'orog' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'sm' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'st' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'sf' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'tcc' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'tp' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; -} diff --git a/eccodes/definitions.save/grib1/stepType.def b/eccodes/definitions.save/grib1/stepType.def deleted file mode 100644 index 7c6b824b..00000000 --- a/eccodes/definitions.save/grib1/stepType.def +++ /dev/null @@ -1,27 +0,0 @@ -# Concept stepType -# In case of a repeated entry: -# set uses the FIRST one -# get returns the LAST match - -"instant" = {timeRangeIndicator=0;} -"instant" = {timeRangeIndicator=10;} -"instant" = {timeRangeIndicator=1;} - -"avg" = {timeRangeIndicator=3;} - -"avgd" = {timeRangeIndicator=113;} -"avgfc" = {timeRangeIndicator=113;} - -"accum" = {timeRangeIndicator=4;} -"accum" = {timeRangeIndicator=2;} - -# Since grib1 has not min/max, we had to use our own convention -# therefore we set the centre to ECMWF (98) -"min" = {timeRangeIndicator=2;centre=98;} -"min" = {timeRangeIndicator=119;} -"max" = {timeRangeIndicator=2;centre=98;} -"max" = {timeRangeIndicator=118;} - -"diff" = {timeRangeIndicator=5;} -"avgua" = {timeRangeIndicator=123;} -"avgia" = {timeRangeIndicator=124;} diff --git a/eccodes/definitions.save/grib1/stepTypeForConversion.def b/eccodes/definitions.save/grib1/stepTypeForConversion.def deleted file mode 100644 index c8b68e6c..00000000 --- a/eccodes/definitions.save/grib1/stepTypeForConversion.def +++ /dev/null @@ -1,3 +0,0 @@ -# Concept stepTypeForConversion -# See ECC-457 -"unknown" = {dummy=0;} diff --git a/eccodes/definitions.save/grib1/tube_domain.def b/eccodes/definitions.save/grib1/tube_domain.def deleted file mode 100644 index 605a218b..00000000 --- a/eccodes/definitions.save/grib1/tube_domain.def +++ /dev/null @@ -1,7 +0,0 @@ -'a' = { northLatitudeOfDomainOfTubing=70000; westLongitudeOfDomainOfTubing=332500; southLatitudeOfDomainOfTubing=40000; eastLongitudeOfDomainOfTubing=10000; } -'b' = { northLatitudeOfDomainOfTubing=72500; westLongitudeOfDomainOfTubing=0; southLatitudeOfDomainOfTubing=50000; eastLongitudeOfDomainOfTubing=45000; } -'c' = { northLatitudeOfDomainOfTubing=57500; westLongitudeOfDomainOfTubing=345000; southLatitudeOfDomainOfTubing=32500; eastLongitudeOfDomainOfTubing=17500; } -'d' = { northLatitudeOfDomainOfTubing=57500; westLongitudeOfDomainOfTubing=2500; southLatitudeOfDomainOfTubing=32500; eastLongitudeOfDomainOfTubing=42500; } -'e' = { northLatitudeOfDomainOfTubing=75000; westLongitudeOfDomainOfTubing=340000; southLatitudeOfDomainOfTubing=30000; eastLongitudeOfDomainOfTubing=45000; } -'f' = { northLatitudeOfDomainOfTubing=60000; westLongitudeOfDomainOfTubing=310000; southLatitudeOfDomainOfTubing=40000; eastLongitudeOfDomainOfTubing=0; } - diff --git a/eccodes/definitions.save/grib1/typeOfLevel.def b/eccodes/definitions.save/grib1/typeOfLevel.def deleted file mode 100644 index bbfb9a4e..00000000 --- a/eccodes/definitions.save/grib1/typeOfLevel.def +++ /dev/null @@ -1,36 +0,0 @@ -# ECMWF concept type of level -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricInPa' = {indicatorOfTypeOfLevel=210;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} -'entireAtmosphere' = {indicatorOfTypeOfLevel=200;} -'entireOcean' = {indicatorOfTypeOfLevel=201;} diff --git a/eccodes/definitions.save/grib1/units.def b/eccodes/definitions.save/grib1/units.def deleted file mode 100644 index 4472eec8..00000000 --- a/eccodes/definitions.save/grib1/units.def +++ /dev/null @@ -1,2059 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Stream function -'m**2 s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 3 ; - indicatorOfParameter = 6 ; - } -#Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 3 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 2 ; - } -#Divergence -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gpm' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'%' = { - table2Version = 3 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 3 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'m' = { - table2Version = 3 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 3 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 118 ; - } -#Runoff -'m' = { - table2Version = 3 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 76 ; - } -#Albedo -'%' = { - table2Version = 3 ; - indicatorOfParameter = 84 ; - } -#Virtual temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 12 ; - } -#Virtual temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 12 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 3 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 3 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 3 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 3 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 3 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'~' = { - table2Version = 3 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'m**2 s**-2' = { - table2Version = 3 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 3 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 3 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 3 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 3 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 3 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 3 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 3 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 3 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 3 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'(0 - 1)' = { - table2Version = 3 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 3 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 3 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 3 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 3 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 3 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 3 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 3 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 3 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 3 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 3 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 3 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - table2Version = 3 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 3 ; - indicatorOfParameter = 126 ; - } -#Image data -'~' = { - table2Version = 3 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'%' = { - table2Version = 3 ; - indicatorOfParameter = 87 ; - } -#Orography -'m' = { - table2Version = 3 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'kg m**-3' = { - table2Version = 3 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'K' = { - table2Version = 3 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'%' = { - table2Version = 3 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'kg m**-2' = { - table2Version = 3 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'m**2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 2 ; - indicatorOfParameter = 6 ; - } -#Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 2 ; - } -#Divergence -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gpm' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'%' = { - table2Version = 2 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 2 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 2 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 118 ; - } -#Runoff -'m' = { - table2Version = 2 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 76 ; - } -#Albedo -'%' = { - table2Version = 2 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 2 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 2 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 2 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 2 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 2 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'~' = { - table2Version = 2 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'m**2 s**-2' = { - table2Version = 2 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 2 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 2 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 2 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 2 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 2 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 2 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 2 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 2 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'(0 - 1)' = { - table2Version = 2 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 2 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 2 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 2 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 2 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 2 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 2 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 2 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 2 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 2 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 2 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 2 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - table2Version = 2 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 2 ; - indicatorOfParameter = 126 ; - } -#Image data -'~' = { - table2Version = 2 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'%' = { - table2Version = 2 ; - indicatorOfParameter = 87 ; - } -#Orography -'m' = { - table2Version = 2 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'kg m**-3' = { - table2Version = 2 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'K' = { - table2Version = 2 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'%' = { - table2Version = 2 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'kg m**-2' = { - table2Version = 2 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; - } -#Stream function -'m**2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 35 ; - } -#Velocity potential -'m**2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 36 ; - } -#Potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 13 ; - } -#Wind speed -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 32 ; - } -#Pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 4 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Geopotential -'m**2 s**-2' = { - table2Version = 1 ; - indicatorOfParameter = 6 ; - } -#Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - } -#U component of wind -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - } -#V component of wind -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - } -#Specific humidity -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 51 ; - } -#Surface pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 1 ; - indicatorOfTypeOfLevel = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 39 ; - } -#Vorticity (relative) -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 43 ; - } -#Mean sea level pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 2 ; - } -#Divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 44 ; - } -#Geopotential Height -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - } -#Relative humidity -'%' = { - table2Version = 1 ; - indicatorOfParameter = 52 ; - } -#10 metre U wind component -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 33 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#10 metre V wind component -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 34 ; - indicatorOfTypeOfLevel = 105 ; - level = 10 ; - } -#2 metre temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 11 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#2 metre dewpoint temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - indicatorOfTypeOfLevel = 105 ; - level = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 81 ; - } -#Surface roughness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 83 ; - } -#Evaporation -'m of water equivalent' = { - table2Version = 1 ; - indicatorOfParameter = 57 ; - } -#Brightness temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 118 ; - } -#Runoff -'m' = { - table2Version = 1 ; - indicatorOfParameter = 90 ; - } -#Total column ozone -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 10 ; - } -#large scale precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 62 ; - } -#Snow depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 66 ; - } -#Convective cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 72 ; - } -#Low cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 73 ; - } -#Medium cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 74 ; - } -#High cloud cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 75 ; - } -#Large scale snow -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 79 ; - } -#Latent heat flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 121 ; - } -#Sensible heat flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 122 ; - } -#Boundary layer dissipation -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 123 ; - } -#Convective snow -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 78 ; - } -#Cloud water -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 76 ; - } -#Albedo -'%' = { - table2Version = 1 ; - indicatorOfParameter = 84 ; - } -#Pressure tendency -'Pa s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 3 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 5 ; - } -#Geometrical height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 8 ; - } -#Standard deviation of height -'m' = { - table2Version = 1 ; - indicatorOfParameter = 9 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 14 ; - } -#Maximum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 15 ; - } -#Minimum temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 16 ; - } -#Dew point temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 17 ; - } -#Dew point depression (or deficit) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 18 ; - } -#Lapse rate -'K m**-1' = { - table2Version = 1 ; - indicatorOfParameter = 19 ; - } -#Visibility -'m' = { - table2Version = 1 ; - indicatorOfParameter = 20 ; - } -#Radar spectra (1) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 21 ; - } -#Radar spectra (2) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 22 ; - } -#Radar spectra (3) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 23 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 24 ; - } -#Temperature anomaly -'K' = { - table2Version = 1 ; - indicatorOfParameter = 25 ; - } -#Pressure anomaly -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 26 ; - } -#Geopotential height anomaly -'gpm' = { - table2Version = 1 ; - indicatorOfParameter = 27 ; - } -#Wave spectra (1) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 28 ; - } -#Wave spectra (2) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 29 ; - } -#Wave spectra (3) -'~' = { - table2Version = 1 ; - indicatorOfParameter = 30 ; - } -#Wind direction -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 31 ; - } -#Montgomery stream Function -'m**2 s**-2' = { - table2Version = 1 ; - indicatorOfParameter = 37 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 38 ; - } -#Absolute vorticity -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 41 ; - } -#Absolute divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 42 ; - } -#Vertical u-component shear -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 45 ; - } -#Vertical v-component shear -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 46 ; - } -#Direction of current -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 47 ; - } -#Speed of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 48 ; - } -#U-component of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 49 ; - } -#V-component of current -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 50 ; - } -#Humidity mixing ratio -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 53 ; - } -#Precipitable water -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 54 ; - } -#Vapour pressure -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 55 ; - } -#Saturation deficit -'Pa' = { - table2Version = 1 ; - indicatorOfParameter = 56 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 59 ; - } -#Thunderstorm probability -'%' = { - table2Version = 1 ; - indicatorOfParameter = 60 ; - } -#Convective precipitation (water) -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 63 ; - } -#Snow fall rate water equivalent -'kg m**-2 s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 64 ; - } -#Mixed layer depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 67 ; - } -#Transient thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 68 ; - } -#Main thermocline depth -'m' = { - table2Version = 1 ; - indicatorOfParameter = 69 ; - } -#Main thermocline anomaly -'m' = { - table2Version = 1 ; - indicatorOfParameter = 70 ; - } -#Best lifted index (to 500 hPa) -'K' = { - table2Version = 1 ; - indicatorOfParameter = 77 ; - } -#Water temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 80 ; - } -#Deviation of sea-level from mean -'m' = { - table2Version = 1 ; - indicatorOfParameter = 82 ; - } -#Soil moisture content -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Salinity -'kg kg**-1' = { - table2Version = 1 ; - indicatorOfParameter = 88 ; - } -#Density -'kg m**-3' = { - table2Version = 1 ; - indicatorOfParameter = 89 ; - } -#Ice cover (1=ice, 0=no ice) -'(0 - 1)' = { - table2Version = 1 ; - indicatorOfParameter = 91 ; - } -#Ice thickness -'m' = { - table2Version = 1 ; - indicatorOfParameter = 92 ; - } -#Direction of ice drift -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 93 ; - } -#Speed of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 94 ; - } -#U-component of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 95 ; - } -#V-component of ice drift -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 96 ; - } -#Ice growth rate -'m s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 97 ; - } -#Ice divergence -'s**-1' = { - table2Version = 1 ; - indicatorOfParameter = 98 ; - } -#Snow melt -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 99 ; - } -#Signific.height,combined wind waves+swell -'m' = { - table2Version = 1 ; - indicatorOfParameter = 100 ; - } -#Mean direction of wind waves -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 101 ; - } -#Significant height of wind waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 102 ; - } -#Mean period of wind waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 103 ; - } -#Direction of swell waves -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 104 ; - } -#Significant height of swell waves -'m' = { - table2Version = 1 ; - indicatorOfParameter = 105 ; - } -#Mean period of swell waves -'s' = { - table2Version = 1 ; - indicatorOfParameter = 106 ; - } -#Primary wave direction -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 107 ; - } -#Primary wave mean period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 108 ; - } -#Secondary wave direction -'Degree true' = { - table2Version = 1 ; - indicatorOfParameter = 109 ; - } -#Secondary wave mean period -'s' = { - table2Version = 1 ; - indicatorOfParameter = 110 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 111 ; - } -#Net long-wave radiation flux (surface) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 112 ; - } -#Net short-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 113 ; - } -#Net long-wave radiation flux(atmosph.top) -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 114 ; - } -#Long wave radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 115 ; - } -#Short wave radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 116 ; - } -#Global radiation flux -'W m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 117 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - table2Version = 1 ; - indicatorOfParameter = 119 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - table2Version = 1 ; - indicatorOfParameter = 120 ; - } -#Momentum flux, u-component -'N m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 124 ; - } -#Momentum flux, v-component -'N m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 125 ; - } -#Wind mixing energy -'J' = { - table2Version = 1 ; - indicatorOfParameter = 126 ; - } -#Image data -'~' = { - table2Version = 1 ; - indicatorOfParameter = 127 ; - } -#Percentage of vegetation -'%' = { - table2Version = 1 ; - indicatorOfParameter = 87 ; - } -#Orography -'m' = { - table2Version = 1 ; - indicatorOfParameter = 7 ; - indicatorOfTypeOfLevel = 1 ; - } -#Soil Moisture -'kg m**-3' = { - table2Version = 1 ; - indicatorOfParameter = 86 ; - } -#Soil Temperature -'K' = { - table2Version = 1 ; - indicatorOfParameter = 85 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 65 ; - } -#Total Cloud Cover -'%' = { - table2Version = 1 ; - indicatorOfParameter = 71 ; - } -#Total Precipitation -'kg m**-2' = { - table2Version = 1 ; - indicatorOfParameter = 61 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; -} diff --git a/eccodes/definitions.save/grib2/boot.def b/eccodes/definitions.save/grib2/boot.def deleted file mode 100644 index 1fc76c98..00000000 --- a/eccodes/definitions.save/grib2/boot.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# This gets updated twice a year by WMO. -# See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant tablesVersionLatest = 26 : edition_specific; - -constant million = 1000000 : hidden; -constant grib2divider = 1000000; -alias extraDimensionPresent=zero; -alias is_tigge = zero; -alias is_s2s = zero; -transient is_efas = 0; -transient angleSubdivisions=grib2divider; # micro degrees - -meta gts_header gts_header() : no_copy,hidden,read_only; -meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; -meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; -meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; - -transient missingValue = 9999; -constant ieeeFloats = 1 : edition_specific; -constant isHindcast = 0; - -include "grib2/section.0.def"; - -template core "grib2/sections.def"; - -#if(!new()) -#{ - #lookup[4] endOfProduct(0); - #while(endOfProduct != `7777`) - #{ - #template core "grib2/sections.def"; - #lookup[4] endOfProduct(0); - #} -#} - -template section_8 "grib2/section.8.def"; diff --git a/eccodes/definitions.save/grib2/boot_multifield.def b/eccodes/definitions.save/grib2/boot_multifield.def deleted file mode 100644 index 5684aa58..00000000 --- a/eccodes/definitions.save/grib2/boot_multifield.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- 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. -# - -constant grib2divider = 1000000; -transient missingValue = 9999; -constant ieeeFloats = 1 : edition_specific; - - -ascii[4] identifier; -ascii[2] reserved : hidden; -codetable[1] discipline 'grib2/0.0.table'; -unsigned[1] editionNumber : edition_specific; -section_length[8] totalLength; - - -template core "grib2/sections.def"; - -lookup[4] endOfProduct(0); - - if(endOfProduct != `7777`){ - template core "grib2/sections.def"; - } - - template section8 "grib2/section.8.def"; - diff --git a/eccodes/definitions.save/grib2/cfName.def b/eccodes/definitions.save/grib2/cfName.def deleted file mode 100644 index 9e55439c..00000000 --- a/eccodes/definitions.save/grib2/cfName.def +++ /dev/null @@ -1,278 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'sea_ice_area_fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Surface solar radiation downwards -'surface_downwelling_shortwave_flux_in_air' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Ozone mass mixing ratio -'mass_fraction_of_ozone_in_air' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'surface_net_downward_longwave_flux_assuming_clear_sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'temperature_in_surface_snow' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Sea surface practical salinity -'sea_surface_salinity' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'ocean_mixed_layer_thickness_defined_by_sigma_theta' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 169 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#Eastward sea water velocity -'eastward_sea_water_velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'northward_sea_water_velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'sea_surface_height_above_geoid' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 20 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 29315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#Sea-ice thickness -'sea_ice_thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Geopotential -'geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'air_temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'eastward_wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'northward_wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'specific_humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'surface_air_pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'lagrangian_tendency_of_air_pressure' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Vorticity (relative) -'atmosphere_relative_vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'divergence_of_wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'geopotential_height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'relative_humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Land-sea mask -'land_binary_mask' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'surface_roughness_length' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Albedo -'surface_albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Convective precipitation (water) -'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; -} diff --git a/eccodes/definitions.save/grib2/cfVarName.def b/eccodes/definitions.save/grib2/cfVarName.def deleted file mode 100644 index 0a07feaa..00000000 --- a/eccodes/definitions.save/grib2/cfVarName.def +++ /dev/null @@ -1,4140 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 80 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 3 ; - scaleFactorOfLowerLimit = -2 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 200 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 31 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 45 ; - } -#Sea ice area fraction -'siconc' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'rsn' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'sst' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'slt' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'fg10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#Specific rain water content -'crwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'cswc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Total column cloud liquid water -'tclw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Total column cloud ice water -'tciw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Surface solar radiation downwards -'ssrd' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'strd' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net solar radiation -'tsr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'ewss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'nsss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Ozone mass mixing ratio -'o3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'tsn' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Specific cloud liquid water content -'clwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'ciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'cc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'lsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth -'sde' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Total precipitation of at least 25 mm -'tpg25' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 25 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 50 mm -'tpg50' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 50 ; - } -#10 metre wind gust of at least 10 m/s -'fgg1010' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 10 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Probability of temperature standardized anomaly greater than 1 standard deviation -'ptsa_gt_1stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - } -#Probability of temperature standardized anomaly greater than 1.5 standard deviation -'ptsa_gt_1p5stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 15 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly greater than 2 standard deviation -'ptsa_gt_2stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 2 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Probability of temperature standardized anomaly less than -1 standard deviation -'ptsa_lt_1stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -1 ; - probabilityType = 0 ; - } -#Probability of temperature standardized anomaly less than -1.5 standard deviation -'ptsa_lt_1p5stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -15 ; - } -#Probability of temperature standardized anomaly less than -2 standard deviation -'ptsa_lt_2stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -2 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Mean sea water potential temperature in the upper 300 m -'mswpt300m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Mean sea water temperature in the upper 300 m -'mswt300m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Sea surface practical salinity -'sos' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'mlotst010' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - scaledValueOfFirstFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 169 ; - typeOfSecondFixedSurface = 255 ; - } -#2 metre specific humidity -'sh2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Nitrate aerosol optical depth at 550 nm -'niaod550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 62004 ; - } -#Ammonium aerosol optical depth at 550 nm -'amaod550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 62003 ; - is_aerosol_optical = 1 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18diff' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Dry deposition of ammonium aerosol -'aerddpam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Sedimentation of ammonium aerosol -'aersdmam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'aerwdlam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'aerwdcam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Vertically integrated mass of ammonium aerosol -'aermssam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - aerosolType = 62003 ; - } -#-10 degrees C isothermal level (atm) -'degm10l' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 26315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#0 degrees C isothermal level (atm) -'deg0l' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 27315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#10 metre wind gust in the last 3 hours -'fg310' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'rhw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'rhi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'asn' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'fspc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'fcpc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Maximum CAPE in the last 6 hours -'mxcape6' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Maximum CAPES in the last 6 hours -'mxcapes6' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 19 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - } -#2 metre relative humidity with respect to water -'rhw2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Liquid water content in snow pack -'lwcs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Height of convective cloud top -'hcct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Unbalanced component of specific humidity -'ucq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'ucclwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'ucciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Soil moisture top 20 cm -'sm20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil moisture top 100 cm -'sm100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - } -#Soil temperature top 20 cm -'st20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 100 cm -'st100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Water runoff and drainage -'ro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mixed-layer CAPE in the lowest 50 hPa -'mlcape50' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 50 hPa -'mlcin50' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CAPE in the lowest 100 hPa -'mlcape100' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 100 hPa -'mlcin100' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Most-unstable CAPE -'mucape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Most-unstable CIN -'mucin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Departure level of the most unstable parcel expressed as Pressure -'mudlp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#200 metre U wind component -'u200' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - typeOfFirstFixedSurface = 103 ; - } -#200 metre V wind component -'v200' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#200 metre wind speed -'si200' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#100 metre wind speed -'si100' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mean temperature tendency due to short-wave radiation -'mttswr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'mttlwr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'mttswrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'mttlwrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'mttpm' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'mqtpm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'mutpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'mvtpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'mumf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'mdmf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'mudr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'mddr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'mtpf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'mtdch' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Time integral of rain flux -'tirf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface eastward momentum flux -'tisemf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface northward momentum flux -'tisnmf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Cross sectional area of flow in channel -'chcross' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'chside' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'dis' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'rivsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'fldsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'fldfrc' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'dslr' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'frost' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'woss' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'tpups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'smups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean discharge in the last 6 hours -'dis06' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean discharge in the last 24 hours -'dis24' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; - } -#Snow depth at elevation bands -'sd_elev' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'gwus' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'gwls' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Latitude -'lat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Longitude -'lon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } -#Latitude on T grid -'tlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Longitude on T grid -'tlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Latitude on U grid -'ulat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Longitude on U grid -'ulon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Latitude on V grid -'vlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Longitude on V grid -'vlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Latitude on W grid -'wlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Longitude on W grid -'wlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Latitude on F grid -'flat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Longitude on F grid -'flon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Total column graupel -'tcolg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity -'r2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'aptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'hindex' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'ccl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'evarate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'eva' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'wdir10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'dirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'difswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'tidirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation in the last 6 hours -'eva06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - is_uerra = 0 ; - } -#Evaporation in the last 24 hours -'eva24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'tp06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Total precipitation in the last 24 hours -'tp24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Fraction of snow cover -'fscov' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 121 ; - } -#Clear air turbulence (CAT) -'cat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 29 ; - } -#Mountain wave turbulence (eddy dissipation rate) -'mwt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 28 ; - } -#Soil temperature -'sot' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'dswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'uswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'dlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'sohf' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'percr' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'sod' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'adswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'auswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'adlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'perc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'clbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'csbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'p260530' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'p260531' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'p260532' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'p260533' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'p260534' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'p260535' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'p260536' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'p260537' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'p260538' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'p260539' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Forest fire weather index -'fwinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Fine fuel moisture code -'ffmcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Duff moisture code -'dufmcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Drought code -'drtcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Initial fire spread index -'infsinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Fire buildup index -'fbupinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Fire daily severity rating -'fdsrte' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Cloudy radiance (with respect to wave number) -'p260550' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'p260551' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'p260552' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'p260553' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'p260554' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'p260555' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'p260556' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Keetch-Byram drought index -'kbdi' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#Drought factor (as defined by the Australian forest service) -'drtmrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Rate of spread (as defined by the Australian forest service) -'rosmrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Fire danger index (as defined by the Australian forest service) -'fdimrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - } -#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'scnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 16 ; - } -#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) -'buinfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 17 ; - } -#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'icnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - } -#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'ercnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 19 ; - } -#Universal thermal climate index -'utci' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Mean radiant temperature -'mrt' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Fraction of Malaria cases -'mal_cases_frac' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Malaria circumsporozoite protein ratio -'mal_prot_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Plasmodium falciparum entomological inoculation rate -'mal_innoc_rate' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Human bite rate by anopheles vectors -'mal_hbite_rate' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Malaria immunity ratio -'mal_immun_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Falciparum parasite ratio -'mal_infect_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Detectable falciparum parasite ratio (after day 10) -'mal_infect_d10_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Anopheles vector to host ratio -'mal_host_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Anopheles vector density -'mal_vect_dens' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Fraction of malarial vector reproductive habitat -'mal_hab_frac' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Population density -'pop_dens' = { - discipline = 20 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Virtual temperature -'vtmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'vptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'mwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Peak wave period -'pp1d' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Mean wave period -'mwp' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Eastward sea water velocity -'uoe' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'von' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'zos' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'t20d' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 29315 ; - } -#Average salinity in the upper 300m -'sav300' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; - typeOfFirstFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Surface runoff -'sro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Sea-ice thickness -'sithick' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre U wind component -'u100' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre V wind component -'v100' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'cape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'pv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'z' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'sp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'tcw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'vo' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'bld' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'sshf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'slhf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'d' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'u10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'v10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'t2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'d2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'lsm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'sr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'str' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'sund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'btmp' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'si10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Skin temperature -'skt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'lhtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'shtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'heatx' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'wcf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'mindpd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'snohf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'vapp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'ncpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'srweq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'snoc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'snol' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'snoag' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'absh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'ptype' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'iliqw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'clwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'icmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'rwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'snmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'maxrh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'maxah' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'asnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'pwcat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'grle' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'crain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'cfrzr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'cicep' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'csnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'cprat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'mdiv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'cpofp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'pevap' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'pevpr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'snowc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'frain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'rime' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'tcolr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tcols' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'lswp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'cwp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'twatp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'tsnowp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'tcwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'tprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'tsrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'lsprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'lssrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'tsrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'csrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'lssrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'tciwv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'rprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'sprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'fprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'iprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'uflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'vflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'ugust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'vgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'vwsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'mflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'ustm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'vstm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'cd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'fricv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'prmsl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'dist' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'alts' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'thick' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'presalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'denalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'wavh5' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'p260081' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'p260082' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'hpbl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'p260084' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'sdsgso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'nswrt' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'dswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'uswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'nswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'photar' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'nswrfcs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'dwuvr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'uviucs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'uvi' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'nlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'nlwrcs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'cice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'cwat' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'cdca' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'tmaxt' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'thunc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'cdcb' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'ceil' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'cdlyr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'cwork' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'cuefi' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'tcolw' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'tcoli' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'tcolc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'fice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'cdcimr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'suns' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'p260120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'kx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'kox' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'totalx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'sx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'hlcy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'ehlx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'lftx4' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'aerot' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'tozne' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'tcioz' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'bswid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'bref' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'brvel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'veril' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'lmaxbr' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'prec' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'acces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'aciod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'acradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'gdces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'gdiod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'gdradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'tiaccp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'tiacip' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'tiacrp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'volash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'icit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'icib' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'ici' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'turbt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'turbb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'turb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'tke' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'pblreg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'conti' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'contet' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'contt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'contb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'mxsalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'snfalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'p260163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'p260164' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Relative clear air turbulence (RCAT) -'rcat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'p260166' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'var190m0' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'ffldg' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'ffldro' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'rssc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'esct' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'swepon' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'bgrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'ssrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'cppop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'pposp' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'pop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'land' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'veg' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'watr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'evapt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'mterh' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'landu' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'gflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'mstav' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'sfexc' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'cnwat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'bmixl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'ccond' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'rsmin' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'rcs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'rct' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'rcsol' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'rcq' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'cisoilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'hflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'vsw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'vwiltm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'uplst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'uplsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'lowlsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'botlst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'soill' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'rlyrs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'smref' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'smdry' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'poros' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'liqvsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'voltso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'transo' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'voldec' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'direc' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'soilp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'vsosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'satosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'estp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'irrate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'ctoph' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'ctophqi' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'estu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'estv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'npixu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'solza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'raza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'rfl06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'rfl08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'rfl16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'rfl39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'atmdiv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'wvdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'dirpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'dirc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'spc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'wz' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'ist' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'dslm' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'al' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'ptend' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'hstdv' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'dpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'lapr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'rdsp1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'rdsp2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'rdsp3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'ta' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'presa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'absv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'absd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'vucsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'vvcsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'ucurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'vcurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'satd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'prate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'acpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'ssw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'s' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'uice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'vice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'snom' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'grad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'swrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'wmixe' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre wind gust of at least 15 m/s -'fg10g15' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#10 metre wind gust of at least 20 m/s -'fg10g20' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - } -#Convective inhibition -'cin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'orog' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Fall water equivalent -'sf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Field capacity -'cap' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wilting point -'wilt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib2/crraLocalVersion.table b/eccodes/definitions.save/grib2/crraLocalVersion.table deleted file mode 100644 index 3b7d1136..00000000 --- a/eccodes/definitions.save/grib2/crraLocalVersion.table +++ /dev/null @@ -1 +0,0 @@ -1 CRRA Copernicus regional reanalysis diff --git a/eccodes/definitions.save/grib2/crra_suiteName.table b/eccodes/definitions.save/grib2/crra_suiteName.table deleted file mode 100644 index 7fe5fd74..00000000 --- a/eccodes/definitions.save/grib2/crra_suiteName.table +++ /dev/null @@ -1,7 +0,0 @@ -# CARRA/CERRA suite names -0 unknown Unknown -1 no-ar-ce HARMONIE-AROME reanalysis by MetNorway on CARRA-East domain (CARRA project) -2 no-ar-cw HARMONIE-AROME reanalysis by MetNorway on CARRA-West domain (CARRA project) -3 no-ar-pa HARMONIE-AROME reanalysis by MetNorway on Pan-Arctic domain (CARRA project) -4 se-al-ec HARMONIE-ALADIN reanalysis by SMHI on EURO-CORDEX domain (CERRA project) -5 fr-ms-ec MESCAN-SURFEX surface reanalysis by Meteo-France on EURO-CORDEX domain (CERRA project) diff --git a/eccodes/definitions.save/grib2/d b/eccodes/definitions.save/grib2/d deleted file mode 100644 index 1747c362..00000000 --- a/eccodes/definitions.save/grib2/d +++ /dev/null @@ -1,98 +0,0 @@ -0.0.table -1.0.table -1.1.table -1.2.table -1.3.table -1.4.table -3.0.table -3.1.table -3.10.table -3.11.table -3.15.table -3.2.table -3.20.table -3.21.table -3.3.table -3.4.table -3.5.table -3.6.table -3.7.table -3.8.table -3.9.table -4.0.table -4.1.0.table -4.1.1.table -4.1.10.table -4.1.2.table -4.1.3.table -4.1.table -4.10.table -4.11.table -4.12.table -4.13.table -4.14.table -4.2.0.0.table -4.2.0.1.table -4.2.0.13.table -4.2.0.14.table -4.2.0.15.table -4.2.0.18.table -4.2.0.19.table -4.2.0.190.table -4.2.0.191.table -4.2.0.2.table -4.2.0.3.table -4.2.0.4.table -4.2.0.5.table -4.2.0.6.table -4.2.0.7.table -4.2.1.0.table -4.2.1.1.table -4.2.10.0.table -4.2.10.1.table -4.2.10.2.table -4.2.10.3.table -4.2.10.4.table -4.2.2.0.table -4.2.2.3.table -4.2.3.0.table -4.2.3.1.table -4.2.table -4.201.table -4.202.table -4.203.table -4.204.table -4.205.table -4.206.table -4.207.table -4.208.table -4.209.table -4.210.table -4.211.table -4.212.table -4.213.table -4.215.table -4.216.table -4.217.table -4.220.table -4.221.table -4.3.table -4.4.table -4.5.table -4.6.table -4.7.table -4.8.table -4.9.table -5.0.table -5.1.table -5.2.table -5.3.table -5.4.table -5.40.table -5.40000.table -5.5.table -5.6.table -5.7.table -5.8.table -5.9.table -6.0.table diff --git a/eccodes/definitions.save/grib2/dimension.0.table b/eccodes/definitions.save/grib2/dimension.0.table deleted file mode 100644 index a53ef534..00000000 --- a/eccodes/definitions.save/grib2/dimension.0.table +++ /dev/null @@ -1 +0,0 @@ -# Vegetation fraction diff --git a/eccodes/definitions.save/grib2/dimensionTableNumber.table b/eccodes/definitions.save/grib2/dimensionTableNumber.table deleted file mode 100644 index fcb28eee..00000000 --- a/eccodes/definitions.save/grib2/dimensionTableNumber.table +++ /dev/null @@ -1 +0,0 @@ -0 vegetation vegetation diff --git a/eccodes/definitions.save/grib2/dimensionType.table b/eccodes/definitions.save/grib2/dimensionType.table deleted file mode 100644 index a724b579..00000000 --- a/eccodes/definitions.save/grib2/dimensionType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 layer layer -255 missing missing diff --git a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table deleted file mode 100644 index 923227c4..00000000 --- a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.82.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Empty local section -82 82 standard operational SMHI -83 83 MATCH data (standard operational SMHI + extra MATCH keywords) -255 255 MISSING diff --git a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table deleted file mode 100644 index d0f5e6b6..00000000 --- a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.85.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Empty local section -1 1 FA section is present -255 255 MISSING diff --git a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table b/eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table deleted file mode 100644 index c4076309..00000000 --- a/eccodes/definitions.save/grib2/grib2LocalSectionNumber.98.table +++ /dev/null @@ -1,25 +0,0 @@ -0 0 Empty local section -1 1 MARS labelling -5 5 Forecast probability data -7 7 Sensitivity data -9 9 Singular vectors and ensemble perturbations -11 11 Supplementary data used by the analysis -12 12 Seasonal forecast monthly mean data for lagged systems -14 14 Brightness temperature -15 15 Seasonal forecast data -16 16 Seasonal forecast monthly mean data -18 18 Multianalysis ensemble data -20 20 4D variational increments -21 21 Sensitive area predictions -24 24 Satellite Channel Data -25 25 4DVar model errors -26 26 MARS labelling or ensemble forecast data (with hindcast support) -28 28 COSMO local area EPS -30 30 Forecasting Systems with Variable Resolution -36 36 MARS labelling for long window 4DVar system -38 38 4D variational increments for long window 4DVar system -39 39 4DVar model errors for long window 4Dvar system -41 41 The European Flood Awareness System -42 42 Lead Centre for Wave Forecast Verification -192 192 Multiple ECMWF local definitions -300 300 Multi-dimensional parameters diff --git a/eccodes/definitions.save/grib2/lcwfv_suiteName.table b/eccodes/definitions.save/grib2/lcwfv_suiteName.table deleted file mode 100644 index 95dba4c0..00000000 --- a/eccodes/definitions.save/grib2/lcwfv_suiteName.table +++ /dev/null @@ -1,22 +0,0 @@ -# LC-WFV table of suite names -0 unknown Unknown -1 ecmf Wave model run by ECMWF -2 egrr Wave model run by UKMO -3 fnmo Wave model run by FNMOC -4 cwao Wave model run by ECCC -5 kwbc Wave model run by NCEP -6 lfpw Wave model run by METFR -7 edzw Wave model run by DWD -8 ammc Wave model run by BoM -# Note: For MeteoFrance code==85 and subcentre==202 -# lops = Laboratoire D'Oceanographie Physique et Spatiale -9 lops Wave model run by LOPS -10 rjtd Wave model run by JMA -11 rksl Wave model run by KMA -12 lemm Wave model run by PRTOS -13 ekmi Wave model run by DMI -14 niwa Wave model run by NIWA -15 enmi Wave model run by METNO -16 sabm Wave model run by SHN/SM -17 nzkl Wave model run by NZMS -18 cnmc Wave model run by METEOAM diff --git a/eccodes/definitions.save/grib2/local.82.0.def b/eccodes/definitions.save/grib2/local.82.0.def deleted file mode 100644 index ac8d1784..00000000 --- a/eccodes/definitions.save/grib2/local.82.0.def +++ /dev/null @@ -1,28 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - -# -# This piece of definition is common to all SMHI definitions -# It is only accessed through "include" statement inside local.82.x.def -# - -codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; -codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; -codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; -ksec1expver[4] experimentVersionNumber = "0000" : dump; -# For now, Ensemble stuff is desactivated because it is not used yet -# instead we use a padding of 2 -#unsigned[1] perturbationNumber : dump; -#unsigned[1] numberOfForecastsInEnsemble : dump; -pad reservedNeedNotBePresent(2); -codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; - - - diff --git a/eccodes/definitions.save/grib2/local.82.82.def b/eccodes/definitions.save/grib2/local.82.82.def deleted file mode 100644 index 7cb9734c..00000000 --- a/eccodes/definitions.save/grib2/local.82.82.def +++ /dev/null @@ -1,16 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - -# base local definition -include "grib2/local.82.0.def"; - -unsigned[1] marsExperimentOffset = 0 : dump, long_type; - - diff --git a/eccodes/definitions.save/grib2/local.82.83.def b/eccodes/definitions.save/grib2/local.82.83.def deleted file mode 100644 index 2d7d37f6..00000000 --- a/eccodes/definitions.save/grib2/local.82.83.def +++ /dev/null @@ -1,22 +0,0 @@ -################################################# -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - - -# base file: contains keywords always present -include "grib2/local.82.0.def"; - -# extra keywords specific to local definition 83 (MATCH) -codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; -codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; -codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; -codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; -unsigned[2] meanSize : dump; - - diff --git a/eccodes/definitions.save/grib2/local.82.def b/eccodes/definitions.save/grib2/local.82.def deleted file mode 100644 index 2e38242c..00000000 --- a/eccodes/definitions.save/grib2/local.82.def +++ /dev/null @@ -1,22 +0,0 @@ -#local section ECMWF - -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; - -##################### -### MARS LABELING ### -##################### - -template mars_labeling "grib2/mars_labeling.82.def"; -template_nofail marsKeywords "mars/eswi/grib2.[stream:s].[type:s].def"; - -################### -### LS LABELING ### -################### - -template ls_labeling "grib2/ls_labeling.82.def"; - - -position offsetAfterLocalSection; - - diff --git a/eccodes/definitions.save/grib2/local.85.0.def b/eccodes/definitions.save/grib2/local.85.0.def deleted file mode 100644 index 8b8d747c..00000000 --- a/eccodes/definitions.save/grib2/local.85.0.def +++ /dev/null @@ -1 +0,0 @@ -label "_empty section"; diff --git a/eccodes/definitions.save/grib2/local.85.1.def b/eccodes/definitions.save/grib2/local.85.1.def deleted file mode 100644 index c85e4d3c..00000000 --- a/eccodes/definitions.save/grib2/local.85.1.def +++ /dev/null @@ -1,29 +0,0 @@ -transient defaultFaFieldName = ""; -transient defaultFaLevelName = ""; -transient defaultFaModelName = ""; - -concept faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; - -# 0 = Accumulation or time range from last event -# 1 = Accumulation or time range from the start -transient LSTCUM = 0; - -# Scaling factor for levels -transient ZLMULT = 1.; -# Base value for levels -transient ZLBASE = 0.; - -# Name in FA -ascii[16] CLNOMA : dump; -# Encoding method -unsigned[8] INGRIB : dump; -# Spectral/grid-point -unsigned[8] LLCOSP : dump; -# Number of bits used to encode each value -unsigned[8] INBITS : dump; - -# FA scaling factor -signed[8] FMULTM = 1 : dump; -signed[8] FMULTE = 0 : dump; diff --git a/eccodes/definitions.save/grib2/local.85.2.def b/eccodes/definitions.save/grib2/local.85.2.def deleted file mode 100644 index 58fe1d88..00000000 --- a/eccodes/definitions.save/grib2/local.85.2.def +++ /dev/null @@ -1,5 +0,0 @@ -# Hollow grid-point fields used for AROME coupling - -include "grib2/local.85.1.def"; - -unsigned[8] ICPLSIZE : dump; diff --git a/eccodes/definitions.save/grib2/local.85.def b/eccodes/definitions.save/grib2/local.85.def deleted file mode 100644 index c6607956..00000000 --- a/eccodes/definitions.save/grib2/local.85.def +++ /dev/null @@ -1,3 +0,0 @@ -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; -position offsetAfterLocalSection; diff --git a/eccodes/definitions.save/grib2/local.98.0.def b/eccodes/definitions.save/grib2/local.98.0.def deleted file mode 100644 index 919a1dfc..00000000 --- a/eccodes/definitions.save/grib2/local.98.0.def +++ /dev/null @@ -1,3 +0,0 @@ -label "_empty section"; - - diff --git a/eccodes/definitions.save/grib2/local.98.1.def b/eccodes/definitions.save/grib2/local.98.1.def deleted file mode 100644 index b8b49723..00000000 --- a/eccodes/definitions.save/grib2/local.98.1.def +++ /dev/null @@ -1,3 +0,0 @@ -label "_local 98.1"; - - diff --git a/eccodes/definitions.save/grib2/local.98.11.def b/eccodes/definitions.save/grib2/local.98.11.def deleted file mode 100644 index 3676a546..00000000 --- a/eccodes/definitions.save/grib2/local.98.11.def +++ /dev/null @@ -1,19 +0,0 @@ -# Local definition 11: Supplementary data used by the analysis - -unsigned[2] yearOfAnalysis = year : dump; -unsigned[1] monthOfAnalysis = month : dump; -unsigned[1] dayOfAnalysis = day : dump; -unsigned[1] hourOfAnalysis = hour : dump; -unsigned[1] minuteOfAnalysis = minute : dump; - -codetable[2] originatingCentreOfAnalysis 'common/c-1.table' = originatingCentre : dump,string_type; - -unsigned[2] subcentreOfAnalysis = subCentre : dump; - -constant secondsOfAnalysis = 0; - -meta dateOfAnalysis g2date(yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; -meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; - -alias date = dateOfAnalysis; -alias time = timeOfAnalysis; diff --git a/eccodes/definitions.save/grib2/local.98.12.def b/eccodes/definitions.save/grib2/local.98.12.def deleted file mode 100644 index 8632fd6a..00000000 --- a/eccodes/definitions.save/grib2/local.98.12.def +++ /dev/null @@ -1,14 +0,0 @@ -# Seasonal forecast monthly mean data for lagged systems - -unsigned[2] systemNumber : dump; -unsigned[2] methodNumber : dump; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; - -unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) -unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) -alias mars.date = indexingDate; -alias mars.time = indexingTime; - -pad padding_loc12_1(50); diff --git a/eccodes/definitions.save/grib2/local.98.14.def b/eccodes/definitions.save/grib2/local.98.14.def deleted file mode 100644 index 7ebc7708..00000000 --- a/eccodes/definitions.save/grib2/local.98.14.def +++ /dev/null @@ -1,4 +0,0 @@ -# Local definition 14: Brightness temperature - -unsigned[4] channelNumber : dump ; -alias mars.channel = channelNumber; diff --git a/eccodes/definitions.save/grib2/local.98.15.def b/eccodes/definitions.save/grib2/local.98.15.def deleted file mode 100644 index 69837690..00000000 --- a/eccodes/definitions.save/grib2/local.98.15.def +++ /dev/null @@ -1,9 +0,0 @@ -# Local definition 15: Seasonal forecast data - -unsigned[2] systemNumber : dump; -unsigned[2] methodNumber : dump; -alias system=systemNumber; -alias method=methodNumber; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions.save/grib2/local.98.16.def b/eccodes/definitions.save/grib2/local.98.16.def deleted file mode 100644 index c94fae1b..00000000 --- a/eccodes/definitions.save/grib2/local.98.16.def +++ /dev/null @@ -1,7 +0,0 @@ -# Local definition 16: Seasonal forecast monthly mean data - -unsigned[2] systemNumber : dump; -unsigned[2] methodNumber : dump; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; diff --git a/eccodes/definitions.save/grib2/local.98.18.def b/eccodes/definitions.save/grib2/local.98.18.def deleted file mode 100644 index 9fc5f239..00000000 --- a/eccodes/definitions.save/grib2/local.98.18.def +++ /dev/null @@ -1,17 +0,0 @@ -# Local definition 18: Multianalysis ensemble data - -codetable[1] dataOrigin "common/c-1.table" : dump; -alias mars.origin=dataOrigin; - -ascii[4] modelIdentifier : dump ; - -unsigned[1] consensusCount : dump ; - -consensus list(consensusCount) -{ - ascii[4] ccccIdentifiers : dump; -} - -alias local.dataOrigin=dataOrigin; -alias local.modelIdentifier=modelIdentifier; -alias local.consensusCount=consensusCount; diff --git a/eccodes/definitions.save/grib2/local.98.192.def b/eccodes/definitions.save/grib2/local.98.192.def deleted file mode 100644 index eacf2ccf..00000000 --- a/eccodes/definitions.save/grib2/local.98.192.def +++ /dev/null @@ -1,11 +0,0 @@ -# Local definition 192: Multiple ECMWF local definitions - -unsigned[1] numberOfLocalDefinitions = 2 : dump; - -if (numberOfLocalDefinitions == 2 ) { - unsigned[1] subLocalDefinitionNumber1 = 1 : dump; - template subDefinitions1 "grib2/local.98.[subLocalDefinitionNumber1].def"; - - unsigned[1] subLocalDefinitionNumber2 = 24 : dump; - template subDefinitions2 "grib2/local.98.[subLocalDefinitionNumber2].def"; -} diff --git a/eccodes/definitions.save/grib2/local.98.20.def b/eccodes/definitions.save/grib2/local.98.20.def deleted file mode 100644 index 8b7f9e7a..00000000 --- a/eccodes/definitions.save/grib2/local.98.20.def +++ /dev/null @@ -1,12 +0,0 @@ -# Local definition 20: 4D variational increments - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; - -unsigned[1] totalNumberOfIterations : dump; -alias totalNumber=totalNumberOfIterations; - -alias iteration = iterationNumber; - -alias local.iterationNumber =iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; diff --git a/eccodes/definitions.save/grib2/local.98.21.def b/eccodes/definitions.save/grib2/local.98.21.def deleted file mode 100644 index f46cb36a..00000000 --- a/eccodes/definitions.save/grib2/local.98.21.def +++ /dev/null @@ -1,32 +0,0 @@ -# Local definition 21: Sensitive area predictions - -unsigned[2] forecastOrSingularVectorNumber : dump; - -unsigned[2] numberOfIterations : dump; -unsigned[2] numberOfSingularVectorsComputed : dump; -unsigned[1] normAtInitialTime : dump; -unsigned[1] normAtFinalTime : dump; -unsigned[4] multiplicationFactorForLatLong : dump; -signed[4] northWestLatitudeOfVerficationArea : dump; -signed[4] northWestLongitudeOfVerficationArea : dump; -signed[4] southEastLatitudeOfVerficationArea : dump; -signed[4] southEastLongitudeOfVerficationArea : dump; -unsigned[4] accuracyMultipliedByFactor : dump; -unsigned[2] numberOfSingularVectorsEvolved : dump; - -# Ritz numbers: -signed[4] NINT_LOG10_RITZ : dump; -signed[4] NINT_RITZ_EXP : dump; - -unsigned[1] optimisationTime : dump; -alias mars.opttime = optimisationTime; - -unsigned[1] forecastLeadTime : dump; -alias mars.leadtime = forecastLeadTime; - -ascii[1] marsDomain : dump; -unsigned[2] methodNumber : dump; -unsigned[1] shapeOfVerificationArea : dump; - -# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); -alias mars.domain = marsDomain; diff --git a/eccodes/definitions.save/grib2/local.98.24.def b/eccodes/definitions.save/grib2/local.98.24.def deleted file mode 100644 index 28fac039..00000000 --- a/eccodes/definitions.save/grib2/local.98.24.def +++ /dev/null @@ -1,4 +0,0 @@ -# Local definition 24: Satellite Channel Data - -unsigned[2] channelNumber : dump, can_be_missing; -alias mars.channel = channelNumber; diff --git a/eccodes/definitions.save/grib2/local.98.25.def b/eccodes/definitions.save/grib2/local.98.25.def deleted file mode 100644 index 0719d1b6..00000000 --- a/eccodes/definitions.save/grib2/local.98.25.def +++ /dev/null @@ -1,11 +0,0 @@ -# Local definition 25: 4DVar model errors - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -alias totalNumber=numberOfComponents; -unsigned[1] modelErrorType : dump; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; diff --git a/eccodes/definitions.save/grib2/local.98.26.def b/eccodes/definitions.save/grib2/local.98.26.def deleted file mode 100644 index 49fd2121..00000000 --- a/eccodes/definitions.save/grib2/local.98.26.def +++ /dev/null @@ -1,9 +0,0 @@ -# Local definition 26: MARS labelling or ensemble forecast data (with hindcast support) - -unsigned[4] referenceDate : dump; -unsigned[4] climateDateFrom : dump; -unsigned[4] climateDateTo : dump; - -alias local.referenceDate= referenceDate; -alias local.climateDateFrom= climateDateFrom; -alias local.climateDateTo= climateDateTo; diff --git a/eccodes/definitions.save/grib2/local.98.28.def b/eccodes/definitions.save/grib2/local.98.28.def deleted file mode 100644 index eeb30d06..00000000 --- a/eccodes/definitions.save/grib2/local.98.28.def +++ /dev/null @@ -1,7 +0,0 @@ -# Local Definition 28 - COSMO local area EPS - -unsigned[4] baseDateEPS : dump; -unsigned[2] baseTimeEPS : dump; -unsigned[1] numberOfRepresentativeMember : dump; -unsigned[1] numberOfMembersInCluster : dump; -unsigned[1] totalInitialConditions : dump; diff --git a/eccodes/definitions.save/grib2/local.98.30.def b/eccodes/definitions.save/grib2/local.98.30.def deleted file mode 100644 index 47591bf0..00000000 --- a/eccodes/definitions.save/grib2/local.98.30.def +++ /dev/null @@ -1,20 +0,0 @@ -# Local definition 30: Forecasting Systems with Variable Resolution - -unsigned[1] oceanAtmosphereCoupling : dump; - -unsigned[4] legBaseDate : dump; -unsigned[2] legBaseTime : dump; -unsigned[1] legNumber : dump; -unsigned[4] referenceDate : dump; -unsigned[4] climateDateFrom : dump; -unsigned[4] climateDateTo : dump; - -alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; -alias local.legBaseDate=legBaseDate; -alias local.legBaseTime=legBaseTime; -alias local.legNumber=legNumber; -alias local.referenceDate=referenceDate; -alias local.climateDateFrom=climateDateFrom; -alias local.climateDateTo=climateDateTo; - -alias mars._leg_number = legNumber; diff --git a/eccodes/definitions.save/grib2/local.98.300.def b/eccodes/definitions.save/grib2/local.98.300.def deleted file mode 100644 index c127da40..00000000 --- a/eccodes/definitions.save/grib2/local.98.300.def +++ /dev/null @@ -1,12 +0,0 @@ -# Local definition 300: Multi-dimensional parameters - -codetable[1] dimensionType "grib2/dimensionType.table"=0; - -# The n-th dimension (out of total number of dimensions) -unsigned[2] dimensionNumber; -alias dimension=dimensionNumber; - -# Total number of dimensions -unsigned[2] totalNumberOfdimensions; - -alias extraDimensionPresent=one; diff --git a/eccodes/definitions.save/grib2/local.98.36.def b/eccodes/definitions.save/grib2/local.98.36.def deleted file mode 100644 index 83063850..00000000 --- a/eccodes/definitions.save/grib2/local.98.36.def +++ /dev/null @@ -1,7 +0,0 @@ -# Local definition 36: MARS labelling for long window 4Dvar system (inspired by local def 1) - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; - -alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions.save/grib2/local.98.38.def b/eccodes/definitions.save/grib2/local.98.38.def deleted file mode 100644 index 238dde57..00000000 --- a/eccodes/definitions.save/grib2/local.98.38.def +++ /dev/null @@ -1,18 +0,0 @@ -# Local definition 38: 4D variational increments for long window 4Dvar system (inspired by local def 20) - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; - -unsigned[1] totalNumberOfIterations : dump; -alias totalNumber=totalNumberOfIterations; - -alias iteration = iterationNumber; - -alias local.iterationNumber =iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; - -alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions.save/grib2/local.98.39.def b/eccodes/definitions.save/grib2/local.98.39.def deleted file mode 100644 index 5d0964a7..00000000 --- a/eccodes/definitions.save/grib2/local.98.39.def +++ /dev/null @@ -1,16 +0,0 @@ -# Local definition 39: 4DVar model errors for long window 4Dvar system (inspired by local def 25) - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -alias totalNumber=numberOfComponents; -unsigned[1] modelErrorType : dump; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; diff --git a/eccodes/definitions.save/grib2/local.98.41.def b/eccodes/definitions.save/grib2/local.98.41.def deleted file mode 100644 index 604dcf36..00000000 --- a/eccodes/definitions.save/grib2/local.98.41.def +++ /dev/null @@ -1,92 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Local definition 41 - The European Flood Awareness System - -# isFillup can be 0, 1 or missing -# When it is 0, it means "Water Balance" -unsigned[1] isFillup = missing() : dump, can_be_missing; -alias local.isFillup = isFillup; - -# Forecast Reference Date and Time -unsigned[2] yearOfForecast = year : dump; -unsigned[1] monthOfForecast = month : dump; -unsigned[1] dayOfForecast = day : dump; -unsigned[1] hourOfForecast = hour : dump; -unsigned[1] minuteOfForecast = minute : dump; -constant secondOfForecast = 0; -meta dateOfForecast g2date(yearOfForecast,monthOfForecast, dayOfForecast) : dump; -meta timeOfForecast time (hourOfForecast,minuteOfForecast,secondOfForecast) : dump; - -# Calculate the Julian number for the forecast date and time. -# This will be a floating point number with units of 'day' -meta julianForecastDay julian_day(dateOfForecast,hourOfForecast,minuteOfForecast,secondOfForecast): hidden; -# Calculate the difference between the forecast date and reference date -transient diffInDays = (julianForecastDay - julianDay) : hidden; # float - -# Now convert this to hours. First convert to minutes then round up -transient diffInHours = (diffInDays * 1440 + 0.5)/60 : hidden; -meta _anoffset round(diffInHours, 10): dump,long_type; -transient anoffset = _anoffset; # needed to force anoffset to be integer -alias local.anoffset = anoffset; - -# ECC-662 -unsigned[2] anoffsetFirst = missing(): dump, can_be_missing; -unsigned[2] anoffsetLast = missing(): dump, can_be_missing; -unsigned[2] anoffsetFrequency = missing(): dump, can_be_missing; - -# Boolean -transient is_efas = 1; -transient lsdate_bug = 1: hidden; # See ECC-707 - -# Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 -concept efas_post_proc { - "unknown" = { typeOfPostProcessing=0 ; } - "lisflood" = { typeOfPostProcessing=1 ; } - "lisflood_eric" = { typeOfPostProcessing=2 ; } - "lisflood_season" = { typeOfPostProcessing=3 ; } - "lisflood_merged" = { typeOfPostProcessing=4 ; } - "ericha" = { typeOfPostProcessing=51 ; } - "htessel_lisflood" = { typeOfPostProcessing=101; } - "htessel_eric" = { typeOfPostProcessing=102; } - "htessel_camaflood" = { typeOfPostProcessing=103; } - "epic" = { typeOfPostProcessing=152; } - "unknown" = { dummy = 1; } -} : hidden; - -#Domain. Missing, local or global -#codetable[1] efasDomain "grib2/tables/local/ecmf/efas_domain.table" = 255 : dump, string_type; -#unsigned[1] efas_domain = missing() : can_be_missing, dump; -#concept efasDomain(unknown) { -# "local" = { efas_domain = 0; } -# "global" = { efas_domain = 1; } -#} : hidden; - -# Model Cycle Date/Time -# This is the date of the new official implementation of the EFAS cycle. -unsigned[2] yearOfModelVersion = 0 : dump; -unsigned[1] monthOfModelVersion = 0 : dump; -unsigned[1] dayOfModelVersion = 0 : dump; -unsigned[1] hourOfModelVersion = 0 : dump; -unsigned[1] minuteOfModelVersion = 0 : dump; -constant secondOfModelVersion = 0; -meta dateOfModelVersion g2date(yearOfModelVersion, monthOfModelVersion, dayOfModelVersion) : dump; -meta timeOfModelVersion time (hourOfModelVersion, minuteOfModelVersion, secondOfModelVersion) : dump; - -# Note: the key inputOriginatingCentre is in the PDTNs 70, 71, 72 and 73 -#concept efas_forecast { -# "griddedobs" = { inputOriginatingCentre=98; marsType = "an"; } -# # "reanalysis" = { inputOriginatingCentre=98; marsType = "an"; } -# -# "hres" = { inputOriginatingCentre=98; marsType = "fc"; } # deterministic -# "ens" = { inputOriginatingCentre=98; marsType = "pf"; } # ensemble -# "ens" = { inputOriginatingCentre=98; marsType = "cf"; } # ensemble -# -# DWD rules -# "global" = { inputOriginatingCentre=78; inputProcessIdentifier = 1; } -# "lam" = { inputOriginatingCentre=78; inputProcessIdentifier = 2; } -# -# TODO: For now anything coming from cnmc (COSMO) is local area -# "lam" = { inputOriginatingCentre=80; } -# -# "unknown" = { dummy = 1; } -#} : hidden; diff --git a/eccodes/definitions.save/grib2/local.98.42.def b/eccodes/definitions.save/grib2/local.98.42.def deleted file mode 100644 index 1bb73af4..00000000 --- a/eccodes/definitions.save/grib2/local.98.42.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Definition 42 - WMO Lead Centre for Wave Forecast Verification (LC-WFV) - -codetable[2] lcwfvSuiteName "grib2/lcwfv_suiteName.table" : dump; -alias mars.origin = lcwfvSuiteName; diff --git a/eccodes/definitions.save/grib2/local.98.5.def b/eccodes/definitions.save/grib2/local.98.5.def deleted file mode 100644 index 19ab3418..00000000 --- a/eccodes/definitions.save/grib2/local.98.5.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "_empty section"; diff --git a/eccodes/definitions.save/grib2/local.98.500.def b/eccodes/definitions.save/grib2/local.98.500.def deleted file mode 100755 index 3fa593b5..00000000 --- a/eccodes/definitions.save/grib2/local.98.500.def +++ /dev/null @@ -1,53 +0,0 @@ -# mars labeling - -# Year -# (4 digits) -#unsigned[2] year ; - -# Month -#unsigned[1] month ; - -# Day -#unsigned[1] day ; - -# Hour -#unsigned[1] hour ; - -# Minute -#unsigned[1] minute ; - -# Second -#unsigned[1] second ; - -#meta dataDate g2date(year,month,day) : dump; -#alias mars.date=dataDate; - -#meta dataTime time(hour,minute,second) : dump; -#alias mars.time = dataTime; - -codetable[2] observationType "grib2/tables/local/ecmf/obstat.2.0.table"; - -codetable[2] codeType "grib2/tables/local/ecmf/obstat.3.0.table"; - -codetable[2] varno "grib2/tables/local/ecmf/obstat.varno.table"; - -codetable[2] reportType "grib2/tables/local/ecmf/obstat.reporttype.table"; - -unsigned[1] phase; - -codetable[2] platform "grib2/tables/local/ecmf/obstat.4.0.table"; - -codetable[2] instrument "grib2/tables/local/ecmf/obstat.5.0.table"; - -codetable[2] dataStream "grib2/tables/local/ecmf/obstat.6.0.table"; - -# include "grib2/template.4.horizontal.def" - -codetable[2] observationDiagnostic "grib2/tables/local/ecmf/obstat.9.0.table"; - -codetable[2] dataSelection "grib2/tables/local/ecmf/obstat.10.0.table"; - -unsigned[2] scanPosition; - -codetable[1] mask "grib2/tables/local/ecmf/obstat.8.0.table"; - diff --git a/eccodes/definitions.save/grib2/local.98.7.def b/eccodes/definitions.save/grib2/local.98.7.def deleted file mode 100644 index 66cf6919..00000000 --- a/eccodes/definitions.save/grib2/local.98.7.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; -unsigned[1] sensitiveAreaDomain : dump; -unsigned[1] diagnosticNumber : dump; - -alias local.iterationNumber=iterationNumber; -alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; -alias local.sensitiveAreaDomain=sensitiveAreaDomain; -alias local.diagnosticNumber=diagnosticNumber; - -alias iteration = iterationNumber; -alias diagnostic = diagnosticNumber; diff --git a/eccodes/definitions.save/grib2/local.98.9.def b/eccodes/definitions.save/grib2/local.98.9.def deleted file mode 100644 index 7f9f0c98..00000000 --- a/eccodes/definitions.save/grib2/local.98.9.def +++ /dev/null @@ -1,38 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned[2] forecastOrSingularVectorNumber : dump; - -constant perturbedType = 60; - -if(type != perturbedType) -{ - unsigned[2] numberOfIterations : dump; - unsigned[2] numberOfSingularVectorsComputed : dump; - unsigned[1] normAtInitialTime : dump ; - unsigned[1] normAtFinalTime : dump ; - unsigned[4] multiplicationFactorForLatLong : dump; - signed[4] northWestLatitudeOfLPOArea : dump ; - signed[4] northWestLongitudeOfLPOArea : dump; - signed[4] southEastLatitudeOfLPOArea : dump; - signed[4] southEastLongitudeOfLPOArea : dump; - unsigned[4] accuracyMultipliedByFactor : dump; - unsigned[2] numberOfSingularVectorsEvolved : dump; - # Ritz numbers: - signed[4] NINT_LOG10_RITZ : dump ; - signed[4] NINT_RITZ_EXP : dump ; - - alias local.numberOfIterations= numberOfIterations; - alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; - alias local.normAtInitialTime= normAtInitialTime ; - alias local.normAtFinalTime= normAtFinalTime ; - alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; - alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; - alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; - alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; - alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; - alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; - alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; -# Ritz numbers: - alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; - alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; -} diff --git a/eccodes/definitions.save/grib2/local.98.def b/eccodes/definitions.save/grib2/local.98.def deleted file mode 100644 index 2662e327..00000000 --- a/eccodes/definitions.save/grib2/local.98.def +++ /dev/null @@ -1,33 +0,0 @@ -#local section ECMWF - -template mars_labeling "grib2/mars_labeling.def"; -transient productDefinitionTemplateNumberInternal=-1; - -meta localDefinitionNumber local_definition(grib2LocalSectionNumber, - productDefinitionTemplateNumber, - productDefinitionTemplateNumberInternal, - type, - stream, - class, - eps, - stepType, - derivedForecast); - -meta eps g2_eps(productDefinitionTemplateNumber, - type, - stream, - stepType, - derivedForecast); - -template_nofail localSection "grib2/local.98.[grib2LocalSectionNumber:l].def"; -position offsetAfterLocalSection; -transient addExtraLocalSection=0; -transient deleteExtraLocalSection=0; -#transient extraLocalSectionPresent=section2Length - offsetAfterLocalSection + offsetSection2 ; -meta extraLocalSectionPresent evaluate (section2Length - offsetAfterLocalSection + offsetSection2 > 0 ); -if ( ( extraLocalSectionPresent || addExtraLocalSection ) && ! deleteExtraLocalSection) { - # extra local section present - codetable[2] extraLocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; - template localSection "grib2/local.98.[extraLocalSectionNumber:l].def"; -} - diff --git a/eccodes/definitions.save/grib2/local.crra.1.def b/eccodes/definitions.save/grib2/local.crra.1.def deleted file mode 100644 index 27bbcea3..00000000 --- a/eccodes/definitions.save/grib2/local.crra.1.def +++ /dev/null @@ -1,4 +0,0 @@ -# CARRA/CERRA local - -codetable[2] suiteName "grib2/crra_suiteName.table" : dump; -alias crraSuiteID = suiteName; diff --git a/eccodes/definitions.save/grib2/local.tigge.1.def b/eccodes/definitions.save/grib2/local.tigge.1.def deleted file mode 100644 index 65b23701..00000000 --- a/eccodes/definitions.save/grib2/local.tigge.1.def +++ /dev/null @@ -1,5 +0,0 @@ -# tigge LAM labeling - -codetable[2] suiteName "grib2/tigge_suiteName.table" : dump; -alias tiggeSuiteID = suiteName; - diff --git a/eccodes/definitions.save/grib2/local/1098/2.1.table b/eccodes/definitions.save/grib2/local/1098/2.1.table deleted file mode 100644 index d8d1c0d0..00000000 --- a/eccodes/definitions.save/grib2/local/1098/2.1.table +++ /dev/null @@ -1 +0,0 @@ -0 model Model info diff --git a/eccodes/definitions.save/grib2/local/1098/centres.table b/eccodes/definitions.save/grib2/local/1098/centres.table deleted file mode 100644 index 2f0d02a3..00000000 --- a/eccodes/definitions.save/grib2/local/1098/centres.table +++ /dev/null @@ -1,12 +0,0 @@ -0 eggr UK Met Office - UK -1 aemet AEMET- Spain HIRLAM -2 arpasim ARPA-SIM - Italy COSMO -3 metno Met.NO -4 zamg ZAMG / Austria -5 dwd DWD - Germany SRNWP -6 dnmi DNMI/Univ Oslo - Norway HIRLAM ALADIN -7 meteofrance Meteo-France / France -8 dmi DMI -9 hungary Hungary -10 czech Czech Republic -11 croatia Croatia diff --git a/eccodes/definitions.save/grib2/local/1098/models.table b/eccodes/definitions.save/grib2/local/1098/models.table deleted file mode 100644 index 70e03f70..00000000 --- a/eccodes/definitions.save/grib2/local/1098/models.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 MOGREPS -1 1 SREPS -2 2 SRNWP PEPS -3 3 COSMO-LEPS -4 4 NORLAMEPS -5 5 ALADIN LAEF -6 6 COSMO DE EPS -7 7 COSMO-SREPS -8 8 GLAMEPS -9 9 PEARCE -10 10 DMI - HIRLAM -11 11 OMSZ ALADIN EPS - diff --git a/eccodes/definitions.save/grib2/local/1098/template.2.0.def b/eccodes/definitions.save/grib2/local/1098/template.2.0.def deleted file mode 100644 index 68e64f33..00000000 --- a/eccodes/definitions.save/grib2/local/1098/template.2.0.def +++ /dev/null @@ -1,19 +0,0 @@ -codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; -codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; -concept tiggeLAMName { - "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} - "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} - "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} - "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} - "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} - "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} - "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} - "COSMO-SREPS-BO-EU" = {tiggeCentre=2;tiggeModel=7;} - "GLAMEPS" = {tiggeCentre=6;tiggeModel=8;} - "PEARCE" = {tiggeCentre=7;tiggeModel=9;} - "DMI- HIRLAM" = {tiggeCentre=8;tiggeModel=10;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=9;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} -} - diff --git a/eccodes/definitions.save/grib2/local/2.0.table b/eccodes/definitions.save/grib2/local/2.0.table deleted file mode 100644 index 471911b5..00000000 --- a/eccodes/definitions.save/grib2/local/2.0.table +++ /dev/null @@ -1,96 +0,0 @@ -# Code table 2.0: Identification of centres for local section 2 -0 0 Absent -1 ammc Melbourne (WMC) -2 2 Melbourne (WMC) -4 rums Moscow (WMC) -5 5 Moscow (WMC) -7 kwbc US National Weather Service - NCEP (WMC) -8 8 US National Weather Service - NWSTG (WMC) -9 9 US National Weather Service - Other (WMC) -10 10 Cairo (RSMC/RAFC) -12 12 Dakar (RSMC/RAFC) -14 14 Nairobi (RSMC/RAFC) -16 16 Atananarivo (RSMC) -18 18 Tunis-Casablanca (RSMC) -20 20 Las Palmas (RAFC) -21 21 Algiers (RSMC) -22 22 Lagos (RSMC) -24 fapr Pretoria (RSMC) -26 26 Khabarovsk (RSMC) -28 28 New Delhi (RSMC/RAFC) -30 30 Novosibirsk (RSMC) -32 32 Tashkent (RSMC) -33 33 Jeddah (RSMC) -34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) -36 36 Bankok -37 37 Ulan Bator -38 babj Beijing (RSMC) -40 rksl Seoul -41 sabm Buenos Aires (RSMC/RAFC) -43 43 Brasilia (RSMC/RAFC) -45 45 Santiago -46 sbsj Brasilian Space Agency - INPE -51 51 Miami (RSMC/RAFC) -52 52 National Hurricane Center, Miami -53 53 Canadian Meteorological Service - Montreal (RSMC) -54 cwao Canadian Meteorological Service - Montreal (RSMC) -55 55 San Francisco -57 57 U.S. Air Force - Global Weather Center -58 fnmo US Navy - Fleet Numerical Oceanography Center -59 59 NOAA Forecast Systems Lab, Boulder CO -60 60 National Center for Atmospheric Research (NCAR), Boulder, CO -64 64 Honolulu -65 65 Darwin (RSMC) -67 67 Melbourne (RSMC) -69 nzkl Wellington (RSMC/RAFC) -74 egrr U.K. Met Office - Exeter -76 76 Moscow (RSMC/RAFC) -78 edzw Offenbach (RSMC) -80 cnmc Rome (RSMC) -82 eswi Norrkoping -84 lfpw French Weather Service - Toulouse -85 lfpw French Weather Service - Toulouse -86 86 Helsinki -87 87 Belgrade -88 enmi Oslo -89 89 Prague -90 90 Episkopi -91 91 Ankara -92 92 Frankfurt/Main (RAFC) -93 93 London (WAFC) -94 ekmi Copenhagen -95 95 Rota -96 96 Athens -97 97 European Space Agency (ESA) -98 ecmf European Centre for Medium-Range Weather Forecasts -99 99 DeBilt, Netherlands -#100 to 109 Reserved for centres in Region I which are not in the list above -110 110 Hong-Kong -#111 to 133 Reserved for centres in Region II which are not in the list above -#134 to 153 Reserved for centres in Region I which are not listed above -#154 to 159 Reserved for centres in Region III which are not in the list above -160 160 US NOAA/NESDIS -# 161 to 185 Reserved for centres in Region IV which are not in the list above -# 186 to 198 Reserved for centres in Region I which are not listed above -# 199 to 209 Reserved for centres in Region V which are not in the list above -195 wiix Indonesia (NMC) -204 204 National Institute of Water and Atmospheric Research (NIWA - New Zealand) -210 210 Frascati (ESA/ESRIN) -211 211 Lannion -212 212 Lisboa -213 213 Reykjavik -214 lemm INM -215 lssw Zurich -216 216 Service ARGOS Toulouse -218 habp Budapest -224 lowm Austria -227 ebum Belgium (NMC) -233 eidb Dublin -235 ingv INGV -239 crfc CERFAX -246 ifmk IfM-Kiel -247 hadc Hadley Centre -250 cosmo COnsortium for Small scale MOdelling (COSMO) -251 251 Meteorological Cooperation on Operational NWP (MetCoOp) -254 eums EUMETSAT Operation Centre -1098 tigge TIGGE CENTRES diff --git a/eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def deleted file mode 100644 index e7a85ed1..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/cnmc/modelName.def +++ /dev/null @@ -1,7 +0,0 @@ -# modelName: Contribution from Daniel Lee @ DWD - -# defintions for Roma (COSMO LEPS) -'cosmo-leps' = { - subCentre=98; - grib2LocalSectionNumber=28; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/cnmc/name.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/name.def deleted file mode 100644 index 89dafe5d..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/cnmc/name.def +++ /dev/null @@ -1,3073 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'Sea ice area fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Sea ice area fraction -'Sea ice area fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - is_s2s = 1 ; - typeOfFirstFixedSurface = 103 ; - subCentre = 102 ; - } -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 101 ; - } -#Pressure Tendency (S) -'Pressure Tendency (S)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (S) -'Geopotential (S)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (full lev) -'Geopotential (full lev)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Geopotential -'Geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geometric Height of the earths surface above sea level -'Geometric Height of the earths surface above sea level' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'Geometric Height of the layer limits above sea level(NN)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature (G) -'Temperature (G)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Climat. temperature, 2m Temperature -'Climat. temperature, 2m Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 9 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Temperature -'Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Max 2m Temperature (i) -'Max 2m Temperature (i)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Min 2m Temperature (i) -'Min 2m Temperature (i)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Dew Point Temperature (AV) -'2m Dew Point Temperature (AV)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind Direction (DD_10M) -'Wind Direction (DD_10M)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Wind Direction (DD) -'Wind Direction (DD)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind speed (SP_10M) -'Wind speed (SP_10M)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind speed (SP) -'Wind speed (SP)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#U component of wind -'U component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#U component of wind -'U component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'V component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#V component of wind -'V component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Vertical Velocity (Geometric) (w) -'Vertical Velocity (Geometric) (w)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Specific Humidity (S) -'Specific Humidity (S)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Specific Humidity (2m) -'Specific Humidity (2m)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Specific Humidity -'Specific Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Relative Humidity -'2m Relative Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Relative Humidity -'Relative Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation (s) -'Evaporation (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Column-Integrated Cloud Ice -'Total Column-Integrated Cloud Ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Precipitation rate (S) -'Total Precipitation rate (S)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Large-Scale Precipitation rate -'Large-Scale Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective Precipitation rate -'Convective Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Depth -'Snow Depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Cloud Cover -'Convective Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - } -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - } -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'Convective Snowfall rate water equivalent (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Large-Scale snowfall rate water equivalent (s) -'Large-Scale snowfall rate water equivalent (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'Soil Temperature ( 36 cm depth, vv=0h)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 36 ; - } -#Soil Temperature (41 cm depth) -'Soil Temperature (41 cm depth)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 41 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 9 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 190 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'Column-integrated Soil Moisture (1) 0 -10 cm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'Column-integrated Soil Moisture (2) 10-100cm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant cover -'Plant cover' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Water Runoff (10-100) -'Water Runoff (10-100)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Water Runoff (10-190) -'Water Runoff (10-190)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 190 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Water Runoff (s) -'Water Runoff (s)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Thickness -'sea Ice Thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'Direction of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Direction of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Net short wave radiation flux (m) (at the surface) -'Net short wave radiation flux (m) (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Net short wave radiation flux (m) (on the model top) -'Net short wave radiation flux (m) (on the model top)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'Net long wave radiation flux (m) (on the model top)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - } -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation (m) (at the surface) -'Photosynthetically active radiation (m) (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } -#Solar radiation heating rate -'Solar radiation heating rate' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Thermal radiation heating rate -'Thermal radiation heating rate' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Latent heat flux from bare soil -'Latent heat flux from bare soil' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat flux from plants -'Latent heat flux from plants' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Sunshine -'Sunshine' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - } -#Stomatal Resistance -'Stomatal Resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Non-Convective Cloud Cover, grid scale -'Non-Convective Cloud Cover, grid scale' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Cloud Mixing Ratio -'Cloud Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Cloud Ice Mixing Ratio -'Cloud Ice Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Rain mixing ratio -'Rain mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Snow mixing ratio -'Snow mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Grauple -'Grauple' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total column integrated grauple -'Total column integrated grauple' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } -#Total Column integrated water (all components incl. precipitation) -'Total Column integrated water (all components incl. precipitation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - typeOfFirstFixedSurface = 1 ; - } -#vertical integral of divergence of total water content (s) -'vertical integral of divergence of total water content (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#subgrid scale cloud water -'subgrid scale cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#subgridscale cloud ice -'subgridscale cloud ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#cloud base above msl, shallow convection -'cloud base above msl, shallow convection' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 2 ; - } -#cloud top above msl, shallow convection -'cloud top above msl, shallow convection' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 3 ; - } -#specific cloud water content, convective cloud -'specific cloud water content, convective cloud' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Height of Convective Cloud Base (i) -'Height of Convective Cloud Base (i)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 2 ; - } -#Height of Convective Cloud Top (i) -'Height of Convective Cloud Top (i)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'base index (vertical level) of main convective cloud (i)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'top index (vertical level) of main convective cloud (i)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to convection -'Temperature tendency due to convection' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Specific humitiy tendency due to convection -'Specific humitiy tendency due to convection' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#zonal wind tendency due to convection -'zonal wind tendency due to convection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to convection -'meridional wind tendency due to convection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#height of top of dry convection -'height of top of dry convection' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'height of 0 degree celsius level code 0,3,6 ?' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 4 ; - } -#Height of snow fall limit -'Height of snow fall limit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - } -#Tendency of specific cloud liquid water content due to conversion -'Tendency of specific cloud liquid water content due to conversion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud ice content due to convection -'tendency of specific cloud ice content due to convection' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'Specific content of precipitation particles (needed for water loadin)g' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Large scale rain rate -'Large scale rain rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale rain rate (s) -'Large scale rain rate (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective rain rate -'Convective rain rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective rain rate (s) -'Convective rain rate (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#rain amount, grid-scale plus convective -'rain amount, grid-scale plus convective' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#snow amount, grid-scale plus convective -'snow amount, grid-scale plus convective' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to grid scale precipation -'Temperature tendency due to grid scale precipation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to grid scale precipitation -'Specific humitiy tendency due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'tendency of specific cloud liquid water content due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'tendency of specific cloud ice content due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - } -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow density -'Snow density' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure perturbation -'Pressure perturbation' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#supercell detection index 1 (rot. up+down drafts) -'supercell detection index 1 (rot. up+down drafts)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'supercell detection index 2 (only rot. up drafts)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy, most unstable -'Convective Available Potential Energy, most unstable' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Inhibition, most unstable -'Convective Inhibition, most unstable' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Available Potential Energy, mean layer -'Convective Available Potential Energy, mean layer' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective Inhibition, mean layer -'Convective Inhibition, mean layer' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective turbulent kinetic enery -'Convective turbulent kinetic enery' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } -#Tendency of turbulent kinetic energy -'Tendency of turbulent kinetic energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Kinetic Energy -'Kinetic Energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusioncoefficient for momentum -'Turbulent diffusioncoefficient for momentum' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'Turbulent diffusion coefficient for heat (and moisture)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Turbulent transfer coefficient for impulse -'Turbulent transfer coefficient for impulse' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'Turbulent transfer coefficient for heat (and Moisture)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - typeOfFirstFixedSurface = 1 ; - } -#mixed layer depth -'mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#maximum Wind 10m -'maximum Wind 10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Air concentration of Ruthenium 103 -'Air concentration of Ruthenium 103' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } -#Soil Temperature (multilayers) -'Soil Temperature (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Column-integrated Soil Moisture (multilayers) -'Column-integrated Soil Moisture (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#soil ice content (multilayers) -'soil ice content (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant Canopy Surface Water -'Plant Canopy Surface Water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow temperature (top of snow) -'Snow temperature (top of snow)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } -#Minimal Stomatal Resistance -'Minimal Stomatal Resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Temperature -'sea Ice Temperature' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Base reflectivity (cmax) -'Base reflectivity (cmax)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - } -#unknown -'unknown' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Effective transmissivity of solar radiation -'Effective transmissivity of solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#sum of contributions to evaporation -'sum of contributions to evaporation' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#total transpiration from all soil layers -'total transpiration from all soil layers' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#total forcing at soil surface -'total forcing at soil surface' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#residuum of soil moisture -'residuum of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Massflux at convective cloud base -'Massflux at convective cloud base' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy -'Convective Available Potential Energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#moisture convergence for Kuo-type closure -'moisture convergence for Kuo-type closure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } -#total wave direction -'total wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#wind sea mean period -'wind sea mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 101 ; - } -#wind sea peak period -'wind sea peak period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#swell mean period -'swell mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 101 ; - } -#swell peak period -'swell peak period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#total wave peak period -'total wave peak period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#total wave mean period -'total wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#total Tm1 period -'total Tm1 period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#total Tm2 period -'total Tm2 period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#total directional spread -'total directional spread' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#analysis error(standard deviation), geopotential(gpm) -'analysis error(standard deviation), geopotential(gpm)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - typeOfStatisticalProcessing = 6 ; - } -#analysis error(standard deviation), u-comp. of wind -'analysis error(standard deviation), u-comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#analysis error(standard deviation), v-comp. of wind -'analysis error(standard deviation), v-comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#zonal wind tendency due to subgrid scale oro. -'zonal wind tendency due to subgrid scale oro.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to subgrid scale oro. -'meridional wind tendency due to subgrid scale oro.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 1 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - typeOfFirstFixedSurface = 1 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - typeOfFirstFixedSurface = 1 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 1 ; - } -#surface emissivity -'surface emissivity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Type -'Soil Type' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Leaf area index -'Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - } -#root depth of vegetation -'root depth of vegetation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - typeOfFirstFixedSurface = 1 ; - } -#height of ozone maximum (climatological) -'height of ozone maximum (climatological)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#vertically integrated ozone content (climatological) -'vertically integrated ozone content (climatological)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the vegetation phase -'Plant covering degree in the vegetation phase' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the quiescent phas -'Plant covering degree in the quiescent phas' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - } -#Max Leaf area index -'Max Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Min Leaf area index -'Min Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Orographie + Land-Meer-Verteilung -'Orographie + Land-Meer-Verteilung' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#variance of soil moisture content (0-10) -'variance of soil moisture content (0-10)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#variance of soil moisture content (10-100) -'variance of soil moisture content (10-100)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#evergreen forest -'evergreen forest' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#deciduous forest -'deciduous forest' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - typeOfFirstFixedSurface = 1 ; - } -#normalized differential vegetation index -'normalized differential vegetation index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } -#normalized differential vegetation index (NDVI) -'normalized differential vegetation index (NDVI)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Total sulfate aerosol -'Total sulfate aerosol' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - } -#Total sulfate aerosol (12M) -'Total sulfate aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } -#Total soil dust aerosol -'Total soil dust aerosol' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - } -#Total soil dust aerosol (12M) -'Total soil dust aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } -#Organic aerosol -'Organic aerosol' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - } -#Organic aerosol (12M) -'Organic aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } -#Black carbon aerosol -'Black carbon aerosol' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - } -#Black carbon aerosol (12M) -'Black carbon aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 0 ; - } -#Sea salt aerosol -'Sea salt aerosol' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - } -#Sea salt aerosol (12M) -'Sea salt aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 0 ; - } -#tendency of specific humidity -'tendency of specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#water vapor flux -'water vapor flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } -#Coriolis parameter -'Coriolis parameter' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical latitude -'geographical latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical longitude -'geographical longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Friction velocity -'Friction velocity' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Delay of the GPS signal trough the (total) atm. -'Delay of the GPS signal trough the (total) atm.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'Delay of the GPS signal trough wet atmos.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'Delay of the GPS signal trough dry atmos.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Ozone Mixing Ratio -'Ozone Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'Air concentration of Ruthenium 103 (Ru103- concentration)' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - } -#Ru103-dry deposition -'Ru103-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 193 ; - } -#Ru103-wet deposition -'Ru103-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 194 ; - } -#Air concentration of Strontium 90 -'Air concentration of Strontium 90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 195 ; - } -#Sr90-dry deposition -'Sr90-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 196 ; - } -#Sr90-wet deposition -'Sr90-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 197 ; - } -#I131-concentration -'I131-concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 198 ; - } -#I131-dry deposition -'I131-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 199 ; - } -#I131-wet deposition -'I131-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 200 ; - } -#Cs137-concentration -'Cs137-concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 201 ; - } -#Cs137-dry deposition -'Cs137-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 202 ; - } -#Cs137-wet deposition -'Cs137-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 203 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'Air concentration of Tellurium 132 (Te132-concentration)' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 204 ; - } -#Te132-dry deposition -'Te132-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 205 ; - } -#Te132-wet deposition -'Te132-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 206 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'Air concentration of Zirconium 95 (Zr95-concentration)' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 207 ; - } -#Zr95-dry deposition -'Zr95-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 208 ; - } -#Zr95-wet deposition -'Zr95-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 209 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'Air concentration of Krypton 85 (Kr85-concentration)' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 210 ; - } -#Kr85-dry deposition -'Kr85-dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 211 ; - } -#Kr85-wet deposition -'Kr85-wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 212 ; - } -#TRACER - concentration -'TRACER - concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 213 ; - } -#TRACER - dry deposition -'TRACER - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 214 ; - } -#TRACER - wet deposition -'TRACER - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 215 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'Air concentration of Xenon 133 (Xe133 - concentration)' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 216 ; - } -#Xe133 - dry deposition -'Xe133 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 217 ; - } -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 218 ; - } -#I131g - concentration -'I131g - concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 219 ; - } -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 220 ; - } -#I131g - wet deposition -'I131g - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 221 ; - } -#I131o - concentration -'I131o - concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 222 ; - } -#I131o - dry deposition -'I131o - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 223 ; - } -#I131o - wet deposition -'I131o - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 224 ; - } -#Air concentration of Barium 40 -'Air concentration of Barium 40' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 225 ; - } -#Ba140 - dry deposition -'Ba140 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 226 ; - } -#Ba140 - wet deposition -'Ba140 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 227 ; - } -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'UV_Index_Maximum_W UV_Index clouded (W), daily maximum' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#wind shear -'wind shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - } -#storm relative helicity -'storm relative helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#absolute vorticity advection -'absolute vorticity advection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 1 ; - } -#weather interpretation (WMO) -'weather interpretation (WMO)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 1 ; - } -#Isentrope potentielle Vorticity -'Isentrope potentielle Vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 107 ; - } -#Druck einer isentropen Flaeche -'Druck einer isentropen Flaeche' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#KO index -'KO index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Aequivalentpotentielle Temperatur -'Aequivalentpotentielle Temperatur' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Ceiling -'Ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Icing Grade (1=LGT,2=MOD,3=SEV)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#modified cloud depth for media -'modified cloud depth for media' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } -#modified cloud cover for media -'modified cloud cover for media' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'Monthly Mean of RMS of difference FG-AN of geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'Monthly Mean of RMS of difference IA-AN of geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'Monthly Mean of RMS of difference FG-AN of relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'Monthly Mean of RMS of difference IA-AN of relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'Monthly Mean of RMS of difference FG-AN of temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'Monthly Mean of RMS of difference IA-AN of temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'Monthly Mean of RMS of difference FG-AN of kinetic energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'Monthly Mean of RMS of difference IA-AN of kinetic energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - } -#smoothed forecast, temperature -'smoothed forecast, temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, maximum temp. -'smoothed forecast, maximum temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, minimum temp. -'smoothed forecast, minimum temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, dew point temp. -'smoothed forecast, dew point temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, u comp. of wind -'smoothed forecast, u comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#smoothed forecast, v comp. of wind -'smoothed forecast, v comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, total precipitation rate -'smoothed forecast, total precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; - } -#smoothed forecast, total cloud cover -'smoothed forecast, total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover low -'smoothed forecast, cloud cover low' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaledValueOfFirstFixedSurface = 800 ; - } -#smoothed forecast, cloud cover medium -'smoothed forecast, cloud cover medium' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } -#smoothed forecast, cloud cover high -'smoothed forecast, cloud cover high' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 400 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'smoothed forecast, large-scale snowfall rate w.e.' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#smoothed forecast, soil temperature -'smoothed forecast, soil temperature' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 106 ; - } -#smoothed forecast, wind speed (gust) -'smoothed forecast, wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#calibrated forecast, total precipitation rate -'calibrated forecast, total precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'calibrated forecast, large-scale snowfall rate w.e.' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; - } -#calibrated forecast, wind speed (gust) -'calibrated forecast, wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - scaledValueOfCentralWaveNumber = 2000000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 625000 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 1666666 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 1250000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 83333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def deleted file mode 100644 index 2e2b5181..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/cnmc/paramId.def +++ /dev/null @@ -1,3073 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Sea ice area fraction -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - is_s2s = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - } -#Pressure (S) (not reduced) -'500000' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure -'500001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure Reduced to MSL -'500002' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 101 ; - } -#Pressure Tendency (S) -'500003' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (S) -'500004' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (full lev) -'500005' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Geopotential -'500006' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geometric Height of the earths surface above sea level -'500007' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'500008' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total Column Integrated Ozone -'500009' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature (G) -'500010' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Climat. temperature, 2m Temperature -'500013' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 0 ; - typeOfGeneratingProcess = 9 ; - } -#Temperature -'500014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Max 2m Temperature (i) -'500015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#Min 2m Temperature (i) -'500016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - } -#2m Dew Point Temperature (AV) -'500018' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 0 ; - } -#Radar spectra (1) -'500019' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Wave spectra (1) -'500020' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'500021' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'500022' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind Direction (DD_10M) -'500023' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Wind Direction (DD) -'500024' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Wind speed (SP_10M) -'500025' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Wind speed (SP) -'500026' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#U component of wind -'500027' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#U component of wind -'500028' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'500029' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#V component of wind -'500030' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'500031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Vertical Velocity (Geometric) (w) -'500032' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Specific Humidity (S) -'500033' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Specific Humidity (2m) -'500034' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Specific Humidity -'500035' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Relative Humidity -'500036' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Relative Humidity -'500037' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total column integrated water vapour -'500038' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation (s) -'500039' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Column-Integrated Cloud Ice -'500040' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Precipitation rate (S) -'500041' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Large-Scale Precipitation rate -'500042' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective Precipitation rate -'500043' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth water equivalent -'500044' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Depth -'500045' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'500046' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Cloud Cover -'500047' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Cover (800 hPa - Soil) -'500048' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 100 ; - } -#Cloud Cover (400 - 800 hPa) -'500049' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Cloud Cover (0 - 400 hPa) -'500050' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - } -#Total Column-Integrated Cloud Water -'500051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'500052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Large-Scale snowfall rate water equivalent (s) -'500053' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Land Cover (1=land, 0=sea) -'500054' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface Roughness length Surface Roughness -'500055' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'500056' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'500057' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'500058' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 36 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Soil Temperature (41 cm depth) -'500059' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaledValueOfFirstFixedSurface = 41 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil Temperature -'500060' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 9 ; - } -#Soil Temperature -'500061' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Column-integrated Soil Moisture -'500062' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 190 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'500063' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'500064' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant cover -'500065' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Water Runoff (10-100) -'500066' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 100 ; - } -#Water Runoff (10-190) -'500067' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 190 ; - } -#Water Runoff (s) -'500068' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'500069' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Thickness -'500070' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Significant height of combined wind waves and swell -'500071' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'500072' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'500073' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'500074' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'500075' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'500076' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'500077' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Net short wave radiation flux (m) (at the surface) -'500078' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'500079' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Net long wave radiation flux (m) (at the surface) -'500080' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'500081' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Net short wave radiation flux (m) (on the model top) -'500082' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'500083' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'500084' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'500085' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - } -#Latent Heat Net Flux (m) -'500086' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Sensible Heat Net Flux (m) -'500087' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Momentum Flux, U-Component (m) -'500088' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Momentum Flux, V-Component (m) -'500089' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation (m) (at the surface) -'500090' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation -'500091' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } -#Solar radiation heating rate -'500092' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Thermal radiation heating rate -'500093' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Latent heat flux from bare soil -'500094' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Latent heat flux from plants -'500095' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - typeOfStatisticalProcessing = 0 ; - } -#Sunshine -'500096' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - } -#Stomatal Resistance -'500097' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Cloud cover -'500098' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Non-Convective Cloud Cover, grid scale -'500099' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Mixing Ratio -'500100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Ice Mixing Ratio -'500101' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Rain mixing ratio -'500102' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Snow mixing ratio -'500103' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total column integrated rain -'500104' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'500105' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Grauple -'500106' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total column integrated grauple -'500107' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } -#Total Column integrated water (all components incl. precipitation) -'500108' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - typeOfFirstFixedSurface = 1 ; - } -#vertical integral of divergence of total water content (s) -'500109' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#subgrid scale cloud water -'500110' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#subgridscale cloud ice -'500111' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#cloud base above msl, shallow convection -'500115' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 2 ; - } -#cloud top above msl, shallow convection -'500116' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 3 ; - } -#specific cloud water content, convective cloud -'500117' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Height of Convective Cloud Base (i) -'500118' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 2 ; - } -#Height of Convective Cloud Top (i) -'500119' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'500120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'500121' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to convection -'500122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to convection -'500123' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#zonal wind tendency due to convection -'500124' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to convection -'500125' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#height of top of dry convection -'500126' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'500127' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 4 ; - } -#Height of snow fall limit -'500128' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - } -#Tendency of specific cloud liquid water content due to conversion -'500129' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud ice content due to convection -'500130' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'500131' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Large scale rain rate -'500132' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale snowfall rate water equivalent -'500133' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale rain rate (s) -'500134' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective rain rate -'500135' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective snowfall rate water equivalent -'500136' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective rain rate (s) -'500137' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#rain amount, grid-scale plus convective -'500138' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#snow amount, grid-scale plus convective -'500139' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature tendency due to grid scale precipation -'500140' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to grid scale precipitation -'500141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'500142' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'500143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'500144' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Graupel (snow pellets) precipitation rate -'500145' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - } -#Graupel (snow pellets) precipitation rate -'500146' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow density -'500147' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure perturbation -'500148' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#supercell detection index 1 (rot. up+down drafts) -'500149' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'500150' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy, most unstable -'500151' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Inhibition, most unstable -'500152' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Available Potential Energy, mean layer -'500153' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective Inhibition, mean layer -'500154' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective turbulent kinetic enery -'500155' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } -#Tendency of turbulent kinetic energy -'500156' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Kinetic Energy -'500157' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent Kinetic Energy -'500158' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusioncoefficient for momentum -'500159' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'500160' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent transfer coefficient for impulse -'500161' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'500162' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - typeOfFirstFixedSurface = 1 ; - } -#mixed layer depth -'500163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#maximum Wind 10m -'500164' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Air concentration of Ruthenium 103 -'500165' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } -#Soil Temperature (multilayers) -'500166' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (multilayers) -'500167' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#soil ice content (multilayers) -'500168' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant Canopy Surface Water -'500169' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow temperature (top of snow) -'500170' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } -#Minimal Stomatal Resistance -'500171' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Temperature -'500172' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'500173' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'500174' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Base reflectivity (cmax) -'500175' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - } -#unknown -'500176' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Effective transmissivity of solar radiation -'500177' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#sum of contributions to evaporation -'500178' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#total transpiration from all soil layers -'500179' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#total forcing at soil surface -'500180' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#residuum of soil moisture -'500181' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Massflux at convective cloud base -'500182' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy -'500183' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#moisture convergence for Kuo-type closure -'500184' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } -#total wave direction -'500185' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#wind sea mean period -'500186' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 101 ; - } -#wind sea peak period -'500187' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#swell mean period -'500188' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 101 ; - } -#swell peak period -'500189' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#total wave peak period -'500190' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#total wave mean period -'500191' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#total Tm1 period -'500192' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#total Tm2 period -'500193' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#total directional spread -'500194' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#analysis error(standard deviation), geopotential(gpm) -'500195' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#analysis error(standard deviation), u-comp. of wind -'500196' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#analysis error(standard deviation), v-comp. of wind -'500197' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#zonal wind tendency due to subgrid scale oro. -'500198' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to subgrid scale oro. -'500199' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Standard deviation of sub-grid scale orography -'500200' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 1 ; - } -#Anisotropy of sub-gridscale orography -'500201' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - typeOfFirstFixedSurface = 1 ; - } -#Angle of sub-gridscale orography -'500202' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - typeOfFirstFixedSurface = 1 ; - } -#Slope of sub-gridscale orography -'500203' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 1 ; - } -#surface emissivity -'500204' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Type -'500205' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Leaf area index -'500206' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - } -#root depth of vegetation -'500207' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - typeOfFirstFixedSurface = 1 ; - } -#height of ozone maximum (climatological) -'500208' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#vertically integrated ozone content (climatological) -'500209' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the vegetation phase -'500210' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the quiescent phas -'500211' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - } -#Max Leaf area index -'500212' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Min Leaf area index -'500213' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Orographie + Land-Meer-Verteilung -'500214' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#variance of soil moisture content (0-10) -'500215' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfStatisticalProcessing = 7 ; - } -#variance of soil moisture content (10-100) -'500216' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 100 ; - } -#evergreen forest -'500217' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#deciduous forest -'500218' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - typeOfFirstFixedSurface = 1 ; - } -#normalized differential vegetation index -'500219' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } -#normalized differential vegetation index (NDVI) -'500220' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500221' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500222' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Total sulfate aerosol -'500223' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - } -#Total sulfate aerosol (12M) -'500224' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } -#Total soil dust aerosol -'500225' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - } -#Total soil dust aerosol (12M) -'500226' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } -#Organic aerosol -'500227' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - } -#Organic aerosol (12M) -'500228' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } -#Black carbon aerosol -'500229' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - } -#Black carbon aerosol (12M) -'500230' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 0 ; - } -#Sea salt aerosol -'500231' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - } -#Sea salt aerosol (12M) -'500232' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 0 ; - } -#tendency of specific humidity -'500233' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#water vapor flux -'500234' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } -#Coriolis parameter -'500235' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical latitude -'500236' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical longitude -'500237' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Friction velocity -'500238' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Delay of the GPS signal trough the (total) atm. -'500239' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'500240' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'500241' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Ozone Mixing Ratio -'500242' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'500243' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - } -#Ru103-dry deposition -'500244' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 193 ; - } -#Ru103-wet deposition -'500245' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 194 ; - } -#Air concentration of Strontium 90 -'500246' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 195 ; - } -#Sr90-dry deposition -'500247' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 196 ; - } -#Sr90-wet deposition -'500248' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 197 ; - } -#I131-concentration -'500249' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 198 ; - } -#I131-dry deposition -'500250' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 199 ; - } -#I131-wet deposition -'500251' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 200 ; - } -#Cs137-concentration -'500252' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 201 ; - } -#Cs137-dry deposition -'500253' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 202 ; - } -#Cs137-wet deposition -'500254' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 203 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'500255' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 204 ; - } -#Te132-dry deposition -'500256' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 205 ; - } -#Te132-wet deposition -'500257' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 206 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'500258' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 207 ; - } -#Zr95-dry deposition -'500259' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 208 ; - } -#Zr95-wet deposition -'500260' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 209 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'500261' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 210 ; - } -#Kr85-dry deposition -'500262' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 211 ; - } -#Kr85-wet deposition -'500263' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 212 ; - } -#TRACER - concentration -'500264' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 213 ; - } -#TRACER - dry deposition -'500265' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 214 ; - } -#TRACER - wet deposition -'500266' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 215 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'500267' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 216 ; - } -#Xe133 - dry deposition -'500268' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 217 ; - } -#Xe133 - wet deposition -'500269' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 218 ; - } -#I131g - concentration -'500270' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 219 ; - } -#Xe133 - wet deposition -'500271' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 220 ; - } -#I131g - wet deposition -'500272' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 221 ; - } -#I131o - concentration -'500273' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 222 ; - } -#I131o - dry deposition -'500274' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 223 ; - } -#I131o - wet deposition -'500275' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 224 ; - } -#Air concentration of Barium 40 -'500276' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 225 ; - } -#Ba140 - dry deposition -'500277' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 226 ; - } -#Ba140 - wet deposition -'500278' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 227 ; - } -#u-momentum flux due to SSO-effects -'500279' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#u-momentum flux due to SSO-effects -'500280' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'500281' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'500282' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'500283' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'500284' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'500285' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#wind shear -'500286' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - } -#storm relative helicity -'500287' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#absolute vorticity advection -'500288' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'500291' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 1 ; - } -#weather interpretation (WMO) -'500292' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 1 ; - } -#Isentrope potentielle Vorticity -'500298' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 107 ; - } -#Druck einer isentropen Flaeche -'500301' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#KO index -'500302' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Aequivalentpotentielle Temperatur -'500303' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Ceiling -'500304' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'500305' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#modified cloud depth for media -'500306' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } -#modified cloud cover for media -'500307' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'500308' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'500309' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'500310' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'500311' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'500312' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'500313' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'500314' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'500315' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'500316' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'500317' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'500318' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'500319' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'500320' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'500321' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'500322' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'500323' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Synth. Sat. brightness temperature cloudy -'500324' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'500325' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. radiance cloudy -'500326' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'500327' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. brightness temperature cloudy -'500328' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'500329' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'500330' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'500331' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'500332' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'500333' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'500334' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'500335' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance clear sky -'500336' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'500337' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance clear sky -'500338' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'500339' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'500340' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. brightness temperature cloudy -'500341' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } -#Synth. Sat. brightness temperature cloudy -'500342' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. brightness temperature cloudy -'500343' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'500344' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'500345' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Synth. Sat. brightness temperature cloudy -'500346' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. brightness temperature cloudy -'500347' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. brightness temperature clear sky -'500348' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } -#Synth. Sat. brightness temperature clear sky -'500349' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. brightness temperature clear sky -'500350' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'500351' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'500352' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } -#Synth. Sat. brightness temperature clear sky -'500353' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Synth. Sat. brightness temperature clear sky -'500354' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'500355' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. radiance cloudy -'500356' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. radiance cloudy -'500357' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. radiance cloudy -'500358' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } -#Synth. Sat. radiance cloudy -'500359' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'500360' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'500361' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Synth. Sat. radiance cloudy -'500362' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } -#Synth. Sat. radiance cloudy -'500363' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. radiance clear sky -'500364' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. radiance clear sky -'500365' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } -#Synth. Sat. radiance clear sky -'500366' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'500367' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'500368' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } -#Synth. Sat. radiance clear sky -'500369' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Synth. Sat. radiance clear sky -'500370' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } -#Synth. Sat. radiance clear sky -'500371' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#smoothed forecast, temperature -'500372' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, maximum temp. -'500373' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, minimum temp. -'500374' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, dew point temp. -'500375' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#smoothed forecast, u comp. of wind -'500376' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, v comp. of wind -'500377' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, total precipitation rate -'500378' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, total cloud cover -'500379' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover low -'500380' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover medium -'500381' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover high -'500382' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'500383' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#smoothed forecast, soil temperature -'500384' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, wind speed (gust) -'500385' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#calibrated forecast, total precipitation rate -'500386' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'500387' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - } -#calibrated forecast, wind speed (gust) -'500388' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 198 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500389' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500390' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500391' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500392' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1250000 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500393' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500394' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500395' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500396' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500397' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500398' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500399' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'500400' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def deleted file mode 100644 index c6cc8198..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/cnmc/shortName.def +++ /dev/null @@ -1,3073 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Sea ice area fraction -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - is_s2s = 1 ; - subCentre = 102 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - is_s2s = 1 ; - subCentre = 102 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Pressure (S) (not reduced) -'ps' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure -'p' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure Reduced to MSL -'pmsl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 101 ; - } -#Pressure Tendency (S) -'dpsdt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (S) -'fis' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (full lev) -'fif' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Geopotential -'fi' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geometric Height of the earths surface above sea level -'hsurf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'hhl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total Column Integrated Ozone -'to3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature (G) -'t_g' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Climat. temperature, 2m Temperature -'t_2m_cl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 0 ; - typeOfGeneratingProcess = 9 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Max 2m Temperature (i) -'tmax_2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#Min 2m Temperature (i) -'tmin_2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - } -#2m Dew Point Temperature (AV) -'td_2m_av' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Radar spectra (1) -'dbz_max' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind Direction (DD_10M) -'dd_10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind Direction (DD) -'dd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Wind speed (SP_10M) -'sp_10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Wind speed (SP) -'sp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#U component of wind -'u_10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#U component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'v_10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#V component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'omega' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Vertical Velocity (Geometric) (w) -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Specific Humidity (S) -'qv_s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Specific Humidity (2m) -'qv_2m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Specific Humidity -'qv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Relative Humidity -'relhum_2m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Relative Humidity -'relhum' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total column integrated water vapour -'tqv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation (s) -'aevap_s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Column-Integrated Cloud Ice -'tqi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Precipitation rate (S) -'tot_prec' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Large-Scale Precipitation rate -'prec_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective Precipitation rate -'prec_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth water equivalent -'w_snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Depth -'h_snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'clct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Cloud Cover -'clc_con' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Cover (800 hPa - Soil) -'clcl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 100 ; - } -#Cloud Cover (400 - 800 hPa) -'clcm' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Cloud Cover (0 - 400 hPa) -'clch' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Total Column-Integrated Cloud Water -'tqc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'snow_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Large-Scale snowfall rate water equivalent (s) -'snow_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Land Cover (1=land, 0=sea) -'fr_land' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface Roughness length Surface Roughness -'z0' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'alb_rad' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'albedo_b' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'t_cl' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaledValueOfFirstFixedSurface = 36 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil Temperature (41 cm depth) -'t_cl_lm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaledValueOfFirstFixedSurface = 41 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil Temperature -'t_m' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaledValueOfFirstFixedSurface = 9 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil Temperature -'t_s' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#Column-integrated Soil Moisture -'w_cl' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'w_g1' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'w_g2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 100 ; - } -#Plant cover -'plcov' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Water Runoff (10-100) -'runoff_g' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Water Runoff (10-190) -'runoff_g_lm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 190 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Water Runoff (s) -'runoff_s' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'fr_ice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Thickness -'h_ice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'mdww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'mdps' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'shps' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'mpps' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Net short wave radiation flux (m) (at the surface) -'asob_s' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'sobs_rad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Net long wave radiation flux (m) (at the surface) -'athb_s' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'thbs_rad' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Net short wave radiation flux (m) (on the model top) -'asob_t' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 0 ; - } -#Net short wave radiation flux -'sobt_rad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'athb_t' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'thbt_rad' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - } -#Latent Heat Net Flux (m) -'alhfl_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Sensible Heat Net Flux (m) -'ashfl_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Momentum Flux, U-Component (m) -'aumfl_s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Momentum Flux, V-Component (m) -'avmfl_s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation (m) (at the surface) -'apab_s' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Photosynthetically active radiation -'pabs_rad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } -#Solar radiation heating rate -'sohr_rad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Thermal radiation heating rate -'thhr_rad' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Latent heat flux from bare soil -'alhfl_bs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Latent heat flux from plants -'alhfl_pl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - typeOfStatisticalProcessing = 0 ; - } -#Sunshine -'dursun' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - } -#Stomatal Resistance -'rstom' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Cloud cover -'clc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Non-Convective Cloud Cover, grid scale -'clc_sgs' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Mixing Ratio -'qc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Ice Mixing Ratio -'qi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Rain mixing ratio -'qr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Snow mixing ratio -'qs' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total column integrated rain -'tqr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tqs' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Grauple -'qg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total column integrated grauple -'tqg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } -#Total Column integrated water (all components incl. precipitation) -'twater' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - typeOfFirstFixedSurface = 1 ; - } -#vertical integral of divergence of total water content (s) -'tdiv_hum' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#subgrid scale cloud water -'qc_rad' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#subgridscale cloud ice -'qi_rad' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#cloud base above msl, shallow convection -'hbas_sc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 2 ; - } -#cloud top above msl, shallow convection -'htop_sc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 3 ; - } -#specific cloud water content, convective cloud -'clw_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Height of Convective Cloud Base (i) -'hbas_con' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 2 ; - } -#Height of Convective Cloud Top (i) -'htop_con' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'bas_con' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'top_con' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to convection -'dt_con' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to convection -'dqv_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#zonal wind tendency due to convection -'du_con' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to convection -'dv_con' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#height of top of dry convection -'htop_dc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'hzerocl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 4 ; - } -#Height of snow fall limit -'snowlmt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - } -#Tendency of specific cloud liquid water content due to conversion -'dqc_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud ice content due to convection -'dqi_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'q_sedim' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Large scale rain rate -'prr_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale snowfall rate water equivalent -'prs_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale rain rate (s) -'rain_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective rain rate -'prr_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective snowfall rate water equivalent -'prs_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective rain rate (s) -'rain_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#rain amount, grid-scale plus convective -'rr_f' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#snow amount, grid-scale plus convective -'rr_c' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature tendency due to grid scale precipation -'dt_gsp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to grid scale precipitation -'dqv_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'dqc_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'freshsnw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'dqi_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Graupel (snow pellets) precipitation rate -'prg_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - } -#Graupel (snow pellets) precipitation rate -'grau_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow density -'rho_snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure perturbation -'pp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#supercell detection index 1 (rot. up+down drafts) -'sdi_1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'sdi_2' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy, most unstable -'cape_mu' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Inhibition, most unstable -'cin_mu' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Available Potential Energy, mean layer -'cape_ml' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective Inhibition, mean layer -'cin_ml' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective turbulent kinetic enery -'tke_con' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } -#Tendency of turbulent kinetic energy -'tketens' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Kinetic Energy -'ke' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent Kinetic Energy -'tke' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusioncoefficient for momentum -'tkvm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'tkvh' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent transfer coefficient for impulse -'tcm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'tch' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - typeOfFirstFixedSurface = 1 ; - } -#mixed layer depth -'mh' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#maximum Wind 10m -'vmax_10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Air concentration of Ruthenium 103 -'ru-103' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } -#Soil Temperature (multilayers) -'t_so' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (multilayers) -'w_so' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#soil ice content (multilayers) -'w_so_ice' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant Canopy Surface Water -'w_i' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow temperature (top of snow) -'t_snow' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } -#Minimal Stomatal Resistance -'prs_min' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Temperature -'t_ice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'dbz_850' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'dbz' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Base reflectivity (cmax) -'dbz_cmax' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - } -#unknown -'dttdiv' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Effective transmissivity of solar radiation -'sotr_rad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#sum of contributions to evaporation -'evatra_sum' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#total transpiration from all soil layers -'tra_sum' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#total forcing at soil surface -'totforce_s' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#residuum of soil moisture -'resid_wso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Massflux at convective cloud base -'mflx_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy -'cape_con' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#moisture convergence for Kuo-type closure -'qcvg_con' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } -#total wave direction -'mwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#wind sea mean period -'mwp_x' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 101 ; - } -#wind sea peak period -'ppww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#swell mean period -'mpp_s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 101 ; - } -#swell peak period -'ppps' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#total wave peak period -'pp1d' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#total wave mean period -'tm10' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#total Tm1 period -'tm01' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#total Tm2 period -'tm02' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#total directional spread -'sprd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#analysis error(standard deviation), geopotential(gpm) -'ana_err_fi' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#analysis error(standard deviation), u-comp. of wind -'ana_err_u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; - typeOfStatisticalProcessing = 6 ; - } -#analysis error(standard deviation), v-comp. of wind -'ana_err_v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#zonal wind tendency due to subgrid scale oro. -'du_sso' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#meridional wind tendency due to subgrid scale oro. -'dv_sso' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Standard deviation of sub-grid scale orography -'sso_stdh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 1 ; - } -#Anisotropy of sub-gridscale orography -'sso_gamma' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - typeOfFirstFixedSurface = 1 ; - } -#Angle of sub-gridscale orography -'sso_theta' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - typeOfFirstFixedSurface = 1 ; - } -#Slope of sub-gridscale orography -'sso_sigma' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 1 ; - } -#surface emissivity -'emis_rad' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Type -'soiltyp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Leaf area index -'lai' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - } -#root depth of vegetation -'rootdp' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - typeOfFirstFixedSurface = 1 ; - } -#height of ozone maximum (climatological) -'hmo3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#vertically integrated ozone content (climatological) -'vio3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the vegetation phase -'plcov_mx' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the quiescent phas -'plcov_mn' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Max Leaf area index -'lai_mx' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Min Leaf area index -'lai_mn' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - } -#Orographie + Land-Meer-Verteilung -'oro_mod' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#variance of soil moisture content (0-10) -'wvar1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#variance of soil moisture content (10-100) -'wvar2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#evergreen forest -'for_e' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#deciduous forest -'for_d' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - typeOfFirstFixedSurface = 1 ; - } -#normalized differential vegetation index -'ndvi' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } -#normalized differential vegetation index (NDVI) -'ndvi_max' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ndvi_mrat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ndviratio' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Total sulfate aerosol -'aer_so4' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - } -#Total sulfate aerosol (12M) -'aer_so412' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } -#Total soil dust aerosol -'aer_dust' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - } -#Total soil dust aerosol (12M) -'aer_dust12' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } -#Organic aerosol -'aer_org' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - } -#Organic aerosol (12M) -'aer_org12' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } -#Black carbon aerosol -'aer_bc' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - } -#Black carbon aerosol (12M) -'aer_bc12' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 0 ; - } -#Sea salt aerosol -'aer_ss' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - } -#Sea salt aerosol (12M) -'aer_ss12' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 0 ; - } -#tendency of specific humidity -'dqvdt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#water vapor flux -'qvsflx' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } -#Coriolis parameter -'fc' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical latitude -'rlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical longitude -'rlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Friction velocity -'ustr' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Delay of the GPS signal trough the (total) atm. -'ztd' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'zwd' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'zhd' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Ozone Mixing Ratio -'o3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'ru-103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - } -#Ru103-dry deposition -'ru-103d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 193 ; - } -#Ru103-wet deposition -'ru-103w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 194 ; - } -#Air concentration of Strontium 90 -'sr-90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 195 ; - } -#Sr90-dry deposition -'sr-90d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 196 ; - } -#Sr90-wet deposition -'sr-90w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 197 ; - } -#I131-concentration -'i-131a' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 198 ; - } -#I131-dry deposition -'i-131ad' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 199 ; - } -#I131-wet deposition -'i-131aw' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 200 ; - } -#Cs137-concentration -'cs-137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 201 ; - } -#Cs137-dry deposition -'cs-137d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 202 ; - } -#Cs137-wet deposition -'cs-137w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 203 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'te-132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 204 ; - } -#Te132-dry deposition -'te-132d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 205 ; - } -#Te132-wet deposition -'te-132w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 206 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'zr-95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 207 ; - } -#Zr95-dry deposition -'zr-95d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 208 ; - } -#Zr95-wet deposition -'zr-95w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 209 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'kr-85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 210 ; - } -#Kr85-dry deposition -'kr-85d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 211 ; - } -#Kr85-wet deposition -'kr-85w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 212 ; - } -#TRACER - concentration -'tr-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 213 ; - } -#TRACER - dry deposition -'tr-2d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 214 ; - } -#TRACER - wet deposition -'tr-2w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 215 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'xe-133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 216 ; - } -#Xe133 - dry deposition -'xe-133d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 217 ; - } -#Xe133 - wet deposition -'xe-133w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 218 ; - } -#I131g - concentration -'i-131g' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 219 ; - } -#Xe133 - wet deposition -'i-131gd' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 220 ; - } -#I131g - wet deposition -'i-131gw' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 221 ; - } -#I131o - concentration -'i-131o' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 222 ; - } -#I131o - dry deposition -'i-131od' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 223 ; - } -#I131o - wet deposition -'i-131ow' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 224 ; - } -#Air concentration of Barium 40 -'ba-140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 225 ; - } -#Ba140 - dry deposition -'ba-140d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 226 ; - } -#Ba140 - wet deposition -'ba-140w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 227 ; - } -#u-momentum flux due to SSO-effects -'austr_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#u-momentum flux due to SSO-effects -'ustr_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'avstr_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#v-momentum flux due to SSO-effects -'vstr_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'avdis_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'vdis_sso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'uv_max' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#wind shear -'w_shaer' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - } -#storm relative helicity -'srh' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#absolute vorticity advection -'vabs' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'ccl_nn' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 1 ; - } -#weather interpretation (WMO) -'ww' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 1 ; - } -#Isentrope potentielle Vorticity -'ipv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 107 ; - } -#Druck einer isentropen Flaeche -'ptheta' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#KO index -'ko' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Aequivalentpotentielle Temperatur -'thetae' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Ceiling -'ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'ice_grd' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#modified cloud depth for media -'cldepth' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } -#modified cloud cover for media -'clct_mod' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'efa-ps' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'eia-ps' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'efa-u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'eia-u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'efa-v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'eia-v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'efa-fi' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'eia-fi' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'efa-rh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'eia-rh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'efa-t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'eia-t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'efa-om' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'eia-om' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'efa-ke' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'eia-ke' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Synth. Sat. brightness temperature cloudy -'synme5_bt_cl' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. brightness temperature clear sky -'synme5_bt_cs' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'synme5_rad_cl' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'synme5_rad_cs' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature cloudy -'synme6_bt_cl' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'synme6_bt_cs' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - } -#Synth. Sat. radiance cloudy -'synme6_rad_cl' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'synme6_rad_cs' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'synme7_bt_cl_ir11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'synme7_bt_cl_wv6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. brightness temperature clear sky -'synme7_bt_cs_ir11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'synme7_bt_cs_wv6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance clear sky -'synme7_rad_cl_ir11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'synme7_rad_cl_wv6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance clear sky -'synme7_rad_cs_ir11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. radiance cloudy -'synme7_rad_cs_wv6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_ir9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_wv6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } -#Synth. Sat. brightness temperature cloudy -'synmsg_bt_cl_wv7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_ir9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_wv6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'synmsg_bt_cs_wv7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_ir9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_wv6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. radiance cloudy -'synmsg_rad_cl_wv7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_ir9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_wv6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'synmsg_rad_cs_wv7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#smoothed forecast, temperature -'t_2m_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, maximum temp. -'tmax_2m_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, minimum temp. -'tmin_2m_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, dew point temp. -'td_2m_s' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, u comp. of wind -'u_10m_s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, v comp. of wind -'v_10m_s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#smoothed forecast, total precipitation rate -'tot_prec_s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, total cloud cover -'clct_s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover low -'clcl_s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#smoothed forecast, cloud cover medium -'clcm_s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } -#smoothed forecast, cloud cover high -'clch_s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'snow_gsp_s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, soil temperature -'t_s_s' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, wind speed (gust) -'vmax_10m_s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#calibrated forecast, total precipitation rate -'tot_prec_c' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'snow_gsp_c' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#calibrated forecast, wind speed (gust) -'vmax_10m_c' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'obsmsg_alb_hrv' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'obsmsg_alb_nir1.6' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'obsmsg_alb_vis0.6' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'obsmsg_alb_vis0.8' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - scaledValueOfCentralWaveNumber = 1250000 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir10.8' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir12.0' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir13.4' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir3.9' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 256410 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir8.7' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_ir9.7' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_wv6.2' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'obsmsg_bt_wv7.3' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 136986 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/cnmc/units.def b/eccodes/definitions.save/grib2/localConcepts/cnmc/units.def deleted file mode 100644 index a3af2632..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/cnmc/units.def +++ /dev/null @@ -1,3073 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea ice area fraction -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Sea ice area fraction -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - is_s2s = 1 ; - typeOfFirstFixedSurface = 103 ; - subCentre = 102 ; - } -#Pressure (S) (not reduced) -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure Reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 101 ; - } -#Pressure Tendency (S) -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (S) -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Geopotential (full lev) -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Geopotential -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geometric Height of the earths surface above sea level -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Geometric Height of the layer limits above sea level(NN) -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total Column Integrated Ozone -'Dobson' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature (G) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Climat. temperature, 2m Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 9 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Max 2m Temperature (i) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Min 2m Temperature (i) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Dew Point Temperature (AV) -'~' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Radar spectra (1) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Wave spectra (1) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind Direction (DD_10M) -'degrees' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Wind Direction (DD) -'degrees' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind speed (SP_10M) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind speed (SP) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#U component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#U component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#V component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Vertical Velocity (Geometric) (w) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Specific Humidity (S) -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Specific Humidity (2m) -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Specific Humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2m Relative Humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Relative Humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total column integrated water vapour -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation (s) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Column-Integrated Cloud Ice -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Precipitation rate (S) -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Large-Scale Precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective Precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Cloud Cover (800 hPa - Soil) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - } -#Cloud Cover (400 - 800 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - } -#Cloud Cover (0 - 400 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Total Column-Integrated Cloud Water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Snowfall rate water equivalent (s) -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Large-Scale snowfall rate water equivalent (s) -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Land Cover (1=land, 0=sea) -'(0 - 1)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface Roughness length Surface Roughness -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Albedo (in short-wave) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Temperature ( 36 cm depth, vv=0h) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 36 ; - } -#Soil Temperature (41 cm depth) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 41 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 9 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Column-integrated Soil Moisture -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Column-integrated Soil Moisture (1) 0 -10 cm -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - } -#Column-integrated Soil Moisture (2) 10-100cm -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant cover -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } -#Water Runoff (10-100) -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Water Runoff (10-190) -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#Water Runoff (s) -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Sea Ice Cover ( 0= free, 1=cover) -'~' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Significant height of combined wind waves and swell -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Net short wave radiation flux (m) (at the surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Net long wave radiation flux (m) (at the surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Net short wave radiation flux (m) (on the model top) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 0 ; - } -#Net long wave radiation flux (m) (on the model top) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 0 ; - } -#Net long wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 0 ; - } -#Latent Heat Net Flux (m) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Sensible Heat Net Flux (m) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Momentum Flux, U-Component (m) -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Momentum Flux, V-Component (m) -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation (m) (at the surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Photosynthetically active radiation -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } -#Solar radiation heating rate -'K s**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Thermal radiation heating rate -'K s**-1' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Latent heat flux from bare soil -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat flux from plants -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Sunshine -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - } -#Stomatal Resistance -'s m**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Non-Convective Cloud Cover, grid scale -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Cloud Mixing Ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Cloud Ice Mixing Ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Rain mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Snow mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total column integrated rain -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Grauple -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Total column integrated grauple -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } -#Total Column integrated water (all components incl. precipitation) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - typeOfFirstFixedSurface = 1 ; - } -#vertical integral of divergence of total water content (s) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#subgrid scale cloud water -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#subgridscale cloud ice -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#cloud base above msl, shallow convection -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 2 ; - } -#cloud top above msl, shallow convection -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 3 ; - } -#specific cloud water content, convective cloud -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Height of Convective Cloud Base (i) -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 2 ; - } -#Height of Convective Cloud Top (i) -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 3 ; - } -#base index (vertical level) of main convective cloud (i) -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#top index (vertical level) of main convective cloud (i) -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to convection -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Specific humitiy tendency due to convection -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#zonal wind tendency due to convection -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to convection -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#height of top of dry convection -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#height of 0 degree celsius level code 0,3,6 ? -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 4 ; - } -#Height of snow fall limit -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - } -#Tendency of specific cloud liquid water content due to conversion -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud ice content due to convection -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Specific content of precipitation particles (needed for water loadin)g -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Large scale rain rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - } -#Large scale rain rate (s) -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Convective rain rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective rain rate (s) -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#rain amount, grid-scale plus convective -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#snow amount, grid-scale plus convective -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Temperature tendency due to grid scale precipation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Specific humitiy tendency due to grid scale precipitation -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#tendency of specific cloud liquid water content due to grid scale precipitation -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'~' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } -#tendency of specific cloud ice content due to grid scale precipitation -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Graupel (snow pellets) precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - } -#Graupel (snow pellets) precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow density -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 1 ; - } -#Pressure perturbation -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#supercell detection index 1 (rot. up+down drafts) -'s**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#supercell detection index 2 (only rot. up drafts) -'s**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy, most unstable -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Inhibition, most unstable -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } -#Convective Available Potential Energy, mean layer -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective Inhibition, mean layer -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } -#Convective turbulent kinetic enery -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } -#Tendency of turbulent kinetic energy -'m s**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Kinetic Energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Turbulent Kinetic Energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusioncoefficient for momentum -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Turbulent diffusion coefficient for heat (and moisture) -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Turbulent transfer coefficient for impulse -'~' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#Turbulent transfer coefficient for heat (and Moisture) -'~' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - typeOfFirstFixedSurface = 1 ; - } -#mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#maximum Wind 10m -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Air concentration of Ruthenium 103 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } -#Soil Temperature (multilayers) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#Column-integrated Soil Moisture (multilayers) -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; - } -#soil ice content (multilayers) -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#Plant Canopy Surface Water -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow temperature (top of snow) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } -#Minimal Stomatal Resistance -'s m**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 1 ; - } -#sea Ice Temperature -'K' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Base reflectivity (cmax) -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - } -#unknown -'m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Effective transmissivity of solar radiation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#sum of contributions to evaporation -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#total transpiration from all soil layers -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#total forcing at soil surface -'W m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#residuum of soil moisture -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Massflux at convective cloud base -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective Available Potential Energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#moisture convergence for Kuo-type closure -'s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } -#total wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#wind sea mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 101 ; - } -#wind sea peak period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#swell mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 101 ; - } -#swell peak period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#total wave peak period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#total wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#total Tm1 period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#total Tm2 period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#total directional spread -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#analysis error(standard deviation), geopotential(gpm) -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - typeOfStatisticalProcessing = 6 ; - } -#analysis error(standard deviation), u-comp. of wind -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#analysis error(standard deviation), v-comp. of wind -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 6 ; - typeOfGeneratingProcess = 7 ; - } -#zonal wind tendency due to subgrid scale oro. -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#meridional wind tendency due to subgrid scale oro. -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Standard deviation of sub-grid scale orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfFirstFixedSurface = 1 ; - } -#Anisotropy of sub-gridscale orography -'~' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - typeOfFirstFixedSurface = 1 ; - } -#Angle of sub-gridscale orography -'radians' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - typeOfFirstFixedSurface = 1 ; - } -#Slope of sub-gridscale orography -'~' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 1 ; - } -#surface emissivity -'~' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Type -'~' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Leaf area index -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - } -#root depth of vegetation -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - typeOfFirstFixedSurface = 1 ; - } -#height of ozone maximum (climatological) -'Pa' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#vertically integrated ozone content (climatological) -'Pa' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the vegetation phase -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Plant covering degree in the quiescent phas -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - } -#Max Leaf area index -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - } -#Min Leaf area index -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Orographie + Land-Meer-Verteilung -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#variance of soil moisture content (0-10) -'kg**2 m**-4' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 106 ; - } -#variance of soil moisture content (10-100) -'kg**2 m**-4' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - } -#evergreen forest -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - typeOfFirstFixedSurface = 1 ; - } -#deciduous forest -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - typeOfFirstFixedSurface = 1 ; - } -#normalized differential vegetation index -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } -#normalized differential vegetation index (NDVI) -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'~' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Total sulfate aerosol -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - } -#Total sulfate aerosol (12M) -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } -#Total soil dust aerosol -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - } -#Total soil dust aerosol (12M) -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } -#Organic aerosol -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - } -#Organic aerosol (12M) -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } -#Black carbon aerosol -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - } -#Black carbon aerosol (12M) -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 0 ; - } -#Sea salt aerosol -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - } -#Sea salt aerosol (12M) -'~' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 0 ; - } -#tendency of specific humidity -'s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#water vapor flux -'s**-1 m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } -#Coriolis parameter -'s**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical latitude -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#geographical longitude -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } -#Friction velocity -'m s**-1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Delay of the GPS signal trough the (total) atm. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough wet atmos. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#Delay of the GPS signal trough dry atmos. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Ozone Mixing Ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 105 ; - } -#Air concentration of Ruthenium 103 (Ru103- concentration) -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - } -#Ru103-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 193 ; - } -#Ru103-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 194 ; - } -#Air concentration of Strontium 90 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 195 ; - } -#Sr90-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 196 ; - } -#Sr90-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 197 ; - } -#I131-concentration -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 198 ; - } -#I131-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 199 ; - } -#I131-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 200 ; - } -#Cs137-concentration -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 201 ; - } -#Cs137-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 202 ; - } -#Cs137-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 203 ; - } -#Air concentration of Tellurium 132 (Te132-concentration) -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 204 ; - } -#Te132-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 205 ; - } -#Te132-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 206 ; - } -#Air concentration of Zirconium 95 (Zr95-concentration) -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 207 ; - } -#Zr95-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 208 ; - } -#Zr95-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 209 ; - } -#Air concentration of Krypton 85 (Kr85-concentration) -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 210 ; - } -#Kr85-dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 211 ; - } -#Kr85-wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 212 ; - } -#TRACER - concentration -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 213 ; - } -#TRACER - dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 214 ; - } -#TRACER - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 215 ; - } -#Air concentration of Xenon 133 (Xe133 - concentration) -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 216 ; - } -#Xe133 - dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 217 ; - } -#Xe133 - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 218 ; - } -#I131g - concentration -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 219 ; - } -#Xe133 - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 220 ; - } -#I131g - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 221 ; - } -#I131o - concentration -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 222 ; - } -#I131o - dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 223 ; - } -#I131o - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 224 ; - } -#Air concentration of Barium 40 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 225 ; - } -#Ba140 - dry deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 226 ; - } -#Ba140 - wet deposition -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 227 ; - } -#u-momentum flux due to SSO-effects -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#u-momentum flux due to SSO-effects -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#v-momentum flux due to SSO-effects -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } -#Gravity wave dissipation (vertical integral) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Gravity wave dissipation (vertical integral) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfFirstFixedSurface = 1 ; - } -#UV_Index_Maximum_W UV_Index clouded (W), daily maximum -'~' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#wind shear -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 105 ; - } -#storm relative helicity -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 105 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#absolute vorticity advection -'s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfFirstFixedSurface = 1 ; - } -#weather interpretation (WMO) -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 1 ; - } -#Isentrope potentielle Vorticity -'K m**2 kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 107 ; - } -#Druck einer isentropen Flaeche -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - scaleFactorOfFirstFixedSurface = -2 ; - } -#KO index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } -#Aequivalentpotentielle Temperatur -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Ceiling -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - } -#Icing Grade (1=LGT,2=MOD,3=SEV) -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#modified cloud depth for media -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } -#modified cloud cover for media -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of geopotential -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of geopotential -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference FG-AN of temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 199 ; - typeOfStatisticalProcessing = 5 ; - } -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } -#Monthly Mean of RMS of difference FG-AN of kinetic energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 199 ; - } -#Monthly Mean of RMS of difference IA-AN of kinetic energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 200 ; - typeOfStatisticalProcessing = 5 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - satelliteSeries = 331 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - } -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance cloudy -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Synth. Sat. radiance clear sky -'W m sr m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - } -#smoothed forecast, temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, maximum temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, minimum temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, dew point temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#smoothed forecast, u comp. of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#smoothed forecast, v comp. of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#smoothed forecast, total precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; - } -#smoothed forecast, total cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; - } -#smoothed forecast, cloud cover low -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - } -#smoothed forecast, cloud cover medium -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - } -#smoothed forecast, cloud cover high -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; - } -#smoothed forecast, large-scale snowfall rate w.e. -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#smoothed forecast, soil temperature -'K' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 106 ; - } -#smoothed forecast, wind speed (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#calibrated forecast, total precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; - } -#calibrated forecast, large-scale snowfall rate w.e. -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; - } -#calibrated forecast, wind speed (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - scaledValueOfCentralWaveNumber = 2000000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 625000 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 1666666 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 1250000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 83333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; - } -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def deleted file mode 100644 index 713d4ea1..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.def +++ /dev/null @@ -1,633 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'surface_temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'lwe_thickness_of_soil_moisture_content' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'lwe_thickness_of_snowfall_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Tendency of surface pressure -'tendency_of_surface_air_pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Total cloud cover -'cloud_area_fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Albedo -'surface_albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Total column ozone -'atmosphere_mass_content_of_ozone' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Particulate matter d < 1 um -'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Hydrogen peroxide -'mass_fraction_of_hydrogen_peroxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'mass_fraction_of_methane_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'mass_fraction_of_nitric_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Ethene -'mass_fraction_of_ethene_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Peroxyacetyl nitrate -'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Isoprene -'mass_fraction_of_isoprene_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'mass_fraction_of_dimethyl_sulfide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'mass_fraction_of_ammonia_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Nitrogen monoxide -'mass_fraction_of_nitrogen_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroxyl radical -'mass_fraction_of_hydroxyl_radical_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'mass_fraction_of_nitrate_radical_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'mass_fraction_of_dinitrogen_pentoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Methanol -'mass_fraction_of_methanol_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'mass_fraction_of_formic_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Ethane -'mass_fraction_of_ethane_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'mass_fraction_of_ethanol_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'mass_fraction_of_propane_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'mass_fraction_of_propene_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'mass_fraction_of_terpenes_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Chlorine dioxide -'mass_fraction_of_chlorine_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'mass_fraction_of_chlorine_nitrate_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'mass_fraction_of_hypochlorous_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Hydrogen bromide -'mass_fraction_of_hydrogen_bromide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Hypobromous acid -'mass_fraction_of_hypobromous_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Methyl chloride -'mass_fraction_of_methyl_chloride_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Methyl bromide -'mass_fraction_of_methyl_bromide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Sulfuric acid -'mass_fraction_of_sulfuric_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'mass_fraction_of_nitrous_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Acetic acid -'mass_fraction_of_acetic_acid_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#Chlorine monoxide -'mass_fraction_of_chlorine_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Bromine monoxide -'mass_fraction_of_bromine_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Bromine nitrate -'mass_fraction_of_bromine_nitrate_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Hydrogen chloride -'mass_fraction_of_hydrogen_chloride_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Total column hydrogen peroxide -'atmosphere_mass_content_of_hydrogen_peroxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'atmosphere_mass_content_of_methane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'atmosphere_mass_content_of_nitric_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column ethene -'atmosphere_mass_content_of_ethene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column peroxyacetyl nitrate -'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column isoprene -'atmosphere_mass_content_of_isoprene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'atmosphere_mass_content_of_dimethyl_sulfide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'atmosphere_mass_content_of_ammonia' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'atmosphere_mass_content_of_sulfate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column nitrogen monoxide -'atmosphere_mass_content_of_nitrogen_monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroxyl radical -'atmosphere_mass_content_of_hydroxyl_radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'atmosphere_mass_content_of_nitrate_radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'atmosphere_mass_content_of_dinitrogen_pentoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column methanol -'atmosphere_mass_content_of_methanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'atmosphere_mass_content_of_formic_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column ethane -'atmosphere_mass_content_of_ethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'atmosphere_mass_content_of_ethanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'atmosphere_mass_content_of_propane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'atmosphere_mass_content_of_propene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'atmosphere_mass_content_of_terpenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column of chlorine dioxide -'atmosphere_mass_content_of_chlorine_dioxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'atmosphere_mass_content_of_chlorine_nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'atmosphere_mass_content_of_hypochlorous_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of hydrogen bromide -'atmosphere_mass_content_of_hydrogen_bromide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of hypobromous acid -'atmosphere_mass_content_of_hypobromous_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of methyl chloride -'atmosphere_mass_content_of_methyl_chloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of methyl bromide -'atmosphere_mass_content_of_methyl_bromide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of nitrous acid -'atmosphere_mass_content_of_nitrous_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of acetic acid -'atmosphere_mass_content_of_acetic_acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of chlorine monoxide -'atmosphere_mass_content_of_chlorine_monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of bromine monoxide -'atmosphere_mass_content_of_bromine_monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of bromine nitrate -'atmosphere_mass_content_of_bromine_nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of hydrogen chloride -'atmosphere_mass_content_of_hydrogen_chloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Sea water potential temperature -'sea_water_potential_temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'sea_water_practical_salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'upward_sea_water_velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Sea water sigma theta -'sea_water_sigma_theta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Ocean barotropic stream function -'ocean_barotropic_streamfunction' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'surface_downward_northward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Carbon Dioxide -'mass_fraction_of_carbon_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'mass_fraction_of_methane_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'mass_fraction_of_nitrous_oxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Nitrous oxide -'atmosphere_mass_content_of_nitrous_oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Nitrogen dioxide -'mass_fraction_of_nitrogen_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'mass_fraction_of_sulfur_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'mass_fraction_of_carbon_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'mass_fraction_of_formaldehyde_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'atmosphere_mass_content_of_nitrogen_dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'atmosphere_mass_content_of_sulfur_dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'atmosphere_mass_content_of_carbon_monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'atmosphere_mass_content_of_formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Radon -'mass_fraction_of_radon_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Total column Radon -'atmosphere_mass_content_of_radon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#GEMS Ozone -'mass_fraction_of_ozone_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'atmosphere_mass_content_of_ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def deleted file mode 100644 index 2882a474..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfName.legacy.def +++ /dev/null @@ -1,54 +0,0 @@ -#Surface net solar radiation, clear sky -'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'surface_net_downward_longwave_flux_assuming_clear_sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'eastward_sea_water_velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'northward_sea_water_velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'sea_ice_thickness' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'sea_surface_height_above_geoid' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'temperature_in_surface_snow' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def deleted file mode 100644 index 113ceb82..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.def +++ /dev/null @@ -1,22056 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Equivalent potential temperature -'eqpt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'ssfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'scfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'sro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'udvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'vdvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'urtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'vrtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'uvcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'cl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'cvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'cvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'tvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'tvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'asn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'istl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'es' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'smlt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'sdur' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'lspf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Montgomery potential -'mont' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'obct' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'sktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Experimental product -'p80.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'p10fg6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'emis' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'vite' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'at' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'bv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'tcwv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'stl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'swl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'sd' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'lsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'sf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'chnk' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'snr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'tnr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'lnsp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'swhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'lwhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'tsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'blh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'sdor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'tcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'stl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'al' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'e' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'stl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'swl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'ccc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'lcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'mcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'hcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'lgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'src' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'veg' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'paw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'ro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'tco3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#TOA incident solar radiation -'tisr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'ie' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'asq' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'stl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'swl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Convective snowfall -'csf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'lsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'fal' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'fsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'aiw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'ice' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'strfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'ptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'cldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'asndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'rsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'sltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'esdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'smltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'sdurdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'fgdiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'montdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'presdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'capediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'obctdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'p63.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'p64.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'p65.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'p66.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'p67.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'p70.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'p71.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'p78.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'p79.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'fg6diff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'p125.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'bvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'zdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'qdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'spdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'tcwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'sddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'chnkdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'ghdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'rdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'udiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'vdiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'difft2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'srdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'aldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'ediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'hccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'rodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'tco3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'sidiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'tpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'sktdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'faldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'ccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'icediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'p193.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'utendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'ttendr' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'ua100' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'va100' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdms' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'p55.210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Injection height (from IS4FIRES) -'injh' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 60 ; - } -#Particulate matter d < 1 um -'pm1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 118 ; - } -#Mean altitude of maximum injection -'mami' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'apt' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#Wildfire day-time radiative power -'frpdayfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 167 ; - } -#Wildfire night-time radiative power -'frpngtfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 169 ; - } -#Wildfire day-time inverse variance of radiative power -'frpdayivar' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 177 ; - } -#Wildfire night-time inverse variance of radiative power -'frpngtivar' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 179 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'c7h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'c6h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'c8h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'c4h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'c5h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'c6h12fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'c8h16fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'c4h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'c5h12fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'c6h14fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'c7h16fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 241 ; - } -#Altitude of plume bottom -'apb' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'p55.211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'alediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'aptdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16diff' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17diff' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Experimental product -'p1.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'p2.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'p3.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'p4.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'p5.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'p6.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'p7.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'p8.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'p9.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'p10.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'p11.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'p12.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'p13.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'p14.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'p15.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'p16.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'p17.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'p18.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'p19.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'p20.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'p21.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'p22.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'p23.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'p24.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'p25.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'p26.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'p27.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'p28.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'p29.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'p30.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'p31.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'p32.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'p33.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'p34.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'p35.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'p36.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'p37.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'p38.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'p39.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'p40.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'p41.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'p42.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'p43.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'p44.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'p45.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'p46.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'p47.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'p48.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'p49.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'p50.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'p51.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'p52.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'p53.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'p54.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'p55.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'p57.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'p58.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'p59.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'p60.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'p61.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'p62.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'p63.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'p64.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'p65.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'p66.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'p67.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'p68.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'p69.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'p70.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'p71.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'p72.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'p73.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'p74.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'p75.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'p76.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'p77.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'p78.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'p79.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'p121.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'p122.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'p123.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'p124.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'p125.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'p126.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'p127.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'p128.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'p129.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'p130.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'p131.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'p132.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'p133.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'p134.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'p135.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'p136.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'p137.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'p138.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'p139.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'p140.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'p141.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'p142.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'p143.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'p144.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'p145.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'p146.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'p147.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'p148.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'p149.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'p150.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'p151.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'p152.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'p153.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'p154.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'p155.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'p156.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'p157.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'p158.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'p159.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'p160.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'p161.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'p162.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'p163.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'p164.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'p165.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'p166.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'p167.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'p168.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'p169.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'p170.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'p171.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'p172.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'p173.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'p174.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'p175.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'p176.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'p177.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'p178.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'p179.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'p180.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'p181.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'p182.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'p183.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'p184.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'p185.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'p186.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'p187.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'p188.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'p189.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'p190.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'p191.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'p192.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'p193.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'p194.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'p195.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'p196.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'p197.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'p198.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'p199.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'p200.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'p201.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'p202.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'p203.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'p204.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'p205.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'p206.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'p207.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'p208.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'p209.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'p210.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'p211.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'p212.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'p213.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'p214.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'p215.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'p216.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'p217.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'p218.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'p219.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'p220.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'p221.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'p222.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'p223.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'p224.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'p225.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'p226.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'p227.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'p228.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'p229.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'p230.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'p231.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'p232.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'p233.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'p234.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'p235.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'p236.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'p237.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'p238.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'p239.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'p240.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'p241.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'p242.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'p243.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'p244.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'p245.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'p246.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'p247.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'p248.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'p249.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'p250.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'p251.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'p252.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'p253.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'p254.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'p255.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -#Random pattern 1 for SPP scheme -'spp1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 101 ; - } -#Random pattern 2 for SPP scheme -'spp2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 102 ; - } -#Random pattern 3 for SPP scheme -'spp3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 103 ; - } -#Random pattern 4 for SPP scheme -'spp4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 104 ; - } -#Random pattern 5 for SPP scheme -'spp5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 105 ; - } -#Random pattern 6 for SPP scheme -'spp6' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 106 ; - } -#Random pattern 7 for SPP scheme -'spp7' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 107 ; - } -#Random pattern 8 for SPP scheme -'spp8' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 108 ; - } -#Random pattern 9 for SPP scheme -'spp9' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 109 ; - } -#Random pattern 10 for SPP scheme -'spp10' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 110 ; - } -#Random pattern 11 for SPP scheme -'spp11' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 111 ; - } -#Random pattern 12 for SPP scheme -'spp12' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 112 ; - } -#Random pattern 13 for SPP scheme -'spp13' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 113 ; - } -#Random pattern 14 for SPP scheme -'spp14' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 114 ; - } -#Random pattern 15 for SPP scheme -'spp15' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 115 ; - } -#Random pattern 16 for SPP scheme -'spp16' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 116 ; - } -#Random pattern 17 for SPP scheme -'spp17' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 117 ; - } -#Random pattern 18 for SPP scheme -'spp18' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 118 ; - } -#Random pattern 19 for SPP scheme -'spp19' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 119 ; - } -#Random pattern 20 for SPP scheme -'spp20' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 120 ; - } -#Random pattern 21 for SPP scheme -'spp21' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 121 ; - } -#Random pattern 22 for SPP scheme -'spp22' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 122 ; - } -#Random pattern 23 for SPP scheme -'spp23' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 123 ; - } -#Random pattern 24 for SPP scheme -'spp24' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 124 ; - } -#Random pattern 25 for SPP scheme -'spp25' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 125 ; - } -#Random pattern 26 for SPP scheme -'spp26' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 126 ; - } -#Random pattern 27 for SPP scheme -'spp27' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 127 ; - } -#Random pattern 28 for SPP scheme -'spp28' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 128 ; - } -#Random pattern 29 for SPP scheme -'spp29' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 129 ; - } -#Random pattern 30 for SPP scheme -'spp30' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 130 ; - } -#Random pattern 31 for SPP scheme -'spp31' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 131 ; - } -#Random pattern 32 for SPP scheme -'spp32' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 132 ; - } -#Random pattern 33 for SPP scheme -'spp33' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 133 ; - } -#Random pattern 34 for SPP scheme -'spp34' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 134 ; - } -#Random pattern 35 for SPP scheme -'spp35' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 135 ; - } -#Random pattern 36 for SPP scheme -'spp36' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 136 ; - } -#Random pattern 37 for SPP scheme -'spp37' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 137 ; - } -#Random pattern 38 for SPP scheme -'spp38' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 138 ; - } -#Random pattern 39 for SPP scheme -'spp39' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 139 ; - } -#Random pattern 40 for SPP scheme -'spp40' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 140 ; - } -#Random pattern 41 for SPP scheme -'spp41' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 141 ; - } -#Random pattern 42 for SPP scheme -'spp42' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 142 ; - } -#Random pattern 43 for SPP scheme -'spp43' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 143 ; - } -#Random pattern 44 for SPP scheme -'spp44' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 144 ; - } -#Random pattern 45 for SPP scheme -'spp45' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 145 ; - } -#Random pattern 46 for SPP scheme -'spp46' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 146 ; - } -#Random pattern 47 for SPP scheme -'spp47' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 147 ; - } -#Random pattern 48 for SPP scheme -'spp48' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 148 ; - } -#Random pattern 49 for SPP scheme -'spp49' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 149 ; - } -#Random pattern 50 for SPP scheme -'spp50' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 150 ; - } -#Cosine of solar zenith angle -'uvcossza' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -#UV biologically effective dose -'uvbed' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -#UV biologically effective dose clear-sky -'uvbedcs' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -#Profile of optical thickness at 340 nm -'aot340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -#Source/gain of sulphate aerosol -'aersrcsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -#Dry deposition of sulphate aerosol -'aerddpsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -#Sedimentation of sulphate aerosol -'aersdmsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -#Negative fixer of sulphate aerosol -'aerngtsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'aermsssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -#Sulphate aerosol optical depth -'aerodsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Asymmetry factor at 340 nm -'asymmetry340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Asymmetry factor at 355 nm -'asymmetry355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Asymmetry factor at 380 nm -'asymmetry380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Asymmetry factor at 400 nm -'asymmetry400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Asymmetry factor at 440 nm -'asymmetry440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Asymmetry factor at 469 nm -'asymmetry469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Asymmetry factor at 500 nm -'asymmetry500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Asymmetry factor at 532 nm -'asymmetry532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Asymmetry factor at 550 nm -'asymmetry550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Asymmetry factor at 645 nm -'asymmetry645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Asymmetry factor at 670 nm -'asymmetry670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Asymmetry factor at 800 nm -'asymmetry800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Asymmetry factor at 858 nm -'asymmetry858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Asymmetry factor at 865 nm -'asymmetry865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Asymmetry factor at 1020 nm -'asymmetry1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Asymmetry factor at 1064 nm -'asymmetry1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Asymmetry factor at 1240 nm -'asymmetry1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Asymmetry factor at 1640 nm -'asymmetry1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Asymmetry factor at 2130 nm -'asymmetry2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'aersrcnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Source/gain of coarse-mode nitrate aerosol -'aersrcnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Dry deposition of fine-mode nitrate aerosol -'aerddpnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'aerddpnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Sedimentation of fine-mode nitrate aerosol -'aersdmnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'aersdmnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'aerwdlnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'aerwdlnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'aerwdcnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'aerwdcnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Negative fixer of fine-mode nitrate aerosol -'aerngtnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'aerngtnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'aermssnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'aermssnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'aerodnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 65534 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'aerodnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfSizeInterval = 255 ; - aerosolType = 65533 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - } -#Source/gain of ammonium aerosol -'aersrcam' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Negative fixer of ammonium aerosol -'aerngtam' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Experimental product -'p1.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'p2.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'p3.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'p4.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'p5.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'p6.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'p7.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'p8.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'p9.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'p10.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'p11.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'p12.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'p13.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'p14.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'p15.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'p16.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'p17.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'p18.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'p19.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'p20.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'p21.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'p22.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'p23.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'p24.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'p25.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'p26.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'p27.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'p28.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'p29.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'p30.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'p31.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'p32.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'p33.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'p34.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'p35.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'p36.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'p37.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'p38.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'p39.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'p40.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'p41.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'p42.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'p43.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'p44.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'p45.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'p46.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'p47.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'p48.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'p49.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'p50.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'p51.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'p52.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'p53.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'p54.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'p55.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'p57.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'p58.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'p59.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'p60.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'p61.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'p62.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'p63.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'p64.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'p65.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'p66.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'p67.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'p68.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'p69.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'p70.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'p71.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'p72.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'p73.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'p74.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'p75.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'p76.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'p77.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'p78.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'p79.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'p121.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'p122.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'p123.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'p124.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'p125.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'p126.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'p127.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'p128.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'p129.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'p130.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'p131.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'p132.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'p133.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'p134.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'p135.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'p136.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'p137.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'p138.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'p139.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'p140.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'p141.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'p142.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'p143.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'p144.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'p145.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'p146.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'p147.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'p148.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'p149.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'p150.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'p151.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'p152.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'p153.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'p154.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'p155.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'p156.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'p157.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'p158.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'p159.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'p160.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'p161.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'p162.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'p163.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'p164.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'p165.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'p166.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'p167.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'p168.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'p169.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'p170.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'p171.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'p172.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'p173.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'p174.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'p175.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'p176.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'p177.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'p178.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'p179.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'p180.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'p181.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'p182.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'p183.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'p184.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'p185.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'p186.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'p187.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'p188.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'p189.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'p190.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'p191.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'p192.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'p193.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'p194.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'p195.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'p196.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'p197.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'p198.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'p199.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'p200.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'p201.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'p202.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'p203.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'p204.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'p205.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'p206.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'p207.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'p208.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'p209.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'p210.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'p211.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'p212.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'p213.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'p214.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'p215.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'p216.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'p217.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'p218.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'p219.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'p220.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'p221.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'p222.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'p223.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'p224.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'p225.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'p226.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'p227.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'p228.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'p229.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'p230.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'p231.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'p232.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'p233.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'p234.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'p235.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'p236.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'p237.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'p238.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'p239.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'p240.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'p241.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'p242.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'p243.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'p244.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'p245.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'p246.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'p247.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'p248.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'p249.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'p250.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'p251.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'p252.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'p253.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'p254.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'p255.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'ch4_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'hno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'par' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'c2h4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'ole' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'ald2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'rooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'onit' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'c5h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'dms' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'nh4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'msa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'o3s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'pb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'ho2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'ho2no2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'ror' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'rxpar' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'xo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'nh2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'psc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'ch3oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'hcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'mcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'c2h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'c2h5oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'c3h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'c3h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'c10h16' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'ispd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'no3_a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'ch3coch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'aco2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'hypropo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Carbon dioxide (chemistry) -'co2_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 57 ; - } -#Nitrous oxide (chemistry) -'n2o_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 58 ; - } -#Water vapour (chemistry) -'h2o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 59 ; - } -#Oxygen -'o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 60 ; - } -#Singlet oxygen -'o2_1s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 61 ; - } -#Singlet delta oxygen -'o2_1d' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 62 ; - } -#Chlorine dioxide -'oclo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'clono2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'hocl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Chlorine -'cl2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 66 ; - } -#Nitryl chloride -'clno2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 67 ; - } -#Hydrogen bromide -'hbr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Dichlorine dioxide -'cl2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 69 ; - } -#Hypobromous acid -'hobr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Trichlorofluoromethane -'cfc11' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 71 ; - } -#Dichlorodifluoromethane -'cfc12' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 72 ; - } -#Trichlorotrifluoroethane -'cfc113' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 73 ; - } -#Dichlorotetrafluoroethane -'cfc114' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 74 ; - } -#Chloropentafluoroethane -'cfc115' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 75 ; - } -#Tetrachloromethane -'ccl4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 76 ; - } -#Methyl chloroform -'ch3ccl3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 77 ; - } -#Methyl chloride -'ch3cl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Chlorodifluoromethane -'hcfc22' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 79 ; - } -#Methyl bromide -'ch3br' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Dibromodifluoromethane -'ha1202' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 81 ; - } -#Bromochlorodifluoromethane -'ha1211' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 82 ; - } -#Trifluorobromomethane -'ha1301' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 83 ; - } -#Cbrf2cbrf2 -'ha2402' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 84 ; - } -#Sulfuric acid -'h2so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'hono' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Alkanes low oh rate -'hc3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 87 ; - } -#Alkanes med oh rate -'hc5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 88 ; - } -#Alkanes high oh rate -'hc8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 89 ; - } -#Terminal alkenes -'olt' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 90 ; - } -#Internal alkenes -'oli' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 91 ; - } -#Ethylperoxy radical -'c2h5o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 92 ; - } -#Butadiene -'dien' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 93 ; - } -#Ethyl hydroperoxide -'c2h5ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 94 ; - } -#A-pinene cyclic terpenes -'api' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 95 ; - } -#Acetic acid -'ch3cooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#D-limonene cyclic diene -'lim' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 97 ; - } -#Acetaldehyde -'ch3cho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 98 ; - } -#Toluene and less reactive aromatics -'tol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 99 ; - } -#Xylene and more reactive aromatics -'xyl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 100 ; - } -#Glycolaldehyde -'glyald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 101 ; - } -#Cresol -'cresol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 102 ; - } -#Acetaldehyde and higher -'ald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 103 ; - } -#Peracetic acid -'ch3coooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 104 ; - } -#Ketones -'ket' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 105 ; - } -#Hoch2ch2o2 -'eo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 106 ; - } -#Glyoxal -'glyoxal' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 107 ; - } -#Hoch2ch2o -'eo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 108 ; - } -#Unsaturated dicarbonyls -'dcb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 109 ; - } -#Methacrolein -'macr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 110 ; - } -#Unsaturated hydroxy dicarbonyl -'udd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 111 ; - } -#Isopropyldioxidanyl -'c3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 112 ; - } -#Hydroxy ketone -'hket' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 113 ; - } -#Isopropyl hydroperoxide -'c3h7ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 114 ; - } -#C3h6oho2 -'po2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 115 ; - } -#C3h6ohooh -'pooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 116 ; - } -#Higher organic peroxides -'op2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 117 ; - } -#Hydroxyacetone -'hyac' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 118 ; - } -#Peroxyacetic acid -'paa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 119 ; - } -#Ch3coch2o2 -'ro2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 120 ; - } -#Peroxy radical from c2h6 -'ethp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 121 ; - } -#Peroxy radical from hc3 -'hc3p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 122 ; - } -#Peroxy radical from hc5 -'hc5p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 123 ; - } -#Lumped alkenes -'bigene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 124 ; - } -#Peroxy radical from hc8 -'hc8p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 125 ; - } -#Lumped alkanes -'bigalk' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 126 ; - } -#Peroxy radical from c2h4 -'etep' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 127 ; - } -#C4h8o -'mek' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 128 ; - } -#Peroxy radical from terminal alkenes -'oltp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 129 ; - } -#C4h9o3 -'eneo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 130 ; - } -#Peroxy radical from internal alkenes -'olip' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 131 ; - } -#Ch3coch(oo)ch3 -'meko2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 132 ; - } -#Peroxy radical from c5h8 -'isopo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 133 ; - } -#Ch3coch(ooh)ch3 -'mekooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 134 ; - } -#Peroxy radical from a-pinene cyclic terpenes -'apip' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 135 ; - } -#Ch2=c(ch3)co3 -'mco3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 136 ; - } -#Peroxy radical from d-limonene cyclic diene -'limp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 137 ; - } -#Methylvinylketone -'mvk' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 138 ; - } -#Phenoxy radical -'pho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 139 ; - } -#Peroxy radical from toluene and less reactive aromatics -'tolp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 140 ; - } -#Ch3c(o)ch(oo)ch2oh -'macro2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 141 ; - } -#Peroxy radical from xylene and more reactive aromatics -'xylp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 142 ; - } -#H3c(o)ch(ooh)ch2oh -'macrooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 143 ; - } -#Peroxy radical from cresol -'cslp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 144 ; - } -#Unsaturated pans -'mpan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 145 ; - } -#Unsaturated acyl peroxy radical -'tco3_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 146 ; - } -#Peroxy radical from ketones -'ketp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 147 ; - } -#C5h11o2 -'alko2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 148 ; - } -#No3-alkenes adduct reacting to form carbonitrates -'olnn' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 149 ; - } -#C5h11ooh -'alkooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 150 ; - } -#No3-alkenes adduct reacting via decomposition -'olnd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 151 ; - } -#Hoch2c(ch3)=chcho -'bigald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 152 ; - } -#C5h6o2 -'hydrald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 153 ; - } -#Trop sulfuric acid -'sulf' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 154 ; - } -#Oxides -'ox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 155 ; - } -#Ch2chc(ch3)(oo)ch2ono2 -'isopno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 156 ; - } -#C3 organic nitrate -'onitr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 157 ; - } -#Chlorine oxides -'clox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 158 ; - } -#Bromine oxides -'brox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 159 ; - } -#Hoch2c(ooh)(ch3)chchoh -'xooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 160 ; - } -#Hoch2c(ooh)(ch3)ch=ch2 -'isopooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 161 ; - } -#Lumped aromatics -'toluene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 162 ; - } -#Dimethyl sulfoxyde -'dmso' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 163 ; - } -#C7h9o5 -'tolo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 164 ; - } -#C7h10o5 -'tolooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 165 ; - } -#Hydrogensulfide -'h2s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 166 ; - } -#C7h10o6 -'xoh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 167 ; - } -#All nitrogen oxides -'noy' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 168 ; - } -#Chlorine family -'cly' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 169 ; - } -#C10h16(oh)(oo) -'terpo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 170 ; - } -#Bromine family -'bry' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 171 ; - } -#C10h18o3 -'terpooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 172 ; - } -#Nitrogen atom -'n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 173 ; - } -#Chlorine monoxide -'clo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Chlorine atom -'cl_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 175 ; - } -#Bromine monoxide -'bro' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Hydrogen atom -'h_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 177 ; - } -#Methyl group -'ch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 178 ; - } -#Aromatic-ho from toluene and less reactive aromatics -'addt' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 179 ; - } -#Aromatic-ho from xylene and more reactive aromatics -'addx' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 180 ; - } -#Ammonium nitrate -'nh4no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 181 ; - } -#Aromatic-ho from csl -'addc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 182 ; - } -#Secondary organic aerosol type 1 -'soa1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 183 ; - } -#Secondary organic aerosol type 2a -'soa2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 184 ; - } -#Secondary organic aerosol type 2b -'soa2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 185 ; - } -#Condensable gas type 1 -'sog1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 186 ; - } -#Condensable gas type 2a -'sog2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 187 ; - } -#Condensable gas type 2b -'sog2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 188 ; - } -#Sulfur trioxide -'so3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 189 ; - } -#Carbonyl sulfide -'ocs_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 190 ; - } -#Bromine atom -'br' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 191 ; - } -#Bromine -'br2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 192 ; - } -#Bromine monochloride -'brcl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 193 ; - } -#Bromine nitrate -'brono2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Dibromomethane -'ch2br2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 195 ; - } -#Methoxy radical -'ch3o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 196 ; - } -#Tribromomethane -'chbr3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 197 ; - } -#Asymmetric chlorine dioxide radical -'cloo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 198 ; - } -#Hydrogen -'h2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 199 ; - } -#Hydrogen chloride -'hcl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Formyl radical -'hco' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 201 ; - } -#Hydrogen fluoride -'hf' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 202 ; - } -#Oxygen atom -'o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 203 ; - } -#Excited oxygen atom -'o1d' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 204 ; - } -#Ground state oxygen atom -'o3p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 205 ; - } -#Stratospheric aerosol -'strataer' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 206 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'tc_ch4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'tc_par' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'tc_c2h4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'tc_ole' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'tc_rooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'tc_nh3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'tc_so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'tc_nh4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'tc_pb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'tc_ror' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'tc_nh2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'tc_c2h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'tc_c3h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'tc_c3h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'tc_aco2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Total column of carbon dioxide (chemistry) -'tc_co2_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 57 ; - } -#Total column of nitrous oxide (chemistry) -'tc_n2o_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 58 ; - } -#Total column of water vapour (chemistry) -'tc_h2o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 59 ; - } -#Total column of oxygen -'tc_o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 60 ; - } -#Total column of singlet oxygen -'tc_o2_1s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 61 ; - } -#Total column of singlet delta oxygen -'tc_o2_1d' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 62 ; - } -#Total column of chlorine dioxide -'tc_oclo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'tc_clono2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'tc_hocl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of chlorine -'tc_cl2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 66 ; - } -#Total column of nitryl chloride -'tc_clno2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 67 ; - } -#Total column of hydrogen bromide -'tc_hbr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of dichlorine dioxide -'tc_cl2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 69 ; - } -#Total column of hypobromous acid -'tc_hobr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of trichlorofluoromethane -'tc_cfc11' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 71 ; - } -#Total column of dichlorodifluoromethane -'tc_cfc12' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 72 ; - } -#Total column of trichlorotrifluoroethane -'tc_cfc113' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 73 ; - } -#Total column of dichlorotetrafluoroethane -'tc_cfc114' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 74 ; - } -#Total column of chloropentafluoroethane -'tc_cfc115' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 75 ; - } -#Total column of tetrachloromethane -'tc_ccl4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 76 ; - } -#Total column of methyl chloroform -'tc_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 77 ; - } -#Total column of methyl chloride -'tc_ch3cl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of chlorodifluoromethane -'tc_hcfc22' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 79 ; - } -#Total column of methyl bromide -'tc_ch3br' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of dibromodifluoromethane -'tc_ha1202' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 81 ; - } -#Total column of bromochlorodifluoromethane -'tc_ha1211' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 82 ; - } -#Total column of trifluorobromomethane -'tc_ha1301' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 83 ; - } -#Total column of cbrf2cbrf2 -'tc_ha2402' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 84 ; - } -#Total column of sulfuric acid -'tc_h2so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 85 ; - } -#Total column of nitrous acid -'tc_hono' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of alkanes low oh rate -'tc_hc3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 87 ; - } -#Total column of alkanes med oh rate -'tc_hc5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 88 ; - } -#Total column of alkanes high oh rate -'tc_hc8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 89 ; - } -#Total column of terminal alkenes -'tc_olt' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 90 ; - } -#Total column of internal alkenes -'tc_oli' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 91 ; - } -#Total column of ethylperoxy radical -'tc_c2h5o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 92 ; - } -#Total column of butadiene -'tc_dien' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 93 ; - } -#Total column of ethyl hydroperoxide -'tc_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 94 ; - } -#Total column of a-pinene cyclic terpenes -'tc_api' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 95 ; - } -#Total column of acetic acid -'tc_ch3cooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of d-limonene cyclic diene -'tc_lim' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 97 ; - } -#Total column of acetaldehyde -'tc_ch3cho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 98 ; - } -#Total column of toluene and less reactive aromatics -'tc_tol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 99 ; - } -#Total column of xylene and more reactive aromatics -'tc_xyl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 100 ; - } -#Total column of glycolaldehyde -'tc_glyald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 101 ; - } -#Total column of cresol -'tc_cresol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 102 ; - } -#Total column of acetaldehyde and higher -'tc_ald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 103 ; - } -#Total column of peracetic acid -'tc_ch3coooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 104 ; - } -#Total column of ketones -'tc_ket' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 105 ; - } -#Total column of hoch2ch2o2 -'tc_eo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 106 ; - } -#Total column of glyoxal -'tc_glyoxal' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 107 ; - } -#Total column of hoch2ch2o -'tc_eo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 108 ; - } -#Total column of unsaturated dicarbonyls -'tc_dcb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 109 ; - } -#Total column of methacrolein -'tc_macr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 110 ; - } -#Total column of unsaturated hydroxy dicarbonyl -'tc_udd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 111 ; - } -#Total column of isopropyldioxidanyl -'tc_c3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 112 ; - } -#Total column of hydroxy ketone -'tc_hket' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 113 ; - } -#Total column of isopropyl hydroperoxide -'tc_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 114 ; - } -#Total column of c3h6oho2 -'tc_po2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 115 ; - } -#Total column of c3h6ohooh -'tc_pooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 116 ; - } -#Total column of higher organic peroxides -'tc_op2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 117 ; - } -#Total column of hydroxyacetone -'tc_hyac' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 118 ; - } -#Total column of peroxyacetic acid -'tc_paa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 119 ; - } -#Total column of ch3coch2o2 -'tc_ro2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 120 ; - } -#Total column of peroxy radical from c2h6 -'tc_ethp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 121 ; - } -#Total column of peroxy radical from hc3 -'tc_hc3p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 122 ; - } -#Total column of peroxy radical from hc5 -'tc_hc5p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 123 ; - } -#Total column of lumped alkenes -'tc_bigene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 124 ; - } -#Total column of peroxy radical from hc8 -'tc_hc8p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 125 ; - } -#Total column of lumped alkanes -'tc_bigalk' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 126 ; - } -#Total column of peroxy radical from c2h4 -'tc_etep' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 127 ; - } -#Total column of c4h8o -'tc_mek' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 128 ; - } -#Total column of peroxy radical from terminal alkenes -'tc_oltp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 129 ; - } -#Total column of c4h9o3 -'tc_eneo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 130 ; - } -#Total column of peroxy radical from internal alkenes -'tc_olip' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 131 ; - } -#Total column of ch3coch(oo)ch3 -'tc_meko2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 132 ; - } -#Total column of peroxy radical from c5h8 -'tc_isopo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 133 ; - } -#Total column of ch3coch(ooh)ch3 -'tc_mekooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 134 ; - } -#Total column of peroxy radical from a-pinene cyclic terpenes -'tc_apip' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 135 ; - } -#Total column of ch2=c(ch3)co3 -'tc_mco3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 136 ; - } -#Total column of peroxy radical from d-limonene cyclic diene -'tc_limp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 137 ; - } -#Total column of methylvinylketone -'tc_mvk' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 138 ; - } -#Total column of phenoxy radical -'tc_pho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 139 ; - } -#Total column of peroxy radical from toluene and less reactive aromatics -'tc_tolp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 140 ; - } -#Total column of ch3c(o)ch(oo)ch2oh -'tc_macro2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 141 ; - } -#Total column of peroxy radical from xylene and more reactive aromatics -'tc_xylp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 142 ; - } -#Total column of h3c(o)ch(ooh)ch2oh -'tc_macrooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 143 ; - } -#Total column of peroxy radical from cresol -'tc_cslp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 144 ; - } -#Total column of unsaturated pans -'tc_mpan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 145 ; - } -#Total column of unsaturated acyl peroxy radical -'tc_tco3_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 146 ; - } -#Total column of peroxy radical from ketones -'tc_ketp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 147 ; - } -#Total column of c5h11o2 -'tc_alko2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 148 ; - } -#Total column of no3-alkenes adduct reacting to form carbonitrates -'tc_olnn' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 149 ; - } -#Total column of c5h11ooh -'tc_alkooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 150 ; - } -#Total column of no3-alkenes adduct reacting via decomposition -'tc_olnd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 151 ; - } -#Total column of hoch2c(ch3)=chcho -'tc_bigald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 152 ; - } -#Total column of c5h6o2 -'tc_hydrald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 153 ; - } -#Total column of trop sulfuric acid -'tc_sulf' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 154 ; - } -#Total column of oxides -'tc_ox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 155 ; - } -#Total column of ch2chc(ch3)(oo)ch2ono2 -'tc_isopno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 156 ; - } -#Total column of c3 organic nitrate -'tc_onitr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 157 ; - } -#Total column of chlorine oxides -'tc_clox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 158 ; - } -#Total column of bromine oxides -'tc_brox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 159 ; - } -#Total column of hoch2c(ooh)(ch3)chchoh -'tc_xooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 160 ; - } -#Total column of hoch2c(ooh)(ch3)ch=ch2 -'tc_isopooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 161 ; - } -#Total column of lumped aromatics -'tc_toluene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 162 ; - } -#Total column of dimethyl sulfoxyde -'tc_dmso' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 163 ; - } -#Total column of c7h9o5 -'tc_tolo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 164 ; - } -#Total column of c7h10o5 -'tc_tolooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 165 ; - } -#Total column of hydrogensulfide -'tc_h2s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 166 ; - } -#Total column of c7h10o6 -'tc_xoh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 167 ; - } -#Total column of all nitrogen oxides -'tc_noy' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 168 ; - } -#Total column of chlorine family -'tc_cly' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 169 ; - } -#Total column of c10h16(oh)(oo) -'tc_terpo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 170 ; - } -#Total column of bromine family -'tc_bry' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 171 ; - } -#Total column of c10h18o3 -'tc_terpooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 172 ; - } -#Total column of nitrogen atom -'tc_n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 173 ; - } -#Total column of chlorine monoxide -'tc_clo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of chlorine atom -'tc_cl_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 175 ; - } -#Total column of bromine monoxide -'tc_bro' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of hydrogen atom -'tc_h_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 177 ; - } -#Total column of methyl group -'tc_ch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 178 ; - } -#Total column of aromatic-ho from toluene and less reactive aromatics -'tc_addt' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 179 ; - } -#Total column of aromatic-ho from xylene and more reactive aromatics -'tc_addx' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 180 ; - } -#Total column of ammonium nitrate -'tc_nh4no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 181 ; - } -#Total column of aromatic-ho from csl -'tc_addc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 182 ; - } -#Total column of secondary organic aerosol type 1 -'tc_soa1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 183 ; - } -#Total column of secondary organic aerosol type 2a -'tc_soa2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 184 ; - } -#Total column of secondary organic aerosol type 2b -'tc_soa2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 185 ; - } -#Total column of condensable gas type 1 -'tc_sog1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 186 ; - } -#Total column of condensable gas type 2a -'tc_sog2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 187 ; - } -#Total column of condensable gas type 2b -'tc_sog2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 188 ; - } -#Total column of sulfur trioxide -'tc_so3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 189 ; - } -#Total column of carbonyl sulfide -'tc_ocs_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 190 ; - } -#Total column of bromine atom -'tc_br' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 191 ; - } -#Total column of bromine -'tc_br2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 192 ; - } -#Total column of bromine monochloride -'tc_brcl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 193 ; - } -#Total column of bromine nitrate -'tc_brono2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of dibromomethane -'tc_ch2br2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 195 ; - } -#Total column of methoxy radical -'tc_ch3o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 196 ; - } -#Total column of tribromomethane -'tc_chbr3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 197 ; - } -#Total column of asymmetric chlorine dioxide radical -'tc_cloo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 198 ; - } -#Total column of hydrogen -'tc_h2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 199 ; - } -#Total column of hydrogen chloride -'tc_hcl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Total column of formyl radical -'tc_hco' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 201 ; - } -#Total column of hydrogen fluoride -'tc_hf' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 202 ; - } -#Total column of oxygen atom -'tc_o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 203 ; - } -#Total column of excited oxygen atom -'tc_o1d' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 204 ; - } -#Total column of ground state oxygen atom -'tc_o3p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 205 ; - } -#Total column of stratospheric aerosol -'tc_strataer' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 206 ; - } -#Ozone emissions -'e_go3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'e_ch4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'e_par' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'e_c2h4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'e_ole' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'e_rooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'e_nh3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'e_so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'e_nh4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'e_ra' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'e_pb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'e_ror' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'e_nh2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'e_c2h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'e_c3h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'e_c3h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'e_aco2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Emissions of carbon dioxide (chemistry) -'e_co2_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 57 ; - } -#Emissions of nitrous oxide (chemistry) -'e_n2o_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 58 ; - } -#Emissions of water vapour (chemistry) -'e_h2o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 59 ; - } -#Emissions of oxygen -'e_o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 60 ; - } -#Emissions of singlet oxygen -'e_o2_1s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 61 ; - } -#Emissions of singlet delta oxygen -'e_o2_1d' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 62 ; - } -#Emissions of chlorine dioxide -'e_oclo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 63 ; - } -#Emissions of chlorine nitrate -'e_clono2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 64 ; - } -#Emissions of hypochlorous acid -'e_hocl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 65 ; - } -#Emissions of chlorine -'e_cl2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 66 ; - } -#Emissions of nitryl chloride -'e_clno2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 67 ; - } -#Emissions of hydrogen bromide -'e_hbr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 68 ; - } -#Emissions of dichlorine dioxide -'e_cl2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 69 ; - } -#Emissions of hypobromous acid -'e_hobr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 70 ; - } -#Emissions of trichlorofluoromethane -'e_cfc11' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 71 ; - } -#Emissions of dichlorodifluoromethane -'e_cfc12' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 72 ; - } -#Emissions of trichlorotrifluoroethane -'e_cfc113' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 73 ; - } -#Emissions of dichlorotetrafluoroethane -'e_cfc114' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 74 ; - } -#Emissions of chloropentafluoroethane -'e_cfc115' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 75 ; - } -#Emissions of tetrachloromethane -'e_ccl4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 76 ; - } -#Emissions of methyl chloroform -'e_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 77 ; - } -#Emissions of methyl chloride -'e_ch3cl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 78 ; - } -#Emissions of chlorodifluoromethane -'e_hcfc22' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 79 ; - } -#Emissions of methyl bromide -'e_ch3br' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 80 ; - } -#Emissions of dibromodifluoromethane -'e_ha1202' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 81 ; - } -#Emissions of bromochlorodifluoromethane -'e_ha1211' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 82 ; - } -#Emissions of trifluorobromomethane -'e_ha1301' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 83 ; - } -#Emissions of cbrf2cbrf2 -'e_ha2402' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 84 ; - } -#Emissions of sulfuric acid -'e_h2so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 85 ; - } -#Emissions of nitrous acid -'e_hono' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 86 ; - } -#Emissions of alkanes low oh rate -'e_hc3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 87 ; - } -#Emissions of alkanes med oh rate -'e_hc5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 88 ; - } -#Emissions of alkanes high oh rate -'e_hc8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 89 ; - } -#Emissions of terminal alkenes -'e_olt' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 90 ; - } -#Emissions of internal alkenes -'e_oli' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 91 ; - } -#Emissions of ethylperoxy radical -'e_c2h5o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 92 ; - } -#Emissions of butadiene -'e_dien' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 93 ; - } -#Emissions of ethyl hydroperoxide -'e_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 94 ; - } -#Emissions of a-pinene cyclic terpenes -'e_api' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 95 ; - } -#Emissions of acetic acid -'e_ch3cooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 96 ; - } -#Emissions of d-limonene cyclic diene -'e_lim' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 97 ; - } -#Emissions of acetaldehyde -'e_ch3cho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 98 ; - } -#Emissions of toluene and less reactive aromatics -'e_tol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 99 ; - } -#Emissions of xylene and more reactive aromatics -'e_xyl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 100 ; - } -#Emissions of glycolaldehyde -'e_glyald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 101 ; - } -#Emissions of cresol -'e_cresol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 102 ; - } -#Emissions of acetaldehyde and higher -'e_ald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 103 ; - } -#Emissions of peracetic acid -'e_ch3coooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 104 ; - } -#Emissions of ketones -'e_ket' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 105 ; - } -#Emissions of hoch2ch2o2 -'e_eo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 106 ; - } -#Emissions of glyoxal -'e_glyoxal' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 107 ; - } -#Emissions of hoch2ch2o -'e_eo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 108 ; - } -#Emissions of unsaturated dicarbonyls -'e_dcb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 109 ; - } -#Emissions of methacrolein -'e_macr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 110 ; - } -#Emissions of unsaturated hydroxy dicarbonyl -'e_udd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 111 ; - } -#Emissions of isopropyldioxidanyl -'e_c3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 112 ; - } -#Emissions of hydroxy ketone -'e_hket' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 113 ; - } -#Emissions of isopropyl hydroperoxide -'e_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 114 ; - } -#Emissions of c3h6oho2 -'e_po2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 115 ; - } -#Emissions of c3h6ohooh -'e_pooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 116 ; - } -#Emissions of higher organic peroxides -'e_op2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 117 ; - } -#Emissions of hydroxyacetone -'e_hyac' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 118 ; - } -#Emissions of peroxyacetic acid -'e_paa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 119 ; - } -#Emissions of ch3coch2o2 -'e_ro2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 120 ; - } -#Emissions of peroxy radical from c2h6 -'e_ethp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 121 ; - } -#Emissions of peroxy radical from hc3 -'e_hc3p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 122 ; - } -#Emissions of peroxy radical from hc5 -'e_hc5p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 123 ; - } -#Emissions of lumped alkenes -'e_bigene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 124 ; - } -#Emissions of peroxy radical from hc8 -'e_hc8p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 125 ; - } -#Emissions of lumped alkanes -'e_bigalk' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 126 ; - } -#Emissions of peroxy radical from c2h4 -'e_etep' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 127 ; - } -#Emissions of c4h8o -'e_mek' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 128 ; - } -#Emissions of peroxy radical from terminal alkenes -'e_oltp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 129 ; - } -#Emissions of c4h9o3 -'e_eneo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 130 ; - } -#Emissions of peroxy radical from internal alkenes -'e_olip' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 131 ; - } -#Emissions of ch3coch(oo)ch3 -'e_meko2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 132 ; - } -#Emissions of peroxy radical from c5h8 -'e_isopo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 133 ; - } -#Emissions of ch3coch(ooh)ch3 -'e_mekooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 134 ; - } -#Emissions of peroxy radical from a-pinene cyclic terpenes -'e_apip' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 135 ; - } -#Emissions of ch2=c(ch3)co3 -'e_mco3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 136 ; - } -#Emissions of peroxy radical from d-limonene cyclic diene -'e_limp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 137 ; - } -#Emissions of methylvinylketone -'e_mvk' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 138 ; - } -#Emissions of phenoxy radical -'e_pho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 139 ; - } -#Emissions of peroxy radical from toluene and less reactive aromatics -'e_tolp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 140 ; - } -#Emissions of ch3c(o)ch(oo)ch2oh -'e_macro2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 141 ; - } -#Emissions of peroxy radical from xylene and more reactive aromatics -'e_xylp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 142 ; - } -#Emissions of h3c(o)ch(ooh)ch2oh -'e_macrooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 143 ; - } -#Emissions of peroxy radical from cresol -'e_cslp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 144 ; - } -#Emissions of unsaturated pans -'e_mpan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 145 ; - } -#Emissions of unsaturated acyl peroxy radical -'e_tco3_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 146 ; - } -#Emissions of peroxy radical from ketones -'e_ketp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 147 ; - } -#Emissions of c5h11o2 -'e_alko2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 148 ; - } -#Emissions of no3-alkenes adduct reacting to form carbonitrates -'e_olnn' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 149 ; - } -#Emissions of c5h11ooh -'e_alkooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 150 ; - } -#Emissions of no3-alkenes adduct reacting via decomposition -'e_olnd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 151 ; - } -#Emissions of hoch2c(ch3)=chcho -'e_bigald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 152 ; - } -#Emissions of c5h6o2 -'e_hydrald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 153 ; - } -#Emissions of trop sulfuric acid -'e_sulf' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 154 ; - } -#Emissions of oxides -'e_ox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 155 ; - } -#Emissions of ch2chc(ch3)(oo)ch2ono2 -'e_isopno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 156 ; - } -#Emissions of c3 organic nitrate -'e_onitr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 157 ; - } -#Emissions of chlorine oxides -'e_clox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 158 ; - } -#Emissions of bromine oxides -'e_brox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 159 ; - } -#Emissions of hoch2c(ooh)(ch3)chchoh -'e_xooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 160 ; - } -#Emissions of hoch2c(ooh)(ch3)ch=ch2 -'e_isopooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 161 ; - } -#Emissions of lumped aromatics -'e_toluene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 162 ; - } -#Emissions of dimethyl sulfoxyde -'e_dmso' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 163 ; - } -#Emissions of c7h9o5 -'e_tolo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 164 ; - } -#Emissions of c7h10o5 -'e_tolooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 165 ; - } -#Emissions of hydrogensulfide -'e_h2s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 166 ; - } -#Emissions of c7h10o6 -'e_xoh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 167 ; - } -#Emissions of all nitrogen oxides -'e_noy' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 168 ; - } -#Emissions of chlorine family -'e_cly' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 169 ; - } -#Emissions of c10h16(oh)(oo) -'e_terpo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 170 ; - } -#Emissions of bromine family -'e_bry' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 171 ; - } -#Emissions of c10h18o3 -'e_terpooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 172 ; - } -#Emissions of nitrogen atom -'e_n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 173 ; - } -#Emissions of chlorine monoxide -'e_clo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 174 ; - } -#Emissions of chlorine atom -'e_cl_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 175 ; - } -#Emissions of bromine monoxide -'e_bro' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 176 ; - } -#Emissions of hydrogen atom -'e_h_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 177 ; - } -#Emissions of methyl group -'e_ch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 178 ; - } -#Emissions of aromatic-ho from toluene and less reactive aromatics -'e_addt' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 179 ; - } -#Emissions of aromatic-ho from xylene and more reactive aromatics -'e_addx' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 180 ; - } -#Emissions of ammonium nitrate -'e_nh4no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 181 ; - } -#Emissions of aromatic-ho from csl -'e_addc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 182 ; - } -#Emissions of secondary organic aerosol type 1 -'e_soa1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 183 ; - } -#Emissions of secondary organic aerosol type 2a -'e_soa2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 184 ; - } -#Emissions of secondary organic aerosol type 2b -'e_soa2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 185 ; - } -#Emissions of condensable gas type 1 -'e_sog1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 186 ; - } -#Emissions of condensable gas type 2a -'e_sog2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 187 ; - } -#Emissions of condensable gas type 2b -'e_sog2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 188 ; - } -#Emissions of sulfur trioxide -'e_so3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 189 ; - } -#Emissions of carbonyl sulfide -'e_ocs_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 190 ; - } -#Emissions of bromine atom -'e_br' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 191 ; - } -#Emissions of bromine -'e_br2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 192 ; - } -#Emissions of bromine monochloride -'e_brcl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 193 ; - } -#Emissions of bromine nitrate -'e_brono2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 194 ; - } -#Emissions of dibromomethane -'e_ch2br2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 195 ; - } -#Emissions of methoxy radical -'e_ch3o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 196 ; - } -#Emissions of tribromomethane -'e_chbr3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 197 ; - } -#Emissions of asymmetric chlorine dioxide radical -'e_cloo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 198 ; - } -#Emissions of hydrogen -'e_h2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 199 ; - } -#Emissions of hydrogen chloride -'e_hcl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 200 ; - } -#Emissions of formyl radical -'e_hco' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 201 ; - } -#Emissions of hydrogen fluoride -'e_hf' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 202 ; - } -#Emissions of oxygen atom -'e_o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 203 ; - } -#Emissions of excited oxygen atom -'e_o1d' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 204 ; - } -#Emissions of ground state oxygen atom -'e_o3p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 205 ; - } -#Emissions of stratospheric aerosol -'e_strataer' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 206 ; - } -#Wildfire flux of paraffins -'parfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 207 ; - } -#Wildfire flux of olefines -'olefire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 208 ; - } -#Wildfire flux of aldehydes -'ald2fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 209 ; - } -#Wildfire flux of ketones -'ketfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 210 ; - } -#Wildfire flux of f a-pinene cyclic terpenes -'apifire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 211 ; - } -#Wildfire flux of toluene less reactive aromatics -'tolfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 212 ; - } -#Wildfire flux of xylene more reactive aromatics -'xylfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 213 ; - } -#Wildfire flux of d-limonene cyclic diene -'limfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 214 ; - } -#Wildfire flux of terminal alkenes -'oltfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 215 ; - } -#Wildfire flux of alkanes low oh rate -'hc3fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 216 ; - } -#Wildfire flux of alkanes med oh rate -'hc5fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 217 ; - } -#Wildfire flux of alkanes high oh rate -'hc8fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 218 ; - } -#Wildfire flux of hydrogen cyanide -'hcnfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 219 ; - } -#Wildfire flux of acetonitrile -'ch3cnfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 220 ; - } -#Ozone deposition velocity -'dv_go3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Dry deposition velocity of carbon dioxide (chemistry) -'dv_co2_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 57 ; - } -#Dry deposition velocity of nitrous oxide (chemistry) -'dv_n2o_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 58 ; - } -#Dry deposition velocity of water vapour (chemistry) -'dv_h2o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 59 ; - } -#Dry deposition velocity of oxygen -'dv_o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 60 ; - } -#Dry deposition velocity of singlet oxygen -'dv_o2_1s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 61 ; - } -#Dry deposition velocity of singlet delta oxygen -'dv_o2_1d' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 62 ; - } -#Dry deposition velocity of chlorine dioxide -'dv_oclo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 63 ; - } -#Dry deposition velocity of chlorine nitrate -'dv_clono2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 64 ; - } -#Dry deposition velocity of hypochlorous acid -'dv_hocl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 65 ; - } -#Dry deposition velocity of chlorine -'dv_cl2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 66 ; - } -#Dry deposition velocity of nitryl chloride -'dv_clno2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 67 ; - } -#Dry deposition velocity of hydrogen bromide -'dv_hbr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 68 ; - } -#Dry deposition velocity of dichlorine dioxide -'dv_cl2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 69 ; - } -#Dry deposition velocity of hypobromous acid -'dv_hobr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 70 ; - } -#Dry deposition velocity of trichlorofluoromethane -'dv_cfc11' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 71 ; - } -#Dry deposition velocity of dichlorodifluoromethane -'dv_cfc12' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 72 ; - } -#Dry deposition velocity of trichlorotrifluoroethane -'dv_cfc113' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 73 ; - } -#Dry deposition velocity of dichlorotetrafluoroethane -'dv_cfc114' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 74 ; - } -#Dry deposition velocity of chloropentafluoroethane -'dv_cfc115' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 75 ; - } -#Dry deposition velocity of tetrachloromethane -'dv_ccl4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 76 ; - } -#Dry deposition velocity of methyl chloroform -'dv_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 77 ; - } -#Dry deposition velocity of methyl chloride -'dv_ch3cl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 78 ; - } -#Dry deposition velocity of chlorodifluoromethane -'dv_hcfc22' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 79 ; - } -#Dry deposition velocity of methyl bromide -'dv_ch3br' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 80 ; - } -#Dry deposition velocity of dibromodifluoromethane -'dv_ha1202' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 81 ; - } -#Dry deposition velocity of bromochlorodifluoromethane -'dv_ha1211' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 82 ; - } -#Dry deposition velocity of trifluorobromomethane -'dv_ha1301' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 83 ; - } -#Dry deposition velocity of cbrf2cbrf2 -'dv_ha2402' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 84 ; - } -#Dry deposition velocity of sulfuric acid -'dv_h2so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 85 ; - } -#Dry deposition velocity of nitrous acid -'dv_hono' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 86 ; - } -#Dry deposition velocity of alkanes low oh rate -'dv_hc3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 87 ; - } -#Dry deposition velocity of alkanes med oh rate -'dv_hc5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 88 ; - } -#Dry deposition velocity of alkanes high oh rate -'dv_hc8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 89 ; - } -#Dry deposition velocity of terminal alkenes -'dv_olt' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 90 ; - } -#Dry deposition velocity of internal alkenes -'dv_oli' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 91 ; - } -#Dry deposition velocity of ethylperoxy radical -'dv_c2h5o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 92 ; - } -#Dry deposition velocity of butadiene -'dv_dien' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 93 ; - } -#Dry deposition velocity of ethyl hydroperoxide -'dv_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 94 ; - } -#Dry deposition velocity of a-pinene cyclic terpenes -'dv_api' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 95 ; - } -#Dry deposition velocity of acetic acid -'dv_ch3cooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 96 ; - } -#Dry deposition velocity of d-limonene cyclic diene -'dv_lim' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 97 ; - } -#Dry deposition velocity of acetaldehyde -'dv_ch3cho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 98 ; - } -#Dry deposition velocity of toluene and less reactive aromatics -'dv_tol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 99 ; - } -#Dry deposition velocity of xylene and more reactive aromatics -'dv_xyl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 100 ; - } -#Dry deposition velocity of glycolaldehyde -'dv_glyald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 101 ; - } -#Dry deposition velocity of cresol -'dv_cresol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 102 ; - } -#Dry deposition velocity of acetaldehyde and higher -'dv_ald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 103 ; - } -#Dry deposition velocity of peracetic acid -'dv_ch3coooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 104 ; - } -#Dry deposition velocity of ketones -'dv_ket' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 105 ; - } -#Dry deposition velocity of hoch2ch2o2 -'dv_eo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 106 ; - } -#Dry deposition velocity of glyoxal -'dv_glyoxal' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 107 ; - } -#Dry deposition velocity of hoch2ch2o -'dv_eo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 108 ; - } -#Dry deposition velocity of unsaturated dicarbonyls -'dv_dcb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 109 ; - } -#Dry deposition velocity of methacrolein -'dv_macr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 110 ; - } -#Dry deposition velocity of unsaturated hydroxy dicarbonyl -'dv_udd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 111 ; - } -#Dry deposition velocity of isopropyldioxidanyl -'dv_c3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 112 ; - } -#Dry deposition velocity of hydroxy ketone -'dv_hket' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 113 ; - } -#Dry deposition velocity of isopropyl hydroperoxide -'dv_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 114 ; - } -#Dry deposition velocity of c3h6oho2 -'dv_po2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 115 ; - } -#Dry deposition velocity of c3h6ohooh -'dv_pooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 116 ; - } -#Dry deposition velocity of higher organic peroxides -'dv_op2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 117 ; - } -#Dry deposition velocity of hydroxyacetone -'dv_hyac' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 118 ; - } -#Dry deposition velocity of peroxyacetic acid -'dv_paa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 119 ; - } -#Dry deposition velocity of ch3coch2o2 -'dv_ro2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 120 ; - } -#Dry deposition velocity of peroxy radical from c2h6 -'dv_ethp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 121 ; - } -#Dry deposition velocity of peroxy radical from hc3 -'dv_hc3p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 122 ; - } -#Dry deposition velocity of peroxy radical from hc5 -'dv_hc5p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 123 ; - } -#Dry deposition velocity of lumped alkenes -'dv_bigene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 124 ; - } -#Dry deposition velocity of peroxy radical from hc8 -'dv_hc8p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 125 ; - } -#Dry deposition velocity of lumped alkanes -'dv_bigalk' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 126 ; - } -#Dry deposition velocity of peroxy radical from c2h4 -'dv_etep' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 127 ; - } -#Dry deposition velocity of c4h8o -'dv_mek' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 128 ; - } -#Dry deposition velocity of peroxy radical from terminal alkenes -'dv_oltp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 129 ; - } -#Dry deposition velocity of c4h9o3 -'dv_eneo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 130 ; - } -#Dry deposition velocity of peroxy radical from internal alkenes -'dv_olip' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 131 ; - } -#Dry deposition velocity of ch3coch(oo)ch3 -'dv_meko2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 132 ; - } -#Dry deposition velocity of peroxy radical from c5h8 -'dv_isopo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 133 ; - } -#Dry deposition velocity of ch3coch(ooh)ch3 -'dv_mekooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 134 ; - } -#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes -'dv_apip' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 135 ; - } -#Dry deposition velocity of ch2=c(ch3)co3 -'dv_mco3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 136 ; - } -#Dry deposition velocity of peroxy radical from d-limonene cyclic diene -'dv_limp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 137 ; - } -#Dry deposition velocity of methylvinylketone -'dv_mvk' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 138 ; - } -#Dry deposition velocity of phenoxy radical -'dv_pho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 139 ; - } -#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics -'dv_tolp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 140 ; - } -#Dry deposition velocity of ch3c(o)ch(oo)ch2oh -'dv_macro2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 141 ; - } -#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics -'dv_xylp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 142 ; - } -#Dry deposition velocity of h3c(o)ch(ooh)ch2oh -'dv_macrooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 143 ; - } -#Dry deposition velocity of peroxy radical from cresol -'dv_cslp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 144 ; - } -#Dry deposition velocity of unsaturated pans -'dv_mpan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 145 ; - } -#Dry deposition velocity of unsaturated acyl peroxy radical -'dv_tco3_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 146 ; - } -#Dry deposition velocity of peroxy radical from ketones -'dv_ketp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 147 ; - } -#Dry deposition velocity of c5h11o2 -'dv_alko2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 148 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates -'dv_olnn' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 149 ; - } -#Dry deposition velocity of c5h11ooh -'dv_alkooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 150 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting via decomposition -'dv_olnd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 151 ; - } -#Dry deposition velocity of hoch2c(ch3)=chcho -'dv_bigald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 152 ; - } -#Dry deposition velocity of c5h6o2 -'dv_hydrald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 153 ; - } -#Dry deposition velocity of trop sulfuric acid -'dv_sulf' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 154 ; - } -#Dry deposition velocity of oxides -'dv_ox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 155 ; - } -#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 -'dv_isopno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 156 ; - } -#Dry deposition velocity of c3 organic nitrate -'dv_onitr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 157 ; - } -#Dry deposition velocity of chlorine oxides -'dv_clox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 158 ; - } -#Dry deposition velocity of bromine oxides -'dv_brox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 159 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh -'dv_xooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 160 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 -'dv_isopooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 161 ; - } -#Dry deposition velocity of lumped aromatics -'dv_toluene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 162 ; - } -#Dry deposition velocity of dimethyl sulfoxyde -'dv_dmso' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 163 ; - } -#Dry deposition velocity of c7h9o5 -'dv_tolo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 164 ; - } -#Dry deposition velocity of c7h10o5 -'dv_tolooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 165 ; - } -#Dry deposition velocity of hydrogensulfide -'dv_h2s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 166 ; - } -#Dry deposition velocity of c7h10o6 -'dv_xoh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 167 ; - } -#Dry deposition velocity of all nitrogen oxides -'dv_noy' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 168 ; - } -#Dry deposition velocity of chlorine family -'dv_cly' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 169 ; - } -#Dry deposition velocity of c10h16(oh)(oo) -'dv_terpo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 170 ; - } -#Dry deposition velocity of bromine family -'dv_bry' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 171 ; - } -#Dry deposition velocity of c10h18o3 -'dv_terpooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 172 ; - } -#Dry deposition velocity of nitrogen atom -'dv_n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 173 ; - } -#Dry deposition velocity of chlorine monoxide -'dv_clo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 174 ; - } -#Dry deposition velocity of chlorine atom -'dv_cl_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 175 ; - } -#Dry deposition velocity of bromine monoxide -'dv_bro' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 176 ; - } -#Dry deposition velocity of hydrogen atom -'dv_h_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 177 ; - } -#Dry deposition velocity of methyl group -'dv_ch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 178 ; - } -#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics -'dv_addt' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 179 ; - } -#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics -'dv_addx' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 180 ; - } -#Dry deposition velocity of ammonium nitrate -'dv_nh4no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 181 ; - } -#Dry deposition velocity of aromatic-ho from csl -'dv_addc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 182 ; - } -#Dry deposition velocity of secondary organic aerosol type 1 -'dv_soa1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 183 ; - } -#Dry deposition velocity of secondary organic aerosol type 2a -'dv_soa2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 184 ; - } -#Dry deposition velocity of secondary organic aerosol type 2b -'dv_soa2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 185 ; - } -#Dry deposition velocity of condensable gas type 1 -'dv_sog1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 186 ; - } -#Dry deposition velocity of condensable gas type 2a -'dv_sog2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 187 ; - } -#Dry deposition velocity of condensable gas type 2b -'dv_sog2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 188 ; - } -#Dry deposition velocity of sulfur trioxide -'dv_so3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 189 ; - } -#Dry deposition velocity of carbonyl sulfide -'dv_ocs_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 190 ; - } -#Dry deposition velocity of bromine atom -'dv_br' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 191 ; - } -#Dry deposition velocity of bromine -'dv_br2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 192 ; - } -#Dry deposition velocity of bromine monochloride -'dv_brcl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 193 ; - } -#Dry deposition velocity of bromine nitrate -'dv_brono2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 194 ; - } -#Dry deposition velocity of dibromomethane -'dv_ch2br2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 195 ; - } -#Dry deposition velocity of methoxy radical -'dv_ch3o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 196 ; - } -#Dry deposition velocity of tribromomethane -'dv_chbr3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 197 ; - } -#Dry deposition velocity of asymmetric chlorine dioxide radical -'dv_cloo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 198 ; - } -#Dry deposition velocity of hydrogen -'dv_h2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 199 ; - } -#Dry deposition velocity of hydrogen chloride -'dv_hcl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 200 ; - } -#Dry deposition velocity of formyl radical -'dv_hco' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 201 ; - } -#Dry deposition velocity of hydrogen fluoride -'dv_hf' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 202 ; - } -#Dry deposition velocity of oxygen atom -'dv_o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 203 ; - } -#Dry deposition velocity of excited oxygen atom -'dv_o1d' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 204 ; - } -#Dry deposition velocity of ground state oxygen atom -'dv_o3p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 205 ; - } -#Dry deposition velocity of stratospheric aerosol -'dv_strataer' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 206 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'cbh' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Horizontal visibility -'hvis' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - } -#10 metre wind gust in the last 3 hours -'fg310' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'swi1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of zero-degree wet-bulb temperature -'hwbt0' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of one-degree wet-bulb temperature -'hwbt1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'gppbfas' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'recbfas' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'aco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'aco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'aco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'fco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'fco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'fco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total column rain water -'tcrw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'tcsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'ccf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'stf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'swv' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'ist' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Evaporation from the top of canopy -'evatc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 100 ; - } -#Evaporation from bare soil -'evabs' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 101 ; - } -#Evaporation from open water surfaces excluding oceans -'evaow' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 102 ; - } -#Evaporation from vegetation transpiration -'evavt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 103 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'tccsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#Irrigation fraction -'irrfr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'pev' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'irr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'tcclw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'strfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'clgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'asngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'rsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'sltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'fggrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'presgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'obctgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'p63.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'p64.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'p65.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'p66.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'p67.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'p70.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'p71.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'p78.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'p79.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'fg6grd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'p125.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'bvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'zgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'qgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'spgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'tcwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'sdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'chnkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'ghgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'rgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'ugrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'vgrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'grd2t' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'grd2d' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'srgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'algrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'egrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'rogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'sigrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'icegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'tsru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'ttru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'clw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'cf' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'mvv' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'t2ag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'t2ag1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'t2ag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'t2alm1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'t2alm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'saip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'whip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'g10p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'capep' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'sp10g10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'sp10g15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre wind gust of at least 25 m/s -'fg10g25' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre temperature less than 273.15 K -'t2l273' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 2 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - probabilityType = 3 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 4 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'zp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'tap' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'tccp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'sp10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'t2p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'tpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'swhp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'mwpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'p255.131' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'t2plm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'t2plm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'t2pl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'t2pl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'t2pl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'t2pg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'t2pg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'t2pg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'t2pg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'t2pg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'sp10g10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'sp10g15' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'sp10g20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'sp10g35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'sp10g50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'gp10g20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'gp10g35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'gp10g50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'gp10g75' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'gp10g100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'hmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'wmb' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'wdw' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak wave period -'pp1d' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Peak wave period -'pp1d' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'cdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'mdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'shts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'mdts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'mpts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'sdhs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'mdwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'msqs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'wind' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'awh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'arrc' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'dwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'d2sp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'d2fd' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'bfi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'wsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.140' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'ocs' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'ocpd' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'p133.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'p134.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'ocw' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'uv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'ut' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'vt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'uu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'vv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'p144.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'p145.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'p146.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'p147.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'p148.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'p153.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'p155.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'p168.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'p169.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'p170.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'p172.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'p173.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'p180.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'p181.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'p182.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'p183.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'p255.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'p128.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Sea water potential temperature -'thetao' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'so' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'wo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'vvs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'vdf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'dep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sea water sigma theta -'sigmat' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'uv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'ut' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'vt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'uu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'vv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level previous timestep -'sl_1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Ocean barotropic stream function -'stfbarot' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'sh' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'crl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'p152.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#Surface downward eastward stress -'taueo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'tauno' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'asr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'pme' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'sst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'shf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'hfc' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'umax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'smax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Layer Thickness at scalar points -'ldp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'pti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'ptae' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'bpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'apt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'ptbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'as' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'sali' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'sale' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'bsal' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'salbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'fgbt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'fgbs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'bpa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'fgbp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'pta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'p255.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'fgrea10' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'pwcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Large-scale precipitation -'lsprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'sfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'ghrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'rrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'ewssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'nsssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'erea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'srcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'vegrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'rorea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'vurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'vvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'wurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'csfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'lsfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'ccrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'falrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'wsrea10' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'moflrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'p249.160' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'hsdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'p51.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'vima' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'vit' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'viwv' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'vilw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'viiw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'vioz' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'vike' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'vithe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'vipie' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'vipile' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'vitoe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'viec' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'vimae' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'viman' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'vikee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'viken' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'vithen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'vige' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'vign' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'vitoee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'vitoen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'vioze' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'viozn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'vimad' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'viked' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'vithed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'viwvd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'vigd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'vitoed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'viozd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'srta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'trta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'srtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'trtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'umfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'dmfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'udra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'ddra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'tpfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'tdcha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'ttpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'qtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'utpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'vtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'p206.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'p207.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'p208.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'p209.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'p210.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'p211.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'p212.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'p213.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'p214.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'p215.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'p216.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'p217.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'p218.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'p219.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'p220.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'p221.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'p222.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'p223.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'p224.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'p225.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'p226.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'p227.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'p229.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'p230.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'p231.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'p232.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'p233.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'p255.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'tsw' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'strfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'vpota' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'pta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'cla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'asna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'rsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'slta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'esa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'smlta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'sdura' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'fga10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'monta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mean2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'pva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'obcta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'bva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'za' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'qa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'spa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'tcwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'voa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'sda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'chnka' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'snra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'tnra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'gha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'ra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'blha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'ua10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'va10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'t2a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'d2a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'sra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'ala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'ea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'hcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'roa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'sia10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'sia' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'tpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'skta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'fala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'cca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'iaa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'esrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'p45.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'p48.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Mean large-scale precipitation fraction -'mlspfr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Mean large-scale precipitation rate -'mlsprt' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate -'cprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Mean total snowfall rate -'mtsfr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Mean surface sensible heat flux -'msshfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Mean surface latent heat flux -'mslhfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Mean surface net radiation flux -'msnrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Mean short-wave heating rate -'mswhr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Mean long-wave heating rate -'mlwhr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Mean surface downward solar radiation flux -'msdsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Mean surface downward thermal radiation flux -'msdtrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Mean surface net solar radiation flux -'msnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Mean surface net thermal radiation flux -'msntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Mean top net solar radiation flux -'mtnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Mean top net thermal radiation flux -'mtntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress rate of accumulation -'ewssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress rate of accumulation -'nsssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'erate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Mean sunshine duration rate -'msdr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'p195.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'p196.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Mean runoff rate -'mrort' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'p208.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'p209.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'p210.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'p211.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation rate of accumulation -'soira' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Mean total precipitation rate -'tprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'p239.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'p240.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'p255.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'p44.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'p45.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'p48.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'p50.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'lspara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate anomaly -'mcpra' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'p145.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'sshfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'slhfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'p149.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'p153.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'p154.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'ssrdara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'strdara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'ssrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'strara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'tsrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'ttrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'ewssara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'nsssara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomalous rate of accumulation -'evara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'p195.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'p196.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'p197.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomalous rate of accumulation -'roara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'p208.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'p209.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'p210.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'p211.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomalous rate of accumulation -'soiara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'p239.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'p240.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'p255.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'p6.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'p31.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'p34.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'p39.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'p40.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'p41.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'p42.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'p49.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'p83.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'p85.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'p86.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'p87.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'p88.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'p89.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'p90.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'p94.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'p95.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Liquid water potential temperature -'p99.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'p110.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'p111.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'p139.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'p167.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'p168.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'p170.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'p175.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'p183.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'p236.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'p255.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'p6.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'p31.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'p34.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'p39.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'p40.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'p41.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'p42.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'p49.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'p83.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'p85.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'p86.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'p87.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'p88.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'p89.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'p90.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'p110.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'p111.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'p139.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'p167.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'p168.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'p170.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'p175.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'p183.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'p236.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'p255.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'tsw' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'str' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Field capacity -'cap' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'wiltsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'sr' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'tsm' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'ddiff2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'p1.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'p2.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'p3.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'p4.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'p6.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'p7.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'p8.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'p9.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'p10.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'p11.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'p12.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'p15.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'p16.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'p17.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'clc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'p30.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'qc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'p32.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'p34.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'p35.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'p36.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'p37.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'p38.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'twater' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'p42.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'p51.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'p52.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'p53.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'p54.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'p55.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'p56.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'p60.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'p61.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'p62.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'p63.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'p64.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'p65.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'p66.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'p67.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'p70.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'p71.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'bas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'top_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'dt_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'p76.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'p77.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'p80.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'p81.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'p83.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'pp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'p150.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'w_i' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'t_snow' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'t_ice' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'cape_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'p255.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdep' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerlts' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'aerscc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#CO2 column-mean molar fraction -'tcco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#CH4 column-mean molar fraction -'tcch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 81 ; - } -#Wildfire flux of Methane -'ch4fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 83 ; - } -#Wildfire flux of Hydrogen -'h2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 90 ; - } -#Wildfire flux of Black Carbon -'bcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'nox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'ra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'aersccdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'ch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'oafirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'radiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcradiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'tpoc' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'zust' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'meantcc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'dctb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'tplb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'tplt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'sts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'msls' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'t2s' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'tps' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'ust' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'vst' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 117 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def deleted file mode 100644 index 442a0d34..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ /dev/null @@ -1,144 +0,0 @@ -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'uoe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'von' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'sithick' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'zos' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'u100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'v100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'si100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'deg0l' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'t20d' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'sav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'tclw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'tciw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/name.def deleted file mode 100644 index eabef9fa..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/name.def +++ /dev/null @@ -1,22056 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 100 mm -'Total precipitation of at least 100 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 100 mm -'Total precipitation of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Equivalent potential temperature -'Equivalent potential temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'Saturated equivalent potential temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'Soil sand fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'Soil clay fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'Surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'U component of divergent wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'V component of divergent wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'U component of rotational wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'V component of rotational wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'UV visible albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'UV visible albedo for diffuse radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'Near IR albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'Near IR albedo for diffuse radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'Clear sky surface UV' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'Clear sky surface photosynthetically active radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'Unbalanced component of temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'Unbalanced component of logarithm of surface pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'Unbalanced component of divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'Lake cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'Low vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'High vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'Type of low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'Type of high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'Snow albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'Ice temperature layer 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'Ice temperature layer 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'Ice temperature layer 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'Ice temperature layer 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'Snow evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'Snowmelt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'Solar duration' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'Direct solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'Large-scale precipitation fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'Maximum temperature at 2 metres in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'Minimum temperature at 2 metres in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Montgomery potential -'Montgomery potential' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'Mean temperature at 2 metres in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'Mean 2 metre dewpoint temperature in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'Downward UV radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'Photosynthetically active radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'Observation count' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'Instantaneous surface solar radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'Instantaneous surface thermal radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'Standard deviation of filtered subgrid orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'10 metre wind gust in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'Surface emissivity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'Atmospheric tide' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'Budget values' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'Total column water vapour' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'Snow depth' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'Snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'Charnock' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'Surface net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'Top net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'Logarithm of surface pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'Short-wave heating rate' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'Long-wave heating rate' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'Tendency of surface pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'Boundary layer height' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'Standard deviation of orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'Soil temperature level 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'Albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'Soil temperature level 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'Convective cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'Medium cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'East-West component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'North-South component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'North-West/South-East component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'North-East/South-West component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'Eastward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'Northward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'Vegetation fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'Variance of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'Precipitation analysis weights' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'Total column ozone' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#TOA incident solar radiation -'TOA incident solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'Vertically integrated moisture divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'Diabatic heating large-scale condensation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'East-West gravity wave drag tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'North-South gravity wave drag tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'Convective tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'Convective tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'Tendency due to removal of negative humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'Total precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'Instantaneous eastward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'Instantaneous northward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'Instantaneous surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'Instantaneous moisture flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'Apparent surface humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'Logarithm of surface roughness length for heat' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'Soil temperature level 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'Soil wetness level 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'Large-scale snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'Accumulated cloud fraction tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'Accumulated liquid water tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'Forecast surface roughness' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'Forecast logarithm of surface roughness for heat' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'Accumulated ice water tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'Ice age' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'Stream function difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'Velocity potential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'Potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'Equivalent potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'Saturated equivalent potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'U component of divergent wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'V component of divergent wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'U component of rotational wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'V component of rotational wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'Unbalanced component of temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'Unbalanced component of logarithm of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'Unbalanced component of divergence difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'Lake cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'Low vegetation cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'High vegetation cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'Type of low vegetation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'Type of high vegetation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'Sea-ice cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'Snow albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'Snow density difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'Sea surface temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'Ice surface temperature layer 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'Ice surface temperature layer 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'Ice surface temperature layer 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'Ice surface temperature layer 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'Volumetric soil water layer 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'Volumetric soil water layer 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'Volumetric soil water layer 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'Volumetric soil water layer 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'Soil type difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'Snow evaporation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'Snowmelt difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'Solar duration difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'Direct solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'Magnitude of turbulent surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'10 metre wind gust difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'Large-scale precipitation fraction difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'Maximum 2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'Minimum 2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'Montgomery potential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'Pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'Mean 2 metre temperature in the last 24 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'Downward UV radiation at the surface difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'Photosynthetically active radiation at the surface difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'Convective available potential energy difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'Potential vorticity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'Total precipitation from observations difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'Observation count difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'Total column ice water' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'Maximum temperature at 2 metres difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'Minimum temperature at 2 metres difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10 metre wind gust in the last 6 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'Atmospheric tide difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'Budget values difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'Geopotential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'Temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'U component of wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'V component of wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'Specific humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'Surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'Vertical velocity (pressure) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'Total column water difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'Total column water vapour difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'Vorticity (relative) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'Soil temperature level 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'Soil wetness level 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'Snow depth difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'Stratiform precipitation (Large-scale precipitation) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'Convective precipitation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'Snowfall (convective + stratiform) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'Boundary layer dissipation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'Surface sensible heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'Surface latent heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'Charnock difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'Surface net radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'Top net radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'Mean sea level pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'Logarithm of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'Short-wave heating rate difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'Long-wave heating rate difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'Divergence difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'Height difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'Relative humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'Tendency of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'Boundary layer height difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'Standard deviation of orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'Anisotropy of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'Angle of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'Slope of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'Total cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'10 metre U wind component difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'10 metre V wind component difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'Surface solar radiation downwards difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'Soil temperature level 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'Soil wetness level 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'Land-sea mask difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'Surface roughness difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'Albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'Surface thermal radiation downwards difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'Surface net solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'Surface net thermal radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'Top net solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'Top net thermal radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'East-West surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'North-South surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'Evaporation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'Soil temperature level 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'Soil wetness level 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'Convective cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'Low cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'Medium cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'High cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'Sunshine duration difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'East-West component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'North-South component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'North-West/South-East component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'North-East/South-West component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'Brightness temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'Longitudinal component of gravity wave stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'Meridional component of gravity wave stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'Gravity wave dissipation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'Skin reservoir content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'Vegetation fraction difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'Variance of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'Maximum temperature at 2 metres since previous post-processing difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'Minimum temperature at 2 metres since previous post-processing difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'Ozone mass mixing ratio difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'Precipitation analysis weights difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'Runoff difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'Total column ozone difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'10 metre wind speed difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'Top net solar radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'Top net thermal radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'Surface net solar radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'Surface net thermal radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'TOA incident solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'Diabatic heating by radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'Diabatic heating by vertical diffusion difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'Diabatic heating by cumulus convection difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'Diabatic heating large-scale condensation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'Vertical diffusion of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'Vertical diffusion of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'East-West gravity wave drag tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'North-South gravity wave drag tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'Convective tendency of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'Convective tendency of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'Vertical diffusion of humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'Humidity tendency by cumulus convection difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'Humidity tendency by large-scale condensation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'Change from removal of negative humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'Total precipitation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'Instantaneous X surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'Instantaneous Y surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'Instantaneous surface heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'Instantaneous moisture flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'Apparent surface humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'Logarithm of surface roughness length for heat difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'Soil temperature level 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'Soil wetness level 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'Temperature of snow layer difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'Convective snowfall difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'Large scale snowfall difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'Accumulated cloud fraction tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'Accumulated liquid water tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'Forecast albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'Forecast surface roughness difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'Forecast logarithm of surface roughness for heat difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'Specific cloud liquid water content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'Specific cloud ice water content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'Cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'Accumulated ice water tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'Ice age difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'Adiabatic tendency of temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'Adiabatic tendency of humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'Adiabatic tendency of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'Adiabatic tendency of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'Reserved' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'U-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'V-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'T-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'q-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'T-tendency from radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'U-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'V-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'T-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'q-tendency from turbulent diffusion' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'U-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'V-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'T-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'U-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'V-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'T-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'q-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'Liquid Precipitation flux from convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'Ice Precipitation flux from convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'T-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'q-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'ql-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qi-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'Liquid Precip flux from cloud scheme (stratiform)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'Ice Precip flux from cloud scheme (stratiform)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'U-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'V-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'T-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'q-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'100 metre U wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'100 metre V wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'Maximum temperature at 2 metres in the last 6 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'Minimum temperature at 2 metres in the last 6 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'Volcanic ash aerosol mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'Volcanic sulphate aerosol mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'Volcanic SO2 precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'Mixing ration of organic carbon aerosol, nucleation mode' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'Monoterpene precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'Secondary organic precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Injection height (from IS4FIRES) -'Injection height (from IS4FIRES)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 60 ; - } -#Particulate matter d < 1 um -'Particulate matter d < 1 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'Particulate matter d < 2.5 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'Particulate matter d < 10 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'Wildfire viewing angle of observation' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'Wildfire Flux of Ethane (C2H6)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 118 ; - } -#Mean altitude of maximum injection -'Mean altitude of maximum injection' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#Wildfire day-time radiative power -'Wildfire day-time radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 167 ; - } -#Wildfire night-time radiative power -'Wildfire night-time radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 169 ; - } -#Wildfire day-time inverse variance of radiative power -'Wildfire day-time inverse variance of radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 177 ; - } -#Wildfire night-time inverse variance of radiative power -'Wildfire night-time inverse variance of radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 179 ; - } -#UV visible albedo for direct radiation, isotropic component -'UV visible albedo for direct radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'UV visible albedo for direct radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'UV visible albedo for direct radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'Near IR albedo for direct radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'Near IR albedo for direct radiation, volumetric component' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'Near IR albedo for direct radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'UV visible albedo for diffuse radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'UV visible albedo for diffuse radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'UV visible albedo for diffuse radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'Near IR albedo for diffuse radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'Near IR albedo for diffuse radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'Near IR albedo for diffuse radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'Total aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'Total aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'Total aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'Total aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'Total aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'Total aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'Total aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'Total aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'Total aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'Total aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'Total aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'Total aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'Total aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'Total aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'Wildfire Flux of Toluene (C7H8)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'Wildfire Flux of Benzene (C6H6)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'Wildfire Flux of Xylene (C8H10)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'Wildfire Flux of Butenes (C4H8)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'Wildfire Flux of Pentenes (C5H10)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'Wildfire Flux of Hexene (C6H12)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'Wildfire Flux of Octene (C8H16)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'Wildfire Flux of Butanes (C4H10)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'Wildfire Flux of Pentanes (C5H12)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'Wildfire Flux of Hexanes (C6H14)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'Wildfire Flux of Heptane (C7H16)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 241 ; - } -#Altitude of plume bottom -'Altitude of plume bottom' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'Volcanic sulphate aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'Volcanic ash optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'Profile of total aerosol dry extinction coefficient' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'Profile of total aerosol dry absorption coefficient' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'Nitrate fine mode aerosol mass mixing ratio' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'Nitrate coarse mode aerosol mass mixing ratio' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Aerosol type 13 mass mixing ratio -'Aerosol type 13 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'Aerosol type 14 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'Aerosol type 15 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'Altitude of emitter' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'Nitrate fine mode aerosol mass mixing ratio' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'Nitrate coarse mode aerosol mass mixing ratio' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'Random pattern 1 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'Random pattern 2 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'Random pattern 3 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'Random pattern 4 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'Random pattern 5 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -#Random pattern 1 for SPP scheme -'Random pattern 1 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 101 ; - } -#Random pattern 2 for SPP scheme -'Random pattern 2 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 102 ; - } -#Random pattern 3 for SPP scheme -'Random pattern 3 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 103 ; - } -#Random pattern 4 for SPP scheme -'Random pattern 4 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 104 ; - } -#Random pattern 5 for SPP scheme -'Random pattern 5 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 105 ; - } -#Random pattern 6 for SPP scheme -'Random pattern 6 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 106 ; - } -#Random pattern 7 for SPP scheme -'Random pattern 7 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 107 ; - } -#Random pattern 8 for SPP scheme -'Random pattern 8 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 108 ; - } -#Random pattern 9 for SPP scheme -'Random pattern 9 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 109 ; - } -#Random pattern 10 for SPP scheme -'Random pattern 10 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 110 ; - } -#Random pattern 11 for SPP scheme -'Random pattern 11 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 111 ; - } -#Random pattern 12 for SPP scheme -'Random pattern 12 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 112 ; - } -#Random pattern 13 for SPP scheme -'Random pattern 13 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 113 ; - } -#Random pattern 14 for SPP scheme -'Random pattern 14 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 114 ; - } -#Random pattern 15 for SPP scheme -'Random pattern 15 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 115 ; - } -#Random pattern 16 for SPP scheme -'Random pattern 16 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 116 ; - } -#Random pattern 17 for SPP scheme -'Random pattern 17 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 117 ; - } -#Random pattern 18 for SPP scheme -'Random pattern 18 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 118 ; - } -#Random pattern 19 for SPP scheme -'Random pattern 19 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 119 ; - } -#Random pattern 20 for SPP scheme -'Random pattern 20 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 120 ; - } -#Random pattern 21 for SPP scheme -'Random pattern 21 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 121 ; - } -#Random pattern 22 for SPP scheme -'Random pattern 22 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 122 ; - } -#Random pattern 23 for SPP scheme -'Random pattern 23 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 123 ; - } -#Random pattern 24 for SPP scheme -'Random pattern 24 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 124 ; - } -#Random pattern 25 for SPP scheme -'Random pattern 25 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 125 ; - } -#Random pattern 26 for SPP scheme -'Random pattern 26 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 126 ; - } -#Random pattern 27 for SPP scheme -'Random pattern 27 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 127 ; - } -#Random pattern 28 for SPP scheme -'Random pattern 28 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 128 ; - } -#Random pattern 29 for SPP scheme -'Random pattern 29 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 129 ; - } -#Random pattern 30 for SPP scheme -'Random pattern 30 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 130 ; - } -#Random pattern 31 for SPP scheme -'Random pattern 31 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 131 ; - } -#Random pattern 32 for SPP scheme -'Random pattern 32 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 132 ; - } -#Random pattern 33 for SPP scheme -'Random pattern 33 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 133 ; - } -#Random pattern 34 for SPP scheme -'Random pattern 34 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 134 ; - } -#Random pattern 35 for SPP scheme -'Random pattern 35 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 135 ; - } -#Random pattern 36 for SPP scheme -'Random pattern 36 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 136 ; - } -#Random pattern 37 for SPP scheme -'Random pattern 37 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 137 ; - } -#Random pattern 38 for SPP scheme -'Random pattern 38 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 138 ; - } -#Random pattern 39 for SPP scheme -'Random pattern 39 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 139 ; - } -#Random pattern 40 for SPP scheme -'Random pattern 40 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 140 ; - } -#Random pattern 41 for SPP scheme -'Random pattern 41 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 141 ; - } -#Random pattern 42 for SPP scheme -'Random pattern 42 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 142 ; - } -#Random pattern 43 for SPP scheme -'Random pattern 43 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 143 ; - } -#Random pattern 44 for SPP scheme -'Random pattern 44 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 144 ; - } -#Random pattern 45 for SPP scheme -'Random pattern 45 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 145 ; - } -#Random pattern 46 for SPP scheme -'Random pattern 46 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 146 ; - } -#Random pattern 47 for SPP scheme -'Random pattern 47 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 147 ; - } -#Random pattern 48 for SPP scheme -'Random pattern 48 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 148 ; - } -#Random pattern 49 for SPP scheme -'Random pattern 49 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 149 ; - } -#Random pattern 50 for SPP scheme -'Random pattern 50 for SPP scheme' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 150 ; - } -#Cosine of solar zenith angle -'Cosine of solar zenith angle' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -#UV biologically effective dose -'UV biologically effective dose' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -#UV biologically effective dose clear-sky -'UV biologically effective dose clear-sky' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'Total surface UV spectral flux (280-285 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'Total surface UV spectral flux (285-290 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'Total surface UV spectral flux (290-295 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'Total surface UV spectral flux (295-300 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'Total surface UV spectral flux (300-305 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'Total surface UV spectral flux (305-310 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'Total surface UV spectral flux (310-315 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'Total surface UV spectral flux (315-320 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'Total surface UV spectral flux (320-325 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'Total surface UV spectral flux (325-330 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'Total surface UV spectral flux (330-335 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'Total surface UV spectral flux (335-340 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'Total surface UV spectral flux (340-345 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'Total surface UV spectral flux (345-350 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'Total surface UV spectral flux (350-355 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'Total surface UV spectral flux (355-360 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'Total surface UV spectral flux (360-365 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'Total surface UV spectral flux (365-370 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'Total surface UV spectral flux (370-375 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'Total surface UV spectral flux (375-380 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'Total surface UV spectral flux (380-385 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'Total surface UV spectral flux (385-390 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'Total surface UV spectral flux (390-395 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'Total surface UV spectral flux (395-400 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'Clear-sky surface UV spectral flux (280-285 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'Clear-sky surface UV spectral flux (285-290 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'Clear-sky surface UV spectral flux (290-295 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'Clear-sky surface UV spectral flux (295-300 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'Clear-sky surface UV spectral flux (300-305 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'Clear-sky surface UV spectral flux (305-310 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'Clear-sky surface UV spectral flux (310-315 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'Clear-sky surface UV spectral flux (315-320 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'Clear-sky surface UV spectral flux (320-325 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'Clear-sky surface UV spectral flux (325-330 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'Clear-sky surface UV spectral flux (330-335 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'Clear-sky surface UV spectral flux (335-340 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'Clear-sky surface UV spectral flux (340-345 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'Clear-sky surface UV spectral flux (345-350 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'Clear-sky surface UV spectral flux (350-355 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'Clear-sky surface UV spectral flux (355-360 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'Clear-sky surface UV spectral flux (360-365 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'Clear-sky surface UV spectral flux (365-370 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'Clear-sky surface UV spectral flux (370-375 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'Clear-sky surface UV spectral flux (375-380 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'Clear-sky surface UV spectral flux (380-385 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'Clear-sky surface UV spectral flux (385-390 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'Clear-sky surface UV spectral flux (390-395 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'Clear-sky surface UV spectral flux (395-400 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -#Profile of optical thickness at 340 nm -'Profile of optical thickness at 340 nm' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'Source/gain of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'Source/gain of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'Dry deposition of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'Dry deposition of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'Sedimentation of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'Sedimentation of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'Negative fixer of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'Negative fixer of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'Sea salt aerosol (0.03 - 0.5 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'Sea salt aerosol (0.5 - 5 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'Sea salt aerosol (5 - 20 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'Source/gain of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'Source/gain of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'Source/gain of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'Dry deposition of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'Dry deposition of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'Dry deposition of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'Sedimentation of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'Sedimentation of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'Sedimentation of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'Negative fixer of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'Negative fixer of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'Negative fixer of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'Vertically integrated mass of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'Dust aerosol (0.03 - 0.55 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'Dust aerosol (0.55 - 9 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'Dust aerosol (9 - 20 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'Source/gain of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'Source/gain of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'Dry deposition of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'Dry deposition of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'Sedimentation of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'Sedimentation of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'Negative fixer of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'Negative fixer of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'Vertically integrated mass of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'Vertically integrated mass of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'Hydrophobic organic matter aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'Hydrophilic organic matter aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'Source/gain of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'Source/gain of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'Dry deposition of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'Dry deposition of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'Sedimentation of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'Sedimentation of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'Negative fixer of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'Negative fixer of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'Vertically integrated mass of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'Vertically integrated mass of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'Hydrophobic black carbon aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'Hydrophilic black carbon aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -#Source/gain of sulphate aerosol -'Source/gain of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -#Dry deposition of sulphate aerosol -'Dry deposition of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -#Sedimentation of sulphate aerosol -'Sedimentation of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'Wet deposition of sulphate aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'Wet deposition of sulphate aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -#Negative fixer of sulphate aerosol -'Negative fixer of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'Vertically integrated mass of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -#Sulphate aerosol optical depth -'Sulphate aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'Accumulated total aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'Effective (snow effect included) UV visible albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'10 metre wind speed dust emission potential' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'10 metre wind gustiness dust emission potential' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'Total aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'Total absorption aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'Total absorption aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'Total absorption aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'Total absorption aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'Total absorption aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'Total absorption aerosol optical depth at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'Total absorption aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'Total absorption aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'Total absorption aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'Total absorption aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'Total absorption aerosol optical depth at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'Total absorption aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'Total absorption aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'Total absorption aerosol optical depth at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'Total absorption aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'Total absorption aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'Total absorption aerosol optical depth at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'Total absorption aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'Single scattering albedo at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'Single scattering albedo at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'Single scattering albedo at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'Single scattering albedo at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'Single scattering albedo at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'Single scattering albedo at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'Single scattering albedo at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'Single scattering albedo at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'Single scattering albedo at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'Single scattering albedo at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'Single scattering albedo at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'Single scattering albedo at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'Single scattering albedo at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'Single scattering albedo at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'Single scattering albedo at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'Single scattering albedo at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'Single scattering albedo at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'Single scattering albedo at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Asymmetry factor at 340 nm -'Asymmetry factor at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Asymmetry factor at 355 nm -'Asymmetry factor at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Asymmetry factor at 380 nm -'Asymmetry factor at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Asymmetry factor at 400 nm -'Asymmetry factor at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Asymmetry factor at 440 nm -'Asymmetry factor at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Asymmetry factor at 469 nm -'Asymmetry factor at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Asymmetry factor at 500 nm -'Asymmetry factor at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Asymmetry factor at 532 nm -'Asymmetry factor at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Asymmetry factor at 550 nm -'Asymmetry factor at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Asymmetry factor at 645 nm -'Asymmetry factor at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Asymmetry factor at 670 nm -'Asymmetry factor at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Asymmetry factor at 800 nm -'Asymmetry factor at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Asymmetry factor at 858 nm -'Asymmetry factor at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Asymmetry factor at 865 nm -'Asymmetry factor at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Asymmetry factor at 1020 nm -'Asymmetry factor at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Asymmetry factor at 1064 nm -'Asymmetry factor at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Asymmetry factor at 1240 nm -'Asymmetry factor at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Asymmetry factor at 1640 nm -'Asymmetry factor at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'Source/gain of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'Dry deposition of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'Sedimentation of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'Wet deposition of sulphur dioxide by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'Wet deposition of sulphur dioxide by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'Negative fixer of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'Vertically integrated mass of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'Sulphur dioxide optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'Total absorption aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'Single scattering albedo at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Asymmetry factor at 2130 nm -'Asymmetry factor at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'Aerosol extinction coefficient at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'Aerosol extinction coefficient at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'Aerosol extinction coefficient at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'Aerosol backscatter coefficient at 355 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'Aerosol backscatter coefficient at 532 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'Aerosol backscatter coefficient at 1064 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'Source/gain of fine-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Source/gain of coarse-mode nitrate aerosol -'Source/gain of coarse-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Dry deposition of fine-mode nitrate aerosol -'Dry deposition of fine-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'Dry deposition of coarse-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Sedimentation of fine-mode nitrate aerosol -'Sedimentation of fine-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'Sedimentation of coarse-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'Wet deposition of fine-mode nitrate aerosol by large-scale precipitation' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'Wet deposition of fine-mode nitrate aerosol by convective precipitation' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'Wet deposition of coarse-mode nitrate aerosol by convective precipitation' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Negative fixer of fine-mode nitrate aerosol -'Negative fixer of fine-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'Negative fixer of coarse-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'Vertically integrated mass of fine-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - aerosolType = 65534 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'Vertically integrated mass of coarse-mode nitrate aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'Fine-mode nitrate aerosol optical depth at 550 nm' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - scaledValueOfFirstWavelength = 55 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65534 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'Coarse-mode nitrate aerosol optical depth at 550 nm' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65533 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - scaledValueOfFirstWavelength = 55 ; - } -#Source/gain of ammonium aerosol -'Source/gain of ammonium aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Negative fixer of ammonium aerosol -'Negative fixer of ammonium aerosol' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'Hydrogen peroxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'Methane (chemistry)' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'Nitric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'Methyl peroxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'Paraffins' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'Ethene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'Olefins' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'Aldehydes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'Peroxyacetyl nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'Peroxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'Organic nitrates' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'Isoprene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'Dimethyl sulfide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'Ammonia' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'Sulfate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'Ammonium' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'Methane sulfonic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'Methyl glyoxal' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'Stratospheric ozone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'Lead' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'Nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'Hydroperoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'Methylperoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'Hydroxyl radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'Nitrate radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'Dinitrogen pentoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'Pernitric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'Peroxy acetyl radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'Organic ethers' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'PAR budget corrector' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'NO to NO2 operator' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'NO to alkyl nitrate operator' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'Amine' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'Polar stratospheric cloud' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'Methanol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'Formic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'Methacrylic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'Ethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'Ethanol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'Propane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'Propene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'Terpenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'Methacrolein MVK' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'Nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'Acetone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'Acetone product' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'IC3H7O2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'HYPROPO2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'Nitrogen oxides Transp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Carbon dioxide (chemistry) -'Carbon dioxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 57 ; - } -#Nitrous oxide (chemistry) -'Nitrous oxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 58 ; - } -#Water vapour (chemistry) -'Water vapour (chemistry)' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 59 ; - } -#Oxygen -'Oxygen' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 60 ; - } -#Singlet oxygen -'Singlet oxygen' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 61 ; - } -#Singlet delta oxygen -'Singlet delta oxygen' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 62 ; - } -#Chlorine dioxide -'Chlorine dioxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'Chlorine nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'Hypochlorous acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Chlorine -'Chlorine' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 66 ; - } -#Nitryl chloride -'Nitryl chloride' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 67 ; - } -#Hydrogen bromide -'Hydrogen bromide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Dichlorine dioxide -'Dichlorine dioxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 69 ; - } -#Hypobromous acid -'Hypobromous acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Trichlorofluoromethane -'Trichlorofluoromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 71 ; - } -#Dichlorodifluoromethane -'Dichlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 72 ; - } -#Trichlorotrifluoroethane -'Trichlorotrifluoroethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 73 ; - } -#Dichlorotetrafluoroethane -'Dichlorotetrafluoroethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 74 ; - } -#Chloropentafluoroethane -'Chloropentafluoroethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 75 ; - } -#Tetrachloromethane -'Tetrachloromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 76 ; - } -#Methyl chloroform -'Methyl chloroform' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 77 ; - } -#Methyl chloride -'Methyl chloride' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Chlorodifluoromethane -'Chlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 79 ; - } -#Methyl bromide -'Methyl bromide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Dibromodifluoromethane -'Dibromodifluoromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 81 ; - } -#Bromochlorodifluoromethane -'Bromochlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 82 ; - } -#Trifluorobromomethane -'Trifluorobromomethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 83 ; - } -#Cbrf2cbrf2 -'Cbrf2cbrf2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 84 ; - } -#Sulfuric acid -'Sulfuric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'Nitrous acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Alkanes low oh rate -'Alkanes low oh rate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 87 ; - } -#Alkanes med oh rate -'Alkanes med oh rate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 88 ; - } -#Alkanes high oh rate -'Alkanes high oh rate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 89 ; - } -#Terminal alkenes -'Terminal alkenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 90 ; - } -#Internal alkenes -'Internal alkenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 91 ; - } -#Ethylperoxy radical -'Ethylperoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 92 ; - } -#Butadiene -'Butadiene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 93 ; - } -#Ethyl hydroperoxide -'Ethyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 94 ; - } -#A-pinene cyclic terpenes -'A-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 95 ; - } -#Acetic acid -'Acetic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#D-limonene cyclic diene -'D-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 97 ; - } -#Acetaldehyde -'Acetaldehyde' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 98 ; - } -#Toluene and less reactive aromatics -'Toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 99 ; - } -#Xylene and more reactive aromatics -'Xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 100 ; - } -#Glycolaldehyde -'Glycolaldehyde' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 101 ; - } -#Cresol -'Cresol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 102 ; - } -#Acetaldehyde and higher -'Acetaldehyde and higher' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 103 ; - } -#Peracetic acid -'Peracetic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 104 ; - } -#Ketones -'Ketones' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 105 ; - } -#Hoch2ch2o2 -'Hoch2ch2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 106 ; - } -#Glyoxal -'Glyoxal' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 107 ; - } -#Hoch2ch2o -'Hoch2ch2o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 108 ; - } -#Unsaturated dicarbonyls -'Unsaturated dicarbonyls' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 109 ; - } -#Methacrolein -'Methacrolein' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 110 ; - } -#Unsaturated hydroxy dicarbonyl -'Unsaturated hydroxy dicarbonyl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 111 ; - } -#Isopropyldioxidanyl -'Isopropyldioxidanyl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 112 ; - } -#Hydroxy ketone -'Hydroxy ketone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 113 ; - } -#Isopropyl hydroperoxide -'Isopropyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 114 ; - } -#C3h6oho2 -'C3h6oho2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 115 ; - } -#C3h6ohooh -'C3h6ohooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 116 ; - } -#Higher organic peroxides -'Higher organic peroxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 117 ; - } -#Hydroxyacetone -'Hydroxyacetone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 118 ; - } -#Peroxyacetic acid -'Peroxyacetic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 119 ; - } -#Ch3coch2o2 -'Ch3coch2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 120 ; - } -#Peroxy radical from c2h6 -'Peroxy radical from c2h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 121 ; - } -#Peroxy radical from hc3 -'Peroxy radical from hc3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 122 ; - } -#Peroxy radical from hc5 -'Peroxy radical from hc5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 123 ; - } -#Lumped alkenes -'Lumped alkenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 124 ; - } -#Peroxy radical from hc8 -'Peroxy radical from hc8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 125 ; - } -#Lumped alkanes -'Lumped alkanes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 126 ; - } -#Peroxy radical from c2h4 -'Peroxy radical from c2h4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 127 ; - } -#C4h8o -'C4h8o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 128 ; - } -#Peroxy radical from terminal alkenes -'Peroxy radical from terminal alkenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 129 ; - } -#C4h9o3 -'C4h9o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 130 ; - } -#Peroxy radical from internal alkenes -'Peroxy radical from internal alkenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 131 ; - } -#Ch3coch(oo)ch3 -'Ch3coch(oo)ch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 132 ; - } -#Peroxy radical from c5h8 -'Peroxy radical from c5h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 133 ; - } -#Ch3coch(ooh)ch3 -'Ch3coch(ooh)ch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 134 ; - } -#Peroxy radical from a-pinene cyclic terpenes -'Peroxy radical from a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 135 ; - } -#Ch2=c(ch3)co3 -'Ch2=c(ch3)co3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 136 ; - } -#Peroxy radical from d-limonene cyclic diene -'Peroxy radical from d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 137 ; - } -#Methylvinylketone -'Methylvinylketone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 138 ; - } -#Phenoxy radical -'Phenoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 139 ; - } -#Peroxy radical from toluene and less reactive aromatics -'Peroxy radical from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 140 ; - } -#Ch3c(o)ch(oo)ch2oh -'Ch3c(o)ch(oo)ch2oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 141 ; - } -#Peroxy radical from xylene and more reactive aromatics -'Peroxy radical from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 142 ; - } -#H3c(o)ch(ooh)ch2oh -'H3c(o)ch(ooh)ch2oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 143 ; - } -#Peroxy radical from cresol -'Peroxy radical from cresol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 144 ; - } -#Unsaturated pans -'Unsaturated pans' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 145 ; - } -#Unsaturated acyl peroxy radical -'Unsaturated acyl peroxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 146 ; - } -#Peroxy radical from ketones -'Peroxy radical from ketones' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 147 ; - } -#C5h11o2 -'C5h11o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 148 ; - } -#No3-alkenes adduct reacting to form carbonitrates -'No3-alkenes adduct reacting to form carbonitrates' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 149 ; - } -#C5h11ooh -'C5h11ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 150 ; - } -#No3-alkenes adduct reacting via decomposition -'No3-alkenes adduct reacting via decomposition' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 151 ; - } -#Hoch2c(ch3)=chcho -'Hoch2c(ch3)=chcho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 152 ; - } -#C5h6o2 -'C5h6o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 153 ; - } -#Trop sulfuric acid -'Trop sulfuric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 154 ; - } -#Oxides -'Oxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 155 ; - } -#Ch2chc(ch3)(oo)ch2ono2 -'Ch2chc(ch3)(oo)ch2ono2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 156 ; - } -#C3 organic nitrate -'C3 organic nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 157 ; - } -#Chlorine oxides -'Chlorine oxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 158 ; - } -#Bromine oxides -'Bromine oxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 159 ; - } -#Hoch2c(ooh)(ch3)chchoh -'Hoch2c(ooh)(ch3)chchoh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 160 ; - } -#Hoch2c(ooh)(ch3)ch=ch2 -'Hoch2c(ooh)(ch3)ch=ch2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 161 ; - } -#Lumped aromatics -'Lumped aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 162 ; - } -#Dimethyl sulfoxyde -'Dimethyl sulfoxyde' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 163 ; - } -#C7h9o5 -'C7h9o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 164 ; - } -#C7h10o5 -'C7h10o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 165 ; - } -#Hydrogensulfide -'Hydrogensulfide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 166 ; - } -#C7h10o6 -'C7h10o6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 167 ; - } -#All nitrogen oxides -'All nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 168 ; - } -#Chlorine family -'Chlorine family' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 169 ; - } -#C10h16(oh)(oo) -'C10h16(oh)(oo)' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 170 ; - } -#Bromine family -'Bromine family' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 171 ; - } -#C10h18o3 -'C10h18o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 172 ; - } -#Nitrogen atom -'Nitrogen atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 173 ; - } -#Chlorine monoxide -'Chlorine monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Chlorine atom -'Chlorine atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 175 ; - } -#Bromine monoxide -'Bromine monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Hydrogen atom -'Hydrogen atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 177 ; - } -#Methyl group -'Methyl group' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 178 ; - } -#Aromatic-ho from toluene and less reactive aromatics -'Aromatic-ho from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 179 ; - } -#Aromatic-ho from xylene and more reactive aromatics -'Aromatic-ho from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 180 ; - } -#Ammonium nitrate -'Ammonium nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 181 ; - } -#Aromatic-ho from csl -'Aromatic-ho from csl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 182 ; - } -#Secondary organic aerosol type 1 -'Secondary organic aerosol type 1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 183 ; - } -#Secondary organic aerosol type 2a -'Secondary organic aerosol type 2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 184 ; - } -#Secondary organic aerosol type 2b -'Secondary organic aerosol type 2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 185 ; - } -#Condensable gas type 1 -'Condensable gas type 1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 186 ; - } -#Condensable gas type 2a -'Condensable gas type 2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 187 ; - } -#Condensable gas type 2b -'Condensable gas type 2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 188 ; - } -#Sulfur trioxide -'Sulfur trioxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 189 ; - } -#Carbonyl sulfide -'Carbonyl sulfide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 190 ; - } -#Bromine atom -'Bromine atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 191 ; - } -#Bromine -'Bromine' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 192 ; - } -#Bromine monochloride -'Bromine monochloride' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 193 ; - } -#Bromine nitrate -'Bromine nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Dibromomethane -'Dibromomethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 195 ; - } -#Methoxy radical -'Methoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 196 ; - } -#Tribromomethane -'Tribromomethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 197 ; - } -#Asymmetric chlorine dioxide radical -'Asymmetric chlorine dioxide radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 198 ; - } -#Hydrogen -'Hydrogen' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 199 ; - } -#Hydrogen chloride -'Hydrogen chloride' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Formyl radical -'Formyl radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 201 ; - } -#Hydrogen fluoride -'Hydrogen fluoride' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 202 ; - } -#Oxygen atom -'Oxygen atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 203 ; - } -#Excited oxygen atom -'Excited oxygen atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 204 ; - } -#Ground state oxygen atom -'Ground state oxygen atom' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 205 ; - } -#Stratospheric aerosol -'Stratospheric aerosol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 206 ; - } -#Total column hydrogen peroxide -'Total column hydrogen peroxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'Total column methane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'Total column nitric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'Total column methyl peroxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'Total column paraffins' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'Total column ethene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'Total column olefins' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'Total column aldehydes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'Total column peroxyacetyl nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'Total column peroxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'Total column organic nitrates' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'Total column isoprene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'Total column dimethyl sulfide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'Total column ammonia' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'Total column sulfate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'Total column ammonium' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'Total column methane sulfonic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'Total column methyl glyoxal' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'Total column stratospheric ozone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'Total column lead' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'Total column nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'Total column hydroperoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'Total column methylperoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'Total column hydroxyl radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'Total column nitrate radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'Total column dinitrogen pentoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'Total column pernitric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'Total column peroxy acetyl radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'Total column organic ethers' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'Total column PAR budget corrector' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'Total column NO to NO2 operator' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'Total column NO to alkyl nitrate operator' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'Total column amine' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'Total column polar stratospheric cloud' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'Total column methanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'Total column formic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'Total column methacrylic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'Total column ethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'Total column ethanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'Total column propane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'Total column propene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'Total column terpenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'Total column methacrolein MVK' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'Total column nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'Total column acetone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'Total column acetone product' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'Total column IC3H7O2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'Total column HYPROPO2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'Total column nitrogen oxides Transp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Total column of carbon dioxide (chemistry) -'Total column of carbon dioxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 57 ; - } -#Total column of nitrous oxide (chemistry) -'Total column of nitrous oxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 58 ; - } -#Total column of water vapour (chemistry) -'Total column of water vapour (chemistry)' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 59 ; - } -#Total column of oxygen -'Total column of oxygen' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 60 ; - } -#Total column of singlet oxygen -'Total column of singlet oxygen' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 61 ; - } -#Total column of singlet delta oxygen -'Total column of singlet delta oxygen' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 62 ; - } -#Total column of chlorine dioxide -'Total column of chlorine dioxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'Total column of chlorine nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'Total column of hypochlorous acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of chlorine -'Total column of chlorine' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 66 ; - } -#Total column of nitryl chloride -'Total column of nitryl chloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 67 ; - } -#Total column of hydrogen bromide -'Total column of hydrogen bromide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of dichlorine dioxide -'Total column of dichlorine dioxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 69 ; - } -#Total column of hypobromous acid -'Total column of hypobromous acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of trichlorofluoromethane -'Total column of trichlorofluoromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 71 ; - } -#Total column of dichlorodifluoromethane -'Total column of dichlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 72 ; - } -#Total column of trichlorotrifluoroethane -'Total column of trichlorotrifluoroethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 73 ; - } -#Total column of dichlorotetrafluoroethane -'Total column of dichlorotetrafluoroethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 74 ; - } -#Total column of chloropentafluoroethane -'Total column of chloropentafluoroethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 75 ; - } -#Total column of tetrachloromethane -'Total column of tetrachloromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 76 ; - } -#Total column of methyl chloroform -'Total column of methyl chloroform' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 77 ; - } -#Total column of methyl chloride -'Total column of methyl chloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of chlorodifluoromethane -'Total column of chlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 79 ; - } -#Total column of methyl bromide -'Total column of methyl bromide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of dibromodifluoromethane -'Total column of dibromodifluoromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 81 ; - } -#Total column of bromochlorodifluoromethane -'Total column of bromochlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 82 ; - } -#Total column of trifluorobromomethane -'Total column of trifluorobromomethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 83 ; - } -#Total column of cbrf2cbrf2 -'Total column of cbrf2cbrf2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 84 ; - } -#Total column of sulfuric acid -'Total column of sulfuric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 85 ; - } -#Total column of nitrous acid -'Total column of nitrous acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of alkanes low oh rate -'Total column of alkanes low oh rate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 87 ; - } -#Total column of alkanes med oh rate -'Total column of alkanes med oh rate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 88 ; - } -#Total column of alkanes high oh rate -'Total column of alkanes high oh rate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 89 ; - } -#Total column of terminal alkenes -'Total column of terminal alkenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 90 ; - } -#Total column of internal alkenes -'Total column of internal alkenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 91 ; - } -#Total column of ethylperoxy radical -'Total column of ethylperoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 92 ; - } -#Total column of butadiene -'Total column of butadiene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 93 ; - } -#Total column of ethyl hydroperoxide -'Total column of ethyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 94 ; - } -#Total column of a-pinene cyclic terpenes -'Total column of a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 95 ; - } -#Total column of acetic acid -'Total column of acetic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of d-limonene cyclic diene -'Total column of d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 97 ; - } -#Total column of acetaldehyde -'Total column of acetaldehyde' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 98 ; - } -#Total column of toluene and less reactive aromatics -'Total column of toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 99 ; - } -#Total column of xylene and more reactive aromatics -'Total column of xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 100 ; - } -#Total column of glycolaldehyde -'Total column of glycolaldehyde' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 101 ; - } -#Total column of cresol -'Total column of cresol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 102 ; - } -#Total column of acetaldehyde and higher -'Total column of acetaldehyde and higher' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 103 ; - } -#Total column of peracetic acid -'Total column of peracetic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 104 ; - } -#Total column of ketones -'Total column of ketones' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 105 ; - } -#Total column of hoch2ch2o2 -'Total column of hoch2ch2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 106 ; - } -#Total column of glyoxal -'Total column of glyoxal' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 107 ; - } -#Total column of hoch2ch2o -'Total column of hoch2ch2o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 108 ; - } -#Total column of unsaturated dicarbonyls -'Total column of unsaturated dicarbonyls' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 109 ; - } -#Total column of methacrolein -'Total column of methacrolein' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 110 ; - } -#Total column of unsaturated hydroxy dicarbonyl -'Total column of unsaturated hydroxy dicarbonyl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 111 ; - } -#Total column of isopropyldioxidanyl -'Total column of isopropyldioxidanyl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 112 ; - } -#Total column of hydroxy ketone -'Total column of hydroxy ketone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 113 ; - } -#Total column of isopropyl hydroperoxide -'Total column of isopropyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 114 ; - } -#Total column of c3h6oho2 -'Total column of c3h6oho2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 115 ; - } -#Total column of c3h6ohooh -'Total column of c3h6ohooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 116 ; - } -#Total column of higher organic peroxides -'Total column of higher organic peroxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 117 ; - } -#Total column of hydroxyacetone -'Total column of hydroxyacetone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 118 ; - } -#Total column of peroxyacetic acid -'Total column of peroxyacetic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 119 ; - } -#Total column of ch3coch2o2 -'Total column of ch3coch2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 120 ; - } -#Total column of peroxy radical from c2h6 -'Total column of peroxy radical from c2h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 121 ; - } -#Total column of peroxy radical from hc3 -'Total column of peroxy radical from hc3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 122 ; - } -#Total column of peroxy radical from hc5 -'Total column of peroxy radical from hc5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 123 ; - } -#Total column of lumped alkenes -'Total column of lumped alkenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 124 ; - } -#Total column of peroxy radical from hc8 -'Total column of peroxy radical from hc8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 125 ; - } -#Total column of lumped alkanes -'Total column of lumped alkanes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 126 ; - } -#Total column of peroxy radical from c2h4 -'Total column of peroxy radical from c2h4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 127 ; - } -#Total column of c4h8o -'Total column of c4h8o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 128 ; - } -#Total column of peroxy radical from terminal alkenes -'Total column of peroxy radical from terminal alkenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 129 ; - } -#Total column of c4h9o3 -'Total column of c4h9o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 130 ; - } -#Total column of peroxy radical from internal alkenes -'Total column of peroxy radical from internal alkenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 131 ; - } -#Total column of ch3coch(oo)ch3 -'Total column of ch3coch(oo)ch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 132 ; - } -#Total column of peroxy radical from c5h8 -'Total column of peroxy radical from c5h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 133 ; - } -#Total column of ch3coch(ooh)ch3 -'Total column of ch3coch(ooh)ch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 134 ; - } -#Total column of peroxy radical from a-pinene cyclic terpenes -'Total column of peroxy radical from a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 135 ; - } -#Total column of ch2=c(ch3)co3 -'Total column of ch2=c(ch3)co3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 136 ; - } -#Total column of peroxy radical from d-limonene cyclic diene -'Total column of peroxy radical from d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 137 ; - } -#Total column of methylvinylketone -'Total column of methylvinylketone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 138 ; - } -#Total column of phenoxy radical -'Total column of phenoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 139 ; - } -#Total column of peroxy radical from toluene and less reactive aromatics -'Total column of peroxy radical from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 140 ; - } -#Total column of ch3c(o)ch(oo)ch2oh -'Total column of ch3c(o)ch(oo)ch2oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 141 ; - } -#Total column of peroxy radical from xylene and more reactive aromatics -'Total column of peroxy radical from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 142 ; - } -#Total column of h3c(o)ch(ooh)ch2oh -'Total column of h3c(o)ch(ooh)ch2oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 143 ; - } -#Total column of peroxy radical from cresol -'Total column of peroxy radical from cresol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 144 ; - } -#Total column of unsaturated pans -'Total column of unsaturated pans' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 145 ; - } -#Total column of unsaturated acyl peroxy radical -'Total column of unsaturated acyl peroxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 146 ; - } -#Total column of peroxy radical from ketones -'Total column of peroxy radical from ketones' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 147 ; - } -#Total column of c5h11o2 -'Total column of c5h11o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 148 ; - } -#Total column of no3-alkenes adduct reacting to form carbonitrates -'Total column of no3-alkenes adduct reacting to form carbonitrates' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 149 ; - } -#Total column of c5h11ooh -'Total column of c5h11ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 150 ; - } -#Total column of no3-alkenes adduct reacting via decomposition -'Total column of no3-alkenes adduct reacting via decomposition' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 151 ; - } -#Total column of hoch2c(ch3)=chcho -'Total column of hoch2c(ch3)=chcho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 152 ; - } -#Total column of c5h6o2 -'Total column of c5h6o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 153 ; - } -#Total column of trop sulfuric acid -'Total column of trop sulfuric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 154 ; - } -#Total column of oxides -'Total column of oxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 155 ; - } -#Total column of ch2chc(ch3)(oo)ch2ono2 -'Total column of ch2chc(ch3)(oo)ch2ono2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 156 ; - } -#Total column of c3 organic nitrate -'Total column of c3 organic nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 157 ; - } -#Total column of chlorine oxides -'Total column of chlorine oxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 158 ; - } -#Total column of bromine oxides -'Total column of bromine oxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 159 ; - } -#Total column of hoch2c(ooh)(ch3)chchoh -'Total column of hoch2c(ooh)(ch3)chchoh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 160 ; - } -#Total column of hoch2c(ooh)(ch3)ch=ch2 -'Total column of hoch2c(ooh)(ch3)ch=ch2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 161 ; - } -#Total column of lumped aromatics -'Total column of lumped aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 162 ; - } -#Total column of dimethyl sulfoxyde -'Total column of dimethyl sulfoxyde' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 163 ; - } -#Total column of c7h9o5 -'Total column of c7h9o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 164 ; - } -#Total column of c7h10o5 -'Total column of c7h10o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 165 ; - } -#Total column of hydrogensulfide -'Total column of hydrogensulfide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 166 ; - } -#Total column of c7h10o6 -'Total column of c7h10o6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 167 ; - } -#Total column of all nitrogen oxides -'Total column of all nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 168 ; - } -#Total column of chlorine family -'Total column of chlorine family' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 169 ; - } -#Total column of c10h16(oh)(oo) -'Total column of c10h16(oh)(oo)' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 170 ; - } -#Total column of bromine family -'Total column of bromine family' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 171 ; - } -#Total column of c10h18o3 -'Total column of c10h18o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 172 ; - } -#Total column of nitrogen atom -'Total column of nitrogen atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 173 ; - } -#Total column of chlorine monoxide -'Total column of chlorine monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of chlorine atom -'Total column of chlorine atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 175 ; - } -#Total column of bromine monoxide -'Total column of bromine monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of hydrogen atom -'Total column of hydrogen atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 177 ; - } -#Total column of methyl group -'Total column of methyl group' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 178 ; - } -#Total column of aromatic-ho from toluene and less reactive aromatics -'Total column of aromatic-ho from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 179 ; - } -#Total column of aromatic-ho from xylene and more reactive aromatics -'Total column of aromatic-ho from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 180 ; - } -#Total column of ammonium nitrate -'Total column of ammonium nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 181 ; - } -#Total column of aromatic-ho from csl -'Total column of aromatic-ho from csl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 182 ; - } -#Total column of secondary organic aerosol type 1 -'Total column of secondary organic aerosol type 1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 183 ; - } -#Total column of secondary organic aerosol type 2a -'Total column of secondary organic aerosol type 2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 184 ; - } -#Total column of secondary organic aerosol type 2b -'Total column of secondary organic aerosol type 2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 185 ; - } -#Total column of condensable gas type 1 -'Total column of condensable gas type 1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 186 ; - } -#Total column of condensable gas type 2a -'Total column of condensable gas type 2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 187 ; - } -#Total column of condensable gas type 2b -'Total column of condensable gas type 2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 188 ; - } -#Total column of sulfur trioxide -'Total column of sulfur trioxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 189 ; - } -#Total column of carbonyl sulfide -'Total column of carbonyl sulfide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 190 ; - } -#Total column of bromine atom -'Total column of bromine atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 191 ; - } -#Total column of bromine -'Total column of bromine' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 192 ; - } -#Total column of bromine monochloride -'Total column of bromine monochloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 193 ; - } -#Total column of bromine nitrate -'Total column of bromine nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of dibromomethane -'Total column of dibromomethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 195 ; - } -#Total column of methoxy radical -'Total column of methoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 196 ; - } -#Total column of tribromomethane -'Total column of tribromomethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 197 ; - } -#Total column of asymmetric chlorine dioxide radical -'Total column of asymmetric chlorine dioxide radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 198 ; - } -#Total column of hydrogen -'Total column of hydrogen' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 199 ; - } -#Total column of hydrogen chloride -'Total column of hydrogen chloride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Total column of formyl radical -'Total column of formyl radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 201 ; - } -#Total column of hydrogen fluoride -'Total column of hydrogen fluoride' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 202 ; - } -#Total column of oxygen atom -'Total column of oxygen atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 203 ; - } -#Total column of excited oxygen atom -'Total column of excited oxygen atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 204 ; - } -#Total column of ground state oxygen atom -'Total column of ground state oxygen atom' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 205 ; - } -#Total column of stratospheric aerosol -'Total column of stratospheric aerosol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 206 ; - } -#Ozone emissions -'Ozone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'Nitrogen oxides emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'Hydrogen peroxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'Methane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'Carbon monoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'Nitric acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'Methyl peroxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'Formaldehyde emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'Paraffins emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'Ethene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'Olefins emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'Aldehydes emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'Peroxyacetyl nitrate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'Peroxides emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'Organic nitrates emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'Isoprene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'Sulfur dioxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'Dimethyl sulfide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'Ammonia emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'Sulfate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'Ammonium emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'Methane sulfonic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'Methyl glyoxal emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'Stratospheric ozone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'Radon emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'Lead emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'Nitrogen monoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'Hydroperoxy radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'Methylperoxy radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'Hydroxyl radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'Nitrogen dioxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'Nitrate radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'Dinitrogen pentoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'Pernitric acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'Peroxy acetyl radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'Organic ethers emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'PAR budget corrector emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'NO to NO2 operator emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'NO to alkyl nitrate operator emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'Amine emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'Polar stratospheric cloud emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'Methanol emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'Formic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'Methacrylic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'Ethane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'Ethanol emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'Propane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'Propene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'Terpenes emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'Methacrolein MVK emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'Nitrate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'Acetone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'Acetone product emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'IC3H7O2 emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'HYPROPO2 emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'Nitrogen oxides Transp emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Emissions of carbon dioxide (chemistry) -'Emissions of carbon dioxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 57 ; - } -#Emissions of nitrous oxide (chemistry) -'Emissions of nitrous oxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 58 ; - } -#Emissions of water vapour (chemistry) -'Emissions of water vapour (chemistry)' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 59 ; - } -#Emissions of oxygen -'Emissions of oxygen' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 60 ; - } -#Emissions of singlet oxygen -'Emissions of singlet oxygen' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 61 ; - } -#Emissions of singlet delta oxygen -'Emissions of singlet delta oxygen' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 62 ; - } -#Emissions of chlorine dioxide -'Emissions of chlorine dioxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 63 ; - } -#Emissions of chlorine nitrate -'Emissions of chlorine nitrate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 64 ; - } -#Emissions of hypochlorous acid -'Emissions of hypochlorous acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 65 ; - } -#Emissions of chlorine -'Emissions of chlorine' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 66 ; - } -#Emissions of nitryl chloride -'Emissions of nitryl chloride' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 67 ; - } -#Emissions of hydrogen bromide -'Emissions of hydrogen bromide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 68 ; - } -#Emissions of dichlorine dioxide -'Emissions of dichlorine dioxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 69 ; - } -#Emissions of hypobromous acid -'Emissions of hypobromous acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 70 ; - } -#Emissions of trichlorofluoromethane -'Emissions of trichlorofluoromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 71 ; - } -#Emissions of dichlorodifluoromethane -'Emissions of dichlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 72 ; - } -#Emissions of trichlorotrifluoroethane -'Emissions of trichlorotrifluoroethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 73 ; - } -#Emissions of dichlorotetrafluoroethane -'Emissions of dichlorotetrafluoroethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 74 ; - } -#Emissions of chloropentafluoroethane -'Emissions of chloropentafluoroethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 75 ; - } -#Emissions of tetrachloromethane -'Emissions of tetrachloromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 76 ; - } -#Emissions of methyl chloroform -'Emissions of methyl chloroform' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 77 ; - } -#Emissions of methyl chloride -'Emissions of methyl chloride' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 78 ; - } -#Emissions of chlorodifluoromethane -'Emissions of chlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 79 ; - } -#Emissions of methyl bromide -'Emissions of methyl bromide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 80 ; - } -#Emissions of dibromodifluoromethane -'Emissions of dibromodifluoromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 81 ; - } -#Emissions of bromochlorodifluoromethane -'Emissions of bromochlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 82 ; - } -#Emissions of trifluorobromomethane -'Emissions of trifluorobromomethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 83 ; - } -#Emissions of cbrf2cbrf2 -'Emissions of cbrf2cbrf2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 84 ; - } -#Emissions of sulfuric acid -'Emissions of sulfuric acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 85 ; - } -#Emissions of nitrous acid -'Emissions of nitrous acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 86 ; - } -#Emissions of alkanes low oh rate -'Emissions of alkanes low oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 87 ; - } -#Emissions of alkanes med oh rate -'Emissions of alkanes med oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 88 ; - } -#Emissions of alkanes high oh rate -'Emissions of alkanes high oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 89 ; - } -#Emissions of terminal alkenes -'Emissions of terminal alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 90 ; - } -#Emissions of internal alkenes -'Emissions of internal alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 91 ; - } -#Emissions of ethylperoxy radical -'Emissions of ethylperoxy radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 92 ; - } -#Emissions of butadiene -'Emissions of butadiene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 93 ; - } -#Emissions of ethyl hydroperoxide -'Emissions of ethyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 94 ; - } -#Emissions of a-pinene cyclic terpenes -'Emissions of a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 95 ; - } -#Emissions of acetic acid -'Emissions of acetic acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 96 ; - } -#Emissions of d-limonene cyclic diene -'Emissions of d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 97 ; - } -#Emissions of acetaldehyde -'Emissions of acetaldehyde' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 98 ; - } -#Emissions of toluene and less reactive aromatics -'Emissions of toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 99 ; - } -#Emissions of xylene and more reactive aromatics -'Emissions of xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 100 ; - } -#Emissions of glycolaldehyde -'Emissions of glycolaldehyde' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 101 ; - } -#Emissions of cresol -'Emissions of cresol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 102 ; - } -#Emissions of acetaldehyde and higher -'Emissions of acetaldehyde and higher' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 103 ; - } -#Emissions of peracetic acid -'Emissions of peracetic acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 104 ; - } -#Emissions of ketones -'Emissions of ketones' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 105 ; - } -#Emissions of hoch2ch2o2 -'Emissions of hoch2ch2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 106 ; - } -#Emissions of glyoxal -'Emissions of glyoxal' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 107 ; - } -#Emissions of hoch2ch2o -'Emissions of hoch2ch2o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 108 ; - } -#Emissions of unsaturated dicarbonyls -'Emissions of unsaturated dicarbonyls' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 109 ; - } -#Emissions of methacrolein -'Emissions of methacrolein' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 110 ; - } -#Emissions of unsaturated hydroxy dicarbonyl -'Emissions of unsaturated hydroxy dicarbonyl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 111 ; - } -#Emissions of isopropyldioxidanyl -'Emissions of isopropyldioxidanyl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 112 ; - } -#Emissions of hydroxy ketone -'Emissions of hydroxy ketone' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 113 ; - } -#Emissions of isopropyl hydroperoxide -'Emissions of isopropyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 114 ; - } -#Emissions of c3h6oho2 -'Emissions of c3h6oho2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 115 ; - } -#Emissions of c3h6ohooh -'Emissions of c3h6ohooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 116 ; - } -#Emissions of higher organic peroxides -'Emissions of higher organic peroxides' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 117 ; - } -#Emissions of hydroxyacetone -'Emissions of hydroxyacetone' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 118 ; - } -#Emissions of peroxyacetic acid -'Emissions of peroxyacetic acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 119 ; - } -#Emissions of ch3coch2o2 -'Emissions of ch3coch2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 120 ; - } -#Emissions of peroxy radical from c2h6 -'Emissions of peroxy radical from c2h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 121 ; - } -#Emissions of peroxy radical from hc3 -'Emissions of peroxy radical from hc3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 122 ; - } -#Emissions of peroxy radical from hc5 -'Emissions of peroxy radical from hc5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 123 ; - } -#Emissions of lumped alkenes -'Emissions of lumped alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 124 ; - } -#Emissions of peroxy radical from hc8 -'Emissions of peroxy radical from hc8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 125 ; - } -#Emissions of lumped alkanes -'Emissions of lumped alkanes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 126 ; - } -#Emissions of peroxy radical from c2h4 -'Emissions of peroxy radical from c2h4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 127 ; - } -#Emissions of c4h8o -'Emissions of c4h8o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 128 ; - } -#Emissions of peroxy radical from terminal alkenes -'Emissions of peroxy radical from terminal alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 129 ; - } -#Emissions of c4h9o3 -'Emissions of c4h9o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 130 ; - } -#Emissions of peroxy radical from internal alkenes -'Emissions of peroxy radical from internal alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 131 ; - } -#Emissions of ch3coch(oo)ch3 -'Emissions of ch3coch(oo)ch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 132 ; - } -#Emissions of peroxy radical from c5h8 -'Emissions of peroxy radical from c5h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 133 ; - } -#Emissions of ch3coch(ooh)ch3 -'Emissions of ch3coch(ooh)ch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 134 ; - } -#Emissions of peroxy radical from a-pinene cyclic terpenes -'Emissions of peroxy radical from a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 135 ; - } -#Emissions of ch2=c(ch3)co3 -'Emissions of ch2=c(ch3)co3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 136 ; - } -#Emissions of peroxy radical from d-limonene cyclic diene -'Emissions of peroxy radical from d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 137 ; - } -#Emissions of methylvinylketone -'Emissions of methylvinylketone' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 138 ; - } -#Emissions of phenoxy radical -'Emissions of phenoxy radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 139 ; - } -#Emissions of peroxy radical from toluene and less reactive aromatics -'Emissions of peroxy radical from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 140 ; - } -#Emissions of ch3c(o)ch(oo)ch2oh -'Emissions of ch3c(o)ch(oo)ch2oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 141 ; - } -#Emissions of peroxy radical from xylene and more reactive aromatics -'Emissions of peroxy radical from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 142 ; - } -#Emissions of h3c(o)ch(ooh)ch2oh -'Emissions of h3c(o)ch(ooh)ch2oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 143 ; - } -#Emissions of peroxy radical from cresol -'Emissions of peroxy radical from cresol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 144 ; - } -#Emissions of unsaturated pans -'Emissions of unsaturated pans' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 145 ; - } -#Emissions of unsaturated acyl peroxy radical -'Emissions of unsaturated acyl peroxy radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 146 ; - } -#Emissions of peroxy radical from ketones -'Emissions of peroxy radical from ketones' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 147 ; - } -#Emissions of c5h11o2 -'Emissions of c5h11o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 148 ; - } -#Emissions of no3-alkenes adduct reacting to form carbonitrates -'Emissions of no3-alkenes adduct reacting to form carbonitrates' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 149 ; - } -#Emissions of c5h11ooh -'Emissions of c5h11ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 150 ; - } -#Emissions of no3-alkenes adduct reacting via decomposition -'Emissions of no3-alkenes adduct reacting via decomposition' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 151 ; - } -#Emissions of hoch2c(ch3)=chcho -'Emissions of hoch2c(ch3)=chcho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 152 ; - } -#Emissions of c5h6o2 -'Emissions of c5h6o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 153 ; - } -#Emissions of trop sulfuric acid -'Emissions of trop sulfuric acid' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 154 ; - } -#Emissions of oxides -'Emissions of oxides' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 155 ; - } -#Emissions of ch2chc(ch3)(oo)ch2ono2 -'Emissions of ch2chc(ch3)(oo)ch2ono2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 156 ; - } -#Emissions of c3 organic nitrate -'Emissions of c3 organic nitrate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 157 ; - } -#Emissions of chlorine oxides -'Emissions of chlorine oxides' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 158 ; - } -#Emissions of bromine oxides -'Emissions of bromine oxides' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 159 ; - } -#Emissions of hoch2c(ooh)(ch3)chchoh -'Emissions of hoch2c(ooh)(ch3)chchoh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 160 ; - } -#Emissions of hoch2c(ooh)(ch3)ch=ch2 -'Emissions of hoch2c(ooh)(ch3)ch=ch2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 161 ; - } -#Emissions of lumped aromatics -'Emissions of lumped aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 162 ; - } -#Emissions of dimethyl sulfoxyde -'Emissions of dimethyl sulfoxyde' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 163 ; - } -#Emissions of c7h9o5 -'Emissions of c7h9o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 164 ; - } -#Emissions of c7h10o5 -'Emissions of c7h10o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 165 ; - } -#Emissions of hydrogensulfide -'Emissions of hydrogensulfide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 166 ; - } -#Emissions of c7h10o6 -'Emissions of c7h10o6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 167 ; - } -#Emissions of all nitrogen oxides -'Emissions of all nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 168 ; - } -#Emissions of chlorine family -'Emissions of chlorine family' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 169 ; - } -#Emissions of c10h16(oh)(oo) -'Emissions of c10h16(oh)(oo)' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 170 ; - } -#Emissions of bromine family -'Emissions of bromine family' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 171 ; - } -#Emissions of c10h18o3 -'Emissions of c10h18o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 172 ; - } -#Emissions of nitrogen atom -'Emissions of nitrogen atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 173 ; - } -#Emissions of chlorine monoxide -'Emissions of chlorine monoxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 174 ; - } -#Emissions of chlorine atom -'Emissions of chlorine atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 175 ; - } -#Emissions of bromine monoxide -'Emissions of bromine monoxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 176 ; - } -#Emissions of hydrogen atom -'Emissions of hydrogen atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 177 ; - } -#Emissions of methyl group -'Emissions of methyl group' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 178 ; - } -#Emissions of aromatic-ho from toluene and less reactive aromatics -'Emissions of aromatic-ho from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 179 ; - } -#Emissions of aromatic-ho from xylene and more reactive aromatics -'Emissions of aromatic-ho from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 180 ; - } -#Emissions of ammonium nitrate -'Emissions of ammonium nitrate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 181 ; - } -#Emissions of aromatic-ho from csl -'Emissions of aromatic-ho from csl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 182 ; - } -#Emissions of secondary organic aerosol type 1 -'Emissions of secondary organic aerosol type 1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 183 ; - } -#Emissions of secondary organic aerosol type 2a -'Emissions of secondary organic aerosol type 2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 184 ; - } -#Emissions of secondary organic aerosol type 2b -'Emissions of secondary organic aerosol type 2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 185 ; - } -#Emissions of condensable gas type 1 -'Emissions of condensable gas type 1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 186 ; - } -#Emissions of condensable gas type 2a -'Emissions of condensable gas type 2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 187 ; - } -#Emissions of condensable gas type 2b -'Emissions of condensable gas type 2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 188 ; - } -#Emissions of sulfur trioxide -'Emissions of sulfur trioxide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 189 ; - } -#Emissions of carbonyl sulfide -'Emissions of carbonyl sulfide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 190 ; - } -#Emissions of bromine atom -'Emissions of bromine atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 191 ; - } -#Emissions of bromine -'Emissions of bromine' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 192 ; - } -#Emissions of bromine monochloride -'Emissions of bromine monochloride' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 193 ; - } -#Emissions of bromine nitrate -'Emissions of bromine nitrate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 194 ; - } -#Emissions of dibromomethane -'Emissions of dibromomethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 195 ; - } -#Emissions of methoxy radical -'Emissions of methoxy radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 196 ; - } -#Emissions of tribromomethane -'Emissions of tribromomethane' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 197 ; - } -#Emissions of asymmetric chlorine dioxide radical -'Emissions of asymmetric chlorine dioxide radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 198 ; - } -#Emissions of hydrogen -'Emissions of hydrogen' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 199 ; - } -#Emissions of hydrogen chloride -'Emissions of hydrogen chloride' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 200 ; - } -#Emissions of formyl radical -'Emissions of formyl radical' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 201 ; - } -#Emissions of hydrogen fluoride -'Emissions of hydrogen fluoride' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 202 ; - } -#Emissions of oxygen atom -'Emissions of oxygen atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 203 ; - } -#Emissions of excited oxygen atom -'Emissions of excited oxygen atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 204 ; - } -#Emissions of ground state oxygen atom -'Emissions of ground state oxygen atom' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 205 ; - } -#Emissions of stratospheric aerosol -'Emissions of stratospheric aerosol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 206 ; - } -#Wildfire flux of paraffins -'Wildfire flux of paraffins' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 207 ; - } -#Wildfire flux of olefines -'Wildfire flux of olefines' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 208 ; - } -#Wildfire flux of aldehydes -'Wildfire flux of aldehydes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 209 ; - } -#Wildfire flux of ketones -'Wildfire flux of ketones' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 210 ; - } -#Wildfire flux of f a-pinene cyclic terpenes -'Wildfire flux of f a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 211 ; - } -#Wildfire flux of toluene less reactive aromatics -'Wildfire flux of toluene less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 212 ; - } -#Wildfire flux of xylene more reactive aromatics -'Wildfire flux of xylene more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 213 ; - } -#Wildfire flux of d-limonene cyclic diene -'Wildfire flux of d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 214 ; - } -#Wildfire flux of terminal alkenes -'Wildfire flux of terminal alkenes' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 215 ; - } -#Wildfire flux of alkanes low oh rate -'Wildfire flux of alkanes low oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 216 ; - } -#Wildfire flux of alkanes med oh rate -'Wildfire flux of alkanes med oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 217 ; - } -#Wildfire flux of alkanes high oh rate -'Wildfire flux of alkanes high oh rate' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 218 ; - } -#Wildfire flux of hydrogen cyanide -'Wildfire flux of hydrogen cyanide' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 219 ; - } -#Wildfire flux of acetonitrile -'Wildfire flux of acetonitrile' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 220 ; - } -#Ozone deposition velocity -'Ozone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'Nitrogen oxides deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'Hydrogen peroxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'Methane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'Carbon monoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'Nitric acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'Methyl peroxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'Formaldehyde deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'Paraffins deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'Ethene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'Olefins deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'Aldehydes deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'Peroxyacetyl nitrate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'Peroxides deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'Organic nitrates deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'Isoprene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'Sulfur dioxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'Dimethyl sulfide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'Ammonia deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'Sulfate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'Ammonium deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'Methane sulfonic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'Methyl glyoxal deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'Stratospheric ozone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'Radon deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'Lead deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'Nitrogen monoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'Hydroperoxy radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'Methylperoxy radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'Hydroxyl radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'Nitrogen dioxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'Nitrate radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'Dinitrogen pentoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'Pernitric acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'Peroxy acetyl radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'Organic ethers deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'PAR budget corrector deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'NO to NO2 operator deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'NO to alkyl nitrate operator deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'Amine deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'Polar stratospheric cloud deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'Methanol deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'Formic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'Methacrylic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'Ethane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'Ethanol deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'Propane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'Propene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'Terpenes deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'Methacrolein MVK deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'Nitrate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'Acetone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'Acetone product deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'IC3H7O2 deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'HYPROPO2 deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'Nitrogen oxides Transp deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Dry deposition velocity of carbon dioxide (chemistry) -'Dry deposition velocity of carbon dioxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 57 ; - } -#Dry deposition velocity of nitrous oxide (chemistry) -'Dry deposition velocity of nitrous oxide (chemistry)' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 58 ; - } -#Dry deposition velocity of water vapour (chemistry) -'Dry deposition velocity of water vapour (chemistry)' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 59 ; - } -#Dry deposition velocity of oxygen -'Dry deposition velocity of oxygen' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 60 ; - } -#Dry deposition velocity of singlet oxygen -'Dry deposition velocity of singlet oxygen' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 61 ; - } -#Dry deposition velocity of singlet delta oxygen -'Dry deposition velocity of singlet delta oxygen' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 62 ; - } -#Dry deposition velocity of chlorine dioxide -'Dry deposition velocity of chlorine dioxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 63 ; - } -#Dry deposition velocity of chlorine nitrate -'Dry deposition velocity of chlorine nitrate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 64 ; - } -#Dry deposition velocity of hypochlorous acid -'Dry deposition velocity of hypochlorous acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 65 ; - } -#Dry deposition velocity of chlorine -'Dry deposition velocity of chlorine' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 66 ; - } -#Dry deposition velocity of nitryl chloride -'Dry deposition velocity of nitryl chloride' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 67 ; - } -#Dry deposition velocity of hydrogen bromide -'Dry deposition velocity of hydrogen bromide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 68 ; - } -#Dry deposition velocity of dichlorine dioxide -'Dry deposition velocity of dichlorine dioxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 69 ; - } -#Dry deposition velocity of hypobromous acid -'Dry deposition velocity of hypobromous acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 70 ; - } -#Dry deposition velocity of trichlorofluoromethane -'Dry deposition velocity of trichlorofluoromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 71 ; - } -#Dry deposition velocity of dichlorodifluoromethane -'Dry deposition velocity of dichlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 72 ; - } -#Dry deposition velocity of trichlorotrifluoroethane -'Dry deposition velocity of trichlorotrifluoroethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 73 ; - } -#Dry deposition velocity of dichlorotetrafluoroethane -'Dry deposition velocity of dichlorotetrafluoroethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 74 ; - } -#Dry deposition velocity of chloropentafluoroethane -'Dry deposition velocity of chloropentafluoroethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 75 ; - } -#Dry deposition velocity of tetrachloromethane -'Dry deposition velocity of tetrachloromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 76 ; - } -#Dry deposition velocity of methyl chloroform -'Dry deposition velocity of methyl chloroform' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 77 ; - } -#Dry deposition velocity of methyl chloride -'Dry deposition velocity of methyl chloride' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 78 ; - } -#Dry deposition velocity of chlorodifluoromethane -'Dry deposition velocity of chlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 79 ; - } -#Dry deposition velocity of methyl bromide -'Dry deposition velocity of methyl bromide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 80 ; - } -#Dry deposition velocity of dibromodifluoromethane -'Dry deposition velocity of dibromodifluoromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 81 ; - } -#Dry deposition velocity of bromochlorodifluoromethane -'Dry deposition velocity of bromochlorodifluoromethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 82 ; - } -#Dry deposition velocity of trifluorobromomethane -'Dry deposition velocity of trifluorobromomethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 83 ; - } -#Dry deposition velocity of cbrf2cbrf2 -'Dry deposition velocity of cbrf2cbrf2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 84 ; - } -#Dry deposition velocity of sulfuric acid -'Dry deposition velocity of sulfuric acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 85 ; - } -#Dry deposition velocity of nitrous acid -'Dry deposition velocity of nitrous acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 86 ; - } -#Dry deposition velocity of alkanes low oh rate -'Dry deposition velocity of alkanes low oh rate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 87 ; - } -#Dry deposition velocity of alkanes med oh rate -'Dry deposition velocity of alkanes med oh rate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 88 ; - } -#Dry deposition velocity of alkanes high oh rate -'Dry deposition velocity of alkanes high oh rate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 89 ; - } -#Dry deposition velocity of terminal alkenes -'Dry deposition velocity of terminal alkenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 90 ; - } -#Dry deposition velocity of internal alkenes -'Dry deposition velocity of internal alkenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 91 ; - } -#Dry deposition velocity of ethylperoxy radical -'Dry deposition velocity of ethylperoxy radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 92 ; - } -#Dry deposition velocity of butadiene -'Dry deposition velocity of butadiene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 93 ; - } -#Dry deposition velocity of ethyl hydroperoxide -'Dry deposition velocity of ethyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 94 ; - } -#Dry deposition velocity of a-pinene cyclic terpenes -'Dry deposition velocity of a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 95 ; - } -#Dry deposition velocity of acetic acid -'Dry deposition velocity of acetic acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 96 ; - } -#Dry deposition velocity of d-limonene cyclic diene -'Dry deposition velocity of d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 97 ; - } -#Dry deposition velocity of acetaldehyde -'Dry deposition velocity of acetaldehyde' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 98 ; - } -#Dry deposition velocity of toluene and less reactive aromatics -'Dry deposition velocity of toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 99 ; - } -#Dry deposition velocity of xylene and more reactive aromatics -'Dry deposition velocity of xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 100 ; - } -#Dry deposition velocity of glycolaldehyde -'Dry deposition velocity of glycolaldehyde' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 101 ; - } -#Dry deposition velocity of cresol -'Dry deposition velocity of cresol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 102 ; - } -#Dry deposition velocity of acetaldehyde and higher -'Dry deposition velocity of acetaldehyde and higher' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 103 ; - } -#Dry deposition velocity of peracetic acid -'Dry deposition velocity of peracetic acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 104 ; - } -#Dry deposition velocity of ketones -'Dry deposition velocity of ketones' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 105 ; - } -#Dry deposition velocity of hoch2ch2o2 -'Dry deposition velocity of hoch2ch2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 106 ; - } -#Dry deposition velocity of glyoxal -'Dry deposition velocity of glyoxal' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 107 ; - } -#Dry deposition velocity of hoch2ch2o -'Dry deposition velocity of hoch2ch2o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 108 ; - } -#Dry deposition velocity of unsaturated dicarbonyls -'Dry deposition velocity of unsaturated dicarbonyls' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 109 ; - } -#Dry deposition velocity of methacrolein -'Dry deposition velocity of methacrolein' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 110 ; - } -#Dry deposition velocity of unsaturated hydroxy dicarbonyl -'Dry deposition velocity of unsaturated hydroxy dicarbonyl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 111 ; - } -#Dry deposition velocity of isopropyldioxidanyl -'Dry deposition velocity of isopropyldioxidanyl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 112 ; - } -#Dry deposition velocity of hydroxy ketone -'Dry deposition velocity of hydroxy ketone' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 113 ; - } -#Dry deposition velocity of isopropyl hydroperoxide -'Dry deposition velocity of isopropyl hydroperoxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 114 ; - } -#Dry deposition velocity of c3h6oho2 -'Dry deposition velocity of c3h6oho2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 115 ; - } -#Dry deposition velocity of c3h6ohooh -'Dry deposition velocity of c3h6ohooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 116 ; - } -#Dry deposition velocity of higher organic peroxides -'Dry deposition velocity of higher organic peroxides' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 117 ; - } -#Dry deposition velocity of hydroxyacetone -'Dry deposition velocity of hydroxyacetone' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 118 ; - } -#Dry deposition velocity of peroxyacetic acid -'Dry deposition velocity of peroxyacetic acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 119 ; - } -#Dry deposition velocity of ch3coch2o2 -'Dry deposition velocity of ch3coch2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 120 ; - } -#Dry deposition velocity of peroxy radical from c2h6 -'Dry deposition velocity of peroxy radical from c2h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 121 ; - } -#Dry deposition velocity of peroxy radical from hc3 -'Dry deposition velocity of peroxy radical from hc3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 122 ; - } -#Dry deposition velocity of peroxy radical from hc5 -'Dry deposition velocity of peroxy radical from hc5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 123 ; - } -#Dry deposition velocity of lumped alkenes -'Dry deposition velocity of lumped alkenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 124 ; - } -#Dry deposition velocity of peroxy radical from hc8 -'Dry deposition velocity of peroxy radical from hc8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 125 ; - } -#Dry deposition velocity of lumped alkanes -'Dry deposition velocity of lumped alkanes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 126 ; - } -#Dry deposition velocity of peroxy radical from c2h4 -'Dry deposition velocity of peroxy radical from c2h4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 127 ; - } -#Dry deposition velocity of c4h8o -'Dry deposition velocity of c4h8o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 128 ; - } -#Dry deposition velocity of peroxy radical from terminal alkenes -'Dry deposition velocity of peroxy radical from terminal alkenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 129 ; - } -#Dry deposition velocity of c4h9o3 -'Dry deposition velocity of c4h9o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 130 ; - } -#Dry deposition velocity of peroxy radical from internal alkenes -'Dry deposition velocity of peroxy radical from internal alkenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 131 ; - } -#Dry deposition velocity of ch3coch(oo)ch3 -'Dry deposition velocity of ch3coch(oo)ch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 132 ; - } -#Dry deposition velocity of peroxy radical from c5h8 -'Dry deposition velocity of peroxy radical from c5h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 133 ; - } -#Dry deposition velocity of ch3coch(ooh)ch3 -'Dry deposition velocity of ch3coch(ooh)ch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 134 ; - } -#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes -'Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 135 ; - } -#Dry deposition velocity of ch2=c(ch3)co3 -'Dry deposition velocity of ch2=c(ch3)co3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 136 ; - } -#Dry deposition velocity of peroxy radical from d-limonene cyclic diene -'Dry deposition velocity of peroxy radical from d-limonene cyclic diene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 137 ; - } -#Dry deposition velocity of methylvinylketone -'Dry deposition velocity of methylvinylketone' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 138 ; - } -#Dry deposition velocity of phenoxy radical -'Dry deposition velocity of phenoxy radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 139 ; - } -#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics -'Dry deposition velocity of peroxy radical from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 140 ; - } -#Dry deposition velocity of ch3c(o)ch(oo)ch2oh -'Dry deposition velocity of ch3c(o)ch(oo)ch2oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 141 ; - } -#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics -'Dry deposition velocity of peroxy radical from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 142 ; - } -#Dry deposition velocity of h3c(o)ch(ooh)ch2oh -'Dry deposition velocity of h3c(o)ch(ooh)ch2oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 143 ; - } -#Dry deposition velocity of peroxy radical from cresol -'Dry deposition velocity of peroxy radical from cresol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 144 ; - } -#Dry deposition velocity of unsaturated pans -'Dry deposition velocity of unsaturated pans' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 145 ; - } -#Dry deposition velocity of unsaturated acyl peroxy radical -'Dry deposition velocity of unsaturated acyl peroxy radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 146 ; - } -#Dry deposition velocity of peroxy radical from ketones -'Dry deposition velocity of peroxy radical from ketones' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 147 ; - } -#Dry deposition velocity of c5h11o2 -'Dry deposition velocity of c5h11o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 148 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates -'Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 149 ; - } -#Dry deposition velocity of c5h11ooh -'Dry deposition velocity of c5h11ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 150 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting via decomposition -'Dry deposition velocity of no3-alkenes adduct reacting via decomposition' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 151 ; - } -#Dry deposition velocity of hoch2c(ch3)=chcho -'Dry deposition velocity of hoch2c(ch3)=chcho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 152 ; - } -#Dry deposition velocity of c5h6o2 -'Dry deposition velocity of c5h6o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 153 ; - } -#Dry deposition velocity of trop sulfuric acid -'Dry deposition velocity of trop sulfuric acid' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 154 ; - } -#Dry deposition velocity of oxides -'Dry deposition velocity of oxides' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 155 ; - } -#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 -'Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 156 ; - } -#Dry deposition velocity of c3 organic nitrate -'Dry deposition velocity of c3 organic nitrate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 157 ; - } -#Dry deposition velocity of chlorine oxides -'Dry deposition velocity of chlorine oxides' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 158 ; - } -#Dry deposition velocity of bromine oxides -'Dry deposition velocity of bromine oxides' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 159 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh -'Dry deposition velocity of hoch2c(ooh)(ch3)chchoh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 160 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 -'Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 161 ; - } -#Dry deposition velocity of lumped aromatics -'Dry deposition velocity of lumped aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 162 ; - } -#Dry deposition velocity of dimethyl sulfoxyde -'Dry deposition velocity of dimethyl sulfoxyde' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 163 ; - } -#Dry deposition velocity of c7h9o5 -'Dry deposition velocity of c7h9o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 164 ; - } -#Dry deposition velocity of c7h10o5 -'Dry deposition velocity of c7h10o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 165 ; - } -#Dry deposition velocity of hydrogensulfide -'Dry deposition velocity of hydrogensulfide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 166 ; - } -#Dry deposition velocity of c7h10o6 -'Dry deposition velocity of c7h10o6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 167 ; - } -#Dry deposition velocity of all nitrogen oxides -'Dry deposition velocity of all nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 168 ; - } -#Dry deposition velocity of chlorine family -'Dry deposition velocity of chlorine family' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 169 ; - } -#Dry deposition velocity of c10h16(oh)(oo) -'Dry deposition velocity of c10h16(oh)(oo)' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 170 ; - } -#Dry deposition velocity of bromine family -'Dry deposition velocity of bromine family' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 171 ; - } -#Dry deposition velocity of c10h18o3 -'Dry deposition velocity of c10h18o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 172 ; - } -#Dry deposition velocity of nitrogen atom -'Dry deposition velocity of nitrogen atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 173 ; - } -#Dry deposition velocity of chlorine monoxide -'Dry deposition velocity of chlorine monoxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 174 ; - } -#Dry deposition velocity of chlorine atom -'Dry deposition velocity of chlorine atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 175 ; - } -#Dry deposition velocity of bromine monoxide -'Dry deposition velocity of bromine monoxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 176 ; - } -#Dry deposition velocity of hydrogen atom -'Dry deposition velocity of hydrogen atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 177 ; - } -#Dry deposition velocity of methyl group -'Dry deposition velocity of methyl group' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 178 ; - } -#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics -'Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 179 ; - } -#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics -'Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 180 ; - } -#Dry deposition velocity of ammonium nitrate -'Dry deposition velocity of ammonium nitrate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 181 ; - } -#Dry deposition velocity of aromatic-ho from csl -'Dry deposition velocity of aromatic-ho from csl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 182 ; - } -#Dry deposition velocity of secondary organic aerosol type 1 -'Dry deposition velocity of secondary organic aerosol type 1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 183 ; - } -#Dry deposition velocity of secondary organic aerosol type 2a -'Dry deposition velocity of secondary organic aerosol type 2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 184 ; - } -#Dry deposition velocity of secondary organic aerosol type 2b -'Dry deposition velocity of secondary organic aerosol type 2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 185 ; - } -#Dry deposition velocity of condensable gas type 1 -'Dry deposition velocity of condensable gas type 1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 186 ; - } -#Dry deposition velocity of condensable gas type 2a -'Dry deposition velocity of condensable gas type 2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 187 ; - } -#Dry deposition velocity of condensable gas type 2b -'Dry deposition velocity of condensable gas type 2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 188 ; - } -#Dry deposition velocity of sulfur trioxide -'Dry deposition velocity of sulfur trioxide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 189 ; - } -#Dry deposition velocity of carbonyl sulfide -'Dry deposition velocity of carbonyl sulfide' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 190 ; - } -#Dry deposition velocity of bromine atom -'Dry deposition velocity of bromine atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 191 ; - } -#Dry deposition velocity of bromine -'Dry deposition velocity of bromine' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 192 ; - } -#Dry deposition velocity of bromine monochloride -'Dry deposition velocity of bromine monochloride' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 193 ; - } -#Dry deposition velocity of bromine nitrate -'Dry deposition velocity of bromine nitrate' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 194 ; - } -#Dry deposition velocity of dibromomethane -'Dry deposition velocity of dibromomethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 195 ; - } -#Dry deposition velocity of methoxy radical -'Dry deposition velocity of methoxy radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 196 ; - } -#Dry deposition velocity of tribromomethane -'Dry deposition velocity of tribromomethane' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 197 ; - } -#Dry deposition velocity of asymmetric chlorine dioxide radical -'Dry deposition velocity of asymmetric chlorine dioxide radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 198 ; - } -#Dry deposition velocity of hydrogen -'Dry deposition velocity of hydrogen' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 199 ; - } -#Dry deposition velocity of hydrogen chloride -'Dry deposition velocity of hydrogen chloride' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 200 ; - } -#Dry deposition velocity of formyl radical -'Dry deposition velocity of formyl radical' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 201 ; - } -#Dry deposition velocity of hydrogen fluoride -'Dry deposition velocity of hydrogen fluoride' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 202 ; - } -#Dry deposition velocity of oxygen atom -'Dry deposition velocity of oxygen atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 203 ; - } -#Dry deposition velocity of excited oxygen atom -'Dry deposition velocity of excited oxygen atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 204 ; - } -#Dry deposition velocity of ground state oxygen atom -'Dry deposition velocity of ground state oxygen atom' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 205 ; - } -#Dry deposition velocity of stratospheric aerosol -'Dry deposition velocity of stratospheric aerosol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 206 ; - } -#Total sky direct solar radiation at surface -'Total sky direct solar radiation at surface' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'Clear-sky direct solar radiation at surface' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'Cloud base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Horizontal visibility -'Horizontal visibility' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'Maximum temperature at 2 metres in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'Minimum temperature at 2 metres in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'Soil wetness index in layer 1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'Soil wetness index in layer 2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'Soil wetness index in layer 3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'Soil wetness index in layer 4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of zero-degree wet-bulb temperature -'Height of zero-degree wet-bulb temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of one-degree wet-bulb temperature -'Height of one-degree wet-bulb temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Instantaneous total lightning flash density -'Instantaneous total lightning flash density' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Instantaneous total lightning flash density -'Instantaneous total lightning flash density' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; - } -#Averaged total lightning flash density in the last hour -'Averaged total lightning flash density in the last hour' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - } -#Averaged total lightning flash density in the last hour -'Averaged total lightning flash density in the last hour' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'Instantaneous cloud-to-ground lightning flash density' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'Instantaneous cloud-to-ground lightning flash density' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'Averaged cloud-to-ground lightning flash density in the last hour' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'Averaged cloud-to-ground lightning flash density in the last hour' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; - } -#Averaged total lightning flash density in the last 3 hours -'Averaged total lightning flash density in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last 3 hours -'Averaged total lightning flash density in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; - } -#Averaged total lightning flash density in the last 6 hours -'Averaged total lightning flash density in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - } -#Averaged total lightning flash density in the last 6 hours -'Averaged total lightning flash density in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'GPP coefficient from Biogenic Flux Adjustment System' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'Rec coefficient from Biogenic Flux Adjustment System' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'Accumulated Carbon Dioxide Net Ecosystem Exchange' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'Accumulated Carbon Dioxide Gross Primary Production' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'Accumulated Carbon Dioxide Ecosystem Respiration' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'Flux of Carbon Dioxide Net Ecosystem Exchange' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'Flux of Carbon Dioxide Gross Primary Production' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'Flux of Carbon Dioxide Ecosystem Respiration' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total column rain water -'Total column rain water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'Total column snow water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'Canopy cover fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'Soil texture fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'Ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Evaporation from the top of canopy -'Evaporation from the top of canopy' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 100 ; - } -#Evaporation from bare soil -'Evaporation from bare soil' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 101 ; - } -#Evaporation from open water surfaces excluding oceans -'Evaporation from open water surfaces excluding oceans' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 102 ; - } -#Evaporation from vegetation transpiration -'Evaporation from vegetation transpiration' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 103 ; - } -#Surface solar radiation downward clear-sky -'Surface solar radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'Surface thermal radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'Surface short wave-effective total cloudiness' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#Irrigation fraction -'Irrigation fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'Irrigation' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'Surface long wave-effective total cloudiness' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'Stream function gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'Velocity potential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'Potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'Equivalent potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'Saturated equivalent potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'U component of divergent wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'V component of divergent wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'U component of rotational wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'V component of rotational wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'Unbalanced component of temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'Unbalanced component of logarithm of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'Unbalanced component of divergence gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'Lake cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'Low vegetation cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'High vegetation cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'Type of low vegetation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'Type of high vegetation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'Sea-ice cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'Snow albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'Snow density gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'Sea surface temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'Ice surface temperature layer 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'Ice surface temperature layer 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'Ice surface temperature layer 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'Ice surface temperature layer 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'Volumetric soil water layer 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'Volumetric soil water layer 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'Volumetric soil water layer 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'Volumetric soil water layer 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'Soil type gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'Snow evaporation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'Snowmelt gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'Solar duration gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'Direct solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'Magnitude of turbulent surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'10 metre wind gust gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'Large-scale precipitation fraction gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'Maximum 2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'Minimum 2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'Montgomery potential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'Pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'Mean 2 metre temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'Downward UV radiation at the surface gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'Photosynthetically active radiation at the surface gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'Convective available potential energy gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'Potential vorticity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'Total precipitation from observations gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'Observation count gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'Total column ice water' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'Maximum temperature at 2 metres gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'Minimum temperature at 2 metres gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10 metre wind gust in the last 6 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'Atmospheric tide gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'Budget values gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'Geopotential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'Temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'U component of wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'V component of wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'Specific humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'Surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'vertical velocity (pressure) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'Total column water gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'Total column water vapour gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'Vorticity (relative) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'Soil temperature level 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'Soil wetness level 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'Snow depth gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'Stratiform precipitation (Large-scale precipitation) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'Convective precipitation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'Snowfall (convective + stratiform) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'Boundary layer dissipation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'Surface sensible heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'Surface latent heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'Charnock gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'Surface net radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'Top net radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'Mean sea level pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'Logarithm of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'Short-wave heating rate gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'Long-wave heating rate gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'Divergence gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'Height gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'Relative humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'Tendency of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'Boundary layer height gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'Standard deviation of orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'Anisotropy of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'Angle of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'Slope of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'Total cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'10 metre U wind component gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'10 metre V wind component gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'2 metre dewpoint temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'Surface solar radiation downwards gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'Soil temperature level 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'Soil wetness level 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'Land-sea mask gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'Surface roughness gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'Albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'Surface thermal radiation downwards gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'Surface net solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'Surface net thermal radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'Top net solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'Top net thermal radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'East-West surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'North-South surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'Evaporation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'Soil temperature level 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'Soil wetness level 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'Convective cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'Low cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'Medium cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'High cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'Sunshine duration gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'East-West component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'North-South component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'North-West/South-East component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'North-East/South-West component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'Brightness temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'Longitudinal component of gravity wave stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'Meridional component of gravity wave stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'Gravity wave dissipation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'Skin reservoir content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'Vegetation fraction gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'Variance of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'Maximum temperature at 2 metres since previous post-processing gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'Minimum temperature at 2 metres since previous post-processing gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'Ozone mass mixing ratio gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'Precipitation analysis weights gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'Runoff gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'Total column ozone gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'10 metre wind speed gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'Top net solar radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'Top net thermal radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'Surface net solar radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'Surface net thermal radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'TOA incident solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'Diabatic heating by radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'Diabatic heating by vertical diffusion gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'Diabatic heating by cumulus convection gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'Diabatic heating large-scale condensation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'Vertical diffusion of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'Vertical diffusion of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'East-West gravity wave drag tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'North-South gravity wave drag tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'Convective tendency of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'Convective tendency of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'Vertical diffusion of humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'Humidity tendency by cumulus convection gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'Humidity tendency by large-scale condensation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'Change from removal of negative humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'Total precipitation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'Instantaneous X surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'Instantaneous Y surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'Instantaneous surface heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'Instantaneous moisture flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'Apparent surface humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'Logarithm of surface roughness length for heat gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'Skin temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'Soil temperature level 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'Soil wetness level 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'Temperature of snow layer gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'Convective snowfall gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'Large scale snowfall gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'Accumulated cloud fraction tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'Accumulated liquid water tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'Forecast albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'Forecast surface roughness gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'Forecast logarithm of surface roughness for heat gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'Specific cloud liquid water content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'Specific cloud ice water content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'Cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'Accumulated ice water tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'Ice age gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'Adiabatic tendency of temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'Adiabatic tendency of humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'Adiabatic tendency of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'Adiabatic tendency of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'Top solar radiation upward' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'Top thermal radiation upward' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'Top solar radiation upward, clear sky' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'Top thermal radiation upward, clear sky' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'Cloud liquid water' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'Cloud fraction' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'Diabatic heating by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'East-West gravity wave drag' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'North-South gravity wave drag' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'Mean vertical velocity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'2m temperature anomaly of at least +2K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'2m temperature anomaly of at least +1K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'2m temperature anomaly of at least 0K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'2m temperature anomaly of at most -1K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'2m temperature anomaly of at most -2K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'Total precipitation anomaly of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'Total precipitation anomaly of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'Total precipitation anomaly of at least 0 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'Surface temperature anomaly of at least 0K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'Mean sea level pressure anomaly of at least 0 Pa' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'Height of 0 degree isotherm probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'Height of snowfall limit probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'Showalter index probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'Whiting index probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'Temperature anomaly less than -2 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'Temperature anomaly of at least +2 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'Temperature anomaly less than -8 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'Temperature anomaly less than -4 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'Temperature anomaly greater than +4 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'Temperature anomaly greater than +8 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'10 metre wind gust probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'Convective available potential energy probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'Total precipitation less than 0.1 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'Total precipitation rate less than 1 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'Total precipitation rate of at least 3 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'Total precipitation rate of at least 5 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10 metre Wind speed of at least 10 m/s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10 metre Wind speed of at least 15 m/s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre wind gust of at least 25 m/s -'10 metre wind gust of at least 25 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - } -#2 metre temperature less than 273.15 K -'2 metre temperature less than 273.15 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'Significant wave height of at least 2 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 5 ; - scaledValueOfLowerLimit = 2 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 4 m -'Significant wave height of at least 4 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 4 ; - } -#Significant wave height of at least 6 m -'Significant wave height of at least 6 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'Significant wave height of at least 8 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#Mean wave period of at least 8 s -'Mean wave period of at least 8 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'Mean wave period of at least 10 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'Mean wave period of at least 12 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'Mean wave period of at least 15 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'Geopotential probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'Temperature anomaly probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'Soil temperature level 1 probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'Snowfall (convective + stratiform) probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'Mean sea level pressure probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'Total cloud cover probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'10 metre speed probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'Maximum 2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'Minimum 2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'Total precipitation probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'Significant wave height probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'Mean wave period probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'2m temperature probability less than -10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'2m temperature probability less than -5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'2m temperature probability less than 0 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'2m temperature probability less than 5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'2m temperature probability less than 10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'2m temperature probability greater than 25 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'2m temperature probability greater than 30 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'2m temperature probability greater than 35 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'2m temperature probability greater than 40 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'2m temperature probability greater than 45 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'Minimum 2 metre temperature probability less than -10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'Minimum 2 metre temperature probability less than -5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'Minimum 2 metre temperature probability less than 0 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'Minimum 2 metre temperature probability less than 5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'Minimum 2 metre temperature probability less than 10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'Maximum 2 metre temperature probability greater than 25 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'Maximum 2 metre temperature probability greater than 30 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'Maximum 2 metre temperature probability greater than 35 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'Maximum 2 metre temperature probability greater than 40 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'Maximum 2 metre temperature probability greater than 45 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10 metre wind speed probability of at least 10 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10 metre wind speed probability of at least 15 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10 metre wind speed probability of at least 20 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10 metre wind speed probability of at least 35 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10 metre wind speed probability of at least 50 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10 metre wind gust probability of at least 20 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10 metre wind gust probability of at least 35 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10 metre wind gust probability of at least 50 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10 metre wind gust probability of at least 75 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10 metre wind gust probability of at least 100 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'Total precipitation probability of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'Total precipitation probability of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'Total precipitation probability of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'Total precipitation probability of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'Total precipitation probability of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'Total precipitation probability of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'Total precipitation probability of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'Total precipitation probability of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'Total precipitation probability of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'Total precipitation probability of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'Total precipitation probability of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'Snowfall probability of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'Snowfall probability of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'Snowfall probability of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'Snowfall probability of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'Snowfall probability of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'Snowfall probability of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'Snowfall probability of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'Snowfall probability of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'Snowfall probability of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'Snowfall probability of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'Snowfall probability of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'Total Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'Total Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'Total Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'Total Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'Total Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'Total Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'Total Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'Total Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'Total Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'Total Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'High Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'High Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'High Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'High Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'High Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'High Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'High Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'High Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'High Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'High Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'Medium Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'Medium Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'Medium Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'Medium Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'Medium Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'Medium Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'Medium Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'Medium Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'Medium Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'Medium Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'Low Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'Low Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'Low Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'Low Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'Low Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'Low Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'Low Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'Low Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'Low Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'Low Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'Maximum of significant wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'Period corresponding to maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'Maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'Model bathymetry' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'Mean wave period based on first moment' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'Wave spectral directional width' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'Mean wave period based on first moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'Mean wave period based on second moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'Wave spectral directional width for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'Mean wave period based on first moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'Mean wave period based on second moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'Wave spectral directional width for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak wave period -'Peak wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Peak wave period -'Peak wave period' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'Coefficient of drag with waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'Significant height of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'Mean direction of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'Mean period of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'Standard deviation wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'Mean wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'Standard deviation of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'Mean square slope of waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'Altimeter wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'Altimeter corrected wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'Altimeter range relative correction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'10 metre wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'2D wave spectra (multiple)' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'2D wave spectra (single)' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'Wave spectral kurtosis' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'Benjamin-Feir index' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'Wave spectral peakedness' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'Ocean potential temperature' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'Ocean salinity' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'Ocean potential density' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'Ocean U wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'Ocean V wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'Ocean W wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'Richardson number' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'U*V product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'U*T product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'V*T product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'U*U product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'V*V product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'UV - U~V~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'UT - U~T~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'VT - V~T~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'UU - U~U~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'VV - V~V~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'Sea level' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'Barotropic stream function' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'Depth' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'U stress' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'V stress' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'Net surface heat flux' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'Surface solar radiation' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'P-E' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'Heat flux correction' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'Observed sea surface temperature' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'Observed heat flux' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'In situ Temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Sea water potential temperature -'Sea water potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'Sea water practical salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'Upward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'Modulus of strain rate tensor' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'Vertical viscosity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'Vertical diffusivity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'Bottom level Depth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sea water sigma theta -'Sea water sigma theta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'Richardson number' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'UV product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'UT product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'VT product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'UU product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'VV product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level previous timestep -'Sea level previous timestep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Ocean barotropic stream function -'Ocean barotropic stream function' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'Bottom Pressure (equivalent height)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'Steric height' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'Curl of Wind Stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'Divergence of wind stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#Surface downward eastward stress -'Surface downward eastward stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'Surface downward northward stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'Net surface heat flux' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'Absorbed solar radiation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'Precipitation - evaporation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'Specified sea surface temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'Specified surface heat flux' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'Heat flux correction' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#Average potential temperature in the upper 300m -'Average potential temperature in the upper 300m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'Vertically integrated zonal velocity (previous time step)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'Vertically Integrated meridional velocity (previous time step)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'Vertically integrated zonal volume transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'Vertically integrated meridional volume transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'Vertically integrated zonal heat transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'Vertically integrated meridional heat transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'U velocity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'Depth of the velocity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'Salinity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'Depth of salinity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Layer Thickness at scalar points -'Layer Thickness at scalar points' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'Layer Thickness at vector points' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'Potential temperature increment' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'Potential temperature analysis error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'Background potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'Analysed potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'Potential temperature background error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'Analysed salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'Salinity increment' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'Estimated Bias in Temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'Estimated Bias in Salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'Zonal Velocity increment (from balance operator)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'Meridional Velocity increment (from balance operator)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'Salinity increment (from salinity data)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'Salinity analysis error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'Background Salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'Salinity background error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'Estimated temperature bias from assimilation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'Estimated salinity bias from assimilation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'Temperature increment from relaxation term' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'Salinity increment from relaxation term' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Bias in the zonal pressure gradient (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Bias in the meridional pressure gradient (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'Estimated temperature bias from relaxation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'Estimated salinity bias from relaxation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'First guess bias in temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'First guess bias in salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'Applied bias in pressure' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'FG bias in pressure' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'Bias in temperature(applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'Bias in salinity (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'10 metre wind gust during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'vertical velocity (pressure)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'Precipitable water content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'Snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'Height' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'East-West surface stress' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'North-South surface stress' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'Maximum temperature at 2 metres during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'Minimum temperature at 2 metres during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'Standard deviation of geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'Covariance of temperature and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'Standard deviation of temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'Covariance of specific humidity and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'Covariance of specific humidity and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'Standard deviation of specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'Covariance of U component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'Covariance of U component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'Covariance of U component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'Standard deviation of U velocity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'Covariance of V component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'Covariance of V component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'Covariance of V component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'Covariance of V component and U component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'Standard deviation of V component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'Covariance of W component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'Covariance of W component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'Covariance of W component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'Covariance of W component and U component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'Covariance of W component and V component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'Standard deviation of vertical velocity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'Instantaneous surface heat flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'Cloud liquid water content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'Momentum flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'Gravity wave dissipation flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'Heaviside beta function' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'Surface geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'Vertical integral of mass of atmosphere' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'Vertical integral of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'Vertical integral of water vapour' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'Vertical integral of cloud liquid water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'Vertical integral of cloud frozen water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'Vertical integral of ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'Vertical integral of kinetic energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'Vertical integral of thermal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'Vertical integral of potential+internal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'Vertical integral of potential+internal+latent energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'Vertical integral of total energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'Vertical integral of energy conversion' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'Vertical integral of eastward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'Vertical integral of northward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'Vertical integral of eastward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'Vertical integral of northward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'Vertical integral of eastward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'Vertical integral of northward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'Vertical integral of eastward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'Vertical integral of northward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'Vertical integral of eastward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'Vertical integral of northward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'Vertical integral of eastward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'Vertical integral of northward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'Vertical integral of eastward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'Vertical integral of northward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'Vertical integral of divergence of mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'Vertical integral of divergence of kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'Vertical integral of divergence of thermal energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'Vertical integral of divergence of moisture flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'Vertical integral of divergence of geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'Vertical integral of divergence of total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'Vertical integral of divergence of ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'Tendency of short wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'Tendency of long wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'Tendency of clear sky short wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'Tendency of clear sky long wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'Updraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'Downdraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'Updraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'Downdraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'Total precipitation flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'Turbulent diffusion coefficient for heat' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'Tendency of temperature due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'Tendency of specific humidity due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'Tendency of u component due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'Tendency of v component due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'Variance of geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'Covariance of geopotential/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'Variance of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'Covariance of geopotential/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'Covariance of temperature/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'Variance of specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'Covariance of u component/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'Covariance of u component/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'Covariance of u component/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'Variance of u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'Covariance of v component/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'Covariance of v component/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'Covariance of v component/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'Covariance of v component/u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'Variance of v component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'Covariance of omega/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'Covariance of omega/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'Covariance of omega/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'Covariance of omega/u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'Covariance of omega/v component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'Variance of omega' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'Variance of surface pressure' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'Variance of relative humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'Covariance of u component/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'Covariance of v component/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'Covariance of omega/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'Variance of ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'Stream function anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'Velocity potential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'Potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'Equivalent potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'Saturated equivalent potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'U component of divergent wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'V component of divergent wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'U component of rotational wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'V component of rotational wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'Unbalanced component of temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'Unbalanced component of logarithm of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'Unbalanced component of divergence anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'Lake cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'Low vegetation cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'High vegetation cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'Type of low vegetation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'Type of high vegetation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'Sea-ice cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'Snow albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'Snow density anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'Sea surface temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'Ice surface temperature anomaly layer 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'Ice surface temperature anomaly layer 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'Ice surface temperature anomaly layer 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'Ice surface temperature anomaly layer 4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'Volumetric soil water anomaly layer 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'Volumetric soil water anomaly layer 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'Volumetric soil water anomaly layer 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'Volumetric soil water anomaly layer 4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'Soil type anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'Solar duration anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'Direct solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'10 metre wind gust anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'Maximum 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'Minimum 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'Montgomery potential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'Pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'Mean 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'Downward UV radiation at the surface anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'Photosynthetically active radiation at the surface anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'Convective available potential energy anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'Potential vorticity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'Total precipitation from observations anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'Observation count anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'Start time for skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'Finish time for skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'Skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'Total column liquid water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'Total column ice water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'Vertically integrated total energy anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'Atmospheric tide anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'Budget values anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'Geopotential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'Temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'U component of wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'V component of wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'Specific humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'Surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'Vertical velocity (pressure) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'Total column water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'Total column water vapour anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'Relative vorticity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'Soil temperature anomaly level 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'Soil wetness anomaly level 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'Snow depth anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'Stratiform precipitation (Large-scale precipitation) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'Convective precipitation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'Snowfall (convective + stratiform) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'Surface sensible heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'Surface latent heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'Charnock anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'Top net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'Mean sea level pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'Logarithm of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'Relative divergence anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'Height anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'Relative humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'Tendency of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'Boundary layer height anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'Standard deviation of orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'Anisotropy of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'Angle of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'Slope of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'Total cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'10 metre U wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'10 metre V wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'2 metre temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'2 metre dewpoint temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'Surface solar radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'Soil temperature anomaly level 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'Soil wetness anomaly level 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'Surface roughness anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'Albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'Surface thermal radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'Surface net solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'Surface net thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'Top net solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'Top net thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'East-West surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'North-South surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'Evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'Soil temperature anomaly level 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'Soil wetness anomaly level 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'Convective cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'Low cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'Medium cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'High cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'Sunshine duration anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'East-West component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'North-South component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'North-West/South-East component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'North-East/South-West component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'Brightness temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'Skin reservoir content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'Vegetation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'Variance of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'Maximum temperature at 2 metres anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'Minimum temperature at 2 metres anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'Ozone mass mixing ratio anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'Precipitation analysis weights anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'Runoff anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'Total column ozone anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'10 metre wind speed anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'Top net solar radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'Top net thermal radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'Surface net solar radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'Solar insolation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'Diabatic heating by radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'Diabatic heating by vertical diffusion anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'Diabatic heating by cumulus convection anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'Diabatic heating by large-scale condensation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'Vertical diffusion of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'Vertical diffusion of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'East-West gravity wave drag tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'North-South gravity wave drag tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'Convective tendency of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'Convective tendency of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'Vertical diffusion of humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'Humidity tendency by cumulus convection anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'Humidity tendency by large-scale condensation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'Change from removal of negative humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'Total precipitation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'Instantaneous X surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'Instantaneous Y surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'Instantaneous surface heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'Instantaneous moisture flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'Apparent surface humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'Logarithm of surface roughness length for heat anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'Skin temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'Soil temperature level 4 anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'Soil wetness level 4 anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'Temperature of snow layer anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'Accumulated cloud fraction tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'Accumulated liquid water tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'Forecast albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'Forecast surface roughness anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'Forecast logarithm of surface roughness for heat anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'Cloud liquid water content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'Cloud ice water content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'Cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'Accumulated ice water tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'Ice age anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'Adiabatic tendency of temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'Adiabatic tendency of humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'Adiabatic tendency of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'Adiabatic tendency of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'Snow evaporation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'Snowmelt' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Mean large-scale precipitation fraction -'Mean large-scale precipitation fraction' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Mean large-scale precipitation rate -'Mean large-scale precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate -'Mean convective precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Mean total snowfall rate -'Mean total snowfall rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Mean surface sensible heat flux -'Mean surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Mean surface latent heat flux -'Mean surface latent heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Mean surface net radiation flux -'Mean surface net radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Mean short-wave heating rate -'Mean short-wave heating rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Mean long-wave heating rate -'Mean long-wave heating rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Mean surface downward solar radiation flux -'Mean surface downward solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Mean surface downward thermal radiation flux -'Mean surface downward thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Mean surface net solar radiation flux -'Mean surface net solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Mean surface net thermal radiation flux -'Mean surface net thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Mean top net solar radiation flux -'Mean top net solar radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Mean top net thermal radiation flux -'Mean top net thermal radiation flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress rate of accumulation -'East-West surface stress rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress rate of accumulation -'North-South surface stress rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Mean sunshine duration rate -'Mean sunshine duration rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'Longitudinal component of gravity wave stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'Meridional component of gravity wave stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Mean runoff rate -'Mean runoff rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation rate of accumulation -'Solar insolation rate of accumulation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Mean total precipitation rate -'Mean total precipitation rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate anomaly -'Mean convective precipitation rate anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'Snowfall (convective + stratiform) anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'Surface sensible heat flux anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'Surface latent heat flux anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'Surface solar radiation downwards anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'Surface thermal radiation downwards anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'Surface solar radiation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'Surface thermal radiation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'Top solar radiation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'Top thermal radiation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'East-West surface stress anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'North-South surface stress anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomalous rate of accumulation -'Evaporation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'Sunshine duration anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomalous rate of accumulation -'Runoff anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'Top net solar radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'Top net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'Surface net solar radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomalous rate of accumulation -'Solar insolation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'Total precipitation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'10 metre wind gust in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'Mean sea surface temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'1.5m specific humidity' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Liquid water potential temperature -'Liquid water potential temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'10m wind gust in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'Total soil wetness' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'Top net solar radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Field capacity -'Field capacity' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'Wilting point' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'Roughness length' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'2 metre dewpoint temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'downward shortwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'upward shortwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'downward longwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'upward longwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'downwd photosynthetic active radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'net shortwave flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'net longwave flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'total net radiative flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'downw shortw radiant flux density, cloudfree part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'upw shortw radiant flux density, cloudy part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'downw longw radiant flux density, cloudfree part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'upw longw radiant flux density, cloudy part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'shortwave radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'longwave radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'total radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'soil heat flux, surface' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'soil heat flux, bottom of layer' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'fractional cloud cover' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'cloud cover, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'specific cloud water content' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'cloud water content, grid scale, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'specific cloud ice content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'cloud ice content, grid scale, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'specific rainwater content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'specific snow content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'specific rainwater content, gs, vert. integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'specific snow content, gs, vert. integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'total column water' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'vert. integral of divergence of tot. water content' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'cloud covers CH_CM_CL (000...888)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'cloud cover CH (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'cloud cover CM (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'cloud cover CL (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'total cloud cover (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'fog (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'fog' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'cloud cover, convective cirrus' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'specific cloud water content, convective clouds' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'cloud water content, conv clouds, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'specific cloud ice content, convective clouds' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'cloud ice content, conv clouds, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'convective mass flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'Updraft velocity, convection' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'entrainment parameter, convection' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'cloud base, convective clouds (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'cloud top, convective clouds (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'convective layers (00...77) (BKE)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'KO-index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'convection base index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'convection top index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'convective temperature tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'convective tendency of specific humidity' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'convective tendency of total heat' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'convective tendency of total water' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'convective momentum tendency (X-component)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'convective momentum tendency (Y-component)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'convective vorticity tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'convective divergence tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'top of dry convection (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'dry convection top index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'height of 0 degree Celsius isotherm above msl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'height of snow-fall limit' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'spec. content of precip. particles' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'surface precipitation rate, rain, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'surface precipitation rate, snow, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'surface precipitation amount, rain, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'surface precipitation rate, rain, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'surface precipitation rate, snow, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'surface precipitation amount, rain, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'deviation of pressure from reference value' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'coefficient of horizontal diffusion' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'Maximum wind velocity' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'water content of interception store' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'snow temperature' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'ice surface temperature' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'convective available potential energy' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'SO2 precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'Soil clay content' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'Methane' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#CO2 column-mean molar fraction -'CO2 column-mean molar fraction' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#CH4 column-mean molar fraction -'CH4 column-mean molar fraction' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire flux of Carbon Dioxide -'Wildfire flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 80 ; - } -#Wildfire flux of Carbon Monoxide -'Wildfire flux of Carbon Monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 81 ; - } -#Wildfire flux of Methane -'Wildfire flux of Methane' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'Wildfire flux of Non-Methane Hydro-Carbons' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 83 ; - } -#Wildfire flux of Hydrogen -'Wildfire flux of Hydrogen' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'Wildfire flux of Nitrogen Oxides NOx' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 85 ; - } -#Wildfire flux of Nitrous Oxide -'Wildfire flux of Nitrous Oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'Wildfire flux of Particulate Matter PM2.5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 87 ; - } -#Wildfire flux of Total Particulate Matter -'Wildfire flux of Total Particulate Matter' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'Wildfire flux of Total Carbon in Aerosols' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 89 ; - } -#Wildfire flux of Organic Carbon -'Wildfire flux of Organic Carbon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 90 ; - } -#Wildfire flux of Black Carbon -'Wildfire flux of Black Carbon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 91 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'Number of positive FRP pixels per grid cell' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'Radon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'Total column Radon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'Aerosol type 12 mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'Soil clay content' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'Methane' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'Total column Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'Total column Methane' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'Wildfire observed area' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'Radon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'Total column Radon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'Total precipitation observation count' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'Friction velocity' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'Mean temperature at 2 metres' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'Mean total cloud cover' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'Lake depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'Lake mix-layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'Lake mix-layer depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'Lake bottom temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'Lake total layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'Lake shape factor' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'Lake ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'Lake ice depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'Minimum vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'Mean vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'Duct base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'Trapping layer base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'Trapping layer top height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'Neutral wind at 10 m u-component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'Neutral wind at 10 m v-component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'Surface temperature significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'Mean sea level pressure significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'2 metre temperature significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'Total precipitation significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'U-component stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'V-component stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'Wildfire flux of Sulfur Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'Wildfire Flux of Methanol (CH3OH)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'Wildfire Flux of Ethanol (C2H5OH)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'Wildfire Flux of Propane (C3H8)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'Wildfire Flux of Ethene (C2H4)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'Wildfire Flux of Propene (C3H6)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'Wildfire Flux of Isoprene (C5H8)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'Wildfire Flux of Terpenes (C5H8)n' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'Wildfire Flux of Higher Alkenes (CnH2n, C>=4)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'Wildfire Flux of Formaldehyde (CH2O)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'Wildfire Flux of Acetaldehyde (C2H4O)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'Wildfire Flux of Acetone (C3H6O)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'Wildfire Flux of Ammonia (NH3)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 117 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'V-tendency from non-orographic wave drag' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'U-tendency from non-orographic wave drag' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#ASCAT first soil moisture CDF matching parameter -'ASCAT first soil moisture CDF matching parameter' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ASCAT second soil moisture CDF matching parameter' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def deleted file mode 100644 index 6421ee84..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/name.legacy.def +++ /dev/null @@ -1,144 +0,0 @@ -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'Eastward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'Northward sea water velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'Sea-ice thickness' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'Sea surface height' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'100 metre U wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'100 metre V wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'100 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'0 degrees C isothermal level (atm)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'Depth of 20C isotherm' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'Average salinity in the upper 300m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} -#Total precipitation of at least 1 mm -'Total precipitation of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} -#Total precipitation of at least 5 mm -'Total precipitation of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} -#Total precipitation of at least 40 mm -'Total precipitation of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} -#Total precipitation of at least 60 mm -'Total precipitation of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} -#Total precipitation of at least 80 mm -'Total precipitation of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'Total precipitation of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'Total precipitation of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'Total precipitation of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'Total column cloud liquid water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'Total column cloud ice water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'Top net solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'Temperature of snow layer' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def deleted file mode 100644 index bba71a6d..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.def +++ /dev/null @@ -1,22056 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 100 mm -'131085' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 100 mm -'131085' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Equivalent potential temperature -'4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'5' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'7' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'8' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'9' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'11' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'12' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'13' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'14' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'15' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'16' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'17' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'18' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'19' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'20' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'21' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'22' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'23' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'25' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'26' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'27' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'28' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'29' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'30' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'32' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'35' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'36' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'37' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'38' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'39' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'40' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'41' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'42' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'44' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'45' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'46' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'47' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'48' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'50' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'51' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'52' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Montgomery potential -'53' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'55' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'56' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'57' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'58' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'62' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'63' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'64' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'65' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'66' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'67' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'68' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'69' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'70' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'71' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'72' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'73' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'74' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Experimental product -'80' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'81' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'82' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'83' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'84' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'85' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'86' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'87' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'88' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'89' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'90' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'91' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'92' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'93' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'94' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'95' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'96' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'97' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'98' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'99' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'100' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'101' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'102' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'103' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'104' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'105' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'106' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'107' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'108' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'109' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'110' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'111' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'112' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'113' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'114' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'115' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'116' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'117' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'118' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'119' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'120' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'123' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'124' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'125' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'126' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'127' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'137' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'139' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'140' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'141' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'142' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'144' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'148' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'149' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'150' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'152' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'153' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'154' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'158' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'159' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'160' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'161' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'162' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'163' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'164' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'170' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'171' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'174' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'182' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'183' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'184' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'185' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'186' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'187' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'188' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'190' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'191' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'192' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'193' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'195' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'196' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'197' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'198' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'199' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'200' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'204' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'205' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'206' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'208' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'209' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#TOA incident solar radiation -'212' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'213' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'214' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'215' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'216' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'217' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'218' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'219' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'220' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'221' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'222' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'223' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'224' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'225' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'226' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'227' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'228' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'229' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'230' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'231' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'232' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'233' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'234' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'236' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'237' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Convective snowfall -'239' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'240' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'241' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'242' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'243' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'244' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'245' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'249' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'250' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'251' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'252' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'253' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'254' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'200001' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'200002' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'200003' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'200004' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'200005' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'200011' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'200012' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'200013' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'200014' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'200021' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'200022' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'200023' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'200024' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'200025' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'200026' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'200027' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'200028' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'200029' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'200030' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'200031' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'200032' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'200033' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'200034' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'200035' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'200036' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'200037' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'200038' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'200039' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'200040' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'200041' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'200042' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'200043' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'200044' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'200045' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'200046' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'200047' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'200048' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'200049' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'200050' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'200051' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'200052' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'200053' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'200054' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'200055' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'200056' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'200057' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'200058' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'200059' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'200060' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'200061' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'200062' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'200063' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'200064' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'200065' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'200066' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'200067' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'200068' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'200069' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'200070' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'200071' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'200078' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'200079' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'200080' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'200081' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'200082' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'200083' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'200084' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'200085' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'200086' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'200087' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'200088' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'200089' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'200090' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'200091' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'200092' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'200093' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'200094' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'200095' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'200096' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'200097' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'200098' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'200099' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'200100' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'200101' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'200102' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'200103' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'200104' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'200105' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'200106' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'200107' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'200108' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'200109' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'200110' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'200111' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'200112' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'200113' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'200114' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'200115' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'200116' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'200117' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'200118' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'200119' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'200120' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'200121' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'200122' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'200123' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'200125' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'200126' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'200127' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'200128' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'200129' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'200130' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'200131' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'200132' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'200133' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'200134' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'200135' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'200136' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'200137' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'200138' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'200139' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'200140' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'200141' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'200142' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'200143' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'200144' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'200145' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'200146' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'200147' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'200148' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'200149' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'200150' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'200151' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'200152' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'200153' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'200154' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'200155' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'200156' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'200157' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'200158' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'200159' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'200160' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'200161' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'200162' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'200163' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'200164' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'200165' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'200166' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'200167' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'200169' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'200170' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'200171' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'200172' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'200173' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'200174' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'200175' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'200176' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'200177' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'200178' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'200179' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'200180' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'200181' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'200182' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'200183' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'200184' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'200185' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'200186' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'200187' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'200188' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'200189' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'200190' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'200191' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'200192' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'200193' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'200194' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'200195' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'200196' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'200197' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'200198' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'200199' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'200200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'200201' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'200202' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'200203' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'200204' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'200205' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'200206' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'200207' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'200208' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'200209' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'200210' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'200211' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'200212' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'200214' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'200215' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'200216' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'200217' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'200218' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'200219' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'200220' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'200221' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'200222' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'200223' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'200224' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'200225' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'200226' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'200227' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'200228' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'200229' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'200230' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'200231' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'200232' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'200233' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'200234' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'200235' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'200236' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'200237' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'200238' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'200239' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'200240' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'200241' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'200242' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'200243' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'200244' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'200245' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'200246' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'200247' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'200248' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'200249' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'200250' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'200251' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'200252' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'200253' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'200254' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'200255' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'151193' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'162114' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'162115' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'162116' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'162117' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'162118' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'162119' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'162120' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'162121' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'162122' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'162123' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'162124' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'162125' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'162126' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'162127' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'162128' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'162129' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'162130' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'162131' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'162132' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'162133' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'162134' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'162135' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'162136' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'162137' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'162138' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'162139' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'162140' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'162141' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'171006' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'171007' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'171121' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'171122' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'210013' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'210014' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'210015' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'210028' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'210029' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'210030' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'210043' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'210044' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'210045' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'210055' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'210056' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'210057' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'210058' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'210059' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Injection height (from IS4FIRES) -'210060' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 60 ; - } -#Particulate matter d < 1 um -'210072' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'210073' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'210074' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'210079' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'210118' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 118 ; - } -#Mean altitude of maximum injection -'210119' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'210120' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#Wildfire day-time radiative power -'210167' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 167 ; - } -#Wildfire night-time radiative power -'210169' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 169 ; - } -#Wildfire day-time inverse variance of radiative power -'210177' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 177 ; - } -#Wildfire night-time inverse variance of radiative power -'210179' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 179 ; - } -#UV visible albedo for direct radiation, isotropic component -'210186' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'210187' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'210188' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'210189' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'210190' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'210191' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'210192' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'210193' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'210194' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'210195' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'210196' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'210197' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'210217' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'210218' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'210219' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'210220' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'210221' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'210222' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'210223' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'210224' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'210225' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'210226' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'210227' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'210228' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'210229' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'210230' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'210231' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'210232' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'210233' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'210234' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'210235' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'210236' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'210237' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'210238' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'210239' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'210240' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'210241' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 241 ; - } -#Altitude of plume bottom -'210242' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'210243' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'210244' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'210245' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'210246' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'210247' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'210248' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Aerosol type 13 mass mixing ratio -'211013' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'211014' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'211015' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'211028' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'211029' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'211030' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'211043' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'211044' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'211045' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'211055' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'211056' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'211119' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'211120' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'211247' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'211248' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Experimental product -'212001' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'212002' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'212003' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'212004' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'212005' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'212006' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'212007' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'212008' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'212009' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'212010' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'212011' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'212012' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'212013' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'212014' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'212015' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'212016' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'212017' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'212018' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'212019' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'212020' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'212021' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'212022' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'212023' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'212024' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'212025' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'212026' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'212027' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'212028' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'212029' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'212030' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'212031' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'212032' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'212033' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'212034' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'212035' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'212036' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'212037' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'212038' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'212039' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'212040' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'212041' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'212042' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'212043' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'212044' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'212045' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'212046' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'212047' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'212048' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'212049' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'212050' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'212051' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'212052' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'212053' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'212054' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'212055' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'212056' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'212057' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'212058' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'212059' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'212060' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'212061' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'212062' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'212063' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'212064' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'212065' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'212066' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'212067' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'212068' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'212069' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'212070' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'212071' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'212072' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'212073' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'212074' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'212075' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'212076' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'212077' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'212078' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'212079' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'212080' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'212081' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'212082' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'212083' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'212084' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'212085' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'212086' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'212087' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'212088' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'212089' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'212090' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'212091' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'212092' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'212093' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'212094' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'212095' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'212096' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'212097' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'212098' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'212099' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'212100' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'212101' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'212102' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'212103' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'212104' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'212105' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'212106' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'212107' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'212108' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'212109' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'212110' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'212111' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'212112' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'212113' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'212114' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'212115' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'212116' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'212117' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'212118' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'212119' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'212120' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'212121' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'212122' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'212123' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'212124' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'212125' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'212126' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'212127' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'212128' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'212129' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'212130' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'212131' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'212132' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'212133' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'212134' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'212135' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'212136' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'212137' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'212138' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'212139' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'212140' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'212141' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'212142' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'212143' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'212144' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'212145' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'212146' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'212147' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'212148' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'212149' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'212150' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'212151' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'212152' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'212153' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'212154' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'212155' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'212156' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'212157' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'212158' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'212159' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'212160' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'212161' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'212162' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'212163' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'212164' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'212165' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'212166' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'212167' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'212168' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'212169' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'212170' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'212171' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'212172' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'212173' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'212174' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'212175' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'212176' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'212177' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'212178' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'212179' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'212180' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'212181' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'212182' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'212183' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'212184' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'212185' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'212186' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'212187' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'212188' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'212189' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'212190' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'212191' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'212192' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'212193' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'212194' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'212195' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'212196' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'212197' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'212198' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'212199' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'212200' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'212201' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'212202' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'212203' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'212204' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'212205' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'212206' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'212207' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'212208' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'212209' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'212210' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'212211' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'212212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'212213' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'212214' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'212215' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'212216' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'212217' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'212218' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'212219' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'212220' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'212221' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'212222' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'212223' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'212224' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'212225' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'212226' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'212227' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'212228' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'212229' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'212230' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'212231' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'212232' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'212233' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'212234' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'212235' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'212236' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'212237' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'212238' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'212239' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'212240' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'212241' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'212242' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'212243' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'212244' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'212245' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'212246' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'212247' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'212248' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'212249' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'212250' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'212251' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'212252' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'212253' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'212254' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'212255' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'213001' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'213002' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'213003' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'213004' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'213005' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -#Random pattern 1 for SPP scheme -'213101' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 101 ; - } -#Random pattern 2 for SPP scheme -'213102' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 102 ; - } -#Random pattern 3 for SPP scheme -'213103' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 103 ; - } -#Random pattern 4 for SPP scheme -'213104' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 104 ; - } -#Random pattern 5 for SPP scheme -'213105' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 105 ; - } -#Random pattern 6 for SPP scheme -'213106' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 106 ; - } -#Random pattern 7 for SPP scheme -'213107' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 107 ; - } -#Random pattern 8 for SPP scheme -'213108' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 108 ; - } -#Random pattern 9 for SPP scheme -'213109' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 109 ; - } -#Random pattern 10 for SPP scheme -'213110' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 110 ; - } -#Random pattern 11 for SPP scheme -'213111' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 111 ; - } -#Random pattern 12 for SPP scheme -'213112' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 112 ; - } -#Random pattern 13 for SPP scheme -'213113' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 113 ; - } -#Random pattern 14 for SPP scheme -'213114' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 114 ; - } -#Random pattern 15 for SPP scheme -'213115' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 115 ; - } -#Random pattern 16 for SPP scheme -'213116' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 116 ; - } -#Random pattern 17 for SPP scheme -'213117' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 117 ; - } -#Random pattern 18 for SPP scheme -'213118' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 118 ; - } -#Random pattern 19 for SPP scheme -'213119' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 119 ; - } -#Random pattern 20 for SPP scheme -'213120' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 120 ; - } -#Random pattern 21 for SPP scheme -'213121' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 121 ; - } -#Random pattern 22 for SPP scheme -'213122' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 122 ; - } -#Random pattern 23 for SPP scheme -'213123' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 123 ; - } -#Random pattern 24 for SPP scheme -'213124' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 124 ; - } -#Random pattern 25 for SPP scheme -'213125' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 125 ; - } -#Random pattern 26 for SPP scheme -'213126' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 126 ; - } -#Random pattern 27 for SPP scheme -'213127' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 127 ; - } -#Random pattern 28 for SPP scheme -'213128' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 128 ; - } -#Random pattern 29 for SPP scheme -'213129' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 129 ; - } -#Random pattern 30 for SPP scheme -'213130' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 130 ; - } -#Random pattern 31 for SPP scheme -'213131' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 131 ; - } -#Random pattern 32 for SPP scheme -'213132' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 132 ; - } -#Random pattern 33 for SPP scheme -'213133' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 133 ; - } -#Random pattern 34 for SPP scheme -'213134' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 134 ; - } -#Random pattern 35 for SPP scheme -'213135' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 135 ; - } -#Random pattern 36 for SPP scheme -'213136' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 136 ; - } -#Random pattern 37 for SPP scheme -'213137' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 137 ; - } -#Random pattern 38 for SPP scheme -'213138' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 138 ; - } -#Random pattern 39 for SPP scheme -'213139' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 139 ; - } -#Random pattern 40 for SPP scheme -'213140' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 140 ; - } -#Random pattern 41 for SPP scheme -'213141' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 141 ; - } -#Random pattern 42 for SPP scheme -'213142' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 142 ; - } -#Random pattern 43 for SPP scheme -'213143' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 143 ; - } -#Random pattern 44 for SPP scheme -'213144' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 144 ; - } -#Random pattern 45 for SPP scheme -'213145' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 145 ; - } -#Random pattern 46 for SPP scheme -'213146' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 146 ; - } -#Random pattern 47 for SPP scheme -'213147' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 147 ; - } -#Random pattern 48 for SPP scheme -'213148' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 148 ; - } -#Random pattern 49 for SPP scheme -'213149' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 149 ; - } -#Random pattern 50 for SPP scheme -'213150' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 150 ; - } -#Cosine of solar zenith angle -'214001' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -#UV biologically effective dose -'214002' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -#UV biologically effective dose clear-sky -'214003' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'214004' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'214005' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'214006' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'214007' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'214008' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'214009' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'214010' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'214011' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'214012' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'214013' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'214014' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'214015' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'214016' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'214017' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'214018' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'214019' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'214020' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'214021' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'214022' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'214023' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'214024' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'214025' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'214026' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'214027' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'214028' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'214029' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'214030' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'214031' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'214032' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'214033' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'214034' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'214035' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'214036' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'214037' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'214038' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'214039' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'214040' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'214041' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'214042' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'214043' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'214044' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'214045' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'214046' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'214047' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'214048' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'214049' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'214050' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'214051' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -#Profile of optical thickness at 340 nm -'214052' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'215001' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'215002' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'215003' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'215004' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'215005' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'215006' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'215007' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'215008' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'215009' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'215010' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'215011' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'215012' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'215013' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'215014' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'215015' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'215016' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'215017' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'215018' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'215019' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'215020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'215021' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'215022' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'215023' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'215024' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'215025' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'215026' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'215027' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'215028' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'215029' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'215030' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'215031' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'215032' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'215033' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'215034' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'215035' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'215036' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'215037' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'215038' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'215039' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'215040' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'215041' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'215042' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'215043' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'215044' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'215045' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'215046' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'215047' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'215048' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'215049' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'215050' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'215051' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'215052' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'215053' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'215054' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'215055' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'215056' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'215057' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'215058' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'215059' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'215060' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'215061' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'215062' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'215063' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'215064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'215065' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'215066' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'215067' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'215068' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'215069' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'215070' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'215071' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'215072' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'215073' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'215074' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'215075' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'215076' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'215077' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'215078' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'215079' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'215080' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -#Source/gain of sulphate aerosol -'215081' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -#Dry deposition of sulphate aerosol -'215082' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -#Sedimentation of sulphate aerosol -'215083' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'215084' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'215085' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -#Negative fixer of sulphate aerosol -'215086' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'215087' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -#Sulphate aerosol optical depth -'215088' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'215089' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'215090' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'215091' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'215092' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'215093' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'215094' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'215095' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'215096' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'215097' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'215098' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'215099' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'215100' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'215101' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'215102' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'215103' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'215104' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'215105' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'215106' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'215107' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'215108' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'215109' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'215110' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'215111' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'215112' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'215113' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'215114' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'215115' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'215116' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'215117' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'215118' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'215119' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'215120' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'215121' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'215122' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'215123' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'215124' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'215125' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'215126' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'215127' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'215128' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'215129' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'215130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'215131' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'215132' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'215133' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'215134' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'215135' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'215136' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'215137' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'215138' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'215139' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'215140' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'215141' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'215142' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'215143' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'215144' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'215145' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'215146' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'215147' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'215148' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'215149' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Asymmetry factor at 340 nm -'215150' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Asymmetry factor at 355 nm -'215151' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Asymmetry factor at 380 nm -'215152' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Asymmetry factor at 400 nm -'215153' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Asymmetry factor at 440 nm -'215154' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Asymmetry factor at 469 nm -'215155' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Asymmetry factor at 500 nm -'215156' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Asymmetry factor at 532 nm -'215157' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Asymmetry factor at 550 nm -'215158' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Asymmetry factor at 645 nm -'215159' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Asymmetry factor at 670 nm -'215160' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Asymmetry factor at 800 nm -'215161' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Asymmetry factor at 858 nm -'215162' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Asymmetry factor at 865 nm -'215163' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Asymmetry factor at 1020 nm -'215164' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Asymmetry factor at 1064 nm -'215165' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Asymmetry factor at 1240 nm -'215166' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Asymmetry factor at 1640 nm -'215167' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'215168' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'215169' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'215170' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'215171' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'215172' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'215173' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'215174' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'215175' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'215176' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'215177' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'215178' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Asymmetry factor at 2130 nm -'215179' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'215180' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'215181' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'215182' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'215183' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'215184' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'215185' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'215186' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'215187' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'215188' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'215189' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Source/gain of coarse-mode nitrate aerosol -'215190' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Dry deposition of fine-mode nitrate aerosol -'215191' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'215192' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Sedimentation of fine-mode nitrate aerosol -'215193' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'215194' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'215195' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'215196' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'215197' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'215198' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Negative fixer of fine-mode nitrate aerosol -'215199' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'215200' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'215201' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'215202' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'215203' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfSizeInterval = 255 ; - aerosolType = 65534 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'215204' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 65533 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - } -#Source/gain of ammonium aerosol -'215205' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Negative fixer of ammonium aerosol -'215210' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Experimental product -'216001' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'216002' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'216003' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'216004' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'216005' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'216006' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'216007' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'216008' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'216009' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'216010' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'216011' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'216012' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'216013' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'216014' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'216015' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'216016' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'216017' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'216018' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'216019' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'216020' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'216021' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'216022' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'216023' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'216024' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'216025' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'216026' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'216027' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'216028' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'216029' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'216030' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'216031' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'216032' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'216033' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'216034' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'216035' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'216036' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'216037' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'216038' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'216039' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'216040' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'216041' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'216042' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'216043' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'216044' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'216045' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'216046' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'216047' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'216048' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'216049' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'216050' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'216051' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'216052' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'216053' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'216054' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'216055' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'216056' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'216057' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'216058' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'216059' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'216060' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'216061' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'216062' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'216063' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'216064' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'216065' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'216066' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'216067' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'216068' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'216069' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'216070' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'216071' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'216072' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'216073' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'216074' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'216075' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'216076' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'216077' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'216078' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'216079' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'216080' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'216081' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'216082' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'216083' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'216084' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'216085' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'216086' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'216087' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'216088' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'216089' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'216090' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'216091' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'216092' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'216093' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'216094' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'216095' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'216096' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'216097' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'216098' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'216099' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'216100' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'216101' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'216102' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'216103' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'216104' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'216105' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'216106' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'216107' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'216108' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'216109' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'216110' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'216111' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'216112' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'216113' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'216114' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'216115' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'216116' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'216117' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'216118' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'216119' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'216120' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'216121' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'216122' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'216123' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'216124' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'216125' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'216126' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'216127' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'216128' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'216129' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'216130' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'216131' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'216132' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'216133' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'216134' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'216135' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'216136' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'216137' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'216138' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'216139' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'216140' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'216141' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'216142' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'216143' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'216144' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'216145' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'216146' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'216147' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'216148' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'216149' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'216150' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'216151' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'216152' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'216153' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'216154' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'216155' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'216156' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'216157' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'216158' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'216159' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'216160' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'216161' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'216162' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'216163' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'216164' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'216165' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'216166' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'216167' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'216168' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'216169' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'216170' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'216171' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'216172' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'216173' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'216174' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'216175' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'216176' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'216177' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'216178' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'216179' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'216180' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'216181' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'216182' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'216183' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'216184' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'216185' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'216186' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'216187' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'216188' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'216189' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'216190' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'216191' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'216192' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'216193' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'216194' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'216195' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'216196' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'216197' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'216198' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'216199' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'216200' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'216201' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'216202' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'216203' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'216204' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'216205' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'216206' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'216207' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'216208' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'216209' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'216210' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'216211' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'216212' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'216213' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'216214' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'216215' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'216216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'216217' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'216218' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'216219' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'216220' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'216221' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'216222' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'216223' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'216224' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'216225' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'216226' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'216227' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'216228' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'216229' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'216230' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'216231' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'216232' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'216233' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'216234' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'216235' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'216236' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'216237' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'216238' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'216239' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'216240' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'216241' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'216242' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'216243' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'216244' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'216245' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'216246' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'216247' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'216248' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'216249' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'216250' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'216251' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'216252' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'216253' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'216254' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'216255' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'217003' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'217004' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'217006' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'217007' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'217009' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'217010' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'217011' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'217012' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'217013' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'217014' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'217015' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'217016' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'217018' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'217019' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'217020' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'217021' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'217022' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'217023' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'217024' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'217026' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'217027' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'217028' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'217029' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'217030' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'217032' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'217033' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'217034' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'217035' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'217036' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'217037' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'217038' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'217039' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'217040' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'217041' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'217042' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'217043' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'217044' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'217045' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'217046' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'217047' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'217048' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'217049' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'217050' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'217051' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'217052' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'217053' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'217054' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'217055' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'217056' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Carbon dioxide (chemistry) -'217057' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 57 ; - } -#Nitrous oxide (chemistry) -'217058' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 58 ; - } -#Water vapour (chemistry) -'217059' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 59 ; - } -#Oxygen -'217060' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 60 ; - } -#Singlet oxygen -'217061' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 61 ; - } -#Singlet delta oxygen -'217062' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 62 ; - } -#Chlorine dioxide -'217063' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'217064' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'217065' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Chlorine -'217066' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 66 ; - } -#Nitryl chloride -'217067' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 67 ; - } -#Hydrogen bromide -'217068' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Dichlorine dioxide -'217069' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 69 ; - } -#Hypobromous acid -'217070' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Trichlorofluoromethane -'217071' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 71 ; - } -#Dichlorodifluoromethane -'217072' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 72 ; - } -#Trichlorotrifluoroethane -'217073' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 73 ; - } -#Dichlorotetrafluoroethane -'217074' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 74 ; - } -#Chloropentafluoroethane -'217075' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 75 ; - } -#Tetrachloromethane -'217076' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 76 ; - } -#Methyl chloroform -'217077' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 77 ; - } -#Methyl chloride -'217078' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Chlorodifluoromethane -'217079' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 79 ; - } -#Methyl bromide -'217080' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Dibromodifluoromethane -'217081' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 81 ; - } -#Bromochlorodifluoromethane -'217082' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 82 ; - } -#Trifluorobromomethane -'217083' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 83 ; - } -#Cbrf2cbrf2 -'217084' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 84 ; - } -#Sulfuric acid -'217085' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'217086' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Alkanes low oh rate -'217087' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 87 ; - } -#Alkanes med oh rate -'217088' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 88 ; - } -#Alkanes high oh rate -'217089' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 89 ; - } -#Terminal alkenes -'217090' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 90 ; - } -#Internal alkenes -'217091' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 91 ; - } -#Ethylperoxy radical -'217092' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 92 ; - } -#Butadiene -'217093' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 93 ; - } -#Ethyl hydroperoxide -'217094' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 94 ; - } -#A-pinene cyclic terpenes -'217095' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 95 ; - } -#Acetic acid -'217096' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#D-limonene cyclic diene -'217097' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 97 ; - } -#Acetaldehyde -'217098' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 98 ; - } -#Toluene and less reactive aromatics -'217099' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 99 ; - } -#Xylene and more reactive aromatics -'217100' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 100 ; - } -#Glycolaldehyde -'217101' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 101 ; - } -#Cresol -'217102' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 102 ; - } -#Acetaldehyde and higher -'217103' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 103 ; - } -#Peracetic acid -'217104' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 104 ; - } -#Ketones -'217105' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 105 ; - } -#Hoch2ch2o2 -'217106' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 106 ; - } -#Glyoxal -'217107' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 107 ; - } -#Hoch2ch2o -'217108' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 108 ; - } -#Unsaturated dicarbonyls -'217109' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 109 ; - } -#Methacrolein -'217110' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 110 ; - } -#Unsaturated hydroxy dicarbonyl -'217111' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 111 ; - } -#Isopropyldioxidanyl -'217112' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 112 ; - } -#Hydroxy ketone -'217113' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 113 ; - } -#Isopropyl hydroperoxide -'217114' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 114 ; - } -#C3h6oho2 -'217115' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 115 ; - } -#C3h6ohooh -'217116' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 116 ; - } -#Higher organic peroxides -'217117' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 117 ; - } -#Hydroxyacetone -'217118' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 118 ; - } -#Peroxyacetic acid -'217119' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 119 ; - } -#Ch3coch2o2 -'217120' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 120 ; - } -#Peroxy radical from c2h6 -'217121' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 121 ; - } -#Peroxy radical from hc3 -'217122' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 122 ; - } -#Peroxy radical from hc5 -'217123' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 123 ; - } -#Lumped alkenes -'217124' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 124 ; - } -#Peroxy radical from hc8 -'217125' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 125 ; - } -#Lumped alkanes -'217126' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 126 ; - } -#Peroxy radical from c2h4 -'217127' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 127 ; - } -#C4h8o -'217128' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 128 ; - } -#Peroxy radical from terminal alkenes -'217129' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 129 ; - } -#C4h9o3 -'217130' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 130 ; - } -#Peroxy radical from internal alkenes -'217131' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 131 ; - } -#Ch3coch(oo)ch3 -'217132' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 132 ; - } -#Peroxy radical from c5h8 -'217133' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 133 ; - } -#Ch3coch(ooh)ch3 -'217134' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 134 ; - } -#Peroxy radical from a-pinene cyclic terpenes -'217135' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 135 ; - } -#Ch2=c(ch3)co3 -'217136' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 136 ; - } -#Peroxy radical from d-limonene cyclic diene -'217137' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 137 ; - } -#Methylvinylketone -'217138' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 138 ; - } -#Phenoxy radical -'217139' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 139 ; - } -#Peroxy radical from toluene and less reactive aromatics -'217140' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 140 ; - } -#Ch3c(o)ch(oo)ch2oh -'217141' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 141 ; - } -#Peroxy radical from xylene and more reactive aromatics -'217142' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 142 ; - } -#H3c(o)ch(ooh)ch2oh -'217143' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 143 ; - } -#Peroxy radical from cresol -'217144' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 144 ; - } -#Unsaturated pans -'217145' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 145 ; - } -#Unsaturated acyl peroxy radical -'217146' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 146 ; - } -#Peroxy radical from ketones -'217147' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 147 ; - } -#C5h11o2 -'217148' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 148 ; - } -#No3-alkenes adduct reacting to form carbonitrates -'217149' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 149 ; - } -#C5h11ooh -'217150' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 150 ; - } -#No3-alkenes adduct reacting via decomposition -'217151' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 151 ; - } -#Hoch2c(ch3)=chcho -'217152' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 152 ; - } -#C5h6o2 -'217153' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 153 ; - } -#Trop sulfuric acid -'217154' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 154 ; - } -#Oxides -'217155' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 155 ; - } -#Ch2chc(ch3)(oo)ch2ono2 -'217156' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 156 ; - } -#C3 organic nitrate -'217157' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 157 ; - } -#Chlorine oxides -'217158' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 158 ; - } -#Bromine oxides -'217159' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 159 ; - } -#Hoch2c(ooh)(ch3)chchoh -'217160' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 160 ; - } -#Hoch2c(ooh)(ch3)ch=ch2 -'217161' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 161 ; - } -#Lumped aromatics -'217162' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 162 ; - } -#Dimethyl sulfoxyde -'217163' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 163 ; - } -#C7h9o5 -'217164' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 164 ; - } -#C7h10o5 -'217165' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 165 ; - } -#Hydrogensulfide -'217166' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 166 ; - } -#C7h10o6 -'217167' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 167 ; - } -#All nitrogen oxides -'217168' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 168 ; - } -#Chlorine family -'217169' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 169 ; - } -#C10h16(oh)(oo) -'217170' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 170 ; - } -#Bromine family -'217171' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 171 ; - } -#C10h18o3 -'217172' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 172 ; - } -#Nitrogen atom -'217173' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 173 ; - } -#Chlorine monoxide -'217174' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Chlorine atom -'217175' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 175 ; - } -#Bromine monoxide -'217176' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Hydrogen atom -'217177' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 177 ; - } -#Methyl group -'217178' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 178 ; - } -#Aromatic-ho from toluene and less reactive aromatics -'217179' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 179 ; - } -#Aromatic-ho from xylene and more reactive aromatics -'217180' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 180 ; - } -#Ammonium nitrate -'217181' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 181 ; - } -#Aromatic-ho from csl -'217182' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 182 ; - } -#Secondary organic aerosol type 1 -'217183' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 183 ; - } -#Secondary organic aerosol type 2a -'217184' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 184 ; - } -#Secondary organic aerosol type 2b -'217185' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 185 ; - } -#Condensable gas type 1 -'217186' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 186 ; - } -#Condensable gas type 2a -'217187' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 187 ; - } -#Condensable gas type 2b -'217188' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 188 ; - } -#Sulfur trioxide -'217189' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 189 ; - } -#Carbonyl sulfide -'217190' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 190 ; - } -#Bromine atom -'217191' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 191 ; - } -#Bromine -'217192' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 192 ; - } -#Bromine monochloride -'217193' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 193 ; - } -#Bromine nitrate -'217194' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Dibromomethane -'217195' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 195 ; - } -#Methoxy radical -'217196' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 196 ; - } -#Tribromomethane -'217197' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 197 ; - } -#Asymmetric chlorine dioxide radical -'217198' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 198 ; - } -#Hydrogen -'217199' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 199 ; - } -#Hydrogen chloride -'217200' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Formyl radical -'217201' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 201 ; - } -#Hydrogen fluoride -'217202' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 202 ; - } -#Oxygen atom -'217203' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 203 ; - } -#Excited oxygen atom -'217204' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 204 ; - } -#Ground state oxygen atom -'217205' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 205 ; - } -#Stratospheric aerosol -'217206' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 206 ; - } -#Total column hydrogen peroxide -'218003' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'218004' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'218006' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'218007' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'218009' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'218010' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'218011' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'218012' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'218013' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'218014' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'218015' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'218016' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'218018' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'218019' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'218020' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'218021' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'218022' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'218023' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'218024' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'218026' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'218027' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'218028' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'218029' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'218030' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'218032' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'218033' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'218034' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'218035' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'218036' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'218037' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'218038' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'218039' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'218040' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'218041' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'218042' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'218043' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'218044' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'218045' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'218046' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'218047' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'218048' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'218049' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'218050' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'218051' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'218052' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'218053' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'218054' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'218055' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'218056' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Total column of carbon dioxide (chemistry) -'218057' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 57 ; - } -#Total column of nitrous oxide (chemistry) -'218058' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 58 ; - } -#Total column of water vapour (chemistry) -'218059' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 59 ; - } -#Total column of oxygen -'218060' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 60 ; - } -#Total column of singlet oxygen -'218061' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 61 ; - } -#Total column of singlet delta oxygen -'218062' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 62 ; - } -#Total column of chlorine dioxide -'218063' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'218064' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'218065' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of chlorine -'218066' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 66 ; - } -#Total column of nitryl chloride -'218067' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 67 ; - } -#Total column of hydrogen bromide -'218068' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of dichlorine dioxide -'218069' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 69 ; - } -#Total column of hypobromous acid -'218070' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of trichlorofluoromethane -'218071' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 71 ; - } -#Total column of dichlorodifluoromethane -'218072' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 72 ; - } -#Total column of trichlorotrifluoroethane -'218073' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 73 ; - } -#Total column of dichlorotetrafluoroethane -'218074' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 74 ; - } -#Total column of chloropentafluoroethane -'218075' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 75 ; - } -#Total column of tetrachloromethane -'218076' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 76 ; - } -#Total column of methyl chloroform -'218077' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 77 ; - } -#Total column of methyl chloride -'218078' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of chlorodifluoromethane -'218079' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 79 ; - } -#Total column of methyl bromide -'218080' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of dibromodifluoromethane -'218081' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 81 ; - } -#Total column of bromochlorodifluoromethane -'218082' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 82 ; - } -#Total column of trifluorobromomethane -'218083' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 83 ; - } -#Total column of cbrf2cbrf2 -'218084' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 84 ; - } -#Total column of sulfuric acid -'218085' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 85 ; - } -#Total column of nitrous acid -'218086' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of alkanes low oh rate -'218087' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 87 ; - } -#Total column of alkanes med oh rate -'218088' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 88 ; - } -#Total column of alkanes high oh rate -'218089' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 89 ; - } -#Total column of terminal alkenes -'218090' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 90 ; - } -#Total column of internal alkenes -'218091' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 91 ; - } -#Total column of ethylperoxy radical -'218092' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 92 ; - } -#Total column of butadiene -'218093' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 93 ; - } -#Total column of ethyl hydroperoxide -'218094' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 94 ; - } -#Total column of a-pinene cyclic terpenes -'218095' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 95 ; - } -#Total column of acetic acid -'218096' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of d-limonene cyclic diene -'218097' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 97 ; - } -#Total column of acetaldehyde -'218098' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 98 ; - } -#Total column of toluene and less reactive aromatics -'218099' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 99 ; - } -#Total column of xylene and more reactive aromatics -'218100' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 100 ; - } -#Total column of glycolaldehyde -'218101' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 101 ; - } -#Total column of cresol -'218102' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 102 ; - } -#Total column of acetaldehyde and higher -'218103' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 103 ; - } -#Total column of peracetic acid -'218104' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 104 ; - } -#Total column of ketones -'218105' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 105 ; - } -#Total column of hoch2ch2o2 -'218106' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 106 ; - } -#Total column of glyoxal -'218107' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 107 ; - } -#Total column of hoch2ch2o -'218108' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 108 ; - } -#Total column of unsaturated dicarbonyls -'218109' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 109 ; - } -#Total column of methacrolein -'218110' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 110 ; - } -#Total column of unsaturated hydroxy dicarbonyl -'218111' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 111 ; - } -#Total column of isopropyldioxidanyl -'218112' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 112 ; - } -#Total column of hydroxy ketone -'218113' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 113 ; - } -#Total column of isopropyl hydroperoxide -'218114' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 114 ; - } -#Total column of c3h6oho2 -'218115' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 115 ; - } -#Total column of c3h6ohooh -'218116' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 116 ; - } -#Total column of higher organic peroxides -'218117' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 117 ; - } -#Total column of hydroxyacetone -'218118' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 118 ; - } -#Total column of peroxyacetic acid -'218119' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 119 ; - } -#Total column of ch3coch2o2 -'218120' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 120 ; - } -#Total column of peroxy radical from c2h6 -'218121' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 121 ; - } -#Total column of peroxy radical from hc3 -'218122' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 122 ; - } -#Total column of peroxy radical from hc5 -'218123' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 123 ; - } -#Total column of lumped alkenes -'218124' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 124 ; - } -#Total column of peroxy radical from hc8 -'218125' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 125 ; - } -#Total column of lumped alkanes -'218126' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 126 ; - } -#Total column of peroxy radical from c2h4 -'218127' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 127 ; - } -#Total column of c4h8o -'218128' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 128 ; - } -#Total column of peroxy radical from terminal alkenes -'218129' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 129 ; - } -#Total column of c4h9o3 -'218130' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 130 ; - } -#Total column of peroxy radical from internal alkenes -'218131' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 131 ; - } -#Total column of ch3coch(oo)ch3 -'218132' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 132 ; - } -#Total column of peroxy radical from c5h8 -'218133' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 133 ; - } -#Total column of ch3coch(ooh)ch3 -'218134' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 134 ; - } -#Total column of peroxy radical from a-pinene cyclic terpenes -'218135' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 135 ; - } -#Total column of ch2=c(ch3)co3 -'218136' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 136 ; - } -#Total column of peroxy radical from d-limonene cyclic diene -'218137' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 137 ; - } -#Total column of methylvinylketone -'218138' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 138 ; - } -#Total column of phenoxy radical -'218139' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 139 ; - } -#Total column of peroxy radical from toluene and less reactive aromatics -'218140' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 140 ; - } -#Total column of ch3c(o)ch(oo)ch2oh -'218141' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 141 ; - } -#Total column of peroxy radical from xylene and more reactive aromatics -'218142' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 142 ; - } -#Total column of h3c(o)ch(ooh)ch2oh -'218143' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 143 ; - } -#Total column of peroxy radical from cresol -'218144' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 144 ; - } -#Total column of unsaturated pans -'218145' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 145 ; - } -#Total column of unsaturated acyl peroxy radical -'218146' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 146 ; - } -#Total column of peroxy radical from ketones -'218147' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 147 ; - } -#Total column of c5h11o2 -'218148' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 148 ; - } -#Total column of no3-alkenes adduct reacting to form carbonitrates -'218149' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 149 ; - } -#Total column of c5h11ooh -'218150' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 150 ; - } -#Total column of no3-alkenes adduct reacting via decomposition -'218151' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 151 ; - } -#Total column of hoch2c(ch3)=chcho -'218152' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 152 ; - } -#Total column of c5h6o2 -'218153' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 153 ; - } -#Total column of trop sulfuric acid -'218154' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 154 ; - } -#Total column of oxides -'218155' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 155 ; - } -#Total column of ch2chc(ch3)(oo)ch2ono2 -'218156' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 156 ; - } -#Total column of c3 organic nitrate -'218157' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 157 ; - } -#Total column of chlorine oxides -'218158' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 158 ; - } -#Total column of bromine oxides -'218159' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 159 ; - } -#Total column of hoch2c(ooh)(ch3)chchoh -'218160' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 160 ; - } -#Total column of hoch2c(ooh)(ch3)ch=ch2 -'218161' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 161 ; - } -#Total column of lumped aromatics -'218162' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 162 ; - } -#Total column of dimethyl sulfoxyde -'218163' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 163 ; - } -#Total column of c7h9o5 -'218164' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 164 ; - } -#Total column of c7h10o5 -'218165' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 165 ; - } -#Total column of hydrogensulfide -'218166' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 166 ; - } -#Total column of c7h10o6 -'218167' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 167 ; - } -#Total column of all nitrogen oxides -'218168' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 168 ; - } -#Total column of chlorine family -'218169' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 169 ; - } -#Total column of c10h16(oh)(oo) -'218170' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 170 ; - } -#Total column of bromine family -'218171' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 171 ; - } -#Total column of c10h18o3 -'218172' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 172 ; - } -#Total column of nitrogen atom -'218173' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 173 ; - } -#Total column of chlorine monoxide -'218174' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of chlorine atom -'218175' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 175 ; - } -#Total column of bromine monoxide -'218176' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of hydrogen atom -'218177' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 177 ; - } -#Total column of methyl group -'218178' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 178 ; - } -#Total column of aromatic-ho from toluene and less reactive aromatics -'218179' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 179 ; - } -#Total column of aromatic-ho from xylene and more reactive aromatics -'218180' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 180 ; - } -#Total column of ammonium nitrate -'218181' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 181 ; - } -#Total column of aromatic-ho from csl -'218182' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 182 ; - } -#Total column of secondary organic aerosol type 1 -'218183' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 183 ; - } -#Total column of secondary organic aerosol type 2a -'218184' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 184 ; - } -#Total column of secondary organic aerosol type 2b -'218185' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 185 ; - } -#Total column of condensable gas type 1 -'218186' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 186 ; - } -#Total column of condensable gas type 2a -'218187' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 187 ; - } -#Total column of condensable gas type 2b -'218188' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 188 ; - } -#Total column of sulfur trioxide -'218189' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 189 ; - } -#Total column of carbonyl sulfide -'218190' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 190 ; - } -#Total column of bromine atom -'218191' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 191 ; - } -#Total column of bromine -'218192' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 192 ; - } -#Total column of bromine monochloride -'218193' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 193 ; - } -#Total column of bromine nitrate -'218194' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of dibromomethane -'218195' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 195 ; - } -#Total column of methoxy radical -'218196' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 196 ; - } -#Total column of tribromomethane -'218197' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 197 ; - } -#Total column of asymmetric chlorine dioxide radical -'218198' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 198 ; - } -#Total column of hydrogen -'218199' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 199 ; - } -#Total column of hydrogen chloride -'218200' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Total column of formyl radical -'218201' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 201 ; - } -#Total column of hydrogen fluoride -'218202' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 202 ; - } -#Total column of oxygen atom -'218203' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 203 ; - } -#Total column of excited oxygen atom -'218204' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 204 ; - } -#Total column of ground state oxygen atom -'218205' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 205 ; - } -#Total column of stratospheric aerosol -'218206' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 206 ; - } -#Ozone emissions -'219001' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'219002' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'219003' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'219004' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'219005' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'219006' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'219007' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'219008' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'219009' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'219010' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'219011' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'219012' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'219013' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'219014' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'219015' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'219016' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'219017' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'219018' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'219019' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'219020' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'219021' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'219022' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'219023' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'219024' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'219025' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'219026' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'219027' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'219028' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'219029' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'219030' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'219031' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'219032' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'219033' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'219034' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'219035' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'219036' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'219037' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'219038' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'219039' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'219040' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'219041' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'219042' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'219043' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'219044' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'219045' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'219046' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'219047' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'219048' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'219049' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'219050' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'219051' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'219052' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'219053' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'219054' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'219055' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'219056' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Emissions of carbon dioxide (chemistry) -'219057' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 57 ; - } -#Emissions of nitrous oxide (chemistry) -'219058' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 58 ; - } -#Emissions of water vapour (chemistry) -'219059' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 59 ; - } -#Emissions of oxygen -'219060' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 60 ; - } -#Emissions of singlet oxygen -'219061' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 61 ; - } -#Emissions of singlet delta oxygen -'219062' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 62 ; - } -#Emissions of chlorine dioxide -'219063' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 63 ; - } -#Emissions of chlorine nitrate -'219064' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 64 ; - } -#Emissions of hypochlorous acid -'219065' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 65 ; - } -#Emissions of chlorine -'219066' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 66 ; - } -#Emissions of nitryl chloride -'219067' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 67 ; - } -#Emissions of hydrogen bromide -'219068' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 68 ; - } -#Emissions of dichlorine dioxide -'219069' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 69 ; - } -#Emissions of hypobromous acid -'219070' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 70 ; - } -#Emissions of trichlorofluoromethane -'219071' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 71 ; - } -#Emissions of dichlorodifluoromethane -'219072' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 72 ; - } -#Emissions of trichlorotrifluoroethane -'219073' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 73 ; - } -#Emissions of dichlorotetrafluoroethane -'219074' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 74 ; - } -#Emissions of chloropentafluoroethane -'219075' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 75 ; - } -#Emissions of tetrachloromethane -'219076' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 76 ; - } -#Emissions of methyl chloroform -'219077' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 77 ; - } -#Emissions of methyl chloride -'219078' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 78 ; - } -#Emissions of chlorodifluoromethane -'219079' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 79 ; - } -#Emissions of methyl bromide -'219080' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 80 ; - } -#Emissions of dibromodifluoromethane -'219081' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 81 ; - } -#Emissions of bromochlorodifluoromethane -'219082' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 82 ; - } -#Emissions of trifluorobromomethane -'219083' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 83 ; - } -#Emissions of cbrf2cbrf2 -'219084' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 84 ; - } -#Emissions of sulfuric acid -'219085' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 85 ; - } -#Emissions of nitrous acid -'219086' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 86 ; - } -#Emissions of alkanes low oh rate -'219087' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 87 ; - } -#Emissions of alkanes med oh rate -'219088' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 88 ; - } -#Emissions of alkanes high oh rate -'219089' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 89 ; - } -#Emissions of terminal alkenes -'219090' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 90 ; - } -#Emissions of internal alkenes -'219091' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 91 ; - } -#Emissions of ethylperoxy radical -'219092' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 92 ; - } -#Emissions of butadiene -'219093' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 93 ; - } -#Emissions of ethyl hydroperoxide -'219094' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 94 ; - } -#Emissions of a-pinene cyclic terpenes -'219095' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 95 ; - } -#Emissions of acetic acid -'219096' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 96 ; - } -#Emissions of d-limonene cyclic diene -'219097' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 97 ; - } -#Emissions of acetaldehyde -'219098' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 98 ; - } -#Emissions of toluene and less reactive aromatics -'219099' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 99 ; - } -#Emissions of xylene and more reactive aromatics -'219100' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 100 ; - } -#Emissions of glycolaldehyde -'219101' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 101 ; - } -#Emissions of cresol -'219102' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 102 ; - } -#Emissions of acetaldehyde and higher -'219103' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 103 ; - } -#Emissions of peracetic acid -'219104' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 104 ; - } -#Emissions of ketones -'219105' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 105 ; - } -#Emissions of hoch2ch2o2 -'219106' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 106 ; - } -#Emissions of glyoxal -'219107' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 107 ; - } -#Emissions of hoch2ch2o -'219108' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 108 ; - } -#Emissions of unsaturated dicarbonyls -'219109' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 109 ; - } -#Emissions of methacrolein -'219110' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 110 ; - } -#Emissions of unsaturated hydroxy dicarbonyl -'219111' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 111 ; - } -#Emissions of isopropyldioxidanyl -'219112' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 112 ; - } -#Emissions of hydroxy ketone -'219113' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 113 ; - } -#Emissions of isopropyl hydroperoxide -'219114' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 114 ; - } -#Emissions of c3h6oho2 -'219115' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 115 ; - } -#Emissions of c3h6ohooh -'219116' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 116 ; - } -#Emissions of higher organic peroxides -'219117' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 117 ; - } -#Emissions of hydroxyacetone -'219118' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 118 ; - } -#Emissions of peroxyacetic acid -'219119' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 119 ; - } -#Emissions of ch3coch2o2 -'219120' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 120 ; - } -#Emissions of peroxy radical from c2h6 -'219121' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 121 ; - } -#Emissions of peroxy radical from hc3 -'219122' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 122 ; - } -#Emissions of peroxy radical from hc5 -'219123' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 123 ; - } -#Emissions of lumped alkenes -'219124' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 124 ; - } -#Emissions of peroxy radical from hc8 -'219125' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 125 ; - } -#Emissions of lumped alkanes -'219126' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 126 ; - } -#Emissions of peroxy radical from c2h4 -'219127' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 127 ; - } -#Emissions of c4h8o -'219128' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 128 ; - } -#Emissions of peroxy radical from terminal alkenes -'219129' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 129 ; - } -#Emissions of c4h9o3 -'219130' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 130 ; - } -#Emissions of peroxy radical from internal alkenes -'219131' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 131 ; - } -#Emissions of ch3coch(oo)ch3 -'219132' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 132 ; - } -#Emissions of peroxy radical from c5h8 -'219133' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 133 ; - } -#Emissions of ch3coch(ooh)ch3 -'219134' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 134 ; - } -#Emissions of peroxy radical from a-pinene cyclic terpenes -'219135' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 135 ; - } -#Emissions of ch2=c(ch3)co3 -'219136' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 136 ; - } -#Emissions of peroxy radical from d-limonene cyclic diene -'219137' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 137 ; - } -#Emissions of methylvinylketone -'219138' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 138 ; - } -#Emissions of phenoxy radical -'219139' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 139 ; - } -#Emissions of peroxy radical from toluene and less reactive aromatics -'219140' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 140 ; - } -#Emissions of ch3c(o)ch(oo)ch2oh -'219141' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 141 ; - } -#Emissions of peroxy radical from xylene and more reactive aromatics -'219142' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 142 ; - } -#Emissions of h3c(o)ch(ooh)ch2oh -'219143' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 143 ; - } -#Emissions of peroxy radical from cresol -'219144' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 144 ; - } -#Emissions of unsaturated pans -'219145' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 145 ; - } -#Emissions of unsaturated acyl peroxy radical -'219146' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 146 ; - } -#Emissions of peroxy radical from ketones -'219147' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 147 ; - } -#Emissions of c5h11o2 -'219148' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 148 ; - } -#Emissions of no3-alkenes adduct reacting to form carbonitrates -'219149' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 149 ; - } -#Emissions of c5h11ooh -'219150' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 150 ; - } -#Emissions of no3-alkenes adduct reacting via decomposition -'219151' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 151 ; - } -#Emissions of hoch2c(ch3)=chcho -'219152' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 152 ; - } -#Emissions of c5h6o2 -'219153' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 153 ; - } -#Emissions of trop sulfuric acid -'219154' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 154 ; - } -#Emissions of oxides -'219155' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 155 ; - } -#Emissions of ch2chc(ch3)(oo)ch2ono2 -'219156' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 156 ; - } -#Emissions of c3 organic nitrate -'219157' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 157 ; - } -#Emissions of chlorine oxides -'219158' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 158 ; - } -#Emissions of bromine oxides -'219159' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 159 ; - } -#Emissions of hoch2c(ooh)(ch3)chchoh -'219160' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 160 ; - } -#Emissions of hoch2c(ooh)(ch3)ch=ch2 -'219161' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 161 ; - } -#Emissions of lumped aromatics -'219162' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 162 ; - } -#Emissions of dimethyl sulfoxyde -'219163' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 163 ; - } -#Emissions of c7h9o5 -'219164' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 164 ; - } -#Emissions of c7h10o5 -'219165' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 165 ; - } -#Emissions of hydrogensulfide -'219166' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 166 ; - } -#Emissions of c7h10o6 -'219167' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 167 ; - } -#Emissions of all nitrogen oxides -'219168' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 168 ; - } -#Emissions of chlorine family -'219169' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 169 ; - } -#Emissions of c10h16(oh)(oo) -'219170' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 170 ; - } -#Emissions of bromine family -'219171' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 171 ; - } -#Emissions of c10h18o3 -'219172' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 172 ; - } -#Emissions of nitrogen atom -'219173' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 173 ; - } -#Emissions of chlorine monoxide -'219174' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 174 ; - } -#Emissions of chlorine atom -'219175' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 175 ; - } -#Emissions of bromine monoxide -'219176' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 176 ; - } -#Emissions of hydrogen atom -'219177' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 177 ; - } -#Emissions of methyl group -'219178' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 178 ; - } -#Emissions of aromatic-ho from toluene and less reactive aromatics -'219179' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 179 ; - } -#Emissions of aromatic-ho from xylene and more reactive aromatics -'219180' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 180 ; - } -#Emissions of ammonium nitrate -'219181' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 181 ; - } -#Emissions of aromatic-ho from csl -'219182' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 182 ; - } -#Emissions of secondary organic aerosol type 1 -'219183' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 183 ; - } -#Emissions of secondary organic aerosol type 2a -'219184' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 184 ; - } -#Emissions of secondary organic aerosol type 2b -'219185' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 185 ; - } -#Emissions of condensable gas type 1 -'219186' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 186 ; - } -#Emissions of condensable gas type 2a -'219187' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 187 ; - } -#Emissions of condensable gas type 2b -'219188' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 188 ; - } -#Emissions of sulfur trioxide -'219189' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 189 ; - } -#Emissions of carbonyl sulfide -'219190' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 190 ; - } -#Emissions of bromine atom -'219191' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 191 ; - } -#Emissions of bromine -'219192' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 192 ; - } -#Emissions of bromine monochloride -'219193' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 193 ; - } -#Emissions of bromine nitrate -'219194' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 194 ; - } -#Emissions of dibromomethane -'219195' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 195 ; - } -#Emissions of methoxy radical -'219196' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 196 ; - } -#Emissions of tribromomethane -'219197' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 197 ; - } -#Emissions of asymmetric chlorine dioxide radical -'219198' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 198 ; - } -#Emissions of hydrogen -'219199' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 199 ; - } -#Emissions of hydrogen chloride -'219200' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 200 ; - } -#Emissions of formyl radical -'219201' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 201 ; - } -#Emissions of hydrogen fluoride -'219202' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 202 ; - } -#Emissions of oxygen atom -'219203' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 203 ; - } -#Emissions of excited oxygen atom -'219204' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 204 ; - } -#Emissions of ground state oxygen atom -'219205' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 205 ; - } -#Emissions of stratospheric aerosol -'219206' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 206 ; - } -#Wildfire flux of paraffins -'219207' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 207 ; - } -#Wildfire flux of olefines -'219208' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 208 ; - } -#Wildfire flux of aldehydes -'219209' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 209 ; - } -#Wildfire flux of ketones -'219210' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 210 ; - } -#Wildfire flux of f a-pinene cyclic terpenes -'219211' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 211 ; - } -#Wildfire flux of toluene less reactive aromatics -'219212' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 212 ; - } -#Wildfire flux of xylene more reactive aromatics -'219213' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 213 ; - } -#Wildfire flux of d-limonene cyclic diene -'219214' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 214 ; - } -#Wildfire flux of terminal alkenes -'219215' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 215 ; - } -#Wildfire flux of alkanes low oh rate -'219216' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 216 ; - } -#Wildfire flux of alkanes med oh rate -'219217' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 217 ; - } -#Wildfire flux of alkanes high oh rate -'219218' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 218 ; - } -#Wildfire flux of hydrogen cyanide -'219219' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 219 ; - } -#Wildfire flux of acetonitrile -'219220' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 220 ; - } -#Ozone deposition velocity -'221001' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'221002' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'221003' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'221004' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'221005' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'221006' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'221007' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'221008' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'221009' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'221010' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'221011' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'221012' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'221013' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'221014' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'221015' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'221016' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'221017' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'221018' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'221019' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'221020' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'221021' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'221022' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'221023' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'221024' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'221025' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'221026' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'221027' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'221028' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'221029' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'221030' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'221031' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'221032' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'221033' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'221034' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'221035' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'221036' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'221037' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'221038' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'221039' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'221040' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'221041' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'221042' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'221043' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'221044' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'221045' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'221046' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'221047' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'221048' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'221049' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'221050' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'221051' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'221052' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'221053' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'221054' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'221055' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'221056' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Dry deposition velocity of carbon dioxide (chemistry) -'221057' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 57 ; - } -#Dry deposition velocity of nitrous oxide (chemistry) -'221058' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 58 ; - } -#Dry deposition velocity of water vapour (chemistry) -'221059' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 59 ; - } -#Dry deposition velocity of oxygen -'221060' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 60 ; - } -#Dry deposition velocity of singlet oxygen -'221061' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 61 ; - } -#Dry deposition velocity of singlet delta oxygen -'221062' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 62 ; - } -#Dry deposition velocity of chlorine dioxide -'221063' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 63 ; - } -#Dry deposition velocity of chlorine nitrate -'221064' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 64 ; - } -#Dry deposition velocity of hypochlorous acid -'221065' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 65 ; - } -#Dry deposition velocity of chlorine -'221066' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 66 ; - } -#Dry deposition velocity of nitryl chloride -'221067' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 67 ; - } -#Dry deposition velocity of hydrogen bromide -'221068' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 68 ; - } -#Dry deposition velocity of dichlorine dioxide -'221069' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 69 ; - } -#Dry deposition velocity of hypobromous acid -'221070' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 70 ; - } -#Dry deposition velocity of trichlorofluoromethane -'221071' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 71 ; - } -#Dry deposition velocity of dichlorodifluoromethane -'221072' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 72 ; - } -#Dry deposition velocity of trichlorotrifluoroethane -'221073' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 73 ; - } -#Dry deposition velocity of dichlorotetrafluoroethane -'221074' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 74 ; - } -#Dry deposition velocity of chloropentafluoroethane -'221075' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 75 ; - } -#Dry deposition velocity of tetrachloromethane -'221076' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 76 ; - } -#Dry deposition velocity of methyl chloroform -'221077' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 77 ; - } -#Dry deposition velocity of methyl chloride -'221078' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 78 ; - } -#Dry deposition velocity of chlorodifluoromethane -'221079' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 79 ; - } -#Dry deposition velocity of methyl bromide -'221080' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 80 ; - } -#Dry deposition velocity of dibromodifluoromethane -'221081' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 81 ; - } -#Dry deposition velocity of bromochlorodifluoromethane -'221082' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 82 ; - } -#Dry deposition velocity of trifluorobromomethane -'221083' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 83 ; - } -#Dry deposition velocity of cbrf2cbrf2 -'221084' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 84 ; - } -#Dry deposition velocity of sulfuric acid -'221085' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 85 ; - } -#Dry deposition velocity of nitrous acid -'221086' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 86 ; - } -#Dry deposition velocity of alkanes low oh rate -'221087' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 87 ; - } -#Dry deposition velocity of alkanes med oh rate -'221088' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 88 ; - } -#Dry deposition velocity of alkanes high oh rate -'221089' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 89 ; - } -#Dry deposition velocity of terminal alkenes -'221090' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 90 ; - } -#Dry deposition velocity of internal alkenes -'221091' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 91 ; - } -#Dry deposition velocity of ethylperoxy radical -'221092' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 92 ; - } -#Dry deposition velocity of butadiene -'221093' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 93 ; - } -#Dry deposition velocity of ethyl hydroperoxide -'221094' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 94 ; - } -#Dry deposition velocity of a-pinene cyclic terpenes -'221095' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 95 ; - } -#Dry deposition velocity of acetic acid -'221096' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 96 ; - } -#Dry deposition velocity of d-limonene cyclic diene -'221097' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 97 ; - } -#Dry deposition velocity of acetaldehyde -'221098' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 98 ; - } -#Dry deposition velocity of toluene and less reactive aromatics -'221099' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 99 ; - } -#Dry deposition velocity of xylene and more reactive aromatics -'221100' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 100 ; - } -#Dry deposition velocity of glycolaldehyde -'221101' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 101 ; - } -#Dry deposition velocity of cresol -'221102' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 102 ; - } -#Dry deposition velocity of acetaldehyde and higher -'221103' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 103 ; - } -#Dry deposition velocity of peracetic acid -'221104' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 104 ; - } -#Dry deposition velocity of ketones -'221105' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 105 ; - } -#Dry deposition velocity of hoch2ch2o2 -'221106' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 106 ; - } -#Dry deposition velocity of glyoxal -'221107' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 107 ; - } -#Dry deposition velocity of hoch2ch2o -'221108' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 108 ; - } -#Dry deposition velocity of unsaturated dicarbonyls -'221109' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 109 ; - } -#Dry deposition velocity of methacrolein -'221110' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 110 ; - } -#Dry deposition velocity of unsaturated hydroxy dicarbonyl -'221111' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 111 ; - } -#Dry deposition velocity of isopropyldioxidanyl -'221112' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 112 ; - } -#Dry deposition velocity of hydroxy ketone -'221113' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 113 ; - } -#Dry deposition velocity of isopropyl hydroperoxide -'221114' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 114 ; - } -#Dry deposition velocity of c3h6oho2 -'221115' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 115 ; - } -#Dry deposition velocity of c3h6ohooh -'221116' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 116 ; - } -#Dry deposition velocity of higher organic peroxides -'221117' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 117 ; - } -#Dry deposition velocity of hydroxyacetone -'221118' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 118 ; - } -#Dry deposition velocity of peroxyacetic acid -'221119' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 119 ; - } -#Dry deposition velocity of ch3coch2o2 -'221120' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 120 ; - } -#Dry deposition velocity of peroxy radical from c2h6 -'221121' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 121 ; - } -#Dry deposition velocity of peroxy radical from hc3 -'221122' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 122 ; - } -#Dry deposition velocity of peroxy radical from hc5 -'221123' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 123 ; - } -#Dry deposition velocity of lumped alkenes -'221124' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 124 ; - } -#Dry deposition velocity of peroxy radical from hc8 -'221125' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 125 ; - } -#Dry deposition velocity of lumped alkanes -'221126' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 126 ; - } -#Dry deposition velocity of peroxy radical from c2h4 -'221127' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 127 ; - } -#Dry deposition velocity of c4h8o -'221128' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 128 ; - } -#Dry deposition velocity of peroxy radical from terminal alkenes -'221129' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 129 ; - } -#Dry deposition velocity of c4h9o3 -'221130' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 130 ; - } -#Dry deposition velocity of peroxy radical from internal alkenes -'221131' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 131 ; - } -#Dry deposition velocity of ch3coch(oo)ch3 -'221132' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 132 ; - } -#Dry deposition velocity of peroxy radical from c5h8 -'221133' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 133 ; - } -#Dry deposition velocity of ch3coch(ooh)ch3 -'221134' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 134 ; - } -#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes -'221135' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 135 ; - } -#Dry deposition velocity of ch2=c(ch3)co3 -'221136' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 136 ; - } -#Dry deposition velocity of peroxy radical from d-limonene cyclic diene -'221137' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 137 ; - } -#Dry deposition velocity of methylvinylketone -'221138' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 138 ; - } -#Dry deposition velocity of phenoxy radical -'221139' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 139 ; - } -#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics -'221140' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 140 ; - } -#Dry deposition velocity of ch3c(o)ch(oo)ch2oh -'221141' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 141 ; - } -#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics -'221142' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 142 ; - } -#Dry deposition velocity of h3c(o)ch(ooh)ch2oh -'221143' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 143 ; - } -#Dry deposition velocity of peroxy radical from cresol -'221144' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 144 ; - } -#Dry deposition velocity of unsaturated pans -'221145' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 145 ; - } -#Dry deposition velocity of unsaturated acyl peroxy radical -'221146' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 146 ; - } -#Dry deposition velocity of peroxy radical from ketones -'221147' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 147 ; - } -#Dry deposition velocity of c5h11o2 -'221148' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 148 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates -'221149' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 149 ; - } -#Dry deposition velocity of c5h11ooh -'221150' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 150 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting via decomposition -'221151' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 151 ; - } -#Dry deposition velocity of hoch2c(ch3)=chcho -'221152' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 152 ; - } -#Dry deposition velocity of c5h6o2 -'221153' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 153 ; - } -#Dry deposition velocity of trop sulfuric acid -'221154' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 154 ; - } -#Dry deposition velocity of oxides -'221155' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 155 ; - } -#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 -'221156' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 156 ; - } -#Dry deposition velocity of c3 organic nitrate -'221157' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 157 ; - } -#Dry deposition velocity of chlorine oxides -'221158' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 158 ; - } -#Dry deposition velocity of bromine oxides -'221159' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 159 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh -'221160' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 160 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 -'221161' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 161 ; - } -#Dry deposition velocity of lumped aromatics -'221162' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 162 ; - } -#Dry deposition velocity of dimethyl sulfoxyde -'221163' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 163 ; - } -#Dry deposition velocity of c7h9o5 -'221164' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 164 ; - } -#Dry deposition velocity of c7h10o5 -'221165' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 165 ; - } -#Dry deposition velocity of hydrogensulfide -'221166' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 166 ; - } -#Dry deposition velocity of c7h10o6 -'221167' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 167 ; - } -#Dry deposition velocity of all nitrogen oxides -'221168' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 168 ; - } -#Dry deposition velocity of chlorine family -'221169' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 169 ; - } -#Dry deposition velocity of c10h16(oh)(oo) -'221170' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 170 ; - } -#Dry deposition velocity of bromine family -'221171' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 171 ; - } -#Dry deposition velocity of c10h18o3 -'221172' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 172 ; - } -#Dry deposition velocity of nitrogen atom -'221173' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 173 ; - } -#Dry deposition velocity of chlorine monoxide -'221174' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 174 ; - } -#Dry deposition velocity of chlorine atom -'221175' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 175 ; - } -#Dry deposition velocity of bromine monoxide -'221176' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 176 ; - } -#Dry deposition velocity of hydrogen atom -'221177' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 177 ; - } -#Dry deposition velocity of methyl group -'221178' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 178 ; - } -#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics -'221179' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 179 ; - } -#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics -'221180' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 180 ; - } -#Dry deposition velocity of ammonium nitrate -'221181' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 181 ; - } -#Dry deposition velocity of aromatic-ho from csl -'221182' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 182 ; - } -#Dry deposition velocity of secondary organic aerosol type 1 -'221183' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 183 ; - } -#Dry deposition velocity of secondary organic aerosol type 2a -'221184' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 184 ; - } -#Dry deposition velocity of secondary organic aerosol type 2b -'221185' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 185 ; - } -#Dry deposition velocity of condensable gas type 1 -'221186' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 186 ; - } -#Dry deposition velocity of condensable gas type 2a -'221187' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 187 ; - } -#Dry deposition velocity of condensable gas type 2b -'221188' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 188 ; - } -#Dry deposition velocity of sulfur trioxide -'221189' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 189 ; - } -#Dry deposition velocity of carbonyl sulfide -'221190' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 190 ; - } -#Dry deposition velocity of bromine atom -'221191' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 191 ; - } -#Dry deposition velocity of bromine -'221192' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 192 ; - } -#Dry deposition velocity of bromine monochloride -'221193' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 193 ; - } -#Dry deposition velocity of bromine nitrate -'221194' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 194 ; - } -#Dry deposition velocity of dibromomethane -'221195' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 195 ; - } -#Dry deposition velocity of methoxy radical -'221196' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 196 ; - } -#Dry deposition velocity of tribromomethane -'221197' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 197 ; - } -#Dry deposition velocity of asymmetric chlorine dioxide radical -'221198' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 198 ; - } -#Dry deposition velocity of hydrogen -'221199' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 199 ; - } -#Dry deposition velocity of hydrogen chloride -'221200' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 200 ; - } -#Dry deposition velocity of formyl radical -'221201' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 201 ; - } -#Dry deposition velocity of hydrogen fluoride -'221202' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 202 ; - } -#Dry deposition velocity of oxygen atom -'221203' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 203 ; - } -#Dry deposition velocity of excited oxygen atom -'221204' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 204 ; - } -#Dry deposition velocity of ground state oxygen atom -'221205' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 205 ; - } -#Dry deposition velocity of stratospheric aerosol -'221206' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 206 ; - } -#Total sky direct solar radiation at surface -'228021' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'228022' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'228023' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Horizontal visibility -'228025' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'228026' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'228027' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#10 metre wind gust in the last 3 hours -'228028' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'228040' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'228041' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'228042' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'228043' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of zero-degree wet-bulb temperature -'228047' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of one-degree wet-bulb temperature -'228048' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Instantaneous total lightning flash density -'228050' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous total lightning flash density -'228050' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; - } -#Averaged total lightning flash density in the last hour -'228051' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last hour -'228051' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'228052' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'228052' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'228053' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'228053' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; - } -#Averaged total lightning flash density in the last 3 hours -'228057' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged total lightning flash density in the last 3 hours -'228057' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; - } -#Averaged total lightning flash density in the last 6 hours -'228058' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last 6 hours -'228058' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'228059' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'228059' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'228060' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'228060' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'228078' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'228079' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'228080' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'228081' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'228082' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'228083' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'228084' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'228085' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total column rain water -'228089' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'228090' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'228091' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'228092' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'228093' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'228094' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Evaporation from the top of canopy -'228100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 100 ; - } -#Evaporation from bare soil -'228101' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 101 ; - } -#Evaporation from open water surfaces excluding oceans -'228102' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 102 ; - } -#Evaporation from vegetation transpiration -'228103' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 103 ; - } -#Surface solar radiation downward clear-sky -'228129' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'228130' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'228248' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#Irrigation fraction -'228250' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'228251' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'228252' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'228255' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'129001' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'129002' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'129003' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'129004' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'129005' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'129011' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'129012' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'129013' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'129014' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'129021' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'129022' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'129023' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'129024' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'129025' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'129026' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'129027' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'129028' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'129029' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'129030' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'129031' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'129032' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'129033' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'129034' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'129035' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'129036' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'129037' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'129038' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'129039' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'129040' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'129041' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'129042' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'129043' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'129044' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'129045' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'129046' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'129047' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'129048' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'129049' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'129050' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'129051' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'129052' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'129053' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'129054' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'129055' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'129056' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'129057' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'129058' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'129059' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'129060' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'129061' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'129062' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'129063' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'129064' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'129065' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'129066' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'129067' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'129068' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'129069' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'129070' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'129071' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'129078' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'129079' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'129080' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'129081' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'129082' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'129083' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'129084' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'129085' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'129086' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'129087' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'129088' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'129089' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'129090' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'129091' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'129092' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'129093' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'129094' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'129095' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'129096' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'129097' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'129098' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'129099' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'129100' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'129101' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'129102' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'129103' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'129104' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'129105' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'129106' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'129107' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'129108' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'129109' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'129110' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'129111' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'129112' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'129113' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'129114' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'129115' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'129116' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'129117' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'129118' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'129119' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'129120' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'129121' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'129122' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'129123' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'129125' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'129126' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'129127' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'129128' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'129129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'129130' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'129131' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'129132' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'129133' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'129134' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'129135' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'129136' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'129137' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'129138' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'129139' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'129140' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'129141' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'129142' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'129143' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'129144' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'129145' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'129146' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'129147' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'129148' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'129149' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'129150' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'129151' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'129152' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'129153' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'129154' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'129155' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'129156' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'129157' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'129158' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'129159' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'129160' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'129161' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'129162' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'129163' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'129164' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'129165' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'129166' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'129167' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'129168' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'129169' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'129170' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'129171' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'129172' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'129173' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'129174' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'129175' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'129176' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'129177' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'129178' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'129179' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'129180' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'129181' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'129182' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'129183' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'129184' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'129185' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'129186' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'129187' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'129188' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'129189' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'129190' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'129191' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'129192' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'129193' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'129194' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'129195' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'129196' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'129197' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'129198' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'129199' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'129200' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'129201' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'129202' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'129203' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'129204' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'129205' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'129206' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'129207' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'129208' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'129209' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'129210' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'129211' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'129212' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'129214' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'129215' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'129216' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'129217' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'129218' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'129219' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'129220' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'129221' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'129222' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'129223' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'129224' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'129225' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'129226' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'129227' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'129228' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'129229' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'129230' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'129231' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'129232' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'129233' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'129234' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'129235' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'129236' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'129237' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'129238' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'129239' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'129240' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'129241' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'129242' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'129243' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'129244' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'129245' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'129246' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'129247' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'129248' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'129249' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'129250' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'129251' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'129252' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'129253' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'129254' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'129255' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'130208' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'130209' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'130210' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'130211' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'130212' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'130213' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'130214' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'130215' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'130216' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'130217' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'130218' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'130219' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'130220' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'130221' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'130224' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'130225' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'130226' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'130228' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'130229' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'130230' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'130231' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'130232' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'131001' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'131002' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'131003' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'131004' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'131005' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'131006' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'131007' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'131008' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'131009' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'131010' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'131015' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'131016' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'131017' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'131018' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'131020' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'131021' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'131022' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'131023' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'131024' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'131025' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'131049' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'131059' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'131064' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'131065' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'131066' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'131067' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'131068' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'131069' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre wind gust of at least 25 m/s -'131072' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - } -#2 metre temperature less than 273.15 K -'131073' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'131074' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 2 ; - scaleFactorOfLowerLimit = 0 ; - } -#Significant wave height of at least 4 m -'131075' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 4 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#Significant wave height of at least 6 m -'131076' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'131077' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'131078' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'131079' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'131080' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'131081' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'131129' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'131130' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'131139' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'131144' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'131151' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'131164' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'131165' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'131167' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'131201' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'131202' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'131228' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'131229' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'131232' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'131255' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'133001' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'133002' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'133003' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'133004' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'133005' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'133006' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'133007' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'133008' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'133009' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'133010' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'133011' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'133012' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'133013' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'133014' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'133015' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'133016' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'133017' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'133018' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'133019' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'133020' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'133021' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'133022' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'133023' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'133024' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'133025' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'133026' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'133027' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'133028' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'133029' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'133030' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'133031' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'133032' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'133033' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'133034' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'133035' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'133036' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'133037' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'133038' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'133039' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'133040' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'133041' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'133042' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'133043' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'133044' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'133045' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'133046' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'133047' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'133048' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'133049' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'133050' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'133051' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'133052' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'133053' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'133054' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'133055' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'133056' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'133057' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'133058' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'133059' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'133060' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'133061' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'133062' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'133063' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'133064' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'133065' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'133066' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'133067' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'133068' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'133069' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'133070' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'133071' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'133072' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'133073' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'133074' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'133075' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'133076' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'133077' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'133078' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'133079' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'133080' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'133081' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'133082' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'133083' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'133084' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'133085' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'133086' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'133087' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'133088' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'133089' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'133090' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'133091' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'133092' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'140200' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'140217' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'140218' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'140219' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'140220' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean zero-crossing wave period -'140221' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Mean zero-crossing wave period -'140221' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'140222' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'140223' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'140224' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'140225' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'140226' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'140227' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'140228' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak wave period -'140231' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Peak wave period -'140231' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'140233' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'140234' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'140235' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'140236' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'140237' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'140238' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'140239' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'140240' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'140241' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'140242' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'140243' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'140244' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'140245' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'140246' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'140247' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'140248' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'140249' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'140250' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'140251' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'140252' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'140253' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'140254' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'140255' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'150129' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'150130' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'150131' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'150133' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'150134' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'150135' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'150137' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'150139' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'150140' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'150141' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'150142' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'150143' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'150144' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'150145' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'150146' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'150147' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'150148' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'150152' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'150153' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'150154' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'150155' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'150168' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'150169' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'150170' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'150171' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'150172' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'150173' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'150180' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'150181' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'150182' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'150183' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'150255' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'151128' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Sea water potential temperature -'151129' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'151130' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'151133' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'151134' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'151135' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'151136' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'151137' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sea water sigma theta -'151138' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'151139' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'151140' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'151141' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'151142' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'151143' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'151144' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level previous timestep -'151146' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Ocean barotropic stream function -'151147' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'151148' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'151149' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'151150' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'151151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'151152' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#Surface downward eastward stress -'151153' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'151154' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'151155' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'151156' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'151157' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'151158' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'151159' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'151160' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'151161' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'151162' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#Average potential temperature in the upper 300m -'151164' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'151165' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'151166' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'151167' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'151168' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'151169' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'151170' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'151171' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'151172' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'151173' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'151174' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Layer Thickness at scalar points -'151176' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'151177' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'151178' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'151179' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'151180' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'151181' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'151182' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'151183' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'151184' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'151185' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'151186' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'151187' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'151188' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'151190' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'151191' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'151192' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'151194' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'151199' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'151200' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'151201' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'151202' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'151203' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'151204' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'151205' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'151206' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'151207' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'151208' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'151209' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'151210' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'151211' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'151212' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'151255' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'160049' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'160135' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'160137' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'160140' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Large-scale precipitation -'160142' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'160143' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'160144' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'160156' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'160157' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'160171' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'160180' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'160181' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'160182' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'160184' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'160198' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'160199' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'160201' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'160202' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'160205' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'160206' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'160207' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'160208' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'160209' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'160210' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'160211' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'160212' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'160213' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'160214' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'160215' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'160216' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'160217' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'160218' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'160219' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'160220' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'160221' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'160222' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'160223' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'160224' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'160225' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'160226' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'160231' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'160239' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'160240' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'160241' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'160242' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'160243' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'160246' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'160247' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'160249' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'160254' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'162051' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'162053' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'162054' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'162055' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'162056' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'162057' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'162058' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'162059' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'162060' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'162061' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'162062' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'162063' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'162064' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'162065' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'162066' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'162067' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'162068' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'162069' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'162070' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'162071' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'162072' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'162073' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'162074' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'162075' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'162076' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'162077' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'162078' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'162081' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'162082' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'162083' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'162084' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'162085' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'162086' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'162087' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'162100' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'162101' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'162102' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'162103' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'162104' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'162105' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'162106' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'162107' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'162108' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'162109' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'162110' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'162111' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'162112' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'162113' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'162206' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'162207' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'162208' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'162209' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'162210' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'162211' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'162212' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'162213' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'162214' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'162215' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'162216' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'162217' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'162218' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'162219' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'162220' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'162221' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'162222' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'162223' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'162224' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'162225' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'162226' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'162227' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'162229' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'162230' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'162231' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'162232' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'162233' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'162255' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'170149' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'170171' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'170179' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'171001' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'171002' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'171003' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'171004' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'171005' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'171011' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'171012' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'171013' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'171014' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'171021' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'171022' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'171023' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'171026' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'171027' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'171028' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'171029' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'171030' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'171031' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'171032' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'171033' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'171034' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'171035' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'171036' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'171037' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'171038' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'171039' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'171040' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'171041' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'171042' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'171043' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'171044' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'171045' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'171046' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'171047' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'171048' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'171049' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'171050' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'171051' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'171052' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'171053' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'171054' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'171055' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'171056' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'171057' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'171058' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'171059' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'171060' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'171061' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'171062' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'171063' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'171064' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'171065' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'171078' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'171079' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'171125' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'171126' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'171127' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'171128' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'171129' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'171130' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'171131' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'171132' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'171133' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'171134' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'171135' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'171136' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'171137' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'171138' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'171139' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'171140' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'171141' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'171142' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'171143' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'171144' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'171145' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'171146' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'171147' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'171148' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'171149' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'171150' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'171151' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'171152' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'171153' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'171154' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'171155' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'171156' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'171157' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'171158' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'171159' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'171160' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'171161' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'171162' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'171163' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'171164' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'171165' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'171166' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'171167' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'171168' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'171169' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'171170' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'171171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'171173' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'171174' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'171175' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'171176' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'171177' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'171178' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'171179' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'171180' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'171181' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'171182' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'171183' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'171184' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'171185' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'171186' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'171187' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'171188' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'171189' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'171190' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'171191' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'171192' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'171193' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'171194' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'171195' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'171196' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'171197' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'171198' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'171199' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'171200' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'171201' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'171202' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'171203' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'171204' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'171205' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'171206' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'171207' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'171208' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'171209' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'171210' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'171211' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'171212' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'171214' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'171215' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'171216' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'171217' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'171218' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'171219' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'171220' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'171221' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'171222' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'171223' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'171224' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'171225' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'171226' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'171227' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'171228' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'171229' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'171230' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'171231' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'171232' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'171233' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'171234' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'171235' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'171236' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'171237' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'171238' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'171239' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'171240' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'171241' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'171242' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'171243' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'171244' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'171245' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'171246' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'171247' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'171248' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'171249' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'171250' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'171251' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'171252' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'171253' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'171254' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'171255' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'172044' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'172045' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'172048' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Mean large-scale precipitation fraction -'172050' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Mean large-scale precipitation rate -'172142' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate -'172143' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Mean total snowfall rate -'172144' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'172145' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Mean surface sensible heat flux -'172146' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Mean surface latent heat flux -'172147' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Mean surface net radiation flux -'172149' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Mean short-wave heating rate -'172153' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Mean long-wave heating rate -'172154' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Mean surface downward solar radiation flux -'172169' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Mean surface downward thermal radiation flux -'172175' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Mean surface net solar radiation flux -'172176' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Mean surface net thermal radiation flux -'172177' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Mean top net solar radiation flux -'172178' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Mean top net thermal radiation flux -'172179' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress rate of accumulation -'172180' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress rate of accumulation -'172181' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'172182' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Mean sunshine duration rate -'172189' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'172195' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'172196' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'172197' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Mean runoff rate -'172205' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'172208' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'172209' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'172210' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'172211' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation rate of accumulation -'172212' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Mean total precipitation rate -'172228' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'172239' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'172240' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'172255' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'173044' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'173045' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'173048' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'173050' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'173142' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate anomaly -'173143' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'173144' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'173145' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'173146' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'173147' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'173149' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'173153' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'173154' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'173169' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'173175' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'173176' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'173177' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'173178' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'173179' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'173180' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'173181' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomalous rate of accumulation -'173182' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'173189' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'173195' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'173196' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'173197' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomalous rate of accumulation -'173205' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'173208' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'173209' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'173210' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'173211' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomalous rate of accumulation -'173212' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'173228' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'173239' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'173240' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'173255' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'174006' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'174009' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'174031' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'174034' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'174039' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'174040' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'174041' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'174042' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'174049' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'174055' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'174083' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'174085' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'174086' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'174087' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'174088' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'174089' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'174090' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'174094' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'174095' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Liquid water potential temperature -'174099' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'174110' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'174111' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'174139' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'174164' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'174167' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'174168' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'174170' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'174175' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'174183' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'174201' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'174202' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'174236' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'174255' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'175006' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'175031' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'175034' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'175039' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'175040' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'175041' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'175042' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'175049' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'175055' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'175083' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'175085' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'175086' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'175087' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'175088' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'175089' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'175090' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'175110' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'175111' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'175139' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'175164' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'175167' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'175168' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'175170' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'175175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'175183' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'175201' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'175202' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'175236' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'175255' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'180149' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'180176' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'180177' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'180178' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'180179' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Field capacity -'190170' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'190171' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'190173' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'190229' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'200168' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'201001' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'201002' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'201003' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'201004' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'201005' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'201006' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'201007' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'201008' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'201009' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'201010' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'201011' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'201012' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'201013' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'201014' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'201015' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'201016' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'201017' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'201029' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'201030' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'201031' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'201032' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'201033' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'201034' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'201035' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'201036' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'201037' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'201038' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'201041' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'201042' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'201050' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'201051' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'201052' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'201053' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'201054' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'201055' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'201056' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'201060' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'201061' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'201062' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'201063' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'201064' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'201065' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'201066' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'201067' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'201068' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'201069' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'201070' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'201071' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'201072' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'201073' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'201074' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'201075' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'201076' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'201077' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'201078' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'201079' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'201080' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'201081' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'201082' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'201083' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'201084' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'201085' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'201099' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'201100' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'201101' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'201102' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'201111' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'201112' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'201113' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'201139' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'201150' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'201187' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'201200' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'201203' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'201215' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'201241' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'201255' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'210001' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'210002' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'210003' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'210004' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'210005' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'210006' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'210007' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'210008' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'210009' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'210010' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'210011' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'210012' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'210016' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'210017' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'210018' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'210019' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'210020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'210021' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'210022' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'210023' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'210024' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'210025' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'210026' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'210027' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'210031' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'210032' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'210033' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'210034' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'210035' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'210036' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'210037' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'210038' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'210039' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'210040' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'210041' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'210042' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'210046' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'210047' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'210048' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'210049' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'210050' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'210051' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'210052' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'210053' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'210054' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'210061' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'210062' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'210063' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#CO2 column-mean molar fraction -'210064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#CH4 column-mean molar fraction -'210065' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'210066' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'210067' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'210068' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'210069' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'210070' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'210071' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire flux of Carbon Dioxide -'210080' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 80 ; - } -#Wildfire flux of Carbon Monoxide -'210081' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 81 ; - } -#Wildfire flux of Methane -'210082' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'210083' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 83 ; - } -#Wildfire flux of Hydrogen -'210084' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'210085' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 85 ; - } -#Wildfire flux of Nitrous Oxide -'210086' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'210087' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 87 ; - } -#Wildfire flux of Total Particulate Matter -'210088' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'210089' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 89 ; - } -#Wildfire flux of Organic Carbon -'210090' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 90 ; - } -#Wildfire flux of Black Carbon -'210091' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 91 ; - } -#Wildfire overall flux of burnt Carbon -'210092' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'210093' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'210094' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'210095' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'210096' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'210097' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'210098' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'210099' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'210100' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'210121' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'210122' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'210123' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'210124' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'210125' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'210126' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'210127' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'210128' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'210129' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'210130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'210131' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'210132' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'210133' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'210134' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'210135' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'210136' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'210137' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'210138' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'210139' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'210140' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'210141' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'210142' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'210143' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'210144' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'210145' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'210146' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'210147' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'210148' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'210149' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'210150' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'210151' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'210152' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'210153' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'210154' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'210155' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'210156' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'210157' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'210158' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'210159' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'210160' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'210161' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'210162' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'210163' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'210164' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'210165' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'210166' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'210181' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'210182' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'210183' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'210184' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'210185' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'210203' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'210206' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'210207' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'210208' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'210209' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'210210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'210211' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'210212' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'210213' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'210214' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'210215' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'210216' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'211001' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'211002' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'211003' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'211004' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'211005' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'211006' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'211007' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'211008' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'211009' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'211010' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'211011' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'211012' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'211016' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'211017' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'211018' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'211019' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'211020' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'211021' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'211022' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'211023' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'211024' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'211025' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'211026' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'211027' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'211031' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'211032' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'211033' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'211034' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'211035' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'211036' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'211037' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'211038' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'211039' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'211040' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'211041' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'211042' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'211046' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'211047' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'211048' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'211049' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'211050' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'211051' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'211052' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'211053' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'211054' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'211061' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'211062' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'211063' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'211064' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'211065' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'211066' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'211067' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'211068' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'211069' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'211070' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'211071' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'211092' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'211093' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'211094' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'211095' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'211096' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'211097' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'211098' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'211099' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'211100' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'211121' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'211122' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'211123' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'211124' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'211125' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'211126' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'211127' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'211128' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'211129' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'211130' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'211131' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'211132' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'211133' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'211134' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'211135' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'211136' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'211137' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'211138' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'211139' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'211140' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'211141' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'211142' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'211143' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'211144' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'211145' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'211146' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'211147' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'211148' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'211149' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'211150' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'211151' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'211152' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'211153' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'211154' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'211155' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'211156' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'211157' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'211158' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'211159' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'211160' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'211161' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'211162' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'211163' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'211164' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'211165' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'211166' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'211181' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'211182' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'211183' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'211184' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'211185' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'211203' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'211206' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'211207' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'211208' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'211209' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'211210' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'211211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'211212' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'211213' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'211214' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'211215' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'211216' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'220228' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'228003' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'228004' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'228005' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'228006' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'228007' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'228008' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'228009' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'228010' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'228011' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'228012' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'228013' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'228014' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'228015' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'228016' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'228017' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'228018' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'228019' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'228131' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'228132' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'234139' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'234151' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'234167' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'234228' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'140215' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'140216' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'210101' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'210102' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'210103' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'210104' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'210105' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'210106' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'210107' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'210108' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'210109' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'210110' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'210111' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'210112' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'210113' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'210114' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'210115' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'210116' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'210117' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 117 ; - } -#Wildfire radiative power maximum -'211101' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'228134' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'228136' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#ASCAT first soil moisture CDF matching parameter -'228253' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'228254' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def deleted file mode 100644 index c1667d23..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/paramId.legacy.def +++ /dev/null @@ -1,144 +0,0 @@ -#Surface net solar radiation, clear sky -'210' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'211' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'151131' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'151132' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'174098' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'151145' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'228246' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'228247' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'228249' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'228024' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'151163' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'151175' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} -#Total precipitation of at least 1 mm -'131060' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} -#Total precipitation of at least 5 mm -'131061' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} -#Total precipitation of at least 40 mm -'131082' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} -#Total precipitation of at least 60 mm -'131083' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} -#Total precipitation of at least 80 mm -'131084' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'131086' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'131087' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'131088' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'78' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'79' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'178' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'238' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def deleted file mode 100644 index 129a268d..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.def +++ /dev/null @@ -1,22056 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Equivalent potential temperature -'eqpt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'ssfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'scfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'sro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'udvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'vdvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'urtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'vrtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'uvcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'cl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'cvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'cvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'tvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'tvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'asn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'istl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'es' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'smlt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'sdur' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'lspf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Montgomery potential -'mont' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'obct' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'sktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'10fg6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'emis' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'vite' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'at' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'bv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'tcwv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'stl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'swl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'sd' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'lsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'sf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'chnk' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'snr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'tnr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'lnsp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'swhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'lwhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'tsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'blh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'sdor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'tcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'stl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'al' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'e' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'stl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'swl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'ccc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'lcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'mcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'hcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'lgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'src' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'veg' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'paw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'ro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'tco3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#TOA incident solar radiation -'tisr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'ie' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'asq' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'stl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'swl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Convective snowfall -'csf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'lsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'fal' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'fsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'aiw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'ice' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'strfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'ptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'cldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'asndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'rsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'sltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'esdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'smltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'sdurdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'10fgdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'montdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'presdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'capediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'obctdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10fg6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'bvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'zdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'qdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'spdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'tcwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'sddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'chnkdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'ghdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'rdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'10udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'10vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'srdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'aldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'ediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'hccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'rodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'tco3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'10sidiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'tpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'sktdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'faldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'ccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'icediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'utendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'ttendr' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'100ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'100va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdms' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Injection height (from IS4FIRES) -'injh' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 60 ; - } -#Particulate matter d < 1 um -'pm1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'c2h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 118 ; - } -#Mean altitude of maximum injection -'mami' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'apt' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#Wildfire day-time radiative power -'frpdayfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 167 ; - } -#Wildfire night-time radiative power -'frpngtfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 169 ; - } -#Wildfire day-time inverse variance of radiative power -'frpdayivar' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 177 ; - } -#Wildfire night-time inverse variance of radiative power -'frpngtivar' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 179 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'c7h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'c6h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'c8h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'c4h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'c5h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'c6h12fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'c8h16fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'c4h10fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'c5h12fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'c6h14fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'c7h16fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 241 ; - } -#Altitude of plume bottom -'apb' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'alediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'aptdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'aermr16diff' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'aermr17diff' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -#Random pattern 1 for SPP scheme -'spp1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 101 ; - } -#Random pattern 2 for SPP scheme -'spp2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 102 ; - } -#Random pattern 3 for SPP scheme -'spp3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 103 ; - } -#Random pattern 4 for SPP scheme -'spp4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 104 ; - } -#Random pattern 5 for SPP scheme -'spp5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 105 ; - } -#Random pattern 6 for SPP scheme -'spp6' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 106 ; - } -#Random pattern 7 for SPP scheme -'spp7' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 107 ; - } -#Random pattern 8 for SPP scheme -'spp8' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 108 ; - } -#Random pattern 9 for SPP scheme -'spp9' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 109 ; - } -#Random pattern 10 for SPP scheme -'spp10' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 110 ; - } -#Random pattern 11 for SPP scheme -'spp11' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 111 ; - } -#Random pattern 12 for SPP scheme -'spp12' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 112 ; - } -#Random pattern 13 for SPP scheme -'spp13' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 113 ; - } -#Random pattern 14 for SPP scheme -'spp14' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 114 ; - } -#Random pattern 15 for SPP scheme -'spp15' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 115 ; - } -#Random pattern 16 for SPP scheme -'spp16' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 116 ; - } -#Random pattern 17 for SPP scheme -'spp17' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 117 ; - } -#Random pattern 18 for SPP scheme -'spp18' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 118 ; - } -#Random pattern 19 for SPP scheme -'spp19' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 119 ; - } -#Random pattern 20 for SPP scheme -'spp20' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 120 ; - } -#Random pattern 21 for SPP scheme -'spp21' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 121 ; - } -#Random pattern 22 for SPP scheme -'spp22' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 122 ; - } -#Random pattern 23 for SPP scheme -'spp23' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 123 ; - } -#Random pattern 24 for SPP scheme -'spp24' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 124 ; - } -#Random pattern 25 for SPP scheme -'spp25' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 125 ; - } -#Random pattern 26 for SPP scheme -'spp26' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 126 ; - } -#Random pattern 27 for SPP scheme -'spp27' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 127 ; - } -#Random pattern 28 for SPP scheme -'spp28' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 128 ; - } -#Random pattern 29 for SPP scheme -'spp29' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 129 ; - } -#Random pattern 30 for SPP scheme -'spp30' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 130 ; - } -#Random pattern 31 for SPP scheme -'spp31' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 131 ; - } -#Random pattern 32 for SPP scheme -'spp32' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 132 ; - } -#Random pattern 33 for SPP scheme -'spp33' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 133 ; - } -#Random pattern 34 for SPP scheme -'spp34' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 134 ; - } -#Random pattern 35 for SPP scheme -'spp35' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 135 ; - } -#Random pattern 36 for SPP scheme -'spp36' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 136 ; - } -#Random pattern 37 for SPP scheme -'spp37' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 137 ; - } -#Random pattern 38 for SPP scheme -'spp38' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 138 ; - } -#Random pattern 39 for SPP scheme -'spp39' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 139 ; - } -#Random pattern 40 for SPP scheme -'spp40' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 140 ; - } -#Random pattern 41 for SPP scheme -'spp41' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 141 ; - } -#Random pattern 42 for SPP scheme -'spp42' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 142 ; - } -#Random pattern 43 for SPP scheme -'spp43' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 143 ; - } -#Random pattern 44 for SPP scheme -'spp44' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 144 ; - } -#Random pattern 45 for SPP scheme -'spp45' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 145 ; - } -#Random pattern 46 for SPP scheme -'spp46' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 146 ; - } -#Random pattern 47 for SPP scheme -'spp47' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 147 ; - } -#Random pattern 48 for SPP scheme -'spp48' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 148 ; - } -#Random pattern 49 for SPP scheme -'spp49' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 149 ; - } -#Random pattern 50 for SPP scheme -'spp50' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 150 ; - } -#Cosine of solar zenith angle -'uvcossza' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -#UV biologically effective dose -'uvbed' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -#UV biologically effective dose clear-sky -'uvbedcs' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -#Profile of optical thickness at 340 nm -'aot340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -#Source/gain of sulphate aerosol -'aersrcsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -#Dry deposition of sulphate aerosol -'aerddpsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -#Sedimentation of sulphate aerosol -'aersdmsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -#Negative fixer of sulphate aerosol -'aerngtsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'aermsssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -#Sulphate aerosol optical depth -'aerodsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Asymmetry factor at 340 nm -'asymmetry340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Asymmetry factor at 355 nm -'asymmetry355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Asymmetry factor at 380 nm -'asymmetry380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Asymmetry factor at 400 nm -'asymmetry400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Asymmetry factor at 440 nm -'asymmetry440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Asymmetry factor at 469 nm -'asymmetry469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Asymmetry factor at 500 nm -'asymmetry500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Asymmetry factor at 532 nm -'asymmetry532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Asymmetry factor at 550 nm -'asymmetry550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Asymmetry factor at 645 nm -'asymmetry645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Asymmetry factor at 670 nm -'asymmetry670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Asymmetry factor at 800 nm -'asymmetry800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Asymmetry factor at 858 nm -'asymmetry858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Asymmetry factor at 865 nm -'asymmetry865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Asymmetry factor at 1020 nm -'asymmetry1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Asymmetry factor at 1064 nm -'asymmetry1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Asymmetry factor at 1240 nm -'asymmetry1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Asymmetry factor at 1640 nm -'asymmetry1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Asymmetry factor at 2130 nm -'asymmetry2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'aersrcnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Source/gain of coarse-mode nitrate aerosol -'aersrcnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Dry deposition of fine-mode nitrate aerosol -'aerddpnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'aerddpnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Sedimentation of fine-mode nitrate aerosol -'aersdmnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'aersdmnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'aerwdlnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'aerwdlnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'aerwdcnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'aerwdcnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Negative fixer of fine-mode nitrate aerosol -'aerngtnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'aerngtnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'aermssnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'aermssnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'aerodnif' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 65534 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'aerodnic' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfSizeInterval = 255 ; - aerosolType = 65533 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - } -#Source/gain of ammonium aerosol -'aersrcam' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Negative fixer of ammonium aerosol -'aerngtam' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'ch4_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'hno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'par' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'c2h4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'ole' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'ald2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'rooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'onit' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'c5h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'dms' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'nh4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'msa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'o3s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'pb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'ho2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'ho2no2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'ror' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'rxpar' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'xo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'nh2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'psc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'ch3oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'hcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'mcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'c2h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'c2h5oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'c3h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'c3h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'c10h16' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'ispd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'no3_a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'ch3coch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'aco2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'hypropo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Carbon dioxide (chemistry) -'co2_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 57 ; - } -#Nitrous oxide (chemistry) -'n2o_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 58 ; - } -#Water vapour (chemistry) -'h2o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 59 ; - } -#Oxygen -'o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 60 ; - } -#Singlet oxygen -'o2_1s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 61 ; - } -#Singlet delta oxygen -'o2_1d' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 62 ; - } -#Chlorine dioxide -'oclo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'clono2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'hocl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Chlorine -'cl2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 66 ; - } -#Nitryl chloride -'clno2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 67 ; - } -#Hydrogen bromide -'hbr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Dichlorine dioxide -'cl2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 69 ; - } -#Hypobromous acid -'hobr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Trichlorofluoromethane -'cfc11' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 71 ; - } -#Dichlorodifluoromethane -'cfc12' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 72 ; - } -#Trichlorotrifluoroethane -'cfc113' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 73 ; - } -#Dichlorotetrafluoroethane -'cfc114' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 74 ; - } -#Chloropentafluoroethane -'cfc115' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 75 ; - } -#Tetrachloromethane -'ccl4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 76 ; - } -#Methyl chloroform -'ch3ccl3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 77 ; - } -#Methyl chloride -'ch3cl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Chlorodifluoromethane -'hcfc22' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 79 ; - } -#Methyl bromide -'ch3br' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Dibromodifluoromethane -'ha1202' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 81 ; - } -#Bromochlorodifluoromethane -'ha1211' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 82 ; - } -#Trifluorobromomethane -'ha1301' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 83 ; - } -#Cbrf2cbrf2 -'ha2402' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 84 ; - } -#Sulfuric acid -'h2so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'hono' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Alkanes low oh rate -'hc3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 87 ; - } -#Alkanes med oh rate -'hc5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 88 ; - } -#Alkanes high oh rate -'hc8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 89 ; - } -#Terminal alkenes -'olt' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 90 ; - } -#Internal alkenes -'oli' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 91 ; - } -#Ethylperoxy radical -'c2h5o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 92 ; - } -#Butadiene -'dien' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 93 ; - } -#Ethyl hydroperoxide -'c2h5ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 94 ; - } -#A-pinene cyclic terpenes -'api' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 95 ; - } -#Acetic acid -'ch3cooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#D-limonene cyclic diene -'lim' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 97 ; - } -#Acetaldehyde -'ch3cho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 98 ; - } -#Toluene and less reactive aromatics -'tol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 99 ; - } -#Xylene and more reactive aromatics -'xyl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 100 ; - } -#Glycolaldehyde -'glyald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 101 ; - } -#Cresol -'cresol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 102 ; - } -#Acetaldehyde and higher -'ald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 103 ; - } -#Peracetic acid -'ch3coooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 104 ; - } -#Ketones -'ket' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 105 ; - } -#Hoch2ch2o2 -'eo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 106 ; - } -#Glyoxal -'glyoxal' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 107 ; - } -#Hoch2ch2o -'eo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 108 ; - } -#Unsaturated dicarbonyls -'dcb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 109 ; - } -#Methacrolein -'macr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 110 ; - } -#Unsaturated hydroxy dicarbonyl -'udd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 111 ; - } -#Isopropyldioxidanyl -'c3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 112 ; - } -#Hydroxy ketone -'hket' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 113 ; - } -#Isopropyl hydroperoxide -'c3h7ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 114 ; - } -#C3h6oho2 -'po2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 115 ; - } -#C3h6ohooh -'pooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 116 ; - } -#Higher organic peroxides -'op2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 117 ; - } -#Hydroxyacetone -'hyac' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 118 ; - } -#Peroxyacetic acid -'paa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 119 ; - } -#Ch3coch2o2 -'ro2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 120 ; - } -#Peroxy radical from c2h6 -'ethp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 121 ; - } -#Peroxy radical from hc3 -'hc3p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 122 ; - } -#Peroxy radical from hc5 -'hc5p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 123 ; - } -#Lumped alkenes -'bigene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 124 ; - } -#Peroxy radical from hc8 -'hc8p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 125 ; - } -#Lumped alkanes -'bigalk' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 126 ; - } -#Peroxy radical from c2h4 -'etep' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 127 ; - } -#C4h8o -'mek' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 128 ; - } -#Peroxy radical from terminal alkenes -'oltp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 129 ; - } -#C4h9o3 -'eneo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 130 ; - } -#Peroxy radical from internal alkenes -'olip' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 131 ; - } -#Ch3coch(oo)ch3 -'meko2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 132 ; - } -#Peroxy radical from c5h8 -'isopo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 133 ; - } -#Ch3coch(ooh)ch3 -'mekooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 134 ; - } -#Peroxy radical from a-pinene cyclic terpenes -'apip' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 135 ; - } -#Ch2=c(ch3)co3 -'mco3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 136 ; - } -#Peroxy radical from d-limonene cyclic diene -'limp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 137 ; - } -#Methylvinylketone -'mvk' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 138 ; - } -#Phenoxy radical -'pho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 139 ; - } -#Peroxy radical from toluene and less reactive aromatics -'tolp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 140 ; - } -#Ch3c(o)ch(oo)ch2oh -'macro2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 141 ; - } -#Peroxy radical from xylene and more reactive aromatics -'xylp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 142 ; - } -#H3c(o)ch(ooh)ch2oh -'macrooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 143 ; - } -#Peroxy radical from cresol -'cslp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 144 ; - } -#Unsaturated pans -'mpan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 145 ; - } -#Unsaturated acyl peroxy radical -'tco3_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 146 ; - } -#Peroxy radical from ketones -'ketp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 147 ; - } -#C5h11o2 -'alko2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 148 ; - } -#No3-alkenes adduct reacting to form carbonitrates -'olnn' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 149 ; - } -#C5h11ooh -'alkooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 150 ; - } -#No3-alkenes adduct reacting via decomposition -'olnd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 151 ; - } -#Hoch2c(ch3)=chcho -'bigald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 152 ; - } -#C5h6o2 -'hydrald' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 153 ; - } -#Trop sulfuric acid -'sulf' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 154 ; - } -#Oxides -'ox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 155 ; - } -#Ch2chc(ch3)(oo)ch2ono2 -'isopno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 156 ; - } -#C3 organic nitrate -'onitr' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 157 ; - } -#Chlorine oxides -'clox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 158 ; - } -#Bromine oxides -'brox' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 159 ; - } -#Hoch2c(ooh)(ch3)chchoh -'xooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 160 ; - } -#Hoch2c(ooh)(ch3)ch=ch2 -'isopooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 161 ; - } -#Lumped aromatics -'toluene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 162 ; - } -#Dimethyl sulfoxyde -'dmso' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 163 ; - } -#C7h9o5 -'tolo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 164 ; - } -#C7h10o5 -'tolooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 165 ; - } -#Hydrogensulfide -'h2s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 166 ; - } -#C7h10o6 -'xoh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 167 ; - } -#All nitrogen oxides -'noy' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 168 ; - } -#Chlorine family -'cly' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 169 ; - } -#C10h16(oh)(oo) -'terpo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 170 ; - } -#Bromine family -'bry' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 171 ; - } -#C10h18o3 -'terpooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 172 ; - } -#Nitrogen atom -'n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 173 ; - } -#Chlorine monoxide -'clo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Chlorine atom -'cl_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 175 ; - } -#Bromine monoxide -'bro' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Hydrogen atom -'h_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 177 ; - } -#Methyl group -'ch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 178 ; - } -#Aromatic-ho from toluene and less reactive aromatics -'addt' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 179 ; - } -#Aromatic-ho from xylene and more reactive aromatics -'addx' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 180 ; - } -#Ammonium nitrate -'nh4no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 181 ; - } -#Aromatic-ho from csl -'addc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 182 ; - } -#Secondary organic aerosol type 1 -'soa1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 183 ; - } -#Secondary organic aerosol type 2a -'soa2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 184 ; - } -#Secondary organic aerosol type 2b -'soa2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 185 ; - } -#Condensable gas type 1 -'sog1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 186 ; - } -#Condensable gas type 2a -'sog2a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 187 ; - } -#Condensable gas type 2b -'sog2b' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 188 ; - } -#Sulfur trioxide -'so3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 189 ; - } -#Carbonyl sulfide -'ocs_c' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 190 ; - } -#Bromine atom -'br' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 191 ; - } -#Bromine -'br2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 192 ; - } -#Bromine monochloride -'brcl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 193 ; - } -#Bromine nitrate -'brono2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Dibromomethane -'ch2br2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 195 ; - } -#Methoxy radical -'ch3o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 196 ; - } -#Tribromomethane -'chbr3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 197 ; - } -#Asymmetric chlorine dioxide radical -'cloo' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 198 ; - } -#Hydrogen -'h2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 199 ; - } -#Hydrogen chloride -'hcl' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Formyl radical -'hco' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 201 ; - } -#Hydrogen fluoride -'hf' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 202 ; - } -#Oxygen atom -'o' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 203 ; - } -#Excited oxygen atom -'o1d' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 204 ; - } -#Ground state oxygen atom -'o3p' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 205 ; - } -#Stratospheric aerosol -'strataer' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 206 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'tc_ch4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'tc_par' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'tc_c2h4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'tc_ole' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'tc_rooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'tc_nh3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'tc_so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'tc_nh4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'tc_pb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'tc_ror' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'tc_nh2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'tc_c2h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'tc_c3h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'tc_c3h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'tc_aco2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Total column of carbon dioxide (chemistry) -'tc_co2_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 57 ; - } -#Total column of nitrous oxide (chemistry) -'tc_n2o_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 58 ; - } -#Total column of water vapour (chemistry) -'tc_h2o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 59 ; - } -#Total column of oxygen -'tc_o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 60 ; - } -#Total column of singlet oxygen -'tc_o2_1s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 61 ; - } -#Total column of singlet delta oxygen -'tc_o2_1d' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 62 ; - } -#Total column of chlorine dioxide -'tc_oclo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'tc_clono2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'tc_hocl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of chlorine -'tc_cl2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 66 ; - } -#Total column of nitryl chloride -'tc_clno2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 67 ; - } -#Total column of hydrogen bromide -'tc_hbr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of dichlorine dioxide -'tc_cl2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 69 ; - } -#Total column of hypobromous acid -'tc_hobr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of trichlorofluoromethane -'tc_cfc11' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 71 ; - } -#Total column of dichlorodifluoromethane -'tc_cfc12' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 72 ; - } -#Total column of trichlorotrifluoroethane -'tc_cfc113' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 73 ; - } -#Total column of dichlorotetrafluoroethane -'tc_cfc114' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 74 ; - } -#Total column of chloropentafluoroethane -'tc_cfc115' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 75 ; - } -#Total column of tetrachloromethane -'tc_ccl4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 76 ; - } -#Total column of methyl chloroform -'tc_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 77 ; - } -#Total column of methyl chloride -'tc_ch3cl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of chlorodifluoromethane -'tc_hcfc22' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 79 ; - } -#Total column of methyl bromide -'tc_ch3br' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of dibromodifluoromethane -'tc_ha1202' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 81 ; - } -#Total column of bromochlorodifluoromethane -'tc_ha1211' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 82 ; - } -#Total column of trifluorobromomethane -'tc_ha1301' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 83 ; - } -#Total column of cbrf2cbrf2 -'tc_ha2402' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 84 ; - } -#Total column of sulfuric acid -'tc_h2so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 85 ; - } -#Total column of nitrous acid -'tc_hono' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of alkanes low oh rate -'tc_hc3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 87 ; - } -#Total column of alkanes med oh rate -'tc_hc5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 88 ; - } -#Total column of alkanes high oh rate -'tc_hc8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 89 ; - } -#Total column of terminal alkenes -'tc_olt' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 90 ; - } -#Total column of internal alkenes -'tc_oli' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 91 ; - } -#Total column of ethylperoxy radical -'tc_c2h5o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 92 ; - } -#Total column of butadiene -'tc_dien' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 93 ; - } -#Total column of ethyl hydroperoxide -'tc_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 94 ; - } -#Total column of a-pinene cyclic terpenes -'tc_api' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 95 ; - } -#Total column of acetic acid -'tc_ch3cooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of d-limonene cyclic diene -'tc_lim' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 97 ; - } -#Total column of acetaldehyde -'tc_ch3cho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 98 ; - } -#Total column of toluene and less reactive aromatics -'tc_tol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 99 ; - } -#Total column of xylene and more reactive aromatics -'tc_xyl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 100 ; - } -#Total column of glycolaldehyde -'tc_glyald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 101 ; - } -#Total column of cresol -'tc_cresol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 102 ; - } -#Total column of acetaldehyde and higher -'tc_ald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 103 ; - } -#Total column of peracetic acid -'tc_ch3coooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 104 ; - } -#Total column of ketones -'tc_ket' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 105 ; - } -#Total column of hoch2ch2o2 -'tc_eo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 106 ; - } -#Total column of glyoxal -'tc_glyoxal' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 107 ; - } -#Total column of hoch2ch2o -'tc_eo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 108 ; - } -#Total column of unsaturated dicarbonyls -'tc_dcb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 109 ; - } -#Total column of methacrolein -'tc_macr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 110 ; - } -#Total column of unsaturated hydroxy dicarbonyl -'tc_udd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 111 ; - } -#Total column of isopropyldioxidanyl -'tc_c3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 112 ; - } -#Total column of hydroxy ketone -'tc_hket' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 113 ; - } -#Total column of isopropyl hydroperoxide -'tc_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 114 ; - } -#Total column of c3h6oho2 -'tc_po2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 115 ; - } -#Total column of c3h6ohooh -'tc_pooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 116 ; - } -#Total column of higher organic peroxides -'tc_op2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 117 ; - } -#Total column of hydroxyacetone -'tc_hyac' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 118 ; - } -#Total column of peroxyacetic acid -'tc_paa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 119 ; - } -#Total column of ch3coch2o2 -'tc_ro2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 120 ; - } -#Total column of peroxy radical from c2h6 -'tc_ethp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 121 ; - } -#Total column of peroxy radical from hc3 -'tc_hc3p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 122 ; - } -#Total column of peroxy radical from hc5 -'tc_hc5p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 123 ; - } -#Total column of lumped alkenes -'tc_bigene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 124 ; - } -#Total column of peroxy radical from hc8 -'tc_hc8p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 125 ; - } -#Total column of lumped alkanes -'tc_bigalk' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 126 ; - } -#Total column of peroxy radical from c2h4 -'tc_etep' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 127 ; - } -#Total column of c4h8o -'tc_mek' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 128 ; - } -#Total column of peroxy radical from terminal alkenes -'tc_oltp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 129 ; - } -#Total column of c4h9o3 -'tc_eneo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 130 ; - } -#Total column of peroxy radical from internal alkenes -'tc_olip' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 131 ; - } -#Total column of ch3coch(oo)ch3 -'tc_meko2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 132 ; - } -#Total column of peroxy radical from c5h8 -'tc_isopo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 133 ; - } -#Total column of ch3coch(ooh)ch3 -'tc_mekooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 134 ; - } -#Total column of peroxy radical from a-pinene cyclic terpenes -'tc_apip' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 135 ; - } -#Total column of ch2=c(ch3)co3 -'tc_mco3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 136 ; - } -#Total column of peroxy radical from d-limonene cyclic diene -'tc_limp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 137 ; - } -#Total column of methylvinylketone -'tc_mvk' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 138 ; - } -#Total column of phenoxy radical -'tc_pho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 139 ; - } -#Total column of peroxy radical from toluene and less reactive aromatics -'tc_tolp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 140 ; - } -#Total column of ch3c(o)ch(oo)ch2oh -'tc_macro2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 141 ; - } -#Total column of peroxy radical from xylene and more reactive aromatics -'tc_xylp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 142 ; - } -#Total column of h3c(o)ch(ooh)ch2oh -'tc_macrooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 143 ; - } -#Total column of peroxy radical from cresol -'tc_cslp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 144 ; - } -#Total column of unsaturated pans -'tc_mpan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 145 ; - } -#Total column of unsaturated acyl peroxy radical -'tc_tco3_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 146 ; - } -#Total column of peroxy radical from ketones -'tc_ketp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 147 ; - } -#Total column of c5h11o2 -'tc_alko2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 148 ; - } -#Total column of no3-alkenes adduct reacting to form carbonitrates -'tc_olnn' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 149 ; - } -#Total column of c5h11ooh -'tc_alkooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 150 ; - } -#Total column of no3-alkenes adduct reacting via decomposition -'tc_olnd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 151 ; - } -#Total column of hoch2c(ch3)=chcho -'tc_bigald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 152 ; - } -#Total column of c5h6o2 -'tc_hydrald' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 153 ; - } -#Total column of trop sulfuric acid -'tc_sulf' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 154 ; - } -#Total column of oxides -'tc_ox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 155 ; - } -#Total column of ch2chc(ch3)(oo)ch2ono2 -'tc_isopno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 156 ; - } -#Total column of c3 organic nitrate -'tc_onitr' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 157 ; - } -#Total column of chlorine oxides -'tc_clox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 158 ; - } -#Total column of bromine oxides -'tc_brox' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 159 ; - } -#Total column of hoch2c(ooh)(ch3)chchoh -'tc_xooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 160 ; - } -#Total column of hoch2c(ooh)(ch3)ch=ch2 -'tc_isopooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 161 ; - } -#Total column of lumped aromatics -'tc_toluene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 162 ; - } -#Total column of dimethyl sulfoxyde -'tc_dmso' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 163 ; - } -#Total column of c7h9o5 -'tc_tolo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 164 ; - } -#Total column of c7h10o5 -'tc_tolooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 165 ; - } -#Total column of hydrogensulfide -'tc_h2s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 166 ; - } -#Total column of c7h10o6 -'tc_xoh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 167 ; - } -#Total column of all nitrogen oxides -'tc_noy' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 168 ; - } -#Total column of chlorine family -'tc_cly' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 169 ; - } -#Total column of c10h16(oh)(oo) -'tc_terpo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 170 ; - } -#Total column of bromine family -'tc_bry' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 171 ; - } -#Total column of c10h18o3 -'tc_terpooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 172 ; - } -#Total column of nitrogen atom -'tc_n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 173 ; - } -#Total column of chlorine monoxide -'tc_clo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of chlorine atom -'tc_cl_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 175 ; - } -#Total column of bromine monoxide -'tc_bro' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of hydrogen atom -'tc_h_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 177 ; - } -#Total column of methyl group -'tc_ch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 178 ; - } -#Total column of aromatic-ho from toluene and less reactive aromatics -'tc_addt' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 179 ; - } -#Total column of aromatic-ho from xylene and more reactive aromatics -'tc_addx' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 180 ; - } -#Total column of ammonium nitrate -'tc_nh4no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 181 ; - } -#Total column of aromatic-ho from csl -'tc_addc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 182 ; - } -#Total column of secondary organic aerosol type 1 -'tc_soa1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 183 ; - } -#Total column of secondary organic aerosol type 2a -'tc_soa2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 184 ; - } -#Total column of secondary organic aerosol type 2b -'tc_soa2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 185 ; - } -#Total column of condensable gas type 1 -'tc_sog1' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 186 ; - } -#Total column of condensable gas type 2a -'tc_sog2a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 187 ; - } -#Total column of condensable gas type 2b -'tc_sog2b' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 188 ; - } -#Total column of sulfur trioxide -'tc_so3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 189 ; - } -#Total column of carbonyl sulfide -'tc_ocs_c' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 190 ; - } -#Total column of bromine atom -'tc_br' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 191 ; - } -#Total column of bromine -'tc_br2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 192 ; - } -#Total column of bromine monochloride -'tc_brcl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 193 ; - } -#Total column of bromine nitrate -'tc_brono2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of dibromomethane -'tc_ch2br2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 195 ; - } -#Total column of methoxy radical -'tc_ch3o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 196 ; - } -#Total column of tribromomethane -'tc_chbr3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 197 ; - } -#Total column of asymmetric chlorine dioxide radical -'tc_cloo' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 198 ; - } -#Total column of hydrogen -'tc_h2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 199 ; - } -#Total column of hydrogen chloride -'tc_hcl' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Total column of formyl radical -'tc_hco' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 201 ; - } -#Total column of hydrogen fluoride -'tc_hf' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 202 ; - } -#Total column of oxygen atom -'tc_o' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 203 ; - } -#Total column of excited oxygen atom -'tc_o1d' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 204 ; - } -#Total column of ground state oxygen atom -'tc_o3p' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 205 ; - } -#Total column of stratospheric aerosol -'tc_strataer' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 206 ; - } -#Ozone emissions -'e_go3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'e_ch4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'e_par' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'e_c2h4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'e_ole' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'e_rooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'e_nh3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'e_so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'e_nh4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'e_ra' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'e_pb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'e_ror' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'e_nh2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'e_c2h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'e_c3h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'e_c3h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'e_aco2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Emissions of carbon dioxide (chemistry) -'e_co2_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 57 ; - } -#Emissions of nitrous oxide (chemistry) -'e_n2o_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 58 ; - } -#Emissions of water vapour (chemistry) -'e_h2o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 59 ; - } -#Emissions of oxygen -'e_o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 60 ; - } -#Emissions of singlet oxygen -'e_o2_1s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 61 ; - } -#Emissions of singlet delta oxygen -'e_o2_1d' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 62 ; - } -#Emissions of chlorine dioxide -'e_oclo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 63 ; - } -#Emissions of chlorine nitrate -'e_clono2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 64 ; - } -#Emissions of hypochlorous acid -'e_hocl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 65 ; - } -#Emissions of chlorine -'e_cl2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 66 ; - } -#Emissions of nitryl chloride -'e_clno2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 67 ; - } -#Emissions of hydrogen bromide -'e_hbr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 68 ; - } -#Emissions of dichlorine dioxide -'e_cl2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 69 ; - } -#Emissions of hypobromous acid -'e_hobr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 70 ; - } -#Emissions of trichlorofluoromethane -'e_cfc11' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 71 ; - } -#Emissions of dichlorodifluoromethane -'e_cfc12' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 72 ; - } -#Emissions of trichlorotrifluoroethane -'e_cfc113' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 73 ; - } -#Emissions of dichlorotetrafluoroethane -'e_cfc114' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 74 ; - } -#Emissions of chloropentafluoroethane -'e_cfc115' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 75 ; - } -#Emissions of tetrachloromethane -'e_ccl4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 76 ; - } -#Emissions of methyl chloroform -'e_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 77 ; - } -#Emissions of methyl chloride -'e_ch3cl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 78 ; - } -#Emissions of chlorodifluoromethane -'e_hcfc22' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 79 ; - } -#Emissions of methyl bromide -'e_ch3br' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 80 ; - } -#Emissions of dibromodifluoromethane -'e_ha1202' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 81 ; - } -#Emissions of bromochlorodifluoromethane -'e_ha1211' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 82 ; - } -#Emissions of trifluorobromomethane -'e_ha1301' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 83 ; - } -#Emissions of cbrf2cbrf2 -'e_ha2402' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 84 ; - } -#Emissions of sulfuric acid -'e_h2so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 85 ; - } -#Emissions of nitrous acid -'e_hono' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 86 ; - } -#Emissions of alkanes low oh rate -'e_hc3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 87 ; - } -#Emissions of alkanes med oh rate -'e_hc5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 88 ; - } -#Emissions of alkanes high oh rate -'e_hc8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 89 ; - } -#Emissions of terminal alkenes -'e_olt' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 90 ; - } -#Emissions of internal alkenes -'e_oli' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 91 ; - } -#Emissions of ethylperoxy radical -'e_c2h5o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 92 ; - } -#Emissions of butadiene -'e_dien' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 93 ; - } -#Emissions of ethyl hydroperoxide -'e_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 94 ; - } -#Emissions of a-pinene cyclic terpenes -'e_api' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 95 ; - } -#Emissions of acetic acid -'e_ch3cooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 96 ; - } -#Emissions of d-limonene cyclic diene -'e_lim' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 97 ; - } -#Emissions of acetaldehyde -'e_ch3cho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 98 ; - } -#Emissions of toluene and less reactive aromatics -'e_tol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 99 ; - } -#Emissions of xylene and more reactive aromatics -'e_xyl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 100 ; - } -#Emissions of glycolaldehyde -'e_glyald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 101 ; - } -#Emissions of cresol -'e_cresol' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 102 ; - } -#Emissions of acetaldehyde and higher -'e_ald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 103 ; - } -#Emissions of peracetic acid -'e_ch3coooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 104 ; - } -#Emissions of ketones -'e_ket' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 105 ; - } -#Emissions of hoch2ch2o2 -'e_eo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 106 ; - } -#Emissions of glyoxal -'e_glyoxal' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 107 ; - } -#Emissions of hoch2ch2o -'e_eo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 108 ; - } -#Emissions of unsaturated dicarbonyls -'e_dcb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 109 ; - } -#Emissions of methacrolein -'e_macr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 110 ; - } -#Emissions of unsaturated hydroxy dicarbonyl -'e_udd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 111 ; - } -#Emissions of isopropyldioxidanyl -'e_c3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 112 ; - } -#Emissions of hydroxy ketone -'e_hket' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 113 ; - } -#Emissions of isopropyl hydroperoxide -'e_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 114 ; - } -#Emissions of c3h6oho2 -'e_po2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 115 ; - } -#Emissions of c3h6ohooh -'e_pooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 116 ; - } -#Emissions of higher organic peroxides -'e_op2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 117 ; - } -#Emissions of hydroxyacetone -'e_hyac' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 118 ; - } -#Emissions of peroxyacetic acid -'e_paa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 119 ; - } -#Emissions of ch3coch2o2 -'e_ro2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 120 ; - } -#Emissions of peroxy radical from c2h6 -'e_ethp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 121 ; - } -#Emissions of peroxy radical from hc3 -'e_hc3p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 122 ; - } -#Emissions of peroxy radical from hc5 -'e_hc5p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 123 ; - } -#Emissions of lumped alkenes -'e_bigene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 124 ; - } -#Emissions of peroxy radical from hc8 -'e_hc8p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 125 ; - } -#Emissions of lumped alkanes -'e_bigalk' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 126 ; - } -#Emissions of peroxy radical from c2h4 -'e_etep' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 127 ; - } -#Emissions of c4h8o -'e_mek' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 128 ; - } -#Emissions of peroxy radical from terminal alkenes -'e_oltp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 129 ; - } -#Emissions of c4h9o3 -'e_eneo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 130 ; - } -#Emissions of peroxy radical from internal alkenes -'e_olip' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 131 ; - } -#Emissions of ch3coch(oo)ch3 -'e_meko2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 132 ; - } -#Emissions of peroxy radical from c5h8 -'e_isopo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 133 ; - } -#Emissions of ch3coch(ooh)ch3 -'e_mekooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 134 ; - } -#Emissions of peroxy radical from a-pinene cyclic terpenes -'e_apip' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 135 ; - } -#Emissions of ch2=c(ch3)co3 -'e_mco3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 136 ; - } -#Emissions of peroxy radical from d-limonene cyclic diene -'e_limp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 137 ; - } -#Emissions of methylvinylketone -'e_mvk' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 138 ; - } -#Emissions of phenoxy radical -'e_pho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 139 ; - } -#Emissions of peroxy radical from toluene and less reactive aromatics -'e_tolp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 140 ; - } -#Emissions of ch3c(o)ch(oo)ch2oh -'e_macro2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 141 ; - } -#Emissions of peroxy radical from xylene and more reactive aromatics -'e_xylp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 142 ; - } -#Emissions of h3c(o)ch(ooh)ch2oh -'e_macrooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 143 ; - } -#Emissions of peroxy radical from cresol -'e_cslp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 144 ; - } -#Emissions of unsaturated pans -'e_mpan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 145 ; - } -#Emissions of unsaturated acyl peroxy radical -'e_tco3_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 146 ; - } -#Emissions of peroxy radical from ketones -'e_ketp' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 147 ; - } -#Emissions of c5h11o2 -'e_alko2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 148 ; - } -#Emissions of no3-alkenes adduct reacting to form carbonitrates -'e_olnn' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 149 ; - } -#Emissions of c5h11ooh -'e_alkooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 150 ; - } -#Emissions of no3-alkenes adduct reacting via decomposition -'e_olnd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 151 ; - } -#Emissions of hoch2c(ch3)=chcho -'e_bigald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 152 ; - } -#Emissions of c5h6o2 -'e_hydrald' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 153 ; - } -#Emissions of trop sulfuric acid -'e_sulf' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 154 ; - } -#Emissions of oxides -'e_ox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 155 ; - } -#Emissions of ch2chc(ch3)(oo)ch2ono2 -'e_isopno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 156 ; - } -#Emissions of c3 organic nitrate -'e_onitr' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 157 ; - } -#Emissions of chlorine oxides -'e_clox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 158 ; - } -#Emissions of bromine oxides -'e_brox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 159 ; - } -#Emissions of hoch2c(ooh)(ch3)chchoh -'e_xooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 160 ; - } -#Emissions of hoch2c(ooh)(ch3)ch=ch2 -'e_isopooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 161 ; - } -#Emissions of lumped aromatics -'e_toluene' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 162 ; - } -#Emissions of dimethyl sulfoxyde -'e_dmso' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 163 ; - } -#Emissions of c7h9o5 -'e_tolo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 164 ; - } -#Emissions of c7h10o5 -'e_tolooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 165 ; - } -#Emissions of hydrogensulfide -'e_h2s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 166 ; - } -#Emissions of c7h10o6 -'e_xoh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 167 ; - } -#Emissions of all nitrogen oxides -'e_noy' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 168 ; - } -#Emissions of chlorine family -'e_cly' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 169 ; - } -#Emissions of c10h16(oh)(oo) -'e_terpo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 170 ; - } -#Emissions of bromine family -'e_bry' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 171 ; - } -#Emissions of c10h18o3 -'e_terpooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 172 ; - } -#Emissions of nitrogen atom -'e_n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 173 ; - } -#Emissions of chlorine monoxide -'e_clo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 174 ; - } -#Emissions of chlorine atom -'e_cl_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 175 ; - } -#Emissions of bromine monoxide -'e_bro' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 176 ; - } -#Emissions of hydrogen atom -'e_h_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 177 ; - } -#Emissions of methyl group -'e_ch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 178 ; - } -#Emissions of aromatic-ho from toluene and less reactive aromatics -'e_addt' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 179 ; - } -#Emissions of aromatic-ho from xylene and more reactive aromatics -'e_addx' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 180 ; - } -#Emissions of ammonium nitrate -'e_nh4no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 181 ; - } -#Emissions of aromatic-ho from csl -'e_addc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 182 ; - } -#Emissions of secondary organic aerosol type 1 -'e_soa1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 183 ; - } -#Emissions of secondary organic aerosol type 2a -'e_soa2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 184 ; - } -#Emissions of secondary organic aerosol type 2b -'e_soa2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 185 ; - } -#Emissions of condensable gas type 1 -'e_sog1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 186 ; - } -#Emissions of condensable gas type 2a -'e_sog2a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 187 ; - } -#Emissions of condensable gas type 2b -'e_sog2b' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 188 ; - } -#Emissions of sulfur trioxide -'e_so3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 189 ; - } -#Emissions of carbonyl sulfide -'e_ocs_c' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 190 ; - } -#Emissions of bromine atom -'e_br' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 191 ; - } -#Emissions of bromine -'e_br2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 192 ; - } -#Emissions of bromine monochloride -'e_brcl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 193 ; - } -#Emissions of bromine nitrate -'e_brono2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 194 ; - } -#Emissions of dibromomethane -'e_ch2br2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 195 ; - } -#Emissions of methoxy radical -'e_ch3o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 196 ; - } -#Emissions of tribromomethane -'e_chbr3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 197 ; - } -#Emissions of asymmetric chlorine dioxide radical -'e_cloo' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 198 ; - } -#Emissions of hydrogen -'e_h2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 199 ; - } -#Emissions of hydrogen chloride -'e_hcl' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 200 ; - } -#Emissions of formyl radical -'e_hco' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 201 ; - } -#Emissions of hydrogen fluoride -'e_hf' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 202 ; - } -#Emissions of oxygen atom -'e_o' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 203 ; - } -#Emissions of excited oxygen atom -'e_o1d' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 204 ; - } -#Emissions of ground state oxygen atom -'e_o3p' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 205 ; - } -#Emissions of stratospheric aerosol -'e_strataer' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 206 ; - } -#Wildfire flux of paraffins -'parfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 207 ; - } -#Wildfire flux of olefines -'olefire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 208 ; - } -#Wildfire flux of aldehydes -'ald2fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 209 ; - } -#Wildfire flux of ketones -'ketfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 210 ; - } -#Wildfire flux of f a-pinene cyclic terpenes -'apifire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 211 ; - } -#Wildfire flux of toluene less reactive aromatics -'tolfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 212 ; - } -#Wildfire flux of xylene more reactive aromatics -'xylfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 213 ; - } -#Wildfire flux of d-limonene cyclic diene -'limfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 214 ; - } -#Wildfire flux of terminal alkenes -'oltfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 215 ; - } -#Wildfire flux of alkanes low oh rate -'hc3fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 216 ; - } -#Wildfire flux of alkanes med oh rate -'hc5fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 217 ; - } -#Wildfire flux of alkanes high oh rate -'hc8fire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 218 ; - } -#Wildfire flux of hydrogen cyanide -'hcnfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 219 ; - } -#Wildfire flux of acetonitrile -'ch3cnfire' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 220 ; - } -#Ozone deposition velocity -'dv_go3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Dry deposition velocity of carbon dioxide (chemistry) -'dv_co2_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 57 ; - } -#Dry deposition velocity of nitrous oxide (chemistry) -'dv_n2o_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 58 ; - } -#Dry deposition velocity of water vapour (chemistry) -'dv_h2o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 59 ; - } -#Dry deposition velocity of oxygen -'dv_o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 60 ; - } -#Dry deposition velocity of singlet oxygen -'dv_o2_1s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 61 ; - } -#Dry deposition velocity of singlet delta oxygen -'dv_o2_1d' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 62 ; - } -#Dry deposition velocity of chlorine dioxide -'dv_oclo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 63 ; - } -#Dry deposition velocity of chlorine nitrate -'dv_clono2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 64 ; - } -#Dry deposition velocity of hypochlorous acid -'dv_hocl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 65 ; - } -#Dry deposition velocity of chlorine -'dv_cl2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 66 ; - } -#Dry deposition velocity of nitryl chloride -'dv_clno2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 67 ; - } -#Dry deposition velocity of hydrogen bromide -'dv_hbr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 68 ; - } -#Dry deposition velocity of dichlorine dioxide -'dv_cl2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 69 ; - } -#Dry deposition velocity of hypobromous acid -'dv_hobr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 70 ; - } -#Dry deposition velocity of trichlorofluoromethane -'dv_cfc11' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 71 ; - } -#Dry deposition velocity of dichlorodifluoromethane -'dv_cfc12' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 72 ; - } -#Dry deposition velocity of trichlorotrifluoroethane -'dv_cfc113' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 73 ; - } -#Dry deposition velocity of dichlorotetrafluoroethane -'dv_cfc114' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 74 ; - } -#Dry deposition velocity of chloropentafluoroethane -'dv_cfc115' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 75 ; - } -#Dry deposition velocity of tetrachloromethane -'dv_ccl4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 76 ; - } -#Dry deposition velocity of methyl chloroform -'dv_ch3ccl3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 77 ; - } -#Dry deposition velocity of methyl chloride -'dv_ch3cl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 78 ; - } -#Dry deposition velocity of chlorodifluoromethane -'dv_hcfc22' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 79 ; - } -#Dry deposition velocity of methyl bromide -'dv_ch3br' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 80 ; - } -#Dry deposition velocity of dibromodifluoromethane -'dv_ha1202' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 81 ; - } -#Dry deposition velocity of bromochlorodifluoromethane -'dv_ha1211' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 82 ; - } -#Dry deposition velocity of trifluorobromomethane -'dv_ha1301' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 83 ; - } -#Dry deposition velocity of cbrf2cbrf2 -'dv_ha2402' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 84 ; - } -#Dry deposition velocity of sulfuric acid -'dv_h2so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 85 ; - } -#Dry deposition velocity of nitrous acid -'dv_hono' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 86 ; - } -#Dry deposition velocity of alkanes low oh rate -'dv_hc3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 87 ; - } -#Dry deposition velocity of alkanes med oh rate -'dv_hc5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 88 ; - } -#Dry deposition velocity of alkanes high oh rate -'dv_hc8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 89 ; - } -#Dry deposition velocity of terminal alkenes -'dv_olt' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 90 ; - } -#Dry deposition velocity of internal alkenes -'dv_oli' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 91 ; - } -#Dry deposition velocity of ethylperoxy radical -'dv_c2h5o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 92 ; - } -#Dry deposition velocity of butadiene -'dv_dien' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 93 ; - } -#Dry deposition velocity of ethyl hydroperoxide -'dv_c2h5ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 94 ; - } -#Dry deposition velocity of a-pinene cyclic terpenes -'dv_api' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 95 ; - } -#Dry deposition velocity of acetic acid -'dv_ch3cooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 96 ; - } -#Dry deposition velocity of d-limonene cyclic diene -'dv_lim' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 97 ; - } -#Dry deposition velocity of acetaldehyde -'dv_ch3cho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 98 ; - } -#Dry deposition velocity of toluene and less reactive aromatics -'dv_tol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 99 ; - } -#Dry deposition velocity of xylene and more reactive aromatics -'dv_xyl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 100 ; - } -#Dry deposition velocity of glycolaldehyde -'dv_glyald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 101 ; - } -#Dry deposition velocity of cresol -'dv_cresol' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 102 ; - } -#Dry deposition velocity of acetaldehyde and higher -'dv_ald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 103 ; - } -#Dry deposition velocity of peracetic acid -'dv_ch3coooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 104 ; - } -#Dry deposition velocity of ketones -'dv_ket' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 105 ; - } -#Dry deposition velocity of hoch2ch2o2 -'dv_eo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 106 ; - } -#Dry deposition velocity of glyoxal -'dv_glyoxal' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 107 ; - } -#Dry deposition velocity of hoch2ch2o -'dv_eo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 108 ; - } -#Dry deposition velocity of unsaturated dicarbonyls -'dv_dcb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 109 ; - } -#Dry deposition velocity of methacrolein -'dv_macr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 110 ; - } -#Dry deposition velocity of unsaturated hydroxy dicarbonyl -'dv_udd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 111 ; - } -#Dry deposition velocity of isopropyldioxidanyl -'dv_c3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 112 ; - } -#Dry deposition velocity of hydroxy ketone -'dv_hket' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 113 ; - } -#Dry deposition velocity of isopropyl hydroperoxide -'dv_c3h7ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 114 ; - } -#Dry deposition velocity of c3h6oho2 -'dv_po2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 115 ; - } -#Dry deposition velocity of c3h6ohooh -'dv_pooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 116 ; - } -#Dry deposition velocity of higher organic peroxides -'dv_op2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 117 ; - } -#Dry deposition velocity of hydroxyacetone -'dv_hyac' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 118 ; - } -#Dry deposition velocity of peroxyacetic acid -'dv_paa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 119 ; - } -#Dry deposition velocity of ch3coch2o2 -'dv_ro2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 120 ; - } -#Dry deposition velocity of peroxy radical from c2h6 -'dv_ethp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 121 ; - } -#Dry deposition velocity of peroxy radical from hc3 -'dv_hc3p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 122 ; - } -#Dry deposition velocity of peroxy radical from hc5 -'dv_hc5p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 123 ; - } -#Dry deposition velocity of lumped alkenes -'dv_bigene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 124 ; - } -#Dry deposition velocity of peroxy radical from hc8 -'dv_hc8p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 125 ; - } -#Dry deposition velocity of lumped alkanes -'dv_bigalk' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 126 ; - } -#Dry deposition velocity of peroxy radical from c2h4 -'dv_etep' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 127 ; - } -#Dry deposition velocity of c4h8o -'dv_mek' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 128 ; - } -#Dry deposition velocity of peroxy radical from terminal alkenes -'dv_oltp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 129 ; - } -#Dry deposition velocity of c4h9o3 -'dv_eneo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 130 ; - } -#Dry deposition velocity of peroxy radical from internal alkenes -'dv_olip' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 131 ; - } -#Dry deposition velocity of ch3coch(oo)ch3 -'dv_meko2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 132 ; - } -#Dry deposition velocity of peroxy radical from c5h8 -'dv_isopo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 133 ; - } -#Dry deposition velocity of ch3coch(ooh)ch3 -'dv_mekooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 134 ; - } -#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes -'dv_apip' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 135 ; - } -#Dry deposition velocity of ch2=c(ch3)co3 -'dv_mco3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 136 ; - } -#Dry deposition velocity of peroxy radical from d-limonene cyclic diene -'dv_limp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 137 ; - } -#Dry deposition velocity of methylvinylketone -'dv_mvk' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 138 ; - } -#Dry deposition velocity of phenoxy radical -'dv_pho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 139 ; - } -#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics -'dv_tolp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 140 ; - } -#Dry deposition velocity of ch3c(o)ch(oo)ch2oh -'dv_macro2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 141 ; - } -#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics -'dv_xylp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 142 ; - } -#Dry deposition velocity of h3c(o)ch(ooh)ch2oh -'dv_macrooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 143 ; - } -#Dry deposition velocity of peroxy radical from cresol -'dv_cslp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 144 ; - } -#Dry deposition velocity of unsaturated pans -'dv_mpan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 145 ; - } -#Dry deposition velocity of unsaturated acyl peroxy radical -'dv_tco3_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 146 ; - } -#Dry deposition velocity of peroxy radical from ketones -'dv_ketp' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 147 ; - } -#Dry deposition velocity of c5h11o2 -'dv_alko2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 148 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates -'dv_olnn' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 149 ; - } -#Dry deposition velocity of c5h11ooh -'dv_alkooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 150 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting via decomposition -'dv_olnd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 151 ; - } -#Dry deposition velocity of hoch2c(ch3)=chcho -'dv_bigald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 152 ; - } -#Dry deposition velocity of c5h6o2 -'dv_hydrald' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 153 ; - } -#Dry deposition velocity of trop sulfuric acid -'dv_sulf' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 154 ; - } -#Dry deposition velocity of oxides -'dv_ox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 155 ; - } -#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 -'dv_isopno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 156 ; - } -#Dry deposition velocity of c3 organic nitrate -'dv_onitr' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 157 ; - } -#Dry deposition velocity of chlorine oxides -'dv_clox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 158 ; - } -#Dry deposition velocity of bromine oxides -'dv_brox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 159 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh -'dv_xooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 160 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 -'dv_isopooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 161 ; - } -#Dry deposition velocity of lumped aromatics -'dv_toluene' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 162 ; - } -#Dry deposition velocity of dimethyl sulfoxyde -'dv_dmso' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 163 ; - } -#Dry deposition velocity of c7h9o5 -'dv_tolo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 164 ; - } -#Dry deposition velocity of c7h10o5 -'dv_tolooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 165 ; - } -#Dry deposition velocity of hydrogensulfide -'dv_h2s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 166 ; - } -#Dry deposition velocity of c7h10o6 -'dv_xoh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 167 ; - } -#Dry deposition velocity of all nitrogen oxides -'dv_noy' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 168 ; - } -#Dry deposition velocity of chlorine family -'dv_cly' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 169 ; - } -#Dry deposition velocity of c10h16(oh)(oo) -'dv_terpo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 170 ; - } -#Dry deposition velocity of bromine family -'dv_bry' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 171 ; - } -#Dry deposition velocity of c10h18o3 -'dv_terpooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 172 ; - } -#Dry deposition velocity of nitrogen atom -'dv_n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 173 ; - } -#Dry deposition velocity of chlorine monoxide -'dv_clo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 174 ; - } -#Dry deposition velocity of chlorine atom -'dv_cl_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 175 ; - } -#Dry deposition velocity of bromine monoxide -'dv_bro' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 176 ; - } -#Dry deposition velocity of hydrogen atom -'dv_h_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 177 ; - } -#Dry deposition velocity of methyl group -'dv_ch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 178 ; - } -#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics -'dv_addt' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 179 ; - } -#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics -'dv_addx' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 180 ; - } -#Dry deposition velocity of ammonium nitrate -'dv_nh4no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 181 ; - } -#Dry deposition velocity of aromatic-ho from csl -'dv_addc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 182 ; - } -#Dry deposition velocity of secondary organic aerosol type 1 -'dv_soa1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 183 ; - } -#Dry deposition velocity of secondary organic aerosol type 2a -'dv_soa2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 184 ; - } -#Dry deposition velocity of secondary organic aerosol type 2b -'dv_soa2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 185 ; - } -#Dry deposition velocity of condensable gas type 1 -'dv_sog1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 186 ; - } -#Dry deposition velocity of condensable gas type 2a -'dv_sog2a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 187 ; - } -#Dry deposition velocity of condensable gas type 2b -'dv_sog2b' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 188 ; - } -#Dry deposition velocity of sulfur trioxide -'dv_so3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 189 ; - } -#Dry deposition velocity of carbonyl sulfide -'dv_ocs_c' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 190 ; - } -#Dry deposition velocity of bromine atom -'dv_br' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 191 ; - } -#Dry deposition velocity of bromine -'dv_br2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 192 ; - } -#Dry deposition velocity of bromine monochloride -'dv_brcl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 193 ; - } -#Dry deposition velocity of bromine nitrate -'dv_brono2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 194 ; - } -#Dry deposition velocity of dibromomethane -'dv_ch2br2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 195 ; - } -#Dry deposition velocity of methoxy radical -'dv_ch3o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 196 ; - } -#Dry deposition velocity of tribromomethane -'dv_chbr3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 197 ; - } -#Dry deposition velocity of asymmetric chlorine dioxide radical -'dv_cloo' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 198 ; - } -#Dry deposition velocity of hydrogen -'dv_h2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 199 ; - } -#Dry deposition velocity of hydrogen chloride -'dv_hcl' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 200 ; - } -#Dry deposition velocity of formyl radical -'dv_hco' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 201 ; - } -#Dry deposition velocity of hydrogen fluoride -'dv_hf' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 202 ; - } -#Dry deposition velocity of oxygen atom -'dv_o' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 203 ; - } -#Dry deposition velocity of excited oxygen atom -'dv_o1d' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 204 ; - } -#Dry deposition velocity of ground state oxygen atom -'dv_o3p' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 205 ; - } -#Dry deposition velocity of stratospheric aerosol -'dv_strataer' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 206 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'cbh' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Horizontal visibility -'hvis' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre wind gust in the last 3 hours -'10fg3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'swi1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of zero-degree wet-bulb temperature -'hwbt0' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of one-degree wet-bulb temperature -'hwbt1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 3 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'gppbfas' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'recbfas' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'aco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'aco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'aco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'fco2nee' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'fco2gpp' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'fco2rec' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total column rain water -'tcrw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'tcsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'ccf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'stf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'swv' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'ist' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Evaporation from the top of canopy -'evatc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 100 ; - } -#Evaporation from bare soil -'evabs' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 101 ; - } -#Evaporation from open water surfaces excluding oceans -'evaow' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 102 ; - } -#Evaporation from vegetation transpiration -'evavt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 103 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'tccsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#Irrigation fraction -'irrfr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'pev' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'irr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'tcclw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'strfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'clgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'asngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'rsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'sltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'10fggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'presgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'obctgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10fg6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'bvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'zgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'qgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'spgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'tcwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'sdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'chnkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'ghgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'rgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'10ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'10vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'2dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'srgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'algrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'egrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'rogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'10sigrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'icegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'tsru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'ttru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'clw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'cf' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'mvv' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'2tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'2tag1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'2tag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'2talm1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'2talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'saip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'whip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'10gp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'capep' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10spg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10spg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre wind gust of at least 25 m/s -'10fgg25' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - } -#2 metre temperature less than 273.15 K -'2tl273' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 2 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 4 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'zp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'tap' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'tccp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'10sp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'tpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'swhp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'mwpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10spg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10spg15' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10spg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10spg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10spg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10gpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10gpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10gpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10gpg75' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10gpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'hmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'wmb' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'wdw' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak wave period -'pp1d' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Peak wave period -'pp1d' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'cdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'mdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'shts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'mdts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'mpts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'sdhs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'mdwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'msqs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'wind' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'awh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'arrc' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'dwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'2dsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'2dfd' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'bfi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'wsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'ocs' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'ocpd' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'ocw' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'uv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'ut' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'vt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'uu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'vv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Sea water potential temperature -'thetao' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'so' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'wo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'vvs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'vdf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'dep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sea water sigma theta -'sigmat' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'uv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'ut' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'vt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'uu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'vv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level previous timestep -'sl_1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Ocean barotropic stream function -'stfbarot' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'sh' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'crl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#Surface downward eastward stress -'taueo' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'tauno' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'asr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'pme' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'sst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'shf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'hfc' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'umax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'smax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Layer Thickness at scalar points -'ldp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'pti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'ptae' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'bpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'apt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'ptbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'as' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'sali' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'sale' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'bsal' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'salbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'fgbt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'fgbs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'bpa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'fgbp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'pta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'10fgrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'pwcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Large-scale precipitation -'lsprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'sfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'ghrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'rrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'ewssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'nsssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'erea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'srcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'vegrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'rorea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'vurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'vvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'wurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'csfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'lsfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'ccrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'falrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'10wsrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'moflrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'~' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'hsdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'vima' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'vit' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'viwv' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'vilw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'viiw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'vioz' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'vike' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'vithe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'vipie' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'vipile' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'vitoe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'viec' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'vimae' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'viman' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'vikee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'viken' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'vithen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'vige' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'vign' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'vitoee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'vitoen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'vioze' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'viozn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'vimad' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'viked' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'vithed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'viwvd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'vigd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'vitoed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'viozd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'srta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'trta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'srtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'trtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'umfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'dmfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'udra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'ddra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'tpfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'tdcha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'ttpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'qtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'utpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'vtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'tsw' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'strfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'vpota' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'pta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'cla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'asna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'rsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'slta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'esa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'smlta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'sdura' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'10fga' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'monta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mean2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'pva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'obcta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'bva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'za' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'qa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'spa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'tcwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'voa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'sda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'chnka' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'snra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'tnra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'gha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'ra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'blha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'10ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'10va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'2da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'sra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'ala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'ea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'hcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'roa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'10sia' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'sia' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'tpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'skta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'fala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'cca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'iaa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'esrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Mean large-scale precipitation fraction -'mlspfr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Mean large-scale precipitation rate -'mlsprt' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate -'cprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Mean total snowfall rate -'mtsfr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Mean surface sensible heat flux -'msshfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Mean surface latent heat flux -'mslhfl' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Mean surface net radiation flux -'msnrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Mean short-wave heating rate -'mswhr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Mean long-wave heating rate -'mlwhr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Mean surface downward solar radiation flux -'msdsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Mean surface downward thermal radiation flux -'msdtrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Mean surface net solar radiation flux -'msnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Mean surface net thermal radiation flux -'msntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Mean top net solar radiation flux -'mtnsrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Mean top net thermal radiation flux -'mtntrf' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress rate of accumulation -'ewssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress rate of accumulation -'nsssra' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'erate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Mean sunshine duration rate -'msdr' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Mean runoff rate -'mrort' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation rate of accumulation -'soira' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Mean total precipitation rate -'tprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'lspara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate anomaly -'mcpra' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'sshfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'slhfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'ssrdara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'strdara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'ssrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'strara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'tsrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'ttrara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'ewssara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'nsssara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomalous rate of accumulation -'evara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomalous rate of accumulation -'roara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomalous rate of accumulation -'soiara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Liquid water potential temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'tsw' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'str' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Field capacity -'cap' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'wiltsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'sr' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'tsm' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'2ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'clc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'qc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'twater' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'bas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'top_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'dt_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'pp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'w_i' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'t_snow' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'t_ice' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'cape_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdep' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerlts' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'aerscc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#CO2 column-mean molar fraction -'tcco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#CH4 column-mean molar fraction -'tcch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire flux of Carbon Dioxide -'co2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 80 ; - } -#Wildfire flux of Carbon Monoxide -'cofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 81 ; - } -#Wildfire flux of Methane -'ch4fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'nmhcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 83 ; - } -#Wildfire flux of Hydrogen -'h2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'noxfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 85 ; - } -#Wildfire flux of Nitrous Oxide -'n2ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'pm2p5fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 87 ; - } -#Wildfire flux of Total Particulate Matter -'tpmfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'tcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 89 ; - } -#Wildfire flux of Organic Carbon -'ocfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 90 ; - } -#Wildfire flux of Black Carbon -'bcfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 91 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'nox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'ra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'aersccdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'ch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'oafirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'radiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcradiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'tpoc' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'zust' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'meantcc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'dctb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'tplb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'tplt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'sts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'msls' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'2ts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'tps' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'ust' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'vst' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'so2fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'ch3ohfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'c2h5ohfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'c3h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'c2h4fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'c3h6fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'c5h8fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'terpenesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'toluenefire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'hialkenesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'hialkanesfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'ch2ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'c2h4ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'c3h6ofire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'nh3fire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'c2h6sfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 117 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def deleted file mode 100644 index 524fdb65..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/shortName.legacy.def +++ /dev/null @@ -1,144 +0,0 @@ -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'ocu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'ocv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'sithick' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'zos' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'100u' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'100v' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'100si' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'deg0l' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'t20d' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'sav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'tclw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'tciw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/units.def deleted file mode 100644 index fa2e1ac0..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/units.def +++ /dev/null @@ -1,22056 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 100 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Equivalent potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Montgomery potential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'dimensionless' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'m of water equivalent' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Large-scale precipitation -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'~' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'radians' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#TOA incident solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Convective snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'%' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'radians' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'N m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'N m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Injection height (from IS4FIRES) -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 60 ; - } -#Particulate matter d < 1 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'deg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Wildfire Flux of Ethane (C2H6) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 118 ; - } -#Mean altitude of maximum injection -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#Wildfire day-time radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 167 ; - } -#Wildfire night-time radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 169 ; - } -#Wildfire day-time inverse variance of radiative power -'W**-2 m**4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 177 ; - } -#Wildfire night-time inverse variance of radiative power -'W**-2 m**4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 179 ; - } -#UV visible albedo for direct radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Wildfire Flux of Toluene (C7H8) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 231 ; - } -#Wildfire Flux of Benzene (C6H6) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 232 ; - } -#Wildfire Flux of Xylene (C8H10) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 233 ; - } -#Wildfire Flux of Butenes (C4H8) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 234 ; - } -#Wildfire Flux of Pentenes (C5H10) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 235 ; - } -#Wildfire Flux of Hexene (C6H12) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 236 ; - } -#Wildfire Flux of Octene (C8H16) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 237 ; - } -#Wildfire Flux of Butanes (C4H10) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 238 ; - } -#Wildfire Flux of Pentanes (C5H12) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 239 ; - } -#Wildfire Flux of Hexanes (C6H14) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 240 ; - } -#Wildfire Flux of Heptane (C7H16) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 241 ; - } -#Altitude of plume bottom -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'m**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'m**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'kg kg**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'kg kg**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Aerosol type 13 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'m' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'m' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Nitrate fine mode aerosol mass mixing ratio -'kg kg**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Nitrate coarse mode aerosol mass mixing ratio -'kg kg**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -#Random pattern 1 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 101 ; - } -#Random pattern 2 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 102 ; - } -#Random pattern 3 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 103 ; - } -#Random pattern 4 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 104 ; - } -#Random pattern 5 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 105 ; - } -#Random pattern 6 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 106 ; - } -#Random pattern 7 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 107 ; - } -#Random pattern 8 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 108 ; - } -#Random pattern 9 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 109 ; - } -#Random pattern 10 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 110 ; - } -#Random pattern 11 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 111 ; - } -#Random pattern 12 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 112 ; - } -#Random pattern 13 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 113 ; - } -#Random pattern 14 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 114 ; - } -#Random pattern 15 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 115 ; - } -#Random pattern 16 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 116 ; - } -#Random pattern 17 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 117 ; - } -#Random pattern 18 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 118 ; - } -#Random pattern 19 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 119 ; - } -#Random pattern 20 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 120 ; - } -#Random pattern 21 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 121 ; - } -#Random pattern 22 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 122 ; - } -#Random pattern 23 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 123 ; - } -#Random pattern 24 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 124 ; - } -#Random pattern 25 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 125 ; - } -#Random pattern 26 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 126 ; - } -#Random pattern 27 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 127 ; - } -#Random pattern 28 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 128 ; - } -#Random pattern 29 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 129 ; - } -#Random pattern 30 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 130 ; - } -#Random pattern 31 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 131 ; - } -#Random pattern 32 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 132 ; - } -#Random pattern 33 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 133 ; - } -#Random pattern 34 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 134 ; - } -#Random pattern 35 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 135 ; - } -#Random pattern 36 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 136 ; - } -#Random pattern 37 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 137 ; - } -#Random pattern 38 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 138 ; - } -#Random pattern 39 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 139 ; - } -#Random pattern 40 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 140 ; - } -#Random pattern 41 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 141 ; - } -#Random pattern 42 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 142 ; - } -#Random pattern 43 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 143 ; - } -#Random pattern 44 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 144 ; - } -#Random pattern 45 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 145 ; - } -#Random pattern 46 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 146 ; - } -#Random pattern 47 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 147 ; - } -#Random pattern 48 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 148 ; - } -#Random pattern 49 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 149 ; - } -#Random pattern 50 for SPP scheme -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 150 ; - } -#Cosine of solar zenith angle -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -#UV biologically effective dose -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -#UV biologically effective dose clear-sky -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -#Total surface UV spectral flux (280-285 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -#Total surface UV spectral flux (285-290 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -#Total surface UV spectral flux (290-295 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -#Total surface UV spectral flux (295-300 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -#Total surface UV spectral flux (300-305 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -#Total surface UV spectral flux (305-310 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -#Total surface UV spectral flux (310-315 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -#Total surface UV spectral flux (315-320 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -#Total surface UV spectral flux (320-325 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -#Total surface UV spectral flux (325-330 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -#Total surface UV spectral flux (330-335 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -#Total surface UV spectral flux (335-340 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -#Total surface UV spectral flux (340-345 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -#Total surface UV spectral flux (345-350 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -#Total surface UV spectral flux (350-355 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -#Total surface UV spectral flux (355-360 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -#Total surface UV spectral flux (360-365 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -#Total surface UV spectral flux (365-370 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -#Total surface UV spectral flux (370-375 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -#Total surface UV spectral flux (375-380 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -#Total surface UV spectral flux (380-385 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -#Total surface UV spectral flux (385-390 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -#Total surface UV spectral flux (390-395 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -#Total surface UV spectral flux (395-400 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -#Clear-sky surface UV spectral flux (280-285 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -#Clear-sky surface UV spectral flux (285-290 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -#Clear-sky surface UV spectral flux (290-295 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -#Clear-sky surface UV spectral flux (295-300 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -#Clear-sky surface UV spectral flux (300-305 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -#Clear-sky surface UV spectral flux (305-310 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -#Clear-sky surface UV spectral flux (310-315 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -#Clear-sky surface UV spectral flux (315-320 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -#Clear-sky surface UV spectral flux (320-325 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -#Clear-sky surface UV spectral flux (325-330 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -#Clear-sky surface UV spectral flux (330-335 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -#Clear-sky surface UV spectral flux (335-340 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -#Clear-sky surface UV spectral flux (340-345 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -#Clear-sky surface UV spectral flux (345-350 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -#Clear-sky surface UV spectral flux (350-355 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -#Clear-sky surface UV spectral flux (355-360 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -#Clear-sky surface UV spectral flux (360-365 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -#Clear-sky surface UV spectral flux (365-370 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -#Clear-sky surface UV spectral flux (370-375 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -#Clear-sky surface UV spectral flux (375-380 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -#Clear-sky surface UV spectral flux (380-385 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -#Clear-sky surface UV spectral flux (385-390 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -#Clear-sky surface UV spectral flux (390-395 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -#Clear-sky surface UV spectral flux (395-400 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -#Profile of optical thickness at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -#Source/gain of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -#Source/gain of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -#Source/gain of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -#Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -#Dry deposition of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -#Dry deposition of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -#Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -#Sedimentation of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -#Sedimentation of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -#Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -#Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -#Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -#Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -#Negative fixer of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -#Negative fixer of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -#Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -#Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -#Vertically integrated mass of sea salt aerosol (5 - 20 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -#Sea salt aerosol (0.03 - 0.5 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -#Sea salt aerosol (0.5 - 5 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -#Sea salt aerosol (5 - 20 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -#Source/gain of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -#Source/gain of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -#Source/gain of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -#Dry deposition of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -#Dry deposition of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -#Dry deposition of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -#Sedimentation of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -#Sedimentation of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -#Sedimentation of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -#Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -#Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -#Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -#Negative fixer of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -#Negative fixer of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -#Negative fixer of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -#Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -#Vertically integrated mass of dust aerosol (0.55 - 9 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -#Vertically integrated mass of dust aerosol (9 - 20 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -#Dust aerosol (0.03 - 0.55 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -#Dust aerosol (0.55 - 9 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -#Dust aerosol (9 - 20 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -#Source/gain of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -#Source/gain of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -#Dry deposition of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -#Dry deposition of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -#Sedimentation of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -#Sedimentation of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -#Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -#Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -#Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -#Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -#Negative fixer of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -#Negative fixer of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -#Vertically integrated mass of hydrophobic organic matter aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -#Vertically integrated mass of hydrophilic organic matter aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -#Hydrophobic organic matter aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -#Hydrophilic organic matter aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -#Source/gain of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -#Source/gain of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -#Dry deposition of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -#Dry deposition of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -#Sedimentation of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -#Sedimentation of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -#Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -#Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -#Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -#Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -#Negative fixer of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -#Negative fixer of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -#Vertically integrated mass of hydrophobic black carbon aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -#Vertically integrated mass of hydrophilic black carbon aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -#Hydrophobic black carbon aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -#Hydrophilic black carbon aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -#Source/gain of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -#Dry deposition of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -#Sedimentation of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -#Wet deposition of sulphate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -#Wet deposition of sulphate aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -#Negative fixer of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -#Vertically integrated mass of sulphate aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -#Sulphate aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'s' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Asymmetry factor at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Asymmetry factor at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Asymmetry factor at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Asymmetry factor at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Asymmetry factor at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Asymmetry factor at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Asymmetry factor at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Asymmetry factor at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Asymmetry factor at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Asymmetry factor at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Asymmetry factor at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Asymmetry factor at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Asymmetry factor at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Asymmetry factor at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Asymmetry factor at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Asymmetry factor at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Asymmetry factor at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Asymmetry factor at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Asymmetry factor at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Source/gain of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Source/gain of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Dry deposition of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Dry deposition of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - } -#Sedimentation of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Sedimentation of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Wet deposition of fine-mode nitrate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Wet deposition of fine-mode nitrate aerosol by convective precipitation -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 65534 ; - } -#Wet deposition of coarse-mode nitrate aerosol by convective precipitation -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Negative fixer of fine-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - aerosolType = 65534 ; - is_aerosol = 1 ; - } -#Negative fixer of coarse-mode nitrate aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - is_aerosol = 1 ; - aerosolType = 65533 ; - } -#Vertically integrated mass of fine-mode nitrate aerosol -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - aerosolType = 65534 ; - } -#Vertically integrated mass of coarse-mode nitrate aerosol -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 65533 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Fine-mode nitrate aerosol optical depth at 550 nm -'dimensionless' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - scaledValueOfFirstWavelength = 55 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65534 ; - } -#Coarse-mode nitrate aerosol optical depth at 550 nm -'dimensionless' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65533 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - scaledValueOfFirstWavelength = 55 ; - } -#Source/gain of ammonium aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Negative fixer of ammonium aerosol -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane (chemistry) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Carbon dioxide (chemistry) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 57 ; - } -#Nitrous oxide (chemistry) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 58 ; - } -#Water vapour (chemistry) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 59 ; - } -#Oxygen -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 60 ; - } -#Singlet oxygen -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 61 ; - } -#Singlet delta oxygen -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 62 ; - } -#Chlorine dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 63 ; - } -#Chlorine nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 64 ; - } -#Hypochlorous acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 65 ; - } -#Chlorine -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 66 ; - } -#Nitryl chloride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 67 ; - } -#Hydrogen bromide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 68 ; - } -#Dichlorine dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 69 ; - } -#Hypobromous acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 70 ; - } -#Trichlorofluoromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 71 ; - } -#Dichlorodifluoromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 72 ; - } -#Trichlorotrifluoroethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 73 ; - } -#Dichlorotetrafluoroethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 74 ; - } -#Chloropentafluoroethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 75 ; - } -#Tetrachloromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 76 ; - } -#Methyl chloroform -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 77 ; - } -#Methyl chloride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 78 ; - } -#Chlorodifluoromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 79 ; - } -#Methyl bromide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 80 ; - } -#Dibromodifluoromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 81 ; - } -#Bromochlorodifluoromethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 82 ; - } -#Trifluorobromomethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 83 ; - } -#Cbrf2cbrf2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 84 ; - } -#Sulfuric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 85 ; - } -#Nitrous acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 86 ; - } -#Alkanes low oh rate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 87 ; - } -#Alkanes med oh rate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 88 ; - } -#Alkanes high oh rate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 89 ; - } -#Terminal alkenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 90 ; - } -#Internal alkenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 91 ; - } -#Ethylperoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 92 ; - } -#Butadiene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 93 ; - } -#Ethyl hydroperoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 94 ; - } -#A-pinene cyclic terpenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 95 ; - } -#Acetic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 96 ; - } -#D-limonene cyclic diene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 97 ; - } -#Acetaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 98 ; - } -#Toluene and less reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 99 ; - } -#Xylene and more reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 100 ; - } -#Glycolaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 101 ; - } -#Cresol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 102 ; - } -#Acetaldehyde and higher -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 103 ; - } -#Peracetic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 104 ; - } -#Ketones -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 105 ; - } -#Hoch2ch2o2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 106 ; - } -#Glyoxal -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 107 ; - } -#Hoch2ch2o -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 108 ; - } -#Unsaturated dicarbonyls -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 109 ; - } -#Methacrolein -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 110 ; - } -#Unsaturated hydroxy dicarbonyl -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 111 ; - } -#Isopropyldioxidanyl -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 112 ; - } -#Hydroxy ketone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 113 ; - } -#Isopropyl hydroperoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 114 ; - } -#C3h6oho2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 115 ; - } -#C3h6ohooh -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 116 ; - } -#Higher organic peroxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 117 ; - } -#Hydroxyacetone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 118 ; - } -#Peroxyacetic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 119 ; - } -#Ch3coch2o2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 120 ; - } -#Peroxy radical from c2h6 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 121 ; - } -#Peroxy radical from hc3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 122 ; - } -#Peroxy radical from hc5 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 123 ; - } -#Lumped alkenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 124 ; - } -#Peroxy radical from hc8 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 125 ; - } -#Lumped alkanes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 126 ; - } -#Peroxy radical from c2h4 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 127 ; - } -#C4h8o -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 128 ; - } -#Peroxy radical from terminal alkenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 129 ; - } -#C4h9o3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 130 ; - } -#Peroxy radical from internal alkenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 131 ; - } -#Ch3coch(oo)ch3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 132 ; - } -#Peroxy radical from c5h8 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 133 ; - } -#Ch3coch(ooh)ch3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 134 ; - } -#Peroxy radical from a-pinene cyclic terpenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 135 ; - } -#Ch2=c(ch3)co3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 136 ; - } -#Peroxy radical from d-limonene cyclic diene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 137 ; - } -#Methylvinylketone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 138 ; - } -#Phenoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 139 ; - } -#Peroxy radical from toluene and less reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 140 ; - } -#Ch3c(o)ch(oo)ch2oh -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 141 ; - } -#Peroxy radical from xylene and more reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 142 ; - } -#H3c(o)ch(ooh)ch2oh -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 143 ; - } -#Peroxy radical from cresol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 144 ; - } -#Unsaturated pans -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 145 ; - } -#Unsaturated acyl peroxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 146 ; - } -#Peroxy radical from ketones -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 147 ; - } -#C5h11o2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 148 ; - } -#No3-alkenes adduct reacting to form carbonitrates -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 149 ; - } -#C5h11ooh -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 150 ; - } -#No3-alkenes adduct reacting via decomposition -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 151 ; - } -#Hoch2c(ch3)=chcho -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 152 ; - } -#C5h6o2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 153 ; - } -#Trop sulfuric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 154 ; - } -#Oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 155 ; - } -#Ch2chc(ch3)(oo)ch2ono2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 156 ; - } -#C3 organic nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 157 ; - } -#Chlorine oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 158 ; - } -#Bromine oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 159 ; - } -#Hoch2c(ooh)(ch3)chchoh -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 160 ; - } -#Hoch2c(ooh)(ch3)ch=ch2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 161 ; - } -#Lumped aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 162 ; - } -#Dimethyl sulfoxyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 163 ; - } -#C7h9o5 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 164 ; - } -#C7h10o5 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 165 ; - } -#Hydrogensulfide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 166 ; - } -#C7h10o6 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 167 ; - } -#All nitrogen oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 168 ; - } -#Chlorine family -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 169 ; - } -#C10h16(oh)(oo) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 170 ; - } -#Bromine family -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 171 ; - } -#C10h18o3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 172 ; - } -#Nitrogen atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 173 ; - } -#Chlorine monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 174 ; - } -#Chlorine atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 175 ; - } -#Bromine monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 176 ; - } -#Hydrogen atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 177 ; - } -#Methyl group -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 178 ; - } -#Aromatic-ho from toluene and less reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 179 ; - } -#Aromatic-ho from xylene and more reactive aromatics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 180 ; - } -#Ammonium nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 181 ; - } -#Aromatic-ho from csl -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 182 ; - } -#Secondary organic aerosol type 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 183 ; - } -#Secondary organic aerosol type 2a -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 184 ; - } -#Secondary organic aerosol type 2b -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 185 ; - } -#Condensable gas type 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 186 ; - } -#Condensable gas type 2a -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 187 ; - } -#Condensable gas type 2b -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 188 ; - } -#Sulfur trioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 189 ; - } -#Carbonyl sulfide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 190 ; - } -#Bromine atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 191 ; - } -#Bromine -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 192 ; - } -#Bromine monochloride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 193 ; - } -#Bromine nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 194 ; - } -#Dibromomethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 195 ; - } -#Methoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 196 ; - } -#Tribromomethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 197 ; - } -#Asymmetric chlorine dioxide radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 198 ; - } -#Hydrogen -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 199 ; - } -#Hydrogen chloride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 200 ; - } -#Formyl radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 201 ; - } -#Hydrogen fluoride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 202 ; - } -#Oxygen atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 203 ; - } -#Excited oxygen atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 204 ; - } -#Ground state oxygen atom -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 205 ; - } -#Stratospheric aerosol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 206 ; - } -#Total column hydrogen peroxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Total column of carbon dioxide (chemistry) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 57 ; - } -#Total column of nitrous oxide (chemistry) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 58 ; - } -#Total column of water vapour (chemistry) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 59 ; - } -#Total column of oxygen -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 60 ; - } -#Total column of singlet oxygen -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 61 ; - } -#Total column of singlet delta oxygen -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 62 ; - } -#Total column of chlorine dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 63 ; - } -#Total column of chlorine nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 64 ; - } -#Total column of hypochlorous acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 65 ; - } -#Total column of chlorine -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 66 ; - } -#Total column of nitryl chloride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 67 ; - } -#Total column of hydrogen bromide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 68 ; - } -#Total column of dichlorine dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 69 ; - } -#Total column of hypobromous acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 70 ; - } -#Total column of trichlorofluoromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 71 ; - } -#Total column of dichlorodifluoromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 72 ; - } -#Total column of trichlorotrifluoroethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 73 ; - } -#Total column of dichlorotetrafluoroethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 74 ; - } -#Total column of chloropentafluoroethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 75 ; - } -#Total column of tetrachloromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 76 ; - } -#Total column of methyl chloroform -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 77 ; - } -#Total column of methyl chloride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 78 ; - } -#Total column of chlorodifluoromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 79 ; - } -#Total column of methyl bromide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 80 ; - } -#Total column of dibromodifluoromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 81 ; - } -#Total column of bromochlorodifluoromethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 82 ; - } -#Total column of trifluorobromomethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 83 ; - } -#Total column of cbrf2cbrf2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 84 ; - } -#Total column of sulfuric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 85 ; - } -#Total column of nitrous acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 86 ; - } -#Total column of alkanes low oh rate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 87 ; - } -#Total column of alkanes med oh rate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 88 ; - } -#Total column of alkanes high oh rate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 89 ; - } -#Total column of terminal alkenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 90 ; - } -#Total column of internal alkenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 91 ; - } -#Total column of ethylperoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 92 ; - } -#Total column of butadiene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 93 ; - } -#Total column of ethyl hydroperoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 94 ; - } -#Total column of a-pinene cyclic terpenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 95 ; - } -#Total column of acetic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 96 ; - } -#Total column of d-limonene cyclic diene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 97 ; - } -#Total column of acetaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 98 ; - } -#Total column of toluene and less reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 99 ; - } -#Total column of xylene and more reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 100 ; - } -#Total column of glycolaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 101 ; - } -#Total column of cresol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 102 ; - } -#Total column of acetaldehyde and higher -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 103 ; - } -#Total column of peracetic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 104 ; - } -#Total column of ketones -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 105 ; - } -#Total column of hoch2ch2o2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 106 ; - } -#Total column of glyoxal -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 107 ; - } -#Total column of hoch2ch2o -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 108 ; - } -#Total column of unsaturated dicarbonyls -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 109 ; - } -#Total column of methacrolein -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 110 ; - } -#Total column of unsaturated hydroxy dicarbonyl -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 111 ; - } -#Total column of isopropyldioxidanyl -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 112 ; - } -#Total column of hydroxy ketone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 113 ; - } -#Total column of isopropyl hydroperoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 114 ; - } -#Total column of c3h6oho2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 115 ; - } -#Total column of c3h6ohooh -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 116 ; - } -#Total column of higher organic peroxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 117 ; - } -#Total column of hydroxyacetone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 118 ; - } -#Total column of peroxyacetic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 119 ; - } -#Total column of ch3coch2o2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 120 ; - } -#Total column of peroxy radical from c2h6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 121 ; - } -#Total column of peroxy radical from hc3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 122 ; - } -#Total column of peroxy radical from hc5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 123 ; - } -#Total column of lumped alkenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 124 ; - } -#Total column of peroxy radical from hc8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 125 ; - } -#Total column of lumped alkanes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 126 ; - } -#Total column of peroxy radical from c2h4 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 127 ; - } -#Total column of c4h8o -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 128 ; - } -#Total column of peroxy radical from terminal alkenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 129 ; - } -#Total column of c4h9o3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 130 ; - } -#Total column of peroxy radical from internal alkenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 131 ; - } -#Total column of ch3coch(oo)ch3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 132 ; - } -#Total column of peroxy radical from c5h8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 133 ; - } -#Total column of ch3coch(ooh)ch3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 134 ; - } -#Total column of peroxy radical from a-pinene cyclic terpenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 135 ; - } -#Total column of ch2=c(ch3)co3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 136 ; - } -#Total column of peroxy radical from d-limonene cyclic diene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 137 ; - } -#Total column of methylvinylketone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 138 ; - } -#Total column of phenoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 139 ; - } -#Total column of peroxy radical from toluene and less reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 140 ; - } -#Total column of ch3c(o)ch(oo)ch2oh -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 141 ; - } -#Total column of peroxy radical from xylene and more reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 142 ; - } -#Total column of h3c(o)ch(ooh)ch2oh -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 143 ; - } -#Total column of peroxy radical from cresol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 144 ; - } -#Total column of unsaturated pans -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 145 ; - } -#Total column of unsaturated acyl peroxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 146 ; - } -#Total column of peroxy radical from ketones -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 147 ; - } -#Total column of c5h11o2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 148 ; - } -#Total column of no3-alkenes adduct reacting to form carbonitrates -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 149 ; - } -#Total column of c5h11ooh -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 150 ; - } -#Total column of no3-alkenes adduct reacting via decomposition -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 151 ; - } -#Total column of hoch2c(ch3)=chcho -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 152 ; - } -#Total column of c5h6o2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 153 ; - } -#Total column of trop sulfuric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 154 ; - } -#Total column of oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 155 ; - } -#Total column of ch2chc(ch3)(oo)ch2ono2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 156 ; - } -#Total column of c3 organic nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 157 ; - } -#Total column of chlorine oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 158 ; - } -#Total column of bromine oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 159 ; - } -#Total column of hoch2c(ooh)(ch3)chchoh -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 160 ; - } -#Total column of hoch2c(ooh)(ch3)ch=ch2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 161 ; - } -#Total column of lumped aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 162 ; - } -#Total column of dimethyl sulfoxyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 163 ; - } -#Total column of c7h9o5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 164 ; - } -#Total column of c7h10o5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 165 ; - } -#Total column of hydrogensulfide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 166 ; - } -#Total column of c7h10o6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 167 ; - } -#Total column of all nitrogen oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 168 ; - } -#Total column of chlorine family -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 169 ; - } -#Total column of c10h16(oh)(oo) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 170 ; - } -#Total column of bromine family -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 171 ; - } -#Total column of c10h18o3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 172 ; - } -#Total column of nitrogen atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 173 ; - } -#Total column of chlorine monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 174 ; - } -#Total column of chlorine atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 175 ; - } -#Total column of bromine monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 176 ; - } -#Total column of hydrogen atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 177 ; - } -#Total column of methyl group -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 178 ; - } -#Total column of aromatic-ho from toluene and less reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 179 ; - } -#Total column of aromatic-ho from xylene and more reactive aromatics -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 180 ; - } -#Total column of ammonium nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 181 ; - } -#Total column of aromatic-ho from csl -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 182 ; - } -#Total column of secondary organic aerosol type 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 183 ; - } -#Total column of secondary organic aerosol type 2a -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 184 ; - } -#Total column of secondary organic aerosol type 2b -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 185 ; - } -#Total column of condensable gas type 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 186 ; - } -#Total column of condensable gas type 2a -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 187 ; - } -#Total column of condensable gas type 2b -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 188 ; - } -#Total column of sulfur trioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 189 ; - } -#Total column of carbonyl sulfide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 190 ; - } -#Total column of bromine atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 191 ; - } -#Total column of bromine -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 192 ; - } -#Total column of bromine monochloride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 193 ; - } -#Total column of bromine nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 194 ; - } -#Total column of dibromomethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 195 ; - } -#Total column of methoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 196 ; - } -#Total column of tribromomethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 197 ; - } -#Total column of asymmetric chlorine dioxide radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 198 ; - } -#Total column of hydrogen -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 199 ; - } -#Total column of hydrogen chloride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 200 ; - } -#Total column of formyl radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 201 ; - } -#Total column of hydrogen fluoride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 202 ; - } -#Total column of oxygen atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 203 ; - } -#Total column of excited oxygen atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 204 ; - } -#Total column of ground state oxygen atom -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 205 ; - } -#Total column of stratospheric aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 206 ; - } -#Ozone emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Emissions of carbon dioxide (chemistry) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 57 ; - } -#Emissions of nitrous oxide (chemistry) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 58 ; - } -#Emissions of water vapour (chemistry) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 59 ; - } -#Emissions of oxygen -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 60 ; - } -#Emissions of singlet oxygen -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 61 ; - } -#Emissions of singlet delta oxygen -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 62 ; - } -#Emissions of chlorine dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 63 ; - } -#Emissions of chlorine nitrate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 64 ; - } -#Emissions of hypochlorous acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 65 ; - } -#Emissions of chlorine -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 66 ; - } -#Emissions of nitryl chloride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 67 ; - } -#Emissions of hydrogen bromide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 68 ; - } -#Emissions of dichlorine dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 69 ; - } -#Emissions of hypobromous acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 70 ; - } -#Emissions of trichlorofluoromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 71 ; - } -#Emissions of dichlorodifluoromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 72 ; - } -#Emissions of trichlorotrifluoroethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 73 ; - } -#Emissions of dichlorotetrafluoroethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 74 ; - } -#Emissions of chloropentafluoroethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 75 ; - } -#Emissions of tetrachloromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 76 ; - } -#Emissions of methyl chloroform -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 77 ; - } -#Emissions of methyl chloride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 78 ; - } -#Emissions of chlorodifluoromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 79 ; - } -#Emissions of methyl bromide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 80 ; - } -#Emissions of dibromodifluoromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 81 ; - } -#Emissions of bromochlorodifluoromethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 82 ; - } -#Emissions of trifluorobromomethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 83 ; - } -#Emissions of cbrf2cbrf2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 84 ; - } -#Emissions of sulfuric acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 85 ; - } -#Emissions of nitrous acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 86 ; - } -#Emissions of alkanes low oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 87 ; - } -#Emissions of alkanes med oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 88 ; - } -#Emissions of alkanes high oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 89 ; - } -#Emissions of terminal alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 90 ; - } -#Emissions of internal alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 91 ; - } -#Emissions of ethylperoxy radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 92 ; - } -#Emissions of butadiene -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 93 ; - } -#Emissions of ethyl hydroperoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 94 ; - } -#Emissions of a-pinene cyclic terpenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 95 ; - } -#Emissions of acetic acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 96 ; - } -#Emissions of d-limonene cyclic diene -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 97 ; - } -#Emissions of acetaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 98 ; - } -#Emissions of toluene and less reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 99 ; - } -#Emissions of xylene and more reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 100 ; - } -#Emissions of glycolaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 101 ; - } -#Emissions of cresol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 102 ; - } -#Emissions of acetaldehyde and higher -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 103 ; - } -#Emissions of peracetic acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 104 ; - } -#Emissions of ketones -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 105 ; - } -#Emissions of hoch2ch2o2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 106 ; - } -#Emissions of glyoxal -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 107 ; - } -#Emissions of hoch2ch2o -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 108 ; - } -#Emissions of unsaturated dicarbonyls -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 109 ; - } -#Emissions of methacrolein -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 110 ; - } -#Emissions of unsaturated hydroxy dicarbonyl -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 111 ; - } -#Emissions of isopropyldioxidanyl -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 112 ; - } -#Emissions of hydroxy ketone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 113 ; - } -#Emissions of isopropyl hydroperoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 114 ; - } -#Emissions of c3h6oho2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 115 ; - } -#Emissions of c3h6ohooh -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 116 ; - } -#Emissions of higher organic peroxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 117 ; - } -#Emissions of hydroxyacetone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 118 ; - } -#Emissions of peroxyacetic acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 119 ; - } -#Emissions of ch3coch2o2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 120 ; - } -#Emissions of peroxy radical from c2h6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 121 ; - } -#Emissions of peroxy radical from hc3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 122 ; - } -#Emissions of peroxy radical from hc5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 123 ; - } -#Emissions of lumped alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 124 ; - } -#Emissions of peroxy radical from hc8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 125 ; - } -#Emissions of lumped alkanes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 126 ; - } -#Emissions of peroxy radical from c2h4 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 127 ; - } -#Emissions of c4h8o -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 128 ; - } -#Emissions of peroxy radical from terminal alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 129 ; - } -#Emissions of c4h9o3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 130 ; - } -#Emissions of peroxy radical from internal alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 131 ; - } -#Emissions of ch3coch(oo)ch3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 132 ; - } -#Emissions of peroxy radical from c5h8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 133 ; - } -#Emissions of ch3coch(ooh)ch3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 134 ; - } -#Emissions of peroxy radical from a-pinene cyclic terpenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 135 ; - } -#Emissions of ch2=c(ch3)co3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 136 ; - } -#Emissions of peroxy radical from d-limonene cyclic diene -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 137 ; - } -#Emissions of methylvinylketone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 138 ; - } -#Emissions of phenoxy radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 139 ; - } -#Emissions of peroxy radical from toluene and less reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 140 ; - } -#Emissions of ch3c(o)ch(oo)ch2oh -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 141 ; - } -#Emissions of peroxy radical from xylene and more reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 142 ; - } -#Emissions of h3c(o)ch(ooh)ch2oh -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 143 ; - } -#Emissions of peroxy radical from cresol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 144 ; - } -#Emissions of unsaturated pans -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 145 ; - } -#Emissions of unsaturated acyl peroxy radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 146 ; - } -#Emissions of peroxy radical from ketones -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 147 ; - } -#Emissions of c5h11o2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 148 ; - } -#Emissions of no3-alkenes adduct reacting to form carbonitrates -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 149 ; - } -#Emissions of c5h11ooh -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 150 ; - } -#Emissions of no3-alkenes adduct reacting via decomposition -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 151 ; - } -#Emissions of hoch2c(ch3)=chcho -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 152 ; - } -#Emissions of c5h6o2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 153 ; - } -#Emissions of trop sulfuric acid -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 154 ; - } -#Emissions of oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 155 ; - } -#Emissions of ch2chc(ch3)(oo)ch2ono2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 156 ; - } -#Emissions of c3 organic nitrate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 157 ; - } -#Emissions of chlorine oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 158 ; - } -#Emissions of bromine oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 159 ; - } -#Emissions of hoch2c(ooh)(ch3)chchoh -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 160 ; - } -#Emissions of hoch2c(ooh)(ch3)ch=ch2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 161 ; - } -#Emissions of lumped aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 162 ; - } -#Emissions of dimethyl sulfoxyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 163 ; - } -#Emissions of c7h9o5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 164 ; - } -#Emissions of c7h10o5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 165 ; - } -#Emissions of hydrogensulfide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 166 ; - } -#Emissions of c7h10o6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 167 ; - } -#Emissions of all nitrogen oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 168 ; - } -#Emissions of chlorine family -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 169 ; - } -#Emissions of c10h16(oh)(oo) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 170 ; - } -#Emissions of bromine family -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 171 ; - } -#Emissions of c10h18o3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 172 ; - } -#Emissions of nitrogen atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 173 ; - } -#Emissions of chlorine monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 174 ; - } -#Emissions of chlorine atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 175 ; - } -#Emissions of bromine monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 176 ; - } -#Emissions of hydrogen atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 177 ; - } -#Emissions of methyl group -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 178 ; - } -#Emissions of aromatic-ho from toluene and less reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 179 ; - } -#Emissions of aromatic-ho from xylene and more reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 180 ; - } -#Emissions of ammonium nitrate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 181 ; - } -#Emissions of aromatic-ho from csl -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 182 ; - } -#Emissions of secondary organic aerosol type 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 183 ; - } -#Emissions of secondary organic aerosol type 2a -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 184 ; - } -#Emissions of secondary organic aerosol type 2b -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 185 ; - } -#Emissions of condensable gas type 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 186 ; - } -#Emissions of condensable gas type 2a -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 187 ; - } -#Emissions of condensable gas type 2b -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 188 ; - } -#Emissions of sulfur trioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 189 ; - } -#Emissions of carbonyl sulfide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 190 ; - } -#Emissions of bromine atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 191 ; - } -#Emissions of bromine -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 192 ; - } -#Emissions of bromine monochloride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 193 ; - } -#Emissions of bromine nitrate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 194 ; - } -#Emissions of dibromomethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 195 ; - } -#Emissions of methoxy radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 196 ; - } -#Emissions of tribromomethane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 197 ; - } -#Emissions of asymmetric chlorine dioxide radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 198 ; - } -#Emissions of hydrogen -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 199 ; - } -#Emissions of hydrogen chloride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 200 ; - } -#Emissions of formyl radical -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 201 ; - } -#Emissions of hydrogen fluoride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 202 ; - } -#Emissions of oxygen atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 203 ; - } -#Emissions of excited oxygen atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 204 ; - } -#Emissions of ground state oxygen atom -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 205 ; - } -#Emissions of stratospheric aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 206 ; - } -#Wildfire flux of paraffins -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 207 ; - } -#Wildfire flux of olefines -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 208 ; - } -#Wildfire flux of aldehydes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 209 ; - } -#Wildfire flux of ketones -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 210 ; - } -#Wildfire flux of f a-pinene cyclic terpenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 211 ; - } -#Wildfire flux of toluene less reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 212 ; - } -#Wildfire flux of xylene more reactive aromatics -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 213 ; - } -#Wildfire flux of d-limonene cyclic diene -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 214 ; - } -#Wildfire flux of terminal alkenes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 215 ; - } -#Wildfire flux of alkanes low oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 216 ; - } -#Wildfire flux of alkanes med oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 217 ; - } -#Wildfire flux of alkanes high oh rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 218 ; - } -#Wildfire flux of hydrogen cyanide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 219 ; - } -#Wildfire flux of acetonitrile -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 220 ; - } -#Ozone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Dry deposition velocity of carbon dioxide (chemistry) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 57 ; - } -#Dry deposition velocity of nitrous oxide (chemistry) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 58 ; - } -#Dry deposition velocity of water vapour (chemistry) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 59 ; - } -#Dry deposition velocity of oxygen -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 60 ; - } -#Dry deposition velocity of singlet oxygen -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 61 ; - } -#Dry deposition velocity of singlet delta oxygen -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 62 ; - } -#Dry deposition velocity of chlorine dioxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 63 ; - } -#Dry deposition velocity of chlorine nitrate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 64 ; - } -#Dry deposition velocity of hypochlorous acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 65 ; - } -#Dry deposition velocity of chlorine -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 66 ; - } -#Dry deposition velocity of nitryl chloride -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 67 ; - } -#Dry deposition velocity of hydrogen bromide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 68 ; - } -#Dry deposition velocity of dichlorine dioxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 69 ; - } -#Dry deposition velocity of hypobromous acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 70 ; - } -#Dry deposition velocity of trichlorofluoromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 71 ; - } -#Dry deposition velocity of dichlorodifluoromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 72 ; - } -#Dry deposition velocity of trichlorotrifluoroethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 73 ; - } -#Dry deposition velocity of dichlorotetrafluoroethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 74 ; - } -#Dry deposition velocity of chloropentafluoroethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 75 ; - } -#Dry deposition velocity of tetrachloromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 76 ; - } -#Dry deposition velocity of methyl chloroform -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 77 ; - } -#Dry deposition velocity of methyl chloride -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 78 ; - } -#Dry deposition velocity of chlorodifluoromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 79 ; - } -#Dry deposition velocity of methyl bromide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 80 ; - } -#Dry deposition velocity of dibromodifluoromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 81 ; - } -#Dry deposition velocity of bromochlorodifluoromethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 82 ; - } -#Dry deposition velocity of trifluorobromomethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 83 ; - } -#Dry deposition velocity of cbrf2cbrf2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 84 ; - } -#Dry deposition velocity of sulfuric acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 85 ; - } -#Dry deposition velocity of nitrous acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 86 ; - } -#Dry deposition velocity of alkanes low oh rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 87 ; - } -#Dry deposition velocity of alkanes med oh rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 88 ; - } -#Dry deposition velocity of alkanes high oh rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 89 ; - } -#Dry deposition velocity of terminal alkenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 90 ; - } -#Dry deposition velocity of internal alkenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 91 ; - } -#Dry deposition velocity of ethylperoxy radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 92 ; - } -#Dry deposition velocity of butadiene -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 93 ; - } -#Dry deposition velocity of ethyl hydroperoxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 94 ; - } -#Dry deposition velocity of a-pinene cyclic terpenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 95 ; - } -#Dry deposition velocity of acetic acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 96 ; - } -#Dry deposition velocity of d-limonene cyclic diene -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 97 ; - } -#Dry deposition velocity of acetaldehyde -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 98 ; - } -#Dry deposition velocity of toluene and less reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 99 ; - } -#Dry deposition velocity of xylene and more reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 100 ; - } -#Dry deposition velocity of glycolaldehyde -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 101 ; - } -#Dry deposition velocity of cresol -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 102 ; - } -#Dry deposition velocity of acetaldehyde and higher -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 103 ; - } -#Dry deposition velocity of peracetic acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 104 ; - } -#Dry deposition velocity of ketones -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 105 ; - } -#Dry deposition velocity of hoch2ch2o2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 106 ; - } -#Dry deposition velocity of glyoxal -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 107 ; - } -#Dry deposition velocity of hoch2ch2o -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 108 ; - } -#Dry deposition velocity of unsaturated dicarbonyls -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 109 ; - } -#Dry deposition velocity of methacrolein -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 110 ; - } -#Dry deposition velocity of unsaturated hydroxy dicarbonyl -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 111 ; - } -#Dry deposition velocity of isopropyldioxidanyl -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 112 ; - } -#Dry deposition velocity of hydroxy ketone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 113 ; - } -#Dry deposition velocity of isopropyl hydroperoxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 114 ; - } -#Dry deposition velocity of c3h6oho2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 115 ; - } -#Dry deposition velocity of c3h6ohooh -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 116 ; - } -#Dry deposition velocity of higher organic peroxides -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 117 ; - } -#Dry deposition velocity of hydroxyacetone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 118 ; - } -#Dry deposition velocity of peroxyacetic acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 119 ; - } -#Dry deposition velocity of ch3coch2o2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 120 ; - } -#Dry deposition velocity of peroxy radical from c2h6 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 121 ; - } -#Dry deposition velocity of peroxy radical from hc3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 122 ; - } -#Dry deposition velocity of peroxy radical from hc5 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 123 ; - } -#Dry deposition velocity of lumped alkenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 124 ; - } -#Dry deposition velocity of peroxy radical from hc8 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 125 ; - } -#Dry deposition velocity of lumped alkanes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 126 ; - } -#Dry deposition velocity of peroxy radical from c2h4 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 127 ; - } -#Dry deposition velocity of c4h8o -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 128 ; - } -#Dry deposition velocity of peroxy radical from terminal alkenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 129 ; - } -#Dry deposition velocity of c4h9o3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 130 ; - } -#Dry deposition velocity of peroxy radical from internal alkenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 131 ; - } -#Dry deposition velocity of ch3coch(oo)ch3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 132 ; - } -#Dry deposition velocity of peroxy radical from c5h8 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 133 ; - } -#Dry deposition velocity of ch3coch(ooh)ch3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 134 ; - } -#Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 135 ; - } -#Dry deposition velocity of ch2=c(ch3)co3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 136 ; - } -#Dry deposition velocity of peroxy radical from d-limonene cyclic diene -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 137 ; - } -#Dry deposition velocity of methylvinylketone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 138 ; - } -#Dry deposition velocity of phenoxy radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 139 ; - } -#Dry deposition velocity of peroxy radical from toluene and less reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 140 ; - } -#Dry deposition velocity of ch3c(o)ch(oo)ch2oh -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 141 ; - } -#Dry deposition velocity of peroxy radical from xylene and more reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 142 ; - } -#Dry deposition velocity of h3c(o)ch(ooh)ch2oh -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 143 ; - } -#Dry deposition velocity of peroxy radical from cresol -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 144 ; - } -#Dry deposition velocity of unsaturated pans -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 145 ; - } -#Dry deposition velocity of unsaturated acyl peroxy radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 146 ; - } -#Dry deposition velocity of peroxy radical from ketones -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 147 ; - } -#Dry deposition velocity of c5h11o2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 148 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 149 ; - } -#Dry deposition velocity of c5h11ooh -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 150 ; - } -#Dry deposition velocity of no3-alkenes adduct reacting via decomposition -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 151 ; - } -#Dry deposition velocity of hoch2c(ch3)=chcho -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 152 ; - } -#Dry deposition velocity of c5h6o2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 153 ; - } -#Dry deposition velocity of trop sulfuric acid -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 154 ; - } -#Dry deposition velocity of oxides -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 155 ; - } -#Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 156 ; - } -#Dry deposition velocity of c3 organic nitrate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 157 ; - } -#Dry deposition velocity of chlorine oxides -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 158 ; - } -#Dry deposition velocity of bromine oxides -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 159 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)chchoh -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 160 ; - } -#Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 161 ; - } -#Dry deposition velocity of lumped aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 162 ; - } -#Dry deposition velocity of dimethyl sulfoxyde -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 163 ; - } -#Dry deposition velocity of c7h9o5 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 164 ; - } -#Dry deposition velocity of c7h10o5 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 165 ; - } -#Dry deposition velocity of hydrogensulfide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 166 ; - } -#Dry deposition velocity of c7h10o6 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 167 ; - } -#Dry deposition velocity of all nitrogen oxides -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 168 ; - } -#Dry deposition velocity of chlorine family -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 169 ; - } -#Dry deposition velocity of c10h16(oh)(oo) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 170 ; - } -#Dry deposition velocity of bromine family -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 171 ; - } -#Dry deposition velocity of c10h18o3 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 172 ; - } -#Dry deposition velocity of nitrogen atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 173 ; - } -#Dry deposition velocity of chlorine monoxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 174 ; - } -#Dry deposition velocity of chlorine atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 175 ; - } -#Dry deposition velocity of bromine monoxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 176 ; - } -#Dry deposition velocity of hydrogen atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 177 ; - } -#Dry deposition velocity of methyl group -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 178 ; - } -#Dry deposition velocity of aromatic-ho from toluene and less reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 179 ; - } -#Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 180 ; - } -#Dry deposition velocity of ammonium nitrate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 181 ; - } -#Dry deposition velocity of aromatic-ho from csl -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 182 ; - } -#Dry deposition velocity of secondary organic aerosol type 1 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 183 ; - } -#Dry deposition velocity of secondary organic aerosol type 2a -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 184 ; - } -#Dry deposition velocity of secondary organic aerosol type 2b -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 185 ; - } -#Dry deposition velocity of condensable gas type 1 -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 186 ; - } -#Dry deposition velocity of condensable gas type 2a -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 187 ; - } -#Dry deposition velocity of condensable gas type 2b -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 188 ; - } -#Dry deposition velocity of sulfur trioxide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 189 ; - } -#Dry deposition velocity of carbonyl sulfide -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 190 ; - } -#Dry deposition velocity of bromine atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 191 ; - } -#Dry deposition velocity of bromine -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 192 ; - } -#Dry deposition velocity of bromine monochloride -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 193 ; - } -#Dry deposition velocity of bromine nitrate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 194 ; - } -#Dry deposition velocity of dibromomethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 195 ; - } -#Dry deposition velocity of methoxy radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 196 ; - } -#Dry deposition velocity of tribromomethane -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 197 ; - } -#Dry deposition velocity of asymmetric chlorine dioxide radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 198 ; - } -#Dry deposition velocity of hydrogen -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 199 ; - } -#Dry deposition velocity of hydrogen chloride -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 200 ; - } -#Dry deposition velocity of formyl radical -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 201 ; - } -#Dry deposition velocity of hydrogen fluoride -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 202 ; - } -#Dry deposition velocity of oxygen atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 203 ; - } -#Dry deposition velocity of excited oxygen atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 204 ; - } -#Dry deposition velocity of ground state oxygen atom -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 205 ; - } -#Dry deposition velocity of stratospheric aerosol -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 206 ; - } -#Total sky direct solar radiation at surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Horizontal visibility -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#10 metre wind gust in the last 3 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of zero-degree wet-bulb temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of one-degree wet-bulb temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Instantaneous total lightning flash density -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Instantaneous total lightning flash density -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 50 ; - } -#Averaged total lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - } -#Averaged total lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 51 ; - } -#Instantaneous cloud-to-ground lightning flash density -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 52 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 53 ; - } -#Averaged total lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 57 ; - } -#Averaged total lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - } -#Averaged total lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 58 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 59 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 60 ; - } -#GPP coefficient from Biogenic Flux Adjustment System -'dimensionless' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Rec coefficient from Biogenic Flux Adjustment System -'dimensionless' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Accumulated Carbon Dioxide Net Ecosystem Exchange -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Gross Primary Production -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated Carbon Dioxide Ecosystem Respiration -'kg m**-2' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } -#Flux of Carbon Dioxide Net Ecosystem Exchange -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Flux of Carbon Dioxide Gross Primary Production -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Flux of Carbon Dioxide Ecosystem Respiration -'kg m**-2 s**-1' = { - localTablesVersion = 1 ; - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total column rain water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Evaporation from the top of canopy -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 100 ; - } -#Evaporation from bare soil -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 101 ; - } -#Evaporation from open water surfaces excluding oceans -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 102 ; - } -#Evaporation from vegetation transpiration -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 103 ; - } -#Surface solar radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#Irrigation fraction -'Proportion' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'%' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'radians' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'N m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'N m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre wind gust of at least 25 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - } -#2 metre temperature less than 273.15 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 5 ; - scaledValueOfLowerLimit = 2 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 4 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 4 ; - } -#Significant wave height of at least 6 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#Mean wave period of at least 8 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean zero-crossing wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Mean zero-crossing wave period -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Peak wave period -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'m**2 s radian**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'m**2 s radian**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'psu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'kg m**-3 -1000' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'Pa' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'Pa' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'J m**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Sea water potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Sea water practical salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Upward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sea water sigma theta -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'m s**-1 degC' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level previous timestep -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Ocean barotropic stream function -'m**3 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'N m**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'Nm**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#Surface downward eastward stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#Surface downward northward stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#Average potential temperature in the upper 300m -'degrees C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'J m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'J m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Layer Thickness at scalar points -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'m s**-1 per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'psu per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'deg C per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Pa m**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Pa m**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'Pa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'Pa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'N m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'N m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'%' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'K m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'K m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'K m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'Pa m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'K Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'Pa m s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'Pa m s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'~' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'N m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'K kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'m**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'m**4 s**-4' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'m**2 K s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'K**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'m s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'m s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'m**2 Pa s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'Pa s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'m Pa s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'m Pa s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'Pa**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'Pa**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'dimensionless' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'dimensionless' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'m' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'%' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'radians' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Mean large-scale precipitation fraction -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Mean large-scale precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Mean total snowfall rate -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Mean surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Mean surface latent heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Mean surface net radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Mean short-wave heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Mean long-wave heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Mean surface downward solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Mean surface downward thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Mean surface net solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Mean surface net thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Mean top net solar radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Mean top net thermal radiation flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Mean sunshine duration rate -'s s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Mean runoff rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation rate of accumulation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Mean total precipitation rate -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Mean convective precipitation rate anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'K s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'K s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomalous rate of accumulation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomalous rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomalous rate of accumulation -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomalous rate of accumulation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'dimensionless' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomalous rate of accumulation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomalous rate of accumulation -'W m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Liquid water potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'m' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Field capacity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'m**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'J kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'m s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'m s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'Pa' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'K' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'%' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#CO2 column-mean molar fraction -'ppm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#CH4 column-mean molar fraction -'ppb' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 80 ; - } -#Wildfire flux of Carbon Monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 81 ; - } -#Wildfire flux of Methane -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 82 ; - } -#Wildfire flux of Non-Methane Hydro-Carbons -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 83 ; - } -#Wildfire flux of Hydrogen -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 84 ; - } -#Wildfire flux of Nitrogen Oxides NOx -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 85 ; - } -#Wildfire flux of Nitrous Oxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 86 ; - } -#Wildfire flux of Particulate Matter PM2.5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 87 ; - } -#Wildfire flux of Total Particulate Matter -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 88 ; - } -#Wildfire flux of Total Carbon in Aerosols -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 89 ; - } -#Wildfire flux of Organic Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 90 ; - } -#Wildfire flux of Black Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 91 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'%' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'m**2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'dimensionless' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'W' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire flux of Sulfur Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 102 ; - } -#Wildfire Flux of Methanol (CH3OH) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 103 ; - } -#Wildfire Flux of Ethanol (C2H5OH) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 104 ; - } -#Wildfire Flux of Propane (C3H8) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 105 ; - } -#Wildfire Flux of Ethene (C2H4) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 106 ; - } -#Wildfire Flux of Propene (C3H6) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 107 ; - } -#Wildfire Flux of Isoprene (C5H8) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 108 ; - } -#Wildfire Flux of Terpenes (C5H8)n -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 109 ; - } -#Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 110 ; - } -#Wildfire Flux of Higher Alkenes (CnH2n, C>=4) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 111 ; - } -#Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 112 ; - } -#Wildfire Flux of Formaldehyde (CH2O) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 113 ; - } -#Wildfire Flux of Acetaldehyde (C2H4O) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 114 ; - } -#Wildfire Flux of Acetone (C3H6O) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 115 ; - } -#Wildfire Flux of Ammonia (NH3) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 116 ; - } -#Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 117 ; - } -#Wildfire radiative power maximum -'W' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'m s**-2' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'m s**-2' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#ASCAT first soil moisture CDF matching parameter -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def deleted file mode 100644 index 3319bcc9..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/units.legacy.def +++ /dev/null @@ -1,144 +0,0 @@ -#Surface net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; -} -#Surface net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; -} -#Eastward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; -} -#Northward sea water velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; -} -#Sea-ice thickness -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; -} -#Sea surface height -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; -} -#100 metre U wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; -} -#100 metre V wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; -} -#100 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; -} -#0 degrees C isothermal level (atm) -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; -} -#Depth of 20C isotherm -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; -} -#Average salinity in the upper 300m -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; -} -#Total precipitation of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; -} -#Total precipitation of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; -} -#Total precipitation of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; -} -#Total precipitation of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; -} -#Total precipitation of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; -} -#Total precipitation of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; -} -#Total precipitation of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; -} -#Total precipitation of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; -} -#Total column cloud liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; -} -#Total column cloud ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; -} -#Top net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; -} -#Temperature of snow layer -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def deleted file mode 100644 index c5c15659..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGrid.def +++ /dev/null @@ -1,14 +0,0 @@ -# ECMWF Unstructured Grid Mapping - -concept unstructuredGridType(unknown,"unstructuredGridType.def",conceptsLocalDirAll,conceptsMasterDir); - -concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir); - -concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); - -if (unstructuredGridType is "undefined" || unstructuredGridType is "unknown") { - meta gridName sprintf("%s",unstructuredGridType); -} else { - meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); -} -alias ls.gridName=gridName; diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def deleted file mode 100644 index 3f93215f..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridSubtype.def +++ /dev/null @@ -1,6 +0,0 @@ -'undefined' = { numberOfGridInReference = 0; } -'T' = { numberOfGridInReference = 1; } -'U' = { numberOfGridInReference = 2; } -'V' = { numberOfGridInReference = 3; } -'W' = { numberOfGridInReference = 4; } -'F' = { numberOfGridInReference = 5; } diff --git a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def b/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def deleted file mode 100644 index 33dcb3ca..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ecmf/unstructuredGridType.def +++ /dev/null @@ -1,8 +0,0 @@ -'undefined' = { numberOfGridUsed = 0; } -'ORCA2' = { numberOfGridUsed = 1; } -'ORCA1' = { numberOfGridUsed = 2; } -'ORCA025' = { numberOfGridUsed = 3; } -'ORCA12' = { numberOfGridUsed = 4; } -'eORCA1' = { numberOfGridUsed = 5; } -'eORCA025' = { numberOfGridUsed = 6; } -'eORCA12' = { numberOfGridUsed = 7; } diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def b/eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def deleted file mode 100644 index 14033768..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/default_step_units.def +++ /dev/null @@ -1,4 +0,0 @@ -# Override for sub-hourly steps -# See ECC-438 -label "subhourly"; -alias defaultStepUnits=indicatorOfUnitOfTimeRange; diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def b/eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def deleted file mode 100644 index 5af6fb6e..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/modelName.def +++ /dev/null @@ -1,107 +0,0 @@ -# modelName: Contribution from Daniel Lee @ DWD - -# definitions for Offenbach -'cosmo_eu' = { - generatingProcessIdentifier=131; -} -'cosmo_eu' = { - generatingProcessIdentifier=132; -} -'cosmo_eu' = { - generatingProcessIdentifier=134; -} -'cosmo_eu' = { - generatingProcessIdentifier=135; -} -'cosmo_de' = { - generatingProcessIdentifier=137; -} -'cosmo_de' = { - generatingProcessIdentifier=138; -} -'cosmo_de-eps' = { - generatingProcessIdentifier=137; - typeOfEnsembleForecast=192; -} -'cosmo_de-eps' = { - generatingProcessIdentifier=138; - typeOfEnsembleForecast=192; -} - -#DWD model names for ICON -'icogl' = { - gridDefinitionTemplateNumber=101; - generatingProcessIdentifier=1; -} -'icogl130' = { - numberOfGridUsed=26; - generatingProcessIdentifier=1; -} -'icogl130l90' = { - numberOfGridUsed=26; - nlev=91; - generatingProcessIdentifier=1; -} -'icogl130p' = { - numberOfGridUsed=26; - typeOfFirstFixedSurface=100; - generatingProcessIdentifier=1; -} -'icoeu'= { - gridDefinitionTemplateNumber=101; - generatingProcessIdentifier=2; -} -'icoeu065' = { - numberOfGridUsed=27; - generatingProcessIdentifier=2; -} -'icoeu065l60' = { - numberOfGridUsed=27; - nlev=61; - generatingProcessIdentifier=2; -} -'icreu' = { - gridDefinitionTemplateNumber=0; - generatingProcessIdentifier=2; -} -'icreu_0.625' = { - gridDefinitionTemplateNumber=0; - Dx=62500; - Dy=62500; - generatingProcessIdentifier=2; -} -'icreu_0.625l60' = { - gridDefinitionTemplateNumber=0; - Dx=62500; - Dy=62500; - nlev=61; - generatingProcessIdentifier=2; -} -'icreu_0.625p' = { - gridDefinitionTemplateNumber=0; - Dx=62500; - Dy=62500; - typeOfFirstFixedSurface=100; - generatingProcessIdentifier=2; -} -'icreu_0.625z' = { - gridDefinitionTemplateNumber=0; - Dx=62500; - Dy=62500; - typeOfFirstFixedSurface=102; - generatingProcessIdentifier=2; -} -'icrde' = { - gridDefinitionTemplateNumber=0; - generatingProcessIdentifier=3; -} -'icrgl' = { - gridDefinitionTemplateNumber=0; - generatingProcessIdentifier=1; -} -'icrgl_0.25' = { - gridDefinitionTemplateNumber=0; - Dx=250000; - Dy=250000; - generatingProcessIdentifier=1; -} diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/name.def b/eccodes/definitions.save/grib2/localConcepts/edzw/name.def deleted file mode 100755 index e94200ca..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/name.def +++ /dev/null @@ -1,13809 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'Pressure (S) (not reduced)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500001 -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'Pressure Reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'Pressure Tendency (S)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'Geopotential (S)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'Geopotential (full lev)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 105 ; - typeOfFirstFixedSurface = 105 ; - } - -#paramId: 500006 -#Geopotential -'Geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'Geometric Height of the earths surface above sea level' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'Geometric Height of the layer limits above sea level(NN)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'Total Column Integrated Ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } - -#paramId: 500010 -#Temperature (G) -'Temperature (G)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500011 -#2m Temperature -'2m Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'2m Temperature (AV)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'Climat. temperature, 2m Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 9 ; - } - -#paramId: 500014 -#Temperature -'Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'Max 2m Temperature (i)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'Min 2m Temperature (i)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'2m Dew Point Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'2m Dew Point Temperature (AV)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'Radar spectra (1)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500020 -#Wave spectra (1) -'Wave spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500021 -#Wave spectra (2) -'Wave spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500022 -#Wave spectra (3) -'Wave spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'Wind Direction (DD_10M)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'Wind Direction (DD)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'Wind speed (SP_10M)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'Wind speed (SP)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500027 -#U-Component of Wind -'U-Component of Wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'U-Component of Wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500029 -#V-Component of Wind -'V-Component of Wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'V-Component of Wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Vertical Velocity (Pressure) ( omega=dp/dt )' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'Vertical Velocity (Geometric) (w)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'Specific Humidity (2m)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'Specific Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500036 -#2m Relative Humidity -'2m Relative Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'Relative Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'Total column integrated water vapour' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } - -#paramId: 500039 -#Evaporation (s) -'Evaporation (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'Total Column-Integrated Cloud Ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'Total Precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'Large-Scale Precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'Convective Precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'Snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } - -#paramId: 500045 -#Snow Depth -'Snow Depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 500046 -#Total Cloud Cover -'Total Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'Convective Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'Total Column-Integrated Cloud Water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'Convective Snowfall water equivalent (s)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'Large-Scale snowfall - water equivalent (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'Land Cover (1=land, 0=sea)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'Surface Roughness length Surface Roughness' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'Albedo (in short-wave)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'Albedo (in short-wave, average)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'Soil Temperature ( 36 cm depth, vv=0h)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'Soil Temperature (41 cm depth)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'Column-integrated Soil Moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'Column-integrated Soil Moisture (1) 0 -10 cm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'Column-integrated Soil Moisture (2) 10-100cm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500065 -#Plant cover -'Plant cover' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500066 -#Water Runoff -'Water Runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'Water Runoff (s)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'Sea Ice Cover ( 0= free, 1=cover)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'Sea Ice Thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500072 -#Direction of wind waves -'Direction of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500073 -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 500074 -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 500075 -#Direction of swell waves -'Direction of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500076 -#Significant height of swell waves -'Significant height of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500077 -#Mean period of swell waves -'Mean period of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'Net long wave radiation flux (m) (at the surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'Net short wave radiation flux (on the model top)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'Net long wave radiation flux (m) (on the model top)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'Latent Heat Net Flux (m)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'Sensible Heat Net Flux (m)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'Photosynthetically active radiation (m) (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500098 -#Cloud cover -'Cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'Non-Convective Cloud Cover, grid scale' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'Cloud Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'Cloud Ice Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - } - -#paramId: 500102 -#Rain mixing ratio -'Rain mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } - -#paramId: 500103 -#Snow mixing ratio -'Snow mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } - -#paramId: 500104 -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } - -#paramId: 500105 -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } - -#paramId: 500106 -#Grauple -'Grauple' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } - -#paramId: 500107 -#Total column integrated grauple -'Total column integrated grauple' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'Total Column integrated water (all components incl. precipitation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'Height of Convective Cloud Base above msl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'Height of Convective Cloud Top above msl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'Height of 0 degree Celsius isotherm above msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500132 -#Large scale rain rate -'Large scale rain rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'Large scale rain (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500135 -#Convective rain rate -'Convective rain rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } - -#paramId: 500137 -#Convective rain -'Convective rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'rain amount, grid-scale plus convective' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'snow amount, grid-scale plus convective' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'Graupel (snow pellets) precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'Graupel (snow pellets) precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500147 -#Snow density -'Snow density' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'Convective turbulent kinetic enery' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'Turbulent diffusioncoefficient for momentum' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'Turbulent diffusion coefficient for heat (and moisture)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'Turbulent transfer coefficient for impulse' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'Turbulent transfer coefficient for heat (and Moisture)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 500163 -#mixed layer depth -'mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } - -#paramId: 500164 -#maximum Wind 10m -'maximum Wind 10m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'Soil Temperature (multilayer model)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'Column-integrated Soil Moisture (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'soil ice content (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'Plant Canopy Surface Water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'Snow temperature (top of snow)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'Minimal Stomatal Resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'Sea Ice Temperature' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500173 -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'Base reflectivity (cmax)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'Convective Available Potential Energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } - -#paramId: 500185 -#Direction of combined wind waves and swell -'Direction of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 500187 -#Peak period of total swell -'Peak period of total swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 500189 -#Peak period of wind waves -'Peak period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 500190 -#Peak wave period -'Peak wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } - -#paramId: 500191 -#Mean period of combined wind waves and swell -'Mean period of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500192 -#Inverse mean wave frequency -'Inverse mean wave frequency' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 500193 -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500194 -#Wave directional width -'Wave directional width' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } - -#paramId: 500206 -#Leaf area index -'Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500207 -#root depth of vegetation -'root depth of vegetation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'Plant covering degree in the vegetation phase' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'Plant covering degree in the quiescent phas' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500212 -#Max Leaf area index -'Max Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500213 -#Min Leaf area index -'Min Leaf area index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'Orographie + Land-Meer-Verteilung' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500217 -#evergreen forest -'evergreen forest' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 500218 -#deciduous forest -'deciduous forest' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'normalized differential vegetation index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'normalized differential vegetation index (NDVI)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'Total sulfate aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62006 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'Total sulfate aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62006 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'Total soil dust aerosol (climatology)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62001 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'Total soil dust aerosol (climatology,12M)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62001 ; - } - -#paramId: 500227 -#Organic aerosol -'Organic aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62010 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'Organic aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62010 ; - } - -#paramId: 500229 -#Black carbon aerosol -'Black carbon aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62009 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'Black carbon aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62009 ; - } - -#paramId: 500231 -#Sea salt aerosol -'Sea salt aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62008 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'Sea salt aerosol (12M)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62008 ; - } - -#paramId: 500236 -#geographical latitude -'geographical latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } - -#paramId: 500237 -#geographical longitude -'geographical longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } - -#paramId: 500238 -#Friction velocity -'Friction velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'Ozone Mixing Ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Air concentration of Ruthenium 103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30102 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Ru103 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30102 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Ru103 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30102 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Air concentration of Strontium 90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30067 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Sr90 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30067 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Sr90 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30067 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'Air concentration of Iodine 131 aerosol' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30141 ; - } - -#paramId: 500250 -#I131a - dry deposition -'I131a - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30141 ; - } - -#paramId: 500251 -#I131a - wet deposition -'I131a - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30141 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30172 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Cs137 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30172 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Air concentration of Tellurium 132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30129 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Te132 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30129 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Te132 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30129 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Air concentration of Zirconium 95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30079 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Zr95 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30079 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Zr95 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30079 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Air concentration of Krypton 85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30059 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Kr85 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30059 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Kr85 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30059 ; - } - -#paramId: 500264 -#TRACER - concentration -'TRACER - concentration' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30000 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'TRACER - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30000 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'TRACER - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30000 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Air concentration of Xenon 133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30161 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Xe133 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30161 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Xe133 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30161 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'Air concentration of Iodine 131 elementary gaseous' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30138 ; - } - -#paramId: 500271 -#I131g - dry deposition -'I131g - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30138 ; - } - -#paramId: 500272 -#I131g - wet deposition -'I131g - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30138 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'Air concentration of Iodine 131 organic bounded' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30139 ; - } - -#paramId: 500274 -#I131o - dry deposition -'I131o - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30139 ; - } - -#paramId: 500275 -#I131o - wet deposition -'I131o - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30139 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Air concentration of Barium 140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30175 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Ba140 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30175 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Ba140 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30175 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'Gravity wave dissipation (vertical integral)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'UV Index, clouded sky, maximum' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500286 -#Vertical speed shear -'Vertical speed shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } - -#paramId: 500287 -#storm relative helicity -'storm relative helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'Hoehe der Konvektionsuntergrenze ueber Grund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'weather interpretation (WMO)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'Druck einer isentropen Flaeche' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500302 -#KO index -'KO index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'Aequivalentpotentielle Temperatur' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500304 -#Ceiling -'Ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Icing Grade (1=LGT,2=MOD,3=SEV)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'Monthly Mean of RMS of difference FG-AN of v-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'Monthly Mean of RMS of difference IA-AN of v-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'Monthly Mean of RMS of difference FG-AN of geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'Monthly Mean of RMS of difference IA-AN of geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'Monthly Mean of RMS of difference FG-AN of relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'Monthly Mean of RMS of difference IA-AN of relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'Monthly Mean of RMS of difference FG-AN of temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'Monthly Mean of RMS of difference IA-AN of temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'Synth. Sat. brightness temperature cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'Synth. Sat. brightness temperature clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'Synth. Sat. radiance cloudy' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'Synth. Sat. radiance clear sky' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'smoothed forecast, temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'smoothed forecast, maximum temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'smoothed forecast, minimum temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'smoothed forecast, dew point temp.' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'smoothed forecast, u comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'smoothed forecast, v comp. of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'smoothed forecast, total precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'smoothed forecast, total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'smoothed forecast, cloud cover low' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'smoothed forecast, cloud cover medium' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'smoothed forecast, cloud cover high' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'smoothed forecast, large-scale snowfall' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'smoothed forecast, soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'smoothed forecast, wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'calibrated forecast, total precipitation (Accumulation)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'calibrated forecast, large-scale snowfall' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'calibrated forecast, wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500389 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - } - -#paramId: 500390 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - } - -#paramId: 500391 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - } - -#paramId: 500392 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1250000 ; - } - -#paramId: 500393 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500394 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - } - -#paramId: 500395 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500396 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500397 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500398 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500399 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500400 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Obser. Sat. Meteosat sec. generation brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'Total Precipitation Difference' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'Net short wave radiation flux (at the surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'UV Index, clear sky, maximum' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500469 -#Total ozone -'Total ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500474 -#wind chill factor -'wind chill factor' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500475 -#Water temperature -'Water temperature' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500477 -#Absolute Vorticity -'Absolute Vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500490 -#Water Fraction -'Water Fraction' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500491 -#Lake depth -'Lake depth' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500492 -#Wind fetch -'Wind fetch' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 33 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'Attenuation coefficient of water with respect to solar radiation' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'Depth of thermally active layer of bottom sediment' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 164 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'Temperature at the lower boundary of the thermally active layer of bottom sediment' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 164 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'Mean temperature of the water column' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'Mixed-layer temperature' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'Bottom temperature (temperature at the water-bottom sediment interface)' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500499 -#Mixed-layer depth -'Mixed-layer depth' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'Shape factor with respect to the temperature profile in the thermocline' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 166 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave)' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 165 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'Sediment thickness of the upper layer of bottom sediments' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 165 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500539 -#cloud top height -'cloud top height' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 500543 -#vertical vorticity -'vertical vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 500544 -#Potential vorticity -'Potential vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } - -#paramId: 500545 -#Density -'Density' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 500546 -#Altimeter Settings -'Altimeter Settings' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'Convective Precipitation (difference)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500548 -#Soil moisture -'Soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 500549 -#Soil moisture -'Soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } - -#paramId: 500568 -#Geopotential height -'Geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 500569 -#Relative Divergenz -'Relative Divergenz' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'Logarithm of Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'Soil Temperature (layer)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'Soil Moisture Content (0-7 cm)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 7 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'Soil Moisture Content (7-50 cm)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 50 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 7 ; - } - -#paramId: 500584 -#Sunshine duration -'Sunshine duration' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500588 -#Snow melt -'Snow melt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 500593 -#Global radiation flux -'Global radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 500594 -#exner pressure -'exner pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } - -#paramId: 500595 -#normal wind component -'normal wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 34 ; - } - -#paramId: 500596 -#tangential wind component -'tangential wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 35 ; - } - -#paramId: 500597 -#virtual potential temperature -'virtual potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500598 -#Current Direction -'Current Direction' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500599 -#Current Speed -'Current Speed' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500642 -#Lapse rate -'Lapse rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500779 -#Effective radius of cloud water -'Effective radius of cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#Effective radius of rain -'Effective radius of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#Effective radius of cloud ice -'Effective radius of cloud ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#Effective radius of snow -'Effective radius of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#Effective radius of graupel -'Effective radius of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#Effective radius of hail -'Effective radius of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#Effective radius of subgrid liquid clouds -'Effective radius of subgrid liquid clouds' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#Effective radius of subgrid ice clouds -'Effective radius of subgrid ice clouds' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#Effective aspect ratio of rain -'Effective aspect ratio of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#Effective aspect ratio of cloud ice -'Effective aspect ratio of cloud ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#Effective aspect ratio of snow -'Effective aspect ratio of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#Effective aspect ratio of graupel -'Effective aspect ratio of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#Effective aspect ratio of hail -'Effective aspect ratio of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#Effective aspect ratio of subgrid ice clouds -'Effective aspect ratio of subgrid ice clouds' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 142 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'Specific Humidity (S)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'Albedo - diffusive solar - time average (0.3 - 5.0 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'Albedo - diffusive solar (0.3 - 5.0 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } - -#paramId: 502309 -#center latitude -'center latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502310 -#center longitude -'center longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502311 -#edge midpoint latitude -'edge midpoint latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502312 -#edge midpoint longitude -'edge midpoint longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502313 -#vertex latitude -'vertex latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502314 -#vertex longitude -'vertex longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502315 -#Number of cloud droplets per unit mass of air -'Number of cloud droplets per unit mass of air' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 28 ; - } - -#paramId: 502316 -#Number of cloud ice particles per unit mass of air -'Number of cloud ice particles per unit mass of air' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 29 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'Latent Heat Net Flux - instant - at surface' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'Sensible Heat Net Flux - instant - at surface' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502319 -#Latent Heat Net Flux - accumulated _ surface -'Latent Heat Net Flux - accumulated _ surface' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502320 -#Sensible Heat Net Flux - accumulated _ surface -'Sensible Heat Net Flux - accumulated _ surface' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502321 -#Net short wave radiation flux - accumulated _ surface -'Net short wave radiation flux - accumulated _ surface' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502322 -#Net long wave radiation flux - accumulated _ surface -'Net long wave radiation flux - accumulated _ surface' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502323 -#Net long wave radiation flux - accumulated _ model top -'Net long wave radiation flux - accumulated _ model top' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502327 -#Net short wave radiation flux - accumulated _ model top -'Net short wave radiation flux - accumulated _ model top' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502328 -#Snow temperature - multi level -'Snow temperature - multi level ' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502329 -#Snow depth - multi level -'Snow depth - multi level ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502330 -#Snow density in - multi level -'Snow density in - multi level ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502331 -#Water equivalent of accumulated snoe depth in - multi level -'Water equivalent of accumulated snoe depth in - multi level ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502333 -#salinity -'salinity' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 502334 -#Stream function -'Stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 502335 -#Velocity potential -'Velocity potential' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 502336 -#Skin temperature -'Skin temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502340 -#Snow cover -'Snow cover ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } - -#paramId: 502341 -#Cloud Cover (0 - 400 hPa) -'Cloud Cover (0 - 400 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 40000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502342 -#Cloud Cover (400 - 800 hPa) -'Cloud Cover (400 - 800 hPa)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 80000 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 40000 ; - } - -#paramId: 502343 -#Cloud Cover (800 hPa - Soil) -'Cloud Cover (800 hPa - Soil)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 80000 ; - } - -#paramId: 502348 -#Water Runoff (s) -'Water Runoff (s)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502349 -#Water Runoff -'Water Runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 1 ; - } - -#paramId: 502397 -#Virtual Temperature -'Virtual Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502424 -#Vertical u-component shear -'Vertical u-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } - -#paramId: 502425 -#Vertical v-component shear -'Vertical v-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } - -#paramId: 502693 -#Potential temperature -'Potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502700 -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } - -#paramId: 502701 -#Sunshine duration -'Sunshine duration' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502702 -#Brightness temperature -'Brightness temperature' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } - -#paramId: 502703 -#Heat index -'Heat index' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502705 -#Total column water -'Total column water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } - -#paramId: 502706 -#Large scale precipitation (non-convective) -'Large scale precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502707 -#Snowfall rate water equivalent -'Snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502708 -#Convective snow -'Convective snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } - -#paramId: 502709 -#Large scale snow -'Large scale snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } - -#paramId: 502710 -#Snow age -'Snow age' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } - -#paramId: 502711 -#Absolute humidity -'Absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } - -#paramId: 502712 -#Precipitation type -'Precipitation type' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } - -#paramId: 502713 -#Integrated liquid water -'Integrated liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } - -#paramId: 502714 -#Condensate -'Condensate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } - -#paramId: 502715 -#Ice water mixing ratio -'Ice water mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } - -#paramId: 502717 -#Maximum relative humidity -'Maximum relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } - -#paramId: 502718 -#Maximum absolute humidity -'Maximum absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } - -#paramId: 502719 -#Total snowfall -'Total snowfall' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } - -#paramId: 502720 -#Precipitable water category -'Precipitable water category' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } - -#paramId: 502721 -#Hail -'Hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } - -#paramId: 502722 -#Categorical rain -'Categorical rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } - -#paramId: 502723 -#Categorical freezing rain -'Categorical freezing rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } - -#paramId: 502724 -#Categorical ice pellets -'Categorical ice pellets' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } - -#paramId: 502725 -#Categorical snow -'Categorical snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } - -#paramId: 502727 -#Percent frozen precipitation -'Percent frozen precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } - -#paramId: 502728 -#Potential evaporation -'Potential evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } - -#paramId: 502729 -#Potential evaporation rate -'Potential evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } - -#paramId: 502730 -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } - -#paramId: 502731 -#Rime factor -'Rime factor' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } - -#paramId: 502732 -#Large scale water precipitation (non-convective) -'Large scale water precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } - -#paramId: 502733 -#Convective water precipitation -'Convective water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } - -#paramId: 502734 -#Total water precipitation -'Total water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } - -#paramId: 502735 -#Total snow precipitation -'Total snow precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } - -#paramId: 502737 -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } - -#paramId: 502738 -#Convective snowfall rate -'Convective snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } - -#paramId: 502739 -#Large scale snowfall rate -'Large scale snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } - -#paramId: 502740 -#Water equivalent of accumulated snow depth -'Water equivalent of accumulated snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502741 -#Freezing rain precipitation rate -'Freezing rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } - -#paramId: 502742 -#Ice pellets precipitation rate -'Ice pellets precipitation rate ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } - -#paramId: 502743 -#Maximum wind speed -'Maximum wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } - -#paramId: 502744 -#u-component of wind (gust) -'u-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } - -#paramId: 502745 -#v-component of wind (gust) -'v-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - -#paramId: 502746 -#Horizontal momentum flux -'Horizontal momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } - -#paramId: 502747 -#U-component storm motion -'U-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } - -#paramId: 502748 -#V-component storm motion -'V-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } - -#paramId: 502749 -#Thickness -'Thickness' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502751 -#Minimum dew point depression -'Minimum dew point depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502752 -#Pressure altitude -'Pressure altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502753 -#Density altitude -'Density altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502754 -#5-wave geopotential height -'5-wave geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502755 -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502756 -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 502757 -#Planetary boundary layer height -'Planetary boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } - -#paramId: 502758 -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 502759 -#Net short-wave radiation flux (top of atmosphere) -'Net short-wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502760 -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } - -#paramId: 502761 -#Net short-wave radiation flux, clear sky -'Net short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } - -#paramId: 502762 -#Downward UV radiation -'Downward UV radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } - -#paramId: 502763 -#Net long wave radiation flux (surface) -'Net long wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } - -#paramId: 502764 -#Net long wave radiation flux (top of atmosphere) -'Net long wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } - -#paramId: 502765 -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } - -#paramId: 502766 -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } - -#paramId: 502767 -#Net long-wave radiation flux, clear sky -'Net long-wave radiation flux, clear sky ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } - -#paramId: 502768 -#Cloud Ice -'Cloud Ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } - -#paramId: 502769 -#Cloud water -'Cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } - -#paramId: 502770 -#Cloud amount -'Cloud amount' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } - -#paramId: 502771 -#Cloud type -'Cloud type' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } - -#paramId: 502772 -#Thunderstorm maximum tops -'Thunderstorm maximum tops' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } - -#paramId: 502773 -#Thunderstorm coverage -'Thunderstorm coverage' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } - -#paramId: 502774 -#Cloud base -'Cloud base' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } - -#paramId: 502775 -#Cloud top -'Cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } - -#paramId: 502776 -#Cloud work function -'Cloud work function' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } - -#paramId: 502777 -#Convective cloud efficiency -'Convective cloud efficiency' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } - -#paramId: 502778 -#Total condensate -'Total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } - -#paramId: 502779 -#Total column-integrated cloud water -'Total column-integrated cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } - -#paramId: 502780 -#Total column-integrated cloud ice -'Total column-integrated cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } - -#paramId: 502781 -#Total column-integrated condensate -'Total column-integrated condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } - -#paramId: 502782 -#Ice fraction of total condensate -'Ice fraction of total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } - -#paramId: 502783 -#Cloud ice mixing ratio -'Cloud ice mixing ratio' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } - -#paramId: 502785 -#K index -'K index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 502786 -#Total totals index -'Total totals index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } - -#paramId: 502787 -#Sweat index -'Sweat index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } - -#paramId: 502788 -#Energy helicity index -'Energy helicity index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } - -#paramId: 502789 -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } - -#paramId: 502790 -#Best (4-layer) lifted index -'Best (4-layer) lifted index ' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } - -#paramId: 502791 -#Aerosol type -'Aerosol type' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } - -#paramId: 502792 -#Base spectrum width -'Base spectrum width' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } - -#paramId: 502793 -#Base radial velocity -'Base radial velocity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } - -#paramId: 502794 -#Vertically-integrated liquid -'Vertically-integrated liquid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } - -#paramId: 502795 -#Layer-maximum base reflectivity -'Layer-maximum base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } - -#paramId: 502796 -#Precipitation -'Precipitation' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 502797 -#Air concentration of Caesium 137 -'Air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } - -#paramId: 502798 -#Air concentration of Iodine 131 -'Air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } - -#paramId: 502799 -#Air concentration of radioactive pollutant -'Air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } - -#paramId: 502800 -#Ground deposition of Caesium 137 -'Ground deposition of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } - -#paramId: 502801 -#Ground deposition of Iodine 131 -'Ground deposition of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } - -#paramId: 502802 -#Ground deposition of radioactive pollutant -'Ground deposition of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } - -#paramId: 502843 -#Time-integrated air concentration of caesium pollutant -'Time-integrated air concentration of caesium pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } - -#paramId: 502844 -#Time-integrated air concentration of iodine pollutant -'Time-integrated air concentration of iodine pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } - -#paramId: 502845 -#Time-integrated air concentration of radioactive pollutant -'Time-integrated air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } - -#paramId: 502846 -#Volcanic ash -'Volcanic ash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } - -#paramId: 502847 -#Icing top -'Icing top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } - -#paramId: 502848 -#Icing base -'Icing base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } - -#paramId: 502849 -#Turbulence top -'Turbulence top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } - -#paramId: 502850 -#Turbulence base -'Turbulence base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } - -#paramId: 502851 -#Turbulence -'Turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } - -#paramId: 502852 -#Planetary boundary layer regime -'Planetary boundary layer regime' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } - -#paramId: 502853 -#Contrail intensity -'Contrail intensity' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } - -#paramId: 502854 -#Contrail engine type -'Contrail engine type' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } - -#paramId: 502855 -#Contrail top -'Contrail top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } - -#paramId: 502856 -#Contrail base -'Contrail base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } - -#paramId: 502857 -#Maximum snow albedo -'Maximum snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } - -#paramId: 502858 -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } - -#paramId: 502859 -#Horizontal extent of cumulonimbus (CB) -'Horizontal extent of cumulonimbus (CB)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } - -#paramId: 502860 -#In-cloud turbulence -'In-cloud turbulence ' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } - -#paramId: 502861 -#Clear air turbulence (CAT) -'Clear air turbulence (CAT)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } - -#paramId: 502862 -#Supercooled large droplet probability (see Note 4) -'Supercooled large droplet probability (see Note 4)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } - -#paramId: 502864 -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502865 -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 502866 -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502867 -#Remotely sensed snow cover -'Remotely sensed snow cover' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502868 -#Elevation of snow covered terrain -'Elevation of snow covered terrain' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 502869 -#Snow water equivalent percent of normal -'Snow water equivalent percent of normal' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502870 -#Baseflow-groundwater runoff -'Baseflow-groundwater runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502871 -#Storm surface runoff -'Storm surface runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502872 -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502873 -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502874 -#Probability of 0.01 inch of precipitation (POP) -'Probability of 0.01 inch of precipitation (POP)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502875 -#Evapotranspiration -'Evapotranspiration' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502876 -#Land use -'Land use' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 502877 -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502878 -#Ground heat flux -'Ground heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502879 -#Moisture availability -'Moisture availability' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502880 -#Exchange coefficient -'Exchange coefficient' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502881 -#Blackadar mixing length scale -'Blackadar mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502882 -#Canopy conductance -'Canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 502883 -#Solar parameter in canopy conductance -'Solar parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 502885 -#Soil moisture parameter in canopy conductance -'Soil moisture parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 502886 -#Humidity parameter in canopy conductance -'Humidity parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 502887 -#Column-integrated soil water -'Column-integrated soil water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 502888 -#Heat flux -'Heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 502889 -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 502890 -#Volumetric wilting point -'Volumetric wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 502891 -#Upper layer soil temperature -'Upper layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502892 -#Upper layer soil moisture -'Upper layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } - -#paramId: 502893 -#Lower layer soil moisture -'Lower layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 502894 -#Bottom layer soil temperature -'Bottom layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 502895 -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 502896 -#Number of soil layers in root zone -'Number of soil layers in root zone' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } - -#paramId: 502897 -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502898 -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502899 -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502900 -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 502919 -#Volumetric transpiration stress-onset (soil moisture) -'Volumetric transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 502920 -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502921 -#Volumetric direct evaporation cease (soil moisture) -'Volumetric direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502922 -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502923 -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502924 -#Volumetric saturation of soil moisture -'Volumetric saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502926 -#Estimated precipitation -'Estimated precipitation' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502927 -#Instantaneous rain rate -'Instantaneous rain rate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502928 -#Cloud top height quality indicator -'Cloud top height quality indicator' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502929 -#Estimated u component of wind -'Estimated u component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 502930 -#Estimated v component of wind -'Estimated v component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502931 -#Number of pixels used -'Number of pixels used' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } - -#paramId: 502932 -#Solar zenith angle -'Solar zenith angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502933 -#Reflectance in 0.6 micron channel -'Reflectance in 0.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502934 -#Reflectance in 0.8 micron channel -'Reflectance in 0.8 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502935 -#Reflectance in 1.6 micron channel -'Reflectance in 1.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 502936 -#Reflectance in 3.9 micron channel -'Reflectance in 3.9 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502937 -#Atmospheric divergence -'Atmospheric divergence' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502938 -#Primary wave direction -'Primary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502939 -#Primary wave mean period -'Primary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502940 -#Secondary wave mean period -'Secondary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 502941 -#Deviation of sea level from mea -'Deviation of sea level from mea' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502942 -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502943 -#Standard deviation of height -'Standard deviation of height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502944 -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502945 -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502946 -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 502947 -#Radar spectra (2) -'Radar spectra (2)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } - -#paramId: 502948 -#Radar spectra (3) -'Radar spectra (3)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } - -#paramId: 502949 -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 502950 -#Temperature anomaly -'Temperature anomaly' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502951 -#Pressure anomaly -'Pressure anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502952 -#Geopotential height anomaly -'Geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502953 -#Montgomery stream Function -'Montgomery stream Function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 502954 -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 502955 -#Absolute divergence -'Absolute divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 502958 -#U-component of current -'U-component of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502959 -#V-component of current -'V-component of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502960 -#Precipitable water -'Precipitable water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502961 -#Saturation deficit -'Saturation deficit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502962 -#Precipitation rate -'Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502963 -#Thunderstorm probability -'Thunderstorm probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } - -#paramId: 502964 -#Convective precipitation (water) -'Convective precipitation (water)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502965 -#Transient thermocline depth -'Transient thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } - -#paramId: 502966 -#Main thermocline depth -'Main thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 502967 -#Main thermocline anomaly -'Main thermocline anomaly' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502968 -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 502969 -#Soil moisture content -'Soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 503011 -#Salinity -'Salinity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 503012 -#Direction of ice drift -'Direction of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503013 -#Speed of ice drift -'Speed of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503014 -#U-component of ice drift -'U-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503015 -#V-component of ice drift -'V-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503016 -#Ice growth rate -'Ice growth rate' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503017 -#Ice divergence -'Ice divergence' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503019 -#Secondary wave direction -'Secondary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 503020 -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 503021 -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } - -#paramId: 503022 -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } - -#paramId: 503023 -#Convective inhibition -'Convective inhibition' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } - -#paramId: 503024 -#Wind mixing energy -'Wind mixing energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } - -#paramId: 503025 -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 503028 -#Wilting point -'Wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 503038 -#Snow phase change heat flux -'Snow phase change heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503039 -#Vapor pressure -'Vapor pressure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 503047 -#Land use class fraction -'Land use class fraction' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 503048 -#Saturation of soil moisture -'Saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'Upward diffusive short wave radiation flux at surface ( mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'Momentum Flux, U-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'Momentum Flux, V-Component (m)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503075 -#Geometric height of the earths surface above mean sea level at vertex point (ICON) -'Geometric height of the earths surface above mean sea level at vertex point (ICON) ' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - numberOfGridInReference = 2 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'Gravity wave dissipation ' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503080 -#Land use class -'Land use class' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 503081 -#Water depth -'Water depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } - -#paramId: 503082 -#Friction velocity -'Friction velocity' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } - -#paramId: 503083 -#Coefficient of drag with waves -'Coefficient of drag with waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503084 -#Normalized wave stress -'Normalized wave stress' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 503085 -#Inverse mean frequency of wind waves -'Inverse mean frequency of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } - -#paramId: 503086 -#Mean zero-crossing period of wind waves -'Mean zero-crossing period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 503087 -#Directional width of wind waves -'Directional width of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 503088 -#Inverse mean frequency of total swell -'Inverse mean frequency of total swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503089 -#Inverse mean zero crossing period of total swell -'Inverse mean zero crossing period of total swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 503090 -#Directional width of total swell -'Directional width of total swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } - -#paramId: 503091 -#Goda peakedness parameter -'Goda peakedness parameter' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 45 ; - } - -#paramId: 503092 -#Spectral kurtosis -'Spectral kurtosis' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 43 ; - } - -#paramId: 503093 -#Benjamin-Feir index -'Benjamin-Feir index' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 44 ; - } - -#paramId: 503094 -#Maximum individual wave height -'Maximum individual wave height' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 503095 -#Maximum wave period -'Maximum wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 503097 -#Meansquare slope -'Meansquare slope' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 503106 -#Hail mixing ratio -'Hail mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 71 ; - } - -#paramId: 503107 -#Hail -'Hail ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 72 ; - } - -#paramId: 503108 -#Hail precipitation rate -'Hail precipitation rate ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - } - -#paramId: 503109 -#Reflectivity of cloud droplets -'Reflectivity of cloud droplets' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 9 ; - } - -#paramId: 503110 -#Reflectivity of cloud ice -'Reflectivity of cloud ice' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 10 ; - } - -#paramId: 503111 -#Reflectivity of snow -'Reflectivity of snow' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 11 ; - } - -#paramId: 503112 -#Reflectivity of rain -'Reflectivity of rain' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 12 ; - } - -#paramId: 503113 -#Reflectivity of graupel -'Reflectivity of graupel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 13 ; - } - -#paramId: 503114 -#Reflectivity of hail -'Reflectivity of hail' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 14 ; - } - -#paramId: 503130 -#Hail precipitation rate, accumulation -'Hail precipitation rate, accumulation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503132 -#Number density of cloud droplets -'Number density of cloud droplets' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 30 ; - } - -#paramId: 503133 -#Number density of cloud ice particles -'Number density of cloud ice particles' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 31 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'Downward long-wave radiation flux avg' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'Downward long-wave radiation flux accum' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503145 -#2m absolute humidity -'2m absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503154 -#Bulk Richardson number -'Bulk Richardson number' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 16 ; - } - -#paramId: 503155 -#Cape of mixed (mean) layer parcel, ascent up to 3 km -'Cape of mixed (mean) layer parcel, ascent up to 3 km' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 3000 ; - } - -#paramId: 503166 -#Geostrophic wind direction -'Geostrophic wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 43 ; - } - -#paramId: 503169 -#Dewpoint depression -'Dewpoint depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 503170 -#2m dewpoint depression -'2m dewpoint depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503173 -#Geostrophic wind speed -'Geostrophic wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 44 ; - } - -#paramId: 503174 -#Downward short wave radiation flux at surface (time average) -'Downward short wave radiation flux at surface (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503186 -#Height of lifting condensation level of mixed (mean) layer parcel -'Height of lifting condensation level of mixed (mean) layer parcel' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 5 ; - } - -#paramId: 503192 -#Humidity mixing ratio -'Humidity mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 503193 -#2m Humidity mixing ratio -'2m Humidity mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503195 -#relative humidity over ice -'relative humidity over ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } - -#paramId: 503196 -#Gradient Richardson number -'Gradient Richardson number' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 17 ; - } - -#paramId: 503197 -#Showalter index -'Showalter index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 13 ; - } - -#paramId: 503204 -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503210 -#2m potential temperature -'2m potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503211 -#Dew point temperature -'Dew point temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 503212 -#2m equivalentTemperature -'2m equivalentTemperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503213 -#2m virtual potential temperature -'2m virtual potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503214 -#Temperature at cloud top -'Temperature at cloud top' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503215 -#Wet bulb temperature -'Wet bulb temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503216 -#2m wet bulb temperature -'2m wet bulb temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503219 -#Universal thermal climate index with direct incident short wave radiation -'Universal thermal climate index with direct incident short wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 503220 -#u-component of geostrophic wind -'u-component of geostrophic wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 41 ; - } - -#paramId: 503221 -#v-component of geostrophic wind -'v-component of geostrophic wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 42 ; - } - -#paramId: 503229 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503230 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503231 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503232 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 4' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 4 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503233 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 5' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 5 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503234 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 -'Prognostic mass mixing ratio of volcanic ash particles for bin number 6' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 6 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503235 -#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) -'Modal prognostic mass mixing ratio of volcanic ash particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503236 -#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) -'Modal prognostic mass mixing ratio of volcanic ash particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503237 -#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) -'Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503238 -#Modal prognostic specific number concentration of volcanic ash particles (fine mode) -'Modal prognostic specific number concentration of volcanic ash particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503239 -#Modal prognostic specific number concentration of volcanic ash particles (medium mode) -'Modal prognostic specific number concentration of volcanic ash particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503240 -#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) -'Modal prognostic specific number concentration of volcanic ash particles (coarse mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503241 -#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) -'Modal prognostic mass mixing ratio of mineral dust particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503242 -#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) -'Modal prognostic mass mixing ratio of mineral dust particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503243 -#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) -'Modal prognostic mass mixing ratio of mineral dust particles (coarse mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503244 -#Modal prognostic specific number concentration of mineral dust particles (fine mode) -'Modal prognostic specific number concentration of mineral dust particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503245 -#Modal prognostic specific number concentration of mineral dust particles (medium mode) -'Modal prognostic specific number concentration of mineral dust particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503246 -#Modal prognostic specific number concentration of mineral dust particles (coarsemode) -'Modal prognostic specific number concentration of mineral dust particles (coarsemode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503247 -#Modal prognostic mass mixing ratio of sea salt particles (fine mode) -'Modal prognostic mass mixing ratio of sea salt particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503248 -#Modal prognostic mass mixing ratio of sea salt particles (medium mode) -'Modal prognostic mass mixing ratio of sea salt particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503249 -#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) -'Modal prognostic mass mixing ratio of sea salt particles (coarse mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503250 -#Modal prognostic specific number concentration of sea salt particles (fine mode) -'Modal prognostic specific number concentration of sea salt particles (fine mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503251 -#Modal prognostic specific number concentration of sea salt particles (medium mode) -'Modal prognostic specific number concentration of sea salt particles (medium mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503252 -#Modal prognostic specific number concentration of sea salt particles (coarse mode) -'Modal prognostic specific number concentration of sea salt particles (coarse mode)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503253 -#Cs137 - wet deposition -'Cs137 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - -#paramId: 503254 -#Prognostic specific activity concentration of Iodine 131 aerosol -'Prognostic specific activity concentration of Iodine 131 aerosol' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30141 ; - } - -#paramId: 503255 -#Te132 - total (wet + dry) deposition -'Te132 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30129 ; - } - -#paramId: 503256 -#Prognostic specific activity concentration of Zirconium 95 -'Prognostic specific activity concentration of Zirconium 95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30079 ; - } - -#paramId: 503257 -#Prognostic specific activity concentration of Xenon 133 -'Prognostic specific activity concentration of Xenon 133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30161 ; - } - -#paramId: 503258 -#Prognostic specific activity concentration of Iodine 131 elementary gaseous -'Prognostic specific activity concentration of Iodine 131 elementary gaseous' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30138 ; - } - -#paramId: 503259 -#Prognostic specific activity concentration of Iodine 131 organic bounded -'Prognostic specific activity concentration of Iodine 131 organic bounded' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30139 ; - } - -#paramId: 503260 -#Prognostic specific activity concentration of Barium 140 -'Prognostic specific activity concentration of Barium 140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30175 ; - } - -#paramId: 503261 -#Prognostic specific activity concentration of Ruthenium 103 -'Prognostic specific activity concentration of Ruthenium 103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30102 ; - } - -#paramId: 503262 -#Diagnostic total mass concentration of volcanic ash -'Diagnostic total mass concentration of volcanic ash' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 0 ; - constituentType = 62025 ; - } - -#paramId: 503263 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 -'Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 46500 ; - constituentType = 62025 ; - } - -#paramId: 503265 -#Diagnostic total column of mass concentration of volcanic ash -'Diagnostic total column of mass concentration of volcanic ash' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - constituentType = 62025 ; - } - -#paramId: 503266 -#Diagnostic height of model layer with maximal total mass concentration of volcanic ash -'Diagnostic height of model layer with maximal total mass concentration of volcanic ash' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 62 ; - constituentType = 62025 ; - } - -#paramId: 503267 -#Diagnostic volcanic ash optical depth -'Diagnostic volcanic ash optical depth' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62025 ; - } - -#paramId: 503268 -#Diagnostic mineral dust optical depth -'Diagnostic mineral dust optical depth' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62001 ; - } - -#paramId: 503269 -#Diagnostic sea salt optical depth -'Diagnostic sea salt optical depth' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62008 ; - } - -#paramId: 503270 -#Diagnostic vmaximum activity concentration of radionuclides in a layer -'Diagnostic vmaximum activity concentration of radionuclides in a layer' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 15 ; - } - -#paramId: 503273 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 -'Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 46500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 24000 ; - constituentType = 62025 ; - } - -#paramId: 503274 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 -'Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 70000 ; - constituentType = 62025 ; - } - -#paramId: 503275 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 -'Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 24000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 9100 ; - constituentType = 62025 ; - } - -#paramId: 503276 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 -'Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 70000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 38500 ; - constituentType = 62025 ; - } - -#paramId: 503277 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 -'Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 38500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 20000 ; - constituentType = 62025 ; - } - -#paramId: 503278 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 -'Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 20000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10000 ; - constituentType = 62025 ; - } - -#paramId: 503279 -#Diagnostic maximum total mass concentration of volcanic ash in a layer -'Diagnostic maximum total mass concentration of volcanic ash in a layer' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - constituentType = 62025 ; - } - -#paramId: 503280 -#Aerosol optical depth -'Aerosol optical depth' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - } - -#paramId: 503293 -#Large Scale Rain Difference -'Large Scale Rain Difference' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503294 -#Large Scale Snowfall water Equivalent Difference -'Large Scale Snowfall water Equivalent Difference' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503295 -#Convective Rain Difference -'Convective Rain Difference' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503296 -#Convective Snowfall Water Equivalent Difference -'Convective Snowfall Water Equivalent Difference' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503303 -#Total precipitation rate -'Total precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } - -#paramId: 503304 -#Horizontal moisture convergence -'Horizontal moisture convergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } - -#paramId: 503305 -#TOA downward solar radiation -'TOA downward solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 503306 -#Surface upward thermal radiation -'Surface upward thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503307 -#Surface upward thermal radiation -'Surface upward thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503308 -#Specific mass of liquid water coating on hail -'Specific mass of liquid water coating on hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 110 ; - } - -#paramId: 503309 -#Specific mass of liquid water coating on graupel -'Specific mass of liquid water coating on graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 113 ; - } - -#paramId: 503310 -#Specific mass of liquid water coating on snow -'Specific mass of liquid water coating on snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 116 ; - } - -#paramId: 503311 -#Specific number concentration of rain -'Specific number concentration of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 100 ; - } - -#paramId: 503312 -#Number density of rain -'Number density of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 104 ; - } - -#paramId: 503313 -#Specific number concentration of snow -'Specific number concentration of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 101 ; - } - -#paramId: 503314 -#Specific number concentration of graupel -'Specific number concentration of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 102 ; - } - -#paramId: 503315 -#Specific number concentration of hail -'Specific number concentration of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 103 ; - } - -#paramId: 503316 -#Number density of snow -'Number density of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 105 ; - } - -#paramId: 503317 -#Number density of graupel -'Number density of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 106 ; - } - -#paramId: 503318 -#Number density of hail -'Number density of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 107 ; - } - -#paramId: 503319 -#Mass density of rain -'Mass density of rain ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 96 ; - } - -#paramId: 503320 -#Mass density of snow -'Mass density of snow ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 97 ; - } - -#paramId: 503321 -#Mass density of graupel -'Mass density of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 98 ; - } - -#paramId: 503322 -#Mass density of cloud droplets -'Mass density of cloud droplets' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 38 ; - } - -#paramId: 503323 -#Mass density of cloud ice -'Mass density of cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 39 ; - } - -#paramId: 503324 -#Mass density of hail -'Mass density of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 99 ; - } - -#paramId: 503326 -#Diagnostic total column of activity concentration of radionuclides -'Diagnostic total column of activity concentration of radionuclides' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503327 -#Base for given threshold of mass density for volcanic ash cloud -'Base for given threshold of mass density for volcanic ash cloud' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62025 ; - } - -#paramId: 503328 -#Base for given threshold of mass density for mineral dust cloud -'Base for given threshold of mass density for mineral dust cloud' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62001 ; - } - -#paramId: 503330 -#Top for given threshold of mass density for volcanic ash cloud -'Top for given threshold of mass density for volcanic ash cloud' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62025 ; - } - -#paramId: 503331 -#Top for given threshold of mass density for mineral dust cloud -'Top for given threshold of mass density for mineral dust cloud' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62001 ; - } - -#paramId: 503332 -#Top for given threshold of air concentration of radionuclides -'Top for given threshold of air concentration of radionuclides' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 24 ; - } - -#paramId: 503333 -#Emission rate of dust for mode 2 -'Emission rate of dust for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503334 -#Emission rate of dust for mode 3 -'Emission rate of dust for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503335 -#Emission rate of dust for mode 1 -'Emission rate of dust for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503336 -#Accumulated dust Emission for mode 2 -'Accumulated dust Emission for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503337 -#Accumulated dust Emission for mode 1 -'Accumulated dust Emission for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503338 -#Accumulated dust Emission for mode 3 -'Accumulated dust Emission for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503340 -#Base for given threshold of air concentration of radionuclides -'Base for given threshold of air concentration of radionuclides' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 23 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'Maximum amplitude (positive or negative) of updraft helicity (over given time interval)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 15 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'Maximum total-column integrated condensed water above -10 C isotherm (over given time interval)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 26315 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'Maximum total-column integrated condensed water (over given time interval)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'Composite reflectivity - observation' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 8 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'Composite reflectivity - forecast (simulation)' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'Maximum reflectivity track (over given time interval and entire atmosphere)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503350 -#relative vorticity -'relative vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503352 -#2m Temperature, restricted to land -'2m Temperature, restricted to land' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503353 -#2m Dew Point Temperature, restricted to land -'2m Dew Point Temperature, restricted to land' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503354 -#2m Relative Humidity, restricted to land -'2m Relative Humidity, restricted to land' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503357 -#Maximum 10m wind speed without gust -'Maximum 10m wind speed without gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503360 -#Birch (betula) pollen concentration -'Birch (betula) pollen concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62101 ; - } - -#paramId: 503362 -#Fraction of land occupied by birch (betula) -'Fraction of land occupied by birch (betula)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503368 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) -'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62101 ; - } - -#paramId: 503375 -#Alder (alnus) pollen concentration -'Alder (alnus) pollen concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62100 ; - } - -#paramId: 503376 -#Fraction of land occupied by alder (alnus) -'Fraction of land occupied by alder (alnus)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503382 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) -'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62100 ; - } - -#paramId: 503390 -#Grasses (poaceae) pollen concentration -'Grasses (poaceae) pollen concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62300 ; - } - -#paramId: 503391 -#Fraction of land occupied by grasses (poaceae) -'Fraction of land occupied by grasses (poaceae)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503397 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) -'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62300 ; - } - -#paramId: 503405 -#ragweed (ambrosia) pollen concentration -'ragweed (ambrosia) pollen concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62200 ; - } - -#paramId: 503406 -#Fraction of land occupied by ragweed (ambrosia) -'Fraction of land occupied by ragweed (ambrosia)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503412 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) -'Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62200 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'Echotop-height: largest height where radar reflectivity above a threshold is present' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503423 -#Maximum horizontal moisture convergence track (over given time interval and column) -'Maximum horizontal moisture convergence track (over given time interval and column)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503431 -#Accumulated dry deposition (surface) of dust for mode 1 -'Accumulated dry deposition (surface) of dust for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503432 -#Accumulated dry deposition (surface) of dust for mode 2 -'Accumulated dry deposition (surface) of dust for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503433 -#Accumulated dry deposition (surface) of dust for mode 3 -'Accumulated dry deposition (surface) of dust for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503434 -#Accumulated wet deposition by grid scale precipitation of dust for mode 1 -'Accumulated wet deposition by grid scale precipitation of dust for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503435 -#Accumulated wet deposition by grid scale precipitation of dust for mode 2 -'Accumulated wet deposition by grid scale precipitation of dust for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503436 -#Accumulated wet deposition by grid scale precipitation of dust for mode 3 -'Accumulated wet deposition by grid scale precipitation of dust for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503437 -#Accumulated wet deposition by convective precipitation of dust for mode 1 -'Accumulated wet deposition by convective precipitation of dust for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503438 -#Accumulated wet deposition by convective precipitation of dust for mode 2 -'Accumulated wet deposition by convective precipitation of dust for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503439 -#Accumulated wet deposition by convective precipitation of dust for mode 3 -'Accumulated wet deposition by convective precipitation of dust for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503443 -#Accumulated sedimentation of dust for mode 1 -'Accumulated sedimentation of dust for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503444 -#Accumulated sedimentation of dust for mode 2 -'Accumulated sedimentation of dust for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503445 -#Accumulated sedimentation of dust for mode 3 -'Accumulated sedimentation of dust for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503458 -#Attenuated backscatter from satellite for dust (for given wave length) -'Attenuated backscatter from satellite for dust (for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62001 ; - } - -#paramId: 503459 -#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) -'Attenuated backscatter from ground (ceilometer) for dust (for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62001 ; - } - -#paramId: 503461 -#Attenuated backscatter from satellite for volcanic ash (for given wave length) -'Attenuated backscatter from satellite for volcanic ash (for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62025 ; - } - -#paramId: 503462 -#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) -'Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62025 ; - } - -#paramId: 503467 -#2m Temperature analysis increment, filtered in time -'2m Temperature analysis increment, filtered in time' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 206 ; - } - -#paramId: 503468 -#Cs137 - total (wet + dry) deposition -'Cs137 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30172 ; - } - -#paramId: 503469 -#Prognostic specific activity concentration of Caesium 137 -'Prognostic specific activity concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30172 ; - } - -#paramId: 503470 -#Averaged air concentration of Caesium 137 -'Averaged air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30172 ; - } - -#paramId: 503471 -#Accumulated air concentration of Caesium 137 -'Accumulated air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30172 ; - } - -#paramId: 503480 -#Prognostic specific activity concentration of Krypton 85 -'Prognostic specific activity concentration of Krypton 85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30059 ; - } - -#paramId: 503481 -#Kr85 - total (wet + dry) deposition -'Kr85 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30059 ; - } - -#paramId: 503482 -#Averaged air concentration of Krypton 85 -'Averaged air concentration of Krypton 85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30059 ; - } - -#paramId: 503483 -#Accumulated air concentration of Krypton 85 -'Accumulated air concentration of Krypton 85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30059 ; - } - -#paramId: 503484 -#Prognostic specific activity concentration of Strontium 90 -'Prognostic specific activity concentration of Strontium 90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30067 ; - } - -#paramId: 503485 -#Averaged air concentration of Strontium 90 -'Averaged air concentration of Strontium 90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30067 ; - } - -#paramId: 503486 -#Accumulated air concentration of Strontium 90 -'Accumulated air concentration of Strontium 90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30067 ; - } - -#paramId: 503487 -#Sr90 - total (wet + dry) deposition -'Sr90 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30067 ; - } - -#paramId: 503489 -#I131a - total (wet + dry) deposition -'I131a - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30141 ; - } - -#paramId: 503490 -#Averaged air concentration of Iodine 131 aerosol -'Averaged air concentration of Iodine 131 aerosol' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30141 ; - } - -#paramId: 503491 -#Accumulated air concentration of Iodine 131 aerosol -'Accumulated air concentration of Iodine 131 aerosol' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30141 ; - } - -#paramId: 503492 -#Averaged air concentration of Cobalt 60 -'Averaged air concentration of Cobalt 60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30042 ; - } - -#paramId: 503493 -#Accumulated air concentration of Cobalt 60 -'Accumulated air concentration of Cobalt 60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30042 ; - } - -#paramId: 503494 -#Prognostic specific activity concentration of Cobalt 60 -'Prognostic specific activity concentration of Cobalt 60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30042 ; - } - -#paramId: 503495 -#Co-60 - wet deposition -'Co-60 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30042 ; - } - -#paramId: 503496 -#Co60 - total (wet + dry) deposition -'Co60 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30042 ; - } - -#paramId: 503497 -#Ru103 - total (wet + dry) deposition -'Ru103 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30102 ; - } - -#paramId: 503499 -#Averaged air concentration of Ruthenium 103 -'Averaged air concentration of Ruthenium 103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30102 ; - } - -#paramId: 503500 -#Accumulated air concentration of Ruthenium 103 -'Accumulated air concentration of Ruthenium 103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30102 ; - } - -#paramId: 503501 -#Prognostic specific activity concentration of Tellurium 132 -'Prognostic specific activity concentration of Tellurium 132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30129 ; - } - -#paramId: 503502 -#Averaged air concentration of Tellurium 132 -'Averaged air concentration of Tellurium 132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30129 ; - } - -#paramId: 503503 -#Accumulated air concentration of Tellurium 132 -'Accumulated air concentration of Tellurium 132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30129 ; - } - -#paramId: 503504 -#Zr95 - total (wet + dry) deposition -'Zr95 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30079 ; - } - -#paramId: 503505 -#Averaged air concentration of Zirconium 95 -'Averaged air concentration of Zirconium 95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30079 ; - } - -#paramId: 503506 -#Accumulated air concentration of Zirconium 95 -'Accumulated air concentration of Zirconium 95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30079 ; - } - -#paramId: 503507 -#TRACER - total (wet + dry) deposition -'TRACER - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30000 ; - } - -#paramId: 503508 -#Prognostic specific activity concentration of TRACER -'Prognostic specific activity concentration of TRACER' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30000 ; - } - -#paramId: 503509 -#Averaged air concentration of TRACER -'Averaged air concentration of TRACER' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30000 ; - } - -#paramId: 503510 -#Accumulated air concentration of TRACER -'Accumulated air concentration of TRACER' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30000 ; - } - -#paramId: 503511 -#Averaged air concentration of Xenon 133 -'Averaged air concentration of Xenon 133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30161 ; - } - -#paramId: 503512 -#Accumulated air concentration of Xenon 133 -'Accumulated air concentration of Xenon 133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30161 ; - } - -#paramId: 503513 -#Xe133 - total (wet + dry) deposition -'Xe133 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30161 ; - } - -#paramId: 503514 -#Air concentration of Iodine 131 -'Air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30137 ; - } - -#paramId: 503515 -#I131 - dry deposition -'I131 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30137 ; - } - -#paramId: 503516 -#Averaged air concentration of Iodine 131 -'Averaged air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30137 ; - } - -#paramId: 503517 -#Accumulated air concentration of Iodine 131 -'Accumulated air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30137 ; - } - -#paramId: 503518 -#Prognostic specific activity concentration of Iodine 131 -'Prognostic specific activity concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30137 ; - } - -#paramId: 503519 -#I131 - wet deposition -'I131 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30137 ; - } - -#paramId: 503520 -#I131 - total (wet + dry) deposition -'I131 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30137 ; - } - -#paramId: 503522 -#Averaged air concentration of Iodine 131 elementary gaseous -'Averaged air concentration of Iodine 131 elementary gaseous' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30138 ; - } - -#paramId: 503523 -#Accumulated air concentration of Iodine 131 elementary gaseous -'Accumulated air concentration of Iodine 131 elementary gaseous' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30138 ; - } - -#paramId: 503524 -#I131g - total (wet + dry) deposition -'I131g - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30138 ; - } - -#paramId: 503525 -#Averaged air concentration of Iodine 131 organic bounded -'Averaged air concentration of Iodine 131 organic bounded' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30139 ; - } - -#paramId: 503526 -#Accumulated air concentration of Iodine 131 organic bounded -'Accumulated air concentration of Iodine 131 organic bounded' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30139 ; - } - -#paramId: 503527 -#I131o - total (wet + dry) deposition -'I131o - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30139 ; - } - -#paramId: 503528 -#Ba140 - total (wet + dry) deposition -'Ba140 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30175 ; - } - -#paramId: 503529 -#Averaged air concentration of Barium 140 -'Averaged air concentration of Barium 140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30175 ; - } - -#paramId: 503530 -#Accumulated air concentration of Barium 140 -'Accumulated air concentration of Barium 140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30175 ; - } - -#paramId: 503531 -#Air concentration of Ruthenium 106 -'Air concentration of Ruthenium 106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30104 ; - } - -#paramId: 503532 -#Ru106 - total (wet + dry) deposition -'Ru106 - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30104 ; - } - -#paramId: 503533 -#Prognostic specific activity concentration of Ruthenium 106 -'Prognostic specific activity concentration of Ruthenium 106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30104 ; - } - -#paramId: 503534 -#Ru106 - dry deposition -'Ru106 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30104 ; - } - -#paramId: 503535 -#Ru106 - wet deposition -'Ru106 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30104 ; - } - -#paramId: 503536 -#Averaged air concentration of Ruthenium 106 -'Averaged air concentration of Ruthenium 106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30104 ; - } - -#paramId: 503537 -#Accumulated air concentration of Ruthenium 106 -'Accumulated air concentration of Ruthenium 106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30104 ; - } - -#paramId: 503538 -#Co-60 - dry deposition -'Co-60 - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30042 ; - } - -#paramId: 503539 -#Air concentration of Cobalt 60 -'Air concentration of Cobalt 60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30042 ; - } - -#paramId: 503542 -#Kr85m - wet deposition -'Kr85m - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30060 ; - } - -#paramId: 503543 -#Kr85m - total (wet + dry) deposition -'Kr85m - total (wet + dry) deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30060 ; - } - -#paramId: 503544 -#Prognostic specific activity concentration of Krypton 85m -'Prognostic specific activity concentration of Krypton 85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30060 ; - } - -#paramId: 503545 -#Kr85m - dry deposition -'Kr85m - dry deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30060 ; - } - -#paramId: 503546 -#Averaged air concentration of Krypton 85m -'Averaged air concentration of Krypton 85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30060 ; - } - -#paramId: 503547 -#Accumulated air concentration of Krypton 85m -'Accumulated air concentration of Krypton 85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30060 ; - } - -#paramId: 503548 -#Air concentration of Krypton 85m -'Air concentration of Krypton 85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30060 ; - } - -#paramId: 503551 -#Birch (betula) pollen specific number concentration -'Birch (betula) pollen specific number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62101 ; - } - -#paramId: 503552 -#Alder (alnus) pollen specific number concentration -'Alder (alnus) pollen specific number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62100 ; - } - -#paramId: 503553 -#Grasses (poaceae) pollen specific number concentration -'Grasses (poaceae) pollen specific number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62300 ; - } - -#paramId: 503554 -#Ragweed (ambrosia) pollen specific number concentration -'Ragweed (ambrosia) pollen specific number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62200 ; - } - -#paramId: 503560 -#Total lightning flash density - instantaneous -'Total lightning flash density - instantaneous' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503561 -#Total lightning flash density - time average -'Total lightning flash density - time average' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'Solar radiation heating rate' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'Thermal radiation heating rate' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'Latent heat flux from bare soil' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'Latent heat flux from plants' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500097 -#Stomatal resistance -'Stomatal resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } - -#paramId: 500109 -#Vertical integral of divergence of total water content - accumulation -'Vertical integral of divergence of total water content - accumulation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500110 -#Sub-grid scale cloud water -'Sub-grid scale cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } - -#paramId: 500111 -#Sub-grid scale cloud ice -'Sub-grid scale cloud ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } - -#paramId: 500115 -#Cloud base above MSL, shallow convection -'Cloud base above MSL, shallow convection' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500116 -#Cloud top above MSL, shallow convection -'Cloud top above MSL, shallow convection' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500117 -#Specific cloud liquid water content, convective cloud -'Specific cloud liquid water content, convective cloud' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } - -#paramId: 500120 -#Base index (vertical level) of main convective cloud -'Base index (vertical level) of main convective cloud' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500121 -#Top index (vertical level) of main convective cloud -'Top index (vertical level) of main convective cloud' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'Temperature tendency due to convection' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'Specific humidity tendency due to convection' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - } - -#paramId: 500124 -#Zonal wind tendency due to convection -'Zonal wind tendency due to convection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - } - -#paramId: 500125 -#Meridional wind tendency due to convection -'Meridional wind tendency due to convection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'Height of top of dry convection above MSL' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'Height of snow fall limit above MSL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'Tendency of specific cloud liquid water content due to convection' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - } - -#paramId: 500130 -#Tendency of specific cloud ice content due to convection -'Tendency of specific cloud ice content due to convection' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'Specific content of precipitation particles (needed for water loading)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipitation -'Temperature tendency due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'Specific humidity tendency due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - } - -#paramId: 500142 -#Tendency of specific cloud liquid water content due to grid scale precipitation -'Tendency of specific cloud liquid water content due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Fresh snow factor (weighting function for albedo indicating freshness of snow)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } - -#paramId: 500144 -#Tendency of specific cloud ice content due to grid scale precipitation -'Tendency of specific cloud ice content due to grid scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - } - -#paramId: 500148 -#Pressure perturbation -'Pressure perturbation' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500149 -#Supercell detection index 1 (rot. up- and downdrafts) -'Supercell detection index 1 (rot. up- and downdrafts)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } - -#paramId: 500150 -#Supercell detection index 2 (only rot. updrafts) -'Supercell detection index 2 (only rot. updrafts)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'Convective Available Potential Energy, most unstable' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'Convective Inhibition, most unstable' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'Convective Available Potential Energy, mean layer' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'Convective Inhibition, mean layer' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'Tendency of turbulent kinetic energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } - -#paramId: 500157 -#Kinetic energy -'Kinetic energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - } - -#paramId: 500176 -#Solution of 2-d Helmholtz equations - needed for restart -'Solution of 2-d Helmholtz equations - needed for restart' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 192 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'Effective transmissivity of solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - } - -#paramId: 500178 -#Sum of contributions to evaporation -'Sum of contributions to evaporation' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500179 -#Total transpiration from all soil layers -'Total transpiration from all soil layers' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500180 -#Total forcing at soil surface -'Total forcing at soil surface' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500181 -#Residuum of soil moisture -'Residuum of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500182 -#Mass flux at convective cloud base -'Mass flux at convective cloud base' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500184 -#Moisture convergence for Kuo-type closure -'Moisture convergence for Kuo-type closure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - } - -#paramId: 500195 -#Analysis error (standard deviation), geopotential (gpm) -'Analysis error (standard deviation), geopotential (gpm)' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500196 -#Analysis error (standard deviation), u-comp. of wind -'Analysis error (standard deviation), u-comp. of wind' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500197 -#Analysis error (standard deviation), v-comp. of wind -'Analysis error (standard deviation), v-comp. of wind' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500198 -#Zonal wind tendency due to sub-grid scale oro. -'Zonal wind tendency due to sub-grid scale oro.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - } - -#paramId: 500199 -#Meridional wind tendency due to sub-grid scale oro. -'Meridional wind tendency due to sub-grid scale oro.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - } - -#paramId: 500204 -#Surface emissivity -'Surface emissivity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } - -#paramId: 500205 -#Soil type (1...9, local soilType.table) -'Soil type (1...9, local soilType.table)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 500208 -#Height of ozone maximum (climatological) -'Height of ozone maximum (climatological)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - } - -#paramId: 500209 -#Vertically integrated ozone content (climatological) -'Vertically integrated ozone content (climatological)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - } - -#paramId: 500221 -#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500222 -#Ratio of NDVI (normalized differential vegetation index) to annual maximum -'Ratio of NDVI (normalized differential vegetation index) to annual maximum' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500233 -#Tendency of specific humidity -'Tendency of specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - } - -#paramId: 500234 -#Water vapor flux -'Water vapor flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } - -#paramId: 500235 -#Coriolis parameter -'Coriolis parameter' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - } - -#paramId: 500239 -#Delay of the GPS signal through the (total) atmos. -'Delay of the GPS signal through the (total) atmos.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - } - -#paramId: 500240 -#Delay of the GPS signal through wet atmos. -'Delay of the GPS signal through wet atmos.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - } - -#paramId: 500241 -#Delay of the GPS signal through dry atmos. -'Delay of the GPS signal through dry atmos.' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - } - -#paramId: 500279 -#U-momentum flux due to SSO-effects (mean over forecast time) -'U-momentum flux due to SSO-effects (mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500280 -#U-momentum flux due to SSO-effects -'U-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500281 -#V-momentum flux due to SSO-effects (mean over forecast time) -'V-momentum flux due to SSO-effects (mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500282 -#V-momentum flux due to SSO-effects -'V-momentum flux due to SSO-effects' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'Absolute vorticity advection' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 197 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) -'Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 194 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'Hoehe der Konvektionsuntergrenze ueber nn' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 24 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'geostrophische Vorticityadvektion' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 0 ; - } - -#paramId: 500294 -#Geostrophic thickness advection -'Geostrophic thickness advection' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 1 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'Schichtdickenadvektion' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 2 ; - } - -#paramId: 500296 -#Winddivergenz -'Winddivergenz' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 3 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'Q-Vektor senkrecht zu den Isothermen' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 4 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'Isentrope potentielle Vorticity' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'Wind X-Komponente auf isentropen Flaechen' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 5 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'Wind Y-Komponente auf isentropen Flaechen' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 6 ; - } - -#paramId: 500306 -#Modified cloud depth for media -'Modified cloud depth for media' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - } - -#paramId: 500307 -#Modified cloud cover for media -'Modified cloud cover for media' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - } - -#paramId: 500322 -#RMS of difference "first guess - analysis" of kinetic energy -'RMS of difference "first guess - analysis" of kinetic energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500323 -#RMS of difference "initialized analysis - analysis" of kinetic energy -'RMS of difference "initialized analysis - analysis" of kinetic energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'Probability of 1h total precipitation >= 10mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'Probability of 1h total precipitation >= 25mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'Probability of 6h total precipitation >= 20mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 14 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'Probability of 6h total precipitation >= 35mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'Probability of 12h total precipitation >= 25mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'Probability of 12h total precipitation >= 40mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'Probability of 12h total precipitation >= 70mm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 32 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'Probability of 6h accumulated snow >=0.5cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 69 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'Probability of 6h accumulated snow >= 5cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 70 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'Probability of 6h accumulated snow >= 10cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 71 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'Probability of 12h accumulated snow >=0.5cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 72 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'Probability of 12h accumulated snow >= 10cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 74 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'Probability of 12h accumulated snow >= 15cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'Probability of 12h accumulated snow >= 25cm' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'Probability of 1h maximum wind gust speed >= 14m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 132 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'Probability of 1h maximum wind gust speed >= 18m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 134 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'Probability of 1h maximum wind gust speed >= 25m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 136 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'Probability of 1h maximum wind gust speed >= 29m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 137 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'Probability of 1h maximum wind gust speed >= 33m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 138 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'Probability of 1h maximum wind gust speed >= 39m/s' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 139 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'Probability of black ice during 1h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 191 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'Probability of thunderstorm during 1h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'Probability of heavy thunderstorm during 1h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'Probability of severe thunderstorm during 1h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'Probability of snowdrift during 12h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 212 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'Probability of strong snowdrift during 12h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 213 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'Probability of temperature < 0 deg C during 1h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 232 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'Probability of temperature <= -10 deg C during 6h' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 236 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'UV Index, clear sky; corrected for albedo, aerosol and altitude' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 195 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 196 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 197 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'Time of maximum of UV Index, clouded' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500472 -#Type of convection (0..4) -'Type of convection (0..4)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 201 ; - } - -#paramId: 500473 -#perceived temperature -'perceived temperature' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 1 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'probability to perceive sultriness' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 3 ; - } - -#paramId: 500479 -#value of isolation of clothes -'value of isolation of clothes' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 2 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'Downward direct short wave radiation flux at surface (mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500503 -#Icing Base (hft) - Icing Degree Composit -'Icing Base (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Icing Degree Composit -'Icing Max Base (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Icing Degree Composit -'Icing Max Top (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500506 -#Icing Top (hft) - Icing Degree Composit -'Icing Top (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500509 -#Icing Base (hft) - Icing Scenario Composit -'Icing Base (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'Icing Signifikant Base (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'Icing Signifikant Top (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500512 -#Icing Top (hft) - Icing Scenario Composit -'Icing Top (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500515 -#Icing Base (hft) - Icing Degree Composit -'Icing Base (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Icing Degree Composit -'Icing Max Base (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Icing Degree Composit -'Icing Max Top (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500518 -#Icing Top (hft) - Icing Degree Composit -'Icing Top (hft) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500521 -#Icing Base (hft) - Icing Scenario Composit -'Icing Base (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'Icing Signifikant Base (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'Icing Signifikant Top (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500524 -#Icing Top (hft) - Icing Scenario Composit -'Icing Top (hft) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500527 -#Icing Degree Code (1=light,2=moderate,3=severe) -'Icing Degree Code (1=light,2=moderate,3=severe)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500528 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500529 -#Icing Degree Code (1=light,2=moderate,3=severe) -'Icing Degree Code (1=light,2=moderate,3=severe)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500530 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'current weather (symbol number: 0..9)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 209 ; - } - -#paramId: 500538 -#cloud type -'cloud type' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500540 -#cloud top temperature -'cloud top temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } - -#paramId: 500541 -#Relative vorticity, u-component -'Relative vorticity, u-component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 198 ; - } - -#paramId: 500542 -#Relative vorticity, v-component -'Relative vorticity, v-component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 199 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'Potentielle Vorticity (auf Druckflaechen, nicht isentrop)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 23 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'geostrophische Vorticity' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 7 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'Forcing rechte Seite Omegagleichung' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 8 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'Q-Vektor X-Komponente (geostrophisch)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 9 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'Q-Vektor Y-Komponente (geostrophisch)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 10 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'Divergenz Q (geostrophisch)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 11 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'Q-Vektor senkrecht zu d. Isothermen (geostrophisch)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 12 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'Q-Vektor parallel zu d. Isothermen (geostrophisch)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 13 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'Divergenz Qn geostrophisch' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 14 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'Divergenz Qs geostrophisch' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 15 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'Frontogenesefunktion' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 16 ; - } - -#paramId: 500562 -#Divergenz -'Divergenz' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 17 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'Q-Vektor parallel zu den Isothermen' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 18 ; - } - -#paramId: 500564 -#Divergenz Qn -'Divergenz Qn' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 19 ; - } - -#paramId: 500565 -#Divergenz Qs -'Divergenz Qs' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 20 ; - } - -#paramId: 500566 -#Frontogenesis function -'Frontogenesis function' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 21 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'Clear Air Turbulence Index' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 22 ; - } - -#paramId: 500570 -#Dry convection top index -'Dry convection top index' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 202 ; - } - -#paramId: 500572 -#Tidal tendencies -'Tidal tendencies' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'Sea surface temperature interpolated in time in C' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500575 -#3 hour pressure change -'3 hour pressure change' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500577 -#Variance of soil moisture content -'Variance of soil moisture content' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500578 -#Covariance of soil moisture content -'Covariance of soil moisture content' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'Eddy Dissipation Rate' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 216 ; - } - -#paramId: 500586 -#Ellrod Index -'Ellrod Index' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 217 ; - } - -#paramId: 500591 -#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation -'Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 209 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500620 -#Prob Gewitter -'Prob Gewitter' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'Prob Starkes Gewitter' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'Prob Schweres Gewitter' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500623 -#Prob Dauerregen -'Prob Dauerregen' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'Prob Ergiebiger Dauerregen' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'Prob Extrem ergiebiger Dauerregen' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'Prob Schneeverwehung' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 7 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'Prob Starke Schneeverwehung' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500628 -#Prob Glaette -'Prob Glaette' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 9 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'Prob oertlich Glatteis' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 10 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500630 -#Prob Glatteis -'Prob Glatteis' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'Prob Nebel (ueberoertl. Sichtweite < 150 m)' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 12 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500632 -#Prob Tauwetter -'Prob Tauwetter' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 13 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'Prob Starkes Tauwetter' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 14 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500634 -#Wake-production of TKE due to sub-grid scale orography -'Wake-production of TKE due to sub-grid scale orography' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 220 ; - } - -#paramId: 500635 -#Shear-production of TKE due to separated horizontal shear modes -'Shear-production of TKE due to separated horizontal shear modes' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 221 ; - } - -#paramId: 500636 -#Buoyancy-production of TKE due to sub-grid scale convection -'Buoyancy-production of TKE due to sub-grid scale convection' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 219 ; - } - -#paramId: 500637 -#Production of TKE -'Production of TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 218 ; - } - -#paramId: 500638 -#Atmospheric resistance -'Atmospheric resistance' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 200 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'Height of thermals above MSL' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 197 ; - } - -#paramId: 500640 -#Mass concentration of dust (minimum mode) -'Mass concentration of dust (minimum mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 33 ; - } - -#paramId: 500643 -#Mass concentration of dust (medium mode) -'Mass concentration of dust (medium mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 34 ; - } - -#paramId: 500644 -#Mass concentration of dust (maximum mode) -'Mass concentration of dust (maximum mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 35 ; - } - -#paramId: 500645 -#Number concentration of dust (minimum mode) -'Number concentration of dust (minimum mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 72 ; - } - -#paramId: 500646 -#Number concentration of dust (medium mode) -'Number concentration of dust (medium mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 73 ; - } - -#paramId: 500647 -#Number concentration of dust (maximum mode) -'Number concentration of dust (maximum mode)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 74 ; - } - -#paramId: 500648 -#Mass concentration of dust (sum of all modes) -'Mass concentration of dust (sum of all modes)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 251 ; - } - -#paramId: 500649 -#Number concentration of dust (sum of all modes) -'Number concentration of dust (sum of all modes)' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'DUMMY_1' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'DUMMY_2' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'DUMMY_3' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'DUMMY_4' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'DUMMY_5' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'DUMMY_6' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'DUMMY_7' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'DUMMY_8' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'DUMMY_9' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'DUMMY_10' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'DUMMY_11' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'DUMMY_12' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'DUMMY_13' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'DUMMY_14' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'DUMMY_15' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'DUMMY_16' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'DUMMY_17' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'DUMMY_18' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'DUMMY_19' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'DUMMY_20' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'DUMMY_21' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'DUMMY_22' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'DUMMY_23' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'DUMMY_24' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'DUMMY_25' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'DUMMY_26' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'DUMMY_27' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'DUMMY_28' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'DUMMY_29' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'DUMMY_30' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'DUMMY_31' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'DUMMY_32' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'DUMMY_33' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'DUMMY_34' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'DUMMY_35' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'DUMMY_36' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'DUMMY_37' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'DUMMY_38' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'DUMMY_39' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'DUMMY_40' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'DUMMY_41' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'DUMMY_42' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'DUMMY_43' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'DUMMY_44' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'DUMMY_45' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'DUMMY_46' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'DUMMY_47' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'DUMMY_48' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'DUMMY_49' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'DUMMY_50' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'DUMMY_51' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'DUMMY_52' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'DUMMY_53' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'DUMMY_54' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'DUMMY_55' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'DUMMY_56' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'DUMMY_57' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'DUMMY_58' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'DUMMY_59' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'DUMMY_60' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'DUMMY_61' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'DUMMY_62' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'DUMMY_63' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'DUMMY_64' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'DUMMY_65' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'DUMMY_66' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'DUMMY_67' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'DUMMY_68' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'DUMMY_69' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'DUMMY_70' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'DUMMY_71' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'DUMMY_72' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'DUMMY_73' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'DUMMY_74' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'DUMMY_75' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'DUMMY_76' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'DUMMY_77' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'DUMMY_78' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'DUMMY_79' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'DUMMY_80' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'DUMMY_81' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'DUMMY_82' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'DUMMY_83' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'DUMMY_84' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'DUMMY_85' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'DUMMY_86' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'DUMMY_87' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'DUMMY_88' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'DUMMY_89' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'DUMMY_90' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'DUMMY_91' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'DUMMY_92' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'DUMMY_93' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'DUMMY_94' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'DUMMY_95' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'DUMMY_96' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'DUMMY_97' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'DUMMY_98' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'DUMMY_99' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'DUMMY_100' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'DUMMY_101' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'DUMMY_102' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'DUMMY_103' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'DUMMY_104' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'DUMMY_105' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'DUMMY_106' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'DUMMY_107' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'DUMMY_108' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'DUMMY_109' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'DUMMY_110' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'DUMMY_111' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'DUMMY_112' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'DUMMY_113' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'DUMMY_114' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'DUMMY_115' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'DUMMY_116' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'DUMMY_117' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'DUMMY_118' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'DUMMY_119' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'DUMMY_120' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'DUMMY_121' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'DUMMY_122' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'DUMMY_123' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'DUMMY_124' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'DUMMY_125' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'DUMMY_126' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'DUMMY_127' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'DUMMY_128' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'DUMMY_143' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'DUMMY_144' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'DUMMY_145' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'DUMMY_146' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'DUMMY_147' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'DUMMY_148' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'DUMMY_149' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'DUMMY_150' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'DUMMY_151' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'DUMMY_152' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'DUMMY_153' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'DUMMY_154' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'DUMMY_155' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'DUMMY_156' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'DUMMY_157' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'DUMMY_158' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'DUMMY_159' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'DUMMY_160' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'DUMMY_161' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'DUMMY_162' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'DUMMY_163' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'DUMMY_164' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'DUMMY_165' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'DUMMY_166' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'DUMMY_167' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'DUMMY_168' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'DUMMY_169' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'DUMMY_170' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'DUMMY_171' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'DUMMY_172' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'DUMMY_173' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'DUMMY_174' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'DUMMY_175' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'DUMMY_176' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'DUMMY_177' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'DUMMY_178' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'DUMMY_179' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'DUMMY_180' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'DUMMY_181' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'DUMMY_182' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'DUMMY_183' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'DUMMY_184' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'DUMMY_185' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'DUMMY_186' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'DUMMY_187' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'DUMMY_188' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'DUMMY_189' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'DUMMY_190' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'DUMMY_191' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'DUMMY_192' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'DUMMY_193' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'DUMMY_194' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'DUMMY_195' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'DUMMY_196' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'DUMMY_197' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'DUMMY_198' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'DUMMY_199' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'DUMMY_200' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'DUMMY_201' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'DUMMY_202' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'DUMMY_203' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'DUMMY_204' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'DUMMY_205' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'DUMMY_206' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'DUMMY_207' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'DUMMY_208' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'DUMMY_209' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'DUMMY_210' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'DUMMY_211' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'DUMMY_212' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'DUMMY_213' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'DUMMY_214' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'DUMMY_215' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'DUMMY_216' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'DUMMY_217' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'DUMMY_218' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'DUMMY_219' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'DUMMY_220' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'DUMMY_221' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'DUMMY_222' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'DUMMY_223' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'DUMMY_224' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'DUMMY_225' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'DUMMY_226' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'DUMMY_227' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'DUMMY_228' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'DUMMY_229' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'DUMMY_230' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'DUMMY_231' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'DUMMY_232' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'DUMMY_233' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'DUMMY_234' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'DUMMY_235' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'DUMMY_236' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'DUMMY_237' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'DUMMY_238' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'DUMMY_239' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'DUMMY_240' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'DUMMY_241' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'DUMMY_242' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'DUMMY_243' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'DUMMY_244' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'DUMMY_245' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'DUMMY_246' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'DUMMY_247' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'DUMMY_248' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'DUMMY_249' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'DUMMY_250' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'DUMMY_251' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'DUMMY_252' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'DUMMY_253' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'DUMMY_254' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 254 ; - } - -#paramId: 502332 -#Liquid water content in snow - multi level -'Liquid water content in snow - multi level' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 210 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux at surface -'Downward direct short wave radiation flux at surface' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502344 -#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) -'Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502345 -#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) -'Albedo - diffusive solar (UV: 0.3 - 0.7 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - } - -#paramId: 502346 -#Albedo - near infrared - time average (0.7 - 5.0 m-6) -'Albedo - near infrared - time average (0.7 - 5.0 m-6) ' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502347 -#Albedo - near infrared (0.7 - 5.0 m-6) -'Albedo - near infrared (0.7 - 5.0 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - } - -#paramId: 502352 -#Eddy Dissipation Rate Total Col-Max. Upper FIR -'Eddy Dissipation Rate Total Col-Max. Upper FIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 224 ; - } - -#paramId: 502353 -#Eddy Dissipation Rate Total Col-Max. Lower UIR -'Eddy Dissipation Rate Total Col-Max. Lower UIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 225 ; - } - -#paramId: 502354 -#Eddy Dissipation Rate Total Col-Max. Upper UIR -'Eddy Dissipation Rate Total Col-Max. Upper UIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 226 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'Eddy dissipitation rate of TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 227 ; - } - -#paramId: 503050 -#Radar precipitation rate -'Radar precipitation rate' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 195 ; - } - -#paramId: 503052 -#Radar quality information -'Radar quality information' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 196 ; - } - -#paramId: 503053 -#Radar blacklist -'Radar blacklist' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 197 ; - } - -#paramId: 503054 -#Height of radar beam above ground -'Height of radar beam above ground' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 198 ; - } - -#paramId: 503055 -#Specific humidity (diagnostic) -'Specific humidity (diagnostic)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 211 ; - } - -#paramId: 503056 -#Specific cloud water content (diagnostic) -'Specific cloud water content (diagnostic)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 212 ; - } - -#paramId: 503057 -#Specific cloud ice content (diagnostic) -'Specific cloud ice content (diagnostic) ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 213 ; - } - -#paramId: 503058 -#Total column integrated water vapour (diagnostic) -'Total column integrated water vapour (diagnostic) ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 214 ; - } - -#paramId: 503059 -#Total column integrated cloud water (diagnostic) -'Total column integrated cloud water (diagnostic) ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 215 ; - } - -#paramId: 503060 -#Total column integrated cloud ice (diagnostic) -'Total column integrated cloud ice (diagnostic) ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 216 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'precipitation, qualified,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503069 -#precipitation,BRD -'precipitation,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'precipitation phase,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503071 -#hail flag,BRD -'hail flag,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503072 -#snow_rate,BRD -'snow_rate,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503073 -#snow_rate,qualified,BRD -'snow_rate,qualified,BRD' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503074 -#Area weights for regular lon-lat grid -'Area weights for regular lon-lat grid ' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 193 ; - } - -#paramId: 503078 -#Relative humidity over mixed phase -'Relative humidity over mixed phase' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 220 ; - } - -#paramId: 503079 -#Soil moisture index (multilayers) -'Soil moisture index (multilayers)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 503096 -#Peak frequency (interpolated) -'Peak frequency (interpolated)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } - -#paramId: 503115 -#Specific number concentration of rain -'Specific number concentration of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 228 ; - } - -#paramId: 503116 -#Number density of rain -'Number density of rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 229 ; - } - -#paramId: 503117 -#Specific number concentration of snow -'Specific number concentration of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 217 ; - } - -#paramId: 503118 -#Specific number concentration of graupel -'Specific number concentration of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 218 ; - } - -#paramId: 503119 -#Specific number concentration of hail -'Specific number concentration of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 219 ; - } - -#paramId: 503120 -#Number density of snow -'Number density of snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 221 ; - } - -#paramId: 503121 -#Number density of graupel -'Number density of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 222 ; - } - -#paramId: 503122 -#Number density of hail -'Number density of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 223 ; - } - -#paramId: 503123 -#Mass density of rain -'Mass density of rain ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 224 ; - } - -#paramId: 503124 -#Mass density of snow -'Mass density of snow ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 225 ; - } - -#paramId: 503125 -#Mass density of graupel -'Mass density of graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 226 ; - } - -#paramId: 503126 -#Mass density of cloud droplets -'Mass density of cloud droplets' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 203 ; - } - -#paramId: 503127 -#Mass density of cloud ice -'Mass density of cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 204 ; - } - -#paramId: 503128 -#Mass density of hail -'Mass density of hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 227 ; - } - -#paramId: 503137 -#Eddy Dissipation Rate Total Col-Max. Lower FIR -'Eddy Dissipation Rate Total Col-Max. Lower FIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 228 ; - } - -#paramId: 503142 -#Lightning Potential Index -'Lightning Potential Index' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - } - -#paramId: 503143 -#Rain drain from snowpack - accumulation -'Rain drain from snowpack - accumulation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 230 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503146 -#Height of -10 degree Celsius isotherm -'Height of -10 degree Celsius isotherm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 503147 -# probability density function of EDP for turbulence greater well defined threshold and model grid box -' probability density function of EDP for turbulence greater well defined threshold and model grid box' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 229 ; - } - -#paramId: 503148 -#Adedokun 2 Index -'Adedokun 2 Index' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 503149 -#Downward direct short wave radiation flux at surface on horizontal plane (time average) -'Downward direct short wave radiation flux at surface on horizontal plane (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503150 -#Gauss Boaga Coordinates West to East,East Sector -'Gauss Boaga Coordinates West to East,East Sector' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 194 ; - } - -#paramId: 503151 -#Gauss Boaga Coordinates South to North,East Sector -'Gauss Boaga Coordinates South to North,East Sector' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 195 ; - } - -#paramId: 503152 -#Gauss Boaga Coordinates West to East, West Sector -'Gauss Boaga Coordinates West to East, West Sector' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 196 ; - } - -#paramId: 503153 -#Gauss Boaga Coordinates South to North, West Sector -'Gauss Boaga Coordinates South to North, West Sector' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 197 ; - } - -#paramId: 503156 -#Ellrod and Knapp turbulence index1 -'Ellrod and Knapp turbulence index1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 230 ; - } - -#paramId: 503157 -#Ellrod and Knapp turbulence index2 -'Ellrod and Knapp turbulence index2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 231 ; - } - -#paramId: 503158 -#Deformation of horizontal wind field -'Deformation of horizontal wind field' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 29 ; - } - -#paramId: 503159 -#Divergence trend (scaled divergence tendency needed for CAT_DVI) -'Divergence trend (scaled divergence tendency needed for CAT_DVI)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 232 ; - } - -#paramId: 503160 -#Divergence modified turbulence index (Ellrod and Knox) -'Divergence modified turbulence index (Ellrod and Knox)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 233 ; - } - -#paramId: 503161 -#Cloud ice ratio qi/(qc+qi) -'Cloud ice ratio qi/(qc+qi)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 231 ; - } - -#paramId: 503162 -#Percentage of convective precipitation (from total prec) -'Percentage of convective precipitation (from total prec)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 232 ; - } - -#paramId: 503163 -#Deep convection index -'Deep convection index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503164 -#Wind direction in azimuth class -'Wind direction in azimuth class' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 503165 -#Wind direction in azimuth class -'Wind direction in azimuth class' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503167 -#Possible astronomical maximum of sunshine -'Possible astronomical maximum of sunshine' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) -'Relative duration of sunshine (DURSUN * 100 / DURSUN_M)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503171 -#Enthalpy -'Enthalpy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } - -#paramId: 503172 -#2m Enthalpy -'2m Enthalpy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503175 -#Downward short wave radiation flux at surface on horizontal plane (time average) -'Downward short wave radiation flux at surface on horizontal plane (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503176 -#Downward short wave radiation flux at surface on vertical surface facing east (time average) -'Downward short wave radiation flux at surface on vertical surface facing east (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 202 ; - } - -#paramId: 503177 -#Downward short wave radiation flux at surface on vertical surface facing north (time average) -'Downward short wave radiation flux at surface on vertical surface facing north (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 203 ; - } - -#paramId: 503178 -#Downward short wave radiation flux at surface on vertical surface facing south (time average) -'Downward short wave radiation flux at surface on vertical surface facing south (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 204 ; - } - -#paramId: 503179 -#Downward short wave radiation flux at surface on vertical surface facing west (time average) -'Downward short wave radiation flux at surface on vertical surface facing west (time average)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 205 ; - } - -#paramId: 503180 -#Along-wind Lagrangian time scale (Hanna) -'Along-wind Lagrangian time scale (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 503181 -#Cross-wind Lagrangian time scale (Hanna) -'Cross-wind Lagrangian time scale (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503182 -#Vertical Lagrangian time scale (Hanna) -'Vertical Lagrangian time scale (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503183 -#Zonal Lagrangian time scale (direct) (Hanna) -'Zonal Lagrangian time scale (direct) (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503184 -#Meridional Lagrangian time scale (direct) (Hanna) -'Meridional Lagrangian time scale (direct) (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503185 -#Vertical Lagrangian time scale (direct) (Hanna) -'Vertical Lagrangian time scale (direct) (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503187 -#Height of level of free convection of mixed (mean) layer parcel -'Height of level of free convection of mixed (mean) layer parcel' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 194 ; - } - -#paramId: 503188 -#Luminosity -'Luminosity' = { - discipline = 215 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 503189 -#Downward long-wave radiation flux at surface based on T_2M (time average) -'Downward long-wave radiation flux at surface based on T_2M (time average)' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503190 -#Downward long-wave radiation flux at surface based on T_G (time average) -'Downward long-wave radiation flux at surface based on T_G (time average)' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503191 -#Downward long-wave radiation flux at surface based on T_SO(0) (time average) -'Downward long-wave radiation flux at surface based on T_SO(0) (time average)' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503194 -#Pressure difference between cloud base and cloud top -'Pressure difference between cloud base and cloud top' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503198 -#Along-wind velocity fluctuation (Hanna) -'Along-wind velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503199 -#Cross-wind velocity fluctuation (Hanna) -'Cross-wind velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 503200 -#Vertical velocity fluctuation (Hanna) -'Vertical velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 503201 -#Zonal velocity fluctuation (Hanna) -'Zonal velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 503202 -#Meridional velocity fluctuation (Hanna) -'Meridional velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 503203 -#Vertical velocity fluctuation (Hanna) -'Vertical velocity fluctuation (Hanna)' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503205 -#Percentage of precipitation in snow (from total prec.) -'Percentage of precipitation in snow (from total prec.)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 233 ; - } - -#paramId: 503206 -#Thunderstorm index for Switzerland (night time) -'Thunderstorm index for Switzerland (night time)' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 503207 -#Thunderstorm index for Switzerland (day time) -'Thunderstorm index for Switzerland (day time)' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 503208 -#Swiss coordinate (south-north) -'Swiss coordinate (south-north)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 198 ; - } - -#paramId: 503209 -#Swiss coordinate (west-east) -'Swiss coordinate (west-east)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 199 ; - } - -#paramId: 503217 -#2m temperature, corrected in presence of snow -'2m temperature, corrected in presence of snow' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503218 -#Universal thermal climate index without direct incident short wave radiation -'Universal thermal climate index without direct incident short wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } - -#paramId: 503222 -#Relative geostrophic vorticity -'Relative geostrophic vorticity' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 26 ; - } - -#paramId: 503223 -#Relative geostrophic vorticity advection -'Relative geostrophic vorticity advection' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 27 ; - } - -#paramId: 503226 -#Wind divergence (3D) -'Wind divergence (3D)' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 28 ; - } - -#paramId: 503227 -#Mean vertical wind shear for specified layer or layer-mean vertical wind shear -'Mean vertical wind shear for specified layer or layer-mean vertical wind shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 201 ; - } - -#paramId: 503228 -#Norm of (vertical) wind shear vector between two levels -'Norm of (vertical) wind shear vector between two levels' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 202 ; - } - -#paramId: 503282 -#Diagnostic total column of activity concentration of radionuclides -'Diagnostic total column of activity concentration of radionuclides' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503283 -#Liquid water potential temperature variance -'Liquid water potential temperature variance' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 0 ; - } - -#paramId: 503284 -#Total water specific humidity variance -'Total water specific humidity variance' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 1 ; - } - -#paramId: 503285 -#Liquid water potential temperature - total water specific humidity covariance -'Liquid water potential temperature - total water specific humidity covariance' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 2 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'Impervious (paved or sealed) surface fraction' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'Antropogenic heat flux (e.g. urban heating, traffic)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } - -#paramId: 503292 -#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) -'Sea ice albedo - diffusive solar (0.3 - 5.0 m-6)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 234 ; - } - -#paramId: 503299 -#Sky-view-factor -'Sky-view-factor' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 0 ; - } - -#paramId: 503300 -#Horizon angle - topography -'Horizon angle - topography' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 1 ; - } - -#paramId: 503301 -#Slope aspect - topography -'Slope aspect - topography' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 3 ; - } - -#paramId: 503302 -#Slope angle - topography -'Slope angle - topography' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 2 ; - } - -#paramId: 503339 -#Threshold friction velocity -'Threshold friction velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 203 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'Maximum updraft track (over given time interval and column)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'Maximum of Lightning Potential Index (over given time interval)' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503351 -#mean radiation temperature of an environment assumed black body related to standing human -'mean radiation temperature of an environment assumed black body related to standing human' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 4 ; - } - -#paramId: 503355 -#Maximum 10m dynamical gust -'Maximum 10m dynamical gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503356 -#Maximum 10m convective gust -'Maximum 10m convective gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503358 -#Standard deviation of saturation deficit -'Standard deviation of saturation deficit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 234 ; - } - -#paramId: 503359 -#Evaporation of plants (integrated since "nightly reset") -'Evaporation of plants (integrated since "nightly reset")' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } - -#paramId: 503363 -#Number of birch (betula) pollen in the reservoir (previous timestep) -'Number of birch (betula) pollen in the reservoir (previous timestep)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62101 ; - } - -#paramId: 503364 -#Number of birch (betula) pollen released into the reservoir (new) -'Number of birch (betula) pollen released into the reservoir (new)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62101 ; - } - -#paramId: 503365 -#Sum of released birch (betula) pollen into the reservoir (daily sum) -'Sum of released birch (betula) pollen into the reservoir (daily sum)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62101 ; - } - -#paramId: 503366 -#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) -'State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62101 ; - } - -#paramId: 503367 -#Height correction for emission (decreasing emission with height) for birch (betula) -'Height correction for emission (decreasing emission with height) for birch (betula) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503369 -#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen -'Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62101 ; - } - -#paramId: 503370 -#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503371 -#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503372 -#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) -'Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62101 ; - } - -#paramId: 503373 -#Length of birch (betula) pollen season -'Length of birch (betula) pollen season' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62101 ; - } - -#paramId: 503374 -#Pollen number emission flux for birch (betula) -'Pollen number emission flux for birch (betula) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62101 ; - } - -#paramId: 503377 -#Number of alder (alnus) pollen in the reservoir (previous timestep) -'Number of alder (alnus) pollen in the reservoir (previous timestep)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62100 ; - } - -#paramId: 503378 -#Number of alder (alnus) pollen released into the reservoir (new) -'Number of alder (alnus) pollen released into the reservoir (new)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62100 ; - } - -#paramId: 503379 -#Sum of released alder (alnus) pollen into the reservoir (daily sum) -'Sum of released alder (alnus) pollen into the reservoir (daily sum)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62100 ; - } - -#paramId: 503380 -#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) -'State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62100 ; - } - -#paramId: 503381 -#Height correction for emission (decreasing emission with height) for alder (alnus) -'Height correction for emission (decreasing emission with height) for alder (alnus) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503383 -#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen -'Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62100 ; - } - -#paramId: 503384 -#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503385 -#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503386 -#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) -'Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62100 ; - } - -#paramId: 503387 -#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) -'Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62100 ; - } - -#paramId: 503388 -#Length of alder (alnus) pollen season -'Length of alder (alnus) pollen season' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62100 ; - } - -#paramId: 503389 -#Pollen number emission flux for alder (alnus) -'Pollen number emission flux for alder (alnus) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62100 ; - } - -#paramId: 503392 -#Number of grasses (poaceae) pollen in the reservoir (previous timestep) -'Number of grasses (poaceae) pollen in the reservoir (previous timestep)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62300 ; - } - -#paramId: 503393 -#Number of grasses (poaceae) pollen released into the reservoir (new) -'Number of grasses (poaceae) pollen released into the reservoir (new)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62300 ; - } - -#paramId: 503394 -#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) -'Sum of released grasses (poaceae) pollen into the reservoir (daily sum)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62300 ; - } - -#paramId: 503395 -#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) -'State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62300 ; - } - -#paramId: 503396 -#Height correction for emission (decreasing emission with height) for grasses (poaceae) -'Height correction for emission (decreasing emission with height) for grasses (poaceae) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503398 -#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen -'Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62300 ; - } - -#paramId: 503399 -#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503400 -#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503401 -#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) -'Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62300 ; - } - -#paramId: 503402 -#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) -'Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62300 ; - } - -#paramId: 503403 -#Length of grasses (poaceae) pollen season -'Length of grasses (poaceae) pollen season' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62300 ; - } - -#paramId: 503404 -#Pollen number emission flux for grasses (poaceae) -'Pollen number emission flux for grasses (poaceae) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62300 ; - } - -#paramId: 503407 -#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) -'Number of ragweed (ambrosia) pollen in the reservoir (previous timestep)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62200 ; - } - -#paramId: 503408 -#Number of ragweed (ambrosia) pollen released into the reservoir (new) -'Number of ragweed (ambrosia) pollen released into the reservoir (new)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62200 ; - } - -#paramId: 503409 -#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) -'Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62200 ; - } - -#paramId: 503410 -#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) -'State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62200 ; - } - -#paramId: 503411 -#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) -'Height correction for emission (decreasing emission with height) for ragweed (ambrosia) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503413 -#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen -'Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62200 ; - } - -#paramId: 503414 -#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503415 -#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) -'Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503416 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) -'Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62200 ; - } - -#paramId: 503417 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) -'Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62200 ; - } - -#paramId: 503418 -#Length of ragweed (ambrosia) pollen season -'Length of ragweed (ambrosia) pollen season' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62200 ; - } - -#paramId: 503419 -#Pollen number emission flux for ragweed (ambrosia) -'Pollen number emission flux for ragweed (ambrosia) ' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62200 ; - } - -#paramId: 503420 -#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) -'Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62101 ; - } - -#paramId: 503424 -#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. -'Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those.' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 235 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } - -#paramId: 503426 -#Maximum snow height during contiguous accumulating snow period (coupled with snow age) -'Maximum snow height during contiguous accumulating snow period (coupled with snow age)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 235 ; - } - -#paramId: 503427 -#U-component of (vertical) wind shear vector between two levels -'U-component of (vertical) wind shear vector between two levels' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 208 ; - } - -#paramId: 503428 -#V-component of (vertical) wind shear vector between two levels -'V-component of (vertical) wind shear vector between two levels' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 209 ; - } - -#paramId: 503440 -#Accumulated wet deposition of dust if rain reaches the surface for mode 1 -'Accumulated wet deposition of dust if rain reaches the surface for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503441 -#Accumulated wet deposition of dust if rain reaches the surface for mode 2 -'Accumulated wet deposition of dust if rain reaches the surface for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503442 -#Accumulated wet deposition of dust if rain reaches the surface for mode 3 -'Accumulated wet deposition of dust if rain reaches the surface for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503446 -#Accumulated dry deposition of dust number concentration for mode 1 -'Accumulated dry deposition of dust number concentration for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503447 -#Accumulated dry deposition of dust number concentration for mode 2 -'Accumulated dry deposition of dust number concentration for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503448 -#Accumulated dry deposition of dust number concentration for mode 3 -'Accumulated dry deposition of dust number concentration for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503449 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 -'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503450 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 -'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503451 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 -'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503452 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 -'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503453 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 -'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503454 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 -'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503455 -#Accumulated sedimentation of dust number concentration for mode 1 -'Accumulated sedimentation of dust number concentration for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503456 -#Accumulated sedimentation of dust number concentration for mode 2 -'Accumulated sedimentation of dust number concentration for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503457 -#Accumulated sedimentation of dust number concentration for mode 3 -'Accumulated sedimentation of dust number concentration for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503460 -#Mineral dust backscatter (not attenuated, for given wave length) -'Mineral dust backscatter (not attenuated, for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62001 ; - } - -#paramId: 503463 -#Volcanic ash backscatter (not attenuated, for given wave length) -'Volcanic ash backscatter (not attenuated, for given wave length)' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62025 ; - } - -#paramId: 503464 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 -'Accumulated wet deposition by convective precipitation of dust number concentration for mode 3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503465 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 -'Accumulated wet deposition by convective precipitation of dust number concentration for mode 2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503466 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 -'Accumulated wet deposition by convective precipitation of dust number concentration for mode 1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503549 -#Swiss coordinate LV 95 (south-north) -'Swiss coordinate LV 95 (south-north)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 200 ; - } - -#paramId: 503550 -#Swiss coordinate LV 95 (west-east) -'Swiss coordinate LV 95 (west-east)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 201 ; - } - -#paramId: 503555 -#Average hail diameter -'Average hail diameter' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503556 -#Standard deviation of hail diameter -'Standard deviation of hail diameter' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 6 ; - } - -#paramId: 503557 -#Maximum hail diameter -'Maximum hail diameter' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503558 -#Duration of updraft -'Duration of updraft' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 210 ; - } - -#paramId: 503559 -#Updraft mask -'Updraft mask' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 211 ; - } - diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def b/eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def deleted file mode 100755 index 9b31c68c..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/paramId.def +++ /dev/null @@ -1,14348 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'500000' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500001 -#Pressure -'500001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'500002' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'500003' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'500004' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'500005' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 105 ; - typeOfFirstFixedSurface = 105 ; - } - -#paramId: 500006 -#Geopotential -'500006' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'500007' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'500008' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'500009' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } - -#paramId: 500010 -#Temperature (G) -'500010' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500011 -#2m Temperature -'500011' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'500012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'500013' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 9 ; - } - -#paramId: 500014 -#Temperature -'500014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'500015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'500016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'500017' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'500018' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'500019' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500020 -#Wave spectra (1) -'500020' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500021 -#Wave spectra (2) -'500021' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500022 -#Wave spectra (3) -'500022' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'500023' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'500024' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'500025' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'500026' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500027 -#U-Component of Wind -'500027' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'500028' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500029 -#V-Component of Wind -'500029' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'500030' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'500031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'500032' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'500034' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'500035' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500036 -#2m Relative Humidity -'500036' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'500037' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'500038' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } - -#paramId: 500039 -#Evaporation (s) -'500039' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'500040' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'500041' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'500042' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'500043' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'500044' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } - -#paramId: 500045 -#Snow Depth -'500045' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 500046 -#Total Cloud Cover -'500046' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'500047' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'500048' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'500049' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'500050' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'500051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'500052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'500053' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'500054' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'500055' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'500056' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'500057' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'500058' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'500059' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'500060' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'500061' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'500062' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'500063' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'500064' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500065 -#Plant cover -'500065' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500066 -#Water Runoff -'500066' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'500068' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'500069' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'500070' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'500071' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500072 -#Direction of wind waves -'500072' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500073 -#Significant height of wind waves -'500073' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 500074 -#Mean period of wind waves -'500074' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 500075 -#Direction of swell waves -'500075' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500076 -#Significant height of swell waves -'500076' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500077 -#Mean period of swell waves -'500077' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'500078' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'500079' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'500080' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'500081' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'500082' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'500083' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'500084' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'500085' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'500086' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'500087' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'500088' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'500089' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'500090' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'500091' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'500092' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'500093' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'500094' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'500095' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500097 -#Stomatal resistance -'500097' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } - -#paramId: 500098 -#Cloud cover -'500098' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'500099' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'500100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'500101' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - } - -#paramId: 500102 -#Rain mixing ratio -'500102' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } - -#paramId: 500103 -#Snow mixing ratio -'500103' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } - -#paramId: 500104 -#Total column integrated rain -'500104' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } - -#paramId: 500105 -#Total column integrated snow -'500105' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } - -#paramId: 500106 -#Grauple -'500106' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } - -#paramId: 500107 -#Total column integrated grauple -'500107' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'500108' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - } - -#paramId: 500109 -#Vertical integral of divergence of total water content - accumulation -'500109' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500110 -#Sub-grid scale cloud water -'500110' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } - -#paramId: 500111 -#Sub-grid scale cloud ice -'500111' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } - -#paramId: 500115 -#Cloud base above MSL, shallow convection -'500115' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500116 -#Cloud top above MSL, shallow convection -'500116' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500117 -#Specific cloud liquid water content, convective cloud -'500117' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'500118' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'500119' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500120 -#Base index (vertical level) of main convective cloud -'500120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500121 -#Top index (vertical level) of main convective cloud -'500121' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'500122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'500123' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - } - -#paramId: 500124 -#Zonal wind tendency due to convection -'500124' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - } - -#paramId: 500125 -#Meridional wind tendency due to convection -'500125' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'500126' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'500127' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'500128' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'500129' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - } - -#paramId: 500130 -#Tendency of specific cloud ice content due to convection -'500130' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'500131' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - } - -#paramId: 500132 -#Large scale rain rate -'500132' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'500133' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'500134' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500135 -#Convective rain rate -'500135' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'500136' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } - -#paramId: 500137 -#Convective rain -'500137' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'500138' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'500139' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipitation -'500140' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'500141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - } - -#paramId: 500142 -#Tendency of specific cloud liquid water content due to grid scale precipitation -'500142' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'500143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } - -#paramId: 500144 -#Tendency of specific cloud ice content due to grid scale precipitation -'500144' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'500145' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'500146' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500147 -#Snow density -'500147' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } - -#paramId: 500148 -#Pressure perturbation -'500148' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500149 -#Supercell detection index 1 (rot. up- and downdrafts) -'500149' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } - -#paramId: 500150 -#Supercell detection index 2 (only rot. updrafts) -'500150' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'500151' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'500152' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'500153' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'500154' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'500155' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'500156' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } - -#paramId: 500157 -#Kinetic energy -'500157' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'500158' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'500159' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'500160' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'500161' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'500162' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 500163 -#mixed layer depth -'500163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } - -#paramId: 500164 -#maximum Wind 10m -'500164' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'500166' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'500167' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'500168' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'500169' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'500170' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'500171' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'500172' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500173 -#Base reflectivity -'500173' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'500174' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'500175' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500176 -#Solution of 2-d Helmholtz equations - needed for restart -'500176' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 192 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'500177' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - } - -#paramId: 500178 -#Sum of contributions to evaporation -'500178' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500179 -#Total transpiration from all soil layers -'500179' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500180 -#Total forcing at soil surface -'500180' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500181 -#Residuum of soil moisture -'500181' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500182 -#Mass flux at convective cloud base -'500182' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'500183' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } - -#paramId: 500184 -#Moisture convergence for Kuo-type closure -'500184' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - } - -#paramId: 500185 -#Direction of combined wind waves and swell -'500185' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 500187 -#Peak period of total swell -'500187' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 500189 -#Peak period of wind waves -'500189' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 500190 -#Peak wave period -'500190' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } - -#paramId: 500191 -#Mean period of combined wind waves and swell -'500191' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500192 -#Inverse mean wave frequency -'500192' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 500193 -#Mean zero-crossing wave period -'500193' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500194 -#Wave directional width -'500194' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } - -#paramId: 500195 -#Analysis error (standard deviation), geopotential (gpm) -'500195' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500196 -#Analysis error (standard deviation), u-comp. of wind -'500196' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500197 -#Analysis error (standard deviation), v-comp. of wind -'500197' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500198 -#Zonal wind tendency due to sub-grid scale oro. -'500198' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - } - -#paramId: 500199 -#Meridional wind tendency due to sub-grid scale oro. -'500199' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'500200' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'500201' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'500202' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'500203' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } - -#paramId: 500204 -#Surface emissivity -'500204' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } - -#paramId: 500205 -#Soil type (1...9, local soilType.table) -'500205' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 500206 -#Leaf area index -'500206' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500207 -#root depth of vegetation -'500207' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 500208 -#Height of ozone maximum (climatological) -'500208' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - } - -#paramId: 500209 -#Vertically integrated ozone content (climatological) -'500209' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'500210' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'500211' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500212 -#Max Leaf area index -'500212' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500213 -#Min Leaf area index -'500213' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'500214' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500215 -#variance of soil moisture content (0-10) -'500215' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500216 -#variance of soil moisture content (10-100) -'500216' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500217 -#evergreen forest -'500217' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 500218 -#deciduous forest -'500218' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'500219' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'500220' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500221 -#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'500221' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500222 -#Ratio of NDVI (normalized differential vegetation index) to annual maximum -'500222' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'500223' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62006 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'500224' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62006 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'500225' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62001 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'500226' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62001 ; - } - -#paramId: 500227 -#Organic aerosol -'500227' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62010 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'500228' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62010 ; - } - -#paramId: 500229 -#Black carbon aerosol -'500229' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62009 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'500230' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62009 ; - } - -#paramId: 500231 -#Sea salt aerosol -'500231' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62008 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'500232' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62008 ; - } - -#paramId: 500233 -#Tendency of specific humidity -'500233' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - } - -#paramId: 500234 -#Water vapor flux -'500234' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } - -#paramId: 500235 -#Coriolis parameter -'500235' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - } - -#paramId: 500236 -#geographical latitude -'500236' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } - -#paramId: 500237 -#geographical longitude -'500237' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } - -#paramId: 500238 -#Friction velocity -'500238' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } - -#paramId: 500239 -#Delay of the GPS signal through the (total) atmos. -'500239' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - } - -#paramId: 500240 -#Delay of the GPS signal through wet atmos. -'500240' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - } - -#paramId: 500241 -#Delay of the GPS signal through dry atmos. -'500241' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'500242' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'500243' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30102 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'500244' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30102 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'500245' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30102 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'500246' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30067 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'500247' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30067 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'500248' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30067 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'500249' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30141 ; - } - -#paramId: 500250 -#I131a - dry deposition -'500250' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30141 ; - } - -#paramId: 500251 -#I131a - wet deposition -'500251' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30141 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'500252' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30172 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'500253' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30172 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'500255' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30129 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'500256' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30129 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'500257' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30129 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'500258' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30079 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'500259' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30079 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'500260' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30079 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'500261' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30059 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'500262' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30059 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'500263' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30059 ; - } - -#paramId: 500264 -#TRACER - concentration -'500264' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30000 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'500265' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30000 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'500266' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30000 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'500267' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30161 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'500268' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30161 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'500269' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30161 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'500270' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30138 ; - } - -#paramId: 500271 -#I131g - dry deposition -'500271' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30138 ; - } - -#paramId: 500272 -#I131g - wet deposition -'500272' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30138 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'500273' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30139 ; - } - -#paramId: 500274 -#I131o - dry deposition -'500274' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30139 ; - } - -#paramId: 500275 -#I131o - wet deposition -'500275' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30139 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'500276' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30175 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'500277' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30175 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'500278' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30175 ; - } - -#paramId: 500279 -#U-momentum flux due to SSO-effects (mean over forecast time) -'500279' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500280 -#U-momentum flux due to SSO-effects -'500280' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500281 -#V-momentum flux due to SSO-effects (mean over forecast time) -'500281' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500282 -#V-momentum flux due to SSO-effects -'500282' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500283 -#Gravity wave dissipation (initialisation) -'500283' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'500284' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'500285' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500286 -#Vertical speed shear -'500286' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } - -#paramId: 500287 -#storm relative helicity -'500287' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'500288' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 197 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) -'500289' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 194 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'500290' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'500291' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 24 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'500292' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'500293' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 0 ; - } - -#paramId: 500294 -#Geostrophic thickness advection -'500294' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 1 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'500295' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 2 ; - } - -#paramId: 500296 -#Winddivergenz -'500296' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 3 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'500297' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 4 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'500298' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'500299' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 5 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'500300' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 6 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'500301' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500302 -#KO index -'500302' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'500303' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500304 -#Ceiling -'500304' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'500305' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } - -#paramId: 500306 -#Modified cloud depth for media -'500306' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - } - -#paramId: 500307 -#Modified cloud cover for media -'500307' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'500308' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'500309' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'500310' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'500311' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'500312' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'500313' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'500314' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'500315' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'500316' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'500317' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'500318' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'500319' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'500320' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'500321' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500322 -#RMS of difference "first guess - analysis" of kinetic energy -'500322' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500323 -#RMS of difference "initialized analysis - analysis" of kinetic energy -'500323' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'500324' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'500325' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'500326' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'500327' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'500328' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'500329' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'500330' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'500331' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'500332' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'500333' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'500334' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'500335' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'500336' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'500337' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'500338' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'500339' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'500340' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'500341' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'500342' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'500343' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'500344' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'500345' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'500346' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'500347' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'500348' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'500349' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'500350' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'500351' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'500352' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'500353' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'500354' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'500355' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'500356' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'500357' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'500358' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'500359' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'500360' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'500361' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'500362' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'500363' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'500364' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'500365' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'500366' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'500367' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'500368' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'500369' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'500370' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'500371' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'500372' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'500373' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'500374' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'500375' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'500376' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'500377' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'500378' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'500379' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'500380' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'500381' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'500382' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'500383' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'500384' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'500385' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'500386' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'500387' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'500388' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500389 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500389' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - } - -#paramId: 500390 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500390' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - } - -#paramId: 500391 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500391' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - } - -#paramId: 500392 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'500392' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1250000 ; - } - -#paramId: 500393 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500393' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500394 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500394' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - } - -#paramId: 500395 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500395' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500396 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500396' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500397 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500397' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500398 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500398' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500399 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500399' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500400 -#Obser. Sat. Meteosat sec. generation brightness temperature -'500400' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'500401' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500404 -# -'500404' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500408 -# -'500408' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500409 -# -'500409' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500410 -# -'500410' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500411 -# -'500411' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500412 -# -'500412' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500416 -# -'500416' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500417 -# -'500417' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500418 -# -'500418' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'500419' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'500420' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'500421' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'500422' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500423 -# -'500423' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500424 -# -'500424' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500425 -# -'500425' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500428 -#Latent Heat Net Flux (m) Initialisation -'500428' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500429 -# -'500429' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500430 -#Momentum Flux, U-Component (m) Initialisation -'500430' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500431 -#Momentum Flux, V-Component (m) Initialisation -'500431' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500432 -#Photosynthetically active radiation -'500432' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500433 -# -'500433' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500434 -# -'500434' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500436 -# -'500436' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'500437' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'500438' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'500439' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 14 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'500440' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'500441' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'500442' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'500443' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 32 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'500444' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 69 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'500445' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 70 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'500446' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 71 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'500447' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 72 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'500448' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 74 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'500449' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'500450' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'500451' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 132 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'500452' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 134 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'500453' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 136 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'500454' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 137 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'500455' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 138 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'500456' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 139 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'500457' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 191 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'500458' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'500459' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'500460' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'500461' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 212 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'500462' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 213 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'500463' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 232 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'500464' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 236 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'500465' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 195 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'500466' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 196 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'500467' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 197 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'500468' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500469 -#Total ozone -'500469' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'500471' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500472 -#Type of convection (0..4) -'500472' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 201 ; - } - -#paramId: 500473 -#perceived temperature -'500473' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 1 ; - } - -#paramId: 500474 -#wind chill factor -'500474' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500475 -#Water temperature -'500475' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500477 -#Absolute Vorticity -'500477' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'500478' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 3 ; - } - -#paramId: 500479 -#value of isolation of clothes -'500479' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 2 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'500480' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'500481' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'500482' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500486 -# -'500486' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500487 -#Downward direct short wave radiation flux (mean over forecast time) Initialisation -'500487' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500488 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'500488' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500489 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) Initialisation -'500489' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500490 -#Water Fraction -'500490' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500491 -#Lake depth -'500491' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500492 -#Wind fetch -'500492' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 33 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'500493' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'500494' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 164 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'500495' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 164 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'500496' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'500497' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'500498' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500499 -#Mixed-layer depth -'500499' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'500500' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 166 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'500501' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 165 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'500502' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 165 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500503 -#Icing Base (hft) - Icing Degree Composit -'500503' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Icing Degree Composit -'500504' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Icing Degree Composit -'500505' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500506 -#Icing Top (hft) - Icing Degree Composit -'500506' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'500507' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'500508' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500509 -#Icing Base (hft) - Icing Scenario Composit -'500509' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'500510' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'500511' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500512 -#Icing Top (hft) - Icing Scenario Composit -'500512' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'500513' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'500514' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500515 -#Icing Base (hft) - Icing Degree Composit -'500515' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Icing Degree Composit -'500516' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Icing Degree Composit -'500517' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500518 -#Icing Top (hft) - Icing Degree Composit -'500518' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'500519' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'500520' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500521 -#Icing Base (hft) - Icing Scenario Composit -'500521' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'500522' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'500523' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500524 -#Icing Top (hft) - Icing Scenario Composit -'500524' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'500525' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'500526' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500527 -#Icing Degree Code (1=light,2=moderate,3=severe) -'500527' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500528 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'500528' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500529 -#Icing Degree Code (1=light,2=moderate,3=severe) -'500529' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500530 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'500530' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'500531' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 209 ; - } - -#paramId: 500538 -#cloud type -'500538' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500539 -#cloud top height -'500539' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 500540 -#cloud top temperature -'500540' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } - -#paramId: 500541 -#Relative vorticity, u-component -'500541' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 198 ; - } - -#paramId: 500542 -#Relative vorticity, v-component -'500542' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 199 ; - } - -#paramId: 500543 -#vertical vorticity -'500543' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 500544 -#Potential vorticity -'500544' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } - -#paramId: 500545 -#Density -'500545' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 500546 -#Altimeter Settings -'500546' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'500547' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500548 -#Soil moisture -'500548' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 500549 -#Soil moisture -'500549' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'500550' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 23 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'500551' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 7 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'500552' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 8 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'500553' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 9 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'500554' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 10 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'500555' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 11 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'500556' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 12 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'500557' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 13 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'500558' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 14 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'500559' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 15 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'500560' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 16 ; - } - -#paramId: 500562 -#Divergenz -'500562' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 17 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'500563' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 18 ; - } - -#paramId: 500564 -#Divergenz Qn -'500564' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 19 ; - } - -#paramId: 500565 -#Divergenz Qs -'500565' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 20 ; - } - -#paramId: 500566 -#Frontogenesis function -'500566' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 21 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'500567' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 22 ; - } - -#paramId: 500568 -#Geopotential height -'500568' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 500569 -#Relative Divergenz -'500569' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } - -#paramId: 500570 -#Dry convection top index -'500570' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 202 ; - } - -#paramId: 500572 -#Tidal tendencies -'500572' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'500573' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'500574' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } - -#paramId: 500575 -#3 hour pressure change -'500575' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500576 -# -'500576' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500577 -#Variance of soil moisture content -'500577' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500578 -#Covariance of soil moisture content -'500578' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'500579' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'500580' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 7 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'500581' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 50 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 7 ; - } - -#paramId: 500582 -# -'500582' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500583 -#Min 2m Temperature (i) Initialisation -'500583' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500584 -#Sunshine duration -'500584' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'500585' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 216 ; - } - -#paramId: 500586 -#Ellrod Index -'500586' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 217 ; - } - -#paramId: 500588 -#Snow melt -'500588' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'500590' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 500591 -#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation -'500591' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 209 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500593 -#Global radiation flux -'500593' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 500594 -#exner pressure -'500594' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } - -#paramId: 500595 -#normal wind component -'500595' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 34 ; - } - -#paramId: 500596 -#tangential wind component -'500596' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 35 ; - } - -#paramId: 500597 -#virtual potential temperature -'500597' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500598 -#Current Direction -'500598' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500599 -#Current Speed -'500599' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500600 -#Prob Windboeen > 25 kn -'500600' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500601 -#Prob Windboeen > 27 kn -'500601' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500602 -#Prob Sturmboeen > 33 kn -'500602' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500603 -#Prob Sturmboeen > 40 kn -'500603' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500604 -#Prob Schwere Sturmboeen > 47 kn -'500604' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500605 -#Prob Orkanartige Boeen > 55 kn -'500605' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500606 -#Prob Orkanboeen > 63 kn -'500606' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500607 -#Prob Oberoertliche Orkanboeen > 75 kn -'500607' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500608 -#Prob Starkregen > 10 mm -'500608' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500609 -#Prob Heftiger Starkregen > 25 mm -'500609' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500610 -#Prob Extrem Heftiger Starkregen > 50 mm -'500610' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500611 -#Prob Leichter Schneefall > 0,1 mm -'500611' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500612 -#Prob Leichter Schneefall > 0,1 cm -'500612' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500613 -#Prob Leichter Schneefall > 0,5 cm -'500613' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500614 -#Prob Leichter Schneefall > 1 cm -'500614' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500615 -#Prob Schneefall > 5 cm -'500615' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500616 -#Prob Starker Schneefall > 10 cm -'500616' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500617 -#Prob Extrem starker Schneefall > 25 cm -'500617' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500618 -#Prob Frost -'500618' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500619 -#Prob Strenger Frost -'500619' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500620 -#Prob Gewitter -'500620' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'500621' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'500622' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500623 -#Prob Dauerregen -'500623' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'500624' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'500625' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'500626' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 7 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'500627' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500628 -#Prob Glaette -'500628' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 9 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'500629' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 10 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500630 -#Prob Glatteis -'500630' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'500631' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 12 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500632 -#Prob Tauwetter -'500632' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 13 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'500633' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 14 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500634 -#Wake-production of TKE due to sub-grid scale orography -'500634' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 220 ; - } - -#paramId: 500635 -#Shear-production of TKE due to separated horizontal shear modes -'500635' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 221 ; - } - -#paramId: 500636 -#Buoyancy-production of TKE due to sub-grid scale convection -'500636' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 219 ; - } - -#paramId: 500637 -#Production of TKE -'500637' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 218 ; - } - -#paramId: 500638 -#Atmospheric resistance -'500638' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 200 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'500639' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 197 ; - } - -#paramId: 500640 -#Mass concentration of dust (minimum mode) -'500640' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 33 ; - } - -#paramId: 500642 -#Lapse rate -'500642' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500643 -#Mass concentration of dust (medium mode) -'500643' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 34 ; - } - -#paramId: 500644 -#Mass concentration of dust (maximum mode) -'500644' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 35 ; - } - -#paramId: 500645 -#Number concentration of dust (minimum mode) -'500645' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 72 ; - } - -#paramId: 500646 -#Number concentration of dust (medium mode) -'500646' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 73 ; - } - -#paramId: 500647 -#Number concentration of dust (maximum mode) -'500647' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 74 ; - } - -#paramId: 500648 -#Mass concentration of dust (sum of all modes) -'500648' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 251 ; - } - -#paramId: 500649 -#Number concentration of dust (sum of all modes) -'500649' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'500650' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'500651' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'500652' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'500654' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'500655' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'500656' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'500657' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'500658' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'500659' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'500660' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'500661' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'500662' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'500663' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'500664' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'500665' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'500666' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'500667' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'500668' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'500669' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'500670' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'500671' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'500672' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'500673' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'500674' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'500675' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'500676' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'500677' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'500678' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'500679' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'500680' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'500681' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'500682' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'500683' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'500684' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'500685' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'500686' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'500687' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'500688' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'500689' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'500690' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'500691' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'500692' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'500693' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'500694' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'500695' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'500696' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'500697' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'500698' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'500699' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'500700' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'500701' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'500702' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'500703' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'500704' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'500705' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'500706' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'500707' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'500708' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'500709' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'500710' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'500711' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'500712' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'500713' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'500714' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'500715' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'500716' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'500717' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'500718' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'500719' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'500720' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'500721' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'500722' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'500723' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'500724' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'500725' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'500726' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'500727' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'500728' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'500729' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'500730' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'500731' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'500732' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'500733' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'500734' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'500735' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'500736' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'500737' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'500738' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'500739' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'500740' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'500741' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'500742' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'500743' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'500744' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'500745' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'500746' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'500747' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'500748' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'500749' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'500750' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'500751' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'500752' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'500753' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'500754' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'500755' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'500756' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'500757' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'500758' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'500759' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'500760' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'500761' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'500762' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'500763' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'500764' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'500765' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'500766' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'500767' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'500768' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'500769' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'500770' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'500771' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'500772' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'500773' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'500774' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'500775' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'500776' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'500777' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'500778' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 128 ; - } - -#paramId: 500779 -#Effective radius of cloud water -'500779' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#Effective radius of rain -'500780' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#Effective radius of cloud ice -'500781' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#Effective radius of snow -'500782' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#Effective radius of graupel -'500783' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#Effective radius of hail -'500784' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#Effective radius of subgrid liquid clouds -'500785' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#Effective radius of subgrid ice clouds -'500786' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#Effective aspect ratio of rain -'500787' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#Effective aspect ratio of cloud ice -'500788' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#Effective aspect ratio of snow -'500789' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#Effective aspect ratio of graupel -'500790' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#Effective aspect ratio of hail -'500791' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#Effective aspect ratio of subgrid ice clouds -'500792' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 142 ; - } - -#paramId: 500793 -#DUMMY_143 -'500793' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'500794' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'500795' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'500796' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'500797' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'500798' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'500799' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'500800' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'500801' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'500802' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'500803' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'500804' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'500805' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'500806' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'500807' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'500808' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'500809' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'500810' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'500811' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'500812' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'500813' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'500814' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'500815' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'500816' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'500817' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'500818' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'500819' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'500820' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'500821' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'500822' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'500823' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'500824' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'500825' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'500826' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'500827' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'500828' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'500829' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'500830' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'500831' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'500832' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'500833' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'500834' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'500835' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'500836' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'500837' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'500838' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'500839' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'500840' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'500841' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'500842' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'500843' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'500844' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'500845' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'500846' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'500847' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'500848' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'500849' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'500850' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'500851' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'500852' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'500853' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'500854' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'500855' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'500856' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'500857' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'500858' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'500859' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'500860' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'500861' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'500862' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'500863' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'500864' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'500865' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'500866' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'500867' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'500868' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'500869' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'500870' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'500871' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'500872' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'500873' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'500874' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'500875' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'500876' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'500877' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'500878' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'500879' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'500880' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'500881' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'500882' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'500883' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'500884' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'500885' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'500886' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'500887' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'500888' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'500889' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'500890' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'500891' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'500892' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'500893' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'500894' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'500895' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'500896' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'500897' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'500898' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'500899' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'500900' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'500901' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'500902' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'500903' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'500904' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 254 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'500905' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'502307' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'502308' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } - -#paramId: 502309 -#center latitude -'502309' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502310 -#center longitude -'502310' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502311 -#edge midpoint latitude -'502311' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502312 -#edge midpoint longitude -'502312' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502313 -#vertex latitude -'502313' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502314 -#vertex longitude -'502314' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502315 -#Number of cloud droplets per unit mass of air -'502315' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 28 ; - } - -#paramId: 502316 -#Number of cloud ice particles per unit mass of air -'502316' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 29 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'502317' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'502318' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502319 -#Latent Heat Net Flux - accumulated _ surface -'502319' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502320 -#Sensible Heat Net Flux - accumulated _ surface -'502320' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502321 -#Net short wave radiation flux - accumulated _ surface -'502321' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502322 -#Net long wave radiation flux - accumulated _ surface -'502322' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502323 -#Net long wave radiation flux - accumulated _ model top -'502323' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502327 -#Net short wave radiation flux - accumulated _ model top -'502327' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502328 -#Snow temperature - multi level -'502328' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502329 -#Snow depth - multi level -'502329' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502330 -#Snow density in - multi level -'502330' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502331 -#Water equivalent of accumulated snoe depth in - multi level -'502331' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502332 -#Liquid water content in snow - multi level -'502332' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 210 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502333 -#salinity -'502333' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 502334 -#Stream function -'502334' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 502335 -#Velocity potential -'502335' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 502336 -#Skin temperature -'502336' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux at surface -'502339' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502340 -#Snow cover -'502340' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } - -#paramId: 502341 -#Cloud Cover (0 - 400 hPa) -'502341' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 40000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502342 -#Cloud Cover (400 - 800 hPa) -'502342' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 80000 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 40000 ; - } - -#paramId: 502343 -#Cloud Cover (800 hPa - Soil) -'502343' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 80000 ; - } - -#paramId: 502344 -#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) -'502344' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502345 -#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) -'502345' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - } - -#paramId: 502346 -#Albedo - near infrared - time average (0.7 - 5.0 m-6) -'502346' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502347 -#Albedo - near infrared (0.7 - 5.0 m-6) -'502347' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - } - -#paramId: 502348 -#Water Runoff (s) -'502348' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502349 -#Water Runoff -'502349' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 1 ; - } - -#paramId: 502352 -#Eddy Dissipation Rate Total Col-Max. Upper FIR -'502352' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 224 ; - } - -#paramId: 502353 -#Eddy Dissipation Rate Total Col-Max. Lower UIR -'502353' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 225 ; - } - -#paramId: 502354 -#Eddy Dissipation Rate Total Col-Max. Upper UIR -'502354' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 226 ; - } - -#paramId: 502397 -#Virtual Temperature -'502397' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502424 -#Vertical u-component shear -'502424' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } - -#paramId: 502425 -#Vertical v-component shear -'502425' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } - -#paramId: 502693 -#Potential temperature -'502693' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502700 -#Boundary layer dissipation -'502700' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } - -#paramId: 502701 -#Sunshine duration -'502701' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502702 -#Brightness temperature -'502702' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } - -#paramId: 502703 -#Heat index -'502703' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502705 -#Total column water -'502705' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } - -#paramId: 502706 -#Large scale precipitation (non-convective) -'502706' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502707 -#Snowfall rate water equivalent -'502707' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502708 -#Convective snow -'502708' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } - -#paramId: 502709 -#Large scale snow -'502709' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } - -#paramId: 502710 -#Snow age -'502710' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } - -#paramId: 502711 -#Absolute humidity -'502711' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } - -#paramId: 502712 -#Precipitation type -'502712' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } - -#paramId: 502713 -#Integrated liquid water -'502713' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } - -#paramId: 502714 -#Condensate -'502714' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } - -#paramId: 502715 -#Ice water mixing ratio -'502715' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } - -#paramId: 502717 -#Maximum relative humidity -'502717' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } - -#paramId: 502718 -#Maximum absolute humidity -'502718' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } - -#paramId: 502719 -#Total snowfall -'502719' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } - -#paramId: 502720 -#Precipitable water category -'502720' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } - -#paramId: 502721 -#Hail -'502721' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } - -#paramId: 502722 -#Categorical rain -'502722' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } - -#paramId: 502723 -#Categorical freezing rain -'502723' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } - -#paramId: 502724 -#Categorical ice pellets -'502724' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } - -#paramId: 502725 -#Categorical snow -'502725' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } - -#paramId: 502727 -#Percent frozen precipitation -'502727' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } - -#paramId: 502728 -#Potential evaporation -'502728' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } - -#paramId: 502729 -#Potential evaporation rate -'502729' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } - -#paramId: 502730 -#Rain fraction of total cloud water -'502730' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } - -#paramId: 502731 -#Rime factor -'502731' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } - -#paramId: 502732 -#Large scale water precipitation (non-convective) -'502732' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } - -#paramId: 502733 -#Convective water precipitation -'502733' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } - -#paramId: 502734 -#Total water precipitation -'502734' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } - -#paramId: 502735 -#Total snow precipitation -'502735' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } - -#paramId: 502737 -#Snow Fall water equivalent -'502737' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } - -#paramId: 502738 -#Convective snowfall rate -'502738' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } - -#paramId: 502739 -#Large scale snowfall rate -'502739' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } - -#paramId: 502740 -#Water equivalent of accumulated snow depth -'502740' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502741 -#Freezing rain precipitation rate -'502741' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } - -#paramId: 502742 -#Ice pellets precipitation rate -'502742' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } - -#paramId: 502743 -#Maximum wind speed -'502743' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } - -#paramId: 502744 -#u-component of wind (gust) -'502744' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } - -#paramId: 502745 -#v-component of wind (gust) -'502745' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - -#paramId: 502746 -#Horizontal momentum flux -'502746' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } - -#paramId: 502747 -#U-component storm motion -'502747' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } - -#paramId: 502748 -#V-component storm motion -'502748' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } - -#paramId: 502749 -#Thickness -'502749' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502751 -#Minimum dew point depression -'502751' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502752 -#Pressure altitude -'502752' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502753 -#Density altitude -'502753' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502754 -#5-wave geopotential height -'502754' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502755 -#Zonal flux of gravity wave stress -'502755' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502756 -#Meridional flux of gravity wave stress -'502756' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 502757 -#Planetary boundary layer height -'502757' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } - -#paramId: 502758 -#5-wave geopotential height anomaly -'502758' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 502759 -#Net short-wave radiation flux (top of atmosphere) -'502759' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502760 -#Downward short-wave radiation flux -'502760' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } - -#paramId: 502761 -#Net short-wave radiation flux, clear sky -'502761' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } - -#paramId: 502762 -#Downward UV radiation -'502762' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } - -#paramId: 502763 -#Net long wave radiation flux (surface) -'502763' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } - -#paramId: 502764 -#Net long wave radiation flux (top of atmosphere) -'502764' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } - -#paramId: 502765 -#Downward long-wave radiation flux -'502765' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } - -#paramId: 502766 -#Upward long-wave radiation flux -'502766' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } - -#paramId: 502767 -#Net long-wave radiation flux, clear sky -'502767' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } - -#paramId: 502768 -#Cloud Ice -'502768' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } - -#paramId: 502769 -#Cloud water -'502769' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } - -#paramId: 502770 -#Cloud amount -'502770' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } - -#paramId: 502771 -#Cloud type -'502771' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } - -#paramId: 502772 -#Thunderstorm maximum tops -'502772' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } - -#paramId: 502773 -#Thunderstorm coverage -'502773' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } - -#paramId: 502774 -#Cloud base -'502774' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } - -#paramId: 502775 -#Cloud top -'502775' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } - -#paramId: 502776 -#Cloud work function -'502776' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } - -#paramId: 502777 -#Convective cloud efficiency -'502777' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } - -#paramId: 502778 -#Total condensate -'502778' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } - -#paramId: 502779 -#Total column-integrated cloud water -'502779' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } - -#paramId: 502780 -#Total column-integrated cloud ice -'502780' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } - -#paramId: 502781 -#Total column-integrated condensate -'502781' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } - -#paramId: 502782 -#Ice fraction of total condensate -'502782' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } - -#paramId: 502783 -#Cloud ice mixing ratio -'502783' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } - -#paramId: 502785 -#K index -'502785' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 502786 -#Total totals index -'502786' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } - -#paramId: 502787 -#Sweat index -'502787' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } - -#paramId: 502788 -#Energy helicity index -'502788' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } - -#paramId: 502789 -#Surface lifted index -'502789' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } - -#paramId: 502790 -#Best (4-layer) lifted index -'502790' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } - -#paramId: 502791 -#Aerosol type -'502791' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } - -#paramId: 502792 -#Base spectrum width -'502792' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } - -#paramId: 502793 -#Base radial velocity -'502793' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } - -#paramId: 502794 -#Vertically-integrated liquid -'502794' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } - -#paramId: 502795 -#Layer-maximum base reflectivity -'502795' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } - -#paramId: 502796 -#Precipitation -'502796' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 502797 -#Air concentration of Caesium 137 -'502797' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } - -#paramId: 502798 -#Air concentration of Iodine 131 -'502798' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } - -#paramId: 502799 -#Air concentration of radioactive pollutant -'502799' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } - -#paramId: 502800 -#Ground deposition of Caesium 137 -'502800' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } - -#paramId: 502801 -#Ground deposition of Iodine 131 -'502801' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } - -#paramId: 502802 -#Ground deposition of radioactive pollutant -'502802' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } - -#paramId: 502843 -#Time-integrated air concentration of caesium pollutant -'502843' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } - -#paramId: 502844 -#Time-integrated air concentration of iodine pollutant -'502844' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } - -#paramId: 502845 -#Time-integrated air concentration of radioactive pollutant -'502845' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } - -#paramId: 502846 -#Volcanic ash -'502846' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } - -#paramId: 502847 -#Icing top -'502847' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } - -#paramId: 502848 -#Icing base -'502848' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } - -#paramId: 502849 -#Turbulence top -'502849' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } - -#paramId: 502850 -#Turbulence base -'502850' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } - -#paramId: 502851 -#Turbulence -'502851' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } - -#paramId: 502852 -#Planetary boundary layer regime -'502852' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } - -#paramId: 502853 -#Contrail intensity -'502853' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } - -#paramId: 502854 -#Contrail engine type -'502854' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } - -#paramId: 502855 -#Contrail top -'502855' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } - -#paramId: 502856 -#Contrail base -'502856' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } - -#paramId: 502857 -#Maximum snow albedo -'502857' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } - -#paramId: 502858 -#Icing -'502858' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } - -#paramId: 502859 -#Horizontal extent of cumulonimbus (CB) -'502859' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } - -#paramId: 502860 -#In-cloud turbulence -'502860' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } - -#paramId: 502861 -#Clear air turbulence (CAT) -'502861' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } - -#paramId: 502862 -#Supercooled large droplet probability (see Note 4) -'502862' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } - -#paramId: 502864 -#Seconds prior to initial reference time (defined in Section 1) -'502864' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502865 -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'502865' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 502866 -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'502866' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502867 -#Remotely sensed snow cover -'502867' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502868 -#Elevation of snow covered terrain -'502868' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 502869 -#Snow water equivalent percent of normal -'502869' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502870 -#Baseflow-groundwater runoff -'502870' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502871 -#Storm surface runoff -'502871' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502872 -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'502872' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502873 -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'502873' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502874 -#Probability of 0.01 inch of precipitation (POP) -'502874' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502875 -#Evapotranspiration -'502875' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502876 -#Land use -'502876' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 502877 -#Volumetric soil moisture content -'502877' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502878 -#Ground heat flux -'502878' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502879 -#Moisture availability -'502879' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502880 -#Exchange coefficient -'502880' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502881 -#Blackadar mixing length scale -'502881' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502882 -#Canopy conductance -'502882' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 502883 -#Solar parameter in canopy conductance -'502883' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 502885 -#Soil moisture parameter in canopy conductance -'502885' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 502886 -#Humidity parameter in canopy conductance -'502886' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 502887 -#Column-integrated soil water -'502887' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 502888 -#Heat flux -'502888' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 502889 -#Volumetric soil moisture -'502889' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 502890 -#Volumetric wilting point -'502890' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 502891 -#Upper layer soil temperature -'502891' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502892 -#Upper layer soil moisture -'502892' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } - -#paramId: 502893 -#Lower layer soil moisture -'502893' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 502894 -#Bottom layer soil temperature -'502894' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 502895 -#Liquid volumetric soil moisture (non-frozen) -'502895' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 502896 -#Number of soil layers in root zone -'502896' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } - -#paramId: 502897 -#Transpiration stress-onset (soil moisture) -'502897' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502898 -#Direct evaporation cease (soil moisture) -'502898' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502899 -#Soil porosity -'502899' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502900 -#Liquid volumetric soil moisture (non-frozen) -'502900' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 502919 -#Volumetric transpiration stress-onset (soil moisture) -'502919' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 502920 -#Transpiration stress-onset (soil moisture) -'502920' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502921 -#Volumetric direct evaporation cease (soil moisture) -'502921' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502922 -#Direct evaporation cease (soil moisture) -'502922' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502923 -#Soil porosity -'502923' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502924 -#Volumetric saturation of soil moisture -'502924' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502926 -#Estimated precipitation -'502926' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502927 -#Instantaneous rain rate -'502927' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502928 -#Cloud top height quality indicator -'502928' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502929 -#Estimated u component of wind -'502929' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 502930 -#Estimated v component of wind -'502930' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502931 -#Number of pixels used -'502931' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } - -#paramId: 502932 -#Solar zenith angle -'502932' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502933 -#Reflectance in 0.6 micron channel -'502933' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502934 -#Reflectance in 0.8 micron channel -'502934' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502935 -#Reflectance in 1.6 micron channel -'502935' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 502936 -#Reflectance in 3.9 micron channel -'502936' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502937 -#Atmospheric divergence -'502937' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502938 -#Primary wave direction -'502938' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502939 -#Primary wave mean period -'502939' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502940 -#Secondary wave mean period -'502940' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 502941 -#Deviation of sea level from mea -'502941' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502942 -#Seconds prior to initial reference time (defined in Section 1) -'502942' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502943 -#Standard deviation of height -'502943' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502944 -#Maximum temperature -'502944' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502945 -#Minimum temperature -'502945' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502946 -#Visibility -'502946' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 502947 -#Radar spectra (2) -'502947' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } - -#paramId: 502948 -#Radar spectra (3) -'502948' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } - -#paramId: 502949 -#Parcel lifted index (to 500 hPa) -'502949' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 502950 -#Temperature anomaly -'502950' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502951 -#Pressure anomaly -'502951' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502952 -#Geopotential height anomaly -'502952' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502953 -#Montgomery stream Function -'502953' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 502954 -#Sigma coordinate vertical velocity -'502954' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 502955 -#Absolute divergence -'502955' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 502958 -#U-component of current -'502958' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502959 -#V-component of current -'502959' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502960 -#Precipitable water -'502960' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502961 -#Saturation deficit -'502961' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502962 -#Precipitation rate -'502962' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502963 -#Thunderstorm probability -'502963' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } - -#paramId: 502964 -#Convective precipitation (water) -'502964' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502965 -#Transient thermocline depth -'502965' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } - -#paramId: 502966 -#Main thermocline depth -'502966' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 502967 -#Main thermocline anomaly -'502967' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502968 -#Best lifted index (to 500 hPa) -'502968' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 502969 -#Soil moisture content -'502969' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 503011 -#Salinity -'503011' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 503012 -#Direction of ice drift -'503012' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503013 -#Speed of ice drift -'503013' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503014 -#U-component of ice drift -'503014' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503015 -#V-component of ice drift -'503015' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503016 -#Ice growth rate -'503016' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503017 -#Ice divergence -'503017' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503019 -#Secondary wave direction -'503019' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 503020 -#Net short-wave radiation flux (surface) -'503020' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 503021 -#Radiance (with respect to wave number) -'503021' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } - -#paramId: 503022 -#Radiance (with respect to wave length) -'503022' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } - -#paramId: 503023 -#Convective inhibition -'503023' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } - -#paramId: 503024 -#Wind mixing energy -'503024' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } - -#paramId: 503025 -#Soil Temperature -'503025' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 503028 -#Wilting point -'503028' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 503038 -#Snow phase change heat flux -'503038' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503039 -#Vapor pressure -'503039' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 503047 -#Land use class fraction -'503047' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 503048 -#Saturation of soil moisture -'503048' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'503049' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 227 ; - } - -#paramId: 503050 -#Radar precipitation rate -'503050' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 195 ; - } - -#paramId: 503052 -#Radar quality information -'503052' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 196 ; - } - -#paramId: 503053 -#Radar blacklist -'503053' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 197 ; - } - -#paramId: 503054 -#Height of radar beam above ground -'503054' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 198 ; - } - -#paramId: 503055 -#Specific humidity (diagnostic) -'503055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 211 ; - } - -#paramId: 503056 -#Specific cloud water content (diagnostic) -'503056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 212 ; - } - -#paramId: 503057 -#Specific cloud ice content (diagnostic) -'503057' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 213 ; - } - -#paramId: 503058 -#Total column integrated water vapour (diagnostic) -'503058' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 214 ; - } - -#paramId: 503059 -#Total column integrated cloud water (diagnostic) -'503059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 215 ; - } - -#paramId: 503060 -#Total column integrated cloud ice (diagnostic) -'503060' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 216 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'503061' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'503062' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'503063' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'503064' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503065 -#u-momentum flux due to SSO-effects -'503065' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 503066 -#v-momentum flux due to SSO-effects -'503066' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'503068' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503069 -#precipitation,BRD -'503069' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'503070' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503071 -#hail flag,BRD -'503071' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503072 -#snow_rate,BRD -'503072' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503073 -#snow_rate,qualified,BRD -'503073' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503074 -#Area weights for regular lon-lat grid -'503074' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 193 ; - } - -#paramId: 503075 -#Geometric height of the earths surface above mean sea level at vertex point (ICON) -'503075' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - numberOfGridInReference = 2 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'503076' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503078 -#Relative humidity over mixed phase -'503078' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 220 ; - } - -#paramId: 503079 -#Soil moisture index (multilayers) -'503079' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 503080 -#Land use class -'503080' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 503081 -#Water depth -'503081' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } - -#paramId: 503082 -#Friction velocity -'503082' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } - -#paramId: 503083 -#Coefficient of drag with waves -'503083' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503084 -#Normalized wave stress -'503084' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 503085 -#Inverse mean frequency of wind waves -'503085' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } - -#paramId: 503086 -#Mean zero-crossing period of wind waves -'503086' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 503087 -#Directional width of wind waves -'503087' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 503088 -#Inverse mean frequency of total swell -'503088' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503089 -#Inverse mean zero crossing period of total swell -'503089' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 503090 -#Directional width of total swell -'503090' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } - -#paramId: 503091 -#Goda peakedness parameter -'503091' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 45 ; - } - -#paramId: 503092 -#Spectral kurtosis -'503092' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 43 ; - } - -#paramId: 503093 -#Benjamin-Feir index -'503093' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 44 ; - } - -#paramId: 503094 -#Maximum individual wave height -'503094' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 503095 -#Maximum wave period -'503095' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 503096 -#Peak frequency (interpolated) -'503096' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } - -#paramId: 503097 -#Meansquare slope -'503097' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 503106 -#Hail mixing ratio -'503106' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 71 ; - } - -#paramId: 503107 -#Hail -'503107' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 72 ; - } - -#paramId: 503108 -#Hail precipitation rate -'503108' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - } - -#paramId: 503109 -#Reflectivity of cloud droplets -'503109' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 9 ; - } - -#paramId: 503110 -#Reflectivity of cloud ice -'503110' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 10 ; - } - -#paramId: 503111 -#Reflectivity of snow -'503111' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 11 ; - } - -#paramId: 503112 -#Reflectivity of rain -'503112' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 12 ; - } - -#paramId: 503113 -#Reflectivity of graupel -'503113' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 13 ; - } - -#paramId: 503114 -#Reflectivity of hail -'503114' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 14 ; - } - -#paramId: 503115 -#Specific number concentration of rain -'503115' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 228 ; - } - -#paramId: 503116 -#Number density of rain -'503116' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 229 ; - } - -#paramId: 503117 -#Specific number concentration of snow -'503117' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 217 ; - } - -#paramId: 503118 -#Specific number concentration of graupel -'503118' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 218 ; - } - -#paramId: 503119 -#Specific number concentration of hail -'503119' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 219 ; - } - -#paramId: 503120 -#Number density of snow -'503120' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 221 ; - } - -#paramId: 503121 -#Number density of graupel -'503121' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 222 ; - } - -#paramId: 503122 -#Number density of hail -'503122' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 223 ; - } - -#paramId: 503123 -#Mass density of rain -'503123' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 224 ; - } - -#paramId: 503124 -#Mass density of snow -'503124' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 225 ; - } - -#paramId: 503125 -#Mass density of graupel -'503125' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 226 ; - } - -#paramId: 503126 -#Mass density of cloud droplets -'503126' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 203 ; - } - -#paramId: 503127 -#Mass density of cloud ice -'503127' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 204 ; - } - -#paramId: 503128 -#Mass density of hail -'503128' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 227 ; - } - -#paramId: 503130 -#Hail precipitation rate, accumulation -'503130' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503132 -#Number density of cloud droplets -'503132' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 30 ; - } - -#paramId: 503133 -#Number density of cloud ice particles -'503133' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 31 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'503134' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'503135' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'503136' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503137 -#Eddy Dissipation Rate Total Col-Max. Lower FIR -'503137' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 228 ; - } - -#paramId: 503142 -#Lightning Potential Index -'503142' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - } - -#paramId: 503143 -#Rain drain from snowpack - accumulation -'503143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 230 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503145 -#2m absolute humidity -'503145' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503146 -#Height of -10 degree Celsius isotherm -'503146' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 503147 -# probability density function of EDP for turbulence greater well defined threshold and model grid box -'503147' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 229 ; - } - -#paramId: 503148 -#Adedokun 2 Index -'503148' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 503149 -#Downward direct short wave radiation flux at surface on horizontal plane (time average) -'503149' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503150 -#Gauss Boaga Coordinates West to East,East Sector -'503150' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 194 ; - } - -#paramId: 503151 -#Gauss Boaga Coordinates South to North,East Sector -'503151' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 195 ; - } - -#paramId: 503152 -#Gauss Boaga Coordinates West to East, West Sector -'503152' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 196 ; - } - -#paramId: 503153 -#Gauss Boaga Coordinates South to North, West Sector -'503153' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 197 ; - } - -#paramId: 503154 -#Bulk Richardson number -'503154' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 16 ; - } - -#paramId: 503155 -#Cape of mixed (mean) layer parcel, ascent up to 3 km -'503155' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 3000 ; - } - -#paramId: 503156 -#Ellrod and Knapp turbulence index1 -'503156' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 230 ; - } - -#paramId: 503157 -#Ellrod and Knapp turbulence index2 -'503157' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 231 ; - } - -#paramId: 503158 -#Deformation of horizontal wind field -'503158' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 29 ; - } - -#paramId: 503159 -#Divergence trend (scaled divergence tendency needed for CAT_DVI) -'503159' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 232 ; - } - -#paramId: 503160 -#Divergence modified turbulence index (Ellrod and Knox) -'503160' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 233 ; - } - -#paramId: 503161 -#Cloud ice ratio qi/(qc+qi) -'503161' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 231 ; - } - -#paramId: 503162 -#Percentage of convective precipitation (from total prec) -'503162' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 232 ; - } - -#paramId: 503163 -#Deep convection index -'503163' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503164 -#Wind direction in azimuth class -'503164' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 503165 -#Wind direction in azimuth class -'503165' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503166 -#Geostrophic wind direction -'503166' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 43 ; - } - -#paramId: 503167 -#Possible astronomical maximum of sunshine -'503167' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) -'503168' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503169 -#Dewpoint depression -'503169' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 503170 -#2m dewpoint depression -'503170' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503171 -#Enthalpy -'503171' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } - -#paramId: 503172 -#2m Enthalpy -'503172' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503173 -#Geostrophic wind speed -'503173' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 44 ; - } - -#paramId: 503174 -#Downward short wave radiation flux at surface (time average) -'503174' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503175 -#Downward short wave radiation flux at surface on horizontal plane (time average) -'503175' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503176 -#Downward short wave radiation flux at surface on vertical surface facing east (time average) -'503176' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 202 ; - } - -#paramId: 503177 -#Downward short wave radiation flux at surface on vertical surface facing north (time average) -'503177' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 203 ; - } - -#paramId: 503178 -#Downward short wave radiation flux at surface on vertical surface facing south (time average) -'503178' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 204 ; - } - -#paramId: 503179 -#Downward short wave radiation flux at surface on vertical surface facing west (time average) -'503179' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 205 ; - } - -#paramId: 503180 -#Along-wind Lagrangian time scale (Hanna) -'503180' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 503181 -#Cross-wind Lagrangian time scale (Hanna) -'503181' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503182 -#Vertical Lagrangian time scale (Hanna) -'503182' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503183 -#Zonal Lagrangian time scale (direct) (Hanna) -'503183' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503184 -#Meridional Lagrangian time scale (direct) (Hanna) -'503184' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503185 -#Vertical Lagrangian time scale (direct) (Hanna) -'503185' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503186 -#Height of lifting condensation level of mixed (mean) layer parcel -'503186' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 5 ; - } - -#paramId: 503187 -#Height of level of free convection of mixed (mean) layer parcel -'503187' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 194 ; - } - -#paramId: 503188 -#Luminosity -'503188' = { - discipline = 215 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 503189 -#Downward long-wave radiation flux at surface based on T_2M (time average) -'503189' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503190 -#Downward long-wave radiation flux at surface based on T_G (time average) -'503190' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503191 -#Downward long-wave radiation flux at surface based on T_SO(0) (time average) -'503191' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503192 -#Humidity mixing ratio -'503192' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 503193 -#2m Humidity mixing ratio -'503193' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503194 -#Pressure difference between cloud base and cloud top -'503194' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503195 -#relative humidity over ice -'503195' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } - -#paramId: 503196 -#Gradient Richardson number -'503196' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 17 ; - } - -#paramId: 503197 -#Showalter index -'503197' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 13 ; - } - -#paramId: 503198 -#Along-wind velocity fluctuation (Hanna) -'503198' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503199 -#Cross-wind velocity fluctuation (Hanna) -'503199' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 503200 -#Vertical velocity fluctuation (Hanna) -'503200' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 503201 -#Zonal velocity fluctuation (Hanna) -'503201' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 503202 -#Meridional velocity fluctuation (Hanna) -'503202' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 503203 -#Vertical velocity fluctuation (Hanna) -'503203' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503204 -#Surface lifted index -'503204' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503205 -#Percentage of precipitation in snow (from total prec.) -'503205' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 233 ; - } - -#paramId: 503206 -#Thunderstorm index for Switzerland (night time) -'503206' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 503207 -#Thunderstorm index for Switzerland (day time) -'503207' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 503208 -#Swiss coordinate (south-north) -'503208' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 198 ; - } - -#paramId: 503209 -#Swiss coordinate (west-east) -'503209' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 199 ; - } - -#paramId: 503210 -#2m potential temperature -'503210' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503211 -#Dew point temperature -'503211' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 503212 -#2m equivalentTemperature -'503212' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503213 -#2m virtual potential temperature -'503213' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503214 -#Temperature at cloud top -'503214' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503215 -#Wet bulb temperature -'503215' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503216 -#2m wet bulb temperature -'503216' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503217 -#2m temperature, corrected in presence of snow -'503217' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503218 -#Universal thermal climate index without direct incident short wave radiation -'503218' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } - -#paramId: 503219 -#Universal thermal climate index with direct incident short wave radiation -'503219' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 503220 -#u-component of geostrophic wind -'503220' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 41 ; - } - -#paramId: 503221 -#v-component of geostrophic wind -'503221' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 42 ; - } - -#paramId: 503222 -#Relative geostrophic vorticity -'503222' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 26 ; - } - -#paramId: 503223 -#Relative geostrophic vorticity advection -'503223' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 27 ; - } - -#paramId: 503226 -#Wind divergence (3D) -'503226' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 28 ; - } - -#paramId: 503227 -#Mean vertical wind shear for specified layer or layer-mean vertical wind shear -'503227' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 201 ; - } - -#paramId: 503228 -#Norm of (vertical) wind shear vector between two levels -'503228' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 202 ; - } - -#paramId: 503229 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 -'503229' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503230 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 -'503230' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503231 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 -'503231' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503232 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 -'503232' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 4 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503233 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 -'503233' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 5 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503234 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 -'503234' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 6 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503235 -#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) -'503235' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503236 -#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) -'503236' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503237 -#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) -'503237' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503238 -#Modal prognostic specific number concentration of volcanic ash particles (fine mode) -'503238' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503239 -#Modal prognostic specific number concentration of volcanic ash particles (medium mode) -'503239' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503240 -#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) -'503240' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503241 -#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) -'503241' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503242 -#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) -'503242' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503243 -#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) -'503243' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503244 -#Modal prognostic specific number concentration of mineral dust particles (fine mode) -'503244' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503245 -#Modal prognostic specific number concentration of mineral dust particles (medium mode) -'503245' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503246 -#Modal prognostic specific number concentration of mineral dust particles (coarsemode) -'503246' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503247 -#Modal prognostic mass mixing ratio of sea salt particles (fine mode) -'503247' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503248 -#Modal prognostic mass mixing ratio of sea salt particles (medium mode) -'503248' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503249 -#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) -'503249' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503250 -#Modal prognostic specific number concentration of sea salt particles (fine mode) -'503250' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503251 -#Modal prognostic specific number concentration of sea salt particles (medium mode) -'503251' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503252 -#Modal prognostic specific number concentration of sea salt particles (coarse mode) -'503252' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503253 -#Cs137 - wet deposition -'503253' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - -#paramId: 503254 -#Prognostic specific activity concentration of Iodine 131 aerosol -'503254' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30141 ; - } - -#paramId: 503255 -#Te132 - total (wet + dry) deposition -'503255' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30129 ; - } - -#paramId: 503256 -#Prognostic specific activity concentration of Zirconium 95 -'503256' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30079 ; - } - -#paramId: 503257 -#Prognostic specific activity concentration of Xenon 133 -'503257' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30161 ; - } - -#paramId: 503258 -#Prognostic specific activity concentration of Iodine 131 elementary gaseous -'503258' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30138 ; - } - -#paramId: 503259 -#Prognostic specific activity concentration of Iodine 131 organic bounded -'503259' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30139 ; - } - -#paramId: 503260 -#Prognostic specific activity concentration of Barium 140 -'503260' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30175 ; - } - -#paramId: 503261 -#Prognostic specific activity concentration of Ruthenium 103 -'503261' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30102 ; - } - -#paramId: 503262 -#Diagnostic total mass concentration of volcanic ash -'503262' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 0 ; - constituentType = 62025 ; - } - -#paramId: 503263 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 -'503263' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 46500 ; - constituentType = 62025 ; - } - -#paramId: 503265 -#Diagnostic total column of mass concentration of volcanic ash -'503265' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - constituentType = 62025 ; - } - -#paramId: 503266 -#Diagnostic height of model layer with maximal total mass concentration of volcanic ash -'503266' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 62 ; - constituentType = 62025 ; - } - -#paramId: 503267 -#Diagnostic volcanic ash optical depth -'503267' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62025 ; - } - -#paramId: 503268 -#Diagnostic mineral dust optical depth -'503268' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62001 ; - } - -#paramId: 503269 -#Diagnostic sea salt optical depth -'503269' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62008 ; - } - -#paramId: 503270 -#Diagnostic vmaximum activity concentration of radionuclides in a layer -'503270' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 15 ; - } - -#paramId: 503273 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 -'503273' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 46500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 24000 ; - constituentType = 62025 ; - } - -#paramId: 503274 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 -'503274' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 70000 ; - constituentType = 62025 ; - } - -#paramId: 503275 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 -'503275' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 24000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 9100 ; - constituentType = 62025 ; - } - -#paramId: 503276 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 -'503276' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 70000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 38500 ; - constituentType = 62025 ; - } - -#paramId: 503277 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 -'503277' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 38500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 20000 ; - constituentType = 62025 ; - } - -#paramId: 503278 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 -'503278' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 20000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10000 ; - constituentType = 62025 ; - } - -#paramId: 503279 -#Diagnostic maximum total mass concentration of volcanic ash in a layer -'503279' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - constituentType = 62025 ; - } - -#paramId: 503280 -#Aerosol optical depth -'503280' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - } - -#paramId: 503282 -#Diagnostic total column of activity concentration of radionuclides -'503282' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503283 -#Liquid water potential temperature variance -'503283' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 0 ; - } - -#paramId: 503284 -#Total water specific humidity variance -'503284' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 1 ; - } - -#paramId: 503285 -#Liquid water potential temperature - total water specific humidity covariance -'503285' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 2 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'503286' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'503287' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } - -#paramId: 503292 -#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) -'503292' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 234 ; - } - -#paramId: 503293 -#Large Scale Rain Difference -'503293' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503294 -#Large Scale Snowfall water Equivalent Difference -'503294' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503295 -#Convective Rain Difference -'503295' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503296 -#Convective Snowfall Water Equivalent Difference -'503296' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503299 -#Sky-view-factor -'503299' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 0 ; - } - -#paramId: 503300 -#Horizon angle - topography -'503300' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 1 ; - } - -#paramId: 503301 -#Slope aspect - topography -'503301' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 3 ; - } - -#paramId: 503302 -#Slope angle - topography -'503302' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 2 ; - } - -#paramId: 503303 -#Total precipitation rate -'503303' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } - -#paramId: 503304 -#Horizontal moisture convergence -'503304' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } - -#paramId: 503305 -#TOA downward solar radiation -'503305' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 503306 -#Surface upward thermal radiation -'503306' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503307 -#Surface upward thermal radiation -'503307' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503308 -#Specific mass of liquid water coating on hail -'503308' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 110 ; - } - -#paramId: 503309 -#Specific mass of liquid water coating on graupel -'503309' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 113 ; - } - -#paramId: 503310 -#Specific mass of liquid water coating on snow -'503310' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 116 ; - } - -#paramId: 503311 -#Specific number concentration of rain -'503311' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 100 ; - } - -#paramId: 503312 -#Number density of rain -'503312' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 104 ; - } - -#paramId: 503313 -#Specific number concentration of snow -'503313' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 101 ; - } - -#paramId: 503314 -#Specific number concentration of graupel -'503314' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 102 ; - } - -#paramId: 503315 -#Specific number concentration of hail -'503315' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 103 ; - } - -#paramId: 503316 -#Number density of snow -'503316' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 105 ; - } - -#paramId: 503317 -#Number density of graupel -'503317' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 106 ; - } - -#paramId: 503318 -#Number density of hail -'503318' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 107 ; - } - -#paramId: 503319 -#Mass density of rain -'503319' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 96 ; - } - -#paramId: 503320 -#Mass density of snow -'503320' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 97 ; - } - -#paramId: 503321 -#Mass density of graupel -'503321' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 98 ; - } - -#paramId: 503322 -#Mass density of cloud droplets -'503322' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 38 ; - } - -#paramId: 503323 -#Mass density of cloud ice -'503323' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 39 ; - } - -#paramId: 503324 -#Mass density of hail -'503324' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 99 ; - } - -#paramId: 503325 -#Lightning Potential Index -'503325' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 1 ; - } - -#paramId: 503326 -#Diagnostic total column of activity concentration of radionuclides -'503326' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503327 -#Base for given threshold of mass density for volcanic ash cloud -'503327' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62025 ; - } - -#paramId: 503328 -#Base for given threshold of mass density for mineral dust cloud -'503328' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62001 ; - } - -#paramId: 503330 -#Top for given threshold of mass density for volcanic ash cloud -'503330' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62025 ; - } - -#paramId: 503331 -#Top for given threshold of mass density for mineral dust cloud -'503331' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62001 ; - } - -#paramId: 503332 -#Top for given threshold of air concentration of radionuclides -'503332' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 24 ; - } - -#paramId: 503333 -#Emission rate of dust for mode 2 -'503333' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503334 -#Emission rate of dust for mode 3 -'503334' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503335 -#Emission rate of dust for mode 1 -'503335' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503336 -#Accumulated dust Emission for mode 2 -'503336' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503337 -#Accumulated dust Emission for mode 1 -'503337' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503338 -#Accumulated dust Emission for mode 3 -'503338' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503339 -#Threshold friction velocity -'503339' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 203 ; - } - -#paramId: 503340 -#Base for given threshold of air concentration of radionuclides -'503340' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 23 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'503341' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 15 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'503342' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'503343' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'503344' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 26315 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'503345' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'503346' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 8 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'503347' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'503348' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'503349' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503350 -#relative vorticity -'503350' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503351 -#mean radiation temperature of an environment assumed black body related to standing human -'503351' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 4 ; - } - -#paramId: 503352 -#2m Temperature, restricted to land -'503352' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503353 -#2m Dew Point Temperature, restricted to land -'503353' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503354 -#2m Relative Humidity, restricted to land -'503354' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503355 -#Maximum 10m dynamical gust -'503355' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503356 -#Maximum 10m convective gust -'503356' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503357 -#Maximum 10m wind speed without gust -'503357' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503358 -#Standard deviation of saturation deficit -'503358' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 234 ; - } - -#paramId: 503359 -#Evaporation of plants (integrated since "nightly reset") -'503359' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } - -#paramId: 503360 -#Birch (betula) pollen concentration -'503360' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62101 ; - } - -#paramId: 503362 -#Fraction of land occupied by birch (betula) -'503362' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503363 -#Number of birch (betula) pollen in the reservoir (previous timestep) -'503363' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62101 ; - } - -#paramId: 503364 -#Number of birch (betula) pollen released into the reservoir (new) -'503364' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62101 ; - } - -#paramId: 503365 -#Sum of released birch (betula) pollen into the reservoir (daily sum) -'503365' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62101 ; - } - -#paramId: 503366 -#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) -'503366' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62101 ; - } - -#paramId: 503367 -#Height correction for emission (decreasing emission with height) for birch (betula) -'503367' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503368 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) -'503368' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62101 ; - } - -#paramId: 503369 -#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen -'503369' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62101 ; - } - -#paramId: 503370 -#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) -'503370' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503371 -#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) -'503371' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503372 -#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) -'503372' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62101 ; - } - -#paramId: 503373 -#Length of birch (betula) pollen season -'503373' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62101 ; - } - -#paramId: 503374 -#Pollen number emission flux for birch (betula) -'503374' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62101 ; - } - -#paramId: 503375 -#Alder (alnus) pollen concentration -'503375' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62100 ; - } - -#paramId: 503376 -#Fraction of land occupied by alder (alnus) -'503376' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503377 -#Number of alder (alnus) pollen in the reservoir (previous timestep) -'503377' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62100 ; - } - -#paramId: 503378 -#Number of alder (alnus) pollen released into the reservoir (new) -'503378' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62100 ; - } - -#paramId: 503379 -#Sum of released alder (alnus) pollen into the reservoir (daily sum) -'503379' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62100 ; - } - -#paramId: 503380 -#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) -'503380' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62100 ; - } - -#paramId: 503381 -#Height correction for emission (decreasing emission with height) for alder (alnus) -'503381' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503382 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) -'503382' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62100 ; - } - -#paramId: 503383 -#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen -'503383' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62100 ; - } - -#paramId: 503384 -#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) -'503384' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503385 -#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) -'503385' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503386 -#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) -'503386' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62100 ; - } - -#paramId: 503387 -#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) -'503387' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62100 ; - } - -#paramId: 503388 -#Length of alder (alnus) pollen season -'503388' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62100 ; - } - -#paramId: 503389 -#Pollen number emission flux for alder (alnus) -'503389' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62100 ; - } - -#paramId: 503390 -#Grasses (poaceae) pollen concentration -'503390' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62300 ; - } - -#paramId: 503391 -#Fraction of land occupied by grasses (poaceae) -'503391' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503392 -#Number of grasses (poaceae) pollen in the reservoir (previous timestep) -'503392' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62300 ; - } - -#paramId: 503393 -#Number of grasses (poaceae) pollen released into the reservoir (new) -'503393' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62300 ; - } - -#paramId: 503394 -#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) -'503394' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62300 ; - } - -#paramId: 503395 -#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) -'503395' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62300 ; - } - -#paramId: 503396 -#Height correction for emission (decreasing emission with height) for grasses (poaceae) -'503396' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503397 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) -'503397' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62300 ; - } - -#paramId: 503398 -#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen -'503398' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62300 ; - } - -#paramId: 503399 -#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) -'503399' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503400 -#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) -'503400' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503401 -#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) -'503401' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62300 ; - } - -#paramId: 503402 -#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) -'503402' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62300 ; - } - -#paramId: 503403 -#Length of grasses (poaceae) pollen season -'503403' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62300 ; - } - -#paramId: 503404 -#Pollen number emission flux for grasses (poaceae) -'503404' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62300 ; - } - -#paramId: 503405 -#ragweed (ambrosia) pollen concentration -'503405' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62200 ; - } - -#paramId: 503406 -#Fraction of land occupied by ragweed (ambrosia) -'503406' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503407 -#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) -'503407' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62200 ; - } - -#paramId: 503408 -#Number of ragweed (ambrosia) pollen released into the reservoir (new) -'503408' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62200 ; - } - -#paramId: 503409 -#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) -'503409' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62200 ; - } - -#paramId: 503410 -#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) -'503410' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62200 ; - } - -#paramId: 503411 -#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) -'503411' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503412 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) -'503412' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62200 ; - } - -#paramId: 503413 -#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen -'503413' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62200 ; - } - -#paramId: 503414 -#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) -'503414' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503415 -#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) -'503415' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503416 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) -'503416' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62200 ; - } - -#paramId: 503417 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) -'503417' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62200 ; - } - -#paramId: 503418 -#Length of ragweed (ambrosia) pollen season -'503418' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62200 ; - } - -#paramId: 503419 -#Pollen number emission flux for ragweed (ambrosia) -'503419' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62200 ; - } - -#paramId: 503420 -#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) -'503420' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62101 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'503421' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'503422' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503423 -#Maximum horizontal moisture convergence track (over given time interval and column) -'503423' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503424 -#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. -'503424' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 235 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'503425' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } - -#paramId: 503426 -#Maximum snow height during contiguous accumulating snow period (coupled with snow age) -'503426' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 235 ; - } - -#paramId: 503427 -#U-component of (vertical) wind shear vector between two levels -'503427' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 208 ; - } - -#paramId: 503428 -#V-component of (vertical) wind shear vector between two levels -'503428' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 209 ; - } - -#paramId: 503431 -#Accumulated dry deposition (surface) of dust for mode 1 -'503431' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503432 -#Accumulated dry deposition (surface) of dust for mode 2 -'503432' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503433 -#Accumulated dry deposition (surface) of dust for mode 3 -'503433' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503434 -#Accumulated wet deposition by grid scale precipitation of dust for mode 1 -'503434' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503435 -#Accumulated wet deposition by grid scale precipitation of dust for mode 2 -'503435' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503436 -#Accumulated wet deposition by grid scale precipitation of dust for mode 3 -'503436' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503437 -#Accumulated wet deposition by convective precipitation of dust for mode 1 -'503437' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503438 -#Accumulated wet deposition by convective precipitation of dust for mode 2 -'503438' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503439 -#Accumulated wet deposition by convective precipitation of dust for mode 3 -'503439' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503440 -#Accumulated wet deposition of dust if rain reaches the surface for mode 1 -'503440' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503441 -#Accumulated wet deposition of dust if rain reaches the surface for mode 2 -'503441' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503442 -#Accumulated wet deposition of dust if rain reaches the surface for mode 3 -'503442' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503443 -#Accumulated sedimentation of dust for mode 1 -'503443' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503444 -#Accumulated sedimentation of dust for mode 2 -'503444' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503445 -#Accumulated sedimentation of dust for mode 3 -'503445' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503446 -#Accumulated dry deposition of dust number concentration for mode 1 -'503446' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503447 -#Accumulated dry deposition of dust number concentration for mode 2 -'503447' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503448 -#Accumulated dry deposition of dust number concentration for mode 3 -'503448' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503449 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 -'503449' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503450 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 -'503450' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503451 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 -'503451' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503452 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 -'503452' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503453 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 -'503453' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503454 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 -'503454' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503455 -#Accumulated sedimentation of dust number concentration for mode 1 -'503455' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503456 -#Accumulated sedimentation of dust number concentration for mode 2 -'503456' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503457 -#Accumulated sedimentation of dust number concentration for mode 3 -'503457' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503458 -#Attenuated backscatter from satellite for dust (for given wave length) -'503458' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62001 ; - } - -#paramId: 503459 -#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) -'503459' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62001 ; - } - -#paramId: 503460 -#Mineral dust backscatter (not attenuated, for given wave length) -'503460' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62001 ; - } - -#paramId: 503461 -#Attenuated backscatter from satellite for volcanic ash (for given wave length) -'503461' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62025 ; - } - -#paramId: 503462 -#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) -'503462' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62025 ; - } - -#paramId: 503463 -#Volcanic ash backscatter (not attenuated, for given wave length) -'503463' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62025 ; - } - -#paramId: 503464 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 -'503464' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503465 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 -'503465' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503466 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 -'503466' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503467 -#2m Temperature analysis increment, filtered in time -'503467' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 206 ; - } - -#paramId: 503468 -#Cs137 - total (wet + dry) deposition -'503468' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30172 ; - } - -#paramId: 503469 -#Prognostic specific activity concentration of Caesium 137 -'503469' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30172 ; - } - -#paramId: 503470 -#Averaged air concentration of Caesium 137 -'503470' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30172 ; - } - -#paramId: 503471 -#Accumulated air concentration of Caesium 137 -'503471' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30172 ; - } - -#paramId: 503480 -#Prognostic specific activity concentration of Krypton 85 -'503480' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30059 ; - } - -#paramId: 503481 -#Kr85 - total (wet + dry) deposition -'503481' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30059 ; - } - -#paramId: 503482 -#Averaged air concentration of Krypton 85 -'503482' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30059 ; - } - -#paramId: 503483 -#Accumulated air concentration of Krypton 85 -'503483' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30059 ; - } - -#paramId: 503484 -#Prognostic specific activity concentration of Strontium 90 -'503484' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30067 ; - } - -#paramId: 503485 -#Averaged air concentration of Strontium 90 -'503485' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30067 ; - } - -#paramId: 503486 -#Accumulated air concentration of Strontium 90 -'503486' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30067 ; - } - -#paramId: 503487 -#Sr90 - total (wet + dry) deposition -'503487' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30067 ; - } - -#paramId: 503489 -#I131a - total (wet + dry) deposition -'503489' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30141 ; - } - -#paramId: 503490 -#Averaged air concentration of Iodine 131 aerosol -'503490' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30141 ; - } - -#paramId: 503491 -#Accumulated air concentration of Iodine 131 aerosol -'503491' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30141 ; - } - -#paramId: 503492 -#Averaged air concentration of Cobalt 60 -'503492' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30042 ; - } - -#paramId: 503493 -#Accumulated air concentration of Cobalt 60 -'503493' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30042 ; - } - -#paramId: 503494 -#Prognostic specific activity concentration of Cobalt 60 -'503494' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30042 ; - } - -#paramId: 503495 -#Co-60 - wet deposition -'503495' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30042 ; - } - -#paramId: 503496 -#Co60 - total (wet + dry) deposition -'503496' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30042 ; - } - -#paramId: 503497 -#Ru103 - total (wet + dry) deposition -'503497' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30102 ; - } - -#paramId: 503499 -#Averaged air concentration of Ruthenium 103 -'503499' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30102 ; - } - -#paramId: 503500 -#Accumulated air concentration of Ruthenium 103 -'503500' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30102 ; - } - -#paramId: 503501 -#Prognostic specific activity concentration of Tellurium 132 -'503501' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30129 ; - } - -#paramId: 503502 -#Averaged air concentration of Tellurium 132 -'503502' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30129 ; - } - -#paramId: 503503 -#Accumulated air concentration of Tellurium 132 -'503503' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30129 ; - } - -#paramId: 503504 -#Zr95 - total (wet + dry) deposition -'503504' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30079 ; - } - -#paramId: 503505 -#Averaged air concentration of Zirconium 95 -'503505' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30079 ; - } - -#paramId: 503506 -#Accumulated air concentration of Zirconium 95 -'503506' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30079 ; - } - -#paramId: 503507 -#TRACER - total (wet + dry) deposition -'503507' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30000 ; - } - -#paramId: 503508 -#Prognostic specific activity concentration of TRACER -'503508' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30000 ; - } - -#paramId: 503509 -#Averaged air concentration of TRACER -'503509' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30000 ; - } - -#paramId: 503510 -#Accumulated air concentration of TRACER -'503510' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30000 ; - } - -#paramId: 503511 -#Averaged air concentration of Xenon 133 -'503511' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30161 ; - } - -#paramId: 503512 -#Accumulated air concentration of Xenon 133 -'503512' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30161 ; - } - -#paramId: 503513 -#Xe133 - total (wet + dry) deposition -'503513' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30161 ; - } - -#paramId: 503514 -#Air concentration of Iodine 131 -'503514' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30137 ; - } - -#paramId: 503515 -#I131 - dry deposition -'503515' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30137 ; - } - -#paramId: 503516 -#Averaged air concentration of Iodine 131 -'503516' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30137 ; - } - -#paramId: 503517 -#Accumulated air concentration of Iodine 131 -'503517' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30137 ; - } - -#paramId: 503518 -#Prognostic specific activity concentration of Iodine 131 -'503518' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30137 ; - } - -#paramId: 503519 -#I131 - wet deposition -'503519' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30137 ; - } - -#paramId: 503520 -#I131 - total (wet + dry) deposition -'503520' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30137 ; - } - -#paramId: 503522 -#Averaged air concentration of Iodine 131 elementary gaseous -'503522' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30138 ; - } - -#paramId: 503523 -#Accumulated air concentration of Iodine 131 elementary gaseous -'503523' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30138 ; - } - -#paramId: 503524 -#I131g - total (wet + dry) deposition -'503524' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30138 ; - } - -#paramId: 503525 -#Averaged air concentration of Iodine 131 organic bounded -'503525' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30139 ; - } - -#paramId: 503526 -#Accumulated air concentration of Iodine 131 organic bounded -'503526' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30139 ; - } - -#paramId: 503527 -#I131o - total (wet + dry) deposition -'503527' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30139 ; - } - -#paramId: 503528 -#Ba140 - total (wet + dry) deposition -'503528' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30175 ; - } - -#paramId: 503529 -#Averaged air concentration of Barium 140 -'503529' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30175 ; - } - -#paramId: 503530 -#Accumulated air concentration of Barium 140 -'503530' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30175 ; - } - -#paramId: 503531 -#Air concentration of Ruthenium 106 -'503531' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30104 ; - } - -#paramId: 503532 -#Ru106 - total (wet + dry) deposition -'503532' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30104 ; - } - -#paramId: 503533 -#Prognostic specific activity concentration of Ruthenium 106 -'503533' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30104 ; - } - -#paramId: 503534 -#Ru106 - dry deposition -'503534' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30104 ; - } - -#paramId: 503535 -#Ru106 - wet deposition -'503535' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30104 ; - } - -#paramId: 503536 -#Averaged air concentration of Ruthenium 106 -'503536' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30104 ; - } - -#paramId: 503537 -#Accumulated air concentration of Ruthenium 106 -'503537' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30104 ; - } - -#paramId: 503538 -#Co-60 - dry deposition -'503538' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30042 ; - } - -#paramId: 503539 -#Air concentration of Cobalt 60 -'503539' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30042 ; - } - -#paramId: 503542 -#Kr85m - wet deposition -'503542' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30060 ; - } - -#paramId: 503543 -#Kr85m - total (wet + dry) deposition -'503543' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30060 ; - } - -#paramId: 503544 -#Prognostic specific activity concentration of Krypton 85m -'503544' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30060 ; - } - -#paramId: 503545 -#Kr85m - dry deposition -'503545' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30060 ; - } - -#paramId: 503546 -#Averaged air concentration of Krypton 85m -'503546' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30060 ; - } - -#paramId: 503547 -#Accumulated air concentration of Krypton 85m -'503547' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30060 ; - } - -#paramId: 503548 -#Air concentration of Krypton 85m -'503548' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30060 ; - } - -#paramId: 503549 -#Swiss coordinate LV 95 (south-north) -'503549' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 200 ; - } - -#paramId: 503550 -#Swiss coordinate LV 95 (west-east) -'503550' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 201 ; - } - -#paramId: 503551 -#Birch (betula) pollen specific number concentration -'503551' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62101 ; - } - -#paramId: 503552 -#Alder (alnus) pollen specific number concentration -'503552' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62100 ; - } - -#paramId: 503553 -#Grasses (poaceae) pollen specific number concentration -'503553' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62300 ; - } - -#paramId: 503554 -#Ragweed (ambrosia) pollen specific number concentration -'503554' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62200 ; - } - -#paramId: 503555 -#Average hail diameter -'503555' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503556 -#Standard deviation of hail diameter -'503556' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 6 ; - } - -#paramId: 503557 -#Maximum hail diameter -'503557' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503558 -#Duration of updraft -'503558' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 210 ; - } - -#paramId: 503559 -#Updraft mask -'503559' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 211 ; - } - -#paramId: 503560 -#Total lightning flash density - instantaneous -'503560' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503561 -#Total lightning flash density - time average -'503561' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def b/eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def deleted file mode 100755 index a341a356..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/shortName.def +++ /dev/null @@ -1,13809 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'PS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500001 -#Pressure -'P' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'PMSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'DPSDT' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'FIS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'FIF' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 105 ; - typeOfFirstFixedSurface = 105 ; - } - -#paramId: 500006 -#Geopotential -'FI' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'HSURF' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'HHL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'TO3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } - -#paramId: 500010 -#Temperature (G) -'T_G' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500011 -#2m Temperature -'T_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'T_2M_AV' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'T_2M_CL' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 9 ; - } - -#paramId: 500014 -#Temperature -'T' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'TMAX_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'TMIN_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'TD_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'TD_2M_AV' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'DBZ_MAX' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500020 -#Wave spectra (1) -'WVSP1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500021 -#Wave spectra (2) -'WVSP2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500022 -#Wave spectra (3) -'WVSP3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'DD_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'DD' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'SP_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'SP' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500027 -#U-Component of Wind -'U_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'U' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500029 -#V-Component of Wind -'V_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'V' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'OMEGA' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'W' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'QV_2M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'QV' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500036 -#2m Relative Humidity -'RELHUM_2M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'RELHUM' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'TQV' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } - -#paramId: 500039 -#Evaporation (s) -'AEVAP_S' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'TQI' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'TOT_PREC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'PREC_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'PREC_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'W_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } - -#paramId: 500045 -#Snow Depth -'H_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 500046 -#Total Cloud Cover -'CLCT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'CLC_CON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'TQC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'SNOW_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'SNOW_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'FR_LAND' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'Z0' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'ALB_RAD' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'ALBEDO_B' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'T_CL' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'T_CL_LM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'T_M' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'T_S' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'W_CL' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'W_G1' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'W_G2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500065 -#Plant cover -'PLCOV' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500066 -#Water Runoff -'RUNOFF_G' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'RUNOFF_S' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'FR_ICE' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'H_ICE' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'SWH' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500072 -#Direction of wind waves -'MDWW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500073 -#Significant height of wind waves -'SHWW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 500074 -#Mean period of wind waves -'MPWW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 500075 -#Direction of swell waves -'MDTS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500076 -#Significant height of swell waves -'SHTS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500077 -#Mean period of swell waves -'MPTS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'SOBS_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'ATHB_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'THBS_RAD' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'ASOB_T' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'SOBT_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'ATHB_T' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'THBT_RAD' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'ALHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'ASHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'AUMFL_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'AVMFL_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'APAB_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'PABS_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500098 -#Cloud cover -'CLC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'CLC_SGS' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'QC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'QI' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - } - -#paramId: 500102 -#Rain mixing ratio -'QR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } - -#paramId: 500103 -#Snow mixing ratio -'QS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } - -#paramId: 500104 -#Total column integrated rain -'TQR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } - -#paramId: 500105 -#Total column integrated snow -'TQS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } - -#paramId: 500106 -#Grauple -'QG' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } - -#paramId: 500107 -#Total column integrated grauple -'TQG' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'TWATER' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'HBAS_CON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'HTOP_CON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'HZEROCL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500132 -#Large scale rain rate -'PRR_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'PRS_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'RAIN_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500135 -#Convective rain rate -'PRR_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'PRS_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } - -#paramId: 500137 -#Convective rain -'RAIN_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'TOT_RAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'TOT_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'PRG_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'GRAU_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500147 -#Snow density -'RHO_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'TKE_CON' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'TKVM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'TKVH' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'TCM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'TCH' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 500163 -#mixed layer depth -'MH' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } - -#paramId: 500164 -#maximum Wind 10m -'VMAX_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'T_SO' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'W_SO' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'W_SO_ICE' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'W_I' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'T_SNOW' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'RSMIN' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'T_ICE' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500173 -#Base reflectivity -'DBZ_850' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'DBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'DBZ_CMAX' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'CAPE_CON' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } - -#paramId: 500185 -#Direction of combined wind waves and swell -'MWD' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 500187 -#Peak period of total swell -'PPTS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 500189 -#Peak period of wind waves -'PPWW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 500190 -#Peak wave period -'PP1D' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } - -#paramId: 500191 -#Mean period of combined wind waves and swell -'TM10' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500192 -#Inverse mean wave frequency -'TM01' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 500193 -#Mean zero-crossing wave period -'TM02' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500194 -#Wave directional width -'SPRD' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'SSO_STDH' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'SSO_GAMMA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'SSO_THETA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'SSO_SIGMA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } - -#paramId: 500206 -#Leaf area index -'LAI' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500207 -#root depth of vegetation -'ROOTDP' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'PLCOV_MX' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'PLCOV_MN' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500212 -#Max Leaf area index -'LAI_MX' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500213 -#Min Leaf area index -'LAI_MN' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'ORO_MOD' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500217 -#evergreen forest -'FOR_E' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 500218 -#deciduous forest -'FOR_D' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'NDVI' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'NDVI_MAX' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'AER_SO4' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62006 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'AER_SO412' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62006 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'AER_DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62001 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'AER_DUST12' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62001 ; - } - -#paramId: 500227 -#Organic aerosol -'AER_ORG' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62010 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'AER_ORG12' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62010 ; - } - -#paramId: 500229 -#Black carbon aerosol -'AER_BC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62009 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'AER_BC12' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62009 ; - } - -#paramId: 500231 -#Sea salt aerosol -'AER_SS' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62008 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'AER_SS12' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62008 ; - } - -#paramId: 500236 -#geographical latitude -'RLAT' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } - -#paramId: 500237 -#geographical longitude -'RLON' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } - -#paramId: 500238 -#Friction velocity -'USTAR' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'O3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Ru-103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30102 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Ru-103d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30102 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Ru-103w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30102 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Sr-90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30067 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Sr-90d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30067 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Sr-90w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30067 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'I-131a' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30141 ; - } - -#paramId: 500250 -#I131a - dry deposition -'I-131ad' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30141 ; - } - -#paramId: 500251 -#I131a - wet deposition -'I-131aw' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30141 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Cs-137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30172 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Cs-137d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30172 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Te-132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30129 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Te-132d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30129 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Te-132w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30129 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Zr-95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30079 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Zr-95d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30079 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Zr-95w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30079 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Kr-85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30059 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Kr-85d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30059 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Kr-85w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30059 ; - } - -#paramId: 500264 -#TRACER - concentration -'Tr-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30000 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'Tr-2d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30000 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'Tr-2w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30000 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Xe-133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30161 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Xe-133d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30161 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Xe-133w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30161 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'I-131g' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30138 ; - } - -#paramId: 500271 -#I131g - dry deposition -'I-131gd' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30138 ; - } - -#paramId: 500272 -#I131g - wet deposition -'I-131gw' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30138 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'I-131o' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30139 ; - } - -#paramId: 500274 -#I131o - dry deposition -'I-131od' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30139 ; - } - -#paramId: 500275 -#I131o - wet deposition -'I-131ow' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30139 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Ba-140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30175 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Ba-140d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30175 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Ba-140w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30175 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'VDIS_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'UVI_MAX_CL' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500286 -#Vertical speed shear -'W_SHAER' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } - -#paramId: 500287 -#storm relative helicity -'SRH' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'CCL_GND' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'WW' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'PTHETA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500302 -#KO index -'KO' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'THETAE' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500304 -#Ceiling -'CEILING' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'ICE_GRD' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'EFA-PS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'EIA-PS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'EFA-U' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'EIA-U' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'EFA-V' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'EIA-V' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'EFA-FI' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'EIA-FI' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'EFA-RH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'EIA-RH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'EFA-T' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'EIA-T' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'EFA-OM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'EIA-OM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'SYNME5_BT_CL' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'SYNME5_BT_CS' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'SYNME5_RAD_CL' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'SYNME5_RAD_CS' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'SYNME6_BT_CL' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'SYNME6_BT_CS' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'SYNME6_RAD_CL' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'SYNME6_RAD_CS' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'SYNME7_BT_CL_IR11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'SYNME7_BT_CL_WV6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'SYNME7_BT_CS_IR11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'SYNME7_BT_CS_WV6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'SYNME7_RAD_CL_IR11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'SYNME7_RAD_CL_WV6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'SYNME7_RAD_CS_IR11.5' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'SYNME7_RAD_CS_WV6.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_IR9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_WV6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'SYNMSG_BT_CL_WV7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_IR9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_WV6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'SYNMSG_BT_CS_WV7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_IR9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_WV6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'SYNMSG_RAD_CL_WV7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR10.8' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR12.1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR13.4' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR3.9' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR8.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_IR9.7' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_WV6.2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'SYNMSG_RAD_CS_WV7.3' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'T_2M_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'TMAX_2M_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'TMIN_2M_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'TD_2M_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'U_10M_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'V_10M_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'TOT_PREC_S' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'CLCT_S' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'CLCL_S' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'CLCM_S' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'CLCH_S' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'SNOW_GSP_S' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'T_S_S' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'VMAX_10M_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'TOT_PREC_C' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'SNOW_GSP_C' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'VMAX_10M_C' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500389 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'OBSMSG_ALB_HRV' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - } - -#paramId: 500390 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'OBSMSG_ALB_NIR1.6' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - } - -#paramId: 500391 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'OBSMSG_ALB_VIS0.6' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - } - -#paramId: 500392 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'OBSMSG_ALB_VIS0.8' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1250000 ; - } - -#paramId: 500393 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR10.8' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500394 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR12.0' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - } - -#paramId: 500395 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR13.4' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500396 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR3.9' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500397 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR8.7' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500398 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_IR9.7' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500399 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_WV6.2' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500400 -#Obser. Sat. Meteosat sec. generation brightness temperature -'OBSMSG_BT_WV7.3' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'TOT_PREC_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'ASOB_T' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'ATHB_T' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'ASOB_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'ATHB_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'UVI_MAX_CS' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500469 -#Total ozone -'TOT_O3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500474 -#wind chill factor -'WCF' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500475 -#Water temperature -'T_SEA' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500477 -#Absolute Vorticity -'ABSV' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'ASWDIFU_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500490 -#Water Fraction -'FR_LAKE' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500491 -#Lake depth -'DEPTH_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500492 -#Wind fetch -'FETCH_LK' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 33 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'GAMSO_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'DP_BS_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 164 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'T_BS_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 164 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'T_MNW_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'T_WML_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'T_BOT_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500499 -#Mixed-layer depth -'H_ML_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'C_T_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 166 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'T_B1_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 165 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'H_B1_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 165 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500539 -#cloud top height -'CL_TOP_HEIGHT' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 500543 -#vertical vorticity -'VORTIC_W' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 500544 -#Potential vorticity -'POT_VORTIC' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } - -#paramId: 500545 -#Density -'DEN' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 500546 -#Altimeter Settings -'ALTS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'PREC_CON_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500548 -#Soil moisture -'SM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 500549 -#Soil moisture -'SM' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } - -#paramId: 500568 -#Geopotential height -'GH' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 500569 -#Relative Divergenz -'RDIV' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'LNPS' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'T_S_L' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'W_G3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 7 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'W_G4' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 50 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 7 ; - } - -#paramId: 500584 -#Sunshine duration -'DURSUN' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500588 -#Snow melt -'SNOW_MELT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'ICAHT' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 500593 -#Global radiation flux -'GRAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 500594 -#exner pressure -'EXNER' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } - -#paramId: 500595 -#normal wind component -'VN' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 34 ; - } - -#paramId: 500596 -#tangential wind component -'VT' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 35 ; - } - -#paramId: 500597 -#virtual potential temperature -'THETA_V' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500598 -#Current Direction -'CURD' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500599 -#Current Speed -'CURS' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500642 -#Lapse rate -'LAPSE_RATE' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500779 -#Effective radius of cloud water -'RECLOUD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#Effective radius of rain -'RERAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#Effective radius of cloud ice -'REICE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#Effective radius of snow -'RESNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#Effective radius of graupel -'REGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#Effective radius of hail -'REHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#Effective radius of subgrid liquid clouds -'RECLOUD_SGS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#Effective radius of subgrid ice clouds -'REICE_SGS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#Effective aspect ratio of rain -'ARRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#Effective aspect ratio of cloud ice -'ARICE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#Effective aspect ratio of snow -'ARSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#Effective aspect ratio of graupel -'ARGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#Effective aspect ratio of hail -'ARHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#Effective aspect ratio of subgrid ice clouds -'ARICE_SGS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 142 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'QV_S' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'ALB_DIF12' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'ALB_DIF' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } - -#paramId: 502309 -#center latitude -'CLAT' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502310 -#center longitude -'CLON' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502311 -#edge midpoint latitude -'ELAT' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502312 -#edge midpoint longitude -'ELON' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502313 -#vertex latitude -'VLAT' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502314 -#vertex longitude -'VLON' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502315 -#Number of cloud droplets per unit mass of air -'NCCLOUD' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 28 ; - } - -#paramId: 502316 -#Number of cloud ice particles per unit mass of air -'NCICE' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 29 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'LHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'SHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502319 -#Latent Heat Net Flux - accumulated _ surface -'ACCLHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502320 -#Sensible Heat Net Flux - accumulated _ surface -'ACCSHFL_S' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502321 -#Net short wave radiation flux - accumulated _ surface -'ACCSOB_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502322 -#Net long wave radiation flux - accumulated _ surface -'ACCTHB_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502323 -#Net long wave radiation flux - accumulated _ model top -'ACCTHB_T' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502327 -#Net short wave radiation flux - accumulated _ model top -'ACCSOB_T' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502328 -#Snow temperature - multi level -'T_SNOW_M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502329 -#Snow depth - multi level -'H_SNOW_M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502330 -#Snow density in - multi level -'RHO_SNOW_M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502331 -#Water equivalent of accumulated snoe depth in - multi level -'W_SNOW_M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502333 -#salinity -'SALT_LK' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 502334 -#Stream function -'STRF' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 502335 -#Velocity potential -'VPOT' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 502336 -#Skin temperature -'SKT' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502340 -#Snow cover -'SNOWC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } - -#paramId: 502341 -#Cloud Cover (0 - 400 hPa) -'CLCH' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 40000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502342 -#Cloud Cover (400 - 800 hPa) -'CLCM' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 80000 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 40000 ; - } - -#paramId: 502343 -#Cloud Cover (800 hPa - Soil) -'CLCL' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 80000 ; - } - -#paramId: 502348 -#Water Runoff (s) -'RUNOFF_S' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502349 -#Water Runoff -'RUNOFF_G' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 1 ; - } - -#paramId: 502397 -#Virtual Temperature -'VTMP' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502424 -#Vertical u-component shear -'VUCSH' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } - -#paramId: 502425 -#Vertical v-component shear -'VVCSH' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } - -#paramId: 502693 -#Potential temperature -'PT' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502700 -#Boundary layer dissipation -'BLD' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } - -#paramId: 502701 -#Sunshine duration -'SUND' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502702 -#Brightness temperature -'BTMP' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } - -#paramId: 502703 -#Heat index -'HEATX' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502705 -#Total column water -'TCW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } - -#paramId: 502706 -#Large scale precipitation (non-convective) -'NCPCP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502707 -#Snowfall rate water equivalent -'SRWEQ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502708 -#Convective snow -'SNOC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } - -#paramId: 502709 -#Large scale snow -'SNOL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } - -#paramId: 502710 -#Snow age -'SNOAG' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } - -#paramId: 502711 -#Absolute humidity -'ABSH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } - -#paramId: 502712 -#Precipitation type -'PTYPE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } - -#paramId: 502713 -#Integrated liquid water -'ILIQW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } - -#paramId: 502714 -#Condensate -'TCOND' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } - -#paramId: 502715 -#Ice water mixing ratio -'ICMR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } - -#paramId: 502717 -#Maximum relative humidity -'MAXRH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } - -#paramId: 502718 -#Maximum absolute humidity -'MAXAH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } - -#paramId: 502719 -#Total snowfall -'ASNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } - -#paramId: 502720 -#Precipitable water category -'PWCAT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } - -#paramId: 502721 -#Hail -'HAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } - -#paramId: 502722 -#Categorical rain -'CRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } - -#paramId: 502723 -#Categorical freezing rain -'CFRZR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } - -#paramId: 502724 -#Categorical ice pellets -'CICEP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } - -#paramId: 502725 -#Categorical snow -'CSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } - -#paramId: 502727 -#Percent frozen precipitation -'CPOFP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } - -#paramId: 502728 -#Potential evaporation -'PEVAP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } - -#paramId: 502729 -#Potential evaporation rate -'PEVPR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } - -#paramId: 502730 -#Rain fraction of total cloud water -'FRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } - -#paramId: 502731 -#Rime factor -'RIME' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } - -#paramId: 502732 -#Large scale water precipitation (non-convective) -'LSWP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } - -#paramId: 502733 -#Convective water precipitation -'CWP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } - -#paramId: 502734 -#Total water precipitation -'TWATP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } - -#paramId: 502735 -#Total snow precipitation -'TSNOWP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } - -#paramId: 502737 -#Snow Fall water equivalent -'SF' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } - -#paramId: 502738 -#Convective snowfall rate -'CSRATE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } - -#paramId: 502739 -#Large scale snowfall rate -'LSSRATE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } - -#paramId: 502740 -#Water equivalent of accumulated snow depth -'SDWE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502741 -#Freezing rain precipitation rate -'FPRATE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } - -#paramId: 502742 -#Ice pellets precipitation rate -'IPRATE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } - -#paramId: 502743 -#Maximum wind speed -'MAXGUST' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } - -#paramId: 502744 -#u-component of wind (gust) -'UGUST' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } - -#paramId: 502745 -#v-component of wind (gust) -'VGUST' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - -#paramId: 502746 -#Horizontal momentum flux -'MFLX' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } - -#paramId: 502747 -#U-component storm motion -'USTM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } - -#paramId: 502748 -#V-component storm motion -'VSTM' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } - -#paramId: 502749 -#Thickness -'THICK' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502751 -#Minimum dew point depression -'MINDPD' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502752 -#Pressure altitude -'PRESALT' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502753 -#Density altitude -'DENALT' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502754 -#5-wave geopotential height -'5WAVH' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502755 -#Zonal flux of gravity wave stress -'U-GWD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502756 -#Meridional flux of gravity wave stress -'V-GWD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 502757 -#Planetary boundary layer height -'HPBL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } - -#paramId: 502758 -#5-wave geopotential height anomaly -'5WAVA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 502759 -#Net short-wave radiation flux (top of atmosphere) -'NSWRT' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502760 -#Downward short-wave radiation flux -'DSWRF' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } - -#paramId: 502761 -#Net short-wave radiation flux, clear sky -'NSWRFCS' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } - -#paramId: 502762 -#Downward UV radiation -'DWUVR' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } - -#paramId: 502763 -#Net long wave radiation flux (surface) -'NLWRS' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } - -#paramId: 502764 -#Net long wave radiation flux (top of atmosphere) -'NLWRT' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } - -#paramId: 502765 -#Downward long-wave radiation flux -'DLWRF' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } - -#paramId: 502766 -#Upward long-wave radiation flux -'ULWRF' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } - -#paramId: 502767 -#Net long-wave radiation flux, clear sky -'NLWRCS' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } - -#paramId: 502768 -#Cloud Ice -'CICE' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } - -#paramId: 502769 -#Cloud water -'CWAT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } - -#paramId: 502770 -#Cloud amount -'CDCA' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } - -#paramId: 502771 -#Cloud type -'CDCT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } - -#paramId: 502772 -#Thunderstorm maximum tops -'TMAXT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } - -#paramId: 502773 -#Thunderstorm coverage -'THUNC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } - -#paramId: 502774 -#Cloud base -'CDCB' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } - -#paramId: 502775 -#Cloud top -'CDCT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } - -#paramId: 502776 -#Cloud work function -'CWORK' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } - -#paramId: 502777 -#Convective cloud efficiency -'CUEFI' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } - -#paramId: 502778 -#Total condensate -'TCOND1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } - -#paramId: 502779 -#Total column-integrated cloud water -'TCOLW' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } - -#paramId: 502780 -#Total column-integrated cloud ice -'TCOLI' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } - -#paramId: 502781 -#Total column-integrated condensate -'TCOLC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } - -#paramId: 502782 -#Ice fraction of total condensate -'FICE' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } - -#paramId: 502783 -#Cloud ice mixing ratio -'CDCIMR' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } - -#paramId: 502785 -#K index -'KX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 502786 -#Total totals index -'TOTALX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } - -#paramId: 502787 -#Sweat index -'SX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } - -#paramId: 502788 -#Energy helicity index -'EHLX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } - -#paramId: 502789 -#Surface lifted index -'LFTX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } - -#paramId: 502790 -#Best (4-layer) lifted index -'4LFTX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } - -#paramId: 502791 -#Aerosol type -'AEROT' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } - -#paramId: 502792 -#Base spectrum width -'BSWID' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } - -#paramId: 502793 -#Base radial velocity -'BRVEL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } - -#paramId: 502794 -#Vertically-integrated liquid -'VERIL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } - -#paramId: 502795 -#Layer-maximum base reflectivity -'LMAXBR' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } - -#paramId: 502796 -#Precipitation -'PREC' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 502797 -#Air concentration of Caesium 137 -'ACCES' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } - -#paramId: 502798 -#Air concentration of Iodine 131 -'ACIOD' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } - -#paramId: 502799 -#Air concentration of radioactive pollutant -'ACRADP' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } - -#paramId: 502800 -#Ground deposition of Caesium 137 -'GDCES' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } - -#paramId: 502801 -#Ground deposition of Iodine 131 -'GDIOD' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } - -#paramId: 502802 -#Ground deposition of radioactive pollutant -'GDRADP' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } - -#paramId: 502843 -#Time-integrated air concentration of caesium pollutant -'TIACCP' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } - -#paramId: 502844 -#Time-integrated air concentration of iodine pollutant -'TIACIP' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } - -#paramId: 502845 -#Time-integrated air concentration of radioactive pollutant -'TIACRP' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } - -#paramId: 502846 -#Volcanic ash -'VOLASH' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } - -#paramId: 502847 -#Icing top -'ICIT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } - -#paramId: 502848 -#Icing base -'ICIB' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } - -#paramId: 502849 -#Turbulence top -'TURBT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } - -#paramId: 502850 -#Turbulence base -'TURBB' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } - -#paramId: 502851 -#Turbulence -'TURB' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } - -#paramId: 502852 -#Planetary boundary layer regime -'PBLREG' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } - -#paramId: 502853 -#Contrail intensity -'CONTI' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } - -#paramId: 502854 -#Contrail engine type -'CONTET' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } - -#paramId: 502855 -#Contrail top -'CONTT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } - -#paramId: 502856 -#Contrail base -'CONTB' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } - -#paramId: 502857 -#Maximum snow albedo -'MXALB' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } - -#paramId: 502858 -#Icing -'ICI' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } - -#paramId: 502859 -#Horizontal extent of cumulonimbus (CB) -'CBHEXT' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } - -#paramId: 502860 -#In-cloud turbulence -'ICT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } - -#paramId: 502861 -#Clear air turbulence (CAT) -'CAT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } - -#paramId: 502862 -#Supercooled large droplet probability (see Note 4) -'SLDP' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } - -#paramId: 502864 -#Seconds prior to initial reference time (defined in Section 1) -'TSEC' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502865 -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'FFLDG' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 502866 -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'FFLDRO' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502867 -#Remotely sensed snow cover -'RSSC' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502868 -#Elevation of snow covered terrain -'ESCT' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 502869 -#Snow water equivalent percent of normal -'SWEPON' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502870 -#Baseflow-groundwater runoff -'BGRUN' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502871 -#Storm surface runoff -'SSRUN' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502872 -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'CPPOP' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502873 -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'PPOSP' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502874 -#Probability of 0.01 inch of precipitation (POP) -'POP' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502875 -#Evapotranspiration -'EVAPT' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502876 -#Land use -'LANDU' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 502877 -#Volumetric soil moisture content -'SOILW' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502878 -#Ground heat flux -'GFLUX' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502879 -#Moisture availability -'MSTAV' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502880 -#Exchange coefficient -'SFEXC' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502881 -#Blackadar mixing length scale -'BMIXL' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502882 -#Canopy conductance -'CCOND' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 502883 -#Solar parameter in canopy conductance -'RCS' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 502885 -#Soil moisture parameter in canopy conductance -'RCSOL' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 502886 -#Humidity parameter in canopy conductance -'RCQ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 502887 -#Column-integrated soil water -'CISOILW' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 502888 -#Heat flux -'HFLUX' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 502889 -#Volumetric soil moisture -'VSW' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 502890 -#Volumetric wilting point -'VWILTM' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 502891 -#Upper layer soil temperature -'UPLST' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502892 -#Upper layer soil moisture -'UPLSM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } - -#paramId: 502893 -#Lower layer soil moisture -'LOWLSM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 502894 -#Bottom layer soil temperature -'BOTLST' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 502895 -#Liquid volumetric soil moisture (non-frozen) -'SOIL1' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 502896 -#Number of soil layers in root zone -'RLYRS' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } - -#paramId: 502897 -#Transpiration stress-onset (soil moisture) -'SMREF' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502898 -#Direct evaporation cease (soil moisture) -'SMDRY' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502899 -#Soil porosity -'POROS' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502900 -#Liquid volumetric soil moisture (non-frozen) -'LIQVSM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 502919 -#Volumetric transpiration stress-onset (soil moisture) -'VOLTSO' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 502920 -#Transpiration stress-onset (soil moisture) -'TRANSO' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502921 -#Volumetric direct evaporation cease (soil moisture) -'VOLDEC' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502922 -#Direct evaporation cease (soil moisture) -'DIREC' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502923 -#Soil porosity -'SOILP' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502924 -#Volumetric saturation of soil moisture -'VSOSM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502926 -#Estimated precipitation -'ESTP' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502927 -#Instantaneous rain rate -'IRRATE' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502928 -#Cloud top height quality indicator -'CTOPHQI' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502929 -#Estimated u component of wind -'ESTU' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 502930 -#Estimated v component of wind -'ESTV' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502931 -#Number of pixels used -'NPIXU' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } - -#paramId: 502932 -#Solar zenith angle -'SOLZA' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502933 -#Reflectance in 0.6 micron channel -'RFL06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502934 -#Reflectance in 0.8 micron channel -'RFL08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502935 -#Reflectance in 1.6 micron channel -'RFL16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 502936 -#Reflectance in 3.9 micron channel -'RFL39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502937 -#Atmospheric divergence -'ATMDIV' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502938 -#Primary wave direction -'DIRPW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502939 -#Primary wave mean period -'PERPW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502940 -#Secondary wave mean period -'PERSW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 502941 -#Deviation of sea level from mea -'DSLM' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502942 -#Seconds prior to initial reference time (defined in Section 1) -'TSEC' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502943 -#Standard deviation of height -'HSTDV' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502944 -#Maximum temperature -'TMAX' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502945 -#Minimum temperature -'TMIN' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502946 -#Visibility -'VIS' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 502947 -#Radar spectra (2) -'RDSP2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } - -#paramId: 502948 -#Radar spectra (3) -'RDSP3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } - -#paramId: 502949 -#Parcel lifted index (to 500 hPa) -'PLI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 502950 -#Temperature anomaly -'TA' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502951 -#Pressure anomaly -'PRESA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502952 -#Geopotential height anomaly -'GPA' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502953 -#Montgomery stream Function -'MNTSF' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 502954 -#Sigma coordinate vertical velocity -'SGCVV' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 502955 -#Absolute divergence -'ABSD' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 502958 -#U-component of current -'UCURR' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502959 -#V-component of current -'VCURR' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502960 -#Precipitable water -'PWAT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502961 -#Saturation deficit -'SATD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502962 -#Precipitation rate -'PRATE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502963 -#Thunderstorm probability -'TSTM' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } - -#paramId: 502964 -#Convective precipitation (water) -'ACPCP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502965 -#Transient thermocline depth -'TTHDP' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } - -#paramId: 502966 -#Main thermocline depth -'MTHD' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 502967 -#Main thermocline anomaly -'MTHA' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502968 -#Best lifted index (to 500 hPa) -'BLI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 502969 -#Soil moisture content -'SSW' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 503011 -#Salinity -'S' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 503012 -#Direction of ice drift -'DICED' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503013 -#Speed of ice drift -'SICED' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503014 -#U-component of ice drift -'UICE' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503015 -#V-component of ice drift -'VICE' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503016 -#Ice growth rate -'ICEG' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503017 -#Ice divergence -'ICED' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503019 -#Secondary wave direction -'DIRSW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 503020 -#Net short-wave radiation flux (surface) -'NSWRS' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 503021 -#Radiance (with respect to wave number) -'LWRAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } - -#paramId: 503022 -#Radiance (with respect to wave length) -'SWRAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } - -#paramId: 503023 -#Convective inhibition -'CIN' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } - -#paramId: 503024 -#Wind mixing energy -'WMIXE' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } - -#paramId: 503025 -#Soil Temperature -'ST' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 503028 -#Wilting point -'WILT' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 503038 -#Snow phase change heat flux -'SNOHF' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503039 -#Vapor pressure -'VAPP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 503047 -#Land use class fraction -'FR_LUC' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 503048 -#Saturation of soil moisture -'SATOSM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'SWDIFUS_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'UMFL_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'VMFL_S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503075 -#Geometric height of the earths surface above mean sea level at vertex point (ICON) -'HSURF_V' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - numberOfGridInReference = 2 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'AVDIS_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503080 -#Land use class -'LUC' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 503081 -#Water depth -'DPTH' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } - -#paramId: 503082 -#Friction velocity -'USTR' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } - -#paramId: 503083 -#Coefficient of drag with waves -'DRAG' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503084 -#Normalized wave stress -'STRS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 503085 -#Inverse mean frequency of wind waves -'TM1W' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } - -#paramId: 503086 -#Mean zero-crossing period of wind waves -'TM2W' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 503087 -#Directional width of wind waves -'SPRW' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 503088 -#Inverse mean frequency of total swell -'TM1S' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503089 -#Inverse mean zero crossing period of total swell -'TM2S' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 503090 -#Directional width of total swell -'SPRS' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } - -#paramId: 503091 -#Goda peakedness parameter -'GODA' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 45 ; - } - -#paramId: 503092 -#Spectral kurtosis -'SKUR' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 43 ; - } - -#paramId: 503093 -#Benjamin-Feir index -'BEFI' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 44 ; - } - -#paramId: 503094 -#Maximum individual wave height -'MXWH' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 503095 -#Maximum wave period -'MXWP' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 503097 -#Meansquare slope -'SQSL' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 503106 -#Hail mixing ratio -'QH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 71 ; - } - -#paramId: 503107 -#Hail -'TQH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 72 ; - } - -#paramId: 503108 -#Hail precipitation rate -'PRH_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - } - -#paramId: 503109 -#Reflectivity of cloud droplets -'DBZ_CLOUD' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 9 ; - } - -#paramId: 503110 -#Reflectivity of cloud ice -'DBZ_ICE' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 10 ; - } - -#paramId: 503111 -#Reflectivity of snow -'DBZ_SNOW' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 11 ; - } - -#paramId: 503112 -#Reflectivity of rain -'DBZ_RAIN' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 12 ; - } - -#paramId: 503113 -#Reflectivity of graupel -'DBZ_GRAUPEL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 13 ; - } - -#paramId: 503114 -#Reflectivity of hail -'DBZ_HAIL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 14 ; - } - -#paramId: 503130 -#Hail precipitation rate, accumulation -'HAIL_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503132 -#Number density of cloud droplets -'NDCLOUD' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 30 ; - } - -#paramId: 503133 -#Number density of cloud ice particles -'NDICE' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 31 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'THDS_RAD' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'ATHD_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'ACCTHD_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503145 -#2m absolute humidity -'ABSH_2M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503154 -#Bulk Richardson number -'BRN' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 16 ; - } - -#paramId: 503155 -#Cape of mixed (mean) layer parcel, ascent up to 3 km -'CAPE_3KM' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 3000 ; - } - -#paramId: 503166 -#Geostrophic wind direction -'DD_G' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 43 ; - } - -#paramId: 503169 -#Dewpoint depression -'D_TD' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 503170 -#2m dewpoint depression -'D_TD_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503173 -#Geostrophic wind speed -'SP_G' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 44 ; - } - -#paramId: 503174 -#Downward short wave radiation flux at surface (time average) -'ASOD_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503186 -#Height of lifting condensation level of mixed (mean) layer parcel -'LCL_ML' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 5 ; - } - -#paramId: 503192 -#Humidity mixing ratio -'MIXRAT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 503193 -#2m Humidity mixing ratio -'MIXRAT_2M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503195 -#relative humidity over ice -'RH_ICE' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } - -#paramId: 503196 -#Gradient Richardson number -'RI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 17 ; - } - -#paramId: 503197 -#Showalter index -'SI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 13 ; - } - -#paramId: 503204 -#Surface lifted index -'SLI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503210 -#2m potential temperature -'PT_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503211 -#Dew point temperature -'TD' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 503212 -#2m equivalentTemperature -'THETAE_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503213 -#2m virtual potential temperature -'THETA_V_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503214 -#Temperature at cloud top -'TTOP_CON' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503215 -#Wet bulb temperature -'TW' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503216 -#2m wet bulb temperature -'TW_2M' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503219 -#Universal thermal climate index with direct incident short wave radiation -'UTCI_SUN' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 503220 -#u-component of geostrophic wind -'U_G' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 41 ; - } - -#paramId: 503221 -#v-component of geostrophic wind -'V_G' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 42 ; - } - -#paramId: 503229 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 -'ASH1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503230 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 -'ASH2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503231 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 -'ASH3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503232 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 -'ASH4' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 4 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503233 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 -'ASH5' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 5 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503234 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 -'ASH6' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 6 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503235 -#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) -'ASHA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503236 -#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) -'ASHB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503237 -#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) -'ASHC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503238 -#Modal prognostic specific number concentration of volcanic ash particles (fine mode) -'ASHA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503239 -#Modal prognostic specific number concentration of volcanic ash particles (medium mode) -'ASHB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503240 -#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) -'ASHC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503241 -#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) -'DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503242 -#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) -'DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503243 -#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) -'DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503244 -#Modal prognostic specific number concentration of mineral dust particles (fine mode) -'DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503245 -#Modal prognostic specific number concentration of mineral dust particles (medium mode) -'DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503246 -#Modal prognostic specific number concentration of mineral dust particles (coarsemode) -'DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503247 -#Modal prognostic mass mixing ratio of sea salt particles (fine mode) -'SEASA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503248 -#Modal prognostic mass mixing ratio of sea salt particles (medium mode) -'SEASB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503249 -#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) -'SEASC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503250 -#Modal prognostic specific number concentration of sea salt particles (fine mode) -'SEASA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503251 -#Modal prognostic specific number concentration of sea salt particles (medium mode) -'SEASB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503252 -#Modal prognostic specific number concentration of sea salt particles (coarse mode) -'SEASC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503253 -#Cs137 - wet deposition -'Cs-137w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - -#paramId: 503254 -#Prognostic specific activity concentration of Iodine 131 aerosol -'I_131a' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30141 ; - } - -#paramId: 503255 -#Te132 - total (wet + dry) deposition -'Te-132t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30129 ; - } - -#paramId: 503256 -#Prognostic specific activity concentration of Zirconium 95 -'Zr_95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30079 ; - } - -#paramId: 503257 -#Prognostic specific activity concentration of Xenon 133 -'Xe_133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30161 ; - } - -#paramId: 503258 -#Prognostic specific activity concentration of Iodine 131 elementary gaseous -'I_131g' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30138 ; - } - -#paramId: 503259 -#Prognostic specific activity concentration of Iodine 131 organic bounded -'I_131o' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30139 ; - } - -#paramId: 503260 -#Prognostic specific activity concentration of Barium 140 -'Ba_140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30175 ; - } - -#paramId: 503261 -#Prognostic specific activity concentration of Ruthenium 103 -'Ru_103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30102 ; - } - -#paramId: 503262 -#Diagnostic total mass concentration of volcanic ash -'ASH_TOTAL_MC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 0 ; - constituentType = 62025 ; - } - -#paramId: 503263 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 -'ASH_MAX_TOTAL_MC_SFC_200' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 46500 ; - constituentType = 62025 ; - } - -#paramId: 503265 -#Diagnostic total column of mass concentration of volcanic ash -'ASH_TOTAL_MC_VI' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - constituentType = 62025 ; - } - -#paramId: 503266 -#Diagnostic height of model layer with maximal total mass concentration of volcanic ash -'ASH_HML_MAX' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 62 ; - constituentType = 62025 ; - } - -#paramId: 503267 -#Diagnostic volcanic ash optical depth -'AOD_ASH' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62025 ; - } - -#paramId: 503268 -#Diagnostic mineral dust optical depth -'AOD_DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62001 ; - } - -#paramId: 503269 -#Diagnostic sea salt optical depth -'AOD_SEAS' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62008 ; - } - -#paramId: 503270 -#Diagnostic vmaximum activity concentration of radionuclides in a layer -'RADIONUC_MAX_AC_LAYER' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 15 ; - } - -#paramId: 503273 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 -'ASH_MAX_TOTAL_MC_200_350' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 46500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 24000 ; - constituentType = 62025 ; - } - -#paramId: 503274 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 -'ASH_MAX_TOTAL_MC_SFC_100' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 70000 ; - constituentType = 62025 ; - } - -#paramId: 503275 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 -'ASH_MAX_TOTAL_MC_350_550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 24000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 9100 ; - constituentType = 62025 ; - } - -#paramId: 503276 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 -'ASH_MAX_TOTAL_MC_100_245' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 70000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 38500 ; - constituentType = 62025 ; - } - -#paramId: 503277 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 -'ASH_MAX_TOTAL_MC_245_390' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 38500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 20000 ; - constituentType = 62025 ; - } - -#paramId: 503278 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 -'ASH_MAX_TOTAL_MC_390_530' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 20000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10000 ; - constituentType = 62025 ; - } - -#paramId: 503279 -#Diagnostic maximum total mass concentration of volcanic ash in a layer -'ASH_MAX_TOTAL_MC_LAYER' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - constituentType = 62025 ; - } - -#paramId: 503280 -#Aerosol optical depth -'AEROSOL_OPTICAL_DEPTH' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - } - -#paramId: 503293 -#Large Scale Rain Difference -'RAIN_GSP_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503294 -#Large Scale Snowfall water Equivalent Difference -'SNOW_GSP_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503295 -#Convective Rain Difference -'RAIN_CON_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503296 -#Convective Snowfall Water Equivalent Difference -'SNOW_CON_D' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503303 -#Total precipitation rate -'TOT_PR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } - -#paramId: 503304 -#Horizontal moisture convergence -'MCONV' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } - -#paramId: 503305 -#TOA downward solar radiation -'SODT_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 503306 -#Surface upward thermal radiation -'THUS_RAD' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503307 -#Surface upward thermal radiation -'ATHU_S' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503308 -#Specific mass of liquid water coating on hail -'QH_LIQ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 110 ; - } - -#paramId: 503309 -#Specific mass of liquid water coating on graupel -'QG_LIQ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 113 ; - } - -#paramId: 503310 -#Specific mass of liquid water coating on snow -'QS_LIQ' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 116 ; - } - -#paramId: 503311 -#Specific number concentration of rain -'NCRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 100 ; - } - -#paramId: 503312 -#Number density of rain -'NDRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 104 ; - } - -#paramId: 503313 -#Specific number concentration of snow -'NCSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 101 ; - } - -#paramId: 503314 -#Specific number concentration of graupel -'NCGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 102 ; - } - -#paramId: 503315 -#Specific number concentration of hail -'NCHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 103 ; - } - -#paramId: 503316 -#Number density of snow -'NDSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 105 ; - } - -#paramId: 503317 -#Number density of graupel -'NDGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 106 ; - } - -#paramId: 503318 -#Number density of hail -'NDHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 107 ; - } - -#paramId: 503319 -#Mass density of rain -'DENR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 96 ; - } - -#paramId: 503320 -#Mass density of snow -'DENS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 97 ; - } - -#paramId: 503321 -#Mass density of graupel -'DENG' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 98 ; - } - -#paramId: 503322 -#Mass density of cloud droplets -'DENC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 38 ; - } - -#paramId: 503323 -#Mass density of cloud ice -'DENI' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 39 ; - } - -#paramId: 503324 -#Mass density of hail -'DENH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 99 ; - } - -#paramId: 503326 -#Diagnostic total column of activity concentration of radionuclides -'RADIONUC_AC_VI' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503327 -#Base for given threshold of mass density for volcanic ash cloud -'HBAS_ASH_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62025 ; - } - -#paramId: 503328 -#Base for given threshold of mass density for mineral dust cloud -'HBAS_DUST_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62001 ; - } - -#paramId: 503330 -#Top for given threshold of mass density for volcanic ash cloud -'HTOP_ASH_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62025 ; - } - -#paramId: 503331 -#Top for given threshold of mass density for mineral dust cloud -'HTOP_DUST_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62001 ; - } - -#paramId: 503332 -#Top for given threshold of air concentration of radionuclides -'HTOP_RADIONUC_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 24 ; - } - -#paramId: 503333 -#Emission rate of dust for mode 2 -'EMISS_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503334 -#Emission rate of dust for mode 3 -'EMISS_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503335 -#Emission rate of dust for mode 1 -'EMISS_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503336 -#Accumulated dust Emission for mode 2 -'ACCEMISS_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503337 -#Accumulated dust Emission for mode 1 -'ACCEMISS_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503338 -#Accumulated dust Emission for mode 3 -'ACCEMISS_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503340 -#Base for given threshold of air concentration of radionuclides -'HBAS_RADIONUC_CLD' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 23 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'UH_MAX' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 15 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'TCOND10_MX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 26315 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'TCOND_MAX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'DBZCMP_OBS' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 8 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'DBZCMP_SIM' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'DBZ_CTMAX' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503350 -#relative vorticity -'RELV' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503352 -#2m Temperature, restricted to land -'T_2M_L' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503353 -#2m Dew Point Temperature, restricted to land -'TD_2M_L' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503354 -#2m Relative Humidity, restricted to land -'RELHUM_2M_L' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503357 -#Maximum 10m wind speed without gust -'VABSMX_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503360 -#Birch (betula) pollen concentration -'BETU' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62101 ; - } - -#paramId: 503362 -#Fraction of land occupied by birch (betula) -'BETUfr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503368 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) -'BETUrprec' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62101 ; - } - -#paramId: 503375 -#Alder (alnus) pollen concentration -'ALNU' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62100 ; - } - -#paramId: 503376 -#Fraction of land occupied by alder (alnus) -'ALNUfr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503382 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) -'ALNUrprec' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62100 ; - } - -#paramId: 503390 -#Grasses (poaceae) pollen concentration -'POAC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62300 ; - } - -#paramId: 503391 -#Fraction of land occupied by grasses (poaceae) -'POACfr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503397 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) -'POACrprec' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62300 ; - } - -#paramId: 503405 -#ragweed (ambrosia) pollen concentration -'AMBR' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62200 ; - } - -#paramId: 503406 -#Fraction of land occupied by ragweed (ambrosia) -'AMBRfr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503412 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) -'AMBRrprec' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62200 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'ECHOTOP' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'ECHOTOPinM' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503423 -#Maximum horizontal moisture convergence track (over given time interval and column) -'MCNV_CTMAX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503431 -#Accumulated dry deposition (surface) of dust for mode 1 -'ACCDRYDEPO_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503432 -#Accumulated dry deposition (surface) of dust for mode 2 -'ACCDRYDEPO_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503433 -#Accumulated dry deposition (surface) of dust for mode 3 -'ACCDRYDEPO_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503434 -#Accumulated wet deposition by grid scale precipitation of dust for mode 1 -'ACCWETDEPO_GSP_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503435 -#Accumulated wet deposition by grid scale precipitation of dust for mode 2 -'ACCWETDEPO_GSP_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503436 -#Accumulated wet deposition by grid scale precipitation of dust for mode 3 -'ACCWETDEPO_GSP_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503437 -#Accumulated wet deposition by convective precipitation of dust for mode 1 -'ACCWETDEPO_CON_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503438 -#Accumulated wet deposition by convective precipitation of dust for mode 2 -'ACCWETDEPO_CON_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503439 -#Accumulated wet deposition by convective precipitation of dust for mode 3 -'ACCWETDEPO_CON_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503443 -#Accumulated sedimentation of dust for mode 1 -'ACCSEDIM_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503444 -#Accumulated sedimentation of dust for mode 2 -'ACCSEDIM_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503445 -#Accumulated sedimentation of dust for mode 3 -'ACCSEDIM_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503458 -#Attenuated backscatter from satellite for dust (for given wave length) -'SAT_BSC_DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62001 ; - } - -#paramId: 503459 -#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) -'CEIL_BSC_DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62001 ; - } - -#paramId: 503461 -#Attenuated backscatter from satellite for volcanic ash (for given wave length) -'SAT_BSC_ASH' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62025 ; - } - -#paramId: 503462 -#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) -'CEIL_BSC_ASH' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62025 ; - } - -#paramId: 503467 -#2m Temperature analysis increment, filtered in time -'T_2M_FILTBIAS' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 206 ; - } - -#paramId: 503468 -#Cs137 - total (wet + dry) deposition -'Cs-137t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30172 ; - } - -#paramId: 503469 -#Prognostic specific activity concentration of Caesium 137 -'Cs_137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30172 ; - } - -#paramId: 503470 -#Averaged air concentration of Caesium 137 -'ACs-137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30172 ; - } - -#paramId: 503471 -#Accumulated air concentration of Caesium 137 -'ACCCs-137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30172 ; - } - -#paramId: 503480 -#Prognostic specific activity concentration of Krypton 85 -'Kr_85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30059 ; - } - -#paramId: 503481 -#Kr85 - total (wet + dry) deposition -'Kr-85t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30059 ; - } - -#paramId: 503482 -#Averaged air concentration of Krypton 85 -'AKr-85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30059 ; - } - -#paramId: 503483 -#Accumulated air concentration of Krypton 85 -'ACCKr-85' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30059 ; - } - -#paramId: 503484 -#Prognostic specific activity concentration of Strontium 90 -'Sr_90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30067 ; - } - -#paramId: 503485 -#Averaged air concentration of Strontium 90 -'ASr-90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30067 ; - } - -#paramId: 503486 -#Accumulated air concentration of Strontium 90 -'ACCSr-90' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30067 ; - } - -#paramId: 503487 -#Sr90 - total (wet + dry) deposition -'Sr-90t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30067 ; - } - -#paramId: 503489 -#I131a - total (wet + dry) deposition -'I-131at' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30141 ; - } - -#paramId: 503490 -#Averaged air concentration of Iodine 131 aerosol -'AI-131a' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30141 ; - } - -#paramId: 503491 -#Accumulated air concentration of Iodine 131 aerosol -'ACCI-131a' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30141 ; - } - -#paramId: 503492 -#Averaged air concentration of Cobalt 60 -'ACo-60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30042 ; - } - -#paramId: 503493 -#Accumulated air concentration of Cobalt 60 -'ACCCo-60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30042 ; - } - -#paramId: 503494 -#Prognostic specific activity concentration of Cobalt 60 -'Co_60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30042 ; - } - -#paramId: 503495 -#Co-60 - wet deposition -'Co-60w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30042 ; - } - -#paramId: 503496 -#Co60 - total (wet + dry) deposition -'Co-60t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30042 ; - } - -#paramId: 503497 -#Ru103 - total (wet + dry) deposition -'Ru-103t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30102 ; - } - -#paramId: 503499 -#Averaged air concentration of Ruthenium 103 -'ARu-103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30102 ; - } - -#paramId: 503500 -#Accumulated air concentration of Ruthenium 103 -'ACCRu-103' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30102 ; - } - -#paramId: 503501 -#Prognostic specific activity concentration of Tellurium 132 -'Te_132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30129 ; - } - -#paramId: 503502 -#Averaged air concentration of Tellurium 132 -'ATe-132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30129 ; - } - -#paramId: 503503 -#Accumulated air concentration of Tellurium 132 -'ACCTe-132' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30129 ; - } - -#paramId: 503504 -#Zr95 - total (wet + dry) deposition -'Zr-95t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30079 ; - } - -#paramId: 503505 -#Averaged air concentration of Zirconium 95 -'AZr-95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30079 ; - } - -#paramId: 503506 -#Accumulated air concentration of Zirconium 95 -'ACCZr-95' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30079 ; - } - -#paramId: 503507 -#TRACER - total (wet + dry) deposition -'Tr-2t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30000 ; - } - -#paramId: 503508 -#Prognostic specific activity concentration of TRACER -'Tr_2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30000 ; - } - -#paramId: 503509 -#Averaged air concentration of TRACER -'ATr-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30000 ; - } - -#paramId: 503510 -#Accumulated air concentration of TRACER -'ACCTr-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30000 ; - } - -#paramId: 503511 -#Averaged air concentration of Xenon 133 -'AXe-133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30161 ; - } - -#paramId: 503512 -#Accumulated air concentration of Xenon 133 -'ACCXe-133' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30161 ; - } - -#paramId: 503513 -#Xe133 - total (wet + dry) deposition -'Xe-133t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30161 ; - } - -#paramId: 503514 -#Air concentration of Iodine 131 -'I-131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30137 ; - } - -#paramId: 503515 -#I131 - dry deposition -'I-131d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30137 ; - } - -#paramId: 503516 -#Averaged air concentration of Iodine 131 -'AI-131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30137 ; - } - -#paramId: 503517 -#Accumulated air concentration of Iodine 131 -'ACCI-131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30137 ; - } - -#paramId: 503518 -#Prognostic specific activity concentration of Iodine 131 -'I_131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30137 ; - } - -#paramId: 503519 -#I131 - wet deposition -'I-131w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30137 ; - } - -#paramId: 503520 -#I131 - total (wet + dry) deposition -'I-131t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30137 ; - } - -#paramId: 503522 -#Averaged air concentration of Iodine 131 elementary gaseous -'AI-131g' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30138 ; - } - -#paramId: 503523 -#Accumulated air concentration of Iodine 131 elementary gaseous -'ACCI-131g' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30138 ; - } - -#paramId: 503524 -#I131g - total (wet + dry) deposition -'I-131gt' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30138 ; - } - -#paramId: 503525 -#Averaged air concentration of Iodine 131 organic bounded -'AI-131o' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30139 ; - } - -#paramId: 503526 -#Accumulated air concentration of Iodine 131 organic bounded -'ACCI-131o' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30139 ; - } - -#paramId: 503527 -#I131o - total (wet + dry) deposition -'I-131ot' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30139 ; - } - -#paramId: 503528 -#Ba140 - total (wet + dry) deposition -'Ba-140t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30175 ; - } - -#paramId: 503529 -#Averaged air concentration of Barium 140 -'ABa-140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30175 ; - } - -#paramId: 503530 -#Accumulated air concentration of Barium 140 -'ACCBa-140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30175 ; - } - -#paramId: 503531 -#Air concentration of Ruthenium 106 -'Ru-106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30104 ; - } - -#paramId: 503532 -#Ru106 - total (wet + dry) deposition -'Ru-106t' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30104 ; - } - -#paramId: 503533 -#Prognostic specific activity concentration of Ruthenium 106 -'Ru_106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30104 ; - } - -#paramId: 503534 -#Ru106 - dry deposition -'Ru-106d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30104 ; - } - -#paramId: 503535 -#Ru106 - wet deposition -'Ru-106w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30104 ; - } - -#paramId: 503536 -#Averaged air concentration of Ruthenium 106 -'ARu-106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30104 ; - } - -#paramId: 503537 -#Accumulated air concentration of Ruthenium 106 -'ACCRu-106' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30104 ; - } - -#paramId: 503538 -#Co-60 - dry deposition -'Co-60d' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30042 ; - } - -#paramId: 503539 -#Air concentration of Cobalt 60 -'Co-60' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30042 ; - } - -#paramId: 503542 -#Kr85m - wet deposition -'Kr-85mw' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30060 ; - } - -#paramId: 503543 -#Kr85m - total (wet + dry) deposition -'Kr-85mt' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30060 ; - } - -#paramId: 503544 -#Prognostic specific activity concentration of Krypton 85m -'Kr_85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30060 ; - } - -#paramId: 503545 -#Kr85m - dry deposition -'Kr-85md' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30060 ; - } - -#paramId: 503546 -#Averaged air concentration of Krypton 85m -'AKr-85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30060 ; - } - -#paramId: 503547 -#Accumulated air concentration of Krypton 85m -'ACCKr-85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30060 ; - } - -#paramId: 503548 -#Air concentration of Krypton 85m -'Kr-85m' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30060 ; - } - -#paramId: 503551 -#Birch (betula) pollen specific number concentration -'BETUsnc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62101 ; - } - -#paramId: 503552 -#Alder (alnus) pollen specific number concentration -'ALNUsnc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62100 ; - } - -#paramId: 503553 -#Grasses (poaceae) pollen specific number concentration -'POACsnc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62300 ; - } - -#paramId: 503554 -#Ragweed (ambrosia) pollen specific number concentration -'AMBRsnc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62200 ; - } - -#paramId: 503560 -#Total lightning flash density - instantaneous -'LFD_TOT' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503561 -#Total lightning flash density - time average -'LFD_TOT_AV' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'SOHR_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'THHR_RAD' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'ALHFL_BS' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'ALHFL_PL' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500097 -#Stomatal resistance -'RSTOM' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } - -#paramId: 500109 -#Vertical integral of divergence of total water content - accumulation -'TDIV_HUM' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500110 -#Sub-grid scale cloud water -'QC_RAD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } - -#paramId: 500111 -#Sub-grid scale cloud ice -'QI_RAD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } - -#paramId: 500115 -#Cloud base above MSL, shallow convection -'HBAS_SC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500116 -#Cloud top above MSL, shallow convection -'HTOP_SC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500117 -#Specific cloud liquid water content, convective cloud -'CLW_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } - -#paramId: 500120 -#Base index (vertical level) of main convective cloud -'BAS_CON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500121 -#Top index (vertical level) of main convective cloud -'TOP_CON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'DT_CON' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'DQV_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - } - -#paramId: 500124 -#Zonal wind tendency due to convection -'DU_CON' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - } - -#paramId: 500125 -#Meridional wind tendency due to convection -'DV_CON' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'HTOP_DC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'SNOWLMT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'DQC_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - } - -#paramId: 500130 -#Tendency of specific cloud ice content due to convection -'DQI_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'Q_SEDIM' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipitation -'DT_GSP' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'DQV_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - } - -#paramId: 500142 -#Tendency of specific cloud liquid water content due to grid scale precipitation -'DQC_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'FRESHSNW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } - -#paramId: 500144 -#Tendency of specific cloud ice content due to grid scale precipitation -'DQI_GSP' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - } - -#paramId: 500148 -#Pressure perturbation -'PP' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500149 -#Supercell detection index 1 (rot. up- and downdrafts) -'SDI_1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } - -#paramId: 500150 -#Supercell detection index 2 (only rot. updrafts) -'SDI_2' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'CAPE_MU' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'CIN_MU' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'CAPE_ML' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'CIN_ML' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'TKETENS' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } - -#paramId: 500157 -#Kinetic energy -'KE' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - } - -#paramId: 500176 -#Solution of 2-d Helmholtz equations - needed for restart -'DTTDIV' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 192 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'SOTR_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - } - -#paramId: 500178 -#Sum of contributions to evaporation -'EVATRA_SUM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500179 -#Total transpiration from all soil layers -'TRA_SUM' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500180 -#Total forcing at soil surface -'TOTFORCE_S' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500181 -#Residuum of soil moisture -'RESID_WSO' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500182 -#Mass flux at convective cloud base -'MFLX_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500184 -#Moisture convergence for Kuo-type closure -'QCVG_CON' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - } - -#paramId: 500195 -#Analysis error (standard deviation), geopotential (gpm) -'ANA_ERR_FI' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500196 -#Analysis error (standard deviation), u-comp. of wind -'ANA_ERR_U' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500197 -#Analysis error (standard deviation), v-comp. of wind -'ANA_ERR_V' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500198 -#Zonal wind tendency due to sub-grid scale oro. -'DU_SSO' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - } - -#paramId: 500199 -#Meridional wind tendency due to sub-grid scale oro. -'DV_SSO' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - } - -#paramId: 500204 -#Surface emissivity -'EMIS_RAD' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } - -#paramId: 500205 -#Soil type (1...9, local soilType.table) -'SOILTYP' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 500208 -#Height of ozone maximum (climatological) -'HMO3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - } - -#paramId: 500209 -#Vertically integrated ozone content (climatological) -'VIO3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - } - -#paramId: 500221 -#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'NDVI_MRAT' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500222 -#Ratio of NDVI (normalized differential vegetation index) to annual maximum -'NDVIRATIO' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500233 -#Tendency of specific humidity -'DQVDT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - } - -#paramId: 500234 -#Water vapor flux -'QVSFLX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } - -#paramId: 500235 -#Coriolis parameter -'FC' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - } - -#paramId: 500239 -#Delay of the GPS signal through the (total) atmos. -'ZTD' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - } - -#paramId: 500240 -#Delay of the GPS signal through wet atmos. -'ZWD' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - } - -#paramId: 500241 -#Delay of the GPS signal through dry atmos. -'ZHD' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - } - -#paramId: 500279 -#U-momentum flux due to SSO-effects (mean over forecast time) -'AUSTR_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500280 -#U-momentum flux due to SSO-effects -'USTR_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500281 -#V-momentum flux due to SSO-effects (mean over forecast time) -'AVSTR_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500282 -#V-momentum flux due to SSO-effects -'VSTR_SSO' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'VABS' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 197 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) -'CL_TYP' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 194 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'CCL_NN' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 24 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'ADVORG' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 0 ; - } - -#paramId: 500294 -#Geostrophic thickness advection -'ADVOR' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 1 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'ADRTG' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 2 ; - } - -#paramId: 500296 -#Winddivergenz -'WDIV' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 3 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'QVN' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 4 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'IPV' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'UP' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 5 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'VP' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 6 ; - } - -#paramId: 500306 -#Modified cloud depth for media -'CLDEPTH' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - } - -#paramId: 500307 -#Modified cloud cover for media -'CLCT_MOD' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - } - -#paramId: 500322 -#RMS of difference "first guess - analysis" of kinetic energy -'EFA-KE' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500323 -#RMS of difference "initialized analysis - analysis" of kinetic energy -'EIA-KE' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'W_SKRR_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'U_SKRRH_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'W_SKRR_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 14 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'U_SKRRH_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'W_DRR_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'U_DRRER_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'E_DR_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 32 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'W_SFL_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 69 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'W_SF_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 70 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'U_SFSK_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 71 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'W_SFL_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 72 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'W_SF_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 74 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'U_SFSK_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'E_SF_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'W_WND_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 132 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'W_STM_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 134 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'W_STMSW_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 136 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'U_ORKAR_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 137 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'U_ORK_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 138 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'E_ORK_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 139 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'W_GLEIS_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 191 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'W_GEW_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'W_GEWSK_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'U_GEWSW_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'W_SVW_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 212 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'U_SVWSK_12' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 213 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'W_FR_01' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 232 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'W_FRSTR_06' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 236 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'UVI_CS_COR' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 195 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'UVI_B_CS' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 196 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'UVI_CL_COR' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 197 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'UVI_MAX_H' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500472 -#Type of convection (0..4) -'C_TYPE' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 201 ; - } - -#paramId: 500473 -#perceived temperature -'PT1M' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 1 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'SUL_PROB' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 3 ; - } - -#paramId: 500479 -#value of isolation of clothes -'CLO' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 2 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'ASWDIR_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'ASWDIFD_S' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500503 -#Icing Base (hft) - Icing Degree Composit -'PIDC_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Icing Degree Composit -'PIDC_MAX_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Icing Degree Composit -'PIDC_MAX_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500506 -#Icing Top (hft) - Icing Degree Composit -'PIDC_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'PIDC_VERT_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'PIDC_MAX_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500509 -#Icing Base (hft) - Icing Scenario Composit -'PISC_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'PISC_SIG_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'PISC_SIG_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500512 -#Icing Top (hft) - Icing Scenario Composit -'PISC_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'PISC_VERT_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'PISC_SIG_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500515 -#Icing Base (hft) - Icing Degree Composit -'DIDC_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Icing Degree Composit -'DIDC_MAX_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Icing Degree Composit -'DIDC_MAX_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500518 -#Icing Top (hft) - Icing Degree Composit -'DIDC_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'DIDC_VERT_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'DIDC_MAX_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500521 -#Icing Base (hft) - Icing Scenario Composit -'DISC_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'DISC_SIG_BASE_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'DISC_SIG_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500524 -#Icing Top (hft) - Icing Scenario Composit -'DISC_TOP_HFT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'DISC_VERT_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'DISC_SIG_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500527 -#Icing Degree Code (1=light,2=moderate,3=severe) -'PID_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500528 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'PIS_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500529 -#Icing Degree Code (1=light,2=moderate,3=severe) -'DID_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500530 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'DIS_CODE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'WW_0-9' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 209 ; - } - -#paramId: 500538 -#cloud type -'CL_TYPE_SAT' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500540 -#cloud top temperature -'CL_TOP_TEMP' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } - -#paramId: 500541 -#Relative vorticity, u-component -'VORTIC_U' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 198 ; - } - -#paramId: 500542 -#Relative vorticity, v-component -'VORTIC_V' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 199 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'PVP' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 23 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'VORG' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 7 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'FORCOMEGA' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 8 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'QVX' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 9 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'QVY' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 10 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'DIVGEO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 11 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'QVNGEO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 12 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'QVSGEO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 13 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'DIVQNGEO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 14 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'DIVQSGEO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 15 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'FRONTO' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 16 ; - } - -#paramId: 500562 -#Divergenz -'DIVQ' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 17 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'QVS' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 18 ; - } - -#paramId: 500564 -#Divergenz Qn -'DIVQN' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 19 ; - } - -#paramId: 500565 -#Divergenz Qs -'DIVQS' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 20 ; - } - -#paramId: 500566 -#Frontogenesis function -'FRONTOF' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 21 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'CATIX' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 22 ; - } - -#paramId: 500570 -#Dry convection top index -'TOP_DCON' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 202 ; - } - -#paramId: 500572 -#Tidal tendencies -'TIDAL' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'SST_IC' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500575 -#3 hour pressure change -'PPP' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500577 -#Variance of soil moisture content -'WVAR' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500578 -#Covariance of soil moisture content -'WCOV' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'EDP' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 216 ; - } - -#paramId: 500586 -#Ellrod Index -'ELD' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 217 ; - } - -#paramId: 500591 -#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation -'RR_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 209 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500620 -#Prob Gewitter -'TS' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'TSX' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'TSXX' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500623 -#Prob Dauerregen -'RA25' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'RA40' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'RA70' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'BLSN6' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 7 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'BLSN8' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500628 -#Prob Glaette -'FZ' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 9 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'FZRA' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 10 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500630 -#Prob Glatteis -'FZRAX' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'FG' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 12 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500632 -#Prob Tauwetter -'TAU' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 13 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'TAUX' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 14 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500634 -#Wake-production of TKE due to sub-grid scale orography -'DTKE_SSO' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 220 ; - } - -#paramId: 500635 -#Shear-production of TKE due to separated horizontal shear modes -'DTKE_HSH' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 221 ; - } - -#paramId: 500636 -#Buoyancy-production of TKE due to sub-grid scale convection -'DTKE_CON' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 219 ; - } - -#paramId: 500637 -#Production of TKE -'DTKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 218 ; - } - -#paramId: 500638 -#Atmospheric resistance -'ATM_RSTC' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 200 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'HTOP_THERM' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 197 ; - } - -#paramId: 500640 -#Mass concentration of dust (minimum mode) -'VSOILA' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 33 ; - } - -#paramId: 500643 -#Mass concentration of dust (medium mode) -'VSOILB' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 34 ; - } - -#paramId: 500644 -#Mass concentration of dust (maximum mode) -'VSOILC' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 35 ; - } - -#paramId: 500645 -#Number concentration of dust (minimum mode) -'VSOILA0' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 72 ; - } - -#paramId: 500646 -#Number concentration of dust (medium mode) -'VSOILB0' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 73 ; - } - -#paramId: 500647 -#Number concentration of dust (maximum mode) -'VSOILC0' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 74 ; - } - -#paramId: 500648 -#Mass concentration of dust (sum of all modes) -'VSOILS' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 251 ; - } - -#paramId: 500649 -#Number concentration of dust (sum of all modes) -'VSOILS0' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'DUMMY_1' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'DUMMY_2' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'DUMMY_3' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'DUMMY_4' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'DUMMY_5' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'DUMMY_6' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'DUMMY_7' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'DUMMY_8' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'DUMMY_9' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'DUMMY_10' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'DUMMY_11' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'DUMMY_12' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'DUMMY_13' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'DUMMY_14' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'DUMMY_15' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'DUMMY_16' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'DUMMY_17' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'DUMMY_18' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'DUMMY_19' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'DUMMY_20' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'DUMMY_21' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'DUMMY_22' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'DUMMY_23' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'DUMMY_24' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'DUMMY_25' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'DUMMY_26' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'DUMMY_27' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'DUMMY_28' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'DUMMY_29' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'DUMMY_30' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'DUMMY_31' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'DUMMY_32' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'DUMMY_33' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'DUMMY_34' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'DUMMY_35' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'DUMMY_36' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'DUMMY_37' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'DUMMY_38' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'DUMMY_39' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'DUMMY_40' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'DUMMY_41' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'DUMMY_42' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'DUMMY_43' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'DUMMY_44' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'DUMMY_45' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'DUMMY_46' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'DUMMY_47' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'DUMMY_48' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'DUMMY_49' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'DUMMY_50' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'DUMMY_51' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'DUMMY_52' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'DUMMY_53' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'DUMMY_54' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'DUMMY_55' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'DUMMY_56' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'DUMMY_57' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'DUMMY_58' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'DUMMY_59' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'DUMMY_60' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'DUMMY_61' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'DUMMY_62' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'DUMMY_63' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'DUMMY_64' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'DUMMY_65' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'DUMMY_66' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'DUMMY_67' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'DUMMY_68' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'DUMMY_69' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'DUMMY_70' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'DUMMY_71' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'DUMMY_72' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'DUMMY_73' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'DUMMY_74' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'DUMMY_75' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'DUMMY_76' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'DUMMY_77' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'DUMMY_78' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'DUMMY_79' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'DUMMY_80' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'DUMMY_81' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'DUMMY_82' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'DUMMY_83' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'DUMMY_84' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'DUMMY_85' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'DUMMY_86' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'DUMMY_87' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'DUMMY_88' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'DUMMY_89' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'DUMMY_90' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'DUMMY_91' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'DUMMY_92' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'DUMMY_93' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'DUMMY_94' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'DUMMY_95' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'DUMMY_96' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'DUMMY_97' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'DUMMY_98' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'DUMMY_99' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'DUMMY_100' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'DUMMY_101' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'DUMMY_102' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'DUMMY_103' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'DUMMY_104' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'DUMMY_105' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'DUMMY_106' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'DUMMY_107' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'DUMMY_108' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'DUMMY_109' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'DUMMY_110' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'DUMMY_111' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'DUMMY_112' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'DUMMY_113' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'DUMMY_114' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'DUMMY_115' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'DUMMY_116' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'DUMMY_117' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'DUMMY_118' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'DUMMY_119' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'DUMMY_120' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'DUMMY_121' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'DUMMY_122' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'DUMMY_123' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'DUMMY_124' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'DUMMY_125' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'DUMMY_126' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'DUMMY_127' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'DUMMY_128' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'DUMMY_143' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'DUMMY_144' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'DUMMY_145' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'DUMMY_146' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'DUMMY_147' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'DUMMY_148' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'DUMMY_149' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'DUMMY_150' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'DUMMY_151' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'DUMMY_152' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'DUMMY_153' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'DUMMY_154' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'DUMMY_155' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'DUMMY_156' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'DUMMY_157' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'DUMMY_158' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'DUMMY_159' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'DUMMY_160' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'DUMMY_161' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'DUMMY_162' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'DUMMY_163' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'DUMMY_164' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'DUMMY_165' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'DUMMY_166' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'DUMMY_167' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'DUMMY_168' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'DUMMY_169' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'DUMMY_170' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'DUMMY_171' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'DUMMY_172' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'DUMMY_173' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'DUMMY_174' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'DUMMY_175' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'DUMMY_176' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'DUMMY_177' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'DUMMY_178' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'DUMMY_179' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'DUMMY_180' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'DUMMY_181' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'DUMMY_182' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'DUMMY_183' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'DUMMY_184' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'DUMMY_185' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'DUMMY_186' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'DUMMY_187' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'DUMMY_188' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'DUMMY_189' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'DUMMY_190' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'DUMMY_191' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'DUMMY_192' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'DUMMY_193' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'DUMMY_194' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'DUMMY_195' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'DUMMY_196' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'DUMMY_197' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'DUMMY_198' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'DUMMY_199' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'DUMMY_200' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'DUMMY_201' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'DUMMY_202' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'DUMMY_203' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'DUMMY_204' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'DUMMY_205' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'DUMMY_206' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'DUMMY_207' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'DUMMY_208' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'DUMMY_209' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'DUMMY_210' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'DUMMY_211' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'DUMMY_212' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'DUMMY_213' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'DUMMY_214' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'DUMMY_215' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'DUMMY_216' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'DUMMY_217' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'DUMMY_218' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'DUMMY_219' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'DUMMY_220' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'DUMMY_221' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'DUMMY_222' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'DUMMY_223' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'DUMMY_224' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'DUMMY_225' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'DUMMY_226' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'DUMMY_227' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'DUMMY_228' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'DUMMY_229' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'DUMMY_230' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'DUMMY_231' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'DUMMY_232' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'DUMMY_233' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'DUMMY_234' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'DUMMY_235' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'DUMMY_236' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'DUMMY_237' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'DUMMY_238' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'DUMMY_239' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'DUMMY_240' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'DUMMY_241' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'DUMMY_242' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'DUMMY_243' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'DUMMY_244' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'DUMMY_245' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'DUMMY_246' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'DUMMY_247' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'DUMMY_248' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'DUMMY_249' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'DUMMY_250' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'DUMMY_251' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'DUMMY_252' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'DUMMY_253' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'DUMMY_254' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 254 ; - } - -#paramId: 502332 -#Liquid water content in snow - multi level -'WLIQ_SNOW_M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 210 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux at surface -'SWDIRS_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502344 -#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) -'ALB_UV12' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502345 -#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) -'ALB_UV' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - } - -#paramId: 502346 -#Albedo - near infrared - time average (0.7 - 5.0 m-6) -'ALB_NI12' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502347 -#Albedo - near infrared (0.7 - 5.0 m-6) -'ALB_NI' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - } - -#paramId: 502352 -#Eddy Dissipation Rate Total Col-Max. Upper FIR -'EDP_MAX_UFIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 224 ; - } - -#paramId: 502353 -#Eddy Dissipation Rate Total Col-Max. Lower UIR -'EDP_MAX_LUIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 225 ; - } - -#paramId: 502354 -#Eddy Dissipation Rate Total Col-Max. Upper UIR -'EDP_MAX_UUIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 226 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'EDR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 227 ; - } - -#paramId: 503050 -#Radar precipitation rate -'RAD_PRECIP' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 195 ; - } - -#paramId: 503052 -#Radar quality information -'RAD_QUAL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 196 ; - } - -#paramId: 503053 -#Radar blacklist -'RAD_BL' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 197 ; - } - -#paramId: 503054 -#Height of radar beam above ground -'RAD_HEIGHT' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 198 ; - } - -#paramId: 503055 -#Specific humidity (diagnostic) -'QV_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 211 ; - } - -#paramId: 503056 -#Specific cloud water content (diagnostic) -'QC_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 212 ; - } - -#paramId: 503057 -#Specific cloud ice content (diagnostic) -'QI_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 213 ; - } - -#paramId: 503058 -#Total column integrated water vapour (diagnostic) -'TQV_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 214 ; - } - -#paramId: 503059 -#Total column integrated cloud water (diagnostic) -'TQC_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 215 ; - } - -#paramId: 503060 -#Total column integrated cloud ice (diagnostic) -'TQI_DIA' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 216 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'SWDIFDS_RAD' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'RADAR_RQ' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503069 -#precipitation,BRD -'RADAR_RS' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'RADAR_RE' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503071 -#hail flag,BRD -'RADAR_RH' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503072 -#snow_rate,BRD -'RADAR_FS' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503073 -#snow_rate,qualified,BRD -'RADAR_FQ' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503074 -#Area weights for regular lon-lat grid -'AW' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 193 ; - } - -#paramId: 503078 -#Relative humidity over mixed phase -'RH_MIX_EC' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 220 ; - } - -#paramId: 503079 -#Soil moisture index (multilayers) -'SMI' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 503096 -#Peak frequency (interpolated) -'PFRQ' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } - -#paramId: 503115 -#Specific number concentration of rain -'NCRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 228 ; - } - -#paramId: 503116 -#Number density of rain -'NDRAIN' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 229 ; - } - -#paramId: 503117 -#Specific number concentration of snow -'NCSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 217 ; - } - -#paramId: 503118 -#Specific number concentration of graupel -'NCGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 218 ; - } - -#paramId: 503119 -#Specific number concentration of hail -'NCHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 219 ; - } - -#paramId: 503120 -#Number density of snow -'NDSNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 221 ; - } - -#paramId: 503121 -#Number density of graupel -'NDGRAUPEL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 222 ; - } - -#paramId: 503122 -#Number density of hail -'NDHAIL' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 223 ; - } - -#paramId: 503123 -#Mass density of rain -'DENR' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 224 ; - } - -#paramId: 503124 -#Mass density of snow -'DENS' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 225 ; - } - -#paramId: 503125 -#Mass density of graupel -'DENG' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 226 ; - } - -#paramId: 503126 -#Mass density of cloud droplets -'DENC' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 203 ; - } - -#paramId: 503127 -#Mass density of cloud ice -'DENI' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 204 ; - } - -#paramId: 503128 -#Mass density of hail -'DENH' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 227 ; - } - -#paramId: 503137 -#Eddy Dissipation Rate Total Col-Max. Lower FIR -'EDP_MAX_LFIR' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 228 ; - } - -#paramId: 503142 -#Lightning Potential Index -'LPI' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - } - -#paramId: 503143 -#Rain drain from snowpack - accumulation -'RD_SNOW' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 230 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503146 -#Height of -10 degree Celsius isotherm -'HMIN10CL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 503147 -# probability density function of EDP for turbulence greater well defined threshold and model grid box -'EDPP' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 229 ; - } - -#paramId: 503148 -#Adedokun 2 Index -'ADEDO2' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 503149 -#Downward direct short wave radiation flux at surface on horizontal plane (time average) -'ASWDIR_SH' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503150 -#Gauss Boaga Coordinates West to East,East Sector -'BOAGAE_WE' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 194 ; - } - -#paramId: 503151 -#Gauss Boaga Coordinates South to North,East Sector -'BOAGAE_SN' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 195 ; - } - -#paramId: 503152 -#Gauss Boaga Coordinates West to East, West Sector -'BOAGAW_WE' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 196 ; - } - -#paramId: 503153 -#Gauss Boaga Coordinates South to North, West Sector -'BOAGAW_SN' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 197 ; - } - -#paramId: 503156 -#Ellrod and Knapp turbulence index1 -'CAT_TI1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 230 ; - } - -#paramId: 503157 -#Ellrod and Knapp turbulence index2 -'CAT_TI2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 231 ; - } - -#paramId: 503158 -#Deformation of horizontal wind field -'WDEF_H' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 29 ; - } - -#paramId: 503159 -#Divergence trend (scaled divergence tendency needed for CAT_DVI) -'CAT_DVT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 232 ; - } - -#paramId: 503160 -#Divergence modified turbulence index (Ellrod and Knox) -'CAT_DTI' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 233 ; - } - -#paramId: 503161 -#Cloud ice ratio qi/(qc+qi) -'CLI_RATIO' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 231 ; - } - -#paramId: 503162 -#Percentage of convective precipitation (from total prec) -'CONV_PERCENT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 232 ; - } - -#paramId: 503163 -#Deep convection index -'DCI' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503164 -#Wind direction in azimuth class -'DDCLASS' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 503165 -#Wind direction in azimuth class -'DDCLASS_10M' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503167 -#Possible astronomical maximum of sunshine -'DURSUN_M' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) -'DURSUN_R' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503171 -#Enthalpy -'ENTH' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } - -#paramId: 503172 -#2m Enthalpy -'ENTH_2M' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503175 -#Downward short wave radiation flux at surface on horizontal plane (time average) -'ASOD_SH' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503176 -#Downward short wave radiation flux at surface on vertical surface facing east (time average) -'ASOD_SvE' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 202 ; - } - -#paramId: 503177 -#Downward short wave radiation flux at surface on vertical surface facing north (time average) -'ASOD_SvN' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 203 ; - } - -#paramId: 503178 -#Downward short wave radiation flux at surface on vertical surface facing south (time average) -'ASOD_SvS' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 204 ; - } - -#paramId: 503179 -#Downward short wave radiation flux at surface on vertical surface facing west (time average) -'ASOD_SvW' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 205 ; - } - -#paramId: 503180 -#Along-wind Lagrangian time scale (Hanna) -'LAGTIMEU' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 503181 -#Cross-wind Lagrangian time scale (Hanna) -'LAGTIMEV' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503182 -#Vertical Lagrangian time scale (Hanna) -'LAGTIMEW' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503183 -#Zonal Lagrangian time scale (direct) (Hanna) -'LAGTIMEX' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503184 -#Meridional Lagrangian time scale (direct) (Hanna) -'LAGTIMEY' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503185 -#Vertical Lagrangian time scale (direct) (Hanna) -'LAGTIMEZ' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503187 -#Height of level of free convection of mixed (mean) layer parcel -'LFC_ML' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 194 ; - } - -#paramId: 503188 -#Luminosity -'LUM' = { - discipline = 215 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 503189 -#Downward long-wave radiation flux at surface based on T_2M (time average) -'ATHD_S_T2M' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503190 -#Downward long-wave radiation flux at surface based on T_G (time average) -'ATHD_S_TG' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503191 -#Downward long-wave radiation flux at surface based on T_SO(0) (time average) -'ATHD_S_TS' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503194 -#Pressure difference between cloud base and cloud top -'PDIFF_CON' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503198 -#Along-wind velocity fluctuation (Hanna) -'SIGMAU' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503199 -#Cross-wind velocity fluctuation (Hanna) -'SIGMAV' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 503200 -#Vertical velocity fluctuation (Hanna) -'SIGMAW' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 503201 -#Zonal velocity fluctuation (Hanna) -'SIGMAX' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 503202 -#Meridional velocity fluctuation (Hanna) -'SIGMAY' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 503203 -#Vertical velocity fluctuation (Hanna) -'SIGMAZ' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503205 -#Percentage of precipitation in snow (from total prec.) -'SNOW_PERCENT' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 233 ; - } - -#paramId: 503206 -#Thunderstorm index for Switzerland (night time) -'SWISS00' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 503207 -#Thunderstorm index for Switzerland (day time) -'SWISS12' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 503208 -#Swiss coordinate (south-north) -'SWISS_SN' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 198 ; - } - -#paramId: 503209 -#Swiss coordinate (west-east) -'SWISS_WE' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 199 ; - } - -#paramId: 503217 -#2m temperature, corrected in presence of snow -'T_2M_SNOWC' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503218 -#Universal thermal climate index without direct incident short wave radiation -'UTCI_SHADOW' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } - -#paramId: 503222 -#Relative geostrophic vorticity -'RELV_G' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 26 ; - } - -#paramId: 503223 -#Relative geostrophic vorticity advection -'RELV_ADV_G' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 27 ; - } - -#paramId: 503226 -#Wind divergence (3D) -'WDIV_3D' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 28 ; - } - -#paramId: 503227 -#Mean vertical wind shear for specified layer or layer-mean vertical wind shear -'WSHEAR_INT' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 201 ; - } - -#paramId: 503228 -#Norm of (vertical) wind shear vector between two levels -'WSHEAR_DIFF' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 202 ; - } - -#paramId: 503282 -#Diagnostic total column of activity concentration of radionuclides -'RADIONUC_AC_VI' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503283 -#Liquid water potential temperature variance -'THLTHLCOV' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 0 ; - } - -#paramId: 503284 -#Total water specific humidity variance -'QTQTCOV' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 1 ; - } - -#paramId: 503285 -#Liquid water potential temperature - total water specific humidity covariance -'THLQTCOV' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 2 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'FR_PAVED' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'AHF' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } - -#paramId: 503292 -#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) -'ALB_SEAICE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 234 ; - } - -#paramId: 503299 -#Sky-view-factor -'SKYVIEW' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 0 ; - } - -#paramId: 503300 -#Horizon angle - topography -'HORIZON' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 1 ; - } - -#paramId: 503301 -#Slope aspect - topography -'SLO_ASP' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 3 ; - } - -#paramId: 503302 -#Slope angle - topography -'SLO_ANG' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 2 ; - } - -#paramId: 503339 -#Threshold friction velocity -'USTAR_THRES' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 203 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'VORW_CTMAX' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'W_CTMAX' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'LPI_MAX' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503351 -#mean radiation temperature of an environment assumed black body related to standing human -'T_MRT' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 4 ; - } - -#paramId: 503355 -#Maximum 10m dynamical gust -'VGUST_DYN_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503356 -#Maximum 10m convective gust -'VGUST_CON_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503358 -#Standard deviation of saturation deficit -'RCLD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 234 ; - } - -#paramId: 503359 -#Evaporation of plants (integrated since "nightly reset") -'EVAP_PL' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } - -#paramId: 503363 -#Number of birch (betula) pollen in the reservoir (previous timestep) -'BETUreso' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62101 ; - } - -#paramId: 503364 -#Number of birch (betula) pollen released into the reservoir (new) -'BETUresn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62101 ; - } - -#paramId: 503365 -#Sum of released birch (betula) pollen into the reservoir (daily sum) -'BETUress' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62101 ; - } - -#paramId: 503366 -#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) -'BETUsdes' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62101 ; - } - -#paramId: 503367 -#Height correction for emission (decreasing emission with height) for birch (betula) -'BETUhcem' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503369 -#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen -'BETUctsum' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62101 ; - } - -#paramId: 503370 -#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) -'BETUtthrs' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503371 -#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) -'BETUtthre' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503372 -#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) -'BETUsaisa' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62101 ; - } - -#paramId: 503373 -#Length of birch (betula) pollen season -'BETUsaisl' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62101 ; - } - -#paramId: 503374 -#Pollen number emission flux for birch (betula) -'BETUfe' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62101 ; - } - -#paramId: 503377 -#Number of alder (alnus) pollen in the reservoir (previous timestep) -'ALNUreso' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62100 ; - } - -#paramId: 503378 -#Number of alder (alnus) pollen released into the reservoir (new) -'ALNUresn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62100 ; - } - -#paramId: 503379 -#Sum of released alder (alnus) pollen into the reservoir (daily sum) -'ALNUress' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62100 ; - } - -#paramId: 503380 -#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) -'ALNUsdes' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62100 ; - } - -#paramId: 503381 -#Height correction for emission (decreasing emission with height) for alder (alnus) -'ALNUhcem' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503383 -#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen -'ALNUctsum' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62100 ; - } - -#paramId: 503384 -#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) -'ALNUtthrs' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503385 -#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) -'ALNUtthre' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503386 -#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) -'ALNUsaisn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62100 ; - } - -#paramId: 503387 -#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) -'ALNUsaisa' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62100 ; - } - -#paramId: 503388 -#Length of alder (alnus) pollen season -'ALNUsaisl' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62100 ; - } - -#paramId: 503389 -#Pollen number emission flux for alder (alnus) -'ALNUfe' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62100 ; - } - -#paramId: 503392 -#Number of grasses (poaceae) pollen in the reservoir (previous timestep) -'POACreso' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62300 ; - } - -#paramId: 503393 -#Number of grasses (poaceae) pollen released into the reservoir (new) -'POACresn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62300 ; - } - -#paramId: 503394 -#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) -'POACress' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62300 ; - } - -#paramId: 503395 -#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) -'POACsdes' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62300 ; - } - -#paramId: 503396 -#Height correction for emission (decreasing emission with height) for grasses (poaceae) -'POAChcem' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503398 -#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen -'POACctsum' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62300 ; - } - -#paramId: 503399 -#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) -'POACtthrs' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503400 -#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) -'POACtthre' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503401 -#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) -'POACsaisn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62300 ; - } - -#paramId: 503402 -#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) -'POACsaisa' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62300 ; - } - -#paramId: 503403 -#Length of grasses (poaceae) pollen season -'POACsaisl' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62300 ; - } - -#paramId: 503404 -#Pollen number emission flux for grasses (poaceae) -'POACfe' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62300 ; - } - -#paramId: 503407 -#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) -'AMBRreso' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62200 ; - } - -#paramId: 503408 -#Number of ragweed (ambrosia) pollen released into the reservoir (new) -'AMBRresn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62200 ; - } - -#paramId: 503409 -#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) -'AMBRress' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62200 ; - } - -#paramId: 503410 -#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) -'AMBRsdes' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62200 ; - } - -#paramId: 503411 -#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) -'AMBRhcem' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503413 -#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen -'AMBRctsum' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62200 ; - } - -#paramId: 503414 -#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) -'AMBRtthrs' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503415 -#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) -'AMBRtthre' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503416 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) -'AMBRsaisn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62200 ; - } - -#paramId: 503417 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) -'AMBRsaisa' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62200 ; - } - -#paramId: 503418 -#Length of ragweed (ambrosia) pollen season -'AMBRsaisl' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62200 ; - } - -#paramId: 503419 -#Pollen number emission flux for ragweed (ambrosia) -'AMBRfe' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62200 ; - } - -#paramId: 503420 -#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) -'BETUsaisn' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62101 ; - } - -#paramId: 503424 -#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. -'RAPA_SPPT' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 235 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'SKC' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } - -#paramId: 503426 -#Maximum snow height during contiguous accumulating snow period (coupled with snow age) -'HSNOW_MAX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 235 ; - } - -#paramId: 503427 -#U-component of (vertical) wind shear vector between two levels -'WSHEAR_U' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 208 ; - } - -#paramId: 503428 -#V-component of (vertical) wind shear vector between two levels -'WSHEAR_V' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 209 ; - } - -#paramId: 503440 -#Accumulated wet deposition of dust if rain reaches the surface for mode 1 -'ACCWETDEPO_RAIN_DUSTA' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503441 -#Accumulated wet deposition of dust if rain reaches the surface for mode 2 -'ACCWETDEPO_RAIN_DUSTB' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503442 -#Accumulated wet deposition of dust if rain reaches the surface for mode 3 -'ACCWETDEPO_RAIN_DUSTC' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503446 -#Accumulated dry deposition of dust number concentration for mode 1 -'ACCDRYDEPO_DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503447 -#Accumulated dry deposition of dust number concentration for mode 2 -'ACCDRYDEPO_DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503448 -#Accumulated dry deposition of dust number concentration for mode 3 -'ACCDRYDEPO_DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503449 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 -'ACCWETDEPO_GSP_DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503450 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 -'ACCWETDEPO_GSP_DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503451 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 -'ACCWETDEPO_GSP_DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503452 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 -'ACCWETDEPO_RAIN_DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503453 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 -'ACCWETDEPO_RAIN_DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503454 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 -'ACCWETDEPO_RAIN_DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503455 -#Accumulated sedimentation of dust number concentration for mode 1 -'ACCSEDIM_DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503456 -#Accumulated sedimentation of dust number concentration for mode 2 -'ACCSEDIM_DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503457 -#Accumulated sedimentation of dust number concentration for mode 3 -'ACCSEDIM_DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503460 -#Mineral dust backscatter (not attenuated, for given wave length) -'BSC_DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62001 ; - } - -#paramId: 503463 -#Volcanic ash backscatter (not attenuated, for given wave length) -'BSC_ASH' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62025 ; - } - -#paramId: 503464 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 -'ACCWETDEPO_CON_DUSTC0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503465 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 -'ACCWETDEPO_CON_DUSTB0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503466 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 -'ACCWETDEPO_CON_DUSTA0' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503549 -#Swiss coordinate LV 95 (south-north) -'SWISS_LV95_SN' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 200 ; - } - -#paramId: 503550 -#Swiss coordinate LV 95 (west-east) -'SWISS_LV95_WE' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 201 ; - } - -#paramId: 503555 -#Average hail diameter -'DHAIL_AV' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503556 -#Standard deviation of hail diameter -'DHAIL_SD' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 6 ; - } - -#paramId: 503557 -#Maximum hail diameter -'DHAIL_MX' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503558 -#Duration of updraft -'W_UP_DUR' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 210 ; - } - -#paramId: 503559 -#Updraft mask -'W_UP_MASK' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 211 ; - } - diff --git a/eccodes/definitions.save/grib2/localConcepts/edzw/units.def b/eccodes/definitions.save/grib2/localConcepts/edzw/units.def deleted file mode 100755 index 54b9c993..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/edzw/units.def +++ /dev/null @@ -1,13809 +0,0 @@ -# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 -#paramId: 500000 -#Pressure (S) (not reduced) -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500001 -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500002 -#Pressure Reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 500003 -#Pressure Tendency (S) -'Pa s-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500004 -#Geopotential (S) -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500005 -#Geopotential (full lev) -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 105 ; - typeOfFirstFixedSurface = 105 ; - } - -#paramId: 500006 -#Geopotential -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 500007 -#Geometric Height of the earths surface above sea level -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500008 -#Geometric Height of the layer limits above sea level(NN) -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - } - -#paramId: 500009 -#Total Column Integrated Ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } - -#paramId: 500010 -#Temperature (G) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500011 -#2m Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500012 -#2m Temperature (AV) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500013 -#Climat. temperature, 2m Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 9 ; - } - -#paramId: 500014 -#Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500015 -#Max 2m Temperature (i) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500016 -#Min 2m Temperature (i) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500017 -#2m Dew Point Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500018 -#2m Dew Point Temperature (AV) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500019 -#Radar spectra (1) -'Numeric' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500020 -#Wave spectra (1) -'Numeric' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500021 -#Wave spectra (2) -'Numeric' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500022 -#Wave spectra (3) -'Numeric' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 500023 -#Wind Direction (DD_10M) -'degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500024 -#Wind Direction (DD) -'degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500025 -#Wind speed (SP_10M) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500026 -#Wind speed (SP) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500027 -#U-Component of Wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500028 -#U-Component of Wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500029 -#V-Component of Wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500030 -#V-Component of Wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 500031 -#Vertical Velocity (Pressure) ( omega=dp/dt ) -'Pa s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500032 -#Vertical Velocity (Geometric) (w) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 500034 -#Specific Humidity (2m) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500035 -#Specific Humidity -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500036 -#2m Relative Humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 500037 -#Relative Humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500038 -#Total column integrated water vapour -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } - -#paramId: 500039 -#Evaporation (s) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500040 -#Total Column-Integrated Cloud Ice -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - } - -#paramId: 500041 -#Total Precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500042 -#Large-Scale Precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500043 -#Convective Precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500044 -#Snow depth water equivalent -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } - -#paramId: 500045 -#Snow Depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 500046 -#Total Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } - -#paramId: 500047 -#Convective Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } - -#paramId: 500048 -#Cloud Cover (800 hPa - Soil) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - } - -#paramId: 500049 -#Cloud Cover (400 - 800 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - } - -#paramId: 500050 -#Cloud Cover (0 - 400 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500051 -#Total Column-Integrated Cloud Water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - } - -#paramId: 500052 -#Convective Snowfall water equivalent (s) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500053 -#Large-Scale snowfall - water equivalent (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500054 -#Land Cover (1=land, 0=sea) -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 500055 -#Surface Roughness length Surface Roughness -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 500056 -#Albedo (in short-wave) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } - -#paramId: 500057 -#Albedo (in short-wave, average) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500058 -#Soil Temperature ( 36 cm depth, vv=0h) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 36 ; - } - -#paramId: 500059 -#Soil Temperature (41 cm depth) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 41 ; - } - -#paramId: 500060 -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 9 ; - } - -#paramId: 500061 -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500062 -#Column-integrated Soil Moisture -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 190 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - } - -#paramId: 500063 -#Column-integrated Soil Moisture (1) 0 -10 cm -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500064 -#Column-integrated Soil Moisture (2) 10-100cm -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500065 -#Plant cover -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500066 -#Water Runoff -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500068 -#Water Runoff (s) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500069 -#Sea Ice Cover ( 0= free, 1=cover) -'Proportion' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 500070 -#Sea Ice Thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 500071 -#Significant height of combined wind waves and swell -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500072 -#Direction of wind waves -'degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 500073 -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 500074 -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 500075 -#Direction of swell waves -'degree coming from' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500076 -#Significant height of swell waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500077 -#Mean period of swell waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 500078 -#Net short wave radiation flux (at the surface) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500079 -#Net short wave radiation flux (at the surface) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500080 -#Net long wave radiation flux (m) (at the surface) -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500081 -#Net long wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500082 -#Net short wave radiation flux (on the model top) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500083 -#Net short wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500084 -#Net long wave radiation flux (m) (on the model top) -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500085 -#Net long wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 500086 -#Latent Heat Net Flux (m) -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500087 -#Sensible Heat Net Flux (m) -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500088 -#Momentum Flux, U-Component (m) -'N m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500089 -#Momentum Flux, V-Component (m) -'N m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500090 -#Photosynthetically active radiation (m) (at the surface) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500091 -#Photosynthetically active radiation -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500098 -#Cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } - -#paramId: 500099 -#Non-Convective Cloud Cover, grid scale -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } - -#paramId: 500100 -#Cloud Mixing Ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } - -#paramId: 500101 -#Cloud Ice Mixing Ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 82 ; - } - -#paramId: 500102 -#Rain mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } - -#paramId: 500103 -#Snow mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } - -#paramId: 500104 -#Total column integrated rain -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } - -#paramId: 500105 -#Total column integrated snow -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } - -#paramId: 500106 -#Grauple -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } - -#paramId: 500107 -#Total column integrated grauple -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - } - -#paramId: 500108 -#Total Column integrated water (all components incl. precipitation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 78 ; - } - -#paramId: 500118 -#Height of Convective Cloud Base above msl -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500119 -#Height of Convective Cloud Top above msl -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500127 -#Height of 0 degree Celsius isotherm above msl -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500132 -#Large scale rain rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - } - -#paramId: 500133 -#Large scale snowfall rate water equivalent -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } - -#paramId: 500134 -#Large scale rain (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500135 -#Convective rain rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - } - -#paramId: 500136 -#Convective snowfall rate water equivalent -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } - -#paramId: 500137 -#Convective rain -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500138 -#rain amount, grid-scale plus convective -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500139 -#snow amount, grid-scale plus convective -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500145 -#Graupel (snow pellets) precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - } - -#paramId: 500146 -#Graupel (snow pellets) precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500147 -#Snow density -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } - -#paramId: 500155 -#Convective turbulent kinetic enery -'J kg-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 24 ; - } - -#paramId: 500158 -#Turbulent Kinetic Energy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } - -#paramId: 500159 -#Turbulent diffusioncoefficient for momentum -'m2 s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 31 ; - } - -#paramId: 500160 -#Turbulent diffusion coefficient for heat (and moisture) -'m2 s-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 500161 -#Turbulent transfer coefficient for impulse -'Numeric' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } - -#paramId: 500162 -#Turbulent transfer coefficient for heat (and Moisture) -'Numeric' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 500163 -#mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } - -#paramId: 500164 -#maximum Wind 10m -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 500166 -#Soil Temperature (multilayer model) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500167 -#Column-integrated Soil Moisture (multilayers) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500168 -#soil ice content (multilayers) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500169 -#Plant Canopy Surface Water -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500170 -#Snow temperature (top of snow) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 500171 -#Minimal Stomatal Resistance -'s m-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 500172 -#Sea Ice Temperature -'K' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 500173 -#Base reflectivity -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500174 -#Base reflectivity -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } - -#paramId: 500175 -#Base reflectivity (cmax) -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500183 -#Convective Available Potential Energy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } - -#paramId: 500185 -#Direction of combined wind waves and swell -'degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 500187 -#Peak period of total swell -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 500189 -#Peak period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 500190 -#Peak wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } - -#paramId: 500191 -#Mean period of combined wind waves and swell -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500192 -#Inverse mean wave frequency -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 500193 -#Mean zero-crossing wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500194 -#Wave directional width -'degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - } - -#paramId: 500200 -#Standard deviation of sub-grid scale orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } - -#paramId: 500201 -#Anisotropy of sub-gridscale orography -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } - -#paramId: 500202 -#Angle of sub-gridscale orography -'rad' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } - -#paramId: 500203 -#Slope of sub-gridscale orography -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } - -#paramId: 500206 -#Leaf area index -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } - -#paramId: 500207 -#root depth of vegetation -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 500210 -#Plant covering degree in the vegetation phase -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500211 -#Plant covering degree in the quiescent phas -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500212 -#Max Leaf area index -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500213 -#Min Leaf area index -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; - } - -#paramId: 500214 -#Orographie + Land-Meer-Verteilung -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 500217 -#evergreen forest -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 500218 -#deciduous forest -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 500219 -#normalized differential vegetation index -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500220 -#normalized differential vegetation index (NDVI) -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 31 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500223 -#Total sulfate aerosol -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62006 ; - } - -#paramId: 500224 -#Total sulfate aerosol (12M) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62006 ; - } - -#paramId: 500225 -#Total soil dust aerosol (climatology) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62001 ; - } - -#paramId: 500226 -#Total soil dust aerosol (climatology,12M) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62001 ; - } - -#paramId: 500227 -#Organic aerosol -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62010 ; - } - -#paramId: 500228 -#Organic aerosol (12M) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62010 ; - } - -#paramId: 500229 -#Black carbon aerosol -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62009 ; - } - -#paramId: 500230 -#Black carbon aerosol (12M) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62009 ; - } - -#paramId: 500231 -#Sea salt aerosol -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - constituentType = 62008 ; - } - -#paramId: 500232 -#Sea salt aerosol (12M) -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 62008 ; - } - -#paramId: 500236 -#geographical latitude -'deg N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } - -#paramId: 500237 -#geographical longitude -'deg E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } - -#paramId: 500238 -#Friction velocity -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } - -#paramId: 500242 -#Ozone Mixing Ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } - -#paramId: 500243 -#Air concentration of Ruthenium 103 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30102 ; - } - -#paramId: 500244 -#Ru103 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30102 ; - } - -#paramId: 500245 -#Ru103 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30102 ; - } - -#paramId: 500246 -#Air concentration of Strontium 90 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30067 ; - } - -#paramId: 500247 -#Sr90 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30067 ; - } - -#paramId: 500248 -#Sr90 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30067 ; - } - -#paramId: 500249 -#Air concentration of Iodine 131 aerosol -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30141 ; - } - -#paramId: 500250 -#I131a - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30141 ; - } - -#paramId: 500251 -#I131a - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30141 ; - } - -#paramId: 500252 -#Air concentration of Caesium 137 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30172 ; - } - -#paramId: 500253 -#Cs137 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30172 ; - } - -#paramId: 500255 -#Air concentration of Tellurium 132 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30129 ; - } - -#paramId: 500256 -#Te132 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30129 ; - } - -#paramId: 500257 -#Te132 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30129 ; - } - -#paramId: 500258 -#Air concentration of Zirconium 95 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30079 ; - } - -#paramId: 500259 -#Zr95 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30079 ; - } - -#paramId: 500260 -#Zr95 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30079 ; - } - -#paramId: 500261 -#Air concentration of Krypton 85 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30059 ; - } - -#paramId: 500262 -#Kr85 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30059 ; - } - -#paramId: 500263 -#Kr85 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30059 ; - } - -#paramId: 500264 -#TRACER - concentration -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30000 ; - } - -#paramId: 500265 -#TRACER - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30000 ; - } - -#paramId: 500266 -#TRACER - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30000 ; - } - -#paramId: 500267 -#Air concentration of Xenon 133 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30161 ; - } - -#paramId: 500268 -#Xe133 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30161 ; - } - -#paramId: 500269 -#Xe133 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30161 ; - } - -#paramId: 500270 -#Air concentration of Iodine 131 elementary gaseous -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30138 ; - } - -#paramId: 500271 -#I131g - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30138 ; - } - -#paramId: 500272 -#I131g - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30138 ; - } - -#paramId: 500273 -#Air concentration of Iodine 131 organic bounded -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30139 ; - } - -#paramId: 500274 -#I131o - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30139 ; - } - -#paramId: 500275 -#I131o - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30139 ; - } - -#paramId: 500276 -#Air concentration of Barium 140 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30175 ; - } - -#paramId: 500277 -#Ba140 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30175 ; - } - -#paramId: 500278 -#Ba140 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30175 ; - } - -#paramId: 500284 -#Gravity wave dissipation (vertical integral) -'W m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } - -#paramId: 500285 -#UV Index, clouded sky, maximum -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500286 -#Vertical speed shear -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } - -#paramId: 500287 -#storm relative helicity -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } - -#paramId: 500290 -#Hoehe der Konvektionsuntergrenze ueber Grund -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500292 -#weather interpretation (WMO) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 25 ; - } - -#paramId: 500301 -#Druck einer isentropen Flaeche -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500302 -#KO index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } - -#paramId: 500303 -#Aequivalentpotentielle Temperatur -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 500304 -#Ceiling -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } - -#paramId: 500305 -#Icing Grade (1=LGT,2=MOD,3=SEV) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } - -#paramId: 500308 -#Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500309 -#Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500310 -#Monthly Mean of RMS of difference FG-AN of u-component of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500311 -#Monthly Mean of RMS of difference IA-AN of u-component of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500312 -#Monthly Mean of RMS of difference FG-AN of v-component of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500313 -#Monthly Mean of RMS of difference IA-AN of v-component of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500314 -#Monthly Mean of RMS of difference FG-AN of geopotential -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500315 -#Monthly Mean of RMS of difference IA-AN of geopotential -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500316 -#Monthly Mean of RMS of difference FG-AN of relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500317 -#Monthly Mean of RMS of difference IA-AN of relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500318 -#Monthly Mean of RMS of difference FG-AN of temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500319 -#Monthly Mean of RMS of difference IA-AN of temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500320 -#Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) -'Pa s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500321 -#Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) -'Pa s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500324 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500325 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500326 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500327 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 52 ; - instrumentType = 205 ; - } - -#paramId: 500328 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500329 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500330 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500331 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 53 ; - instrumentType = 205 ; - } - -#paramId: 500332 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500333 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500334 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500335 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500336 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500337 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500338 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 86956 ; - } - -#paramId: 500339 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 331 ; - satelliteNumber = 54 ; - instrumentType = 205 ; - scaledValueOfCentralWaveNumber = 156250 ; - } - -#paramId: 500340 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500341 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500342 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500343 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500344 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500345 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500346 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500347 -#Synth. Sat. brightness temperature cloudy -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500348 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500349 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500350 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500351 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500352 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500353 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500354 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500355 -#Synth. Sat. brightness temperature clear sky -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500356 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500357 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500358 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500359 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500360 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500361 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500362 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500363 -#Synth. Sat. radiance cloudy -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500364 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500365 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; - } - -#paramId: 500366 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500367 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500368 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500369 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500370 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500371 -#Synth. Sat. radiance clear sky -'W m sr m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500372 -#smoothed forecast, temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500373 -#smoothed forecast, maximum temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500374 -#smoothed forecast, minimum temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500375 -#smoothed forecast, dew point temp. -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500376 -#smoothed forecast, u comp. of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500377 -#smoothed forecast, v comp. of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500378 -#smoothed forecast, total precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500379 -#smoothed forecast, total cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500380 -#smoothed forecast, cloud cover low -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500381 -#smoothed forecast, cloud cover medium -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500382 -#smoothed forecast, cloud cover high -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500383 -#smoothed forecast, large-scale snowfall -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500384 -#smoothed forecast, soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500385 -#smoothed forecast, wind speed (gust) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - } - -#paramId: 500386 -#calibrated forecast, total precipitation (Accumulation) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500387 -#calibrated forecast, large-scale snowfall -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500388 -#calibrated forecast, wind speed (gust) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 198 ; - } - -#paramId: 500389 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; - } - -#paramId: 500390 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 625000 ; - } - -#paramId: 500391 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; - } - -#paramId: 500392 -#Obser. Sat. Meteosat sec. generation Albedo (scaled) -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1250000 ; - } - -#paramId: 500393 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; - } - -#paramId: 500394 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 83333 ; - } - -#paramId: 500395 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; - } - -#paramId: 500396 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; - } - -#paramId: 500397 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; - } - -#paramId: 500398 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; - } - -#paramId: 500399 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; - } - -#paramId: 500400 -#Obser. Sat. Meteosat sec. generation brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 8 ; - satelliteSeries = 333 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; - } - -#paramId: 500401 -#Total Precipitation Difference -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500419 -#Net short wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500420 -#Net long wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 8 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500421 -#Net short wave radiation flux (at the surface) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500422 -#Net long wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 1 ; - } - -#paramId: 500468 -#UV Index, clear sky, maximum -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500469 -#Total ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500474 -#wind chill factor -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 500475 -#Water temperature -'K' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } - -#paramId: 500477 -#Absolute Vorticity -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 500482 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500490 -#Water Fraction -'Proportion' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 500491 -#Lake depth -'m' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500492 -#Wind fetch -'m' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 33 ; - } - -#paramId: 500493 -#Attenuation coefficient of water with respect to solar radiation -'m-1' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500494 -#Depth of thermally active layer of bottom sediment -'m' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 164 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500495 -#Temperature at the lower boundary of the thermally active layer of bottom sediment -'K' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 164 ; - } - -#paramId: 500496 -#Mean temperature of the water column -'K' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500497 -#Mixed-layer temperature -'K' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500498 -#Bottom temperature (temperature at the water-bottom sediment interface) -'K' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500499 -#Mixed-layer depth -'m' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 166 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500500 -#Shape factor with respect to the temperature profile in the thermocline -'Numeric' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - typeOfSecondFixedSurface = 162 ; - typeOfFirstFixedSurface = 166 ; - } - -#paramId: 500501 -#Temperature at the lower boundary of the upper layer of bottom sediment (penetrated by thermal wave) -'K' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 165 ; - } - -#paramId: 500502 -#Sediment thickness of the upper layer of bottom sediments -'m' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfSecondFixedSurface = 165 ; - typeOfFirstFixedSurface = 162 ; - } - -#paramId: 500539 -#cloud top height -'m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 500543 -#vertical vorticity -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 500544 -#Potential vorticity -'K m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } - -#paramId: 500545 -#Density -'kg m-3' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 500546 -#Altimeter Settings -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 500547 -#Convective Precipitation (difference) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 500548 -#Soil moisture -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 500549 -#Soil moisture -'kg m-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } - -#paramId: 500568 -#Geopotential height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 500569 -#Relative Divergenz -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } - -#paramId: 500574 -#Logarithm of Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } - -#paramId: 500579 -#Soil Temperature (layer) -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500580 -#Soil Moisture Content (0-7 cm) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 7 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 500581 -#Soil Moisture Content (7-50 cm) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 2 ; - scaledValueOfSecondFixedSurface = 50 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 7 ; - } - -#paramId: 500584 -#Sunshine duration -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500588 -#Snow melt -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500590 -#ICAO Standard Atmosphere reference height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 500593 -#Global radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 500594 -#exner pressure -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } - -#paramId: 500595 -#normal wind component -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 34 ; - } - -#paramId: 500596 -#tangential wind component -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 35 ; - } - -#paramId: 500597 -#virtual potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 500598 -#Current Direction -'degree true' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 500599 -#Current Speed -'m s-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 500642 -#Lapse rate -'K m-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 500779 -#Effective radius of cloud water -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#Effective radius of rain -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#Effective radius of cloud ice -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#Effective radius of snow -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#Effective radius of graupel -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#Effective radius of hail -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#Effective radius of subgrid liquid clouds -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#Effective radius of subgrid ice clouds -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#Effective aspect ratio of rain -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#Effective aspect ratio of cloud ice -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#Effective aspect ratio of snow -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#Effective aspect ratio of graupel -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#Effective aspect ratio of hail -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#Effective aspect ratio of subgrid ice clouds -'' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 142 ; - } - -#paramId: 500905 -#Specific Humidity (S) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502307 -#Albedo - diffusive solar - time average (0.3 - 5.0 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502308 -#Albedo - diffusive solar (0.3 - 5.0 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } - -#paramId: 502309 -#center latitude -'deg N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502310 -#center longitude -'deg E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 1 ; - } - -#paramId: 502311 -#edge midpoint latitude -'deg N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502312 -#edge midpoint longitude -'deg E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 3 ; - } - -#paramId: 502313 -#vertex latitude -'deg N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502314 -#vertex longitude -'deg E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - numberOfGridInReference = 2 ; - } - -#paramId: 502315 -#Number of cloud droplets per unit mass of air -'kg-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 28 ; - } - -#paramId: 502316 -#Number of cloud ice particles per unit mass of air -'kg-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 29 ; - } - -#paramId: 502317 -#Latent Heat Net Flux - instant - at surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502318 -#Sensible Heat Net Flux - instant - at surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502319 -#Latent Heat Net Flux - accumulated _ surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502320 -#Sensible Heat Net Flux - accumulated _ surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502321 -#Net short wave radiation flux - accumulated _ surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502322 -#Net long wave radiation flux - accumulated _ surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502323 -#Net long wave radiation flux - accumulated _ model top -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502327 -#Net short wave radiation flux - accumulated _ model top -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 502328 -#Snow temperature - multi level -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502329 -#Snow depth - multi level -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502330 -#Snow density in - multi level -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502331 -#Water equivalent of accumulated snoe depth in - multi level -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502333 -#salinity -'kg kg-1' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 502334 -#Stream function -'m2 s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 502335 -#Velocity potential -'m2 s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 502336 -#Skin temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502340 -#Snow cover -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } - -#paramId: 502341 -#Cloud Cover (0 - 400 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 40000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502342 -#Cloud Cover (400 - 800 hPa) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 80000 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 40000 ; - } - -#paramId: 502343 -#Cloud Cover (800 hPa - Soil) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 80000 ; - } - -#paramId: 502348 -#Water Runoff (s) -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 502349 -#Water Runoff -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 1 ; - } - -#paramId: 502397 -#Virtual Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502424 -#Vertical u-component shear -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } - -#paramId: 502425 -#Vertical v-component shear -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } - -#paramId: 502693 -#Potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502700 -#Boundary layer dissipation -'W m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } - -#paramId: 502701 -#Sunshine duration -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502702 -#Brightness temperature -'K' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } - -#paramId: 502703 -#Heat index -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502705 -#Total column water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } - -#paramId: 502706 -#Large scale precipitation (non-convective) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502707 -#Snowfall rate water equivalent -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502708 -#Convective snow -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } - -#paramId: 502709 -#Large scale snow -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } - -#paramId: 502710 -#Snow age -'d' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } - -#paramId: 502711 -#Absolute humidity -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } - -#paramId: 502712 -#Precipitation type -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } - -#paramId: 502713 -#Integrated liquid water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } - -#paramId: 502714 -#Condensate -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } - -#paramId: 502715 -#Ice water mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } - -#paramId: 502717 -#Maximum relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } - -#paramId: 502718 -#Maximum absolute humidity -'kg kg-1m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } - -#paramId: 502719 -#Total snowfall -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } - -#paramId: 502720 -#Precipitable water category -'code table (4.2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } - -#paramId: 502721 -#Hail -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } - -#paramId: 502722 -#Categorical rain -'Code table 4.2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } - -#paramId: 502723 -#Categorical freezing rain -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } - -#paramId: 502724 -#Categorical ice pellets -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } - -#paramId: 502725 -#Categorical snow -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } - -#paramId: 502727 -#Percent frozen precipitation -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } - -#paramId: 502728 -#Potential evaporation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } - -#paramId: 502729 -#Potential evaporation rate -'W m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } - -#paramId: 502730 -#Rain fraction of total cloud water -'proportion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } - -#paramId: 502731 -#Rime factor -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } - -#paramId: 502732 -#Large scale water precipitation (non-convective) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } - -#paramId: 502733 -#Convective water precipitation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } - -#paramId: 502734 -#Total water precipitation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } - -#paramId: 502735 -#Total snow precipitation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } - -#paramId: 502737 -#Snow Fall water equivalent -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } - -#paramId: 502738 -#Convective snowfall rate -' m s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } - -#paramId: 502739 -#Large scale snowfall rate -'m s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } - -#paramId: 502740 -#Water equivalent of accumulated snow depth -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502741 -#Freezing rain precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } - -#paramId: 502742 -#Ice pellets precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } - -#paramId: 502743 -#Maximum wind speed -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } - -#paramId: 502744 -#u-component of wind (gust) -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } - -#paramId: 502745 -#v-component of wind (gust) -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - -#paramId: 502746 -#Horizontal momentum flux -'N m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } - -#paramId: 502747 -#U-component storm motion -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } - -#paramId: 502748 -#V-component storm motion -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } - -#paramId: 502749 -#Thickness -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502751 -#Minimum dew point depression -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502752 -#Pressure altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502753 -#Density altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502754 -#5-wave geopotential height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502755 -#Zonal flux of gravity wave stress -'N m-2 ' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502756 -#Meridional flux of gravity wave stress -'N m-2 ' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 502757 -#Planetary boundary layer height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } - -#paramId: 502758 -#5-wave geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } - -#paramId: 502759 -#Net short-wave radiation flux (top of atmosphere) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502760 -#Downward short-wave radiation flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } - -#paramId: 502761 -#Net short-wave radiation flux, clear sky -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } - -#paramId: 502762 -#Downward UV radiation -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } - -#paramId: 502763 -#Net long wave radiation flux (surface) -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } - -#paramId: 502764 -#Net long wave radiation flux (top of atmosphere) -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } - -#paramId: 502765 -#Downward long-wave radiation flux -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } - -#paramId: 502766 -#Upward long-wave radiation flux -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } - -#paramId: 502767 -#Net long-wave radiation flux, clear sky -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } - -#paramId: 502768 -#Cloud Ice -'kg m-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } - -#paramId: 502769 -#Cloud water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } - -#paramId: 502770 -#Cloud amount -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } - -#paramId: 502771 -#Cloud type -'code table (4.2)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } - -#paramId: 502772 -#Thunderstorm maximum tops -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } - -#paramId: 502773 -#Thunderstorm coverage -'code table (4.2 )' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } - -#paramId: 502774 -#Cloud base -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } - -#paramId: 502775 -#Cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } - -#paramId: 502776 -#Cloud work function -'J kg-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } - -#paramId: 502777 -#Convective cloud efficiency -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } - -#paramId: 502778 -#Total condensate -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } - -#paramId: 502779 -#Total column-integrated cloud water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } - -#paramId: 502780 -#Total column-integrated cloud ice -'kg m-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } - -#paramId: 502781 -#Total column-integrated condensate -'kg m-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } - -#paramId: 502782 -#Ice fraction of total condensate -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } - -#paramId: 502783 -#Cloud ice mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } - -#paramId: 502785 -#K index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 502786 -#Total totals index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } - -#paramId: 502787 -#Sweat index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } - -#paramId: 502788 -#Energy helicity index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } - -#paramId: 502789 -#Surface lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } - -#paramId: 502790 -#Best (4-layer) lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } - -#paramId: 502791 -#Aerosol type -'code table (4.2)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } - -#paramId: 502792 -#Base spectrum width -'m s-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } - -#paramId: 502793 -#Base radial velocity -'m s-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } - -#paramId: 502794 -#Vertically-integrated liquid -'kg m-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } - -#paramId: 502795 -#Layer-maximum base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } - -#paramId: 502796 -#Precipitation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 502797 -#Air concentration of Caesium 137 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } - -#paramId: 502798 -#Air concentration of Iodine 131 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } - -#paramId: 502799 -#Air concentration of radioactive pollutant -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } - -#paramId: 502800 -#Ground deposition of Caesium 137 -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } - -#paramId: 502801 -#Ground deposition of Iodine 131 -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } - -#paramId: 502802 -#Ground deposition of radioactive pollutant -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } - -#paramId: 502843 -#Time-integrated air concentration of caesium pollutant -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } - -#paramId: 502844 -#Time-integrated air concentration of iodine pollutant -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } - -#paramId: 502845 -#Time-integrated air concentration of radioactive pollutant -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } - -#paramId: 502846 -#Volcanic ash -'table (4.2 Volc.ash)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } - -#paramId: 502847 -#Icing top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } - -#paramId: 502848 -#Icing base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } - -#paramId: 502849 -#Turbulence top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } - -#paramId: 502850 -#Turbulence base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } - -#paramId: 502851 -#Turbulence -'table (4.2 Turb.)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } - -#paramId: 502852 -#Planetary boundary layer regime -'table (4.2 P.b.l.r.)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } - -#paramId: 502853 -#Contrail intensity -'table (4.2 C. i.)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } - -#paramId: 502854 -#Contrail engine type -'table (4.2 C.e.t.)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } - -#paramId: 502855 -#Contrail top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } - -#paramId: 502856 -#Contrail base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } - -#paramId: 502857 -#Maximum snow albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } - -#paramId: 502858 -#Icing -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } - -#paramId: 502859 -#Horizontal extent of cumulonimbus (CB) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } - -#paramId: 502860 -#In-cloud turbulence -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } - -#paramId: 502861 -#Clear air turbulence (CAT) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } - -#paramId: 502862 -#Supercooled large droplet probability (see Note 4) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } - -#paramId: 502864 -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502865 -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'kg m-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } - -#paramId: 502866 -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'kg m-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } - -#paramId: 502867 -#Remotely sensed snow cover -'table 4.2 R.s.s.c.' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 502868 -#Elevation of snow covered terrain -'table 4.2 E.e.s.c.t.' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 502869 -#Snow water equivalent percent of normal -'%' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502870 -#Baseflow-groundwater runoff -'kg m-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502871 -#Storm surface runoff -'kg m-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502872 -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'kg m-2' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502873 -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502874 -#Probability of 0.01 inch of precipitation (POP) -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502875 -#Evapotranspiration -'kg-2 s-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 502876 -#Land use -'table (4.2 Land use)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } - -#paramId: 502877 -#Volumetric soil moisture content -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502878 -#Ground heat flux -'W m-2 ' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502879 -#Moisture availability -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502880 -#Exchange coefficient -'kg m-2 s-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 502881 -#Blackadar mixing length scale -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } - -#paramId: 502882 -#Canopy conductance -'m s-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } - -#paramId: 502883 -#Solar parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } - -#paramId: 502885 -#Soil moisture parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 502886 -#Humidity parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 502887 -#Column-integrated soil water -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 502888 -#Heat flux -'W m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 502889 -#Volumetric soil moisture -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } - -#paramId: 502890 -#Volumetric wilting point -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 502891 -#Upper layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502892 -#Upper layer soil moisture -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } - -#paramId: 502893 -#Lower layer soil moisture -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } - -#paramId: 502894 -#Bottom layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } - -#paramId: 502895 -#Liquid volumetric soil moisture (non-frozen) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } - -#paramId: 502896 -#Number of soil layers in root zone -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } - -#paramId: 502897 -#Transpiration stress-onset (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502898 -#Direct evaporation cease (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502899 -#Soil porosity -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502900 -#Liquid volumetric soil moisture (non-frozen) -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } - -#paramId: 502919 -#Volumetric transpiration stress-onset (soil moisture) -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } - -#paramId: 502920 -#Transpiration stress-onset (soil moisture) -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } - -#paramId: 502921 -#Volumetric direct evaporation cease (soil moisture) -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } - -#paramId: 502922 -#Direct evaporation cease (soil moisture) -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } - -#paramId: 502923 -#Soil porosity -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } - -#paramId: 502924 -#Volumetric saturation of soil moisture -'m3 m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } - -#paramId: 502926 -#Estimated precipitation -'kg m-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } - -#paramId: 502927 -#Instantaneous rain rate -'kg m-2 s-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } - -#paramId: 502928 -#Cloud top height quality indicator -'table 4.21C.t.h.q.i.' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502929 -#Estimated u component of wind -'m s-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 502930 -#Estimated v component of wind -'m s-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502931 -#Number of pixels used -'Numeric' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } - -#paramId: 502932 -#Solar zenith angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502933 -#Reflectance in 0.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } - -#paramId: 502934 -#Reflectance in 0.8 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502935 -#Reflectance in 1.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } - -#paramId: 502936 -#Reflectance in 3.9 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } - -#paramId: 502937 -#Atmospheric divergence -'s-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } - -#paramId: 502938 -#Primary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } - -#paramId: 502939 -#Primary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } - -#paramId: 502940 -#Secondary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } - -#paramId: 502941 -#Deviation of sea level from mea -'m' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } - -#paramId: 502942 -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } - -#paramId: 502943 -#Standard deviation of height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } - -#paramId: 502944 -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } - -#paramId: 502945 -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } - -#paramId: 502946 -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 502947 -#Radar spectra (2) -'DBZ_MAX' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } - -#paramId: 502948 -#Radar spectra (3) -'DBZ_MAX' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } - -#paramId: 502949 -#Parcel lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 502950 -#Temperature anomaly -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } - -#paramId: 502951 -#Pressure anomaly -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } - -#paramId: 502952 -#Geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } - -#paramId: 502953 -#Montgomery stream Function -'m2 s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 502954 -#Sigma coordinate vertical velocity -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 502955 -#Absolute divergence -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 502958 -#U-component of current -'m s-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 502959 -#V-component of current -'m s-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502960 -#Precipitable water -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } - -#paramId: 502961 -#Saturation deficit -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } - -#paramId: 502962 -#Precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } - -#paramId: 502963 -#Thunderstorm probability -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } - -#paramId: 502964 -#Convective precipitation (water) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } - -#paramId: 502965 -#Transient thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } - -#paramId: 502966 -#Main thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 502967 -#Main thermocline anomaly -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } - -#paramId: 502968 -#Best lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 502969 -#Soil moisture content -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } - -#paramId: 503011 -#Salinity -'kg kg-1' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } - -#paramId: 503012 -#Direction of ice drift -'Degree true' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503013 -#Speed of ice drift -'m s-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503014 -#U-component of ice drift -'m s-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503015 -#V-component of ice drift -'m s-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503016 -#Ice growth rate -'m s-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503017 -#Ice divergence -'s-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503019 -#Secondary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } - -#paramId: 503020 -#Net short-wave radiation flux (surface) -'J m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } - -#paramId: 503021 -#Radiance (with respect to wave number) -'W m-1 s-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } - -#paramId: 503022 -#Radiance (with respect to wave length) -'W m-1 s-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } - -#paramId: 503023 -#Convective inhibition -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } - -#paramId: 503024 -#Wind mixing energy -'J' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } - -#paramId: 503025 -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } - -#paramId: 503028 -#Wilting point -'kg m-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } - -#paramId: 503038 -#Snow phase change heat flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503039 -#Vapor pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } - -#paramId: 503047 -#Land use class fraction -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 36 ; - } - -#paramId: 503048 -#Saturation of soil moisture -'kg m-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } - -#paramId: 503062 -#Upward diffusive short wave radiation flux at surface ( mean over forecast time) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503063 -#Momentum Flux, U-Component (m) -'N m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503064 -#Momentum Flux, V-Component (m) -'N m-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503075 -#Geometric height of the earths surface above mean sea level at vertex point (ICON) -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - numberOfGridInReference = 2 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503076 -#Gravity wave dissipation -'W m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503080 -#Land use class -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 35 ; - } - -#paramId: 503081 -#Water depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } - -#paramId: 503082 -#Friction velocity -'m s-1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } - -#paramId: 503083 -#Coefficient of drag with waves -'Numeric' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } - -#paramId: 503084 -#Normalized wave stress -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } - -#paramId: 503085 -#Inverse mean frequency of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } - -#paramId: 503086 -#Mean zero-crossing period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 29 ; - } - -#paramId: 503087 -#Directional width of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 32 ; - } - -#paramId: 503088 -#Inverse mean frequency of total swell -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503089 -#Inverse mean zero crossing period of total swell -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 30 ; - } - -#paramId: 503090 -#Directional width of total swell -'degree' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } - -#paramId: 503091 -#Goda peakedness parameter -'s-1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 45 ; - } - -#paramId: 503092 -#Spectral kurtosis -'' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 43 ; - } - -#paramId: 503093 -#Benjamin-Feir index -'' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 44 ; - } - -#paramId: 503094 -#Maximum individual wave height -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } - -#paramId: 503095 -#Maximum wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } - -#paramId: 503097 -#Meansquare slope -'' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } - -#paramId: 503106 -#Hail mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 71 ; - } - -#paramId: 503107 -#Hail -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 72 ; - } - -#paramId: 503108 -#Hail precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - } - -#paramId: 503109 -#Reflectivity of cloud droplets -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 9 ; - } - -#paramId: 503110 -#Reflectivity of cloud ice -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 10 ; - } - -#paramId: 503111 -#Reflectivity of snow -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 11 ; - } - -#paramId: 503112 -#Reflectivity of rain -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 12 ; - } - -#paramId: 503113 -#Reflectivity of graupel -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 13 ; - } - -#paramId: 503114 -#Reflectivity of hail -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 14 ; - } - -#paramId: 503130 -#Hail precipitation rate, accumulation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 73 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503132 -#Number density of cloud droplets -'m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 30 ; - } - -#paramId: 503133 -#Number density of cloud ice particles -'m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 31 ; - } - -#paramId: 503134 -#Downward long-wave radiation flux -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503135 -#Downward long-wave radiation flux avg -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503136 -#Downward long-wave radiation flux accum -'W m-2 ' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503145 -#2m absolute humidity -'M' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503154 -#Bulk Richardson number -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 16 ; - } - -#paramId: 503155 -#Cape of mixed (mean) layer parcel, ascent up to 3 km -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 3000 ; - } - -#paramId: 503166 -#Geostrophic wind direction -'' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 43 ; - } - -#paramId: 503169 -#Dewpoint depression -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } - -#paramId: 503170 -#2m dewpoint depression -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503173 -#Geostrophic wind speed -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 44 ; - } - -#paramId: 503174 -#Downward short wave radiation flux at surface (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503186 -#Height of lifting condensation level of mixed (mean) layer parcel -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 5 ; - } - -#paramId: 503192 -#Humidity mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } - -#paramId: 503193 -#2m Humidity mixing ratio -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503195 -#relative humidity over ice -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } - -#paramId: 503196 -#Gradient Richardson number -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 17 ; - } - -#paramId: 503197 -#Showalter index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 13 ; - } - -#paramId: 503204 -#Surface lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503210 -#2m potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503211 -#Dew point temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } - -#paramId: 503212 -#2m equivalentTemperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503213 -#2m virtual potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503214 -#Temperature at cloud top -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503215 -#Wet bulb temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } - -#paramId: 503216 -#2m wet bulb temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503219 -#Universal thermal climate index with direct incident short wave radiation -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } - -#paramId: 503220 -#u-component of geostrophic wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 41 ; - } - -#paramId: 503221 -#v-component of geostrophic wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 42 ; - } - -#paramId: 503229 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 1 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503230 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 2 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503231 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 3 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503232 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 4 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 4 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503233 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 5 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 5 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503234 -#Prognostic mass mixing ratio of volcanic ash particles for bin number 6 -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 6 ; - typeOfDistributionFunction = 1 ; - } - -#paramId: 503235 -#Modal prognostic mass mixing ratio of volcanic ash particles (fine mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503236 -#Modal prognostic mass mixing ratio of volcanic ash particles (medium mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503237 -#Modal prognostic mass mixing ratio of volcanic ash particles (coarse mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503238 -#Modal prognostic specific number concentration of volcanic ash particles (fine mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503239 -#Modal prognostic specific number concentration of volcanic ash particles (medium mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503240 -#Modal prognostic specific number concentration of volcanic ash particles (coarse mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62025 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503241 -#Modal prognostic mass mixing ratio of mineral dust particles (fine mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503242 -#Modal prognostic mass mixing ratio of mineral dust particles (medium mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503243 -#Modal prognostic mass mixing ratio of mineral dust particles (coarse mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503244 -#Modal prognostic specific number concentration of mineral dust particles (fine mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503245 -#Modal prognostic specific number concentration of mineral dust particles (medium mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503246 -#Modal prognostic specific number concentration of mineral dust particles (coarsemode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503247 -#Modal prognostic mass mixing ratio of sea salt particles (fine mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503248 -#Modal prognostic mass mixing ratio of sea salt particles (medium mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503249 -#Modal prognostic mass mixing ratio of sea salt particles (coarse mode) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503250 -#Modal prognostic specific number concentration of sea salt particles (fine mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 1 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503251 -#Modal prognostic specific number concentration of sea salt particles (medium mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 2 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503252 -#Modal prognostic specific number concentration of sea salt particles (coarse mode) -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62008 ; - modeNumber = 3 ; - typeOfDistributionFunction = 7 ; - } - -#paramId: 503253 -#Cs137 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - -#paramId: 503254 -#Prognostic specific activity concentration of Iodine 131 aerosol -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30141 ; - } - -#paramId: 503255 -#Te132 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30129 ; - } - -#paramId: 503256 -#Prognostic specific activity concentration of Zirconium 95 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30079 ; - } - -#paramId: 503257 -#Prognostic specific activity concentration of Xenon 133 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30161 ; - } - -#paramId: 503258 -#Prognostic specific activity concentration of Iodine 131 elementary gaseous -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30138 ; - } - -#paramId: 503259 -#Prognostic specific activity concentration of Iodine 131 organic bounded -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30139 ; - } - -#paramId: 503260 -#Prognostic specific activity concentration of Barium 140 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30175 ; - } - -#paramId: 503261 -#Prognostic specific activity concentration of Ruthenium 103 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30102 ; - } - -#paramId: 503262 -#Diagnostic total mass concentration of volcanic ash -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 0 ; - constituentType = 62025 ; - } - -#paramId: 503263 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL200 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 46500 ; - constituentType = 62025 ; - } - -#paramId: 503265 -#Diagnostic total column of mass concentration of volcanic ash -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 10 ; - constituentType = 62025 ; - } - -#paramId: 503266 -#Diagnostic height of model layer with maximal total mass concentration of volcanic ash -'m' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 62 ; - constituentType = 62025 ; - } - -#paramId: 503267 -#Diagnostic volcanic ash optical depth -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62025 ; - } - -#paramId: 503268 -#Diagnostic mineral dust optical depth -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62001 ; - } - -#paramId: 503269 -#Diagnostic sea salt optical depth -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - aerosolType = 62008 ; - } - -#paramId: 503270 -#Diagnostic vmaximum activity concentration of radionuclides in a layer -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 15 ; - } - -#paramId: 503273 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL200-FL350 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 46500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 24000 ; - constituentType = 62025 ; - } - -#paramId: 503274 -#Diagnostic maximum total mass concentration of volcanic ash in layer SFC-FL100 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 101325 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 70000 ; - constituentType = 62025 ; - } - -#paramId: 503275 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL350-FL550 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 24000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 9100 ; - constituentType = 62025 ; - } - -#paramId: 503276 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL100-FL245 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 70000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 38500 ; - constituentType = 62025 ; - } - -#paramId: 503277 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL245-FL390 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 38500 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 20000 ; - constituentType = 62025 ; - } - -#paramId: 503278 -#Diagnostic maximum total mass concentration of volcanic ash in layer FL390-FL530 -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 20000 ; - typeOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10000 ; - constituentType = 62025 ; - } - -#paramId: 503279 -#Diagnostic maximum total mass concentration of volcanic ash in a layer -'kg m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 61 ; - constituentType = 62025 ; - } - -#paramId: 503280 -#Aerosol optical depth -'Numeric' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - } - -#paramId: 503293 -#Large Scale Rain Difference -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503294 -#Large Scale Snowfall water Equivalent Difference -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503295 -#Convective Rain Difference -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 76 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503296 -#Convective Snowfall Water Equivalent Difference -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - typeOfStatisticalProcessing = 4 ; - } - -#paramId: 503303 -#Total precipitation rate -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } - -#paramId: 503304 -#Horizontal moisture convergence -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } - -#paramId: 503305 -#TOA downward solar radiation -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 8 ; - } - -#paramId: 503306 -#Surface upward thermal radiation -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503307 -#Surface upward thermal radiation -'W m-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503308 -#Specific mass of liquid water coating on hail -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 110 ; - } - -#paramId: 503309 -#Specific mass of liquid water coating on graupel -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 113 ; - } - -#paramId: 503310 -#Specific mass of liquid water coating on snow -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 116 ; - } - -#paramId: 503311 -#Specific number concentration of rain -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 100 ; - } - -#paramId: 503312 -#Number density of rain -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 104 ; - } - -#paramId: 503313 -#Specific number concentration of snow -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 101 ; - } - -#paramId: 503314 -#Specific number concentration of graupel -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 102 ; - } - -#paramId: 503315 -#Specific number concentration of hail -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 103 ; - } - -#paramId: 503316 -#Number density of snow -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 105 ; - } - -#paramId: 503317 -#Number density of graupel -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 106 ; - } - -#paramId: 503318 -#Number density of hail -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 107 ; - } - -#paramId: 503319 -#Mass density of rain -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 96 ; - } - -#paramId: 503320 -#Mass density of snow -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 97 ; - } - -#paramId: 503321 -#Mass density of graupel -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 98 ; - } - -#paramId: 503322 -#Mass density of cloud droplets -'kg m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 38 ; - } - -#paramId: 503323 -#Mass density of cloud ice -'kg m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 39 ; - } - -#paramId: 503324 -#Mass density of hail -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 99 ; - } - -#paramId: 503326 -#Diagnostic total column of activity concentration of radionuclides -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503327 -#Base for given threshold of mass density for volcanic ash cloud -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62025 ; - } - -#paramId: 503328 -#Base for given threshold of mass density for mineral dust cloud -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 21 ; - constituentType = 62001 ; - } - -#paramId: 503330 -#Top for given threshold of mass density for volcanic ash cloud -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62025 ; - } - -#paramId: 503331 -#Top for given threshold of mass density for mineral dust cloud -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 22 ; - constituentType = 62001 ; - } - -#paramId: 503332 -#Top for given threshold of air concentration of radionuclides -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 24 ; - } - -#paramId: 503333 -#Emission rate of dust for mode 2 -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503334 -#Emission rate of dust for mode 3 -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503335 -#Emission rate of dust for mode 1 -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503336 -#Accumulated dust Emission for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503337 -#Accumulated dust Emission for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503338 -#Accumulated dust Emission for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503340 -#Base for given threshold of air concentration of radionuclides -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 23 ; - } - -#paramId: 503341 -#Maximum amplitude (positive or negative) of updraft helicity (over given time interval) -'m2 s-2' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 15 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503344 -#Maximum total-column integrated condensed water above -10 C isotherm (over given time interval) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 26315 ; - } - -#paramId: 503345 -#Maximum total-column integrated condensed water (over given time interval) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 81 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503346 -#Composite reflectivity - observation -'dBZ' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 8 ; - } - -#paramId: 503347 -#Composite reflectivity - forecast (simulation) -'dBZ' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } - -#paramId: 503349 -#Maximum reflectivity track (over given time interval and entire atmosphere) -'dBZ' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503350 -#relative vorticity -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503352 -#2m Temperature, restricted to land -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503353 -#2m Dew Point Temperature, restricted to land -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503354 -#2m Relative Humidity, restricted to land -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 181 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503357 -#Maximum 10m wind speed without gust -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503360 -#Birch (betula) pollen concentration -'m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62101 ; - } - -#paramId: 503362 -#Fraction of land occupied by birch (betula) -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503368 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of birch (betula) -'kgm-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62101 ; - } - -#paramId: 503375 -#Alder (alnus) pollen concentration -'m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62100 ; - } - -#paramId: 503376 -#Fraction of land occupied by alder (alnus) -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503382 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of alder (alnus) -'kgm-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62100 ; - } - -#paramId: 503390 -#Grasses (poaceae) pollen concentration -'m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62300 ; - } - -#paramId: 503391 -#Fraction of land occupied by grasses (poaceae) -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503397 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of grasses (poaceae) -'kgm-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62300 ; - } - -#paramId: 503405 -#ragweed (ambrosia) pollen concentration -'m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 59 ; - constituentType = 62200 ; - } - -#paramId: 503406 -#Fraction of land occupied by ragweed (ambrosia) -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503412 -#Precipitation reservoir (liquid water on the flowers, preventing them from flowering) of ragweed (ambrosia) -'kgm-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - constituentType = 62200 ; - } - -#paramId: 503421 -#Echotop-pressure: smallest pressure where radar reflectivity above a threshold is present -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503422 -#Echotop-height: largest height where radar reflectivity above a threshold is present -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 25 ; - } - -#paramId: 503423 -#Maximum horizontal moisture convergence track (over given time interval and column) -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503431 -#Accumulated dry deposition (surface) of dust for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503432 -#Accumulated dry deposition (surface) of dust for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503433 -#Accumulated dry deposition (surface) of dust for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503434 -#Accumulated wet deposition by grid scale precipitation of dust for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503435 -#Accumulated wet deposition by grid scale precipitation of dust for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503436 -#Accumulated wet deposition by grid scale precipitation of dust for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503437 -#Accumulated wet deposition by convective precipitation of dust for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503438 -#Accumulated wet deposition by convective precipitation of dust for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503439 -#Accumulated wet deposition by convective precipitation of dust for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503443 -#Accumulated sedimentation of dust for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503444 -#Accumulated sedimentation of dust for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503445 -#Accumulated sedimentation of dust for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503458 -#Attenuated backscatter from satellite for dust (for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62001 ; - } - -#paramId: 503459 -#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62001 ; - } - -#paramId: 503461 -#Attenuated backscatter from satellite for volcanic ash (for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 107 ; - aerosolType = 62025 ; - } - -#paramId: 503462 -#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 108 ; - aerosolType = 62025 ; - } - -#paramId: 503467 -#2m Temperature analysis increment, filtered in time -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfGeneratingProcess = 206 ; - } - -#paramId: 503468 -#Cs137 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30172 ; - } - -#paramId: 503469 -#Prognostic specific activity concentration of Caesium 137 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30172 ; - } - -#paramId: 503470 -#Averaged air concentration of Caesium 137 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30172 ; - } - -#paramId: 503471 -#Accumulated air concentration of Caesium 137 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30172 ; - } - -#paramId: 503480 -#Prognostic specific activity concentration of Krypton 85 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30059 ; - } - -#paramId: 503481 -#Kr85 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30059 ; - } - -#paramId: 503482 -#Averaged air concentration of Krypton 85 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30059 ; - } - -#paramId: 503483 -#Accumulated air concentration of Krypton 85 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30059 ; - } - -#paramId: 503484 -#Prognostic specific activity concentration of Strontium 90 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30067 ; - } - -#paramId: 503485 -#Averaged air concentration of Strontium 90 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30067 ; - } - -#paramId: 503486 -#Accumulated air concentration of Strontium 90 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30067 ; - } - -#paramId: 503487 -#Sr90 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30067 ; - } - -#paramId: 503489 -#I131a - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30141 ; - } - -#paramId: 503490 -#Averaged air concentration of Iodine 131 aerosol -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30141 ; - } - -#paramId: 503491 -#Accumulated air concentration of Iodine 131 aerosol -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30141 ; - } - -#paramId: 503492 -#Averaged air concentration of Cobalt 60 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30042 ; - } - -#paramId: 503493 -#Accumulated air concentration of Cobalt 60 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30042 ; - } - -#paramId: 503494 -#Prognostic specific activity concentration of Cobalt 60 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30042 ; - } - -#paramId: 503495 -#Co-60 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30042 ; - } - -#paramId: 503496 -#Co60 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30042 ; - } - -#paramId: 503497 -#Ru103 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30102 ; - } - -#paramId: 503499 -#Averaged air concentration of Ruthenium 103 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30102 ; - } - -#paramId: 503500 -#Accumulated air concentration of Ruthenium 103 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30102 ; - } - -#paramId: 503501 -#Prognostic specific activity concentration of Tellurium 132 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30129 ; - } - -#paramId: 503502 -#Averaged air concentration of Tellurium 132 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30129 ; - } - -#paramId: 503503 -#Accumulated air concentration of Tellurium 132 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30129 ; - } - -#paramId: 503504 -#Zr95 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30079 ; - } - -#paramId: 503505 -#Averaged air concentration of Zirconium 95 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30079 ; - } - -#paramId: 503506 -#Accumulated air concentration of Zirconium 95 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30079 ; - } - -#paramId: 503507 -#TRACER - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30000 ; - } - -#paramId: 503508 -#Prognostic specific activity concentration of TRACER -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30000 ; - } - -#paramId: 503509 -#Averaged air concentration of TRACER -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30000 ; - } - -#paramId: 503510 -#Accumulated air concentration of TRACER -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30000 ; - } - -#paramId: 503511 -#Averaged air concentration of Xenon 133 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30161 ; - } - -#paramId: 503512 -#Accumulated air concentration of Xenon 133 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30161 ; - } - -#paramId: 503513 -#Xe133 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30161 ; - } - -#paramId: 503514 -#Air concentration of Iodine 131 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30137 ; - } - -#paramId: 503515 -#I131 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30137 ; - } - -#paramId: 503516 -#Averaged air concentration of Iodine 131 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30137 ; - } - -#paramId: 503517 -#Accumulated air concentration of Iodine 131 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30137 ; - } - -#paramId: 503518 -#Prognostic specific activity concentration of Iodine 131 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30137 ; - } - -#paramId: 503519 -#I131 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30137 ; - } - -#paramId: 503520 -#I131 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30137 ; - } - -#paramId: 503522 -#Averaged air concentration of Iodine 131 elementary gaseous -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30138 ; - } - -#paramId: 503523 -#Accumulated air concentration of Iodine 131 elementary gaseous -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30138 ; - } - -#paramId: 503524 -#I131g - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30138 ; - } - -#paramId: 503525 -#Averaged air concentration of Iodine 131 organic bounded -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30139 ; - } - -#paramId: 503526 -#Accumulated air concentration of Iodine 131 organic bounded -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30139 ; - } - -#paramId: 503527 -#I131o - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30139 ; - } - -#paramId: 503528 -#Ba140 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30175 ; - } - -#paramId: 503529 -#Averaged air concentration of Barium 140 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30175 ; - } - -#paramId: 503530 -#Accumulated air concentration of Barium 140 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30175 ; - } - -#paramId: 503531 -#Air concentration of Ruthenium 106 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30104 ; - } - -#paramId: 503532 -#Ru106 - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30104 ; - } - -#paramId: 503533 -#Prognostic specific activity concentration of Ruthenium 106 -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30104 ; - } - -#paramId: 503534 -#Ru106 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30104 ; - } - -#paramId: 503535 -#Ru106 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30104 ; - } - -#paramId: 503536 -#Averaged air concentration of Ruthenium 106 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30104 ; - } - -#paramId: 503537 -#Accumulated air concentration of Ruthenium 106 -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30104 ; - } - -#paramId: 503538 -#Co-60 - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30042 ; - } - -#paramId: 503539 -#Air concentration of Cobalt 60 -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30042 ; - } - -#paramId: 503542 -#Kr85m - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30060 ; - } - -#paramId: 503543 -#Kr85m - total (wet + dry) deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 13 ; - constituentType = 30060 ; - } - -#paramId: 503544 -#Prognostic specific activity concentration of Krypton 85m -'Bq kg-1' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 14 ; - constituentType = 30060 ; - } - -#paramId: 503545 -#Kr85m - dry deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 12 ; - constituentType = 30060 ; - } - -#paramId: 503546 -#Averaged air concentration of Krypton 85m -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; - constituentType = 30060 ; - } - -#paramId: 503547 -#Accumulated air concentration of Krypton 85m -'Bq s m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 30060 ; - } - -#paramId: 503548 -#Air concentration of Krypton 85m -'Bq m-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 10 ; - constituentType = 30060 ; - } - -#paramId: 503551 -#Birch (betula) pollen specific number concentration -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62101 ; - } - -#paramId: 503552 -#Alder (alnus) pollen specific number concentration -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62100 ; - } - -#paramId: 503553 -#Grasses (poaceae) pollen specific number concentration -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62300 ; - } - -#paramId: 503554 -#Ragweed (ambrosia) pollen specific number concentration -'kg-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 60 ; - constituentType = 62200 ; - } - -#paramId: 503560 -#Total lightning flash density - instantaneous -'km-2 day-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503561 -#Total lightning flash density - time average -'km-2 day-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500092 -#Solar radiation heating rate -'K s-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - } - -#paramId: 500093 -#Thermal radiation heating rate -'K s-1' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - } - -#paramId: 500094 -#Latent heat flux from bare soil -'W m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500095 -#Latent heat flux from plants -'W m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 500097 -#Stomatal resistance -'s m-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } - -#paramId: 500109 -#Vertical integral of divergence of total water content - accumulation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500110 -#Sub-grid scale cloud water -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } - -#paramId: 500111 -#Sub-grid scale cloud ice -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } - -#paramId: 500115 -#Cloud base above MSL, shallow convection -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500116 -#Cloud top above MSL, shallow convection -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500117 -#Specific cloud liquid water content, convective cloud -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } - -#paramId: 500120 -#Base index (vertical level) of main convective cloud -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500121 -#Top index (vertical level) of main convective cloud -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500122 -#Temperature tendency due to convection -'K s-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500123 -#Specific humidity tendency due to convection -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - } - -#paramId: 500124 -#Zonal wind tendency due to convection -'m s-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - } - -#paramId: 500125 -#Meridional wind tendency due to convection -'m s-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - } - -#paramId: 500126 -#Height of top of dry convection above MSL -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 500128 -#Height of snow fall limit above MSL -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 4 ; - } - -#paramId: 500129 -#Tendency of specific cloud liquid water content due to convection -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - } - -#paramId: 500130 -#Tendency of specific cloud ice content due to convection -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - } - -#paramId: 500131 -#Specific content of precipitation particles (needed for water loading) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - } - -#paramId: 500140 -#Temperature tendency due to grid scale precipitation -'K s-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } - -#paramId: 500141 -#Specific humidity tendency due to grid scale precipitation -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - } - -#paramId: 500142 -#Tendency of specific cloud liquid water content due to grid scale precipitation -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - } - -#paramId: 500143 -#Fresh snow factor (weighting function for albedo indicating freshness of snow) -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } - -#paramId: 500144 -#Tendency of specific cloud ice content due to grid scale precipitation -'kg kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - } - -#paramId: 500148 -#Pressure perturbation -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500149 -#Supercell detection index 1 (rot. up- and downdrafts) -'s-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } - -#paramId: 500150 -#Supercell detection index 2 (only rot. updrafts) -'s-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } - -#paramId: 500151 -#Convective Available Potential Energy, most unstable -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500152 -#Convective Inhibition, most unstable -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 193 ; - } - -#paramId: 500153 -#Convective Available Potential Energy, mean layer -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500154 -#Convective Inhibition, mean layer -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 192 ; - } - -#paramId: 500156 -#Tendency of turbulent kinetic energy -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } - -#paramId: 500157 -#Kinetic energy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - } - -#paramId: 500176 -#Solution of 2-d Helmholtz equations - needed for restart -'Numeric' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 192 ; - } - -#paramId: 500177 -#Effective transmissivity of solar radiation -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - } - -#paramId: 500178 -#Sum of contributions to evaporation -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500179 -#Total transpiration from all soil layers -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500180 -#Total forcing at soil surface -'W m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500181 -#Residuum of soil moisture -'kg m-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500182 -#Mass flux at convective cloud base -'kg m-2 s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500184 -#Moisture convergence for Kuo-type closure -'s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - } - -#paramId: 500195 -#Analysis error (standard deviation), geopotential (gpm) -'gpm' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500196 -#Analysis error (standard deviation), u-comp. of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500197 -#Analysis error (standard deviation), v-comp. of wind -'m s-1' = { - discipline = 0 ; - parameterCategory = 194 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 7 ; - } - -#paramId: 500198 -#Zonal wind tendency due to sub-grid scale oro. -'m s-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - } - -#paramId: 500199 -#Meridional wind tendency due to sub-grid scale oro. -'m s-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - } - -#paramId: 500204 -#Surface emissivity -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } - -#paramId: 500205 -#Soil type (1...9, local soilType.table) -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 500208 -#Height of ozone maximum (climatological) -'Pa' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - } - -#paramId: 500209 -#Vertically integrated ozone content (climatological) -'Pa(O3)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - } - -#paramId: 500221 -#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500222 -#Ratio of NDVI (normalized differential vegetation index) to annual maximum -'Numeric' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500233 -#Tendency of specific humidity -'s-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - } - -#paramId: 500234 -#Water vapor flux -'s-1 m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } - -#paramId: 500235 -#Coriolis parameter -'s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - } - -#paramId: 500239 -#Delay of the GPS signal through the (total) atmos. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 192 ; - } - -#paramId: 500240 -#Delay of the GPS signal through wet atmos. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 193 ; - } - -#paramId: 500241 -#Delay of the GPS signal through dry atmos. -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 194 ; - } - -#paramId: 500279 -#U-momentum flux due to SSO-effects (mean over forecast time) -'N m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500280 -#U-momentum flux due to SSO-effects -'N m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } - -#paramId: 500281 -#V-momentum flux due to SSO-effects (mean over forecast time) -'N m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 500282 -#V-momentum flux due to SSO-effects -'N m-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } - -#paramId: 500288 -#Absolute vorticity advection -'s-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 197 ; - } - -#paramId: 500289 -#Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 194 ; - } - -#paramId: 500291 -#Hoehe der Konvektionsuntergrenze ueber nn -'m' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 24 ; - typeOfSecondFixedSurface = 101 ; - typeOfFirstFixedSurface = 2 ; - } - -#paramId: 500293 -#geostrophische Vorticityadvektion -'s-2' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 0 ; - } - -#paramId: 500294 -#Geostrophic thickness advection -'m3 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 1 ; - } - -#paramId: 500295 -#Schichtdickenadvektion -'m3 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 2 ; - } - -#paramId: 500296 -#Winddivergenz -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 3 ; - } - -#paramId: 500297 -#Q-Vektor senkrecht zu den Isothermen -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 4 ; - } - -#paramId: 500298 -#Isentrope potentielle Vorticity -'K m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 107 ; - } - -#paramId: 500299 -#Wind X-Komponente auf isentropen Flaechen -'m s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 5 ; - } - -#paramId: 500300 -#Wind Y-Komponente auf isentropen Flaechen -'m s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 6 ; - } - -#paramId: 500306 -#Modified cloud depth for media -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - } - -#paramId: 500307 -#Modified cloud cover for media -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - } - -#paramId: 500322 -#RMS of difference "first guess - analysis" of kinetic energy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 201 ; - } - -#paramId: 500323 -#RMS of difference "initialized analysis - analysis" of kinetic energy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 5 ; - typeOfGeneratingProcess = 200 ; - } - -#paramId: 500437 -#Probability of 1h total precipitation >= 10mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500438 -#Probability of 1h total precipitation >= 25mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500439 -#Probability of 6h total precipitation >= 20mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 14 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500440 -#Probability of 6h total precipitation >= 35mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 17 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500441 -#Probability of 12h total precipitation >= 25mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500442 -#Probability of 12h total precipitation >= 40mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500443 -#Probability of 12h total precipitation >= 70mm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 32 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500444 -#Probability of 6h accumulated snow >=0.5cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 69 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500445 -#Probability of 6h accumulated snow >= 5cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 70 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500446 -#Probability of 6h accumulated snow >= 10cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 71 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500447 -#Probability of 12h accumulated snow >=0.5cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 72 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500448 -#Probability of 12h accumulated snow >= 10cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 74 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500449 -#Probability of 12h accumulated snow >= 15cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 75 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500450 -#Probability of 12h accumulated snow >= 25cm -'kg m2' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 77 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500451 -#Probability of 1h maximum wind gust speed >= 14m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 132 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500452 -#Probability of 1h maximum wind gust speed >= 18m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 134 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500453 -#Probability of 1h maximum wind gust speed >= 25m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 136 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500454 -#Probability of 1h maximum wind gust speed >= 29m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 137 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500455 -#Probability of 1h maximum wind gust speed >= 33m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 138 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500456 -#Probability of 1h maximum wind gust speed >= 39m/s -'m s-1' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 139 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500457 -#Probability of black ice during 1h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 191 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500458 -#Probability of thunderstorm during 1h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500459 -#Probability of heavy thunderstorm during 1h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500460 -#Probability of severe thunderstorm during 1h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500461 -#Probability of snowdrift during 12h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 212 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500462 -#Probability of strong snowdrift during 12h -'Numeric' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 213 ; - typeOfStatisticalProcessing = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500463 -#Probability of temperature < 0 deg C during 1h -'K' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 232 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500464 -#Probability of temperature <= -10 deg C during 6h -'K' = { - discipline = 0 ; - parameterCategory = 195 ; - parameterNumber = 236 ; - typeOfStatisticalProcessing = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500465 -#UV Index, clear sky; corrected for albedo, aerosol and altitude -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 195 ; - } - -#paramId: 500466 -#Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 196 ; - } - -#paramId: 500467 -#UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 197 ; - } - -#paramId: 500471 -#Time of maximum of UV Index, clouded -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 500472 -#Type of convection (0..4) -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 201 ; - } - -#paramId: 500473 -#perceived temperature -'K' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 1 ; - } - -#paramId: 500478 -#probability to perceive sultriness -'Numeric' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 3 ; - } - -#paramId: 500479 -#value of isolation of clothes -'Numeric' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 2 ; - } - -#paramId: 500480 -#Downward direct short wave radiation flux at surface (mean over forecast time) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500481 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 500503 -#Icing Base (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500504 -#Icing Max Base (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500505 -#Icing Max Top (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500506 -#Icing Top (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500507 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500508 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500509 -#Icing Base (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500510 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500511 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500512 -#Icing Top (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500513 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500514 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500515 -#Icing Base (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500516 -#Icing Max Base (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500517 -#Icing Max Top (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500518 -#Icing Top (hft) - Icing Degree Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500519 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500520 -#Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500521 -#Icing Base (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500522 -#Icing Signifikant Base (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500523 -#Icing Signifikant Top (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500524 -#Icing Top (hft) - Icing Scenario Composit -'hft' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500525 -#Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500526 -#Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500527 -#Icing Degree Code (1=light,2=moderate,3=severe) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500528 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 2 ; - } - -#paramId: 500529 -#Icing Degree Code (1=light,2=moderate,3=severe) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500530 -#Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - typeOfGeneratingProcess = 0 ; - } - -#paramId: 500531 -#current weather (symbol number: 0..9) -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 209 ; - } - -#paramId: 500538 -#cloud type -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500540 -#cloud top temperature -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } - -#paramId: 500541 -#Relative vorticity, u-component -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 198 ; - } - -#paramId: 500542 -#Relative vorticity, v-component -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 199 ; - } - -#paramId: 500550 -#Potentielle Vorticity (auf Druckflaechen, nicht isentrop) -'K m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 23 ; - } - -#paramId: 500551 -#geostrophische Vorticity -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 7 ; - } - -#paramId: 500552 -#Forcing rechte Seite Omegagleichung -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 8 ; - } - -#paramId: 500553 -#Q-Vektor X-Komponente (geostrophisch) -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 9 ; - } - -#paramId: 500554 -#Q-Vektor Y-Komponente (geostrophisch) -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 10 ; - } - -#paramId: 500555 -#Divergenz Q (geostrophisch) -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 11 ; - } - -#paramId: 500556 -#Q-Vektor senkrecht zu d. Isothermen (geostrophisch) -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 12 ; - } - -#paramId: 500557 -#Q-Vektor parallel zu d. Isothermen (geostrophisch) -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 13 ; - } - -#paramId: 500558 -#Divergenz Qn geostrophisch -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 14 ; - } - -#paramId: 500559 -#Divergenz Qs geostrophisch -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 15 ; - } - -#paramId: 500560 -#Frontogenesefunktion -'K2 m-2 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 16 ; - } - -#paramId: 500562 -#Divergenz -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 17 ; - } - -#paramId: 500563 -#Q-Vektor parallel zu den Isothermen -'m2 kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 18 ; - } - -#paramId: 500564 -#Divergenz Qn -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 19 ; - } - -#paramId: 500565 -#Divergenz Qs -'m kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 20 ; - } - -#paramId: 500566 -#Frontogenesis function -'Km kg-1 s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 21 ; - } - -#paramId: 500567 -#Clear Air Turbulence Index -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 22 ; - } - -#paramId: 500570 -#Dry convection top index -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 202 ; - } - -#paramId: 500572 -#Tidal tendencies -'s2 m-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } - -#paramId: 500573 -#Sea surface temperature interpolated in time in C -'C' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } - -#paramId: 500575 -#3 hour pressure change -'Pa-3h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } - -#paramId: 500577 -#Variance of soil moisture content -'kg2 m-4' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500578 -#Covariance of soil moisture content -'kg2 m-4' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 6 ; - } - -#paramId: 500585 -#Eddy Dissipation Rate -'m2/3 s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 216 ; - } - -#paramId: 500586 -#Ellrod Index -'10-7 s-2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 217 ; - } - -#paramId: 500591 -#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 209 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 500620 -#Prob Gewitter -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 1 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500621 -#Prob Starkes Gewitter -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500622 -#Prob Schweres Gewitter -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 3 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500623 -#Prob Dauerregen -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 4 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500624 -#Prob Ergiebiger Dauerregen -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 5 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500625 -#Prob Extrem ergiebiger Dauerregen -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 6 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500626 -#Prob Schneeverwehung -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 7 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500627 -#Prob Starke Schneeverwehung -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 8 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500628 -#Prob Glaette -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 9 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500629 -#Prob oertlich Glatteis -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 10 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500630 -#Prob Glatteis -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 11 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500631 -#Prob Nebel (ueberoertl. Sichtweite < 150 m) -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 12 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500632 -#Prob Tauwetter -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 13 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500633 -#Prob Starkes Tauwetter -'Numeric' = { - discipline = 0 ; - parameterCategory = 196 ; - parameterNumber = 14 ; - typeOfGeneratingProcess = 5 ; - } - -#paramId: 500634 -#Wake-production of TKE due to sub-grid scale orography -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 220 ; - } - -#paramId: 500635 -#Shear-production of TKE due to separated horizontal shear modes -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 221 ; - } - -#paramId: 500636 -#Buoyancy-production of TKE due to sub-grid scale convection -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 219 ; - } - -#paramId: 500637 -#Production of TKE -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 218 ; - } - -#paramId: 500638 -#Atmospheric resistance -'s m-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 200 ; - } - -#paramId: 500639 -#Height of thermals above MSL -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 197 ; - } - -#paramId: 500640 -#Mass concentration of dust (minimum mode) -'kg m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 33 ; - } - -#paramId: 500643 -#Mass concentration of dust (medium mode) -'kg m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 34 ; - } - -#paramId: 500644 -#Mass concentration of dust (maximum mode) -'kg m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 35 ; - } - -#paramId: 500645 -#Number concentration of dust (minimum mode) -'m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 72 ; - } - -#paramId: 500646 -#Number concentration of dust (medium mode) -'m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 73 ; - } - -#paramId: 500647 -#Number concentration of dust (maximum mode) -'m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 74 ; - } - -#paramId: 500648 -#Mass concentration of dust (sum of all modes) -'kg m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 251 ; - } - -#paramId: 500649 -#Number concentration of dust (sum of all modes) -'m-3' = { - discipline = 0 ; - parameterCategory = 197 ; - parameterNumber = 252 ; - } - -#paramId: 500650 -#DUMMY_1 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 1 ; - } - -#paramId: 500651 -#DUMMY_2 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 2 ; - } - -#paramId: 500652 -#DUMMY_3 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 3 ; - } - -#paramId: 500654 -#DUMMY_4 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 4 ; - } - -#paramId: 500655 -#DUMMY_5 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 5 ; - } - -#paramId: 500656 -#DUMMY_6 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 6 ; - } - -#paramId: 500657 -#DUMMY_7 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 7 ; - } - -#paramId: 500658 -#DUMMY_8 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 8 ; - } - -#paramId: 500659 -#DUMMY_9 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 9 ; - } - -#paramId: 500660 -#DUMMY_10 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 10 ; - } - -#paramId: 500661 -#DUMMY_11 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 11 ; - } - -#paramId: 500662 -#DUMMY_12 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 12 ; - } - -#paramId: 500663 -#DUMMY_13 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 13 ; - } - -#paramId: 500664 -#DUMMY_14 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 14 ; - } - -#paramId: 500665 -#DUMMY_15 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 15 ; - } - -#paramId: 500666 -#DUMMY_16 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 16 ; - } - -#paramId: 500667 -#DUMMY_17 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 17 ; - } - -#paramId: 500668 -#DUMMY_18 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 18 ; - } - -#paramId: 500669 -#DUMMY_19 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 19 ; - } - -#paramId: 500670 -#DUMMY_20 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 20 ; - } - -#paramId: 500671 -#DUMMY_21 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 21 ; - } - -#paramId: 500672 -#DUMMY_22 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 22 ; - } - -#paramId: 500673 -#DUMMY_23 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 23 ; - } - -#paramId: 500674 -#DUMMY_24 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 24 ; - } - -#paramId: 500675 -#DUMMY_25 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 25 ; - } - -#paramId: 500676 -#DUMMY_26 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 26 ; - } - -#paramId: 500677 -#DUMMY_27 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 27 ; - } - -#paramId: 500678 -#DUMMY_28 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 28 ; - } - -#paramId: 500679 -#DUMMY_29 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 29 ; - } - -#paramId: 500680 -#DUMMY_30 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 30 ; - } - -#paramId: 500681 -#DUMMY_31 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 31 ; - } - -#paramId: 500682 -#DUMMY_32 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 32 ; - } - -#paramId: 500683 -#DUMMY_33 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 33 ; - } - -#paramId: 500684 -#DUMMY_34 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 34 ; - } - -#paramId: 500685 -#DUMMY_35 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 35 ; - } - -#paramId: 500686 -#DUMMY_36 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 36 ; - } - -#paramId: 500687 -#DUMMY_37 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 37 ; - } - -#paramId: 500688 -#DUMMY_38 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 38 ; - } - -#paramId: 500689 -#DUMMY_39 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 39 ; - } - -#paramId: 500690 -#DUMMY_40 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 40 ; - } - -#paramId: 500691 -#DUMMY_41 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 41 ; - } - -#paramId: 500692 -#DUMMY_42 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 42 ; - } - -#paramId: 500693 -#DUMMY_43 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 43 ; - } - -#paramId: 500694 -#DUMMY_44 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 44 ; - } - -#paramId: 500695 -#DUMMY_45 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 45 ; - } - -#paramId: 500696 -#DUMMY_46 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 46 ; - } - -#paramId: 500697 -#DUMMY_47 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 47 ; - } - -#paramId: 500698 -#DUMMY_48 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 48 ; - } - -#paramId: 500699 -#DUMMY_49 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 49 ; - } - -#paramId: 500700 -#DUMMY_50 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 50 ; - } - -#paramId: 500701 -#DUMMY_51 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 51 ; - } - -#paramId: 500702 -#DUMMY_52 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 52 ; - } - -#paramId: 500703 -#DUMMY_53 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 53 ; - } - -#paramId: 500704 -#DUMMY_54 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 54 ; - } - -#paramId: 500705 -#DUMMY_55 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 55 ; - } - -#paramId: 500706 -#DUMMY_56 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 56 ; - } - -#paramId: 500707 -#DUMMY_57 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 57 ; - } - -#paramId: 500708 -#DUMMY_58 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 58 ; - } - -#paramId: 500709 -#DUMMY_59 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 59 ; - } - -#paramId: 500710 -#DUMMY_60 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 60 ; - } - -#paramId: 500711 -#DUMMY_61 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 61 ; - } - -#paramId: 500712 -#DUMMY_62 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 62 ; - } - -#paramId: 500713 -#DUMMY_63 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 63 ; - } - -#paramId: 500714 -#DUMMY_64 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 64 ; - } - -#paramId: 500715 -#DUMMY_65 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 65 ; - } - -#paramId: 500716 -#DUMMY_66 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 66 ; - } - -#paramId: 500717 -#DUMMY_67 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 67 ; - } - -#paramId: 500718 -#DUMMY_68 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 68 ; - } - -#paramId: 500719 -#DUMMY_69 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 69 ; - } - -#paramId: 500720 -#DUMMY_70 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 70 ; - } - -#paramId: 500721 -#DUMMY_71 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 71 ; - } - -#paramId: 500722 -#DUMMY_72 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 72 ; - } - -#paramId: 500723 -#DUMMY_73 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 73 ; - } - -#paramId: 500724 -#DUMMY_74 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 74 ; - } - -#paramId: 500725 -#DUMMY_75 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 75 ; - } - -#paramId: 500726 -#DUMMY_76 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 76 ; - } - -#paramId: 500727 -#DUMMY_77 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 77 ; - } - -#paramId: 500728 -#DUMMY_78 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 78 ; - } - -#paramId: 500729 -#DUMMY_79 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 79 ; - } - -#paramId: 500730 -#DUMMY_80 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 80 ; - } - -#paramId: 500731 -#DUMMY_81 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 81 ; - } - -#paramId: 500732 -#DUMMY_82 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 82 ; - } - -#paramId: 500733 -#DUMMY_83 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 83 ; - } - -#paramId: 500734 -#DUMMY_84 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 84 ; - } - -#paramId: 500735 -#DUMMY_85 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 85 ; - } - -#paramId: 500736 -#DUMMY_86 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 86 ; - } - -#paramId: 500737 -#DUMMY_87 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 87 ; - } - -#paramId: 500738 -#DUMMY_88 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 88 ; - } - -#paramId: 500739 -#DUMMY_89 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 89 ; - } - -#paramId: 500740 -#DUMMY_90 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 90 ; - } - -#paramId: 500741 -#DUMMY_91 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 91 ; - } - -#paramId: 500742 -#DUMMY_92 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 92 ; - } - -#paramId: 500743 -#DUMMY_93 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 93 ; - } - -#paramId: 500744 -#DUMMY_94 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 94 ; - } - -#paramId: 500745 -#DUMMY_95 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 95 ; - } - -#paramId: 500746 -#DUMMY_96 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 96 ; - } - -#paramId: 500747 -#DUMMY_97 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 97 ; - } - -#paramId: 500748 -#DUMMY_98 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 98 ; - } - -#paramId: 500749 -#DUMMY_99 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 99 ; - } - -#paramId: 500750 -#DUMMY_100 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 100 ; - } - -#paramId: 500751 -#DUMMY_101 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 101 ; - } - -#paramId: 500752 -#DUMMY_102 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 102 ; - } - -#paramId: 500753 -#DUMMY_103 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 103 ; - } - -#paramId: 500754 -#DUMMY_104 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 104 ; - } - -#paramId: 500755 -#DUMMY_105 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 105 ; - } - -#paramId: 500756 -#DUMMY_106 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 106 ; - } - -#paramId: 500757 -#DUMMY_107 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 107 ; - } - -#paramId: 500758 -#DUMMY_108 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 108 ; - } - -#paramId: 500759 -#DUMMY_109 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 109 ; - } - -#paramId: 500760 -#DUMMY_110 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 110 ; - } - -#paramId: 500761 -#DUMMY_111 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 111 ; - } - -#paramId: 500762 -#DUMMY_112 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 112 ; - } - -#paramId: 500763 -#DUMMY_113 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 113 ; - } - -#paramId: 500764 -#DUMMY_114 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 114 ; - } - -#paramId: 500765 -#DUMMY_115 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 115 ; - } - -#paramId: 500766 -#DUMMY_116 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 116 ; - } - -#paramId: 500767 -#DUMMY_117 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 117 ; - } - -#paramId: 500768 -#DUMMY_118 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 118 ; - } - -#paramId: 500769 -#DUMMY_119 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 119 ; - } - -#paramId: 500770 -#DUMMY_120 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 120 ; - } - -#paramId: 500771 -#DUMMY_121 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 121 ; - } - -#paramId: 500772 -#DUMMY_122 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 122 ; - } - -#paramId: 500773 -#DUMMY_123 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 123 ; - } - -#paramId: 500774 -#DUMMY_124 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 124 ; - } - -#paramId: 500775 -#DUMMY_125 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 125 ; - } - -#paramId: 500776 -#DUMMY_126 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 126 ; - } - -#paramId: 500777 -#DUMMY_127 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 127 ; - } - -#paramId: 500778 -#DUMMY_128 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 128 ; - } - -#paramId: 500793 -#DUMMY_143 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 143 ; - } - -#paramId: 500794 -#DUMMY_144 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 144 ; - } - -#paramId: 500795 -#DUMMY_145 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 145 ; - } - -#paramId: 500796 -#DUMMY_146 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 146 ; - } - -#paramId: 500797 -#DUMMY_147 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 147 ; - } - -#paramId: 500798 -#DUMMY_148 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 148 ; - } - -#paramId: 500799 -#DUMMY_149 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 149 ; - } - -#paramId: 500800 -#DUMMY_150 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 150 ; - } - -#paramId: 500801 -#DUMMY_151 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 151 ; - } - -#paramId: 500802 -#DUMMY_152 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 152 ; - } - -#paramId: 500803 -#DUMMY_153 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 153 ; - } - -#paramId: 500804 -#DUMMY_154 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 154 ; - } - -#paramId: 500805 -#DUMMY_155 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 155 ; - } - -#paramId: 500806 -#DUMMY_156 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 156 ; - } - -#paramId: 500807 -#DUMMY_157 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 157 ; - } - -#paramId: 500808 -#DUMMY_158 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 158 ; - } - -#paramId: 500809 -#DUMMY_159 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 159 ; - } - -#paramId: 500810 -#DUMMY_160 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 160 ; - } - -#paramId: 500811 -#DUMMY_161 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 161 ; - } - -#paramId: 500812 -#DUMMY_162 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 162 ; - } - -#paramId: 500813 -#DUMMY_163 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 163 ; - } - -#paramId: 500814 -#DUMMY_164 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 164 ; - } - -#paramId: 500815 -#DUMMY_165 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 165 ; - } - -#paramId: 500816 -#DUMMY_166 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 166 ; - } - -#paramId: 500817 -#DUMMY_167 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 167 ; - } - -#paramId: 500818 -#DUMMY_168 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 168 ; - } - -#paramId: 500819 -#DUMMY_169 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 169 ; - } - -#paramId: 500820 -#DUMMY_170 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 170 ; - } - -#paramId: 500821 -#DUMMY_171 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 171 ; - } - -#paramId: 500822 -#DUMMY_172 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 172 ; - } - -#paramId: 500823 -#DUMMY_173 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 173 ; - } - -#paramId: 500824 -#DUMMY_174 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 174 ; - } - -#paramId: 500825 -#DUMMY_175 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 175 ; - } - -#paramId: 500826 -#DUMMY_176 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 176 ; - } - -#paramId: 500827 -#DUMMY_177 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 177 ; - } - -#paramId: 500828 -#DUMMY_178 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 178 ; - } - -#paramId: 500829 -#DUMMY_179 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 179 ; - } - -#paramId: 500830 -#DUMMY_180 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 180 ; - } - -#paramId: 500831 -#DUMMY_181 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 181 ; - } - -#paramId: 500832 -#DUMMY_182 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 182 ; - } - -#paramId: 500833 -#DUMMY_183 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 183 ; - } - -#paramId: 500834 -#DUMMY_184 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 184 ; - } - -#paramId: 500835 -#DUMMY_185 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 185 ; - } - -#paramId: 500836 -#DUMMY_186 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 186 ; - } - -#paramId: 500837 -#DUMMY_187 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 187 ; - } - -#paramId: 500838 -#DUMMY_188 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 188 ; - } - -#paramId: 500839 -#DUMMY_189 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 189 ; - } - -#paramId: 500840 -#DUMMY_190 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 190 ; - } - -#paramId: 500841 -#DUMMY_191 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 191 ; - } - -#paramId: 500842 -#DUMMY_192 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 192 ; - } - -#paramId: 500843 -#DUMMY_193 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 193 ; - } - -#paramId: 500844 -#DUMMY_194 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 194 ; - } - -#paramId: 500845 -#DUMMY_195 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 195 ; - } - -#paramId: 500846 -#DUMMY_196 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 196 ; - } - -#paramId: 500847 -#DUMMY_197 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 197 ; - } - -#paramId: 500848 -#DUMMY_198 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 198 ; - } - -#paramId: 500849 -#DUMMY_199 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 199 ; - } - -#paramId: 500850 -#DUMMY_200 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 200 ; - } - -#paramId: 500851 -#DUMMY_201 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 201 ; - } - -#paramId: 500852 -#DUMMY_202 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 202 ; - } - -#paramId: 500853 -#DUMMY_203 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 203 ; - } - -#paramId: 500854 -#DUMMY_204 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 204 ; - } - -#paramId: 500855 -#DUMMY_205 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 205 ; - } - -#paramId: 500856 -#DUMMY_206 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 206 ; - } - -#paramId: 500857 -#DUMMY_207 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 207 ; - } - -#paramId: 500858 -#DUMMY_208 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 208 ; - } - -#paramId: 500859 -#DUMMY_209 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 209 ; - } - -#paramId: 500860 -#DUMMY_210 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 210 ; - } - -#paramId: 500861 -#DUMMY_211 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 211 ; - } - -#paramId: 500862 -#DUMMY_212 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 212 ; - } - -#paramId: 500863 -#DUMMY_213 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 213 ; - } - -#paramId: 500864 -#DUMMY_214 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 214 ; - } - -#paramId: 500865 -#DUMMY_215 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 215 ; - } - -#paramId: 500866 -#DUMMY_216 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 216 ; - } - -#paramId: 500867 -#DUMMY_217 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 217 ; - } - -#paramId: 500868 -#DUMMY_218 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 218 ; - } - -#paramId: 500869 -#DUMMY_219 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 219 ; - } - -#paramId: 500870 -#DUMMY_220 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 220 ; - } - -#paramId: 500871 -#DUMMY_221 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 221 ; - } - -#paramId: 500872 -#DUMMY_222 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 222 ; - } - -#paramId: 500873 -#DUMMY_223 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 223 ; - } - -#paramId: 500874 -#DUMMY_224 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 224 ; - } - -#paramId: 500875 -#DUMMY_225 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 225 ; - } - -#paramId: 500876 -#DUMMY_226 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 226 ; - } - -#paramId: 500877 -#DUMMY_227 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 227 ; - } - -#paramId: 500878 -#DUMMY_228 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 228 ; - } - -#paramId: 500879 -#DUMMY_229 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 229 ; - } - -#paramId: 500880 -#DUMMY_230 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 230 ; - } - -#paramId: 500881 -#DUMMY_231 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 231 ; - } - -#paramId: 500882 -#DUMMY_232 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 232 ; - } - -#paramId: 500883 -#DUMMY_233 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 233 ; - } - -#paramId: 500884 -#DUMMY_234 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 234 ; - } - -#paramId: 500885 -#DUMMY_235 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 235 ; - } - -#paramId: 500886 -#DUMMY_236 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 236 ; - } - -#paramId: 500887 -#DUMMY_237 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 237 ; - } - -#paramId: 500888 -#DUMMY_238 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 238 ; - } - -#paramId: 500889 -#DUMMY_239 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 239 ; - } - -#paramId: 500890 -#DUMMY_240 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 240 ; - } - -#paramId: 500891 -#DUMMY_241 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 241 ; - } - -#paramId: 500892 -#DUMMY_242 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 242 ; - } - -#paramId: 500893 -#DUMMY_243 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 243 ; - } - -#paramId: 500894 -#DUMMY_244 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 244 ; - } - -#paramId: 500895 -#DUMMY_245 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 245 ; - } - -#paramId: 500896 -#DUMMY_246 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 246 ; - } - -#paramId: 500897 -#DUMMY_247 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 247 ; - } - -#paramId: 500898 -#DUMMY_248 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 248 ; - } - -#paramId: 500899 -#DUMMY_249 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 249 ; - } - -#paramId: 500900 -#DUMMY_250 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 250 ; - } - -#paramId: 500901 -#DUMMY_251 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 251 ; - } - -#paramId: 500902 -#DUMMY_252 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 252 ; - } - -#paramId: 500903 -#DUMMY_253 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 253 ; - } - -#paramId: 500904 -#DUMMY_254 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 254 ; - } - -#paramId: 502332 -#Liquid water content in snow - multi level -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 210 ; - typeOfFirstFixedSurface = 114 ; - } - -#paramId: 502339 -#Downward direct short wave radiation flux at surface -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 502344 -#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502345 -#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 222 ; - } - -#paramId: 502346 -#Albedo - near infrared - time average (0.7 - 5.0 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 502347 -#Albedo - near infrared (0.7 - 5.0 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 223 ; - } - -#paramId: 502352 -#Eddy Dissipation Rate Total Col-Max. Upper FIR -'m2/3 s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 224 ; - } - -#paramId: 502353 -#Eddy Dissipation Rate Total Col-Max. Lower UIR -'m2/3 s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 225 ; - } - -#paramId: 502354 -#Eddy Dissipation Rate Total Col-Max. Upper UIR -'m2/3 s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 226 ; - } - -#paramId: 503049 -#Eddy dissipitation rate of TKE -'m2 s-3' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 227 ; - } - -#paramId: 503050 -#Radar precipitation rate -'kg m-2 h-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 195 ; - } - -#paramId: 503052 -#Radar quality information -'Proportion' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 196 ; - } - -#paramId: 503053 -#Radar blacklist -'Numeric' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 197 ; - } - -#paramId: 503054 -#Height of radar beam above ground -'m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 198 ; - } - -#paramId: 503055 -#Specific humidity (diagnostic) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 211 ; - } - -#paramId: 503056 -#Specific cloud water content (diagnostic) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 212 ; - } - -#paramId: 503057 -#Specific cloud ice content (diagnostic) -'kg kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 213 ; - } - -#paramId: 503058 -#Total column integrated water vapour (diagnostic) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 214 ; - } - -#paramId: 503059 -#Total column integrated cloud water (diagnostic) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 215 ; - } - -#paramId: 503060 -#Total column integrated cloud ice (diagnostic) -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 216 ; - } - -#paramId: 503061 -#Downward diffusive short wave radiation flux at surface (mean over forecast time) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503068 -#precipitation, qualified,BRD -'kg m-2' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503069 -#precipitation,BRD -'kg m-2' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503070 -#precipitation phase,BRD -'Numeric' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 194 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503071 -#hail flag,BRD -'Numeric' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 195 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503072 -#snow_rate,BRD -'0.01 m' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 196 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503073 -#snow_rate,qualified,BRD -'0.01 m' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 197 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503074 -#Area weights for regular lon-lat grid -'Numeric' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 193 ; - } - -#paramId: 503078 -#Relative humidity over mixed phase -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 220 ; - } - -#paramId: 503079 -#Soil moisture index (multilayers) -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } - -#paramId: 503096 -#Peak frequency (interpolated) -'Hz' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } - -#paramId: 503115 -#Specific number concentration of rain -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 228 ; - } - -#paramId: 503116 -#Number density of rain -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 229 ; - } - -#paramId: 503117 -#Specific number concentration of snow -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 217 ; - } - -#paramId: 503118 -#Specific number concentration of graupel -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 218 ; - } - -#paramId: 503119 -#Specific number concentration of hail -'kg-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 219 ; - } - -#paramId: 503120 -#Number density of snow -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 221 ; - } - -#paramId: 503121 -#Number density of graupel -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 222 ; - } - -#paramId: 503122 -#Number density of hail -'m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 223 ; - } - -#paramId: 503123 -#Mass density of rain -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 224 ; - } - -#paramId: 503124 -#Mass density of snow -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 225 ; - } - -#paramId: 503125 -#Mass density of graupel -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 226 ; - } - -#paramId: 503126 -#Mass density of cloud droplets -'kg m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 203 ; - } - -#paramId: 503127 -#Mass density of cloud ice -'kg m-3' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 204 ; - } - -#paramId: 503128 -#Mass density of hail -'kg m-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 227 ; - } - -#paramId: 503137 -#Eddy Dissipation Rate Total Col-Max. Lower FIR -'m2/3 s-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 228 ; - } - -#paramId: 503142 -#Lightning Potential Index -'J kg-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - } - -#paramId: 503143 -#Rain drain from snowpack - accumulation -'kg m-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 230 ; - typeOfStatisticalProcessing = 1 ; - } - -#paramId: 503146 -#Height of -10 degree Celsius isotherm -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } - -#paramId: 503147 -# probability density function of EDP for turbulence greater well defined threshold and model grid box -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 229 ; - } - -#paramId: 503148 -#Adedokun 2 Index -'K' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } - -#paramId: 503149 -#Downward direct short wave radiation flux at surface on horizontal plane (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503150 -#Gauss Boaga Coordinates West to East,East Sector -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 194 ; - } - -#paramId: 503151 -#Gauss Boaga Coordinates South to North,East Sector -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 195 ; - } - -#paramId: 503152 -#Gauss Boaga Coordinates West to East, West Sector -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 196 ; - } - -#paramId: 503153 -#Gauss Boaga Coordinates South to North, West Sector -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 197 ; - } - -#paramId: 503156 -#Ellrod and Knapp turbulence index1 -'s-2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 230 ; - } - -#paramId: 503157 -#Ellrod and Knapp turbulence index2 -'s-2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 231 ; - } - -#paramId: 503158 -#Deformation of horizontal wind field -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 29 ; - } - -#paramId: 503159 -#Divergence trend (scaled divergence tendency needed for CAT_DVI) -'s-2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 232 ; - } - -#paramId: 503160 -#Divergence modified turbulence index (Ellrod and Knox) -'s-2' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 233 ; - } - -#paramId: 503161 -#Cloud ice ratio qi/(qc+qi) -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 231 ; - } - -#paramId: 503162 -#Percentage of convective precipitation (from total prec) -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 232 ; - } - -#paramId: 503163 -#Deep convection index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503164 -#Wind direction in azimuth class -'Numeric' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } - -#paramId: 503165 -#Wind direction in azimuth class -'Numeric' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503167 -#Possible astronomical maximum of sunshine -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 11 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 206 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503171 -#Enthalpy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } - -#paramId: 503172 -#2m Enthalpy -'J kg-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503175 -#Downward short wave radiation flux at surface on horizontal plane (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 201 ; - } - -#paramId: 503176 -#Downward short wave radiation flux at surface on vertical surface facing east (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 202 ; - } - -#paramId: 503177 -#Downward short wave radiation flux at surface on vertical surface facing north (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 203 ; - } - -#paramId: 503178 -#Downward short wave radiation flux at surface on vertical surface facing south (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 204 ; - } - -#paramId: 503179 -#Downward short wave radiation flux at surface on vertical surface facing west (time average) -'W m-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 205 ; - } - -#paramId: 503180 -#Along-wind Lagrangian time scale (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } - -#paramId: 503181 -#Cross-wind Lagrangian time scale (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } - -#paramId: 503182 -#Vertical Lagrangian time scale (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } - -#paramId: 503183 -#Zonal Lagrangian time scale (direct) (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } - -#paramId: 503184 -#Meridional Lagrangian time scale (direct) (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } - -#paramId: 503185 -#Vertical Lagrangian time scale (direct) (Hanna) -'s' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } - -#paramId: 503187 -#Height of level of free convection of mixed (mean) layer parcel -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 192 ; - typeOfFirstFixedSurface = 194 ; - } - -#paramId: 503188 -#Luminosity -'klux' = { - discipline = 215 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } - -#paramId: 503189 -#Downward long-wave radiation flux at surface based on T_2M (time average) -'W m-2 ' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503190 -#Downward long-wave radiation flux at surface based on T_G (time average) -'W m-2 ' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503191 -#Downward long-wave radiation flux at surface based on T_SO(0) (time average) -'W m-2 ' = { - discipline = 215 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } - -#paramId: 503194 -#Pressure difference between cloud base and cloud top -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - typeOfSecondFixedSurface = 2 ; - typeOfFirstFixedSurface = 3 ; - } - -#paramId: 503198 -#Along-wind velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } - -#paramId: 503199 -#Cross-wind velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } - -#paramId: 503200 -#Vertical velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } - -#paramId: 503201 -#Zonal velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } - -#paramId: 503202 -#Meridional velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } - -#paramId: 503203 -#Vertical velocity fluctuation (Hanna) -'m s-1' = { - discipline = 215 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } - -#paramId: 503205 -#Percentage of precipitation in snow (from total prec.) -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 233 ; - } - -#paramId: 503206 -#Thunderstorm index for Switzerland (night time) -'K' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } - -#paramId: 503207 -#Thunderstorm index for Switzerland (day time) -'K' = { - discipline = 215 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } - -#paramId: 503208 -#Swiss coordinate (south-north) -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 198 ; - } - -#paramId: 503209 -#Swiss coordinate (west-east) -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 199 ; - } - -#paramId: 503217 -#2m temperature, corrected in presence of snow -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } - -#paramId: 503218 -#Universal thermal climate index without direct incident short wave radiation -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } - -#paramId: 503222 -#Relative geostrophic vorticity -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 26 ; - } - -#paramId: 503223 -#Relative geostrophic vorticity advection -'s-2' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 27 ; - } - -#paramId: 503226 -#Wind divergence (3D) -'s-1' = { - discipline = 0 ; - parameterCategory = 193 ; - parameterNumber = 28 ; - } - -#paramId: 503227 -#Mean vertical wind shear for specified layer or layer-mean vertical wind shear -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 201 ; - } - -#paramId: 503228 -#Norm of (vertical) wind shear vector between two levels -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 202 ; - } - -#paramId: 503282 -#Diagnostic total column of activity concentration of radionuclides -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 10 ; - } - -#paramId: 503283 -#Liquid water potential temperature variance -'K2' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 0 ; - } - -#paramId: 503284 -#Total water specific humidity variance -'kg2 kg-2' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 1 ; - } - -#paramId: 503285 -#Liquid water potential temperature - total water specific humidity covariance -'K kg kg-1' = { - discipline = 0 ; - parameterCategory = 198 ; - parameterNumber = 2 ; - } - -#paramId: 503286 -#Impervious (paved or sealed) surface fraction -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } - -#paramId: 503287 -#Antropogenic heat flux (e.g. urban heating, traffic) -'W m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } - -#paramId: 503292 -#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 234 ; - } - -#paramId: 503299 -#Sky-view-factor -'Numeric' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 0 ; - } - -#paramId: 503300 -#Horizon angle - topography -'Numeric' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 1 ; - } - -#paramId: 503301 -#Slope aspect - topography -'Numeric' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 3 ; - } - -#paramId: 503302 -#Slope angle - topography -'Numeric' = { - discipline = 0 ; - parameterCategory = 199 ; - parameterNumber = 2 ; - } - -#paramId: 503339 -#Threshold friction velocity -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 203 ; - } - -#paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503343 -#Maximum updraft track (over given time interval and column) -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503348 -#Maximum of Lightning Potential Index (over given time interval) -'J kg-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503351 -#mean radiation temperature of an environment assumed black body related to standing human -'K' = { - discipline = 0 ; - parameterCategory = 192 ; - parameterNumber = 4 ; - } - -#paramId: 503355 -#Maximum 10m dynamical gust -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503356 -#Maximum 10m convective gust -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } - -#paramId: 503358 -#Standard deviation of saturation deficit -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 234 ; - } - -#paramId: 503359 -#Evaporation of plants (integrated since "nightly reset") -'kg m-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } - -#paramId: 503363 -#Number of birch (betula) pollen in the reservoir (previous timestep) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62101 ; - } - -#paramId: 503364 -#Number of birch (betula) pollen released into the reservoir (new) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62101 ; - } - -#paramId: 503365 -#Sum of released birch (betula) pollen into the reservoir (daily sum) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62101 ; - } - -#paramId: 503366 -#State of the birch (betula) season (eq.zero before and after season, the higher, the more plants are flowering) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62101 ; - } - -#paramId: 503367 -#Height correction for emission (decreasing emission with height) for birch (betula) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503369 -#Cumulated weighted 2m temperature sum of daily values for birch (betula) pollen -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62101 ; - } - -#paramId: 503370 -#Cumulated 2m temperature sum threshold for the start of birch (betula) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503371 -#Cumulated 2m temperature sum threshold for the end of birch (betula) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62101 ; - } - -#paramId: 503372 -#Number of days since the start of birch (betula) pollen season (if present day is outside the season: length of current season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62101 ; - } - -#paramId: 503373 -#Length of birch (betula) pollen season -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62101 ; - } - -#paramId: 503374 -#Pollen number emission flux for birch (betula) -'m-2s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62101 ; - } - -#paramId: 503377 -#Number of alder (alnus) pollen in the reservoir (previous timestep) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62100 ; - } - -#paramId: 503378 -#Number of alder (alnus) pollen released into the reservoir (new) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62100 ; - } - -#paramId: 503379 -#Sum of released alder (alnus) pollen into the reservoir (daily sum) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62100 ; - } - -#paramId: 503380 -#State of the alder (alnus) season (eq.zero before and after season, the higher, the more plants are flowering) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62100 ; - } - -#paramId: 503381 -#Height correction for emission (decreasing emission with height) for alder (alnus) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503383 -#Cumulated weighted 2m temperature sum of daily values for alder (alnus) pollen -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62100 ; - } - -#paramId: 503384 -#Cumulated 2m temperature sum threshold for the start of alder (alnus) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503385 -#Cumulated 2m temperature sum threshold for the end of alder (alnus) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62100 ; - } - -#paramId: 503386 -#Number of days since the start of alder (alnus) pollen season (if present day is in the season: zero outside season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62100 ; - } - -#paramId: 503387 -#Number of days since the start of alder (alnus) pollen season (if present day is outside the season: length of current season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62100 ; - } - -#paramId: 503388 -#Length of alder (alnus) pollen season -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62100 ; - } - -#paramId: 503389 -#Pollen number emission flux for alder (alnus) -'m-2s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62100 ; - } - -#paramId: 503392 -#Number of grasses (poaceae) pollen in the reservoir (previous timestep) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62300 ; - } - -#paramId: 503393 -#Number of grasses (poaceae) pollen released into the reservoir (new) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62300 ; - } - -#paramId: 503394 -#Sum of released grasses (poaceae) pollen into the reservoir (daily sum) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62300 ; - } - -#paramId: 503395 -#State of the grasses (poaceae) season (eq.zero before and after season, the higher, the more plants are flowering) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62300 ; - } - -#paramId: 503396 -#Height correction for emission (decreasing emission with height) for grasses (poaceae) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503398 -#Cumulated weighted 2m temperature sum of daily values for grasses (poaceae) pollen -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62300 ; - } - -#paramId: 503399 -#Cumulated 2m temperature sum threshold for the start of grasses (poaceae) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503400 -#Cumulated 2m temperature sum threshold for the end of grasses (poaceae) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62300 ; - } - -#paramId: 503401 -#Number of days since the start of grasses (poaceae) pollen season (if present day is in the season: zero outside season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62300 ; - } - -#paramId: 503402 -#Number of days since the start of grasses (poaceae) pollen season (if present day is outside the season: length of current season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62300 ; - } - -#paramId: 503403 -#Length of grasses (poaceae) pollen season -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62300 ; - } - -#paramId: 503404 -#Pollen number emission flux for grasses (poaceae) -'m-2s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62300 ; - } - -#paramId: 503407 -#Number of ragweed (ambrosia) pollen in the reservoir (previous timestep) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - constituentType = 62200 ; - } - -#paramId: 503408 -#Number of ragweed (ambrosia) pollen released into the reservoir (new) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - constituentType = 62200 ; - } - -#paramId: 503409 -#Sum of released ragweed (ambrosia) pollen into the reservoir (daily sum) -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - typeOfStatisticalProcessing = 11 ; - constituentType = 62200 ; - } - -#paramId: 503410 -#State of the ragweed (ambrosia) season (eq.zero before and after season, the higher, the more plants are flowering) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - constituentType = 62200 ; - } - -#paramId: 503411 -#Height correction for emission (decreasing emission with height) for ragweed (ambrosia) -'0-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 195 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503413 -#Cumulated weighted 2m temperature sum of daily values for ragweed (ambrosia) pollen -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 196 ; - constituentType = 62200 ; - } - -#paramId: 503414 -#Cumulated 2m temperature sum threshold for the start of ragweed (ambrosia) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503415 -#Cumulated 2m temperature sum threshold for the end of ragweed (ambrosia) pollen season (climatological) -'deg C' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - typeOfGeneratingProcess = 9 ; - constituentType = 62200 ; - } - -#paramId: 503416 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is in the season: zero outside season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62200 ; - } - -#paramId: 503417 -#Number of days since the start of ragweed (ambrosia) pollen season (if present day is outside the season: length of current season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 200 ; - constituentType = 62200 ; - } - -#paramId: 503418 -#Length of ragweed (ambrosia) pollen season -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - constituentType = 62200 ; - } - -#paramId: 503419 -#Pollen number emission flux for ragweed (ambrosia) -'m-2s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - constituentType = 62200 ; - } - -#paramId: 503420 -#Number of days since the start of birch (betula) pollen season (if present day is in the season: zero outside season) -'d' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - constituentType = 62101 ; - } - -#paramId: 503424 -#Random pattern for the stochastically perturbed parametrization tendencies (SPPT) scheme at levels without tapering. If multi-scale random patterns are used, RAPA_SPPT is the sum of those. -'Numeric' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 235 ; - } - -#paramId: 503425 -#Skin conductivity (ratio ground heat flux to temperature difference soil-skin layer) -'W m-2 K-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } - -#paramId: 503426 -#Maximum snow height during contiguous accumulating snow period (coupled with snow age) -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 235 ; - } - -#paramId: 503427 -#U-component of (vertical) wind shear vector between two levels -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 208 ; - } - -#paramId: 503428 -#V-component of (vertical) wind shear vector between two levels -'m s-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 209 ; - } - -#paramId: 503440 -#Accumulated wet deposition of dust if rain reaches the surface for mode 1 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503441 -#Accumulated wet deposition of dust if rain reaches the surface for mode 2 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503442 -#Accumulated wet deposition of dust if rain reaches the surface for mode 3 -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503446 -#Accumulated dry deposition of dust number concentration for mode 1 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503447 -#Accumulated dry deposition of dust number concentration for mode 2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503448 -#Accumulated dry deposition of dust number concentration for mode 3 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503449 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503450 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503451 -#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 205 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503452 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503453 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503454 -#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 207 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503455 -#Accumulated sedimentation of dust number concentration for mode 1 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503456 -#Accumulated sedimentation of dust number concentration for mode 2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503457 -#Accumulated sedimentation of dust number concentration for mode 3 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 208 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503460 -#Mineral dust backscatter (not attenuated, for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62001 ; - } - -#paramId: 503463 -#Volcanic ash backscatter (not attenuated, for given wave length) -'m-1 sr-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 209 ; - aerosolType = 62025 ; - } - -#paramId: 503464 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 3 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503465 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 2 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503466 -#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 206 ; - typeOfStatisticalProcessing = 1 ; - constituentType = 62001 ; - modeNumber = 1 ; - typeOfDistributionFunction = 8 ; - } - -#paramId: 503549 -#Swiss coordinate LV 95 (south-north) -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 200 ; - } - -#paramId: 503550 -#Swiss coordinate LV 95 (west-east) -'m' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 201 ; - } - -#paramId: 503555 -#Average hail diameter -'mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 0 ; - } - -#paramId: 503556 -#Standard deviation of hail diameter -'mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 6 ; - } - -#paramId: 503557 -#Maximum hail diameter -'mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 238 ; - typeOfStatisticalProcessing = 2 ; - } - -#paramId: 503558 -#Duration of updraft -'s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 210 ; - } - -#paramId: 503559 -#Updraft mask -'s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 211 ; - } - diff --git a/eccodes/definitions.save/grib2/localConcepts/efkl/name.def b/eccodes/definitions.save/grib2/localConcepts/efkl/name.def deleted file mode 100644 index a1c619b3..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/efkl/name.def +++ /dev/null @@ -1,157 +0,0 @@ -# Automatically generted. Do not edit. -# NWP latent heat net flux -'NWP latent heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -# NWP sensible heat net flux -'NWP sensible heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -# NWP Boundary layer height -'NWP Boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -# MO_length_inv -'MO_length_inv' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } -# mixing velocity scale "Kz_1m" at surface -'mixing velocity scale "Kz_1m" at surface' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } -# Convective velocity scale -'Convective velocity scale' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - } -# Temperature scale T_star -'Temperature scale T_star' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } -# Humidity scale h_star -'Humidity scale h_star' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 196 ; - } -# Scavenging coefficient -'Scavenging coefficient' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 197 ; - } -# Dry deposition number flux -'Dry deposition number flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - } -# Dry deposition molar flux -'Dry deposition molar flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - } -# Dry deposition radioactive flux -'Dry deposition radioactive flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - } -# Wet deposition Number Flux -'Wet deposition Number Flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - } -# Wet deposition Molar Flux -'Wet deposition Molar Flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - } -# Wet deposition Radioactive Flux -'Wet deposition Radioactive Flux' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - } -# Column integrated mass concentration -'Column integrated mass concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - } -# Column integrated number concentration -'Column integrated number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - } -# Column integrated molar concentration -'Column integrated molar concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - } -# Column integrated radioactive concentration -'Column integrated radioactive concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - } -# Radioactive concentration -'Radioactive concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 210 ; - } -# Ready to fly pollen -'Ready to fly pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 220 ; - } -# Ready to fly allergen -'Ready to fly allergen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 221 ; - } -# Heatsum for pollen -'Heatsum for pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 222 ; - } -# Pollen left fraction -'Pollen left fraction' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 223 ; - } -# Pollen total per m2 -'Pollen total per m2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 224 ; - } -# Climate correction for total pollen -'Climate correction for total pollen' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 225 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def b/eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def deleted file mode 100644 index 937b05f8..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/efkl/paramId.def +++ /dev/null @@ -1,157 +0,0 @@ -# Automatically generted. Do not edit. -# NWP latent heat net flux -'86000193' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -# NWP sensible heat net flux -'86000194' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -# NWP Boundary layer height -'86003192' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -# MO_length_inv -'86007192' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } -# mixing velocity scale "Kz_1m" at surface -'86007193' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } -# Convective velocity scale -'86007194' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - } -# Temperature scale T_star -'86007195' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } -# Humidity scale h_star -'86007196' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 196 ; - } -# Scavenging coefficient -'86007197' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 197 ; - } -# Dry deposition number flux -'86020192' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - } -# Dry deposition molar flux -'86020193' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - } -# Dry deposition radioactive flux -'86020194' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - } -# Wet deposition Number Flux -'86020197' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - } -# Wet deposition Molar Flux -'86020198' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - } -# Wet deposition Radioactive Flux -'86020199' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - } -# Column integrated mass concentration -'86020201' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - } -# Column integrated number concentration -'86020202' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - } -# Column integrated molar concentration -'86020203' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - } -# Column integrated radioactive concentration -'86020204' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - } -# Radioactive concentration -'86020210' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 210 ; - } -# Ready to fly pollen -'86020220' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 220 ; - } -# Ready to fly allergen -'86020221' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 221 ; - } -# Heatsum for pollen -'86020222' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 222 ; - } -# Pollen left fraction -'86020223' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 223 ; - } -# Pollen total per m2 -'86020224' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 224 ; - } -# Climate correction for total pollen -'86020225' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 225 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def b/eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def deleted file mode 100644 index f78fcf88..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/efkl/shortName.def +++ /dev/null @@ -1,157 +0,0 @@ -# Automatically generted. Do not edit. -# NWP latent heat net flux -'nwplhf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -# NWP sensible heat net flux -'nwpshf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -# NWP Boundary layer height -'nwp_blh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -# MO_length_inv -'MO_len_inv' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } -# mixing velocity scale "Kz_1m" at surface -'Kz_1m' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } -# Convective velocity scale -'cnv_vel_scale' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - } -# Temperature scale T_star -'turb_temp' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } -# Humidity scale h_star -'humid_scale' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 196 ; - } -# Scavenging coefficient -'scav_coef' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 197 ; - } -# Dry deposition number flux -'ddnumf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - } -# Dry deposition molar flux -'ddmolf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - } -# Dry deposition radioactive flux -'ddradf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - } -# Wet deposition Number Flux -'wdnumf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - } -# Wet deposition Molar Flux -'wdmolf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - } -# Wet deposition Radioactive Flux -'wdradf' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - } -# Column integrated mass concentration -'cimassconc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - } -# Column integrated number concentration -'cinumconc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - } -# Column integrated molar concentration -'cimolconc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - } -# Column integrated radioactive concentration -'ciradconc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - } -# Radioactive concentration -'radconc' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 210 ; - } -# Ready to fly pollen -'poll_rdy2fly' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 220 ; - } -# Ready to fly allergen -'alrg_rdy2fly' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 221 ; - } -# Heatsum for pollen -'heatsum' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 222 ; - } -# Pollen left fraction -'poll_left' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 223 ; - } -# Pollen total per m2 -'poll_tot_m2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 224 ; - } -# Climate correction for total pollen -'pollen_corr' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 225 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/efkl/units.def b/eccodes/definitions.save/grib2/localConcepts/efkl/units.def deleted file mode 100644 index 1501987f..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/efkl/units.def +++ /dev/null @@ -1,157 +0,0 @@ -# Automatically generted. Do not edit. -# NWP latent heat net flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -# NWP sensible heat net flux -'W m-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -# NWP Boundary layer height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -# MO_length_inv -'m-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } -# mixing velocity scale "Kz_1m" at surface -'m s-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } -# Convective velocity scale -'m s-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - } -# Temperature scale T_star -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } -# Humidity scale h_star -'kg m-3' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 196 ; - } -# Scavenging coefficient -'s-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 197 ; - } -# Dry deposition number flux -'m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 192 ; - } -# Dry deposition molar flux -'mol m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 193 ; - } -# Dry deposition radioactive flux -'bq m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 194 ; - } -# Wet deposition Number Flux -'m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 197 ; - } -# Wet deposition Molar Flux -'mol m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 198 ; - } -# Wet deposition Radioactive Flux -'bq m-2 s-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 199 ; - } -# Column integrated mass concentration -'kg m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 201 ; - } -# Column integrated number concentration -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 202 ; - } -# Column integrated molar concentration -'mol m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 203 ; - } -# Column integrated radioactive concentration -'bq m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 204 ; - } -# Radioactive concentration -'bq m-3' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 210 ; - } -# Ready to fly pollen -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 220 ; - } -# Ready to fly allergen -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 221 ; - } -# Heatsum for pollen -'degreeday' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 222 ; - } -# Pollen left fraction -'' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 223 ; - } -# Pollen total per m2 -'m-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 224 ; - } -# Climate correction for total pollen -'' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 225 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def b/eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def deleted file mode 100644 index 99a9945e..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/egrr/cfVarName.def +++ /dev/null @@ -1,84 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#2 metre temperature -'t2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre dewpoint temperature -'d2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Surface air relative humidity -'r2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre specific humidity -'sh2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/egrr/name.def b/eccodes/definitions.save/grib2/localConcepts/egrr/name.def deleted file mode 100644 index f1ce0156..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/egrr/name.def +++ /dev/null @@ -1,84 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#2 metre temperature -'2 metre temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Surface air relative humidity -'Surface air relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre specific humidity -'2 metre specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def b/eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def deleted file mode 100644 index 561ef862..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/egrr/paramId.def +++ /dev/null @@ -1,84 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'201' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 3 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#2 metre temperature -'167' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Surface air relative humidity -'260242' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre specific humidity -'174096' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def b/eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def deleted file mode 100644 index 3a824a00..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/egrr/shortName.def +++ /dev/null @@ -1,84 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#2 metre temperature -'2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Surface air relative humidity -'2r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#2 metre specific humidity -'2sh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/egrr/units.def b/eccodes/definitions.save/grib2/localConcepts/egrr/units.def deleted file mode 100644 index 8e1c3f3a..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/egrr/units.def +++ /dev/null @@ -1,84 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#2 metre temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } -#Surface air relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/ekmi/name.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/name.def deleted file mode 100644 index 5a1dc47d..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ekmi/name.def +++ /dev/null @@ -1,17 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Convective inhibition -'Convective inhibition' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective available potential energy -'Convective available potential energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def deleted file mode 100644 index ea6f83d5..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ekmi/paramId.def +++ /dev/null @@ -1,17 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Convective inhibition -'94001224' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective available potential energy -'94001225' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def deleted file mode 100644 index 793c3a4d..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ekmi/shortName.def +++ /dev/null @@ -1,17 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Convective inhibition -'cin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective available potential energy -'cape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/ekmi/units.def b/eccodes/definitions.save/grib2/localConcepts/ekmi/units.def deleted file mode 100644 index e927afa7..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/ekmi/units.def +++ /dev/null @@ -1,17 +0,0 @@ -#Provided by Henrik Feddersen (Danish Meteorological Institute) -#Convective inhibition -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Convective available potential energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/eswi/name.def b/eccodes/definitions.save/grib2/localConcepts/eswi/name.def deleted file mode 100644 index 2eb5df99..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/eswi/name.def +++ /dev/null @@ -1,3000 +0,0 @@ -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pressure tendency' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Potential vorticity -'Potential vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geopotential -'Geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geopotential height -'Geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Geometric height -'Geometric height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'Standard deviation of height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Total ozone -'Total ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Temperature -'Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Virtual temperature -'Virtual temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Potential temperature -'Potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'Dew point temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Dew point depression (or deficit) -'Dew point depression (or deficit)' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Lapse rate -'Lapse rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar Spectra (1) -'Radar Spectra (1)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar Spectra (2) -'Radar Spectra (2)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar Spectra (3) -'Radar Spectra (3)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'Temperature anomaly' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pressure anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave Spectra (1) -'Wave Spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave Spectra (2) -'Wave Spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave Spectra (3) -'Wave Spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'Wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#u-component of wind -'u-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#v-component of wind -'v-component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Stream function -'Stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'Velocity potential' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'Montgomery stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coord. vertical velocity -'Sigma coord. vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Pressure Vertical velocity -'Pressure Vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Geometric Vertical velocity -'Geometric Vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Absolute vorticity -'Absolute vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'Absolute divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Relative vorticity -'Relative vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Relative divergence -'Relative divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#Direction of current -'Direction of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of current -'Speed of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#u-component of current -'u-component of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#v-component of current -'v-component of current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'Specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Humidity mixing ratio -'Humidity mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Precipitable water -'Precipitable water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Vapour pressure -'Vapour pressure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Saturation deficit -'Saturation deficit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Evaporation -'Evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Cloud Ice -'Cloud Ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Precipitation rate -'Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total precipitation -'Total precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Large scale precipitation -'Large scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Snowfall rate water equivalent -'Snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Water equiv. of accum. snow depth -'Water equiv. of accum. snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Snow depth -'Snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'Main thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'Convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'Medium cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud water -'Cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Convective snow -'Convective snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'Large scale snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Water Temperature -'Water Temperature' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'Land-sea mask (1=land 0=sea) (see note)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Deviation of sea level from mean -'Deviation of sea level from mean' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Surface roughness -'Surface roughness' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Albedo -'Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Soil temperature -'Soil temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil moisture content -'Soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Vegetation -'Vegetation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Salinity -'Salinity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'Density' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Water run off -'Water run off' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'Ice cover (ice=1 no ice=0)(see note)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Ice thickness -'Ice thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Direction of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'Speed of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#u-component of ice drift -'u-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#v-component of ice drift -'v-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'Ice growth rate' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'Ice divergence' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'Snow melt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'Direction of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Direction of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'Primary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'Primary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'Secondary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Net short wave radiation flux (surface) -'Net short wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (surface) -'Net long wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net short wave radiation flux (top of atmos.) -'Net short wave radiation flux (top of atmos.)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Net long wave radiation flux (top of atmos.) -'Net long wave radiation flux (top of atmos.)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Long wave radiation flux -'Long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - } -#Short wave radiation flux -'Short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Global radiation flux -'Global radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Brightness temperature -'Brightness temperature' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Latent heat net flux -'Latent heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'Sensible heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Momentum flux, u component -'Momentum flux, u component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'Momentum flux, v component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Wind mixing energy -'Wind mixing energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#Maximum wind -'Maximum wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Integrated cloud condensate -'Integrated cloud condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Snow depth, cold snow -'Snow depth, cold snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Slope fraction -'Slope fraction' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Snow albedo -'Snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Snow density -'Snow density' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Soil type -'Soil type' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Convective inhibation -'Convective inhibation' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } -#CAPE -'CAPE' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } -#Friction velocity -'Friction velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Wind gust -'Wind gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -# SO2/SO2 -'SO2/SO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 8 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'SO4(2-)/SO4(2-) (sulphate)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 22 ; - } -# DMS/DMS -'DMS/DMS' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10500 ; - } -# NH42SO4/(NH4)2SO4 -'NH42SO4/(NH4)2SO4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63006 ; - } -# SULFATE/SULFATE -'SULFATE/SULFATE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63008 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'SOX_S/All oxidised sulphur compounds (as sulphur)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63005 ; - } -# NO -'NO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 11 ; - } -# NO2/NO2 -'NO2/NO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 5 ; - } -# HNO3/HNO3 -'HNO3/HNO3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 17 ; - } -# NH4NO3/NH4NO3 -'NH4NO3/NH4NO3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63007 ; - } -# NITRATE/NITRATE -'NITRATE/NITRATE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63009 ; - } -# NOX/NOX as NO2 -'NOX/NOX as NO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63001 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'NOX_N/NO2+NO (NOx) as nitrogen' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60003 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'NOY_N/All oxidised N-compounds (as nitrogen)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60004 ; - } -# NH3/NH3 -'NH3/NH3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 9 ; - } -# NH4(+1)/NH4 -'NH4(+1)/NH4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'NHX_N/All reduced nitrogen (as nitrogen)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63004 ; - } -# O3 -'O3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 0 ; - } -# H2O2/H2O2 -'H2O2/H2O2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 19 ; - } -# OH/OH -'OH/OH' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10000 ; - } -# CO/CO -'CO/CO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 4 ; - } -# CO2/CO2 -'CO2/CO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 3 ; - } -# CH4/CH4 -'CH4/CH4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 2 ; - } -# OC/Organic carbon (particles) -'OC/Organic carbon (particles)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63013 ; - } -# EC/Elementary carbon (particles) -'EC/Elementary carbon (particles)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63012 ; - } -# Rn222/Rn222 -'Rn222/Rn222' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 23 ; - } -# NACL -'NACL' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62008 ; - } -# PMFINE -'PMFINE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PMCOARSE/Coarse particles -'PMCOARSE/Coarse particles' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# DUST/Dust (particles) -'DUST/Dust (particles)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62001 ; - } -# PNUMBER/Number concentration -'PNUMBER/Number concentration' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63017 ; - } -# PMASS/Particle mass conc -'PMASS/Particle mass conc' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63018 ; - } -# PM10/PM10 particles -'PM10/PM10 particles' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# PSOX/Particulate sulfate -'PSOX/Particulate sulfate' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63014 ; - } -# PNOX/Particulate nitrate -'PNOX/Particulate nitrate' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63015 ; - } -# PNHX/Particulate ammonium -'PNHX/Particulate ammonium' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63016 ; - } -# SOA/Secondary Organic Aerosol -'SOA/Secondary Organic Aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62012 ; - } -# PM2.5/PM2.5 particles -'PM2.5/PM2.5 particles' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PM/Total particulate matter -'PM/Total particulate matter' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62000 ; - } -# VIS/Visibility [m] -'VIS/Visibility [m]' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Wind gusts -'Wind gusts' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'Medium cloud cove' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud base of significant clouds -'Cloud base of significant clouds' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top of significant clouds -'Cloud top of significant clouds' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Heat index -'Heat index' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'Wind chill factor' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Snow phase change heat flux -'Snow phase change heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Skin temperature -'Skin temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } -#Snow age -'Snow age' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'Absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'Precipitation type' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'Integrated liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'Condensate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'Cloud mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'Ice water mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'Rain mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'Snow mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'Horizontal moisture convergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Precipitable water category -'Precipitable water category' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'Hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel -'Graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'Categorical rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'Categorical freezing rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'Categorical ice pellets' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'Categorical snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'Convective precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'Horizontal moisture divergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'Percent frozen precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'Potential evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'Snow cover' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability thunderstorm -'Probability thunderstorm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'Convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'Medium cloud cove' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#cloud mask -'cloud mask' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Wind gust -'Wind gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Precipitation intensity total -'Precipitation intensity total' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Precipitation intensity snow -'Precipitation intensity snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'Upward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'Net short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'Downward UV radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'UV index (under clear sky)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'UV index' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'Net long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud amount -'Cloud amount' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'Cloud type' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'Thunderstorm maximum tops' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'Thunderstorm coverage' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'Cloud base' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'Cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'Ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'Non-convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'Cloud work function' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Convective cloud efficiency' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'Total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'Total column-integrated cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'Total column-integrated cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'Total column-integrated condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Ice fraction of total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Cloud ice mixing ratio -'Cloud ice mixing ratio' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Sunshine' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulunimbus (CB) -'Horizontal extent of cumulunimbus (CB)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#Fraction of cloud cover -'Fraction of cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#Sunshine duration -'Sunshine duration' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - } -#K index -'K index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'KO index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'Total totals index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Sweat index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'Storm relative helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Energy helicity index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'Best (4-layer) lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Richardson number -'Richardson number' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 12 ; - } -#Aerosol type -'Aerosol type' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Ozone mixing ratio -'Ozone mixing ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Total column integrated ozone -'Total column integrated ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'Base spectrum width' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'Base radial velocity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically integrated liquid -'Vertically integrated liquid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'Layer-maximum base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation (radar) -'Precipitation (radar)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Equivalent radar reflectivity factor for rain -'Equivalent radar reflectivity factor for rain' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 0 ; - } -#Equivalent radar reflectivity factor for snow -'Equivalent radar reflectivity factor for snow' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 1 ; - } -#Equivalent radar reflectivity factor for paramterized convection -'Equivalent radar reflectivity factor for paramterized convection' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 2 ; - } -#Echo top (radar) -'Echo top (radar)' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 3 ; - } -#Reflectivity (radar) -'Reflectivity (radar)' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 4 ; - } -#Composite reflectivity (radar) -'Composite reflectivity (radar)' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } -#Icing top -'Icing top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'Icing base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'Turbulence top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'Turbulence base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'Turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Planetary boundary-layer regime -'Planetary boundary-layer regime' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'Contrail intensity' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'Contrail engine type' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'Contrail top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'Contrail base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Snow free albedo -'Snow free albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'In-cloud turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'Clear air turbulence (CAT)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability -'Supercooled large droplet probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'Arbitrary text string' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in section1) (meteorology) -'Seconds prior to initial reference time (defined in section1) (meteorology)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Current east -'Current east' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Current north -'Current north' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Turbulent Kintetic Energy -'Turbulent Kintetic Energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Potential temperature -'Potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'Wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Stream function -'Stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'Velocity potential' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'Montgomery stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Direction of horizontal current -'Direction of horizontal current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of horizontal current -'Speed of horizontal current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#U-comp of Current -'U-comp of Current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-comp of Current -'V-comp of Current' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'Specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Snow Depth -'Snow Depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'Main thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Water temperature -'Water temperature' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Density -'Density' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice Cover -'Ice Cover' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Total ice thickness -'Total ice thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Direction of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'Speed of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Ice growth rate -'Ice growth rate' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Ice divergence -'Ice divergence' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Significant wave height -'Significant wave height' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of Wind Waves -'Direction of Wind Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Sign Height Wind Waves -'Sign Height Wind Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean Period Wind Waves -'Mean Period Wind Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of Swell Waves -'Direction of Swell Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Sign Height Swell Waves -'Sign Height Swell Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean Period Swell Waves -'Mean Period Swell Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'Primary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'Primary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'Secondary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Mean period of waves -'Mean period of waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean direction of Waves -'Mean direction of Waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Flash flood guidance -'Flash flood guidance' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff -'Flash flood runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely-sensed snow cover -'Remotely-sensed snow cover' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow-covered terrain -'Elevation of snow-covered terrain' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent per cent of normal -'Snow water equivalent per cent of normal' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'Baseflow-groundwater runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'Storm surface runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional per cent precipitation amount fractile for an overall period -'Conditional per cent precipitation amount fractile for an overall period' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Per cent precipitation in a sub-period of an overall period -'Per cent precipitation in a sub-period of an overall period' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability if 0.01 inch of precipitation -'Probability if 0.01 inch of precipitation' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Seconds prior to initial reference time (defined in section1) (oceonography) -'Seconds prior to initial reference time (defined in section1) (oceonography)' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Meridional overturning stream function -'Meridional overturning stream function' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Turbulent Kinetic Energy -'Turbulent Kinetic Energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#C2H6/Ethane -'C2H6/Ethane' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10008 ; - } -#NC4H10/N-butane -'NC4H10/N-butane' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10016 ; - } -#C2H4/Ethene -'C2H4/Ethene' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10009 ; - } -#C3H6/Propene -'C3H6/Propene' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10015 ; - } -#OXYLENE/O-xylene -'OXYLENE/O-xylene' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10023 ; - } -#HCHO/Formalydehyde -'HCHO/Formalydehyde' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 7 ; - } -#C5H8/Isoprene -'C5H8/Isoprene' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10017 ; - } -#C2H5OH/Ethanol -'C2H5OH/Ethanol' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10011 ; - } -#CH3OH/Metanol -'CH3OH/Metanol' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10004 ; - } -#NMVOC_C/Total NMVOC as C -'NMVOC_C/Total NMVOC as C' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60013 ; - } -#PAN/Peroxy acetyl nitrate -'PAN/Peroxy acetyl nitrate' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63011 ; - } -#NO3/Nitrate radical -'NO3/Nitrate radical' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 13 ; - } -#N2O5/Dinitrogen pentoxide -'N2O5/Dinitrogen pentoxide' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 15 ; - } -#HO2NO2/HO2NO2 -'HO2NO2/HO2NO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 18 ; - } -#HONO -'HONO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 16 ; - } -#HO2/Hydroperhydroxyl radical -'HO2/Hydroperhydroxyl radical' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 14 ; - } -#H2/Molecular hydrogen -'H2/Molecular hydrogen' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 20 ; - } -#O/Oxygen atomic ground state (3P) -'O/Oxygen atomic ground state (3P)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 12 ; - } -#CH3O2/Methyl peroxy radical -'CH3O2/Methyl peroxy radical' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10001 ; - } -#CH3O2H/Methyl hydroperoxide -'CH3O2H/Methyl hydroperoxide' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10002 ; - } -#C2H5OOH/Ethyl hydroperoxide -'C2H5OOH/Ethyl hydroperoxide' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10012 ; - } -#BENZENE -'BENZENE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10021 ; - } -#TOLUENE -'TOLUENE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10022 ; - } -#HCN/Vaetecyanid -'HCN/Vaetecyanid' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10006 ; - } -#Volcanic ash -'Volcanic ash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Aerosol optical thickness at 0.635 micro-m -'Aerosol optical thickness at 0.635 micro-m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 micro-m -'Aerosol optical thickness at 0.810 micro-m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 micro-m -'Aerosol optical thickness at 1.640 micro-m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'Angstrom coefficient' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rain factor -'Rain factor' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Total water precipitation -'Total water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'Total snow precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water) -'Total column water (Vertically integrated total water)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Large scale precipitation rate -'Large scale precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'Total snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'Convective snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'Large scale snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow evaporation -'Snow evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 62 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'Rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'Snow precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'Freezing rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'Ice pellets precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Specific cloud liquid water content -'Specific cloud liquid water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Specific rain water content -'Specific rain water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'Specific snow water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#u-component of wind (gust) -'u-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'v-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'Vertical speed shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'Horizontal momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#u-component storm motion -'u-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#v-component storm motion -'v-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Drag coefficient' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Eta coordinate vertical velocity -'Eta coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Altimeter setting -'Altimeter setting' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'Thickness' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'Pressure altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'Density altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5-wave geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'Planetary boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-gridscale orography -'Standard deviation of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Natural logarithm of pressure in Pa -'Natural logarithm of pressure in Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Specific humidity -'Specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Precipitable water -'Precipitable water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Snow depth -'Snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Evapotranspiration -'Evapotranspiration' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'Model terrain height' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'Land use' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Moisture availability -'Moisture availability' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'Exchange coefficient' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'Plant canopy surface water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'Blackadar mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'Canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'Minimal stomatal resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Solar parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Temperature parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Humidity parameter in canopy conductance -'Humidity parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Soil moisture parameter in canopy conductance -'Soil moisture parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Soil moisture -'Soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Column-integrated soil water -'Column-integrated soil water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'Heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Wilting point -'Wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } -#Volumetric wilting point -'Volumetric wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Number of soil layers in root zone -'Number of soil layers in root zone' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'Volumetric transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'Volumetric direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'Volumetric saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'Saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Scaled radiance -'Scaled radiance' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Scaled albedo' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Scaled brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Scaled precipitable water' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Scaled lifted index' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Scaled cloud top pressure' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Scaled skin temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Cloud mask' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Pixel scene type' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Fire detection indicator' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Estimated precipitation -'Estimated precipitation' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instananeous rain rate -'Instananeous rain rate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'Cloud top height' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Cloud top height quality indicator' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'Estimated u component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'Estimated v component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixel used -'Number of pixel used' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Solar zenith angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Relative azimuth angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'Reflectance in 0.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'Reflectance in 0.8 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'Reflectance in 1.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'Reflectance in 3.9 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'Atmospheric divergence' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Wind speed (space) -'Wind speed (space)' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def b/eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def deleted file mode 100644 index b801e576..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/eswi/paramId.def +++ /dev/null @@ -1,3000 +0,0 @@ -#Pressure -'82001001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'82001002' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Pressure tendency -'82001003' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Potential vorticity -'82001004' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#ICAO Standard Atmosphere reference height -'82001005' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geopotential -'82001006' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geopotential height -'82001007' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Geometric height -'82001008' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'82001009' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Total ozone -'82001010' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Temperature -'82001011' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Virtual temperature -'82001012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Potential temperature -'82001013' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pseudo-adiabatic potential temperature -'82001014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Maximum temperature -'82001015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'82001016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'82001017' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Dew point depression (or deficit) -'82001018' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Lapse rate -'82001019' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'82001020' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar Spectra (1) -'82001021' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar Spectra (2) -'82001022' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar Spectra (3) -'82001023' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'82001024' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'82001025' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'82001026' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'82001027' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave Spectra (1) -'82001028' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave Spectra (2) -'82001029' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave Spectra (3) -'82001030' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'82001031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'82001032' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#u-component of wind -'82001033' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#v-component of wind -'82001034' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Stream function -'82001035' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'82001036' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'82001037' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coord. vertical velocity -'82001038' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Pressure Vertical velocity -'82001039' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Geometric Vertical velocity -'82001040' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Absolute vorticity -'82001041' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'82001042' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Relative vorticity -'82001043' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Relative divergence -'82001044' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Vertical u-component shear -'82001045' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'82001046' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#Direction of current -'82001047' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of current -'82001048' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#u-component of current -'82001049' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#v-component of current -'82001050' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'82001051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Relative humidity -'82001052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Humidity mixing ratio -'82001053' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Precipitable water -'82001054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Vapour pressure -'82001055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Saturation deficit -'82001056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Evaporation -'82001057' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Cloud Ice -'82001058' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Precipitation rate -'82001059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'82001060' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total precipitation -'82001061' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Large scale precipitation -'82001062' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Convective precipitation -'82001063' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Snowfall rate water equivalent -'82001064' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Water equiv. of accum. snow depth -'82001065' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Snow depth -'82001066' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'82001067' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'82001068' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'82001069' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'82001070' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total cloud cover -'82001071' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'82001072' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'82001073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'82001074' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'82001075' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud water -'82001076' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Best lifted index (to 500 hPa) -'82001077' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Convective snow -'82001078' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'82001079' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Water Temperature -'82001080' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'82001081' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Deviation of sea level from mean -'82001082' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Surface roughness -'82001083' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Albedo -'82001084' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Soil temperature -'82001085' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil moisture content -'82001086' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Vegetation -'82001087' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Salinity -'82001088' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'82001089' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Water run off -'82001090' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'82001091' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Ice thickness -'82001092' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'82001093' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'82001094' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#u-component of ice drift -'82001095' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#v-component of ice drift -'82001096' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'82001097' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'82001098' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'82001099' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of combined wind waves and swell -'82001100' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'82001101' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'82001102' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'82001103' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'82001104' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'82001105' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'82001106' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'82001107' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'82001108' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'82001109' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'82001110' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Net short wave radiation flux (surface) -'82001111' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (surface) -'82001112' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net short wave radiation flux (top of atmos.) -'82001113' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Net long wave radiation flux (top of atmos.) -'82001114' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Long wave radiation flux -'82001115' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - } -#Short wave radiation flux -'82001116' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Global radiation flux -'82001117' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Brightness temperature -'82001118' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#Radiance (with respect to wave number) -'82001119' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'82001120' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Latent heat net flux -'82001121' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'82001122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Boundary layer dissipation -'82001123' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Momentum flux, u component -'82001124' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'82001125' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Wind mixing energy -'82001126' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#Maximum wind -'82001135' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Integrated cloud condensate -'82001137' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Snow depth, cold snow -'82001138' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Slope fraction -'82001160' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Snow albedo -'82001190' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Snow density -'82001191' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Soil type -'82001195' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Turbulent Kinetic Energy -'82001200' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Convective inhibation -'82001224' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } -#CAPE -'82001225' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } -#Friction velocity -'82001227' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Wind gust -'82001228' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -# SO2/SO2 -'82128001' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 8 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'82128002' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 22 ; - } -# DMS/DMS -'82128003' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10500 ; - } -# NH42SO4/(NH4)2SO4 -'82128008' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63006 ; - } -# SULFATE/SULFATE -'82128009' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63008 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'82128029' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63005 ; - } -# NO -'82128030' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 11 ; - } -# NO2/NO2 -'82128031' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 5 ; - } -# HNO3/HNO3 -'82128032' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 17 ; - } -# NH4NO3/NH4NO3 -'82128034' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63007 ; - } -# NITRATE/NITRATE -'82128035' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63009 ; - } -# NOX/NOX as NO2 -'82128044' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63001 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'82128047' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60003 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'82128048' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60004 ; - } -# NH3/NH3 -'82128050' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 9 ; - } -# NH4(+1)/NH4 -'82128051' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'82128059' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63004 ; - } -# O3 -'82128060' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 0 ; - } -# H2O2/H2O2 -'82128061' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 19 ; - } -# OH/OH -'82128062' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10000 ; - } -# CO/CO -'82128071' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 4 ; - } -# CO2/CO2 -'82128072' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 3 ; - } -# CH4/CH4 -'82128073' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 2 ; - } -# OC/Organic carbon (particles) -'82128074' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63013 ; - } -# EC/Elementary carbon (particles) -'82128075' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63012 ; - } -# Rn222/Rn222 -'82128093' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 23 ; - } -# NACL -'82128120' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62008 ; - } -# PMFINE -'82128160' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PMCOARSE/Coarse particles -'82128161' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# DUST/Dust (particles) -'82128162' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62001 ; - } -# PNUMBER/Number concentration -'82128163' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63017 ; - } -# PMASS/Particle mass conc -'82128166' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63018 ; - } -# PM10/PM10 particles -'82128167' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# PSOX/Particulate sulfate -'82128168' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63014 ; - } -# PNOX/Particulate nitrate -'82128169' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63015 ; - } -# PNHX/Particulate ammonium -'82128170' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63016 ; - } -# SOA/Secondary Organic Aerosol -'82128173' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62012 ; - } -# PM2.5/PM2.5 particles -'82128174' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PM/Total particulate matter -'82128175' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62000 ; - } -# VIS/Visibility [m] -'82128215' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'82129001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Maximum temperature -'82129015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'82129016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Visibility -'82129020' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Wind gusts -'82129032' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Relative humidity -'82129052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total cloud cover -'82129071' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'82129073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'82129074' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'82129075' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud base of significant clouds -'82129078' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top of significant clouds -'82129079' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Virtual potential temperature -'82129128' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Heat index -'82129129' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'82129130' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Snow phase change heat flux -'82129131' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Skin temperature -'82129132' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } -#Snow age -'82129133' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'82129134' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'82129135' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'82129136' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'82129137' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'82129138' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'82129139' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'82129140' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'82129141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'82129142' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Precipitable water category -'82129143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'82129144' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel -'82129150' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'82129151' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'82129152' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'82129153' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'82129154' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'82129155' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'82129156' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'82129157' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'82129158' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'82129159' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'82129160' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Pressure reduced to MSL -'82130001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Visibility -'82130020' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Relative humidity -'82130052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability thunderstorm -'82130060' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total cloud cover -'82130071' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'82130072' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'82130073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'82130074' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'82130075' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#cloud mask -'82130077' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Wind gust -'82130131' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Precipitation intensity total -'82130140' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Precipitation intensity snow -'82130141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Downward short-wave radiation flux -'82130150' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'82130151' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'82130152' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'82130153' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'82130154' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'82130155' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'82130156' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'82130157' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Downward long-wave radiation flux -'82130158' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'82130159' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'82130160' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'82130161' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud amount -'82130162' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'82130163' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'82130164' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'82130165' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'82130166' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'82130167' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'82130168' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'82130169' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'82130170' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'82130171' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'82130172' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'82130173' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'82130174' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'82130175' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'82130176' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud cover -'82130177' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Cloud ice mixing ratio -'82130178' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'82130179' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulunimbus (CB) -'82130180' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#Fraction of cloud cover -'82130181' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#Sunshine duration -'82130182' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - } -#K index -'82130183' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'82130184' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'82130185' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'82130186' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'82130187' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'82130188' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'82130189' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'82130190' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Richardson number -'82130191' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 12 ; - } -#Aerosol type -'82130192' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Ozone mixing ratio -'82130193' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Total column integrated ozone -'82130194' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'82130200' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'82130201' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'82130202' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically integrated liquid -'82130203' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'82130204' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation (radar) -'82130205' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Equivalent radar reflectivity factor for rain -'82130206' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 0 ; - } -#Equivalent radar reflectivity factor for snow -'82130207' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 1 ; - } -#Equivalent radar reflectivity factor for paramterized convection -'82130208' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 2 ; - } -#Echo top (radar) -'82130209' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 3 ; - } -#Reflectivity (radar) -'82130210' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 4 ; - } -#Composite reflectivity (radar) -'82130211' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } -#Icing top -'82130215' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'82130216' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'82130217' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'82130218' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'82130219' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'82130220' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Planetary boundary-layer regime -'82130221' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'82130222' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'82130223' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'82130224' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'82130225' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Snow free albedo -'82130226' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'82130227' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'82130228' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'82130229' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability -'82130230' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'82130235' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in section1) (meteorology) -'82130236' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Current east -'82131049' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Current north -'82131050' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Turbulent Kintetic Energy -'82131251' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Pressure reduced to MSL -'82133001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Potential temperature -'82133013' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wave spectra (1) -'82133028' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'82133029' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'82133030' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'82133031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'82133032' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Stream function -'82133035' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'82133036' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'82133037' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Direction of horizontal current -'82133047' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of horizontal current -'82133048' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#U-comp of Current -'82133049' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-comp of Current -'82133050' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'82133051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Snow Depth -'82133066' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'82133067' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'82133068' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'82133069' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'82133070' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total Cloud Cover -'82133071' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Water temperature -'82133080' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Density -'82133089' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice Cover -'82133091' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Total ice thickness -'82133092' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'82133093' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'82133094' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Ice growth rate -'82133097' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Ice divergence -'82133098' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Significant wave height -'82133100' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of Wind Waves -'82133101' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Sign Height Wind Waves -'82133102' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean Period Wind Waves -'82133103' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of Swell Waves -'82133104' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Sign Height Swell Waves -'82133105' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean Period Swell Waves -'82133106' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'82133107' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'82133108' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'82133109' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'82133110' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Mean period of waves -'82133111' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean direction of Waves -'82133112' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Flash flood guidance -'82133170' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff -'82133171' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely-sensed snow cover -'82133172' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow-covered terrain -'82133173' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent per cent of normal -'82133174' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'82133175' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'82133176' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional per cent precipitation amount fractile for an overall period -'82133180' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Per cent precipitation in a sub-period of an overall period -'82133181' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability if 0.01 inch of precipitation -'82133182' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Seconds prior to initial reference time (defined in section1) (oceonography) -'82133190' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Meridional overturning stream function -'82133191' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Turbulent Kinetic Energy -'82133200' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#C2H6/Ethane -'82134001' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10008 ; - } -#NC4H10/N-butane -'82134002' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10016 ; - } -#C2H4/Ethene -'82134003' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10009 ; - } -#C3H6/Propene -'82134004' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10015 ; - } -#OXYLENE/O-xylene -'82134005' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10023 ; - } -#HCHO/Formalydehyde -'82134006' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 7 ; - } -#C5H8/Isoprene -'82134011' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10017 ; - } -#C2H5OH/Ethanol -'82134012' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10011 ; - } -#CH3OH/Metanol -'82134013' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10004 ; - } -#NMVOC_C/Total NMVOC as C -'82134019' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60013 ; - } -#PAN/Peroxy acetyl nitrate -'82134021' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63011 ; - } -#NO3/Nitrate radical -'82134022' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 13 ; - } -#N2O5/Dinitrogen pentoxide -'82134023' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 15 ; - } -#HO2NO2/HO2NO2 -'82134026' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 18 ; - } -#HONO -'82134029' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 16 ; - } -#HO2/Hydroperhydroxyl radical -'82134031' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 14 ; - } -#H2/Molecular hydrogen -'82134032' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 20 ; - } -#O/Oxygen atomic ground state (3P) -'82134033' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 12 ; - } -#CH3O2/Methyl peroxy radical -'82134041' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10001 ; - } -#CH3O2H/Methyl hydroperoxide -'82134042' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10002 ; - } -#C2H5OOH/Ethyl hydroperoxide -'82134054' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10012 ; - } -#BENZENE -'82134070' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10021 ; - } -#TOLUENE -'82134092' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10022 ; - } -#HCN/Vaetecyanid -'82134111' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10006 ; - } -#Volcanic ash -'82134128' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Aerosol optical thickness at 0.635 micro-m -'82135180' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 micro-m -'82135181' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 micro-m -'82135182' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'82135183' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain fraction of total cloud water -'82135208' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rain factor -'82135209' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'82135210' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'82135211' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Total water precipitation -'82135212' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'82135213' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water) -'82135214' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Large scale precipitation rate -'82135215' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'82135216' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'82135217' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'82135218' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'82135219' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'82135220' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Snow depth water equivalent -'82135221' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow evaporation -'82135222' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 62 ; - } -#Total column integrated water vapour -'82135223' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'82135224' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'82135225' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'82135226' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'82135227' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Specific cloud liquid water content -'82135228' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'82135229' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Specific rain water content -'82135230' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'82135231' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#u-component of wind (gust) -'82135232' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'82135233' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'82135234' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'82135235' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#u-component storm motion -'82135236' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#v-component storm motion -'82135237' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'82135238' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Eta coordinate vertical velocity -'82135239' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Altimeter setting -'82135240' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'82135241' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'82135242' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'82135243' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'82135244' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'82135245' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'82135246' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'82135247' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'82135248' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-gridscale orography -'82135249' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Angle of sub-gridscale orography -'82135250' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } -#Slope of sub-gridscale orography -'82135251' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Gravity wave dissipation -'82135252' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Anisotropy of sub-gridscale orography -'82135253' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Natural logarithm of pressure in Pa -'82135254' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Pressure -'82136001' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Specific humidity -'82136051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Precipitable water -'82136054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Snow depth -'82136066' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Total cloud cover -'82136071' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'82136073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Evapotranspiration -'82136128' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'82136129' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'82136130' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'82136131' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Moisture availability -'82136132' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'82136133' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'82136134' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'82136135' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'82136136' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'82136137' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'82136138' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'82136139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Humidity parameter in canopy conductance -'82136140' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Soil moisture parameter in canopy conductance -'82136141' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Soil moisture -'82136142' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Column-integrated soil water -'82136143' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'82136144' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'82136145' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Wilting point -'82136146' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } -#Volumetric wilting point -'82136147' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Number of soil layers in root zone -'82136148' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Liquid volumetric soil moisture (non-frozen) -'82136149' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'82136150' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'82136151' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'82136152' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'82136153' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'82136154' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'82136155' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'82136156' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Scaled radiance -'82136180' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'82136181' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'82136182' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'82136183' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'82136184' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'82136185' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'82136186' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'82136187' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'82136188' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'82136189' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Estimated precipitation -'82136190' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instananeous rain rate -'82136191' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'82136192' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'82136193' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'82136194' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'82136195' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixel used -'82136196' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'82136197' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'82136198' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'82136199' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'82136200' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'82136201' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'82136202' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'82136210' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Wind speed (space) -'82136211' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def b/eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def deleted file mode 100644 index 20b83669..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/eswi/shortName.def +++ /dev/null @@ -1,3000 +0,0 @@ -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Pressure tendency -'ptend' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Potential vorticity -'pv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geopotential -'z' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geopotential height -'gh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Geometric height -'h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'hstdv' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Total ozone -'tozne' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Virtual temperature -'vtmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'dpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Dew point depression (or deficit) -'dptd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Lapse rate -'lapr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar Spectra (1) -'rdsp1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar Spectra (2) -'rdsp2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar Spectra (3) -'rdsp3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'ta' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'presa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave Spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave Spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave Spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#u-component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#v-component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coord. vertical velocity -'sgcvv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Pressure Vertical velocity -'omega' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Geometric Vertical velocity -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Absolute vorticity -'absv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'absd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Relative vorticity -'vo' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Relative divergence -'d' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Vertical u-component shear -'vusch' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'vvsch' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#Direction of current -'dirc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of current -'spc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#u-component of current -'ucurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#v-component of current -'vcurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Humidity mixing ratio -'mixr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Vapour pressure -'vp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Saturation deficit -'satd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Evaporation -'e' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Cloud Ice -'cice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Precipitation rate -'prate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Large scale precipitation -'lsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Convective precipitation -'acpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Snowfall rate water equivalent -'srweq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Water equiv. of accum. snow depth -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Snow depth -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total cloud cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'ccc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud water -'cwat' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Convective snow -'csf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'lsf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Water Temperature -'wtmp' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'lsm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Deviation of sea level from mean -'dslm' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Surface roughness -'sr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Albedo -'al' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Soil temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil moisture content -'ssw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Vegetation -'veg' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Salinity -'s' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Water run off -'watr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'icec' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#u-component of ice drift -'uice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#v-component of ice drift -'vice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'snom' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'mdww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'prwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Net short wave radiation flux (surface) -'nswrs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net short wave radiation flux (top of atmos.) -'nswrt' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Net long wave radiation flux (top of atmos.) -'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Long wave radiation flux -'lwavr' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - } -#Short wave radiation flux -'swavr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Global radiation flux -'grad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Brightness temperature -'btmp' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'swrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Latent heat net flux -'lhtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'shtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Boundary layer dissipation -'bld' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Momentum flux, u component -'uflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'vflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Wind mixing energy -'wmixe' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#Maximum wind -'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Integrated cloud condensate -'icc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Snow depth, cold snow -'sd_cold' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Slope fraction -'slfr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Snow albedo -'asn' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Snow density -'dsn' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Soil type -'slt' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Turbulent Kinetic Energy -'TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Convective inhibation -'ci' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } -#CAPE -'CAPE' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } -#Friction velocity -'vfr' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Wind gust -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -# SO2/SO2 -' SO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 8 ; - } -# SO4(2-)/SO4(2-) (sulphate) -' SO4(2-)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 22 ; - } -# DMS/DMS -' DMS' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10500 ; - } -# NH42SO4/(NH4)2SO4 -' NH42SO4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63006 ; - } -# SULFATE/SULFATE -' SFT' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63008 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -' SOX_S' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63005 ; - } -# NO -' NO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 11 ; - } -# NO2/NO2 -' NO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 5 ; - } -# HNO3/HNO3 -' HNO3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 17 ; - } -# NH4NO3/NH4NO3 -' NH4NO3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63007 ; - } -# NITRATE/NITRATE -' NITRATE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63009 ; - } -# NOX/NOX as NO2 -' NOX' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63001 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -' NOX_N' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60003 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -' NOY_N' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60004 ; - } -# NH3/NH3 -' NH3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 9 ; - } -# NH4(+1)/NH4 -' NH4(+1)' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -' NHX_N' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63004 ; - } -# O3 -' O3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 0 ; - } -# H2O2/H2O2 -' H2O2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 19 ; - } -# OH/OH -' OH' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10000 ; - } -# CO/CO -' CO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 4 ; - } -# CO2/CO2 -' CO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 3 ; - } -# CH4/CH4 -' CH4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 2 ; - } -# OC/Organic carbon (particles) -' OC' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63013 ; - } -# EC/Elementary carbon (particles) -' EC' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63012 ; - } -# Rn222/Rn222 -' Rn222' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 23 ; - } -# NACL -' NACL' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62008 ; - } -# PMFINE -' PMFINE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PMCOARSE/Coarse particles -' PMCOARSE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# DUST/Dust (particles) -' DUST' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62001 ; - } -# PNUMBER/Number concentration -' PNUMBER' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63017 ; - } -# PMASS/Particle mass conc -' PMASS' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63018 ; - } -# PM10/PM10 particles -' PM10' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# PSOX/Particulate sulfate -' PSOX' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63014 ; - } -# PNOX/Particulate nitrate -' PNOX' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63015 ; - } -# PNHX/Particulate ammonium -' PNHX' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63016 ; - } -# SOA/Secondary Organic Aerosol -' SOA' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62012 ; - } -# PM2.5/PM2.5 particles -' PM2.5' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PM/Total particulate matter -' PM' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62000 ; - } -# VIS/Visibility [m] -' VIS' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Wind gusts -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total cloud cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud base of significant clouds -'cbsig' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top of significant clouds -'ctsig' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Virtual potential temperature -'vpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Heat index -'hindx' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'wcf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Snow phase change heat flux -'snohf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Skin temperature -'skt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } -#Snow age -'snag' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'absh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'ptype' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'iliqw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'clwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'icmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'rwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'snmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Precipitable water category -'pwcat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel -'grle' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'crain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'cfrzr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'cicep' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'csnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'cprat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'cpofp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'pev' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'pevpr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'snowc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Pressure reduced to MSL -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability thunderstorm -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total cloud cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'ccc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#cloud mask -'cm' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Wind gust -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Precipitation intensity total -'pit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Precipitation intensity snow -'pis' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Downward short-wave radiation flux -'dswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'uswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'nswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'photar' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'nswrfcs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'dwuvr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'uviucs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'uvi' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'nlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'nlwrfcs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud amount -'cdca' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'tmaxt' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'thunc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'cdcb' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'ceil' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'cdlyr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'cwork' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'cuefi' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'tcolw' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'tcoli' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'tcolc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'fice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud cover -'cc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Cloud ice mixing ratio -'cdcimr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'suns' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulunimbus (CB) -'cbext' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#Fraction of cloud cover -'fracc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#Sunshine duration -'sund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - } -#K index -'kx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'kox' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'totalx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'sx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'hlcy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'ehlx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'4lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Richardson number -'ri' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 12 ; - } -#Aerosol type -'aerot' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Ozone mixing ratio -'o3mx' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Total column integrated ozone -'tcioz' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'bswid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'bref' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'brvel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically integrated liquid -'veril' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'lmaxbr' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation (radar) -'prrad' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Equivalent radar reflectivity factor for rain -'eqrrra' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 0 ; - } -#Equivalent radar reflectivity factor for snow -'eqrrsn' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 1 ; - } -#Equivalent radar reflectivity factor for paramterized convection -'eqrfpc' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 2 ; - } -#Echo top (radar) -'ectop_rad' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 3 ; - } -#Reflectivity (radar) -'refl_rad' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 4 ; - } -#Composite reflectivity (radar) -'corefl_rad' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } -#Icing top -'icit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'icib' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'ici' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'turbt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'turbb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'turb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Planetary boundary-layer regime -'pblr' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'conti' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'contet' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'contt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'contb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Snow free albedo -'snfalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'ici_prop' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'icturb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'cat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability -'scld_prob' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'text' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in section1) (meteorology) -'secpref' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Current east -'ecurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Current north -'ncurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Turbulent Kintetic Energy -'TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Pressure reduced to MSL -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Direction of horizontal current -'dirhcur' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of horizontal current -'spdhcur' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#U-comp of Current -'ucur' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-comp of Current -'vcur' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Snow Depth -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total Cloud Cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Water temperature -'wtmp' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice Cover -'icec' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Total ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Significant wave height -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of Wind Waves -'wvdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Sign Height Wind Waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean Period Wind Waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of Swell Waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Sign Height Swell Waves -'shps' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean Period Swell Waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'dirpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Mean period of waves -'mpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean direction of Waves -'wadir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Flash flood guidance -'ffldg' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff -'ffldro' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely-sensed snow cover -'rssc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow-covered terrain -'esct' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent per cent of normal -'swepon' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'bgrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'ssrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional per cent precipitation amount fractile for an overall period -'cppop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Per cent precipitation in a sub-period of an overall period -'pposp' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability if 0.01 inch of precipitation -'pop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Seconds prior to initial reference time (defined in section1) (oceonography) -'tsec' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Meridional overturning stream function -'mosf' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Turbulent Kinetic Energy -'TKE' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#C2H6/Ethane -'C2H6' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10008 ; - } -#NC4H10/N-butane -'NC4H10' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10016 ; - } -#C2H4/Ethene -'C2H4' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10009 ; - } -#C3H6/Propene -'C3H6' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10015 ; - } -#OXYLENE/O-xylene -'OXYLENE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10023 ; - } -#HCHO/Formalydehyde -'HCHO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 7 ; - } -#C5H8/Isoprene -'C5H8' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10017 ; - } -#C2H5OH/Ethanol -'C2H5OH' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10011 ; - } -#CH3OH/Metanol -'CH3OH' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10004 ; - } -#NMVOC_C/Total NMVOC as C -'NMVOC_C' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60013 ; - } -#PAN/Peroxy acetyl nitrate -'PAN' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63011 ; - } -#NO3/Nitrate radical -'NO3' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 13 ; - } -#N2O5/Dinitrogen pentoxide -'N2O5' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 15 ; - } -#HO2NO2/HO2NO2 -'HO2NO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 18 ; - } -#HONO -'HONO' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 16 ; - } -#HO2/Hydroperhydroxyl radical -'HO2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 14 ; - } -#H2/Molecular hydrogen -'H2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 20 ; - } -#O/Oxygen atomic ground state (3P) -'O' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 12 ; - } -#CH3O2/Methyl peroxy radical -'CH3O2' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10001 ; - } -#CH3O2H/Methyl hydroperoxide -'CH3O2H' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10002 ; - } -#C2H5OOH/Ethyl hydroperoxide -'C2H5OOH' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10012 ; - } -#BENZENE -'BENZENE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10021 ; - } -#TOLUENE -'TOLUENE' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10022 ; - } -#HCN/Vaetecyanid -'HCN' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10006 ; - } -#Volcanic ash -'va' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Aerosol optical thickness at 0.635 micro-m -'AOD-635' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 micro-m -'AOD-810' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 micro-m -'AOD-1640' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'Ang' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain fraction of total cloud water -'fra' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rain factor -'facra' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'tqr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tqs' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Total water precipitation -'twatp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'tsnowp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water) -'tcw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Large scale precipitation rate -'lsprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'prs_gsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'tsrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'csrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'lssrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Snow depth water equivalent -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow evaporation -'se' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 62 ; - } -#Total column integrated water vapour -'tciwv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'rprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'sprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'fprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'iprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Specific cloud liquid water content -'clwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'ciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Specific rain water content -'crwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'cswc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#u-component of wind (gust) -'ugust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'vgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'vwsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'mflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#u-component storm motion -'ustm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#v-component storm motion -'vstm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'cd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Eta coordinate vertical velocity -'eta' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Altimeter setting -'alts' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'thick' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'presalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'denalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5wavh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'u-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'v-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'hbpl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5wava' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-gridscale orography -'stdsgor' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Angle of sub-gridscale orography -'angsgor' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } -#Slope of sub-gridscale orography -'slsgor' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Gravity wave dissipation -'gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Natural logarithm of pressure in Pa -'nlpres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Snow depth -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Total cloud cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Evapotranspiration -'evapt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'z' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'lu' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Moisture availability -'mstav' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'sfexc' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'w_i' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'bmixl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'ccond' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'prs_min' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'rcs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'rct' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Humidity parameter in canopy conductance -'rcq' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Soil moisture parameter in canopy conductance -'rcsol' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Soil moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Column-integrated soil water -'w_cl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'hflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'vsw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Wilting point -'wilt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } -#Volumetric wilting point -'vwiltm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Number of soil layers in root zone -'rlyrs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Liquid volumetric soil moisture (non-frozen) -'liqvsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'voltso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'transo' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'voldec' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'direc' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'soilp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'vsosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'satosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Scaled radiance -'rad_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'al_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'btmp_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'pwat_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'li_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'pctp_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'skt_sc' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'cmsk' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'pst' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'fde' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Estimated precipitation -'estp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instananeous rain rate -'irrate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'ctoph' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'ctophqi' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'estu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'estv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixel used -'npixu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'solza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'raza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'rf06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'rf08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'rf16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'rf39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'atmdiv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Wind speed (space) -'ws_sp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/eswi/units.def b/eccodes/definitions.save/grib2/localConcepts/eswi/units.def deleted file mode 100644 index 57205211..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/eswi/units.def +++ /dev/null @@ -1,3000 +0,0 @@ -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pa/s' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Potential vorticity -'K*m2 / kg / s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geopotential -'m2/s2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Geopotential height -'Gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Geometric height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Total ozone -'Dobson' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Virtual temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Dew point depression (or deficit) -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Lapse rate -'K/m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar Spectra (1) -'-' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar Spectra (2) -'-' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar Spectra (3) -'-' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'Gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave Spectra (1) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave Spectra (2) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave Spectra (3) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'Deg. true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#u-component of wind -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#v-component of wind -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Stream function -'m2/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'m2/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'m2/s2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coord. vertical velocity -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Pressure Vertical velocity -'Pa/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Geometric Vertical velocity -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Absolute vorticity -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Relative vorticity -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Relative divergence -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Vertical u-component shear -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#Direction of current -'Deg. true' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of current -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#u-component of current -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#v-component of current -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Humidity mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Precipitable water -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Vapour pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Saturation deficit -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Evaporation -'m of water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Cloud Ice -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total precipitation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Large scale precipitation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Convective precipitation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Snowfall rate water equivalent -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Water equiv. of accum. snow depth -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Snow depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud water -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Best lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Convective snow -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Water Temperature -'K' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Land-sea mask (1=land 0=sea) (see note) -'Fraction' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Deviation of sea level from mean -'m' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Surface roughness -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil moisture content -'kg/m2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Vegetation -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Salinity -'kg/kg' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'kg/m3' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Water run off -'kg/m2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Ice cover (ice=1 no ice=0)(see note) -'Fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Ice thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'deg. true' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#u-component of ice drift -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#v-component of ice drift -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'1/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of combined wind waves and swell -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of wind waves -'deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Net short wave radiation flux (surface) -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (surface) -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net short wave radiation flux (top of atmos.) -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Net long wave radiation flux (top of atmos.) -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Long wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 2 ; - } -#Short wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Global radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Brightness temperature -'K' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#Radiance (with respect to wave number) -'W/m/sr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'W/m3/sr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Latent heat net flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Boundary layer dissipation -'W/m2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Momentum flux, u component -'N/m2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'N/m2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Wind mixing energy -'J' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#Maximum wind -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Integrated cloud condensate -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Snow depth, cold snow -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Slope fraction -'Fraction' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Snow albedo -'Fraction' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Snow density -'?' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Soil type -'code' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Turbulent Kinetic Energy -'J/kg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Convective inhibation -'J/kg' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - } -#CAPE -'J/kg' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } -#Friction velocity -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Wind gust -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -# SO2/SO2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 8 ; - } -# SO4(2-)/SO4(2-) (sulphate) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 22 ; - } -# DMS/DMS -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10500 ; - } -# NH42SO4/(NH4)2SO4 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63006 ; - } -# SULFATE/SULFATE -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63008 ; - } -# SOX_S/All oxidised sulphur compounds (as sulphur) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63005 ; - } -# NO -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 11 ; - } -# NO2/NO2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 5 ; - } -# HNO3/HNO3 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 17 ; - } -# NH4NO3/NH4NO3 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63007 ; - } -# NITRATE/NITRATE -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63009 ; - } -# NOX/NOX as NO2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63001 ; - } -# NOX_N/NO2+NO (NOx) as nitrogen -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60003 ; - } -# NOY_N/All oxidised N-compounds (as nitrogen) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60004 ; - } -# NH3/NH3 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 9 ; - } -# NH4(+1)/NH4 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10 ; - } -# NHX_N/All reduced nitrogen (as nitrogen) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63004 ; - } -# O3 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 0 ; - } -# H2O2/H2O2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 19 ; - } -# OH/OH -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10000 ; - } -# CO/CO -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 4 ; - } -# CO2/CO2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 3 ; - } -# CH4/CH4 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 2 ; - } -# OC/Organic carbon (particles) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63013 ; - } -# EC/Elementary carbon (particles) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63012 ; - } -# Rn222/Rn222 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 23 ; - } -# NACL -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62008 ; - } -# PMFINE -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PMCOARSE/Coarse particles -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# DUST/Dust (particles) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62001 ; - } -# PNUMBER/Number concentration -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63017 ; - } -# PMASS/Particle mass conc -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63018 ; - } -# PM10/PM10 particles -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40008 ; - } -# PSOX/Particulate sulfate -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63014 ; - } -# PNOX/Particulate nitrate -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63015 ; - } -# PNHX/Particulate ammonium -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63016 ; - } -# SOA/Secondary Organic Aerosol -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62012 ; - } -# PM2.5/PM2.5 particles -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 40009 ; - } -# PM/Total particulate matter -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 62000 ; - } -# VIS/Visibility [m] -' m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Wind gusts -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Total cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Cloud base of significant clouds -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top of significant clouds -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Virtual potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Heat index -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Snow phase change heat flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Skin temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - } -#Snow age -'day' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'kg/m3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'kg/kg/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Precipitable water category -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'code' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'kg/kg/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'W/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability thunderstorm -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Total cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Convective cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 2 ; - } -#Low cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cove -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#cloud mask -'fraction' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Wind gust -'M/S' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#Precipitation intensity total -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Precipitation intensity snow -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Downward short-wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'W/m2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Downward long-wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'W/m2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud amount -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'Code' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'Code' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'J/kg' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'kg/kg' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'kg/m2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Cloud ice mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulunimbus (CB) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#Fraction of cloud cover -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#Sunshine duration -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 33 ; - } -#K index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'J/kg' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Richardson number -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 12 ; - } -#Aerosol type -'Code' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Ozone mixing ratio -'kg/kg' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Total column integrated ozone -'Dobson' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'m/s' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'m/s' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically integrated liquid -'kg/m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation (radar) -'kg/m' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Equivalent radar reflectivity factor for rain -'mm6/m3' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 0 ; - } -#Equivalent radar reflectivity factor for snow -'mm6/m3' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 1 ; - } -#Equivalent radar reflectivity factor for paramterized convection -'mm6/m3' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 2 ; - } -#Echo top (radar) -'m' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 3 ; - } -#Reflectivity (radar) -'dB' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 4 ; - } -#Composite reflectivity (radar) -'dB' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 5 ; - } -#Icing top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Planetary boundary-layer regime -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Snow free albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'CCITTIA5' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in section1) (meteorology) -'s' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Current east -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Current north -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Turbulent Kintetic Energy -'J/kg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wave spectra (1) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'-' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind direction -'Deg true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Wind speed -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Stream function -'m2/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'m2/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Montgomery stream function -'m2/s2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Direction of horizontal current -'Deg true' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Speed of horizontal current -'m/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#U-comp of Current -'cm/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-comp of Current -'cm/s' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Specific humidity -'g/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Snow Depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Total Cloud Cover -'Fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Water temperature -'K' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Density -'kg/m3' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice Cover -'Fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Total ice thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Deg true' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Ice growth rate -'m/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Ice divergence -'1/s' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Significant wave height -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Direction of Wind Waves -'Deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Sign Height Wind Waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean Period Wind Waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of Swell Waves -'Deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Sign Height Swell Waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean Period Swell Waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Primary wave direction -'Deg true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave direction -'Deg true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Secondary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Mean period of waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean direction of Waves -'Deg. true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Flash flood guidance -'kg/m2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff -'kg/m2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely-sensed snow cover -'Code' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow-covered terrain -'Code' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent per cent of normal -'%' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'kg/m2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'kg/m2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional per cent precipitation amount fractile for an overall period -'kg/m2' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Per cent precipitation in a sub-period of an overall period -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability if 0.01 inch of precipitation -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Seconds prior to initial reference time (defined in section1) (oceonography) -'s' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Meridional overturning stream function -'m3/s' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Turbulent Kinetic Energy -'J/kg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#C2H6/Ethane -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10008 ; - } -#NC4H10/N-butane -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10016 ; - } -#C2H4/Ethene -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10009 ; - } -#C3H6/Propene -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10015 ; - } -#OXYLENE/O-xylene -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10023 ; - } -#HCHO/Formalydehyde -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 7 ; - } -#C5H8/Isoprene -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10017 ; - } -#C2H5OH/Ethanol -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10011 ; - } -#CH3OH/Metanol -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10004 ; - } -#NMVOC_C/Total NMVOC as C -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 60013 ; - } -#PAN/Peroxy acetyl nitrate -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 63011 ; - } -#NO3/Nitrate radical -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 13 ; - } -#N2O5/Dinitrogen pentoxide -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 15 ; - } -#HO2NO2/HO2NO2 -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 18 ; - } -#HONO -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 16 ; - } -#HO2/Hydroperhydroxyl radical -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 14 ; - } -#H2/Molecular hydrogen -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 20 ; - } -#O/Oxygen atomic ground state (3P) -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 12 ; - } -#CH3O2/Methyl peroxy radical -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10001 ; - } -#CH3O2H/Methyl hydroperoxide -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10002 ; - } -#C2H5OOH/Ethyl hydroperoxide -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10012 ; - } -#BENZENE -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10021 ; - } -#TOLUENE -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10022 ; - } -#HCN/Vaetecyanid -'-' = { - discipline = 0 ; - parameterCategory = 20 ; - atmosphericChemicalConsituentType = 10006 ; - } -#Volcanic ash -'Code' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Aerosol optical thickness at 0.635 micro-m -'1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 micro-m -'1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 micro-m -'1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain fraction of total cloud water -'Proportion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rain factor -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Total water precipitation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water) -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Large scale precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'m/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'m/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'m/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Snow depth water equivalent -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow evaporation -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 62 ; - } -#Total column integrated water vapour -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'kg/m2/s' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Specific cloud liquid water content -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Specific rain water content -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#u-component of wind (gust) -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'N/m2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#u-component storm motion -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#v-component storm motion -'m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Numeric' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Eta coordinate vertical velocity -'1/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Altimeter setting -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'N/m2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'N/m2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-gridscale orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Angle of sub-gridscale orography -'rad' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 21 ; - } -#Slope of sub-gridscale orography -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 22 ; - } -#Gravity wave dissipation -'W/m2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Anisotropy of sub-gridscale orography -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Natural logarithm of pressure in Pa -'Numeric' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Specific humidity -'kg/kg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Precipitable water -'kg/m2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Snow depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Total cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - } -#Low cloud cover -'fraction' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Evapotranspiration -'1/kg2/s' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'Code' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Moisture availability -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'kg/m2/s' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'kg/m2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'m/s' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'s/m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Humidity parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Soil moisture parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Soil moisture -'kg/m3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Column-integrated soil water -'kg/m2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'W/m2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'m3/m3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Wilting point -'kg/m3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - } -#Volumetric wilting point -'m3/m3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Number of soil layers in root zone -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Liquid volumetric soil moisture (non-frozen) -'m3/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'m3/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'kg/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'m3/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'kg/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'m3/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'kg/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'kg/m3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Scaled radiance -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Code' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Code' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Code' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Estimated precipitation -'kg/m2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instananeous rain rate -'kg/m2/s' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Code' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'m/s' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'m/s' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixel used -'Numeric' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'1/s' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Wind speed (space) -'m/s' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } diff --git a/eccodes/definitions.save/grib2/localConcepts/kwbc/name.def b/eccodes/definitions.save/grib2/localConcepts/kwbc/name.def deleted file mode 100644 index aa975903..00000000 --- a/eccodes/definitions.save/grib2/localConcepts/kwbc/name.def +++ /dev/null @@ -1,1651 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Convective available potential energy -'Convective available potential energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - } -#Snow phase change heat flux -'Snow phase change heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#Condensate -'Condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 195 ; - } -#Horizontal moisture convergence -'Horizontal moisture convergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 197 ; - } -#Categorical rain -'Categorical rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } -#Categorical freezing rain -'Categorical freezing rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } -#Categorical ice pellets -'Categorical ice pellets' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } -#Categorical snow -'Categorical snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } -#Convective precipitation rate -'Convective precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 196 ; - } -#Percent frozen precipitation -'Percent frozen precipitation' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 199 ; - } -#Potential evaporation rate -'Potential evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 200 ; - } -#Snow cover -'Snow cover' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 201 ; - } -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 202 ; - } -#Rime factor -'Rime factor' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 203 ; - } -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 204 ; - } -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 205 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'Water equivalent of accumulated snow depth (deprecated)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Vertical speed shear -'Vertical speed shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 192 ; - } -#Horizontal momentum flux -'Horizontal momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 193 ; - } -#U-component storm motion -'U-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 194 ; - } -#V-component storm motion -'V-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 195 ; - } -#Drag coefficient -'Drag coefficient' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 196 ; - } -#Frictional velocity -'Frictional velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 197 ; - } -#5-wave geopotential height -'5-wave geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Planetary boundary layer height -'Planetary boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - } -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 192 ; - } -#Upward short-wave radiation flux -'Upward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 193 ; - } -#UV index -'UV index ' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 196 ; - } -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 192 ; - } -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 193 ; - } -#Non-convective cloud cover -'Non-convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 192 ; - } -#Cloud work function -'Cloud work function' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 193 ; - } -#Convective cloud efficiency -'Convective cloud efficiency' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 194 ; - } -#Total column-integrated cloud water -'Total column-integrated cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 196 ; - } -#Total column-integrated cloud ice -'Total column-integrated cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 197 ; - } -#Total column-integrated condensate -'Total column-integrated condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 198 ; - } -#Ice fraction of total condensate -'Ice fraction of total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 199 ; - } -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 192 ; - } -#Best (4-layer) lifted index -'Best (4-layer) lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 193 ; - } -#Ozone mixing ratio -'Ozone mixing ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 192 ; - } -#Maximum snow albedo -'Maximum snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 192 ; - } -#Snow free albedo -'Snow free albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 193 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 194 ; - } -#Baseflow-groundwater runoff -'Baseflow-groundwater runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#Storm surface runoff -'Storm surface runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#Ground heat flux -'Ground heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#Moisture availability -'Moisture availability' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#Exchange coefficient -'Exchange coefficient' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Plant canopy surface water -'Plant canopy surface water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Blackadar mixing length scale -'Blackadar mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Canopy conductance -'Canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Minimal stomatal resistance -'Minimal stomatal resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - } -#Solar parameter in canopy conductance -'Solar parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 202 ; - } -#Temperature parameter in canopy conductance -'Temperature parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 203 ; - } -#Soil moisture parameter in canopy conductance -'Soil moisture parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 205 ; - } -#Humidity parameter in canopy conductance -'Humidity parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 204 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#Number of soil layers in root zone -'Number of soil layers in root zone' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 196 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 197 ; - } -#Temperature tendency by all radiation -'Temperature tendency by all radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 193 ; - } -#Relative Error Variance -'Relative Error Variance' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 194 ; - } -#Large Scale Condensate Heating rate -'Large Scale Condensate Heating rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 195 ; - } -#Deep Convective Heating rate -'Deep Convective Heating rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 196 ; - } -#Total Downward Heat Flux at Surface -'Total Downward Heat Flux at Surface' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 197 ; - } -#Temperature Tendency By All Physics -'Temperature Tendency By All Physics' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Temperature Tendency By Non-radiation Physics -'Temperature Tendency By Non-radiation Physics' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 199 ; - } -#Standard Dev. of IR Temp. over 1x1 deg. area -'Standard Dev. of IR Temp. over 1x1 deg. area' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 200 ; - } -#Shallow Convective Heating rate -'Shallow Convective Heating rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } -#Vertical Diffusion Heating rate -'Vertical Diffusion Heating rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 202 ; - } -#Potential temperature at top of viscous sublayer -'Potential temperature at top of viscous sublayer' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 203 ; - } -#Tropical Cyclone Heat Potential -'Tropical Cyclone Heat Potential' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 204 ; - } -#Minimum Relative Humidity -'Minimum Relative Humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 198 ; - } -#Total Icing Potential Diagnostic -'Total Icing Potential Diagnostic' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 206 ; - } -#Number concentration for ice particles -'Number concentration for ice particles' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 207 ; - } -#Snow temperature -'Snow temperature' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 208 ; - } -#Total column-integrated supercooled liquid water -'Total column-integrated supercooled liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 209 ; - } -#Total column-integrated melting ice -'Total column-integrated melting ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 210 ; - } -#Evaporation - Precipitation -'Evaporation - Precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 211 ; - } -#Sublimation (evaporation from snow) -'Sublimation (evaporation from snow)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 212 ; - } -#Deep Convective Moistening Rate -'Deep Convective Moistening Rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 213 ; - } -#Shallow Convective Moistening Rate -'Shallow Convective Moistening Rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 214 ; - } -#Vertical Diffusion Moistening Rate -'Vertical Diffusion Moistening Rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 215 ; - } -#Condensation Pressure of Parcali Lifted From Indicate Surface -'Condensation Pressure of Parcali Lifted From Indicate Surface' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 216 ; - } -#Large scale moistening rate -'Large scale moistening rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 217 ; - } -#Specific humidity at top of viscous sublayer -'Specific humidity at top of viscous sublayer' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 218 ; - } -#Maximum specific humidity at 2m -'Maximum specific humidity at 2m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 219 ; - } -#Minimum specific humidity at 2m -'Minimum specific humidity at 2m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 220 ; - } -#Liquid precipitation (rainfall) -'Liquid precipitation (rainfall)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 221 ; - } -#Snow temperature, depth-avg -'Snow temperature, depth-avg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 222 ; - } -#Total precipitation (nearest grid point) -'Total precipitation (nearest grid point)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 223 ; - } -#Convective precipitation (nearest grid point) -'Convective precipitation (nearest grid point)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 224 ; - } -#Freezing Rain -'Freezing Rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 225 ; - } -#Latitude of U Wind Component of Velocity -'Latitude of U Wind Component of Velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 198 ; - } -#Longitude of U Wind Component of Velocity -'Longitude of U Wind Component of Velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 199 ; - } -#Latitude of V Wind Component of Velocity -'Latitude of V Wind Component of Velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 200 ; - } -#Longitude of V Wind Component of Velocity -'Longitude of V Wind Component of Velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 201 ; - } -#Latitude of Presure Point -'Latitude of Presure Point' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 202 ; - } -#Longitude of Presure Point -'Longitude of Presure Point' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 203 ; - } -#Vertical Eddy Diffusivity Heat exchange -'Vertical Eddy Diffusivity Heat exchange' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 204 ; - } -#Covariance between Meridional and Zonal Components of the wind. -'Covariance between Meridional and Zonal Components of the wind.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 205 ; - } -#Covariance between Temperature and Zonal Components of the wind. -'Covariance between Temperature and Zonal Components of the wind.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 206 ; - } -#Covariance between Temperature and Meridional Components of the wind. -'Covariance between Temperature and Meridional Components of the wind.' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 207 ; - } -#Vertical Diffusion Zonal Acceleration -'Vertical Diffusion Zonal Acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 208 ; - } -#Vertical Diffusion Meridional Acceleration -'Vertical Diffusion Meridional Acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 209 ; - } -#Gravity wave drag zonal acceleration -'Gravity wave drag zonal acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 210 ; - } -#Gravity wave drag meridional acceleration -'Gravity wave drag meridional acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 211 ; - } -#Convective zonal momentum mixing acceleration -'Convective zonal momentum mixing acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 212 ; - } -#Convective meridional momentum mixing acceleration -'Convective meridional momentum mixing acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 213 ; - } -#Tendency of vertical velocity -'Tendency of vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 214 ; - } -#Omega (Dp/Dt) divide by density -'Omega (Dp/Dt) divide by density' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 215 ; - } -#Convective Gravity wave drag zonal acceleration -'Convective Gravity wave drag zonal acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 216 ; - } -#Convective Gravity wave drag meridional acceleration -'Convective Gravity wave drag meridional acceleration' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 217 ; - } -#Velocity Point Model Surface -'Velocity Point Model Surface' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 218 ; - } -#Potential Vorticity (Mass-Weighted) -'Potential Vorticity (Mass-Weighted)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 219 ; - } -#MSLP (Eta model reduction) -'MSLP (Eta model reduction)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#MSLP (MAPS System Reduction) -'MSLP (MAPS System Reduction)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - } -#3-hr pressure tendency (Std. Atmos. Reduction) -'3-hr pressure tendency (Std. Atmos. Reduction)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } -#Pressure of level from which parcel was lifted -'Pressure of level from which parcel was lifted' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - } -#X-gradient of Log Pressure -'X-gradient of Log Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 201 ; - } -#Y-gradient of Log Pressure -'Y-gradient of Log Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 202 ; - } -#X-gradient of Height -'X-gradient of Height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 203 ; - } -#Y-gradient of Height -'Y-gradient of Height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 204 ; - } -#Layer Thickness -'Layer Thickness' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 205 ; - } -#Natural Log of Surface Pressure -'Natural Log of Surface Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 206 ; - } -#Convective updraft mass flux -'Convective updraft mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 207 ; - } -#Convective downdraft mass flux -'Convective downdraft mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 208 ; - } -#Convective detrainment mass flux -'Convective detrainment mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 209 ; - } -#Mass Point Model Surface -'Mass Point Model Surface' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 210 ; - } -#Geopotential Height (nearest grid point) -'Geopotential Height (nearest grid point)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 211 ; - } -#Pressure (nearest grid point) -'Pressure (nearest grid point)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 212 ; - } -#UV-B downward solar flux -'UV-B downward solar flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 194 ; - } -#Clear sky UV-B downward solar flux -'Clear sky UV-B downward solar flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 195 ; - } -#Clear Sky Downward Solar Flux -'Clear Sky Downward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 196 ; - } -#Solar Radiative Heating Rate -'Solar Radiative Heating Rate' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 197 ; - } -#Clear Sky Upward Solar Flux -'Clear Sky Upward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 198 ; - } -#Cloud Forcing Net Solar Flux -'Cloud Forcing Net Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 199 ; - } -#Visible Beam Downward Solar Flux -'Visible Beam Downward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 200 ; - } -#Visible Diffuse Downward Solar Flux -'Visible Diffuse Downward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 201 ; - } -#Near IR Beam Downward Solar Flux -'Near IR Beam Downward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 202 ; - } -#Near IR Diffuse Downward Solar Flux -'Near IR Diffuse Downward Solar Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 203 ; - } -#Downward Total radiation Flux -'Downward Total radiation Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 204 ; - } -#Upward Total radiation Flux -'Upward Total radiation Flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 205 ; - } -#Long-Wave Radiative Heating Rate -'Long-Wave Radiative Heating Rate' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 194 ; - } -#Clear Sky Upward Long Wave Flux -'Clear Sky Upward Long Wave Flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 195 ; - } -#Clear Sky Downward Long Wave Flux -'Clear Sky Downward Long Wave Flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 196 ; - } -#Cloud Forcing Net Long Wave Flux -'Cloud Forcing Net Long Wave Flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 197 ; - } -#Convective Cloud Mass Flux -'Convective Cloud Mass Flux' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 200 ; - } -#Richardson Number -'Richardson Number' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 194 ; - } -#Convective Weather Detection Index -'Convective Weather Detection Index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 195 ; - } -#Updraft Helicity -'Updraft Helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 197 ; - } -#Leaf Area Index -'Leaf Area Index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 198 ; - } -#Particulate matter (coarse) -'Particulate matter (coarse)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 192 ; - } -#Particulate matter (fine) -'Particulate matter (fine)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 193 ; - } -#Particulate matter (fine) -'Particulate matter (fine)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 194 ; - } -#Integrated column particulate matter (fine) -'Integrated column particulate matter (fine)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 195 ; - } -#Ozone Concentration (PPB) -'Ozone Concentration (PPB)' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 193 ; - } -#Categorical Ozone Concentration -'Categorical Ozone Concentration' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 194 ; - } -#Ozone vertical diffusion -'Ozone vertical diffusion' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 195 ; - } -#Ozone production -'Ozone production' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 196 ; - } -#Ozone tendency -'Ozone tendency' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 197 ; - } -#Ozone production from temperature term -'Ozone production from temperature term' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 198 ; - } -#Ozone production from col ozone term -'Ozone production from col ozone term' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 199 ; - } -#Derived radar reflectivity backscatter from rain -'Derived radar reflectivity backscatter from rain' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 192 ; - } -#Derived radar reflectivity backscatter from ice -'Derived radar reflectivity backscatter from ice' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 193 ; - } -#Derived radar reflectivity backscatter from parameterized convection -'Derived radar reflectivity backscatter from parameterized convection' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 194 ; - } -#Derived radar reflectivity -'Derived radar reflectivity' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 195 ; - } -#Maximum/Composite radar reflectivity -'Maximum/Composite radar reflectivity' = { - discipline = 0 ; - parameterCategory = 16 ; - parameterNumber = 196 ; - } -#Lightning -'Lightning' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 192 ; - } -#Slight risk convective outlook -'Slight risk convective outlook' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 194 ; - } -#Moderate risk convective outlook -'Moderate risk convective outlook' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 195 ; - } -#High risk convective outlook -'High risk convective outlook' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 196 ; - } -#Tornado probability -'Tornado probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 197 ; - } -#Hail probability -'Hail probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 198 ; - } -#Wind probability -'Wind probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 199 ; - } -#Significant Tornado probability -'Significant Tornado probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 200 ; - } -#Significant Hail probability -'Significant Hail probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 201 ; - } -#Significant Wind probability -'Significant Wind probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 202 ; - } -#Categorical Thunderstorm (1-yes, 0-no) -'Categorical Thunderstorm (1-yes, 0-no)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 203 ; - } -#Number of mixed layers next to surface -'Number of mixed layers next to surface' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 204 ; - } -#Flight Category -'Flight Category' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 205 ; - } -#Confidence - Ceiling -'Confidence - Ceiling' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 206 ; - } -#Confidence - Visibility -'Confidence - Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 207 ; - } -#Confidence - Flight Category -'Confidence - Flight Category' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 208 ; - } -#Low-Level aviation interest -'Low-Level aviation interest' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 209 ; - } -#High-Level aviation interest -'High-Level aviation interest' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 210 ; - } -#Visible, Black Sky Albedo -'Visible, Black Sky Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 211 ; - } -#Visible, White Sky Albedo -'Visible, White Sky Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 212 ; - } -#Near IR, Black Sky Albedo -'Near IR, Black Sky Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 213 ; - } -#Near IR, White Sky Albedo -'Near IR, White Sky Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 214 ; - } -#Total Probability of Severe Thunderstorms (Days 2,3) -'Total Probability of Severe Thunderstorms (Days 2,3)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 215 ; - } -#Total Probability of Extreme Severe Thunderstorms (Days 2,3) -'Total Probability of Extreme Severe Thunderstorms (Days 2,3)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 216 ; - } -#Supercooled Large Droplet (SLD) Potential -'Supercooled Large Droplet (SLD) Potential' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 217 ; - } -#Radiative emissivity -'Radiative emissivity' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 218 ; - } -#Turbulence Potential Forecast Index -'Turbulence Potential Forecast Index' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 219 ; - } -#Volcanic Ash Forecast Transport and Dispersion -'Volcanic Ash Forecast Transport and Dispersion' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 232 ; - } -#Latitude (-90 to +90) -'Latitude (-90 to +90)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 192 ; - } -#East Longitude (0 - 360) -'East Longitude (0 - 360)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 193 ; - } -#Model Layer number (From bottom up) -'Model Layer number (From bottom up)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 195 ; - } -#Latitude (nearest neighbor) (-90 to +90) -'Latitude (nearest neighbor) (-90 to +90)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 196 ; - } -#East Longitude (nearest neighbor) (0 - 360) -'East Longitude (nearest neighbor) (0 - 360)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 197 ; - } -#Probability of Freezing Precipitation -'Probability of Freezing Precipitation' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } -#Probability of precipitation exceeding flash flood guidance values -'Probability of precipitation exceeding flash flood guidance values' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } -#Probability of Wetting Rain, exceeding in 0.10 in a given time period -'Probability of Wetting Rain, exceeding in 0.10 in a given time period' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } -#Vegetation Type -'Vegetation Type' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 198 ; - } -#Wilting Point -'Wilting Point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 201 ; - } -#Rate of water dropping from canopy to ground -'Rate of water dropping from canopy to ground' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 206 ; - } -#Ice-free water surface -'Ice-free water surface' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 207 ; - } -#Surface exchange coefficients for T and Q divided by delta z -'Surface exchange coefficients for T and Q divided by delta z' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 208 ; - } -#Surface exchange coefficients for U and V divided by delta z -'Surface exchange coefficients for U and V divided by delta z' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 209 ; - } -#Vegetation canopy temperature -'Vegetation canopy temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 210 ; - } -#Surface water storage -'Surface water storage' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 211 ; - } -#Liquid soil moisture content (non-frozen) -'Liquid soil moisture content (non-frozen)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 212 ; - } -#Open water evaporation (standing water) -'Open water evaporation (standing water)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 213 ; - } -#Groundwater recharge -'Groundwater recharge' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 214 ; - } -#Flood plain recharge -'Flood plain recharge' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 215 ; - } -#Roughness length for heat -'Roughness length for heat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 216 ; - } -#Normalized Difference Vegetation Index -'Normalized Difference Vegetation Index' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 217 ; - } -#Land-sea coverage (nearest neighbor) [land=1,sea=0] -'Land-sea coverage (nearest neighbor) [land=1,sea=0]' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 218 ; - } -#Asymptotic mixing length scale -'Asymptotic mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 219 ; - } -#Water vapor added by precip assimilation -'Water vapor added by precip assimilation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 220 ; - } -#Water condensate added by precip assimilation -'Water condensate added by precip assimilation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 221 ; - } -#Water Vapor Flux Convergance (Vertical Int) -'Water Vapor Flux Convergance (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 222 ; - } -#Water Condensate Flux Convergance (Vertical Int) -'Water Condensate Flux Convergance (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 223 ; - } -#Water Vapor Zonal Flux (Vertical Int) -'Water Vapor Zonal Flux (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 224 ; - } -#Water Vapor Meridional Flux (Vertical Int) -'Water Vapor Meridional Flux (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 225 ; - } -#Water Condensate Zonal Flux (Vertical Int) -'Water Condensate Zonal Flux (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 226 ; - } -#Water Condensate Meridional Flux (Vertical Int) -'Water Condensate Meridional Flux (Vertical Int)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 227 ; - } -#Aerodynamic conductance -'Aerodynamic conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 228 ; - } -#Canopy water evaporation -'Canopy water evaporation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 229 ; - } -#Transpiration -'Transpiration' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 230 ; - } -#Surface Slope Type -'Surface Slope Type' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#Direct evaporation from bare soil -'Direct evaporation from bare soil' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 198 ; - } -#Land Surface Precipitation Accumulation -'Land Surface Precipitation Accumulation' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 199 ; - } -#Bare soil surface skin temperature -'Bare soil surface skin temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 200 ; - } -#Average surface skin temperature -'Average surface skin temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 201 ; - } -#Effective radiative skin temperature -'Effective radiative skin temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 202 ; - } -#Field Capacity -'Field Capacity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 203 ; - } -#Scatterometer Estimated U Wind Component -'Scatterometer Estimated U Wind Component' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } -#Scatterometer Estimated V Wind Component -'Scatterometer Estimated V Wind Component' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } -#Wave Steepness -'Wave Steepness' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 192 ; - } -#Ocean Mixed Layer U Velocity -'Ocean Mixed Layer U Velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - } -#Ocean Mixed Layer V Velocity -'Ocean Mixed Layer V Velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 193 ; - } -#Barotropic U velocity -'Barotropic U velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 194 ; - } -#Barotropic V velocity -'Barotropic V velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 195 ; - } -#Storm Surge -'Storm Surge' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 192 ; - } -#Extra Tropical Storm Surge -'Extra Tropical Storm Surge' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 193 ; - } -#Ocean Surface Elevation Relative to Geoid -'Ocean Surface Elevation Relative to Geoid' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 194 ; - } -#Sea Surface Height Relative to Geoid -'Sea Surface Height Relative to Geoid' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 195 ; - } -#Ocean Mixed Layer Potential Density (Reference 2000m)
    -# created: 14 Feb 2014 -# modified: -# -######################### - -constant g1conceptsMasterDir="grib1" : hidden; -constant g1conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; - - -alias ls.dataType = marsType; - -if (localDefinitionNumber == 83 ) { - - concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.sort (unknown,"sortConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.landtype (unknown,"landTypeConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - -} - diff --git a/eccodes/definitions.save/grib2/mars_labeling.82.def b/eccodes/definitions.save/grib2/mars_labeling.82.def deleted file mode 100644 index 65661577..00000000 --- a/eccodes/definitions.save/grib2/mars_labeling.82.def +++ /dev/null @@ -1,48 +0,0 @@ -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -######################### - -constant conceptsMasterMarsDir="mars" : hidden; -constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; - -########################## -# # -# Base MARS keywors # -# # -########################## - -alias mars.class = marsClass; -alias mars.type = marsType; -alias mars.stream = marsStream; -alias mars.model = marsModel; -alias mars.expver = experimentVersionNumber; -alias mars.domain = globalDomain; - -######################### -# # -# local section 82 # -# # -######################### - -### nothing needed here... - -######################### -# # -# local section 83 # -# # -######################### - -if ( localDefinitionNumber == 83 ) { - - alias mars.sort = matchSort; - alias mars.timerepres = matchTimeRepres; - alias mars.landtype = matchLandType; - alias mars.aerosolbinnumber = matchAerosolBinNumber; - - concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); - alias mars.aerosolpacking = matchAerosolPacking; - -} - diff --git a/eccodes/definitions.save/grib2/mars_labeling.def b/eccodes/definitions.save/grib2/mars_labeling.def deleted file mode 100644 index 6905210c..00000000 --- a/eccodes/definitions.save/grib2/mars_labeling.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -codetable[2] marsClass "mars/class.table" = "od" : dump,string_type,lowercase; -codetable[2] marsType "mars/type.table" = "an" : dump,string_type,no_fail,lowercase; -codetable[2] marsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; -ksec1expver[4] experimentVersionNumber = "0001" : dump; - -meta class g2_mars_labeling(0,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -meta type g2_mars_labeling(1,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -meta stream g2_mars_labeling(2,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -alias ls.dataType = marsType; - -alias mars.class = class; -alias mars.type = type; -alias mars.stream = stream; -alias mars.expver = experimentVersionNumber; - -alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions.save/grib2/meta.def b/eccodes/definitions.save/grib2/meta.def deleted file mode 100644 index baa49b8f..00000000 --- a/eccodes/definitions.save/grib2/meta.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -label "_Empty file"; - -#meta area g1area(latitudeOfFirstGridPoint,longitudeOfFirstGridPoint,latitudeOfLastGridPoint,longitudeOfLastGridPoint,angleMultiplier,angleDivisor); diff --git a/eccodes/definitions.save/grib2/modelName.def b/eccodes/definitions.save/grib2/modelName.def deleted file mode 100644 index 25b89c3d..00000000 --- a/eccodes/definitions.save/grib2/modelName.def +++ /dev/null @@ -1,43 +0,0 @@ -# modelName: Contribution from Daniel Lee @ DWD - -# COSMO -# general definition -'cosmo' = { originatingCentre=250; } -'cosmo' = { subCentre=250; } - -# definitions for ARPA-SIMC -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=36; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=139; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=144; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=148; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=31; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=32; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=34; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=38; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=42; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=46; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=131; } -# definitions for Moscow -'cosmo_ru' = { originatingCentre=76; - generatingProcessIdentifier=135; } -'cosmo_ru-eps' = { originatingCentre=76; - generatingProcessIdentifier=235;} - -# definitions for Athens -'cosmo-greece' = { originatingCentre=96;} -# definitions for Warsaw / Poland -'cosmo-poland' = { originatingCentre=220;} -# definitions for Romania -'cosmo-romania' = { originatingCentre=242;} - diff --git a/eccodes/definitions.save/grib2/name.def b/eccodes/definitions.save/grib2/name.def deleted file mode 100644 index e808c10a..00000000 --- a/eccodes/definitions.save/grib2/name.def +++ /dev/null @@ -1,4140 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'Total precipitation of at least 1 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 1 ; - } -#Total precipitation of at least 5 mm -'Total precipitation of at least 5 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 5 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 40 mm -'Total precipitation of at least 40 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 40 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 60 mm -'Total precipitation of at least 60 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 60 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 80 mm -'Total precipitation of at least 80 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 80 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 100 mm -'Total precipitation of at least 100 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 150 mm -'Total precipitation of at least 150 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 200 mm -'Total precipitation of at least 200 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 200 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 300 mm -'Total precipitation of at least 300 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 3 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = -2 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Unbalanced component of temperature -'Unbalanced component of temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Unbalanced component of logarithm of surface pressure -'Unbalanced component of logarithm of surface pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 31 ; - } -#Unbalanced component of divergence -'Unbalanced component of divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 45 ; - } -#Sea ice area fraction -'Sea ice area fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'Snow density' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'Sea surface temperature' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'Soil type' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'10 metre wind gust since previous post-processing' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Specific rain water content -'Specific rain water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'Specific snow water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'Eta-coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Total column cloud liquid water -'Total column cloud liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Total column cloud ice water -'Total column cloud ice water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net solar radiation -'Top net solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Ozone mass mixing ratio -'Ozone mass mixing ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'Temperature of snow layer' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Specific cloud liquid water content -'Specific cloud liquid water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'Fraction of cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'large scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'Snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'Medium cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Total precipitation of at least 25 mm -'Total precipitation of at least 25 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 50 mm -'Total precipitation of at least 50 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 50 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind gust of at least 10 m/s -'10 metre wind gust of at least 10 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; - } -#Probability of temperature standardized anomaly greater than 1 standard deviation -'Probability of temperature standardized anomaly greater than 1 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - } -#Probability of temperature standardized anomaly greater than 1.5 standard deviation -'Probability of temperature standardized anomaly greater than 1.5 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = 15 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - } -#Probability of temperature standardized anomaly greater than 2 standard deviation -'Probability of temperature standardized anomaly greater than 2 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 2 ; - } -#Probability of temperature standardized anomaly less than -1 standard deviation -'Probability of temperature standardized anomaly less than -1 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -1 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly less than -1.5 standard deviation -'Probability of temperature standardized anomaly less than -1.5 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = -15 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; - } -#Probability of temperature standardized anomaly less than -2 standard deviation -'Probability of temperature standardized anomaly less than -2 standard deviation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -2 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - } -#Mean sea water potential temperature in the upper 300 m -'Mean sea water potential temperature in the upper 300 m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Mean sea water temperature in the upper 300 m -'Mean sea water temperature in the upper 300 m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Sea surface practical salinity -'Sea surface practical salinity' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - scaledValueOfFirstFixedSurface = 1 ; - typeOfFirstFixedSurface = 169 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#2 metre specific humidity -'2 metre specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ammonium aerosol mass mixing ratio -'Ammonium aerosol mass mixing ratio' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Nitrate aerosol optical depth at 550 nm -'Nitrate aerosol optical depth at 550 nm' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62004 ; - typeOfSizeInterval = 255 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - scaledValueOfFirstWavelength = 55 ; - } -#Ammonium aerosol optical depth at 550 nm -'Ammonium aerosol optical depth at 550 nm' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - scaledValueOfFirstWavelength = 55 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62003 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - } -#Ammonium aerosol mass mixing ratio -'Ammonium aerosol mass mixing ratio' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Dry deposition of ammonium aerosol -'Dry deposition of ammonium aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Sedimentation of ammonium aerosol -'Sedimentation of ammonium aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'Wet deposition of ammonium aerosol by large-scale precipitation' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'Wet deposition of ammonium aerosol by convective precipitation' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of ammonium aerosol -'Vertically integrated mass of ammonium aerosol' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#-10 degrees C isothermal level (atm) -'-10 degrees C isothermal level (atm)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 26315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#0 degrees C isothermal level (atm) -'0 degrees C isothermal level (atm)' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 27315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'Relative humidity with respect to water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'Relative humidity with respect to ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'Snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'Fraction of stratiform precipitation cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'Fraction of convective precipitation cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Maximum CAPE in the last 6 hours -'Maximum CAPE in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Maximum CAPES in the last 6 hours -'Maximum CAPES in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 19 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity with respect to water -'2 metre relative humidity with respect to water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Liquid water content in snow pack -'Liquid water content in snow pack' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Height of convective cloud top -'Height of convective cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Instantaneous total lightning flash density -'Instantaneous total lightning flash density' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged total lightning flash density in the last hour -'Averaged total lightning flash density in the last hour' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - } -#Instantaneous cloud-to-ground lightning flash density -'Instantaneous cloud-to-ground lightning flash density' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'Averaged cloud-to-ground lightning flash density in the last hour' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - } -#Unbalanced component of specific humidity -'Unbalanced component of specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'Unbalanced component of specific cloud liquid water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'Unbalanced component of specific cloud ice water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Averaged total lightning flash density in the last 3 hours -'Averaged total lightning flash density in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 3 ; - } -#Averaged total lightning flash density in the last 6 hours -'Averaged total lightning flash density in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil moisture top 20 cm -'Soil moisture top 20 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil moisture top 100 cm -'Soil moisture top 100 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'Soil temperature top 20 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Soil temperature top 100 cm -'Soil temperature top 100 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'Water runoff and drainage' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mixed-layer CAPE in the lowest 50 hPa -'Mixed-layer CAPE in the lowest 50 hPa' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 50 hPa -'Mixed-layer CIN in the lowest 50 hPa' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CAPE in the lowest 100 hPa -'Mixed-layer CAPE in the lowest 100 hPa' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 100 hPa -'Mixed-layer CIN in the lowest 100 hPa' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Most-unstable CAPE -'Most-unstable CAPE' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Most-unstable CIN -'Most-unstable CIN' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Departure level of the most unstable parcel expressed as Pressure -'Departure level of the most unstable parcel expressed as Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#200 metre U wind component -'200 metre U wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#200 metre V wind component -'200 metre V wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#200 metre wind speed -'200 metre wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#100 metre wind speed -'100 metre wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mean temperature tendency due to short-wave radiation -'Mean temperature tendency due to short-wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'Mean temperature tendency due to long-wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'Mean temperature tendency due to short-wave radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'Mean temperature tendency due to long-wave radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'Mean temperature tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'Mean specific humidity tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'Mean eastward wind tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'Mean northward wind tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'Mean updraught mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'Mean downdraught mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'Mean updraught detrainment rate' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'Mean downdraught detrainment rate' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'Mean total precipitation flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'Mean turbulent diffusion coefficient for heat' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Time integral of rain flux -'Time integral of rain flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface eastward momentum flux -'Time integral of surface eastward momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface northward momentum flux -'Time integral of surface northward momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Cross sectional area of flow in channel -'Cross sectional area of flow in channel' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'Side flow into river channel' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'Discharge from rivers or streams' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'River storage of water' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'Floodplain storage of water' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'Water fraction' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'Days since last observation' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'Frost index' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'Depth of water on soil surface' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'Upstream accumulated precipitation' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'Upstream accumulated snow melt' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean discharge in the last 6 hours -'Mean discharge in the last 6 hours' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean discharge in the last 24 hours -'Mean discharge in the last 24 hours' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth at elevation bands -'Snow depth at elevation bands' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'Groundwater upper storage' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'Groundwater lower storage' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Latitude -'Latitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Longitude -'Longitude' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } -#Latitude on T grid -'Latitude on T grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Longitude on T grid -'Longitude on T grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Latitude on U grid -'Latitude on U grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Longitude on U grid -'Longitude on U grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Latitude on V grid -'Latitude on V grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Longitude on V grid -'Longitude on V grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Latitude on W grid -'Latitude on W grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Longitude on W grid -'Longitude on W grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Latitude on F grid -'Latitude on F grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Longitude on F grid -'Longitude on F grid' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Total column graupel -'Total column graupel' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity -'2 metre relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Apparent temperature -'Apparent temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'Haines Index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'Evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'Evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'10 metre wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Direct short wave radiation flux -'Direct short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'Diffuse short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'Time-integrated surface direct short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation in the last 6 hours -'Evaporation in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; - is_uerra = 0 ; - } -#Evaporation in the last 24 hours -'Evaporation in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - is_uerra = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 24 ; - } -#Total precipitation in the last 6 hours -'Total precipitation in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - is_efas = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation in the last 24 hours -'Total precipitation in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - is_efas = 1 ; - lengthOfTimeRange = 24 ; - } -#Fraction of snow cover -'Fraction of snow cover' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 121 ; - } -#Clear air turbulence (CAT) -'Clear air turbulence (CAT)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 29 ; - } -#Mountain wave turbulence (eddy dissipation rate) -'Mountain wave turbulence (eddy dissipation rate)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 28 ; - } -#Soil temperature -'Soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'Downward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'Upward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'Downward long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'Soil heat flux' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'Percolation rate' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'Soil depth' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'Accumulated surface downward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'Accumulated surface upward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'Accumulated surface downward long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Percolation -'Percolation' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'Cloudy brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'Clear-sky brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'Scaled radiance' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Scaled albedo' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Scaled brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Scaled precipitable water' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Scaled lifted index' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Scaled cloud top pressure' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Scaled skin temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Cloud mask' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Pixel scene type' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Fire detection indicator' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Forest fire weather index -'Forest fire weather index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Fine fuel moisture code -'Fine fuel moisture code' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Duff moisture code -'Duff moisture code' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Drought code -'Drought code' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Initial fire spread index -'Initial fire spread index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Fire buildup index -'Fire buildup index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Fire daily severity rating -'Fire daily severity rating' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Cloudy radiance (with respect to wave number) -'Cloudy radiance (with respect to wave number)' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'Clear-sky radiance (with respect to wave number)' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'Wind speed' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'Aerosol optical thickness at 0.635 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'Aerosol optical thickness at 0.810 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'Aerosol optical thickness at 1.640 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'Angstrom coefficient' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Keetch-Byram drought index -'Keetch-Byram drought index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#Drought factor (as defined by the Australian forest service) -'Drought factor (as defined by the Australian forest service)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Rate of spread (as defined by the Australian forest service) -'Rate of spread (as defined by the Australian forest service)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Fire danger index (as defined by the Australian forest service) -'Fire danger index (as defined by the Australian forest service)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - } -#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 16 ; - } -#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 17 ; - } -#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - } -#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 19 ; - } -#Universal thermal climate index -'Universal thermal climate index' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Mean radiant temperature -'Mean radiant temperature' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Fraction of Malaria cases -'Fraction of Malaria cases' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Malaria circumsporozoite protein ratio -'Malaria circumsporozoite protein ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Plasmodium falciparum entomological inoculation rate -'Plasmodium falciparum entomological inoculation rate' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Human bite rate by anopheles vectors -'Human bite rate by anopheles vectors' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Malaria immunity ratio -'Malaria immunity ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Falciparum parasite ratio -'Falciparum parasite ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Detectable falciparum parasite ratio (after day 10) -'Detectable falciparum parasite ratio (after day 10)' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Anopheles vector to host ratio -'Anopheles vector to host ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Anopheles vector density -'Anopheles vector density' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Fraction of malarial vector reproductive habitat -'Fraction of malarial vector reproductive habitat' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Population density -'Population density' = { - discipline = 20 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Virtual temperature -'Virtual temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'Wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Mean zero-crossing wave period -'Mean zero-crossing wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'Mean wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Peak wave period -'Peak wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Mean wave period -'Mean wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Eastward sea water velocity -'Eastward sea water velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'Northward sea water velocity' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'Sea surface height' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'Depth of 20C isotherm' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 20 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 29315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#Average salinity in the upper 300m -'Average salinity in the upper 300m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; - typeOfFirstFixedSurface = 160 ; - scaledValueOfSecondFixedSurface = 300 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Surface runoff -'Surface runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Sea-ice thickness -'Sea-ice thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre U wind component -'100 metre U wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre V wind component -'100 metre V wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total precipitation of at least 10 mm -'Total precipitation of at least 10 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 20 mm -'Total precipitation of at least 20 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 20 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Stream function -'Stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'Velocity potential' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'Potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'Convective available potential energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'Geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'U component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'V component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'Specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'Surface pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'Total column water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'Divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'Geopotential Height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'10 metre U wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'10 metre V wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'2 metre temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'Surface roughness' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'Sunshine duration' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'Brightness temperature' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Skin temperature -'Skin temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'Latent heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'Sensible heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'Heat index' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'Wind chill factor' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'Minimum dew point depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'Snow phase change heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'Vapor pressure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'Large scale precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'Snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'Convective snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'Large scale snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'Snow age' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'Absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'Precipitation type' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'Integrated liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'Condensate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'Cloud mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'Ice water mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'Rain mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'Snow mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'Horizontal moisture convergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'Maximum relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'Maximum absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'Total snowfall' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'Precipitable water category' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'Hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'Graupel (snow pellets)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'Categorical rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'Categorical freezing rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'Categorical ice pellets' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'Categorical snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'Convective precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'Horizontal moisture divergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'Percent frozen precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'Potential evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'Snow cover' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'Rime factor' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'Large scale water precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'Convective water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'Total water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'Total snow precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'Total column water (Vertically integrated total water (vapour + cloud water/ice))' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'Total precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'Total snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'Large scale precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'Total snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'Convective snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'Large scale snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'Water equivalent of accumulated snow depth (deprecated)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'Rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'Snow precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'Freezing rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'Ice pellets precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'Momentum flux, u component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'Momentum flux, v component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'Maximum wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'Wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'u-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'v-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'Vertical speed shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'Horizontal momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'U-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'V-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Drag coefficient' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'Frictional velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'Geometric height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'Altimeter setting' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'Thickness' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'Pressure altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'Density altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5-wave geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'Planetary boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'Net short-wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'Upward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'Net short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'Downward UV radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'UV index (under clear sky)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'UV index ' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'Net long wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'Net long wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'Net long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'Cloud Ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'Cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'Cloud amount' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'Cloud type' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'Thunderstorm maximum tops' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'Thunderstorm coverage' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'Cloud base' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'Cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'Ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'Non-convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'Cloud work function' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Convective cloud efficiency' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'Total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'Total column-integrated cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'Total column-integrated cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'Total column-integrated condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Ice fraction of total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'Cloud ice mixing ratio' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Sunshine' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'Horizontal extent of cumulonimbus (CB)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'K index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'KO index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'Total totals index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Sweat index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'Storm relative helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Energy helicity index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'Best (4-layer) lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'Aerosol type' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'Total ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'Total column integrated ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'Base spectrum width' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'Base radial velocity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'Vertically-integrated liquid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'Layer-maximum base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'Precipitation' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'Air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'Air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'Air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'Ground deposition of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'Ground deposition of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'Ground deposition of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'Time-integrated air concentration of caesium pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'Time-integrated air concentration of iodine pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'Time-integrated air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'Volcanic ash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'Icing top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'Icing base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'Turbulence top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'Turbulence base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'Turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'Turbulent kinetic energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'Planetary boundary layer regime' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'Contrail intensity' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'Contrail engine type' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'Contrail top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'Contrail base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'Maximum snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'Snow free albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'In-cloud turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Relative clear air turbulence (RCAT) -'Relative clear air turbulence (RCAT)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'Supercooled large droplet probability (see Note 4)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'Arbitrary text string' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'Remotely sensed snow cover' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'Elevation of snow covered terrain' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'Snow water equivalent percent of normal' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'Baseflow-groundwater runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'Storm surface runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'Probability of 0.01 inch of precipitation (POP)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'Land cover (1=land, 0=sea)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'Vegetation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'Water runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'Evapotranspiration' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'Model terrain height' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'Land use' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'Ground heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'Moisture availability' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'Exchange coefficient' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'Plant canopy surface water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'Blackadar mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'Canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'Minimal stomatal resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Solar parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Temperature parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'Soil moisture parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'Humidity parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'Column-integrated soil water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'Heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'Volumetric wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'Upper layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'Upper layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'Lower layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'Bottom layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'Number of soil layers in root zone' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'Volumetric transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'Volumetric direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'Volumetric saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'Saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'Estimated precipitation' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'Instantaneous rain rate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'Cloud top height' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Cloud top height quality indicator' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'Estimated u component of wind ' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'Estimated v component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'Number of pixels used' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Solar zenith angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Relative azimuth angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'Reflectance in 0.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'Reflectance in 0.8 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'Reflectance in 1.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'Reflectance in 3.9 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'Atmospheric divergence' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'Direction of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'Primary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'Primary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'Current direction' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'Current speed' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'Geometric vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'Ice temperature' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'Deviation of sea level from mean' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pressure tendency' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'Geometrical height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'Standard deviation of height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'Dew point temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'Lapse rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'Temperature anomaly' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pressure anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'Absolute vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'Absolute divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'U-component of current ' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'V-component of current ' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'Precipitable water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'Saturation deficit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'Main thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'Soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'Salinity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'Density' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'Ice thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Direction of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'Speed of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'U-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'V-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'Ice growth rate' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'Ice divergence' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'Snow melt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Direction of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'Secondary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'Global radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'Wind mixing energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre wind gust of at least 15 m/s -'10 metre wind gust of at least 15 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#10 metre wind gust of at least 20 m/s -'10 metre wind gust of at least 20 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - } -#Convective inhibition -'Convective inhibition' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'Orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'Field capacity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'Wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Total Precipitation -'Total Precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib2/paramId.def b/eccodes/definitions.save/grib2/paramId.def deleted file mode 100644 index f5b50c9f..00000000 --- a/eccodes/definitions.save/grib2/paramId.def +++ /dev/null @@ -1,4140 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'131060' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 5 mm -'131061' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 40 mm -'131082' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 60 mm -'131083' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 80 mm -'131084' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 80 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 100 mm -'131085' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 150 mm -'131086' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 150 ; - probabilityType = 3 ; - } -#Total precipitation of at least 200 mm -'131087' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 300 mm -'131088' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 3 ; - scaleFactorOfLowerLimit = -2 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#Unbalanced component of temperature -'21' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Unbalanced component of logarithm of surface pressure -'22' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 31 ; - } -#Unbalanced component of divergence -'23' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 45 ; - } -#Sea ice area fraction -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'33' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'34' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'43' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'49' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Specific rain water content -'75' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'76' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'77' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Total column cloud liquid water -'78' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Total column cloud ice water -'79' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Surface solar radiation downwards -'169' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface thermal radiation downwards -'175' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Top net solar radiation -'178' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'180' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'181' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - } -#Ozone mass mixing ratio -'203' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'210' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'211' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'238' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Specific cloud liquid water content -'246' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'247' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'248' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'3062' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'3066' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'3073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'3074' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'3075' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Total precipitation of at least 25 mm -'131098' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 25 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 50 mm -'131099' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 50 ; - probabilityType = 3 ; - } -#10 metre wind gust of at least 10 m/s -'131100' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 10 ; - } -#Probability of temperature standardized anomaly greater than 1 standard deviation -'133093' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly greater than 1.5 standard deviation -'133094' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 15 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 1 ; - } -#Probability of temperature standardized anomaly greater than 2 standard deviation -'133095' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 2 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly less than -1 standard deviation -'133096' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -1 ; - } -#Probability of temperature standardized anomaly less than -1.5 standard deviation -'133097' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -15 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 1 ; - } -#Probability of temperature standardized anomaly less than -2 standard deviation -'133098' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -2 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 0 ; - } -#Mean sea water potential temperature in the upper 300 m -'151126' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Mean sea water temperature in the upper 300 m -'151127' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Sea surface practical salinity -'151219' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'151225' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 169 ; - scaledValueOfFirstFixedSurface = 1 ; - } -#2 metre specific humidity -'174096' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ammonium aerosol mass mixing ratio -'210249' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Nitrate aerosol optical depth at 550 nm -'210250' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfSizeInterval = 255 ; - aerosolType = 62004 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - } -#Ammonium aerosol optical depth at 550 nm -'210251' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 62003 ; - is_aerosol_optical = 1 ; - } -#Ammonium aerosol mass mixing ratio -'211249' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Dry deposition of ammonium aerosol -'215206' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Sedimentation of ammonium aerosol -'215207' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'215208' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'215209' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of ammonium aerosol -'215211' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#-10 degrees C isothermal level (atm) -'228020' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 26315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#0 degrees C isothermal level (atm) -'228024' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 27315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#10 metre wind gust in the last 3 hours -'228028' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Relative humidity with respect to water -'228030' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'228031' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'228032' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'228033' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'228034' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Maximum CAPE in the last 6 hours -'228035' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - } -#Maximum CAPES in the last 6 hours -'228036' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 19 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#2 metre relative humidity with respect to water -'228037' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Liquid water content in snow pack -'228038' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Height of convective cloud top -'228046' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Instantaneous total lightning flash density -'228050' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last hour -'228051' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Instantaneous cloud-to-ground lightning flash density -'228052' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'228053' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Unbalanced component of specific humidity -'228054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'228055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'228056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Averaged total lightning flash density in the last 3 hours -'228057' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last 6 hours -'228058' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'228059' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'228060' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Soil moisture top 20 cm -'228086' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil moisture top 100 cm -'228087' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil temperature top 20 cm -'228095' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil temperature top 100 cm -'228096' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Convective precipitation -'228143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'228205' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mixed-layer CAPE in the lowest 50 hPa -'228231' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 50 hPa -'228232' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CAPE in the lowest 100 hPa -'228233' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 100 hPa -'228234' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Most-unstable CAPE -'228235' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Most-unstable CIN -'228236' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Departure level of the most unstable parcel expressed as Pressure -'228237' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#200 metre U wind component -'228239' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#200 metre V wind component -'228240' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#200 metre wind speed -'228241' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#100 metre wind speed -'228249' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - } -#Mean temperature tendency due to short-wave radiation -'235001' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'235002' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'235003' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'235004' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'235005' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'235006' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'235007' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'235008' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'235009' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'235010' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'235011' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'235012' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'235013' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'235014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Time integral of rain flux -'235015' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface eastward momentum flux -'235017' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface northward momentum flux -'235018' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Cross sectional area of flow in channel -'240011' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'240012' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'240013' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'240014' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'240015' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'240016' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'240017' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'240018' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'240020' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'240021' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'240022' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean discharge in the last 6 hours -'240023' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Mean discharge in the last 24 hours -'240024' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Snow depth at elevation bands -'240026' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'240028' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'240029' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Latitude -'250001' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Longitude -'250002' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } -#Latitude on T grid -'250003' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Longitude on T grid -'250004' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Latitude on U grid -'250005' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Longitude on U grid -'250006' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Latitude on V grid -'250007' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Longitude on V grid -'250008' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Latitude on W grid -'250009' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Longitude on W grid -'250010' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Latitude on F grid -'250011' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Longitude on F grid -'250012' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Total column graupel -'260001' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity -'260242' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'260255' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'260256' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'260257' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'260258' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'260259' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#10 metre wind direction -'260260' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'260262' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'260263' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'260264' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Evaporation in the last 6 hours -'260265' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Evaporation in the last 24 hours -'260266' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'260267' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; - } -#Total precipitation in the last 24 hours -'260268' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; - } -#Fraction of snow cover -'260289' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 121 ; - } -#Clear air turbulence (CAT) -'260290' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 29 ; - } -#Mountain wave turbulence (eddy dissipation rate) -'260291' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 28 ; - } -#Soil temperature -'260360' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'260361' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'260362' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'260363' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'260364' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'260365' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'260367' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'260423' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'260427' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'260428' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'260430' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 177 ; - typeOfStatisticalProcessing = 1 ; - } -#Cloudy brightness temperature -'260510' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'260511' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'260530' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'260531' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'260532' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'260533' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'260534' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'260535' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'260536' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'260537' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'260538' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'260539' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Forest fire weather index -'260540' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Fine fuel moisture code -'260541' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Duff moisture code -'260542' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Drought code -'260543' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Initial fire spread index -'260544' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Fire buildup index -'260545' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Fire daily severity rating -'260546' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Cloudy radiance (with respect to wave number) -'260550' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'260551' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'260552' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'260553' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'260554' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'260555' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'260556' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Keetch-Byram drought index -'260557' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#Drought factor (as defined by the Australian forest service) -'260558' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Rate of spread (as defined by the Australian forest service) -'260559' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Fire danger index (as defined by the Australian forest service) -'260560' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - } -#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'260561' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 16 ; - } -#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) -'260562' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 17 ; - } -#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'260563' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - } -#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'260564' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 19 ; - } -#Universal thermal climate index -'261001' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Mean radiant temperature -'261002' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Fraction of Malaria cases -'261003' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Malaria circumsporozoite protein ratio -'261004' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Plasmodium falciparum entomological inoculation rate -'261005' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Human bite rate by anopheles vectors -'261006' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Malaria immunity ratio -'261007' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Falciparum parasite ratio -'261008' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Detectable falciparum parasite ratio (after day 10) -'261009' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Anopheles vector to host ratio -'261010' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Anopheles vector density -'261011' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Fraction of malarial vector reproductive habitat -'261012' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Population density -'261013' = { - discipline = 20 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Virtual temperature -'300012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'3012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'3031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Mean zero-crossing wave period -'140221' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Significant height of combined wind waves and swell -'140229' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'140230' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Peak wave period -'140231' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Mean wave period -'140232' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Eastward sea water velocity -'151131' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'151132' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'151145' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'151163' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 20 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 29315 ; - } -#Average salinity in the upper 300m -'151175' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; - typeOfFirstFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Surface runoff -'174008' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Sea-ice thickness -'174098' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre U wind component -'228246' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - } -#100 metre V wind component -'228247' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total precipitation of at least 10 mm -'131062' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 20 mm -'131063' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - } -#Stream function -'1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pressure -'54' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'59' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'60' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'129' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'130' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'131' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'132' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'133' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'134' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'135' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'136' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'138' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'145' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'146' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'147' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'151' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'155' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'156' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'157' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'165' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'166' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'167' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'172' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'173' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'176' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'177' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'179' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'189' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'194' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'207' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Skin temperature -'235' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'260002' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'260003' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'260004' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'260005' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'260006' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'260007' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'260008' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'260009' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'260010' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'260011' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'260012' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'260013' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'260014' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'260015' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'260016' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'260017' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'260018' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'260019' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'260020' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'260021' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'260022' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'260023' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'260024' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'260025' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'260026' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'260027' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'260028' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'260029' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'260030' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'260031' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'260032' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'260033' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'260034' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'260035' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'260036' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'260037' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'260038' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'260039' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'260040' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'260041' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'260042' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'260043' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'260044' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'260045' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'260046' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'260047' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'260048' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'260049' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'260050' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'260051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'260052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'260053' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'260054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'260055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'260056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'260057' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'260058' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'260059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'260060' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'260061' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'260062' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'260063' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'260064' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'260065' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'260066' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'260067' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'260068' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'260069' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'260070' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'260071' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'260072' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'260073' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'260074' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'260075' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'260076' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'260077' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'260078' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'260079' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'260080' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'260081' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'260082' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'260083' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'260084' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'260085' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'260086' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'260087' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'260088' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'260089' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'260090' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'260091' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'260092' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'260093' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'260094' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'260095' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'260096' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'260097' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'260098' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'260099' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'260100' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'260101' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'260102' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'260103' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'260104' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'260105' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'260106' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'260107' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'260108' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'260109' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'260110' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'260111' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'260112' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'260113' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'260114' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'260115' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'260116' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'260117' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'260118' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'260119' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'260120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'260121' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'260122' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'260123' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'260124' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'260125' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'260126' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'260127' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'260128' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'260129' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'260130' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'260132' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'260133' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'260134' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'260135' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'260136' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'260137' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'260138' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'260139' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'260140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'260141' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'260142' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'260143' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'260144' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'260145' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'260146' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'260147' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'260148' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'260149' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'260150' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'260151' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'260152' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'260153' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'260154' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'260155' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'260156' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'260157' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'260158' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'260159' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'260160' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'260161' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'260162' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'260163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'260164' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Relative clear air turbulence (RCAT) -'260165' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'260166' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'260167' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'260168' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'260169' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'260170' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'260171' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'260172' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'260173' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'260174' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'260175' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'260176' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'260177' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'260178' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'260179' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'260180' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'260181' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'260182' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'260183' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'260184' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'260185' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'260186' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'260187' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'260188' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'260189' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'260190' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'260191' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'260192' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'260193' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'260194' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'260195' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'260196' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'260197' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'260198' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'260199' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'260200' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'260201' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'260202' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'260203' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'260204' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'260205' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'260206' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'260207' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'260208' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'260209' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'260210' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'260211' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'260212' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'260213' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'260214' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'260215' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'260216' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'260217' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'260218' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'260219' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'260220' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'260221' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'260222' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'260223' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'260224' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'260225' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'260226' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'260227' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'260228' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'260229' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'260230' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'260231' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'260232' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'260233' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'260234' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'260235' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'260236' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'260237' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'260238' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'260239' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'260240' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'260241' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'260509' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'3003' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'3008' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'3009' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'3015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'3016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'3017' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'3019' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'3020' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'3021' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'3022' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'3023' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'3025' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'3026' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'3027' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'3028' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'3029' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'3030' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'3037' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'3038' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'3041' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'3042' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'3045' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'3046' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'3049' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'3050' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'3054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'3056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'3059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'3060' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'3063' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'3067' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'3068' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'3069' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'3070' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'3086' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'3088' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'3089' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'3092' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'3093' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'3094' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'3095' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'3096' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'3097' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'3098' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'3099' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'3102' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'3103' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'3104' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'3105' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'3106' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'3109' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'3117' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'3119' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'3120' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'3126' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre wind gust of at least 15 m/s -'131070' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#10 metre wind gust of at least 20 m/s -'131071' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - } -#Convective inhibition -'228001' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'228002' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'228141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Fall water equivalent -'228144' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'228164' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Field capacity -'228170' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wilting point -'228171' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'228228' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib2/parameters.def b/eccodes/definitions.save/grib2/parameters.def deleted file mode 100644 index 63290256..00000000 --- a/eccodes/definitions.save/grib2/parameters.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -transient dummyc=0: hidden; - - -concept paramIdLegacyECMF(defaultParameter,"paramId.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy,hidden; -concept paramIdECMF (paramIdLegacyECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy; -concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type; - -concept shortNameLegacyECMF(defaultShortName,"shortName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; -concept shortNameECMF (shortNameLegacyECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1): no_copy,dump; - -concept unitsLegacyECMF(defaultName,"units.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,hidden; -concept unitsECMF (unitsLegacyECMF,"units.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; -concept units (unitsECMF,"units.def",conceptsDir2,conceptsDir1): no_copy; - -concept nameLegacyECMF(defaultName,"name.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; -concept nameECMF(nameLegacyECMF,"name.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1): no_copy,dump; - -concept cfNameLegacyECMF(defaultShortName,"cfName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; -concept cfNameECMF(cfNameLegacyECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : no_copy,dump; - -concept cfVarNameLegacyECMF(defaultShortName,"cfVarName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; -concept cfVarNameECMF (cfVarNameLegacyECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1): no_copy,dump; - -# modelName: Contribution from Daniel Lee @ DWD -concept modelName (defaultName,"modelName.def",conceptsDir2,conceptsDir1): no_copy,dump,read_only; - -template_nofail names "grib2/products_[productionStatusOfProcessedData].def"; - -meta ifsParam ifs_param(paramId,type); diff --git a/eccodes/definitions.save/grib2/products_0.def b/eccodes/definitions.save/grib2/products_0.def deleted file mode 100644 index 1f924193..00000000 --- a/eccodes/definitions.save/grib2/products_0.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Operational products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; diff --git a/eccodes/definitions.save/grib2/products_1.def b/eccodes/definitions.save/grib2/products_1.def deleted file mode 100644 index bcf4b6d5..00000000 --- a/eccodes/definitions.save/grib2/products_1.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Operationl test products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; diff --git a/eccodes/definitions.save/grib2/products_10.def b/eccodes/definitions.save/grib2/products_10.def deleted file mode 100644 index bafd04a6..00000000 --- a/eccodes/definitions.save/grib2/products_10.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Copernicus regional reanalysis (CARRA/CERRA) -constant marsExpver = 'prod'; -include "grib2/products_crra.def" diff --git a/eccodes/definitions.save/grib2/products_11.def b/eccodes/definitions.save/grib2/products_11.def deleted file mode 100644 index 6084a0b3..00000000 --- a/eccodes/definitions.save/grib2/products_11.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Copernicus regional reanalysis (CARRA/CERRA) -constant marsExpver = 'test'; -include "grib2/products_crra.def" diff --git a/eccodes/definitions.save/grib2/products_2.def b/eccodes/definitions.save/grib2/products_2.def deleted file mode 100644 index 9cc75a39..00000000 --- a/eccodes/definitions.save/grib2/products_2.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Research products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; diff --git a/eccodes/definitions.save/grib2/products_3.def b/eccodes/definitions.save/grib2/products_3.def deleted file mode 100644 index 1087302a..00000000 --- a/eccodes/definitions.save/grib2/products_3.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Re-analysis products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; diff --git a/eccodes/definitions.save/grib2/products_4.def b/eccodes/definitions.save/grib2/products_4.def deleted file mode 100644 index ea15b4f7..00000000 --- a/eccodes/definitions.save/grib2/products_4.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Tigge -constant marsExpver = 'prod'; -include "grib2/products_tigge.def" diff --git a/eccodes/definitions.save/grib2/products_5.def b/eccodes/definitions.save/grib2/products_5.def deleted file mode 100644 index 151b4e64..00000000 --- a/eccodes/definitions.save/grib2/products_5.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Tigge -constant marsExpver = 'test'; -include "grib2/products_tigge.def" diff --git a/eccodes/definitions.save/grib2/products_6.def b/eccodes/definitions.save/grib2/products_6.def deleted file mode 100644 index 28a608b9..00000000 --- a/eccodes/definitions.save/grib2/products_6.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# S2S -constant marsExpver = 'prod'; -include "grib2/products_s2s.def" diff --git a/eccodes/definitions.save/grib2/products_7.def b/eccodes/definitions.save/grib2/products_7.def deleted file mode 100644 index c691c995..00000000 --- a/eccodes/definitions.save/grib2/products_7.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# S2S test -constant marsExpver = 'test'; -include "grib2/products_s2s.def" diff --git a/eccodes/definitions.save/grib2/products_8.def b/eccodes/definitions.save/grib2/products_8.def deleted file mode 100644 index a1c28ffc..00000000 --- a/eccodes/definitions.save/grib2/products_8.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Uncertainties in ensembles of regional re-analysis project (UERRA) -constant marsExpver = 'prod'; -include "grib2/products_uerra.def" diff --git a/eccodes/definitions.save/grib2/products_9.def b/eccodes/definitions.save/grib2/products_9.def deleted file mode 100644 index 3b2d3a4d..00000000 --- a/eccodes/definitions.save/grib2/products_9.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Uncertainties in ensembles of regional re-analysis project test (UERRA) -constant marsExpver = 'test'; -include "grib2/products_uerra.def" diff --git a/eccodes/definitions.save/grib2/products_crra.def b/eccodes/definitions.save/grib2/products_crra.def deleted file mode 100644 index 4bf34192..00000000 --- a/eccodes/definitions.save/grib2/products_crra.def +++ /dev/null @@ -1,108 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Copernicus regional reanalysis (CARRA/CERRA) -constant marsClass = 'rr'; - -alias tigge_short_name=shortName; -alias short_name=shortName; -alias parameter=paramId; -alias tigge_name=name; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -# Special UERRA rule for level type 103 'Specified height level above ground (m)' -if(typeOfFirstFixedSurface == 103) { - # only the parameters above 10m - if (level > 10) { - constant heightLevelName = 'hl'; - alias mars.levtype = heightLevelName; - # levelist was unaliased in template.4.horizontal.def so we must have it back - alias mars.levelist = level; - } -} -if(typeOfFirstFixedSurface == 118) { - constant levTypeName = 'ml'; - alias mars.levtype = levTypeName; -} - -# See GRIB-871 and ECC-854 -if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { - alias level = bottomLevel; -} - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.origin = centre; - -if (section2Used == 1) { - alias mars.origin = crraSuiteID; # origin is the suiteName - unalias mars.domain; - unalias mars.model; -} - -# See GRIB-911 re typeOfProcessedData values in UERRA -concept marsType { - - fc = { - typeOfProcessedData = 1; - } - "9" = { - typeOfProcessedData = 1; - } - - an = { - typeOfProcessedData = 0; - } - "2" = { - typeOfProcessedData = 0; - } - - # See ECC-456. Special rule for Swedish data - # oi is Optimal Interpolation - oi = { - centre = 82; - typeOfGeneratingProcess = 0; - generatingProcessIdentifier = 50; - } - "4" = { - centre = 82; - typeOfGeneratingProcess = 0; - generatingProcessIdentifier = 50; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -# Cannot use typeOfProcessedData for stream. See GRIB-911 -concept marsStream { - - oper = { - productDefinitionTemplateNumber = 8; - } - - oper = { - productDefinitionTemplateNumber = 0; - } - - enda = { - productDefinitionTemplateNumber = 11; - } - - enda = { - productDefinitionTemplateNumber = 1; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; diff --git a/eccodes/definitions.save/grib2/products_s2s.def b/eccodes/definitions.save/grib2/products_s2s.def deleted file mode 100644 index 48d09e58..00000000 --- a/eccodes/definitions.save/grib2/products_s2s.def +++ /dev/null @@ -1,125 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# S2S -constant marsClass = 's2'; -constant marsModel = 'glob'; -alias is_s2s = one; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.model = marsModel; - -# See GRIB-761. For Italy, subCentre 102 is ISAC-CNR -if (centre is "cnmc" && subCentre == 102) { - constant cnmc_isac = 'isac'; - alias mars.origin = cnmc_isac; -} else { - alias mars.origin = centre; -} - -unalias mars.domain; - -concept marsType { - - fc = { - typeOfProcessedData = 2; - } - "9" = { - typeOfProcessedData = 2; - } - - cf = { - typeOfProcessedData = 3; - } - "10" = { - typeOfProcessedData = 3; - } - - pf = { - typeOfProcessedData = 4; - } - "11" = { - typeOfProcessedData = 4; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -concept marsStream { - - oper = { - typeOfProcessedData = 0; - } - - oper = { - typeOfProcessedData = 2; - } - - enfo = { - typeOfProcessedData = 3; - } - - enfo = { - typeOfProcessedData = 4; - } - - enfo = { - typeOfProcessedData = 8; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; - -# Normally MARS step is endStep but for monthly means we want stepRange -if (stepType is "avg") { - alias mars.step = stepRange; -} - -if (isHindcast == 1) { - # S2S reforecasts - constant theHindcastMarsStream = "enfh"; - alias mars.stream = theHindcastMarsStream; - alias mars.hdate = dataDate; - alias mars.date = modelVersionDate; - alias mars.time = modelVersionTime; -} - -# ECC-891, ECC-1013 -concept is_ocean2d_param(zero) { - '1' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255; } - '1' = { discipline=10; typeOfFirstFixedSurface=20; scaleFactorOfFirstFixedSurface=2; scaledValueOfFirstFixedSurface=29315; typeOfSecondFixedSurface=255; } - '1' = { discipline=10; typeOfFirstFixedSurface=169; scaleFactorOfFirstFixedSurface=2; scaledValueOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } - '1' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=160; scaleFactorOfSecondFixedSurface=0; scaledValueOfSecondFixedSurface=300; } - '0' = { dummy=1; } -} : no_copy; -concept is_ocean3d_param(zero) { - '1' = { discipline=10; typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160; } - '0' = { discipline=10; typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=160; scaleFactorOfSecondFixedSurface=0; scaledValueOfSecondFixedSurface=300; } - '0' = { dummy=1; } -}: no_copy; - -if (is_ocean2d_param) { - constant oceanLevName = 'o2d'; - alias mars.levtype = oceanLevName; - unalias mars.levelist; -} - -if (is_ocean3d_param) { - constant oceanLevName = 'o3d'; - alias mars.levtype = oceanLevName; - unalias mars.levelist; -} diff --git a/eccodes/definitions.save/grib2/products_tigge.def b/eccodes/definitions.save/grib2/products_tigge.def deleted file mode 100644 index 9a3a4ae8..00000000 --- a/eccodes/definitions.save/grib2/products_tigge.def +++ /dev/null @@ -1,95 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Tigge -constant marsClass = 'ti'; -constant marsModel = 'glob'; -alias is_tigge = one; - -alias tigge_short_name=shortName; -alias short_name=shortName; -alias parameter=paramId; -alias tigge_name=name; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -if(levtype is "sfc") -{ - unalias mars.levelist; -} - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.model = marsModel; -alias mars.origin = centre; - -# Tigge-LAM rules -# productionStatusOfProcessedData == 4 -if (section2Used == 1) { - constant marsLamModel = 'lam'; - alias mars.model = marsLamModel; # model redefined. It is not 'glob' - alias mars.origin = tiggeSuiteID; # origin is the suiteName for Tigge-LAM - unalias mars.domain; # No mars domain needed -} - -concept marsType { - - fc = { - typeOfProcessedData = 2; - } - "9" = { - typeOfProcessedData = 2; - } - - cf = { - typeOfProcessedData = 3; - } - "10" = { - typeOfProcessedData = 3; - } - - pf = { - typeOfProcessedData = 4; - } - "11" = { - typeOfProcessedData = 4; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -concept marsStream { - - oper = { - typeOfProcessedData = 0; - } - - oper = { - typeOfProcessedData = 2; - } - - enfo = { - typeOfProcessedData = 3; - } - - enfo = { - typeOfProcessedData = 4; - } - - enfo = { - typeOfProcessedData = 8; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; diff --git a/eccodes/definitions.save/grib2/products_uerra.def b/eccodes/definitions.save/grib2/products_uerra.def deleted file mode 100644 index 3879ed2c..00000000 --- a/eccodes/definitions.save/grib2/products_uerra.def +++ /dev/null @@ -1,103 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Uncertainties in ensembles of regional re-analysis project (UERRA) -constant marsClass = 'ur'; - -alias tigge_short_name=shortName; -alias short_name=shortName; -alias parameter=paramId; -alias tigge_name=name; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -# Special UERRA rule for level type 103 'Specified height level above ground (m)' -if(typeOfFirstFixedSurface == 103) { - # only the parameters above 10m - if (level > 10) { - constant heightLevelName = 'hl'; - alias mars.levtype = heightLevelName; - # levelist was unaliased in template.4.horizontal.def so we must have it back - alias mars.levelist = level; - } -} -if(typeOfFirstFixedSurface == 118) { - constant levTypeName = 'ml'; - alias mars.levtype = levTypeName; -} - -# See GRIB-871 and ECC-854 -if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { - alias level = bottomLevel; - #alias mars.levelist = level; -} - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.origin = centre; - -# See GRIB-911 re typeOfProcessedData values in UERRA -concept marsType { - - fc = { - typeOfProcessedData = 1; - } - "9" = { - typeOfProcessedData = 1; - } - - an = { - typeOfProcessedData = 0; - } - "2" = { - typeOfProcessedData = 0; - } - - # See ECC-456. Special rule for Swedish data - # oi is Optimal Interpolation - oi = { - centre = 82; - typeOfGeneratingProcess = 0; - generatingProcessIdentifier = 50; - } - "4" = { - centre = 82; - typeOfGeneratingProcess = 0; - generatingProcessIdentifier = 50; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -# Cannot use typeOfProcessedData for stream. See GRIB-911 -concept marsStream { - - oper = { - productDefinitionTemplateNumber = 8; - } - - oper = { - productDefinitionTemplateNumber = 0; - } - - enda = { - productDefinitionTemplateNumber = 11; - } - - enda = { - productDefinitionTemplateNumber = 1; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; diff --git a/eccodes/definitions.save/grib2/rules.def b/eccodes/definitions.save/grib2/rules.def deleted file mode 100644 index c1f74af5..00000000 --- a/eccodes/definitions.save/grib2/rules.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Experimental stuff - -transient isAccumulation = 0 ; -transient isEPS = 0 ; - -when(isAccumulation and !isEPS) - set productDefinitionTemplateNumber = 8; - -when(isAccumulation and isEPS) - set productDefinitionTemplateNumber = 11; diff --git a/eccodes/definitions.save/grib2/section.0.def b/eccodes/definitions.save/grib2/section.0.def deleted file mode 100644 index 0268e173..00000000 --- a/eccodes/definitions.save/grib2/section.0.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -position offsetSection0; -constant section0Length=16; -ascii[4] identifier = "GRIB" : read_only; -unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; -codetable[1] discipline ('0.0.table',masterDir,localDir) : dump; -unsigned[1] editionNumber = 2 : edition_specific,dump; - -alias ls.edition = editionNumber; -section_length[8] totalLength; -position startOfHeaders; - -meta section0Pointer section_pointer(offsetSection0,section0Length,0); diff --git a/eccodes/definitions.save/grib2/section.1.def b/eccodes/definitions.save/grib2/section.1.def deleted file mode 100644 index fd58c35f..00000000 --- a/eccodes/definitions.save/grib2/section.1.def +++ /dev/null @@ -1,147 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -position offsetSection1; -section_length[4] section1Length ; -meta section1Pointer section_pointer(offsetSection1,section1Length,1); - -unsigned[1] numberOfSection = 1 :read_only; - -codetable[2] centre 'common/c-11.table' : dump,string_type; -alias identificationOfOriginatingGeneratingCentre=centre; -meta centreDescription codetable_title(centre); - -alias parameter.centre=centre; -alias ls.centre=centre; -alias originatingCentre=centre; - -unsigned[2] subCentre : dump; - -_if (subCentre==98 ) { -alias centreForLocal=subCentre; -} else { -alias centreForLocal=centre; -} - -codetable[1] tablesVersion 'grib2/tables/1.0.table' = tablesVersionLatest : edition_specific; -alias gribMasterTablesVersionNumber=tablesVersion; - -transient masterDir="grib2/tables/[tablesVersion]"; -if (tablesVersion > tablesVersionLatest) { - transient masterDir="grib2/tables/[tablesVersionLatest]"; -} -when (tablesVersion!=255) { - set masterDir="grib2/tables/[tablesVersion]"; -} else { - set masterDir="grib2/tables/4"; -} - -codetable[1] localTablesVersion 'grib2/tables/local/[centreForLocal]/1.1.table' ; -alias versionNumberOfGribLocalTables=localTablesVersion; - -transient localDir=""; -if (localTablesVersion != 0 and localTablesVersion != 255) { - transient localDir="grib2/tables/local/[centre]/[localTablesVersion]"; -} - -# Significance of Reference Time -codetable[1] significanceOfReferenceTime ('1.2.table',masterDir,localDir) = 1 : dump; - -# Year -# (4 digits) -unsigned[2] year ; - -# Month -unsigned[1] month ; - -# Day -unsigned[1] day ; - -# Hour -unsigned[1] hour ; - -# Minute -unsigned[1] minute ; - -# Second -unsigned[1] second ; - -meta dataDate g2date(year,month,day) : dump; -alias mars.date = dataDate; -alias ls.date = dataDate; - -meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; - -meta dataTime time(hour,minute,second) : dump; -alias mars.time = dataTime; - -# Production status of processed data in this GRIB message -codetable[1] productionStatusOfProcessedData ('1.3.table',masterDir,localDir) : dump; - -# Type of processed data in this GRIB message -codetable[1] typeOfProcessedData ('1.4.table',masterDir,localDir) = 255 : dump,string_type,no_fail; - -alias ls.dataType=typeOfProcessedData; - -meta md5Section1 md5(offsetSection1,section1Length); - -meta selectStepTemplateInterval select_step_template(productDefinitionTemplateNumber,0); # 0 -> not instant -meta selectStepTemplateInstant select_step_template(productDefinitionTemplateNumber,1); # 1 -> instant - -transient stepTypeInternal="instant" : hidden,no_copy; - -concept stepType { - "instant" = {selectStepTemplateInstant=1; stepTypeInternal="instant";} - "avg" = {selectStepTemplateInterval=1; stepTypeInternal="avg";} - "avgd" = {selectStepTemplateInterval=1; stepTypeInternal="avgd";} - "accum" = {selectStepTemplateInterval=1; stepTypeInternal="accum";} - "max" = {selectStepTemplateInterval=1; stepTypeInternal="max";} - "min" = {selectStepTemplateInterval=1; stepTypeInternal="min";} - "diff" = {selectStepTemplateInterval=1; stepTypeInternal="diff";} - "sdiff" = {selectStepTemplateInterval=1; stepTypeInternal="sdiff";} - "rms" = {selectStepTemplateInterval=1; stepTypeInternal="rms";} - "sd" = {selectStepTemplateInterval=1; stepTypeInternal="sd";} - "cov" = {selectStepTemplateInterval=1; stepTypeInternal="cov";} - "ratio" = {selectStepTemplateInterval=1; stepTypeInternal="ratio";} - "stdanom" = {selectStepTemplateInterval=1; stepTypeInternal="stdanom";} - "sum" = {selectStepTemplateInterval=1; stepTypeInternal="sum";} -} - -# 0=atmospheric chemical constituents -# 1=atmospheric chemical constituents based on a distribution function -meta is_chemical g2_chemical(productDefinitionTemplateNumber, stepType, 0); -meta is_chemical_distfn g2_chemical(productDefinitionTemplateNumber, stepType, 1); - -# 0=aerosol -# 1=optical properties of aerosol -meta is_aerosol g2_aerosol(productDefinitionTemplateNumber, stepType, 0); -meta is_aerosol_optical g2_aerosol(productDefinitionTemplateNumber, stepType, 1); - -transient setCalendarId = 0 ; -transient deleteCalendarId = 0 ; -alias calendarIdPresent = zero; -if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { - alias calendarIdPresent = present; - codetable[2] calendarIdentificationTemplateNumber ('1.5.table',masterDir,localDir) : dump,string_type,no_fail; - template calendarIdentification "grib2/template.1.[calendarIdentificationTemplateNumber:l].def"; -} - -concept is_uerra(zero) { - '1' = {productionStatusOfProcessedData=10;} - '1' = {productionStatusOfProcessedData=11;} - '1' = {productionStatusOfProcessedData=9;} - '1' = {productionStatusOfProcessedData=8;} - '0' = {dummy=1;} -} - -constant conceptsMasterDir="grib2" : hidden; -constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; -constant conceptsLocalDirECMF="grib2/localConcepts/ecmf" : hidden; - -# ECC-806: Local concepts precedence order -if (preferLocalConcepts) { - constant conceptsDir1 = conceptsMasterDir : hidden; - constant conceptsDir2 = conceptsLocalDirAll : hidden; -} else { - constant conceptsDir1 = conceptsLocalDirAll : hidden; - constant conceptsDir2 = conceptsMasterDir : hidden; -} diff --git a/eccodes/definitions.save/grib2/section.2.def b/eccodes/definitions.save/grib2/section.2.def deleted file mode 100644 index f4d4f8dd..00000000 --- a/eccodes/definitions.save/grib2/section.2.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -position offsetSection2; -section_length[4] section2Length ; - -meta section2Pointer section_pointer(offsetSection2,section2Length,2); -unsigned[1] numberOfSection = 2 :read_only; - -alias tiggeSuiteID = zero; - -# This is a workaround for TIGGE: allow creation of an 'empty' section 2 -# so we can create bit-identical grib 2 files for backward compatibility -transient addEmptySection2 = 0; - -if ( addEmptySection2 == 0 ) { - if ( grib2LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { - alias section2Used=one; - - if(productionStatusOfProcessedData == 4 || productionStatusOfProcessedData == 5) { - # This is TIGGE-LAM because of the productionStatusOfProcessedData and the non-empty section 2 - codetable[2] tiggeLocalVersion 'grib2/tiggeLocalVersion.table' = 1 : dump; - template tiggeSection "grib2/local.tigge.[tiggeLocalVersion:l].def"; - } - - if(productionStatusOfProcessedData == 10 || productionStatusOfProcessedData == 11) { - # crra = Copernicus Regional ReAnalysis - codetable[2] crraLocalVersion 'grib2/crraLocalVersion.table' = 1 : dump; - template crraSection "grib2/local.crra.[crraLocalVersion:l].def"; - } - - codetable[2] grib2LocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; - - if (grib2LocalSectionNumber!=0) { - template_nofail local "grib2/local.[centreForLocal:l].def"; - } else { - constant deleteLocalDefinition=1; - } - position offsetAfterCentreLocalSection; - } -} - -section_padding section2Padding : read_only; - - - diff --git a/eccodes/definitions.save/grib2/section.3.def b/eccodes/definitions.save/grib2/section.3.def deleted file mode 100644 index b748078d..00000000 --- a/eccodes/definitions.save/grib2/section.3.def +++ /dev/null @@ -1,126 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START grib2::section -# SECTION 3, GRID DEFINITION SECTION -# Length of section in octets - -# For grib2 -> 1 -constant gridDescriptionSectionPresent = 1; -position offsetSection3; - -section_length[4] section3Length ; -meta section3Pointer section_pointer(offsetSection3,section3Length,3); - -# Number of section -unsigned[1] numberOfSection = 3 :read_only; - -# Source of grid definition -codetable[1] sourceOfGridDefinition ('3.0.table',masterDir,localDir) ; - -# Number of data points -unsigned[4] numberOfDataPoints : dump; -alias numberOfPoints=numberOfDataPoints; - -# Number of octets for optional list of numbers defining number of points -unsigned[1] numberOfOctectsForNumberOfPoints; - -# Interpretation of list of numbers defining number of points -codetable[1] interpretationOfNumberOfPoints ('3.11.table',masterDir,localDir) : dump; - -if(numberOfOctectsForNumberOfPoints == 0){ - transient PLPresent = 0 ; -}else{ - transient PLPresent = 1 ; -} - -codetable[2] gridDefinitionTemplateNumber ('3.1.table',masterDir,localDir) =0 : dump,edition_specific; -meta gridDefinitionDescription codetable_title(gridDefinitionTemplateNumber); - -alias isRotatedGrid=zero; - -template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; - -if(PLPresent){ - if(numberOfOctectsForNumberOfPoints == 1){ - unsigned[1] pl[Nj] : dump; - } - if(numberOfOctectsForNumberOfPoints == 2){ - unsigned[2] pl[Nj] : dump; - } - if(numberOfOctectsForNumberOfPoints == 3){ - unsigned[3] pl[Nj] : dump; - } - alias geography.pl=pl; -} - -when (PLPresent == 0) { - set numberOfOctectsForNumberOfPoints = 0; - set interpretationOfNumberOfPoints = 0; -} - -section_padding section3Padding : read_only; - -concept gridType { - "regular_ll" = { gridDefinitionTemplateNumber=0; PLPresent=0; } - "reduced_ll" = { gridDefinitionTemplateNumber=0; PLPresent=1; } - "rotated_ll" = { gridDefinitionTemplateNumber=1; PLPresent=0; } - "rotated_ll_nceprap" = { gridDefinitionTemplateNumber=32679; PLPresent=0; } - "stretched_ll" = { gridDefinitionTemplateNumber=2; PLPresent=0; } - "stretched_rotated_ll" = { gridDefinitionTemplateNumber=3; PLPresent=0; } - "mercator" = { gridDefinitionTemplateNumber=10; PLPresent=0; } - "transverse_mercator" = { gridDefinitionTemplateNumber=12; PLPresent=0; } - "polar_stereographic" = { gridDefinitionTemplateNumber=20; PLPresent=0; } - "lambert" = { gridDefinitionTemplateNumber=30; PLPresent=0; } - "albers" = { gridDefinitionTemplateNumber=31; PLPresent=0; } - - "regular_gg" = { gridDefinitionTemplateNumber=40; PLPresent=0; } - "reduced_gg" = { gridDefinitionTemplateNumber=40; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - - "rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } - "reduced_rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - - "stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } - "reduced_stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - - "stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } - "reduced_stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - -# For consistency add the prefix regular_ -"regular_rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } # = rotated_gg -"regular_stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } # = stretched_gg -"regular_stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } # = stretched_rotated_gg - - "sh" = { gridDefinitionTemplateNumber=50; PLPresent=0;} - "rotated_sh" = { gridDefinitionTemplateNumber=51; PLPresent=0;} - "stretched_sh" = { gridDefinitionTemplateNumber=52; PLPresent=0;} - "stretched_rotated_sh" = { gridDefinitionTemplateNumber=53; PLPresent=0;} - "space_view" = { gridDefinitionTemplateNumber=90; PLPresent=0;} - "triangular_grid" = { gridDefinitionTemplateNumber=100;PLPresent=0;} - "unstructured_grid" = { gridDefinitionTemplateNumber=101;PLPresent=0;} - "equatorial_azimuthal_equidistant" = { gridDefinitionTemplateNumber=110; PLPresent=0;} - "azimuth_range" = { gridDefinitionTemplateNumber=120;PLPresent=0; } - "irregular_latlon" = { gridDefinitionTemplateNumber=130;PLPresent=0; } - "lambert_azimuthal_equal_area"= { gridDefinitionTemplateNumber=140;PLPresent=0; } - "cross_section" = { gridDefinitionTemplateNumber=1000;PLPresent=0; } - "Hovmoller" = { gridDefinitionTemplateNumber=1100;PLPresent=0; } - "time_section" = { gridDefinitionTemplateNumber=1200;PLPresent=0; } - "lambert_lam" = { gridDefinitionTemplateNumber=33; PLPresent=0; } - "mercator_lam" = { gridDefinitionTemplateNumber=13; PLPresent=0; } - "polar_stereographic_lam" = { gridDefinitionTemplateNumber=23; PLPresent=0; } - "lambert_bf" = { gridDefinitionTemplateNumber=63; PLPresent=0; } - "mercator_bf" = { gridDefinitionTemplateNumber=61; PLPresent=0; } - "polar_stereographic_bf" = { gridDefinitionTemplateNumber=62; PLPresent=0; } - "unknown" = {PLPresent=0;} - "unknown_PLPresent" = {PLPresent=1;} -} : dump; - -alias ls.gridType=gridType; -alias geography.gridType=gridType; -alias typeOfGrid=gridType; - -meta md5Section3 md5(offsetSection3,section3Length); -alias md5GridSection = md5Section3; - -meta projSourceString proj_string(gridType, 0): hidden; -meta projTargetString proj_string(gridType, 1): hidden; -alias projString = projTargetString : hidden; diff --git a/eccodes/definitions.save/grib2/section.4.def b/eccodes/definitions.save/grib2/section.4.def deleted file mode 100644 index b98ac194..00000000 --- a/eccodes/definitions.save/grib2/section.4.def +++ /dev/null @@ -1,78 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -transient timeRangeIndicator=0 : no_copy,hidden; - -position offsetSection4; -section_length[4] section4Length ; -meta section4Pointer section_pointer(offsetSection4,section4Length,4); - -unsigned[1] numberOfSection = 4:read_only; - -unsigned[2] NV : dump ; -alias numberOfVerticalCoordinateValues=NV ; -alias numberOfCoordinatesValues=NV; -# For table 4.5, code 150 Generalized vertical height coordinate -alias numberOfVerticalGridDescriptors=NV ; - -# Product Definition Template Number - -transient neitherPresent = 0; - -if (centre==7 || centre==46) { - alias disableGrib1LocalSection=one; -} - -codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; - -if (section2Used == 1) { - when (new()) { - set_nofail productDefinitionTemplateNumber=productDefinitionTemplateNumberInternal; - } -} -transient genVertHeightCoords = 0; -template productDefinition "grib2/template.4.[productDefinitionTemplateNumber:l].def" ; - -if (defined(marsStream) && defined(marsType)) { - template_nofail marsKeywords1 "mars/grib.[marsStream:s].[marsType:s].def"; -} - -template parameters "grib2/parameters.def"; - -# Detect if this is for Generalized vertical height coordinates -if (defined(typeOfFirstFixedSurface)) { - if (typeOfFirstFixedSurface == 150) { - transient genVertHeightCoords = 1; - transient PVPresent = 0; - } -} - -if (genVertHeightCoords) { - # Generalized vertical height coordinate case - ieeefloat nlev : dump ; - ieeefloat numberOfVGridUsed : dump; - byte[16] uuidOfVGrid : dump; - - alias numberOfVerticalCoordinateValues = nlev; - alias numberOfCoordinatesValues = nlev; - alias numberOfVerticalGridDescriptors = nlev; -} -else { - if (NV == 0){ - transient PVPresent = 0; - } else { - transient PVPresent = 1; - } - # See GRIB-547 - if (PVPresent || NV>0){ - ieeefloat pv[numberOfCoordinatesValues] : dump; - alias vertical.pv=pv; - } - - # GRIB-534: To easily remove vertical coordinates, set this key to 1 - concept_nofail deletePV(unknown) { - "1" = { PVPresent=0; NV=0; } - } - -} - -meta md5Section4 md5(offsetSection4,section4Length); diff --git a/eccodes/definitions.save/grib2/section.5.def b/eccodes/definitions.save/grib2/section.5.def deleted file mode 100644 index ec77e10c..00000000 --- a/eccodes/definitions.save/grib2/section.5.def +++ /dev/null @@ -1,65 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -position offsetBSection5; - -# START grib2::section -# SECTION 5, DATA REPRESENTATION SECTION -# Length of section in octets - -# (nn) -position offsetSection5; -section_length[4] section5Length ; - -meta section5 section_pointer(offsetSection5,section5Length,5); - -# Number of section -unsigned[1] numberOfSection =5 : read_only; - -# Number of data points where one or more values are specified in Section 7 when a bit map is present, -# total number of data pints when a bit map is absent. -unsigned[4] numberOfValues : dump; -alias numberOfCodedValues=numberOfValues; -alias numberOfEffectiveValues=numberOfValues; - -# Data Representation Template Number -codetable[2] dataRepresentationTemplateNumber ('5.0.table',masterDir,localDir) : edition_specific; - -concept packingType (unknown) { -#set uses the last one -#get returns the first match - "grid_simple" = { dataRepresentationTemplateNumber = 0; } - "spectral_complex" = { dataRepresentationTemplateNumber = 51; spectralType=1; spectralMode=1; } - "spectral_simple" = { dataRepresentationTemplateNumber = 50; spectralType=1; spectralMode=1; } - "grid_simple_matrix" = { dataRepresentationTemplateNumber = 1; } - "grid_complex" = { dataRepresentationTemplateNumber = 2; } - "grid_complex_spatial_differencing" = { dataRepresentationTemplateNumber = 3; } - "grid_jpeg" = { dataRepresentationTemplateNumber = 40000; } - "grid_jpeg" = { dataRepresentationTemplateNumber = 40; } - "grid_png" = { dataRepresentationTemplateNumber = 40010; } - "grid_png" = { dataRepresentationTemplateNumber = 41; } - "grid_ccsds" = { dataRepresentationTemplateNumber = 42; } - "grid_ieee" = { dataRepresentationTemplateNumber = 4; } - "grid_second_order" = { dataRepresentationTemplateNumber = 50001; } - "grid_second_order" = { dataRepresentationTemplateNumber = 50002; } - "grid_second_order_boustrophedonic" = { dataRepresentationTemplateNumber = 50002; } - "grid_second_order_no_boustrophedonic" = { dataRepresentationTemplateNumber = 50001; } - "grid_second_order_row_by_row" = { dataRepresentationTemplateNumber = 50001; } - "grid_second_order_constant_width" = { dataRepresentationTemplateNumber = 50001; } - "grid_second_order_general_grib1" = { dataRepresentationTemplateNumber = 50001; } - "grid_second_order_no_SPD" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=0; } - "grid_second_order_SPD1" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=1; } - "grid_second_order_SPD2" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=2; } - "grid_second_order_SPD3" = { dataRepresentationTemplateNumber = 50001;orderOfSPD=3; } - "spectral_ieee" = { dataRepresentationTemplateNumber=50000; } - "grid_simple_log_preprocessing" = { dataRepresentationTemplateNumber = 61; } - "bifourier_complex" = { dataRepresentationTemplateNumber = 53; spectralType=2; } -} : dump; - -template dataRepresentation "grib2/template.5.[dataRepresentationTemplateNumber:l].def"; - -alias ls.packingType=packingType; -alias dataRepresentation=packingType; -alias typeOfPacking=packingType; -transient representationMode=0 :hidden,no_copy; - -meta md5Section5 md5(offsetSection5,section5Length); diff --git a/eccodes/definitions.save/grib2/section.6.def b/eccodes/definitions.save/grib2/section.6.def deleted file mode 100644 index 3cf18d72..00000000 --- a/eccodes/definitions.save/grib2/section.6.def +++ /dev/null @@ -1,63 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START grib2::section -# SECTION 6, BIT-MAP SECTION -# Length of section in octets -# (nn) -position offsetSection6; -position offsetBSection6; - -section_length[4] section6Length ; -meta section6 section_pointer(offsetSection6,section6Length,6); - -# Number of section -unsigned[1] numberOfSection = 6:read_only; - -# Bit-map indicator -codetable[1] bitMapIndicator ('6.0.table',masterDir,localDir) = 255 : dump; - -#transient bitmapPresent=1; -meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump; -transient missingValuesPresent = bitmapPresent : hidden, read_only; - -# Bitmap... -if(bitMapIndicator == 0) -{ - if(dataRepresentationTemplateNumber == 1) - { - if(matrixBitmapsPresent == 1) - { - meta primaryBitmap g2bitmap( tableReference, - missingValue, - offsetBSection6, - section6Length, - numberOfDataMatrices) : read_only; - } - else - { - meta geography.bitmap g2bitmap( tableReference, - missingValue, - offsetBSection6, - section6Length, - numberOfDataPoints) : read_only; - } - } - else - { - meta geography.bitmap g2bitmap( tableReference, - missingValue, - offsetBSection6, - section6Length, - numberOfDataPoints) : read_only; - } -} - -if(bitMapIndicator == 255) -{ - # No bitmap is used but some complex packing schemes embed the missing values in the data section - if (dataRepresentationTemplateNumber == 2 || dataRepresentationTemplateNumber == 3) { - transient missingValuesPresent = (missingValueManagementUsed != 0) : read_only; - } -} - -meta md5Section6 md5(offsetSection6,section6Length); diff --git a/eccodes/definitions.save/grib2/section.7.def b/eccodes/definitions.save/grib2/section.7.def deleted file mode 100644 index f83c9480..00000000 --- a/eccodes/definitions.save/grib2/section.7.def +++ /dev/null @@ -1,41 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# START grib2::section -# SECTION 7, DATA SECTION -# Length of section in octets -# (nn) - -position offsetSection7; - -section_length[4] section7Length ; -meta section7 section_pointer(offsetSection7,section7Length,7); - -# Number of section -unsigned[1] numberOfSection = 7:read_only; - -# Octets 6-nn : Data in a format described by Data Template 7.x, where x is the Data Representation -# Template number given in octets 10-11 of Section 5 -position offsetBeforeData; -#if (changed(dataRepresentationTemplateNumber)) { - template dataValues "grib2/template.7.[dataRepresentationTemplateNumber:l].def"; -#} - -meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; -meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; -alias setDecimalPrecision=changeDecimalPrecision; - -meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; - -meta getNumberOfValues size(values) : edition_specific,dump ; - -meta scaleValuesBy scale_values(values,missingValue) : edition_specific; -meta offsetValuesBy offset_values(values,missingValue) : edition_specific; - -concept productType(unknown) { - "obstat" = {grib2LocalSectionPresent=1; centre=98; grib2LocalSectionNumber=500;productDefinitionTemplateNumber=2000;} -} - -position offsetAfterData; -meta md5Section7 md5(offsetSection7,section7Length); -alias md5DataSection = md5Section7; - diff --git a/eccodes/definitions.save/grib2/section.8.def b/eccodes/definitions.save/grib2/section.8.def deleted file mode 100644 index e8f6ae1f..00000000 --- a/eccodes/definitions.save/grib2/section.8.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant section8Length=4; -position offsetSection8; -ascii[4] '7777' = "7777" : read_only; -meta section8Pointer section_pointer(offsetSection8,section8Length,8); - diff --git a/eccodes/definitions.save/grib2/sections.def b/eccodes/definitions.save/grib2/sections.def deleted file mode 100644 index e3e3f47b..00000000 --- a/eccodes/definitions.save/grib2/sections.def +++ /dev/null @@ -1,66 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 1 or new() ){ - position sectionPosition; - template section_1 "grib2/section.1.def"; -} - -lookup[1] sectionNumber(4); - -transient grib2LocalSectionPresent=0; -alias section2Used=zero; -alias setLocalDefinition=grib2LocalSectionPresent; -transient deleteLocalDefinition=0; - -if( (sectionNumber == 2 or grib2LocalSectionPresent>0) and deleteLocalDefinition == 0 ){ - position sectionPosition; - template section_2 "grib2/section.2.def"; -} -alias localUsePresent=section2Used; - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 3 or new() ){ - position sectionPosition; - template section_3 "grib2/section.3.def"; -} - - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 4 or new() ){ - position sectionPosition; - template section_4 "grib2/section.4.def"; -} - -# Used to mark end of headers. Can be accessed with grib_get_offset() -position endOfHeadersMarker; - -meta lengthOfHeaders evaluate( endOfHeadersMarker-startOfHeaders); -meta md5Headers md5(startOfHeaders,lengthOfHeaders); - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 5 or new() ){ - position sectionPosition; - template section_5 "grib2/section.5.def"; -} - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 6 or new() ){ - position sectionPosition; - template section_6 "grib2/section.6.def"; -} - -lookup[1] sectionNumber(4) ; - -if(sectionNumber == 7 or new() ){ - position sectionPosition; - template section_7 "grib2/section.7.def"; -} - - -#template metas "grib2/meta.def"; diff --git a/eccodes/definitions.save/grib2/shortName.def b/eccodes/definitions.save/grib2/shortName.def deleted file mode 100644 index fd3db074..00000000 --- a/eccodes/definitions.save/grib2/shortName.def +++ /dev/null @@ -1,4140 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 80 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 3 ; - scaleFactorOfLowerLimit = -2 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 200 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 31 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 45 ; - } -#Sea ice area fraction -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'rsn' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'sst' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'slt' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'10fg' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#Specific rain water content -'crwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'cswc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Total column cloud liquid water -'tclw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Total column cloud ice water -'tciw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Surface solar radiation downwards -'ssrd' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'strd' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net solar radiation -'tsr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'ewss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'nsss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Ozone mass mixing ratio -'o3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'tsn' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Specific cloud liquid water content -'clwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'ciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'cc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'lsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth -'sde' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Total precipitation of at least 25 mm -'tpg25' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 25 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 50 mm -'tpg50' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 50 ; - } -#10 metre wind gust of at least 10 m/s -'10fgg10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Probability of temperature standardized anomaly greater than 1 standard deviation -'ptsa_gt_1stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - } -#Probability of temperature standardized anomaly greater than 1.5 standard deviation -'ptsa_gt_1p5stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 15 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly greater than 2 standard deviation -'ptsa_gt_2stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = 2 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - } -#Probability of temperature standardized anomaly less than -1 standard deviation -'ptsa_lt_1stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -1 ; - probabilityType = 0 ; - } -#Probability of temperature standardized anomaly less than -1.5 standard deviation -'ptsa_lt_1p5stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -15 ; - } -#Probability of temperature standardized anomaly less than -2 standard deviation -'ptsa_lt_2stdev' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaledValueOfLowerLimit = -2 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - } -#Mean sea water potential temperature in the upper 300 m -'mswpt300m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Mean sea water temperature in the upper 300 m -'mswt300m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Sea surface practical salinity -'sos' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'mlotst010' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 169 ; - } -#2 metre specific humidity -'2sh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Nitrate aerosol optical depth at 550 nm -'niaod550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 62004 ; - } -#Ammonium aerosol optical depth at 550 nm -'amaod550' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; - typeOfSizeInterval = 255 ; - aerosolType = 62003 ; - is_aerosol_optical = 1 ; - } -#Ammonium aerosol mass mixing ratio -'aermr18diff' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Dry deposition of ammonium aerosol -'aerddpam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Sedimentation of ammonium aerosol -'aersdmam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'aerwdlam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'aerwdcam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Vertically integrated mass of ammonium aerosol -'aermssam' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - aerosolType = 62003 ; - } -#-10 degrees C isothermal level (atm) -'degm10l' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 26315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#0 degrees C isothermal level (atm) -'deg0l' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 27315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#10 metre wind gust in the last 3 hours -'10fg3' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'rhw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'rhi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'asn' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'fspc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'fcpc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Maximum CAPE in the last 6 hours -'mxcape6' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Maximum CAPES in the last 6 hours -'mxcapes6' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 19 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - } -#2 metre relative humidity with respect to water -'2rhw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Liquid water content in snow pack -'lwcs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Height of convective cloud top -'hcct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Instantaneous total lightning flash density -'litoti' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged total lightning flash density in the last hour -'litota1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - } -#Instantaneous cloud-to-ground lightning flash density -'licgi' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'licga1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Unbalanced component of specific humidity -'ucq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'ucclwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'ucciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Averaged total lightning flash density in the last 3 hours -'litota3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged total lightning flash density in the last 6 hours -'litota6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'licga3' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'licga6' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Soil moisture top 20 cm -'sm20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil moisture top 100 cm -'sm100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'st20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 100 cm -'st100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Water runoff and drainage -'ro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mixed-layer CAPE in the lowest 50 hPa -'mlcape50' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 50 hPa -'mlcin50' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CAPE in the lowest 100 hPa -'mlcape100' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 100 hPa -'mlcin100' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Most-unstable CAPE -'mucape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Most-unstable CIN -'mucin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Departure level of the most unstable parcel expressed as Pressure -'mudlp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#200 metre U wind component -'200u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - typeOfFirstFixedSurface = 103 ; - } -#200 metre V wind component -'200v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#200 metre wind speed -'200si' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#100 metre wind speed -'100si' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mean temperature tendency due to short-wave radiation -'mttswr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'mttlwr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'mttswrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'mttlwrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'mttpm' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'mqtpm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'mutpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'mvtpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'mumf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'mdmf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'mudr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'mddr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'mtpf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'mtdch' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Time integral of rain flux -'tirf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface eastward momentum flux -'tisemf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface northward momentum flux -'tisnmf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Cross sectional area of flow in channel -'chcross' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'chside' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'dis' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'rivsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'fldsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'fldfrc' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'dslr' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'frost' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'woss' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'tpups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'smups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean discharge in the last 6 hours -'dis06' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean discharge in the last 24 hours -'dis24' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 24 ; - } -#Snow depth at elevation bands -'sd_elev' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'gwus' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'gwls' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Latitude -'lat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Longitude -'lon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } -#Latitude on T grid -'tlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Longitude on T grid -'tlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Latitude on U grid -'ulat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Longitude on U grid -'ulon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Latitude on V grid -'vlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Longitude on V grid -'vlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Latitude on W grid -'wlat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Longitude on W grid -'wlon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Latitude on F grid -'flat' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Longitude on F grid -'flon' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Total column graupel -'tcolg' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity -'2r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'aptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'hindex' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'ccl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'evarate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'eva' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'10wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'dirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'difswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'tidirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation in the last 6 hours -'eva06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - is_uerra = 0 ; - } -#Evaporation in the last 24 hours -'eva24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'tp06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Total precipitation in the last 24 hours -'tp24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Fraction of snow cover -'fscov' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 121 ; - } -#Clear air turbulence (CAT) -'cat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 29 ; - } -#Mountain wave turbulence (eddy dissipation rate) -'mwt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 28 ; - } -#Soil temperature -'sot' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'dswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'uswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'dlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'sohf' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'percr' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'sod' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'adswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'auswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'adlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'perc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'clbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'csbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Forest fire weather index -'fwinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Fine fuel moisture code -'ffmcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Duff moisture code -'dufmcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Drought code -'drtcode' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Initial fire spread index -'infsinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Fire buildup index -'fbupinx' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Fire daily severity rating -'fdsrte' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Cloudy radiance (with respect to wave number) -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Keetch-Byram drought index -'kbdi' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#Drought factor (as defined by the Australian forest service) -'drtmrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Rate of spread (as defined by the Australian forest service) -'rosmrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Fire danger index (as defined by the Australian forest service) -'fdimrk' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - } -#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'scnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 16 ; - } -#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) -'buinfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 17 ; - } -#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'icnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - } -#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'ercnfdr' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 19 ; - } -#Universal thermal climate index -'utci' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Mean radiant temperature -'mrt' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Fraction of Malaria cases -'mal_cases_frac' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Malaria circumsporozoite protein ratio -'mal_prot_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Plasmodium falciparum entomological inoculation rate -'mal_innoc_rate' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Human bite rate by anopheles vectors -'mal_hbite_rate' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Malaria immunity ratio -'mal_immun_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Falciparum parasite ratio -'mal_infect_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Detectable falciparum parasite ratio (after day 10) -'mal_infect_d10_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Anopheles vector to host ratio -'mal_host_ratio' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Anopheles vector density -'mal_vect_dens' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Fraction of malarial vector reproductive habitat -'mal_hab_frac' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Population density -'pop_dens' = { - discipline = 20 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Virtual temperature -'vtmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'vptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Mean zero-crossing wave period -'mp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'mwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Peak wave period -'pp1d' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Mean wave period -'mwp' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Eastward sea water velocity -'ocu' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'ocv' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'zos' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'t20d' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 29315 ; - } -#Average salinity in the upper 300m -'sav300' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; - typeOfFirstFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Surface runoff -'sro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Sea-ice thickness -'sithick' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre U wind component -'100u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre V wind component -'100v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'cape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'pv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'z' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'sp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'tcw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'vo' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'bld' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'sshf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'slhf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'d' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'10u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'10v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'lsm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'sr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'str' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'sund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'btmp' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'10si' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Skin temperature -'skt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'lhtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'shtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'heatx' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'wcf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'mindpd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'snohf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'vapp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'ncpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'srweq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'snoc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'snol' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'snoag' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'absh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'ptype' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'iliqw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'clwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'icmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'rwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'snmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'maxrh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'maxah' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'asnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'pwcat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'grle' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'crain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'cfrzr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'cicep' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'csnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'cprat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'mdiv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'cpofp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'pevap' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'pevpr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'snowc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'frain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'rime' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'tcolr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tcols' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'lswp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'cwp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'twatp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'tsnowp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'tcwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'tprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'tsrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'lsprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'lssrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'tsrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'csrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'lssrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'tciwv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'rprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'sprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'fprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'iprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'uflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'vflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'ugust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'vgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'vwsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'mflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'ustm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'vstm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'cd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'fricv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'prmsl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'dist' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'alts' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'thick' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'presalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'denalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5wavh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'u-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'v-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'hpbl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5wava' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'sdsgso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'nswrt' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'dswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'uswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'nswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'photar' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'nswrfcs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'dwuvr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'uviucs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'uvi' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'nlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'nlwrcs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'cice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'cwat' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'cdca' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'tmaxt' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'thunc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'cdcb' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'ceil' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'cdlyr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'cwork' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'cuefi' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'tcolw' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'tcoli' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'tcolc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'fice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'cdcimr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'suns' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'kx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'kox' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'totalx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'sx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'hlcy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'ehlx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'4lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'aerot' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'tozne' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'tcioz' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'bswid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'bref' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'brvel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'veril' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'lmaxbr' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'prec' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'acces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'aciod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'acradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'gdces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'gdiod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'gdradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'tiaccp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'tiacip' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'tiacrp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'volash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'icit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'icib' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'ici' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'turbt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'turbb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'turb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'tke' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'pblreg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'conti' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'contet' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'contt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'contb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'mxsalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'snfalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Relative clear air turbulence (RCAT) -'rcat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'var190m0' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'ffldg' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'ffldro' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'rssc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'esct' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'swepon' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'bgrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'ssrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'cppop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'pposp' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'pop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'land' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'veg' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'watr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'evapt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'mterh' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'landu' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'gflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'mstav' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'sfexc' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'cnwat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'bmixl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'ccond' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'rsmin' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'rcs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'rct' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'rcsol' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'rcq' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'cisoilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'hflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'vsw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'vwiltm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'uplst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'uplsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'lowlsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'botlst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'soill' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'rlyrs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'smref' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'smdry' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'poros' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'liqvsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'voltso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'transo' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'voldec' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'direc' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'soilp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'vsosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'satosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'estp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'irrate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'ctoph' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'ctophqi' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'estu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'estv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'npixu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'solza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'raza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'rfl06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'rfl08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'rfl16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'rfl39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'atmdiv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'wvdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'dirpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'dirc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'spc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'wz' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'ist' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'dslm' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'al' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'ptend' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'hstdv' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'dpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'lapr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'rdsp1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'rdsp2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'rdsp3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'ta' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'presa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'absv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'absd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'vucsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'vvcsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'ucurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'vcurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'satd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'prate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'acpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'ssw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'s' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'uice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'vice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'snom' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'grad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'swrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'wmixe' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre wind gust of at least 15 m/s -'10fgg15' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - } -#10 metre wind gust of at least 20 m/s -'10fgg20' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Convective inhibition -'cin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'orog' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Fall water equivalent -'sf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'cap' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'wilt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; -} diff --git a/eccodes/definitions.save/grib2/tables/0.0.table b/eccodes/definitions.save/grib2/tables/0.0.table deleted file mode 100644 index 415784e7..00000000 --- a/eccodes/definitions.save/grib2/tables/0.0.table +++ /dev/null @@ -1,11 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Satellite remote sensing products (formerly Space products) -4 4 Space weather products -# 5-9 Reserved -10 10 Oceanographic products -20 20 Health and socioeconomic impacts -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/0.0.table b/eccodes/definitions.save/grib2/tables/0/0.0.table deleted file mode 100644 index 0dd70a18..00000000 --- a/eccodes/definitions.save/grib2/tables/0/0.0.table +++ /dev/null @@ -1,6 +0,0 @@ -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -10 10 Oceanographic products -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/1.0.table b/eccodes/definitions.save/grib2/tables/0/1.0.table deleted file mode 100644 index 3c5223d3..00000000 --- a/eccodes/definitions.save/grib2/tables/0/1.0.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/0/1.1.table b/eccodes/definitions.save/grib2/tables/0/1.1.table deleted file mode 100644 index a3c2fdc7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/1.1.table +++ /dev/null @@ -1,2 +0,0 @@ -0 0 Local tables not used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/1.2.table b/eccodes/definitions.save/grib2/tables/0/1.2.table deleted file mode 100644 index a4e2cc41..00000000 --- a/eccodes/definitions.save/grib2/tables/0/1.2.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/1.3.table b/eccodes/definitions.save/grib2/tables/0/1.3.table deleted file mode 100644 index ce83b495..00000000 --- a/eccodes/definitions.save/grib2/tables/0/1.3.table +++ /dev/null @@ -1,7 +0,0 @@ -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/1.4.table b/eccodes/definitions.save/grib2/tables/0/1.4.table deleted file mode 100644 index a712f07a..00000000 --- a/eccodes/definitions.save/grib2/tables/0/1.4.table +++ /dev/null @@ -1,10 +0,0 @@ -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.0.table b/eccodes/definitions.save/grib2/tables/0/3.0.table deleted file mode 100644 index be8be120..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.0.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/0/3.1.table b/eccodes/definitions.save/grib2/tables/0/3.1.table deleted file mode 100644 index f81f9f05..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.1.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -10 10 Mercator -20 20 Polar stereographic can be south or north -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -90 90 Space view perspective orthographic -100 100 Triangular grid based on an icosahedron -110 110 Equatorial azimuthal equidistant projection -120 120 Azimuth-range projection -130 130 Irregular latitude/longitude grid -140 140 Lambert azimuthal equal area projection -1000 1000 Cross-section grid, with points equally spaced on the horizontal -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -1200 1200 Time section grid -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.10.table b/eccodes/definitions.save/grib2/tables/0/3.10.table deleted file mode 100644 index 6b635d90..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.10.table +++ /dev/null @@ -1,6 +0,0 @@ -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/0/3.11.table b/eccodes/definitions.save/grib2/tables/0/3.11.table deleted file mode 100644 index 16e6f46b..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.11.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.15.table b/eccodes/definitions.save/grib2/tables/0/3.15.table deleted file mode 100644 index f3792c00..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.15.table +++ /dev/null @@ -1,16 +0,0 @@ -20 20 Temperature K -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate -112 112 Geopotential height gpm -160 160 Depth below sea level m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.2.table b/eccodes/definitions.save/grib2/tables/0/3.2.table deleted file mode 100644 index 58a33e56..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.2.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.20.table b/eccodes/definitions.save/grib2/tables/0/3.20.table deleted file mode 100644 index 25995dcc..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.20.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Rhumb -1 1 Great circle -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.21.table b/eccodes/definitions.save/grib2/tables/0/3.21.table deleted file mode 100644 index 1b9b7d68..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.21.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.3.table b/eccodes/definitions.save/grib2/tables/0/3.3.table deleted file mode 100644 index 90202ecd..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.3.table +++ /dev/null @@ -1,6 +0,0 @@ -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/0/3.4.table b/eccodes/definitions.save/grib2/tables/0/3.4.table deleted file mode 100644 index b93252d8..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.4.table +++ /dev/null @@ -1,8 +0,0 @@ -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/0/3.5.table b/eccodes/definitions.save/grib2/tables/0/3.5.table deleted file mode 100644 index 07c9a5f8..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.5.table +++ /dev/null @@ -1,4 +0,0 @@ -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/0/3.6.table b/eccodes/definitions.save/grib2/tables/0/3.6.table deleted file mode 100644 index c0b792e5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.6.table +++ /dev/null @@ -1 +0,0 @@ -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/0/3.7.table b/eccodes/definitions.save/grib2/tables/0/3.7.table deleted file mode 100644 index 579f4bab..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.7.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Reserved -1 1 The complex numbers Fnm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/3.8.table b/eccodes/definitions.save/grib2/tables/0/3.8.table deleted file mode 100644 index d9c89cf3..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.8.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/3.9.table b/eccodes/definitions.save/grib2/tables/0/3.9.table deleted file mode 100644 index 83441c0a..00000000 --- a/eccodes/definitions.save/grib2/tables/0/3.9.table +++ /dev/null @@ -1,2 +0,0 @@ -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/0/4.0.table b/eccodes/definitions.save/grib2/tables/0/4.0.table deleted file mode 100644 index 862f03e7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.0.table +++ /dev/null @@ -1,37 +0,0 @@ -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.0.table b/eccodes/definitions.save/grib2/tables/0/4.1.0.table deleted file mode 100644 index dd5c30af..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.0.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -190 190 CCITT IA5 string -191 191 Miscellaneous -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.1.table b/eccodes/definitions.save/grib2/tables/0/4.1.1.table deleted file mode 100644 index 9b3222b5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Hydrology basic products -1 1 Hydrology probabilities -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.10.table b/eccodes/definitions.save/grib2/tables/0/4.1.10.table deleted file mode 100644 index 9472c5f4..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.10.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.2.table b/eccodes/definitions.save/grib2/tables/0/4.1.2.table deleted file mode 100644 index 3fbf491b..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.2.table +++ /dev/null @@ -1,7 +0,0 @@ -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.3.table b/eccodes/definitions.save/grib2/tables/0/4.1.3.table deleted file mode 100644 index aad18460..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.3.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Image format products -1 1 Quantitative products -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.1.table b/eccodes/definitions.save/grib2/tables/0/4.1.table deleted file mode 100644 index 4c665904..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.1.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.10.table b/eccodes/definitions.save/grib2/tables/0/4.10.table deleted file mode 100644 index 3a4280b3..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.10.table +++ /dev/null @@ -1,12 +0,0 @@ - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.11.table b/eccodes/definitions.save/grib2/tables/0/4.11.table deleted file mode 100644 index e5aeec8b..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.11.table +++ /dev/null @@ -1,6 +0,0 @@ -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.12.table b/eccodes/definitions.save/grib2/tables/0/4.12.table deleted file mode 100644 index ccc846d2..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.12.table +++ /dev/null @@ -1,68 +0,0 @@ - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.13.table b/eccodes/definitions.save/grib2/tables/0/4.13.table deleted file mode 100644 index 875d21bd..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.13.table +++ /dev/null @@ -1,66 +0,0 @@ -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.14.table b/eccodes/definitions.save/grib2/tables/0/4.14.table deleted file mode 100644 index f43e9812..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.14.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.15.table b/eccodes/definitions.save/grib2/tables/0/4.15.table deleted file mode 100644 index 659d0703..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.15.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.151.table b/eccodes/definitions.save/grib2/tables/0/4.151.table deleted file mode 100644 index be56a229..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.151.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.0.table deleted file mode 100644 index f935dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.0.table +++ /dev/null @@ -1,20 +0,0 @@ -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.1.table deleted file mode 100644 index 823e1d32..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.1.table +++ /dev/null @@ -1,63 +0,0 @@ -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -69 69 Specific cloud liquid water content (kg kg-1) -70 70 Specific cloud ice water content (kg kg-1) -71 71 Specific rain water content (kg kg-1) -72 72 Specific snow water content (kg kg-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.13.table deleted file mode 100644 index 567dce2e..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.13.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Aerosol type (Code table 4.205) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.14.table deleted file mode 100644 index ad1f023f..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.14.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.15.table deleted file mode 100644 index 2e48bedc..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.15.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.18.table deleted file mode 100644 index 156a65d7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.18.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.19.table deleted file mode 100644 index 7c495a60..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.19.table +++ /dev/null @@ -1,21 +0,0 @@ -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.190.table deleted file mode 100644 index 181e9bb5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.190.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Arbitrary text string (CCITTIA5) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.191.table deleted file mode 100644 index 592810f9..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.191.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.2.table deleted file mode 100644 index ac23abf7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.2.table +++ /dev/null @@ -1,32 +0,0 @@ -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.20.table deleted file mode 100644 index 2a66a0fe..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.20.table +++ /dev/null @@ -1,22 +0,0 @@ -0 0 Mass density (concentration) kg m-3 -1 1 Column-integrated mass density (see Note1) kg m-2 -2 2 Mass mixing ratio (mass fraction in air) kg kg-1 -3 3 Atmosphere emission mass flux kg m-2 s-1 -4 4 Atmosphere net production mass flux kg m-2 s-1 -5 5 Atmosphere net production and emission mass flux kg m-2 s-1 -6 6 Surface dry deposition mass flux kg m-2 s-1 -7 7 Surface wet deposition mass flux kg m-2 s-1 -8 8 Atmosphere re-emission mass flux kg m-2 s-1 -50 50 Amount in atmosphere mol -51 51 Concentration in air mol m-3 -52 52 Volume mixing ratio (fraction in air) mol mol-1 -53 53 Chemical gross production rate of concentration mol m-3 s-1 -54 54 Chemical gross destruction rate of concentration mol m-3 s-1 -55 55 Surface flux mol m-2 s-1 -56 56 Changes of amount in atmosphere (see Note 1) mol s-1 -57 57 Total yearly average burden of the atmosphere mol -58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 -100 100 Surface area density (aerosol) m-1 -101 101 Atmosphere optical thickness m -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.3.table deleted file mode 100644 index af5504ba..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.3.table +++ /dev/null @@ -1,22 +0,0 @@ - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) - 255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.4.table deleted file mode 100644 index fc42fba6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.4.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.5.table deleted file mode 100644 index 94d7b971..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.5.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.6.table deleted file mode 100644 index 504fc679..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.6.table +++ /dev/null @@ -1,27 +0,0 @@ -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/0/4.2.0.7.table deleted file mode 100644 index 3e2ce318..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.0.7.table +++ /dev/null @@ -1,15 +0,0 @@ -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.1.0.table deleted file mode 100644 index 3147f8c2..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.1.0.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.1.1.table deleted file mode 100644 index a86c29c6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.0.table deleted file mode 100644 index 98a0fedf..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.10.0.table +++ /dev/null @@ -1,17 +0,0 @@ -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.1.table deleted file mode 100644 index 8c92ae82..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.10.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.2.table deleted file mode 100644 index 7297632c..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.10.2.table +++ /dev/null @@ -1,9 +0,0 @@ -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.3.table deleted file mode 100644 index 9e805aef..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.10.3.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/0/4.2.10.4.table deleted file mode 100644 index 20a604c3..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.10.4.table +++ /dev/null @@ -1,6 +0,0 @@ -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.2.0.table deleted file mode 100644 index 5678022f..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.2.0.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/0/4.2.2.3.table deleted file mode 100644 index 6d993394..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.2.3.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/0/4.2.3.0.table deleted file mode 100644 index 7e9e74e6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.3.0.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/0/4.2.3.1.table deleted file mode 100644 index e01f2211..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.2.3.1.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/0/4.201.table b/eccodes/definitions.save/grib2/tables/0/4.201.table deleted file mode 100644 index 7ee3a703..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.201.table +++ /dev/null @@ -1,70 +0,0 @@ - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.202.table b/eccodes/definitions.save/grib2/tables/0/4.202.table deleted file mode 100644 index cee4c9e6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.202.table +++ /dev/null @@ -1,65 +0,0 @@ - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.203.table b/eccodes/definitions.save/grib2/tables/0/4.203.table deleted file mode 100644 index 1f8dbef6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.203.table +++ /dev/null @@ -1,23 +0,0 @@ -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.204.table b/eccodes/definitions.save/grib2/tables/0/4.204.table deleted file mode 100644 index 6ff5c353..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.204.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.205.table b/eccodes/definitions.save/grib2/tables/0/4.205.table deleted file mode 100644 index 7594bc0e..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.205.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.206.table b/eccodes/definitions.save/grib2/tables/0/4.206.table deleted file mode 100644 index 40463d37..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.206.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.207.table b/eccodes/definitions.save/grib2/tables/0/4.207.table deleted file mode 100644 index 46c8c808..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.207.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.208.table b/eccodes/definitions.save/grib2/tables/0/4.208.table deleted file mode 100644 index 34fc6708..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.208.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.209.table b/eccodes/definitions.save/grib2/tables/0/4.209.table deleted file mode 100644 index 2700f882..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.209.table +++ /dev/null @@ -1,69 +0,0 @@ - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.210.table b/eccodes/definitions.save/grib2/tables/0/4.210.table deleted file mode 100644 index 00ab2b2d..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.210.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.211.table b/eccodes/definitions.save/grib2/tables/0/4.211.table deleted file mode 100644 index 810d3de8..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.211.table +++ /dev/null @@ -1,68 +0,0 @@ - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.212.table b/eccodes/definitions.save/grib2/tables/0/4.212.table deleted file mode 100644 index 30d8335c..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.212.table +++ /dev/null @@ -1,78 +0,0 @@ - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.213.table b/eccodes/definitions.save/grib2/tables/0/4.213.table deleted file mode 100644 index 110a1315..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.213.table +++ /dev/null @@ -1,76 +0,0 @@ - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.215.table b/eccodes/definitions.save/grib2/tables/0/4.215.table deleted file mode 100644 index 2fdcf441..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.216.table b/eccodes/definitions.save/grib2/tables/0/4.216.table deleted file mode 100644 index b63683ff..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.216.table +++ /dev/null @@ -1,2 +0,0 @@ -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.217.table b/eccodes/definitions.save/grib2/tables/0/4.217.table deleted file mode 100644 index 5fe12699..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.217.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.220.table b/eccodes/definitions.save/grib2/tables/0/4.220.table deleted file mode 100644 index b2621696..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.220.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.221.table b/eccodes/definitions.save/grib2/tables/0/4.221.table deleted file mode 100644 index 41718eb0..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.221.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.230.table b/eccodes/definitions.save/grib2/tables/0/4.230.table deleted file mode 100644 index 245febe5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.230.table +++ /dev/null @@ -1,114 +0,0 @@ -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen -60005 60005 Total inorganic chlorine -60006 60006 Total inorganic bromine -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped Alkanes -60010 60010 Lumped Alkenes -60011 60011 Lumped Aromatic Compounds -60012 60012 Lumped Terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.3.table b/eccodes/definitions.save/grib2/tables/0/4.3.table deleted file mode 100644 index cac7ebbb..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.3.table +++ /dev/null @@ -1,10 +0,0 @@ -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.4.table b/eccodes/definitions.save/grib2/tables/0/4.4.table deleted file mode 100644 index 4f9f0cdc..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.4.table +++ /dev/null @@ -1,13 +0,0 @@ -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.5.table b/eccodes/definitions.save/grib2/tables/0/4.5.table deleted file mode 100644 index 72dc1ad1..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.5.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -20 20 Isothermal level (K) -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 105 Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 ml Eta level -117 117 Mixed layer depth (m) -160 160 Depth below sea level (m) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.6.table b/eccodes/definitions.save/grib2/tables/0/4.6.table deleted file mode 100644 index a9efd5a7..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.6.table +++ /dev/null @@ -1,6 +0,0 @@ - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.7.table b/eccodes/definitions.save/grib2/tables/0/4.7.table deleted file mode 100644 index 2f295c76..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.7.table +++ /dev/null @@ -1,72 +0,0 @@ - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.8.table b/eccodes/definitions.save/grib2/tables/0/4.8.table deleted file mode 100644 index 5f1e971d..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.8.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.9.table b/eccodes/definitions.save/grib2/tables/0/4.9.table deleted file mode 100644 index 7ae967e2..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.9.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/4.91.table b/eccodes/definitions.save/grib2/tables/0/4.91.table deleted file mode 100644 index 498e3fe1..00000000 --- a/eccodes/definitions.save/grib2/tables/0/4.91.table +++ /dev/null @@ -1,77 +0,0 @@ - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.0.table b/eccodes/definitions.save/grib2/tables/0/5.0.table deleted file mode 100644 index cb7fd164..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.0.table +++ /dev/null @@ -1,14 +0,0 @@ -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib2/tables/0/5.1.table b/eccodes/definitions.save/grib2/tables/0/5.1.table deleted file mode 100644 index d0e6c2f3..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.1.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Floating point -1 1 Integer -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.2.table b/eccodes/definitions.save/grib2/tables/0/5.2.table deleted file mode 100644 index d04bee53..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.2.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.3.table b/eccodes/definitions.save/grib2/tables/0/5.3.table deleted file mode 100644 index 1d020711..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.3.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.4.table b/eccodes/definitions.save/grib2/tables/0/5.4.table deleted file mode 100644 index 72d090e5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.4.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Row by row splitting -1 1 General group splitting -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.40.table b/eccodes/definitions.save/grib2/tables/0/5.40.table deleted file mode 100644 index 1a43b2d6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.40.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Lossless -1 1 Lossy -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.40000.table b/eccodes/definitions.save/grib2/tables/0/5.40000.table deleted file mode 100644 index 1a43b2d6..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.40000.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Lossless -1 1 Lossy -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.5.table b/eccodes/definitions.save/grib2/tables/0/5.5.table deleted file mode 100644 index 5533ee98..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.5.table +++ /dev/null @@ -1,5 +0,0 @@ - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.6.table b/eccodes/definitions.save/grib2/tables/0/5.6.table deleted file mode 100644 index fedae4eb..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.6.table +++ /dev/null @@ -1,67 +0,0 @@ - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.7.table b/eccodes/definitions.save/grib2/tables/0/5.7.table deleted file mode 100644 index c21dde20..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.7.table +++ /dev/null @@ -1,5 +0,0 @@ - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.8.table b/eccodes/definitions.save/grib2/tables/0/5.8.table deleted file mode 100644 index 5819a2b5..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.8.table +++ /dev/null @@ -1,2 +0,0 @@ -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/5.9.table b/eccodes/definitions.save/grib2/tables/0/5.9.table deleted file mode 100644 index 0dab162b..00000000 --- a/eccodes/definitions.save/grib2/tables/0/5.9.table +++ /dev/null @@ -1,3 +0,0 @@ -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/0/6.0.table b/eccodes/definitions.save/grib2/tables/0/6.0.table deleted file mode 100644 index 1eeac956..00000000 --- a/eccodes/definitions.save/grib2/tables/0/6.0.table +++ /dev/null @@ -1,5 +0,0 @@ - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/1.0.table b/eccodes/definitions.save/grib2/tables/1.0.table deleted file mode 100644 index 789ef85f..00000000 --- a/eccodes/definitions.save/grib2/tables/1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Version implemented on 15 May 2019 -24 24 Version implemented on 6 November 2019 -25 25 Version implemented on 6 May 2020 -26 26 Version implemented on 16 November 2020 -# 27-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/1/0.0.table b/eccodes/definitions.save/grib2/tables/1/0.0.table deleted file mode 100644 index 0dd70a18..00000000 --- a/eccodes/definitions.save/grib2/tables/1/0.0.table +++ /dev/null @@ -1,6 +0,0 @@ -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -10 10 Oceanographic products -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/1.0.table b/eccodes/definitions.save/grib2/tables/1/1.0.table deleted file mode 100644 index 3c5223d3..00000000 --- a/eccodes/definitions.save/grib2/tables/1/1.0.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/1/1.1.table b/eccodes/definitions.save/grib2/tables/1/1.1.table deleted file mode 100644 index a3c2fdc7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/1.1.table +++ /dev/null @@ -1,2 +0,0 @@ -0 0 Local tables not used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/1.2.table b/eccodes/definitions.save/grib2/tables/1/1.2.table deleted file mode 100644 index a4e2cc41..00000000 --- a/eccodes/definitions.save/grib2/tables/1/1.2.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/1.3.table b/eccodes/definitions.save/grib2/tables/1/1.3.table deleted file mode 100644 index ce83b495..00000000 --- a/eccodes/definitions.save/grib2/tables/1/1.3.table +++ /dev/null @@ -1,7 +0,0 @@ -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/1.4.table b/eccodes/definitions.save/grib2/tables/1/1.4.table deleted file mode 100644 index a712f07a..00000000 --- a/eccodes/definitions.save/grib2/tables/1/1.4.table +++ /dev/null @@ -1,10 +0,0 @@ -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.0.table b/eccodes/definitions.save/grib2/tables/1/3.0.table deleted file mode 100644 index be8be120..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.0.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/1/3.1.table b/eccodes/definitions.save/grib2/tables/1/3.1.table deleted file mode 100644 index f81f9f05..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.1.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -10 10 Mercator -20 20 Polar stereographic can be south or north -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -90 90 Space view perspective orthographic -100 100 Triangular grid based on an icosahedron -110 110 Equatorial azimuthal equidistant projection -120 120 Azimuth-range projection -130 130 Irregular latitude/longitude grid -140 140 Lambert azimuthal equal area projection -1000 1000 Cross-section grid, with points equally spaced on the horizontal -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -1200 1200 Time section grid -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.10.table b/eccodes/definitions.save/grib2/tables/1/3.10.table deleted file mode 100644 index 6b635d90..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.10.table +++ /dev/null @@ -1,6 +0,0 @@ -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/1/3.11.table b/eccodes/definitions.save/grib2/tables/1/3.11.table deleted file mode 100644 index 16e6f46b..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.11.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.15.table b/eccodes/definitions.save/grib2/tables/1/3.15.table deleted file mode 100644 index f4c6b2a1..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.15.table +++ /dev/null @@ -1,16 +0,0 @@ -20 20 Temperature K -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -160 160 Depth below sea level m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.2.table b/eccodes/definitions.save/grib2/tables/1/3.2.table deleted file mode 100644 index 58a33e56..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.2.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.20.table b/eccodes/definitions.save/grib2/tables/1/3.20.table deleted file mode 100644 index 25995dcc..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.20.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Rhumb -1 1 Great circle -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.21.table b/eccodes/definitions.save/grib2/tables/1/3.21.table deleted file mode 100644 index 1b9b7d68..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.21.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.3.table b/eccodes/definitions.save/grib2/tables/1/3.3.table deleted file mode 100644 index 90202ecd..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.3.table +++ /dev/null @@ -1,6 +0,0 @@ -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/1/3.4.table b/eccodes/definitions.save/grib2/tables/1/3.4.table deleted file mode 100644 index b93252d8..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.4.table +++ /dev/null @@ -1,8 +0,0 @@ -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/1/3.5.table b/eccodes/definitions.save/grib2/tables/1/3.5.table deleted file mode 100644 index 07c9a5f8..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.5.table +++ /dev/null @@ -1,4 +0,0 @@ -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/1/3.6.table b/eccodes/definitions.save/grib2/tables/1/3.6.table deleted file mode 100644 index c0b792e5..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.6.table +++ /dev/null @@ -1 +0,0 @@ -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/1/3.7.table b/eccodes/definitions.save/grib2/tables/1/3.7.table deleted file mode 100644 index 579f4bab..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.7.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Reserved -1 1 The complex numbers Fnm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/3.8.table b/eccodes/definitions.save/grib2/tables/1/3.8.table deleted file mode 100644 index d9c89cf3..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.8.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/3.9.table b/eccodes/definitions.save/grib2/tables/1/3.9.table deleted file mode 100644 index 83441c0a..00000000 --- a/eccodes/definitions.save/grib2/tables/1/3.9.table +++ /dev/null @@ -1,2 +0,0 @@ -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/1/4.0.table b/eccodes/definitions.save/grib2/tables/1/4.0.table deleted file mode 100644 index 862f03e7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.0.table +++ /dev/null @@ -1,37 +0,0 @@ -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.0.table b/eccodes/definitions.save/grib2/tables/1/4.1.0.table deleted file mode 100644 index dd5c30af..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.0.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -190 190 CCITT IA5 string -191 191 Miscellaneous -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.1.table b/eccodes/definitions.save/grib2/tables/1/4.1.1.table deleted file mode 100644 index 9b3222b5..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Hydrology basic products -1 1 Hydrology probabilities -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.10.table b/eccodes/definitions.save/grib2/tables/1/4.1.10.table deleted file mode 100644 index 9472c5f4..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.10.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.2.table b/eccodes/definitions.save/grib2/tables/1/4.1.2.table deleted file mode 100644 index 3fbf491b..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.2.table +++ /dev/null @@ -1,7 +0,0 @@ -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.3.table b/eccodes/definitions.save/grib2/tables/1/4.1.3.table deleted file mode 100644 index aad18460..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.3.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Image format products -1 1 Quantitative products -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.1.table b/eccodes/definitions.save/grib2/tables/1/4.1.table deleted file mode 100644 index 4c665904..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.1.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.10.table b/eccodes/definitions.save/grib2/tables/1/4.10.table deleted file mode 100644 index 3a4280b3..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.10.table +++ /dev/null @@ -1,12 +0,0 @@ - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.11.table b/eccodes/definitions.save/grib2/tables/1/4.11.table deleted file mode 100644 index e4f6514b..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.11.table +++ /dev/null @@ -1,7 +0,0 @@ - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.12.table b/eccodes/definitions.save/grib2/tables/1/4.12.table deleted file mode 100644 index ccc846d2..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.12.table +++ /dev/null @@ -1,68 +0,0 @@ - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.13.table b/eccodes/definitions.save/grib2/tables/1/4.13.table deleted file mode 100644 index 6a5cad1a..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.13.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.14.table b/eccodes/definitions.save/grib2/tables/1/4.14.table deleted file mode 100644 index f43e9812..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.14.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.15.table b/eccodes/definitions.save/grib2/tables/1/4.15.table deleted file mode 100644 index 659d0703..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.15.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.151.table b/eccodes/definitions.save/grib2/tables/1/4.151.table deleted file mode 100644 index be56a229..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.151.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.0.table deleted file mode 100644 index f935dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.0.table +++ /dev/null @@ -1,20 +0,0 @@ -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.1.table deleted file mode 100644 index f760821b..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.1.table +++ /dev/null @@ -1,59 +0,0 @@ -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.13.table deleted file mode 100644 index 567dce2e..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.13.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Aerosol type (Code table 4.205) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.14.table deleted file mode 100644 index ad1f023f..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.14.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.15.table deleted file mode 100644 index 2e48bedc..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.15.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.18.table deleted file mode 100644 index 156a65d7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.18.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.19.table deleted file mode 100644 index 7c495a60..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.19.table +++ /dev/null @@ -1,21 +0,0 @@ -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.190.table deleted file mode 100644 index 181e9bb5..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.190.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Arbitrary text string (CCITTIA5) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.191.table deleted file mode 100644 index 592810f9..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.191.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.2.table deleted file mode 100644 index ac23abf7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.2.table +++ /dev/null @@ -1,32 +0,0 @@ -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.20.table deleted file mode 100644 index 4e5938bb..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.20.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Mass density (concentration) kg.m-3 -1 1 Total column (integrated mass density) kg.m-2 -2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 -3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 -4 4 Surface dry deposition mass flux kg.m-2.s-1 -5 5 Surface wet deposition mass flux kg.m-2.s-1 -6 6 Atmosphere emission mass flux kg.m-2.s-1 -7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 -8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 -9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.3.table deleted file mode 100644 index af5504ba..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.3.table +++ /dev/null @@ -1,22 +0,0 @@ - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) - 255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.4.table deleted file mode 100644 index fc42fba6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.4.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.5.table deleted file mode 100644 index 94d7b971..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.5.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.6.table deleted file mode 100644 index 504fc679..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.6.table +++ /dev/null @@ -1,27 +0,0 @@ -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/1/4.2.0.7.table deleted file mode 100644 index 3e2ce318..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.0.7.table +++ /dev/null @@ -1,15 +0,0 @@ -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.1.0.table deleted file mode 100644 index 3147f8c2..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.1.0.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.1.1.table deleted file mode 100644 index a86c29c6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.0.table deleted file mode 100644 index 98a0fedf..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.10.0.table +++ /dev/null @@ -1,17 +0,0 @@ -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.1.table deleted file mode 100644 index 8c92ae82..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.10.1.table +++ /dev/null @@ -1,5 +0,0 @@ -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.2.table deleted file mode 100644 index 7297632c..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.10.2.table +++ /dev/null @@ -1,9 +0,0 @@ -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.3.table deleted file mode 100644 index 9e805aef..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.10.3.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/1/4.2.10.4.table deleted file mode 100644 index 20a604c3..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.10.4.table +++ /dev/null @@ -1,6 +0,0 @@ -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.2.0.table deleted file mode 100644 index 5678022f..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.2.0.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/1/4.2.2.3.table deleted file mode 100644 index 6d993394..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.2.3.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/1/4.2.3.0.table deleted file mode 100644 index 7e9e74e6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.3.0.table +++ /dev/null @@ -1,11 +0,0 @@ -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/1/4.2.3.1.table deleted file mode 100644 index e01f2211..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.2.3.1.table +++ /dev/null @@ -1,8 +0,0 @@ -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/1/4.201.table b/eccodes/definitions.save/grib2/tables/1/4.201.table deleted file mode 100644 index 7ee3a703..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.201.table +++ /dev/null @@ -1,70 +0,0 @@ - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.202.table b/eccodes/definitions.save/grib2/tables/1/4.202.table deleted file mode 100644 index cee4c9e6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.202.table +++ /dev/null @@ -1,65 +0,0 @@ - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.203.table b/eccodes/definitions.save/grib2/tables/1/4.203.table deleted file mode 100644 index 1f8dbef6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.203.table +++ /dev/null @@ -1,23 +0,0 @@ -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.204.table b/eccodes/definitions.save/grib2/tables/1/4.204.table deleted file mode 100644 index 6ff5c353..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.204.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.205.table b/eccodes/definitions.save/grib2/tables/1/4.205.table deleted file mode 100644 index 7594bc0e..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.205.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.206.table b/eccodes/definitions.save/grib2/tables/1/4.206.table deleted file mode 100644 index 40463d37..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.206.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.207.table b/eccodes/definitions.save/grib2/tables/1/4.207.table deleted file mode 100644 index 46c8c808..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.207.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.208.table b/eccodes/definitions.save/grib2/tables/1/4.208.table deleted file mode 100644 index 34fc6708..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.208.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.209.table b/eccodes/definitions.save/grib2/tables/1/4.209.table deleted file mode 100644 index 2700f882..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.209.table +++ /dev/null @@ -1,69 +0,0 @@ - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.210.table b/eccodes/definitions.save/grib2/tables/1/4.210.table deleted file mode 100644 index 00ab2b2d..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.210.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.211.table b/eccodes/definitions.save/grib2/tables/1/4.211.table deleted file mode 100644 index 810d3de8..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.211.table +++ /dev/null @@ -1,68 +0,0 @@ - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.212.table b/eccodes/definitions.save/grib2/tables/1/4.212.table deleted file mode 100644 index 30d8335c..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.212.table +++ /dev/null @@ -1,78 +0,0 @@ - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.213.table b/eccodes/definitions.save/grib2/tables/1/4.213.table deleted file mode 100644 index 110a1315..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.213.table +++ /dev/null @@ -1,76 +0,0 @@ - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.215.table b/eccodes/definitions.save/grib2/tables/1/4.215.table deleted file mode 100644 index 2fdcf441..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.216.table b/eccodes/definitions.save/grib2/tables/1/4.216.table deleted file mode 100644 index b63683ff..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.216.table +++ /dev/null @@ -1,2 +0,0 @@ -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.217.table b/eccodes/definitions.save/grib2/tables/1/4.217.table deleted file mode 100644 index 5fe12699..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.217.table +++ /dev/null @@ -1,69 +0,0 @@ - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.220.table b/eccodes/definitions.save/grib2/tables/1/4.220.table deleted file mode 100644 index b2621696..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.220.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.221.table b/eccodes/definitions.save/grib2/tables/1/4.221.table deleted file mode 100644 index 41718eb0..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.221.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.230.table b/eccodes/definitions.save/grib2/tables/1/4.230.table deleted file mode 100644 index 696ffe3e..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.230.table +++ /dev/null @@ -1,43 +0,0 @@ -0 0 Air -1 1 Ozone -2 2 Water vapour -3 3 Methane -4 4 Carbon dioxide -5 5 Carbon monoxide -6 6 Nitrogen dioxide -7 7 Nitrous oxide -8 8 Nitrogen monoxide -9 9 Formaldehyde -10 10 Sulphur dioxide -11 11 Nitric acid -12 12 All nitrogen oxides (NOy) expressed as nitrogen -13 13 Peroxyacetyl nitrate -14 14 Hydroxyl radical -15 15 Ammonia -16 16 Ammonium -17 17 Radon -18 18 Dimethyl sulphide -19 19 Hexachlorocyclohexane -20 20 Alpha hexachlorocyclohexane -21 21 Elemental mercury -22 22 Divalent mercury -23 23 Hexachlorobiphenyl -24 24 NOx expressed as nitrogen -25 25 Non-methane volatile organic compounds expressed as carbon -26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon -27 27 Biogenic non-methane volatile organic compounds expressed as carbon -40000 40000 Sulphate dry aerosol -40001 40001 Black carbon dry aerosol -40002 40002 Particulate organic matter dry aerosol -40003 40003 Primary particulate organic matter dry aerosol -40004 40004 Secondary particulate organic matter dry aerosol -40005 40005 Sea salt dry aerosol -40006 40006 Dust dry aerosol -40007 40007 Mercury dry aerosol -40008 40008 PM10 aerosol -40009 40009 PM2P5 aerosol -40010 40010 PM1 aerosol -40011 40011 Nitrate dry aerosol -40012 40012 Ammonium dry aerosol -40013 40013 Water in ambient aerosol -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.3.table b/eccodes/definitions.save/grib2/tables/1/4.3.table deleted file mode 100644 index cac7ebbb..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.3.table +++ /dev/null @@ -1,10 +0,0 @@ -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.4.table b/eccodes/definitions.save/grib2/tables/1/4.4.table deleted file mode 100644 index 4f9f0cdc..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.4.table +++ /dev/null @@ -1,13 +0,0 @@ -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.5.table b/eccodes/definitions.save/grib2/tables/1/4.5.table deleted file mode 100644 index d4e95087..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.5.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -20 20 Isothermal level (K) -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -117 117 Mixed layer depth (m) -160 160 Depth below sea level (m) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.6.table b/eccodes/definitions.save/grib2/tables/1/4.6.table deleted file mode 100644 index a9efd5a7..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.6.table +++ /dev/null @@ -1,6 +0,0 @@ - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.7.table b/eccodes/definitions.save/grib2/tables/1/4.7.table deleted file mode 100644 index 2f295c76..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.7.table +++ /dev/null @@ -1,72 +0,0 @@ - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.8.table b/eccodes/definitions.save/grib2/tables/1/4.8.table deleted file mode 100644 index 5f1e971d..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.8.table +++ /dev/null @@ -1,67 +0,0 @@ - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.9.table b/eccodes/definitions.save/grib2/tables/1/4.9.table deleted file mode 100644 index 7ae967e2..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.9.table +++ /dev/null @@ -1,70 +0,0 @@ - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/4.91.table b/eccodes/definitions.save/grib2/tables/1/4.91.table deleted file mode 100644 index 498e3fe1..00000000 --- a/eccodes/definitions.save/grib2/tables/1/4.91.table +++ /dev/null @@ -1,77 +0,0 @@ - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.0.table b/eccodes/definitions.save/grib2/tables/1/5.0.table deleted file mode 100644 index cb7fd164..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.0.table +++ /dev/null @@ -1,14 +0,0 @@ -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib2/tables/1/5.1.table b/eccodes/definitions.save/grib2/tables/1/5.1.table deleted file mode 100644 index d0e6c2f3..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.1.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Floating point -1 1 Integer -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.2.table b/eccodes/definitions.save/grib2/tables/1/5.2.table deleted file mode 100644 index d04bee53..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.2.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.3.table b/eccodes/definitions.save/grib2/tables/1/5.3.table deleted file mode 100644 index 1d020711..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.3.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.4.table b/eccodes/definitions.save/grib2/tables/1/5.4.table deleted file mode 100644 index 72d090e5..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.4.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Row by row splitting -1 1 General group splitting -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.40.table b/eccodes/definitions.save/grib2/tables/1/5.40.table deleted file mode 100644 index 1a43b2d6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.40.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Lossless -1 1 Lossy -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.40000.table b/eccodes/definitions.save/grib2/tables/1/5.40000.table deleted file mode 100644 index 1a43b2d6..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.40000.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Lossless -1 1 Lossy -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.5.table b/eccodes/definitions.save/grib2/tables/1/5.5.table deleted file mode 100644 index 5533ee98..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.5.table +++ /dev/null @@ -1,5 +0,0 @@ - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.6.table b/eccodes/definitions.save/grib2/tables/1/5.6.table deleted file mode 100644 index fedae4eb..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.6.table +++ /dev/null @@ -1,67 +0,0 @@ - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.7.table b/eccodes/definitions.save/grib2/tables/1/5.7.table deleted file mode 100644 index c21dde20..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.7.table +++ /dev/null @@ -1,5 +0,0 @@ - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.8.table b/eccodes/definitions.save/grib2/tables/1/5.8.table deleted file mode 100644 index 5819a2b5..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.8.table +++ /dev/null @@ -1,2 +0,0 @@ -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/5.9.table b/eccodes/definitions.save/grib2/tables/1/5.9.table deleted file mode 100644 index 0dab162b..00000000 --- a/eccodes/definitions.save/grib2/tables/1/5.9.table +++ /dev/null @@ -1,3 +0,0 @@ -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/1/6.0.table b/eccodes/definitions.save/grib2/tables/1/6.0.table deleted file mode 100644 index 1eeac956..00000000 --- a/eccodes/definitions.save/grib2/tables/1/6.0.table +++ /dev/null @@ -1,5 +0,0 @@ - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/10/0.0.table b/eccodes/definitions.save/grib2/tables/10/0.0.table deleted file mode 100644 index 1d3a90b4..00000000 --- a/eccodes/definitions.save/grib2/tables/10/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/1.0.table b/eccodes/definitions.save/grib2/tables/10/1.0.table deleted file mode 100644 index babcdd77..00000000 --- a/eccodes/definitions.save/grib2/tables/10/1.0.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Pre-operational to be implemented by next amendment -# 12-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/10/1.1.table b/eccodes/definitions.save/grib2/tables/10/1.1.table deleted file mode 100644 index 91ef6624..00000000 --- a/eccodes/definitions.save/grib2/tables/10/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/1.2.table b/eccodes/definitions.save/grib2/tables/10/1.2.table deleted file mode 100644 index d90ad010..00000000 --- a/eccodes/definitions.save/grib2/tables/10/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/1.3.table b/eccodes/definitions.save/grib2/tables/10/1.3.table deleted file mode 100644 index 35cd6a63..00000000 --- a/eccodes/definitions.save/grib2/tables/10/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/1.4.table b/eccodes/definitions.save/grib2/tables/10/1.4.table deleted file mode 100644 index d11a335a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.0.table b/eccodes/definitions.save/grib2/tables/10/3.0.table deleted file mode 100644 index 4baed0aa..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/10/3.1.table b/eccodes/definitions.save/grib2/tables/10/3.1.table deleted file mode 100644 index a246b979..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.10.table b/eccodes/definitions.save/grib2/tables/10/3.10.table deleted file mode 100644 index 23c1cdd3..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/10/3.11.table b/eccodes/definitions.save/grib2/tables/10/3.11.table deleted file mode 100644 index 560318d1..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.15.table b/eccodes/definitions.save/grib2/tables/10/3.15.table deleted file mode 100644 index 2394a293..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.2.table b/eccodes/definitions.save/grib2/tables/10/3.2.table deleted file mode 100644 index 1a3d03bb..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the OSGB 1936 Datum, using the Airy_1830 Spheroid, the Greenwich meridian as 0 longitude, the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.20.table b/eccodes/definitions.save/grib2/tables/10/3.20.table deleted file mode 100644 index 3f7ab4cc..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.21.table b/eccodes/definitions.save/grib2/tables/10/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.3.table b/eccodes/definitions.save/grib2/tables/10/3.3.table deleted file mode 100644 index 5167ed6b..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/10/3.4.table b/eccodes/definitions.save/grib2/tables/10/3.4.table deleted file mode 100644 index 63c8adaa..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/10/3.5.table b/eccodes/definitions.save/grib2/tables/10/3.5.table deleted file mode 100644 index 8ccf0f13..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/10/3.6.table b/eccodes/definitions.save/grib2/tables/10/3.6.table deleted file mode 100644 index 3099e6bb..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 See separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/10/3.7.table b/eccodes/definitions.save/grib2/tables/10/3.7.table deleted file mode 100644 index e2dc660d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm. See separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.8.table b/eccodes/definitions.save/grib2/tables/10/3.8.table deleted file mode 100644 index 4e811917..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/3.9.table b/eccodes/definitions.save/grib2/tables/10/3.9.table deleted file mode 100644 index f35b7ca5..00000000 --- a/eccodes/definitions.save/grib2/tables/10/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/10/4.0.table b/eccodes/definitions.save/grib2/tables/10/4.0.table deleted file mode 100644 index 5f405bed..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.0.table +++ /dev/null @@ -1,53 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -# 33-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.0.table b/eccodes/definitions.save/grib2/tables/10/4.1.0.table deleted file mode 100644 index 36110886..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.1.table b/eccodes/definitions.save/grib2/tables/10/4.1.1.table deleted file mode 100644 index 29f1dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.10.table b/eccodes/definitions.save/grib2/tables/10/4.1.10.table deleted file mode 100644 index 9c8c92b1..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.192.table b/eccodes/definitions.save/grib2/tables/10/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.2.table b/eccodes/definitions.save/grib2/tables/10/4.1.2.table deleted file mode 100644 index b90201c6..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.3.table b/eccodes/definitions.save/grib2/tables/10/4.1.3.table deleted file mode 100644 index fe1d8ae5..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline. Product discipline 3 - Space products -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/10/4.1.table b/eccodes/definitions.save/grib2/tables/10/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.10.table b/eccodes/definitions.save/grib2/tables/10/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.11.table b/eccodes/definitions.save/grib2/tables/10/4.11.table deleted file mode 100644 index 1257d1b0..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.12.table b/eccodes/definitions.save/grib2/tables/10/4.12.table deleted file mode 100644 index e06a3be5..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.13.table b/eccodes/definitions.save/grib2/tables/10/4.13.table deleted file mode 100644 index 107ace60..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.14.table b/eccodes/definitions.save/grib2/tables/10/4.14.table deleted file mode 100644 index 24a22892..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.15.table b/eccodes/definitions.save/grib2/tables/10/4.15.table deleted file mode 100644 index 97cdcd2e..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.151.table b/eccodes/definitions.save/grib2/tables/10/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.192.table b/eccodes/definitions.save/grib2/tables/10/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.0.table deleted file mode 100644 index debc0a6f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew-point temperature (K) -7 7 Dew-point depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew-point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.1.table deleted file mode 100644 index b95e8699..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 1: moisture -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.13.table deleted file mode 100644 index b9979f0d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.14.table deleted file mode 100644 index 4a2a4e12..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.15.table deleted file mode 100644 index 895892f8..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically-integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.16.table deleted file mode 100644 index 39215ab2..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.18.table deleted file mode 100644 index 30060fd2..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.19.table deleted file mode 100644 index 2aa34464..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.190.table deleted file mode 100644 index 39fb5574..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.191.table deleted file mode 100644 index 81230c0e..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.2.table deleted file mode 100644 index a3b08a8f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.2.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 2: momentum -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.20.table deleted file mode 100644 index cc2dbcc5..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.3.table deleted file mode 100644 index f718c6ea..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.4.table deleted file mode 100644 index fea4cafc..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.5.table deleted file mode 100644 index b0c93dd3..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.6.table deleted file mode 100644 index fd4b2301..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.6.table +++ /dev/null @@ -1,40 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long wave effective total cloudiness (Numeric) -35 35 Surface short wave effective total cloudiness (Numeric) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/10/4.2.0.7.table deleted file mode 100644 index 7a7d2008..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.0.table deleted file mode 100644 index bf1e3e93..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.1.table deleted file mode 100644 index cb5117dc..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.1.2.table deleted file mode 100644 index 2c70c6bd..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (m-1) -12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.0.table deleted file mode 100644 index a620c36b..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 10 - Oceanographic products, parameter category 0: waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m s-1) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m s-1) -22 22 v-component surface Stokes drift (m s-1) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10 metre neutral wind speed over waves (m s-1) -41 41 10 metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (s-1) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.1.table deleted file mode 100644 index ae52b0c2..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.191.table deleted file mode 100644 index 14085ac9..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.2.table deleted file mode 100644 index a6d9dd0c..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.3.table deleted file mode 100644 index 112af09d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.10.4.table deleted file mode 100644 index d80a3278..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (m-1) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.0.table deleted file mode 100644 index 9a426a5c..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 0: vegetation/biomass -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -# 33-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.3.table deleted file mode 100644 index e985e41a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 3: soil products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/10/4.2.2.4.table deleted file mode 100644 index a5f0a3c5..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.2.4.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 4: fire weather products -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/10/4.2.3.0.table deleted file mode 100644 index 254e56bc..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/10/4.2.3.1.table deleted file mode 100644 index 176ac35f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 3 - Space products, parameter category 1: quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.201.table b/eccodes/definitions.save/grib2/tables/10/4.201.table deleted file mode 100644 index ebb698b3..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.201.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.202.table b/eccodes/definitions.save/grib2/tables/10/4.202.table deleted file mode 100644 index 943c03f6..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.203.table b/eccodes/definitions.save/grib2/tables/10/4.203.table deleted file mode 100644 index 9736c1ab..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.204.table b/eccodes/definitions.save/grib2/tables/10/4.204.table deleted file mode 100644 index 51d1cecc..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.205.table b/eccodes/definitions.save/grib2/tables/10/4.205.table deleted file mode 100644 index 8d425ab9..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.206.table b/eccodes/definitions.save/grib2/tables/10/4.206.table deleted file mode 100644 index 0be7fd4f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.207.table b/eccodes/definitions.save/grib2/tables/10/4.207.table deleted file mode 100644 index fde9eb47..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.208.table b/eccodes/definitions.save/grib2/tables/10/4.208.table deleted file mode 100644 index 196becaa..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.209.table b/eccodes/definitions.save/grib2/tables/10/4.209.table deleted file mode 100644 index 351c0f43..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Stable -2 2 Mechanically-driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.210.table b/eccodes/definitions.save/grib2/tables/10/4.210.table deleted file mode 100644 index 1c00b8c6..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.211.table b/eccodes/definitions.save/grib2/tables/10/4.211.table deleted file mode 100644 index 66ef656f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.212.table b/eccodes/definitions.save/grib2/tables/10/4.212.table deleted file mode 100644 index c59bd24e..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.213.table b/eccodes/definitions.save/grib2/tables/10/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.215.table b/eccodes/definitions.save/grib2/tables/10/4.215.table deleted file mode 100644 index 46088821..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.216.table b/eccodes/definitions.save/grib2/tables/10/4.216.table deleted file mode 100644 index 4d9a70f8..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.217.table b/eccodes/definitions.save/grib2/tables/10/4.217.table deleted file mode 100644 index 51a263a9..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.218.table b/eccodes/definitions.save/grib2/tables/10/4.218.table deleted file mode 100644 index d4b2ab84..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.219.table b/eccodes/definitions.save/grib2/tables/10/4.219.table deleted file mode 100644 index f10ce468..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.220.table b/eccodes/definitions.save/grib2/tables/10/4.220.table deleted file mode 100644 index 9c957eb0..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.221.table b/eccodes/definitions.save/grib2/tables/10/4.221.table deleted file mode 100644 index 5466929c..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.222.table b/eccodes/definitions.save/grib2/tables/10/4.222.table deleted file mode 100644 index c54194e2..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.223.table b/eccodes/definitions.save/grib2/tables/10/4.223.table deleted file mode 100644 index b6a9be13..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing value diff --git a/eccodes/definitions.save/grib2/tables/10/4.224.table b/eccodes/definitions.save/grib2/tables/10/4.224.table deleted file mode 100644 index af846f84..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.225.table b/eccodes/definitions.save/grib2/tables/10/4.225.table deleted file mode 100644 index 68a43d85..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/10/4.227.table b/eccodes/definitions.save/grib2/tables/10/4.227.table deleted file mode 100644 index 6a98d49d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.230.table b/eccodes/definitions.save/grib2/tables/10/4.230.table deleted file mode 100644 index 1b2c9300..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.230.table +++ /dev/null @@ -1,407 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.233.table b/eccodes/definitions.save/grib2/tables/10/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.234.table b/eccodes/definitions.save/grib2/tables/10/4.234.table deleted file mode 100644 index bdf7cf0e..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Canopy Cover Fraction (to be used as partitioned parameter) -1 1 Crops Mixed Farming -2 2 Short Grass -3 3 Evergreen Needleleaf Trees -4 4 Deciduous Needleleaf Trees -5 5 Deciduous Broadleaf Trees -6 6 Evergreen Broadleaf Trees -7 7 Tall Grass -8 8 Desert -9 9 Tundra -10 10 Irrigated Crops -11 11 Semidesert -12 12 Ice Caps and Glaciers -13 13 Bogs and Marshes -14 14 Inland Water -15 15 Ocean -16 16 Evergreen Shrubs -17 17 Deciduous Shrubs -18 18 Mixed Forest -19 19 Interrupted Forest -20 20 Water and Land Mixtures diff --git a/eccodes/definitions.save/grib2/tables/10/4.235.table b/eccodes/definitions.save/grib2/tables/10/4.235.table deleted file mode 100644 index e18bbfbb..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.235.table +++ /dev/null @@ -1,8 +0,0 @@ -# Soil texture fraction -1 1 coarse -2 2 medium -3 3 medium-fine -4 4 fine -5 5 very-fine -6 6 organic -7 7 tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/10/4.3.table b/eccodes/definitions.save/grib2/tables/10/4.3.table deleted file mode 100644 index 68e2cc83..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.4.table b/eccodes/definitions.save/grib2/tables/10/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.5.table b/eccodes/definitions.save/grib2/tables/10/4.5.table deleted file mode 100644 index 5d45cc50..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.5.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.6.table b/eccodes/definitions.save/grib2/tables/10/4.6.table deleted file mode 100644 index 54f2993c..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.7.table b/eccodes/definitions.save/grib2/tables/10/4.7.table deleted file mode 100644 index 23e0d457..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.8.table b/eccodes/definitions.save/grib2/tables/10/4.8.table deleted file mode 100644 index 37a6cf76..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.9.table b/eccodes/definitions.save/grib2/tables/10/4.9.table deleted file mode 100644 index 19e64a3d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/4.91.table b/eccodes/definitions.save/grib2/tables/10/4.91.table deleted file mode 100644 index 97b1c70a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.0.table b/eccodes/definitions.save/grib2/tables/10/5.0.table deleted file mode 100644 index 44482726..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -#42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -#52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.1.table b/eccodes/definitions.save/grib2/tables/10/5.1.table deleted file mode 100644 index 100d4106..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.2.table b/eccodes/definitions.save/grib2/tables/10/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.3.table b/eccodes/definitions.save/grib2/tables/10/5.3.table deleted file mode 100644 index 705fa652..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.4.table b/eccodes/definitions.save/grib2/tables/10/5.4.table deleted file mode 100644 index 8133367a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.40.table b/eccodes/definitions.save/grib2/tables/10/5.40.table deleted file mode 100644 index 0d56ad0e..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.40000.table b/eccodes/definitions.save/grib2/tables/10/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.5.table b/eccodes/definitions.save/grib2/tables/10/5.5.table deleted file mode 100644 index 5d625dbd..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.50002.table b/eccodes/definitions.save/grib2/tables/10/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/10/5.6.table b/eccodes/definitions.save/grib2/tables/10/5.6.table deleted file mode 100644 index 5838e994..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.7.table b/eccodes/definitions.save/grib2/tables/10/5.7.table deleted file mode 100644 index b93aa813..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.8.table b/eccodes/definitions.save/grib2/tables/10/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/5.9.table b/eccodes/definitions.save/grib2/tables/10/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/10/6.0.table b/eccodes/definitions.save/grib2/tables/10/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/10/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/10/stepType.table b/eccodes/definitions.save/grib2/tables/10/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/10/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/11/0.0.table b/eccodes/definitions.save/grib2/tables/11/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/11/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/1.0.table b/eccodes/definitions.save/grib2/tables/11/1.0.table deleted file mode 100644 index babcdd77..00000000 --- a/eccodes/definitions.save/grib2/tables/11/1.0.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Pre-operational to be implemented by next amendment -# 12-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/11/1.1.table b/eccodes/definitions.save/grib2/tables/11/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/11/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/1.2.table b/eccodes/definitions.save/grib2/tables/11/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/11/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/1.3.table b/eccodes/definitions.save/grib2/tables/11/1.3.table deleted file mode 100644 index e8c38878..00000000 --- a/eccodes/definitions.save/grib2/tables/11/1.3.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 Sub-seasonal to seasonal prediction project (S2S) -7 7 Sub-seasonal to seasonal prediction project test (S2S) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/1.4.table b/eccodes/definitions.save/grib2/tables/11/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/11/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.0.table b/eccodes/definitions.save/grib2/tables/11/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/11/3.1.table b/eccodes/definitions.save/grib2/tables/11/3.1.table deleted file mode 100644 index a246b979..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.10.table b/eccodes/definitions.save/grib2/tables/11/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/11/3.11.table b/eccodes/definitions.save/grib2/tables/11/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.15.table b/eccodes/definitions.save/grib2/tables/11/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.2.table b/eccodes/definitions.save/grib2/tables/11/3.2.table deleted file mode 100644 index a2107f6e..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.20.table b/eccodes/definitions.save/grib2/tables/11/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.21.table b/eccodes/definitions.save/grib2/tables/11/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.3.table b/eccodes/definitions.save/grib2/tables/11/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/11/3.4.table b/eccodes/definitions.save/grib2/tables/11/3.4.table deleted file mode 100644 index 63c8adaa..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/11/3.5.table b/eccodes/definitions.save/grib2/tables/11/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/11/3.6.table b/eccodes/definitions.save/grib2/tables/11/3.6.table deleted file mode 100644 index 3099e6bb..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 See separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/11/3.7.table b/eccodes/definitions.save/grib2/tables/11/3.7.table deleted file mode 100644 index e2dc660d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm. See separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.8.table b/eccodes/definitions.save/grib2/tables/11/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/3.9.table b/eccodes/definitions.save/grib2/tables/11/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/11/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/11/4.0.table b/eccodes/definitions.save/grib2/tables/11/4.0.table deleted file mode 100644 index 1c1fe09a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.0.table +++ /dev/null @@ -1,59 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -60 60 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 55-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.0.table b/eccodes/definitions.save/grib2/tables/11/4.1.0.table deleted file mode 100644 index 36110886..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.1.table b/eccodes/definitions.save/grib2/tables/11/4.1.1.table deleted file mode 100644 index 29f1dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.10.table b/eccodes/definitions.save/grib2/tables/11/4.1.10.table deleted file mode 100644 index 9c8c92b1..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.192.table b/eccodes/definitions.save/grib2/tables/11/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.2.table b/eccodes/definitions.save/grib2/tables/11/4.1.2.table deleted file mode 100644 index b90201c6..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.1.3.table b/eccodes/definitions.save/grib2/tables/11/4.1.3.table deleted file mode 100644 index fe1d8ae5..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.1.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline. Product discipline 3 - Space products -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/11/4.10.table b/eccodes/definitions.save/grib2/tables/11/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.11.table b/eccodes/definitions.save/grib2/tables/11/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.12.table b/eccodes/definitions.save/grib2/tables/11/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.13.table b/eccodes/definitions.save/grib2/tables/11/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.14.table b/eccodes/definitions.save/grib2/tables/11/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.15.table b/eccodes/definitions.save/grib2/tables/11/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.192.table b/eccodes/definitions.save/grib2/tables/11/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.0.table deleted file mode 100644 index f7784cc3..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.1.table deleted file mode 100644 index 827ba1dc..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 1: moisture -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.13.table deleted file mode 100644 index b9979f0d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.14.table deleted file mode 100644 index 4a2a4e12..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.15.table deleted file mode 100644 index 9a178ceb..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.16.table deleted file mode 100644 index 39215ab2..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.18.table deleted file mode 100644 index 82fd13da..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.19.table deleted file mode 100644 index 2aa34464..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.190.table deleted file mode 100644 index 39fb5574..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.191.table deleted file mode 100644 index 81230c0e..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.2.table deleted file mode 100644 index d587f84e..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.2.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 2: momentum -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m s-1) -35 35 Tangential wind component (m s-1) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.20.table deleted file mode 100644 index 22cea606..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.3.table deleted file mode 100644 index f718c6ea..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.4.table deleted file mode 100644 index fea4cafc..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.5.table deleted file mode 100644 index b0c93dd3..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.6.table deleted file mode 100644 index a06f4292..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.6.table +++ /dev/null @@ -1,40 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/11/4.2.0.7.table deleted file mode 100644 index 7a7d2008..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.0.table deleted file mode 100644 index bf1e3e93..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.1.table deleted file mode 100644 index cb5117dc..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.1.2.table deleted file mode 100644 index 2c70c6bd..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (m-1) -12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.0.table deleted file mode 100644 index b820364f..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 10 - Oceanographic products, parameter category 0: waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m s-1) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m s-1) -22 22 v-component surface Stokes drift (m s-1) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m s-1) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (s-1) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.1.table deleted file mode 100644 index ae52b0c2..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.191.table deleted file mode 100644 index 14085ac9..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.2.table deleted file mode 100644 index a6d9dd0c..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.3.table deleted file mode 100644 index 112af09d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.10.4.table deleted file mode 100644 index d80a3278..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (m-1) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.0.table deleted file mode 100644 index 9a426a5c..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 0: vegetation/biomass -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -# 33-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.3.table deleted file mode 100644 index e985e41a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 3: soil products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/11/4.2.2.4.table deleted file mode 100644 index a5f0a3c5..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.2.4.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 2 - Land surface products, parameter category 4: fire weather products -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/11/4.2.3.0.table deleted file mode 100644 index 254e56bc..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/11/4.2.3.1.table deleted file mode 100644 index 176ac35f..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category. Product discipline 3 - Space products, parameter category 1: quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.201.table b/eccodes/definitions.save/grib2/tables/11/4.201.table deleted file mode 100644 index dc3926b3..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.201.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.202.table b/eccodes/definitions.save/grib2/tables/11/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.203.table b/eccodes/definitions.save/grib2/tables/11/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.204.table b/eccodes/definitions.save/grib2/tables/11/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.205.table b/eccodes/definitions.save/grib2/tables/11/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.206.table b/eccodes/definitions.save/grib2/tables/11/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.207.table b/eccodes/definitions.save/grib2/tables/11/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.208.table b/eccodes/definitions.save/grib2/tables/11/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.209.table b/eccodes/definitions.save/grib2/tables/11/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.210.table b/eccodes/definitions.save/grib2/tables/11/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.211.table b/eccodes/definitions.save/grib2/tables/11/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.212.table b/eccodes/definitions.save/grib2/tables/11/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.213.table b/eccodes/definitions.save/grib2/tables/11/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.215.table b/eccodes/definitions.save/grib2/tables/11/4.215.table deleted file mode 100644 index 88fda8b8..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely-sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.216.table b/eccodes/definitions.save/grib2/tables/11/4.216.table deleted file mode 100644 index 4d9a70f8..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.217.table b/eccodes/definitions.save/grib2/tables/11/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.218.table b/eccodes/definitions.save/grib2/tables/11/4.218.table deleted file mode 100644 index 6940a0e4..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.219.table b/eccodes/definitions.save/grib2/tables/11/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.220.table b/eccodes/definitions.save/grib2/tables/11/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.221.table b/eccodes/definitions.save/grib2/tables/11/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.222.table b/eccodes/definitions.save/grib2/tables/11/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.223.table b/eccodes/definitions.save/grib2/tables/11/4.223.table deleted file mode 100644 index e54719f8..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing value diff --git a/eccodes/definitions.save/grib2/tables/11/4.224.table b/eccodes/definitions.save/grib2/tables/11/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.225.table b/eccodes/definitions.save/grib2/tables/11/4.225.table deleted file mode 100644 index 68a43d85..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/11/4.227.table b/eccodes/definitions.save/grib2/tables/11/4.227.table deleted file mode 100644 index 6a98d49d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.230.table b/eccodes/definitions.save/grib2/tables/11/4.230.table deleted file mode 100644 index 1b2c9300..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.230.table +++ /dev/null @@ -1,407 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.233.table b/eccodes/definitions.save/grib2/tables/11/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.234.table b/eccodes/definitions.save/grib2/tables/11/4.234.table deleted file mode 100644 index 78d8fff1..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Canopy Cover Fraction (to be used as partitioned parameter) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/11/4.236.table b/eccodes/definitions.save/grib2/tables/11/4.236.table deleted file mode 100644 index 741b00f4..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.236.table +++ /dev/null @@ -1,9 +0,0 @@ -#Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic - diff --git a/eccodes/definitions.save/grib2/tables/11/4.3.table b/eccodes/definitions.save/grib2/tables/11/4.3.table deleted file mode 100644 index 8f7d20be..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.4.table b/eccodes/definitions.save/grib2/tables/11/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.5.table b/eccodes/definitions.save/grib2/tables/11/4.5.table deleted file mode 100644 index 5d45cc50..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.5.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.6.table b/eccodes/definitions.save/grib2/tables/11/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.7.table b/eccodes/definitions.save/grib2/tables/11/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.8.table b/eccodes/definitions.save/grib2/tables/11/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.9.table b/eccodes/definitions.save/grib2/tables/11/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/4.91.table b/eccodes/definitions.save/grib2/tables/11/4.91.table deleted file mode 100644 index 97b1c70a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.0.table b/eccodes/definitions.save/grib2/tables/11/5.0.table deleted file mode 100644 index 44482726..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -#42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -#52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.1.table b/eccodes/definitions.save/grib2/tables/11/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.2.table b/eccodes/definitions.save/grib2/tables/11/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.3.table b/eccodes/definitions.save/grib2/tables/11/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.4.table b/eccodes/definitions.save/grib2/tables/11/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.40.table b/eccodes/definitions.save/grib2/tables/11/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.40000.table b/eccodes/definitions.save/grib2/tables/11/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.5.table b/eccodes/definitions.save/grib2/tables/11/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.50002.table b/eccodes/definitions.save/grib2/tables/11/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/11/5.6.table b/eccodes/definitions.save/grib2/tables/11/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.7.table b/eccodes/definitions.save/grib2/tables/11/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.8.table b/eccodes/definitions.save/grib2/tables/11/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/5.9.table b/eccodes/definitions.save/grib2/tables/11/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/11/6.0.table b/eccodes/definitions.save/grib2/tables/11/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/11/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/11/stepType.table b/eccodes/definitions.save/grib2/tables/11/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/11/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/12/0.0.table b/eccodes/definitions.save/grib2/tables/12/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/12/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.0.table b/eccodes/definitions.save/grib2/tables/12/1.0.table deleted file mode 100644 index 84ec1988..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.0.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Pre-operational to be implemented by next amendment -# 14-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.1.table b/eccodes/definitions.save/grib2/tables/12/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.2.table b/eccodes/definitions.save/grib2/tables/12/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.3.table b/eccodes/definitions.save/grib2/tables/12/1.3.table deleted file mode 100644 index e8c38878..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.3.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 Sub-seasonal to seasonal prediction project (S2S) -7 7 Sub-seasonal to seasonal prediction project test (S2S) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.4.table b/eccodes/definitions.save/grib2/tables/12/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.5.table b/eccodes/definitions.save/grib2/tables/12/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/1.6.table b/eccodes/definitions.save/grib2/tables/12/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/12/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.0.table b/eccodes/definitions.save/grib2/tables/12/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/12/3.1.table b/eccodes/definitions.save/grib2/tables/12/3.1.table deleted file mode 100644 index a246b979..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.10.table b/eccodes/definitions.save/grib2/tables/12/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/12/3.11.table b/eccodes/definitions.save/grib2/tables/12/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.15.table b/eccodes/definitions.save/grib2/tables/12/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.2.table b/eccodes/definitions.save/grib2/tables/12/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.20.table b/eccodes/definitions.save/grib2/tables/12/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.21.table b/eccodes/definitions.save/grib2/tables/12/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.3.table b/eccodes/definitions.save/grib2/tables/12/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/12/3.4.table b/eccodes/definitions.save/grib2/tables/12/3.4.table deleted file mode 100644 index 63c8adaa..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/12/3.5.table b/eccodes/definitions.save/grib2/tables/12/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/12/3.6.table b/eccodes/definitions.save/grib2/tables/12/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/12/3.7.table b/eccodes/definitions.save/grib2/tables/12/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.8.table b/eccodes/definitions.save/grib2/tables/12/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/3.9.table b/eccodes/definitions.save/grib2/tables/12/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/12/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/12/4.0.table b/eccodes/definitions.save/grib2/tables/12/4.0.table deleted file mode 100644 index b77e3f32..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.0.table +++ /dev/null @@ -1,61 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -60 60 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 55-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.0.table b/eccodes/definitions.save/grib2/tables/12/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.1.table b/eccodes/definitions.save/grib2/tables/12/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.10.table b/eccodes/definitions.save/grib2/tables/12/4.1.10.table deleted file mode 100644 index b97dcd35..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.192.table b/eccodes/definitions.save/grib2/tables/12/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.2.table b/eccodes/definitions.save/grib2/tables/12/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.1.3.table b/eccodes/definitions.save/grib2/tables/12/4.1.3.table deleted file mode 100644 index 5096a166..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.1.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.10.table b/eccodes/definitions.save/grib2/tables/12/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.11.table b/eccodes/definitions.save/grib2/tables/12/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.12.table b/eccodes/definitions.save/grib2/tables/12/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.13.table b/eccodes/definitions.save/grib2/tables/12/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.14.table b/eccodes/definitions.save/grib2/tables/12/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.15.table b/eccodes/definitions.save/grib2/tables/12/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.192.table b/eccodes/definitions.save/grib2/tables/12/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.0.table deleted file mode 100644 index ce91fe42..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.1.table deleted file mode 100644 index d1d1704d..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.15.table deleted file mode 100644 index d74fa723..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.18.table deleted file mode 100644 index 18c41aa4..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.19.table deleted file mode 100644 index 75101bd3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.191.table deleted file mode 100644 index 1f949f14..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.2.table deleted file mode 100644 index 84882e8b..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.2.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m s-1) -35 35 Tangential wind component (m s-1) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.20.table deleted file mode 100644 index ac97b0b3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.3.table deleted file mode 100644 index 9a88e002..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.4.table deleted file mode 100644 index dbfcbddb..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.5.table deleted file mode 100644 index f1c04650..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.6.table deleted file mode 100644 index 9ee97b73..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.6.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/12/4.2.0.7.table deleted file mode 100644 index db47d011..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.0.table deleted file mode 100644 index e93f0a33..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.1.2.table deleted file mode 100644 index 2d08d44f..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (m-1) -12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.0.table deleted file mode 100644 index 761b6395..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m s-1) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m s-1) -22 22 v-component surface Stokes drift (m s-1) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m s-1) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (s-1) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.191.table deleted file mode 100644 index 18e56f93..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.2.table deleted file mode 100644 index 6f066442..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.10.4.table deleted file mode 100644 index 450320ca..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (m-1) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.0.table deleted file mode 100644 index 95b696a3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -# 33-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.3.table deleted file mode 100644 index 2f629107..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/12/4.2.2.4.table deleted file mode 100644 index cf91e8b7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.2.4.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/12/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/12/4.2.3.1.table deleted file mode 100644 index 0c0fc8d3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.201.table b/eccodes/definitions.save/grib2/tables/12/4.201.table deleted file mode 100644 index 2510f2ef..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.202.table b/eccodes/definitions.save/grib2/tables/12/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.203.table b/eccodes/definitions.save/grib2/tables/12/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.204.table b/eccodes/definitions.save/grib2/tables/12/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.205.table b/eccodes/definitions.save/grib2/tables/12/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.206.table b/eccodes/definitions.save/grib2/tables/12/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.207.table b/eccodes/definitions.save/grib2/tables/12/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.208.table b/eccodes/definitions.save/grib2/tables/12/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.209.table b/eccodes/definitions.save/grib2/tables/12/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.210.table b/eccodes/definitions.save/grib2/tables/12/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.211.table b/eccodes/definitions.save/grib2/tables/12/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.212.table b/eccodes/definitions.save/grib2/tables/12/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.213.table b/eccodes/definitions.save/grib2/tables/12/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.215.table b/eccodes/definitions.save/grib2/tables/12/4.215.table deleted file mode 100644 index 88fda8b8..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely-sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.216.table b/eccodes/definitions.save/grib2/tables/12/4.216.table deleted file mode 100644 index 4d9a70f8..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.217.table b/eccodes/definitions.save/grib2/tables/12/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.218.table b/eccodes/definitions.save/grib2/tables/12/4.218.table deleted file mode 100644 index 6940a0e4..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.219.table b/eccodes/definitions.save/grib2/tables/12/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.220.table b/eccodes/definitions.save/grib2/tables/12/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.221.table b/eccodes/definitions.save/grib2/tables/12/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.222.table b/eccodes/definitions.save/grib2/tables/12/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.223.table b/eccodes/definitions.save/grib2/tables/12/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.224.table b/eccodes/definitions.save/grib2/tables/12/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.225.table b/eccodes/definitions.save/grib2/tables/12/4.225.table deleted file mode 100644 index 68a43d85..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/12/4.227.table b/eccodes/definitions.save/grib2/tables/12/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/12/4.230.table b/eccodes/definitions.save/grib2/tables/12/4.230.table deleted file mode 100644 index b35a9002..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.230.table +++ /dev/null @@ -1,413 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62019 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.233.table b/eccodes/definitions.save/grib2/tables/12/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.234.table b/eccodes/definitions.save/grib2/tables/12/4.234.table deleted file mode 100644 index 9844a91d..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/12/4.236.table b/eccodes/definitions.save/grib2/tables/12/4.236.table deleted file mode 100644 index 08c7f8d5..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/12/4.3.table b/eccodes/definitions.save/grib2/tables/12/4.3.table deleted file mode 100644 index 8f7d20be..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.4.table b/eccodes/definitions.save/grib2/tables/12/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.5.table b/eccodes/definitions.save/grib2/tables/12/4.5.table deleted file mode 100644 index 5d45cc50..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.5.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.6.table b/eccodes/definitions.save/grib2/tables/12/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.7.table b/eccodes/definitions.save/grib2/tables/12/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.8.table b/eccodes/definitions.save/grib2/tables/12/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.9.table b/eccodes/definitions.save/grib2/tables/12/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/4.91.table b/eccodes/definitions.save/grib2/tables/12/4.91.table deleted file mode 100644 index 97b1c70a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.0.table b/eccodes/definitions.save/grib2/tables/12/5.0.table deleted file mode 100644 index 8ce7bb24..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.1.table b/eccodes/definitions.save/grib2/tables/12/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.2.table b/eccodes/definitions.save/grib2/tables/12/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.3.table b/eccodes/definitions.save/grib2/tables/12/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.4.table b/eccodes/definitions.save/grib2/tables/12/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.40.table b/eccodes/definitions.save/grib2/tables/12/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.40000.table b/eccodes/definitions.save/grib2/tables/12/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.5.table b/eccodes/definitions.save/grib2/tables/12/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.50002.table b/eccodes/definitions.save/grib2/tables/12/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/12/5.6.table b/eccodes/definitions.save/grib2/tables/12/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.7.table b/eccodes/definitions.save/grib2/tables/12/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.8.table b/eccodes/definitions.save/grib2/tables/12/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/5.9.table b/eccodes/definitions.save/grib2/tables/12/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/12/6.0.table b/eccodes/definitions.save/grib2/tables/12/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/12/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/12/stepType.table b/eccodes/definitions.save/grib2/tables/12/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/12/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/13/0.0.table b/eccodes/definitions.save/grib2/tables/13/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/13/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.0.table b/eccodes/definitions.save/grib2/tables/13/1.0.table deleted file mode 100644 index dfca4d4c..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.0.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Pre-operational to be implemented by next amendment -# 15-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.1.table b/eccodes/definitions.save/grib2/tables/13/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.2.table b/eccodes/definitions.save/grib2/tables/13/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.3.table b/eccodes/definitions.save/grib2/tables/13/1.3.table deleted file mode 100644 index 9b37611b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.3.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.4.table b/eccodes/definitions.save/grib2/tables/13/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.5.table b/eccodes/definitions.save/grib2/tables/13/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/1.6.table b/eccodes/definitions.save/grib2/tables/13/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/13/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.0.table b/eccodes/definitions.save/grib2/tables/13/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/13/3.1.table b/eccodes/definitions.save/grib2/tables/13/3.1.table deleted file mode 100644 index a246b979..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.10.table b/eccodes/definitions.save/grib2/tables/13/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/13/3.11.table b/eccodes/definitions.save/grib2/tables/13/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.15.table b/eccodes/definitions.save/grib2/tables/13/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.2.table b/eccodes/definitions.save/grib2/tables/13/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.20.table b/eccodes/definitions.save/grib2/tables/13/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.21.table b/eccodes/definitions.save/grib2/tables/13/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.3.table b/eccodes/definitions.save/grib2/tables/13/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/13/3.4.table b/eccodes/definitions.save/grib2/tables/13/3.4.table deleted file mode 100644 index 63c8adaa..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/13/3.5.table b/eccodes/definitions.save/grib2/tables/13/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/13/3.6.table b/eccodes/definitions.save/grib2/tables/13/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/13/3.7.table b/eccodes/definitions.save/grib2/tables/13/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.8.table b/eccodes/definitions.save/grib2/tables/13/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/3.9.table b/eccodes/definitions.save/grib2/tables/13/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/13/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/13/4.0.table b/eccodes/definitions.save/grib2/tables/13/4.0.table deleted file mode 100644 index 89cf92c4..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.0.table +++ /dev/null @@ -1,62 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -# 55-59 Reserved -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 62-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.0.table b/eccodes/definitions.save/grib2/tables/13/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.1.table b/eccodes/definitions.save/grib2/tables/13/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.10.table b/eccodes/definitions.save/grib2/tables/13/4.1.10.table deleted file mode 100644 index b97dcd35..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.192.table b/eccodes/definitions.save/grib2/tables/13/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.2.table b/eccodes/definitions.save/grib2/tables/13/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.1.3.table b/eccodes/definitions.save/grib2/tables/13/4.1.3.table deleted file mode 100644 index 5096a166..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.1.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.10.table b/eccodes/definitions.save/grib2/tables/13/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.11.table b/eccodes/definitions.save/grib2/tables/13/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.12.table b/eccodes/definitions.save/grib2/tables/13/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.13.table b/eccodes/definitions.save/grib2/tables/13/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.14.table b/eccodes/definitions.save/grib2/tables/13/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.15.table b/eccodes/definitions.save/grib2/tables/13/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.192.table b/eccodes/definitions.save/grib2/tables/13/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.0.table deleted file mode 100644 index 6de8a23c..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.0.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.1.table deleted file mode 100644 index d1d1704d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.15.table deleted file mode 100644 index d74fa723..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.17.table deleted file mode 100644 index d481c02d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.18.table deleted file mode 100644 index 18c41aa4..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.19.table deleted file mode 100644 index 75101bd3..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.2.table deleted file mode 100644 index c83b0730..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.2.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.20.table deleted file mode 100644 index 9584f7c7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.3.table deleted file mode 100644 index 9a88e002..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.4.table deleted file mode 100644 index dbfcbddb..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.5.table deleted file mode 100644 index f1c04650..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.6.table deleted file mode 100644 index 9ee97b73..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.6.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/13/4.2.0.7.table deleted file mode 100644 index db47d011..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.0.table deleted file mode 100644 index cf56b08e..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.1.2.table deleted file mode 100644 index 8daf51ef..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.191.table deleted file mode 100644 index dc0e23d7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.2.table deleted file mode 100644 index 157a9af6..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.0.table deleted file mode 100644 index 93135b85..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.2.0.table +++ /dev/null @@ -1,39 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -# 35-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.3.table deleted file mode 100644 index 2f629107..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/13/4.2.2.4.table deleted file mode 100644 index d4ede2f7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.2.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/13/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/13/4.2.3.1.table deleted file mode 100644 index 0c0fc8d3..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.201.table b/eccodes/definitions.save/grib2/tables/13/4.201.table deleted file mode 100644 index 2510f2ef..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.202.table b/eccodes/definitions.save/grib2/tables/13/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.203.table b/eccodes/definitions.save/grib2/tables/13/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.204.table b/eccodes/definitions.save/grib2/tables/13/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.205.table b/eccodes/definitions.save/grib2/tables/13/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.206.table b/eccodes/definitions.save/grib2/tables/13/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.207.table b/eccodes/definitions.save/grib2/tables/13/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.208.table b/eccodes/definitions.save/grib2/tables/13/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.209.table b/eccodes/definitions.save/grib2/tables/13/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.210.table b/eccodes/definitions.save/grib2/tables/13/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.211.table b/eccodes/definitions.save/grib2/tables/13/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.212.table b/eccodes/definitions.save/grib2/tables/13/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.213.table b/eccodes/definitions.save/grib2/tables/13/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.215.table b/eccodes/definitions.save/grib2/tables/13/4.215.table deleted file mode 100644 index 88fda8b8..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely-sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.216.table b/eccodes/definitions.save/grib2/tables/13/4.216.table deleted file mode 100644 index 4d9a70f8..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.217.table b/eccodes/definitions.save/grib2/tables/13/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.218.table b/eccodes/definitions.save/grib2/tables/13/4.218.table deleted file mode 100644 index 6940a0e4..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.219.table b/eccodes/definitions.save/grib2/tables/13/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.220.table b/eccodes/definitions.save/grib2/tables/13/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.221.table b/eccodes/definitions.save/grib2/tables/13/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.222.table b/eccodes/definitions.save/grib2/tables/13/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.223.table b/eccodes/definitions.save/grib2/tables/13/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.224.table b/eccodes/definitions.save/grib2/tables/13/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.225.table b/eccodes/definitions.save/grib2/tables/13/4.225.table deleted file mode 100644 index 68a43d85..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/13/4.227.table b/eccodes/definitions.save/grib2/tables/13/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/13/4.230.table b/eccodes/definitions.save/grib2/tables/13/4.230.table deleted file mode 100644 index b35a9002..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.230.table +++ /dev/null @@ -1,413 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62019 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.233.table b/eccodes/definitions.save/grib2/tables/13/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.234.table b/eccodes/definitions.save/grib2/tables/13/4.234.table deleted file mode 100644 index 9844a91d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/13/4.236.table b/eccodes/definitions.save/grib2/tables/13/4.236.table deleted file mode 100644 index 08c7f8d5..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/13/4.3.table b/eccodes/definitions.save/grib2/tables/13/4.3.table deleted file mode 100644 index 1a9d59dd..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.3.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.4.table b/eccodes/definitions.save/grib2/tables/13/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.5.table b/eccodes/definitions.save/grib2/tables/13/4.5.table deleted file mode 100644 index ee26c48d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.5.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -167 167 Bottom of root zone -# 168-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.6.table b/eccodes/definitions.save/grib2/tables/13/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.7.table b/eccodes/definitions.save/grib2/tables/13/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.8.table b/eccodes/definitions.save/grib2/tables/13/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.9.table b/eccodes/definitions.save/grib2/tables/13/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/4.91.table b/eccodes/definitions.save/grib2/tables/13/4.91.table deleted file mode 100644 index 97b1c70a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.0.table b/eccodes/definitions.save/grib2/tables/13/5.0.table deleted file mode 100644 index 8ce7bb24..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.1.table b/eccodes/definitions.save/grib2/tables/13/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.2.table b/eccodes/definitions.save/grib2/tables/13/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.3.table b/eccodes/definitions.save/grib2/tables/13/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.4.table b/eccodes/definitions.save/grib2/tables/13/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.40.table b/eccodes/definitions.save/grib2/tables/13/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.40000.table b/eccodes/definitions.save/grib2/tables/13/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.5.table b/eccodes/definitions.save/grib2/tables/13/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.50002.table b/eccodes/definitions.save/grib2/tables/13/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/13/5.6.table b/eccodes/definitions.save/grib2/tables/13/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.7.table b/eccodes/definitions.save/grib2/tables/13/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.8.table b/eccodes/definitions.save/grib2/tables/13/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/5.9.table b/eccodes/definitions.save/grib2/tables/13/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/13/6.0.table b/eccodes/definitions.save/grib2/tables/13/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/13/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/13/stepType.table b/eccodes/definitions.save/grib2/tables/13/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/13/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/14/0.0.table b/eccodes/definitions.save/grib2/tables/14/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/14/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.0.table b/eccodes/definitions.save/grib2/tables/14/1.0.table deleted file mode 100644 index 4dafc79f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.0.table +++ /dev/null @@ -1,19 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Pre-operational to be implemented by next amendment -# 16-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.1.table b/eccodes/definitions.save/grib2/tables/14/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.2.table b/eccodes/definitions.save/grib2/tables/14/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.3.table b/eccodes/definitions.save/grib2/tables/14/1.3.table deleted file mode 100644 index ea01c001..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in ensembles of regional re-analysis project (UERRA) -9 9 Uncertainties in ensembles of regional re-analysis project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.4.table b/eccodes/definitions.save/grib2/tables/14/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.5.table b/eccodes/definitions.save/grib2/tables/14/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/1.6.table b/eccodes/definitions.save/grib2/tables/14/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/14/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.0.table b/eccodes/definitions.save/grib2/tables/14/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/14/3.1.table b/eccodes/definitions.save/grib2/tables/14/3.1.table deleted file mode 100644 index a246b979..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.10.table b/eccodes/definitions.save/grib2/tables/14/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/14/3.11.table b/eccodes/definitions.save/grib2/tables/14/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.15.table b/eccodes/definitions.save/grib2/tables/14/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.2.table b/eccodes/definitions.save/grib2/tables/14/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.20.table b/eccodes/definitions.save/grib2/tables/14/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.21.table b/eccodes/definitions.save/grib2/tables/14/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.3.table b/eccodes/definitions.save/grib2/tables/14/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/14/3.4.table b/eccodes/definitions.save/grib2/tables/14/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/14/3.5.table b/eccodes/definitions.save/grib2/tables/14/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/14/3.6.table b/eccodes/definitions.save/grib2/tables/14/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/14/3.7.table b/eccodes/definitions.save/grib2/tables/14/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.8.table b/eccodes/definitions.save/grib2/tables/14/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/3.9.table b/eccodes/definitions.save/grib2/tables/14/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/14/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/14/4.0.table b/eccodes/definitions.save/grib2/tables/14/4.0.table deleted file mode 100644 index b24b6fb1..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.0.table +++ /dev/null @@ -1,62 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -# 55-59 Reserved -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 62-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.0.table b/eccodes/definitions.save/grib2/tables/14/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.1.table b/eccodes/definitions.save/grib2/tables/14/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.10.table b/eccodes/definitions.save/grib2/tables/14/4.1.10.table deleted file mode 100644 index b97dcd35..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.192.table b/eccodes/definitions.save/grib2/tables/14/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.2.table b/eccodes/definitions.save/grib2/tables/14/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.1.3.table b/eccodes/definitions.save/grib2/tables/14/4.1.3.table deleted file mode 100644 index 5096a166..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.1.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.10.table b/eccodes/definitions.save/grib2/tables/14/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.11.table b/eccodes/definitions.save/grib2/tables/14/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.12.table b/eccodes/definitions.save/grib2/tables/14/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.13.table b/eccodes/definitions.save/grib2/tables/14/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.14.table b/eccodes/definitions.save/grib2/tables/14/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.15.table b/eccodes/definitions.save/grib2/tables/14/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.192.table b/eccodes/definitions.save/grib2/tables/14/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.0.table deleted file mode 100644 index 41e5291a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.0.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.1.table deleted file mode 100644 index 4c624e74..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.1.table +++ /dev/null @@ -1,97 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -# 95-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.15.table deleted file mode 100644 index d74fa723..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.17.table deleted file mode 100644 index d481c02d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.18.table deleted file mode 100644 index 18c41aa4..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.19.table deleted file mode 100644 index 75101bd3..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.2.table deleted file mode 100644 index c83b0730..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.2.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.20.table deleted file mode 100644 index 9584f7c7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.3.table deleted file mode 100644 index 9a88e002..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.4.table deleted file mode 100644 index dbfcbddb..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.5.table deleted file mode 100644 index f1c04650..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.6.table deleted file mode 100644 index 70215274..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.6.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -# 38-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/14/4.2.0.7.table deleted file mode 100644 index db47d011..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.0.table deleted file mode 100644 index cf56b08e..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.1.2.table deleted file mode 100644 index 8daf51ef..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.0.table deleted file mode 100644 index 1853aa0f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.2.0.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -# 38-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.3.table deleted file mode 100644 index 2f629107..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/14/4.2.2.4.table deleted file mode 100644 index d4ede2f7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.2.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/14/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/14/4.2.3.1.table deleted file mode 100644 index 0c0fc8d3..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.201.table b/eccodes/definitions.save/grib2/tables/14/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.202.table b/eccodes/definitions.save/grib2/tables/14/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.203.table b/eccodes/definitions.save/grib2/tables/14/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.204.table b/eccodes/definitions.save/grib2/tables/14/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.205.table b/eccodes/definitions.save/grib2/tables/14/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.206.table b/eccodes/definitions.save/grib2/tables/14/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.207.table b/eccodes/definitions.save/grib2/tables/14/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.208.table b/eccodes/definitions.save/grib2/tables/14/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.209.table b/eccodes/definitions.save/grib2/tables/14/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.210.table b/eccodes/definitions.save/grib2/tables/14/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.211.table b/eccodes/definitions.save/grib2/tables/14/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.212.table b/eccodes/definitions.save/grib2/tables/14/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.213.table b/eccodes/definitions.save/grib2/tables/14/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.215.table b/eccodes/definitions.save/grib2/tables/14/4.215.table deleted file mode 100644 index 88fda8b8..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely-sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.216.table b/eccodes/definitions.save/grib2/tables/14/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.217.table b/eccodes/definitions.save/grib2/tables/14/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.218.table b/eccodes/definitions.save/grib2/tables/14/4.218.table deleted file mode 100644 index 6940a0e4..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.219.table b/eccodes/definitions.save/grib2/tables/14/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.220.table b/eccodes/definitions.save/grib2/tables/14/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.221.table b/eccodes/definitions.save/grib2/tables/14/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.222.table b/eccodes/definitions.save/grib2/tables/14/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.223.table b/eccodes/definitions.save/grib2/tables/14/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.224.table b/eccodes/definitions.save/grib2/tables/14/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.225.table b/eccodes/definitions.save/grib2/tables/14/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/14/4.227.table b/eccodes/definitions.save/grib2/tables/14/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/14/4.230.table b/eccodes/definitions.save/grib2/tables/14/4.230.table deleted file mode 100644 index 654de4d9..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.230.table +++ /dev/null @@ -1,412 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -10500 10500 Dimethyl sulphide -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.233.table b/eccodes/definitions.save/grib2/tables/14/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.234.table b/eccodes/definitions.save/grib2/tables/14/4.234.table deleted file mode 100644 index 9844a91d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/14/4.236.table b/eccodes/definitions.save/grib2/tables/14/4.236.table deleted file mode 100644 index 08c7f8d5..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/14/4.241.table b/eccodes/definitions.save/grib2/tables/14/4.241.table deleted file mode 100644 index 21b8b207..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow-covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.242.table b/eccodes/definitions.save/grib2/tables/14/4.242.table deleted file mode 100644 index 012655df..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GLOBCOVER GCV2009 -2 2 Land use classes according to European Commission - Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.243.table b/eccodes/definitions.save/grib2/tables/14/4.243.table deleted file mode 100644 index 9f047be3..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Fresh water flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rain fed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/14/4.3.table b/eccodes/definitions.save/grib2/tables/14/4.3.table deleted file mode 100644 index f423af2b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.3.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.4.table b/eccodes/definitions.save/grib2/tables/14/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.5.table b/eccodes/definitions.save/grib2/tables/14/4.5.table deleted file mode 100644 index 541268ff..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.5.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -167 167 Bottom of root zone -# 168-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.6.table b/eccodes/definitions.save/grib2/tables/14/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.7.table b/eccodes/definitions.save/grib2/tables/14/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.8.table b/eccodes/definitions.save/grib2/tables/14/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.9.table b/eccodes/definitions.save/grib2/tables/14/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/4.91.table b/eccodes/definitions.save/grib2/tables/14/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/14/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.0.table b/eccodes/definitions.save/grib2/tables/14/5.0.table deleted file mode 100644 index cd61837a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.1.table b/eccodes/definitions.save/grib2/tables/14/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.2.table b/eccodes/definitions.save/grib2/tables/14/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.3.table b/eccodes/definitions.save/grib2/tables/14/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.4.table b/eccodes/definitions.save/grib2/tables/14/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.40.table b/eccodes/definitions.save/grib2/tables/14/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.40000.table b/eccodes/definitions.save/grib2/tables/14/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.5.table b/eccodes/definitions.save/grib2/tables/14/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.50002.table b/eccodes/definitions.save/grib2/tables/14/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/14/5.6.table b/eccodes/definitions.save/grib2/tables/14/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.7.table b/eccodes/definitions.save/grib2/tables/14/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.8.table b/eccodes/definitions.save/grib2/tables/14/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/5.9.table b/eccodes/definitions.save/grib2/tables/14/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/14/6.0.table b/eccodes/definitions.save/grib2/tables/14/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/14/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/14/stepType.table b/eccodes/definitions.save/grib2/tables/14/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/14/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/15/0.0.table b/eccodes/definitions.save/grib2/tables/15/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/15/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.0.table b/eccodes/definitions.save/grib2/tables/15/1.0.table deleted file mode 100644 index 1d1bde1d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Pre-operational to be implemented by next amendment -# 17-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.1.table b/eccodes/definitions.save/grib2/tables/15/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.2.table b/eccodes/definitions.save/grib2/tables/15/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.3.table b/eccodes/definitions.save/grib2/tables/15/1.3.table deleted file mode 100644 index 6f061bf4..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in ensembles of regional reanalysis project (UERRA) -9 9 Uncertainties in ensembles of regional reanalysis project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.4.table b/eccodes/definitions.save/grib2/tables/15/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.5.table b/eccodes/definitions.save/grib2/tables/15/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/1.6.table b/eccodes/definitions.save/grib2/tables/15/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/15/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.0.table b/eccodes/definitions.save/grib2/tables/15/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/15/3.1.table b/eccodes/definitions.save/grib2/tables/15/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.10.table b/eccodes/definitions.save/grib2/tables/15/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/15/3.11.table b/eccodes/definitions.save/grib2/tables/15/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.15.table b/eccodes/definitions.save/grib2/tables/15/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.2.table b/eccodes/definitions.save/grib2/tables/15/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.20.table b/eccodes/definitions.save/grib2/tables/15/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.21.table b/eccodes/definitions.save/grib2/tables/15/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.3.table b/eccodes/definitions.save/grib2/tables/15/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/15/3.4.table b/eccodes/definitions.save/grib2/tables/15/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/15/3.5.table b/eccodes/definitions.save/grib2/tables/15/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/15/3.6.table b/eccodes/definitions.save/grib2/tables/15/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/15/3.7.table b/eccodes/definitions.save/grib2/tables/15/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.8.table b/eccodes/definitions.save/grib2/tables/15/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/3.9.table b/eccodes/definitions.save/grib2/tables/15/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/15/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/15/4.0.table b/eccodes/definitions.save/grib2/tables/15/4.0.table deleted file mode 100644 index b4eff076..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.0.table +++ /dev/null @@ -1,64 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -# 55-56 Reserved -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -# 58-59 Reserved -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 62-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.0.table b/eccodes/definitions.save/grib2/tables/15/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.1.table b/eccodes/definitions.save/grib2/tables/15/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.10.table b/eccodes/definitions.save/grib2/tables/15/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.192.table b/eccodes/definitions.save/grib2/tables/15/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.2.table b/eccodes/definitions.save/grib2/tables/15/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.1.3.table b/eccodes/definitions.save/grib2/tables/15/4.1.3.table deleted file mode 100644 index 5096a166..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.1.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.10.table b/eccodes/definitions.save/grib2/tables/15/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.11.table b/eccodes/definitions.save/grib2/tables/15/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.12.table b/eccodes/definitions.save/grib2/tables/15/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.13.table b/eccodes/definitions.save/grib2/tables/15/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.14.table b/eccodes/definitions.save/grib2/tables/15/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.15.table b/eccodes/definitions.save/grib2/tables/15/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.192.table b/eccodes/definitions.save/grib2/tables/15/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.0.table deleted file mode 100644 index 41e5291a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.0.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.1.table deleted file mode 100644 index f2fdd302..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.1.table +++ /dev/null @@ -1,110 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentratoin of rain (kg-1) -101 101 Specific number concentratoin of sonw (kg-1) -102 102 Specific number concentratoin of graupel (kg-1) -103 103 Specific number concentratoin of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -# 108-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.17.table deleted file mode 100644 index d481c02d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.18.table deleted file mode 100644 index 18c41aa4..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.19.table deleted file mode 100644 index 75101bd3..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.2.table deleted file mode 100644 index c83b0730..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.2.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.20.table deleted file mode 100644 index 9584f7c7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.3.table deleted file mode 100644 index 9a88e002..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.4.table deleted file mode 100644 index dbfcbddb..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.5.table deleted file mode 100644 index 932a12fb..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.5.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.6.table deleted file mode 100644 index e28d8e4d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.6.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -# 40-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/15/4.2.0.7.table deleted file mode 100644 index db47d011..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.0.table deleted file mode 100644 index cf56b08e..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.1.2.table deleted file mode 100644 index 8daf51ef..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.3.table deleted file mode 100644 index 08ac880f..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.2.3.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.4.table deleted file mode 100644 index d4ede2f7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.2.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/15/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/15/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/15/4.2.3.1.table deleted file mode 100644 index 0bda5306..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.201.table b/eccodes/definitions.save/grib2/tables/15/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.202.table b/eccodes/definitions.save/grib2/tables/15/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.203.table b/eccodes/definitions.save/grib2/tables/15/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.204.table b/eccodes/definitions.save/grib2/tables/15/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.205.table b/eccodes/definitions.save/grib2/tables/15/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.206.table b/eccodes/definitions.save/grib2/tables/15/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.207.table b/eccodes/definitions.save/grib2/tables/15/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.208.table b/eccodes/definitions.save/grib2/tables/15/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.209.table b/eccodes/definitions.save/grib2/tables/15/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.210.table b/eccodes/definitions.save/grib2/tables/15/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.211.table b/eccodes/definitions.save/grib2/tables/15/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.212.table b/eccodes/definitions.save/grib2/tables/15/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.213.table b/eccodes/definitions.save/grib2/tables/15/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.215.table b/eccodes/definitions.save/grib2/tables/15/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.216.table b/eccodes/definitions.save/grib2/tables/15/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.217.table b/eccodes/definitions.save/grib2/tables/15/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.218.table b/eccodes/definitions.save/grib2/tables/15/4.218.table deleted file mode 100644 index bfca92f9..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.219.table b/eccodes/definitions.save/grib2/tables/15/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.220.table b/eccodes/definitions.save/grib2/tables/15/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.221.table b/eccodes/definitions.save/grib2/tables/15/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.222.table b/eccodes/definitions.save/grib2/tables/15/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.223.table b/eccodes/definitions.save/grib2/tables/15/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.224.table b/eccodes/definitions.save/grib2/tables/15/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.225.table b/eccodes/definitions.save/grib2/tables/15/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/15/4.227.table b/eccodes/definitions.save/grib2/tables/15/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/15/4.230.table b/eccodes/definitions.save/grib2/tables/15/4.230.table deleted file mode 100644 index a7ce00d3..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.230.table +++ /dev/null @@ -1,414 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.233.table b/eccodes/definitions.save/grib2/tables/15/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.234.table b/eccodes/definitions.save/grib2/tables/15/4.234.table deleted file mode 100644 index 9844a91d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/15/4.236.table b/eccodes/definitions.save/grib2/tables/15/4.236.table deleted file mode 100644 index 08c7f8d5..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/15/4.240.table b/eccodes/definitions.save/grib2/tables/15/4.240.table deleted file mode 100644 index f8bcdf7b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.240.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl(p1) in meter -2 2 Delta functions with spatially variable concentration and fixed masses Ml(p1) in kg -3 3 Gaussian (Normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (Normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -# 8-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.241.table b/eccodes/definitions.save/grib2/tables/15/4.241.table deleted file mode 100644 index c0bd3e99..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.242.table b/eccodes/definitions.save/grib2/tables/15/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/15/4.243.table b/eccodes/definitions.save/grib2/tables/15/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/15/4.3.table b/eccodes/definitions.save/grib2/tables/15/4.3.table deleted file mode 100644 index f423af2b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.3.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.4.table b/eccodes/definitions.save/grib2/tables/15/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.5.table b/eccodes/definitions.save/grib2/tables/15/4.5.table deleted file mode 100644 index 8a184f4f..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.5.table +++ /dev/null @@ -1,63 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -167 167 Bottom of root zone -# 168-173 Reserved -# 168-169 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -178 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.6.table b/eccodes/definitions.save/grib2/tables/15/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.7.table b/eccodes/definitions.save/grib2/tables/15/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.8.table b/eccodes/definitions.save/grib2/tables/15/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.9.table b/eccodes/definitions.save/grib2/tables/15/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/4.91.table b/eccodes/definitions.save/grib2/tables/15/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/15/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.0.table b/eccodes/definitions.save/grib2/tables/15/5.0.table deleted file mode 100644 index cd61837a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.1.table b/eccodes/definitions.save/grib2/tables/15/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.2.table b/eccodes/definitions.save/grib2/tables/15/5.2.table deleted file mode 100644 index 7a4500ec..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.3.table b/eccodes/definitions.save/grib2/tables/15/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.4.table b/eccodes/definitions.save/grib2/tables/15/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.40.table b/eccodes/definitions.save/grib2/tables/15/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.40000.table b/eccodes/definitions.save/grib2/tables/15/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.5.table b/eccodes/definitions.save/grib2/tables/15/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.50002.table b/eccodes/definitions.save/grib2/tables/15/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/15/5.6.table b/eccodes/definitions.save/grib2/tables/15/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/5.7.table b/eccodes/definitions.save/grib2/tables/15/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/15/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/15/6.0.table b/eccodes/definitions.save/grib2/tables/15/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/15/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/15/stepType.table b/eccodes/definitions.save/grib2/tables/15/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/15/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/16/0.0.table b/eccodes/definitions.save/grib2/tables/16/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/16/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.0.table b/eccodes/definitions.save/grib2/tables/16/1.0.table deleted file mode 100644 index acb61be1..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Pre-operational to be implemented by next amendment -# 18-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.1.table b/eccodes/definitions.save/grib2/tables/16/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.2.table b/eccodes/definitions.save/grib2/tables/16/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.3.table b/eccodes/definitions.save/grib2/tables/16/1.3.table deleted file mode 100644 index 6f061bf4..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in ensembles of regional reanalysis project (UERRA) -9 9 Uncertainties in ensembles of regional reanalysis project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.4.table b/eccodes/definitions.save/grib2/tables/16/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.5.table b/eccodes/definitions.save/grib2/tables/16/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/1.6.table b/eccodes/definitions.save/grib2/tables/16/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/16/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.0.table b/eccodes/definitions.save/grib2/tables/16/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/16/3.1.table b/eccodes/definitions.save/grib2/tables/16/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.10.table b/eccodes/definitions.save/grib2/tables/16/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/16/3.11.table b/eccodes/definitions.save/grib2/tables/16/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.15.table b/eccodes/definitions.save/grib2/tables/16/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.2.table b/eccodes/definitions.save/grib2/tables/16/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.20.table b/eccodes/definitions.save/grib2/tables/16/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.21.table b/eccodes/definitions.save/grib2/tables/16/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.3.table b/eccodes/definitions.save/grib2/tables/16/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/16/3.4.table b/eccodes/definitions.save/grib2/tables/16/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/16/3.5.table b/eccodes/definitions.save/grib2/tables/16/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/16/3.6.table b/eccodes/definitions.save/grib2/tables/16/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/16/3.7.table b/eccodes/definitions.save/grib2/tables/16/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.8.table b/eccodes/definitions.save/grib2/tables/16/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/3.9.table b/eccodes/definitions.save/grib2/tables/16/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/16/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/16/4.0.table b/eccodes/definitions.save/grib2/tables/16/4.0.table deleted file mode 100644 index 05bf2433..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.0.table +++ /dev/null @@ -1,65 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -# 58-59 Reserved -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.0.table b/eccodes/definitions.save/grib2/tables/16/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.1.table b/eccodes/definitions.save/grib2/tables/16/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.10.table b/eccodes/definitions.save/grib2/tables/16/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.192.table b/eccodes/definitions.save/grib2/tables/16/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.2.table b/eccodes/definitions.save/grib2/tables/16/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.1.3.table b/eccodes/definitions.save/grib2/tables/16/4.1.3.table deleted file mode 100644 index d2baa136..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rules conditions -4 4 Volcanic ash -5 5 Sea surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.10.table b/eccodes/definitions.save/grib2/tables/16/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.11.table b/eccodes/definitions.save/grib2/tables/16/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.12.table b/eccodes/definitions.save/grib2/tables/16/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.13.table b/eccodes/definitions.save/grib2/tables/16/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.14.table b/eccodes/definitions.save/grib2/tables/16/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.15.table b/eccodes/definitions.save/grib2/tables/16/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.192.table b/eccodes/definitions.save/grib2/tables/16/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.0.table deleted file mode 100644 index cfadd2d0..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.0.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterizations (K s-1) -27 27 Wet bulb temperature (K) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.1.table deleted file mode 100644 index 775cfe54..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.1.table +++ /dev/null @@ -1,111 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterizations (kg kg-1 s-1) -# 109-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.17.table deleted file mode 100644 index d481c02d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.18.table deleted file mode 100644 index 18c41aa4..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.19.table deleted file mode 100644 index ec2b9823..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.19.table +++ /dev/null @@ -1,33 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -# 29-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.2.table deleted file mode 100644 index 46b0774a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.2.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterizations (m s-2) -40 40 Northward wind tendency due to parameterizations (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -# 45-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.20.table deleted file mode 100644 index 9584f7c7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.3.table deleted file mode 100644 index c7c6359d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.3.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.4.table deleted file mode 100644 index bd37ea3f..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.4.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short wave radiation flux (W m-2) -14 14 Diffuse short wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.5.table deleted file mode 100644 index 932a12fb..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.5.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/16/4.2.0.7.table deleted file mode 100644 index 23a1a82d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.0.7.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.0.table deleted file mode 100644 index 74c95f57..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.1.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.1.2.table deleted file mode 100644 index 02979ecb..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.3.table deleted file mode 100644 index dff2f795..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.2.3.table +++ /dev/null @@ -1,30 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -# 26-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.4.table deleted file mode 100644 index b9383fe1..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Fire weather index (Canadian forest service) (Numeric) -6 6 Fine fuel moisture code (Canadian forest service) (Numeric) -7 7 Duff moisture code (Canadian forest service) (Numeric) -8 8 Drought code (Canadian forest service) (Numeric) -9 9 Initial fire spread index (Canadian forest service) (Numeric) -10 10 Fire build up index (Canadian forest service) (Numeric) -11 11 Fire daily severity rating (Canadian forest service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.1.table deleted file mode 100644 index 75911ee3..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (Numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (Numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.3.table deleted file mode 100644 index 064cfa1b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rules conditions (%) -1 1 Probability of encountering low instrument flight rules conditions (%) -2 2 Probability of encountering instrument flight rules conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.5.table deleted file mode 100644 index e9cfe124..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea surface temperature (K) -1 1 Skin sea surface temperature (K) -2 2 Sub-skin sea surface temperature (K) -3 3 Foundation sea surface temperature (K) -4 4 Estimated bias between sea surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/16/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/16/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/16/4.201.table b/eccodes/definitions.save/grib2/tables/16/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.202.table b/eccodes/definitions.save/grib2/tables/16/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.203.table b/eccodes/definitions.save/grib2/tables/16/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.204.table b/eccodes/definitions.save/grib2/tables/16/4.204.table deleted file mode 100644 index 91bcf181..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.205.table b/eccodes/definitions.save/grib2/tables/16/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.206.table b/eccodes/definitions.save/grib2/tables/16/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.207.table b/eccodes/definitions.save/grib2/tables/16/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.208.table b/eccodes/definitions.save/grib2/tables/16/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.209.table b/eccodes/definitions.save/grib2/tables/16/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.210.table b/eccodes/definitions.save/grib2/tables/16/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.211.table b/eccodes/definitions.save/grib2/tables/16/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.212.table b/eccodes/definitions.save/grib2/tables/16/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.213.table b/eccodes/definitions.save/grib2/tables/16/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.215.table b/eccodes/definitions.save/grib2/tables/16/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.216.table b/eccodes/definitions.save/grib2/tables/16/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.217.table b/eccodes/definitions.save/grib2/tables/16/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.218.table b/eccodes/definitions.save/grib2/tables/16/4.218.table deleted file mode 100644 index c585bed9..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multi-layered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.219.table b/eccodes/definitions.save/grib2/tables/16/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.220.table b/eccodes/definitions.save/grib2/tables/16/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.221.table b/eccodes/definitions.save/grib2/tables/16/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.222.table b/eccodes/definitions.save/grib2/tables/16/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.223.table b/eccodes/definitions.save/grib2/tables/16/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.224.table b/eccodes/definitions.save/grib2/tables/16/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.225.table b/eccodes/definitions.save/grib2/tables/16/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/16/4.227.table b/eccodes/definitions.save/grib2/tables/16/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/16/4.230.table b/eccodes/definitions.save/grib2/tables/16/4.230.table deleted file mode 100644 index a7ce00d3..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.230.table +++ /dev/null @@ -1,414 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.233.table b/eccodes/definitions.save/grib2/tables/16/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.234.table b/eccodes/definitions.save/grib2/tables/16/4.234.table deleted file mode 100644 index 9844a91d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/16/4.236.table b/eccodes/definitions.save/grib2/tables/16/4.236.table deleted file mode 100644 index 08c7f8d5..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in PDT 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/16/4.240.table b/eccodes/definitions.save/grib2/tables/16/4.240.table deleted file mode 100644 index c12ebbb7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.240.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in meter -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (Normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (Normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -# 8-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/16/4.241.table b/eccodes/definitions.save/grib2/tables/16/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/16/4.242.table b/eccodes/definitions.save/grib2/tables/16/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/16/4.243.table b/eccodes/definitions.save/grib2/tables/16/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/16/4.3.table b/eccodes/definitions.save/grib2/tables/16/4.3.table deleted file mode 100644 index f205ea0c..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.3.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -# 18-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.4.table b/eccodes/definitions.save/grib2/tables/16/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.5.table b/eccodes/definitions.save/grib2/tables/16/4.5.table deleted file mode 100644 index 9cabf1f7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.5.table +++ /dev/null @@ -1,62 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -178 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.6.table b/eccodes/definitions.save/grib2/tables/16/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.7.table b/eccodes/definitions.save/grib2/tables/16/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.8.table b/eccodes/definitions.save/grib2/tables/16/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.9.table b/eccodes/definitions.save/grib2/tables/16/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/4.91.table b/eccodes/definitions.save/grib2/tables/16/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/16/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.0.table b/eccodes/definitions.save/grib2/tables/16/5.0.table deleted file mode 100644 index cd61837a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.1.table b/eccodes/definitions.save/grib2/tables/16/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.2.table b/eccodes/definitions.save/grib2/tables/16/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.3.table b/eccodes/definitions.save/grib2/tables/16/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.4.table b/eccodes/definitions.save/grib2/tables/16/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.40.table b/eccodes/definitions.save/grib2/tables/16/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.40000.table b/eccodes/definitions.save/grib2/tables/16/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.5.table b/eccodes/definitions.save/grib2/tables/16/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.50002.table b/eccodes/definitions.save/grib2/tables/16/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/16/5.6.table b/eccodes/definitions.save/grib2/tables/16/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/5.7.table b/eccodes/definitions.save/grib2/tables/16/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/16/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/16/6.0.table b/eccodes/definitions.save/grib2/tables/16/6.0.table deleted file mode 100644 index f539b26d..00000000 --- a/eccodes/definitions.save/grib2/tables/16/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/16/stepType.table b/eccodes/definitions.save/grib2/tables/16/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/16/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/17/0.0.table b/eccodes/definitions.save/grib2/tables/17/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/17/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.0.table b/eccodes/definitions.save/grib2/tables/17/1.0.table deleted file mode 100644 index d1134399..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.0.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Pre-operational to be implemented by next amendment -# 19-254 Future versions -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.1.table b/eccodes/definitions.save/grib2/tables/17/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.2.table b/eccodes/definitions.save/grib2/tables/17/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.3.table b/eccodes/definitions.save/grib2/tables/17/1.3.table deleted file mode 100644 index 0c95269d..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.4.table b/eccodes/definitions.save/grib2/tables/17/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.5.table b/eccodes/definitions.save/grib2/tables/17/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/1.6.table b/eccodes/definitions.save/grib2/tables/17/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/17/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.0.table b/eccodes/definitions.save/grib2/tables/17/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/17/3.1.table b/eccodes/definitions.save/grib2/tables/17/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.10.table b/eccodes/definitions.save/grib2/tables/17/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/17/3.11.table b/eccodes/definitions.save/grib2/tables/17/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.15.table b/eccodes/definitions.save/grib2/tables/17/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.2.table b/eccodes/definitions.save/grib2/tables/17/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.20.table b/eccodes/definitions.save/grib2/tables/17/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.21.table b/eccodes/definitions.save/grib2/tables/17/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.3.table b/eccodes/definitions.save/grib2/tables/17/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/17/3.4.table b/eccodes/definitions.save/grib2/tables/17/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/17/3.5.table b/eccodes/definitions.save/grib2/tables/17/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/17/3.6.table b/eccodes/definitions.save/grib2/tables/17/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/17/3.7.table b/eccodes/definitions.save/grib2/tables/17/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.8.table b/eccodes/definitions.save/grib2/tables/17/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/3.9.table b/eccodes/definitions.save/grib2/tables/17/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/17/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/17/4.0.table b/eccodes/definitions.save/grib2/tables/17/4.0.table deleted file mode 100644 index 802eca6b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.0.table +++ /dev/null @@ -1,65 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 49-50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -52 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -# 58-59 Reserved -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.0.table b/eccodes/definitions.save/grib2/tables/17/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.1.table b/eccodes/definitions.save/grib2/tables/17/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.10.table b/eccodes/definitions.save/grib2/tables/17/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.192.table b/eccodes/definitions.save/grib2/tables/17/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.2.table b/eccodes/definitions.save/grib2/tables/17/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.1.3.table b/eccodes/definitions.save/grib2/tables/17/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.10.table b/eccodes/definitions.save/grib2/tables/17/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.11.table b/eccodes/definitions.save/grib2/tables/17/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.12.table b/eccodes/definitions.save/grib2/tables/17/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.13.table b/eccodes/definitions.save/grib2/tables/17/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.14.table b/eccodes/definitions.save/grib2/tables/17/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.15.table b/eccodes/definitions.save/grib2/tables/17/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.192.table b/eccodes/definitions.save/grib2/tables/17/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.0.table deleted file mode 100644 index f24b8832..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.0.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.1.table deleted file mode 100644 index 70001f74..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.1.table +++ /dev/null @@ -1,120 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -# 118-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.17.table deleted file mode 100644 index a6799631..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.17.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.18.table deleted file mode 100644 index 9ae3539c..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.18.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.19.table deleted file mode 100644 index 8705082c..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.19.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of Eddy dissipation parameter in layer (m2/3 s-1) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.2.table deleted file mode 100644 index 8ebc7512..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.2.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -# 45-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.20.table deleted file mode 100644 index 983539bd..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.20.table +++ /dev/null @@ -1,46 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -# 63-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.3.table deleted file mode 100644 index c7c6359d..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.3.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/17/4.2.0.7.table deleted file mode 100644 index 6d0d87a4..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.0.7.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.3.table deleted file mode 100644 index f951bbe7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.1.table deleted file mode 100644 index 8e0793fe..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (Numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (Numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/17/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/17/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/17/4.201.table b/eccodes/definitions.save/grib2/tables/17/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.202.table b/eccodes/definitions.save/grib2/tables/17/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.203.table b/eccodes/definitions.save/grib2/tables/17/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.204.table b/eccodes/definitions.save/grib2/tables/17/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.205.table b/eccodes/definitions.save/grib2/tables/17/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.206.table b/eccodes/definitions.save/grib2/tables/17/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.207.table b/eccodes/definitions.save/grib2/tables/17/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.208.table b/eccodes/definitions.save/grib2/tables/17/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.209.table b/eccodes/definitions.save/grib2/tables/17/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.210.table b/eccodes/definitions.save/grib2/tables/17/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.211.table b/eccodes/definitions.save/grib2/tables/17/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.212.table b/eccodes/definitions.save/grib2/tables/17/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.213.table b/eccodes/definitions.save/grib2/tables/17/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.215.table b/eccodes/definitions.save/grib2/tables/17/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.216.table b/eccodes/definitions.save/grib2/tables/17/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.217.table b/eccodes/definitions.save/grib2/tables/17/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.218.table b/eccodes/definitions.save/grib2/tables/17/4.218.table deleted file mode 100644 index 7e3a6957..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.219.table b/eccodes/definitions.save/grib2/tables/17/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.220.table b/eccodes/definitions.save/grib2/tables/17/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.221.table b/eccodes/definitions.save/grib2/tables/17/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.222.table b/eccodes/definitions.save/grib2/tables/17/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.223.table b/eccodes/definitions.save/grib2/tables/17/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.224.table b/eccodes/definitions.save/grib2/tables/17/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.225.table b/eccodes/definitions.save/grib2/tables/17/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/17/4.227.table b/eccodes/definitions.save/grib2/tables/17/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/17/4.230.table b/eccodes/definitions.save/grib2/tables/17/4.230.table deleted file mode 100644 index a7ce00d3..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.230.table +++ /dev/null @@ -1,414 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.233.table b/eccodes/definitions.save/grib2/tables/17/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.234.table b/eccodes/definitions.save/grib2/tables/17/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/17/4.236.table b/eccodes/definitions.save/grib2/tables/17/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/17/4.240.table b/eccodes/definitions.save/grib2/tables/17/4.240.table deleted file mode 100644 index ca335fea..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.240.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -# 8-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/17/4.241.table b/eccodes/definitions.save/grib2/tables/17/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/17/4.242.table b/eccodes/definitions.save/grib2/tables/17/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/17/4.243.table b/eccodes/definitions.save/grib2/tables/17/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/17/4.3.table b/eccodes/definitions.save/grib2/tables/17/4.3.table deleted file mode 100644 index f205ea0c..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.3.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -# 18-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.4.table b/eccodes/definitions.save/grib2/tables/17/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.5.table b/eccodes/definitions.save/grib2/tables/17/4.5.table deleted file mode 100644 index 2e2695aa..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.5.table +++ /dev/null @@ -1,67 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -# 115-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.6.table b/eccodes/definitions.save/grib2/tables/17/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.7.table b/eccodes/definitions.save/grib2/tables/17/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.8.table b/eccodes/definitions.save/grib2/tables/17/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.9.table b/eccodes/definitions.save/grib2/tables/17/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/4.91.table b/eccodes/definitions.save/grib2/tables/17/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/17/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.0.table b/eccodes/definitions.save/grib2/tables/17/5.0.table deleted file mode 100644 index cd61837a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -# 42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.1.table b/eccodes/definitions.save/grib2/tables/17/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.2.table b/eccodes/definitions.save/grib2/tables/17/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.3.table b/eccodes/definitions.save/grib2/tables/17/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.4.table b/eccodes/definitions.save/grib2/tables/17/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.40.table b/eccodes/definitions.save/grib2/tables/17/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.40000.table b/eccodes/definitions.save/grib2/tables/17/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.5.table b/eccodes/definitions.save/grib2/tables/17/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.50002.table b/eccodes/definitions.save/grib2/tables/17/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/17/5.6.table b/eccodes/definitions.save/grib2/tables/17/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/5.7.table b/eccodes/definitions.save/grib2/tables/17/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/17/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/17/6.0.table b/eccodes/definitions.save/grib2/tables/17/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/17/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/17/stepType.table b/eccodes/definitions.save/grib2/tables/17/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/17/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/18/0.0.table b/eccodes/definitions.save/grib2/tables/18/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/18/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.0.table b/eccodes/definitions.save/grib2/tables/18/1.0.table deleted file mode 100644 index 8829485d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Pre-operational to be implemented by next amendment -# 20-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/18/1.1.table b/eccodes/definitions.save/grib2/tables/18/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.2.table b/eccodes/definitions.save/grib2/tables/18/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.3.table b/eccodes/definitions.save/grib2/tables/18/1.3.table deleted file mode 100644 index 0c95269d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.4.table b/eccodes/definitions.save/grib2/tables/18/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.5.table b/eccodes/definitions.save/grib2/tables/18/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/1.6.table b/eccodes/definitions.save/grib2/tables/18/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/18/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.0.table b/eccodes/definitions.save/grib2/tables/18/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/18/3.1.table b/eccodes/definitions.save/grib2/tables/18/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.10.table b/eccodes/definitions.save/grib2/tables/18/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/18/3.11.table b/eccodes/definitions.save/grib2/tables/18/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.15.table b/eccodes/definitions.save/grib2/tables/18/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.2.table b/eccodes/definitions.save/grib2/tables/18/3.2.table deleted file mode 100644 index 9238dc2a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.20.table b/eccodes/definitions.save/grib2/tables/18/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.21.table b/eccodes/definitions.save/grib2/tables/18/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.3.table b/eccodes/definitions.save/grib2/tables/18/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/18/3.4.table b/eccodes/definitions.save/grib2/tables/18/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/18/3.5.table b/eccodes/definitions.save/grib2/tables/18/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/18/3.6.table b/eccodes/definitions.save/grib2/tables/18/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/18/3.7.table b/eccodes/definitions.save/grib2/tables/18/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.8.table b/eccodes/definitions.save/grib2/tables/18/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/3.9.table b/eccodes/definitions.save/grib2/tables/18/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/18/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/18/4.0.table b/eccodes/definitions.save/grib2/tables/18/4.0.table deleted file mode 100644 index 5ad2ed89..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.0.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.0.table b/eccodes/definitions.save/grib2/tables/18/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.1.table b/eccodes/definitions.save/grib2/tables/18/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.10.table b/eccodes/definitions.save/grib2/tables/18/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.192.table b/eccodes/definitions.save/grib2/tables/18/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.2.table b/eccodes/definitions.save/grib2/tables/18/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.1.3.table b/eccodes/definitions.save/grib2/tables/18/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.10.table b/eccodes/definitions.save/grib2/tables/18/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.11.table b/eccodes/definitions.save/grib2/tables/18/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.12.table b/eccodes/definitions.save/grib2/tables/18/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.13.table b/eccodes/definitions.save/grib2/tables/18/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.14.table b/eccodes/definitions.save/grib2/tables/18/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.15.table b/eccodes/definitions.save/grib2/tables/18/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.192.table b/eccodes/definitions.save/grib2/tables/18/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.1.table deleted file mode 100644 index c38d6a05..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.1.table +++ /dev/null @@ -1,123 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -# 121-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.17.table deleted file mode 100644 index a6799631..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.17.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.19.table deleted file mode 100644 index 8705082c..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.19.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of Eddy dissipation parameter in layer (m2/3 s-1) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.20.table deleted file mode 100644 index efc427a1..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.20.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -# 64-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/18/4.2.0.7.table deleted file mode 100644 index 6d0d87a4..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.0.7.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.3.table deleted file mode 100644 index de7afd61..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.1.table deleted file mode 100644 index 8e0793fe..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (Numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (Numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/18/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/18/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/18/4.201.table b/eccodes/definitions.save/grib2/tables/18/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.202.table b/eccodes/definitions.save/grib2/tables/18/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.203.table b/eccodes/definitions.save/grib2/tables/18/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.204.table b/eccodes/definitions.save/grib2/tables/18/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.205.table b/eccodes/definitions.save/grib2/tables/18/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.206.table b/eccodes/definitions.save/grib2/tables/18/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.207.table b/eccodes/definitions.save/grib2/tables/18/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.208.table b/eccodes/definitions.save/grib2/tables/18/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.209.table b/eccodes/definitions.save/grib2/tables/18/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.210.table b/eccodes/definitions.save/grib2/tables/18/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.211.table b/eccodes/definitions.save/grib2/tables/18/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.212.table b/eccodes/definitions.save/grib2/tables/18/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.213.table b/eccodes/definitions.save/grib2/tables/18/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.215.table b/eccodes/definitions.save/grib2/tables/18/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.216.table b/eccodes/definitions.save/grib2/tables/18/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.217.table b/eccodes/definitions.save/grib2/tables/18/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.218.table b/eccodes/definitions.save/grib2/tables/18/4.218.table deleted file mode 100644 index 7e3a6957..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.219.table b/eccodes/definitions.save/grib2/tables/18/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.220.table b/eccodes/definitions.save/grib2/tables/18/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.221.table b/eccodes/definitions.save/grib2/tables/18/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.222.table b/eccodes/definitions.save/grib2/tables/18/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.223.table b/eccodes/definitions.save/grib2/tables/18/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.224.table b/eccodes/definitions.save/grib2/tables/18/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.225.table b/eccodes/definitions.save/grib2/tables/18/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/18/4.227.table b/eccodes/definitions.save/grib2/tables/18/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/18/4.230.table b/eccodes/definitions.save/grib2/tables/18/4.230.table deleted file mode 100644 index d2e91fad..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.230.table +++ /dev/null @@ -1,437 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -62300 62300 Poaceae (Grass family) pollen -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.233.table b/eccodes/definitions.save/grib2/tables/18/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.234.table b/eccodes/definitions.save/grib2/tables/18/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/18/4.236.table b/eccodes/definitions.save/grib2/tables/18/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/18/4.240.table b/eccodes/definitions.save/grib2/tables/18/4.240.table deleted file mode 100644 index 7313e6ee..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.240.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -# 8-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/18/4.241.table b/eccodes/definitions.save/grib2/tables/18/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/18/4.242.table b/eccodes/definitions.save/grib2/tables/18/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/18/4.243.table b/eccodes/definitions.save/grib2/tables/18/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/18/4.3.table b/eccodes/definitions.save/grib2/tables/18/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.4.table b/eccodes/definitions.save/grib2/tables/18/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.5.table b/eccodes/definitions.save/grib2/tables/18/4.5.table deleted file mode 100644 index c14343e7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.5.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.6.table b/eccodes/definitions.save/grib2/tables/18/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.7.table b/eccodes/definitions.save/grib2/tables/18/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.8.table b/eccodes/definitions.save/grib2/tables/18/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.9.table b/eccodes/definitions.save/grib2/tables/18/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/4.91.table b/eccodes/definitions.save/grib2/tables/18/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/18/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.0.table b/eccodes/definitions.save/grib2/tables/18/5.0.table deleted file mode 100644 index 1d4c5e5d..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.1.table b/eccodes/definitions.save/grib2/tables/18/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.2.table b/eccodes/definitions.save/grib2/tables/18/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.3.table b/eccodes/definitions.save/grib2/tables/18/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.4.table b/eccodes/definitions.save/grib2/tables/18/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.40.table b/eccodes/definitions.save/grib2/tables/18/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.40000.table b/eccodes/definitions.save/grib2/tables/18/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.5.table b/eccodes/definitions.save/grib2/tables/18/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.50002.table b/eccodes/definitions.save/grib2/tables/18/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/18/5.6.table b/eccodes/definitions.save/grib2/tables/18/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/5.7.table b/eccodes/definitions.save/grib2/tables/18/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/18/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/18/6.0.table b/eccodes/definitions.save/grib2/tables/18/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/18/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/18/stepType.table b/eccodes/definitions.save/grib2/tables/18/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/18/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/19/0.0.table b/eccodes/definitions.save/grib2/tables/19/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/19/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.0.table b/eccodes/definitions.save/grib2/tables/19/1.0.table deleted file mode 100644 index bd54828e..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Pre-operational to be implemented by next amendment -# 21-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/19/1.1.table b/eccodes/definitions.save/grib2/tables/19/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.2.table b/eccodes/definitions.save/grib2/tables/19/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.3.table b/eccodes/definitions.save/grib2/tables/19/1.3.table deleted file mode 100644 index 0c95269d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.4.table b/eccodes/definitions.save/grib2/tables/19/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.5.table b/eccodes/definitions.save/grib2/tables/19/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/1.6.table b/eccodes/definitions.save/grib2/tables/19/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/19/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.0.table b/eccodes/definitions.save/grib2/tables/19/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/19/3.1.table b/eccodes/definitions.save/grib2/tables/19/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.10.table b/eccodes/definitions.save/grib2/tables/19/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/19/3.11.table b/eccodes/definitions.save/grib2/tables/19/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.15.table b/eccodes/definitions.save/grib2/tables/19/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.2.table b/eccodes/definitions.save/grib2/tables/19/3.2.table deleted file mode 100644 index 1b5c8241..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.20.table b/eccodes/definitions.save/grib2/tables/19/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.21.table b/eccodes/definitions.save/grib2/tables/19/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.3.table b/eccodes/definitions.save/grib2/tables/19/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/19/3.4.table b/eccodes/definitions.save/grib2/tables/19/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/19/3.5.table b/eccodes/definitions.save/grib2/tables/19/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/19/3.6.table b/eccodes/definitions.save/grib2/tables/19/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/19/3.7.table b/eccodes/definitions.save/grib2/tables/19/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.8.table b/eccodes/definitions.save/grib2/tables/19/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/3.9.table b/eccodes/definitions.save/grib2/tables/19/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/19/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/19/4.0.table b/eccodes/definitions.save/grib2/tables/19/4.0.table deleted file mode 100644 index 906bf12d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.0.table +++ /dev/null @@ -1,75 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.0.table b/eccodes/definitions.save/grib2/tables/19/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.1.table b/eccodes/definitions.save/grib2/tables/19/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.10.table b/eccodes/definitions.save/grib2/tables/19/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.192.table b/eccodes/definitions.save/grib2/tables/19/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.2.table b/eccodes/definitions.save/grib2/tables/19/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.1.3.table b/eccodes/definitions.save/grib2/tables/19/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.10.table b/eccodes/definitions.save/grib2/tables/19/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.11.table b/eccodes/definitions.save/grib2/tables/19/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.12.table b/eccodes/definitions.save/grib2/tables/19/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.13.table b/eccodes/definitions.save/grib2/tables/19/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.14.table b/eccodes/definitions.save/grib2/tables/19/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.15.table b/eccodes/definitions.save/grib2/tables/19/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.192.table b/eccodes/definitions.save/grib2/tables/19/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.1.table deleted file mode 100644 index c38d6a05..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.1.table +++ /dev/null @@ -1,123 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -# 121-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.17.table deleted file mode 100644 index a6799631..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.17.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.19.table deleted file mode 100644 index 1d7b4da9..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.19.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.20.table deleted file mode 100644 index 3278506d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.20.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -# 64-99 Reserved -100 100 Surface area density (aerosol) (m-1) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/19/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.1.table deleted file mode 100644 index 5959bfa2..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.3.table deleted file mode 100644 index de7afd61..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.1.table deleted file mode 100644 index 8e0793fe..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (Numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (Numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/19/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/19/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/19/4.201.table b/eccodes/definitions.save/grib2/tables/19/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.202.table b/eccodes/definitions.save/grib2/tables/19/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.203.table b/eccodes/definitions.save/grib2/tables/19/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.204.table b/eccodes/definitions.save/grib2/tables/19/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.205.table b/eccodes/definitions.save/grib2/tables/19/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.206.table b/eccodes/definitions.save/grib2/tables/19/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.207.table b/eccodes/definitions.save/grib2/tables/19/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.208.table b/eccodes/definitions.save/grib2/tables/19/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.209.table b/eccodes/definitions.save/grib2/tables/19/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.210.table b/eccodes/definitions.save/grib2/tables/19/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.211.table b/eccodes/definitions.save/grib2/tables/19/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.212.table b/eccodes/definitions.save/grib2/tables/19/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.213.table b/eccodes/definitions.save/grib2/tables/19/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.215.table b/eccodes/definitions.save/grib2/tables/19/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.216.table b/eccodes/definitions.save/grib2/tables/19/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.217.table b/eccodes/definitions.save/grib2/tables/19/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.218.table b/eccodes/definitions.save/grib2/tables/19/4.218.table deleted file mode 100644 index 7e3a6957..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.219.table b/eccodes/definitions.save/grib2/tables/19/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.220.table b/eccodes/definitions.save/grib2/tables/19/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.221.table b/eccodes/definitions.save/grib2/tables/19/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.222.table b/eccodes/definitions.save/grib2/tables/19/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.223.table b/eccodes/definitions.save/grib2/tables/19/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.224.table b/eccodes/definitions.save/grib2/tables/19/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.225.table b/eccodes/definitions.save/grib2/tables/19/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/19/4.227.table b/eccodes/definitions.save/grib2/tables/19/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/19/4.230.table b/eccodes/definitions.save/grib2/tables/19/4.230.table deleted file mode 100644 index d2e91fad..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.230.table +++ /dev/null @@ -1,437 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -62300 62300 Poaceae (Grass family) pollen -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.233.table b/eccodes/definitions.save/grib2/tables/19/4.233.table deleted file mode 100644 index d63f673b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.234.table b/eccodes/definitions.save/grib2/tables/19/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/19/4.236.table b/eccodes/definitions.save/grib2/tables/19/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/19/4.240.table b/eccodes/definitions.save/grib2/tables/19/4.240.table deleted file mode 100644 index 35e36321..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type no. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/19/4.241.table b/eccodes/definitions.save/grib2/tables/19/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/19/4.242.table b/eccodes/definitions.save/grib2/tables/19/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/19/4.243.table b/eccodes/definitions.save/grib2/tables/19/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/19/4.3.table b/eccodes/definitions.save/grib2/tables/19/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.4.table b/eccodes/definitions.save/grib2/tables/19/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.5.table b/eccodes/definitions.save/grib2/tables/19/4.5.table deleted file mode 100644 index c14343e7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.5.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.6.table b/eccodes/definitions.save/grib2/tables/19/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.7.table b/eccodes/definitions.save/grib2/tables/19/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.8.table b/eccodes/definitions.save/grib2/tables/19/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.9.table b/eccodes/definitions.save/grib2/tables/19/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/4.91.table b/eccodes/definitions.save/grib2/tables/19/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/19/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.0.table b/eccodes/definitions.save/grib2/tables/19/5.0.table deleted file mode 100644 index 1d4c5e5d..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.1.table b/eccodes/definitions.save/grib2/tables/19/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.2.table b/eccodes/definitions.save/grib2/tables/19/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.3.table b/eccodes/definitions.save/grib2/tables/19/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.4.table b/eccodes/definitions.save/grib2/tables/19/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.40.table b/eccodes/definitions.save/grib2/tables/19/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.40000.table b/eccodes/definitions.save/grib2/tables/19/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.5.table b/eccodes/definitions.save/grib2/tables/19/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.50002.table b/eccodes/definitions.save/grib2/tables/19/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/19/5.6.table b/eccodes/definitions.save/grib2/tables/19/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/5.7.table b/eccodes/definitions.save/grib2/tables/19/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/19/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/19/6.0.table b/eccodes/definitions.save/grib2/tables/19/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/19/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/19/stepType.table b/eccodes/definitions.save/grib2/tables/19/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/19/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/2/0.0.table b/eccodes/definitions.save/grib2/tables/2/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/2/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/1.0.table b/eccodes/definitions.save/grib2/tables/2/1.0.table deleted file mode 100644 index a34f44ee..00000000 --- a/eccodes/definitions.save/grib2/tables/2/1.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -# 4-254 Future operational version numbers -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/2/1.1.table b/eccodes/definitions.save/grib2/tables/2/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/2/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/1.2.table b/eccodes/definitions.save/grib2/tables/2/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/2/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/1.3.table b/eccodes/definitions.save/grib2/tables/2/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib2/tables/2/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/1.4.table b/eccodes/definitions.save/grib2/tables/2/1.4.table deleted file mode 100644 index ac21f5c4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.0.table b/eccodes/definitions.save/grib2/tables/2/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/2/3.1.table b/eccodes/definitions.save/grib2/tables/2/3.1.table deleted file mode 100644 index 235fb8bd..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic can be south or north -# 21-29 Reserved -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.10.table b/eccodes/definitions.save/grib2/tables/2/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/2/3.11.table b/eccodes/definitions.save/grib2/tables/2/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.15.table b/eccodes/definitions.save/grib2/tables/2/3.15.table deleted file mode 100644 index d4f7e0ed..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.15.table +++ /dev/null @@ -1,17 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -20 20 Temperature K -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -160 160 Depth below sea level m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.2.table b/eccodes/definitions.save/grib2/tables/2/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.20.table b/eccodes/definitions.save/grib2/tables/2/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.21.table b/eccodes/definitions.save/grib2/tables/2/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.3.table b/eccodes/definitions.save/grib2/tables/2/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/2/3.4.table b/eccodes/definitions.save/grib2/tables/2/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/2/3.5.table b/eccodes/definitions.save/grib2/tables/2/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/2/3.6.table b/eccodes/definitions.save/grib2/tables/2/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/2/3.7.table b/eccodes/definitions.save/grib2/tables/2/3.7.table deleted file mode 100644 index fa8fe356..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.7.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/3.8.table b/eccodes/definitions.save/grib2/tables/2/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/3.9.table b/eccodes/definitions.save/grib2/tables/2/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib2/tables/2/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/2/4.0.table b/eccodes/definitions.save/grib2/tables/2/4.0.table deleted file mode 100644 index 759512a0..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.0.table +++ /dev/null @@ -1,38 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.0.table b/eccodes/definitions.save/grib2/tables/2/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.1.table b/eccodes/definitions.save/grib2/tables/2/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.10.table b/eccodes/definitions.save/grib2/tables/2/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.2.table b/eccodes/definitions.save/grib2/tables/2/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.3.table b/eccodes/definitions.save/grib2/tables/2/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.1.table b/eccodes/definitions.save/grib2/tables/2/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.10.table b/eccodes/definitions.save/grib2/tables/2/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.11.table b/eccodes/definitions.save/grib2/tables/2/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.12.table b/eccodes/definitions.save/grib2/tables/2/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.13.table b/eccodes/definitions.save/grib2/tables/2/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.14.table b/eccodes/definitions.save/grib2/tables/2/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.15.table b/eccodes/definitions.save/grib2/tables/2/4.15.table deleted file mode 100644 index 49b0b2d2..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.15.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.151.table b/eccodes/definitions.save/grib2/tables/2/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.0.table deleted file mode 100644 index 0386b8cd..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -#17-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.1.table deleted file mode 100644 index 154f2d00..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.1.table +++ /dev/null @@ -1,62 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -#47-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.13.table deleted file mode 100644 index 8fc3425a..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.14.table deleted file mode 100644 index 309c40d4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.15.table deleted file mode 100644 index bb419178..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.15.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.18.table deleted file mode 100644 index 5c0fd6e5..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.18.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.19.table deleted file mode 100644 index 369c3f65..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.19.table +++ /dev/null @@ -1,24 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -# 19-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.190.table deleted file mode 100644 index b1f47bc0..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.190.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string -0 0 Arbitrary text string (CCITTIA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.191.table deleted file mode 100644 index affb98f4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.2.table deleted file mode 100644 index 1ec94510..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.20.table deleted file mode 100644 index 4e7f45db..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.20.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Mass density (concentration) kg.m-3 -1 1 Total column (integrated mass density) kg.m-2 -2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 -3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 -4 4 Surface dry deposition mass flux kg.m-2.s-1 -5 5 Surface wet deposition mass flux kg.m-2.s-1 -6 6 Atmosphere emission mass flux kg.m-2.s-1 -7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 -8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 -9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 -#10-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.3.table deleted file mode 100644 index 5c7e8151..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 3: Mass - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) -# 20-191 Reserved -# 192-254 Reserved for local use - 255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.4.table deleted file mode 100644 index 815c184a..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.4.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.5.table deleted file mode 100644 index 1b57fa30..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.6.table deleted file mode 100644 index 05cf72f5..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.6.table +++ /dev/null @@ -1,30 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/2/4.2.0.7.table deleted file mode 100644 index 78374fde..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.0.7.table +++ /dev/null @@ -1,18 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -#13-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.1.0.table deleted file mode 100644 index 828c869d..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.1.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.1.1.table deleted file mode 100644 index b7342ef2..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.1.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.0.table deleted file mode 100644 index 479e26d5..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.1.table deleted file mode 100644 index df18f31d..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.2.table deleted file mode 100644 index cb73da46..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.10.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -# 8-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.3.table deleted file mode 100644 index a14ae22e..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/2/4.2.10.4.table deleted file mode 100644 index a24c3c8c..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.10.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.2.0.table deleted file mode 100644 index fdc8ce0e..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.2.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -# 23-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/2/4.2.2.3.table deleted file mode 100644 index d6376fec..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.2.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -# 11-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/2/4.2.3.0.table deleted file mode 100644 index 94456638..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product discipline 3: Space products, Parameter Category 0: Image format products -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/2/4.2.3.1.table deleted file mode 100644 index 60d6e842..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.2.3.1.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 3: Space products, Parameter Category 1: Quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -# 6-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/2/4.201.table b/eccodes/definitions.save/grib2/tables/2/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.202.table b/eccodes/definitions.save/grib2/tables/2/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.203.table b/eccodes/definitions.save/grib2/tables/2/4.203.table deleted file mode 100644 index 057f4091..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 4.203, Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.204.table b/eccodes/definitions.save/grib2/tables/2/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.205.table b/eccodes/definitions.save/grib2/tables/2/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.206.table b/eccodes/definitions.save/grib2/tables/2/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.207.table b/eccodes/definitions.save/grib2/tables/2/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.208.table b/eccodes/definitions.save/grib2/tables/2/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.209.table b/eccodes/definitions.save/grib2/tables/2/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.210.table b/eccodes/definitions.save/grib2/tables/2/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.211.table b/eccodes/definitions.save/grib2/tables/2/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.212.table b/eccodes/definitions.save/grib2/tables/2/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.213.table b/eccodes/definitions.save/grib2/tables/2/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.215.table b/eccodes/definitions.save/grib2/tables/2/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.216.table b/eccodes/definitions.save/grib2/tables/2/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.217.table b/eccodes/definitions.save/grib2/tables/2/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.220.table b/eccodes/definitions.save/grib2/tables/2/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.221.table b/eccodes/definitions.save/grib2/tables/2/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.230.table b/eccodes/definitions.save/grib2/tables/2/4.230.table deleted file mode 100644 index 23e819b6..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.230.table +++ /dev/null @@ -1,47 +0,0 @@ -#Code figure Code figure Meaning -0 0 Air -1 1 Ozone -2 2 Water vapour -3 3 Methane -4 4 Carbon dioxide -5 5 Carbon monoxide -6 6 Nitrogen dioxide -7 7 Nitrous oxide -8 8 Nitrogen monoxide -9 9 Formaldehyde -10 10 Sulphur dioxide -11 11 Nitric acid -12 12 All nitrogen oxides (NOy) expressed as nitrogen -13 13 Peroxyacetyl nitrate -14 14 Hydroxyl radical -15 15 Ammonia -16 16 Ammonium -17 17 Radon -18 18 Dimethyl sulphide -19 19 Hexachlorocyclohexane -20 20 Alpha hexachlorocyclohexane -21 21 Elemental mercury -22 22 Divalent mercury -23 23 Hexachlorobiphenyl -24 24 NOx expressed as nitrogen -25 25 Non-methane volatile organic compounds expressed as carbon -26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon -27 27 Biogenic non-methane volatile organic compounds expressed as carbon -#28-39999 28-39999 Reserved -40000 40000 Sulphate dry aerosol -40001 40001 Black carbon dry aerosol -40002 40002 Particulate organic matter dry aerosol -40003 40003 Primary particulate organic matter dry aerosol -40004 40004 Secondary particulate organic matter dry aerosol -40005 40005 Sea salt dry aerosol -40006 40006 Dust dry aerosol -40007 40007 Mercury dry aerosol -40008 40008 PM10 aerosol -40009 40009 PM2P5 aerosol -40010 40010 PM1 aerosol -40011 40011 Nitrate dry aerosol -40012 40012 Ammonium dry aerosol -40013 40013 Water in ambient aerosol -#40014-63999 40014-63999 Reserved -#64000-65534 64000-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.3.table b/eccodes/definitions.save/grib2/tables/2/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.4.table b/eccodes/definitions.save/grib2/tables/2/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.5.table b/eccodes/definitions.save/grib2/tables/2/4.5.table deleted file mode 100644 index 89c5fb17..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.5.table +++ /dev/null @@ -1,33 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.6.table b/eccodes/definitions.save/grib2/tables/2/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.7.table b/eccodes/definitions.save/grib2/tables/2/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.8.table b/eccodes/definitions.save/grib2/tables/2/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.9.table b/eccodes/definitions.save/grib2/tables/2/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/4.91.table b/eccodes/definitions.save/grib2/tables/2/4.91.table deleted file mode 100644 index 122779d1..00000000 --- a/eccodes/definitions.save/grib2/tables/2/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.0.table b/eccodes/definitions.save/grib2/tables/2/5.0.table deleted file mode 100644 index 0cf3752c..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib2/tables/2/5.1.table b/eccodes/definitions.save/grib2/tables/2/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.2.table b/eccodes/definitions.save/grib2/tables/2/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.3.table b/eccodes/definitions.save/grib2/tables/2/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.4.table b/eccodes/definitions.save/grib2/tables/2/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.40.table b/eccodes/definitions.save/grib2/tables/2/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.40000.table b/eccodes/definitions.save/grib2/tables/2/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.5.table b/eccodes/definitions.save/grib2/tables/2/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.6.table b/eccodes/definitions.save/grib2/tables/2/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.7.table b/eccodes/definitions.save/grib2/tables/2/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.8.table b/eccodes/definitions.save/grib2/tables/2/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/5.9.table b/eccodes/definitions.save/grib2/tables/2/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/2/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/2/6.0.table b/eccodes/definitions.save/grib2/tables/2/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/2/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/20/0.0.table b/eccodes/definitions.save/grib2/tables/20/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/20/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.0.table b/eccodes/definitions.save/grib2/tables/20/1.0.table deleted file mode 100644 index 9d3669bd..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Pre-operational to be implemented by next amendment -# 22-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/20/1.1.table b/eccodes/definitions.save/grib2/tables/20/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.2.table b/eccodes/definitions.save/grib2/tables/20/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.3.table b/eccodes/definitions.save/grib2/tables/20/1.3.table deleted file mode 100644 index 0c95269d..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.4.table b/eccodes/definitions.save/grib2/tables/20/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.5.table b/eccodes/definitions.save/grib2/tables/20/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/1.6.table b/eccodes/definitions.save/grib2/tables/20/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/20/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.0.table b/eccodes/definitions.save/grib2/tables/20/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/20/3.1.table b/eccodes/definitions.save/grib2/tables/20/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.10.table b/eccodes/definitions.save/grib2/tables/20/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/20/3.11.table b/eccodes/definitions.save/grib2/tables/20/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.15.table b/eccodes/definitions.save/grib2/tables/20/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.2.table b/eccodes/definitions.save/grib2/tables/20/3.2.table deleted file mode 100644 index 1b5c8241..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.20.table b/eccodes/definitions.save/grib2/tables/20/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.21.table b/eccodes/definitions.save/grib2/tables/20/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.3.table b/eccodes/definitions.save/grib2/tables/20/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/20/3.4.table b/eccodes/definitions.save/grib2/tables/20/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/20/3.5.table b/eccodes/definitions.save/grib2/tables/20/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/20/3.6.table b/eccodes/definitions.save/grib2/tables/20/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/20/3.7.table b/eccodes/definitions.save/grib2/tables/20/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.8.table b/eccodes/definitions.save/grib2/tables/20/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/3.9.table b/eccodes/definitions.save/grib2/tables/20/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/20/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/20/4.0.table b/eccodes/definitions.save/grib2/tables/20/4.0.table deleted file mode 100644 index b45e7338..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.0.table +++ /dev/null @@ -1,75 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -# 35-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.0.table b/eccodes/definitions.save/grib2/tables/20/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.1.table b/eccodes/definitions.save/grib2/tables/20/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.10.table b/eccodes/definitions.save/grib2/tables/20/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.192.table b/eccodes/definitions.save/grib2/tables/20/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.2.table b/eccodes/definitions.save/grib2/tables/20/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.1.3.table b/eccodes/definitions.save/grib2/tables/20/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.10.table b/eccodes/definitions.save/grib2/tables/20/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.11.table b/eccodes/definitions.save/grib2/tables/20/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.12.table b/eccodes/definitions.save/grib2/tables/20/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.13.table b/eccodes/definitions.save/grib2/tables/20/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.14.table b/eccodes/definitions.save/grib2/tables/20/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.15.table b/eccodes/definitions.save/grib2/tables/20/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.192.table b/eccodes/definitions.save/grib2/tables/20/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.1.table deleted file mode 100644 index 541deaca..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.1.table +++ /dev/null @@ -1,126 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -# 122-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.17.table deleted file mode 100644 index a6799631..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.17.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.19.table deleted file mode 100644 index d28010f2..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.19.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.20.table deleted file mode 100644 index efc427a1..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.20.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -# 64-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/20/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.3.table deleted file mode 100644 index de7afd61..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.1.table deleted file mode 100644 index 8e0793fe..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (Numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (Numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/20/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/20/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/20/4.201.table b/eccodes/definitions.save/grib2/tables/20/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.202.table b/eccodes/definitions.save/grib2/tables/20/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.203.table b/eccodes/definitions.save/grib2/tables/20/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.204.table b/eccodes/definitions.save/grib2/tables/20/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.205.table b/eccodes/definitions.save/grib2/tables/20/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.206.table b/eccodes/definitions.save/grib2/tables/20/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.207.table b/eccodes/definitions.save/grib2/tables/20/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.208.table b/eccodes/definitions.save/grib2/tables/20/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.209.table b/eccodes/definitions.save/grib2/tables/20/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.210.table b/eccodes/definitions.save/grib2/tables/20/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.211.table b/eccodes/definitions.save/grib2/tables/20/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.212.table b/eccodes/definitions.save/grib2/tables/20/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.213.table b/eccodes/definitions.save/grib2/tables/20/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.215.table b/eccodes/definitions.save/grib2/tables/20/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.216.table b/eccodes/definitions.save/grib2/tables/20/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.217.table b/eccodes/definitions.save/grib2/tables/20/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.218.table b/eccodes/definitions.save/grib2/tables/20/4.218.table deleted file mode 100644 index 7e3a6957..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.219.table b/eccodes/definitions.save/grib2/tables/20/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.220.table b/eccodes/definitions.save/grib2/tables/20/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.221.table b/eccodes/definitions.save/grib2/tables/20/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.222.table b/eccodes/definitions.save/grib2/tables/20/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.223.table b/eccodes/definitions.save/grib2/tables/20/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.224.table b/eccodes/definitions.save/grib2/tables/20/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.225.table b/eccodes/definitions.save/grib2/tables/20/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/20/4.227.table b/eccodes/definitions.save/grib2/tables/20/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/20/4.230.table b/eccodes/definitions.save/grib2/tables/20/4.230.table deleted file mode 100644 index 272731d7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.230.table +++ /dev/null @@ -1,449 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -#39-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -#60018-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027-62099 Reserved -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (Grass family) pollen -# 62301-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.233.table b/eccodes/definitions.save/grib2/tables/20/4.233.table deleted file mode 100644 index cbbf537b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.233 - Aerosol type -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.234.table b/eccodes/definitions.save/grib2/tables/20/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/20/4.236.table b/eccodes/definitions.save/grib2/tables/20/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/20/4.240.table b/eccodes/definitions.save/grib2/tables/20/4.240.table deleted file mode 100644 index 35e36321..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type no. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/20/4.241.table b/eccodes/definitions.save/grib2/tables/20/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/20/4.242.table b/eccodes/definitions.save/grib2/tables/20/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/20/4.243.table b/eccodes/definitions.save/grib2/tables/20/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/20/4.3.table b/eccodes/definitions.save/grib2/tables/20/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.4.table b/eccodes/definitions.save/grib2/tables/20/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.5.table b/eccodes/definitions.save/grib2/tables/20/4.5.table deleted file mode 100644 index c14343e7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.5.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.6.table b/eccodes/definitions.save/grib2/tables/20/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.7.table b/eccodes/definitions.save/grib2/tables/20/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.8.table b/eccodes/definitions.save/grib2/tables/20/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.9.table b/eccodes/definitions.save/grib2/tables/20/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/4.91.table b/eccodes/definitions.save/grib2/tables/20/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/20/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.0.table b/eccodes/definitions.save/grib2/tables/20/5.0.table deleted file mode 100644 index 1d4c5e5d..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.1.table b/eccodes/definitions.save/grib2/tables/20/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.2.table b/eccodes/definitions.save/grib2/tables/20/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.3.table b/eccodes/definitions.save/grib2/tables/20/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.4.table b/eccodes/definitions.save/grib2/tables/20/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.40.table b/eccodes/definitions.save/grib2/tables/20/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.40000.table b/eccodes/definitions.save/grib2/tables/20/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.5.table b/eccodes/definitions.save/grib2/tables/20/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.50002.table b/eccodes/definitions.save/grib2/tables/20/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/20/5.6.table b/eccodes/definitions.save/grib2/tables/20/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/5.7.table b/eccodes/definitions.save/grib2/tables/20/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/20/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/20/6.0.table b/eccodes/definitions.save/grib2/tables/20/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/20/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/20/stepType.table b/eccodes/definitions.save/grib2/tables/20/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/20/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/21/0.0.table b/eccodes/definitions.save/grib2/tables/21/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/21/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.0.table b/eccodes/definitions.save/grib2/tables/21/1.0.table deleted file mode 100644 index 7c1ff3aa..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.0.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Pre-operational to be implemented by next amendment -# 23-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/21/1.1.table b/eccodes/definitions.save/grib2/tables/21/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.2.table b/eccodes/definitions.save/grib2/tables/21/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.3.table b/eccodes/definitions.save/grib2/tables/21/1.3.table deleted file mode 100644 index 0c95269d..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.3.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.4.table b/eccodes/definitions.save/grib2/tables/21/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.5.table b/eccodes/definitions.save/grib2/tables/21/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/1.6.table b/eccodes/definitions.save/grib2/tables/21/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/21/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.0.table b/eccodes/definitions.save/grib2/tables/21/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/21/3.1.table b/eccodes/definitions.save/grib2/tables/21/3.1.table deleted file mode 100644 index aa8d9877..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.1.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -12 12 Transverse Mercator -# 13-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.10.table b/eccodes/definitions.save/grib2/tables/21/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/21/3.11.table b/eccodes/definitions.save/grib2/tables/21/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.15.table b/eccodes/definitions.save/grib2/tables/21/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.2.table b/eccodes/definitions.save/grib2/tables/21/3.2.table deleted file mode 100644 index 1b5c8241..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.20.table b/eccodes/definitions.save/grib2/tables/21/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.21.table b/eccodes/definitions.save/grib2/tables/21/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.3.table b/eccodes/definitions.save/grib2/tables/21/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/21/3.4.table b/eccodes/definitions.save/grib2/tables/21/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/21/3.5.table b/eccodes/definitions.save/grib2/tables/21/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/21/3.6.table b/eccodes/definitions.save/grib2/tables/21/3.6.table deleted file mode 100644 index d381959d..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file diff --git a/eccodes/definitions.save/grib2/tables/21/3.7.table b/eccodes/definitions.save/grib2/tables/21/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.8.table b/eccodes/definitions.save/grib2/tables/21/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/3.9.table b/eccodes/definitions.save/grib2/tables/21/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/21/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/21/4.0.table b/eccodes/definitions.save/grib2/tables/21/4.0.table deleted file mode 100644 index 4f288691..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.0.table +++ /dev/null @@ -1,88 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -35 35 Satellite product with or without associated quality values -# 36-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval - -76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink -78 78 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink - -80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink - -# 74-90 Reserved - -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.0.table b/eccodes/definitions.save/grib2/tables/21/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.1.table b/eccodes/definitions.save/grib2/tables/21/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.10.table b/eccodes/definitions.save/grib2/tables/21/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.192.table b/eccodes/definitions.save/grib2/tables/21/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.2.table b/eccodes/definitions.save/grib2/tables/21/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.1.3.table b/eccodes/definitions.save/grib2/tables/21/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.10.table b/eccodes/definitions.save/grib2/tables/21/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.11.table b/eccodes/definitions.save/grib2/tables/21/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.12.table b/eccodes/definitions.save/grib2/tables/21/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.13.table b/eccodes/definitions.save/grib2/tables/21/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.14.table b/eccodes/definitions.save/grib2/tables/21/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.15.table b/eccodes/definitions.save/grib2/tables/21/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.16.table b/eccodes/definitions.save/grib2/tables/21/4.16.table deleted file mode 100644 index de025080..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.16.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.16 - Quality value associated with parameter -0 0 Confidence index -1 1 Quality indicator -2 2 Correlation of product with used calibration product -3 3 Standard deviation -4 4 Random error -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.192.table b/eccodes/definitions.save/grib2/tables/21/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.1.table deleted file mode 100644 index 541deaca..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.1.table +++ /dev/null @@ -1,126 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -# 122-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.17.table deleted file mode 100644 index a6799631..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.17.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.19.table deleted file mode 100644 index d28010f2..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.19.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.20.table deleted file mode 100644 index efc427a1..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.20.table +++ /dev/null @@ -1,47 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -# 64-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/21/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.0.table deleted file mode 100644 index 095f51bd..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.3.table deleted file mode 100644 index de7afd61..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.10.4.table deleted file mode 100644 index 54774f1b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.1.table deleted file mode 100644 index 9fdeb038..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.1.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (numeric) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.2.table deleted file mode 100644 index 191f352e..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/21/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/21/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/21/4.201.table b/eccodes/definitions.save/grib2/tables/21/4.201.table deleted file mode 100644 index 47f1b486..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.201.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.202.table b/eccodes/definitions.save/grib2/tables/21/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.203.table b/eccodes/definitions.save/grib2/tables/21/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.204.table b/eccodes/definitions.save/grib2/tables/21/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.205.table b/eccodes/definitions.save/grib2/tables/21/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.206.table b/eccodes/definitions.save/grib2/tables/21/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.207.table b/eccodes/definitions.save/grib2/tables/21/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.208.table b/eccodes/definitions.save/grib2/tables/21/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.209.table b/eccodes/definitions.save/grib2/tables/21/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.210.table b/eccodes/definitions.save/grib2/tables/21/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.211.table b/eccodes/definitions.save/grib2/tables/21/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.212.table b/eccodes/definitions.save/grib2/tables/21/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.213.table b/eccodes/definitions.save/grib2/tables/21/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.215.table b/eccodes/definitions.save/grib2/tables/21/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.216.table b/eccodes/definitions.save/grib2/tables/21/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.217.table b/eccodes/definitions.save/grib2/tables/21/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.218.table b/eccodes/definitions.save/grib2/tables/21/4.218.table deleted file mode 100644 index 7e3a6957..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.218.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/Stratus -102 102 Low cloud/Stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/Nimbostratus -105 105 Medium cloud/Altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/Cumulus -108 108 High cloud/Cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.219.table b/eccodes/definitions.save/grib2/tables/21/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.220.table b/eccodes/definitions.save/grib2/tables/21/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.221.table b/eccodes/definitions.save/grib2/tables/21/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.222.table b/eccodes/definitions.save/grib2/tables/21/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.223.table b/eccodes/definitions.save/grib2/tables/21/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.224.table b/eccodes/definitions.save/grib2/tables/21/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.225.table b/eccodes/definitions.save/grib2/tables/21/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/21/4.227.table b/eccodes/definitions.save/grib2/tables/21/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/21/4.230.table b/eccodes/definitions.save/grib2/tables/21/4.230.table deleted file mode 100644 index dfc1ffc3..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.230.table +++ /dev/null @@ -1,449 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4 -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -#39-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -#60018-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027-62099 Reserved -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (Grass family) pollen -# 62301-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.233.table b/eccodes/definitions.save/grib2/tables/21/4.233.table deleted file mode 100644 index 1d3021ef..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.233.table +++ /dev/null @@ -1,449 +0,0 @@ -# Code table 4.233 - Aerosol type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -#39-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -#60018-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027-62099 Reserved -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (Grass family) pollen -# 62301-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.234.table b/eccodes/definitions.save/grib2/tables/21/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/21/4.236.table b/eccodes/definitions.save/grib2/tables/21/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/21/4.238.table b/eccodes/definitions.save/grib2/tables/21/4.238.table deleted file mode 100644 index 367d6866..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.238.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.238 - source, sink or chemical/physical process -0 0 Reserved -1 1 Aviation -2 2 Lightning -3 3 Biogenic sources -4 4 Anthropogenic sources -5 5 Wild fires -6 6 Natural sources -7 7 Volcanoes -8 8 Bio-fuel -9 9 Fossil-fuel -10 10 Wetlands -11 11 Oceans -# 12-191 Reserved -# 192-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.240.table b/eccodes/definitions.save/grib2/tables/21/4.240.table deleted file mode 100644 index bf12cbf5..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/21/4.241.table b/eccodes/definitions.save/grib2/tables/21/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/21/4.242.table b/eccodes/definitions.save/grib2/tables/21/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/21/4.243.table b/eccodes/definitions.save/grib2/tables/21/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/21/4.244.table b/eccodes/definitions.save/grib2/tables/21/4.244.table deleted file mode 100644 index 40534ee0..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.244.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.244 - Quality indicator -0 0 No quality information available -1 1 Failed -2 2 Passed -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.3.table b/eccodes/definitions.save/grib2/tables/21/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.4.table b/eccodes/definitions.save/grib2/tables/21/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.5.table b/eccodes/definitions.save/grib2/tables/21/4.5.table deleted file mode 100644 index c14343e7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.5.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.6.table b/eccodes/definitions.save/grib2/tables/21/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.7.table b/eccodes/definitions.save/grib2/tables/21/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.8.table b/eccodes/definitions.save/grib2/tables/21/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.9.table b/eccodes/definitions.save/grib2/tables/21/4.9.table deleted file mode 100644 index 5878b5ad..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/4.91.table b/eccodes/definitions.save/grib2/tables/21/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/21/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.0.table b/eccodes/definitions.save/grib2/tables/21/5.0.table deleted file mode 100644 index 1d4c5e5d..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.1.table b/eccodes/definitions.save/grib2/tables/21/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.2.table b/eccodes/definitions.save/grib2/tables/21/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.3.table b/eccodes/definitions.save/grib2/tables/21/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.4.table b/eccodes/definitions.save/grib2/tables/21/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.40.table b/eccodes/definitions.save/grib2/tables/21/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.40000.table b/eccodes/definitions.save/grib2/tables/21/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.5.table b/eccodes/definitions.save/grib2/tables/21/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.50002.table b/eccodes/definitions.save/grib2/tables/21/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/21/5.6.table b/eccodes/definitions.save/grib2/tables/21/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/5.7.table b/eccodes/definitions.save/grib2/tables/21/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/21/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/21/6.0.table b/eccodes/definitions.save/grib2/tables/21/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/21/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/21/stepType.table b/eccodes/definitions.save/grib2/tables/21/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/21/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/22/1.4.table b/eccodes/definitions.save/grib2/tables/22/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/22/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/22/3.15.table b/eccodes/definitions.save/grib2/tables/22/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/22/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/22/4.10.table b/eccodes/definitions.save/grib2/tables/22/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/22/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/22/4.230.table b/eccodes/definitions.save/grib2/tables/22/4.230.table deleted file mode 100644 index dfc1ffc3..00000000 --- a/eccodes/definitions.save/grib2/tables/22/4.230.table +++ /dev/null @@ -1,449 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4 -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -#39-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 Xylene C8H10 -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -#60018-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027-62099 Reserved -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (Grass family) pollen -# 62301-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/22/4.4.table b/eccodes/definitions.save/grib2/tables/22/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/22/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/22/4.5.table b/eccodes/definitions.save/grib2/tables/22/4.5.table deleted file mode 100644 index c14343e7..00000000 --- a/eccodes/definitions.save/grib2/tables/22/4.5.table +++ /dev/null @@ -1,72 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/22/4.91.table b/eccodes/definitions.save/grib2/tables/22/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/22/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/23/0.0.table b/eccodes/definitions.save/grib2/tables/23/0.0.table deleted file mode 100644 index b24c5056..00000000 --- a/eccodes/definitions.save/grib2/tables/23/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.0.table b/eccodes/definitions.save/grib2/tables/23/1.0.table deleted file mode 100644 index c871ea8f..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Version implemented on 15 May 2019 -# 24-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/23/1.1.table b/eccodes/definitions.save/grib2/tables/23/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.2.table b/eccodes/definitions.save/grib2/tables/23/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.3.table b/eccodes/definitions.save/grib2/tables/23/1.3.table deleted file mode 100644 index dd7e6813..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -10 10 Copernicus regional reanalysis (CARRA/CERRA) -11 11 Copernicus regional reanalysis test (CARRA/CERRA) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.4.table b/eccodes/definitions.save/grib2/tables/23/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.5.table b/eccodes/definitions.save/grib2/tables/23/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/1.6.table b/eccodes/definitions.save/grib2/tables/23/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/23/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.0.table b/eccodes/definitions.save/grib2/tables/23/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/23/3.1.table b/eccodes/definitions.save/grib2/tables/23/3.1.table deleted file mode 100644 index ed68c514..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.1.table +++ /dev/null @@ -1,54 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -# 11-12 Reserved -13 13 Mercator with modelling subdomains definition -# 14-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-22 Reserved -23 23 Polar stereographic with modelling subdomains definition -# 24-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -32 32 Reserved -33 33 Lambert conformal with modelling subdomains definition -# 34-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-60 Reserved -61 61 Spectral Mercator with modelling subdomains definition -62 62 Spectral polar stereographic with modelling subdomains definition -63 63 Spectral Lambert conformal with modelling subdomains definition -# 64-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.10.table b/eccodes/definitions.save/grib2/tables/23/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/23/3.11.table b/eccodes/definitions.save/grib2/tables/23/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.15.table b/eccodes/definitions.save/grib2/tables/23/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.2.table b/eccodes/definitions.save/grib2/tables/23/3.2.table deleted file mode 100644 index 1b5c8241..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.20.table b/eccodes/definitions.save/grib2/tables/23/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.21.table b/eccodes/definitions.save/grib2/tables/23/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.25.table b/eccodes/definitions.save/grib2/tables/23/3.25.table deleted file mode 100644 index de1bc74e..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.25.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 3.25 - Type of bi-Fourier truncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.3.table b/eccodes/definitions.save/grib2/tables/23/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/23/3.4.table b/eccodes/definitions.save/grib2/tables/23/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/23/3.5.table b/eccodes/definitions.save/grib2/tables/23/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/23/3.6.table b/eccodes/definitions.save/grib2/tables/23/3.6.table deleted file mode 100644 index dc7d107a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.6.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file -2 2 Bi-Fourier representation diff --git a/eccodes/definitions.save/grib2/tables/23/3.7.table b/eccodes/definitions.save/grib2/tables/23/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.8.table b/eccodes/definitions.save/grib2/tables/23/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/3.9.table b/eccodes/definitions.save/grib2/tables/23/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/23/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/23/4.0.table b/eccodes/definitions.save/grib2/tables/23/4.0.table deleted file mode 100644 index 72f395b5..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.0.table +++ /dev/null @@ -1,75 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -35 35 Satellite product with or without associated quality values -# 36-39 Reserved -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 62-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.0.table b/eccodes/definitions.save/grib2/tables/23/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.1.table b/eccodes/definitions.save/grib2/tables/23/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.10.table b/eccodes/definitions.save/grib2/tables/23/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.192.table b/eccodes/definitions.save/grib2/tables/23/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.2.table b/eccodes/definitions.save/grib2/tables/23/4.1.2.table deleted file mode 100644 index 5b488fe9..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.1.3.table b/eccodes/definitions.save/grib2/tables/23/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.10.table b/eccodes/definitions.save/grib2/tables/23/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.11.table b/eccodes/definitions.save/grib2/tables/23/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.12.table b/eccodes/definitions.save/grib2/tables/23/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.13.table b/eccodes/definitions.save/grib2/tables/23/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.14.table b/eccodes/definitions.save/grib2/tables/23/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.15.table b/eccodes/definitions.save/grib2/tables/23/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.16.table b/eccodes/definitions.save/grib2/tables/23/4.16.table deleted file mode 100644 index de025080..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.16.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.16 - Quality value associated with parameter -0 0 Confidence index -1 1 Quality indicator -2 2 Correlation of product with used calibration product -3 3 Standard deviation -4 4 Random error -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.192.table b/eccodes/definitions.save/grib2/tables/23/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.1.table deleted file mode 100644 index 0c01ce89..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.1.table +++ /dev/null @@ -1,126 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -# 122-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.17.table deleted file mode 100644 index ce1867ac..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.17.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) -2 2 Cloud-to-ground Lightning flash density (km-2 day-1) -3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) -4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.19.table deleted file mode 100644 index d28010f2..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.19.table +++ /dev/null @@ -1,40 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.20.table deleted file mode 100644 index 9e6ac3c0..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.20.table +++ /dev/null @@ -1,62 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -15 15 Dry deposition velocity (m/s) -16 16 Mass mixing ratio with respect to dry air (kg/kg) -17 17 Mass mixing ratio with respect to wet air (kg/kg) -# 18-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -64 64 Mole fraction with respect to dry air (mol/mol) -65 65 Mole fraction with respect to wet air (mol/mol) -66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) -67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) -68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) -69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) -72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) -73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) -74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) -75 75 Wildfire flux (kg m-2 s-1) -# 76-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/23/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.0.table deleted file mode 100644 index 6a60ba8a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.0.table +++ /dev/null @@ -1,70 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -46 46 Peak wave direction (deg) -47 47 Significant wave height of first swell partition (m) -48 48 Significant wave height of second swell partition (m) -49 49 Significant wave height of third swell partition (m) -50 50 Mean wave period of first swell partition (s) -51 51 Mean wave period of second swell partition (s) -52 52 Mean wave period of third swell partition (s) -53 53 Mean wave direction of first swell partition (deg) -54 54 Mean wave direction of second swell partition (deg) -55 55 Mean wave direction of third swell partition (deg) -# 56-191 Reserved -56 56 Wave directional width of first swell partition (-) -57 57 Wave directional width of second swell partition (-) -58 58 Wave directional width of third swell partition (-) -59 59 Wave frequency width of first swell partition (-) -60 60 Wave frequency width of second swell partition (-) -61 61 Wave frequency width of third swell partition (-) -62 62 Wave frequency width (-) -63 63 Frequency width of wind waves (-) -64 64 Frequency width of total swell (-) -# 65-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.3.table deleted file mode 100644 index de7afd61..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.10.4.table deleted file mode 100644 index 69ba0cc6..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.10.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -16 16 Water density (rho) (kg m-3) -17 17 Water density anomaly (sigma) (kg m-3) -18 18 Water potential temperature (theta) (K) -19 19 Water potential density (rho theta) (kg m-3) -20 20 Water potential density anomaly (sigma theta) (kg m-3) -21 21 Practical salinity (Numeric) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.0.table deleted file mode 100644 index 81548840..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.2.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -# 39-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.3.table deleted file mode 100644 index 690fab42..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.1.table deleted file mode 100644 index 7d4364f4..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.1.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (numeric) -# 30-97 Reserved -98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) -99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.2.table deleted file mode 100644 index 6316ab39..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.2.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) -30 30 Measurement cost (Numeric) -31 31 Upper layer cloud optical depth (Numeric) -32 32 Upper layer cloud top pressure (Pa) -33 33 Upper layer cloud effective radius (m) -34 34 Error in upper layer cloud optical depth (Numeric) -35 35 Error in upper layer cloud top pressure (Pa) -36 36 Error in upper layer cloud effective radius (m) -37 37 Lower layer cloud optical depth (Numeric) -38 38 Lower layer cloud top pressure (Pa) -39 39 Error in lower layer cloud optical depth (Numeric) -40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/23/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/23/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/23/4.201.table b/eccodes/definitions.save/grib2/tables/23/4.201.table deleted file mode 100644 index 44943d5e..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.201.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -11 11 Drizzle -12 12 Freezing drizzle -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.202.table b/eccodes/definitions.save/grib2/tables/23/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.203.table b/eccodes/definitions.save/grib2/tables/23/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.204.table b/eccodes/definitions.save/grib2/tables/23/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.205.table b/eccodes/definitions.save/grib2/tables/23/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.206.table b/eccodes/definitions.save/grib2/tables/23/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.207.table b/eccodes/definitions.save/grib2/tables/23/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.208.table b/eccodes/definitions.save/grib2/tables/23/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.209.table b/eccodes/definitions.save/grib2/tables/23/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.210.table b/eccodes/definitions.save/grib2/tables/23/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.211.table b/eccodes/definitions.save/grib2/tables/23/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.212.table b/eccodes/definitions.save/grib2/tables/23/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.213.table b/eccodes/definitions.save/grib2/tables/23/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.215.table b/eccodes/definitions.save/grib2/tables/23/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.216.table b/eccodes/definitions.save/grib2/tables/23/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.217.table b/eccodes/definitions.save/grib2/tables/23/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.218.table b/eccodes/definitions.save/grib2/tables/23/4.218.table deleted file mode 100644 index fcd06c34..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.218.table +++ /dev/null @@ -1,46 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/stratus -102 102 Low cloud/stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/nimbostratus -105 105 Medium cloud/altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/cumulus -108 108 High cloud/cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -111 111 Single layer water cloud -112 112 Single layer ice cloud -# 113-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.219.table b/eccodes/definitions.save/grib2/tables/23/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.220.table b/eccodes/definitions.save/grib2/tables/23/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.221.table b/eccodes/definitions.save/grib2/tables/23/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.222.table b/eccodes/definitions.save/grib2/tables/23/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.223.table b/eccodes/definitions.save/grib2/tables/23/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.224.table b/eccodes/definitions.save/grib2/tables/23/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.225.table b/eccodes/definitions.save/grib2/tables/23/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/23/4.227.table b/eccodes/definitions.save/grib2/tables/23/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/23/4.230.table b/eccodes/definitions.save/grib2/tables/23/4.230.table deleted file mode 100644 index 94f24dc6..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.230.table +++ /dev/null @@ -1,511 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4 -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 3000-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(D) -40003 40003 Triplet ground state oxygen atom O(P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 6230-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.233.table b/eccodes/definitions.save/grib2/tables/23/4.233.table deleted file mode 100644 index 6c30833a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.233.table +++ /dev/null @@ -1,511 +0,0 @@ -# Code table 4.233 - Aerosol type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium NH4 -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HO2 -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Molecular hydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate SO42- -23 23 Radon Rn -24 24 Elemental mercury Hg(0) -25 25 Divalent mercury Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Oxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical OH -10001 10001 Methyl peroxy radical CH3O2 -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butanes C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -#10502-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a CH3CCl3 -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#3000-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -#30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(D) -40003 40003 Triplet ground state oxygen atom O(P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -#62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -#62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -#62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -#62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -#6230-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.234.table b/eccodes/definitions.save/grib2/tables/23/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/23/4.236.table b/eccodes/definitions.save/grib2/tables/23/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/23/4.240.table b/eccodes/definitions.save/grib2/tables/23/4.240.table deleted file mode 100644 index f48c086e..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/23/4.241.table b/eccodes/definitions.save/grib2/tables/23/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/23/4.242.table b/eccodes/definitions.save/grib2/tables/23/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/23/4.243.table b/eccodes/definitions.save/grib2/tables/23/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/23/4.244.table b/eccodes/definitions.save/grib2/tables/23/4.244.table deleted file mode 100644 index 40534ee0..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.244.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.244 - Quality indicator -0 0 No quality information available -1 1 Failed -2 2 Passed -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.3.table b/eccodes/definitions.save/grib2/tables/23/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.4.table b/eccodes/definitions.save/grib2/tables/23/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.5.table b/eccodes/definitions.save/grib2/tables/23/4.5.table deleted file mode 100644 index 9bd1b899..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.5.table +++ /dev/null @@ -1,73 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.6.table b/eccodes/definitions.save/grib2/tables/23/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.7.table b/eccodes/definitions.save/grib2/tables/23/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.8.table b/eccodes/definitions.save/grib2/tables/23/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.9.table b/eccodes/definitions.save/grib2/tables/23/4.9.table deleted file mode 100644 index 9f74599c..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.9.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -5 5 Probability of event equal to lower limit -6 6 Probability of event in above normal category -7 7 Probability of event in near normal category -8 8 Probability of event in below normal category -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/4.91.table b/eccodes/definitions.save/grib2/tables/23/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/23/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.0.table b/eccodes/definitions.save/grib2/tables/23/5.0.table deleted file mode 100644 index 27a9fbc9..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -# 5-39 Reserved -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52 Reserved -53 53 Spectral data for limited area models - complex packing -# 54-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.1.table b/eccodes/definitions.save/grib2/tables/23/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.2.table b/eccodes/definitions.save/grib2/tables/23/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.25.table b/eccodes/definitions.save/grib2/tables/23/5.25.table deleted file mode 100644 index 1b45f28a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.25.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 5.25 - type of bi-Fourier subtruncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.26.table b/eccodes/definitions.save/grib2/tables/23/5.26.table deleted file mode 100644 index 9e91ebf2..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.26.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.26 - packing mode for axes -0 0 Spectral coefficients for axes are packed -1 1 Spectral coefficients for axes included in the unpacked subset -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.3.table b/eccodes/definitions.save/grib2/tables/23/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.4.table b/eccodes/definitions.save/grib2/tables/23/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.40.table b/eccodes/definitions.save/grib2/tables/23/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.40000.table b/eccodes/definitions.save/grib2/tables/23/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.5.table b/eccodes/definitions.save/grib2/tables/23/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.50002.table b/eccodes/definitions.save/grib2/tables/23/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/23/5.6.table b/eccodes/definitions.save/grib2/tables/23/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/5.7.table b/eccodes/definitions.save/grib2/tables/23/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/23/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/23/6.0.table b/eccodes/definitions.save/grib2/tables/23/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/23/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/23/stepType.table b/eccodes/definitions.save/grib2/tables/23/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/23/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/24/0.0.table b/eccodes/definitions.save/grib2/tables/24/0.0.table deleted file mode 100644 index 48569a54..00000000 --- a/eccodes/definitions.save/grib2/tables/24/0.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Satellite remote sensing products (formerly Space products) -4 4 Space weather products -# 5-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.0.table b/eccodes/definitions.save/grib2/tables/24/1.0.table deleted file mode 100644 index e2fa20ab..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.0.table +++ /dev/null @@ -1,28 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Version implemented on 15 May 2019 -24 24 Version implemented on 6 November 2019 -# 25-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/24/1.1.table b/eccodes/definitions.save/grib2/tables/24/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.2.table b/eccodes/definitions.save/grib2/tables/24/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.3.table b/eccodes/definitions.save/grib2/tables/24/1.3.table deleted file mode 100644 index a5bd99e5..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -10 10 Copernicus regional reanalysis (CARRA/CERRA) -11 11 Copernicus regional reanalysis test (CARRA/CERRA) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.4.table b/eccodes/definitions.save/grib2/tables/24/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.5.table b/eccodes/definitions.save/grib2/tables/24/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/1.6.table b/eccodes/definitions.save/grib2/tables/24/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/24/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.0.table b/eccodes/definitions.save/grib2/tables/24/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/24/3.1.table b/eccodes/definitions.save/grib2/tables/24/3.1.table deleted file mode 100644 index ed68c514..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.1.table +++ /dev/null @@ -1,54 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -# 11-12 Reserved -13 13 Mercator with modelling subdomains definition -# 14-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-22 Reserved -23 23 Polar stereographic with modelling subdomains definition -# 24-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -32 32 Reserved -33 33 Lambert conformal with modelling subdomains definition -# 34-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-60 Reserved -61 61 Spectral Mercator with modelling subdomains definition -62 62 Spectral polar stereographic with modelling subdomains definition -63 63 Spectral Lambert conformal with modelling subdomains definition -# 64-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.10.table b/eccodes/definitions.save/grib2/tables/24/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/24/3.11.table b/eccodes/definitions.save/grib2/tables/24/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.15.table b/eccodes/definitions.save/grib2/tables/24/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.2.table b/eccodes/definitions.save/grib2/tables/24/3.2.table deleted file mode 100644 index 1b5c8241..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 3.2 - Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.20.table b/eccodes/definitions.save/grib2/tables/24/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.21.table b/eccodes/definitions.save/grib2/tables/24/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.25.table b/eccodes/definitions.save/grib2/tables/24/3.25.table deleted file mode 100644 index de1bc74e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.25.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 3.25 - Type of bi-Fourier truncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.3.table b/eccodes/definitions.save/grib2/tables/24/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/24/3.4.table b/eccodes/definitions.save/grib2/tables/24/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/24/3.5.table b/eccodes/definitions.save/grib2/tables/24/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/24/3.6.table b/eccodes/definitions.save/grib2/tables/24/3.6.table deleted file mode 100644 index dc7d107a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.6.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file -2 2 Bi-Fourier representation diff --git a/eccodes/definitions.save/grib2/tables/24/3.7.table b/eccodes/definitions.save/grib2/tables/24/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.8.table b/eccodes/definitions.save/grib2/tables/24/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/3.9.table b/eccodes/definitions.save/grib2/tables/24/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/24/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/24/4.0.table b/eccodes/definitions.save/grib2/tables/24/4.0.table deleted file mode 100644 index 0ea0af4e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.0.table +++ /dev/null @@ -1,86 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -35 35 Satellite product with or without associated quality values -# 36-39 Reserved -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles -# 64-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-75 Reserved -76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -# 84-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.0.table b/eccodes/definitions.save/grib2/tables/24/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.1.table b/eccodes/definitions.save/grib2/tables/24/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.10.table b/eccodes/definitions.save/grib2/tables/24/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.192.table b/eccodes/definitions.save/grib2/tables/24/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.2.table b/eccodes/definitions.save/grib2/tables/24/4.1.2.table deleted file mode 100644 index 60e2452d..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.2.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -5 5 Glaciers and inland ice -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.1.3.table b/eccodes/definitions.save/grib2/tables/24/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.10.table b/eccodes/definitions.save/grib2/tables/24/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.11.table b/eccodes/definitions.save/grib2/tables/24/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.12.table b/eccodes/definitions.save/grib2/tables/24/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.13.table b/eccodes/definitions.save/grib2/tables/24/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.14.table b/eccodes/definitions.save/grib2/tables/24/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.15.table b/eccodes/definitions.save/grib2/tables/24/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.16.table b/eccodes/definitions.save/grib2/tables/24/4.16.table deleted file mode 100644 index de025080..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.16.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.16 - Quality value associated with parameter -0 0 Confidence index -1 1 Quality indicator -2 2 Correlation of product with used calibration product -3 3 Standard deviation -4 4 Random error -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.192.table b/eccodes/definitions.save/grib2/tables/24/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.1.table deleted file mode 100644 index ef6d2ed7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.1.table +++ /dev/null @@ -1,141 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -# 122-128 Reserved -129 129 Effective radius of cloud water (m) -130 130 Effective radius of rain (m) -131 131 Effective radius of cloud ice (m) -132 132 Effective radius of snow (m) -133 133 Effective radius of graupel (m) -134 134 Effective radius of hail (m) -135 135 Effective radius of subgrid liquid clouds (m) -136 136 Effective radius of subgrid ice clouds (m) -137 137 Effective aspect ratio of rain (-) -138 138 Effective aspect ratio of cloud ice (-) -139 139 Effective aspect ratio of snow (-) -140 140 Effective aspect ratio of graupel (-) -141 141 Effective aspect ratio of hail (-) -142 142 Effective aspect ratio of subgrid ice clouds (-) -# 143-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.17.table deleted file mode 100644 index ce1867ac..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.17.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) -2 2 Cloud-to-ground Lightning flash density (km-2 day-1) -3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) -4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.19.table deleted file mode 100644 index d2a1b8d1..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.19.table +++ /dev/null @@ -1,41 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -36 36 Presence of snow squalls (Code table 4.222) -# 37-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.20.table deleted file mode 100644 index 04273276..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.20.table +++ /dev/null @@ -1,64 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -15 15 Dry deposition velocity (m/s) -16 16 Mass mixing ratio with respect to dry air (kg/kg) -17 17 Mass mixing ratio with respect to wet air (kg/kg) -# 18-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -64 64 Mole fraction with respect to dry air (mol/mol) -65 65 Mole fraction with respect to wet air (mol/mol) -66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) -67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) -68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) -69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) -72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) -73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) -74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) -75 75 Wildfire flux (kg m-2 s-1) -76 76 Emission rate (kg kg-1 s-1) -77 77 Surface emission flux (kg m-2 s-1) -# 78-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/24/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.0.table deleted file mode 100644 index 53c9d242..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.0.table +++ /dev/null @@ -1,69 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -46 46 Peak wave direction (deg) -47 47 Significant wave height of first swell partition (m) -48 48 Significant wave height of second swell partition (m) -49 49 Significant wave height of third swell partition (m) -50 50 Mean wave period of first swell partition (s) -51 51 Mean wave period of second swell partition (s) -52 52 Mean wave period of third swell partition (s) -53 53 Mean wave direction of first swell partition (deg) -54 54 Mean wave direction of second swell partition (deg) -55 55 Mean wave direction of third swell partition (deg) -56 56 Wave directional width of first swell partition (-) -57 57 Wave directional width of second swell partition (-) -58 58 Wave directional width of third swell partition (-) -59 59 Wave frequency width of first swell partition (-) -60 60 Wave frequency width of second swell partition (-) -61 61 Wave frequency width of third swell partition (-) -62 62 Wave frequency width (-) -63 63 Frequency width of wind waves (-) -64 64 Frequency width of total swell (-) -# 65-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.3.table deleted file mode 100644 index 9f9492f0..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -3 3 Practical salinity (Numeric) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.10.4.table deleted file mode 100644 index 69ba0cc6..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.10.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -16 16 Water density (rho) (kg m-3) -17 17 Water density anomaly (sigma) (kg m-3) -18 18 Water potential temperature (theta) (K) -19 19 Water potential density (rho theta) (kg m-3) -20 20 Water potential density anomaly (sigma theta) (kg m-3) -21 21 Practical salinity (Numeric) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.0.table deleted file mode 100644 index 849c2f1e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.2.0.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -39 39 Evapotranspiration rate (kg m-2 s-1) -# 40-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.3.table deleted file mode 100644 index 8f53f402..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.2.3.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.4.table deleted file mode 100644 index bb54fac2..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) -8 8 Drought Code (Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.2.5.table deleted file mode 100644 index 10fb6895..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.2.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -1 1 Glacier temperature (K) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.1.table deleted file mode 100644 index 7d4364f4..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.1.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (numeric) -# 30-97 Reserved -98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) -99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.2.table deleted file mode 100644 index 6316ab39..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.2.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) -30 30 Measurement cost (Numeric) -31 31 Upper layer cloud optical depth (Numeric) -32 32 Upper layer cloud top pressure (Pa) -33 33 Upper layer cloud effective radius (m) -34 34 Error in upper layer cloud optical depth (Numeric) -35 35 Error in upper layer cloud top pressure (Pa) -36 36 Error in upper layer cloud effective radius (m) -37 37 Lower layer cloud optical depth (Numeric) -38 38 Lower layer cloud top pressure (Pa) -39 39 Error in lower layer cloud optical depth (Numeric) -40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/24/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/24/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/24/4.201.table b/eccodes/definitions.save/grib2/tables/24/4.201.table deleted file mode 100644 index 44943d5e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.201.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -11 11 Drizzle -12 12 Freezing drizzle -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.202.table b/eccodes/definitions.save/grib2/tables/24/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.203.table b/eccodes/definitions.save/grib2/tables/24/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.204.table b/eccodes/definitions.save/grib2/tables/24/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.205.table b/eccodes/definitions.save/grib2/tables/24/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.206.table b/eccodes/definitions.save/grib2/tables/24/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.207.table b/eccodes/definitions.save/grib2/tables/24/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.208.table b/eccodes/definitions.save/grib2/tables/24/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.209.table b/eccodes/definitions.save/grib2/tables/24/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.210.table b/eccodes/definitions.save/grib2/tables/24/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.211.table b/eccodes/definitions.save/grib2/tables/24/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.212.table b/eccodes/definitions.save/grib2/tables/24/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.213.table b/eccodes/definitions.save/grib2/tables/24/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.215.table b/eccodes/definitions.save/grib2/tables/24/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.216.table b/eccodes/definitions.save/grib2/tables/24/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.217.table b/eccodes/definitions.save/grib2/tables/24/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.218.table b/eccodes/definitions.save/grib2/tables/24/4.218.table deleted file mode 100644 index fcd06c34..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.218.table +++ /dev/null @@ -1,46 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/stratus -102 102 Low cloud/stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/nimbostratus -105 105 Medium cloud/altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/cumulus -108 108 High cloud/cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -111 111 Single layer water cloud -112 112 Single layer ice cloud -# 113-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.219.table b/eccodes/definitions.save/grib2/tables/24/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.220.table b/eccodes/definitions.save/grib2/tables/24/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.221.table b/eccodes/definitions.save/grib2/tables/24/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.222.table b/eccodes/definitions.save/grib2/tables/24/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.223.table b/eccodes/definitions.save/grib2/tables/24/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.224.table b/eccodes/definitions.save/grib2/tables/24/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.225.table b/eccodes/definitions.save/grib2/tables/24/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/24/4.227.table b/eccodes/definitions.save/grib2/tables/24/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/24/4.230.table b/eccodes/definitions.save/grib2/tables/24/4.230.table deleted file mode 100644 index 147ff974..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.230.table +++ /dev/null @@ -1,512 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.233.table b/eccodes/definitions.save/grib2/tables/24/4.233.table deleted file mode 100644 index 051d603a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.233.table +++ /dev/null @@ -1,512 +0,0 @@ -# Code table 4.233 - Aerosol type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.234.table b/eccodes/definitions.save/grib2/tables/24/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/24/4.236.table b/eccodes/definitions.save/grib2/tables/24/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/24/4.238.table b/eccodes/definitions.save/grib2/tables/24/4.238.table deleted file mode 100644 index 6dfaf828..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.238.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.238 - Source or sink -0 0 Reserved -1 1 Aviation -2 2 Lightning -3 3 Biogenic sources -4 4 Anthropogenic sources -5 5 Wild fires -6 6 Natural sources -7 7 Volcanoes -8 8 Bio-fuel -9 9 Fossil-fuel -10 10 Wetlands -11 11 Oceans -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.240.table b/eccodes/definitions.save/grib2/tables/24/4.240.table deleted file mode 100644 index f48c086e..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/24/4.241.table b/eccodes/definitions.save/grib2/tables/24/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/24/4.242.table b/eccodes/definitions.save/grib2/tables/24/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/24/4.243.table b/eccodes/definitions.save/grib2/tables/24/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/24/4.244.table b/eccodes/definitions.save/grib2/tables/24/4.244.table deleted file mode 100644 index 40534ee0..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.244.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.244 - Quality indicator -0 0 No quality information available -1 1 Failed -2 2 Passed -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.3.table b/eccodes/definitions.save/grib2/tables/24/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.4.table b/eccodes/definitions.save/grib2/tables/24/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.5.table b/eccodes/definitions.save/grib2/tables/24/4.5.table deleted file mode 100644 index 97795d3c..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.5.table +++ /dev/null @@ -1,76 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) -# 171-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.6.table b/eccodes/definitions.save/grib2/tables/24/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.7.table b/eccodes/definitions.save/grib2/tables/24/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.8.table b/eccodes/definitions.save/grib2/tables/24/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.9.table b/eccodes/definitions.save/grib2/tables/24/4.9.table deleted file mode 100644 index 9f74599c..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.9.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -5 5 Probability of event equal to lower limit -6 6 Probability of event in above normal category -7 7 Probability of event in near normal category -8 8 Probability of event in below normal category -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/4.91.table b/eccodes/definitions.save/grib2/tables/24/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/24/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.0.table b/eccodes/definitions.save/grib2/tables/24/5.0.table deleted file mode 100644 index 27a9fbc9..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -# 5-39 Reserved -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52 Reserved -53 53 Spectral data for limited area models - complex packing -# 54-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.1.table b/eccodes/definitions.save/grib2/tables/24/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.2.table b/eccodes/definitions.save/grib2/tables/24/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.25.table b/eccodes/definitions.save/grib2/tables/24/5.25.table deleted file mode 100644 index 1b45f28a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.25.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 5.25 - type of bi-Fourier subtruncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.26.table b/eccodes/definitions.save/grib2/tables/24/5.26.table deleted file mode 100644 index 9e91ebf2..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.26.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.26 - packing mode for axes -0 0 Spectral coefficients for axes are packed -1 1 Spectral coefficients for axes included in the unpacked subset -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.3.table b/eccodes/definitions.save/grib2/tables/24/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.4.table b/eccodes/definitions.save/grib2/tables/24/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.40.table b/eccodes/definitions.save/grib2/tables/24/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.40000.table b/eccodes/definitions.save/grib2/tables/24/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.5.table b/eccodes/definitions.save/grib2/tables/24/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.50002.table b/eccodes/definitions.save/grib2/tables/24/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/24/5.6.table b/eccodes/definitions.save/grib2/tables/24/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/5.7.table b/eccodes/definitions.save/grib2/tables/24/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/24/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/24/6.0.table b/eccodes/definitions.save/grib2/tables/24/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/24/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/24/stepType.table b/eccodes/definitions.save/grib2/tables/24/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/24/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/25/0.0.table b/eccodes/definitions.save/grib2/tables/25/0.0.table deleted file mode 100644 index a3097cd3..00000000 --- a/eccodes/definitions.save/grib2/tables/25/0.0.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Satellite remote sensing products (formerly Space products) -4 4 Space weather products -# 5-9 Reserved -10 10 Oceanographic products -# 11-19 Reserved -20 20 Health and socioeconomic impacts -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.0.table b/eccodes/definitions.save/grib2/tables/25/1.0.table deleted file mode 100644 index a6e370f4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Version implemented on 15 May 2019 -24 24 Version implemented on 6 November 2019 -25 25 Version implemented on 6 May 2020 -# 26-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/25/1.1.table b/eccodes/definitions.save/grib2/tables/25/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.2.table b/eccodes/definitions.save/grib2/tables/25/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.3.table b/eccodes/definitions.save/grib2/tables/25/1.3.table deleted file mode 100644 index a5bd99e5..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -10 10 Copernicus regional reanalysis (CARRA/CERRA) -11 11 Copernicus regional reanalysis test (CARRA/CERRA) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.4.table b/eccodes/definitions.save/grib2/tables/25/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.5.table b/eccodes/definitions.save/grib2/tables/25/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/1.6.table b/eccodes/definitions.save/grib2/tables/25/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/25/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.0.table b/eccodes/definitions.save/grib2/tables/25/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/25/3.1.table b/eccodes/definitions.save/grib2/tables/25/3.1.table deleted file mode 100644 index ed68c514..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.1.table +++ /dev/null @@ -1,54 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -# 11-12 Reserved -13 13 Mercator with modelling subdomains definition -# 14-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-22 Reserved -23 23 Polar stereographic with modelling subdomains definition -# 24-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -32 32 Reserved -33 33 Lambert conformal with modelling subdomains definition -# 34-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-60 Reserved -61 61 Spectral Mercator with modelling subdomains definition -62 62 Spectral polar stereographic with modelling subdomains definition -63 63 Spectral Lambert conformal with modelling subdomains definition -# 64-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.10.table b/eccodes/definitions.save/grib2/tables/25/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/25/3.11.table b/eccodes/definitions.save/grib2/tables/25/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.15.table b/eccodes/definitions.save/grib2/tables/25/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.2.table b/eccodes/definitions.save/grib2/tables/25/3.2.table deleted file mode 100644 index 4ad56569..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.2.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 3.2 - Shape of the reference system -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 -11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.20.table b/eccodes/definitions.save/grib2/tables/25/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.21.table b/eccodes/definitions.save/grib2/tables/25/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.25.table b/eccodes/definitions.save/grib2/tables/25/3.25.table deleted file mode 100644 index de1bc74e..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.25.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 3.25 - Type of bi-Fourier truncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.3.table b/eccodes/definitions.save/grib2/tables/25/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/25/3.4.table b/eccodes/definitions.save/grib2/tables/25/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/25/3.5.table b/eccodes/definitions.save/grib2/tables/25/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/25/3.6.table b/eccodes/definitions.save/grib2/tables/25/3.6.table deleted file mode 100644 index dc7d107a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.6.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file -2 2 Bi-Fourier representation diff --git a/eccodes/definitions.save/grib2/tables/25/3.7.table b/eccodes/definitions.save/grib2/tables/25/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.8.table b/eccodes/definitions.save/grib2/tables/25/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/3.9.table b/eccodes/definitions.save/grib2/tables/25/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/25/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/25/4.0.table b/eccodes/definitions.save/grib2/tables/25/4.0.table deleted file mode 100644 index 3b12b1a9..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.0.table +++ /dev/null @@ -1,86 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -35 35 Satellite product with or without associated quality values -# 36-39 Reserved -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles -# 64-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-75 Reserved -76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -# 84-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.0.table b/eccodes/definitions.save/grib2/tables/25/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.1.table b/eccodes/definitions.save/grib2/tables/25/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.10.table b/eccodes/definitions.save/grib2/tables/25/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.192.table b/eccodes/definitions.save/grib2/tables/25/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.2.table b/eccodes/definitions.save/grib2/tables/25/4.1.2.table deleted file mode 100644 index 60e2452d..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.2.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -5 5 Glaciers and inland ice -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.20.table b/eccodes/definitions.save/grib2/tables/25/4.1.20.table deleted file mode 100644 index afad6c81..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.20.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Health indicators -1 1 Epidemiology -2 2 Socioeconomic indicators -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.3.table b/eccodes/definitions.save/grib2/tables/25/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.1.4.table b/eccodes/definitions.save/grib2/tables/25/4.1.4.table deleted file mode 100644 index 4d3e1cf2..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.1.4.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Momentum -2 2 Charged particle mass and number -3 3 Electric and magnetic fields -4 4 Energetic particles -5 5 Waves -6 6 Solar electromagnetic emissions -7 7 Terrestrial electromagnetic emissions -8 8 Imagery -9 9 Ion-neutral coupling -10 10 Space weather indices -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.10.table b/eccodes/definitions.save/grib2/tables/25/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.11.table b/eccodes/definitions.save/grib2/tables/25/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.12.table b/eccodes/definitions.save/grib2/tables/25/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.13.table b/eccodes/definitions.save/grib2/tables/25/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.14.table b/eccodes/definitions.save/grib2/tables/25/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.15.table b/eccodes/definitions.save/grib2/tables/25/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.16.table b/eccodes/definitions.save/grib2/tables/25/4.16.table deleted file mode 100644 index de025080..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.16.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.16 - Quality value associated with parameter -0 0 Confidence index -1 1 Quality indicator -2 2 Correlation of product with used calibration product -3 3 Standard deviation -4 4 Random error -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.192.table b/eccodes/definitions.save/grib2/tables/25/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.0.table deleted file mode 100644 index 7201a866..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.0.table +++ /dev/null @@ -1,34 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -# 30-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.1.table deleted file mode 100644 index ef6d2ed7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.1.table +++ /dev/null @@ -1,141 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -# 122-128 Reserved -129 129 Effective radius of cloud water (m) -130 130 Effective radius of rain (m) -131 131 Effective radius of cloud ice (m) -132 132 Effective radius of snow (m) -133 133 Effective radius of graupel (m) -134 134 Effective radius of hail (m) -135 135 Effective radius of subgrid liquid clouds (m) -136 136 Effective radius of subgrid ice clouds (m) -137 137 Effective aspect ratio of rain (-) -138 138 Effective aspect ratio of cloud ice (-) -139 139 Effective aspect ratio of snow (-) -140 140 Effective aspect ratio of graupel (-) -141 141 Effective aspect ratio of hail (-) -142 142 Effective aspect ratio of subgrid ice clouds (-) -# 143-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.17.table deleted file mode 100644 index ce1867ac..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.17.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) -2 2 Cloud-to-ground Lightning flash density (km-2 day-1) -3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) -4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.19.table deleted file mode 100644 index a99dc5d6..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.19.table +++ /dev/null @@ -1,42 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -36 36 Presence of snow squalls (Code table 4.222) -37 37 Icing severity (Code table 4.228) -# 38-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.20.table deleted file mode 100644 index 04273276..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.20.table +++ /dev/null @@ -1,64 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -15 15 Dry deposition velocity (m/s) -16 16 Mass mixing ratio with respect to dry air (kg/kg) -17 17 Mass mixing ratio with respect to wet air (kg/kg) -# 18-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -64 64 Mole fraction with respect to dry air (mol/mol) -65 65 Mole fraction with respect to wet air (mol/mol) -66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) -67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) -68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) -69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) -72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) -73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) -74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) -75 75 Wildfire flux (kg m-2 s-1) -76 76 Emission rate (kg kg-1 s-1) -77 77 Surface emission flux (kg m-2 s-1) -# 78-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.4.table deleted file mode 100644 index 0a5ded2b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -# 54-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.6.table deleted file mode 100644 index 4cec0c8a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.6.table +++ /dev/null @@ -1,49 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -# 50-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/25/4.2.0.7.table deleted file mode 100644 index aff6a651..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.0.7.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.0.table deleted file mode 100644 index 53c9d242..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.0.table +++ /dev/null @@ -1,69 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -46 46 Peak wave direction (deg) -47 47 Significant wave height of first swell partition (m) -48 48 Significant wave height of second swell partition (m) -49 49 Significant wave height of third swell partition (m) -50 50 Mean wave period of first swell partition (s) -51 51 Mean wave period of second swell partition (s) -52 52 Mean wave period of third swell partition (s) -53 53 Mean wave direction of first swell partition (deg) -54 54 Mean wave direction of second swell partition (deg) -55 55 Mean wave direction of third swell partition (deg) -56 56 Wave directional width of first swell partition (-) -57 57 Wave directional width of second swell partition (-) -58 58 Wave directional width of third swell partition (-) -59 59 Wave frequency width of first swell partition (-) -60 60 Wave frequency width of second swell partition (-) -61 61 Wave frequency width of third swell partition (-) -62 62 Wave frequency width (-) -63 63 Frequency width of wind waves (-) -64 64 Frequency width of total swell (-) -# 65-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.3.table deleted file mode 100644 index 9f9492f0..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -3 3 Practical salinity (Numeric) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.10.4.table deleted file mode 100644 index 69ba0cc6..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.10.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -16 16 Water density (rho) (kg m-3) -17 17 Water density anomaly (sigma) (kg m-3) -18 18 Water potential temperature (theta) (K) -19 19 Water potential density (rho theta) (kg m-3) -20 20 Water potential density anomaly (sigma theta) (kg m-3) -21 21 Practical salinity (Numeric) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.0.table deleted file mode 100644 index 849c2f1e..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.2.0.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -39 39 Evapotranspiration rate (kg m-2 s-1) -# 40-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.3.table deleted file mode 100644 index fcb3ebd7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.2.3.table +++ /dev/null @@ -1,33 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -28 28 Snow temperature (K) -# 29-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.4.table deleted file mode 100644 index 64ce5835..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.2.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) -8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.2.5.table deleted file mode 100644 index a5a71dcd..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.2.5.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Glacier cover (Proportion) -1 1 Glacier temperature (K) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.20.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.0.table deleted file mode 100644 index 9cd93638..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.20.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Universal thermal climate index (K) -1 1 Mean radiant temperature (K) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.20.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.1.table deleted file mode 100644 index bdddca5f..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.20.1.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Malaria cases (Fraction) -1 1 Malaria circumsporozoite protein rate (Fraction) -2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) -3 3 Human bite rate by anopheles vectors (Bites per day per person) -4 4 Malaria immunity (Fraction) -5 5 Falciparum parasite rates (Fraction) -6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) -7 7 Anopheles vector to host ratio (Fraction) -8 8 Anopheles vector number (Number m-2) -9 9 Fraction of malarial vector reproductive habitat (Fraction) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.20.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.20.2.table deleted file mode 100644 index 0804bcaf..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.20.2.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.1.table deleted file mode 100644 index 7d4364f4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.1.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (numeric) -# 30-97 Reserved -98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) -99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.2.table deleted file mode 100644 index 6316ab39..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.2.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) -30 30 Measurement cost (Numeric) -31 31 Upper layer cloud optical depth (Numeric) -32 32 Upper layer cloud top pressure (Pa) -33 33 Upper layer cloud effective radius (m) -34 34 Error in upper layer cloud optical depth (Numeric) -35 35 Error in upper layer cloud top pressure (Pa) -36 36 Error in upper layer cloud effective radius (m) -37 37 Lower layer cloud optical depth (Numeric) -38 38 Lower layer cloud top pressure (Pa) -39 39 Error in lower layer cloud optical depth (Numeric) -40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.0.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.0.table deleted file mode 100644 index 0b35aba2..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Electron temperature (K) -2 2 Proton temperature (K) -3 3 Ion temperature (K) -4 4 Parallel temperature (K) -5 5 Perpendicular temperature (K) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.1.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.1.table deleted file mode 100644 index abd58440..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Velocity magnitude (speed) (m s-1) -1 1 1st vector component of velocity (coordinate system dependent) (m s-1) -2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) -3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.10.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.10.table deleted file mode 100644 index 420d2b43..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.10.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scintillation index (sigma phi) (rad) -1 1 Scintillation index S4 (Numeric) -2 2 Rate of Change of TEC Index (ROTI) (TECU/min) -3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) -4 4 Along Arc TEC Rate (AATR) (TECU/min) -5 5 Kp (Numeric) -6 6 Equatorial disturbance storm time index (Dst) (nT) -7 7 Auroral Electrojet (AE) (nT) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.2.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.2.table deleted file mode 100644 index 8dd05fcd..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.2.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Particle number density (m-3) -1 1 Electron density (m-3) -2 2 Proton density (m-3) -3 3 Ion density (m-3) -4 4 Vertical total electron content (TECU) -5 5 HF absorption frequency (Hz) -6 6 HF absorption (dB) -7 7 Spread F (m) -8 8 h’ (m) -9 9 Critical frequency (Hz) -10 10 Maximal usable frequency (MUF) (Hz) -11 11 Peak height (hm) (m) -12 12 Peak density (Nm) (m-3) -13 13 Equivalent slab thickness (tau) (km) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.3.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.3.table deleted file mode 100644 index a46f4a40..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.3.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Magnetic field magnitude (T) -1 1 1st vector component of magnetic field (T) -2 2 2nd vector component of magnetic field (T) -3 3 3rd vector component of magnetic field (T) -4 4 Electric field magnitude (V m-1) -5 5 1st vector component of electric field (V m-1) -6 6 2nd vector component of electric field (V m-1) -7 7 3rd vector component of electric field (V m-1) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.4.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.4.table deleted file mode 100644 index b71abeb9..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.4.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Proton flux (differential) ((m2 s sr eV)-1) -1 1 Proton flux (integral) ((m2 s sr )-1) -2 2 Electron flux (differential) ((m2 s sr eV)-1) -3 3 Electron flux (integral) ((m2 s sr)-1) -4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) -5 5 Heavy ion flux (integral) ((m2 s sr)-1) -6 6 Cosmic ray neutron flux (/h) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.5.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.5.table deleted file mode 100644 index 014ea22f..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.5.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Amplitude (dB) -1 1 Phase (rad) -2 2 Frequency (Hz) -3 3 Wave length (m) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.6.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.6.table deleted file mode 100644 index 67f551f7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.6.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Integrated solar irradiance (W m-2) -1 1 Solar X-ray flux (XRS long) (W m-2) -2 2 Solar X-ray flux (XRS short) (W m-2) -3 3 Solar EUV irradiance (W m-2) -4 4 Solar spectral irradiance (W m-2 nm-1) -5 5 F10.7 (W m-2 Hz-1) -6 6 Solar radio emissions (W m-2 Hz-1) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.7.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.7.table deleted file mode 100644 index 9b93bcff..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.7.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Limb intensity (J m-2 s-1) -1 1 Disk intensity (J m-2 s-1) -2 2 Disk intensity day (J m-2 s-1) -3 3 Disk intensity night (J m-2 s-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.8.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.8.table deleted file mode 100644 index 358b91ca..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.8.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 X-ray radiance (W sr-1 m-2) -1 1 EUV radiance (W sr-1 m-2) -2 2 H-alpha radiance (W sr-1 m-2) -3 3 White light radiance (W sr-1 m-2) -4 4 CaII-K radiance (W sr-1 m-2) -5 5 White light coronagraph radiance (W sr-1 m-2) -6 6 Heliospheric radiance (W sr-1 m-2) -7 7 Thematic mask (Numeric) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.2.4.9.table b/eccodes/definitions.save/grib2/tables/25/4.2.4.9.table deleted file mode 100644 index e96c81ba..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.2.4.9.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pedersen conductivity (S m-1) -1 1 Hall conductivity (S m-1) -2 2 Parallel conductivity (S m-1) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.201.table b/eccodes/definitions.save/grib2/tables/25/4.201.table deleted file mode 100644 index 44943d5e..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.201.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -11 11 Drizzle -12 12 Freezing drizzle -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.202.table b/eccodes/definitions.save/grib2/tables/25/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.203.table b/eccodes/definitions.save/grib2/tables/25/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.204.table b/eccodes/definitions.save/grib2/tables/25/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.205.table b/eccodes/definitions.save/grib2/tables/25/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.206.table b/eccodes/definitions.save/grib2/tables/25/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.207.table b/eccodes/definitions.save/grib2/tables/25/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.208.table b/eccodes/definitions.save/grib2/tables/25/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.209.table b/eccodes/definitions.save/grib2/tables/25/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.210.table b/eccodes/definitions.save/grib2/tables/25/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.211.table b/eccodes/definitions.save/grib2/tables/25/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.212.table b/eccodes/definitions.save/grib2/tables/25/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.213.table b/eccodes/definitions.save/grib2/tables/25/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.215.table b/eccodes/definitions.save/grib2/tables/25/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.216.table b/eccodes/definitions.save/grib2/tables/25/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.217.table b/eccodes/definitions.save/grib2/tables/25/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.218.table b/eccodes/definitions.save/grib2/tables/25/4.218.table deleted file mode 100644 index fcd06c34..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.218.table +++ /dev/null @@ -1,46 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/stratus -102 102 Low cloud/stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/nimbostratus -105 105 Medium cloud/altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/cumulus -108 108 High cloud/cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -111 111 Single layer water cloud -112 112 Single layer ice cloud -# 113-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.219.table b/eccodes/definitions.save/grib2/tables/25/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.220.table b/eccodes/definitions.save/grib2/tables/25/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.221.table b/eccodes/definitions.save/grib2/tables/25/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.222.table b/eccodes/definitions.save/grib2/tables/25/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.223.table b/eccodes/definitions.save/grib2/tables/25/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.224.table b/eccodes/definitions.save/grib2/tables/25/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.225.table b/eccodes/definitions.save/grib2/tables/25/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.227.table b/eccodes/definitions.save/grib2/tables/25/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.228.table b/eccodes/definitions.save/grib2/tables/25/4.228.table deleted file mode 100644 index 559ae916..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.228.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.228 - Icing severity -0 0 None -1 1 Trace -2 2 Light -3 3 Moderate -4 4 Severe -# 5-254 Reserved -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.230.table b/eccodes/definitions.save/grib2/tables/25/4.230.table deleted file mode 100644 index 147ff974..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.230.table +++ /dev/null @@ -1,512 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.233.table b/eccodes/definitions.save/grib2/tables/25/4.233.table deleted file mode 100644 index 051d603a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.233.table +++ /dev/null @@ -1,512 +0,0 @@ -# Code table 4.233 - Aerosol type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -# 60028-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.234.table b/eccodes/definitions.save/grib2/tables/25/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/25/4.236.table b/eccodes/definitions.save/grib2/tables/25/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/25/4.238.table b/eccodes/definitions.save/grib2/tables/25/4.238.table deleted file mode 100644 index 6dfaf828..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.238.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.238 - Source or sink -0 0 Reserved -1 1 Aviation -2 2 Lightning -3 3 Biogenic sources -4 4 Anthropogenic sources -5 5 Wild fires -6 6 Natural sources -7 7 Volcanoes -8 8 Bio-fuel -9 9 Fossil-fuel -10 10 Wetlands -11 11 Oceans -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.240.table b/eccodes/definitions.save/grib2/tables/25/4.240.table deleted file mode 100644 index 4daef3d1..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.241.table b/eccodes/definitions.save/grib2/tables/25/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.242.table b/eccodes/definitions.save/grib2/tables/25/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/25/4.243.table b/eccodes/definitions.save/grib2/tables/25/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/25/4.244.table b/eccodes/definitions.save/grib2/tables/25/4.244.table deleted file mode 100644 index 40534ee0..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.244.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.244 - Quality indicator -0 0 No quality information available -1 1 Failed -2 2 Passed -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.3.table b/eccodes/definitions.save/grib2/tables/25/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.4.table b/eccodes/definitions.save/grib2/tables/25/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.5.table b/eccodes/definitions.save/grib2/tables/25/4.5.table deleted file mode 100644 index bf8473c4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.5.table +++ /dev/null @@ -1,84 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) (-) -15 15 Convective condensation level (CCL) (-) -16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-29 Reserved -30 30 Specified radius from the center of the Sun (m) -31 31 Solar photosphere -32 32 Ionospheric D-region level -33 33 Ionospheric E-region level -34 34 Ionospheric F1-region level -35 35 Ionospheric F2-region level -# 36-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 sol Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -152 sol Sea ice level (Numeric) -# 153-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) -# 171-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.6.table b/eccodes/definitions.save/grib2/tables/25/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.7.table b/eccodes/definitions.save/grib2/tables/25/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.8.table b/eccodes/definitions.save/grib2/tables/25/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.9.table b/eccodes/definitions.save/grib2/tables/25/4.9.table deleted file mode 100644 index 9f74599c..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.9.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -5 5 Probability of event equal to lower limit -6 6 Probability of event in above normal category -7 7 Probability of event in near normal category -8 8 Probability of event in below normal category -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/4.91.table b/eccodes/definitions.save/grib2/tables/25/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/25/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.0.table b/eccodes/definitions.save/grib2/tables/25/5.0.table deleted file mode 100644 index 74af6d38..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -# 5-39 Reserved -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52 Reserved -53 53 Spectral data for limited area models - complex packing -# 54-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG packing -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.1.table b/eccodes/definitions.save/grib2/tables/25/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.2.table b/eccodes/definitions.save/grib2/tables/25/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.25.table b/eccodes/definitions.save/grib2/tables/25/5.25.table deleted file mode 100644 index 1b45f28a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.25.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 5.25 - type of bi-Fourier subtruncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.26.table b/eccodes/definitions.save/grib2/tables/25/5.26.table deleted file mode 100644 index 9e91ebf2..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.26.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.26 - packing mode for axes -0 0 Spectral coefficients for axes are packed -1 1 Spectral coefficients for axes included in the unpacked subset -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.3.table b/eccodes/definitions.save/grib2/tables/25/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.4.table b/eccodes/definitions.save/grib2/tables/25/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.40.table b/eccodes/definitions.save/grib2/tables/25/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.40000.table b/eccodes/definitions.save/grib2/tables/25/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.5.table b/eccodes/definitions.save/grib2/tables/25/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.50002.table b/eccodes/definitions.save/grib2/tables/25/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/25/5.6.table b/eccodes/definitions.save/grib2/tables/25/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/5.7.table b/eccodes/definitions.save/grib2/tables/25/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/25/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/25/6.0.table b/eccodes/definitions.save/grib2/tables/25/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/25/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/25/stepType.table b/eccodes/definitions.save/grib2/tables/25/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/25/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/26/0.0.table b/eccodes/definitions.save/grib2/tables/26/0.0.table deleted file mode 100644 index 71ac57ab..00000000 --- a/eccodes/definitions.save/grib2/tables/26/0.0.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Satellite remote sensing products (formerly Space products) -4 4 Space weather products -# 5-9 Reserved -10 10 Oceanographic products -# 11-19 Reserved -20 20 Health and socioeconomic impacts -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.0.table b/eccodes/definitions.save/grib2/tables/26/1.0.table deleted file mode 100644 index 789ef85f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -# Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Version implemented on 15 May 2019 -24 24 Version implemented on 6 November 2019 -25 25 Version implemented on 6 May 2020 -26 26 Version implemented on 16 November 2020 -# 27-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/26/1.1.table b/eccodes/definitions.save/grib2/tables/26/1.1.table deleted file mode 100644 index d50f8fd7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.2.table b/eccodes/definitions.save/grib2/tables/26/1.2.table deleted file mode 100644 index 934b7045..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.2 - Significance of reference time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.3.table b/eccodes/definitions.save/grib2/tables/26/1.3.table deleted file mode 100644 index dc138ef1..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 1.3 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) -6 6 S2S operational products -7 7 S2S test products -8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) -9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) -10 10 Copernicus regional reanalysis (CARRA/CERRA) -11 11 Copernicus regional reanalysis test (CARRA/CERRA) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.4.table b/eccodes/definitions.save/grib2/tables/26/1.4.table deleted file mode 100644 index 03203d87..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 1.4 - Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.5.table b/eccodes/definitions.save/grib2/tables/26/1.5.table deleted file mode 100644 index b2cf9f08..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 1.5 - Identification template number -0 0 Calendar definition -1 1 Paleontological offset -2 2 Calendar definition and paleontological offset -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/1.6.table b/eccodes/definitions.save/grib2/tables/26/1.6.table deleted file mode 100644 index 5db92199..00000000 --- a/eccodes/definitions.save/grib2/tables/26/1.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 1.6 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.0.table b/eccodes/definitions.save/grib2/tables/26/3.0.table deleted file mode 100644 index 45187b80..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.0 - Source of grid definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/26/3.1.table b/eccodes/definitions.save/grib2/tables/26/3.1.table deleted file mode 100644 index ed68c514..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.1.table +++ /dev/null @@ -1,54 +0,0 @@ -# Code table 3.1 - Grid definition template number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -4 4 Variable resolution latitude/longitude -5 5 Variable resolution rotated latitude/longitude -# 6-9 Reserved -10 10 Mercator -# 11-12 Reserved -13 13 Mercator with modelling subdomains definition -# 14-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-22 Reserved -23 23 Polar stereographic with modelling subdomains definition -# 24-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -32 32 Reserved -33 33 Lambert conformal with modelling subdomains definition -# 34-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-60 Reserved -61 61 Spectral Mercator with modelling subdomains definition -62 62 Spectral polar stereographic with modelling subdomains definition -63 63 Spectral Lambert conformal with modelling subdomains definition -# 64-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -101 101 General unstructured grid -# 102-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.10.table b/eccodes/definitions.save/grib2/tables/26/3.10.table deleted file mode 100644 index afa8843a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Flag table 3.10 - Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/26/3.11.table b/eccodes/definitions.save/grib2/tables/26/3.11.table deleted file mode 100644 index e516a2ab..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.11 - Interpretation of list of numbers at end of section 3 -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.15.table b/eccodes/definitions.save/grib2/tables/26/3.15.table deleted file mode 100644 index 331217eb..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 3.15 - Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.2.table b/eccodes/definitions.save/grib2/tables/26/3.2.table deleted file mode 100644 index 03cfbafa..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.2.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 3.2 - Shape of the reference system -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame -9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height -10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 -11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.20.table b/eccodes/definitions.save/grib2/tables/26/3.20.table deleted file mode 100644 index efbf08d1..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 3.20 - Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.21.table b/eccodes/definitions.save/grib2/tables/26/3.21.table deleted file mode 100644 index 88dbb901..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.21 - Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.25.table b/eccodes/definitions.save/grib2/tables/26/3.25.table deleted file mode 100644 index de1bc74e..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.25.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 3.25 - Type of bi-Fourier truncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.3.table b/eccodes/definitions.save/grib2/tables/26/3.3.table deleted file mode 100644 index 5dd7c700..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Flag table 3.3 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/26/3.4.table b/eccodes/definitions.save/grib2/tables/26/3.4.table deleted file mode 100644 index 897b813d..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Flag table 3.4 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib2/tables/26/3.5.table b/eccodes/definitions.save/grib2/tables/26/3.5.table deleted file mode 100644 index eabdde89..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Flag table 3.5 - Projection centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/26/3.6.table b/eccodes/definitions.save/grib2/tables/26/3.6.table deleted file mode 100644 index dc7d107a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.6.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 3.6 - Spectral data representation type -1 1 see separate doc or pdf file -2 2 Bi-Fourier representation diff --git a/eccodes/definitions.save/grib2/tables/26/3.7.table b/eccodes/definitions.save/grib2/tables/26/3.7.table deleted file mode 100644 index 0a7d6efd..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 3.7 - Spectral data representation mode -0 0 Reserved -1 1 see separate doc or pdf file -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.8.table b/eccodes/definitions.save/grib2/tables/26/3.8.table deleted file mode 100644 index 844e7423..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 3.8 - Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/3.9.table b/eccodes/definitions.save/grib2/tables/26/3.9.table deleted file mode 100644 index fd730bc6..00000000 --- a/eccodes/definitions.save/grib2/tables/26/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/26/4.0.table b/eccodes/definitions.save/grib2/tables/26/4.0.table deleted file mode 100644 index 03f30748..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.0.table +++ /dev/null @@ -1,84 +0,0 @@ -# Code table 4.0 - Product definition template number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -35 35 Satellite product with or without associated quality values -# 36-39 Reserved -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -# 50 Reserved -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52 Reserved -53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) -57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) -60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles -# 64-66 Reserved -67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -# 69 Reserved -70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time -71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval -# 74-75 Reserved -76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink -77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink -78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink -79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink -80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink -81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink -82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink -83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink -84 84 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink -85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -# 86-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.0.table b/eccodes/definitions.save/grib2/tables/26/4.1.0.table deleted file mode 100644 index 04cfd780..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.1.table b/eccodes/definitions.save/grib2/tables/26/4.1.1.table deleted file mode 100644 index 7b22b6fe..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.10.table b/eccodes/definitions.save/grib2/tables/26/4.1.10.table deleted file mode 100644 index a9b20eb9..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.192.table b/eccodes/definitions.save/grib2/tables/26/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.2.table b/eccodes/definitions.save/grib2/tables/26/4.1.2.table deleted file mode 100644 index 60e2452d..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.2.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -5 5 Glaciers and inland ice -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.20.table b/eccodes/definitions.save/grib2/tables/26/4.1.20.table deleted file mode 100644 index afad6c81..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.20.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Health indicators -1 1 Epidemiology -2 2 Socioeconomic indicators -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.3.table b/eccodes/definitions.save/grib2/tables/26/4.1.3.table deleted file mode 100644 index 7bf60d4a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Image format products -1 1 Quantitative products -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -6 6 Solar radiation -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.1.4.table b/eccodes/definitions.save/grib2/tables/26/4.1.4.table deleted file mode 100644 index 4d3e1cf2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.1.4.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.1 - Parameter category by product discipline -0 0 Temperature -1 1 Momentum -2 2 Charged particle mass and number -3 3 Electric and magnetic fields -4 4 Energetic particles -5 5 Waves -6 6 Solar electromagnetic emissions -7 7 Terrestrial electromagnetic emissions -8 8 Imagery -9 9 Ion-neutral coupling -10 10 Space weather indices -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.10.table b/eccodes/definitions.save/grib2/tables/26/4.10.table deleted file mode 100644 index 1a92baaf..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.10.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.10 - Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -11 11 Summation -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.11.table b/eccodes/definitions.save/grib2/tables/26/4.11.table deleted file mode 100644 index 7f404c84..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.11 - Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.12.table b/eccodes/definitions.save/grib2/tables/26/4.12.table deleted file mode 100644 index 03fd89b3..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.12 - Operating mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.13.table b/eccodes/definitions.save/grib2/tables/26/4.13.table deleted file mode 100644 index c92854ee..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.13 - Quality control indicator -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.14.table b/eccodes/definitions.save/grib2/tables/26/4.14.table deleted file mode 100644 index a88cb93f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.14 - Clutter filter indicator -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.15.table b/eccodes/definitions.save/grib2/tables/26/4.15.table deleted file mode 100644 index 2e5f3dea..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.16.table b/eccodes/definitions.save/grib2/tables/26/4.16.table deleted file mode 100644 index a18c63f8..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.16 - Quality value associated with parameter -0 0 Confidence index -1 1 Quality indicator -2 2 Correlation of product with used calibration product -3 3 Standard deviation -4 4 Random error -5 5 Probability -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.192.table b/eccodes/definitions.save/grib2/tables/26/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.0.table deleted file mode 100644 index f361355b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.0.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dewpoint depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -21 21 Apparent temperature (K) -22 22 Temperature tendency due to short-wave radiation (K s-1) -23 23 Temperature tendency due to long-wave radiation (K s-1) -24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) -25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) -26 26 Temperature tendency due to parameterization (K s-1) -27 27 Wet-bulb temperature (K) -28 28 Unbalanced component of temperature (K) -29 29 Temperature advection (K s-1) -30 30 Latent heat net flux due to evaporation (W m-2) -31 31 Latent heat net flux due to sublimation (W m-2) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.1.table deleted file mode 100644 index 58d32d86..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.1.table +++ /dev/null @@ -1,150 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Per cent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total condensate (kg/kg) -81 81 Total column-integrated condensate (kg m-2) -82 82 Cloud ice mixing-ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rainwater content (kg/kg) -86 86 Specific snow water content (kg/kg) -87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation (Code table 4.222) -# 89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -93 93 Relative humidity with respect to water (%) -94 94 Relative humidity with respect to ice (%) -95 95 Freezing or frozen precipitation rate (kg m-2 s-1) -96 96 Mass density of rain (kg m-3) -97 97 Mass density of snow (kg m-3) -98 98 Mass density of graupel (kg m-3) -99 99 Mass density of hail (kg m-3) -100 100 Specific number concentration of rain (kg-1) -101 101 Specific number concentration of snow (kg-1) -102 102 Specific number concentration of graupel (kg-1) -103 103 Specific number concentration of hail (kg-1) -104 104 Number density of rain (m-3) -105 105 Number density of snow (m-3) -106 106 Number density of graupel (m-3) -107 107 Number density of hail (m-3) -108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) -109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) -110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) -111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) -112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) -113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) -114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) -115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) -116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) -117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) -118 118 Unbalanced component of specific humidity (kg kg-1) -119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) -120 120 Unbalanced component of specific cloud ice water content (kg kg-1) -121 121 Fraction of snow cover (Proportion) -122 122 Precipitation intensity index (Code table 4.247) -123 123 Dominant precipitation type (Code table 4.201) -124 124 Presence of showers (Code table 4.222) -125 125 Presence of blowing snow (Code table 4.222) -126 126 Presence of blizzard (Code table 4.222) -127 127 Ice pellets (non water equivalent) precipitation rate (m/s) -128 128 Total solid precipitation rate (kg m-2 s-1) -129 129 Effective radius of cloud water (m) -130 130 Effective radius of rain (m) -131 131 Effective radius of cloud ice (m) -132 132 Effective radius of snow (m) -133 133 Effective radius of graupel (m) -134 134 Effective radius of hail (m) -135 135 Effective radius of subgrid liquid clouds (m) -136 136 Effective radius of subgrid ice clouds (m) -137 137 Effective aspect ratio of rain (-) -138 138 Effective aspect ratio of cloud ice (-) -139 139 Effective aspect ratio of snow (-) -140 140 Effective aspect ratio of graupel (-) -141 141 Effective aspect ratio of hail (-) -142 142 Effective aspect ratio of subgrid ice clouds (-) -143 143 Potential evaporation rate (kg m–2 s–1) -144 144 specific rain water content (convective) (kg kg-1) -145 145 specific snow water content (convective) (kg kg-1) -# 146-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.13.table deleted file mode 100644 index 5086101a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.14.table deleted file mode 100644 index 21588473..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.15.table deleted file mode 100644 index dfbc4d12..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.16.table deleted file mode 100644 index 0c240a85..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.17.table deleted file mode 100644 index ce1867ac..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.17.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) -2 2 Cloud-to-ground Lightning flash density (km-2 day-1) -3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) -4 4 Total Lightning flash density (km-2 day-1) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.18.table deleted file mode 100644 index 9d106f41..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.18.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.19.table deleted file mode 100644 index 3ffe0c12..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.19.table +++ /dev/null @@ -1,45 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -32 32 Highest freezing level (m) -33 33 Visibility through liquid fog (m) -34 34 Visibility through ice fog (m) -35 35 Visibility through blowing snow (m) -36 36 Presence of snow squalls (Code table 4.222) -37 37 Icing severity (Code table 4.228) -38 38 Sky transparency index (Code Table 4.214) -39 39 Seeing index (Code Table 4.214) -40 40 Snow level (m) -# 41-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.190.table deleted file mode 100644 index de621a92..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.191.table deleted file mode 100644 index e3bba0eb..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.2.table deleted file mode 100644 index 5446262e..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.2.table +++ /dev/null @@ -1,51 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) -37 37 Northward turbulent surface stress (N m-2 s) -38 38 Eastward turbulent surface stress (N m-2 s) -39 39 Eastward wind tendency due to parameterization (m s-2) -40 40 Northward wind tendency due to parameterization (m s-2) -41 41 u-component of geostrophic wind (m s-1) -42 42 v-component of geostrophic wind (m s-1) -43 43 Geostrophic wind direction (degree true) -44 44 Geostrophic wind speed (m s-1) -45 45 Unbalanced component of divergence (s-1) -46 46 Vorticity advection (s-2) -# 47-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.20.table deleted file mode 100644 index 04273276..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.20.table +++ /dev/null @@ -1,64 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -15 15 Dry deposition velocity (m/s) -16 16 Mass mixing ratio with respect to dry air (kg/kg) -17 17 Mass mixing ratio with respect to wet air (kg/kg) -# 18-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -64 64 Mole fraction with respect to dry air (mol/mol) -65 65 Mole fraction with respect to wet air (mol/mol) -66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) -67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) -68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) -69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) -71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) -72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) -73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) -74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) -75 75 Wildfire flux (kg m-2 s-1) -76 76 Emission rate (kg kg-1 s-1) -77 77 Surface emission flux (kg m-2 s-1) -# 78-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.3.table deleted file mode 100644 index 34941dca..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.3.table +++ /dev/null @@ -1,36 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -27 27 Updraught mass flux (kg m-2 s-1) -28 28 Downdraught mass flux (kg m-2 s-1) -29 29 Updraught detrainment rate (kg m-3 s-1) -30 30 Downdraught detrainment rate (kg m-3 s-1) -31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.4.table deleted file mode 100644 index d56ee2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.4.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wavelength) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -13 13 Direct short-wave radiation flux (W m-2) -14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -52 52 Downward short-wave radiation flux, clear sky (W m-2) -53 53 Upward short-wave radiation flux, clear sky (W m-2) -54 54 Direct normal short-wave radiation flux (W m-2) -# 55-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.5.table deleted file mode 100644 index 4550220b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.6.table deleted file mode 100644 index ce331de7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.6.table +++ /dev/null @@ -1,50 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long-wave effective total cloudiness (Numeric) -35 35 Surface short-wave effective total cloudiness (Numeric) -36 36 Fraction of stratiform precipitation cover (Proportion) -37 37 Fraction of convective precipitation cover (Proportion) -38 38 Mass density of cloud droplets (kg m-3) -39 39 Mass density of cloud ice (kg m-3) -40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved -47 47 Volume fraction of cloud water droplets (Numeric) -48 48 Volume fraction of cloud ice particles (Numeric) -49 49 Volume fraction of cloud (ice and/or water) (Numeric) -50 50 Fog (%) -# 51-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/26/4.2.0.7.table deleted file mode 100644 index 04d7f393..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.0.7.table +++ /dev/null @@ -1,25 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -20 20 Thunderstorm intensity index (Code table 4.246) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.0.table deleted file mode 100644 index bcd849c2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.1.0.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.1.table deleted file mode 100644 index b488eb0b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.1.2.table deleted file mode 100644 index ec9b11d4..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.1.2.table +++ /dev/null @@ -1,15 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.0.table deleted file mode 100644 index de15555c..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.0.table +++ /dev/null @@ -1,69 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) -13 13 Secondary wave mean period (s) -14 14 Mean direction of combined wind waves and swell (degree true) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m/s) -18 18 Wave stress (N m-2) -19 19 Normalized wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m/s) -22 22 v-component surface Stokes drift (m/s) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of wind waves (s) -27 27 Inverse mean frequency of total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of wind waves (s) -30 30 Mean zero-crossing period of total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of wind waves (-) -33 33 Directional width of total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of wind waves (s) -36 36 Peak period of total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10-metre neutral wind speed over waves (m/s) -41 41 10-metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea-surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (/s) -46 46 Peak wave direction (deg) -47 47 Significant wave height of first swell partition (m) -48 48 Significant wave height of second swell partition (m) -49 49 Significant wave height of third swell partition (m) -50 50 Mean wave period of first swell partition (s) -51 51 Mean wave period of second swell partition (s) -52 52 Mean wave period of third swell partition (s) -53 53 Mean wave direction of first swell partition (deg) -54 54 Mean wave direction of second swell partition (deg) -55 55 Mean wave direction of third swell partition (deg) -56 56 Wave directional width of first swell partition (-) -57 57 Wave directional width of second swell partition (-) -58 58 Wave directional width of third swell partition (-) -59 59 Wave frequency width of first swell partition (-) -60 60 Wave frequency width of second swell partition (-) -61 61 Wave frequency width of third swell partition (-) -62 62 Wave frequency width (-) -63 63 Frequency width of wind waves (-) -64 64 Frequency width of total swell (-) -# 65-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.1.table deleted file mode 100644 index 00a084e3..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Current direction (degree true) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -4 4 Rip current occurrence probability (%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.191.table deleted file mode 100644 index 524929e7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.191.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -2 2 Reserved -3 3 Days since last observation (d) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.2.table deleted file mode 100644 index 6797062a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Module of ice internal pressure (Pa m) -10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) -11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) -12 12 Compressive ice strength (N/m) -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.3.table deleted file mode 100644 index 9f9492f0..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -2 2 Heat exchange coefficient (-) -3 3 Practical salinity (Numeric) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.10.4.table deleted file mode 100644 index 69ba0cc6..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.10.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2/s) -5 5 Ocean vertical salt diffusivity (m2/s) -6 6 Ocean vertical momentum diffusivity (m2/s) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (/m) -14 14 Water depth (m) -15 15 Water temperature (K) -16 16 Water density (rho) (kg m-3) -17 17 Water density anomaly (sigma) (kg m-3) -18 18 Water potential temperature (theta) (K) -19 19 Water potential density (rho theta) (kg m-3) -20 20 Water potential density anomaly (sigma theta) (kg m-3) -21 21 Practical salinity (Numeric) -# 22-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.0.table deleted file mode 100644 index 849c2f1e..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.2.0.table +++ /dev/null @@ -1,44 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -33 33 Water runoff and drainage (kg m-2) -34 34 Surface water runoff (kg m-2) -35 35 Tile class (Code table 4.243) -36 36 Tile fraction (Proportion) -37 37 Tile percentage (%) -38 38 Soil volumetric ice content (water equivalent) (m3 m-3) -39 39 Evapotranspiration rate (kg m-2 s-1) -# 40-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.3.table deleted file mode 100644 index b7740089..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.2.3.table +++ /dev/null @@ -1,33 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -23 23 Liquid water in snow pack (kg m-2) -24 24 Frost index (K day-1) -25 25 Snow depth at elevation bands (kg m-2) -26 26 Soil heat flux (W m-2) -27 27 Soil depth (m) -28 28 Snow temperature (K) -# 29-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.4.table deleted file mode 100644 index 14c317ff..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.2.4.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines index (Numeric) -3 3 Fire burned area (%) -4 4 Fosberg index (Numeric) -5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) -6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) -7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) -8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) -9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) -10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) -11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) -12 12 Keetch-Byram drought index (Numeric) -13 13 Drought factor (as defined by the Australian forest service ) (Numeric) -14 14 Rate of spread (as defined by the Australian forest service ) (m/s) -15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) -16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) -17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) -18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) -19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.2.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.2.5.table deleted file mode 100644 index 122f0aa2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.2.5.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Glacier cover (Proportion) -1 1 Glacier temperature (K) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.20.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.0.table deleted file mode 100644 index 9cd93638..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.20.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Universal thermal climate index (K) -1 1 Mean radiant temperature (K) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.20.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.1.table deleted file mode 100644 index bdddca5f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.20.1.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Malaria cases (Fraction) -1 1 Malaria circumsporozoite protein rate (Fraction) -2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) -3 3 Human bite rate by anopheles vectors (Bites per day per person) -4 4 Malaria immunity (Fraction) -5 5 Falciparum parasite rates (Fraction) -6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) -7 7 Anopheles vector to host ratio (Fraction) -8 8 Anopheles vector number (Number m-2) -9 9 Fraction of malarial vector reproductive habitat (Fraction) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.20.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.20.2.table deleted file mode 100644 index 0804bcaf..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.20.2.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Population density (Person m-2) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.0.table deleted file mode 100644 index c0ffa29f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.1.table deleted file mode 100644 index 7d4364f4..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.1.table +++ /dev/null @@ -1,35 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u-component of wind (m/s) -5 5 Estimated v-component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-26 Reserved -27 27 Bidirectional reflectance factor (numeric) -28 28 Brightness temperature (K) -29 29 Scaled radiance (numeric) -# 30-97 Reserved -98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) -99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) -# 100-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.2.table deleted file mode 100644 index 6316ab39..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.2.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Clear sky probability (%) -1 1 Cloud top temperature (K) -2 2 Cloud top pressure (Pa) -3 3 Cloud type (Code table 4.218) -4 4 Cloud phase (Code table 4.218) -5 5 Cloud optical depth (Numeric) -6 6 Cloud particle effective radius (m) -7 7 Cloud liquid water path (kg m-2) -8 8 Cloud ice water path (kg m-2) -9 9 Cloud albedo (Numeric) -10 10 Cloud emissivity (Numeric) -11 11 Effective absorption optical depth ratio (Numeric) -30 30 Measurement cost (Numeric) -31 31 Upper layer cloud optical depth (Numeric) -32 32 Upper layer cloud top pressure (Pa) -33 33 Upper layer cloud effective radius (m) -34 34 Error in upper layer cloud optical depth (Numeric) -35 35 Error in upper layer cloud top pressure (Pa) -36 36 Error in upper layer cloud effective radius (m) -37 37 Lower layer cloud optical depth (Numeric) -38 38 Lower layer cloud top pressure (Pa) -39 39 Error in lower layer cloud optical depth (Numeric) -40 40 Error in lower layer cloud top pressure (Pa) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.3.table deleted file mode 100644 index cb5c4b6e..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Probability of encountering marginal visual flight rule conditions (%) -1 1 Probability of encountering low instrument flight rule conditions (%) -2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.4.table deleted file mode 100644 index f86d2d65..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Volcanic ash probability (%) -1 1 Volcanic ash cloud top temperature (K) -2 2 Volcanic ash cloud top pressure (Pa) -3 3 Volcanic ash cloud top height (m) -4 4 Volcanic ash cloud emissivity (Numeric) -5 5 Volcanic ash effective absorption optical depth ratio (Numeric) -6 6 Volcanic ash cloud optical depth (Numeric) -7 7 Volcanic ash column density (kg m-2) -8 8 Volcanic ash particle effective radius (m) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.5.table deleted file mode 100644 index 92a050db..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Interface sea-surface temperature (K) -1 1 Skin sea-surface temperature (K) -2 2 Sub-skin sea-surface temperature (K) -3 3 Foundation sea-surface temperature (K) -4 4 Estimated bias between sea-surface temperature and standard (K) -5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.3.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.3.6.table deleted file mode 100644 index 471beed5..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.3.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Global solar irradiance (W m-2) -1 1 Global solar exposure (J m-2) -2 2 Direct solar irradiance (W m-2) -3 3 Direct solar exposure (J m-2) -4 4 Diffuse solar irradiance (W m-2) -5 5 Diffuse solar exposure (J m-2) diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.0.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.0.table deleted file mode 100644 index 0b35aba2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Temperature (K) -1 1 Electron temperature (K) -2 2 Proton temperature (K) -3 3 Ion temperature (K) -4 4 Parallel temperature (K) -5 5 Perpendicular temperature (K) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.1.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.1.table deleted file mode 100644 index abd58440..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Velocity magnitude (speed) (m s-1) -1 1 1st vector component of velocity (coordinate system dependent) (m s-1) -2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) -3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.10.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.10.table deleted file mode 100644 index 420d2b43..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.10.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Scintillation index (sigma phi) (rad) -1 1 Scintillation index S4 (Numeric) -2 2 Rate of Change of TEC Index (ROTI) (TECU/min) -3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) -4 4 Along Arc TEC Rate (AATR) (TECU/min) -5 5 Kp (Numeric) -6 6 Equatorial disturbance storm time index (Dst) (nT) -7 7 Auroral Electrojet (AE) (nT) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.2.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.2.table deleted file mode 100644 index 8dd05fcd..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.2.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Particle number density (m-3) -1 1 Electron density (m-3) -2 2 Proton density (m-3) -3 3 Ion density (m-3) -4 4 Vertical total electron content (TECU) -5 5 HF absorption frequency (Hz) -6 6 HF absorption (dB) -7 7 Spread F (m) -8 8 h’ (m) -9 9 Critical frequency (Hz) -10 10 Maximal usable frequency (MUF) (Hz) -11 11 Peak height (hm) (m) -12 12 Peak density (Nm) (m-3) -13 13 Equivalent slab thickness (tau) (km) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.3.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.3.table deleted file mode 100644 index a46f4a40..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.3.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Magnetic field magnitude (T) -1 1 1st vector component of magnetic field (T) -2 2 2nd vector component of magnetic field (T) -3 3 3rd vector component of magnetic field (T) -4 4 Electric field magnitude (V m-1) -5 5 1st vector component of electric field (V m-1) -6 6 2nd vector component of electric field (V m-1) -7 7 3rd vector component of electric field (V m-1) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.4.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.4.table deleted file mode 100644 index b71abeb9..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.4.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Proton flux (differential) ((m2 s sr eV)-1) -1 1 Proton flux (integral) ((m2 s sr )-1) -2 2 Electron flux (differential) ((m2 s sr eV)-1) -3 3 Electron flux (integral) ((m2 s sr)-1) -4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) -5 5 Heavy ion flux (integral) ((m2 s sr)-1) -6 6 Cosmic ray neutron flux (/h) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.5.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.5.table deleted file mode 100644 index 014ea22f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.5.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Amplitude (dB) -1 1 Phase (rad) -2 2 Frequency (Hz) -3 3 Wave length (m) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.6.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.6.table deleted file mode 100644 index 67f551f7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.6.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Integrated solar irradiance (W m-2) -1 1 Solar X-ray flux (XRS long) (W m-2) -2 2 Solar X-ray flux (XRS short) (W m-2) -3 3 Solar EUV irradiance (W m-2) -4 4 Solar spectral irradiance (W m-2 nm-1) -5 5 F10.7 (W m-2 Hz-1) -6 6 Solar radio emissions (W m-2 Hz-1) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.7.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.7.table deleted file mode 100644 index 9b93bcff..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.7.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Limb intensity (J m-2 s-1) -1 1 Disk intensity (J m-2 s-1) -2 2 Disk intensity day (J m-2 s-1) -3 3 Disk intensity night (J m-2 s-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.8.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.8.table deleted file mode 100644 index 358b91ca..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.8.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 X-ray radiance (W sr-1 m-2) -1 1 EUV radiance (W sr-1 m-2) -2 2 H-alpha radiance (W sr-1 m-2) -3 3 White light radiance (W sr-1 m-2) -4 4 CaII-K radiance (W sr-1 m-2) -5 5 White light coronagraph radiance (W sr-1 m-2) -6 6 Heliospheric radiance (W sr-1 m-2) -7 7 Thematic mask (Numeric) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.2.4.9.table b/eccodes/definitions.save/grib2/tables/26/4.2.4.9.table deleted file mode 100644 index e96c81ba..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.2.4.9.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Pedersen conductivity (S m-1) -1 1 Hall conductivity (S m-1) -2 2 Parallel conductivity (S m-1) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.201.table b/eccodes/definitions.save/grib2/tables/26/4.201.table deleted file mode 100644 index 44943d5e..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.201.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.201 - Precipitation type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -6 6 Wet snow -7 7 Mixture of rain and snow -8 8 Ice pellets -9 9 Graupel -10 10 Hail -11 11 Drizzle -12 12 Freezing drizzle -# 13-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.202.table b/eccodes/definitions.save/grib2/tables/26/4.202.table deleted file mode 100644 index 438502ff..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.202 - Precipitable water category -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.203.table b/eccodes/definitions.save/grib2/tables/26/4.203.table deleted file mode 100644 index 8a9aedf7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# Code table 4.203 - Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.204.table b/eccodes/definitions.save/grib2/tables/26/4.204.table deleted file mode 100644 index 48137293..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.204 - Thunderstorm coverage -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (6-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.205.table b/eccodes/definitions.save/grib2/tables/26/4.205.table deleted file mode 100644 index 5b4484df..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.205 - Presence of aerosol -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.206.table b/eccodes/definitions.save/grib2/tables/26/4.206.table deleted file mode 100644 index 02c3dfdf..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.206 - Volcanic ash -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.207.table b/eccodes/definitions.save/grib2/tables/26/4.207.table deleted file mode 100644 index 8ddb2e04..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.207 - Icing -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.208.table b/eccodes/definitions.save/grib2/tables/26/4.208.table deleted file mode 100644 index b83685a1..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.208 - Turbulence -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.209.table b/eccodes/definitions.save/grib2/tables/26/4.209.table deleted file mode 100644 index cb761707..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.210.table b/eccodes/definitions.save/grib2/tables/26/4.210.table deleted file mode 100644 index 524a6ca7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.210 - Contrail intensity -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.211.table b/eccodes/definitions.save/grib2/tables/26/4.211.table deleted file mode 100644 index 098eb2d4..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.211 - Contrail engine type -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.212.table b/eccodes/definitions.save/grib2/tables/26/4.212.table deleted file mode 100644 index 1a085b88..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.212 - Land use -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.213.table b/eccodes/definitions.save/grib2/tables/26/4.213.table deleted file mode 100644 index c65784a0..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.213.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.213 - Soil type -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.214.table b/eccodes/definitions.save/grib2/tables/26/4.214.table deleted file mode 100644 index b08860ce..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.214.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 4.214 - Environmental Factor Qualifier -0 0 Worst -1 1 Very poor -2 2 Poor -3 3 Average -4 4 Good -5 5 Excellent -# 6-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.215.table b/eccodes/definitions.save/grib2/tables/26/4.215.table deleted file mode 100644 index 034db72b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.216.table b/eccodes/definitions.save/grib2/tables/26/4.216.table deleted file mode 100644 index 5d1460ce..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.216 - Elevation of snow-covered terrain -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.217.table b/eccodes/definitions.save/grib2/tables/26/4.217.table deleted file mode 100644 index a4452182..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.217 - Cloud mask type -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.218.table b/eccodes/definitions.save/grib2/tables/26/4.218.table deleted file mode 100644 index fcd06c34..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.218.table +++ /dev/null @@ -1,46 +0,0 @@ -# Code table 4.218 - Pixel scene type -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation/crops -15 15 Permanent snow/ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -19 19 Warm liquid water cloud -20 20 Supercooled liquid water cloud -21 21 Mixed-phase cloud -22 22 Optically thin ice cloud -23 23 Optically thick ice cloud -24 24 Multilayered cloud -# 25-96 Reserved -97 97 Snow/ice on land -98 98 Snow/ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud/fog/stratus -102 102 Low cloud/stratocumulus -103 103 Low cloud/unknown type -104 104 Medium cloud/nimbostratus -105 105 Medium cloud/altostratus -106 106 Medium cloud/unknown type -107 107 High cloud/cumulus -108 108 High cloud/cirrus -109 109 High cloud/unknown -110 110 Unknown cloud type -111 111 Single layer water cloud -112 112 Single layer ice cloud -# 113-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.219.table b/eccodes/definitions.save/grib2/tables/26/4.219.table deleted file mode 100644 index 86df0522..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.219 - Cloud top height quality indicator -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.220.table b/eccodes/definitions.save/grib2/tables/26/4.220.table deleted file mode 100644 index 93e841f8..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.220 - Horizontal dimension processed -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.221.table b/eccodes/definitions.save/grib2/tables/26/4.221.table deleted file mode 100644 index 8448533d..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.221 - Treatment of missing data -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.222.table b/eccodes/definitions.save/grib2/tables/26/4.222.table deleted file mode 100644 index 57f11301..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.222 - Categorical result -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.223.table b/eccodes/definitions.save/grib2/tables/26/4.223.table deleted file mode 100644 index f0deb076..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 4.223 - Fire detection indicator -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.224.table b/eccodes/definitions.save/grib2/tables/26/4.224.table deleted file mode 100644 index e87cde4b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Code table 4.224 - Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.225.table b/eccodes/definitions.save/grib2/tables/26/4.225.table deleted file mode 100644 index 9dc37408..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) -511 511 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.227.table b/eccodes/definitions.save/grib2/tables/26/4.227.table deleted file mode 100644 index 27c76553..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.227.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.228.table b/eccodes/definitions.save/grib2/tables/26/4.228.table deleted file mode 100644 index 559ae916..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.228.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.228 - Icing severity -0 0 None -1 1 Trace -2 2 Light -3 3 Moderate -4 4 Severe -# 5-254 Reserved -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.230.table b/eccodes/definitions.save/grib2/tables/26/4.230.table deleted file mode 100644 index ebeec9e6..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.230.table +++ /dev/null @@ -1,527 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 -10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 -10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 -10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO -10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO -# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -60028 60028 Peroxyacyl nitrates RC(O)OONO_2 -60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO -60030 60030 Biogenic Secondary Organic Compound -60031 60031 Anthropogenic Secondary Organic Compound -60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH -# 60033-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -62030 62030 Primary particulate inorganic matter dry -62031 62031 Secondary particulate Inorganic matter dry -62032 62032 Biogenic Secondary Organic aerosol -62033 62033 Anthropogenic Secondary Organic aerosol -# 62034-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -62115 62115 Olea (olive) pollen -# 62116-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.233.table b/eccodes/definitions.save/grib2/tables/26/4.233.table deleted file mode 100644 index 7d8c2ec2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.233.table +++ /dev/null @@ -1,527 +0,0 @@ -# Code table 4.233 - Aerosol type -0 0 Ozone O3 -1 1 Water vapour H2O -2 2 Methane CH4 -3 3 Carbon dioxide CO2 -4 4 Carbon monoxide CO -5 5 Nitrogen dioxide NO2 -6 6 Nitrous oxide N2O -7 7 Formaldehyde HCHO -8 8 Sulphur dioxide SO2 -9 9 Ammonia NH3 -10 10 Ammonium cation NH4+ -11 11 Nitrogen monoxide NO -12 12 Atomic oxygen O -13 13 Nitrate radical NO3 -14 14 Hydroperoxyl radical HOO -15 15 Dinitrogen pentoxide N2O5 -16 16 Nitrous acid HONO -17 17 Nitric acid HNO3 -18 18 Peroxynitric acid HO2NO2 -19 19 Hydrogen peroxide H2O2 -20 20 Dihydrogen H2 -21 21 Atomic nitrogen N -22 22 Sulphate anion SO42- -23 23 Atomic Radon Rn -24 24 Mercury vapour Hg(0) -25 25 Mercury(II) cation Hg2+ -26 26 Atomic chlorine Cl -27 27 Chlorine monoxide ClO -28 28 Dichlorine peroxide Cl2O2 -29 29 Hypochlorous acid HClO -30 30 Chlorine nitrate ClONO2 -31 31 Chlorine dioxide ClO2 -32 32 Atomic bromine Br -33 33 Bromine monoxide BrO -34 34 Bromine chloride BrCl -35 35 Hydrogen bromide HBr -36 36 Hypobromous acid HBrO -37 37 Bromine nitrate BrONO2 -38 38 Dioxygen O2 -39 39 Nitryl chloride NO2Cl -40 40 Sulphuric acid H2SO4 -41 41 Hydrogen sulphide H2S -42 42 Sulphur trioxide SO3 -43 43 Bromine Br2 -44 44 Hydrofluoric acid HF -45 45 Sulphur hexafluoride SF6 -46 46 Chlorine Cl2 -# 47-9999 Reserved -10000 10000 Hydroxyl radical HO -10001 10001 Methyl peroxy radical CH3OO -10002 10002 Methyl hydroperoxide CH3O2H -10004 10004 Methanol CH3OH -10005 10005 Formic acid CH3OOH -10006 10006 Hydrogen cyanide HCN -10007 10007 Aceto nitrile CH3CN -10008 10008 Ethane C2H6 -10009 10009 Ethene (= Ethylene) C2H4 -10010 10010 Ethyne (= Acetylene) C2H2 -10011 10011 Ethanol C2H5OH -10012 10012 Acetic acid C2H5OOH -10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 -10014 10014 Propane C3H8 -10015 10015 Propene C3H6 -10016 10016 Butane (all isomers) C4H10 -10017 10017 Isoprene C5H10 -10018 10018 Alpha pinene C10H16 -10019 10019 Beta pinene C10H16 -10020 10020 Limonene C10H16 -10021 10021 Benzene C6H6 -10022 10022 Toluene C7H8 -10023 10023 XyleneC8H10 -10024 10024 Methanesulphonic acid CH3SO3H -10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO -10026 10026 Peroxyacetyl radical CH3C(O)OO -10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH -10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO -10029 10029 Acetone (propan-2-one) CH3C(O)CH3 -10030 10030 Ethyl dioxidanyl radical CH3CH2OO -10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 -10032 10032 Acetaldehyde (ethanal) CH3CHO -10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO -10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH -10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH -10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O -10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO -10038 10038 Glyoxal (oxaldehyde) OCHCHO -10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO -10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH -10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH -10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH -10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 -10044 10044 Phenoxy radical C6H5O -10045 10045 Methyl radical CH3 -10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS -10047 10047 Dibromomethane CH2Br2 -10048 10048 Methoxy radical CH3O -10049 10049 Tribromomethane CHBr3 -10050 10050 Formyl radical (oxomethyl radical) HOC -10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO -10052 10052 Ethyl hydroperoxide CH3CH2OOH -10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO -10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 -10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 -10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 -10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO -10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO -# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols -10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved -20001 20001 Hydrogen chloride HCl -20002 20002 CFC-11 (trichlorofluoromethane) CCl3F -20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 -20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 -20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 -20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 -20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 -20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 -20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 -20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 -20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 -20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 -20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 -20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 -20015 20015 HCC-40 (methyl chloride) CH3Cl -20016 20016 HCC-10 (carbon tetrachloride) CCl4 -20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 -20018 20018 HBC-40B1 (methyl bromide) CH3Br -20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 -20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 -20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 -20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F -# 20023-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -# 30001-30009 Reserved -30010 30010 Tritium (Hydrogen 3) H-3 -30011 30011 Tritium organic bounded H-3o -30012 30012 Tritium inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulphur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 Ti-44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -30295 30295 Carbon-13 C-13 -30296 30296 Lead Pb -# 30297-39999 Reserved -40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 -40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 -40002 40002 Singlet excited oxygen atom O(1D) -40003 40003 Triplet ground state oxygen atom O(3P) -# 40004-59999 Reserved -60000 60000 HOx radical (OH+HO2) HOx -60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC -60016 60016 Lumped oxygenated hydrocarbons OVOC -60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx -60018 60018 Organic aldehydes RCHO -60019 60019 Organic peroxides ROOH -60020 60020 Organic nitrates RNO3 -60021 60021 Ethers ROR -60022 60022 Amines NRRR -60023 60023 Ketones RC(O)R -60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R -60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R -60026 60026 Hydroxy ketones RC(OH)C(O)R -60027 60027 Oxides Ox -60028 60028 Peroxyacyl nitrates RC(O)OONO_2 -60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO -60030 60030 Biogenic Secondary Organic Compound -60031 60031 Anthropogenic Secondary Organic Compound -60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH -# 60033-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -# 62019 Reserved -62020 62020 Smoke - high absorption -62021 62021 Smoke - low absorption -62022 62022 Aerosol - high absorption -62023 62023 Aerosol - low absorption -# 62024 Reserved -62025 62025 Volcanic ash -62026 62026 Particulate matter (PM) -# 62027 Reserved -62028 62028 Total aerosol hydrophilic -62029 62029 Total aerosol hydrophobic -62030 62030 Primary particulate inorganic matter dry -62031 62031 Secondary particulate Inorganic matter dry -62032 62032 Biogenic Secondary Organic aerosol -62033 62033 Anthropogenic Secondary Organic aerosol -# 62034-62099 Reserved -62100 62100 Alnus (alder) pollen -62101 62101 Betula (birch) pollen -62102 62102 Castanea (chestnut) pollen -62103 62103 Carpinus (hornbeam) pollen -62104 62104 Corylus (hazel) pollen -62105 62105 Fagus (beech) pollen -62106 62106 Fraxinus (ash) pollen -62107 62107 Pinus (pine) pollen -62108 62108 Platanus (plane) pollen -62109 62109 Populus (cottonwood, poplar) pollen -62110 62110 Quercus (oak) pollen -62111 62111 Salix (willow) pollen -62112 62112 Taxus (yew) pollen -62113 62113 Tilia (lime, linden) pollen -62114 62114 Ulmus (elm) pollen -62115 62115 Olea (olive) pollen -# 62116-62199 Reserved -62200 62200 Ambrosia (ragweed, burr-ragweed) pollen -62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen -62203 62203 Plantago (plantain) pollen -62204 62204 Rumex (dock, sorrel) pollen -62205 62205 Urtica (nettle) pollen -# 62206-62299 Reserved -62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.234.table b/eccodes/definitions.save/grib2/tables/26/4.234.table deleted file mode 100644 index 816541ce..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Crops, mixed farming -2 2 Short grass -3 3 Evergreen needleleaf trees -4 4 Deciduous needleleaf trees -5 5 Deciduous broadleaf trees -6 6 Evergreen broadleaf trees -7 7 Tall grass -8 8 Desert -9 9 Tundra -10 10 Irrigated crops -11 11 Semidesert -12 12 Ice caps and glaciers -13 13 Bogs and marshes -14 14 Inland water -15 15 Ocean -16 16 Evergreen shrubs -17 17 Deciduous shrubs -18 18 Mixed forest -19 19 Interrupted forest -20 20 Water and land mixtures diff --git a/eccodes/definitions.save/grib2/tables/26/4.236.table b/eccodes/definitions.save/grib2/tables/26/4.236.table deleted file mode 100644 index fbe093ce..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.236.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) -1 1 Coarse -2 2 Medium -3 3 Medium-fine -4 4 Fine -5 5 Very-fine -6 6 Organic -7 7 Tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/26/4.238.table b/eccodes/definitions.save/grib2/tables/26/4.238.table deleted file mode 100644 index be5be3a9..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.238.table +++ /dev/null @@ -1,32 +0,0 @@ -# Code table 4.238 - Source or sink -0 0 Other -1 1 Aviation -2 2 Lightning -3 3 Biogenic sources -4 4 Anthropogenic sources -5 5 Wild fires -6 6 Natural sources -7 7 Volcanoes -8 8 Bio-fuel -9 9 Fossil-fuel -10 10 Wetlands -11 11 Oceans -12 12 Elevated anthropogenic sources -13 13 Surface anthropogenic sources -14 14 Agriculture livestock -15 15 Agriculture soils -16 16 Agriculture waste burning -17 17 Agriculture (all) -18 18 Residential, commercial and other combustion -19 19 Power generation -20 20 Super power stations -21 21 Fugitives -22 22 Industrial process -23 23 Solvents -24 24 Ships -25 25 Wastes (solid and water) -26 26 Road transportation -27 27 Off-road transportation -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.240.table b/eccodes/definitions.save/grib2/tables/26/4.240.table deleted file mode 100644 index 4daef3d1..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.240.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.240 - Type of distribution function -0 0 No specific distribution function given -1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre -2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg -3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) -4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance -5 5 Log-normal distribution with spatially variable number density, mean diameter and variance -6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) -7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) -8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.241.table b/eccodes/definitions.save/grib2/tables/26/4.241.table deleted file mode 100644 index a037b4ba..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.241.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.241 - Coverage attributes -0 0 Undefined -1 1 Unmodified -2 2 Snow covered -3 3 Flooded -4 4 Ice covered -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.242.table b/eccodes/definitions.save/grib2/tables/26/4.242.table deleted file mode 100644 index 083f88c2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.242.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.242 - Tile classification -0 0 Reserved -1 1 Land use classes according to ESA-GlobCover GCV2009 -2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/26/4.243.table b/eccodes/definitions.save/grib2/tables/26/4.243.table deleted file mode 100644 index b3905331..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.243.table +++ /dev/null @@ -1,43 +0,0 @@ -# Code table 4.243 - Tile class -0 0 Reserved -1 1 Evergreen broadleaved forest -2 2 Deciduous broadleaved closed forest -3 3 Deciduous broadleaved open forest -4 4 Evergreen needle-leaf forest -5 5 Deciduous needle-leaf forest -6 6 Mixed leaf trees -7 7 Freshwater flooded trees -8 8 Saline water flooded trees -9 9 Mosaic tree/natural vegetation -10 10 Burnt tree cover -11 11 Evergreen shrubs closed-open -12 12 Deciduous shrubs closed-open -13 13 Herbaceous vegetation closed-open -14 14 Sparse herbaceous or grass -15 15 Flooded shrubs or herbaceous -16 16 Cultivated and managed areas -17 17 Mosaic crop/tree/natural vegetation -18 18 Mosaic crop/shrub/grass -19 19 Bare areas -20 20 Water -21 21 Snow and ice -22 22 Artificial surface -23 23 Ocean -24 24 Irrigated croplands -25 25 Rainfed croplands -26 26 Mosaic cropland (50-70%) - vegetation (20-50%) -27 27 Mosaic vegetation (50-70%) - cropland (20-50%) -28 28 Closed broadleaved evergreen forest -29 29 Closed needle-leaved evergreen forest -30 30 Open needle-leaved deciduous forest -31 31 Mixed broadleaved and needle-leaved forest -32 32 Mosaic shrubland (50-70%) - grassland (20-50%) -33 33 Mosaic grassland (50-70%) - shrubland (20-50%) -34 34 Closed to open shrubland -35 35 Sparse vegetation -36 36 Closed to open forest regularly flooded -37 37 Closed forest or shrubland permanently flooded -38 38 Closed to open grassland regularly flooded -39 39 Undefined -# 40-32767 Reserved -# 32768- Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/26/4.244.table b/eccodes/definitions.save/grib2/tables/26/4.244.table deleted file mode 100644 index 40534ee0..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.244.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.244 - Quality indicator -0 0 No quality information available -1 1 Failed -2 2 Passed -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.246.table b/eccodes/definitions.save/grib2/tables/26/4.246.table deleted file mode 100644 index ab22dbe1..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.246.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.246 - Thunderstorm intensity -0 0 No thunderstorm occurence -1 1 Weak thunderstorm -2 2 Moderate thunderstorm -3 3 Severe thunderstorm -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.247.table b/eccodes/definitions.save/grib2/tables/26/4.247.table deleted file mode 100644 index cd7fc90b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.247.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 4.247 - Precipitation intensity -0 0 No precipitation occurrence -1 1 Light precipitation -2 2 Moderate precipitation -3 3 Heavy precipitation -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.3.table b/eccodes/definitions.save/grib2/tables/26/4.3.table deleted file mode 100644 index 8ba9e08a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.3.table +++ /dev/null @@ -1,23 +0,0 @@ -# Code table 4.3 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.4.table b/eccodes/definitions.save/grib2/tables/26/4.4.table deleted file mode 100644 index 7087ebdd..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Code table 4.4 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.5.table b/eccodes/definitions.save/grib2/tables/26/4.5.table deleted file mode 100644 index 3a9861bc..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.5.table +++ /dev/null @@ -1,86 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) (-) -15 15 Convective condensation level (CCL) (-) -16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) -17 sfc Departure level of the most unstable parcel of air (MUDL) -18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) -# 19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-29 Reserved -30 30 Specified radius from the center of the Sun (m) -31 31 Solar photosphere -32 32 Ionospheric D-region level -33 33 Ionospheric E-region level -34 34 Ionospheric F1-region level -35 35 Ionospheric F2-region level -# 36-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 sol Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -152 sol Sea ice level (Numeric) -# 153-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) -# 171-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.6.table b/eccodes/definitions.save/grib2/tables/26/4.6.table deleted file mode 100644 index b2dfeb49..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.7.table b/eccodes/definitions.save/grib2/tables/26/4.7.table deleted file mode 100644 index e0de0e1b..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Code table 4.7 - Derived forecast -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.8.table b/eccodes/definitions.save/grib2/tables/26/4.8.table deleted file mode 100644 index ad883039..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 4.8 - Clustering method -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.9.table b/eccodes/definitions.save/grib2/tables/26/4.9.table deleted file mode 100644 index 9f74599c..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.9.table +++ /dev/null @@ -1,13 +0,0 @@ -# Code table 4.9 - Probability type -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -5 5 Probability of event equal to lower limit -6 6 Probability of event in above normal category -7 7 Probability of event in near normal category -8 8 Probability of event in below normal category -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/4.91.table b/eccodes/definitions.save/grib2/tables/26/4.91.table deleted file mode 100644 index 44cf25f4..00000000 --- a/eccodes/definitions.save/grib2/tables/26/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 4.91 - Type of Interval -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.0.table b/eccodes/definitions.save/grib2/tables/26/5.0.table deleted file mode 100644 index 27b1a89f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.0.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 5.0 - Data representation template number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -# 5-39 Reserved -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression -# 43-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -# 52 Reserved -53 53 Spectral data for limited area models - complex packing -# 54-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.1.table b/eccodes/definitions.save/grib2/tables/26/5.1.table deleted file mode 100644 index 854330c7..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.1 - Type of original field values -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.2.table b/eccodes/definitions.save/grib2/tables/26/5.2.table deleted file mode 100644 index 40586a13..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 5.2 - Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.25.table b/eccodes/definitions.save/grib2/tables/26/5.25.table deleted file mode 100644 index 1b45f28a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.25.table +++ /dev/null @@ -1,9 +0,0 @@ -# Code table 5.25 - type of bi-Fourier subtruncation -# 0-76 Reserved -77 77 Rectangular -# 78-87 Reserved -88 88 Elliptic -# 89-98 Reserved -99 99 Diamond -# 100-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.26.table b/eccodes/definitions.save/grib2/tables/26/5.26.table deleted file mode 100644 index 9e91ebf2..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.26.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.26 - packing mode for axes -0 0 Spectral coefficients for axes are packed -1 1 Spectral coefficients for axes included in the unpacked subset -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.3.table b/eccodes/definitions.save/grib2/tables/26/5.3.table deleted file mode 100644 index c3b7b30f..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.3 - Matrix coordinate parameter -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.4.table b/eccodes/definitions.save/grib2/tables/26/5.4.table deleted file mode 100644 index 8121c181..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 5.4 - Group splitting method -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.40.table b/eccodes/definitions.save/grib2/tables/26/5.40.table deleted file mode 100644 index b9bad2c3..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 5.40 - Type of compression -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.5.table b/eccodes/definitions.save/grib2/tables/26/5.5.table deleted file mode 100644 index 3ef3eb07..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.5 - Missing value management for complex packing -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.6.table b/eccodes/definitions.save/grib2/tables/26/5.6.table deleted file mode 100644 index 6d517787..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.6 - Order of spatial differencing -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/5.7.table b/eccodes/definitions.save/grib2/tables/26/5.7.table deleted file mode 100644 index 5ab78005..00000000 --- a/eccodes/definitions.save/grib2/tables/26/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code table 5.7 - Precision of floating-point numbers -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/26/6.0.table b/eccodes/definitions.save/grib2/tables/26/6.0.table deleted file mode 100644 index 2a29aa28..00000000 --- a/eccodes/definitions.save/grib2/tables/26/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code table 6.0 - Bit map indicator -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/26/stepType.table b/eccodes/definitions.save/grib2/tables/26/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/26/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/3/0.0.table b/eccodes/definitions.save/grib2/tables/3/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/3/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/1.0.table b/eccodes/definitions.save/grib2/tables/3/1.0.table deleted file mode 100644 index a34f44ee..00000000 --- a/eccodes/definitions.save/grib2/tables/3/1.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -# 4-254 Future operational version numbers -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/3/1.1.table b/eccodes/definitions.save/grib2/tables/3/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/3/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/1.2.table b/eccodes/definitions.save/grib2/tables/3/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/3/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/1.3.table b/eccodes/definitions.save/grib2/tables/3/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib2/tables/3/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/1.4.table b/eccodes/definitions.save/grib2/tables/3/1.4.table deleted file mode 100644 index ac21f5c4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.0.table b/eccodes/definitions.save/grib2/tables/3/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/3/3.1.table b/eccodes/definitions.save/grib2/tables/3/3.1.table deleted file mode 100644 index 235fb8bd..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic can be south or north -# 21-29 Reserved -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.10.table b/eccodes/definitions.save/grib2/tables/3/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/3/3.11.table b/eccodes/definitions.save/grib2/tables/3/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.15.table b/eccodes/definitions.save/grib2/tables/3/3.15.table deleted file mode 100644 index d4f7e0ed..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.15.table +++ /dev/null @@ -1,17 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -20 20 Temperature K -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -160 160 Depth below sea level m -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.2.table b/eccodes/definitions.save/grib2/tables/3/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.20.table b/eccodes/definitions.save/grib2/tables/3/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.21.table b/eccodes/definitions.save/grib2/tables/3/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.3.table b/eccodes/definitions.save/grib2/tables/3/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/3/3.4.table b/eccodes/definitions.save/grib2/tables/3/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/3/3.5.table b/eccodes/definitions.save/grib2/tables/3/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/3/3.6.table b/eccodes/definitions.save/grib2/tables/3/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/3/3.7.table b/eccodes/definitions.save/grib2/tables/3/3.7.table deleted file mode 100644 index b57c480a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/3.8.table b/eccodes/definitions.save/grib2/tables/3/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/3.9.table b/eccodes/definitions.save/grib2/tables/3/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib2/tables/3/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/3/4.0.table b/eccodes/definitions.save/grib2/tables/3/4.0.table deleted file mode 100644 index 759512a0..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.0.table +++ /dev/null @@ -1,38 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.0.table b/eccodes/definitions.save/grib2/tables/3/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.1.table b/eccodes/definitions.save/grib2/tables/3/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.10.table b/eccodes/definitions.save/grib2/tables/3/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.2.table b/eccodes/definitions.save/grib2/tables/3/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.3.table b/eccodes/definitions.save/grib2/tables/3/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.1.table b/eccodes/definitions.save/grib2/tables/3/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.10.table b/eccodes/definitions.save/grib2/tables/3/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.11.table b/eccodes/definitions.save/grib2/tables/3/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.12.table b/eccodes/definitions.save/grib2/tables/3/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.13.table b/eccodes/definitions.save/grib2/tables/3/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.14.table b/eccodes/definitions.save/grib2/tables/3/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.15.table b/eccodes/definitions.save/grib2/tables/3/4.15.table deleted file mode 100644 index 49b0b2d2..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.15.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.151.table b/eccodes/definitions.save/grib2/tables/3/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.0.table deleted file mode 100644 index 0386b8cd..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -#17-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.1.table deleted file mode 100644 index 154f2d00..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.1.table +++ /dev/null @@ -1,62 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -#47-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.13.table deleted file mode 100644 index 8fc3425a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.14.table deleted file mode 100644 index 309c40d4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.15.table deleted file mode 100644 index bb419178..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.15.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.18.table deleted file mode 100644 index 5c0fd6e5..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.18.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.19.table deleted file mode 100644 index 369c3f65..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.19.table +++ /dev/null @@ -1,24 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -# 19-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.190.table deleted file mode 100644 index b1f47bc0..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.190.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string -0 0 Arbitrary text string (CCITTIA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.191.table deleted file mode 100644 index affb98f4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.2.table deleted file mode 100644 index 1ec94510..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.20.table deleted file mode 100644 index 4e7f45db..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.20.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Mass density (concentration) kg.m-3 -1 1 Total column (integrated mass density) kg.m-2 -2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 -3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 -4 4 Surface dry deposition mass flux kg.m-2.s-1 -5 5 Surface wet deposition mass flux kg.m-2.s-1 -6 6 Atmosphere emission mass flux kg.m-2.s-1 -7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 -8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 -9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 -#10-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.3.table deleted file mode 100644 index 5c7e8151..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 3: Mass - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) -# 20-191 Reserved -# 192-254 Reserved for local use - 255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.4.table deleted file mode 100644 index 815c184a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.4.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.5.table deleted file mode 100644 index 1b57fa30..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.6.table deleted file mode 100644 index 05cf72f5..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.6.table +++ /dev/null @@ -1,30 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/3/4.2.0.7.table deleted file mode 100644 index 78374fde..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.0.7.table +++ /dev/null @@ -1,18 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -#13-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.1.0.table deleted file mode 100644 index 828c869d..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.1.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.1.1.table deleted file mode 100644 index b7342ef2..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.1.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.0.table deleted file mode 100644 index 479e26d5..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.1.table deleted file mode 100644 index df18f31d..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.2.table deleted file mode 100644 index cb73da46..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.10.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -# 8-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.3.table deleted file mode 100644 index a14ae22e..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/3/4.2.10.4.table deleted file mode 100644 index a24c3c8c..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.10.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.2.0.table deleted file mode 100644 index fdc8ce0e..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.2.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -# 23-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/3/4.2.2.3.table deleted file mode 100644 index d6376fec..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.2.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -# 11-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/3/4.2.3.0.table deleted file mode 100644 index 94456638..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product discipline 3: Space products, Parameter Category 0: Image format products -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/3/4.2.3.1.table deleted file mode 100644 index 60d6e842..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.2.3.1.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 3: Space products, Parameter Category 1: Quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -# 6-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/3/4.201.table b/eccodes/definitions.save/grib2/tables/3/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.202.table b/eccodes/definitions.save/grib2/tables/3/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.203.table b/eccodes/definitions.save/grib2/tables/3/4.203.table deleted file mode 100644 index a5b02a88..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.203.table +++ /dev/null @@ -1,26 +0,0 @@ -# CODE TABLE 4.203, Cloud type - -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.204.table b/eccodes/definitions.save/grib2/tables/3/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.205.table b/eccodes/definitions.save/grib2/tables/3/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.206.table b/eccodes/definitions.save/grib2/tables/3/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.207.table b/eccodes/definitions.save/grib2/tables/3/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.208.table b/eccodes/definitions.save/grib2/tables/3/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.209.table b/eccodes/definitions.save/grib2/tables/3/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.210.table b/eccodes/definitions.save/grib2/tables/3/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.211.table b/eccodes/definitions.save/grib2/tables/3/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.212.table b/eccodes/definitions.save/grib2/tables/3/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.213.table b/eccodes/definitions.save/grib2/tables/3/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.215.table b/eccodes/definitions.save/grib2/tables/3/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.216.table b/eccodes/definitions.save/grib2/tables/3/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.217.table b/eccodes/definitions.save/grib2/tables/3/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.220.table b/eccodes/definitions.save/grib2/tables/3/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.221.table b/eccodes/definitions.save/grib2/tables/3/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.230.table b/eccodes/definitions.save/grib2/tables/3/4.230.table deleted file mode 100644 index 23e819b6..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.230.table +++ /dev/null @@ -1,47 +0,0 @@ -#Code figure Code figure Meaning -0 0 Air -1 1 Ozone -2 2 Water vapour -3 3 Methane -4 4 Carbon dioxide -5 5 Carbon monoxide -6 6 Nitrogen dioxide -7 7 Nitrous oxide -8 8 Nitrogen monoxide -9 9 Formaldehyde -10 10 Sulphur dioxide -11 11 Nitric acid -12 12 All nitrogen oxides (NOy) expressed as nitrogen -13 13 Peroxyacetyl nitrate -14 14 Hydroxyl radical -15 15 Ammonia -16 16 Ammonium -17 17 Radon -18 18 Dimethyl sulphide -19 19 Hexachlorocyclohexane -20 20 Alpha hexachlorocyclohexane -21 21 Elemental mercury -22 22 Divalent mercury -23 23 Hexachlorobiphenyl -24 24 NOx expressed as nitrogen -25 25 Non-methane volatile organic compounds expressed as carbon -26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon -27 27 Biogenic non-methane volatile organic compounds expressed as carbon -#28-39999 28-39999 Reserved -40000 40000 Sulphate dry aerosol -40001 40001 Black carbon dry aerosol -40002 40002 Particulate organic matter dry aerosol -40003 40003 Primary particulate organic matter dry aerosol -40004 40004 Secondary particulate organic matter dry aerosol -40005 40005 Sea salt dry aerosol -40006 40006 Dust dry aerosol -40007 40007 Mercury dry aerosol -40008 40008 PM10 aerosol -40009 40009 PM2P5 aerosol -40010 40010 PM1 aerosol -40011 40011 Nitrate dry aerosol -40012 40012 Ammonium dry aerosol -40013 40013 Water in ambient aerosol -#40014-63999 40014-63999 Reserved -#64000-65534 64000-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.3.table b/eccodes/definitions.save/grib2/tables/3/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.4.table b/eccodes/definitions.save/grib2/tables/3/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.5.table b/eccodes/definitions.save/grib2/tables/3/4.5.table deleted file mode 100644 index 89c5fb17..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.5.table +++ /dev/null @@ -1,33 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.6.table b/eccodes/definitions.save/grib2/tables/3/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.7.table b/eccodes/definitions.save/grib2/tables/3/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.8.table b/eccodes/definitions.save/grib2/tables/3/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.9.table b/eccodes/definitions.save/grib2/tables/3/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/4.91.table b/eccodes/definitions.save/grib2/tables/3/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib2/tables/3/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.0.table b/eccodes/definitions.save/grib2/tables/3/5.0.table deleted file mode 100644 index 0cf3752c..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib2/tables/3/5.1.table b/eccodes/definitions.save/grib2/tables/3/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.2.table b/eccodes/definitions.save/grib2/tables/3/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.3.table b/eccodes/definitions.save/grib2/tables/3/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.4.table b/eccodes/definitions.save/grib2/tables/3/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.40.table b/eccodes/definitions.save/grib2/tables/3/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.40000.table b/eccodes/definitions.save/grib2/tables/3/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.5.table b/eccodes/definitions.save/grib2/tables/3/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.50002.table b/eccodes/definitions.save/grib2/tables/3/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/3/5.6.table b/eccodes/definitions.save/grib2/tables/3/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.7.table b/eccodes/definitions.save/grib2/tables/3/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.8.table b/eccodes/definitions.save/grib2/tables/3/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/5.9.table b/eccodes/definitions.save/grib2/tables/3/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/3/6.0.table b/eccodes/definitions.save/grib2/tables/3/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/3/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/3/stepType.table b/eccodes/definitions.save/grib2/tables/3/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/3/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/4/0.0.table b/eccodes/definitions.save/grib2/tables/4/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/4/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/1.0.table b/eccodes/definitions.save/grib2/tables/4/1.0.table deleted file mode 100644 index a34f44ee..00000000 --- a/eccodes/definitions.save/grib2/tables/4/1.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -# 4-254 Future operational version numbers -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/4/1.1.table b/eccodes/definitions.save/grib2/tables/4/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/4/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/1.2.table b/eccodes/definitions.save/grib2/tables/4/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/4/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/1.3.table b/eccodes/definitions.save/grib2/tables/4/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib2/tables/4/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/1.4.table b/eccodes/definitions.save/grib2/tables/4/1.4.table deleted file mode 100644 index ac21f5c4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.0.table b/eccodes/definitions.save/grib2/tables/4/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/4/3.1.table b/eccodes/definitions.save/grib2/tables/4/3.1.table deleted file mode 100644 index a989a78a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic (can be south or north) -# 21-29 Reserved -30 30 Lambert Conformal (can be secant or tangent, conical or bipolar) -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.10.table b/eccodes/definitions.save/grib2/tables/4/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/4/3.11.table b/eccodes/definitions.save/grib2/tables/4/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.15.table b/eccodes/definitions.save/grib2/tables/4/3.15.table deleted file mode 100644 index 6a035be5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.15.table +++ /dev/null @@ -1,22 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature K -# 21-99 Reserved -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -# 113-159 Reserved -160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.2.table b/eccodes/definitions.save/grib2/tables/4/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.20.table b/eccodes/definitions.save/grib2/tables/4/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.21.table b/eccodes/definitions.save/grib2/tables/4/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.3.table b/eccodes/definitions.save/grib2/tables/4/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/4/3.4.table b/eccodes/definitions.save/grib2/tables/4/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/4/3.5.table b/eccodes/definitions.save/grib2/tables/4/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/4/3.6.table b/eccodes/definitions.save/grib2/tables/4/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/4/3.7.table b/eccodes/definitions.save/grib2/tables/4/3.7.table deleted file mode 100644 index b57c480a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/3.8.table b/eccodes/definitions.save/grib2/tables/4/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/3.9.table b/eccodes/definitions.save/grib2/tables/4/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib2/tables/4/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/4/4.0.table b/eccodes/definitions.save/grib2/tables/4/4.0.table deleted file mode 100644 index c24b5f2c..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.0.table +++ /dev/null @@ -1,39 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.0.table b/eccodes/definitions.save/grib2/tables/4/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.1.table b/eccodes/definitions.save/grib2/tables/4/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.10.table b/eccodes/definitions.save/grib2/tables/4/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.192.table b/eccodes/definitions.save/grib2/tables/4/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.2.table b/eccodes/definitions.save/grib2/tables/4/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.3.table b/eccodes/definitions.save/grib2/tables/4/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.1.table b/eccodes/definitions.save/grib2/tables/4/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.10.table b/eccodes/definitions.save/grib2/tables/4/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.11.table b/eccodes/definitions.save/grib2/tables/4/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.12.table b/eccodes/definitions.save/grib2/tables/4/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.13.table b/eccodes/definitions.save/grib2/tables/4/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.14.table b/eccodes/definitions.save/grib2/tables/4/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.15.table b/eccodes/definitions.save/grib2/tables/4/4.15.table deleted file mode 100644 index 49b0b2d2..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.15.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.151.table b/eccodes/definitions.save/grib2/tables/4/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.0.table deleted file mode 100644 index 0386b8cd..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -#17-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.1.table deleted file mode 100644 index 6012e4be..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.1.table +++ /dev/null @@ -1,62 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -#47-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.13.table deleted file mode 100644 index 8fc3425a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.14.table deleted file mode 100644 index 309c40d4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.15.table deleted file mode 100644 index bb419178..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.15.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.18.table deleted file mode 100644 index 5c0fd6e5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.18.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.19.table deleted file mode 100644 index 369c3f65..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.19.table +++ /dev/null @@ -1,24 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -# 19-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.190.table deleted file mode 100644 index b1f47bc0..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.190.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string -0 0 Arbitrary text string (CCITTIA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.191.table deleted file mode 100644 index affb98f4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.2.table deleted file mode 100644 index 1ec94510..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.20.table deleted file mode 100644 index b72d5fe5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.20.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Mass density (concentration) (kg.m-3) -1 1 Total column (integrated mass density) (kg.m-2) -2 2 Volume mixing ratio (mole fraction in air) (mole.mole-1) -3 3 Mass mixing ratio (mass fraction in air) (kg.kg-1) -4 4 Surface dry deposition mass flux (kg.m-2.s-1) -5 5 Surface wet deposition mass flux (kg.m-2.s-1) -6 6 Atmosphere emission mass flux (kg.m-2.s-1) -7 7 Chemical gross production rate of mole concentration (mole.m-3.s-1) -8 8 Chemical gross destruction rate of mole concentration (mole.m-3.s-1) -9 9 Surface dry deposition mass flux into stomata (kg.m-2.s-1) -#10-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.3.table deleted file mode 100644 index 5c7e8151..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 3: Mass - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) -# 20-191 Reserved -# 192-254 Reserved for local use - 255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.4.table deleted file mode 100644 index 815c184a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.4.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.5.table deleted file mode 100644 index 1b57fa30..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.6.table deleted file mode 100644 index 05cf72f5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.6.table +++ /dev/null @@ -1,30 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/4/4.2.0.7.table deleted file mode 100644 index 78374fde..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.0.7.table +++ /dev/null @@ -1,18 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -#13-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.1.0.table deleted file mode 100644 index 1e867e1c..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.1.1.table deleted file mode 100644 index b7342ef2..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.1.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.0.table deleted file mode 100644 index 479e26d5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.1.table deleted file mode 100644 index df18f31d..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.2.table deleted file mode 100644 index cb73da46..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.10.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -# 8-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.3.table deleted file mode 100644 index a14ae22e..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.10.4.table deleted file mode 100644 index a24c3c8c..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.10.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/4/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.2.0.table deleted file mode 100644 index 67ad39b6..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.2.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -# 23-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/4/4.2.2.3.table deleted file mode 100644 index d6376fec..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.2.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -# 11-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/4/4.2.3.0.table deleted file mode 100644 index 94456638..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product discipline 3: Space products, Parameter Category 0: Image format products -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/4/4.2.3.1.table deleted file mode 100644 index 60d6e842..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.2.3.1.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 3: Space products, Parameter Category 1: Quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -# 6-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/4/4.201.table b/eccodes/definitions.save/grib2/tables/4/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.202.table b/eccodes/definitions.save/grib2/tables/4/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.203.table b/eccodes/definitions.save/grib2/tables/4/4.203.table deleted file mode 100644 index d2ad10b0..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.203.table +++ /dev/null @@ -1,88 +0,0 @@ -# CODE TABLE 4.203, Cloud type - -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.204.table b/eccodes/definitions.save/grib2/tables/4/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.205.table b/eccodes/definitions.save/grib2/tables/4/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.206.table b/eccodes/definitions.save/grib2/tables/4/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.207.table b/eccodes/definitions.save/grib2/tables/4/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.208.table b/eccodes/definitions.save/grib2/tables/4/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.209.table b/eccodes/definitions.save/grib2/tables/4/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.210.table b/eccodes/definitions.save/grib2/tables/4/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.211.table b/eccodes/definitions.save/grib2/tables/4/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.212.table b/eccodes/definitions.save/grib2/tables/4/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.213.table b/eccodes/definitions.save/grib2/tables/4/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.215.table b/eccodes/definitions.save/grib2/tables/4/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.216.table b/eccodes/definitions.save/grib2/tables/4/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.217.table b/eccodes/definitions.save/grib2/tables/4/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.220.table b/eccodes/definitions.save/grib2/tables/4/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.221.table b/eccodes/definitions.save/grib2/tables/4/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.230.table b/eccodes/definitions.save/grib2/tables/4/4.230.table deleted file mode 100644 index 638358ea..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.230.table +++ /dev/null @@ -1,47 +0,0 @@ -#Code figure Code figure Meaning -0 air Air -1 ozone Ozone -2 water Water vapour -3 methane Methane -4 carbonDioxide Carbon dioxide -5 carbonMonoxide Carbon monoxide -6 nitrogenDioxide Nitrogen dioxide -7 nitrousOxide Nitrous oxide -8 8 Nitrogen monoxide -9 9 Formaldehyde -10 10 Sulphur dioxide -11 11 Nitric acid -12 noy All nitrogen oxides (NOy) expressed as nitrogen -13 13 Peroxyacetyl nitrate -14 14 Hydroxyl radical -15 15 Ammonia -16 16 Ammonium -17 17 Radon -18 18 Dimethyl sulphide -19 hexachlorocyclohexane Hexachlorocyclohexane -20 20 Alpha hexachlorocyclohexane -21 21 Elemental mercury -22 22 Divalent mercury -23 23 Hexachlorobiphenyl -24 nox NOx expressed as nitrogen -25 nmvoc Non-methane volatile organic compounds expressed as carbon -26 anmvoc Anthropogenic non-methane volatile organic compounds expressed as carbon -27 bnmvoc Biogenic non-methane volatile organic compounds expressed as carbon -#28-39999 28-39999 Reserved -40000 40000 Sulphate dry aerosol -40001 40001 Black carbon dry aerosol -40002 40002 Particulate organic matter dry aerosol -40003 40003 Primary particulate organic matter dry aerosol -40004 40004 Secondary particulate organic matter dry aerosol -40005 40005 Sea salt dry aerosol -40006 40006 Dust dry aerosol -40007 40007 Mercury dry aerosol -40008 40008 PM10 aerosol -40009 40009 PM2P5 aerosol -40010 40010 PM1 aerosol -40011 40011 Nitrate dry aerosol -40012 40012 Ammonium dry aerosol -40013 40013 Water in ambient aerosol -#40014-63999 40014-63999 Reserved -#64000-65534 64000-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.3.table b/eccodes/definitions.save/grib2/tables/4/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.4.table b/eccodes/definitions.save/grib2/tables/4/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.5.table b/eccodes/definitions.save/grib2/tables/4/4.5.table deleted file mode 100644 index 89c5fb17..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.5.table +++ /dev/null @@ -1,33 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.6.table b/eccodes/definitions.save/grib2/tables/4/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.7.table b/eccodes/definitions.save/grib2/tables/4/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.8.table b/eccodes/definitions.save/grib2/tables/4/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.9.table b/eccodes/definitions.save/grib2/tables/4/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/4.91.table b/eccodes/definitions.save/grib2/tables/4/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib2/tables/4/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.0.table b/eccodes/definitions.save/grib2/tables/4/5.0.table deleted file mode 100644 index 0cf3752c..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib2/tables/4/5.1.table b/eccodes/definitions.save/grib2/tables/4/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.2.table b/eccodes/definitions.save/grib2/tables/4/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.3.table b/eccodes/definitions.save/grib2/tables/4/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.4.table b/eccodes/definitions.save/grib2/tables/4/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.40.table b/eccodes/definitions.save/grib2/tables/4/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.40000.table b/eccodes/definitions.save/grib2/tables/4/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.5.table b/eccodes/definitions.save/grib2/tables/4/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.50002.table b/eccodes/definitions.save/grib2/tables/4/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/4/5.6.table b/eccodes/definitions.save/grib2/tables/4/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.7.table b/eccodes/definitions.save/grib2/tables/4/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.8.table b/eccodes/definitions.save/grib2/tables/4/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/5.9.table b/eccodes/definitions.save/grib2/tables/4/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/4/6.0.table b/eccodes/definitions.save/grib2/tables/4/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/4/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/4/stepType.table b/eccodes/definitions.save/grib2/tables/4/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/4/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/5/0.0.table b/eccodes/definitions.save/grib2/tables/5/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/5/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/1.0.table b/eccodes/definitions.save/grib2/tables/5/1.0.table deleted file mode 100644 index e1a71a03..00000000 --- a/eccodes/definitions.save/grib2/tables/5/1.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Pre-operational to be implemented by next amendment -# 7-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/5/1.1.table b/eccodes/definitions.save/grib2/tables/5/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/5/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/1.2.table b/eccodes/definitions.save/grib2/tables/5/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/5/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/1.3.table b/eccodes/definitions.save/grib2/tables/5/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib2/tables/5/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/1.4.table b/eccodes/definitions.save/grib2/tables/5/1.4.table deleted file mode 100644 index 8166b776..00000000 --- a/eccodes/definitions.save/grib2/tables/5/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.0.table b/eccodes/definitions.save/grib2/tables/5/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/5/3.1.table b/eccodes/definitions.save/grib2/tables/5/3.1.table deleted file mode 100644 index a989a78a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic (can be south or north) -# 21-29 Reserved -30 30 Lambert Conformal (can be secant or tangent, conical or bipolar) -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.10.table b/eccodes/definitions.save/grib2/tables/5/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/5/3.11.table b/eccodes/definitions.save/grib2/tables/5/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.15.table b/eccodes/definitions.save/grib2/tables/5/3.15.table deleted file mode 100644 index 6a035be5..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.15.table +++ /dev/null @@ -1,22 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature K -# 21-99 Reserved -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -# 113-159 Reserved -160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.2.table b/eccodes/definitions.save/grib2/tables/5/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.20.table b/eccodes/definitions.save/grib2/tables/5/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.21.table b/eccodes/definitions.save/grib2/tables/5/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.3.table b/eccodes/definitions.save/grib2/tables/5/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/5/3.4.table b/eccodes/definitions.save/grib2/tables/5/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/5/3.5.table b/eccodes/definitions.save/grib2/tables/5/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/5/3.6.table b/eccodes/definitions.save/grib2/tables/5/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/5/3.7.table b/eccodes/definitions.save/grib2/tables/5/3.7.table deleted file mode 100644 index b57c480a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/3.8.table b/eccodes/definitions.save/grib2/tables/5/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/5/3.9.table b/eccodes/definitions.save/grib2/tables/5/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib2/tables/5/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/5/4.0.table b/eccodes/definitions.save/grib2/tables/5/4.0.table deleted file mode 100644 index 1fbcea16..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.0.table +++ /dev/null @@ -1,41 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval - -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.0.table b/eccodes/definitions.save/grib2/tables/5/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.1.table b/eccodes/definitions.save/grib2/tables/5/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.10.table b/eccodes/definitions.save/grib2/tables/5/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.192.table b/eccodes/definitions.save/grib2/tables/5/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.2.table b/eccodes/definitions.save/grib2/tables/5/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.3.table b/eccodes/definitions.save/grib2/tables/5/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/5/4.1.table b/eccodes/definitions.save/grib2/tables/5/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.10.table b/eccodes/definitions.save/grib2/tables/5/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.11.table b/eccodes/definitions.save/grib2/tables/5/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.12.table b/eccodes/definitions.save/grib2/tables/5/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.13.table b/eccodes/definitions.save/grib2/tables/5/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.14.table b/eccodes/definitions.save/grib2/tables/5/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.15.table b/eccodes/definitions.save/grib2/tables/5/4.15.table deleted file mode 100644 index 50412802..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.15.table +++ /dev/null @@ -1,10 +0,0 @@ -0 0 Data is calculated directly from the source grid with no interpolation (see note 1) -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) -#7-191 Reserved -#192-254 Reserved for Local Use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.151.table b/eccodes/definitions.save/grib2/tables/5/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.192.table b/eccodes/definitions.save/grib2/tables/5/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.0.table deleted file mode 100644 index bf1638d8..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.1.table deleted file mode 100644 index c7954575..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.1.table +++ /dev/null @@ -1,71 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved (-) -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.13.table deleted file mode 100644 index 8aaeeb30..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.13.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (code table (4.205) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.14.table deleted file mode 100644 index 230b0bb6..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.14.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -2 2 Total column integrated ozone (Dobson) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.15.table deleted file mode 100644 index 796fc2a8..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.18.table deleted file mode 100644 index 643188fd..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.18.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.19.table deleted file mode 100644 index 21200f05..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.19.table +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (code table (4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (code table (4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (code table (4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (code table (4.209) -13 13 Contrail intensity (code table (4.210) -14 14 Contrail engine type (code table (4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (see Note 4) (%) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.190.table deleted file mode 100644 index 378f9705..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.190.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITTIA5) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.191.table deleted file mode 100644 index 27ad3815..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.191.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.2.table deleted file mode 100644 index cf930adf..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.2.table +++ /dev/null @@ -1,33 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.20.table deleted file mode 100644 index 4d762c38..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.20.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Mass density (concentration) kg m-3 -1 1 Column-integrated mass density (see Note1) kg m-2 -2 2 Mass mixing ratio (mass fraction in air) kg kg-1 -3 3 Atmosphere emission mass flux kg m-2 s-1 -4 4 Atmosphere net production mass flux kg m-2 s-1 -5 5 Atmosphere net production and emission mass flux kg m-2 s-1 -6 6 Surface dry deposition mass flux kg m-2 s-1 -7 7 Surface wet deposition mass flux kg m-2 s-1 -8 8 Atmosphere re-emission mass flux kg m-2 s-1 -#9-49 9-49 Reserved -50 50 Amount in atmosphere mol -51 51 Concentration in air mol m-3 -52 52 Volume mixing ratio (fraction in air) mol mol-1 -53 53 Chemical gross production rate of concentration mol m-3 s-1 -54 54 Chemical gross destruction rate of concentration mol m-3 s-1 -55 55 Surface flux mol m-2 s-1 -56 56 Changes of amount in atmosphere (see Note 1) mol s-1 -57 57 Total yearly average burden of the atmosphere mol -58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 -#59-99 59-99 Reserved -100 100 Surface area density (aerosol) m-1 -101 101 Atmosphere optical thickness m -#102-191 102-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.3.table deleted file mode 100644 index fa4f99f8..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa s-1) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (Wm-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.4.table deleted file mode 100644 index 365fd98a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.5.table deleted file mode 100644 index 71932574..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.5.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.6.table deleted file mode 100644 index e0edd344..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.6.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (code table (4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (code table (4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/5/4.2.0.7.table deleted file mode 100644 index 34b082d9..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.0.7.table +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.1.0.table deleted file mode 100644 index babfba39..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.1.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (code table 4.215) -3 3 Elevation of snow covered terrain (code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.1.1.table deleted file mode 100644 index 56bf798d..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.0.table deleted file mode 100644 index a8d4a5bf..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.1.table deleted file mode 100644 index d5514d76..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.191.table deleted file mode 100644 index fa81adaf..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.191.table +++ /dev/null @@ -1 +0,0 @@ -# empty file diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.2.table deleted file mode 100644 index ff6e22bf..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -8 8 Ice temperature (K) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.3.table deleted file mode 100644 index 949e0507..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.10.4.table deleted file mode 100644 index 3158142d..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.10.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/5/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.2.0.table deleted file mode 100644 index 8541d6bb..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.2.0.table +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Land cover (1=land, 0=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (code table (4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/5/4.2.2.3.table deleted file mode 100644 index dce6558d..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.2.3.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Soil type (code table (4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/5/4.2.3.0.table deleted file mode 100644 index 9d2ea212..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.3.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/5/4.2.3.1.table deleted file mode 100644 index f598bea8..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.2.3.1.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -6 6 Number of pixels used (Numeric) -7 7 Solar zenith angle (Degree) -8 8 Relative azimuth angle (Degree) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/5/4.201.table b/eccodes/definitions.save/grib2/tables/5/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.202.table b/eccodes/definitions.save/grib2/tables/5/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.203.table b/eccodes/definitions.save/grib2/tables/5/4.203.table deleted file mode 100644 index 057f4091..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 4.203, Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.204.table b/eccodes/definitions.save/grib2/tables/5/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.205.table b/eccodes/definitions.save/grib2/tables/5/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.206.table b/eccodes/definitions.save/grib2/tables/5/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.207.table b/eccodes/definitions.save/grib2/tables/5/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.208.table b/eccodes/definitions.save/grib2/tables/5/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.209.table b/eccodes/definitions.save/grib2/tables/5/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.210.table b/eccodes/definitions.save/grib2/tables/5/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.211.table b/eccodes/definitions.save/grib2/tables/5/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.212.table b/eccodes/definitions.save/grib2/tables/5/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.213.table b/eccodes/definitions.save/grib2/tables/5/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.215.table b/eccodes/definitions.save/grib2/tables/5/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.216.table b/eccodes/definitions.save/grib2/tables/5/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.217.table b/eccodes/definitions.save/grib2/tables/5/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.218.table b/eccodes/definitions.save/grib2/tables/5/4.218.table deleted file mode 100644 index 6c436dfc..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.218.table +++ /dev/null @@ -1,35 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.219.table b/eccodes/definitions.save/grib2/tables/5/4.219.table deleted file mode 100644 index ead9d6b7..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.219.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.220.table b/eccodes/definitions.save/grib2/tables/5/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.221.table b/eccodes/definitions.save/grib2/tables/5/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.222.table b/eccodes/definitions.save/grib2/tables/5/4.222.table deleted file mode 100644 index a4790257..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.222.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.223.table b/eccodes/definitions.save/grib2/tables/5/4.223.table deleted file mode 100644 index d7205dc9..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.230.table b/eccodes/definitions.save/grib2/tables/5/4.230.table deleted file mode 100644 index 7bcbe304..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.230.table +++ /dev/null @@ -1,117 +0,0 @@ -#Code figure Code figure Meaning -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) -10500 10500 Dimethyl sulphide -#10501-20000 10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen -60005 60005 Total inorganic chlorine -60006 60006 Total inorganic bromine -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped Alkanes -60010 60010 Lumped Alkenes -60011 60011 Lumped Aromatic Compounds -60012 60012 Lumped Terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.3.table b/eccodes/definitions.save/grib2/tables/5/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.4.table b/eccodes/definitions.save/grib2/tables/5/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.5.table b/eccodes/definitions.save/grib2/tables/5/4.5.table deleted file mode 100644 index 0df986b6..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.5.table +++ /dev/null @@ -1,38 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.6.table b/eccodes/definitions.save/grib2/tables/5/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.7.table b/eccodes/definitions.save/grib2/tables/5/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.8.table b/eccodes/definitions.save/grib2/tables/5/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.9.table b/eccodes/definitions.save/grib2/tables/5/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/4.91.table b/eccodes/definitions.save/grib2/tables/5/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib2/tables/5/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.0.table b/eccodes/definitions.save/grib2/tables/5/5.0.table deleted file mode 100644 index 62cc4a47..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.0.table +++ /dev/null @@ -1,19 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing diff --git a/eccodes/definitions.save/grib2/tables/5/5.1.table b/eccodes/definitions.save/grib2/tables/5/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.2.table b/eccodes/definitions.save/grib2/tables/5/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.3.table b/eccodes/definitions.save/grib2/tables/5/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.4.table b/eccodes/definitions.save/grib2/tables/5/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.40.table b/eccodes/definitions.save/grib2/tables/5/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.40000.table b/eccodes/definitions.save/grib2/tables/5/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.5.table b/eccodes/definitions.save/grib2/tables/5/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.50002.table b/eccodes/definitions.save/grib2/tables/5/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/5/5.6.table b/eccodes/definitions.save/grib2/tables/5/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.7.table b/eccodes/definitions.save/grib2/tables/5/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.8.table b/eccodes/definitions.save/grib2/tables/5/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/5.9.table b/eccodes/definitions.save/grib2/tables/5/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/5/6.0.table b/eccodes/definitions.save/grib2/tables/5/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/5/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/5/stepType.table b/eccodes/definitions.save/grib2/tables/5/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/5/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/6/0.0.table b/eccodes/definitions.save/grib2/tables/6/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/6/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/1.0.table b/eccodes/definitions.save/grib2/tables/6/1.0.table deleted file mode 100644 index 54a50efa..00000000 --- a/eccodes/definitions.save/grib2/tables/6/1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Pre-operational to be implemented by next amendment -# 8-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. - diff --git a/eccodes/definitions.save/grib2/tables/6/1.1.table b/eccodes/definitions.save/grib2/tables/6/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/6/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/1.2.table b/eccodes/definitions.save/grib2/tables/6/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/6/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/1.3.table b/eccodes/definitions.save/grib2/tables/6/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib2/tables/6/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/1.4.table b/eccodes/definitions.save/grib2/tables/6/1.4.table deleted file mode 100644 index 8166b776..00000000 --- a/eccodes/definitions.save/grib2/tables/6/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.0.table b/eccodes/definitions.save/grib2/tables/6/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/6/3.1.table b/eccodes/definitions.save/grib2/tables/6/3.1.table deleted file mode 100644 index 235fb8bd..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic can be south or north -# 21-29 Reserved -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.10.table b/eccodes/definitions.save/grib2/tables/6/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib2/tables/6/3.11.table b/eccodes/definitions.save/grib2/tables/6/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.15.table b/eccodes/definitions.save/grib2/tables/6/3.15.table deleted file mode 100644 index b3adaeb3..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.15.table +++ /dev/null @@ -1,21 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -20 20 Temperature K -# 21-99 Reserved -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -# 113-159 Reserved -160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.2.table b/eccodes/definitions.save/grib2/tables/6/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.20.table b/eccodes/definitions.save/grib2/tables/6/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.21.table b/eccodes/definitions.save/grib2/tables/6/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.3.table b/eccodes/definitions.save/grib2/tables/6/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib2/tables/6/3.4.table b/eccodes/definitions.save/grib2/tables/6/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib2/tables/6/3.5.table b/eccodes/definitions.save/grib2/tables/6/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/6/3.6.table b/eccodes/definitions.save/grib2/tables/6/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/6/3.7.table b/eccodes/definitions.save/grib2/tables/6/3.7.table deleted file mode 100644 index 5937ea14..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.7.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/3.8.table b/eccodes/definitions.save/grib2/tables/6/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/6/3.9.table b/eccodes/definitions.save/grib2/tables/6/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib2/tables/6/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib2/tables/6/4.0.table b/eccodes/definitions.save/grib2/tables/6/4.0.table deleted file mode 100644 index e7e441f4..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.0.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -#16-19 Reserved -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval - -65335 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.0.table b/eccodes/definitions.save/grib2/tables/6/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.1.table b/eccodes/definitions.save/grib2/tables/6/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.10.table b/eccodes/definitions.save/grib2/tables/6/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.192.table b/eccodes/definitions.save/grib2/tables/6/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.2.table b/eccodes/definitions.save/grib2/tables/6/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.3.table b/eccodes/definitions.save/grib2/tables/6/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/6/4.1.table b/eccodes/definitions.save/grib2/tables/6/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.10.table b/eccodes/definitions.save/grib2/tables/6/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.11.table b/eccodes/definitions.save/grib2/tables/6/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.12.table b/eccodes/definitions.save/grib2/tables/6/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.13.table b/eccodes/definitions.save/grib2/tables/6/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.14.table b/eccodes/definitions.save/grib2/tables/6/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.15.table b/eccodes/definitions.save/grib2/tables/6/4.15.table deleted file mode 100644 index 50412802..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.15.table +++ /dev/null @@ -1,10 +0,0 @@ -0 0 Data is calculated directly from the source grid with no interpolation (see note 1) -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) -#7-191 Reserved -#192-254 Reserved for Local Use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.151.table b/eccodes/definitions.save/grib2/tables/6/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.192.table b/eccodes/definitions.save/grib2/tables/6/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.0.table deleted file mode 100644 index 98fc9552..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) - validation (K) -19 19 Turbulent transfer coefficient for heat - validation (Numeric) -20 20 Turbulent diffusion coefficient for heat - validation (m2 s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.1.table deleted file mode 100644 index 936d53fb..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.1.table +++ /dev/null @@ -1,89 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age day (-) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved (-) -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water - validation (kg m-2) -70 70 Total column integrated cloud ice - validation (kg m-2) -71 71 Hail mixing ratio - validation (kg kg-1) -72 72 Total column integrated hail - validation (kg m-2) -73 73 Hail precipitation rate - validation (kg m-2 s-1) -74 74 Total column integrated graupel - validation (kg m-2) -75 75 Graupel (snow pellets) precipitation rate - validation (kg m-2 s-1) -76 76 Convective rain rate - validation (kg m-2 s-1) -77 77 Large scale rain rate - validation (kg m-2 s-1) -78 78 Total column integrated water (all components incl. precipitation) - validation (kg m-2) -79 79 Evaporation rate - validation (kg m-2 s-1) -80 80 Total Condensate - validation (kg kg-1) -81 81 Total Column-Integrated Condensate - validation (kg m-2) -82 82 Cloud Ice Mixing-Ratio - validation (kg kg-1) -83 83 Specific cloud liquid water content (kg kg-1) -84 84 Specific cloud ice water content (kg kg-1) -85 85 Specific rain water content (kg kg-1) -86 86 Specific snow water content (kg kg-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.13.table deleted file mode 100644 index 8aaeeb30..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.13.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (code table (4.205) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.14.table deleted file mode 100644 index 230b0bb6..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.14.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -2 2 Total column integrated ozone (Dobson) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.15.table deleted file mode 100644 index 51ea2499..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.15.table +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets - validation (dB) -10 10 Reflectivity of cloud ice - validation (dB) -11 11 Reflectivity of snow - validation (dB) -12 12 Reflectivity of rain - validation (dB) -13 13 Reflectivity of graupel - validation (dB) -14 14 Reflectivity of hail - validation (dB) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.16.table deleted file mode 100644 index 0b8fbd46..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.16.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.18.table deleted file mode 100644 index 4497f31d..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.18.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.19.table deleted file mode 100644 index a1ae140e..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.19.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (code table (4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (code table (4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (code table (4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (code table (4.209) -13 13 Contrail intensity (code table (4.210) -14 14 Contrail engine type (code table (4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (see Note 4) (%) -24 24 Convective turbulent kinetic energy - validation (J kg-1) -25 25 Weather Interpretation ww (WMO) - validation (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.190.table deleted file mode 100644 index 378f9705..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.190.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITTIA5) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.191.table deleted file mode 100644 index feef9300..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.191.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude - validation (deg N) -2 2 Geographical longitude - validation (deg E) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.2.table deleted file mode 100644 index efc60025..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -31 31 Turbulent diffusion coefficient for momentum (m2 s-1) -32 32 eta coordinate vertical velocity (s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.20.table deleted file mode 100644 index e2846656..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.20.table +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (see Note 1) (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg kg-1) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol mol-1) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (see Note 1) (mol s-1) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (see Note 1) (mol s-1) -100 100 Surface area density (aerosol) (m-1) -101 101 Atmosphere optical thickness (m) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.3.table deleted file mode 100644 index 31f31d2e..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.3.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa s-1) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (Wm-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.4.table deleted file mode 100644 index 365fd98a..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.5.table deleted file mode 100644 index 71932574..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.5.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.6.table deleted file mode 100644 index ca5688e2..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.6.table +++ /dev/null @@ -1,36 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (code table (4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (code table (4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base - validation (m) -27 27 Height of convective cloud top - validation (m) -28 28 Number concentration of cloud droplets - validation (kg-1) -29 29 Number concentration of cloud ice - validation (kg-1) -30 30 Number density of cloud droplets - validation (m-3) -31 31 Number density of cloud ice - validation (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/6/4.2.0.7.table deleted file mode 100644 index 7370541f..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.0.7.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index - validation (K) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.1.0.table deleted file mode 100644 index babfba39..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.1.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (code table 4.215) -3 3 Elevation of snow covered terrain (code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.1.1.table deleted file mode 100644 index 56bf798d..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.0.table deleted file mode 100644 index b40fa431..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.0.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (Degree true) -15 15 Mean period of combined wind waves and swell (s) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.1.table deleted file mode 100644 index d5514d76..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.191.table deleted file mode 100644 index 72cf1ce9..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product discipline 10 - Oceanographic products, parameter category 191: miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3 s-1) -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.2.table deleted file mode 100644 index ff6e22bf..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -8 8 Ice temperature (K) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.3.table deleted file mode 100644 index 949e0507..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.3.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.10.4.table deleted file mode 100644 index 3158142d..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.10.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/6/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.0.table deleted file mode 100644 index f7fa333f..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.2.0.table +++ /dev/null @@ -1,35 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Land cover (1=land, 0=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (code table (4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index - validation (Numeric) -29 29 Evergreen forest - validation (Numeric) -30 30 Deciduous forest - validation (Numeric) -31 31 Normalized differential vegetation index (NDVI) - validation (Numeric) -32 32 Root depth of vegetation - validation (M) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.3.table deleted file mode 100644 index c46c49d9..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.2.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Soil type (code table (4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil Temperature - validation (K) -19 19 Soil moisture - validation (kg m-3) -20 20 Column-integrated soil moisture - validation (kg m-2) -21 21 Soil ice - validation (kg m-3) -22 22 Column-integrated soil ice - validation (kg m-2) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/6/4.2.2.4.table deleted file mode 100644 index 3731ee40..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.2.4.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Fire Outlook Critical Risk Area (%) -1 1 Fire Outlook Extreme Critical Risk Area (%) -2 2 Fire Outlook Dry Lightning Area (%) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/6/4.2.3.0.table deleted file mode 100644 index 9d2ea212..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.3.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/6/4.2.3.1.table deleted file mode 100644 index f9860e67..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.2.3.1.table +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -6 6 Number of pixels used (Numeric) -7 7 Solar zenith angle (Degree) -8 8 Relative azimuth angle (Degree) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (s-1) -19 19 Wind speed (m s-1) -20 20 Aerosol optical thickness at 0.635 um (-) -21 21 Aerosol optical thickness at 0.810 um (-) -22 22 Aerosol optical thickness at 1.640 um (-) -23 23 Angstrom coefficient (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/6/4.201.table b/eccodes/definitions.save/grib2/tables/6/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.202.table b/eccodes/definitions.save/grib2/tables/6/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.203.table b/eccodes/definitions.save/grib2/tables/6/4.203.table deleted file mode 100644 index 057f4091..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 4.203, Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.204.table b/eccodes/definitions.save/grib2/tables/6/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.205.table b/eccodes/definitions.save/grib2/tables/6/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.206.table b/eccodes/definitions.save/grib2/tables/6/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.207.table b/eccodes/definitions.save/grib2/tables/6/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.208.table b/eccodes/definitions.save/grib2/tables/6/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.209.table b/eccodes/definitions.save/grib2/tables/6/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.210.table b/eccodes/definitions.save/grib2/tables/6/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.211.table b/eccodes/definitions.save/grib2/tables/6/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.212.table b/eccodes/definitions.save/grib2/tables/6/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.213.table b/eccodes/definitions.save/grib2/tables/6/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.215.table b/eccodes/definitions.save/grib2/tables/6/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.216.table b/eccodes/definitions.save/grib2/tables/6/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.217.table b/eccodes/definitions.save/grib2/tables/6/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.218.table b/eccodes/definitions.save/grib2/tables/6/4.218.table deleted file mode 100644 index 6c436dfc..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.218.table +++ /dev/null @@ -1,35 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.219.table b/eccodes/definitions.save/grib2/tables/6/4.219.table deleted file mode 100644 index ead9d6b7..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.219.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.220.table b/eccodes/definitions.save/grib2/tables/6/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.221.table b/eccodes/definitions.save/grib2/tables/6/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.222.table b/eccodes/definitions.save/grib2/tables/6/4.222.table deleted file mode 100644 index a4790257..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.222.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.223.table b/eccodes/definitions.save/grib2/tables/6/4.223.table deleted file mode 100644 index d7205dc9..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.230.table b/eccodes/definitions.save/grib2/tables/6/4.230.table deleted file mode 100644 index 7bcbe304..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.230.table +++ /dev/null @@ -1,117 +0,0 @@ -#Code figure Code figure Meaning -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) -10500 10500 Dimethyl sulphide -#10501-20000 10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen -60005 60005 Total inorganic chlorine -60006 60006 Total inorganic bromine -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped Alkanes -60010 60010 Lumped Alkenes -60011 60011 Lumped Aromatic Compounds -60012 60012 Lumped Terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.3.table b/eccodes/definitions.save/grib2/tables/6/4.3.table deleted file mode 100644 index 47bccd26..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.4.table b/eccodes/definitions.save/grib2/tables/6/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.5.table b/eccodes/definitions.save/grib2/tables/6/4.5.table deleted file mode 100644 index a475587a..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.5.table +++ /dev/null @@ -1,38 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.6.table b/eccodes/definitions.save/grib2/tables/6/4.6.table deleted file mode 100644 index 300113b0..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.6.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.7.table b/eccodes/definitions.save/grib2/tables/6/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.8.table b/eccodes/definitions.save/grib2/tables/6/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.9.table b/eccodes/definitions.save/grib2/tables/6/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/4.91.table b/eccodes/definitions.save/grib2/tables/6/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib2/tables/6/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.0.table b/eccodes/definitions.save/grib2/tables/6/5.0.table deleted file mode 100644 index 62cc4a47..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.0.table +++ /dev/null @@ -1,19 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing diff --git a/eccodes/definitions.save/grib2/tables/6/5.1.table b/eccodes/definitions.save/grib2/tables/6/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.2.table b/eccodes/definitions.save/grib2/tables/6/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.3.table b/eccodes/definitions.save/grib2/tables/6/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.4.table b/eccodes/definitions.save/grib2/tables/6/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.40.table b/eccodes/definitions.save/grib2/tables/6/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.40000.table b/eccodes/definitions.save/grib2/tables/6/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.5.table b/eccodes/definitions.save/grib2/tables/6/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.50002.table b/eccodes/definitions.save/grib2/tables/6/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/6/5.6.table b/eccodes/definitions.save/grib2/tables/6/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.7.table b/eccodes/definitions.save/grib2/tables/6/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.8.table b/eccodes/definitions.save/grib2/tables/6/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/5.9.table b/eccodes/definitions.save/grib2/tables/6/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/6/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/6/6.0.table b/eccodes/definitions.save/grib2/tables/6/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/6/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/6/stepType.table b/eccodes/definitions.save/grib2/tables/6/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/6/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/7/0.0.table b/eccodes/definitions.save/grib2/tables/7/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib2/tables/7/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/1.0.table b/eccodes/definitions.save/grib2/tables/7/1.0.table deleted file mode 100644 index 7ccb0e2a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Pre-operational to be implemented by next amendment -# 9-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/7/1.1.table b/eccodes/definitions.save/grib2/tables/7/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib2/tables/7/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/1.2.table b/eccodes/definitions.save/grib2/tables/7/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib2/tables/7/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/1.3.table b/eccodes/definitions.save/grib2/tables/7/1.3.table deleted file mode 100644 index 14667f9b..00000000 --- a/eccodes/definitions.save/grib2/tables/7/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/1.4.table b/eccodes/definitions.save/grib2/tables/7/1.4.table deleted file mode 100644 index 997bfda9..00000000 --- a/eccodes/definitions.save/grib2/tables/7/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.0.table b/eccodes/definitions.save/grib2/tables/7/3.0.table deleted file mode 100644 index b01b00c6..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/7/3.1.table b/eccodes/definitions.save/grib2/tables/7/3.1.table deleted file mode 100644 index ee641239..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.10.table b/eccodes/definitions.save/grib2/tables/7/3.10.table deleted file mode 100644 index e4a446b9..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/7/3.11.table b/eccodes/definitions.save/grib2/tables/7/3.11.table deleted file mode 100644 index b82a94f2..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.15.table b/eccodes/definitions.save/grib2/tables/7/3.15.table deleted file mode 100644 index 337bdce9..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.15.table +++ /dev/null @@ -1,17 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -20 20 Temperature (K) -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (see Note 1) (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height (gpm) -160 160 Depth below sea level (m) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.2.table b/eccodes/definitions.save/grib2/tables/7/3.2.table deleted file mode 100644 index 522e8731..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -# 9-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.20.table b/eccodes/definitions.save/grib2/tables/7/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.21.table b/eccodes/definitions.save/grib2/tables/7/3.21.table deleted file mode 100644 index 46030353..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.3.table b/eccodes/definitions.save/grib2/tables/7/3.3.table deleted file mode 100644 index e662b20f..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/7/3.4.table b/eccodes/definitions.save/grib2/tables/7/3.4.table deleted file mode 100644 index 72e3343b..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/7/3.5.table b/eccodes/definitions.save/grib2/tables/7/3.5.table deleted file mode 100644 index 72adfd74..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/7/3.6.table b/eccodes/definitions.save/grib2/tables/7/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/7/3.7.table b/eccodes/definitions.save/grib2/tables/7/3.7.table deleted file mode 100644 index 5937ea14..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.7.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/3.8.table b/eccodes/definitions.save/grib2/tables/7/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib2/tables/7/3.9.table b/eccodes/definitions.save/grib2/tables/7/3.9.table deleted file mode 100644 index 5edac03a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/7/4.0.table b/eccodes/definitions.save/grib2/tables/7/4.0.table deleted file mode 100644 index 97223a78..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.0.table +++ /dev/null @@ -1,53 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -#16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -#33-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -#52-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -#92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -#1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -#1102-32767 Reserved -#32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.0.table b/eccodes/definitions.save/grib2/tables/7/4.1.0.table deleted file mode 100644 index 65d69469..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.0.table +++ /dev/null @@ -1,28 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.1.table b/eccodes/definitions.save/grib2/tables/7/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.10.table b/eccodes/definitions.save/grib2/tables/7/4.1.10.table deleted file mode 100644 index 9c1bfc31..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.10.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.192.table b/eccodes/definitions.save/grib2/tables/7/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.2.table b/eccodes/definitions.save/grib2/tables/7/4.1.2.table deleted file mode 100644 index 34e0423b..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 2: Land Surface Products -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.3.table b/eccodes/definitions.save/grib2/tables/7/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/7/4.1.table b/eccodes/definitions.save/grib2/tables/7/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.10.table b/eccodes/definitions.save/grib2/tables/7/4.10.table deleted file mode 100644 index e25f8caf..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -# 10-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.11.table b/eccodes/definitions.save/grib2/tables/7/4.11.table deleted file mode 100644 index 30b90be0..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.12.table b/eccodes/definitions.save/grib2/tables/7/4.12.table deleted file mode 100644 index 3c9d086c..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.13.table b/eccodes/definitions.save/grib2/tables/7/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.14.table b/eccodes/definitions.save/grib2/tables/7/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.15.table b/eccodes/definitions.save/grib2/tables/7/4.15.table deleted file mode 100644 index 50412802..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.15.table +++ /dev/null @@ -1,10 +0,0 @@ -0 0 Data is calculated directly from the source grid with no interpolation (see note 1) -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 2) -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point (see note 3) -#7-191 Reserved -#192-254 Reserved for Local Use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.151.table b/eccodes/definitions.save/grib2/tables/7/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.192.table b/eccodes/definitions.save/grib2/tables/7/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.0.table deleted file mode 100644 index 6ed6b944..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) - validation (K) -19 19 Turbulent transfer coefficient for heat - validation (Numeric) -20 20 Turbulent diffusion coefficient for heat - validation (m2 s-1) -#21-191 21-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.1.table deleted file mode 100644 index 95e016a2..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.1.table +++ /dev/null @@ -1,91 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age day (-) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved (-) -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio - validation (kg kg-1) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate - validation (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate - validation (kg m-2 s-1) -76 76 Convective rain rate - validation (kg m-2 s-1) -77 77 Large scale rain rate - validation (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate - validation (kg m-2 s-1) -80 80 Total Condensate - validation (kg kg-1) -81 81 Total Column-Integrated Condensate - validation (kg m-2) -82 82 Cloud Ice Mixing-Ratio - validation (kg kg-1) -83 83 Specific cloud liquid water content (kg kg-1) -84 84 Specific cloud ice water content (kg kg-1) -85 85 Specific rain water content (kg kg-1) -86 86 Specific snow water content (kg kg-1) -#87-191 87-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.13.table deleted file mode 100644 index 58f38e3d..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (code table (4.205) -#1-191 1-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.14.table deleted file mode 100644 index 23cae2c4..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -2 2 Total column integrated ozone (Dobson) -#3-191 3-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.15.table deleted file mode 100644 index a42e5b7d..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets - validation (dB) -10 10 Reflectivity of cloud ice - validation (dB) -11 11 Reflectivity of snow - validation (dB) -12 12 Reflectivity of rain - validation (dB) -13 13 Reflectivity of graupel - validation (dB) -14 14 Reflectivity of hail - validation (dB) -#15-191 15-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.16.table deleted file mode 100644 index e8a9d2be..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -#6-191 6-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.18.table deleted file mode 100644 index e6b3ab04..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -#14-191 9-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.19.table deleted file mode 100644 index 46cb8515..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.19.table +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (code table (4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (code table (4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (code table (4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (code table (4.209) -13 13 Contrail intensity (code table (4.210) -14 14 Contrail engine type (code table (4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (see Note 4) (%) -24 24 Convective turbulent kinetic energy - validation (J kg-1) -25 25 Weather Interpretation ww (WMO) - validation -26 26 Convective outlook (code table (4.224) -#27-191 26-191 Reserved -#192-254 192-254 Reserved for local use (-) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.190.table deleted file mode 100644 index faa27c53..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITTIA5) -#1-191 1-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.191.table deleted file mode 100644 index 6c40c61c..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude - validation (deg N) -2 2 Geographical longitude - validation (deg E) -#3-191 3-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.2.table deleted file mode 100644 index 8380d516..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.2.table +++ /dev/null @@ -1,37 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wind direction (from which blowing) (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity (pressure) (Pa s-1) -9 9 Vertical velocity (geometric) (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed (gust) (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -31 31 Turbulent diffusion coefficient for momentum (m2 s-1) -32 32 eta coordinate vertical velocity (s-1) -#33-191 33-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.20.table deleted file mode 100644 index ca418946..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.20.table +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (see Note 1) (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg kg-1) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -#9-49 9-49 Reserved (-) -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol mol-1) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (see Note 1) (mol s-1) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (see Note 1) (mol s-1) -#59-99 59-99 Reserved (-) -100 100 Surface area density (aerosol) (m-1) -101 101 Atmosphere optical thickness (m) -#102-191 102-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.3.table deleted file mode 100644 index ade05293..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.3.table +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa s-1) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (Wm-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -#26-191 26-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.4.table deleted file mode 100644 index d22ce42d..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -#13-49 13-49 Reserved (-) -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -#52-191 52-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.5.table deleted file mode 100644 index 6128eb9c..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -#7-191 7-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.6.table deleted file mode 100644 index b7f10a43..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.6.table +++ /dev/null @@ -1,39 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (code table (4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (code table (4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base - validation (m) -#26-31 26-31 Reserved (-) -27 27 Height of convective cloud top - validation (m) -28 28 Number concentration of cloud droplets - validation (kg-1) -29 29 Number concentration of cloud ice - validation (kg-1) -30 30 Number density of cloud droplets - validation (m-3) -31 31 Number density of cloud ice - validation (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -#34-191 34-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/7/4.2.0.7.table deleted file mode 100644 index bced218f..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index - validation (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -#16-191 14-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.1.0.table deleted file mode 100644 index 277ecf6d..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (code table 4.215) -3 3 Elevation of snow covered terrain (code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -#7-191 7-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.1.1.table deleted file mode 100644 index 979e9455..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation). (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -#3-191 3-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.0.table deleted file mode 100644 index 7671a7a5..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (Degree true) -15 15 Mean period of combined wind waves and swell (s) -#16-191 16-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.1.table deleted file mode 100644 index cc238fbb..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -#4-191 4-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.191.table deleted file mode 100644 index 72cf1ce9..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product discipline 10 - Oceanographic products, parameter category 191: miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3 s-1) -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.2.table deleted file mode 100644 index bf3dd9f1..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -#10-191 9-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.3.table deleted file mode 100644 index 62b2a8e8..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -#2-191 2-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.10.4.table deleted file mode 100644 index a0d465e2..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.10.4.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -#7-191 4-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/7/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.0.table deleted file mode 100644 index 948baa63..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Land cover (1=land, 0=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (code table (4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index - validation (Numeric) -29 29 Evergreen forest - validation (Numeric) -30 30 Deciduous forest - validation (Numeric) -31 31 Normalized differential vegetation index (NDVI) - validation (Numeric) -32 32 Root depth of vegetation - validation (M) -#33-191 33-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.3.table deleted file mode 100644 index 8f377590..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Soil type (code table (4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil Temperature - validation (K) -19 19 Soil moisture - validation (kg m-3) -20 20 Column-integrated soil moisture - validation (kg m-2) -21 21 Soil ice - validation (kg m-3) -22 22 Column-integrated soil ice - validation (kg m-2) -#23-191 23-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/7/4.2.2.4.table deleted file mode 100644 index db102b02..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.2.4.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Fire outlook (code table (4.224) -1 1 Fire outlook due to dry thunderstorm (code table (4.224) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/7/4.2.3.0.table deleted file mode 100644 index 119edb30..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -#10-191 10-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/7/4.2.3.1.table deleted file mode 100644 index d0a16c12..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -6 6 Number of pixels used (Numeric) -7 7 Solar zenith angle (Degree) -8 8 Relative azimuth angle (Degree) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (s-1) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved (-) -19 19 Wind speed (m s-1) -20 20 Aerosol optical thickness at 0.635 um (-) -21 21 Aerosol optical thickness at 0.810 um (-) -22 22 Aerosol optical thickness at 1.640 um (-) -23 23 Angstrom coefficient (-) -#24-191 24-191 Reserved (-) -#192-254 192-254 Reserved for local use (-) -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/7/4.201.table b/eccodes/definitions.save/grib2/tables/7/4.201.table deleted file mode 100644 index 39e5033c..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.201.table +++ /dev/null @@ -1,72 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -# 6-191 Reserved -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.202.table b/eccodes/definitions.save/grib2/tables/7/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.203.table b/eccodes/definitions.save/grib2/tables/7/4.203.table deleted file mode 100644 index 057f4091..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 4.203, Cloud type -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.204.table b/eccodes/definitions.save/grib2/tables/7/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.205.table b/eccodes/definitions.save/grib2/tables/7/4.205.table deleted file mode 100644 index e7a0208f..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Presence of aerosol - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.206.table b/eccodes/definitions.save/grib2/tables/7/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.207.table b/eccodes/definitions.save/grib2/tables/7/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.208.table b/eccodes/definitions.save/grib2/tables/7/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.209.table b/eccodes/definitions.save/grib2/tables/7/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.210.table b/eccodes/definitions.save/grib2/tables/7/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.211.table b/eccodes/definitions.save/grib2/tables/7/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.212.table b/eccodes/definitions.save/grib2/tables/7/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.213.table b/eccodes/definitions.save/grib2/tables/7/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.215.table b/eccodes/definitions.save/grib2/tables/7/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.216.table b/eccodes/definitions.save/grib2/tables/7/4.216.table deleted file mode 100644 index a1e12c20..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.216.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.217.table b/eccodes/definitions.save/grib2/tables/7/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.218.table b/eccodes/definitions.save/grib2/tables/7/4.218.table deleted file mode 100644 index 6c436dfc..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.218.table +++ /dev/null @@ -1,35 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.219.table b/eccodes/definitions.save/grib2/tables/7/4.219.table deleted file mode 100644 index ead9d6b7..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.219.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.220.table b/eccodes/definitions.save/grib2/tables/7/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.221.table b/eccodes/definitions.save/grib2/tables/7/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.222.table b/eccodes/definitions.save/grib2/tables/7/4.222.table deleted file mode 100644 index a4790257..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.222.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.223.table b/eccodes/definitions.save/grib2/tables/7/4.223.table deleted file mode 100644 index d7205dc9..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.224.table b/eccodes/definitions.save/grib2/tables/7/4.224.table deleted file mode 100644 index 4128aea6..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# CODE TABLE 4.224, Categorical outlook -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -#9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -#12-13 Reserved -14 14 Critical risk area -#15-17 Reserved -18 18 Extremely critical risk area -#19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.230.table b/eccodes/definitions.save/grib2/tables/7/4.230.table deleted file mode 100644 index 7bcbe304..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.230.table +++ /dev/null @@ -1,117 +0,0 @@ -#Code figure Code figure Meaning -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) -10500 10500 Dimethyl sulphide -#10501-20000 10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen -60005 60005 Total inorganic chlorine -60006 60006 Total inorganic bromine -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped Alkanes -60010 60010 Lumped Alkenes -60011 60011 Lumped Aromatic Compounds -60012 60012 Lumped Terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.3.table b/eccodes/definitions.save/grib2/tables/7/4.3.table deleted file mode 100644 index 47bccd26..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.4.table b/eccodes/definitions.save/grib2/tables/7/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.5.table b/eccodes/definitions.save/grib2/tables/7/4.5.table deleted file mode 100644 index a475587a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.5.table +++ /dev/null @@ -1,38 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.6.table b/eccodes/definitions.save/grib2/tables/7/4.6.table deleted file mode 100644 index 1e89185f..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.6.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.7.table b/eccodes/definitions.save/grib2/tables/7/4.7.table deleted file mode 100644 index d034c11e..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.7.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.8.table b/eccodes/definitions.save/grib2/tables/7/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.9.table b/eccodes/definitions.save/grib2/tables/7/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/4.91.table b/eccodes/definitions.save/grib2/tables/7/4.91.table deleted file mode 100644 index 16152a1b..00000000 --- a/eccodes/definitions.save/grib2/tables/7/4.91.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.91 Type of Interval - -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit -# 12-191 Reserved -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.0.table b/eccodes/definitions.save/grib2/tables/7/5.0.table deleted file mode 100644 index 62cc4a47..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.0.table +++ /dev/null @@ -1,19 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing diff --git a/eccodes/definitions.save/grib2/tables/7/5.1.table b/eccodes/definitions.save/grib2/tables/7/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.2.table b/eccodes/definitions.save/grib2/tables/7/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.3.table b/eccodes/definitions.save/grib2/tables/7/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.4.table b/eccodes/definitions.save/grib2/tables/7/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.40.table b/eccodes/definitions.save/grib2/tables/7/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.40000.table b/eccodes/definitions.save/grib2/tables/7/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.5.table b/eccodes/definitions.save/grib2/tables/7/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.50002.table b/eccodes/definitions.save/grib2/tables/7/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/7/5.6.table b/eccodes/definitions.save/grib2/tables/7/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.7.table b/eccodes/definitions.save/grib2/tables/7/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.8.table b/eccodes/definitions.save/grib2/tables/7/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/5.9.table b/eccodes/definitions.save/grib2/tables/7/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/7/6.0.table b/eccodes/definitions.save/grib2/tables/7/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib2/tables/7/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/7/stepType.table b/eccodes/definitions.save/grib2/tables/7/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/7/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/8/0.0.table b/eccodes/definitions.save/grib2/tables/8/0.0.table deleted file mode 100644 index 1d3a90b4..00000000 --- a/eccodes/definitions.save/grib2/tables/8/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/1.0.table b/eccodes/definitions.save/grib2/tables/8/1.0.table deleted file mode 100644 index dc3fcebf..00000000 --- a/eccodes/definitions.save/grib2/tables/8/1.0.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Pre-operational to be implemented by next amendment -# 10-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/8/1.1.table b/eccodes/definitions.save/grib2/tables/8/1.1.table deleted file mode 100644 index 91ef6624..00000000 --- a/eccodes/definitions.save/grib2/tables/8/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/1.2.table b/eccodes/definitions.save/grib2/tables/8/1.2.table deleted file mode 100644 index d90ad010..00000000 --- a/eccodes/definitions.save/grib2/tables/8/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/1.3.table b/eccodes/definitions.save/grib2/tables/8/1.3.table deleted file mode 100644 index 35cd6a63..00000000 --- a/eccodes/definitions.save/grib2/tables/8/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/1.4.table b/eccodes/definitions.save/grib2/tables/8/1.4.table deleted file mode 100644 index d11a335a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.0.table b/eccodes/definitions.save/grib2/tables/8/3.0.table deleted file mode 100644 index 4baed0aa..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/8/3.1.table b/eccodes/definitions.save/grib2/tables/8/3.1.table deleted file mode 100644 index ee641239..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.10.table b/eccodes/definitions.save/grib2/tables/8/3.10.table deleted file mode 100644 index 23c1cdd3..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/8/3.11.table b/eccodes/definitions.save/grib2/tables/8/3.11.table deleted file mode 100644 index 560318d1..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.15.table b/eccodes/definitions.save/grib2/tables/8/3.15.table deleted file mode 100644 index 55ca1688..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.15.table +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -# 113-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.2.table b/eccodes/definitions.save/grib2/tables/8/3.2.table deleted file mode 100644 index 3d7a4f1f..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.20.table b/eccodes/definitions.save/grib2/tables/8/3.20.table deleted file mode 100644 index 3f7ab4cc..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.21.table b/eccodes/definitions.save/grib2/tables/8/3.21.table deleted file mode 100644 index b0c77d13..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.3.table b/eccodes/definitions.save/grib2/tables/8/3.3.table deleted file mode 100644 index 5167ed6b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/8/3.4.table b/eccodes/definitions.save/grib2/tables/8/3.4.table deleted file mode 100644 index 6253896b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/8/3.5.table b/eccodes/definitions.save/grib2/tables/8/3.5.table deleted file mode 100644 index 8ccf0f13..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/8/3.6.table b/eccodes/definitions.save/grib2/tables/8/3.6.table deleted file mode 100644 index 9a2c239c..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/8/3.7.table b/eccodes/definitions.save/grib2/tables/8/3.7.table deleted file mode 100644 index 41bba832..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m>=0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.8.table b/eccodes/definitions.save/grib2/tables/8/3.8.table deleted file mode 100644 index 4e811917..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/3.9.table b/eccodes/definitions.save/grib2/tables/8/3.9.table deleted file mode 100644 index f35b7ca5..00000000 --- a/eccodes/definitions.save/grib2/tables/8/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/8/4.0.table b/eccodes/definitions.save/grib2/tables/8/4.0.table deleted file mode 100644 index faa4f59d..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.0.table +++ /dev/null @@ -1,53 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -# 33-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.0.table b/eccodes/definitions.save/grib2/tables/8/4.1.0.table deleted file mode 100644 index 36110886..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.1.table b/eccodes/definitions.save/grib2/tables/8/4.1.1.table deleted file mode 100644 index 29f1dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.10.table b/eccodes/definitions.save/grib2/tables/8/4.1.10.table deleted file mode 100644 index 9c8c92b1..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.192.table b/eccodes/definitions.save/grib2/tables/8/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.2.table b/eccodes/definitions.save/grib2/tables/8/4.1.2.table deleted file mode 100644 index b90201c6..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.3.table b/eccodes/definitions.save/grib2/tables/8/4.1.3.table deleted file mode 100644 index 3c947b13..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/8/4.1.table b/eccodes/definitions.save/grib2/tables/8/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.10.table b/eccodes/definitions.save/grib2/tables/8/4.10.table deleted file mode 100644 index 0e517087..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.10.table +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -# 11-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.11.table b/eccodes/definitions.save/grib2/tables/8/4.11.table deleted file mode 100644 index 1257d1b0..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.12.table b/eccodes/definitions.save/grib2/tables/8/4.12.table deleted file mode 100644 index e06a3be5..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.13.table b/eccodes/definitions.save/grib2/tables/8/4.13.table deleted file mode 100644 index 107ace60..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.14.table b/eccodes/definitions.save/grib2/tables/8/4.14.table deleted file mode 100644 index 24a22892..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.15.table b/eccodes/definitions.save/grib2/tables/8/4.15.table deleted file mode 100644 index 97cdcd2e..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.151.table b/eccodes/definitions.save/grib2/tables/8/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.192.table b/eccodes/definitions.save/grib2/tables/8/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.0.table deleted file mode 100644 index debc0a6f..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew-point temperature (K) -7 7 Dew-point depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew-point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.1.table deleted file mode 100644 index 1922792a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total Condensate (kg/kg) -81 81 Total Column-Integrated Condensate (kg m-2) -82 82 Cloud Ice Mixing-Ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rain water content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.13.table deleted file mode 100644 index b9979f0d..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.14.table deleted file mode 100644 index 4a2a4e12..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.15.table deleted file mode 100644 index a7fa034b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically-integrated liquid (kg/m) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.16.table deleted file mode 100644 index 39215ab2..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.18.table deleted file mode 100644 index 30060fd2..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.19.table deleted file mode 100644 index 1bbbd424..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.19.table +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather Interpretation ww (WMO) (-) -26 26 Convective outlook (Code table 4.224) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.190.table deleted file mode 100644 index 39fb5574..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.191.table deleted file mode 100644 index 81230c0e..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.2.table deleted file mode 100644 index 58428f66..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.2.table +++ /dev/null @@ -1,38 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -# 34-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.20.table deleted file mode 100644 index d0ef4b3a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Atmosphere optical thickness (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.3.table deleted file mode 100644 index b337cbd0..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.3.table +++ /dev/null @@ -1,30 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -# 26-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.4.table deleted file mode 100644 index fea4cafc..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.5.table deleted file mode 100644 index aae853bf..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.6.table deleted file mode 100644 index 462727d0..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.6.table +++ /dev/null @@ -1,38 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number concentration of cloud droplets (/kg) -29 29 Number concentration of cloud ice (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -# 34-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/8/4.2.0.7.table deleted file mode 100644 index 7a7d2008..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.0.table deleted file mode 100644 index bf1e3e93..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.1.table deleted file mode 100644 index cb5117dc..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.1.2.table deleted file mode 100644 index 499991d5..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar attenuation coefficient of water with respect to solar radiation (m-1) -12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.0.table deleted file mode 100644 index eb9d1fa6..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.0.table +++ /dev/null @@ -1,53 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) (deg) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) (deg) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) (deg) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) (deg) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) (deg) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m s-1) -18 18 Wave stress (N m-2) -19 19 Normalised wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m s-1) -22 22 v-component surface Stokes drift (m s-1) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of the wind waves (s) -27 27 Inverse mean frequency of the total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of the wind waves (s) -30 30 Mean zero-crossing period of the total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of the wind waves (-) -33 33 Directional width of the total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of the wind waves (s) -36 36 Peak period of the total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10 metre neutral wind speed over waves (m s-1) -41 41 10 metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (s-1) -46 46 2-dim spectral energy density (m2 s) -47 47 Frequency spectral energy density (m2 s) -48 48 Directional spectral energy density -# 49-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.1.table deleted file mode 100644 index 5a33bac5..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (degree true) (deg) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.191.table deleted file mode 100644 index 14085ac9..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.2.table deleted file mode 100644 index a69b2622..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) (deg) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.3.table deleted file mode 100644 index 112af09d..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.10.4.table deleted file mode 100644 index d80a3278..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (m-1) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/8/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.0.table deleted file mode 100644 index b440b942..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest (Numeric) -30 30 Deciduous forest (Numeric) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -# 33-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.3.table deleted file mode 100644 index 80113a4b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil Temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/8/4.2.2.4.table deleted file mode 100644 index 9731abe8..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.2.4.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/8/4.2.3.0.table deleted file mode 100644 index 254e56bc..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/8/4.2.3.1.table deleted file mode 100644 index 16eee69c..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.201.table b/eccodes/definitions.save/grib2/tables/8/4.201.table deleted file mode 100644 index ebb698b3..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.201.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.202.table b/eccodes/definitions.save/grib2/tables/8/4.202.table deleted file mode 100644 index 943c03f6..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.203.table b/eccodes/definitions.save/grib2/tables/8/4.203.table deleted file mode 100644 index fce5a15b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.204.table b/eccodes/definitions.save/grib2/tables/8/4.204.table deleted file mode 100644 index 51d1cecc..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.205.table b/eccodes/definitions.save/grib2/tables/8/4.205.table deleted file mode 100644 index 8d425ab9..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.206.table b/eccodes/definitions.save/grib2/tables/8/4.206.table deleted file mode 100644 index 0be7fd4f..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.207.table b/eccodes/definitions.save/grib2/tables/8/4.207.table deleted file mode 100644 index fde9eb47..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.208.table b/eccodes/definitions.save/grib2/tables/8/4.208.table deleted file mode 100644 index 196becaa..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.209.table b/eccodes/definitions.save/grib2/tables/8/4.209.table deleted file mode 100644 index 351c0f43..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Stable -2 2 Mechanically-driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.210.table b/eccodes/definitions.save/grib2/tables/8/4.210.table deleted file mode 100644 index 1c00b8c6..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.211.table b/eccodes/definitions.save/grib2/tables/8/4.211.table deleted file mode 100644 index 66ef656f..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.212.table b/eccodes/definitions.save/grib2/tables/8/4.212.table deleted file mode 100644 index c59bd24e..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.213.table b/eccodes/definitions.save/grib2/tables/8/4.213.table deleted file mode 100644 index 0f5de010..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.213.table +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -12 12 Loam -13 13 Peat -14 14 Rock -15 15 Ice -16 16 Water -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.215.table b/eccodes/definitions.save/grib2/tables/8/4.215.table deleted file mode 100644 index 46088821..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.216.table b/eccodes/definitions.save/grib2/tables/8/4.216.table deleted file mode 100644 index cc62ca5e..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.217.table b/eccodes/definitions.save/grib2/tables/8/4.217.table deleted file mode 100644 index 51a263a9..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.218.table b/eccodes/definitions.save/grib2/tables/8/4.218.table deleted file mode 100644 index d4b2ab84..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.219.table b/eccodes/definitions.save/grib2/tables/8/4.219.table deleted file mode 100644 index f10ce468..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.220.table b/eccodes/definitions.save/grib2/tables/8/4.220.table deleted file mode 100644 index 9c957eb0..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.221.table b/eccodes/definitions.save/grib2/tables/8/4.221.table deleted file mode 100644 index 5466929c..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.222.table b/eccodes/definitions.save/grib2/tables/8/4.222.table deleted file mode 100644 index c54194e2..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.223.table b/eccodes/definitions.save/grib2/tables/8/4.223.table deleted file mode 100644 index b6a9be13..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing value diff --git a/eccodes/definitions.save/grib2/tables/8/4.224.table b/eccodes/definitions.save/grib2/tables/8/4.224.table deleted file mode 100644 index af846f84..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.230.table b/eccodes/definitions.save/grib2/tables/8/4.230.table deleted file mode 100644 index afd1ab8d..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.230.table +++ /dev/null @@ -1,415 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -#38-9999 Reserved -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -#60017-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.233.table b/eccodes/definitions.save/grib2/tables/8/4.233.table deleted file mode 100644 index c5e8f2b4..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.3.table b/eccodes/definitions.save/grib2/tables/8/4.3.table deleted file mode 100644 index 68e2cc83..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.4.table b/eccodes/definitions.save/grib2/tables/8/4.4.table deleted file mode 100644 index df5272d2..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.5.table b/eccodes/definitions.save/grib2/tables/8/4.5.table deleted file mode 100644 index 91aabb83..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.5.table +++ /dev/null @@ -1,48 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid coordinate -# 114-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level m -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.6.table b/eccodes/definitions.save/grib2/tables/8/4.6.table deleted file mode 100644 index 54f2993c..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.7.table b/eccodes/definitions.save/grib2/tables/8/4.7.table deleted file mode 100644 index 23e0d457..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.8.table b/eccodes/definitions.save/grib2/tables/8/4.8.table deleted file mode 100644 index 37a6cf76..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.9.table b/eccodes/definitions.save/grib2/tables/8/4.9.table deleted file mode 100644 index 19e64a3d..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/4.91.table b/eccodes/definitions.save/grib2/tables/8/4.91.table deleted file mode 100644 index 05c4579b..00000000 --- a/eccodes/definitions.save/grib2/tables/8/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit. -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.0.table b/eccodes/definitions.save/grib2/tables/8/5.0.table deleted file mode 100644 index c7995a96..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -#42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -#52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.1.table b/eccodes/definitions.save/grib2/tables/8/5.1.table deleted file mode 100644 index 100d4106..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.2.table b/eccodes/definitions.save/grib2/tables/8/5.2.table deleted file mode 100644 index 4d0808be..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.3.table b/eccodes/definitions.save/grib2/tables/8/5.3.table deleted file mode 100644 index 705fa652..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.4.table b/eccodes/definitions.save/grib2/tables/8/5.4.table deleted file mode 100644 index 8133367a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.40.table b/eccodes/definitions.save/grib2/tables/8/5.40.table deleted file mode 100644 index 0d56ad0e..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.40000.table b/eccodes/definitions.save/grib2/tables/8/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.5.table b/eccodes/definitions.save/grib2/tables/8/5.5.table deleted file mode 100644 index 5d625dbd..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.50002.table b/eccodes/definitions.save/grib2/tables/8/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/8/5.6.table b/eccodes/definitions.save/grib2/tables/8/5.6.table deleted file mode 100644 index 5838e994..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.7.table b/eccodes/definitions.save/grib2/tables/8/5.7.table deleted file mode 100644 index b93aa813..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.8.table b/eccodes/definitions.save/grib2/tables/8/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/5.9.table b/eccodes/definitions.save/grib2/tables/8/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/8/6.0.table b/eccodes/definitions.save/grib2/tables/8/6.0.table deleted file mode 100644 index aecdc6e5..00000000 --- a/eccodes/definitions.save/grib2/tables/8/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/8/stepType.table b/eccodes/definitions.save/grib2/tables/8/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/8/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/9/0.0.table b/eccodes/definitions.save/grib2/tables/9/0.0.table deleted file mode 100644 index 1d3a90b4..00000000 --- a/eccodes/definitions.save/grib2/tables/9/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/1.0.table b/eccodes/definitions.save/grib2/tables/9/1.0.table deleted file mode 100644 index 045af30c..00000000 --- a/eccodes/definitions.save/grib2/tables/9/1.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Pre-operational to be implemented by next amendment -# 11-254 Future versions -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib2/tables/9/1.1.table b/eccodes/definitions.save/grib2/tables/9/1.1.table deleted file mode 100644 index 91ef6624..00000000 --- a/eccodes/definitions.save/grib2/tables/9/1.1.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/1.2.table b/eccodes/definitions.save/grib2/tables/9/1.2.table deleted file mode 100644 index d90ad010..00000000 --- a/eccodes/definitions.save/grib2/tables/9/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/1.3.table b/eccodes/definitions.save/grib2/tables/9/1.3.table deleted file mode 100644 index 35cd6a63..00000000 --- a/eccodes/definitions.save/grib2/tables/9/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) -5 5 THORPEX Interactive Grand Global Ensemble (TIGGE) test -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/1.4.table b/eccodes/definitions.save/grib2/tables/9/1.4.table deleted file mode 100644 index d11a335a..00000000 --- a/eccodes/definitions.save/grib2/tables/9/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event probability -# 9-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.0.table b/eccodes/definitions.save/grib2/tables/9/3.0.table deleted file mode 100644 index 4baed0aa..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition (Defined by originating centre) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/9/3.1.table b/eccodes/definitions.save/grib2/tables/9/3.1.table deleted file mode 100644 index ee641239..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic projection (Can be south or north) -# 21-29 Reserved -30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) -31 31 Albers equal area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective or orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.10.table b/eccodes/definitions.save/grib2/tables/9/3.10.table deleted file mode 100644 index 23c1cdd3..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.10.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Points scan in +i direction, i.e. from pole to Equator -1 1 Points scan in -i direction, i.e. from Equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction are consecutive -# 4-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/9/3.11.table b/eccodes/definitions.save/grib2/tables/9/3.11.table deleted file mode 100644 index 560318d1..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.11.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.15.table b/eccodes/definitions.save/grib2/tables/9/3.15.table deleted file mode 100644 index 94f6c8e0..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.15.table +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-19 Reserved -20 20 Temperature (K) -# 21-99 Reserved -100 100 Pressure (Pa) -101 101 Pressure deviation from mean sea level (Pa) -102 102 Altitude above mean sea level (m) -103 103 Height above ground (m) -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface (m) -107 pt Potential temperature (theta) (K) -108 108 Pressure deviation from ground to level (Pa) -109 pv Potential vorticity (K m-2 kg-1 s-1) -110 110 Geometrical height (m) -111 111 Eta coordinate -112 112 Geopotential height (gpm) -113 113 Logarithmic hybrid coordinate -# 114-159 Reserved -160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.2.table b/eccodes/definitions.save/grib2/tables/9/3.2.table deleted file mode 100644 index 3d7a4f1f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.2.table +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Earth assumed spherical with radius = 6 367 470.0 m -1 1 Earth assumed spherical with radius specified (in m) by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6 371 229.0 m -7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer -8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS84 reference frame -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.20.table b/eccodes/definitions.save/grib2/tables/9/3.20.table deleted file mode 100644 index 3f7ab4cc..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.21.table b/eccodes/definitions.save/grib2/tables/9/3.21.table deleted file mode 100644 index b0c77d13..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.3.table b/eccodes/definitions.save/grib2/tables/9/3.3.table deleted file mode 100644 index 5167ed6b..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.3.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib2/tables/9/3.4.table b/eccodes/definitions.save/grib2/tables/9/3.4.table deleted file mode 100644 index 6253896b..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -# 5-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/9/3.5.table b/eccodes/definitions.save/grib2/tables/9/3.5.table deleted file mode 100644 index 8ccf0f13..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bipolar and symmetric diff --git a/eccodes/definitions.save/grib2/tables/9/3.6.table b/eccodes/definitions.save/grib2/tables/9/3.6.table deleted file mode 100644 index 9a2c239c..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib2/tables/9/3.7.table b/eccodes/definitions.save/grib2/tables/9/3.7.table deleted file mode 100644 index 65693989..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m>=0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.8.table b/eccodes/definitions.save/grib2/tables/9/3.8.table deleted file mode 100644 index 4e811917..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.8.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/3.9.table b/eccodes/definitions.save/grib2/tables/9/3.9.table deleted file mode 100644 index f35b7ca5..00000000 --- a/eccodes/definitions.save/grib2/tables/9/3.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e. counter-clockwise) orientation -# 2-8 Reserved diff --git a/eccodes/definitions.save/grib2/tables/9/4.0.table b/eccodes/definitions.save/grib2/tables/9/4.0.table deleted file mode 100644 index faa4f59d..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.0.table +++ /dev/null @@ -1,53 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -15 15 Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -# 16-19 Reserved -20 20 Radar product -# 21-29 Reserved -30 30 Satellite product (deprecated) -31 31 Satellite product -32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -# 33-39 Reserved -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non continuous time interval for aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -# 52-90 Reserved -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# 92-253 Reserved -254 254 CCITT IA5 character string -# 255-999 Reserved -1000 1000 Cross-section of analysis and forecast at a point in time -1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude -# 1003-1099 Reserved -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -# 1102-32767 Reserved -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.0.table b/eccodes/definitions.save/grib2/tables/9/4.1.0.table deleted file mode 100644 index 36110886..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.0.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave radiation -5 5 Long-wave radiation -6 6 Cloud -7 7 Thermodynamic stability indices -8 8 Kinematic stability indices -9 9 Temperature probabilities -10 10 Moisture probabilities -11 11 Momentum probabilities -12 12 Mass probabilities -13 13 Aerosols -14 14 Trace gases (e.g. ozone, CO2) -15 15 Radar -16 16 Forecast radar imagery -17 17 Electrodynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical constituents -# 21-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.1.table b/eccodes/definitions.save/grib2/tables/9/4.1.1.table deleted file mode 100644 index 29f1dec7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.10.table b/eccodes/definitions.save/grib2/tables/9/4.1.10.table deleted file mode 100644 index 9c8c92b1..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.10.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Sub-surface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.192.table b/eccodes/definitions.save/grib2/tables/9/4.1.192.table deleted file mode 100644 index c428acab..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.192.table +++ /dev/null @@ -1,4 +0,0 @@ -#Discipline 192: ECMWF local parameters -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.2.table b/eccodes/definitions.save/grib2/tables/9/4.1.2.table deleted file mode 100644 index b90201c6..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.3.table b/eccodes/definitions.save/grib2/tables/9/4.1.3.table deleted file mode 100644 index 3c947b13..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.3.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib2/tables/9/4.1.table b/eccodes/definitions.save/grib2/tables/9/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.10.table b/eccodes/definitions.save/grib2/tables/9/4.10.table deleted file mode 100644 index 0e517087..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.10.table +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (temporal variance) -8 8 Difference (value at the start of time range minus value at the end) -9 ratio Ratio -10 10 Standardized anomaly -# 11-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.11.table b/eccodes/definitions.save/grib2/tables/9/4.11.table deleted file mode 100644 index 1257d1b0..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.11.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.12.table b/eccodes/definitions.save/grib2/tables/9/4.12.table deleted file mode 100644 index e06a3be5..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.12.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Maintenance mode -1 1 Clear air -2 2 Precipitation -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.13.table b/eccodes/definitions.save/grib2/tables/9/4.13.table deleted file mode 100644 index 107ace60..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No quality control applied -1 1 Quality control applied -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.14.table b/eccodes/definitions.save/grib2/tables/9/4.14.table deleted file mode 100644 index 24a22892..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.14.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No clutter filter used -1 1 Clutter filter used -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.15.table b/eccodes/definitions.save/grib2/tables/9/4.15.table deleted file mode 100644 index 97cdcd2e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.15.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Data is calculated directly from the source grid with no interpolation -1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point -4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.151.table b/eccodes/definitions.save/grib2/tables/9/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.192.table b/eccodes/definitions.save/grib2/tables/9/4.192.table deleted file mode 100644 index e1fd9159..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.192.table +++ /dev/null @@ -1,4 +0,0 @@ -1 1 first -2 2 second -3 3 third -4 4 fourth diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.0.table deleted file mode 100644 index debc0a6f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.0.table +++ /dev/null @@ -1,25 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew-point temperature (K) -7 7 Dew-point depression (or deficit) (K) -8 8 Lapse rate (K/m) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew-point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin temperature (K) -18 18 Snow temperature (top of snow) (K) -19 19 Turbulent transfer coefficient for heat (Numeric) -20 20 Turbulent diffusion coefficient for heat (m2/s) -# 21-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.1.table deleted file mode 100644 index 1922792a..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.1.table +++ /dev/null @@ -1,95 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Specific humidity (kg/kg) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg/kg) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large-scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large-scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (d) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (Code table 4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg/kg) -22 22 Cloud mixing ratio (kg/kg) -23 23 Ice water mixing ratio (kg/kg) -24 24 Rain mixing ratio (kg/kg) -25 25 Snow mixing ratio (kg/kg) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category (Code table 4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -47 47 Large scale water precipitation (non-convective) (kg m-2) -48 48 Convective water precipitation (kg m-2) -49 49 Total water precipitation (kg m-2) -50 50 Total snow precipitation (kg m-2) -51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m/s) -58 58 Convective snowfall rate (m/s) -59 59 Large scale snowfall rate (m/s) -60 60 Snow depth water equivalent (kg m-2) -61 61 Snow density (kg m-3) -62 62 Snow evaporation (kg m-2) -63 63 Reserved -64 64 Total column integrated water vapour (kg m-2) -65 65 Rain precipitation rate (kg m-2 s-1) -66 66 Snow precipitation rate (kg m-2 s-1) -67 67 Freezing rain precipitation rate (kg m-2 s-1) -68 68 Ice pellets precipitation rate (kg m-2 s-1) -69 69 Total column integrated cloud water (kg m-2) -70 70 Total column integrated cloud ice (kg m-2) -71 71 Hail mixing ratio (kg/kg) -72 72 Total column integrated hail (kg m-2) -73 73 Hail precipitation rate (kg m-2 s-1) -74 74 Total column integrated graupel (kg m-2) -75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) -76 76 Convective rain rate (kg m-2 s-1) -77 77 Large scale rain rate (kg m-2 s-1) -78 78 Total column integrated water (all components including precipitation) (kg m-2) -79 79 Evaporation rate (kg m-2 s-1) -80 80 Total Condensate (kg/kg) -81 81 Total Column-Integrated Condensate (kg m-2) -82 82 Cloud Ice Mixing-Ratio (kg/kg) -83 83 Specific cloud liquid water content (kg/kg) -84 84 Specific cloud ice water content (kg/kg) -85 85 Specific rain water content (kg/kg) -86 86 Specific snow water content (kg/kg) -# 87-89 Reserved -90 90 Total kinematic moisture flux (kg kg-1 m s-1) -91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) -92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) -# 93-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.13.table deleted file mode 100644 index b9979f0d..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.13.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.14.table deleted file mode 100644 index 4a2a4e12..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.15.table deleted file mode 100644 index 895892f8..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.15.table +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically-integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -# 15-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.16.table deleted file mode 100644 index 39215ab2..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.16.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.18.table deleted file mode 100644 index 30060fd2..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.18.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.19.table deleted file mode 100644 index 5831b567..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.19.table +++ /dev/null @@ -1,32 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather (Code table 4.225) -26 26 Convective outlook (Code table 4.224) -27 27 Icing scenario (Code table 4.227) -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.190.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.190.table deleted file mode 100644 index 39fb5574..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.190.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.191.table deleted file mode 100644 index 81230c0e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.191.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Geographical latitude (deg N) -2 2 Geographical longitude (deg E) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing value diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.2.table deleted file mode 100644 index e8b59a99..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.2.table +++ /dev/null @@ -1,40 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (/s) -8 8 Vertical velocity (pressure) (Pa/s) -9 9 Vertical velocity (geometric) (m/s) -10 10 Absolute vorticity (/s) -11 11 Absolute divergence (/s) -12 12 Relative vorticity (/s) -13 13 Relative divergence (/s) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (/s) -16 16 Vertical v-component shear (/s) -17 17 Momentum flux, u-component (N m-2) -18 18 Momentum flux, v-component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m/s) -22 22 Wind speed (gust) (m/s) -23 23 u-component of wind (gust) (m/s) -24 24 v-component of wind (gust) (m/s) -25 25 Vertical speed shear (/s) -26 26 Horizontal momentum flux (N m-2) -27 27 u-component storm motion (m/s) -28 28 v-component storm motion (m/s) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m/s) -31 31 Turbulent diffusion coefficient for momentum (m2/s) -32 32 Eta coordinate vertical velocity (/s) -33 33 Wind fetch (m) -34 34 Normal wind component (m/s) -35 35 Tangential wind component (m/s) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.20.table deleted file mode 100644 index cc2dbcc5..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.20.table +++ /dev/null @@ -1,42 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (Sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -# 60-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (m-1) -106 106 Aerosol absorption coefficient (m-1) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (m-1) -110 110 Aerosol lidar extinction from the ground (m-1) -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.3.table deleted file mode 100644 index f718c6ea..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.3.table +++ /dev/null @@ -1,31 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -11 11 Altimeter setting (Pa) -12 12 Thickness (m) -13 13 Pressure altitude (m) -14 14 Density altitude (m) -15 15 5-wave geopotential height (gpm) -16 16 Zonal flux of gravity wave stress (N m-2) -17 17 Meridional flux of gravity wave stress (N m-2) -18 18 Planetary boundary layer height (m) -19 19 5-wave geopotential height anomaly (gpm) -20 20 Standard deviation of sub-grid scale orography (m) -21 21 Angle of sub-gridscale orography (rad) -22 22 Slope of sub-gridscale orography (Numeric) -23 23 Gravity wave dissipation (W m-2) -24 24 Anisotropy of sub-gridscale orography (Numeric) -25 25 Natural logarithm of pressure in Pa (Numeric) -26 26 Exner pressure (Numeric) -# 27-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.4.table deleted file mode 100644 index fea4cafc..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.4.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -8 8 Upward short-wave radiation flux (W m-2) -9 9 Net short wave radiation flux (W m-2) -10 10 Photosynthetically active radiation (W m-2) -11 11 Net short-wave radiation flux, clear sky (W m-2) -12 12 Downward UV radiation (W m-2) -# 13-49 Reserved -50 50 UV index (under clear sky) (Numeric) -51 51 UV index (Numeric) -# 52-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.5.table deleted file mode 100644 index aae853bf..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Net long-wave radiation flux (surface) (W m-2) -1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) -2 2 Long-wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.6.table deleted file mode 100644 index fd4b2301..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.6.table +++ /dev/null @@ -1,40 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg/kg) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg/kg) -24 24 Sunshine (Numeric) -25 25 Horizontal extent of cumulonimbus (CB) (%) -26 26 Height of convective cloud base (m) -27 27 Height of convective cloud top (m) -28 28 Number of cloud droplets per unit mass of air (/kg) -29 29 Number of cloud ice particles per unit mass of air (/kg) -30 30 Number density of cloud droplets (m-3) -31 31 Number density of cloud ice particles (m-3) -32 32 Fraction of cloud cover (Numeric) -33 33 Sunshine duration (s) -34 34 Surface long wave effective total cloudiness (Numeric) -35 35 Surface short wave effective total cloudiness (Numeric) -# 36-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/9/4.2.0.7.table deleted file mode 100644 index 7a7d2008..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.0.7.table +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -14 14 Reserved -15 15 Updraft helicity (m2 s-2) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.0.table deleted file mode 100644 index bf1e3e93..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.1.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover (Code table 4.215) -3 3 Elevation of snow-covered terrain (Code table 4.216) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.1.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.1.table deleted file mode 100644 index cb5117dc..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.1.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.1.2.table deleted file mode 100644 index c53a175f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.1.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (m-1) -12 12 Salinity (kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.0.table deleted file mode 100644 index d4321d95..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.0.table +++ /dev/null @@ -1,50 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (degree true) (deg) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (degree true) (deg) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (degree true) (deg) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (degree true) (deg) -13 13 Secondary wave mean period (s) -14 14 Direction of combined wind waves and swell (degree true) (deg) -15 15 Mean period of combined wind waves and swell (s) -16 16 Coefficient of drag with waves (-) -17 17 Friction velocity (m s-1) -18 18 Wave stress (N m-2) -19 19 Normalised wave stress (-) -20 20 Mean square slope of waves (-) -21 21 u-component surface Stokes drift (m s-1) -22 22 v-component surface Stokes drift (m s-1) -23 23 Period of maximum individual wave height (s) -24 24 Maximum individual wave height (m) -25 25 Inverse mean wave frequency (s) -26 26 Inverse mean frequency of the wind waves (s) -27 27 Inverse mean frequency of the total swell (s) -28 28 Mean zero-crossing wave period (s) -29 29 Mean zero-crossing period of the wind waves (s) -30 30 Mean zero-crossing period of the total swell (s) -31 31 Wave directional width (-) -32 32 Directional width of the wind waves (-) -33 33 Directional width of the total swell (-) -34 34 Peak wave period (s) -35 35 Peak period of the wind waves (s) -36 36 Peak period of the total swell (s) -37 37 Altimeter wave height (m) -38 38 Altimeter corrected wave height (m) -39 39 Altimeter range relative correction (-) -40 40 10 metre neutral wind speed over waves (m s-1) -41 41 10 metre wind direction over waves (deg) -42 42 Wave energy spectrum (m2 s rad-1) -43 43 Kurtosis of the sea surface elevation due to waves (-) -44 44 Benjamin-Feir index (-) -45 45 Spectral peakedness factor (s-1) -# 46-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.1.table deleted file mode 100644 index 5a33bac5..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Current direction (degree true) (deg) -1 1 Current speed (m/s) -2 2 u-component of current (m/s) -3 3 v-component of current (m/s) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.191.table deleted file mode 100644 index 14085ac9..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -1 1 Meridional overturning stream function (m3/s) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.2.table deleted file mode 100644 index a69b2622..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (degree true) (deg) -3 3 Speed of ice drift (m/s) -4 4 u-component of ice drift (m/s) -5 5 v-component of ice drift (m/s) -6 6 Ice growth rate (m/s) -7 7 Ice divergence (/s) -8 8 Ice temperature (K) -9 9 Ice internal pressure (Pa m) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.3.table deleted file mode 100644 index 112af09d..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.10.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.10.4.table deleted file mode 100644 index d80a3278..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.10.4.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg/kg) -4 4 Ocean vertical heat diffusivity (m2 s-1) -5 5 Ocean vertical salt diffusivity (m2 s-1) -6 6 Ocean vertical momentum diffusivity (m2 s-1) -7 7 Bathymetry (m) -# 8-10 Reserved -11 11 Shape factor with respect to salinity profile (-) -12 12 Shape factor with respect to temperature profile in thermocline (-) -13 13 Attenuation coefficient of water with respect to solar radiation (m-1) -14 14 Water depth (m) -15 15 Water temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.0.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.1.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.10.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.10.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.10.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.100.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.100.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.100.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.101.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.101.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.101.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.102.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.102.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.102.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.103.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.103.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.103.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.104.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.104.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.104.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.105.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.105.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.105.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.106.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.106.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.106.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.107.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.107.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.107.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.108.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.108.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.108.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.109.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.109.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.109.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.11.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.11.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.11.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.110.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.110.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.110.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.111.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.111.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.111.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.112.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.112.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.112.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.113.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.113.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.113.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.114.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.114.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.114.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.115.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.115.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.115.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.116.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.116.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.116.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.117.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.117.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.117.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.118.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.118.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.118.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.119.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.119.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.119.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.12.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.12.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.12.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.120.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.120.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.120.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.121.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.121.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.121.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.122.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.122.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.122.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.123.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.123.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.123.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.124.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.124.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.124.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.125.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.125.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.125.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.126.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.126.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.126.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.127.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.127.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.127.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.128.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.128.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.128.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.129.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.129.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.129.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.13.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.13.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.13.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.130.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.130.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.130.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.131.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.131.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.131.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.132.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.132.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.132.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.133.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.133.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.133.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.134.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.134.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.134.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.135.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.135.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.135.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.136.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.136.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.136.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.137.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.137.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.137.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.138.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.138.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.138.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.139.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.139.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.139.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.14.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.14.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.14.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.140.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.140.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.140.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.141.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.141.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.141.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.142.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.142.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.142.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.143.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.143.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.143.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.144.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.144.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.144.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.145.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.145.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.145.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.146.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.146.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.146.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.147.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.147.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.147.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.148.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.148.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.148.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.149.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.149.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.149.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.15.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.15.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.15.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.150.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.150.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.150.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.151.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.151.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.151.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.152.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.152.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.152.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.153.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.153.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.153.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.154.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.154.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.154.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.155.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.155.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.155.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.156.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.156.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.156.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.157.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.157.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.157.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.158.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.158.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.158.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.159.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.159.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.159.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.16.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.16.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.16.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.160.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.160.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.160.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.161.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.161.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.161.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.162.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.162.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.162.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.163.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.163.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.163.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.164.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.164.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.164.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.165.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.165.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.165.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.166.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.166.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.166.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.167.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.167.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.167.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.168.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.168.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.168.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.169.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.169.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.169.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.17.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.17.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.170.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.170.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.170.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.171.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.171.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.171.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.172.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.172.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.172.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.173.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.173.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.173.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.174.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.174.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.174.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.175.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.175.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.175.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.176.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.176.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.176.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.177.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.177.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.177.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.178.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.178.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.178.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.179.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.179.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.179.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.18.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.18.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.180.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.180.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.180.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.181.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.181.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.181.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.182.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.182.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.182.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.183.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.183.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.183.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.184.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.184.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.184.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.185.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.185.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.185.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.186.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.186.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.186.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.187.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.187.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.187.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.188.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.188.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.188.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.189.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.189.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.189.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.19.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.19.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.190.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.190.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.190.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.191.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.191.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.191.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.192.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.192.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.192.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.193.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.193.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.193.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.194.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.194.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.194.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.195.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.195.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.195.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.196.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.196.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.196.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.197.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.197.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.197.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.198.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.198.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.198.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.199.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.199.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.199.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.2.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.2.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.2.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.20.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.20.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.20.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.200.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.200.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.200.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.201.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.201.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.201.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.202.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.202.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.202.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.203.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.203.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.203.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.204.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.204.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.204.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.205.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.205.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.205.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.206.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.206.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.206.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.207.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.207.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.207.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.208.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.208.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.208.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.209.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.209.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.209.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.21.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.21.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.21.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.210.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.210.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.210.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.211.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.211.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.211.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.212.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.212.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.212.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.213.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.213.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.213.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.214.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.214.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.214.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.215.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.215.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.215.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.216.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.216.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.216.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.217.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.217.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.217.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.218.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.218.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.218.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.219.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.219.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.219.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.22.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.22.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.22.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.220.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.220.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.220.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.221.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.221.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.221.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.222.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.222.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.222.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.223.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.223.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.223.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.224.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.224.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.224.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.225.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.225.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.225.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.226.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.226.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.226.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.227.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.227.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.227.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.228.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.228.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.228.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.229.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.229.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.229.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.23.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.23.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.23.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.230.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.230.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.230.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.231.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.231.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.231.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.232.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.232.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.232.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.233.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.233.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.233.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.234.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.234.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.234.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.235.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.235.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.235.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.236.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.236.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.236.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.237.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.237.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.237.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.238.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.238.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.238.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.239.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.239.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.239.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.24.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.24.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.24.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.240.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.240.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.240.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.241.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.241.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.241.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.242.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.242.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.242.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.243.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.243.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.243.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.244.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.244.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.244.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.245.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.245.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.245.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.246.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.246.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.246.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.247.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.247.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.247.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.248.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.248.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.248.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.249.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.249.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.249.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.25.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.25.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.25.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.250.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.250.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.250.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.251.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.251.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.251.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.252.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.252.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.252.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.253.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.253.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.253.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.254.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.254.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.254.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.255.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.255.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.255.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.26.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.26.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.26.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.27.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.27.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.27.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.28.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.28.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.28.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.29.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.29.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.29.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.3.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.30.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.30.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.30.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.31.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.31.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.31.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.32.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.32.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.32.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.33.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.33.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.33.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.34.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.34.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.34.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.35.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.35.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.35.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.36.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.36.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.36.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.37.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.37.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.37.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.38.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.38.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.38.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.39.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.39.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.39.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.4.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.40.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.40.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.40.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.41.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.41.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.41.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.42.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.42.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.42.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.43.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.43.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.43.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.44.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.44.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.44.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.45.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.45.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.45.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.46.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.46.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.46.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.47.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.47.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.47.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.48.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.48.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.48.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.49.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.49.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.49.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.5.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.5.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.50.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.50.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.50.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.51.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.51.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.51.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.52.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.52.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.52.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.53.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.53.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.53.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.54.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.54.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.54.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.55.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.55.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.55.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.56.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.56.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.56.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.57.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.57.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.57.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.58.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.58.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.58.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.59.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.59.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.59.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.6.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.6.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.60.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.60.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.60.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.61.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.61.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.61.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.62.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.62.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.62.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.63.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.63.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.63.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.64.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.64.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.64.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.65.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.65.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.65.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.66.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.66.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.66.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.67.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.67.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.67.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.68.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.68.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.68.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.69.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.69.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.69.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.7.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.7.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.7.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.70.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.70.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.70.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.71.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.71.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.71.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.72.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.72.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.72.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.73.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.73.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.73.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.74.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.74.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.74.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.75.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.75.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.75.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.76.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.76.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.76.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.77.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.77.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.77.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.78.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.78.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.78.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.79.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.79.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.79.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.8.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.8.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.8.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.80.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.80.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.80.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.81.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.81.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.81.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.82.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.82.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.82.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.83.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.83.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.83.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.84.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.84.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.84.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.85.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.85.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.85.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.86.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.86.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.86.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.87.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.87.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.87.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.88.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.88.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.88.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.89.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.89.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.89.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.9.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.9.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.9.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.90.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.90.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.90.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.91.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.91.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.91.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.92.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.92.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.92.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.93.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.93.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.93.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.94.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.94.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.94.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.95.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.95.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.95.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.96.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.96.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.96.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.97.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.97.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.97.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.98.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.98.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.98.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.192.99.table b/eccodes/definitions.save/grib2/tables/9/4.2.192.99.table deleted file mode 100644 index c37fd8f7..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.192.99.table +++ /dev/null @@ -1,2 +0,0 @@ -# ECMWF local parameters -255 255 Missing (-) diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.0.table deleted file mode 100644 index ed4a8509..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.2.0.table +++ /dev/null @@ -1,37 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Land cover (0 = sea, 1 = land) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg-2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadar's mixing length scale (m) -15 15 Canopy conductance (m/s) -16 16 Minimal stomatal resistance (s/m) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy (Proportion) -20 20 Humidity parameter in canopy conductance (Proportion) -21 21 Soil moisture parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -23 23 Column-integrated soil water (kg m-2) -24 24 Heat flux (W m-2) -25 25 Volumetric soil moisture (m3 m-3) -26 26 Wilting point (kg m-3) -27 27 Volumetric wilting point (m3 m-3) -28 28 Leaf area index (Numeric) -29 29 Evergreen forest cover (Proportion) -30 30 Deciduous forest cover (Proportion) -31 31 Normalized differential vegetation index (NDVI) (Numeric) -32 32 Root depth of vegetation (m) -# 33-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.3.table deleted file mode 100644 index 80113a4b..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.2.3.table +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) -11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) -14 14 Direct evaporation cease (soil moisture) (kg m-3) -15 15 Soil porosity (m3 m-3) -16 16 Volumetric saturation of soil moisture (m3 m-3) -17 17 Saturation of soil moisture (kg m-3) -18 18 Soil Temperature (K) -19 19 Soil moisture (kg m-3) -20 20 Column-integrated soil moisture (kg m-2) -21 21 Soil ice (kg m-3) -22 22 Column-integrated soil ice (kg m-2) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.2.4.table b/eccodes/definitions.save/grib2/tables/9/4.2.2.4.table deleted file mode 100644 index 24f2bfba..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.2.4.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Fire outlook (Code table 4.224) -1 1 Fire outlook due to dry thunderstorm (Code table 4.224) -2 2 Haines Index (Numeric) -3 3 Fire burned area (%) -# 4-191 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/9/4.2.3.0.table deleted file mode 100644 index 254e56bc..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/9/4.2.3.1.table deleted file mode 100644 index 16eee69c..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.2.3.1.table +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m/s) -5 5 Estimated v component of wind (m/s) -6 6 Number of pixel used (Numeric) -7 7 Solar zenith angle (deg) -8 8 Relative azimuth angle (deg) -9 9 Reflectance in 0.6 micron channel (%) -10 10 Reflectance in 0.8 micron channel (%) -11 11 Reflectance in 1.6 micron channel (%) -12 12 Reflectance in 3.9 micron channel (%) -13 13 Atmospheric divergence (/s) -14 14 Cloudy brightness temperature (K) -15 15 Clear-sky brightness temperature (K) -16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) -17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved -19 19 Wind speed (m/s) -20 20 Aerosol optical thickness at 0.635 um -21 21 Aerosol optical thickness at 0.810 um -22 22 Aerosol optical thickness at 1.640 um -23 23 Angstrom coefficient -# 24-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.201.table b/eccodes/definitions.save/grib2/tables/9/4.201.table deleted file mode 100644 index ebb698b3..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.201.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.202.table b/eccodes/definitions.save/grib2/tables/9/4.202.table deleted file mode 100644 index 943c03f6..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.202.table +++ /dev/null @@ -1,4 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.203.table b/eccodes/definitions.save/grib2/tables/9/4.203.table deleted file mode 100644 index fce5a15b..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.203.table +++ /dev/null @@ -1,25 +0,0 @@ -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground-based fog beneath the lowest layer -12 12 Stratus - ground-based fog beneath the lowest layer -13 13 Stratocumulus - ground-based fog beneath the lowest layer -14 14 Cumulus - ground-based fog beneath the lowest layer -15 15 Altostratus - ground-based fog beneath the lowest layer -16 16 Nimbostratus - ground-based fog beneath the lowest layer -17 17 Altocumulus - ground-based fog beneath the lowest layer -18 18 Cirrostratus - ground-based fog beneath the lowest layer -19 19 Cirrocumulus - ground-based fog beneath the lowest layer -20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.204.table b/eccodes/definitions.save/grib2/tables/9/4.204.table deleted file mode 100644 index 51d1cecc..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.204.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Isolated (1-2%) -2 2 Few (3-5%) -3 3 Scattered (16-45%) -4 4 Numerous (> 45%) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.205.table b/eccodes/definitions.save/grib2/tables/9/4.205.table deleted file mode 100644 index 8d425ab9..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.205.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Aerosol not present -1 1 Aerosol present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.206.table b/eccodes/definitions.save/grib2/tables/9/4.206.table deleted file mode 100644 index 0be7fd4f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.206.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not present -1 1 Present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.207.table b/eccodes/definitions.save/grib2/tables/9/4.207.table deleted file mode 100644 index fde9eb47..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.207.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Trace -5 5 Heavy -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.208.table b/eccodes/definitions.save/grib2/tables/9/4.208.table deleted file mode 100644 index 196becaa..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.208.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.209.table b/eccodes/definitions.save/grib2/tables/9/4.209.table deleted file mode 100644 index 351c0f43..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.209.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Stable -2 2 Mechanically-driven turbulence -3 3 Forced convection -4 4 Free convection -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.210.table b/eccodes/definitions.save/grib2/tables/9/4.210.table deleted file mode 100644 index 1c00b8c6..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.210.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Contrail not present -1 1 Contrail present -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.211.table b/eccodes/definitions.save/grib2/tables/9/4.211.table deleted file mode 100644 index 66ef656f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.211.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Low bypass -1 1 High bypass -2 2 Non-bypass -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.212.table b/eccodes/definitions.save/grib2/tables/9/4.212.table deleted file mode 100644 index c59bd24e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.212.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.213.table b/eccodes/definitions.save/grib2/tables/9/4.213.table deleted file mode 100644 index 0f5de010..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.213.table +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -12 12 Loam -13 13 Peat -14 14 Rock -15 15 Ice -16 16 Water -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.215.table b/eccodes/definitions.save/grib2/tables/9/4.215.table deleted file mode 100644 index 46088821..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.215.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-49 Reserved -50 50 No-snow/no-cloud -# 51-99 Reserved -100 100 Clouds -# 101-249 Reserved -250 250 Snow -# 251-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.216.table b/eccodes/definitions.save/grib2/tables/9/4.216.table deleted file mode 100644 index cc62ca5e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.216.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# 0-90 Elevation in increments of 100 m -# 91-253 Reserved -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.217.table b/eccodes/definitions.save/grib2/tables/9/4.217.table deleted file mode 100644 index 51a263a9..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.217.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.218.table b/eccodes/definitions.save/grib2/tables/9/4.218.table deleted file mode 100644 index d4b2ab84..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.218.table +++ /dev/null @@ -1,38 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No scene identified -1 1 Green needle-leafed forest -2 2 Green broad-leafed forest -3 3 Deciduous needle-leafed forest -4 4 Deciduous broad-leafed forest -5 5 Deciduous mixed forest -6 6 Closed shrub-land -7 7 Open shrub-land -8 8 Woody savannah -9 9 Savannah -10 10 Grassland -11 11 Permanent wetland -12 12 Cropland -13 13 Urban -14 14 Vegetation / crops -15 15 Permanent snow / ice -16 16 Barren desert -17 17 Water bodies -18 18 Tundra -# 19-96 Reserved -97 97 Snow / ice on land -98 98 Snow / ice on water -99 99 Sun-glint -100 100 General cloud -101 101 Low cloud / fog / Stratus -102 102 Low cloud / Stratocumulus -103 103 Low cloud / unknown type -104 104 Medium cloud / Nimbostratus -105 105 Medium cloud / Altostratus -106 106 Medium cloud / unknown type -107 107 High cloud / Cumulus -108 108 High cloud / Cirrus -109 109 High cloud / unknown -110 110 Unknown cloud type -# 111-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.219.table b/eccodes/definitions.save/grib2/tables/9/4.219.table deleted file mode 100644 index f10ce468..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.219.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Nominal cloud top height quality -1 1 Fog in segment -2 2 Poor quality height estimation -3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.220.table b/eccodes/definitions.save/grib2/tables/9/4.220.table deleted file mode 100644 index 9c957eb0..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.220.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Latitude -1 1 Longitude -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.221.table b/eccodes/definitions.save/grib2/tables/9/4.221.table deleted file mode 100644 index 5466929c..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.221.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Not included -1 1 Extrapolated -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.222.table b/eccodes/definitions.save/grib2/tables/9/4.222.table deleted file mode 100644 index c54194e2..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.222.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No -1 1 Yes -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.223.table b/eccodes/definitions.save/grib2/tables/9/4.223.table deleted file mode 100644 index b6a9be13..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.223.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No fire detected -1 1 Possible fire detected -2 2 Probable fire detected -3 3 Missing value diff --git a/eccodes/definitions.save/grib2/tables/9/4.224.table b/eccodes/definitions.save/grib2/tables/9/4.224.table deleted file mode 100644 index af846f84..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.224.table +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No risk area -1 1 Reserved -2 2 General thunderstorm risk area -3 3 Reserved -4 4 Slight risk area -5 5 Reserved -6 6 Moderate risk area -7 7 Reserved -8 8 High risk area -# 9-10 Reserved -11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved -14 14 Critical risk area -# 15-17 Reserved -18 18 Extremely critical risk area -# 19-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.227.table b/eccodes/definitions.save/grib2/tables/9/4.227.table deleted file mode 100644 index 56fa0e75..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.227.table +++ /dev/null @@ -1,10 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# Code table 4.227 - Icing scenario (weather/cloud classification) -0 0 None -1 1 General -2 2 Convective -3 3 Stratiform -4 4 Freezing -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.230.table b/eccodes/definitions.save/grib2/tables/9/4.230.table deleted file mode 100644 index afd1ab8d..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.230.table +++ /dev/null @@ -1,415 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -#38-9999 Reserved -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) -10500 10500 Dimethyl sulphide -#10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved -30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved -30010 30010 Hydrogen H-3 -30011 30011 Hydrogen organic bounded H-3o -30012 30012 Hydrogen inorganic H-3a -30013 30013 Beryllium 7 Be-7 -30014 30014 Beryllium 10 Be-10 -30015 30015 Carbon 14 C-14 -30016 30016 Carbon 14 CO2 C-14CO2 -30017 30017 Carbon 14 other gases C-14og -30018 30018 Nitrogen 13 N-13 -30019 30019 Nitrogen 16 N-16 -30020 30020 Fluorine 18 F-18 -30021 30021 Sodium 22 Na-22 -30022 30022 Phosphate 32 P-32 -30023 30023 Phosphate 33 P-33 -30024 30024 Sulfur 35 S-35 -30025 30025 Chlorine 36 Cl-36 -30026 30026 Potassium 40 K-40 -30027 30027 Argon 41 Ar-41 -30028 30028 Calcium 41 Ca-41 -30029 30029 Calcium 45 Ca-45 -30030 30030 Titanium 44 -30031 30031 Scandium 46 Sc-46 -30032 30032 Vanadium 48 V-48 -30033 30033 Vanadium 49 V-49 -30034 30034 Chrome 51 Cr-51 -30035 30035 Manganese 52 Mn-52 -30036 30036 Manganese 54 Mn-54 -30037 30037 Iron 55 Fe-55 -30038 30038 Iron 59 Fe-59 -30039 30039 Cobalt 56 Co-56 -30040 30040 Cobalt 57 Co-57 -30041 30041 Cobalt 58 Co-58 -30042 30042 Cobalt 60 Co-60 -30043 30043 Nickel 59 Ni-59 -30044 30044 Nickel 63 Ni-63 -30045 30045 Zinc 65 Zn-65 -30046 30046 Gallium 67 Ga-67 -30047 30047 Gallium 68 Ga-68 -30048 30048 Germanium 68 Ge-68 -30049 30049 Germanium 69 Ge-69 -30050 30050 Arsenic 73 As-73 -30051 30051 Selenium 75 Se-75 -30052 30052 Selenium 79 Se-79 -30053 30053 Rubidium 81 Rb-81 -30054 30054 Rubidium 83 Rb-83 -30055 30055 Rubidium 84 Rb-84 -30056 30056 Rubidium 86 Rb-86 -30057 30057 Rubidium 87 Rb-87 -30058 30058 Rubidium 88 Rb-88 -30059 30059 Krypton 85 Kr-85 -30060 30060 Krypton 85 metastable Kr-85m -30061 30061 Krypton 87 Kr-87 -30062 30062 Krypton 88 Kr-88 -30063 30063 Krypton 89 Kr-89 -30064 30064 Strontium 85 Sr-85 -30065 30065 Strontium 89 Sr-89 -30066 30066 Strontium 89/90 Sr-8990 -30067 30067 Strontium 90 Sr-90 -30068 30068 Strontium 91 Sr-91 -30069 30069 Strontium 92 Sr-92 -30070 30070 Yttrium 87 Y-87 -30071 30071 Yttrium 88 Y-88 -30072 30072 Yttrium 90 Y-90 -30073 30073 Yttrium 91 Y-91 -30074 30074 Yttrium 91 metastable Y-91m -30075 30075 Yttrium 92 Y-92 -30076 30076 Yttrium 93 Y-93 -30077 30077 Zirconium 89 Zr-89 -30078 30078 Zirconium 93 Zr-93 -30079 30079 Zirconium 95 Zr-95 -30080 30080 Zirconium 97 Zr-97 -30081 30081 Niobium 93 metastable Nb-93m -30082 30082 Niobium 94 Nb-94 -30083 30083 Niobium 95 Nb-95 -30084 30084 Niobium 95 metastable Nb-95m -30085 30085 Niobium 97 Nb-97 -30086 30086 Niobium 97 metastable Nb-97m -30087 30087 Molybdenum 93 Mo-93 -30088 30088 Molybdenum 99 Mo-99 -30089 30089 Technetium 95 metastable Tc-95m -30090 30090 Technetium 96 Tc-96 -30091 30091 Technetium 99 Tc-99 -30092 30092 Technetium 99 metastable Tc-99m -30093 30093 Rhodium 99 Rh-99 -30094 30094 Rhodium 101 Rh-101 -30095 30095 Rhodium 102 metastable Rh-102m -30096 30096 Rhodium 103 metastable Rh-103m -30097 30097 Rhodium 105 Rh-105 -30098 30098 Rhodium 106 Rh-106 -30099 30099 Palladium 100 Pd-100 -30100 30100 Palladium 103 Pd-103 -30101 30101 Palladium 107 Pd-107 -30102 30102 Ruthenium 103 Ru-103 -30103 30103 Ruthenium 105 Ru-105 -30104 30104 Ruthenium 106 Ru-106 -30105 30105 Silver 108 metastable Ag-108m -30106 30106 Silver 110 metastable Ag-110m -30107 30107 Cadmium 109 Cd-109 -30108 30108 Cadmium 113 metastable Cd-113m -30109 30109 Cadmium 115 metastable Cd-115m -30110 30110 Indium 114 metastable In-114m -30111 30111 Tin 113 Sn-113 -30112 30112 Tin 119 metastable Sn-119m -30113 30113 Tin 121 metastable Sn-121m -30114 30114 Tin 122 Sn-122 -30115 30115 Tin 123 Sn-123 -30116 30116 Tin 126 Sn-126 -30117 30117 Antimony 124 Sb-124 -30118 30118 Antimony 125 Sb-125 -30119 30119 Antimony 126 Sb-126 -30120 30120 Antimony 127 Sb-127 -30121 30121 Antimony 129 Sb-129 -30122 30122 Tellurium 123 metastable Te-123m -30123 30123 Tellurium 125 metastable Te-125m -30124 30124 Tellurium 127 Te-127 -30125 30125 Tellurium 127 metastable Te-127m -30126 30126 Tellurium 129 Te-129 -30127 30127 Tellurium 129 metastable Te-129m -30128 30128 Tellurium 131 metastable Te-131m -30129 30129 Tellurium 132 Te-132 -30130 30130 Iodine 123 I-123 -30131 30131 Iodine 124 I-124 -30132 30132 Iodine 125 I-125 -30133 30133 Iodine 126 I-126 -30134 30134 Iodine 129 I-129 -30135 30135 Iodine 129 elementary gaseous I-129g -30136 30136 Iodine 129 organic bounded I-129o -30137 30137 Iodine 131 I-131 -30138 30138 Iodine 131 elementary gaseous I-131g -30139 30139 Iodine 131 organic bounded I-131o -30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go -30141 30141 Iodine 131 aerosol I-131a -30142 30142 Iodine 132 I-132 -30143 30143 Iodine 132 elementary gaseous I-132g -30144 30144 Iodine 132 organic bounded I-132o -30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go -30146 30146 Iodine 132 aerosol I-132a -30147 30147 Iodine 133 I-133 -30148 30148 Iodine 133 elementary gaseous I-133g -30149 30149 Iodine 133 organic bounded I-133o -30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go -30151 30151 Iodine 133 aerosol I-133a -30152 30152 Iodine 134 I-134 -30153 30153 Iodine 134 elementary gaseous I-134g -30154 30154 Iodine 134 organic bounded I-134o -30155 30155 Iodine 135 I-135 -30156 30156 Iodine 135 elementary gaseous I-135g -30157 30157 Iodine 135 organic bounded I-135o -30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go -30159 30159 Iodine 135 aerosol I-135a -30160 30160 Xenon 131 metastable Xe-131m -30161 30161 Xenon 133 Xe-133 -30162 30162 Xenon 133 metastable Xe-133m -30163 30163 Xenon 135 Xe-135 -30164 30164 Xenon 135 metastable Xe-135m -30165 30165 Xenon 137 Xe-137 -30166 30166 Xenon 138 Xe-138 -30167 30167 Xenon sum of all Xenon isotopes Xe-sum -30168 30168 Caesium 131 Cs-131 -30169 30169 Caesium 134 Cs-134 -30170 30170 Caesium 135 Cs-135 -30171 30171 Caesium 136 Cs-136 -30172 30172 Caesium 137 Cs-137 -30173 30173 Barium 133 Ba-133 -30174 30174 Barium 137 metastable Ba-137m -30175 30175 Barium 140 Ba-140 -30176 30176 Cerium 139 Ce-139 -30177 30177 Cerium 141 Ce-141 -30178 30178 Cerium 143 Ce-143 -30179 30179 Cerium 144 Ce-144 -30180 30180 Lanthanum 140 La-140 -30181 30181 Lanthanum 141 La-141 -30182 30182 Praseodymium 143 Pr-143 -30183 30183 Praseodymium 144 Pr-144 -30184 30184 Praseodymium 144 metastable Pr-144m -30185 30185 Samarium 145 Sm-145 -30186 30186 Samarium 147 Sm-147 -30187 30187 Samarium 151 Sm-151 -30188 30188 Neodymium 147 Nd-147 -30189 30189 Promethium 146 Pm-146 -30190 30190 Promethium 147 Pm-147 -30191 30191 Promethium 151 Pm-151 -30192 30192 Europium 152 Eu-152 -30193 30193 Europium 154 Eu-154 -30194 30194 Europium 155 Eu-155 -30195 30195 Gadolinium 153 Gd-153 -30196 30196 Terbium 160 Tb-160 -30197 30197 Holmium 166 metastable Ho-166m -30198 30198 Thulium 170 Tm-170 -30199 30199 Ytterbium 169 Yb-169 -30200 30200 Hafnium 175 Hf-175 -30201 30201 Hafnium 181 Hf-181 -30202 30202 Tantalum 179 Ta-179 -30203 30203 Tantalum 182 Ta-182 -30204 30204 Rhenium 184 Re-184 -30205 30205 Iridium 192 Ir-192 -30206 30206 Mercury 203 Hg-203 -30207 30207 Thallium 204 Tl-204 -30208 30208 Thallium 207 Tl-207 -30209 30209 Thallium 208 Tl-208 -30210 30210 Thallium 209 Tl-209 -30211 30211 Bismuth 205 Bi-205 -30212 30212 Bismuth 207 Bi-207 -30213 30213 Bismuth 210 Bi-210 -30214 30214 Bismuth 211 Bi-211 -30215 30215 Bismuth 212 Bi-212 -30216 30216 Bismuth 213 Bi-213 -30217 30217 Bismuth 214 Bi-214 -30218 30218 Polonium 208 Po-208 -30219 30219 Polonium 210 Po-210 -30220 30220 Polonium 212 Po-212 -30221 30221 Polonium 213 Po-213 -30222 30222 Polonium 214 Po-214 -30223 30223 Polonium 215 Po-215 -30224 30224 Polonium 216 Po-216 -30225 30225 Polonium 218 Po-218 -30226 30226 Lead 209 Pb-209 -30227 30227 Lead 210 Pb-210 -30228 30228 Lead 211 Pb-211 -30229 30229 Lead 212 Pb-212 -30230 30230 Lead 214 Pb-214 -30231 30231 Astatine 217 At-217 -30232 30232 Radon 219 Rn-219 -30233 30233 Radon 220 Rn-220 -30234 30234 Radon 222 Rn-222 -30235 30235 Francium 221 Fr-221 -30236 30236 Francium 223 Fr-223 -30237 30237 Radium 223 Ra-223 -30238 30238 Radium 224 Ra-224 -30239 30239 Radium 225 Ra-225 -30240 30240 Radium 226 Ra-226 -30241 30241 Radium 228 Ra-228 -30242 30242 Actinium 225 Ac-225 -30243 30243 Actinium 227 Ac-227 -30244 30244 Actinium 228 Ac-228 -30245 30245 Thorium 227 Th-227 -30246 30246 Thorium 228 Th-228 -30247 30247 Thorium 229 Th-229 -30248 30248 Thorium 230 Th-230 -30249 30249 Thorium 231 Th-231 -30250 30250 Thorium 232 Th-232 -30251 30251 Thorium 234 Th-234 -30252 30252 Protactinium 231 Pa-231 -30253 30253 Protactinium 233 Pa-233 -30254 30254 Protactinium 234 metastable Pa-234m -30255 30255 Uranium 232 U-232 -30256 30256 Uranium 233 U-233 -30257 30257 Uranium 234 U-234 -30258 30258 Uranium 235 U-235 -30259 30259 Uranium 236 U-236 -30260 30260 Uranium 237 U-237 -30261 30261 Uranium 238 U-238 -30262 30262 Plutonium 236 Pu-236 -30263 30263 Plutonium 238 Pu-238 -30264 30264 Plutonium 239 Pu-239 -30265 30265 Plutonium 240 Pu-240 -30266 30266 Plutonium 241 Pu-241 -30267 30267 Plutonium 242 Pu-242 -30268 30268 Plutonium 244 Pu-244 -30269 30269 Neptunium 237 Np-237 -30270 30270 Neptunium 238 Np-238 -30271 30271 Neptunium 239 Np-239 -30272 30272 Americium 241 Am-241 -30273 30273 Americium 242 Am-242 -30274 30274 Americium 242 metastable Am-242m -30275 30275 Americium 243 Am-243 -30276 30276 Curium 242 Cm-242 -30277 30277 Curium 243 Cm-243 -30278 30278 Curium 244 Cm-244 -30279 30279 Curium 245 Cm-245 -30280 30280 Curium 246 Cm-246 -30281 30281 Curium 247 Cm-247 -30282 30282 Curium 248 Cm-248 -30283 30283 Curium 243/244 Cm-243244 -30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 -30285 30285 Plutonium 239/240 Pu-239240 -30286 30286 Berkelium 249 Bk-249 -30287 30287 Californium 249 Cf-249 -30288 30288 Californium 250 Cf-250 -30289 30289 Californium 252 Cf-252 -30290 30290 Sum aerosol particulates SumAer -30291 30291 Sum Iodine SumIod -30292 30292 Sum noble gas SumNG -30293 30293 Activation gas ActGas -30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen NOx -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy -60005 60005 Total inorganic chlorine Clx -60006 60006 Total inorganic bromine Brx -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped alkanes -60010 60010 Lumped alkenes -60011 60011 Lumped aromatic compounds -60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -#60017-61999 Reserved -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -62013 62013 Black carbon hydrophilic dry -62014 62014 Black carbon hydrophobic dry -62015 62015 Particulate organic matter hydrophilic dry -62016 62016 Particulate organic matter hydrophobic dry -62017 62017 Nitrate hydrophilic dry -62018 62018 Nitrate hydrophobic dry -#62019-65534 Reserved -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.233.table b/eccodes/definitions.save/grib2/tables/9/4.233.table deleted file mode 100644 index c5e8f2b4..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -# (See Common Code table C-14) -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.234.table b/eccodes/definitions.save/grib2/tables/9/4.234.table deleted file mode 100644 index bdf7cf0e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.234.table +++ /dev/null @@ -1,21 +0,0 @@ -# Canopy Cover Fraction (to be used as partitioned parameter) -1 1 Crops Mixed Farming -2 2 Short Grass -3 3 Evergreen Needleleaf Trees -4 4 Deciduous Needleleaf Trees -5 5 Deciduous Broadleaf Trees -6 6 Evergreen Broadleaf Trees -7 7 Tall Grass -8 8 Desert -9 9 Tundra -10 10 Irrigated Crops -11 11 Semidesert -12 12 Ice Caps and Glaciers -13 13 Bogs and Marshes -14 14 Inland Water -15 15 Ocean -16 16 Evergreen Shrubs -17 17 Deciduous Shrubs -18 18 Mixed Forest -19 19 Interrupted Forest -20 20 Water and Land Mixtures diff --git a/eccodes/definitions.save/grib2/tables/9/4.235.table b/eccodes/definitions.save/grib2/tables/9/4.235.table deleted file mode 100644 index e18bbfbb..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.235.table +++ /dev/null @@ -1,8 +0,0 @@ -# Soil texture fraction -1 1 coarse -2 2 medium -3 3 medium-fine -4 4 fine -5 5 very-fine -6 6 organic -7 7 tropical-organic diff --git a/eccodes/definitions.save/grib2/tables/9/4.3.table b/eccodes/definitions.save/grib2/tables/9/4.3.table deleted file mode 100644 index 68e2cc83..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.4.table b/eccodes/definitions.save/grib2/tables/9/4.4.table deleted file mode 100644 index df5272d2..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.4.table +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.5.table b/eccodes/definitions.save/grib2/tables/9/4.5.table deleted file mode 100644 index 1f17bae8..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.5.table +++ /dev/null @@ -1,48 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0 degree C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -10 10 Entire atmosphere -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -# 13-19 Reserved -20 20 Isothermal level (K) -# 21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -112 112 Reserved -113 113 Logarithmic hybrid level -# 114-116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level -119 hpl Hybrid pressure level -# 120-149 Reserved -150 150 Generalized vertical height coordinate -# 151-159 Reserved -160 160 Depth below sea level m -161 161 Depth below water surface (m) -162 162 Lake or river bottom -163 163 Bottom of sediment layer -164 164 Bottom of thermally active sediment layer -165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer -# 167-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.6.table b/eccodes/definitions.save/grib2/tables/9/4.6.table deleted file mode 100644 index 54f2993c..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.6.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.7.table b/eccodes/definitions.save/grib2/tables/9/4.7.table deleted file mode 100644 index 23e0d457..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.7.table +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members -6 6 Unweighted mean of the cluster members -7 7 Interquartile range (range between the 25th and 75th quantile) -8 8 Minimum of all ensemble members -9 9 Maximum of all ensemble members -# 10-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.8.table b/eccodes/definitions.save/grib2/tables/9/4.8.table deleted file mode 100644 index 37a6cf76..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.8.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Anomaly correlation -1 1 Root mean square -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.9.table b/eccodes/definitions.save/grib2/tables/9/4.9.table deleted file mode 100644 index 19e64a3d..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.9.table +++ /dev/null @@ -1,9 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/4.91.table b/eccodes/definitions.save/grib2/tables/9/4.91.table deleted file mode 100644 index 05c4579b..00000000 --- a/eccodes/definitions.save/grib2/tables/9/4.91.table +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Smaller than first limit -1 1 Greater than second limit -2 2 Between first and second limit. The range includes the first limit but not the second limit -3 3 Greater than first limit -4 4 Smaller than second limit -5 5 Smaller or equal first limit -6 6 Greater or equal second limit -7 7 Between first and second. The range includes the first limit and the second limit -8 8 Greater or equal first limit -9 9 Smaller or equal second limit -10 10 Between first and second limit. The range includes the second limit but not the first limit -11 11 Equal to first limit. -# 12-191 Reserved -# 192-254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.0.table b/eccodes/definitions.save/grib2/tables/9/5.0.table deleted file mode 100644 index c7995a96..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.0.table +++ /dev/null @@ -1,24 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value at grid point - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - IEEE floating point data -6 6 Grid point data - simple packing with pre-processing -40 40 Grid point data - JPEG 2000 code stream format -41 41 Grid point data - Portable Network Graphics (PNG) -#42-49 Reserved -50 50 Spectral data - simple packing -51 51 Spherical harmonics data - complex packing -#52-60 Reserved -61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved -200 200 Run length packing with level values -# 201-49151 Reserved -# 49152-65534 Reserved for local use -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling -50000 50000 Sperical harmonics ieee packing -50001 50001 Second order packing -50002 50002 Second order packing -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.1.table b/eccodes/definitions.save/grib2/tables/9/5.1.table deleted file mode 100644 index 100d4106..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Floating point -1 1 Integer -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.2.table b/eccodes/definitions.save/grib2/tables/9/5.2.table deleted file mode 100644 index 4d0808be..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Explicit coordinate values set -1 1 Linear coordinates f(1)=C1, f(n)=f(n-1)+C2 -# 2-10 Reserved -11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.3.table b/eccodes/definitions.save/grib2/tables/9/5.3.table deleted file mode 100644 index 705fa652..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -1 1 Direction degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.4.table b/eccodes/definitions.save/grib2/tables/9/5.4.table deleted file mode 100644 index 8133367a..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.4.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Row by row splitting -1 1 General group splitting -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.40.table b/eccodes/definitions.save/grib2/tables/9/5.40.table deleted file mode 100644 index 0d56ad0e..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Lossless -1 1 Lossy -# 2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.40000.table b/eccodes/definitions.save/grib2/tables/9/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.5.table b/eccodes/definitions.save/grib2/tables/9/5.5.table deleted file mode 100644 index 5d625dbd..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.50002.table b/eccodes/definitions.save/grib2/tables/9/5.50002.table deleted file mode 100644 index 10c243cb..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.50002.table +++ /dev/null @@ -1,19 +0,0 @@ -# second order packing modes table - -1 0 no boustrophedonic -1 1 boustrophedonic -2 0 Reserved -2 1 Reserved -3 0 Reserved -3 1 Reserved -4 0 Reserved -4 1 Reserved -5 0 Reserved -5 1 Reserved -6 0 Reserved -6 1 Reserved -7 0 Reserved -7 1 Reserved -8 0 Reserved -8 1 Reserved - diff --git a/eccodes/definitions.save/grib2/tables/9/5.6.table b/eccodes/definitions.save/grib2/tables/9/5.6.table deleted file mode 100644 index 5838e994..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.6.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.7.table b/eccodes/definitions.save/grib2/tables/9/5.7.table deleted file mode 100644 index b93aa813..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.7.table +++ /dev/null @@ -1,7 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 Reserved -1 1 IEEE 32-bit (I=4 in section 7) -2 2 IEEE 64-bit (I=8 in section 7) -3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.8.table b/eccodes/definitions.save/grib2/tables/9/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/5.9.table b/eccodes/definitions.save/grib2/tables/9/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib2/tables/9/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/9/6.0.table b/eccodes/definitions.save/grib2/tables/9/6.0.table deleted file mode 100644 index aecdc6e5..00000000 --- a/eccodes/definitions.save/grib2/tables/9/6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# Automatically generated by ./create_tables.pl from database fm92_grib2@grib-param-db-prod.ecmwf.int, do not edit -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 1-253 A bit map predetermined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same GRIB message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib2/tables/9/stepType.table b/eccodes/definitions.save/grib2/tables/9/stepType.table deleted file mode 100644 index 4ec73e7a..00000000 --- a/eccodes/definitions.save/grib2/tables/9/stepType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 instant Instant -1 interval Interval diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table deleted file mode 100644 index 648fc7f9..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/1.1.table +++ /dev/null @@ -1,6 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -1 1 ECMWF local tables version 1 -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table deleted file mode 100644 index 30b94d7a..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.0.20.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.2 - discipline=0 category=20 for ECMWF -192 192 Source/gain (kg m-2 s-1) -193 193 Negative Fixer (kg m-2 s-1) diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table deleted file mode 100644 index ce920325..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.2.2.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.2 - discipline=2 category=0 for ECMWF -192 192 Carbon Dioxide Net Ecosystem Exchange -193 193 Carbon Dioxide Gross Primary Production -194 194 Carbon Dioxide Ecosystem Respiration -195 195 Flux of Carbon Dioxide Net Ecosystem Exchange -196 196 Flux of Carbon Dioxide Ecosystem Respiration -197 197 Flux of Carbon Dioxide Gross Primary Production -198 198 GPP coefficient from Biogenic Flux Adjustment System -199 199 Rec coefficient from Biogenic Flux Adjustment System -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table deleted file mode 100644 index 047fd259..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.230.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.230 - Atmospheric chemical constituent type for ECMWF - -63000 63000 Some chemical - diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table b/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table deleted file mode 100644 index 9deeecdf..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/1/4.233.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.233 - Aerosol type for ECMWF -65533 65533 Nitrate Coarse Mode -65534 65534 Nitrate Fine Mode diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table b/eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table deleted file mode 100644 index a0f9c973..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/4/1.2.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -191 191 funny reference time -#4-191 Reserved -#192-254 Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table deleted file mode 100644 index 92a1b782..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.1.0.table +++ /dev/null @@ -1,2 +0,0 @@ -#Code Table obstat.1.0: Monitoring Statistics Outputs types -1 obstat Monitoring statistics diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table deleted file mode 100644 index 347e17f6..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.10.0.table +++ /dev/null @@ -1,42 +0,0 @@ -#Code Table obstat.10.0: Data selection criteria -1 Active Active data -2 All All data -3 Non_Active Not Active data -4 Best_Active Best active wind -5 Used Used data -6 VarQC_Rej VarQC rejected data -7 Blacklisted Blacklisted data -8 Failed Failed data -9 Passed_FgCheck Data that passed FG check -10 Non_Rejected All non rejected data -11 VarBC_Passive VarBC passive channels -12 Failed_FG_Non_Black Data failed FG check but not blacklisted -13 Failed_FG_VarQC_Rej Data failed FG check and VARQC rejected -#14-19 Reserved for additional standard IFS flags -20 QI_LE_20 AMVs with QI <= 20 -21 QI_LE_66 AMVs with 20 < QI <=65 -22 QI_GE_65 AMVs with QI > 65 -23 QI_GE_80 AMVs with QI > 80 -24 QI_GE_90 AMVs with QI > 90 -#25-29 Reserved for additional AMVs flags -30 Clear_LE_70%WV_80%IR CSR data with clear fraction < 70 % (WV) and < 80 % (IR) -31 Clear_GE_70%WV_80%IR CSR data with clear fraction >= 70 % (WV) and >= 80 % (IR) -32 Clear_100% CSR data completely clear (according to IR window channel) -33 Clear_GE_40%WV CSR data with clear fraction >= 40 % (WV) -34 Clear_GE_70%WV CSR data with clear fraction >= 70 % (WV) -35 Clear_100%WV CSR data completely clear (according to WV channel) -#36-39 Reserved for additional CSR flags -40 Clear Clear -41 Used_Clear Used clear data -42 Used_Cloudy_Rainy Used cloudy and rainy data -43 All_Cloudy_Rainy All cloudy and rainy data -44 Used_ObsCld_FGClr Used Obs cloudy and FG clear -45 Used_ObsClr_FGCld Used Obs clear and FG cloudy -#44-49 Reserved for additional radiances flags -50 Good_ozone Good ozone data -51 Daytime Day time data -52 Nighttime Night time data -#53-69 Reserved for additional ozone, trace gases and Aerosol flags -#70-79 Reserved for GPSRO flags -#80-89 Reserved for scatterometer flags -#33-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table deleted file mode 100644 index 2d82ce7e..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.11.0.table +++ /dev/null @@ -1,4 +0,0 @@ -#Code Table obstat.11.0: Scan position definition -0 0 Explicit scan position (table 11.1) -1 1 Scan position interval (table 11.2) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table deleted file mode 100644 index e3aea161..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.2.0.table +++ /dev/null @@ -1,13 +0,0 @@ -#Code Table obstat.2.0: Observation types -1 Synop Synop -2 Airep Airep -3 Satob Satob -4 Dribu Dribu -5 Temp Temp -6 Pilot Pilot -7 Satem Satem -8 Paob Paob -9 Scatterometer Scatterometer -10 GPSRO Limb -13 Radar Radar -#14-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table deleted file mode 100644 index 60b907f5..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.3.0.table +++ /dev/null @@ -1,52 +0,0 @@ -#Code Table obstat.3.0: Observation code types -2 RADAR RADAR 1 -8 SCATTEROMETER1 SCATTEROMETER 1 -11 Manual_land Manual land station -14 Automatic_land Automatic land station -21 Ship Ship -22 Ship Ship abbreviated -23 Shred Shred -24 Automatic_ship Automatic Ship -32 Land LAND -33 Ship SHIP -34 Profilers WIND PROFILERS -35 Land LAND -36 Ship SHIP -37 Mobile MOBILE -39 Land_Racob LAND ROCOB -40 Ship_Racob SHIP ROCOB -41 Codar Codar -63 Bathy BATHY -64 Tesac TESAC -86 SATEM_GTS SATEM VIA GTS -88 Satob Satob -89 High-Res_VIS_wind High-resolution VIS wind -90 AMV AMV -122 SCATTEROMETER2 SCATTEROMETER 2 -139 SCATTEROMETER3 SCATTEROMETER 3 -141 Aircraft Aircraft -142 Simulated Simulated -144 Amdar Amdar -145 Acars Acars -160 ERS_AS_DRIBU ERS as DRIBU -165 DRIBU DRIBU -135 DROP DROP -137 SIMULATED SIMULATED -180 PAOB PAOB -184 High_Res_Sim_SATEM HIGH RESOLUTION SIMULATED SATEM -185 High_Res_Sim_DWLTOVS HIGH RESOLUTION SIMULATED DWL TOVS -186 High_Res_Sat HIGH RESOLUTION SATTELITE REPORT -188 SST SST -200 GTS_BUFR_SATEM GTS BUFR 250 KM SATEM -201 GTS_BUFR_CLR_Rad GTS BUFR SATEM CLEAR RADIANCE -202 GTS_BUFR_DATEM_RETR GTS BUFR SATEM RETRIEVED PROFILES AND CLEAR RADIANCES -206 OZONE RETRIEVED OZONE (TOTAL & PROFILES) -210 L1C_RADIANCES LEVEL 1C CALIBRATED RADIANCES -211 RTOVS_CLR_RAD RTOVS CLEAR RADIANCES AND RETRIEVED -212 TOVS_CLEAR_RAD TOVS CLEAR RADIANCES AND RETRIEVED -215 AllSky_MWRAD SSMI/AMSRE/SSMIS/TMI -241 COLBA Colba -250 GPSRO GPS RADIO OCCULTATION -251 LIMB LIMB RADIANCES -300 SCATTEROMETER4 SCATTEROMETER 4 -301 SCATTEROMETER5 SCATTEROMETER 5 diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table deleted file mode 100644 index a342b56d..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.4.0.table +++ /dev/null @@ -1,82 +0,0 @@ -#Code Table obstat.4.0: List of meteorological satellites -1 ERS-1 ERS 1 -2 ERS-2 ERS 2 -3 METOP-B METOP-B -4 METOP-A METOP-A -41 CHAMP CHAMP -42 TERRA-SAR-X TERRA-SAR-X -46 SMOS SMOS -54 METEOSAT-7 METEOSAT 7 -55 METEOSAT-8 METEOSAT 8 -56 METEOSAT-9 METEOSAT 9 -57 METEOSAT-10 METEOSAT 10 -58 METEOSAT-1 METEOSAT 1 -59 METEOSAT-2 METEOSAT 2 -60 ENVISAT ENVISAT -70 METEOSAT-11 METEOSAT-11 -122 GCOM-W1 GCOM-W1 -140 GOSAT GOSAT -171 MTSAT-1R MTSAT-1R -172 MTSAT-2 MTSAT-2 -200 NOAA-8 NOAA-8 -201 NOAA-9 NOAA-9 -202 NOAA-10 NOAA-10 -203 NOAA-11 NOAA-11 -204 NOAA-12 NOAA-12 -205 NOAA-14 NOAA 14 -206 NOAA-15 NOAA 15 -207 NOAA-16 NOAA 16 -208 NOAA-17 NOAA 17 -209 NOAA-18 NOAA 18 -222 AQUA AQUA -223 NOAA-19 NOAA 19 -224 NPP NPP -240 DMSP-7 DMSP-7 -241 DMSP-8 DMSP-8 -242 DMSP-9 DMSP-9 -243 DMSP-10 DMSP-10 -244 DMSP-11 DMSP-11 -246 DMSP-13 DMSP-13 -246 DMSP-13 DMSP 13 -247 DMSP-14 DMSP 14 -248 DMSP-15 DMSP 15 -249 DMSP-16 DMSP 16 -253 GOES-9 GOES 9 -254 GOES-10 GOES 10 -255 GEOS-11 GOES 11 -256 GEOS-12 GOES 12 -257 GEOS-13 GOES 13 -258 GEOS-14 GOES 14 -259 GEOS-15 GOES 15 -260 JASON-1 JASON-1 -261 JASON-2 JASON-2 -281 QUIKSCAT QUIKSCAT -282 TRMM TRMM -283 CORIOLIS CORIOLIS -285 DMSP17 DMSP 17 -286 DMSP18 DMSP 18 -421 OCEANSAT-2 OCEANSAT-2 -500 FY-1C FY-1C -501 FY-1D FY-1D -510 FY-2 FY-2 -512 FY-2B FY-2B -513 FY-2C FY-2C -514 FY-2D FY-2D -515 FY-2E FY-2E -520 FY-3A FY-3A -521 FY-3B FY-3B -722 GRACE-A GRACE-A -706 NOAA-6 NOAA-6 -707 NOAA-7 NOAA-7 -708 TIROS-N TIROS-N -740 COSMIC-1 COSMIC-1 -741 COSMIC-2 COSMIC-2 -742 COSMIC-3 COSMIC-3 -743 COSMIC-4 COSMIC-4 -744 COSMIC-5 COSMIC-5 -745 COSMIC-6 COSMIC-6 -783 TERRA TERRA -784 AQUA AQUA -785 AURA AURA -786 C-NOFS C-NOFS -820 SAC-C SAC-C diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table deleted file mode 100644 index 71a9a0e8..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.5.0.table +++ /dev/null @@ -1,53 +0,0 @@ -#Code Table obstat.5.0: List of satellite instruments -0 HIRS HIRS -1 MSU MSU -2 SSU SSU -3 AMSUA AMSUA -4 AMSUB AMSUB -6 SSM/I SSM/I -9 TMI TMI -10 SSMI/S SSMI/S -11 AIRS AIRS -15 MHS MHS -16 IASI IASI -17 AMSRE AMSR-E -19 ATMS ATMS -20 MVIRI MVIRI -21 SEVIRI SEVIRI -22 GOES GOES Imager -24 MTSAT-1R MTSAT-1R imager -27 CrIS CrIS -30 WINDSAT WINDSAT -40 MWTS MWTS -41 MWHS MWHS -63 AMSR2 AMSR2 -102 GPSRO GPSRO -172 GOMOS GOMOS -174 MERIS MERIS -175 SCIAMACHY SCIAMACHY -202 GRAS GRAS -207 SEVIRI_O3 SEVIRI O3 -220 GOME-2 GOME-2 -387 MLS MLS -394 OMI OMI -516 TANSO TANSO -624 SBUV-2 SBUV-2 -2000 AMV_WV_CLOUDY AMV WV cloudy -2001 AMV_IR AMV IR -2002 AMV_VIS AMV VIS -2003 AMV_WVMIX AMV WVMIX -2005 AMV_WV_Clear AMV Water Vapor clear -2100 AMV_WV_6.2_cloudy AMV WV 6.2 cloudy -2101 AMV_IR_ch1 AMV IR ch1 -2102 AMV_VIS_ch1 AMV VIS ch1 -2105 AMV_WV_6.2_clear AMV WV_6.2 clear -2200 AMV_WV_7.3_cloudy AMV WV 7.3 cloudy -2201 AMV_IR_ch2 AMV IR ch2 -2202 AMV_VIS-2 AMV VIS-2 -2205 AMV_WV_7.3_clear AMV WV 7.3 clear -2300 AMV_WV_cloudy_ch3 AMV WV cloudy ch 3 -2301 AMV_IR-10 AMV IR-10 -2305 AMV_WV_clear_Ch3 AMV WV clear Ch3 -2350 QUIKSCAT QUIKSCAT -2150 SCAT SCAT -2190 ASCAT ASCAT diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table deleted file mode 100644 index 2bb1fa92..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.6.0: List of data streams -0 Normal_delivery Normal delivery -1 EARS EARS -2 PAC-RARS PAC-RARS -3 DB_MODIS DB MODIS winds -#4-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table deleted file mode 100644 index fcd1c2e0..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.7.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.7.0: Vertical coordinate types -1 1 Channel -2 2 Pressure level -3 3 Pressure layer -4 4 Surface -#5-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table deleted file mode 100644 index 42bba148..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.8.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.8.0: List Mask types -1 Land Land -2 Sea Sea -3 Sea-ice Sea-ice -4 All_surfaces All surface types combined -#5-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table deleted file mode 100644 index bed03c02..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.9.0.table +++ /dev/null @@ -1,52 +0,0 @@ -#Code Table obstat.9.0: Observation diagnostics -1 count data count -2 obs Average of observed values -3 obs_stdv Standard deviation of observed values -4 fgdep Average of first guess departure -5 fgdep_stdv Standard deviation of first guess departure -6 andep Average of analysis departure -7 andep_stdv Standard deviation of analysis departure -8 obs_error Average of observation standard error -9 obs_error_stdv Standard deviation of observation standard error -10 bkg_error Average of background standard error -11 bkg_error_stdv Standard deviation of background standard error -12 lr_andep1 Average of low resolution analysis departure update 1 -13 lr_andep1_stdv Standard deviation of low resolution analysis departure update 1 -14 hr_fgdep2 Average of high resolution background departure update 2 -15 hr_fgdep2_stdv Standard deviation of high resolution background departure update 2 -16 lr_andep2 Average of low resolution analysis departure update 2 -17 lr_andep2_stdv Standard deviation of low resolution analysis departure update 2 -18 bcor Average of Bias correction -19 bcor_stdv Standard deviation of bias correction -20 vbcor average of Variational bias correction -21 vbcor_stdv Standard deviation of variational bias correction -22 fgdep_nbcor Average of background departure without bias correction -23 fgdep_nbcor_stdv Standard deviation of background departure without bias correction -24 windspeed Average of wind speed -25 windspeed_stdv Standard deviation of wind speed -26 norm_andep Average of normalised analysis fit -27 norm_andep_stdv Standard deviation of normalised analysis fit -28 norm_fgdep Average of normalised background fit -29 norm_fgdep_stdv Standard deviation of normalised background fit -30 fso Average of forecast sensitivity to observations -31 fso_stdv stdv of forecast sensitivity to observations -32 norm_obs Average of normalised observation -33 norm_obs_stdv stdv of normalised observation -34 anso Average of analyse sensitivity to observations -35 anso_stdv stdv of analyse sensitivity to observations -40 fcst_dep1 Average of forecast departure for step 1 -41 fcst_dep1_stdv Standard deviation of forecast departure for step 1 -42 fcst_dep2 Average of forecast departure for step 2 -43 fcst_dep2_stdv Standard deviation of forecast departure for step 2 -44 norm_fcst_dep1 Average of normalised forecast departure for step 1 -45 norm_fcst_dep1_stdv Standard deviation of normalised forecast departure for step 1 -46 norm_fcst_dep2 Average of normalised forecast departure for step 2 -47 norm_fcst_dep2_stdv Standard deviation of normalised forecast departure for step 2 -60 far_rate False alarm rate -62 miss_rate Miss rate -64 hit_rate hit rate -66 corr_nul correct nuls -68 est_fg_err Estimated variance of the first guess error -70 edafgspr EDA first guess variance -72 edaanspr EDA Analysis variance -#36-255 Reserved diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table deleted file mode 100644 index 75ccf290..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.reporttype.table +++ /dev/null @@ -1,185 +0,0 @@ -#Code Table obstat.reporttype: List of Report types -1 TIROS-N TIROS-N -2 NOAA-6/HIRS NOAA-6/HIRS -3 NOAA-7/HIRS NOAA-7/HIRS -4 NOAA-8/HIRS NOAA-8/HIRS -5 NOAA-9/HIRS NOAA-9/HIRS -6 NOAA-10/HIRS NOAA-10/HIRS -7 NOAA-11/HIRS NOAA-11/HIRS -8 NOAA-12/HIRS NOAA-12/HIRS -9 NOAA-14/HIRS NOAA-14/HIRS -10 NOAA-15/HIRS NOAA-15/HIRS -11 NOAA-16/HIRS NOAA-16/HIRS -12 NOAA-17/HIRS NOAA-17/HIRS -13 NOAA-18/HIRS NOAA-18/HIRS -14 NOAA-19/HIRS NOAA-19/HIRS -15 METOP-A/HIRS METOP-A/HIRS -1001 NOAA-15/AMSUA NOAA-15/AMSUA -1002 NOAA-16/AMSUA NOAA-16/AMSUA -1003 NOAA-17/AMSUA NOAA-17/AMSUA -1004 NOAA-18/AMSUA NOAA-18/AMSUA -1005 NOAA-19/AMSUA NOAA-19/AMSUA -1006 NOAA-19/AMSUA NOAA-19/AMSUA -1007 METOP-A/AMSUA METOP-A/AMSUA -1008 AQUA/AMSUA AQUA/AMSUA -2001 NOAA-15/AMSUB NOAA-15/AMSUB -2002 NOAA-16/AMSUB NOAA-16/AMSUB -2003 NOAA-17/AMSUB NOAA-17/AMSUB -2004 NOAA-18/AMSUB NOAA-18/AMSUB -2005 NOAA-18/AMSUB NOAA-18/AMSUB -3001 NOAA-19/MHS NOAA-19/MHS -3002 METOP-A/MHS METOP-A/MHS -4001 GOES-5/IMAGER GOES-5/IMAGER -4002 GOES-8/IMAGER GOES-8/IMAGER -4003 GOES-9/IMAGER GOES-9/IMAGER -4004 GOES-10/IMAGER GOES-10/IMAGER -4005 GOES-11/IMAGER GOES-11/IMAGER -4006 GOES-12/IMAGER GOES-12/IMAGER -4007 METEOSAT-7/MVIRI METEOSAT-7/MVIRI -4008 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI -4009 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI -4010 MTSAT-1R/IMAGER MTSAT-1R/IMAGER -5001 ERS-2/GOME ERS-2/GOME -5002 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI -5003 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI -5004 AURA/MLS AURA/MLS -5005 AURA/OMI AURA/OMI -5006 NOAA-9/SBUV NOAA-9/SBUV -5007 NOAA-11/SBUV NOAA-11/SBUV -5008 NOAA-14/SBUV NOAA-14/SBUV -5009 NOAA-16/SBUV NOAA-16/SBUV -5010 NOAA-17/SBUV NOAA-17/SBUV -5011 NOAA-18/SBUV NOAA-18/SBUV -5012 NOAA-19/SBUV NOAA-19/SBUV -5013 METOP-A/GOME-2 METOP-A/GOME-2 -5014 ENVISAT/SCIAMACHY ENVISAT/SCIAMACHY -5015 ENVISAT/GOMOS ENVISAT/GOMOS -5016 ENVISAT/MIPAS ENVISAT/MIPAS -5017 Metror-3/TOMS Metror-3/TOMS -5018 Nimbus-7/TOMS Nimbus-7/TOMS -6001 ENVISAT/GOMOS ENVISAT/GOMOS -6002 ENVISAT/MERIS ENVISAT/MERIS -7001 METOP-A/GRAS METOP-A/GRAS -7002 CHAMP CHAMP -7003 GRACE-A GRACE-A -7004 COSMIC-1 COSMIC-1 -7005 COSMIC-2 COSMIC-2 -7006 COSMIC-3 COSMIC-3 -7007 COSMIC-4 COSMIC-4 -7008 COSMIC-5 COSMIC-5 -7009 COSMIC-6 COSMIC-6 -8001 METEOSAT-2/AMV METEOSAT-2/AMV -8002 METEOSAT-3/AMV METEOSAT-3/AMV -8003 METEOSAT-4/AMV METEOSAT-4/AMV -8014 METEOSAT-5/AMV METEOSAT-5/AMV -8005 METEOSAT-6/AMV METEOSAT-6/AMV -8006 METEOSAT-7/AMV METEOSAT-7/AMV -8007 METEOSAT-8/AMV METEOSAT-8/AMV -8008 METEOSAT-9/AMV METEOSAT-9/AMV -8009 GMS-5/AMV GMS-5/AMV -8010 MTSAT-1R/AMV MTSAT-1R/AMV -8011 GOES-9/WV GOES-9/WV -8012 GOES-10/AMV GOES-10/AMV -8013 GOES-11/AMV GOES-11/AMV -8014 GOES-12/AMV GOES-12/AMV -8015 NOAA-15/AVHRR NOAA-15/AVHRR -8016 NOAA-16/AVHRR NOAA-16/AVHRR -8017 NOAA-17/AVHRR NOAA-17/AVHRR -8018 NOAA-18/AVHRR NOAA-18/AVHRR -8019 NOAA-19/AVHRR NOAA-19/AVHRR -8020 TERRA/MODIS TERRA/MODIS -8021 AQUA/MODIS AQUA/MODIS -8022 FY-2C/IR FY-2C/IR -9001 ERS/SCATT ERS/SCATT -9002 ERS/SCATT ERS/SCATT -9003 ERS-2/SCATT ERS-2/SCATT -9004 QuickSCAT/SeaWind QuickSCAT/SeaWind -9005 METOP-A/ASCAT METOP-A/ASCAT -10001 DSMP-7/SSMI DSMP-7/SSMI -10002 DSMP-8/SSMI DSMP-8/SSMI -10003 DSMP-9/SSMI DSMP-9/SSMI -10004 DSMP-10/SSMI DSMP-10/SSMI -10005 DSMP-11/SSMI DSMP-11/SSMI -10006 DSMP-13/SSMI DSMP-13/SSMI -10007 DSMP-14/SSMI DSMP-14/SSMI -10008 DSMP-15/SSMI DSMP-15/SSMI -10009 DSMP-8/SSMI DSMP-8/SSMI -10010 DSMP-9/SSMI DSMP-9/SSMI -10011 DSMP-10/SSMI DSMP-10/SSMI -10012 DSMP-11/SSMI DSMP-11/SSMI -10013 DSMP-13/SSMI DSMP-13/SSMI -10014 DSMP-14/SSMI DSMP-14/SSMI -10015 DSMP-15/SSMI DSMP-15/SSMI -11001 METOP-A/IASI METOP-A/IASI -12001 AQUA/AIRS AQUA/AIRS -13001 DMSP-16/SSMIS DMSP-16/SSMIS -14001 TRMM/TMI TRMM/TMI -15001 AQUA/AMSRE AQUA/AMSRE -16001 Automatic-Land Automatic-Land -16002 Manual-Land Manual-Land -16003 Abbreviated-SYNOP Abbreviated-SYNOP -16004 METAR METAR -16005 DRIBU DRIBU -16006 Automatic-SHIP Automatic-SHIP -16007 Reduced-SHIP Reduced-SHIP -16008 SHIP SHIP -16009 Abbreviated-SHIP Abbreviated-SHIP -16010 DRIBU-BATHY DRIBU-BATHY -16011 DRIBU-TESAC DRIBU-TESAC -16012 Ground-Based-GPS Ground-Based-GPS -16013 Land-PILOT Land-PILOT -16014 PILOT-SHIP PILOT-SHIP -16015 American-WindProfilers American-WindProfilers -16016 American-WindProfilers American-WindProfilers -16017 European-WindProfilers European-WindProfilers -16018 Japanese-WindProfilers Japanese-WindProfilers -16019 TEMP-SHIP TEMP-SHIP -16020 DROP-Sonde DROP-Sonde -16021 Mobile-TEMP Mobile-TEMP -16022 Land-TEMP Land-TEMP -16023 ROCOB-TEMP ROCOB-TEMP -16024 SHIP-ROCOB SHIP-ROCOB -16025 European-WindProfilers European-WindProfilers -16026 AIREP AIREP -16027 CODAR CODAR -16028 COLBA COLBA -16029 AMDAR AMDAR -16030 ACARS ACARS -16031 PAOB PAOB -16032 PAOB PAOB -16033 SATOB_Temperature SATOB_Temperature -16034 SATOB_Wind SATOB_Wind -16035 SATOB_Temperature SATOB_Temperature -16036 SATOB_Temperature SATOB_Temperature -16037 SATEM_500km SATEM_500km -16038 SATEM_500km SATEM_500km -16039 SATEM_500km SATEM_500km -16040 SATEM_500km SATEM_500km -16041 SATEM_250km SATEM_250km -16042 SATEM_250km SATEM_250km -16043 SATEM_250km SATEM_250km -16044 SATEM_250km SATEM_250km -17001 Automatic_Land Automatic_Land -17002 Manual_Land Manual_Land -17003 Abbreviated_SYNOP Abbreviated_SYNOP -17004 METAR METAR -17005 DRIBU DRIBU -17006 Automatic_SHIP Automatic_SHIP -17007 Reduced_SHIP Reduced_SHIP -17008 SHIP SHIP -17009 Abbreviated-SHIP Abbreviated-SHIP -17010 DRIBU-BATHY DRIBU-BATHY -17011 DRIBU-TESAC DRIBU-TESAC -17012 Ground-Based_GPS Ground-Based_GPS -17013 Land-PILOT Land-PILOT -17014 PILOT-SHIP PILOT-SHIP -17015 American-Wind American-Wind -17016 American-Wind American-Wind -17017 European-Wind European-Wind -17018 Japanese-Wind Japanese-Wind -17019 TEMP-SHIP TEMP-SHIP -17020 DROP-Sonde DROP-Sonde -17021 Mobile-TEMP Mobile-TEMP -17022 Land-TEMP Land-TEMP -17023 ROCOB-TEMP ROCOB-TEMP -17024 SHIP-ROCOB SHIP-ROCOB diff --git a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table b/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table deleted file mode 100644 index cb80dc4e..00000000 --- a/eccodes/definitions.save/grib2/tables/local/ecmf/obstat.varno.table +++ /dev/null @@ -1,31 +0,0 @@ -#Code Table obstat.4.0: List of variable number -110 P Pressure (Pa) - 1 Z Geopotential height (m) - 57 Z Geopotential height (m) - 3 U zonal component of wind (m/s) - 4 V meridional component of wind (m/s) - 41 10mU 10 m zonal component of wind (m/s) - 42 10mV 10 m meridional component of wind (m/s) -125 Amb_10mU 10 m zonal ambiguous component of wind (m/s) -124 Amb_10mV 10 m meridional ambiguous component of wind (m/s) -111 DD wind direction (DD) degree -112 FF wind speed (FF) m/s - 2 T Temperature (K) - 39 T2m 2m temperature (K) - 59 DewPT Dew point temperature (K) -119 BT Brightness temperature (K) - 7 SHU specific humidity (Kg/kg) - 9 PWC precipitable water content (Kg/m2) - 58 RH 2m relative humidity (%) -123 LWC liquid water content (Kg/m2) -206 Ozone integrated ozone density (O3) DU -128 Path_delay Atmospheric path delay -162 Bending_Angle Bending Angle (Alpha) Radians -174 Aerosol Aerosol -181 NO2 Nitrogen dioxide (NO2) -182 SO2 Sulphur dioxide (SO2) -183 CO Carbon monoxide (CO) -184 HCHO Formaldehyde (HCHO) -185 GO3 GEMS ozone (GO3) -186 CO2 Carbone dioxide (CO2) -188 CH4 Methane (CH4) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1.1.table deleted file mode 100644 index 2f004eb8..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code table 1.1 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -1 1 DWD local entries from the current Master table are used -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table deleted file mode 100644 index ae252b89..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/1.4.table +++ /dev/null @@ -1,2 +0,0 @@ -# Code table 1.4 - Type of data -192 pa perturbed analysis diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table deleted file mode 100644 index 0281910a..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.0.table +++ /dev/null @@ -1,10 +0,0 @@ -# Code table 4.0 - Product definition template number -# 32768-65534 Reserved for local use -40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -40055 40055 tiles parameters at a horizontal level or in a horizontal layer at a point in time -40056 40056 tiles Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for ........... parameters -40455 40455 ???tiles parameters at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -50001 50001 Forecasting Systems with Variable Resolution in a point in time -50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval -65535 65535 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table deleted file mode 100644 index ab283d46..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.1.0.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -# 192-254 Reserved for local use -192 192 Medical meteorological products -193 193 Diagnostic meteorological products -194 194 Analyse error products -195 195 Probabilities from deterministic local-model -196 196 Probabilities from WarnMOS -197 197 Mineral dust -198 198 Covariance -254 254 DUMMIES for testing -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table deleted file mode 100644 index 0b6c0225..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.11.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 4.11 - Type of time intervals -#dieser Eintrag muesste eigentlich 192 lauten!?!?! -#13 13 Fields of atmosphere from analysis (P1=0) # DWD only # -# 192-254 Reserved for local use diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table deleted file mode 100644 index 7b8c7981..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.0.table +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Temperature tendency due to convection(K s-1) -193 193 Temperature tendency due to grid scale precipitation (K s-1) -194 194 Universal thermal climate index without direct incident short wave radiation(K) -195 195 Temperature, corrected in presence of snow (K) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table deleted file mode 100644 index 1005b637..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.1.table +++ /dev/null @@ -1,46 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Vertical integral of divergence of total water content (rate) (kg m-2 s-1) -193 193 Sub-grid scale cloud water (kg kg-1) -194 194 Sub-grid scale cloud ice (kg kg-1) -195 195 Specific cloud liquid water content, convective cloud (kg kg-1) -196 196 Specific content of precipitation particles (needed for water loading)(kg kg-1) -197 197 Specific humidity tendency due to convection (kg kg-1 s-1) -198 198 Tendency of specific cloud liquid water content due to convection (kg kg-1 s-1) -199 199 Tendency of specific cloud ice content due to convection (kg kg-1 s-1) -200 200 Specific humidity tendency due to grid scale precipitation(kg kg-1 s-1) -201 201 Tendency of specific cloud liquid water content due to grid scale precipitation (kg kg-1 s-1) -202 202 Tendency of specific cloud ice content due to grid scale precipitation (kg kg-1 s-1) -203 203 Fresh snow factor (weighting function for albedo indicating freshness of snow)(Numeric) -204 204 Height of snow fall limit (m) -205 205 Convective vertical mass flux (kg m-2 s-1) -206 206 Moisture convergence for Kuo-type closure (s-1) -207 207 Tendency of specific humidity (s-1) -208 208 Water vapor flux (s-1 m-2) -209 209 Niederschlagsdargebot: potential water supply from snowpack (rain and snow melt, rate) (kg m-2 s-1) -210 210 Liquid water content in snow (kg m-2) -211 211 Specific humidity (diagnostic)(kg kg-1) -212 212 Specific cloud water content (diagnostic)(kg kg-1) -213 213 Specific cloud ice content (diagnostic)(kg kg-1) -214 214 Total column integrated water vapour (diagnostic)(kg m-2) -215 215 Total column integrated cloud water (diagnostic)(kg m-2) -216 216 Total column integrated cloud ice (diagnostic)(kg m-2) -217 217 Specific number concentration of snow(kg-1) -218 218 Specific number concentration of graupel(kg-1) -219 219 Specific number concentration of hail(kg-1) -220 220 Relative humidity over mixed phase (%) -221 221 Number density of snow(m-3) -222 222 Number density of graupel(m-3) -223 223 Number density of hail(m-3) -224 224 Mass density of rain(kg m-3) -225 225 Mass density of snow(kg m-3) -226 226 Mass density of graupel(kg m-3) -227 227 Mass density of hail(kg m-3) -228 228 Specific number concentration of rain(kg-1) -229 229 Number density of rain(m-3) -230 230 Rain drain from snowpack (rate) (kg m-2 s-1) -231 231 Cloud ice ratio qi/(qc+qi)(%) -232 232 Percentage of convective precipitation (from total prec)(%) -233 233 Percentage of precipitation in snow (from total prec.)(%) -234 234 Standard deviation of saturation deficit(Numeric) -235 235 Maximum snow height during contiguous accumulating snow period (coupled with snow age)(m) -238 238 Hail diameter (mm) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table deleted file mode 100644 index 70ec761c..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -192 192 Total sulfate aerosol (1) -193 193 Total soil dust aerosol (1) -194 194 Organic aerosol (1) -195 195 Black carbon aerosol (1) -196 196 Sea salt aerosol (1) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table deleted file mode 100644 index 3380a9e2..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.14.table +++ /dev/null @@ -1,3 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Height of ozone maximum (climatological) (Pa) -193 193 Vertically integrated ozone content (climatological) (Pa(O3)) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table deleted file mode 100644 index a80a93e1..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.15.table +++ /dev/null @@ -1,8 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Delay of the GPS signal through the (total) atmos. (m) -193 193 Delay of the GPS signal through wet atmos. (m) -194 194 Delay of the GPS signal through dry atmos. (m) -195 195 Radar precipitation rate (kg m-2 h-1) -196 196 Radar quality information (Proportion) -197 197 Radar blacklist (Numeric) -198 198 Height of radar beam above ground (m) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table deleted file mode 100644 index 6a7bce6c..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.16.table +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 precipitation, qualified,BRD(kg m-2) -193 193 precipitation,BRD(kg m-2) -194 194 precipitation phase,BRD(Numeric) -195 195 hail flag,BRD(Numeric) -196 196 snow_rate,BRD(0.01 m) -197 197 snow_rate,qualified,BRD(0.01 m) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table deleted file mode 100644 index f2b51a03..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.17.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Lightning potential index (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table deleted file mode 100644 index e5c04699..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.18.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Diagnostic activity concentration of radionuclides (Bq m-3) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table deleted file mode 100644 index 27dcb9b5..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.19.table +++ /dev/null @@ -1,39 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Tendency of turbulent kinetic energy(m2 s-3) -193 193 Coriolis parameter(s-1) -194 194 Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab)(Numeric) -195 195 Icing Base (hft) - Icing Degree Composit(hft) -196 196 Icing Max Base (hft) - Icing Degree Composit(hft) -197 197 Icing Max Top (hft) - Icing Degree Composit(hft) -198 198 Icing Top (hft) - Icing Degree Composit(hft) -199 199 Icing Vertical Code (1=continuous,2=discontinuous) - Icing Degree Composit(Numeric) -200 200 Icing Max Code (1=light,2=moderate,3=severe) - Icing Degree Composit(Numeric) -201 201 Icing Base (hft) - Icing Scenario Composit(hft) -202 202 Icing Signifikant Base (hft) - Icing Scenario Composit(hft) -203 203 Icing Signifikant Top (hft) - Icing Scenario Composit(hft) -204 204 Icing Top (hft) - Icing Scenario Composit(hft) -205 205 Icing Vertical Code (1=continuous,2=discontinuous) - Icing Scenario Composit(Numeric) -206 206 Icing Signifikant Code (1=general,2=convective,3=stratiform,4=freezing) - Icing Scenario Composit(Numeric) -207 207 Icing Degree Code (1=light,2=moderate,3=severe)(Numeric) -208 208 Icing Scenario Code (1=general,2=convective,3=stratiform,4=freezing)(Numeric) -209 209 current weather (symbol number: 0..9)(Numeric) -216 216 Eddy Dissipation Rate(m2/3 s-1) -217 217 Ellrod Index(10-7 s-2) -218 218 Production of TKE (m2 s-3) -219 219 Buoyancy-production of TKE due to sub-grid scale convection (m2 s-3) -220 220 Wake-production of TKE due to sub-grid scale orography (m2 s-3) -221 221 Shear-production of TKE due to separated horizontal shear modes (m2 s-3) -222 222 Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) (%) -223 223 Albedo - near infrared (0.7 - 5.0 m-6) (%) -224 224 Eddy Dissipation Rate Total Col-Max. Upper FIR (< FL245)(m2/3 s-1) -225 225 Eddy Dissipation Rate Total Col-Max. Lower UIR (= 10mm(kg m2) -3 3 Probability of 1h total precipitation >= 25mm(kg m2) -14 14 Probability of 6h total precipitation >= 20mm(kg m2) -17 17 Probability of 6h total precipitation >= 35mm(kg m2) -26 26 Probability of 12h total precipitation >= 25mm(kg m2) -29 29 Probability of 12h total precipitation >= 40mm(kg m2) -32 32 Probability of 12h total precipitation >= 70mm(kg m2) -69 69 Probability of 6h accumulated snow >=0.5cm(kg m2) -70 70 Probability of 6h accumulated snow >= 5cm(kg m2) -71 71 Probability of 6h accumulated snow >= 10cm(kg m2) -72 72 Probability of 12h accumulated snow >=0.5cm(kg m2) -74 74 Probability of 12h accumulated snow >= 10cm(kg m2) -75 75 Probability of 12h accumulated snow >= 15cm(kg m2) -77 77 Probability of 12h accumulated snow >= 25cm(kg m2) -132 132 Probability of 1h maximum wind gust speed >= 14m/s(m s-1) -134 134 Probability of 1h maximum wind gust speed >= 18m/s(m s-1) -136 136 Probability of 1h maximum wind gust speed >= 25m/s(m s-1) -137 137 Probability of 1h maximum wind gust speed >= 29m/s(m s-1) -138 138 Probability of 1h maximum wind gust speed >= 33m/s(m s-1) -139 139 Probability of 1h maximum wind gust speed >= 39m/s(m s-1) -191 191 Probability of black ice during 1h(Numeric) -197 197 Probability of thunderstorm during 1h(Numeric) -198 198 Probability of heavy thunderstorm during 1h(Numeric) -199 199 Probability of severe thunderstorm during 1h(Numeric) -212 212 Probability of snowdrift during 12h(Numeric) -213 213 Probability of strong snowdrift during 12h(Numeric) -232 232 Probability of temperature < 0 deg C during 1h(K) -236 236 Probability of temperature <= -10 deg C during 6h(K) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table deleted file mode 100644 index 02d7ea10..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.196.table +++ /dev/null @@ -1,15 +0,0 @@ -# This file is automatically generated, don't edit! -1 1 Prob Gewitter(Numeric) -2 2 Prob Starkes Gewitter(Numeric) -3 3 Prob Schweres Gewitter(Numeric) -4 4 Prob Dauerregen(Numeric) -5 5 Prob Ergiebiger Dauerregen(Numeric) -6 6 Prob Extrem ergiebiger Dauerregen(Numeric) -7 7 Prob Schneeverwehung(Numeric) -8 8 Prob Starke Schneeverwehung(Numeric) -9 9 Prob Glaette(Numeric) -10 10 Prob oertlich Glatteis(Numeric) -11 11 Prob Glatteis(Numeric) -12 12 Prob Nebel (ueberoertl. Sichtweite < 150 m)(Numeric) -13 13 Prob Tauwetter(Numeric) -14 14 Prob Starkes Tauwetter(Numeric) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table deleted file mode 100644 index 2aec356a..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.197.table +++ /dev/null @@ -1,9 +0,0 @@ -# This file is automatically generated, don't edit! -33 33 Mass concentration of dust (minimum mode) (kg m-3) -34 34 Mass concentration of dust (medium mode) (kg m-3) -35 35 Mass concentration of dust (maximum mode) (kg m-3) -72 72 Number concentration of dust (minimum mode) (m-3) -73 73 Number concentration of dust (medium mode) (m-3) -74 74 Number concentration of dust (maximum mode) (m-3) -251 251 Mass concentration of dust (sum of all modes) (kg m-3) -252 252 Number concentration of dust (sum of all modes) (m-3) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table deleted file mode 100644 index 4a4a4558..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.198.table +++ /dev/null @@ -1,4 +0,0 @@ -# This file is automatically generated, don't edit! -0 0 Liquid water potential temperature variance(K2) -1 1 Total water specific humidity variance(kg2 kg-2) -2 2 Liquid water potential temperature - total water specific humidity covariance(K kg kg-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table deleted file mode 100644 index b82c9b6d..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.199.table +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically generated, don't edit! -0 0 Sky-view-factor(Numeric) -1 1 Horizon angle - topography(Numeric) -2 2 Slope angle - topography(Numeric) -3 3 Slope aspect - topography(Numeric) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table deleted file mode 100644 index 4fb548fd..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.2.table +++ /dev/null @@ -1,21 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Zonal wind tendency due to convection (m s-2) -193 193 Meridional wind tendency due to convection (m s-2) -194 194 Zonal wind tendency due to sub-grid scale oro. (m s-2) -195 195 Meridional wind tendency due to sub-grid scale oro. (m s-2) -196 196 Kinetic energy (J kg-1) -197 197 Absolute vorticity advection(s-2) -198 198 Relative vorticity, u-component (s-1) -199 199 Relative vorticity, v-component (s-1) -200 200 Atmospheric resistance(s m-1) -201 201 Mean vertical wind shear for specified layer or layer-mean vertical wind shear(s-1) -202 202 Norm of (vertical) wind shear vector between two levels(m s-1) -203 203 Threshold friction velocity(m s-1) -204 204 Dynamical gust(m s-1) -205 205 Convective gust(m s-1) -206 206 Maximum rotation amplitude (positive or negative) over given column (s-1) -207 207 Maximum updraft track over given column (m s-1) -208 208 U-component of (vertical) wind shear vector between two levels (m s-1) -209 209 V-component of (vertical) wind shear vector between two levels (m s-1) -210 210 Updraft duration(s) -211 211 Updraft mask(Numeric) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table deleted file mode 100644 index be9d530d..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.20.table +++ /dev/null @@ -1,19 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Number of pollen in the reservoir (previous timestep) (m-2) -193 193 Number of pollen released into the reservoir (new) (m-2) -194 194 State of the pollen season (eq. zero before and after season, the higher, the more plants are flowering) (0-1) -195 195 Height correction for pollen emission (decreasing emission with height) (0-1) -196 196 Cumulated weighted 2m temperature sum of daily values for pollen (deg C) -197 197 Cumulated 2m temperature sum threshold for the start of pollen season (climatological) (deg C) -198 198 Cumulated 2m temperature sum threshold for the end of pollen season (climatological) (deg C) -199 199 Number of days since the start of pollen season (if present day is in the season: zero outside season) (d) -200 200 Number of days since the start of pollen season (if present day is outside the season: length of current season) (d) -201 201 Length of pollen season (d) -202 202 Pollen number emission flux (m-2 s-1) -203 203 Wet deposition mass flux if rain reaches the surface (kg m-2 s-1) -204 204 Surface dry deposition of number concentration (m-2 s-1) -205 205 Wet deposition by grid scale precipitation of number concentration (m-2 s-1) -206 206 Wet deposition by convective precipitation of number concentration (m-2 s-1) -207 207 Wet deposition of number concentration if rain reaches the surface (m-2 s-1) -208 208 Sedimentation of number concentration (m-2 s-1) -209 209 Aerosol backscatter (not attenuated) for given wavelength (m-1 sr-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table deleted file mode 100644 index 67375817..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.254.table +++ /dev/null @@ -1,255 +0,0 @@ -# This file is automatically generated, don't edit! -1 1 DUMMY_1() -2 2 DUMMY_2() -3 3 DUMMY_3() -4 4 DUMMY_4() -5 5 DUMMY_5() -6 6 DUMMY_6() -7 7 DUMMY_7() -8 8 DUMMY_8() -9 9 DUMMY_9() -10 10 DUMMY_10() -11 11 DUMMY_11() -12 12 DUMMY_12() -13 13 DUMMY_13() -14 14 DUMMY_14() -15 15 DUMMY_15() -16 16 DUMMY_16() -17 17 DUMMY_17() -18 18 DUMMY_18() -19 19 DUMMY_19() -20 20 DUMMY_20() -21 21 DUMMY_21() -22 22 DUMMY_22() -23 23 DUMMY_23() -24 24 DUMMY_24() -25 25 DUMMY_25() -26 26 DUMMY_26() -27 27 DUMMY_27() -28 28 DUMMY_28() -29 29 DUMMY_29() -30 30 DUMMY_30() -31 31 DUMMY_31() -32 32 DUMMY_32() -33 33 DUMMY_33() -34 34 DUMMY_34() -35 35 DUMMY_35() -36 36 DUMMY_36() -37 37 DUMMY_37() -38 38 DUMMY_38() -39 39 DUMMY_39() -40 40 DUMMY_40() -41 41 DUMMY_41() -42 42 DUMMY_42() -43 43 DUMMY_43() -44 44 DUMMY_44() -45 45 DUMMY_45() -46 46 DUMMY_46() -47 47 DUMMY_47() -48 48 DUMMY_48() -49 49 DUMMY_49() -50 50 DUMMY_50() -51 51 DUMMY_51() -52 52 DUMMY_52() -53 53 DUMMY_53() -54 54 DUMMY_54() -55 55 DUMMY_55() -56 56 DUMMY_56() -57 57 DUMMY_57() -58 58 DUMMY_58() -59 59 DUMMY_59() -60 60 DUMMY_60() -61 61 DUMMY_61() -62 62 DUMMY_62() -63 63 DUMMY_63() -64 64 DUMMY_64() -65 65 DUMMY_65() -66 66 DUMMY_66() -67 67 DUMMY_67() -68 68 DUMMY_68() -69 69 DUMMY_69() -70 70 DUMMY_70() -71 71 DUMMY_71() -72 72 DUMMY_72() -73 73 DUMMY_73() -74 74 DUMMY_74() -75 75 DUMMY_75() -76 76 DUMMY_76() -77 77 DUMMY_77() -78 78 DUMMY_78() -79 79 DUMMY_79() -80 80 DUMMY_80() -81 81 DUMMY_81() -82 82 DUMMY_82() -83 83 DUMMY_83() -84 84 DUMMY_84() -85 85 DUMMY_85() -86 86 DUMMY_86() -87 87 DUMMY_87() -88 88 DUMMY_88() -89 89 DUMMY_89() -90 90 DUMMY_90() -91 91 DUMMY_91() -92 92 DUMMY_92() -93 93 DUMMY_93() -94 94 DUMMY_94() -95 95 DUMMY_95() -96 96 DUMMY_96() -97 97 DUMMY_97() -98 98 DUMMY_98() -99 99 DUMMY_99() -100 100 DUMMY_100() -101 101 DUMMY_101() -102 102 DUMMY_102() -103 103 DUMMY_103() -104 104 DUMMY_104() -105 105 DUMMY_105() -106 106 DUMMY_106() -107 107 DUMMY_107() -108 108 DUMMY_108() -109 109 DUMMY_109() -110 110 DUMMY_110() -111 111 DUMMY_111() -112 112 DUMMY_112() -113 113 DUMMY_113() -114 114 DUMMY_114() -115 115 DUMMY_115() -116 116 DUMMY_116() -117 117 DUMMY_117() -118 118 DUMMY_118() -119 119 DUMMY_119() -120 120 DUMMY_120() -121 121 DUMMY_121() -122 122 DUMMY_122() -123 123 DUMMY_123() -124 124 DUMMY_124() -125 125 DUMMY_125() -126 126 DUMMY_126() -127 127 DUMMY_127() -128 128 DUMMY_128() -129 129 DUMMY_129() -130 130 DUMMY_130() -131 131 DUMMY_131() -132 132 DUMMY_132() -133 133 DUMMY_133() -134 134 DUMMY_134() -135 135 DUMMY_135() -136 136 DUMMY_136() -137 137 DUMMY_137() -138 138 DUMMY_138() -139 139 DUMMY_139() -140 140 DUMMY_140() -141 141 DUMMY_141() -142 142 DUMMY_142() -143 143 DUMMY_143() -144 144 DUMMY_144() -145 145 DUMMY_145() -146 146 DUMMY_146() -147 147 DUMMY_147() -148 148 DUMMY_148() -149 149 DUMMY_149() -150 150 DUMMY_150() -151 151 DUMMY_151() -152 152 DUMMY_152() -153 153 DUMMY_153() -154 154 DUMMY_154() -155 155 DUMMY_155() -156 156 DUMMY_156() -157 157 DUMMY_157() -158 158 DUMMY_158() -159 159 DUMMY_159() -160 160 DUMMY_160() -161 161 DUMMY_161() -162 162 DUMMY_162() -163 163 DUMMY_163() -164 164 DUMMY_164() -165 165 DUMMY_165() -166 166 DUMMY_166() -167 167 DUMMY_167() -168 168 DUMMY_168() -169 169 DUMMY_169() -170 170 DUMMY_170() -171 171 DUMMY_171() -172 172 DUMMY_172() -173 173 DUMMY_173() -174 174 DUMMY_174() -175 175 DUMMY_175() -176 176 DUMMY_176() -177 177 DUMMY_177() -178 178 DUMMY_178() -179 179 DUMMY_179() -180 180 DUMMY_180() -181 181 DUMMY_181() -182 182 DUMMY_182() -183 183 DUMMY_183() -184 184 DUMMY_184() -185 185 DUMMY_185() -186 186 DUMMY_186() -187 187 DUMMY_187() -188 188 DUMMY_188() -189 189 DUMMY_189() -190 190 DUMMY_190() -191 191 DUMMY_191() -192 192 DUMMY_192() -193 193 DUMMY_193() -194 194 DUMMY_194() -195 195 DUMMY_195() -196 196 DUMMY_196() -197 197 DUMMY_197() -198 198 DUMMY_198() -199 199 DUMMY_199() -200 200 DUMMY_200() -201 201 DUMMY_201() -202 202 DUMMY_202() -203 203 DUMMY_203() -204 204 DUMMY_204() -205 205 DUMMY_205() -206 206 DUMMY_206() -207 207 DUMMY_207() -208 208 DUMMY_208() -209 209 DUMMY_209() -210 210 DUMMY_210() -211 211 DUMMY_211() -212 212 DUMMY_212() -213 213 DUMMY_213() -214 214 DUMMY_214() -215 215 DUMMY_215() -216 216 DUMMY_216() -217 217 DUMMY_217() -218 218 DUMMY_218() -219 219 DUMMY_219() -220 220 DUMMY_220() -221 221 DUMMY_221() -222 222 DUMMY_222() -223 223 DUMMY_223() -224 224 DUMMY_224() -225 225 DUMMY_225() -226 226 DUMMY_226() -227 227 DUMMY_227() -228 228 DUMMY_228() -229 229 DUMMY_229() -230 230 DUMMY_230() -231 231 DUMMY_231() -232 232 DUMMY_232() -233 233 DUMMY_233() -234 234 DUMMY_234() -235 235 DUMMY_235() -236 236 DUMMY_236() -237 237 DUMMY_237() -238 238 DUMMY_238() -239 239 DUMMY_239() -240 240 DUMMY_240() -241 241 DUMMY_241() -242 242 DUMMY_242() -243 243 DUMMY_243() -244 244 DUMMY_244() -245 245 DUMMY_245() -246 246 DUMMY_246() -247 247 DUMMY_247() -248 248 DUMMY_248() -249 249 DUMMY_249() -250 250 DUMMY_250() -251 251 DUMMY_251() -252 252 DUMMY_252() -253 253 DUMMY_253() -254 254 DUMMY_254() diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table deleted file mode 100644 index 7ff056e8..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Pressure perturbation(Pa) -193 193 U-momentum flux due to SSO-effects (N m-2) -194 194 V-momentum flux due to SSO-effects (N m-2) -195 195 3 hour pressure change(Pa-3h) -196 196 Height of -10 degree Celsius isotherm(m) -197 197 Pressure difference between two specific levels (Pa) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table deleted file mode 100644 index 7dd308f0..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Solar radiation heating rate(K s-1) -193 193 Effective transmissivity of solar radiation (Numeric) -194 194 Time of maximum of UV Index, clouded(Numeric) -195 195 UV Index, clear sky; corrected for albedo, aerosol and altitude(Numeric) -196 196 Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol(Numeric) -197 197 UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds(Numeric) -198 198 Downward direct short wave radiation flux(W m-2) -199 199 Downward diffusive short wave radiation flux(W m-2) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table deleted file mode 100644 index e045bb4c..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.5.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Thermal radiation heating rate(K s-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table deleted file mode 100644 index 7ad7ab5f..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.6.table +++ /dev/null @@ -1,15 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Shallow convection cloud base (m) -193 193 Shallow convection cloud top (m) -194 194 Base index (vertical level) of main convective cloud (Numeric) -195 195 Top index (vertical level) of main convective cloud (Numeric) -196 196 Height of top of dry convection (m) -197 197 Height of thermals above MSL(m) -198 198 Modified cloud depth for media (Numeric) -199 199 Modified cloud cover for media (Numeric) -201 201 Type of convection (0..4) (Numeric) -202 202 Dry convection top index (Numeric) -203 203 Mass density of cloud droplets(kg m-3) -204 204 Mass density of cloud ice(kg m-3) -205 205 Possible astronomical sunshine duration (s) -206 206 Relative duration of sunshine (DURSUN * 100 / DURSUN_M)(%) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table deleted file mode 100644 index d794f96a..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.0.7.table +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Supercell detection index 1 (rot. up- and downdrafts) (s-1) -193 193 Supercell detection index 2 (only rot. updrafts) (s-1) -194 194 Deep convection index(K) -195 195 Enthalpy (J kg-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table deleted file mode 100644 index a6590ff8..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.1.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Tidal tendencies (s2 m-2) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table deleted file mode 100644 index 1c2750ca..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.0.table +++ /dev/null @@ -1,11 +0,0 @@ -# This file is automatically generated, don't edit! -193 193 wind sea period (s) -194 194 swell period (s) -195 195 total wave peak period (s) -196 196 total wave mean period (s) -197 197 total Tm1 period (s) -198 198 total Tm2 period (s) -199 199 total directional spread (degree true) -200 200 friction velocity (m s**-1) -201 201 Peak frequency (interpolated)(Hz) -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table deleted file mode 100644 index c0acae70..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.10.3.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Sea surface temperature interpolated in time in C(C) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table deleted file mode 100644 index ded9f6cb..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Ratio of NDVI (normalized differential vegetation index) to annual maximum (Numeric) -193 193 Latent heat flux from bare soil(W m-2) -194 194 Latent heat flux from plants(W m-2) -195 195 Stomatal resistance (s m-1) -196 196 Impervious (paved or sealed) surface fraction(Proportion) -197 197 Antropogenic heat flux (e.g. urban heating, traffic)(W m-2) -198 198 Evaporation of plants (integrated since "nightly reset") (kg m-2) -199 199 skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)(W m-2 K-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table deleted file mode 100644 index 2ad91b4d..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.2.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 Sum of contributions to evaporation (kg m-2) -193 193 Total transpiration from all soil layers (kg m-2) -194 194 Total forcing at soil surface (W m-2) -195 195 Residuum of soil moisture (kg m-2) -196 196 Soil type (1...9, local soilType.table) (Numeric) -197 197 Variance of soil moisture content (kg2 m-4) -198 198 Covariance of soil moisture content (kg2 m-4) -199 199 Surface emissivity (Numeric) -200 200 Soil moisture index (multilayers) (Numeric) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table deleted file mode 100644 index 0532073d..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.19.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -0 0 Luminosity(klux) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table deleted file mode 100644 index b32d0212..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.2.table +++ /dev/null @@ -1,14 +0,0 @@ -# This file is automatically generated, don't edit! -0 0 Wind direction in azimuth class (Numeric) -1 1 Along-wind Lagrangian time scale (Hanna) (s) -2 2 Cross-wind Lagrangian time scale (Hanna) (s) -3 3 Vertical Lagrangian time scale (Hanna) (s) -4 4 Zonal Lagrangian time scale (direct) (Hanna) (s) -5 5 Meridional Lagrangian time scale (direct) (Hanna) (s) -6 6 Vertical Lagrangian time scale (direct) (Hanna) (s) -7 7 Along-wind velocity fluctuation (Hanna)(m s-1) -8 8 Cross-wind velocity fluctuation (Hanna)(m s-1) -9 9 Vertical velocity fluctuation (Hanna)(m s-1) -10 10 Zonal velocity fluctuation (Hanna)(m s-1) -11 11 Meridional velocity fluctuation (Hanna)(m s-1) -12 12 Vertical velocity fluctuation (Hanna)(m s-1) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table deleted file mode 100644 index 1cff0f7c..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.5.table +++ /dev/null @@ -1,4 +0,0 @@ -# This file is automatically generated, dont edit! -1 1 Downward long-wave radiation flux at surface based on T_2M(W m-2 ) -2 2 Downward long-wave radiation flux at surface based on T_G(W m-2 ) -3 3 Downward long-wave radiation flux at surface based on T_SO(0)(W m-2 ) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table deleted file mode 100644 index defa7a08..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.215.7.table +++ /dev/null @@ -1,4 +0,0 @@ -# This file is automatically generated, don't edit! -0 0 Adedokun 2 Index(K) -1 1 Thunderstorm index for Switzerland (night time)(K) -2 2 Thunderstorm index for Switzerland (day time)(K) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table deleted file mode 100644 index a4f385d4..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.0.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 cloud type(Numeric) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table deleted file mode 100644 index 2f5e29c5..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.2.3.1.table +++ /dev/null @@ -1,2 +0,0 @@ -# This file is automatically generated, don't edit! -192 192 cloud top temperature(K) diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table deleted file mode 100644 index d845e448..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.3.table +++ /dev/null @@ -1,17 +0,0 @@ -192 192 bias corrected ensemble forecast -193 193 calibrated forecast -194 194 calibrated ensemble f. -195 195 interpolated analysis/forecast -196 196 invariant data -197 197 smoothed forecast -198 198 smoothed and calibrated forecast -199 199 probability forecast derived by neighbourhood method -201 201 diff. analysis - first guess -200 200 diff. init. analysis - analysis* -202 202 nudging -203 203 nudgecast -204 204 product derived by statistical model -205 205 deterministic forecast on ensemble mean(DOM) -206 206 time filtered bias -220 220 postprocessing -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table deleted file mode 100644 index c545958e..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.5.table +++ /dev/null @@ -1,14 +0,0 @@ -#im Vorgriff auf eine offizielle WMO-Regelung -25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) -192 ML ML start level of mixed layer parcel(CAPE/CIN) -193 MU MU start level of most unstable parcel(CAPE/CIN) -194 LFC Level of free convection -#195-198 reserved -199 radarElevComposite radarElevComposite radarElevComposite -#200 reserved -201 hor Surface: horizontal plane -202 vE Surface: vertical plane facing east -203 vN Surface: vertical plane facing north -204 vS Surface: vertical plane facing south -205 vW Surface: vertical plane facing west -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table deleted file mode 100644 index 5c561556..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.6.table +++ /dev/null @@ -1,3 +0,0 @@ -# Code table 4.6 - Type of ensemble forecast (DWD-local) -192 other other types of ensemble forecasts -255 255 missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table deleted file mode 100644 index c0ac0ce7..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.7.table +++ /dev/null @@ -1,64 +0,0 @@ -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table deleted file mode 100644 index 2f6e8b84..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/4.9.table +++ /dev/null @@ -1,64 +0,0 @@ -192 192 categorical event probability (local use entry to be proposed for WMO) -193 193 Reserved for local use -194 194 Reserved for local use -195 195 highest member index with event above lower limit -196 196 highest member index with event below upper limit -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table deleted file mode 100644 index dbbe65aa..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/backgroundProcess.table +++ /dev/null @@ -1,42 +0,0 @@ -0 0 main run -1 1 pre-assimilation -2 2 assimilation -3 3 test -4 4 onscreen analysis -5 5 WarnMOS -100 100 Blauthermik -101 SSO SSO - wake - production of TKE due to sub grid scale orography -102 HSH HSH - shear - production of TKE due to separated horizontal shear modes -103 CON CON - buoyancy - production of TKE due to sub grid scale convection -128 A Modell-Bezug -129 B Modell-Bezug -130 AB Modell-Bezug -131 C Modell-Bezug -132 AC Modell-Bezug -133 BC Modell-Bezug -134 ABC Modell-Bezug -135 D Modell-Bezug -136 AD Modell-Bezug -137 BD Modell-Bezug -138 ABD Modell-Bezug -139 CD Modell-Bezug -140 ACD Modell-Bezug -141 BCD Modell-Bezug -142 ABCD Modell-Bezug -143 E Modell-Bezug -144 AE Modell-Bezug -145 BE Modell-Bezug -146 ABE Modell-Bezug -147 CE Modell-Bezug -148 ACE Modell-Bezug -149 BCE Modell-Bezug -150 ABCE Modell-Bezug -151 DE Modell-Bezug -152 ADE Modell-Bezug -153 BDE Modell-Bezug -154 ABDE Modell-Bezug -155 CDE Modell-Bezug -156 ACDE Modell-Bezug -157 BCDE Modell-Bezug -158 ABCDE Modell-Bezug -255 NIL missing diff --git a/eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table b/eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table deleted file mode 100644 index 209928e4..00000000 --- a/eccodes/definitions.save/grib2/tables/local/edzw/1/generatingProcessIdentifier.table +++ /dev/null @@ -1,113 +0,0 @@ -001 icXgl icXgl (ICON global,icogl or icrgl or icigl) -002 icXeu icXeu (ICON europe,icoeu or icreu or icieu) -003 icXde icXde (ICON germany, icode or icrde or icide) -004 dwd dwd (reserved ICON DWD) -005 dwd dwd (reserved ICON DWD) -006 dwd dwd (reserved ICON DWD) -007 dwd dwd (reserved ICON DWD) -008 dwd dwd (reserved ICON DWD) -009 dwd dwd (reserved ICON DWD) -010 dwd dwd (reserved ICON DWD) -011 icXla icXla (ICON LAM) -012 icXln icXln (ICON LAM nest) -013 icXls icXls (ICON LAM sub-nest) -014 dwd dwd (reserved ICON DWD) -015 dwd dwd (reserved ICON DWD) -016 dwd dwd (reserved ICON DWD) -017 dwd dwd (reserved ICON DWD) -018 dwd dwd (reserved ICON DWD) -019 dwd dwd (reserved ICON DWD) -020 icX1b icX1b (ICON Bw 1) -021 bw bw (reserved ICON Bw) -022 bw bw (reserved ICON Bw) -023 bw bw (reserved ICON Bw) -024 bw bw (reserved ICON Bw) -025 an2mo an2mo (old name: AN2MO) -026 icrerr icrerr (ICON analysis error) -027 dwd dwd (reserved ICON analysis error) -033 analy analy (old name: ANALY) -034 034 034 (old name: WAMIT) -036 ecpeps_fc ecpeps_fc (old name: GPEPS) -037 noagm_fc noagm_fc (old name: KWGFS) -038 noaa_gf05 noaa_gf05 (old name: KWGF5) -044 b106_fc b106_fc (old name: B106V) -049 s106_fc s106_fc (old name: S106V) -053 an1mo an1mo (old name: AN1MO) -058 em3_an em3_an (old name: EM3AN) -059 em3_fc em3_fc (old name: EM3MO) -061 ecgm_fc ecgm_fc (old name: ECMFM) -064 064 064 (old name: KWBCM) -065 mfrgm_fc mfrgm_fc (old name: LFPWM) -068 noasice1_fc noasice1_fc (old name: KWB01) -069 ecgsm_fc ecgsm_fc (old name: SGGLO) -074 b106_an b106_an (old name: B106A) -075 ecmsm_fc ecmsm_fc (old name: SGMED) -079 s106_an s106_an (old name: S106A) -080 ecle_fcprob ecle_fcprob (old name: ECENS) -081 normw normw (old name: NORMW) -084 norm3 norm3 (old name: NORM3) -085 085 085 (old name: SGNAT) -086 086 086 (old name: SGESH) -087 087 087 (old name: SGBAL) -088 dm3_fcmean dm3_fcmean (old name: MOMI3) -094 p106_an p106_an (old name: P106A) -111 dm3_an dm3_an (old name: DM3AN) -112 dm3_fc dm3_fc (old name: DM3MO) -115 dm4_an dm4_an (old name: DM4AN) -116 dm4_fc dm4_fc (old name: DM4MO) -121 ukmgmp_fc ukmgmp_fc (old name: WAFTF) -122 ukmgmpt_fc ukmgmpt_fc (old name: WAFSZ) -123 noasice2_fc noasice2_fc (old name: KWB02) -124 noasice3_fc noasice3_fc (old name: KWB03) -126 noasice4_fc noasice4_fc (old name: KWB04) -127 ukmlm_fcnat ukmlm_fcnat (old name: NAEGR) -131 c1_an c1_an (old name: LM1AN) -132 c1_fc c1_fc (old name: LM1MO) -134 c2_an c2_an (old name: LM2AN) -135 c2_fc c2_fc (old name: LM2MO) -137 c3_an c3_an (old name: LM3AN) -138 c3_fc c3_fc (old name: LM3MO) -139 cd2 cd2 -140 ecgm_diag_fc05 ecgm_diag_fc05 (old name: keiner) -141 i032_an i032_an (old name: I032A) -143 i048_an i048_an (old name: I048A) -145 i064_an i064_an (old name: I064A) -147 i096_an i096_an (old name: I096A) -148 i096_fc i096_fc (old name: I096F) -149 i128_an i128_an (old name: I128A) -150 i128_fc i128_fc (old name: I128F) -157 r096_an r096_an (old name: R096A) -159 r128_an r128_an (old name: R128A) -160 r128_fc r128_fc (old name: R128F) -173 i192_an i192_an (old name: I192A) -174 i192_fc i192_fc (old name: I192F) -175 i256_an i256_an (old name: I256A) -176 i256_fc i256_fc (old name: I256F) -185 r192_an r192_an (old name: R192A) -186 r192_fc r192_fc (old name: R192F) -187 r256_an r256_an (old name: R256A) -188 r256_fc r256_fc (old name: R256F) -194 r128_anerr r128_anerr (old name: E128A) -195 r192_anerr r192_anerr (old name: E192A) -196 r256_anerr r256_anerr (old name: E256A) -197 gsm_fc gsm_fc (old name: SGGM0) -198 msm_fc msm_fc (old name: SGGM1) -199 gsm_fc025 gsm_fc025 (old name: SGGM2) -201 lsm_fc lsm_fc (old name: SGLM0) -202 202 202 (old name: SGLM1) -205 bshsice_fc bshsice_fc (old name: SGBSH) -206 i384_an i384_an (old name: I384A) -207 i384_fc i384_fc (old name: I384F) -208 r384_an r384_an (old name: R384A) -209 r384_fc r384_fc (old name: R384F) -210 r384_anerr r384_anerr (old name: E384A) -211 ukmgm_fcnat ukmgm_fcnat (old name: EGMES) -212 mfrlm_fcnat mfrlm_fcnat (old name: LFMES) -213 c4_fc c4_fc (old name: LM4MO) -214 c4_an c4_an (old name: LM4AN) -215 c5e_fc c5e_fc (old name: LM5MO) -216 c5e_an c5e_an (old name: LM5AN) -217 c6e_fc c6e_fc (old name: LM6MO) -218 c6e_an c6e_an (old name: LM6AN) -219 c7e_fc c7e_fc (old name:LM7MO,LEPS) -225 225 225 (old name: SGBS1) diff --git a/eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table b/eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table deleted file mode 100644 index 3a7c1435..00000000 --- a/eccodes/definitions.save/grib2/tables/local/kwbc/1/4.5.table +++ /dev/null @@ -1,89 +0,0 @@ -# Code table 4.5 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -# See ECC-469 -200 200 Entire atmosphere (considered as a single layer) -204 204 Highest tropospheric freezing level -211 211 Boundary layer cloud layer -212 212 Low cloud bottom level -213 213 Low cloud top level -214 214 Low cloud layer -220 220 Planetary boundary layer -222 222 Middle cloud bottom level -223 223 Middle cloud top level -224 224 Middle cloud layer -232 232 High cloud bottom level -233 233 High cloud top level -234 234 High cloud layer -242 242 Convective cloud bottom level -243 243 Convective cloud top level -244 244 Convective cloud layer -255 255 Missing diff --git a/eccodes/definitions.save/grib2/template.1.0.def b/eccodes/definitions.save/grib2/template.1.0.def deleted file mode 100644 index 0f8f3227..00000000 --- a/eccodes/definitions.save/grib2/template.1.0.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 1.0, Calendar Definition - -include "grib2/template.1.calendar.def"; diff --git a/eccodes/definitions.save/grib2/template.1.1.def b/eccodes/definitions.save/grib2/template.1.1.def deleted file mode 100644 index 7fcf51f5..00000000 --- a/eccodes/definitions.save/grib2/template.1.1.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 1.1, Paleontological Offset - -include "grib2/template.1.offset.def"; diff --git a/eccodes/definitions.save/grib2/template.1.2.def b/eccodes/definitions.save/grib2/template.1.2.def deleted file mode 100644 index 3d5c0e3b..00000000 --- a/eccodes/definitions.save/grib2/template.1.2.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 1.2, Calendar Definition and Paleontological Offset - -include "grib2/template.1.calendar.def"; -include "grib2/template.1.offset.def"; diff --git a/eccodes/definitions.save/grib2/template.1.calendar.def b/eccodes/definitions.save/grib2/template.1.calendar.def deleted file mode 100644 index 8d55bc3f..00000000 --- a/eccodes/definitions.save/grib2/template.1.calendar.def +++ /dev/null @@ -1,4 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Type of Calendar (see Code Table 1.6) -codetable[1] typeOfCalendar ('1.6.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; diff --git a/eccodes/definitions.save/grib2/template.1.offset.def b/eccodes/definitions.save/grib2/template.1.offset.def deleted file mode 100644 index 3f967e1a..00000000 --- a/eccodes/definitions.save/grib2/template.1.offset.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Number of tens of thousands of years of offset -signed[2] numberOfTensOfThousandsOfYearsOfOffset = missing() : can_be_missing,dump,no_copy,edition_specific; -alias paleontologicalOffset=numberOfTensOfThousandsOfYearsOfOffset ; diff --git a/eccodes/definitions.save/grib2/template.3.0.def b/eccodes/definitions.save/grib2/template.3.0.def deleted file mode 100644 index 11b5f0b0..00000000 --- a/eccodes/definitions.save/grib2/template.3.0.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.0, Latitude/longitude (or equidistant cylindrical, or Plate Carree) - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon.def"; diff --git a/eccodes/definitions.save/grib2/template.3.1.def b/eccodes/definitions.save/grib2/template.3.1.def deleted file mode 100644 index 73357306..00000000 --- a/eccodes/definitions.save/grib2/template.3.1.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.1, Rotated Latitude/longitude (or equidistant cylindrical, or Plate Carree) - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon.def"; -include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions.save/grib2/template.3.10.def b/eccodes/definitions.save/grib2/template.3.10.def deleted file mode 100644 index 818c43c0..00000000 --- a/eccodes/definitions.save/grib2/template.3.10.def +++ /dev/null @@ -1,85 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.10, Mercator -include "grib2/template.3.shape_of_the_earth.def"; - -unsigned[4] Ni : dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; -alias numberOfPointsAlongXAxis = Ni; -alias geography.Ni=Ni; - -unsigned[4] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj; -alias numberOfPointsAlongYAxis = Nj; -alias geography.Nj=Nj; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint: edition_specific,no_copy ; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# Lo1 - longitude of first grid point -signed[4] longitudeOfFirstGridPoint : edition_specific,no_copy; -alias Lo1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -include "grib2/template.3.resolution_flags.def"; - -# LaD - Latitude(s) at which the Mercator projection intersects the Earth -# (Latitude(s) where Di and Dj are specified) -signed[4] LaD : edition_specific,no_copy; -meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific,no_copy; -alias La2 = latitudeOfLastGridPoint; -meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# Lo2 - longitude of last grid point -signed[4] longitudeOfLastGridPoint: edition_specific,no_copy ; -alias Lo2 = longitudeOfLastGridPoint; -meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -include "grib2/template.3.scanning_mode.def"; - -# Orientation of the grid, angle between i direction on the map and the equator -# NOTE 1: Limited to the range of 0 to 90 degrees; if the angle of orientation of the grid is neither 0 nor 90 degrees, -# Di and Dj must be equal to each other -unsigned[4] orientationOfTheGrid : dump ; -meta geography.orientationOfTheGridInDegrees - scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; - -# Di - longitudinal direction grid length -# NOTE 2: Grid lengths are in units of 10**-3 m, at the latitude specified by LaD -unsigned[4] Di : edition_specific,no_copy; -alias longitudinalDirectionGridLength = Di; -meta geography.DiInMetres scale(Di,oneConstant,thousand,truncateDegrees) : dump; -alias DxInMetres = DiInMetres; - -# Dj - latitudinal direction grid length -# NOTE 2: Grid lengths are in units of 10**-3 m, at the latitude specified by LaD -unsigned[4] Dj : edition_specific,no_copy ; -alias latitudinalDirectionGridLength = Dj; -meta geography.DjInMetres scale(Dj,oneConstant,thousand,truncateDegrees) : dump; -alias DyInMetres = DjInMetres; - -iterator mercator(numberOfPoints,missingValue,values, - radius,Ni,Nj, - latitudeOfFirstGridPointInDegrees, longitudeOfFirstGridPointInDegrees, - LaDInDegrees, - latitudeOfLastGridPointInDegrees, longitudeOfLastGridPointInDegrees, - orientationOfTheGridInDegrees, - DiInMetres,DjInMetres, - iScansNegatively, jScansPositively, - jPointsAreConsecutive, alternativeRowScanning); - -nearest mercator(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.100.def b/eccodes/definitions.save/grib2/template.3.100.def deleted file mode 100644 index 89b16340..00000000 --- a/eccodes/definitions.save/grib2/template.3.100.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.100, Triangular grid based on an icosahedron (see Attachment I.2-GRIB-Att.) - -# n2 - exponent of 2 for the number of intervals on main triangle sides -unsigned[1] n2 : dump ; - -# n3 - exponent of 3 for the number of intervals on main triangle sides -unsigned[1] n3 : dump ; - -# Ni - number of intervals on main triangle sides of the icosahedron -unsigned[2] Ni : dump ; - -# nd - Number of diamonds -unsigned[1] nd : dump ; -alias numberOfDiamonds=nd; - -# Latitude of the pole point of the icosahedron on the sphere -signed[4] latitudeOfThePolePoint : dump ; -meta geography.latitudeOfThePolePointInDegrees scale(latitudeOfThePolePoint,one,grib2divider,truncateDegrees) : dump; - -# Longitude of the pole point of the icosahedron on the sphere -unsigned[4] longitudeOfThePolePoint : dump ; -meta geography.longitudeOfThePolePointInDegrees g2lon(longitudeOfThePolePoint); - -# Longitude of the centre line of the first diamond of the icosahedron on the sphere -unsigned[4] longitudeOfFirstDiamondCentreLine : dump ; -meta geography.longitudeOfFirstDiamondCentreLineInDegrees g2lon(longitudeOfFirstDiamondCentreLine); - -# Grid point position -codetable[1] gridPointPosition ('3.8.table',masterDir,localDir); - -# Numbering order of diamonds -flags[1] numberingOrderOfDiamonds 'grib2/tables/[tablesVersion]/3.9.table'; - -# Scanning mode for one diamond -flags[1] scanningModeForOneDiamond 'grib2/tables/[tablesVersion]/3.10.table'; - -# nt - total number of grid points -unsigned[4] totalNumberOfGridPoints : dump ; - -alias nt = totalNumberOfGridPoints; - diff --git a/eccodes/definitions.save/grib2/template.3.1000.def b/eccodes/definitions.save/grib2/template.3.1000.def deleted file mode 100644 index 590151dd..00000000 --- a/eccodes/definitions.save/grib2/template.3.1000.def +++ /dev/null @@ -1,55 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.1000, Cross-section grid, with points equally spaced on the horizontal - -include "grib2/template.3.shape_of_the_earth.def"; - - -# Number of horizontal points -unsigned[4] numberOfHorizontalPoints : dump ; - -# Basic angle of the initial production domain -unsigned[4] basicAngleOfTheInitialProductionDomain = 0; - -# Subdivisions of basic angle used to define extreme longitudes and latitudes -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing;; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific ; - -alias La1 = latitudeOfFirstGridPoint; -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; - -alias Lo1 = longitudeOfFirstGridPoint; - -include "grib2/template.3.scanning_mode.def"; - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific; - -alias La2 = latitudeOfLastGridPoint; -# Lo2 - longitude of last grid point -unsigned[4] longitudeOfLastGridPoint: edition_specific ; - -alias Lo2 = longitudeOfLastGridPoint; -# Type of horizontal line -codetable[1] typeOfHorizontalLine ('3.20.table',masterDir,localDir) : dump ; - -# Number of vertical points -unsigned[2] numberOfVerticalPoints : dump ; - -# Physical meaning of vertical coordinate -codetable[1] meaningOfVerticalCoordinate ('3.15.table',masterDir,localDir) : dump ; - -# Vertical dimension coordinate values definition -codetable[1] verticalCoordinate ('3.21.table',masterDir,localDir) : dump ; - -# NC - Number of coefficients or values used to specify vertical coordinates -unsigned[2] NC : dump ; - -# Octets 67-(66+NC*4) : Coefficients to define vertical dimension coordinate values in functional form, or the explicit coordinate values -# (IEEE 32-bit floating-point values) -# ???? coefficients_to_define_vertical_dimension_coordinate_values_in_functional_form_or_the_explicit_coordinate_values - - diff --git a/eccodes/definitions.save/grib2/template.3.101.def b/eccodes/definitions.save/grib2/template.3.101.def deleted file mode 100644 index 6c37f39d..00000000 --- a/eccodes/definitions.save/grib2/template.3.101.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.101, General Unstructured Grid - -codetable[1] shapeOfTheEarth ('3.2.table',masterDir,localDir) : dump; - -unsigned[3] numberOfGridUsed : dump; - -unsigned[1] numberOfGridInReference : dump; - -# UUID of horizontal grid -byte[16] uuidOfHGrid : dump; - -template_nofail unstructuredGrid "grib2/localConcepts/[centre:s]/unstructuredGrid.def"; diff --git a/eccodes/definitions.save/grib2/template.3.110.def b/eccodes/definitions.save/grib2/template.3.110.def deleted file mode 100644 index 5d63071d..00000000 --- a/eccodes/definitions.save/grib2/template.3.110.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.110, Equatorial azimuthal equidistant projection -include "grib2/template.3.shape_of_the_earth.def"; - -# Nx - number of points along X-axis -unsigned[4] numberOfPointsAlongXAxis : dump ; - -alias Nx = numberOfPointsAlongXAxis; -# Ny - number of points along Y-axis -unsigned[4] numberOfPointsAlongYAxis : dump ; - -alias Ny = numberOfPointsAlongYAxis; -# La1 - latitude of tangency point -# (centre of grid) -signed[4] latitudeOfTangencyPoint : dump ; - -alias La1 = latitudeOfTangencyPoint; -# Lo1 - longitude of tangency point -unsigned[4] longitudeOfTangencyPoint : dump ; - -alias Lo1 = longitudeOfTangencyPoint; -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; - -# Dx - X-direction grid length in units of 10 -3 m as measured at the point of the axis -unsigned[4] Dx : dump ; - -# Dy - Y-direction grid length in units of 10 -3 m as measured at the point of the axis -unsigned[4] Dy : dump ; - -# Projection centre flag -unsigned[1] projectionCentreFlag : dump ; - -include "grib2/template.3.scanning_mode.def"; diff --git a/eccodes/definitions.save/grib2/template.3.1100.def b/eccodes/definitions.save/grib2/template.3.1100.def deleted file mode 100644 index 2996da7d..00000000 --- a/eccodes/definitions.save/grib2/template.3.1100.def +++ /dev/null @@ -1,75 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.1100, Hovmoller diagram grid with points equally spaced on the horizontal -include "grib2/template.3.shape_of_the_earth.def"; - -# Number of horizontal points -unsigned[5] numberOfHorizontalPoints : dump ; - -# Basic angle of the initial production domain -unsigned[4] basicAngleOfTheInitialProductionDomain = 0 : dump ; - -# Subdivisions of basic angle used to define extreme longitudes and latitudes -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing,dump; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific,dump; - -alias La1 =latitudeOfFirstGridPoint; -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific,dump; - -alias Lo1 =longitudeOfFirstGridPoint; - -include "grib2/template.3.scanning_mode.def"; - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific,dump; - -alias La2 = latitudeOfLastGridPoint; -# Lo2 - longitude of last grid point -unsigned[4] longitudeOfLastGridPoint : edition_specific,dump ; - -alias Lo2 = longitudeOfLastGridPoint; -# Type of horizontal line -codetable[1] typeOfHorizontalLine ('3.20.table',masterDir,localDir) : dump; - -# NT - Number of time steps -unsigned[4] numberOfTimeSteps : dump; - -alias NT = numberOfTimeSteps; -# Unit of offset from reference time -codetable[1] unitOfOffsetFromReferenceTime ('4.4.table',masterDir,localDir) : dump; - -# Offset from reference of first time -# (negative value when first bit set) -unsigned[4] offsetFromReferenceOfFirstTime ; - -# Type of time increment -codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) : dump; - -# Unit of time increment -codetable[1] unitOfTimeIncrement ('4.4.table',masterDir,localDir) : dump; - -# Time increment -# (negative value when first bit set) -unsigned[4] timeIncrement : dump ; - -# Year -unsigned[2] year : dump; - -# Month -unsigned[1] month : dump; - -# Day -unsigned[1] day : dump; - -# Hour -unsigned[1] hour : dump; - -# Minute -unsigned[1] minute : dump; - -# Second -unsigned[1] second : dump; - diff --git a/eccodes/definitions.save/grib2/template.3.12.def b/eccodes/definitions.save/grib2/template.3.12.def deleted file mode 100644 index e2b5bcb1..00000000 --- a/eccodes/definitions.save/grib2/template.3.12.def +++ /dev/null @@ -1,71 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.12, Transverse Mercator - -include "grib2/template.3.shape_of_the_earth.def"; - -unsigned[4] Ni : dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; -alias geography.Ni=Ni; - -unsigned[4] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj ; -alias geography.Nj=Nj; - -# LaR - geographic latitude of reference point -signed[4] latitudeOfReferencePoint: edition_specific,no_copy ; -alias LaR = latitudeOfReferencePoint; -meta geography.latitudeOfReferencePointInDegrees scale(latitudeOfReferencePoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# LoR - geographic longitude of reference point -signed[4] longitudeOfReferencePoint : edition_specific,no_copy; -alias LoR = longitudeOfReferencePoint; -meta geography.longitudeOfReferencePointInDegrees scale(longitudeOfReferencePoint,oneConstant,grib2divider,truncateDegrees) : dump; - -include "grib2/template.3.resolution_flags.def"; - -# m - scale factor at reference point ratio of distance on map to distance on spheroid -# (IEEE 32-bit floating-point values) -ieeefloat scaleFactorAtReferencePoint : edition_specific,no_copy; -alias m = scaleFactorAtReferencePoint; -alias geography.m=m; - -# XR - false easting, i-direction coordinate of reference point in units of 10-2 m -signed[4] XR : edition_specific,no_copy; -alias falseEasting = XR; -meta geography.XRInMetres scale(XR,one,hundred) : dump; - -# YR - false northing, j-direction coordinate of reference point in units of 10-2 m -signed[4] YR : edition_specific,no_copy ; -alias falseNorthing = YR; -meta geography.YRInMetres scale(YR,one,hundred) : dump; - -include "grib2/template.3.scanning_mode.def"; - -# Di - i-direction increment length in units of 10-2 m -unsigned[4] Di : edition_specific,no_copy; -alias iDirectionIncrementGridLength = Di; -meta geography.DiInMetres scale(Di,oneConstant,hundred,truncateDegrees) : dump; - -# Dj - j-direction increment length in units of 10-2 m -unsigned[4] Dj : edition_specific,no_copy; -alias jDirectionIncrementGridLength = Dj; -meta geography.DjInMetres scale(Dj,oneConstant,hundred,truncateDegrees) : dump; - -# x1 - i-direction coordinate of the first grid point in units of 10-2 m -signed[4] X1 : no_copy; -meta geography.X1InGridLengths scale(X1,one,hundred) : dump; - -# y1 - j-direction coordinate of the first grid point in units of 10-2 m -signed[4] Y1 : no_copy; -meta geography.Y1InGridLengths scale(Y1,one,hundred) : dump; - -# x2 - i-direction coordinate of the last grid point in units of 10-2 m -signed[4] X2 : no_copy; -meta geography.X2InGridLengths scale(X2,one,hundred) : dump; - -# y2 - j-direction coordinate of the last grid point in units of 10-2 m -signed[4] Y2 : no_copy; -meta geography.Y2InGridLengths scale(Y2,one,hundred) : dump; diff --git a/eccodes/definitions.save/grib2/template.3.120.def b/eccodes/definitions.save/grib2/template.3.120.def deleted file mode 100644 index 49daa975..00000000 --- a/eccodes/definitions.save/grib2/template.3.120.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.120, Azimuth-range projection -# Nb - number of data bins along radials (A data bin is a data point representing the volume centred on it) -unsigned[4] numberOfDataBinsAlongRadials ; -alias Nb = numberOfDataBinsAlongRadials; - -# Nr - number of radials -unsigned[4] numberOfRadials ; -alias Nr = numberOfRadials; - -# La1 - latitude of centre point -signed[4] latitudeOfCentrePoint ; -alias La1 = latitudeOfCentrePoint; -meta geography.latitudeOfCentrePointInDegrees - scale(latitudeOfCentrePoint,one,grib2divider,truncateDegrees) : dump; -alias La1InDegrees=latitudeOfCentrePointInDegrees; - -# Lo1 - longitude of centre point -unsigned[4] longitudeOfCentrePoint ; -alias Lo1 = longitudeOfCentrePoint; -meta geography.longitudeOfCentrePointInDegrees - scale(longitudeOfCentrePoint,one,grib2divider,truncateDegrees) : dump; -alias Lo1InDegrees=longitudeOfCentrePointInDegrees; - -# Dx - spacing of bins along radials -unsigned[4] spacingOfBinsAlongRadials ; -alias Dx = spacingOfBinsAlongRadials; - -# Dstart - offset from origin to inner bound -unsigned[4] offsetFromOriginToInnerBound ; -alias Dstart = offsetFromOriginToInnerBound; - -include "grib2/template.3.scanning_mode.def"; - -# Octets 40-(39+4Nr) : For each of Nr radials: -radials list(numberOfRadials){ - # Azi - starting azimuth, degrees x 10 (degrees as north) - signed[2] startingAzimuth; - alias Azi = startingAzimuth; - # Adelta - azimuthal width, degrees x 100 (+ clockwise, - counterclockwise) - signed[2] azimuthalWidth; - alias Adelta = azimuthalWidth; -} diff --git a/eccodes/definitions.save/grib2/template.3.1200.def b/eccodes/definitions.save/grib2/template.3.1200.def deleted file mode 100644 index 5429c32f..00000000 --- a/eccodes/definitions.save/grib2/template.3.1200.def +++ /dev/null @@ -1,57 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.1200, Time section grid -# NT - Number of time steps -unsigned[4] numberOfTimeSteps : dump; - -alias NT = numberOfTimeSteps; -# Unit of offset from reference time -codetable[1] unitOfOffsetFromReferenceTime ('4.4.table',masterDir,localDir) : dump; - -# Offset from reference of first time -# (negative value when first bit set) -unsigned[4] offsetFromReferenceOfFirstTime : dump; - -# Type of time increment -codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) : dump; - -# Unit of time increment -codetable[1] unitOfTimeIncrement ('4.4.table',masterDir,localDir) : dump; - -# Time increment -# (negative value when first bit set) -unsigned[4] timeIncrement : dump; - -# Year -unsigned[2] year : dump; - -# Month -unsigned[1] month : dump; - -# Day -unsigned[1] day : dump; - -# Hour -unsigned[1] hour : dump; - -# Minute -unsigned[1] minute : dump; - -# Second -unsigned[1] second : dump; - -# Number of vertical points -unsigned[2] numberOfVerticalPoints : dump; - -# Physical meaning of vertical coordinate -codetable[1] physicalMeaningOfVerticalCoordinate ('3.15.table',masterDir,localDir) : dump; - -# Vertical dimension coordinate values definition -codetable[1] verticalCoordinate ('3.21.table',masterDir,localDir) : dump; - -# NC - Number of coefficients or values used to specify vertical coordinates -unsigned[2] NC : dump; - -# Octets 43-(42+NC*4) : Coefficients to define vertical dimension coordinate values in functional form, or the explicit coordinate values -# (IEEE 32-bit floating-point values) -# ???? coefficients_to_define_vertical_dimension; diff --git a/eccodes/definitions.save/grib2/template.3.13.def b/eccodes/definitions.save/grib2/template.3.13.def deleted file mode 100644 index 1fe8f8c4..00000000 --- a/eccodes/definitions.save/grib2/template.3.13.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.13 Mercator with modelling subdomains definition -include "grib2/template.3.10.def" -include "grib2/template.3.lam.def" diff --git a/eccodes/definitions.save/grib2/template.3.130.def b/eccodes/definitions.save/grib2/template.3.130.def deleted file mode 100644 index 3e1d831c..00000000 --- a/eccodes/definitions.save/grib2/template.3.130.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.130, Irregular Latitude/longitude grid - -include "grib2/template.3.shape_of_the_earth.def"; - -points list(numberOfDataPoints) { - signed[4] latitude; - signed[4] longitude; -} diff --git a/eccodes/definitions.save/grib2/template.3.140.def b/eccodes/definitions.save/grib2/template.3.140.def deleted file mode 100644 index 094e624b..00000000 --- a/eccodes/definitions.save/grib2/template.3.140.def +++ /dev/null @@ -1,70 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.140, Lambert azimuthal equal area projection -include "grib2/template.3.shape_of_the_earth.def"; - -# Nx - number of points along X-axis -unsigned[4] numberOfPointsAlongXAxis : dump ; -alias Nx = numberOfPointsAlongXAxis; -alias Ni = Nx; - -# Ny - number of points along Y-axis -unsigned[4] numberOfPointsAlongYAxis : dump ; -alias Ny = numberOfPointsAlongYAxis; -alias Nj = Ny; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint: edition_specific ; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint - ,one,grib2divider,truncateDegrees) : dump; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor): no_copy; - -# Lo1 - longitude of first grid point -signed[4] longitudeOfFirstGridPoint: edition_specific ; -alias La1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint - ,one,grib2divider,truncateDegrees) : dump; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; - -signed[4] standardParallelInMicrodegrees : dump; -alias standardParallel=standardParallelInMicrodegrees; -meta geography.standardParallelInDegrees scale(standardParallelInMicrodegrees,one,grib2divider,truncateDegrees) : dump; - -signed[4] centralLongitudeInMicrodegrees : dump; -alias centralLongitude=centralLongitudeInMicrodegrees; -meta geography.centralLongitudeInDegrees scale(centralLongitudeInMicrodegrees,one,grib2divider,truncateDegrees) : dump; - -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; - -# Dx - X-direction grid length in millimetres -unsigned[4] xDirectionGridLengthInMillimetres : dump ; -alias Dx = xDirectionGridLengthInMillimetres ; -meta geography.xDirectionGridLengthInMetres scale(xDirectionGridLengthInMillimetres,one,thousand,truncateDegrees): dump; -alias DxInMetres = xDirectionGridLengthInMetres; - -# Dy - Y-direction grid length in millimetres -unsigned[4] yDirectionGridLengthInMillimetres : dump ; -alias Dy = yDirectionGridLengthInMillimetres ; -meta geography.yDirectionGridLengthInMetres scale(yDirectionGridLengthInMillimetres,one,thousand,truncateDegrees): dump; -alias DyInMetres = yDirectionGridLengthInMetres; - -include "grib2/template.3.scanning_mode.def"; - -iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, - radius,Nx,Ny, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - standardParallel,centralLongitude, - Dx,Dy, - iScansNegatively, jScansPositively, - jPointsAreConsecutive, alternativeRowScanning); - -nearest lambert_azimuthal_equal_area(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.2.def b/eccodes/definitions.save/grib2/template.3.2.def deleted file mode 100644 index 5ef4ef74..00000000 --- a/eccodes/definitions.save/grib2/template.3.2.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.2, Stretched Latitude/longitude (or equidistant cylindrical, or Plate Carree) - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon.def"; -include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions.save/grib2/template.3.20.def b/eccodes/definitions.save/grib2/template.3.20.def deleted file mode 100644 index fb16d1bf..00000000 --- a/eccodes/definitions.save/grib2/template.3.20.def +++ /dev/null @@ -1,83 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.20, Polar stereographic projection -include "grib2/template.3.shape_of_the_earth.def"; -transient oneThousand=1000; - -# Nx - number of points along X-axis -unsigned[4] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -# Ny - number of points along Y-axis -unsigned[4] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific ; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; - -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : edition_specific; -alias latitudeWhereDxAndDyAreSpecified=LaD; -meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; -alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; - -# LoV - orientation of the grid -# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) -# along which latitude increases as the y-coordinate increases -signed[4] orientationOfTheGrid : edition_specific; -alias LoV = orientationOfTheGrid ; -meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; - -# Dx - X-direction grid length -# Grid length is in units of 10-3 m at the latitude specified by LaD -unsigned[4] Dx : edition_specific; -meta geography.DxInMetres scale(Dx,one,thousand,truncateDegrees) : dump; -alias xDirectionGridLength=Dx; - -# Dy - Y-direction grid length -# Grid length is in units of 10-3 m at the latitude specified by LaD -unsigned[4] Dy : edition_specific; -meta geography.DyInMetres scale(Dy,one,thousand,truncateDegrees) : dump; -alias yDirectionGridLength=Dy; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -# If bit 1 is 0, then the North Pole is on the projection plane -# If bit 1 is 1, then the South Pole is on the projection plane -flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 - -include "grib2/template.3.scanning_mode.def"; - -iterator polar_stereographic(numberOfPoints,missingValue,values, - radius,Nx,Ny, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - southPoleOnProjectionPlane, - orientationOfTheGridInDegrees, - LaDInDegrees, - DxInMetres,DyInMetres, - iScansNegatively, jScansPositively, - jPointsAreConsecutive, alternativeRowScanning); - -nearest polar_stereographic(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.23.def b/eccodes/definitions.save/grib2/template.3.23.def deleted file mode 100644 index 9a1087a7..00000000 --- a/eccodes/definitions.save/grib2/template.3.23.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.23 Polar stereographic with modelling subdomains definition -include "grib2/template.3.20.def" -include "grib2/template.3.lam.def" diff --git a/eccodes/definitions.save/grib2/template.3.3.def b/eccodes/definitions.save/grib2/template.3.3.def deleted file mode 100644 index 908695d1..00000000 --- a/eccodes/definitions.save/grib2/template.3.3.def +++ /dev/null @@ -1,9 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.3, Stretched and Rotated Latitude/longitude (or equidistant cylindrical, or Plate Carree) - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon.def"; -include "grib2/template.3.rotation.def"; -include "grib2/template.3.stretching.def"; - diff --git a/eccodes/definitions.save/grib2/template.3.30.def b/eccodes/definitions.save/grib2/template.3.30.def deleted file mode 100644 index 10b0392c..00000000 --- a/eccodes/definitions.save/grib2/template.3.30.def +++ /dev/null @@ -1,96 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.30, Lambert conformal -include "grib2/template.3.shape_of_the_earth.def"; - -unsigned[4] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -unsigned[4] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees - scale(latitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; -alias La1InDegrees=latitudeOfFirstGridPointInDegrees; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPointInDegrees,oneConstant): no_copy; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -alias Lo1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees - scale(longitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; -alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,oneConstant) : no_copy; - -include "grib2/template.3.resolution_flags.def"; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : edition_specific ; -alias latitudeWhereDxAndDyAreSpecified=LaD; -meta geography.LaDInDegrees scale(LaD,one,grib2divider,truncateDegrees) : dump; - -# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases -unsigned[4] LoV : edition_specific; -meta geography.LoVInDegrees scale(LoV,one,grib2divider,truncateDegrees) : dump; - -# Dx - X-direction grid length (in units of millimetres) -unsigned[4] Dx : edition_specific ; -alias xDirectionGridLength=Dx; -alias Di = Dx; -meta geography.DxInMetres scale(Dx,one,thousand) : dump; - -# Dy - Y-direction grid length (in units of millimetres) -unsigned[4] Dy : edition_specific ; -alias yDirectionGridLength=Dy ; -alias Dj = Dy; -meta geography.DyInMetres scale(Dy,one,thousand) : dump; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; - -include "grib2/template.3.scanning_mode.def"; - -# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere -signed[4] Latin1 : edition_specific; -alias FirstLatitude=Latin1; -meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; - -# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere -signed[4] Latin2 : dump; -alias SecondLatitude=Latin2; -meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; - -# Latitude of the southern pole of projection -signed[4] latitudeOfSouthernPole : edition_specific; -alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole,one,grib2divider,truncateDegrees) : dump; - -# Longitude of the southern pole of projection -unsigned[4] longitudeOfSouthernPole : edition_specific; -alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; -meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole,oneConstant,grib2divider,truncateDegrees) : dump; - -iterator lambert_conformal(numberOfPoints,missingValue,values, - radius,Nx,Ny, - LoVInDegrees,LaDInDegrees, - Latin1InDegrees,Latin2InDegrees, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - DxInMetres,DyInMetres, - iScansNegatively, jScansPositively, - jPointsAreConsecutive, alternativeRowScanning); - -nearest lambert_conformal(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.31.def b/eccodes/definitions.save/grib2/template.3.31.def deleted file mode 100644 index 1b408693..00000000 --- a/eccodes/definitions.save/grib2/template.3.31.def +++ /dev/null @@ -1,62 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.31, Albers equal area -include "grib2/template.3.shape_of_the_earth.def"; - -# Nx - number of points along the X-axis -unsigned[4] Nx : dump; -alias numberOfPointsAlongTheXAxis=Nx; -alias geography.Nx=Nx; - -# Ny - number of points along the Y-axis -unsigned[4] Ny : dump; -alias numberOfPointsAlongTheYAxis=Ny; -alias geography.Ny=Ny; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific,dump; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific,dump; -alias Lo1 = longitudeOfFirstGridPoint; - -include "grib2/template.3.resolution_flags.def"; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : dump; -alias latitudeWhereDxAndDyAreSpecified=LaD ; - -# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases -unsigned[4] LoV : dump; - -# Dx - X-direction grid length -unsigned[4] xDirectionGridLength : dump; -alias Dx = xDirectionGridLength; - -# Dy - Y-direction grid length -unsigned[4] yDirectionGridLength : dump; -alias Dy = yDirectionGridLength; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; -include "grib2/template.3.scanning_mode.def"; - -# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere -signed[4] Latin1 :edition_specific; -meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; - -# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere -unsigned[4] Latin2 : edition_specific; -meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; - -# Latitude of the southern pole of projection -signed[4] latitudeOfTheSouthernPoleOfProjection : edition_specific ; -alias latitudeOfSouthernPole=latitudeOfTheSouthernPoleOfProjection; -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfTheSouthernPoleOfProjection ,one,grib2divider,truncateDegrees) : dump; - - -# Longitude of the southern pole of projection -unsigned[4] longitudeOfTheSouthernPoleOfProjection :edition_specific; -alias longitudeOfSouthernPole=longitudeOfTheSouthernPoleOfProjection; -meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfTheSouthernPoleOfProjection,oneConstant,grib2divider,truncateDegrees) : dump; diff --git a/eccodes/definitions.save/grib2/template.3.32769.def b/eccodes/definitions.save/grib2/template.3.32769.def deleted file mode 100644 index 9fca2730..00000000 --- a/eccodes/definitions.save/grib2/template.3.32769.def +++ /dev/null @@ -1,5 +0,0 @@ -# TEMPLATE 3.32769, Rotated Latitude/longitude (Arakawa Non-E Staggered) - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon.def"; -include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions.save/grib2/template.3.33.def b/eccodes/definitions.save/grib2/template.3.33.def deleted file mode 100644 index 5c9dd93e..00000000 --- a/eccodes/definitions.save/grib2/template.3.33.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.33, Lambert conformal with modelling subdomains definition -include "grib2/template.3.30.def" -include "grib2/template.3.lam.def" diff --git a/eccodes/definitions.save/grib2/template.3.4.def b/eccodes/definitions.save/grib2/template.3.4.def deleted file mode 100644 index 1a3cca40..00000000 --- a/eccodes/definitions.save/grib2/template.3.4.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.4, Variable resolution latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon_vares.def"; diff --git a/eccodes/definitions.save/grib2/template.3.40.def b/eccodes/definitions.save/grib2/template.3.40.def deleted file mode 100644 index 4cc651ed..00000000 --- a/eccodes/definitions.save/grib2/template.3.40.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.40, Gaussian latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.gaussian.def"; diff --git a/eccodes/definitions.save/grib2/template.3.41.def b/eccodes/definitions.save/grib2/template.3.41.def deleted file mode 100644 index 03534c22..00000000 --- a/eccodes/definitions.save/grib2/template.3.41.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.41, Rotated Gaussian latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.gaussian.def"; -include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions.save/grib2/template.3.42.def b/eccodes/definitions.save/grib2/template.3.42.def deleted file mode 100644 index 192fd676..00000000 --- a/eccodes/definitions.save/grib2/template.3.42.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.42, Stretched Gaussian latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.gaussian.def"; -include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions.save/grib2/template.3.43.def b/eccodes/definitions.save/grib2/template.3.43.def deleted file mode 100644 index b1301137..00000000 --- a/eccodes/definitions.save/grib2/template.3.43.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.43, Stretched and rotated Gaussian latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.gaussian.def"; -include "grib2/template.3.rotation.def"; -include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions.save/grib2/template.3.5.def b/eccodes/definitions.save/grib2/template.3.5.def deleted file mode 100644 index d364d792..00000000 --- a/eccodes/definitions.save/grib2/template.3.5.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.5, Variable resolution rotated latitude/longitude - -include "grib2/template.3.shape_of_the_earth.def"; -include "grib2/template.3.latlon_vares.def"; -include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions.save/grib2/template.3.50.def b/eccodes/definitions.save/grib2/template.3.50.def deleted file mode 100644 index 6d869799..00000000 --- a/eccodes/definitions.save/grib2/template.3.50.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.50, Spherical harmonic coefficients - -include "grib2/template.3.spherical_harmonics.def"; diff --git a/eccodes/definitions.save/grib2/template.3.51.def b/eccodes/definitions.save/grib2/template.3.51.def deleted file mode 100644 index cd385a04..00000000 --- a/eccodes/definitions.save/grib2/template.3.51.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.51, Rotated spherical harmonic coefficients - -include "grib2/template.3.spherical_harmonics.def"; -include "grib2/template.3.rotation.def"; diff --git a/eccodes/definitions.save/grib2/template.3.52.def b/eccodes/definitions.save/grib2/template.3.52.def deleted file mode 100644 index 5b471bd0..00000000 --- a/eccodes/definitions.save/grib2/template.3.52.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.52, Stretched spherical harmonic coefficients - -include "grib2/template.3.spherical_harmonics.def"; -include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions.save/grib2/template.3.53.def b/eccodes/definitions.save/grib2/template.3.53.def deleted file mode 100644 index 7ad16945..00000000 --- a/eccodes/definitions.save/grib2/template.3.53.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.53, Stretched and rotated spherical harmonic coefficients - -include "grib2/template.3.spherical_harmonics.def"; -include "grib2/template.3.rotation.def"; -include "grib2/template.3.stretching.def"; diff --git a/eccodes/definitions.save/grib2/template.3.61.def b/eccodes/definitions.save/grib2/template.3.61.def deleted file mode 100644 index 0a9044ec..00000000 --- a/eccodes/definitions.save/grib2/template.3.61.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.61, Bi-Fourier coefficients on Mercator projection -# Spectral Mercator with modelling subdomains definition - -transient biFourierMakeTemplate = 0; - -include "grib2/template.3.bf.def" - -include "grib2/template.3.shape_of_the_earth.def"; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint: edition_specific,no_copy ; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# Lo1 - longitude of first grid point -signed[4] longitudeOfFirstGridPoint : edition_specific,no_copy; -alias Lo1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# LaD - Latitude(s) at which the Mercator projection intersects the Earth -# (Latitude(s) where Di and Dj are specified) -signed[4] LaD : edition_specific,no_copy; -meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific,no_copy; -alias La2 = latitudeOfLastGridPoint; -meta geography.latitudeOfLastGridPointInDegrees scale(latitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# Lo2 - longitude of last grid point -signed[4] longitudeOfLastGridPoint: edition_specific,no_copy ; -alias Lo2 = longitudeOfLastGridPoint; -meta geography.longitudeOfLastGridPointInDegrees scale(longitudeOfLastGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; - -# Orientation of the grid, angle between i direction on the map and the equator -# NOTE 1: Limited to the range of 0 to 90 degrees; if the angle of orientation of the grid is neither 0 nor 90 degrees, -# Di and Dj must be equal to each other -unsigned[4] orientationOfTheGrid : dump ; -meta geography.orientationOfTheGridInDegrees - scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; - diff --git a/eccodes/definitions.save/grib2/template.3.62.def b/eccodes/definitions.save/grib2/template.3.62.def deleted file mode 100644 index 83e2690b..00000000 --- a/eccodes/definitions.save/grib2/template.3.62.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.62, Bi-Fourier coefficients on polar stereographic projection -# Spectral polar stereographic with modelling subdomains definition - -transient biFourierMakeTemplate = 0; - -include "grib2/template.3.bf.def" - -include "grib2/template.3.shape_of_the_earth.def"; - -transient oneThousand=1000; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific ; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib2divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; - -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : edition_specific; -alias latitudeWhereDxAndDyAreSpecified=LaD; -meta geography.LaDInDegrees scale(LaD,oneConstant,grib2divider,truncateDegrees) : dump; -alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; - -# LoV - orientation of the grid -# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) -# along which latitude increases as the y-coordinate increases -signed[4] orientationOfTheGrid : edition_specific; -alias LoV = orientationOfTheGrid ; -meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -# If bit 1 is 0, then the North Pole is on the projection plane -# If bit 1 is 1, then the South Pole is on the projection plane -flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 diff --git a/eccodes/definitions.save/grib2/template.3.63.def b/eccodes/definitions.save/grib2/template.3.63.def deleted file mode 100644 index a9c90ce7..00000000 --- a/eccodes/definitions.save/grib2/template.3.63.def +++ /dev/null @@ -1,57 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.63, BiFourier coefficients on lambert projection - -transient biFourierMakeTemplate = 0; - -include "grib2/template.3.bf.def" - -include "grib2/template.3.shape_of_the_earth.def"; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees - scale(latitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; -alias La1InDegrees=latitudeOfFirstGridPointInDegrees; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPointInDegrees,oneConstant): no_copy; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -alias Lo1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees - scale(longitudeOfFirstGridPoint,one,grib2divider,truncateDegrees) : dump; -alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,oneConstant) : no_copy; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : edition_specific ; -alias latitudeWhereDxAndDyAreSpecified=LaD; -meta geography.LaDInDegrees scale(LaD,one,grib2divider,truncateDegrees) : dump; - -# LoV - Longitude of meridian parallel to Y-axis along which latitude increases as the Y-coordinate increases -unsigned[4] LoV : edition_specific; -meta geography.LoVInDegrees scale(LoV,one,grib2divider,truncateDegrees) : dump; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; - -# Latin 1 - first latitude from the pole at which the secant cone cuts the sphere -signed[4] Latin1 : edition_specific; -alias FirstLatitude=Latin1; -meta geography.Latin1InDegrees scale(Latin1,one,grib2divider,truncateDegrees) : dump; - -# Latin 2 - second latitude from the pole at which the secant cone cuts the sphere -signed[4] Latin2 : dump; -alias SecondLatitude=Latin2; -meta geography.Latin2InDegrees scale(Latin2,one,grib2divider,truncateDegrees) : dump; - -# Latitude of the southern pole of projection -signed[4] latitudeOfSouthernPole : edition_specific; -alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole ,one,grib2divider,truncateDegrees) : dump; - -# Longitude of the southern pole of projection -unsigned[4] longitudeOfSouthernPole : edition_specific; -alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; -meta geography.longitudeOfSouthernPoleInDegrees scale(longitudeOfSouthernPole,oneConstant,grib2divider,truncateDegrees) : dump; diff --git a/eccodes/definitions.save/grib2/template.3.90.def b/eccodes/definitions.save/grib2/template.3.90.def deleted file mode 100644 index 7d51b21d..00000000 --- a/eccodes/definitions.save/grib2/template.3.90.def +++ /dev/null @@ -1,90 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 3.90, Space view perspective or orthographic -include "grib2/template.3.shape_of_the_earth.def"; - -unsigned[4] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -unsigned[4] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -# Lap - latitude of sub-satellite point -signed[4] latitudeOfSubSatellitePoint ; - -# Lop - longitude of sub-satellite point -signed[4] longitudeOfSubSatellitePoint ; - -meta geography.latitudeOfSubSatellitePointInDegrees scale(latitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; -meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; - -include "grib2/template.3.resolution_flags.def"; - -# dx - apparent diameter of Earth in grid lengths, in X-direction -unsigned[4] dx : dump; -alias geography.dx=dx; - -# dy - apparent diameter of Earth in grid lengths, in Y-direction -unsigned[4] dy : dump; -alias geography.dy=dy; - -# Xp - X-coordinate of sub-satellite point -# (in units of 10^-3 grid length expressed as an integer) -unsigned[4] Xp : no_copy; -meta geography.XpInGridLengths scale(Xp,one,thousand) : dump; -alias xCoordinateOfSubSatellitePoint=XpInGridLengths; - -# Yp - Y-coordinate of sub-satellite point -# (in units of 10^-3 grid length expressed as an integer) -unsigned[4] Yp : no_copy; -meta geography.YpInGridLengths scale(Yp,one,thousand) : dump; -alias yCoordinateOfSubSatellitePoint=YpInGridLengths; - -include "grib2/template.3.scanning_mode.def"; - -# Orientation of the grid; i.e. the angle between the increasing Y-axis and the meridian -# of the sub-satellite point in the direction of increasing latitude -signed[4] orientationOfTheGrid : edition_specific; -meta geography.orientationOfTheGridInDegrees - scale(orientationOfTheGrid,oneConstant,grib2divider,truncateDegrees) : dump; - -# Nr - altitude of the camera from the Earth's centre, measured in units of the Earth's -# (equatorial) radius multiplied by a scale factor of 10^6 -unsigned[4] Nr : edition_specific,can_be_missing,no_copy; -alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = Nr; -meta geography.NrInRadiusOfEarth scale(Nr,oneConstant,oneMillionConstant,truncateDegrees) : dump; - -# Xo - X-coordinate of origin of sector image -unsigned[4] Xo : dump; -alias xCoordinateOfOriginOfSectorImage=Xo; -alias geography.Xo=Xo; - -# Yo - Y-coordinate of origin of sector image -unsigned[4] Yo : dump; -alias yCoordinateOfOriginOfSectorImage=Yo; -alias geography.Yo=Yo; - -iterator space_view(numberOfPoints, missingValue, values, radius, - earthIsOblate, - earthMajorAxis, earthMinorAxis, - Nx, Ny, - latitudeOfSubSatellitePointInDegrees, - longitudeOfSubSatellitePointInDegrees, - dx, dy, XpInGridLengths, YpInGridLengths, - orientationOfTheGridInDegrees, - NrInRadiusOfEarth, Xo, Yo, - iScansNegatively, jScansPositively, - jPointsAreConsecutive, alternativeRowScanning); - -nearest space_view(values,radius,Nx,Ny); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.bf.def b/eccodes/definitions.save/grib2/template.3.bf.def deleted file mode 100644 index a2c12db0..00000000 --- a/eccodes/definitions.save/grib2/template.3.bf.def +++ /dev/null @@ -1,31 +0,0 @@ -label "BiFourier coefficients"; -constant biFourierCoefficients=1; - -codetable[1] spectralType ('3.6.table',masterDir,localDir) = 2 : no_copy; -alias spectralDataRepresentationType=spectralType; - -unsigned[4] biFourierResolutionParameterN : dump; - -unsigned[4] biFourierResolutionParameterM : dump; - -codetable[1] biFourierTruncationType ('3.25.table',masterDir,localDir) : dump; - -# Lx - Full domain length in X-direction. Size in metres of the domain along x-axis -unsigned[8] Lx; -alias geography.LxInMetres = Lx; -# Lux - Useful domain length in X-direction. Size in metres of model forecast subdomain along x-axis -unsigned[8] Lux; -alias geography.LuxInMetres=Lux; -# Lcx - Coupling domain width in X-direction. Width in metres of coupling area within forecast domain along x-axis -unsigned[8] Lcx; -alias geography.LcxInMetres=Lcx; - -# Ly - Full domain length in Y-direction -unsigned[8] Ly; -alias geography.LyInMetres=Ly; -# Luy - Useful domain length in Y-direction -unsigned[8] Luy; -alias geography.LuyInMetres=Luy; -# Lcy - Coupling domain width in Y-direction -unsigned[8] Lcy; -alias geography.LcyInMetres=Lcy; diff --git a/eccodes/definitions.save/grib2/template.3.gaussian.def b/eccodes/definitions.save/grib2/template.3.gaussian.def deleted file mode 100755 index b4139965..00000000 --- a/eccodes/definitions.save/grib2/template.3.gaussian.def +++ /dev/null @@ -1,91 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.3.grid.def"; - -# Di - i direction increment -unsigned[4] iDirectionIncrement : can_be_missing; -alias Di = iDirectionIncrement; - -# N - number of parallels between a pole and the equator -unsigned[4] N : dump; -alias numberOfParallelsBetweenAPoleAndTheEquator=N ; -alias geography.N=N; - -include "grib2/template.3.scanning_mode.def"; - -modify Ni : can_be_missing,dump; - -meta g2grid g2grid( - latitudeOfFirstGridPoint, - longitudeOfFirstGridPoint, - latitudeOfLastGridPoint, - longitudeOfLastGridPoint, - iDirectionIncrement, - null, - basicAngleOfTheInitialProductionDomain, - subdivisionsOfBasicAngle - ); - -meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; -meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; -meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; -meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; -meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4,iDirectionIncrementGiven) : can_be_missing,dump; - -meta global global_gaussian(N,Ni,iDirectionIncrement, - latitudeOfFirstGridPoint, - longitudeOfFirstGridPoint, - latitudeOfLastGridPoint, - longitudeOfLastGridPoint, - PLPresent, pl, - basicAngleOfTheInitialProductionDomain, - subdivisionsOfBasicAngle) = 0 : dump; - -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; - -if(missing(Ni) && PLPresent == 1){ - iterator gaussian_reduced(numberOfPoints,missingValue,values, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees, - N,pl,Nj); - nearest reduced(values,radius,Nj,pl); - - #meta sumPlArray sum(pl); - #meta dataGlobal evaluate( sumPlArray == (numberOfValues+numberOfMissing) ); -} else { - iterator gaussian(numberOfPoints,missingValue,values, - longitudeFirstInDegrees,DiInDegrees , - Ni,Nj,iScansNegatively, - latitudeFirstInDegrees, latitudeLastInDegrees, - N,jScansPositively); - nearest regular(values,radius,Ni,Nj); -} -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); - -meta isOctahedral octahedral_gaussian(N, Ni, PLPresent, pl) = 0 : no_copy,dump; - -meta gaussianGridName gaussian_grid_name(N, Ni, isOctahedral); -alias gridName=gaussianGridName; - - -# For sub-areas -# Uses new algorithm for counting. No support for legacy mode -meta numberOfDataPointsExpected number_of_points_gaussian(Ni,Nj,PLPresent,pl,N, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - latitudeOfLastGridPointInDegrees,longitudeOfLastGridPointInDegrees,zero) : dump; - -meta legacyGaussSubarea evaluate(numberOfDataPoints != numberOfDataPointsExpected); diff --git a/eccodes/definitions.save/grib2/template.3.grid.def b/eccodes/definitions.save/grib2/template.3.grid.def deleted file mode 100644 index f0d586de..00000000 --- a/eccodes/definitions.save/grib2/template.3.grid.def +++ /dev/null @@ -1,58 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned[4] Ni : can_be_missing,dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; - -unsigned[4] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj; - -alias geography.Ni=Ni; -alias geography.Nj=Nj; - -# Basic angle of the initial production domain -unsigned[4] basicAngleOfTheInitialProductionDomain = 0; -transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; -transient angleMultiplier = 1; -transient mAngleMultiplier = 1000000; -when (basicAngleOfTheInitialProductionDomain == 0) { - set angleMultiplier = 1; - set mAngleMultiplier = 1000000; -} else { - set angleMultiplier = basicAngleOfTheInitialProductionDomain; - set mAngleMultiplier = mBasicAngle; -} - -# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; - -transient angleDivisor = 1000000; -when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { - set angleDivisor = 1000000; -} else { - set angleDivisor = subdivisionsOfBasicAngle; -} - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific ; -alias La1 = latitudeOfFirstGridPoint; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; - -# Lo1 - longitude of first grid point - -signed[4] longitudeOfFirstGridPoint ; -alias Lo1 = longitudeOfFirstGridPoint; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; - -include "grib2/template.3.resolution_flags.def" - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific; -alias La2 = latitudeOfLastGridPoint; -#meta latitudeOfLastGridPointInMicrodegrees times(latitudeOfLastGridPoint,mAngleMultiplier,angleDivisor) : no_copy; - -# Lo2 - longitude of last grid point -signed[4] longitudeOfLastGridPoint : edition_specific ; -alias Lo2 = longitudeOfLastGridPoint; -#meta longitudeOfLastGridPointInMicrodegrees times(longitudeOfLastGridPoint,mAngleMultiplier,angleDivisor) : no_copy; diff --git a/eccodes/definitions.save/grib2/template.3.lam.def b/eccodes/definitions.save/grib2/template.3.lam.def deleted file mode 100644 index d00aed6a..00000000 --- a/eccodes/definitions.save/grib2/template.3.lam.def +++ /dev/null @@ -1,12 +0,0 @@ -# modelling subdomains definition -unsigned[4] Nux : dump; -alias numberOfUsefulPointsAlongXAxis = Nux; - -unsigned[4] Ncx : dump; -alias numberOfPointsAlongXAxisInCouplingArea = Ncx; - -unsigned[4] Nuy : dump; -alias numberOfUsefulPointsAlongYAxis = Nuy; - -unsigned[4] Ncy : dump; -alias numberOfPointsAlongYAxisInCouplingArea = Ncy; diff --git a/eccodes/definitions.save/grib2/template.3.latlon.def b/eccodes/definitions.save/grib2/template.3.latlon.def deleted file mode 100755 index cc3b8cc5..00000000 --- a/eccodes/definitions.save/grib2/template.3.latlon.def +++ /dev/null @@ -1,77 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.3.grid.def"; - -# Di - i direction increment - -unsigned[4] iDirectionIncrement : can_be_missing,edition_specific; -alias Di = iDirectionIncrement; -alias Dx = iDirectionIncrement; - -# Dj - j direction increment - -unsigned[4] jDirectionIncrement : can_be_missing,edition_specific; -alias Dj = jDirectionIncrement; -alias Dy = jDirectionIncrement; - -include "grib2/template.3.scanning_mode.def"; - -meta g2grid g2grid( - latitudeOfFirstGridPoint, - longitudeOfFirstGridPoint, - latitudeOfLastGridPoint, - longitudeOfLastGridPoint, - iDirectionIncrement, - jDirectionIncrement, - basicAngleOfTheInitialProductionDomain, - subdivisionsOfBasicAngle - ); - -meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; -meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; -meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; -meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; - -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; - -meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4, - iDirectionIncrementGiven) : can_be_missing,dump; - -meta geography.jDirectionIncrementInDegrees g2latlon(g2grid,5, - jDirectionIncrementGiven) : can_be_missing,dump; - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; -alias DxInDegrees = iDirectionIncrementInDegrees; -alias DjInDegrees = jDirectionIncrementInDegrees; -alias DyInDegrees = jDirectionIncrementInDegrees; - -_if ( missing(Ni) && PLPresent == 1 ) { - iterator latlon_reduced(numberOfPoints,missingValue,values, - latitudeFirstInDegrees,longitudeFirstInDegrees, - latitudeLastInDegrees,longitudeLastInDegrees, - Nj,DjInDegrees,pl); - nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); -} else { - transient iteratorDisableUnrotate = 0 : hidden; # ECC-808 - iterator latlon(numberOfPoints,missingValue,values, - longitudeFirstInDegrees,DiInDegrees , - Ni,Nj,iScansNegatively, - latitudeFirstInDegrees, DjInDegrees, - jScansPositively, jPointsAreConsecutive, - isRotatedGrid, angleOfRotation, - latitudeOfSouthernPoleInDegrees,longitudeOfSouthernPoleInDegrees); - nearest regular(values,radius,Ni,Nj); -} -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib2/template.3.latlon_vares.def b/eccodes/definitions.save/grib2/template.3.latlon_vares.def deleted file mode 100755 index b3ef7656..00000000 --- a/eccodes/definitions.save/grib2/template.3.latlon_vares.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -unsigned[4] Ni : can_be_missing,dump; -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; - -unsigned[4] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj; - -alias geography.Ni=Ni; -alias geography.Nj=Nj; - -# Basic angle of the initial production domain -unsigned[4] basicAngleOfTheInitialProductionDomain = 0; -transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; -transient angleMultiplier = 1; -transient mAngleMultiplier = 1000000; -when (basicAngleOfTheInitialProductionDomain == 0) { - set angleMultiplier = 1; - set mAngleMultiplier = 1000000; -} else { - set angleMultiplier = basicAngleOfTheInitialProductionDomain; - set mAngleMultiplier = mBasicAngle; -} - -# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; - -transient angleDivisor = 1000000; -when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { - set angleDivisor = 1000000; -} else { - set angleDivisor = subdivisionsOfBasicAngle; -} - -include "grib2/template.3.resolution_flags.def" - -include "grib2/template.3.scanning_mode.def"; - -longitudesList list(Ni) { - unsigned[4] longitudes; -} - -latitudesList list(Nj) { - signed[4] latitudes; -} diff --git a/eccodes/definitions.save/grib2/template.3.resolution_flags.def b/eccodes/definitions.save/grib2/template.3.resolution_flags.def deleted file mode 100644 index 01c65f76..00000000 --- a/eccodes/definitions.save/grib2/template.3.resolution_flags.def +++ /dev/null @@ -1,38 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; - -# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 -# (most significant to least significant) - -flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; -flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); -flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); -flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); -flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; -flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; - -concept ijDirectionIncrementGiven { - '1' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 0; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 0; - } -} - -alias DiGiven=iDirectionIncrementGiven; -alias DjGiven=jDirectionIncrementGiven; diff --git a/eccodes/definitions.save/grib2/template.3.rotation.def b/eccodes/definitions.save/grib2/template.3.rotation.def deleted file mode 100755 index f797170a..00000000 --- a/eccodes/definitions.save/grib2/template.3.rotation.def +++ /dev/null @@ -1,21 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Latitude of the southern pole of projection -signed[4] latitudeOfSouthernPole : no_copy; -alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; - -# Longitude of the southern pole of projection -unsigned[4] longitudeOfSouthernPole : no_copy; -alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; - -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole - ,one,grib2divider,truncateDegrees) : dump; -meta geography.longitudeOfSouthernPoleInDegrees g2lon(longitudeOfSouthernPole) : dump; - -# Angle of rotation of projection -ieeefloat angleOfRotation : dump,edition_specific ; -alias geography.angleOfRotationInDegrees=angleOfRotation; - -alias angleOfRotationOfProjection=angleOfRotation; - -alias isRotatedGrid=one; diff --git a/eccodes/definitions.save/grib2/template.3.scanning_mode.def b/eccodes/definitions.save/grib2/template.3.scanning_mode.def deleted file mode 100644 index d74d83c7..00000000 --- a/eccodes/definitions.save/grib2/template.3.scanning_mode.def +++ /dev/null @@ -1,38 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; - -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -flagbit iScansNegatively(scanningMode,7) : dump; # WMO bit 1 -flagbit jScansPositively(scanningMode,6) : dump; # WMO bit 2 -flagbit jPointsAreConsecutive(scanningMode,5) : dump; -flagbit alternativeRowScanning(scanningMode,4) = 0 : edition_specific,dump; - -if (jPointsAreConsecutive) { - alias numberOfRows=Ni; - alias numberOfColumns=Nj; -} else { - alias numberOfRows=Nj; - alias numberOfColumns=Ni; -} - -alias geography.iScansNegatively=iScansNegatively; -alias geography.jScansPositively=jScansPositively; -alias geography.jPointsAreConsecutive=jPointsAreConsecutive; - -transient iScansPositively = !iScansNegatively : constraint; - -flagbit scanningMode5(scanningMode,3) = 0: read_only; -flagbit scanningMode6(scanningMode,2) = 0: read_only; -flagbit scanningMode7(scanningMode,1) = 0: read_only; -flagbit scanningMode8(scanningMode,0) = 0: read_only; - -meta swapScanningX change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - xFirst,xLast,x) : edition_specific,hidden,no_copy; -alias swapScanningLon = swapScanningX; - -meta swapScanningY change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - yFirst,yLast,y) : edition_specific,hidden,no_copy; -alias swapScanningLat = swapScanningY; diff --git a/eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def b/eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def deleted file mode 100755 index 2ff2dcdf..00000000 --- a/eccodes/definitions.save/grib2/template.3.shape_of_the_earth.def +++ /dev/null @@ -1,106 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -codetable[1] shapeOfTheEarth ('3.2.table',masterDir,localDir) : dump; - -# Scale factor of radius of spherical earth -unsigned[1] scaleFactorOfRadiusOfSphericalEarth = missing() : can_be_missing, edition_specific; - -# Scaled value of radius of spherical earth (in metres) -unsigned[4] scaledValueOfRadiusOfSphericalEarth = missing(): can_be_missing, edition_specific; - -# Scale factor of major axis of oblate spheroid earth -unsigned[1] scaleFactorOfEarthMajorAxis = missing(): can_be_missing, edition_specific; -alias scaleFactorOfMajorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMajorAxis; - -# Scaled value of major axis of oblate spheroid earth -unsigned[4] scaledValueOfEarthMajorAxis = missing(): can_be_missing, edition_specific; -alias scaledValueOfMajorAxisOfOblateSpheroidEarth=scaledValueOfEarthMajorAxis; - -# Scale factor of minor axis of oblate spheroid earth -unsigned[1] scaleFactorOfEarthMinorAxis = missing(): can_be_missing, edition_specific; -alias scaleFactorOfMinorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMinorAxis ; - -# Scaled value of minor axis of oblate spheroid earth -unsigned[4] scaledValueOfEarthMinorAxis = missing(): can_be_missing, edition_specific; -alias scaledValueOfMinorAxisOfOblateSpheroidEarth=scaledValueOfEarthMinorAxis; - -alias earthIsOblate=one; - -_if (shapeOfTheEarth == 0) { - transient radius=6367470; - alias radiusOfTheEarth=radius; - alias radiusInMetres=radius; - alias earthIsOblate=zero; -} -_if (shapeOfTheEarth == 1){ - meta radius from_scale_factor_scaled_value( - scaleFactorOfRadiusOfSphericalEarth, - scaledValueOfRadiusOfSphericalEarth); - alias radiusOfTheEarth=radius; - alias radiusInMetres=radius; - alias earthIsOblate=zero; -} -_if (shapeOfTheEarth == 6){ - transient radius=6371229; - alias radiusOfTheEarth=radius; - alias radiusInMetres=radius; - alias earthIsOblate=zero; -} - -_if (shapeOfTheEarth == 8){ - transient radius=6371200; - alias radiusOfTheEarth=radius; - alias radiusInMetres=radius; - alias earthIsOblate=zero; -} - - -# Oblate spheroid cases -_if (shapeOfTheEarth == 2){ - # IAU in 1965 - transient earthMajorAxis = 6378160.0; - transient earthMinorAxis = 6356775.0; - alias earthMajorAxisInMetres=earthMajorAxis; - alias earthMinorAxisInMetres=earthMinorAxis; -} -_if (shapeOfTheEarth == 3){ - # Major and minor axes specified (in km) by data producer - meta earthMajorAxis from_scale_factor_scaled_value( - scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); - meta earthMinorAxis from_scale_factor_scaled_value( - scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); - - # ECC-979 - # The 'scale' accessor works with integers so rounds its first argument - # which is not what we want because the inputs are doubles with decimal - # expansions. So use the trick of dividing by 0.001 to multiply by 1000 - # - # meta earthMajorAxisInMetres scale(earthMajorAxis, thousand, one, zero); - # meta earthMinorAxisInMetres scale(earthMinorAxis, thousand, one, zero); - meta earthMajorAxisInMetres divdouble(earthMajorAxis, 0.001); - meta earthMinorAxisInMetres divdouble(earthMinorAxis, 0.001); -} -_if (shapeOfTheEarth == 7){ - # Major and minor axes specified (in m) by data producer - meta earthMajorAxis from_scale_factor_scaled_value( - scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); - meta earthMinorAxis from_scale_factor_scaled_value( - scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); - alias earthMajorAxisInMetres=earthMajorAxis; - alias earthMinorAxisInMetres=earthMinorAxis; -} -_if (shapeOfTheEarth == 4 || shapeOfTheEarth == 5){ - # 4 -> IAG-GRS80 model - # 5 -> WGS84 - transient earthMajorAxis = 6378137.0; - transient earthMinorAxis = 6356752.314; - alias earthMajorAxisInMetres=earthMajorAxis; - alias earthMinorAxisInMetres=earthMinorAxis; -} -_if (shapeOfTheEarth == 9){ - # Airy 1830 - transient earthMajorAxis = 6377563.396; - transient earthMinorAxis = 6356256.909; - alias earthMajorAxisInMetres=earthMajorAxis; - alias earthMinorAxisInMetres=earthMinorAxis; -} diff --git a/eccodes/definitions.save/grib2/template.3.spherical_harmonics.def b/eccodes/definitions.save/grib2/template.3.spherical_harmonics.def deleted file mode 100755 index 79be41bb..00000000 --- a/eccodes/definitions.save/grib2/template.3.spherical_harmonics.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant sphericalHarmonics=1; - -# constant dataRepresentationType = 50; - -# J - pentagonal resolution parameter -unsigned[4] J : dump; -alias pentagonalResolutionParameterJ=J ; -alias geography.J=J; - -# K - pentagonal resolution parameter -unsigned[4] K : dump; -alias pentagonalResolutionParameterK=K; -alias geography.K=K; - -# M - pentagonal resolution parameter -unsigned[4] M : dump; -alias pentagonalResolutionParameterM = M ; -alias geography.M=M; - -# Representation type indicating the method used to define the norm -codetable[1] spectralType ('3.6.table',masterDir,localDir) = 1 : no_copy; -alias spectralDataRepresentationType=spectralType; - -# Representation mode indicating the order of the coefficients -codetable[1] spectralMode ('3.7.table',masterDir,localDir) = 1 : no_copy; -alias spectralDataRepresentationMode=spectralMode; diff --git a/eccodes/definitions.save/grib2/template.3.stretching.def b/eccodes/definitions.save/grib2/template.3.stretching.def deleted file mode 100755 index 11c0b12c..00000000 --- a/eccodes/definitions.save/grib2/template.3.stretching.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Latitude of the pole of stretching -signed[4] latitudeOfThePoleOfStretching : edition_specific,no_copy; - -# Longitude of the pole of stretching -signed[4] longitudeOfThePoleOfStretching : edition_specific,no_copy; - -meta geography.latitudeOfStretchingPoleInDegrees - scale(latitudeOfThePoleOfStretching,oneConstant,grib2divider,truncateDegrees) : dump; -meta geography.longitudeOfStretchingPoleInDegrees - scale(longitudeOfThePoleOfStretching,oneConstant,grib2divider,truncateDegrees) : dump; - -# Stretching factor -unsigned[4] stretchingFactorScaled : edition_specific,no_copy; - -meta geography.stretchingFactor - scale(stretchingFactorScaled,oneConstant,grib2divider) : dump; - diff --git a/eccodes/definitions.save/grib2/template.4.0.def b/eccodes/definitions.save/grib2/template.4.0.def deleted file mode 100644 index a1a94830..00000000 --- a/eccodes/definitions.save/grib2/template.4.0.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.0, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions.save/grib2/template.4.1.def b/eccodes/definitions.save/grib2/template.4.1.def deleted file mode 100644 index 24372d2f..00000000 --- a/eccodes/definitions.save/grib2/template.4.1.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.10.def b/eccodes/definitions.save/grib2/template.4.10.def deleted file mode 100644 index 1840943e..00000000 --- a/eccodes/definitions.save/grib2/template.4.10.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.10, Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.percentile.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.1000.def b/eccodes/definitions.save/grib2/template.4.1000.def deleted file mode 100644 index a2b57262..00000000 --- a/eccodes/definitions.save/grib2/template.4.1000.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1000, Cross section of analysis and forecast at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; diff --git a/eccodes/definitions.save/grib2/template.4.1001.def b/eccodes/definitions.save/grib2/template.4.1001.def deleted file mode 100644 index c0b81a6d..00000000 --- a/eccodes/definitions.save/grib2/template.4.1001.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1001, Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.1002.def b/eccodes/definitions.save/grib2/template.4.1002.def deleted file mode 100644 index 63d0c0e1..00000000 --- a/eccodes/definitions.save/grib2/template.4.1002.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1002, Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude - -include "grib2/template.4.parameter.def" - -# Horizontal dimension processed -codetable[1] horizontalDimensionProcessed ('4.220.table',masterDir,localDir) : dump; - -# Treatment of missing data (e.g. below ground) -codetable[1] treatmentOfMissingData ('4.221.table',masterDir,localDir) : dump; - -# Type of statistical processing -codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : dump; -#alias typeOfStatisticalProcessing=stepType; - -# Start of range -unsigned[4] startOfRange : dump; - -# End of range -unsigned[4] endOfRange : dump; - -# Number of values -unsigned[2] numberOfDataValues : read_only,dump; diff --git a/eccodes/definitions.save/grib2/template.4.11.def b/eccodes/definitions.save/grib2/template.4.11.def deleted file mode 100644 index 1506df9f..00000000 --- a/eccodes/definitions.save/grib2/template.4.11.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.11, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.1100.def b/eccodes/definitions.save/grib2/template.4.1100.def deleted file mode 100644 index c65c42cd..00000000 --- a/eccodes/definitions.save/grib2/template.4.1100.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions.save/grib2/template.4.1101.def b/eccodes/definitions.save/grib2/template.4.1101.def deleted file mode 100644 index e5739f88..00000000 --- a/eccodes/definitions.save/grib2/template.4.1101.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.12.def b/eccodes/definitions.save/grib2/template.4.12.def deleted file mode 100644 index 70aa465a..00000000 --- a/eccodes/definitions.save/grib2/template.4.12.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.12, Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.derived.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.13.def b/eccodes/definitions.save/grib2/template.4.13.def deleted file mode 100644 index 4de62804..00000000 --- a/eccodes/definitions.save/grib2/template.4.13.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.13, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.derived.def" -include "grib2/template.4.rectangular_cluster.def" -include "grib2/template.4.statistical.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} - diff --git a/eccodes/definitions.save/grib2/template.4.14.def b/eccodes/definitions.save/grib2/template.4.14.def deleted file mode 100644 index 8ba50edd..00000000 --- a/eccodes/definitions.save/grib2/template.4.14.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.14, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.derived.def" -include "grib2/template.4.circular_cluster.def" -include "grib2/template.4.statistical.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} diff --git a/eccodes/definitions.save/grib2/template.4.15.def b/eccodes/definitions.save/grib2/template.4.15.def deleted file mode 100644 index d58a2485..00000000 --- a/eccodes/definitions.save/grib2/template.4.15.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.15, Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; -codetable[1] statisticalProcess 'grib2/tables/[tablesVersion]/4.10.table'; -codetable[1] spatialProcessing 'grib2/tables/[tablesVersion]/4.15.table'; -unsigned[1] numberOfPointsUsed; - diff --git a/eccodes/definitions.save/grib2/template.4.2.def b/eccodes/definitions.save/grib2/template.4.2.def deleted file mode 100644 index 27b00c32..00000000 --- a/eccodes/definitions.save/grib2/template.4.2.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.2, Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; -include "grib2/template.4.derived.def"; diff --git a/eccodes/definitions.save/grib2/template.4.20.def b/eccodes/definitions.save/grib2/template.4.20.def deleted file mode 100644 index 86cc2e8e..00000000 --- a/eccodes/definitions.save/grib2/template.4.20.def +++ /dev/null @@ -1,64 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.20, Radar product -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Number of radar sites used -unsigned[1] numberOfRadarSitesUsed : dump; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Site latitude (in 10-6 degree) -unsigned[4] siteLatitude : dump; - -# Site longitude (in 10-6 degree) -unsigned[4] siteLongitude : dump; - -# Site elevation (meters) -unsigned[2] siteElevation : dump; - -# Site ID (alphanumeric) -unsigned[4] siteId : dump; - -# Site ID (numeric) -unsigned[2] siteId : dump; - -# Operating mode -codetable[1] operatingMode ('4.12.table',masterDir,localDir) : dump; - -# Reflectivity calibration constant (tenths of dB) -unsigned[1] reflectivityCalibrationConstant : dump; - -# Quality control indicator -codetable[1] qualityControlIndicator ('4.13.table',masterDir,localDir) : dump; - -# Clutter filter indicator -codetable[1] clutterFilterIndicator ('4.14.table',masterDir,localDir) : dump; - -# Constant antenna elevation angle (tenths of degree true) -unsigned[1] constantAntennaElevationAngle : dump; - -# Accumulation interval (minutes) -unsigned[2] accumulationInterval : dump; - -# Reference reflectivity for echo top (dB) -unsigned[1] referenceReflectivityForEchoTop : dump; - -# Range bin spacing (meters) -unsigned[3] rangeBinSpacing : dump; - -# Radial angular spacing (tenths of degree true) -unsigned[2] radialAngularSpacing : dump; diff --git a/eccodes/definitions.save/grib2/template.4.2000.def b/eccodes/definitions.save/grib2/template.4.2000.def deleted file mode 100644 index 922c1d3c..00000000 --- a/eccodes/definitions.save/grib2/template.4.2000.def +++ /dev/null @@ -1,4 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# test template -label "_test template"; diff --git a/eccodes/definitions.save/grib2/template.4.254.def b/eccodes/definitions.save/grib2/template.4.254.def deleted file mode 100644 index 94de021c..00000000 --- a/eccodes/definitions.save/grib2/template.4.254.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.254, CCITT IA5 character string - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Number of characters -unsigned[4] numberOfCharacters : dump; diff --git a/eccodes/definitions.save/grib2/template.4.3.def b/eccodes/definitions.save/grib2/template.4.3.def deleted file mode 100644 index cdc92884..00000000 --- a/eccodes/definitions.save/grib2/template.4.3.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.3, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.derived.def" -include "grib2/template.4.rectangular_cluster.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} diff --git a/eccodes/definitions.save/grib2/template.4.30.def b/eccodes/definitions.save/grib2/template.4.30.def deleted file mode 100644 index 948437ec..00000000 --- a/eccodes/definitions.save/grib2/template.4.30.def +++ /dev/null @@ -1,27 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - -# TEMPLATE 4.30, Satellite Product - -# Note: This template is deprecated. Template 4.31 should be used instead. - -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; -codetable[1] typeOfGeneratingProcess 'grib2/tables/[tablesVersion]/4.3.table' : dump; -unsigned[1] observationGeneratingProcessIdentifier : dump; -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -if (new() || section4Length>14) { - listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries; - unsigned[2] satelliteNumber; - unsigned[1] instrumentType; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : can_be_missing ; - } -} diff --git a/eccodes/definitions.save/grib2/template.4.31.def b/eccodes/definitions.save/grib2/template.4.31.def deleted file mode 100644 index 006d6ed4..00000000 --- a/eccodes/definitions.save/grib2/template.4.31.def +++ /dev/null @@ -1,27 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - -# TEMPLATE 4.31, Satellite Product -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Observation generating process identifier (defined by originating centre) -unsigned[1] observationGeneratingProcessIdentifier : dump; -alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; - -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} diff --git a/eccodes/definitions.save/grib2/template.4.311.def b/eccodes/definitions.save/grib2/template.4.311.def deleted file mode 100644 index ab4a284f..00000000 --- a/eccodes/definitions.save/grib2/template.4.311.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - -# TEMPLATE 4.311, Satellite Product Auxiliary Information -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Observation generating process identifier (defined by originating centre) -unsigned[1] observationGeneratingProcessIdentifier : dump; - -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -codetable[1] typeOfAuxiliaryInformation ('4.15.table',masterDir,localDir) : dump; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} diff --git a/eccodes/definitions.save/grib2/template.4.32.def b/eccodes/definitions.save/grib2/template.4.32.def deleted file mode 100644 index f3d29828..00000000 --- a/eccodes/definitions.save/grib2/template.4.32.def +++ /dev/null @@ -1,25 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - -# TEMPLATE 4.32, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; - -# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask -constant typeOfLevel="surface"; -constant levelType="surface"; -constant level=0; - -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} diff --git a/eccodes/definitions.save/grib2/template.4.33.def b/eccodes/definitions.save/grib2/template.4.33.def deleted file mode 100644 index 9abe54ba..00000000 --- a/eccodes/definitions.save/grib2/template.4.33.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.33, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data - -include "grib2/template.4.32.def" -include "grib2/template.4.eps.def" - -alias instrument = instrumentType; -alias ident = satelliteNumber; - diff --git a/eccodes/definitions.save/grib2/template.4.34.def b/eccodes/definitions.save/grib2/template.4.34.def deleted file mode 100644 index a523031e..00000000 --- a/eccodes/definitions.save/grib2/template.4.34.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.34, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data - -include "grib2/template.4.32.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" - -alias instrument = instrumentType; -alias ident = satelliteNumber; - diff --git a/eccodes/definitions.save/grib2/template.4.35.def b/eccodes/definitions.save/grib2/template.4.35.def deleted file mode 100644 index 0f6fef80..00000000 --- a/eccodes/definitions.save/grib2/template.4.35.def +++ /dev/null @@ -1,30 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - -# TEMPLATE 4.35, satellite product with or without associated quality values - -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Observation generating process identifier (defined by originating centre) -unsigned[1] observationGeneratingProcessIdentifier : dump; -alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; - -codetable[1] qualityValueAssociatedWithParameter('4.16.table',masterDir,localDir) : dump; - -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} diff --git a/eccodes/definitions.save/grib2/template.4.4.def b/eccodes/definitions.save/grib2/template.4.4.def deleted file mode 100644 index 4b84053a..00000000 --- a/eccodes/definitions.save/grib2/template.4.4.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.4, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.derived.def" -include "grib2/template.4.circular_cluster.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} diff --git a/eccodes/definitions.save/grib2/template.4.40.def b/eccodes/definitions.save/grib2/template.4.40.def deleted file mode 100644 index 88d6f561..00000000 --- a/eccodes/definitions.save/grib2/template.4.40.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.40, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents - -include "grib2/template.4.parameter_chemical.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions.save/grib2/template.4.40033.def b/eccodes/definitions.save/grib2/template.4.40033.def deleted file mode 100644 index c5a1421a..00000000 --- a/eccodes/definitions.save/grib2/template.4.40033.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# -# This is deprecated and only included for backward compatibility, use template 4.33 -# -include "grib2/template.4.33.def" diff --git a/eccodes/definitions.save/grib2/template.4.40034.def b/eccodes/definitions.save/grib2/template.4.40034.def deleted file mode 100644 index 3c0fed44..00000000 --- a/eccodes/definitions.save/grib2/template.4.40034.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# -# This is deprecated and only included for backward compatibility, use template 4.34 -# -include "grib2/template.4.34.def" diff --git a/eccodes/definitions.save/grib2/template.4.41.def b/eccodes/definitions.save/grib2/template.4.41.def deleted file mode 100644 index f3fccee3..00000000 --- a/eccodes/definitions.save/grib2/template.4.41.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.41, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents - -include "grib2/template.4.parameter_chemical.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.42.def b/eccodes/definitions.save/grib2/template.4.42.def deleted file mode 100644 index fc2f42a8..00000000 --- a/eccodes/definitions.save/grib2/template.4.42.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.42, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents - -include "grib2/template.4.parameter_chemical.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.43.def b/eccodes/definitions.save/grib2/template.4.43.def deleted file mode 100644 index a514a0dd..00000000 --- a/eccodes/definitions.save/grib2/template.4.43.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.43, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents - -include "grib2/template.4.parameter_chemical.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.44.def b/eccodes/definitions.save/grib2/template.4.44.def deleted file mode 100644 index 22dd46ab..00000000 --- a/eccodes/definitions.save/grib2/template.4.44.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.44, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol -# It is recommended not to use this template. PDT 4.48 should be used instead with optical wave length range set to missing - -# GRIB-530: Special case for aerosol thanks to WMO error -include "grib2/template.4.parameter_aerosol_44.def" - -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" - diff --git a/eccodes/definitions.save/grib2/template.4.45.def b/eccodes/definitions.save/grib2/template.4.45.def deleted file mode 100644 index 1820766c..00000000 --- a/eccodes/definitions.save/grib2/template.4.45.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.45, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol - -include "grib2/template.4.parameter_aerosol.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.46.def b/eccodes/definitions.save/grib2/template.4.46.def deleted file mode 100644 index 84425887..00000000 --- a/eccodes/definitions.save/grib2/template.4.46.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.46, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol - -include "grib2/template.4.parameter_aerosol.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.47.def b/eccodes/definitions.save/grib2/template.4.47.def deleted file mode 100644 index 05a081a2..00000000 --- a/eccodes/definitions.save/grib2/template.4.47.def +++ /dev/null @@ -1,9 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.47, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -# Note: This template is deprecated. Template 4.85 should be used instead. - -include "grib2/template.4.parameter_aerosol.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.48.def b/eccodes/definitions.save/grib2/template.4.48.def deleted file mode 100644 index 6768145b..00000000 --- a/eccodes/definitions.save/grib2/template.4.48.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.48, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol - -include "grib2/template.4.parameter_aerosol_optical.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions.save/grib2/template.4.49.def b/eccodes/definitions.save/grib2/template.4.49.def deleted file mode 100644 index 7c4ea91a..00000000 --- a/eccodes/definitions.save/grib2/template.4.49.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.49, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol - -include "grib2/template.4.parameter_aerosol_optical.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.5.def b/eccodes/definitions.save/grib2/template.4.5.def deleted file mode 100644 index a0cba2d1..00000000 --- a/eccodes/definitions.save/grib2/template.4.5.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.5, Probability forecasts at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.probability.def" diff --git a/eccodes/definitions.save/grib2/template.4.51.def b/eccodes/definitions.save/grib2/template.4.51.def deleted file mode 100644 index d495993d..00000000 --- a/eccodes/definitions.save/grib2/template.4.51.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.51, Categorical forecasts at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.categorical.def" diff --git a/eccodes/definitions.save/grib2/template.4.53.def b/eccodes/definitions.save/grib2/template.4.53.def deleted file mode 100644 index eb1b3228..00000000 --- a/eccodes/definitions.save/grib2/template.4.53.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.53, Partitioned parameters at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter_partition.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/eccodes/definitions.save/grib2/template.4.54.def b/eccodes/definitions.save/grib2/template.4.54.def deleted file mode 100644 index b0acf794..00000000 --- a/eccodes/definitions.save/grib2/template.4.54.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.54, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters - -include "grib2/template.4.53.def" -include "grib2/template.4.eps.def" - -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/eccodes/definitions.save/grib2/template.4.55.def b/eccodes/definitions.save/grib2/template.4.55.def deleted file mode 100644 index 8a7010bb..00000000 --- a/eccodes/definitions.save/grib2/template.4.55.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.55, Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time - -include "grib2/template.4.parameter_tile.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" diff --git a/eccodes/definitions.save/grib2/template.4.56.def b/eccodes/definitions.save/grib2/template.4.56.def deleted file mode 100644 index b2bd148a..00000000 --- a/eccodes/definitions.save/grib2/template.4.56.def +++ /dev/null @@ -1,18 +0,0 @@ -# TEMPLATE 4.56, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters -# Note: This template is deprecated. Template 4.59 should be used instead. - -include "grib2/template.4.parameter_tile.def" -include "grib2/template.4.horizontal.def" - -# Note: This template is missing the entry: -# Type of ensemble forecast -# which is present in all other templates with EPS info! Mistake by WMO? - -# So we cannot include the eps template due to this missing entry! -# include "grib2/template.4.eps.def" -# Have to manually define the keys -unsigned[1] perturbationNumber : dump; -alias number=perturbationNumber; - -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions.save/grib2/template.4.57.def b/eccodes/definitions.save/grib2/template.4.57.def deleted file mode 100644 index 939c0e5f..00000000 --- a/eccodes/definitions.save/grib2/template.4.57.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.57, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function - -include "grib2/template.4.parameter_chemical_distribution.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions.save/grib2/template.4.58.def b/eccodes/definitions.save/grib2/template.4.58.def deleted file mode 100644 index 380f2572..00000000 --- a/eccodes/definitions.save/grib2/template.4.58.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.58, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function - -include "grib2/template.4.parameter_chemical_distribution.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.59.def b/eccodes/definitions.save/grib2/template.4.59.def deleted file mode 100644 index 5cddfb29..00000000 --- a/eccodes/definitions.save/grib2/template.4.59.def +++ /dev/null @@ -1,10 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.59, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters - -# Use this instead of template 4.56 - -include "grib2/template.4.parameter_tile.def" -include "grib2/template.4.point_in_time.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.6.def b/eccodes/definitions.save/grib2/template.4.6.def deleted file mode 100644 index f173b2cf..00000000 --- a/eccodes/definitions.save/grib2/template.4.6.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.6, Percentile forecasts at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.percentile.def" diff --git a/eccodes/definitions.save/grib2/template.4.60.def b/eccodes/definitions.save/grib2/template.4.60.def deleted file mode 100644 index 53773a2a..00000000 --- a/eccodes/definitions.save/grib2/template.4.60.def +++ /dev/null @@ -1,9 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.60, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.reforecast.def" diff --git a/eccodes/definitions.save/grib2/template.4.61.def b/eccodes/definitions.save/grib2/template.4.61.def deleted file mode 100644 index ef868371..00000000 --- a/eccodes/definitions.save/grib2/template.4.61.def +++ /dev/null @@ -1,9 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.61, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.reforecast.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.67.def b/eccodes/definitions.save/grib2/template.4.67.def deleted file mode 100644 index 462d3ea6..00000000 --- a/eccodes/definitions.save/grib2/template.4.67.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.67, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function - -include "grib2/template.4.parameter_chemical_distribution.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.68.def b/eccodes/definitions.save/grib2/template.4.68.def deleted file mode 100644 index 9fa3a3d2..00000000 --- a/eccodes/definitions.save/grib2/template.4.68.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.68, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function - -include "grib2/template.4.parameter_chemical_distribution.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.7.def b/eccodes/definitions.save/grib2/template.4.7.def deleted file mode 100644 index fa6f007c..00000000 --- a/eccodes/definitions.save/grib2/template.4.7.def +++ /dev/null @@ -1,2 +0,0 @@ -# Note: This template is deprecated. Template 4.0 should be used instead. -include "grib2/template.4.0.def" diff --git a/eccodes/definitions.save/grib2/template.4.70.def b/eccodes/definitions.save/grib2/template.4.70.def deleted file mode 100644 index d98aacf9..00000000 --- a/eccodes/definitions.save/grib2/template.4.70.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# EFAS: Analysis or forecast at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter_postproc.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions.save/grib2/template.4.71.def b/eccodes/definitions.save/grib2/template.4.71.def deleted file mode 100644 index 31b5da5f..00000000 --- a/eccodes/definitions.save/grib2/template.4.71.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time - -include "grib2/template.4.parameter_postproc.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.72.def b/eccodes/definitions.save/grib2/template.4.72.def deleted file mode 100644 index 3c773b45..00000000 --- a/eccodes/definitions.save/grib2/template.4.72.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# EFAS: Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter_postproc.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.73.def b/eccodes/definitions.save/grib2/template.4.73.def deleted file mode 100644 index 5cfd284a..00000000 --- a/eccodes/definitions.save/grib2/template.4.73.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter_postproc.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.76.def b/eccodes/definitions.save/grib2/template.4.76.def deleted file mode 100644 index 7de36ca7..00000000 --- a/eccodes/definitions.save/grib2/template.4.76.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.76, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions.save/grib2/template.4.77.def b/eccodes/definitions.save/grib2/template.4.77.def deleted file mode 100644 index 61b91b98..00000000 --- a/eccodes/definitions.save/grib2/template.4.77.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.77, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink -include "grib2/template.4.parameter_chemical_source.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.78.def b/eccodes/definitions.save/grib2/template.4.78.def deleted file mode 100644 index 582d30e1..00000000 --- a/eccodes/definitions.save/grib2/template.4.78.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.78, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.79.def b/eccodes/definitions.save/grib2/template.4.79.def deleted file mode 100644 index f77ce879..00000000 --- a/eccodes/definitions.save/grib2/template.4.79.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.79, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.8.def b/eccodes/definitions.save/grib2/template.4.8.def deleted file mode 100644 index ce39303d..00000000 --- a/eccodes/definitions.save/grib2/template.4.8.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.8, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.80.def b/eccodes/definitions.save/grib2/template.4.80.def deleted file mode 100644 index 4e332576..00000000 --- a/eccodes/definitions.save/grib2/template.4.80.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.80, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink - -include "grib2/template.4.parameter_aerosol_optical_source.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; diff --git a/eccodes/definitions.save/grib2/template.4.81.def b/eccodes/definitions.save/grib2/template.4.81.def deleted file mode 100644 index a758d4be..00000000 --- a/eccodes/definitions.save/grib2/template.4.81.def +++ /dev/null @@ -1,15 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.81, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink - -include "grib2/template.4.parameter_aerosol_optical_source.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; -include "grib2/template.4.eps.def" diff --git a/eccodes/definitions.save/grib2/template.4.82.def b/eccodes/definitions.save/grib2/template.4.82.def deleted file mode 100644 index 6e64bbd7..00000000 --- a/eccodes/definitions.save/grib2/template.4.82.def +++ /dev/null @@ -1,14 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.82, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink - -include "grib2/template.4.parameter_aerosol_source.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.83.def b/eccodes/definitions.save/grib2/template.4.83.def deleted file mode 100644 index 37254991..00000000 --- a/eccodes/definitions.save/grib2/template.4.83.def +++ /dev/null @@ -1,9 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.83, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval with source/sink -# Note: This template is deprecated. Template 4.84 should be used instead. - -include "grib2/template.4.parameter_aerosol_source.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.84.def b/eccodes/definitions.save/grib2/template.4.84.def deleted file mode 100644 index 1463d22a..00000000 --- a/eccodes/definitions.save/grib2/template.4.84.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.84, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink -include "grib2/template.4.parameter_aerosol_source.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.85.def b/eccodes/definitions.save/grib2/template.4.85.def deleted file mode 100644 index 0a41b323..00000000 --- a/eccodes/definitions.save/grib2/template.4.85.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.85, individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -include "grib2/template.4.parameter_aerosol.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.eps.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.9.def b/eccodes/definitions.save/grib2/template.4.9.def deleted file mode 100644 index 11fffc68..00000000 --- a/eccodes/definitions.save/grib2/template.4.9.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.9, Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.probability.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.91.def b/eccodes/definitions.save/grib2/template.4.91.def deleted file mode 100644 index 5824fd97..00000000 --- a/eccodes/definitions.save/grib2/template.4.91.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 4.91, Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval - -include "grib2/template.4.parameter.def" -include "grib2/template.4.horizontal.def" -include "grib2/template.4.categorical.def" -include "grib2/template.4.statistical.def" diff --git a/eccodes/definitions.save/grib2/template.4.categorical.def b/eccodes/definitions.save/grib2/template.4.categorical.def deleted file mode 100755 index 561f28b1..00000000 --- a/eccodes/definitions.save/grib2/template.4.categorical.def +++ /dev/null @@ -1,21 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Total number of forecast probabilities -unsigned[1] numberOfCategories : dump; - -# categories -categories list(numberOfCategories) { - codetable[1] categoryType ('4.91.table',masterDir,localDir): dump; - unsigned[1] codeFigure : dump; - # Scale factor of lower limit - unsigned[1] scaleFactorOfLowerLimit : can_be_missing,dump ; - - # Scaled value of lower limit - unsigned[4] scaledValueOfLowerLimit : can_be_missing,dump ; - - # Scale factor of upper limit - unsigned[1] scaleFactorOfUpperLimit : can_be_missing,dump; - - # Scaled value of upper limit - unsigned[4] scaledValueOfUpperLimit : can_be_missing,dump; -} diff --git a/eccodes/definitions.save/grib2/template.4.circular_cluster.def b/eccodes/definitions.save/grib2/template.4.circular_cluster.def deleted file mode 100755 index 7db25279..00000000 --- a/eccodes/definitions.save/grib2/template.4.circular_cluster.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# 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; diff --git a/eccodes/definitions.save/grib2/template.4.derived.def b/eccodes/definitions.save/grib2/template.4.derived.def deleted file mode 100755 index 429f57b9..00000000 --- a/eccodes/definitions.save/grib2/template.4.derived.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Derived forecast -codetable[1] derivedForecast ('4.7.table',masterDir,localDir) : dump; - -# Number of forecasts in ensemble -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; diff --git a/eccodes/definitions.save/grib2/template.4.eps.def b/eccodes/definitions.save/grib2/template.4.eps.def deleted file mode 100644 index bda5c6b2..00000000 --- a/eccodes/definitions.save/grib2/template.4.eps.def +++ /dev/null @@ -1,25 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Type of ensemble forecast -codetable[1] typeOfEnsembleForecast ('4.6.table',masterDir,localDir) = 255 : dump; - -# Perturbation number -unsigned[1] perturbationNumber : dump; -alias number=perturbationNumber; - -# Number of forecasts in ensemble -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; - -# Rules for TIGGE, S2S, UERRA and CRRA -if (productionStatusOfProcessedData == 4 || - productionStatusOfProcessedData == 5 || - productionStatusOfProcessedData == 6 || - productionStatusOfProcessedData == 7 || - productionStatusOfProcessedData == 8 || - productionStatusOfProcessedData == 9 || - productionStatusOfProcessedData == 10|| - productionStatusOfProcessedData == 11) -{ - alias mars.number=perturbationNumber; -} diff --git a/eccodes/definitions.save/grib2/template.4.horizontal.def b/eccodes/definitions.save/grib2/template.4.horizontal.def deleted file mode 100755 index 071ae07b..00000000 --- a/eccodes/definitions.save/grib2/template.4.horizontal.def +++ /dev/null @@ -1,89 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Type of first fixed surface -codetable[1] typeOfFirstFixedSurface ('4.5.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; -meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; -meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; - -# Scale factor of first fixed surface -signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of first fixed surface -unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Type of second fixed surface -codetable[1] typeOfSecondFixedSurface ('4.5.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; -meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; -meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; - -# Scale factor of second fixed surface -signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of second fixed surface -unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -transient pressureUnits="hPa"; - -concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsDir2,conceptsDir1); - -alias levelType=typeOfFirstFixedSurface; - -if (typeOfSecondFixedSurface == 255) { - # Only one surface - meta level g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - transient bottomLevel=level; # Do not use alias (see GRIB-725) - transient topLevel=level; -} else { - # Two surfaces - meta topLevel g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - meta bottomLevel g2level(typeOfSecondFixedSurface, - scaleFactorOfSecondFixedSurface, - scaledValueOfSecondFixedSurface, - pressureUnits) :dump; - alias level=topLevel; # (see GRIB-725) - -} -alias ls.level=level; -alias vertical.level=level; -alias vertical.bottomLevel=bottomLevel; -alias vertical.topLevel=topLevel; - -alias extraDim=zero; -if (defined(extraDimensionPresent)) { - if (extraDimensionPresent) { - alias extraDim=one; - } -} -if (extraDim) { - alias mars.levelist = dimension; - alias mars.levtype = dimensionType; -} else { - # See GRIB-74 why we store the pressureUnits in a transient - transient tempPressureUnits=pressureUnits; - if (!(typeOfLevel is "surface")) { - if (tempPressureUnits is "Pa") { - meta marsLevel scale(level,one,hundred) : read_only; - alias mars.levelist=marsLevel; - } else { - alias mars.levelist = level; - } - } - alias mars.levtype = typeOfFirstFixedSurface; - # GRIB-372: levelist alias does not pertain to surface parameters - if (levtype is "sfc") { - unalias mars.levelist; - } -} - -# See ECC-854 -if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { - alias mars.levelist = bottomLevel; -} - -alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions.save/grib2/template.4.parameter.def b/eccodes/definitions.save/grib2/template.4.parameter.def deleted file mode 100644 index b74a8bd4..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter.def +++ /dev/null @@ -1,38 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -# (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_aerosol.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol.def deleted file mode 100644 index d5a59c67..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_aerosol.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def deleted file mode 100644 index 7218bd19..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_44.def +++ /dev/null @@ -1,66 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# GRIB-530: This template is to be used by template.4.44.def ONLY - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -# (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 -# See GRIB-530: We have to make a special case for the error in WMO spec -if ( new() || (section4Length - 4*NV == 45) ) -{ - # Use the WMO standard 2 octets for the following cases: - # Newly created messages - # Existing gribs which have 45 bytes before the pv array - # The 45 bytes = length of product def template 4.44 - unsigned[2] forecastTime : dump; -} -else -{ - # This is for existing gribs which were written with 4 octets (GRIB-29: supports negative forecast time) - signed[4] forecastTime : dump; -} - diff --git a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def deleted file mode 100644 index ebe73ec6..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical.def +++ /dev/null @@ -1,57 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Aerosol type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; - -# Wavelengths in metres -signed[1] scaleFactorOfFirstWavelength : dump; -signed[4] scaledValueOfFirstWavelength : dump; -signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; -signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def deleted file mode 100644 index d18f12ed..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_optical_source.def +++ /dev/null @@ -1,60 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Aerosol type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; - -# Wavelengths in metres -signed[1] scaleFactorOfFirstWavelength : dump; -signed[4] scaledValueOfFirstWavelength : dump; -signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; -signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def b/eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def deleted file mode 100644 index 107d0829..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_aerosol_source.def +++ /dev/null @@ -1,50 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_chemical.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical.def deleted file mode 100644 index 6b29f159..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_chemical.def +++ /dev/null @@ -1,40 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by indicatorOfUnitOfTimeRange -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def deleted file mode 100644 index 203b468d..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_chemical_distribution.def +++ /dev/null @@ -1,59 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Number of mode(N) of distribution -unsigned[2] numberOfModeOfDistribution : dump; - -# Mode number (l) -unsigned[2] modeNumber : dump; - -# Type of distribution function -codetable[2] typeOfDistributionFunction ('4.240.table',masterDir,localDir) : dump; - -# Number of following function parameters (Np), defined by type given in octet 18-19 -unsigned[1] numberOfDistributionFunctionParameters : dump; -alias NP = numberOfDistributionFunctionParameters; - -listOfDistributionFunctionParameter list(numberOfDistributionFunctionParameters) { - signed[1] scaleFactorOfDistributionFunctionParameter = missing() : can_be_missing,dump; - unsigned[4] scaledValueOfDistributionFunctionParameter = missing() : can_be_missing,dump; -} - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def b/eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def deleted file mode 100644 index 3b78cf33..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_chemical_source.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by indicatorOfUnitOfTimeRange -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_partition.def b/eccodes/definitions.save/grib2/template.4.parameter_partition.def deleted file mode 100644 index 8c4252a2..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_partition.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; -unsigned[1] partitionTable : dump; -unsigned[1] numberOfPartitions=1 :dump; -partitions list(numberOfPartitions) { - unsigned[2] partitionItems ; -} - -codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_postproc.def b/eccodes/definitions.save/grib2/template.4.parameter_postproc.def deleted file mode 100644 index d20c8800..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_postproc.def +++ /dev/null @@ -1,46 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the -# original GRIB message used as input of the post-processing -unsigned[2] inputProcessIdentifier : dump,edition_specific; -# The input originating centre shall have the value of the 'originating centre' of the original GRIB message -# used as input of the post-processing -codetable[2] inputOriginatingCentre 'common/c-11.table' : dump,edition_specific,string_type; -# This identifies which post-processing technique was used. This is defined by the originating centre -unsigned[1] typeOfPostProcessing : dump,edition_specific; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by indicatorOfUnitOfTimeRange -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.parameter_tile.def b/eccodes/definitions.save/grib2/template.4.parameter_tile.def deleted file mode 100644 index 2002f212..00000000 --- a/eccodes/definitions.save/grib2/template.4.parameter_tile.def +++ /dev/null @@ -1,51 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Tile specifications -codetable[1] tileClassification ('4.242.table',masterDir,localDir) : dump; -unsigned[1] totalNumberOfTileAttributePairs=1 : dump; -unsigned[1] numberOfUsedSpatialTiles=1 : dump; -unsigned[1] tileIndex : dump; -unsigned[1] numberOfUsedTileAttributes=1 : dump; -codetable[1] attributeOfTile ('4.241.table',masterDir,localDir) : dump; -alias NT=totalNumberOfTileAttributePairs; -alias NUT=numberOfUsedSpatialTiles; -alias ITN=tileIndex; -alias NAT=numberOfUsedTileAttributes; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier -# (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - - -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by octet 24 -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib2/template.4.percentile.def b/eccodes/definitions.save/grib2/template.4.percentile.def deleted file mode 100755 index 5f720cce..00000000 --- a/eccodes/definitions.save/grib2/template.4.percentile.def +++ /dev/null @@ -1,5 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Percentile value -# (from 100% to 0%) -unsigned[1] percentileValue : dump; diff --git a/eccodes/definitions.save/grib2/template.4.point_in_time.def b/eccodes/definitions.save/grib2/template.4.point_in_time.def deleted file mode 100644 index f2e8606f..00000000 --- a/eccodes/definitions.save/grib2/template.4.point_in_time.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -meta startStep step_in_units(forecastTime,indicatorOfUnitOfTimeRange,stepUnits): no_copy; -meta endStep g2end_step(startStep,stepUnits) : no_copy; - -alias step=startStep; -alias marsStep=startStep; - -alias mars.step=startStep; - -alias marsStartStep = startStep; -alias marsEndStep = endStep; - -meta stepRange g2step_range(startStep): dump; -alias ls.stepRange=stepRange; -concept stepTypeInternal { - "instant" = {dummy=1;} -} -meta stepHumanReadable step_human_readable(stepUnits, stepRange): hidden,no_copy; - -alias time.stepType=stepType; -alias time.stepRange=stepRange; -alias time.stepUnits=stepUnits; -alias time.dataDate=dataDate; -alias time.dataTime=dataTime; -alias time.startStep=startStep; -alias time.endStep=endStep; - -meta time.validityDate validity_date(dataDate,dataTime,step,stepUnits) : no_copy; -meta time.validityTime validity_time(dataDate,dataTime,step,stepUnits) : no_copy; - diff --git a/eccodes/definitions.save/grib2/template.4.probability.def b/eccodes/definitions.save/grib2/template.4.probability.def deleted file mode 100755 index deb033b1..00000000 --- a/eccodes/definitions.save/grib2/template.4.probability.def +++ /dev/null @@ -1,30 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Forecast probability number -unsigned[1] forecastProbabilityNumber : dump; - -# Total number of forecast probabilities -unsigned[1] totalNumberOfForecastProbabilities : dump; - -# Probability type -codetable[1] probabilityType ('4.9.table',masterDir,localDir) : dump; -meta probabilityTypeName codetable_title(probabilityType): read_only; - -# Scale factor of lower limit -signed[1] scaleFactorOfLowerLimit : can_be_missing,dump ; - -# Scaled value of lower limit -signed[4] scaledValueOfLowerLimit : can_be_missing,dump ; - -meta lowerLimit from_scale_factor_scaled_value( - scaleFactorOfLowerLimit, scaledValueOfLowerLimit): can_be_missing; - - -# Scale factor of upper limit -signed[1] scaleFactorOfUpperLimit : can_be_missing,dump; - -# Scaled value of upper limit -signed[4] scaledValueOfUpperLimit : can_be_missing,dump; - -meta upperLimit from_scale_factor_scaled_value( - scaleFactorOfUpperLimit, scaledValueOfUpperLimit): can_be_missing; diff --git a/eccodes/definitions.save/grib2/template.4.rectangular_cluster.def b/eccodes/definitions.save/grib2/template.4.rectangular_cluster.def deleted file mode 100755 index 4d120865..00000000 --- a/eccodes/definitions.save/grib2/template.4.rectangular_cluster.def +++ /dev/null @@ -1,50 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# 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 ; - - diff --git a/eccodes/definitions.save/grib2/template.4.reforecast.def b/eccodes/definitions.save/grib2/template.4.reforecast.def deleted file mode 100644 index 53bdf435..00000000 --- a/eccodes/definitions.save/grib2/template.4.reforecast.def +++ /dev/null @@ -1,14 +0,0 @@ -# The Model Version Date -# This is the date when the reforecast is produced with a particular version of the model - -unsigned[2] YearOfModelVersion = 0: edition_specific; -unsigned[1] MonthOfModelVersion = 0: edition_specific; -unsigned[1] DayOfModelVersion = 0: edition_specific; -unsigned[1] HourOfModelVersion = 0: edition_specific; -unsigned[1] MinuteOfModelVersion = 0: edition_specific; -unsigned[1] SecondOfModelVersion = 0: edition_specific; - -meta modelVersionDate g2date(YearOfModelVersion,MonthOfModelVersion,DayOfModelVersion) : dump; -meta modelVersionTime time(HourOfModelVersion, MinuteOfModelVersion, SecondOfModelVersion) : dump; - -constant isHindcast = 1; diff --git a/eccodes/definitions.save/grib2/template.4.statistical.def b/eccodes/definitions.save/grib2/template.4.statistical.def deleted file mode 100644 index e4be03e1..00000000 --- a/eccodes/definitions.save/grib2/template.4.statistical.def +++ /dev/null @@ -1,123 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Year of end of overall time interval -unsigned[2] yearOfEndOfOverallTimeInterval =0 : edition_specific; - -# Month of end of overall time interval -unsigned[1] monthOfEndOfOverallTimeInterval =0 : edition_specific; - -# Day of end of overall time interval -unsigned[1] dayOfEndOfOverallTimeInterval =0 : edition_specific; - -# Hour of end of overall time interval -unsigned[1] hourOfEndOfOverallTimeInterval =0 : edition_specific; - -# Minute of end of overall time interval -unsigned[1] minuteOfEndOfOverallTimeInterval =0 : edition_specific; - -# Second of end of overall time interval -unsigned[1] secondOfEndOfOverallTimeInterval =0 : edition_specific; - -# n - number of time range specifications describing the time intervals used to calculate the statistically-processed field -unsigned[1] numberOfTimeRange = 1 : edition_specific; -alias n = numberOfTimeRange; - -# Total number of data values missing in statistical process -unsigned[4] numberOfMissingInStatisticalProcess = 0 : edition_specific; -alias totalNumberOfDataValuesMissingInStatisticalProcess=numberOfMissingInStatisticalProcess; - -statisticalProcessesList list(numberOfTimeRange) -{ - # Statistical process used to calculate the processed field from the field at each time increment during the time range - codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : edition_specific; - - # Type of time increment between successive fields used in the statistical processing - codetable[1] typeOfTimeIncrement ('4.11.table',masterDir,localDir) = 2 : edition_specific; - alias typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing=typeOfTimeIncrement; - - # Indicator of unit of time for time range over which statistical processing is done - codetable[1] indicatorOfUnitForTimeRange ('4.4.table',masterDir,localDir) =1 ; - - # Length of the time range over which statistical processing is done, in units defined by the previous octet - unsigned[4] lengthOfTimeRange=0 ; - - # Indicator of unit of time for the increment between the successive fields used - codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ; - - # Time increment between successive fields, in units defined by the previous octet - unsigned[4] timeIncrement=0 ; - alias timeIncrementBetweenSuccessiveFields=timeIncrement; - -} - -# See GRIB-488. We only support maximum of 2 time ranges -if (numberOfTimeRange == 1 || numberOfTimeRange == 2) { - concept stepTypeInternal { - "instant" = {typeOfStatisticalProcessing=255;} - "avg" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=2;} - "avg" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=3;} - "avgd" = {typeOfStatisticalProcessing=0;typeOfTimeIncrement=1;} - "accum" = {typeOfStatisticalProcessing=1;typeOfTimeIncrement=2;} - "max" = {typeOfStatisticalProcessing=2;} - "min" = {typeOfStatisticalProcessing=3;} - "diff" = {typeOfStatisticalProcessing=4;} # end-start - "rms" = {typeOfStatisticalProcessing=5;} - "sd" = {typeOfStatisticalProcessing=6;} - "cov" = {typeOfStatisticalProcessing=7;} - "sdiff" = {typeOfStatisticalProcessing=8;} # start-end - "ratio" = {typeOfStatisticalProcessing=9;} - "stdanom" = {typeOfStatisticalProcessing=10;} - "sum" = {typeOfStatisticalProcessing=11;} - } - meta startStep step_in_units(forecastTime,indicatorOfUnitOfTimeRange,stepUnits, - indicatorOfUnitForTimeRange,lengthOfTimeRange) : no_copy; - meta endStep g2end_step( - startStep, - stepUnits, - - year, - month, - day, - hour, - minute, - second, - - yearOfEndOfOverallTimeInterval, - monthOfEndOfOverallTimeInterval, - dayOfEndOfOverallTimeInterval, - hourOfEndOfOverallTimeInterval, - minuteOfEndOfOverallTimeInterval, - secondOfEndOfOverallTimeInterval, - - indicatorOfUnitForTimeRange, - lengthOfTimeRange, - typeOfTimeIncrement, - numberOfTimeRange - ) : dump,no_copy; - - meta stepRange g2step_range(startStep,endStep): dump; -} else { - constant stepType = "multiple steps"; - constant stepTypeInternal = "multiple steps"; - constant endStep = "unavailable"; - constant startStep = "unavailable"; - constant stepRange = "unavailable"; -} - -#meta marsStep mars_step(stepRange,stepType) : edition_specific; - -alias ls.stepRange=stepRange; -alias mars.step=endStep; - -alias time.stepType=stepType; -alias time.stepRange=stepRange; -alias time.stepUnits=stepUnits; -alias time.dataDate=dataDate; -alias time.dataTime=dataTime; -alias time.startStep=startStep; -alias time.endStep=endStep; - -meta time.validityDate validity_date(date,dataTime,step,stepUnits,yearOfEndOfOverallTimeInterval, - monthOfEndOfOverallTimeInterval,dayOfEndOfOverallTimeInterval) : no_copy; -meta time.validityTime validity_time(date,dataTime,step,stepUnits,hourOfEndOfOverallTimeInterval, - minuteOfEndOfOverallTimeInterval) : no_copy; diff --git a/eccodes/definitions.save/grib2/template.5.0.def b/eccodes/definitions.save/grib2/template.5.0.def deleted file mode 100644 index 9ec20b0e..00000000 --- a/eccodes/definitions.save/grib2/template.5.0.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.0, Grid point data - simple packing - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; - diff --git a/eccodes/definitions.save/grib2/template.5.1.def b/eccodes/definitions.save/grib2/template.5.1.def deleted file mode 100644 index 0db50611..00000000 --- a/eccodes/definitions.save/grib2/template.5.1.def +++ /dev/null @@ -1,77 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.1, Matrix values at grid point -simple packing - -include "grib2/template.5.packing.def"; - -unsigned[1] matrixBitmapsPresent ; -# same as in edition 1 -alias secondaryBitmapPresent=matrixBitmapsPresent; - -# Number of data values encoded in Section 7 -unsigned[4] numberOfCodedValues ; - -# NR - first dimension -# (rows) -unsigned[2] firstDimension ; - -alias NR = firstDimension; -# NC - second dimension -# (columns) -unsigned[2] secondDimension ; - -alias NC = secondDimension; -# First dimension coordinate value definition -# (Code Table 5.2) -unsigned[1] firstDimensionCoordinateValueDefinition ; - -# NC1 - number of coefficients or values used to specify first dimension coordinate function -unsigned[1] NC1 : dump ; -alias numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction=NC1; - -# Second dimension coordinate value definition -# (Code Table 5.2) -unsigned[1] secondDimensionCoordinateValueDefinition ; - -# NC2 - number of coefficients or values used to specify second dimension coordinate function -unsigned[1] NC2 : dump ; -alias numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction = NC2; - -# First dimension physical significance -# (Code Table 5.3) -unsigned[1] firstDimensionPhysicalSignificance ; - -# Second dimension physical significance -# (Code Table 5.3) -unsigned[1] secondDimensionPhysicalSignificance ; - -ieeefloat coefsFirst[NC1]; # TODO: find proper names -ieeefloat coefsSecond[NC2];# TODO: find proper names - -alias data.coefsFirst = coefsFirst; -alias data.coefsSecond=coefsSecond; - -if(matrixBitmapsPresent == 1) -{ - - constant datumSize = NC*NR; - constant secondaryBitmapsCount = numberOfValues + 0; # - constant secondaryBitmapsSize = secondaryBitmapsCount/8; - - transient numberOfDataMatrices = numberOfDataPoints/datumSize; - - position offsetBBitmap; - meta secondaryBitmaps g2bitmap( - dummy, - missingValue, - offsetBSection5, - section5Length, - numberOfCodedValues , - dummy) : read_only - ; - - meta bitmap data_g2secondary_bitmap(primaryBitmap, - secondaryBitmaps, - missingValue,datumSize,numberOfDataPoints) : read_only; - -} diff --git a/eccodes/definitions.save/grib2/template.5.2.def b/eccodes/definitions.save/grib2/template.5.2.def deleted file mode 100644 index 03e74a29..00000000 --- a/eccodes/definitions.save/grib2/template.5.2.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.2, Grid point data - complex packing - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; - -# Group splitting method used -codetable[1] groupSplittingMethodUsed ('5.4.table',masterDir,localDir); - -# Missing value management used -codetable[1] missingValueManagementUsed ('5.5.table',masterDir,localDir); - -# Primary missing value substitute -unsigned[4] primaryMissingValueSubstitute ; - -# Secondary missing value substitute -unsigned[4] secondaryMissingValueSubstitute ; - -# NG - Number of groups of data values into which field is split -unsigned[4] numberOfGroupsOfDataValues ; - -alias NG = numberOfGroupsOfDataValues; -# Reference for group widths -unsigned[1] referenceForGroupWidths ; - -# Number of bits used for the group widths -# (after the reference value in octet 36 has been removed) -unsigned[1] numberOfBitsUsedForTheGroupWidths ; - -# Reference for group lengths -unsigned[4] referenceForGroupLengths ; - -# Length increment for the group lengths -unsigned[1] lengthIncrementForTheGroupLengths ; - -# True length of last group -unsigned[4] trueLengthOfLastGroup ; - -# Number of bits used for the scaled group lengths -# (after subtraction of the reference value given in octets 38-41 and division -# by the length increment given in octet 42) -unsigned[1] numberOfBitsForScaledGroupLengths ; -alias numberOfBitsUsedForTheScaledGroupLengths=numberOfBitsForScaledGroupLengths; diff --git a/eccodes/definitions.save/grib2/template.5.3.def b/eccodes/definitions.save/grib2/template.5.3.def deleted file mode 100644 index c2d00ef4..00000000 --- a/eccodes/definitions.save/grib2/template.5.3.def +++ /dev/null @@ -1,51 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.3, Grid point data - complex packing and spatial differencing - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; - -# Group splitting method used -codetable[1] groupSplittingMethodUsed ('5.4.table',masterDir,localDir); - -# Missing value management used -codetable[1] missingValueManagementUsed ('5.5.table',masterDir,localDir); - -# Primary missing value substitute -unsigned[4] primaryMissingValueSubstitute ; - -# Secondary missing value substitute -unsigned[4] secondaryMissingValueSubstitute ; - -# NG - Number of groups of data values into which field is split -unsigned[4] numberOfGroupsOfDataValues ; - -alias NG = numberOfGroupsOfDataValues; -# Reference for group widths -unsigned[1] referenceForGroupWidths ; - -# Number of bits used for the group widths -# (after the reference value in octet 36 has been removed) -unsigned[1] numberOfBitsUsedForTheGroupWidths ; - -# Reference for group lengths -unsigned[4] referenceForGroupLengths ; - -# Length increment for the group lengths -unsigned[1] lengthIncrementForTheGroupLengths ; - -# True length of last group -unsigned[4] trueLengthOfLastGroup ; - -# Number of bits used for the scaled group lengths -# (after subtraction of the reference value given in octets 38-41 and division -# by the length increment given in octet 42) -unsigned[1] numberOfBitsForScaledGroupLengths ; -alias numberOfBitsUsedForTheScaledGroupLengths=numberOfBitsForScaledGroupLengths; - -# Order of spatial differencing -codetable[1] orderOfSpatialDifferencing ('5.6.table',masterDir,localDir); - -# Number of octets required in the Data Section to specify extra descriptors needed for spatial differencing -# (octets 6-ww in Data Template 7.3) -unsigned[1] numberOfOctetsExtraDescriptors ; diff --git a/eccodes/definitions.save/grib2/template.5.4.def b/eccodes/definitions.save/grib2/template.5.4.def deleted file mode 100644 index 1413d60e..00000000 --- a/eccodes/definitions.save/grib2/template.5.4.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.4, Grid point data - IEEE packing -# added for conversion from other packing -transient bitsPerValue=0 : hidden; -transient referenceValue=0 : hidden; -transient binaryScaleFactor=0 : hidden; -transient decimalScaleFactor=0 : hidden; -alias numberOfBits = bitsPerValue; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -codetable[1] precision ('5.7.table',masterDir,localDir) = 1 : edition_specific; diff --git a/eccodes/definitions.save/grib2/template.5.40.def b/eccodes/definitions.save/grib2/template.5.40.def deleted file mode 100644 index 8340a0b3..00000000 --- a/eccodes/definitions.save/grib2/template.5.40.def +++ /dev/null @@ -1,15 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -#Data Representation Template 5.40: Grid point data - JPEG 2000 Code Stream Format - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; - -# Octet 22 : Type of Compression used. (see Code Table 5.40) - -codetable[1] typeOfCompressionUsed ('5.40.table',masterDir,localDir) ; - -# Octets 23 Target compression ratio, M:1 (with respect to the bit-depth specified in octet 20), -# when octet 22 indicates Lossy Compression. Otherwise, set to missing. (see Note 3) - -unsigned[1] targetCompressionRatio = 255; diff --git a/eccodes/definitions.save/grib2/template.5.40000.def b/eccodes/definitions.save/grib2/template.5.40000.def deleted file mode 100644 index 7fd4303a..00000000 --- a/eccodes/definitions.save/grib2/template.5.40000.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.5.40.def" diff --git a/eccodes/definitions.save/grib2/template.5.40010.def b/eccodes/definitions.save/grib2/template.5.40010.def deleted file mode 100644 index a761bf1d..00000000 --- a/eccodes/definitions.save/grib2/template.5.40010.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.5.41.def" diff --git a/eccodes/definitions.save/grib2/template.5.41.def b/eccodes/definitions.save/grib2/template.5.41.def deleted file mode 100644 index af95ab4d..00000000 --- a/eccodes/definitions.save/grib2/template.5.41.def +++ /dev/null @@ -1,6 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Grid point data - PNG Code Stream Format SAME AS 5.40010 !!!!!! - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; diff --git a/eccodes/definitions.save/grib2/template.5.42.def b/eccodes/definitions.save/grib2/template.5.42.def deleted file mode 100644 index 50fcc080..00000000 --- a/eccodes/definitions.save/grib2/template.5.42.def +++ /dev/null @@ -1,25 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.42, Grid point and spectral data - CCSDS recommended lossless compression - -include "grib2/template.5.packing.def"; -include "grib2/template.5.original_values.def"; - -unsigned[1] ccsdsFlags : dump; -alias ccsdsCompressionOptionsMask=ccsdsFlags; - -flagbit AEC_DATA_SIGNED_OPTION_MASK(ccsdsFlags,0) = 0; - -# AEC_DATA_3BYTE_OPTION_MASK was switched on in order to allow data stored -# with 17 <=bitsPerValue<= 24 to be stored in 3 rather than 4 bytes. -# This eliminates discretization errors that were occuring when it was off. -flagbit AEC_DATA_3BYTE_OPTION_MASK(ccsdsFlags,1) = 1; - -flagbit AEC_DATA_MSB_OPTION_MASK(ccsdsFlags,2) = 1; -flagbit AEC_DATA_PREPROCESS_OPTION_MASK(ccsdsFlags,3) = 1; -flagbit AEC_RESTRICTED_OPTION_MASK(ccsdsFlags,4) = 0; -flagbit AEC_PAD_RSI_OPTION_MASK(ccsdsFlags,5) = 0; - -unsigned[1] ccsdsBlockSize = 32 : dump; -unsigned[2] ccsdsRsi = 128 : dump; -alias referenceSampleInterval=ccsdsRsi; diff --git a/eccodes/definitions.save/grib2/template.5.50.def b/eccodes/definitions.save/grib2/template.5.50.def deleted file mode 100644 index 065d65c5..00000000 --- a/eccodes/definitions.save/grib2/template.5.50.def +++ /dev/null @@ -1,7 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.50, Spectral data - simple packing -include "grib2/template.5.packing.def"; - -# Real part of (0,0) -ieeefloat realPartOf00 ; diff --git a/eccodes/definitions.save/grib2/template.5.50000.def b/eccodes/definitions.save/grib2/template.5.50000.def deleted file mode 100644 index 46427b61..00000000 --- a/eccodes/definitions.save/grib2/template.5.50000.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.51, Spherical harmonics data - complex packing - -include "grib2/template.5.packing.def"; - -if (gribex_mode_on()) { - transient computeLaplacianOperator=0 : hidden; -} else { - transient computeLaplacianOperator=1 : hidden; -} - -meta _numberOfValues spectral_truncation(J,K,M,numberOfValues): read_only; - -constant laplacianScalingFactorUnset = -2147483647; -signed[4] laplacianScalingFactor : edition_specific ; - -meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; -meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); - -transient JS= 20 ; -transient KS=20 ; -transient MS=20 ; -transient subSetJ=0 ; -transient subSetK=0 ; -transient subSetM=0 ; - -unsigned[4] TS ; - -meta _TS spectral_truncation(J,K,M,TS) : read_only,hidden; - -# This is read_only until we support other values -codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 2 : dump; - -alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions.save/grib2/template.5.50001.def b/eccodes/definitions.save/grib2/template.5.50001.def deleted file mode 100755 index 1e8eed33..00000000 --- a/eccodes/definitions.save/grib2/template.5.50001.def +++ /dev/null @@ -1,27 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -ieeefloat referenceValue : no_copy; -meta referenceValueError reference_value_error(referenceValue,ieee); - -signed[2] binaryScaleFactor : no_copy; - -signed[2] decimalScaleFactor :no_copy; - -# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error -transient optimizeScaleFactor = 0; - -unsigned[1] bitsPerValue ; -if (bitsPerValue) { - unsigned[1] widthOfFirstOrderValues :no_copy ; - - unsigned [4] numberOfGroups : no_copy; - unsigned [4] numberOfSecondOrderPackedValues : no_copy; - unsigned [1] widthOfWidths : no_copy; - unsigned [1] widthOfLengths : no_copy; - unsigned [1] orderOfSPD = 2 : no_copy ; - - if (orderOfSPD) { - unsigned[1] widthOfSPD ; - meta SPD spd(widthOfSPD,orderOfSPD) : read_only; - } -} diff --git a/eccodes/definitions.save/grib2/template.5.50002.def b/eccodes/definitions.save/grib2/template.5.50002.def deleted file mode 100755 index dd687a02..00000000 --- a/eccodes/definitions.save/grib2/template.5.50002.def +++ /dev/null @@ -1,29 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -ieeefloat referenceValue : no_copy; -meta referenceValueError reference_value_error(referenceValue,ieee); - -signed[2] binaryScaleFactor : no_copy; - -signed[2] decimalScaleFactor :no_copy; - -# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error -transient optimizeScaleFactor = 0; - -unsigned[1] bitsPerValue ; -unsigned[1] widthOfFirstOrderValues :no_copy ; - -unsigned [4] numberOfGroups : no_copy; -unsigned [4] numberOfSecondOrderPackedValues : no_copy; -unsigned [1] widthOfWidths : no_copy; -unsigned [1] widthOfLengths : no_copy; -flags [1] secondOrderFlags "grib2/tables/[tablesVersion]/5.50002.table" = 0; -unsigned [1] orderOfSPD = 2 : no_copy ; - -flagbit boustrophedonicOrdering(secondOrderFlags,7) = 0; -alias boustrophedonic=boustrophedonicOrdering; - -if (orderOfSPD) { - unsigned[1] widthOfSPD ; - meta SPD spd(widthOfSPD,orderOfSPD) : read_only; -} diff --git a/eccodes/definitions.save/grib2/template.5.51.def b/eccodes/definitions.save/grib2/template.5.51.def deleted file mode 100644 index 747976a8..00000000 --- a/eccodes/definitions.save/grib2/template.5.51.def +++ /dev/null @@ -1,36 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.51, Spherical harmonics data - complex packing - -include "grib2/template.5.packing.def"; - -if (gribex_mode_on()) { - transient computeLaplacianOperator=0 : hidden; -} else { - transient computeLaplacianOperator=1 : hidden; -} - -meta _numberOfValues spectral_truncation(J,K,M,numberOfValues): read_only; - -constant laplacianScalingFactorUnset = -2147483647; -signed[4] laplacianScalingFactor : edition_specific ; - -meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; -meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); - -unsigned[2] JS ; -unsigned[2] KS ; -unsigned[2] MS ; - -alias subSetJ=JS ; -alias subSetK=KS ; -alias subSetM=MS ; - -unsigned[4] TS ; - -meta _TS spectral_truncation(JS,KS,MS,TS) : read_only,hidden; - -# This is read_only until we support other values -codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 1 : dump; - -alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions.save/grib2/template.5.53.def b/eccodes/definitions.save/grib2/template.5.53.def deleted file mode 100644 index 9c52a851..00000000 --- a/eccodes/definitions.save/grib2/template.5.53.def +++ /dev/null @@ -1,26 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 5.53, BiFourier coefficients data - complex packing -# Spectral data for limited area models \u2013 complex packing - -include "grib2/template.5.packing.def"; - -transient computeLaplacianOperator=1 : hidden; - -codetable[1] biFourierSubTruncationType ('5.25.table',masterDir,localDir) : dump; -codetable[1] biFourierPackingModeForAxes ('5.26.table',masterDir,localDir) = 0 : dump; - -constant laplacianScalingFactorUnset = -2147483647; -signed[4] laplacianScalingFactor : edition_specific ; # units of 10^-6 - -meta data.laplacianOperator scale(laplacianScalingFactor,one,million,truncateLaplacian) ; -meta laplacianOperatorIsSet evaluate(laplacianScalingFactor != laplacianScalingFactorUnset && !computeLaplacianOperator); - -unsigned[2] biFourierResolutionSubSetParameterN : dump ; # NS -unsigned[2] biFourierResolutionSubSetParameterM : dump ; # MS -unsigned[4] totalNumberOfValuesInUnpackedSubset = 0 : dump; # TS - -# This is read_only until we support other values -codetable[1] unpackedSubsetPrecision ('5.7.table',masterDir,localDir) = 1 : dump; - -alias precisionOfTheUnpackedSubset=unpackedSubsetPrecision; diff --git a/eccodes/definitions.save/grib2/template.5.6.def b/eccodes/definitions.save/grib2/template.5.6.def deleted file mode 100644 index 5214f812..00000000 --- a/eccodes/definitions.save/grib2/template.5.6.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Grid point data - Simple packing with preprocessing - -include "grib2/template.5.packing.def"; - -codetable[1] typeOfPreProcessing ('5.9.table',masterDir,localDir) :edition_specific; -ieeefloat preProcessingParameter : read_only; diff --git a/eccodes/definitions.save/grib2/template.5.61.def b/eccodes/definitions.save/grib2/template.5.61.def deleted file mode 100644 index 3565ebea..00000000 --- a/eccodes/definitions.save/grib2/template.5.61.def +++ /dev/null @@ -1,8 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Grid point data - Simple packing with logarithmic preprocessing -constant typeOfPreProcessing=1; - -include "grib2/template.5.packing.def"; - -ieeefloat preProcessingParameter : read_only; diff --git a/eccodes/definitions.save/grib2/template.5.original_values.def b/eccodes/definitions.save/grib2/template.5.original_values.def deleted file mode 100644 index 9b891473..00000000 --- a/eccodes/definitions.save/grib2/template.5.original_values.def +++ /dev/null @@ -1,4 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Type of original field values -codetable[1] typeOfOriginalFieldValues ('5.1.table',masterDir,localDir) = 0; # Default set to floating diff --git a/eccodes/definitions.save/grib2/template.5.packing.def b/eccodes/definitions.save/grib2/template.5.packing.def deleted file mode 100755 index 63c48719..00000000 --- a/eccodes/definitions.save/grib2/template.5.packing.def +++ /dev/null @@ -1,23 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Reference value (R) -# The copy_ok means that the value is copied when changing the representation -# e.g. from jpeg to simple packing. -ieeefloat referenceValue : read_only, copy_ok; -meta referenceValueError reference_value_error(referenceValue,ieee); - - -# Binary scale factor (E) -signed[2] binaryScaleFactor : read_only, copy_ok; - -# Decimal scale factor (D) -signed[2] decimalScaleFactor ; - -# Try different values of binaryScaleFactor and decimalScaleFactor to reduce packing error -transient optimizeScaleFactor = 0; - - -# Number of bits used for each packed value for simple packing, or for each group reference value for complex packing or spatial differencing -unsigned[1] bitsPerValue; -alias numberOfBits = bitsPerValue; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; diff --git a/eccodes/definitions.save/grib2/template.5.second_order.def b/eccodes/definitions.save/grib2/template.5.second_order.def deleted file mode 100644 index f7a31a20..00000000 --- a/eccodes/definitions.save/grib2/template.5.second_order.def +++ /dev/null @@ -1,21 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -codetable[1] groupSplitting ('5.4.table',masterDir,localDir) = 1 ; #default general - -codetable[1] missingValueManagement ('5.5.table',masterDir,localDir) = 0; #default as grib1 - -unsigned[4] primaryMissingValue ; - -unsigned[4] secondaryMissingValue ; - -unsigned[4] numberOfGroups ; -alias NG = numberOfGroups; - -unsigned[1] referenceOfWidths ; -unsigned[1] widthOfWidths ; - -unsigned[4] referenceOfLengths ; -unsigned[1] incrementOfLengths ; - -unsigned[4] trueLengthOfLastGroup ; -unsigned[1] widthOfLengths ; diff --git a/eccodes/definitions.save/grib2/template.7.0.def b/eccodes/definitions.save/grib2/template.7.0.def deleted file mode 100644 index d23d33b6..00000000 --- a/eccodes/definitions.save/grib2/template.7.0.def +++ /dev/null @@ -1,34 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.0, Grid point data - simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) - -meta codedValues data_g2simple_packing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor -): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -alias data.packedValues=codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.1.def b/eccodes/definitions.save/grib2/template.7.1.def deleted file mode 100644 index f4b2c305..00000000 --- a/eccodes/definitions.save/grib2/template.7.1.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.1, Matrix values at grid point -simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) -# ???? data_values__binary_string_with_each - -meta codedValues data_g2simple_packing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.2.def b/eccodes/definitions.save/grib2/template.7.2.def deleted file mode 100644 index df506d9e..00000000 --- a/eccodes/definitions.save/grib2/template.7.2.def +++ /dev/null @@ -1,49 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.2, Grid point data - complex packing -# Octets 6-xx : NG group reference values -# (XI in the decoding formula) - -position offsetBeforeData; - -constant orderOfSpatialDifferencing = 0; -constant numberOfOctetsExtraDescriptors = 0; - -meta codedValues data_g22order_packing( - section7Length, - offsetBeforeData, - offsetSection7, - - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - - typeOfOriginalFieldValues , - groupSplittingMethodUsed, - missingValueManagementUsed , - primaryMissingValueSubstitute , - secondaryMissingValueSubstitute , - numberOfGroupsOfDataValues , - referenceForGroupWidths , - numberOfBitsUsedForTheGroupWidths , - referenceForGroupLengths , - lengthIncrementForTheGroupLengths, - trueLengthOfLastGroup , - numberOfBitsForScaledGroupLengths, - orderOfSpatialDifferencing, - numberOfOctetsExtraDescriptors - -): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.3.def b/eccodes/definitions.save/grib2/template.7.3.def deleted file mode 100644 index 470e0ca6..00000000 --- a/eccodes/definitions.save/grib2/template.7.3.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.3, Grid point data - complex packing and spatial differencing -# Octets 6-ww : First value(s) of original -# (undifferenced) -# ???? first_value_s_of_original - -position offsetBeforeData; - -meta codedValues data_g22order_packing( - section7Length, - offsetBeforeData, - offsetSection7, - - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - - typeOfOriginalFieldValues , - groupSplittingMethodUsed, - missingValueManagementUsed , - primaryMissingValueSubstitute , - secondaryMissingValueSubstitute , - numberOfGroupsOfDataValues , - referenceForGroupWidths , - numberOfBitsUsedForTheGroupWidths , - referenceForGroupLengths , - lengthIncrementForTheGroupLengths, - trueLengthOfLastGroup , - numberOfBitsForScaledGroupLengths, - orderOfSpatialDifferencing, - numberOfOctetsExtraDescriptors - -): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues=codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.4.def b/eccodes/definitions.save/grib2/template.7.4.def deleted file mode 100644 index fda92a0c..00000000 --- a/eccodes/definitions.save/grib2/template.7.4.def +++ /dev/null @@ -1,25 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.4, Grid point data - simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) -# ???? data_values__binary_string_with_each - -meta codedValues data_raw_packing( - section7Length, - offsetBeforeData, - offsetSection7, - numberOfValues, - precision - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.40.def b/eccodes/definitions.save/grib2/template.7.40.def deleted file mode 100644 index d5b93c0d..00000000 --- a/eccodes/definitions.save/grib2/template.7.40.def +++ /dev/null @@ -1,51 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.40, Grid point data - jpeg2000 -# Octets 6-xx : NG group reference values -# (XI in the decoding formula) -# ???? ng_group_reference_values - -meta codedValues data_jpeg2000_packing( - - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - #numberOfValues, - #referenceValue, - #binaryScaleFactor, - #decimalScaleFactor, - #bitsPerValue, - - # For encoding - - typeOfCompressionUsed, - targetCompressionRatio, - Nx, - Ny, - interpretationOfNumberOfPoints, - numberOfDataPoints, - scanningMode - - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.40000.def b/eccodes/definitions.save/grib2/template.7.40000.def deleted file mode 100644 index 33d9b4b8..00000000 --- a/eccodes/definitions.save/grib2/template.7.40000.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.7.40.def" diff --git a/eccodes/definitions.save/grib2/template.7.40010.def b/eccodes/definitions.save/grib2/template.7.40010.def deleted file mode 100644 index 96e332cd..00000000 --- a/eccodes/definitions.save/grib2/template.7.40010.def +++ /dev/null @@ -1,3 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -include "grib2/template.7.41.def" diff --git a/eccodes/definitions.save/grib2/template.7.41.def b/eccodes/definitions.save/grib2/template.7.41.def deleted file mode 100644 index bd59ee35..00000000 --- a/eccodes/definitions.save/grib2/template.7.41.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.41, Grid point data - png -meta codedValues data_png_packing( - section7Length, - offsetBeforeData, - offsetSection7, - numberOfValues, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - bitsPerValue, - - # For encoding - Nx, - Ny, - - interpretationOfNumberOfPoints, - numberOfDataPoints, - scanningMode - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.42.def b/eccodes/definitions.save/grib2/template.7.42.def deleted file mode 100644 index ff68e066..00000000 --- a/eccodes/definitions.save/grib2/template.7.42.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.42, Grid point data - CCSDS -meta codedValues data_ccsds_packing( - section7Length, - offsetBeforeData, - offsetSection7, - numberOfValues, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - bitsPerValue, - - numberOfDataPoints, - - ccsdsFlags, - ccsdsBlockSize, - ccsdsRsi - - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -# See ECC-711 -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.50.def b/eccodes/definitions.save/grib2/template.7.50.def deleted file mode 100644 index ce7f790a..00000000 --- a/eccodes/definitions.save/grib2/template.7.50.def +++ /dev/null @@ -1,40 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.50, Spectral data - simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) - -transient numberOfValues = ( J + 1 ) * ( J + 2 ) : no_copy ; -transient numberOfPackedValues = numberOfValues - 1 : no_copy; - -transient numberOfValues = ( J + 1 ) * ( J + 2 ) : no_copy ; -transient numberOfPackedValues = numberOfValues - 1 : no_copy; - - meta codedValues data_g2simple_packing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfPackedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor - ) : read_only; - - meta values data_g2shsimple_packing( - codedValues, - realPartOf00, - numberOfValues - ) ; - - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -alias x.packedValues = values; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib2/template.7.50000.def b/eccodes/definitions.save/grib2/template.7.50000.def deleted file mode 100644 index d1584d69..00000000 --- a/eccodes/definitions.save/grib2/template.7.50000.def +++ /dev/null @@ -1,109 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -constant GRIBEXShBugPresent = 0; -constant sphericalHarmonics = 1; -constant complexPacking = 1; - -meta codedValues data_g2complex_packing( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - J, - K, - M, - - J, - J, - J, - - numberOfValues - ): read_only; - - meta data.packedValues data_sh_packed( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - J, - K, - M, - - J, - J, - J - ) : read_only; - - meta data.unpackedValues data_sh_unpacked( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - J, - K, - M, - - J, - K, - M - ) : read_only; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib2/template.7.50001.def b/eccodes/definitions.save/grib2/template.7.50001.def deleted file mode 100644 index 178f3633..00000000 --- a/eccodes/definitions.save/grib2/template.7.50001.def +++ /dev/null @@ -1,100 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -if (bitsPerValue) { - meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; - meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; - meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; - meta countOfGroupLengths sum(groupLengths); -} -transient halfByte=0; - -position offsetBeforeData; - -if(bitmapPresent) { - meta codedValues data_g1second_order_general_extended_packing( - #simple_packing args - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - numberOfGroups, - numberOfSecondOrderPackedValues, - keyNotPresent, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ): read_only; - alias data.packedValues = codedValues; - - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; -} else { - meta values data_g1second_order_general_extended_packing( - #simple_packing args - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - numberOfGroups, - numberOfSecondOrderPackedValues, - keyNotPresent, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ) : dump; - alias codedValues=values; - alias data.packedValues = values; -} - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.50002.def b/eccodes/definitions.save/grib2/template.7.50002.def deleted file mode 100644 index c29b6137..00000000 --- a/eccodes/definitions.save/grib2/template.7.50002.def +++ /dev/null @@ -1,148 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -meta groupWidths unsigned_bits(widthOfWidths,numberOfGroups) : read_only; -meta groupLengths unsigned_bits(widthOfLengths,numberOfGroups) : read_only; -meta firstOrderValues unsigned_bits(widthOfFirstOrderValues,numberOfGroups) : read_only; -meta countOfGroupLengths sum(groupLengths); -transient halfByte=0; - -position offsetBeforeData; - -if(bitmapPresent) { - meta codedValues data_g1second_order_general_extended_packing( - #simple_packing args - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - numberOfGroups, - numberOfSecondOrderPackedValues, - keyNotPresent, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ): read_only; - alias data.packedValues = codedValues; - - if (boustrophedonicOrdering) { - meta preBitmapValues data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : read_only; - meta values data_apply_boustrophedonic(preBitmapValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - } else { - meta values data_apply_bitmap(codedValues,bitmap,missingValue,binaryScaleFactor) : dump; - } - -} else { - if (boustrophedonicOrdering) { - meta codedValues data_g1second_order_general_extended_packing( - #simple_packing args - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - numberOfGroups, - numberOfSecondOrderPackedValues, - keyNotPresent, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ) : dump; - - meta values data_apply_boustrophedonic(codedValues,numberOfRows,numberOfColumns,numberOfPoints,pl) : dump; - - } else { - meta values data_g1second_order_general_extended_packing( - #simple_packing args - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - #g1second_order_row_by_row args - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - numberOfGroups, - numberOfSecondOrderPackedValues, - keyNotPresent, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - - ) : dump; - alias codedValues=values; - } - alias data.packedValues = values; -} - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.51.def b/eccodes/definitions.save/grib2/template.7.51.def deleted file mode 100644 index 04522eb6..00000000 --- a/eccodes/definitions.save/grib2/template.7.51.def +++ /dev/null @@ -1,114 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.51, Spherical harmonics - complex packing -# Octets 6-(5+I*TS) : Data values from the unpacked subset -# (IEEE floating-point values on I octets) -# ???? data_values_from_the_unpacked_subset - -constant GRIBEXShBugPresent = 0; -constant sphericalHarmonics = 1; -constant complexPacking = 1; - -meta codedValues data_g2complex_packing( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM, - - numberOfValues - ): read_only; - - meta data.packedValues data_sh_packed( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - - meta data.unpackedValues data_sh_unpacked( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - - GRIBEXShBugPresent, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - subSetJ, - subSetK, - subSetM, - - pentagonalResolutionParameterJ, - pentagonalResolutionParameterK, - pentagonalResolutionParameterM - ) : read_only; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -template statistics "common/statistics_spectral.def"; diff --git a/eccodes/definitions.save/grib2/template.7.53.def b/eccodes/definitions.save/grib2/template.7.53.def deleted file mode 100644 index ad4642bb..00000000 --- a/eccodes/definitions.save/grib2/template.7.53.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.53, BiFourier coefficients - complex packing -# Spectral data for limited area models \u2013 complex packing - -constant biFourierCoefficients = 1; -constant complexPacking = 1; - -meta codedValues data_g2bifourier_packing( - section7Length, - offsetBeforeData, - offsetSection7, - - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - unpackedSubsetPrecision, - - laplacianOperatorIsSet, - laplacianOperator, - - biFourierTruncationType, - biFourierResolutionSubSetParameterN, - biFourierResolutionSubSetParameterM, - - biFourierResolutionParameterN, - biFourierResolutionParameterM, - biFourierSubTruncationType, - biFourierPackingModeForAxes, - biFourierMakeTemplate, - totalNumberOfValuesInUnpackedSubset, - - numberOfValues - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; diff --git a/eccodes/definitions.save/grib2/template.7.6.def b/eccodes/definitions.save/grib2/template.7.6.def deleted file mode 100644 index ef5c7101..00000000 --- a/eccodes/definitions.save/grib2/template.7.6.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.6, Grid point data - simple packing with preprocessing -# Octets 6-nn : Binary data values - binary string, with each (scaled) - -meta codedValues data_g2simple_packing_with_preprocessing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - typeOfPreProcessing, - preProcessingParameter - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.61.def b/eccodes/definitions.save/grib2/template.7.61.def deleted file mode 100644 index ef5c7101..00000000 --- a/eccodes/definitions.save/grib2/template.7.61.def +++ /dev/null @@ -1,32 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.6, Grid point data - simple packing with preprocessing -# Octets 6-nn : Binary data values - binary string, with each (scaled) - -meta codedValues data_g2simple_packing_with_preprocessing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor, - typeOfPreProcessing, - preProcessingParameter - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.7.second_order.def b/eccodes/definitions.save/grib2/template.7.second_order.def deleted file mode 100644 index 2e179670..00000000 --- a/eccodes/definitions.save/grib2/template.7.second_order.def +++ /dev/null @@ -1,56 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# TEMPLATE 7.2, Grid point data - complex packing - -position offsetBeforeData; - -constant orderOfSpatialDifferencing = 0; -constant numberOfOctetsExtraDescriptors = 0; - -meta codedValues data_g2second_order_packing( - section7Length, - offsetBeforeData, - offsetSection7, - unitsFactor, - unitsBias, - changingPrecision, - numberOfCodedValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - #g2second_order_packing - halfByte, - packingType, - grid_ieee, - precision, - widthOfFirstOrderValues, - firstOrderValues, - N1, - N2, - numberOfGroups, - codedNumberOfGroups, - numberOfSecondOrderPackedValues, - extraValues, - groupWidths, - widthOfWidths, - groupLengths, - widthOfLengths, - NL, - SPD, - widthOfSPD, - orderOfSPD, - numberOfPoints - -): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -alias data.packedValues = codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib2/template.second_order.def b/eccodes/definitions.save/grib2/template.second_order.def deleted file mode 100644 index f9bf1abc..00000000 --- a/eccodes/definitions.save/grib2/template.second_order.def +++ /dev/null @@ -1 +0,0 @@ -#TODO diff --git a/eccodes/definitions.save/grib2/tiggeLocalVersion.table b/eccodes/definitions.save/grib2/tiggeLocalVersion.table deleted file mode 100644 index c5bbcd23..00000000 --- a/eccodes/definitions.save/grib2/tiggeLocalVersion.table +++ /dev/null @@ -1 +0,0 @@ -1 TIGGE-LAM TIGGE LAM diff --git a/eccodes/definitions.save/grib2/tigge_name.def b/eccodes/definitions.save/grib2/tigge_name.def deleted file mode 100644 index 76fbb84b..00000000 --- a/eccodes/definitions.save/grib2/tigge_name.def +++ /dev/null @@ -1,45 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - - '10_meter_u_velocity' = { parameter = 165; } - '10_meter_v_velocity' = { parameter = 166; } - '10_metre_wind_gust_of_at_least_15_m/s' = { parameter = 131070; } - '10_metre_wind_gust_of_at_least_25_m/s' = { parameter = 131071; } - 'convective_available_potential_energy' = { parameter = 59; } - 'convective_inhibition' = { parameter = 228001; } - 'field_capacity' = { parameter = 228170; } - 'geopotential_height' = { parameter = 156; } - 'land_sea_mask' = { parameter = 172; } - 'maximum_wind_gust' = { parameter = 49; } - 'mean_sea_level_pressure' = { parameter = 151; } - 'orography' = { parameter = 228002; } - 'potential_temperature' = { parameter = 3; } - 'potential_vorticity' = { parameter = 60; } - 'sea_surface_temperature_anomaly' = { parameter = 171034; } - 'skin_temperature' = { parameter = 235; } - 'snow_depth_water_equivalent' = { parameter = 228141; } - 'snow_fall_water_equivalent' = { parameter = 228144; } - 'soil_moisture' = { parameter = 228039; } - 'soil_temperature' = { parameter = 228139; } - 'specific_humidity' = { parameter = 133; } - 'sunshine_duration' = { parameter = 189; } - 'surface_air_dew_point_temperature' = { parameter = 168; } - 'surface_air_maximum_temperature' = { parameter = 121; } - 'surface_air_minimum_temperature' = { parameter = 122; } - 'surface_air_temperature' = { parameter = 167; } - 'surface_pressure' = { parameter = 134; } - 'temperature' = { parameter = 130; } - 'time_integrated_outgoing_long_wave_radiation' = { parameter = 179; } - 'time_integrated_surface_latent_heat_flux' = { parameter = 147; } - 'time_integrated_surface_net_solar_radiation' = { parameter = 176; } - 'time_integrated_surface_net_thermal_radiation' = { parameter = 177; } - 'time_integrated_surface_sensible_heat_flux' = { parameter = 146; } - 'total_cloud_cover' = { parameter = 228164; } - 'total_column_water' = { parameter = 136; } - 'total_precipitation' = { parameter = 228228; } - 'total_precipitation_of_at_least_10_mm' = { parameter = 131062; } - 'total_precipitation_of_at_least_20_mm' = { parameter = 131063; } - 'u_velocity' = { parameter = 131; } - 'v_velocity' = { parameter = 132; } - 'wilting_point' = { parameter = 228171; } - 'default' = { parameter = 99999; } - diff --git a/eccodes/definitions.save/grib2/tigge_parameter.def b/eccodes/definitions.save/grib2/tigge_parameter.def deleted file mode 100644 index 3ded0bb1..00000000 --- a/eccodes/definitions.save/grib2/tigge_parameter.def +++ /dev/null @@ -1,395 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - -# 10_meter_u_velocity -'165' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; -} - -# 10_meter_v_velocity -'166' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 3; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; -} - -# 10_metre_wind_gust_of_at_least_15_m/s -'131070' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - productDefinitionTemplateNumber = 9; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - scaledValueOfLowerLimit = 15; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; -} - -# 10_metre_wind_gust_of_at_least_25_m/s -'131071' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - productDefinitionTemplateNumber = 9; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - scaledValueOfLowerLimit = 25; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; -} - -# convective_available_potential_energy -'59' = { - discipline = 0; - parameterCategory = 7; - parameterNumber = 6; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; -} - -# convective_inhibition -'228001' = { - discipline = 0; - parameterCategory = 7; - parameterNumber = 7; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; -} - -# field_capacity -'228170' = { - discipline = 2; - parameterCategory = 3; - parameterNumber = 12; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; -} - -# geopotential_height -'156' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 5; - typeOfFirstFixedSurface = 100; -} - -# land_sea_mask -'172' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 1; -} - -# maximum_wind_gust -'49' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; -} - -# mean_sea_level_pressure -'151' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 0; - typeOfFirstFixedSurface = 101; -} - -# orography -'228002' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 5; - typeOfFirstFixedSurface = 1; -} - -# potential_temperature -'3' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 6; - scaledValueOfFirstFixedSurface = 2; - typeOfFirstFixedSurface = 109; -} - -# potential_vorticity -'60' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 14; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 320; - typeOfFirstFixedSurface = 107; -} - -# sea_surface_temperature_anomaly -'171034' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 9; - typeOfFirstFixedSurface = 1; -} - -# skin_temperature -'235' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 17; - typeOfFirstFixedSurface = 1; -} - -# snow_depth_water_equivalent -'228141' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 60; - typeOfFirstFixedSurface = 1; -} - -# snow_fall_water_equivalent -'228144' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 53; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# soil_moisture -'228039' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 22; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; -} - -# soil_temperature -'228139' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; -} - -# specific_humidity -'133' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 0; - typeOfFirstFixedSurface = 100; -} - -# sunshine_duration -'189' = { - discipline = 0; - parameterCategory = 6; - parameterNumber = 24; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# surface_air_dew_point_temperature -'168' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 6; - typeOfFirstFixedSurface = 103; -} - -# surface_air_maximum_temperature -'121' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; -} - -# surface_air_minimum_temperature -'122' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 3; -} - -# surface_air_temperature -'167' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; -} - -# surface_pressure -'134' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 0; - typeOfFirstFixedSurface = 1; -} - -# temperature -'130' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 100; -} - -# time_integrated_outgoing_long_wave_radiation -'179' = { - discipline = 0; - parameterCategory = 5; - parameterNumber = 5; - typeOfFirstFixedSurface = 8; - typeOfStatisticalProcessing = 1; -} - -# time_integrated_surface_latent_heat_flux -'147' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 10; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# time_integrated_surface_net_solar_radiation -'176' = { - discipline = 0; - parameterCategory = 4; - parameterNumber = 9; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# time_integrated_surface_net_thermal_radiation -'177' = { - discipline = 0; - parameterCategory = 5; - parameterNumber = 5; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# time_integrated_surface_sensible_heat_flux -'146' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 11; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# total_cloud_cover -'228164' = { - discipline = 0; - parameterCategory = 6; - parameterNumber = 1; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; -} - -# total_column_water -'136' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 51; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; -} - -# total_precipitation -'228228' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# total_precipitation_of_at_least_10_mm -'131062' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - productDefinitionTemplateNumber = 9; - scaledValueOfLowerLimit = 10; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# total_precipitation_of_at_least_20_mm -'131063' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - productDefinitionTemplateNumber = 9; - scaledValueOfLowerLimit = 20; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; -} - -# u_velocity -'131' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 2; -} - -# unknown -'default' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; -} - -# v_velocity -'132' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 3; -} - -# wilting_point -'228171' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 26; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; -} diff --git a/eccodes/definitions.save/grib2/tigge_short_name.def b/eccodes/definitions.save/grib2/tigge_short_name.def deleted file mode 100644 index 42ef5c6e..00000000 --- a/eccodes/definitions.save/grib2/tigge_short_name.def +++ /dev/null @@ -1,44 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - - '10fgg25' = { parameter = 131071; } - '10fgg15' = { parameter = 131070; } - '10v' = { parameter = 166; } - '10u' = { parameter = 165; } - '10u' = { parameter = 49; } - 'ci' = { parameter = 228001; } - 'cap' = { parameter = 228170; } - 'cape' = { parameter = 59; } - 'gh' = { parameter = 156; } - 'lsm' = { parameter = 172; } - 'msl' = { parameter = 151; } - 'orog' = { parameter = 228002; } - 'sd' = { parameter = 228141; } - 'mx2t6' = { parameter = 121; } - '2d' = { parameter = 168; } - 'pv' = { parameter = 60; } - 'pt' = { parameter = 3; } - 'sf' = { parameter = 228144; } - 'skt' = { parameter = 235; } - 'sm' = { parameter = 228039; } - 'str' = { parameter = 177; } - 'sund' = { parameter = 189; } - 'mn2t6' = { parameter = 122; } - 'q' = { parameter = 133; } - 'ssta' = { parameter = 171034; } - '2t' = { parameter = 167; } - 'tcw' = { parameter = 136; } - 'slhf' = { parameter = 147; } - 'st' = { parameter = 228139; } - 'sshf' = { parameter = 146; } - 'sp' = { parameter = 134; } - 't' = { parameter = 130; } - 'tcc' = { parameter = 228164; } - 'ssr' = { parameter = 176; } - 'tpg10' = { parameter = 131062; } - 'tpg20' = { parameter = 131063; } - 'ttr' = { parameter = 179; } - 'tp' = { parameter = 228228; } - 'u' = { parameter = 131; } - 'v' = { parameter = 132; } - 'wilt' = { parameter = 228171; } - 'default' = { parameter = 99999; } diff --git a/eccodes/definitions.save/grib2/tigge_suiteName.table b/eccodes/definitions.save/grib2/tigge_suiteName.table deleted file mode 100644 index 09afac2c..00000000 --- a/eccodes/definitions.save/grib2/tigge_suiteName.table +++ /dev/null @@ -1,12 +0,0 @@ -0 unknown unknown -1 mogreps-mo-eua Unified model based LAM-EPS run by UK Met Office -2 sreps-aemet-eua Multi model based LAM-EPS run by AEMET (Spain) -3 srnwppeps-dwd-eua Poor man's LAM-EPS run by DWD (Germany) -4 cosmoleps-arpasimc-eu COSMO model based LAM-EPS run by ARPA-SIM (Italy) -6 aladinlaef-zamg-eu ALADIN model based LAM-EPS run by ZAMG (Austria) -7 cosmodeeps-dwd-eu COSMO model based LAM-EPS run by DWD (Germany) -9 glameps-hirlamcons-eu ALADIN and HIRLAM models based LAM-EPS run by HIRLAM and ALADIN consortium -10 aromeeps-mf-eu AROME model based LAM-EPS run by Meteo-France -11 hirlam-dmi-eu HIRLAM model based LAM-EPS run by DMI (Denmark) -12 aladinhuneps-omsz-eu ALADIN model based LAM-EPS run by OMSZ (Hungary) -13 pearp-mf-eu ARPEGE model based LAM-EPS run by Meteo-France diff --git a/eccodes/definitions.save/grib2/typeOfLevelConcept.def b/eccodes/definitions.save/grib2/typeOfLevelConcept.def deleted file mode 100644 index 550fe2d1..00000000 --- a/eccodes/definitions.save/grib2/typeOfLevelConcept.def +++ /dev/null @@ -1,49 +0,0 @@ -# Concept typeOfLevel -'surface' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} -'cloudBase' = {typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255;} -'cloudTop' = {typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255;} -'isothermZero' = {typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255;} -'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255;} -'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} -'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} -'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} -'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} -# Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name -'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} -'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} -'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa';} -'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} -'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} -'meanSea' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} -'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} -'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} -'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} -'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} -'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} -'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} -'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} -'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} -'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105;} -'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} -'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} -'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} -'thetaLayer' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=107;} -'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} -'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} -'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} -'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} -'soil' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} -'soilLayer' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} -# In the case of Generalized vertical height coordinates, NV must be 6 -'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} -'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} -'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} -'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} -'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} -'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} -'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} -'snow' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} -'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} -'seaIce' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} -'seaIceLayer' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} -'mixedLayerDepth' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} diff --git a/eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def b/eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def deleted file mode 100644 index 4a36af70..00000000 --- a/eccodes/definitions.save/grib2/typeOfUnstructuredGridConcept.def +++ /dev/null @@ -1,5 +0,0 @@ -'undefined' = { numberOfGridInReference = 0; } -'T grid' = { numberOfGridInReference = 1; } -'U grid' = { numberOfGridInReference = 2; } -'V grid' = { numberOfGridInReference = 3; } -'W grid' = { numberOfGridInReference = 4; } diff --git a/eccodes/definitions.save/grib2/units.def b/eccodes/definitions.save/grib2/units.def deleted file mode 100644 index 45c722ca..00000000 --- a/eccodes/definitions.save/grib2/units.def +++ /dev/null @@ -1,4140 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 1 ; - } -#Total precipitation of at least 5 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 5 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 40 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 40 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 60 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 60 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 80 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 80 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 100 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 150 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 200 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 200 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation of at least 300 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 3 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = -2 ; - } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Unbalanced component of temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Unbalanced component of logarithm of surface pressure -'~' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 31 ; - } -#Unbalanced component of divergence -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 45 ; - } -#Sea ice area fraction -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'K' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'~' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Specific rain water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Total column cloud liquid water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 69 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Total column cloud ice water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 70 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Surface solar radiation downwards -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net solar radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 8 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Ozone mass mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Surface net solar radiation, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Temperature of snow layer -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - } -#Specific cloud liquid water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'(0 - 1)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#Total precipitation of at least 25 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation of at least 50 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 50 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind gust of at least 10 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; - } -#Probability of temperature standardized anomaly greater than 1 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - } -#Probability of temperature standardized anomaly greater than 1.5 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = 15 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - } -#Probability of temperature standardized anomaly greater than 2 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 2 ; - } -#Probability of temperature standardized anomaly less than -1 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -1 ; - productDefinitionTemplateNumber = 9 ; - } -#Probability of temperature standardized anomaly less than -1.5 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = -15 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; - } -#Probability of temperature standardized anomaly less than -2 standard deviation -'%' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -2 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - } -#Mean sea water potential temperature in the upper 300 m -'K' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Mean sea water temperature in the upper 300 m -'K' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 160 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 300 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Sea surface practical salinity -'psu' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - scaledValueOfFirstFixedSurface = 1 ; - typeOfFirstFixedSurface = 169 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#2 metre specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Ammonium aerosol mass mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Nitrate aerosol optical depth at 550 nm -'dimensionless' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62004 ; - typeOfSizeInterval = 255 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - scaledValueOfFirstWavelength = 55 ; - } -#Ammonium aerosol optical depth at 550 nm -'dimensionless' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 102 ; - scaledValueOfFirstWavelength = 55 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62003 ; - scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; - } -#Ammonium aerosol mass mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 2 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; - } -#Dry deposition of ammonium aerosol -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 6 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Sedimentation of ammonium aerosol -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 11 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Wet deposition of ammonium aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 9 ; - is_aerosol = 1 ; - aerosolType = 62003 ; - } -#Wet deposition of ammonium aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 10 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - } -#Vertically integrated mass of ammonium aerosol -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 20 ; - parameterNumber = 1 ; - aerosolType = 62003 ; - is_aerosol = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#-10 degrees C isothermal level (atm) -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 26315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#0 degrees C isothermal level (atm) -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 20 ; - scaledValueOfFirstFixedSurface = 27315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#10 metre wind gust in the last 3 hours -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Maximum CAPE in the last 6 hours -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Maximum CAPES in the last 6 hours -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 19 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity with respect to water -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Liquid water content in snow pack -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 23 ; - } -#Height of convective cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Instantaneous total lightning flash density -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged total lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; - } -#Instantaneous cloud-to-ground lightning flash density -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Averaged cloud-to-ground lightning flash density in the last hour -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - lengthOfTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - } -#Unbalanced component of specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Averaged total lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 3 ; - } -#Averaged total lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; - } -#Averaged cloud-to-ground lightning flash density in the last 3 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; - typeOfSecondFixedSurface = 8 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Averaged cloud-to-ground lightning flash density in the last 6 hours -'km**-2 day**-1' = { - discipline = 0 ; - parameterCategory = 17 ; - parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil moisture top 20 cm -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil moisture top 100 cm -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Soil temperature top 100 cm -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } -#Convective precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mixed-layer CAPE in the lowest 50 hPa -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 50 hPa -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 5000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CAPE in the lowest 100 hPa -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mixed-layer CIN in the lowest 100 hPa -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 18 ; - scaledValueOfFirstFixedSurface = 10000 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Most-unstable CAPE -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Most-unstable CIN -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#Departure level of the most unstable parcel expressed as Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 17 ; - scaledValueOfFirstFixedSurface = missing() ; - scaleFactorOfFirstFixedSurface = missing() ; - } -#200 metre U wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#200 metre V wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#200 metre wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - } -#100 metre wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Mean temperature tendency due to short-wave radiation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'m s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'m s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'kg m**-3 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'kg m**-3 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Time integral of rain flux -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface eastward momentum flux -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Time integral of surface northward momentum flux -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } -#Cross sectional area of flow in channel -'m**2' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'m**3 s**-1 m**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'m**3 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'m**3' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'m**3' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'(0 - 1)' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'Integer' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Mean discharge in the last 6 hours -'m**3 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean discharge in the last 24 hours -'m**3 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth at elevation bands -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Latitude -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - } -#Longitude -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - } -#Latitude on T grid -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Longitude on T grid -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 1 ; - } -#Latitude on U grid -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Longitude on U grid -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 2 ; - } -#Latitude on V grid -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Longitude on V grid -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 3 ; - } -#Latitude on W grid -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Longitude on W grid -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 4 ; - } -#Latitude on F grid -'Degree N' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 1 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Longitude on F grid -'Degree E' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 2 ; - gridDefinitionTemplateNumber = 101 ; - numberOfGridInReference = 5 ; - } -#Total column graupel -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 74 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#2 metre relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Apparent temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'Degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Direct short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation in the last 6 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - lengthOfTimeRange = 6 ; - is_uerra = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Evaporation in the last 24 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 24 ; - is_uerra = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total precipitation in the last 6 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - is_efas = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total precipitation in the last 24 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - is_efas = 1 ; - lengthOfTimeRange = 24 ; - } -#Fraction of snow cover -'Proportion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 121 ; - } -#Clear air turbulence (CAT) -'m**2/3 s**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 29 ; - } -#Mountain wave turbulence (eddy dissipation rate) -'m**2/3 s**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 28 ; - } -#Soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'kg m**-2 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'m' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Percolation -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Code table 4.217' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Code table 4.218' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Code table 4.223' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Forest fire weather index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Fine fuel moisture code -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Duff moisture code -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Drought code -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Initial fire spread index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Fire buildup index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Fire daily severity rating -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Cloudy radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Keetch-Byram drought index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#Drought factor (as defined by the Australian forest service) -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Rate of spread (as defined by the Australian forest service) -'m s**-1' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Fire danger index (as defined by the Australian forest service) -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 15 ; - } -#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 16 ; - } -#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 17 ; - } -#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'%' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 18 ; - } -#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) -'J m**-2' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 19 ; - } -#Universal thermal climate index -'K' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Mean radiant temperature -'K' = { - discipline = 20 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Fraction of Malaria cases -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Malaria circumsporozoite protein ratio -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Plasmodium falciparum entomological inoculation rate -'Bites per day per person' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Human bite rate by anopheles vectors -'Bites per day per person' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Malaria immunity ratio -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Falciparum parasite ratio -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Detectable falciparum parasite ratio (after day 10) -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Anopheles vector to host ratio -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Anopheles vector density -'Number m**-2' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Fraction of malarial vector reproductive habitat -'Fraction' = { - discipline = 20 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Population density -'Person m**-2' = { - discipline = 20 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Virtual temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'Degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Mean zero-crossing wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 28 ; - } -#Significant height of combined wind waves and swell -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Peak wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Mean wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Eastward sea water velocity -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 160 ; - } -#Northward sea water velocity -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 160 ; - } -#Sea surface height -'m' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Depth of 20C isotherm -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 20 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 29315 ; - scaleFactorOfFirstFixedSurface = 2 ; - } -#Average salinity in the upper 300m -'psu' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; - typeOfFirstFixedSurface = 160 ; - scaledValueOfSecondFixedSurface = 300 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 0 ; - } -#Surface runoff -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Sea-ice thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre U wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#100 metre V wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Total precipitation of at least 10 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 20 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 20 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Stream function -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'K' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Skin temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'day' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'code table (4.201)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'code table (4.202)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'W m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'Proportion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth (deprecated) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Numeric' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'code table (4.203)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'code table (4.204)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'code table (4.205)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'m s**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'kg m**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'code table (4.206)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'code table (4.207)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'code table (4.208)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'code table (4.209)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'code table (4.210)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'code table (4.211)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Relative clear air turbulence (RCAT) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'CCITTIA5' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'(code table 4.215)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'(code table 4.216)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'%' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'kg**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'code table (4.212)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'kg m**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'m s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'s m**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'kg m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'kg m**-2 s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Code table 4.219' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'Numeric' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'K' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'m' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'K m**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'kg kg**-1' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Degree true' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'J' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre wind gust of at least 15 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#10 metre wind gust of at least 20 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - } -#Convective inhibition -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Total Precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib2/unstructuredGridConcept.def b/eccodes/definitions.save/grib2/unstructuredGridConcept.def deleted file mode 100644 index 49b90fd9..00000000 --- a/eccodes/definitions.save/grib2/unstructuredGridConcept.def +++ /dev/null @@ -1,5 +0,0 @@ -'undefined' = { numberOfGridUsed = 0; } -'ORCA2' = { numberOfGridUsed = 1; } -'ORCA1' = { numberOfGridUsed = 2; } -'ORCA025' = { numberOfGridUsed = 3; } -'ORCA12' = { numberOfGridUsed = 4; } diff --git a/eccodes/definitions.save/grib2/unstructuredGridSubtype.def b/eccodes/definitions.save/grib2/unstructuredGridSubtype.def deleted file mode 100644 index 6c68ab7d..00000000 --- a/eccodes/definitions.save/grib2/unstructuredGridSubtype.def +++ /dev/null @@ -1 +0,0 @@ -"unknown" = {dummy=0;} diff --git a/eccodes/definitions.save/grib2/unstructuredGridType.def b/eccodes/definitions.save/grib2/unstructuredGridType.def deleted file mode 100644 index 6c68ab7d..00000000 --- a/eccodes/definitions.save/grib2/unstructuredGridType.def +++ /dev/null @@ -1 +0,0 @@ -"unknown" = {dummy=0;} diff --git a/eccodes/definitions.save/grib2/unstructuredGridUUID.def b/eccodes/definitions.save/grib2/unstructuredGridUUID.def deleted file mode 100644 index 6c68ab7d..00000000 --- a/eccodes/definitions.save/grib2/unstructuredGridUUID.def +++ /dev/null @@ -1 +0,0 @@ -"unknown" = {dummy=0;} diff --git a/eccodes/definitions.save/grib3/boot.def b/eccodes/definitions.save/grib3/boot.def deleted file mode 100644 index 92a16c2c..00000000 --- a/eccodes/definitions.save/grib3/boot.def +++ /dev/null @@ -1,31 +0,0 @@ -# (C) Copyright 2005- 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. -# - -constant one = 1 : hidden ; -constant million = 1000000 : hidden; -constant grib3divider = 1000000; -alias extraDimensionPresent=zero; -alias is_tigge = zero; -alias is_s2s = zero; -transient angleSubdivisions=grib3divider; # micro degrees - -meta gts_header gts_header() : no_copy,hidden,read_only; -meta gts_TTAAii gts_header(20,6) : no_copy,hidden,read_only; -meta gts_CCCC gts_header(27,4) : no_copy,hidden,read_only; -meta gts_ddhh00 gts_header(32,6) : no_copy,hidden,read_only; - -transient missingValue = 9999; -constant ieeeFloats = 1 : edition_specific; -constant isHindcast = 0; - -include "grib3/section.00.def"; #Indicator Section - -template core "grib3/sections.def"; - -template section_11 "grib3/section.11.def"; #End Section diff --git a/eccodes/definitions.save/grib3/centre.table b/eccodes/definitions.save/grib3/centre.table deleted file mode 100644 index 85cde3fc..00000000 --- a/eccodes/definitions.save/grib3/centre.table +++ /dev/null @@ -1,150 +0,0 @@ -# COMMON CODE TABLE C-11: Originating/generating centres -0 0 WMO Secretariat -1 ammc Melbourne (WMC) -2 2 Melbourne (WMC) -4 rums Moscow (WMC) -5 5 Moscow (WMC) -7 kwbc US National Weather Service - NCEP (WMC) -8 8 US National Weather Service - NWSTG (WMC) -9 9 US National Weather Service - Other (WMC) -10 10 Cairo (RSMC/RAFC) -12 12 Dakar (RSMC/RAFC) -14 14 Nairobi (RSMC/RAFC) -16 16 Atananarivo (RSMC) -18 18 Tunis-Casablanca (RSMC) -20 20 Las Palmas (RAFC) -21 21 Algiers (RSMC) -22 22 Lagos (RSMC) -24 fapr Pretoria (RSMC) -26 26 Khabarovsk (RSMC) -28 28 New Delhi (RSMC/RAFC) -30 30 Novosibirsk (RSMC) -32 32 Tashkent (RSMC) -33 33 Jeddah (RSMC) -34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) -36 36 Bankok -37 37 Ulan Bator -38 babj Beijing (RSMC) -40 rksl Seoul -41 sabm Buenos Aires (RSMC/RAFC) -43 43 Brasilia (RSMC/RAFC) -45 45 Santiago -46 sbsj Brasilian Space Agency - INPE -51 51 Miami (RSMC/RAFC) -52 52 National Hurricane Center, Miami -53 53 Canadian Meteorological Service - Montreal (RSMC) -54 cwao Canadian Meteorological Service - Montreal (RSMC) -55 55 San Francisco -57 57 U.S. Air Force - Global Weather Center -58 fnmo US Navy - Fleet Numerical Oceanography Center -59 59 NOAA Forecast Systems Lab, Boulder CO -60 60 National Center for Atmospheric Research (NCAR), Boulder, CO -64 64 Honolulu -65 65 Darwin (RSMC) -67 67 Melbourne (RSMC) -69 nzkl Wellington (RSMC/RAFC) -74 egrr U.K. Met Office - Exeter -76 76 Moscow (RSMC/RAFC) -78 edzw Offenbach (RSMC) -80 cnmc Rome (RSMC) -82 eswi Norrkoping -84 lfpw French Weather Service - Toulouse -85 lfpw French Weather Service - Toulouse -86 efkl Helsinki -87 87 Belgrade -88 enmi Oslo -89 89 Prague -90 90 Episkopi -91 91 Ankara -92 92 Frankfurt/Main (RAFC) -93 93 London (WAFC) -94 ekmi Copenhagen -95 95 Rota -96 96 Athens -97 97 European Space Agency (ESA) -98 ecmf European Centre for Medium-Range Weather Forecasts -99 99 DeBilt, Netherlands -#100 to 109 Reserved for centres in Region I which are not in the list above -110 110 Hong-Kong -#111 to 133 Reserved for centres in Region II which are not in the list above -#134 to 153 Reserved for centres in Region I which are not listed above -#154 to 159 Reserved for centres in Region III which are not in the list above -160 160 US NOAA/NESDIS -# 161 to 185 Reserved for centres in Region IV which are not in the list above -# 186 to 198 Reserved for centres in Region I which are not listed above -# 199 to 209 Reserved for centres in Region V which are not in the list above -195 wiix Indonesia (NMC) -204 niwa National Institute of Water and Atmospheric Research (NIWA - New Zealand) -210 210 Frascati (ESA/ESRIN) -211 211 Lannion -212 212 Lisboa -213 213 Reykjavik -214 lemm INM -215 lssw Zurich -216 216 Service ARGOS Toulouse -217 217 Bratislava -218 habp Budapest -219 219 Ljubljana -220 220 Warsaw -221 221 Zagreb -222 222 Albania (NMC) -223 223 Armenia (NMC) -224 lowm Austria -227 ebum Belgium (NMC) -228 228 Bosnia and Herzegovina (NMC) -229 229 Bulgaria (NMC) -230 230 Cyprus (NMC) -231 231 Estonia (NMC) -232 232 Georgia (NMC) -233 eidb Dublin -234 234 Israel (NMC) -235 ingv INGV -239 crfc CERFAX -240 240 Malta (NMC) -241 241 Monaco -242 242 Romania (NMC) -244 vuwien VUWien -245 knmi KNMI -246 ifmk IfM-Kiel -247 hadc Hadley Centre -250 cosmo COnsortium for Small scale MOdelling (COSMO) -251 251 Meteorological Cooperation on Operational NWP (MetCoOp) -252 mpim Max Planck Institute for Meteorology (MPI-M) -254 eums EUMETSAT Operation Centre -255 consensus Consensus -256 256 Angola (NMC) -257 257 Benin (NMC) -258 258 Botswana (NMC) -259 259 Burkina Faso (NMC) -260 260 Burundi (NMC) -261 261 Cameroon (NMC) -262 262 Cabo Verde (NMC) -263 263 Central African Republic (NMC) -264 264 Chad (NMC) -265 265 Comoros (NMC) -266 266 Democratic Republic of the Congo (NMC) -267 267 Djibouti (NMC) -268 268 Eritrea (NMC) -269 269 Ethiopia (NMC) -270 270 Gabon (NMC) -271 271 Gambia (NMC) -272 272 Ghana (NMC) -273 273 Guinea (NMC) -274 274 Guinea-Bissau (NMC) -275 275 Lesotho (NMC) -276 276 Liberia (NMC) -277 277 Malawi (NMC) -278 278 Mali (NMC) -279 279 Mauritania (NMC) -280 280 Namibia (NMC) -281 281 Nigeria (NMC) -282 282 Rwanda (NMC) -283 283 Sao Tome and Principe (NMC) -284 284 Sierra Leone (NMC) -285 285 Somalia (NMC) -286 286 Sudan (NMC) -287 287 Swaziland (NMC) -288 288 Togo (NMC) -289 289 Zambia (NMC) - -65535 65535 Missing value diff --git a/eccodes/definitions.save/grib3/cfName.def b/eccodes/definitions.save/grib3/cfName.def deleted file mode 100644 index 6fc0e444..00000000 --- a/eccodes/definitions.save/grib3/cfName.def +++ /dev/null @@ -1,162 +0,0 @@ -# Automatically generated by ./create_param.pl, do not edit -#Geopotential -'geopotential' = { - discipline = 0 ; - parameterNumber = 4 ; - parameterCategory = 3 ; - } -#Temperature -'air_temperature' = { - discipline = 0 ; - parameterNumber = 0 ; - parameterCategory = 0 ; - } -#u-component of wind -'eastward_wind' = { - discipline = 0 ; - parameterNumber = 2 ; - parameterCategory = 2 ; - } -#v-component of wind -'northward_wind' = { - discipline = 0 ; - parameterNumber = 3 ; - parameterCategory = 2 ; - } -#Specific humidity -'specific_humidity' = { - discipline = 0 ; - parameterNumber = 0 ; - parameterCategory = 1 ; - } -#Surface pressure -'surface_air_pressure' = { - discipline = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 3 ; - } -#Vertical velocity (geometric) -'lagrangian_tendency_of_air_pressure' = { - discipline = 0 ; - parameterNumber = 8 ; - parameterCategory = 2 ; - } -#Relative vorticity -'atmosphere_relative_vorticity' = { - discipline = 0 ; - parameterNumber = 12 ; - parameterCategory = 2 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - discipline = 0 ; - parameterNumber = 20 ; - parameterCategory = 2 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - discipline = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - discipline = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - discipline = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - parameterCategory = 3 ; - } -#Relative divergence -'divergence_of_wind' = { - discipline = 0 ; - parameterNumber = 13 ; - parameterCategory = 2 ; - } -#Geopotential height -'geopotential_height' = { - discipline = 0 ; - parameterNumber = 5 ; - parameterCategory = 3 ; - } -#Relative humidity -'relative_humidity' = { - discipline = 0 ; - parameterNumber = 1 ; - parameterCategory = 1 ; - } -#Land-sea mask -'land_binary_mask' = { - discipline = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; - } -#Surface roughness -'surface_roughness_length' = { - discipline = 2 ; - parameterNumber = 1 ; - parameterCategory = 0 ; - } -#Surface solar radiation -'surface_net_upward_longwave_flux' = { - discipline = 0 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 4 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - discipline = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 5 ; - typeOfStatisticalProcessing = 1 ; - } -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - discipline = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - parameterCategory = 5 ; - typeOfStatisticalProcessing = 1 ; -} -#Surface solar radiation downwards -'surface_downwelling_shortwave_flux_in_air' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; -} diff --git a/eccodes/definitions.save/grib3/cfVarName.def b/eccodes/definitions.save/grib3/cfVarName.def deleted file mode 100644 index 538cd031..00000000 --- a/eccodes/definitions.save/grib3/cfVarName.def +++ /dev/null @@ -1,3009 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea-ice cover -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'rsn' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'sst' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'slt' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'fg10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#Specific rain water content -'crwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'cswc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Surface solar radiation downwards -'ssrd' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'strd' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Eastward turbulent surface stress -'ewss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'nsss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Ozone mass mixing ratio -'o3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Specific cloud liquid water content -'clwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'ciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'cc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'lsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth -'sde' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#10 metre wind gust in the last 3 hours -'fg310' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'rhw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'rhi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'asn' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'fspc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'fcpc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Height of convective cloud top -'hcct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Unbalanced component of specific humidity -'ucq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'ucclwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'ucciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Soil moisture top 20 cm -'sm20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Soil moisture top 100 cm -'sm100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - } -#Soil temperature top 20 cm -'st20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 100 cm -'st100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Water runoff and drainage -'ro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mean temperature tendency due to short-wave radiation -'mttswr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'mttlwr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'mttswrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'mttlwrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'mttpm' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'mqtpm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'mutpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'mvtpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'mumf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'mdmf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'mudr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'mddr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'mtpf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'mtdch' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Cross sectional area of flow in channel -'chcross' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'chside' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'dis' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'rivsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'fldsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'fldfrc' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'dslr' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'frost' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'woss' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'tpups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'smups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Snow depth at elevation bands -'sd_elev' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'gwus' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'gwls' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Surface air relative humidity -'r2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'aptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'hindex' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'ccl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'evarate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'eva' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'wdir10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'dirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'difswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'tidirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil temperature -'sot' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'dswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'uswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'dlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'sohf' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'percr' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'sod' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'adswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'auswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'adlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'perc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'clbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'csbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'p260530' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'p260531' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'p260532' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'p260533' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'p260534' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'p260535' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'p260536' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'p260537' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'p260538' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'p260539' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Cloudy radiance (with respect to wave number) -'p260550' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'p260551' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'p260552' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'p260553' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'p260554' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'p260555' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'p260556' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Virtual temperature -'vtmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'vptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'mwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Mean wave period -'mwp' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Surface runoff -'sro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'cape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'pv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'z' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'sp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'tcw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'vo' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'bld' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'sshf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'slhf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'d' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'u10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'v10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'t2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'d2m' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'lsm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'sr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'str' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'sund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'btmp' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'si10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Skin temperature -'skt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'lhtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'shtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'heatx' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'wcf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'mindpd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'snohf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'vapp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'ncpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'srweq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'snoc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'snol' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'snoag' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'absh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'ptype' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'iliqw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'clwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'icmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'rwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'snmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'maxrh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'maxah' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'asnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'pwcat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'grle' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'crain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'cfrzr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'cicep' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'csnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'cprat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'mdiv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'cpofp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'pevap' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'pevpr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'snowc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'frain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'rime' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'tcolr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tcols' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'lswp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'cwp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'twatp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'tsnowp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'tcwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'tprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'tsrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'lsprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'lssrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'tsrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'csrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'lssrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'tciwv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'rprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'sprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'fprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'iprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'uflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'vflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'ugust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'vgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'vwsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'mflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'ustm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'vstm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'cd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'fricv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'prmsl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'dist' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'alts' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'thick' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'presalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'denalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'wavh5' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'p260081' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'p260082' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'hpbl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'p260084' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'sdsgso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'nswrt' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'dswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'uswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'nswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'photar' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'nswrfcs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'dwuvr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'uviucs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'uvi' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'nlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'nlwrcs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'cice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'cwat' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'cdca' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'tmaxt' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'thunc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'cdcb' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'ceil' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'cdlyr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'cwork' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'cuefi' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'tcolw' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'tcoli' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'tcolc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'fice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'cdcimr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'suns' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'p260120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'kx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'kox' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'totalx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'sx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'hlcy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'ehlx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'lftx4' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'aerot' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'tozne' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'tcioz' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'bswid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'bref' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'brvel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'veril' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'lmaxbr' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'prec' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'acces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'aciod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'acradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'gdces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'gdiod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'gdradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'tiaccp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'tiacip' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'tiacrp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'volash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'icit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'icib' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'ici' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'turbt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'turbb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'turb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'tke' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'pblreg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'conti' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'contet' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'contt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'contb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'mxsalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'snfalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'p260163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'p260164' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'cat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'p260166' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'var190m0' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'ffldg' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'ffldro' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'rssc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'esct' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'swepon' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'bgrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'ssrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'cppop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'pposp' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'pop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'land' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'veg' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'watr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'evapt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'mterh' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'landu' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'gflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'mstav' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'sfexc' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'cnwat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'bmixl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'ccond' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'rsmin' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'rcs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'rct' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'rcsol' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'rcq' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'cisoilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'hflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'vsw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'vwiltm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'uplst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'uplsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'lowlsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'botlst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'soill' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'rlyrs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'smref' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'smdry' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'poros' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'liqvsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'voltso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'transo' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'voldec' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'direc' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'soilp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'vsosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'satosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'estp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'irrate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'ctoph' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'ctophqi' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'estu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'estv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'npixu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'solza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'raza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'rfl06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'rfl08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'rfl16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'rfl39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'atmdiv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'wvdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'dirpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'dirc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'spc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'wz' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'ist' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'dslm' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'al' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'ptend' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'hstdv' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'dpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'lapr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'rdsp1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'rdsp2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'rdsp3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'ta' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'presa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'absv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'absd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'vucsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'vvcsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'ucurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'vcurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'satd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'prate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'acpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'ssw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'s' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'uice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'vice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'snom' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'grad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'swrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'wmixe' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre Wind gust of at least 15 m/s -'fg10g15' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#10 metre Wind gust of at least 20 m/s -'fg10g20' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - } -#Convective inhibition -'cin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'orog' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow Fall water equivalent -'sf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Field capacity -'cap' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wilting point -'wilt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib3/dimension.0.table b/eccodes/definitions.save/grib3/dimension.0.table deleted file mode 100644 index a53ef534..00000000 --- a/eccodes/definitions.save/grib3/dimension.0.table +++ /dev/null @@ -1 +0,0 @@ -# Vegetation fraction diff --git a/eccodes/definitions.save/grib3/dimensionTableNumber.table b/eccodes/definitions.save/grib3/dimensionTableNumber.table deleted file mode 100644 index fcb28eee..00000000 --- a/eccodes/definitions.save/grib3/dimensionTableNumber.table +++ /dev/null @@ -1 +0,0 @@ -0 vegetation vegetation diff --git a/eccodes/definitions.save/grib3/dimensionType.table b/eccodes/definitions.save/grib3/dimensionType.table deleted file mode 100644 index a724b579..00000000 --- a/eccodes/definitions.save/grib3/dimensionType.table +++ /dev/null @@ -1,2 +0,0 @@ -0 layer layer -255 missing missing diff --git a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table deleted file mode 100644 index 923227c4..00000000 --- a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.82.table +++ /dev/null @@ -1,4 +0,0 @@ -0 0 Empty local section -82 82 standard operational SMHI -83 83 MATCH data (standard operational SMHI + extra MATCH keywords) -255 255 MISSING diff --git a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table deleted file mode 100644 index d0f5e6b6..00000000 --- a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.85.table +++ /dev/null @@ -1,3 +0,0 @@ -0 0 Empty local section -1 1 FA section is present -255 255 MISSING diff --git a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table b/eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table deleted file mode 100644 index c26fccce..00000000 --- a/eccodes/definitions.save/grib3/grib2LocalSectionNumber.98.table +++ /dev/null @@ -1,21 +0,0 @@ -0 0 Empty local section -1 1 MARS labelling -7 7 Sensitivity data -9 9 Singular vectors and ensemble perturbations -11 11 Supplementary data used by the analysis -14 14 Brightness temperature -15 15 Seasonal forecast data -16 16 Seasonal forecast monthly mean data -18 18 Multianalysis ensemble data -20 20 4D variational increments -21 21 Sensitive area predictions -24 24 Satellite Channel Data -25 25 4DVar model errors -26 26 MARS labelling or ensemble forecast data (with hindcast support) -28 28 COSMO local area EPS -30 30 Forecasting Systems with Variable Resolution -36 36 MARS labelling for long window 4DVar system -38 38 4D variational increments for long window 4DVar system -39 39 4DVar model errors for long window 4Dvar system -192 192 Multiple ECMWF local definitions -300 300 Multi-dimensional parameters diff --git a/eccodes/definitions.save/grib3/local.82.0.def b/eccodes/definitions.save/grib3/local.82.0.def deleted file mode 100644 index ac8d1784..00000000 --- a/eccodes/definitions.save/grib3/local.82.0.def +++ /dev/null @@ -1,28 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - -# -# This piece of definition is common to all SMHI definitions -# It is only accessed through "include" statement inside local.82.x.def -# - -codetable[1] marsClass "mars/eswi/class.table" : dump,lowercase; -codetable[1] marsType "mars/eswi/type.table" : dump,lowercase,string_type; -codetable[2] marsStream "mars/eswi/stream.table" : dump,lowercase,string_type; -ksec1expver[4] experimentVersionNumber = "0000" : dump; -# For now, Ensemble stuff is desactivated because it is not used yet -# instead we use a padding of 2 -#unsigned[1] perturbationNumber : dump; -#unsigned[1] numberOfForecastsInEnsemble : dump; -pad reservedNeedNotBePresent(2); -codetable[1] marsModel "mars/eswi/model.table" : dump,lowercase,string_type; - - - diff --git a/eccodes/definitions.save/grib3/local.82.82.def b/eccodes/definitions.save/grib3/local.82.82.def deleted file mode 100644 index 7cb9734c..00000000 --- a/eccodes/definitions.save/grib3/local.82.82.def +++ /dev/null @@ -1,16 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - -# base local definition -include "grib2/local.82.0.def"; - -unsigned[1] marsExperimentOffset = 0 : dump, long_type; - - diff --git a/eccodes/definitions.save/grib3/local.82.83.def b/eccodes/definitions.save/grib3/local.82.83.def deleted file mode 100644 index 2d7d37f6..00000000 --- a/eccodes/definitions.save/grib3/local.82.83.def +++ /dev/null @@ -1,22 +0,0 @@ -################################################# -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -################################# -### LOCAL SECTION DESCRIPTION ### -################################# - - -# base file: contains keywords always present -include "grib2/local.82.0.def"; - -# extra keywords specific to local definition 83 (MATCH) -codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; -codetable[1] matchTimeRepres "grib1/localConcepts/eswi/timerepres.table" : dump,long_type; -codetable[1] matchLandType "grib1/localConcepts/eswi/landtype.table" : dump,long_type; -codetable[2] matchAerosolBinNumber "grib1/localConcepts/eswi/aerosolbinnumber.table" : dump,long_type; -unsigned[2] meanSize : dump; - - diff --git a/eccodes/definitions.save/grib3/local.82.def b/eccodes/definitions.save/grib3/local.82.def deleted file mode 100644 index 2e38242c..00000000 --- a/eccodes/definitions.save/grib3/local.82.def +++ /dev/null @@ -1,22 +0,0 @@ -#local section ECMWF - -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; - -##################### -### MARS LABELING ### -##################### - -template mars_labeling "grib2/mars_labeling.82.def"; -template_nofail marsKeywords "mars/eswi/grib2.[stream:s].[type:s].def"; - -################### -### LS LABELING ### -################### - -template ls_labeling "grib2/ls_labeling.82.def"; - - -position offsetAfterLocalSection; - - diff --git a/eccodes/definitions.save/grib3/local.85.0.def b/eccodes/definitions.save/grib3/local.85.0.def deleted file mode 100644 index 193a2b1b..00000000 --- a/eccodes/definitions.save/grib3/local.85.0.def +++ /dev/null @@ -1 +0,0 @@ -label "empty section"; diff --git a/eccodes/definitions.save/grib3/local.85.1.def b/eccodes/definitions.save/grib3/local.85.1.def deleted file mode 100644 index c85e4d3c..00000000 --- a/eccodes/definitions.save/grib3/local.85.1.def +++ /dev/null @@ -1,29 +0,0 @@ -transient defaultFaFieldName = ""; -transient defaultFaLevelName = ""; -transient defaultFaModelName = ""; - -concept faFieldName (defaultFaFieldName,"faFieldName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept faLevelName (defaultFaLevelName,"faLevelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; -concept faModelName (defaultFaModelName,"faModelName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; - -# 0 = Accumulation or time range from last event -# 1 = Accumulation or time range from the start -transient LSTCUM = 0; - -# Scaling factor for levels -transient ZLMULT = 1.; -# Base value for levels -transient ZLBASE = 0.; - -# Name in FA -ascii[16] CLNOMA : dump; -# Encoding method -unsigned[8] INGRIB : dump; -# Spectral/grid-point -unsigned[8] LLCOSP : dump; -# Number of bits used to encode each value -unsigned[8] INBITS : dump; - -# FA scaling factor -signed[8] FMULTM = 1 : dump; -signed[8] FMULTE = 0 : dump; diff --git a/eccodes/definitions.save/grib3/local.85.2.def b/eccodes/definitions.save/grib3/local.85.2.def deleted file mode 100644 index 58fe1d88..00000000 --- a/eccodes/definitions.save/grib3/local.85.2.def +++ /dev/null @@ -1,5 +0,0 @@ -# Hollow grid-point fields used for AROME coupling - -include "grib2/local.85.1.def"; - -unsigned[8] ICPLSIZE : dump; diff --git a/eccodes/definitions.save/grib3/local.85.def b/eccodes/definitions.save/grib3/local.85.def deleted file mode 100644 index c6607956..00000000 --- a/eccodes/definitions.save/grib3/local.85.def +++ /dev/null @@ -1,3 +0,0 @@ -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; -position offsetAfterLocalSection; diff --git a/eccodes/definitions.save/grib3/local.98.0.def b/eccodes/definitions.save/grib3/local.98.0.def deleted file mode 100644 index e67dcb3f..00000000 --- a/eccodes/definitions.save/grib3/local.98.0.def +++ /dev/null @@ -1,3 +0,0 @@ -label "empty section"; - - diff --git a/eccodes/definitions.save/grib3/local.98.1.def b/eccodes/definitions.save/grib3/local.98.1.def deleted file mode 100644 index 4e4d2f9b..00000000 --- a/eccodes/definitions.save/grib3/local.98.1.def +++ /dev/null @@ -1,3 +0,0 @@ -label "local 98.1"; - - diff --git a/eccodes/definitions.save/grib3/local.98.11.def b/eccodes/definitions.save/grib3/local.98.11.def deleted file mode 100644 index 7c91145a..00000000 --- a/eccodes/definitions.save/grib3/local.98.11.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 11, Supplementary data used by the analysis - -unsigned[2] yearOfAnalysis = year : dump; -unsigned[1] monthOfAnalysis = month : dump; -unsigned[1] dayOfAnalysis = day : dump; -unsigned[1] hourOfAnalysis = hour : dump; -unsigned[1] minuteOfAnalysis = minute : dump; - -codetable[2] originatingCentreOfAnalysis 'grib1/0.table' = originatingCentre : dump,string_type; - -unsigned[2] subcentreOfAnalysis = subCentre : dump; - -constant secondsOfAnalysis = 0; - -meta dateOfAnalysis g2date(yearOfAnalysis,monthOfAnalysis,dayOfAnalysis) : dump; -meta timeOfAnalysis time(hourOfAnalysis,minuteOfAnalysis,secondsOfAnalysis) : dump; - -alias date = dateOfAnalysis; -alias time = timeOfAnalysis; diff --git a/eccodes/definitions.save/grib3/local.98.14.def b/eccodes/definitions.save/grib3/local.98.14.def deleted file mode 100644 index 68a8514e..00000000 --- a/eccodes/definitions.save/grib3/local.98.14.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 14, Brightness temperature - -unsigned[4] channelNumber : dump ; -alias mars.channel = channelNumber; diff --git a/eccodes/definitions.save/grib3/local.98.15.def b/eccodes/definitions.save/grib3/local.98.15.def deleted file mode 100644 index ec0d6172..00000000 --- a/eccodes/definitions.save/grib3/local.98.15.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- 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. -# - - -unsigned[2] systemNumber : dump ; -unsigned[2] methodNumber : dump ; -alias system=systemNumber; -alias method=methodNumber; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; - diff --git a/eccodes/definitions.save/grib3/local.98.16.def b/eccodes/definitions.save/grib3/local.98.16.def deleted file mode 100644 index 1b2da664..00000000 --- a/eccodes/definitions.save/grib3/local.98.16.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- 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. -# - - -unsigned[2] systemNumber : dump ; -unsigned[2] methodNumber : dump ; - -alias local.systemNumber=systemNumber; -alias local.methodNumber=methodNumber; - diff --git a/eccodes/definitions.save/grib3/local.98.18.def b/eccodes/definitions.save/grib3/local.98.18.def deleted file mode 100644 index 786005b2..00000000 --- a/eccodes/definitions.save/grib3/local.98.18.def +++ /dev/null @@ -1,26 +0,0 @@ -# (C) Copyright 2005- 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. -# - -codetable[1] dataOrigin "grib1/0.table" : dump; -alias mars.origin=dataOrigin; - -ascii[4] modelIdentifier : dump ; - -unsigned[1] consensusCount : dump ; - -consensus list(consensusCount) -{ - ascii[4] ccccIdentifiers : dump; -} - -alias local.dataOrigin=dataOrigin; -alias local.modelIdentifier=modelIdentifier; -alias local.consensusCount=consensusCount; - - diff --git a/eccodes/definitions.save/grib3/local.98.192.def b/eccodes/definitions.save/grib3/local.98.192.def deleted file mode 100644 index 6382bd8c..00000000 --- a/eccodes/definitions.save/grib3/local.98.192.def +++ /dev/null @@ -1,20 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# GRIB2 Local Definition 192: Multiple ECMWF local definitions - -unsigned[1] numberOfLocalDefinitions = 2 : dump; - -if (numberOfLocalDefinitions == 2 ) { - unsigned[1] subLocalDefinitionNumber1 = 1 : dump; - template subDefinitions1 "grib2/local.98.[subLocalDefinitionNumber1].def"; - - unsigned[1] subLocalDefinitionNumber2 = 24 : dump; - template subDefinitions2 "grib2/local.98.[subLocalDefinitionNumber2].def"; -} diff --git a/eccodes/definitions.save/grib3/local.98.20.def b/eccodes/definitions.save/grib3/local.98.20.def deleted file mode 100644 index 2df29e30..00000000 --- a/eccodes/definitions.save/grib3/local.98.20.def +++ /dev/null @@ -1,20 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; - -unsigned[1] totalNumberOfIterations : dump; -alias totalNumber=totalNumberOfIterations; - -alias iteration = iterationNumber; - -alias local.iterationNumber =iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; - diff --git a/eccodes/definitions.save/grib3/local.98.21.def b/eccodes/definitions.save/grib3/local.98.21.def deleted file mode 100644 index 2321c07b..00000000 --- a/eccodes/definitions.save/grib3/local.98.21.def +++ /dev/null @@ -1,42 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 21 - Sensitive area predictions - -unsigned[2] forecastOrSingularVectorNumber : dump; - -unsigned[2] numberOfIterations : dump; -unsigned[2] numberOfSingularVectorsComputed : dump; -unsigned[1] normAtInitialTime : dump; -unsigned[1] normAtFinalTime : dump; -unsigned[4] multiplicationFactorForLatLong : dump; -signed[4] northWestLatitudeOfVerficationArea : dump; -signed[4] northWestLongitudeOfVerficationArea : dump; -signed[4] southEastLatitudeOfVerficationArea : dump; -signed[4] southEastLongitudeOfVerficationArea : dump; -unsigned[4] accuracyMultipliedByFactor : dump; -unsigned[2] numberOfSingularVectorsEvolved : dump; - -# Ritz numbers: -signed[4] NINT_LOG10_RITZ : dump; -signed[4] NINT_RITZ_EXP : dump; - -unsigned[1] optimisationTime : dump; -alias mars.opttime = optimisationTime; - -unsigned[1] forecastLeadTime : dump; -alias mars.leadtime = forecastLeadTime; - -ascii[1] marsDomain : dump; -unsigned[2] methodNumber : dump; -unsigned[1] shapeOfVerificationArea : dump; - -# concept sensitiveAreaDomain(unknown,"sensitive_area_domain.def",conceptsMasterDir,conceptsLocalDir); -alias mars.domain = marsDomain; - diff --git a/eccodes/definitions.save/grib3/local.98.24.def b/eccodes/definitions.save/grib3/local.98.24.def deleted file mode 100644 index b3cd50d3..00000000 --- a/eccodes/definitions.save/grib3/local.98.24.def +++ /dev/null @@ -1,11 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[2] channelNumber : dump, can_be_missing; -alias mars.channel = channelNumber; diff --git a/eccodes/definitions.save/grib3/local.98.25.def b/eccodes/definitions.save/grib3/local.98.25.def deleted file mode 100644 index 7339ad9b..00000000 --- a/eccodes/definitions.save/grib3/local.98.25.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -alias totalNumber=numberOfComponents; -unsigned[1] modelErrorType : dump; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; - diff --git a/eccodes/definitions.save/grib3/local.98.26.def b/eccodes/definitions.save/grib3/local.98.26.def deleted file mode 100644 index 6f7a3f70..00000000 --- a/eccodes/definitions.save/grib3/local.98.26.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[4] referenceDate : dump ; -unsigned[4] climateDateFrom : dump; -unsigned[4] climateDateTo : dump ; - -alias local.referenceDate= referenceDate ; -alias local.climateDateFrom= climateDateFrom ; -alias local.climateDateTo= climateDateTo ; - - diff --git a/eccodes/definitions.save/grib3/local.98.28.def b/eccodes/definitions.save/grib3/local.98.28.def deleted file mode 100644 index fa52aa68..00000000 --- a/eccodes/definitions.save/grib3/local.98.28.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- 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. -# -# Definition 28 - COSMO local area EPS - -unsigned[4] baseDateEPS : dump; -unsigned[2] baseTimeEPS : dump; -unsigned[1] numberOfRepresentativeMember : dump; -unsigned[1] numberOfMembersInCluster : dump; -unsigned[1] totalInitialConditions : dump; - diff --git a/eccodes/definitions.save/grib3/local.98.30.def b/eccodes/definitions.save/grib3/local.98.30.def deleted file mode 100644 index 40a2e29f..00000000 --- a/eccodes/definitions.save/grib3/local.98.30.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[1] oceanAtmosphereCoupling : dump; - -unsigned[4] legBaseDate : dump ; -unsigned[2] legBaseTime : dump ; -unsigned[1] legNumber : dump ; -unsigned[4] referenceDate : dump ; -unsigned[4] climateDateFrom : dump ; -unsigned[4] climateDateTo : dump; - -alias local.oceanAtmosphereCoupling=oceanAtmosphereCoupling; -alias local.legBaseDate=legBaseDate ; -alias local.legBaseTime=legBaseTime ; -alias local.legNumber=legNumber ; -alias local.referenceDate=referenceDate ; -alias local.climateDateFrom=climateDateFrom ; -alias local.climateDateTo=climateDateTo; - -alias mars._leg_number = legNumber; - diff --git a/eccodes/definitions.save/grib3/local.98.300.def b/eccodes/definitions.save/grib3/local.98.300.def deleted file mode 100644 index c4d1f9b6..00000000 --- a/eccodes/definitions.save/grib3/local.98.300.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 300 - Multi-dimensional parameters - -codetable[1] dimensionType "grib2/dimensionType.table"=0; - -# The n-th dimension (out of total number of dimensions) -unsigned[2] dimensionNumber; -alias dimension=dimensionNumber; - -# Total number of dimensions -unsigned[2] totalNumberOfdimensions; - -alias extraDimensionPresent=one; - diff --git a/eccodes/definitions.save/grib3/local.98.36.def b/eccodes/definitions.save/grib3/local.98.36.def deleted file mode 100644 index cd148bdc..00000000 --- a/eccodes/definitions.save/grib3/local.98.36.def +++ /dev/null @@ -1,17 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 36 - MARS labelling for long window 4Dvar system (inspired by local def 1) - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; - -alias anoffset=offsetToEndOf4DvarWindow; - diff --git a/eccodes/definitions.save/grib3/local.98.38.def b/eccodes/definitions.save/grib3/local.98.38.def deleted file mode 100644 index e912bdb4..00000000 --- a/eccodes/definitions.save/grib3/local.98.38.def +++ /dev/null @@ -1,28 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 38 - 4D variational increments for long window 4Dvar system (inspired by local def 20) - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; - -unsigned[1] totalNumberOfIterations : dump; -alias totalNumber=totalNumberOfIterations; - -alias iteration = iterationNumber; - -alias local.iterationNumber =iterationNumber; -alias local.totalNumberOfIterations=totalNumberOfIterations; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; - -alias anoffset=offsetToEndOf4DvarWindow; - diff --git a/eccodes/definitions.save/grib3/local.98.39.def b/eccodes/definitions.save/grib3/local.98.39.def deleted file mode 100644 index 9be03b61..00000000 --- a/eccodes/definitions.save/grib3/local.98.39.def +++ /dev/null @@ -1,26 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Definition 39 - 4DVar model errors for long window 4Dvar system (inspired by local def 25) - -unsigned[1] componentIndex : dump; -alias mars.number=componentIndex; -unsigned[1] numberOfComponents : dump; -alias totalNumber=numberOfComponents; -unsigned[1] modelErrorType : dump; - -alias local.componentIndex=componentIndex; -alias local.numberOfComponents=numberOfComponents; -alias local.modelErrorType=modelErrorType; - -# Hours -unsigned[2] offsetToEndOf4DvarWindow : dump; -unsigned[2] lengthOf4DvarWindow : dump; -alias anoffset=offsetToEndOf4DvarWindow; - diff --git a/eccodes/definitions.save/grib3/local.98.500.def b/eccodes/definitions.save/grib3/local.98.500.def deleted file mode 100755 index 3fa593b5..00000000 --- a/eccodes/definitions.save/grib3/local.98.500.def +++ /dev/null @@ -1,53 +0,0 @@ -# mars labeling - -# Year -# (4 digits) -#unsigned[2] year ; - -# Month -#unsigned[1] month ; - -# Day -#unsigned[1] day ; - -# Hour -#unsigned[1] hour ; - -# Minute -#unsigned[1] minute ; - -# Second -#unsigned[1] second ; - -#meta dataDate g2date(year,month,day) : dump; -#alias mars.date=dataDate; - -#meta dataTime time(hour,minute,second) : dump; -#alias mars.time = dataTime; - -codetable[2] observationType "grib2/tables/local/ecmf/obstat.2.0.table"; - -codetable[2] codeType "grib2/tables/local/ecmf/obstat.3.0.table"; - -codetable[2] varno "grib2/tables/local/ecmf/obstat.varno.table"; - -codetable[2] reportType "grib2/tables/local/ecmf/obstat.reporttype.table"; - -unsigned[1] phase; - -codetable[2] platform "grib2/tables/local/ecmf/obstat.4.0.table"; - -codetable[2] instrument "grib2/tables/local/ecmf/obstat.5.0.table"; - -codetable[2] dataStream "grib2/tables/local/ecmf/obstat.6.0.table"; - -# include "grib2/template.4.horizontal.def" - -codetable[2] observationDiagnostic "grib2/tables/local/ecmf/obstat.9.0.table"; - -codetable[2] dataSelection "grib2/tables/local/ecmf/obstat.10.0.table"; - -unsigned[2] scanPosition; - -codetable[1] mask "grib2/tables/local/ecmf/obstat.8.0.table"; - diff --git a/eccodes/definitions.save/grib3/local.98.7.def b/eccodes/definitions.save/grib3/local.98.7.def deleted file mode 100644 index e321ef80..00000000 --- a/eccodes/definitions.save/grib3/local.98.7.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- 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. -# - -unsigned[1] iterationNumber : dump; -alias number=iterationNumber; -unsigned[1] numberOfForecastsInEnsemble : dump; -alias totalNumber=numberOfForecastsInEnsemble; -unsigned[1] sensitiveAreaDomain : dump; -unsigned[1] diagnosticNumber : dump; - -alias local.iterationNumber=iterationNumber; -alias local.numberOfForecastsInEnsemble=numberOfForecastsInEnsemble; -alias local.sensitiveAreaDomain=sensitiveAreaDomain; -alias local.diagnosticNumber=diagnosticNumber; - -alias iteration = iterationNumber; -alias diagnostic = diagnosticNumber; - diff --git a/eccodes/definitions.save/grib3/local.98.9.def b/eccodes/definitions.save/grib3/local.98.9.def deleted file mode 100644 index 0a288c2e..00000000 --- a/eccodes/definitions.save/grib3/local.98.9.def +++ /dev/null @@ -1,47 +0,0 @@ -# (C) Copyright 2005- 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. -# - - -unsigned[2] forecastOrSingularVectorNumber : dump; - -constant perturbedType = 60; - -if(type != perturbedType) -{ - unsigned[2] numberOfIterations : dump; - unsigned[2] numberOfSingularVectorsComputed : dump; - unsigned[1] normAtInitialTime : dump ; - unsigned[1] normAtFinalTime : dump ; - unsigned[4] multiplicationFactorForLatLong : dump; - signed[4] northWestLatitudeOfLPOArea : dump ; - signed[4] northWestLongitudeOfLPOArea : dump; - signed[4] southEastLatitudeOfLPOArea : dump; - signed[4] southEastLongitudeOfLPOArea : dump; - unsigned[4] accuracyMultipliedByFactor : dump; - unsigned[2] numberOfSingularVectorsEvolved : dump; - # Ritz numbers: - signed[4] NINT_LOG10_RITZ : dump ; - signed[4] NINT_RITZ_EXP : dump ; - - alias local.numberOfIterations= numberOfIterations; - alias local.numberOfSingularVectorsComputed= numberOfSingularVectorsComputed ; - alias local.normAtInitialTime= normAtInitialTime ; - alias local.normAtFinalTime= normAtFinalTime ; - alias local.multiplicationFactorForLatLong= multiplicationFactorForLatLong ; - alias local.northWestLatitudeOfLPOArea= northWestLatitudeOfLPOArea ; - alias local.northWestLongitudeOfLPOArea= northWestLongitudeOfLPOArea ; - alias local.southEastLatitudeOfLPOArea= southEastLatitudeOfLPOArea ; - alias local.southEastLongitudeOfLPOArea= southEastLongitudeOfLPOArea ; - alias local.accuracyMultipliedByFactor= accuracyMultipliedByFactor ; - alias local.numberOfSingularVectorsEvolved= numberOfSingularVectorsEvolved ; -# Ritz numbers: - alias local.NINT_LOG10_RITZ= NINT_LOG10_RITZ ; - alias local.NINT_RITZ_EXP= NINT_RITZ_EXP ; -} - diff --git a/eccodes/definitions.save/grib3/local.98.def b/eccodes/definitions.save/grib3/local.98.def deleted file mode 100644 index 1de5ff9b..00000000 --- a/eccodes/definitions.save/grib3/local.98.def +++ /dev/null @@ -1,33 +0,0 @@ -#local section ECMWF - -template mars_labeling "grib2/mars_labeling.def"; -transient productDefinitionTemplateNumberInternal=-1; - -meta localDefinitionNumber local_definition(grib2LocalSectionNumber, - productDefinitionTemplateNumber, - productDefinitionTemplateNumberInternal, - type, - stream, - class, - eps, - stepType, - derivedForecast); - -meta eps g2_eps(productDefinitionTemplateNumber, - type, - stream, - stepType, - derivedForecast); - -template localSection "grib2/local.98.[grib2LocalSectionNumber:l].def"; -position offsetAfterLocalSection; -transient addExtraLocalSection=0; -transient deleteExtraLocalSection=0; -#transient extraLocalSectionPresent=section2Length - offsetAfterLocalSection + offsetSection2 ; -meta extraLocalSectionPresent evaluate (section2Length - offsetAfterLocalSection + offsetSection2 > 0 ); -if ( ( extraLocalSectionPresent || addExtraLocalSection ) && ! deleteExtraLocalSection) { - # extra local section present - codetable[2] extraLocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; - template localSection "grib2/local.98.[extraLocalSectionNumber:l].def"; -} - diff --git a/eccodes/definitions.save/grib3/local.tigge.1.def b/eccodes/definitions.save/grib3/local.tigge.1.def deleted file mode 100644 index 65b23701..00000000 --- a/eccodes/definitions.save/grib3/local.tigge.1.def +++ /dev/null @@ -1,5 +0,0 @@ -# tigge LAM labeling - -codetable[2] suiteName "grib2/tigge_suiteName.table" : dump; -alias tiggeSuiteID = suiteName; - diff --git a/eccodes/definitions.save/grib3/local/1098/2.1.table b/eccodes/definitions.save/grib3/local/1098/2.1.table deleted file mode 100644 index d8d1c0d0..00000000 --- a/eccodes/definitions.save/grib3/local/1098/2.1.table +++ /dev/null @@ -1 +0,0 @@ -0 model Model info diff --git a/eccodes/definitions.save/grib3/local/1098/centres.table b/eccodes/definitions.save/grib3/local/1098/centres.table deleted file mode 100644 index 2f0d02a3..00000000 --- a/eccodes/definitions.save/grib3/local/1098/centres.table +++ /dev/null @@ -1,12 +0,0 @@ -0 eggr UK Met Office - UK -1 aemet AEMET- Spain HIRLAM -2 arpasim ARPA-SIM - Italy COSMO -3 metno Met.NO -4 zamg ZAMG / Austria -5 dwd DWD - Germany SRNWP -6 dnmi DNMI/Univ Oslo - Norway HIRLAM ALADIN -7 meteofrance Meteo-France / France -8 dmi DMI -9 hungary Hungary -10 czech Czech Republic -11 croatia Croatia diff --git a/eccodes/definitions.save/grib3/local/1098/models.table b/eccodes/definitions.save/grib3/local/1098/models.table deleted file mode 100644 index 70e03f70..00000000 --- a/eccodes/definitions.save/grib3/local/1098/models.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 MOGREPS -1 1 SREPS -2 2 SRNWP PEPS -3 3 COSMO-LEPS -4 4 NORLAMEPS -5 5 ALADIN LAEF -6 6 COSMO DE EPS -7 7 COSMO-SREPS -8 8 GLAMEPS -9 9 PEARCE -10 10 DMI - HIRLAM -11 11 OMSZ ALADIN EPS - diff --git a/eccodes/definitions.save/grib3/local/1098/template.2.0.def b/eccodes/definitions.save/grib3/local/1098/template.2.0.def deleted file mode 100644 index 68e64f33..00000000 --- a/eccodes/definitions.save/grib3/local/1098/template.2.0.def +++ /dev/null @@ -1,19 +0,0 @@ -codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; -codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; -concept tiggeLAMName { - "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} - "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} - "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} - "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} - "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} - "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} - "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} - "COSMO-SREPS-BO-EU" = {tiggeCentre=2;tiggeModel=7;} - "GLAMEPS" = {tiggeCentre=6;tiggeModel=8;} - "PEARCE" = {tiggeCentre=7;tiggeModel=9;} - "DMI- HIRLAM" = {tiggeCentre=8;tiggeModel=10;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=9;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} -} - diff --git a/eccodes/definitions.save/grib3/local/1098/template.2.0.def~ b/eccodes/definitions.save/grib3/local/1098/template.2.0.def~ deleted file mode 100644 index b8781760..00000000 --- a/eccodes/definitions.save/grib3/local/1098/template.2.0.def~ +++ /dev/null @@ -1,19 +0,0 @@ -codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; -codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; -concept tiggeLAMName { - "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} - "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} - "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} - "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} - "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} - "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} - "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} - "COSMO-SREPS-BO-EU" = {tiggeCentre=6;tiggeModel=7;} - "GLAMEPS" = {tiggeCentre=7;tiggeModel=8;} - "PEARCE" = {tiggeCentre=8;tiggeModel=9;} - "DMI- HIRLAM" = {tiggeCentre=9;tiggeModel=10;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=12;tiggeModel=11;} -} - diff --git a/eccodes/definitions.save/grib3/local/2.0.table b/eccodes/definitions.save/grib3/local/2.0.table deleted file mode 100644 index 91bdf6d3..00000000 --- a/eccodes/definitions.save/grib3/local/2.0.table +++ /dev/null @@ -1,96 +0,0 @@ -# Code table 2.0: Identification of centres for local section 2 -0 0 Absent -1 ammc Melbourne (WMC) -2 2 Melbourne (WMC) -4 rums Moscow (WMC) -5 5 Moscow (WMC) -7 kwbc US National Weather Service - NCEP (WMC) -8 8 US National Weather Service - NWSTG (WMC) -9 9 US National Weather Service - Other (WMC) -10 10 Cairo (RSMC/RAFC) -12 12 Dakar (RSMC/RAFC) -14 14 Nairobi (RSMC/RAFC) -16 16 Atananarivo (RSMC) -18 18 Tunis-Casablanca (RSMC) -20 20 Las Palmas (RAFC) -21 21 Algiers (RSMC) -22 22 Lagos (RSMC) -24 fapr Pretoria (RSMC) -26 26 Khabarovsk (RSMC) -28 28 New Delhi (RSMC/RAFC) -30 30 Novosibirsk (RSMC) -32 32 Tashkent (RSMC) -33 33 Jeddah (RSMC) -34 rjtd Japanese Meteorological Agency - Tokyo (RSMC) -36 36 Bankok -37 37 Ulan Bator -38 babj Beijing (RSMC) -40 rksl Seoul -41 sabm Buenos Aires (RSMC/RAFC) -43 43 Brasilia (RSMC/RAFC) -45 45 Santiago -46 sbsj Brasilian Space Agency - INPE -51 51 Miami (RSMC/RAFC) -52 52 National Hurricane Center, Miami -53 53 Canadian Meteorological Service - Montreal (RSMC) -54 cwao Canadian Meteorological Service - Montreal (RSMC) -55 55 San Francisco -57 57 U.S. Air Force - Global Weather Center -58 fnmo US Navy - Fleet Numerical Oceanography Center -59 59 NOAA Forecast Systems Lab, Boulder CO -60 60 National Center for Atmospheric Research (NCAR), Boulder, CO -64 64 Honolulu -65 65 Darwin (RSMC) -67 67 Melbourne (RSMC) -69 nzkl Wellington (RSMC/RAFC) -74 egrr U.K. Met Office - Exeter -76 76 Moscow (RSMC/RAFC) -78 edzw Offenbach (RSMC) -80 cnmc Rome (RSMC) -82 eswi Norrkoping -84 lfpw French Weather Service - Toulouse -85 lfpw French Weather Service - Toulouse -86 86 Helsinki -87 87 Belgrade -88 enmi Oslo -89 89 Prague -90 90 Episkopi -91 91 Ankara -92 92 Frankfurt/Main (RAFC) -93 93 London (WAFC) -94 ekmi Copenhagen -95 95 Rota -96 96 Athens -97 97 European Space Agency (ESA) -98 ecmf European Centre for Medium-Range Weather Forecasts -99 99 DeBilt, Netherlands -#100 to 109 Reserved for centres in Region I which are not in the list above -110 110 Hong-Kong -#111 to 133 Reserved for centres in Region II which are not in the list above -#134 to 153 Reserved for centres in Region I which are not listed above -#154 to 159 Reserved for centres in Region III which are not in the list above -160 160 US NOAA/NESDIS -# 161 to 185 Reserved for centres in Region IV which are not in the list above -# 186 to 198 Reserved for centres in Region I which are not listed above -# 199 to 209 Reserved for centres in Region V which are not in the list above -195 wiix Indonesia (NMC) -204 204 National Institute of Water and Atmospheric Research (NIWA - New Zealand) -210 210 Frascati (ESA/ESRIN) -211 211 Lannion -212 212 Lisboa -213 213 Reykjavik -214 lemm INM -215 lssw Zurich -216 216 Service ARGOS Toulouse -218 habp Budapest -224 lowm Austria -227 ebum Belgium (NMC) -233 eidb Dublin -235 ingv INGV -239 crfc CERFAX -246 ifmk IfM-Kiel -247 hadc Hadley Centre -250 cosmo COnsortium for Small scale MOdelling (COSMO) -251 251 Meteorological Cooperation on Operational NWP (MetCoOp) -254 eums EUMETSAT Operation Centre -1098 tigge TIGGE CENTRES diff --git a/eccodes/definitions.save/grib3/local/edzw/2.0.3.table b/eccodes/definitions.save/grib3/local/edzw/2.0.3.table deleted file mode 100755 index efa3bd13..00000000 --- a/eccodes/definitions.save/grib3/local/edzw/2.0.3.table +++ /dev/null @@ -1,130 +0,0 @@ -1 p P Pressure Pa -2 msl MSL Mean sea level pressure Pa -3 3 None Pressure tendency Pa s**-1 -4 pv PV Potential vorticity K m**2 kg**-1 s**-1 -5 5 None ICAO Standard Atmosphere reference height m -6 z Z Geopotential m**2 s**-2 -7 gh GH Geopotential height gpm -8 h H Geometrical height m -9 9 None Standard deviation of height m -10 tco3 TCO3 Total (column) ozone Dobson (kg m**-2) -11 t T Temperature K -12 12 None Virtual temperature K -13 13 None Potential temperature K -14 14 None Pseudo-adiabatic potential temperature K -15 15 None Maximum temperature K -16 16 None Minimum temperature K -17 17 None Dew-point temperature K -18 18 None Dew-point depression (or deficit) K -19 19 None Lapse rate K s**-1 -20 20 None Visibility m -21 21 None Radar spectra (1) - -22 22 None Radar spectra (2) - -23 23 None Radar spectra (3) - -24 24 None Parcel lifted index (to 500 hPa) K -25 25 None Temperature anomaly K -26 26 None Pressure anomaly Pa -27 27 None Geopotential height anomaly gpm -28 28 None Wave spectra (1) - -29 29 None Wave spectra (2) - -30 30 None Wave spectra (3) - -31 31 None Wind direction Degree true -32 32 None Wind speed m s**-1 -33 u U U-component of wind m s**-1 -34 v V V-component of wind m s**-1 -35 35 None Stream Function m**2 s**-1 -36 36 None Velocity Potential m**2 s**-1 -37 37 None Montgomery stream Function m**2 s**-1 -38 38 None Sigma coordinate vertical velocity s**-1 -39 w W Vertical velocity Pa s**-1 -40 40 None Vertical velocity m s**-1 -41 41 None Absolute vorticity s**-1 -42 42 None Absolute divergence s**-1 -43 vo VO Relative vorticity s**-1 -44 d D Relative divergence s**-1 -45 45 None Vertical u-component shear s**-1 -46 46 None Vertical v-component shear s**-1 -47 47 None Direction of current Degree true -48 48 None Speed of current m s**-1 -49 49 None U-component of current m s**-1 -50 50 None V-component of current m s**-1 -51 q Q Specific humidity kg kg**-1 -52 r R Relative humidity % -53 53 None Humidity mixing ratio kg m**-2 -54 54 None Precipitable water kg m**-2 -55 55 None Vapour pressure Pa -56 56 None Saturation deficit Pa -57 e E Evaporation kg m**-2 -58 ciwc CIWC Cloud ice kg m**-2 -59 59 None Precipitation rate kg m**-2 s**-1 -60 60 None Thunderstorm probability % -61 tp TP Total precipitation kg m**-2 -62 62 LSP Large scale precipitation kg m**-2 -63 63 None Convective precipitation (water) kg m**-2 -64 64 None Snow fall rate water equivalent kg m**-2 s**-1 -65 sf SF Water equivalentof accumulated snow depth kg m**-2 -66 sd SD Snow depth m (of water equivalent) -67 67 None Mixed layer depth m -68 68 None Transient thermocline depth m -69 69 None Main thermocline depth m -70 70 None Main thermocline anomaly m -71 tcc TCC Total cloud cover % -72 ccc CCC Convective cloud cover % -73 lcc LCC Low cloud cover % -74 mcc MCC Medium cloud cover % -75 hcc HCC High cloud cover % -76 clwc CLWC Cloud liquid water content kg kg**-1 -77 77 None Best lifted index (to 500 hPa) K -78 csf CSF Convective snow-fall kg m**-2 -79 lsf LSF Large scale snow-fall kg m**-2 -80 80 None Water temperature K -81 lsm LSM Land cover (1=land, 0=sea) (0 - 1) -82 82 None Deviation of sea-level from mean m -83 sr SR Surface roughness m -84 al AL Albedo - -85 st ST Surface temperature of soil K -86 ssw SSW Soil moisture content kg m**-2 -87 veg VEG Percentage of vegetation % -88 88 None Salinity kg kg**-1 -89 89 None Density kg m**-3 -90 ro RO Water run-off kg m**-2 -91 91 None Ice cover (1=land, 0=sea) (0 - 1) -92 92 None Ice thickness m -93 93 None Direction of ice drift Degree true -94 94 None Speed of ice drift m s*-1 -95 95 None U-component of ice drift m s**-1 -96 96 None V-component of ice drift m s**-1 -97 97 None Ice growth rate m s**-1 -98 98 None Ice divergence s**-1 -99 99 None Snow melt kg m**-2 -100 swh SWH Signific.height,combined wind waves+swell m -101 mdww MDWW Mean direction of wind waves Degree true -102 shww SHWW Significant height of wind waves m -103 mpww MPWW Mean period of wind waves s -104 104 None Direction of swell waves Degree true -105 105 None Significant height of swell waves m -106 106 None Mean period of swell waves s -107 mdps MDPS Mean direction of primary swell Degree true -108 mpps MPPS Mean period of primary swell s -109 109 None Secondary wave direction Degree true -110 110 None Secondary wave period s -111 111 None Net short-wave radiation flux (surface) W m**-2 -112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 -114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 -115 115 None Long-wave radiation flux W m**-2 -116 116 None Short-wave radiation flux W m**-2 -117 117 None Global radiation flux W m**-2 -118 118 None Brightness temperature K -119 119 None Radiance (with respect to wave number) W m**-1 sr**-1 -120 120 None Radiance (with respect to wave length) W m**-1 sr**-1 -121 slhf SLHF (surface) Latent heat flux W m**-2 -122 sshf SSHF (surface) Sensible heat flux W m**-2 -123 bld BLD Boundary layer dissipation W m**-2 -124 124 None Momentum flux, u-component N m**-2 -125 125 None Momentum flux, v-component N m**-2 -126 126 None Wind mixing energy J -127 127 None Image data - -148 lsm LSM LandSeaMask -160 160 Unknown -255 - - Indicates a missing value - diff --git a/eccodes/definitions.save/grib3/local/edzw/3.table b/eccodes/definitions.save/grib3/local/edzw/3.table deleted file mode 100755 index 7c4cc88b..00000000 --- a/eccodes/definitions.save/grib3/local/edzw/3.table +++ /dev/null @@ -1,51 +0,0 @@ -# CODE TABLE 3 Fixed levels or layers for wich the data are included -0 0 Reserved -1 G Surface (of the Earth, which includes sea surface) -2 CB Cloud base level -3 CT Cloud top level -4 IZ 0 deg (C) isotherm level -5 AC Adiabatic condensation level (parcel lifted from surface) -6 WM Maximum wind speed level -7 TP Tropopause level -8 AU Nominal top of atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level Temperature in 1/100 K -# 21-99 Reserved -100 P Isobaric level pressure in hectoPascals (hPa) (2 octets) -101 PI Layer between two isobaric levels pressure of top (kPa) pressure of bottom (kPa) -102 MSL Mean sea level 0 0 -103 HMSL Fixed height level height above mean sea level (MSL) in meters -104 HMSLI Layer between two specfied altitudes above mean sea level - altitude of top, altitude of bottom (hm) -105 HG Fixed height above ground height in meters (2 octets) -106 HGI Layer between two height levels above ground - height of top, height of bottom (hm) -107 SIG Sigma level sigma value in 1/10000 (2 octets) -108 SIGI Layer between two sigma levels sigma value at top in 1/100 sigma value at bottom in 1/100 -109 H Hybrid level level number (2 octets) -110 HI Layer between two hybrid levels level number of top level number of bottom -111 B Depth below land surface centimeters (2 octets) -112 S Layer between two depths below land surface - depth of upper surface, depth of lower surface (cm) -113 pt Isentropic (theta) level Potential Temp. degrees K (2 octets) -114 114 Layer between two isentropic levels 475K minus theta of top in Deg. K 475K minus theta of bottom in Deg. K -115 115 Level at specified pressure difference from ground to level hPa (2 octets) -116 116 Layer between two levels at specified pressure differences from ground to levels pressure difference from ground to top level hPa pressure difference from ground to bottom level hPa -117 pv Potential vorticity surface 10-9 K m2 kg-1 s-1 -# 118 Reserved -119 119 ETA level: ETA value in 1/10000 (2 octets) -120 120 Layer between two ETA levels: ETA value at top of layer in 1/100, ETA value at bottom of layer in 1/100 -121 121 Layer between two isobaric surfaces (high precision) 1100 hPa minus pressure of top, in hPa 1100 hPa minus pressure of bottom, in hPa -# 122-124 Reserved -125 125 Height level above ground (high precision) centimeters (2 octets) -# 126-127 Reserved -128 128 Layer between two sigma levels (high precision) 1.1 minus sigma of top, in 1/1000 of sigma 1.1 minus sigma of bottom, in 1/1000 of sigma -# 129-140 Reserved -141 141 Layer between two isobaric surfaces (mixed precision) pressure of top, in kPa 1100hPa minus pressure of bottom, in hPa -# 142-159 Reserved -160 dp Depth below sea level meters (2 octets) -# 161-199Reserved -200 R Entire atmosphere considered as a single layer 0 (2 octets) -201 201 Entire ocean considered as a single layer 0 (2 octets) -210 pl Isobaric surface (Pa) (ECMWF extension) -211 wv Ocean wave level (ECMWF extension) -212 oml Ocean mixed layer (ECMWF extension) -222 SYN Synthetic Satellite Images (DWD extension) diff --git a/eccodes/definitions.save/grib3/local/edzw/5.table b/eccodes/definitions.save/grib3/local/edzw/5.table deleted file mode 100755 index 7f7c99d4..00000000 --- a/eccodes/definitions.save/grib3/local/edzw/5.table +++ /dev/null @@ -1,24 +0,0 @@ -# CODE TABLE 5 Time Range Indicator -0 0 Forecast product valid at reference time + P1 (P1>0) -1 1 Initialized analysis product for reference time (P1=0). -2 2 Product with a valid time ranging between reference time + P1 and reference time + P2 -3 3 Average (reference time + P1 to reference time + P2) -4 4 Accumulation (reference time + P1 to reference time + P2) product considered valid at reference time + P2 -5 5 Difference (reference time + P2 minus reference time + P1) product considered valid at reference time + P2 -6 6 Average (reference time - P1 to reference time - P2) -7 7 Average (reference time - P1 to reference time + P2) -10 10 P1 occupies octets 19 and 20; product valid at reference time + P1 -11 11 local use: Initialized forecast (P1 > 0) for IDFI -13 13 local use: Fields from analyses valid at reference time for P1 = 0 -14 14 local use: IFS forecast interpolated to GME triangular grid -51 51 Climatological Mean Value: -113 113 Average of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -114 114 Accumulation of N forecasts (or initialized analyses); each product has forecast period of P1 (P1=0 for initialized analyses); products have reference times at intervals of P2, beginning at the given reference time. -115 115 Average of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining forecasts follow at intervals of P2. -116 116 Accumulation of N forecasts, all with the same reference time; the first has a forecast period of P1, the remaining follow at intervals of P2. -117 117 Average of N forecasts, the first has a period of P1, the subsequent ones have forecast periods reduced from the previous one by an interval of P2; the reference time for the first is given in octets 13- 17, the subsequent ones have reference times increased from the previous one by an interval of P2. Thus all the forecasts have the same valid time, given by the initial reference time + P1. -118 118 Temporal variance, or covariance, of N initialized analyses; each product has forecast period P1=0; products have reference times at intervals of P2, beginning at the given reference time. -119 119 Standard deviation of N forecasts, all with the same reference time with respect to the time average of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 -123 123 Average of N uninitialized analyses, starting at the reference time, at intervals of P2. -124 124 Accumulation of N uninitialized analyses, starting at the reference time, at intervals of P2. -125 125 Standard deviation of N forecasts, all with the same reference time with respect to time average of the time tendency of forecasts; the first forecast has a forecast period of P1, the remaining forecasts follow at intervals of P2 diff --git a/eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table b/eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table deleted file mode 100755 index f2ecd9af..00000000 --- a/eccodes/definitions.save/grib3/local/edzw/generatingProcessIdentifier.table +++ /dev/null @@ -1,86 +0,0 @@ -025 AN2MO AN2MO -033 ANALY ANALY -034 WAMIT WAMIT -036 GPEPS GPEPS -037 KWGFS KWGFS -038 KWGF5 KWGF5 -044 B106V B106V -049 S106V S106V -053 AN1MO AN1MO -058 EM3AN EM3AN -059 EM3MO EM3MO -061 ECMFM ECMFM -064 KWBCM KWBCM -065 LFPWM LFPWM -068 KWB01 KWB01 -069 SGGLO SGGLO -074 B106A B106A -075 SGMED SGMED -079 S106A S106A -080 ECENS ECENS -081 NORMW NORMW -084 NORM3 NORM3 -085 SGNAT SGNAT -086 SGESH SGESH -087 SGBAL SGBAL -088 MOMI3 MOMI3 -094 P106A P106A -111 DM3AN DM3AN -112 DM3MO DM3MO -115 DM4AN DM4AN -116 DM4MO DM4MO -121 WAFTF WAFTF -122 WAFSZ WAFSZ -123 KWB02 KWB02 -124 KWB03 KWB03 -126 KWB04 KWB04 -127 NAEGR NAEGR -131 LM1AN LM1AN -132 LM1MO LM1MO -134 LM2AN LM2AN -135 LM2MO LM2MO -137 LM3AN LM3AN -138 LM3MO LM3MO -140 ecgm_diag_fc05 ecgm_diag_fc05 -141 I032A I032A -143 I048A I048A -145 I064A I064A -147 I096A I096A -148 I096F I096F -149 I128A I128A -150 I128F I128F -157 R096A R096A -159 R128A R128A -160 R128F R128F -173 I192A I192A -174 I192F I192F -175 I256A I256A -176 I256F I256F -185 R192A R192A -186 R192F R192F -187 R256A R256A -188 R256F R256F -194 E128A E128A -195 E192A E192A -196 E256A E256A -197 SGGM0 SGGM0 -198 SGGM1 SGGM1 -199 SGGM2 SGGM2 -201 SGLM0 SGLM0 -202 SGLM1 SGLM1 -205 SGBSH SGBSH -206 I384A I384A -207 I384F I384F -208 R384A R384A -209 R384F R384F -210 E384A E384A -211 EGMES EGMES -212 LFMES LFMES -213 LM4MO LM4MO -214 LM4AN LM4AN -215 LM5MO LM5MO -216 LM5AN LM5AN -217 LM6MO LM6MO -218 LM6AN LM6AN -219 LM7MO LM7MO -225 SGBS1 SGBS1 diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def deleted file mode 100644 index 1487e839..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/cfName.def +++ /dev/null @@ -1,147 +0,0 @@ -# Automatically generated by ./create_param.pl, do not edit -#Geopotential -'geopotential' = { - discipline = 0 ; - parameterNumber = 4 ; - parameterCategory = 3 ; - } -#Relative vorticity -'atmosphere_relative_vorticity' = { - discipline = 0 ; - parameterNumber = 12 ; - parameterCategory = 2 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - discipline = 0 ; - parameterNumber = 11 ; - parameterCategory = 1 ; - unitsFactor = 1000 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterNumber = 10 ; - parameterCategory = 1 ; - unitsFactor = 1000 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - discipline = 0 ; - parameterNumber = 20 ; - parameterCategory = 2 ; - } -#Relative divergence -'divergence_of_wind' = { - discipline = 0 ; - parameterNumber = 13 ; - parameterCategory = 2 ; - } -#Relative humidity -'relative_humidity' = { - discipline = 0 ; - parameterNumber = 1 ; - parameterCategory = 1 ; - } -#Surface roughness -'surface_roughness_length' = { - discipline = 2 ; - parameterNumber = 1 ; - parameterCategory = 0 ; -} -#Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'surface_temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'lwe_thickness_of_soil_moisture_content' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Snowfall -'lwe_thickness_of_snowfall_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Tendency of surface pressure -'tendency_of_surface_air_pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Total cloud cover -'cloud_area_fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Albedo -'surface_albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'lwe_thickness_of_water_evaporation_amount' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Convective cloud cover -'convective_cloud_area_fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Surface net solar radiation, clear sky -'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'surface_net_downward_longwave_flux_assuming_clear_sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#Temperature of snow layer -'temperature_in_surface_snow' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def deleted file mode 100644 index b8a0f375..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/cfVarName.def +++ /dev/null @@ -1,17509 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; - } -#Equivalent potential temperature -'eqpt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'ssfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'scfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'sro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'udvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'vdvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'urtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'vrtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'uvcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'cl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'cvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'cvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'tvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'tvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'asn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'istl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'es' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'smlt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'sdur' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'lspf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Montgomery potential -'mont' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'obct' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'sktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Total column liquid water -'tclw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; - } -#Total column ice water -'tciw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'p10fg6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'emis' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'vite' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'at' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'bv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'tcwv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'stl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'swl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - unitsFactor = 1000 ; - } -#Large-scale precipitation -'lsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'sf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'chnk' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'snr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'tnr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'lnsp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'swhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'lwhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'tsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'blh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'sdor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'tcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'stl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'al' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'e' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'stl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'swl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'ccc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'lcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'mcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'hcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'lgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'src' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'veg' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'paw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'ro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'tco3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation -'tisr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'ie' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'asq' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'stl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'swl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } -#Convective snowfall -'csf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'lsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'fal' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'fsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'aiw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'ice' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'strfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'ptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'cldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'asndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'rsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'sltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'esdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'smltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'sdurdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'fgdiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'montdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'presdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'capediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'obctdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'p63.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'p64.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'p65.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'p66.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'p67.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'p70.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'p71.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'p78.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'p79.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'fg6diff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'p125.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'bvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'zdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'qdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'spdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'tcwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'sddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'chnkdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'ghdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'rdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'udiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'vdiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'difft2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'srdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'aldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'ediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'hccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'rodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'tco3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'sidiff10' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'tpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'sktdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'faldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'ccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'icediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'p193.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'utendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'ttendr' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'ua100' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'va100' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdms' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'p55.210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Particulate matter d < 1 um -'pm1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Mean altitude of maximum injection -'mami' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'apt' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Altitude of plume bottom -'apb' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'p55.211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'alediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'aptdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Experimental product -'p1.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'p2.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'p3.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'p4.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'p5.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'p6.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'p7.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'p8.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'p9.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'p10.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'p11.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'p12.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'p13.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'p14.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'p15.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'p16.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'p17.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'p18.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'p19.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'p20.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'p21.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'p22.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'p23.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'p24.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'p25.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'p26.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'p27.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'p28.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'p29.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'p30.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'p31.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'p32.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'p33.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'p34.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'p35.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'p36.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'p37.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'p38.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'p39.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'p40.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'p41.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'p42.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'p43.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'p44.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'p45.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'p46.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'p47.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'p48.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'p49.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'p50.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'p51.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'p52.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'p53.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'p54.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'p55.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'p57.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'p58.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'p59.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'p60.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'p61.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'p62.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'p63.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'p64.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'p65.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'p66.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'p67.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'p68.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'p69.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'p70.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'p71.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'p72.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'p73.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'p74.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'p75.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'p76.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'p77.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'p78.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'p79.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'p121.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'p122.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'p123.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'p124.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'p125.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'p126.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'p127.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'p128.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'p129.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'p130.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'p131.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'p132.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'p133.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'p134.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'p135.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'p136.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'p137.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'p138.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'p139.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'p140.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'p141.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'p142.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'p143.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'p144.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'p145.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'p146.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'p147.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'p148.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'p149.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'p150.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'p151.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'p152.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'p153.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'p154.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'p155.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'p156.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'p157.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'p158.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'p159.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'p160.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'p161.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'p162.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'p163.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'p164.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'p165.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'p166.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'p167.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'p168.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'p169.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'p170.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'p171.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'p172.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'p173.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'p174.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'p175.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'p176.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'p177.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'p178.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'p179.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'p180.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'p181.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'p182.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'p183.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'p184.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'p185.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'p186.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'p187.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'p188.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'p189.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'p190.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'p191.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'p192.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'p193.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'p194.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'p195.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'p196.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'p197.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'p198.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'p199.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'p200.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'p201.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'p202.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'p203.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'p204.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'p205.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'p206.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'p207.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'p208.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'p209.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'p210.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'p211.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'p212.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'p213.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'p214.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'p215.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'p216.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'p217.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'p218.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'p219.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'p220.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'p221.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'p222.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'p223.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'p224.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'p225.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'p226.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'p227.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'p228.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'p229.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'p230.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'p231.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'p232.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'p233.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'p234.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'p235.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'p236.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'p237.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'p238.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'p239.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'p240.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'p241.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'p242.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'p243.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'p244.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'p245.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'p246.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'p247.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'p248.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'p249.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'p250.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'p251.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'p252.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'p253.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'p254.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'p255.212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -# Cosine of solar zenith angle -'uvcossza' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -# UV biologically effective dose -'uvbed' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -# UV biologically effective dose clear-sky -'uvbedcs' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -# Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -# Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -# Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -# Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -# Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -# Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -# Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -# Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -# Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -# Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -# Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -# Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -# Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -# Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -# Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -# Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -# Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -# Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -# Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -# Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -# Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -# Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -# Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -# Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -# Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -# Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -# Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -# Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -# Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -# Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -# Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -# Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -# Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -# Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -# Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -# Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -# Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -# Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -# Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -# Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -# Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -# Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -# Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -# Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -# Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -# Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -# Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -# Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -# Profile of optical thickness at 340 nm -'aot340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -# Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -# Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -# Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -# Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -# Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -# Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -# Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -# Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -# Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -# Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -# Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -# Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -# Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -# Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -# Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -# Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -# Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -# Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -# Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -# Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -# Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -# Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -# Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -# Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -# Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -# Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -# Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -# Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -# Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -# Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -# Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -# Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -# Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -# Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -# Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -# Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -# Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -# Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -# Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -# Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -# Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -# Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -# Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -# Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -# Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -# Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -# Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -# Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -# Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -# Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -# Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -# Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -# Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -# Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -# Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -# Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -# Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -# Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -# Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -# Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -# Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -# Source/gain of sulphate aerosol -'aersrcsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -# Dry deposition of sulphate aerosol -'aerddpsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -# Sedimentation of sulphate aerosol -'aersdmsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -# Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -# Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -# Negative fixer of sulphate aerosol -'aerngtsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -# Vertically integrated mass of sulphate aerosol -'aermsssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -# Sulphate aerosol optical depth -'aerodsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Assimetry factor at 340 nm -'assimetry340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Assimetry factor at 355 nm -'assimetry355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Assimetry factor at 380 nm -'assimetry380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Assimetry factor at 400 nm -'assimetry400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Assimetry factor at 440 nm -'assimetry440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Assimetry factor at 469 nm -'assimetry469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Assimetry factor at 500 nm -'assimetry500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Assimetry factor at 532 nm -'assimetry532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Assimetry factor at 550 nm -'assimetry550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Assimetry factor at 645 nm -'assimetry645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Assimetry factor at 670 nm -'assimetry670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Assimetry factor at 800 nm -'assimetry800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Assimetry factor at 858 nm -'assimetry858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Assimetry factor at 865 nm -'assimetry865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Assimetry factor at 1020 nm -'assimetry1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Assimetry factor at 1064 nm -'assimetry1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Assimetry factor at 1240 nm -'assimetry1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Assimetry factor at 1640 nm -'assimetry1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Assimetry factor at 2130 nm -'assimetry2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Experimental product -'p1.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'p2.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'p3.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'p4.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'p5.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'p6.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'p7.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'p8.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'p9.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'p10.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'p11.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'p12.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'p13.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'p14.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'p15.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'p16.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'p17.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'p18.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'p19.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'p20.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'p21.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'p22.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'p23.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'p24.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'p25.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'p26.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'p27.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'p28.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'p29.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'p30.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'p31.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'p32.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'p33.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'p34.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'p35.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'p36.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'p37.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'p38.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'p39.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'p40.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'p41.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'p42.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'p43.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'p44.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'p45.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'p46.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'p47.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'p48.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'p49.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'p50.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'p51.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'p52.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'p53.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'p54.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'p55.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'p56.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'p57.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'p58.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'p59.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'p60.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'p61.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'p62.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'p63.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'p64.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'p65.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'p66.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'p67.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'p68.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'p69.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'p70.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'p71.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'p72.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'p73.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'p74.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'p75.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'p76.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'p77.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'p78.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'p79.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'p121.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'p122.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'p123.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'p124.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'p125.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'p126.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'p127.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'p128.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'p129.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'p130.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'p131.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'p132.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'p133.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'p134.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'p135.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'p136.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'p137.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'p138.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'p139.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'p140.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'p141.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'p142.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'p143.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'p144.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'p145.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'p146.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'p147.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'p148.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'p149.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'p150.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'p151.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'p152.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'p153.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'p154.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'p155.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'p156.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'p157.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'p158.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'p159.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'p160.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'p161.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'p162.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'p163.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'p164.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'p165.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'p166.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'p167.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'p168.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'p169.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'p170.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'p171.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'p172.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'p173.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'p174.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'p175.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'p176.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'p177.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'p178.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'p179.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'p180.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'p181.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'p182.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'p183.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'p184.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'p185.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'p186.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'p187.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'p188.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'p189.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'p190.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'p191.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'p192.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'p193.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'p194.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'p195.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'p196.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'p197.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'p198.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'p199.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'p200.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'p201.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'p202.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'p203.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'p204.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'p205.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'p206.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'p207.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'p208.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'p209.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'p210.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'p211.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'p212.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'p213.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'p214.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'p215.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'p216.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'p217.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'p218.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'p219.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'p220.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'p221.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'p222.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'p223.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'p224.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'p225.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'p226.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'p227.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'p228.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'p229.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'p230.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'p231.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'p232.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'p233.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'p234.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'p235.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'p236.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'p237.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'p238.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'p239.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'p240.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'p241.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'p242.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'p243.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'p244.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'p245.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'p246.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'p247.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'p248.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'p249.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'p250.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'p251.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'p252.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'p253.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'p254.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'p255.216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'hno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'par' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'c2h4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'ole' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'ald2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'rooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'onit' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'c5h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'dms' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'nh4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'msa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'o3s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'pb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'ho2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'ho2no2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'ror' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'rxpar' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'xo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'nh2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'psc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'ch3oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'hcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'mcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'c2h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'c2h5oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'c3h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'c3h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'c10h16' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'ispd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'no3_a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'ch3coch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'aco2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'hypropo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'tc_ch4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'tc_par' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'tc_c2h4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'tc_ole' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'tc_rooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'tc_nh3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'tc_so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'tc_nh4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'tc_pb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'tc_ror' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'tc_nh2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'tc_c2h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'tc_c3h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'tc_c3h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'tc_aco2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Ozone emissions -'e_go3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'e_ch4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'e_par' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'e_c2h4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'e_ole' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'e_rooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'e_nh3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'e_so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'e_nh4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'e_ra' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'e_pb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'e_ror' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'e_nh2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'e_c2h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'e_c3h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'e_c3h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'e_aco2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Ozone deposition velocity -'dv_go3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'cbh' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Zero degree level -'deg0l' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; - } -#Horizontal visibility -'hvis' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - } -#10 metre wind gust in the last 3 hours -'fg310' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'swi1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of Zero Deg Wet Bulb Temperature -'hwbt0' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of One Deg Wet Bulb Temperature -'hwbt1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Total column rain water -'tcrw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'tcsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'ccf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'stf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'swv' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'ist' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'tccsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#100 metre wind speed -'si100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; - } -#Irrigation fraction -'irrfr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'pev' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'irr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'tcclw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'strfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'p24.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'p25.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'clgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'asngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'rsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'sltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'fggrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'presgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'obctgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'p63.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'p64.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'p65.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'p66.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'p67.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'p68.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'p69.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'p70.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'p71.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'p78.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'p79.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'p80.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'p81.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'p82.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'p83.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'p84.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'p85.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'p86.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'p87.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'p88.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'p89.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'p90.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'p91.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'p92.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'p93.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'p94.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'p95.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'p96.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'p97.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'p98.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'p99.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'p100.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'p101.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'p102.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'p103.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'p104.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'p105.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'p106.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'p107.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'p108.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'p109.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'p110.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'p111.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'p112.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'p113.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'p114.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'p115.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'p116.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'p117.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'p118.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'p119.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'p120.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'fg6grd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'p125.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'bvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'zgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'qgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'spgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'tcwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'sdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'chnkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'ghgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'rgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'ugrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'vgrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'grd2t' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'grd2d' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'srgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'algrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'egrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'rogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'sigrd10' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'icegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'tsru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'ttru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'clw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'cf' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'mvv' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'t2ag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'t2ag1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'t2ag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'t2alm1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'t2alm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'saip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'whip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'g10p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'capep' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'sp10g10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'sp10g15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre Wind gust of at least 25 m/s -'fg10g25' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre temperature less than 273.15 K -'t2l273' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 2 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - probabilityType = 3 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 4 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'zp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'tap' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'tccp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'sp10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'t2p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'tpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'swhp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'mwpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'p255.131' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'t2plm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'t2plm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'t2pl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'t2pl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'t2pl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'t2pg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'t2pg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'t2pg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'t2pg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'t2pg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'sp10g10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'sp10g15' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'sp10g20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'sp10g35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'sp10g50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'gp10g20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'gp10g35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'gp10g50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'gp10g75' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'gp10g100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'hmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'wmb' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean wave period based on second moment -'mp2' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'wdw' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak period of 1D spectra -'pp1d' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'cdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'mdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'shts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'mdts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'mpts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'sdhs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'mdwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'msqs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'wind' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'awh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'arrc' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'dwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'d2sp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'d2fd' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'bfi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'wsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.140' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'ocs' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'ocpd' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'ocu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'ocv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'ocw' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'uv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'ut' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'vt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'uu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'vv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'p144.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'p145.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'p146.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'p147.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'p148.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'p153.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'p155.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'p168.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'p169.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'p170.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'p172.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'p173.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'p180.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'p181.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'p182.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'p183.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'p255.150' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'p128.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Salinity -'s' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Ocean current zonal component -'ocu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; - } -#Ocean current meridional component -'ocv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; - } -#Ocean current vertical component -'ocw' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'vvs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'vdf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'dep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sigma-theta -'sth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'uv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'ut' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'vt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'uu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'vv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; - } -#Sea level previous timestep -'sl_1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Barotropic stream function -'bsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'sh' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'crl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'p152.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#U stress -'tax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#V stress -'tay' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'asr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'pme' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'sst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'shf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'hfc' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#20 degrees isotherm depth -'d20' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'umax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'smax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Average salinity in the upper 300m -'sav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; - } -#Layer Thickness at scalar points -'ldp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'pti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'ptae' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'bpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'apt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'ptbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'as' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'sali' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'sale' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'bsal' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'salbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'fgbt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'fgbs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'bpa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'fgbp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'pta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'p255.151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'fgrea10' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'pwcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Snow depth -'sdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 141 ; - } -#Large-scale precipitation -'lsprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'sfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'ghrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'rrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'ewssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'nsssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'erea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'srcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'vegrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'rorea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'vurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'vvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'wurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'csfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'lsfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'ccrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'falrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'wsrea10' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'moflrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'p249.160' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'hsdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'p51.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'vima' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'vit' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'viwv' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'vilw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'viiw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'vioz' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'vike' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'vithe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'vipie' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'vipile' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'vitoe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'viec' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'vimae' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'viman' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'vikee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'viken' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'vithen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'vige' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'vign' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'vitoee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'vitoen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'vioze' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'viozn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'vimad' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'viked' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'vithed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'viwvd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'vigd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'vitoed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'viozd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'srta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'trta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'srtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'trtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'umfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'dmfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'udra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'ddra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'tpfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'tdcha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'ttpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'qtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'utpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'vtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'p206.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'p207.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'p208.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'p209.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'p210.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'p211.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'p212.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'p213.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'p214.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'p215.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'p216.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'p217.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'p218.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'p219.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'p220.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'p221.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'p222.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'p223.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'p224.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'p225.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'p226.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'p227.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'p229.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'p230.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'p231.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'p232.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'p233.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'p255.162' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'tsw' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'strfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'vpota' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'pta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'cla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'asna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'rsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'slta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'esa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'smlta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'sdura' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'fga10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'monta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'pva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'obcta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'p126.171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'bva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'za' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'qa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'spa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'tcwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'voa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'sda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'chnka' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'snra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'tnra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'gha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'ra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'blha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'ua10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'va10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'t2a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'d2a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'sra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'ala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'ea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'hcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'roa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'ua10' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'sia' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'tpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'skta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'fala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'cca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'iaa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'p255.171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'esrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'p45.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'p48.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'p50.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) -'p142.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) -'p144.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux -'p146.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Surface latent heat flux -'p147.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Surface net radiation -'p149.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Short-wave heating rate -'p153.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'p154.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards -'p169.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards -'p175.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Surface solar radiation -'p176.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Surface thermal radiation -'p177.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Top solar radiation -'p178.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Top thermal radiation -'p179.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress -'p180.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress -'p181.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'erate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Sunshine duration -'p189.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'p195.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'p196.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Runoff -'p205.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'p208.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'p209.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'p210.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'p211.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation -'p212.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Total precipitation -'tprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'p239.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'p240.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'p255.172' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'p44.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'p45.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'p48.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'p50.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'p142.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'p143.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'p145.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'p146.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'p147.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'p149.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'p153.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'p154.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomaly -'p169.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomaly -'p175.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomaly -'p176.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomaly -'p177.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomaly -'p178.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomaly -'p179.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'p180.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'p181.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'p182.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'p195.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'p196.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'p197.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomaly -'p205.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'p208.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'p209.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'p210.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'p211.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'p212.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'p239.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'p240.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'p255.173' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'p6.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'p31.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'p34.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'p39.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'p40.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'p41.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'p42.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'p49.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'p83.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'p85.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'p86.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'p87.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'p88.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'p89.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'p90.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'p94.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'p95.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Sea-ice thickness -'sit' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; - } -#Liquid water potential temperature -'p99.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'p110.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'p111.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'p139.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'p167.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'p168.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'p170.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'p175.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'p183.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'p236.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'p255.174' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'p6.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'p31.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'p34.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'p39.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'p40.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'p41.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'p42.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'p49.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'p55.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'p83.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'p85.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'p86.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'p87.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'p88.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'p89.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'p90.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'p110.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'p111.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'p139.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'p164.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'p167.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'p168.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'p170.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'p175.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'p183.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'p201.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'p202.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'p236.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'p255.175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'tsw' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'str' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Snow depth -'sdsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; - } -#Field capacity -'cap' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'wiltsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'sr' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'tsm' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'ddiff2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'p1.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'p2.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'p3.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'p4.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'p6.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'p7.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'p8.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'p9.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'p10.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'p11.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'p12.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'p15.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'p16.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'p17.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'clc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'p30.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'qc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'p32.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'p34.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'p35.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'p36.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'p37.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'p38.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'twater' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'p42.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'p51.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'p52.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'p53.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'p54.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'p55.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'p56.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'p60.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'p61.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'p62.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'p63.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'p64.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'p65.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'p66.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'p67.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'p70.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'p71.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'bas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'top_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'dt_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'p76.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'p77.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'p80.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'p81.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'p83.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'pp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'p150.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'w_i' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'t_snow' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'t_ice' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'cape_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'p255.201' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; -} -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdep' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerlts' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'aerscc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'nox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'ra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'aersccdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'ch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'oafirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'radiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcradiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'tpoc' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'zust' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'meantcc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'dctb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'tplb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'tplt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'sts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'msls' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'t2s' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'tps' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'ust' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'vst' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#100 metre U wind component -'u100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; - } -#100 metre V wind component -'v100' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/name.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/name.def deleted file mode 100644 index 3141ac53..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/name.def +++ /dev/null @@ -1,17509 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'Total precipitation of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; - } -#Total precipitation of at least 5 mm -'Total precipitation of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; - } -#Total precipitation of at least 40 mm -'Total precipitation of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; - } -#Total precipitation of at least 60 mm -'Total precipitation of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; - } -#Total precipitation of at least 80 mm -'Total precipitation of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; - } -#Total precipitation of at least 100 mm -'Total precipitation of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Total precipitation of at least 150 mm -'Total precipitation of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; - } -#Total precipitation of at least 200 mm -'Total precipitation of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; - } -#Total precipitation of at least 300 mm -'Total precipitation of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; - } -#Equivalent potential temperature -'Equivalent potential temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'Saturated equivalent potential temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'Soil sand fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'Soil clay fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'Surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'U component of divergent wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'V component of divergent wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'U component of rotational wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'V component of rotational wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'UV visible albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'UV visible albedo for diffuse radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'Near IR albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'Near IR albedo for diffuse radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'Clear sky surface UV' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'Clear sky surface photosynthetically active radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'Unbalanced component of temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'Unbalanced component of logarithm of surface pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'Unbalanced component of divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'Lake cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'Low vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'High vegetation cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'Type of low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'Type of high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'Snow albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'Ice temperature layer 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'Ice temperature layer 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'Ice temperature layer 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'Ice temperature layer 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'Snow evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'Snowmelt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'Solar duration' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'Direct solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'Large-scale precipitation fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'Maximum temperature at 2 metres in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'Minimum temperature at 2 metres in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Montgomery potential -'Montgomery potential' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'Mean temperature at 2 metres in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'Mean 2 metre dewpoint temperature in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'Downward UV radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'Photosynthetically active radiation at the surface' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'Observation count' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'Instantaneous surface solar radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'Instantaneous surface thermal radiation downwards' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'Standard deviation of filtered subgrid orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Total column liquid water -'Total column liquid water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; - } -#Total column ice water -'Total column ice water' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'10 metre wind gust in the last 6 hours' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'Surface emissivity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'Atmospheric tide' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'Budget values' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'Total column water vapour' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'Soil temperature level 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'Snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - unitsFactor = 1000 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'Snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'Charnock' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'Surface net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'Top net radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'Logarithm of surface pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'Short-wave heating rate' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'Long-wave heating rate' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'Tendency of surface pressure' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'Boundary layer height' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'Standard deviation of orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'Anisotropy of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'Angle of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'Slope of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'Total cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'Soil temperature level 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'Albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'Top net solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'Soil temperature level 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'Convective cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'Medium cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'East-West component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'North-South component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'North-West/South-East component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'North-East/South-West component of sub-gridscale orographic variance' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'Eastward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'Northward gravity wave surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'Vegetation fraction' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'Variance of sub-gridscale orography' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'Precipitation analysis weights' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'Total column ozone' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation -'TOA incident solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'Vertically integrated moisture divergence' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'Diabatic heating large-scale condensation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'East-West gravity wave drag tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'North-South gravity wave drag tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'Convective tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'Convective tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'Tendency due to removal of negative humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'Total precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'Instantaneous eastward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'Instantaneous northward turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'Instantaneous surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'Instantaneous moisture flux' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'Apparent surface humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'Logarithm of surface roughness length for heat' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'Soil temperature level 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'Soil wetness level 4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Temperature of snow layer -'Temperature of snow layer' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'Large-scale snowfall' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'Accumulated cloud fraction tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'Accumulated liquid water tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'Forecast surface roughness' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'Forecast logarithm of surface roughness for heat' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'Accumulated ice water tendency' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'Ice age' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'Stream function difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'Velocity potential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'Potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'Equivalent potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'Saturated equivalent potential temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'U component of divergent wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'V component of divergent wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'U component of rotational wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'V component of rotational wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'Unbalanced component of temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'Unbalanced component of logarithm of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'Unbalanced component of divergence difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'Lake cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'Low vegetation cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'High vegetation cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'Type of low vegetation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'Type of high vegetation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'Sea-ice cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'Snow albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'Snow density difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'Sea surface temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'Ice surface temperature layer 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'Ice surface temperature layer 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'Ice surface temperature layer 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'Ice surface temperature layer 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'Volumetric soil water layer 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'Volumetric soil water layer 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'Volumetric soil water layer 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'Volumetric soil water layer 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'Soil type difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'Snow evaporation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'Snowmelt difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'Solar duration difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'Direct solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'Magnitude of turbulent surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'10 metre wind gust difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'Large-scale precipitation fraction difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'Maximum 2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'Minimum 2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'Montgomery potential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'Pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'Mean 2 metre temperature in the last 24 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'Mean 2 metre dewpoint temperature in the last 24 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'Downward UV radiation at the surface difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'Photosynthetically active radiation at the surface difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'Convective available potential energy difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'Potential vorticity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'Total precipitation from observations difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'Observation count difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'Total column ice water' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'Maximum temperature at 2 metres difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'Minimum temperature at 2 metres difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10 metre wind gust in the last 6 hours difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'Atmospheric tide difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'Budget values difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'Geopotential difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'Temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'U component of wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'V component of wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'Specific humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'Surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'Vertical velocity (pressure) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'Total column water difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'Total column water vapour difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'Vorticity (relative) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'Soil temperature level 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'Soil wetness level 1 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'Snow depth difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'Stratiform precipitation (Large-scale precipitation) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'Convective precipitation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'Snowfall (convective + stratiform) difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'Boundary layer dissipation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'Surface sensible heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'Surface latent heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'Charnock difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'Surface net radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'Top net radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'Mean sea level pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'Logarithm of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'Short-wave heating rate difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'Long-wave heating rate difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'Divergence difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'Height difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'Relative humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'Tendency of surface pressure difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'Boundary layer height difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'Standard deviation of orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'Anisotropy of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'Angle of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'Slope of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'Total cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'10 metre U wind component difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'10 metre V wind component difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'2 metre temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'Surface solar radiation downwards difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'Soil temperature level 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'Soil wetness level 2 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'Land-sea mask difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'Surface roughness difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'Albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'Surface thermal radiation downwards difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'Surface net solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'Surface net thermal radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'Top net solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'Top net thermal radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'East-West surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'North-South surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'Evaporation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'Soil temperature level 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'Soil wetness level 3 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'Convective cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'Low cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'Medium cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'High cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'Sunshine duration difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'East-West component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'North-South component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'North-West/South-East component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'North-East/South-West component of sub-gridscale orographic variance difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'Brightness temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'Longitudinal component of gravity wave stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'Meridional component of gravity wave stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'Gravity wave dissipation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'Skin reservoir content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'Vegetation fraction difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'Variance of sub-gridscale orography difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'Maximum temperature at 2 metres since previous post-processing difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'Minimum temperature at 2 metres since previous post-processing difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'Ozone mass mixing ratio difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'Precipitation analysis weights difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'Runoff difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'Total column ozone difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'10 metre wind speed difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'Top net solar radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'Top net thermal radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'Surface net solar radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'Surface net thermal radiation, clear sky difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'TOA incident solar radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'Diabatic heating by radiation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'Diabatic heating by vertical diffusion difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'Diabatic heating by cumulus convection difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'Diabatic heating large-scale condensation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'Vertical diffusion of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'Vertical diffusion of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'East-West gravity wave drag tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'North-South gravity wave drag tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'Convective tendency of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'Convective tendency of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'Vertical diffusion of humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'Humidity tendency by cumulus convection difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'Humidity tendency by large-scale condensation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'Change from removal of negative humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'Total precipitation difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'Instantaneous X surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'Instantaneous Y surface stress difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'Instantaneous surface heat flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'Instantaneous moisture flux difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'Apparent surface humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'Logarithm of surface roughness length for heat difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'Soil temperature level 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'Soil wetness level 4 difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'Temperature of snow layer difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'Convective snowfall difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'Large scale snowfall difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'Accumulated cloud fraction tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'Accumulated liquid water tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'Forecast albedo difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'Forecast surface roughness difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'Forecast logarithm of surface roughness for heat difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'Specific cloud liquid water content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'Specific cloud ice water content difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'Cloud cover difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'Accumulated ice water tendency difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'Ice age difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'Adiabatic tendency of temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'Adiabatic tendency of humidity difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'Adiabatic tendency of zonal wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'Adiabatic tendency of meridional wind difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'Reserved' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'U-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'V-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'T-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'q-tendency from dynamics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'T-tendency from radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'U-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'V-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'T-tendency from turbulent diffusion + subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'q-tendency from turbulent diffusion' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'U-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'V-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'T-tendency from subgrid orography' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'U-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'V-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'T-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'q-tendency from convection (deep+shallow)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'Liquid Precipitation flux from convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'Ice Precipitation flux from convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'T-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'q-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'ql-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qi-tendency from cloud scheme' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'Liquid Precip flux from cloud scheme (stratiform)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'Ice Precip flux from cloud scheme (stratiform)' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'U-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'V-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'T-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'q-tendency from shallow convection' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'100 metre U wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'100 metre V wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'Maximum temperature at 2 metres in the last 6 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'Minimum temperature at 2 metres in the last 6 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'Volcanic ash aerosol mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'Volcanic sulphate aerosol mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'Volcanic SO2 precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'Mixing ration of organic carbon aerosol, nucleation mode' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'Monoterpene precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'Secondary organic precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Particulate matter d < 1 um -'Particulate matter d < 1 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'Particulate matter d < 2.5 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'Particulate matter d < 10 um' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'Wildfire viewing angle of observation' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Mean altitude of maximum injection -'Mean altitude of maximum injection' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'UV visible albedo for direct radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'UV visible albedo for direct radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'UV visible albedo for direct radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'Near IR albedo for direct radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'Near IR albedo for direct radiation, volumetric component' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'Near IR albedo for direct radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'UV visible albedo for diffuse radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'UV visible albedo for diffuse radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'UV visible albedo for diffuse radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'Near IR albedo for diffuse radiation, isotropic component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'Near IR albedo for diffuse radiation, volumetric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'Near IR albedo for diffuse radiation, geometric component ' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'Total aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'Total aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'Total aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'Total aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'Total aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'Total aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'Total aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'Total aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'Total aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'Total aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'Total aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'Total aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'Total aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'Total aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Altitude of plume bottom -'Altitude of plume bottom' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'Volcanic sulphate aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'Volcanic ash optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'Profile of total aerosol dry extinction coefficient' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'Profile of total aerosol dry absorption coefficient' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Aerosol type 13 mass mixing ratio -'Aerosol type 13 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'Aerosol type 14 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'Aerosol type 15 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'SO4 aerosol precursor mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'Water vapour mixing ratio for hydrophilic aerosols in mode 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'Water vapour mixing ratio for hydrophilic aerosols in mode 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'DMS surface emission' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'Water vapour mixing ratio for hydrophilic aerosols in mode 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'Water vapour mixing ratio for hydrophilic aerosols in mode 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'Altitude of emitter' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'Altitude of plume top' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'Random pattern 1 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'Random pattern 2 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'Random pattern 3 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'Random pattern 4 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'Random pattern 5 for sppt' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -# Cosine of solar zenith angle -' Cosine of solar zenith angle' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -# UV biologically effective dose -' UV biologically effective dose' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -# UV biologically effective dose clear-sky -' UV biologically effective dose clear-sky' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -# Total surface UV spectral flux (280-285 nm) -' Total surface UV spectral flux (280-285 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -# Total surface UV spectral flux (285-290 nm) -' Total surface UV spectral flux (285-290 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -# Total surface UV spectral flux (290-295 nm) -' Total surface UV spectral flux (290-295 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -# Total surface UV spectral flux (295-300 nm) -' Total surface UV spectral flux (295-300 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -# Total surface UV spectral flux (300-305 nm) -' Total surface UV spectral flux (300-305 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -# Total surface UV spectral flux (305-310 nm) -' Total surface UV spectral flux (305-310 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -# Total surface UV spectral flux (310-315 nm) -' Total surface UV spectral flux (310-315 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -# Total surface UV spectral flux (315-320 nm) -' Total surface UV spectral flux (315-320 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -# Total surface UV spectral flux (320-325 nm) -' Total surface UV spectral flux (320-325 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -# Total surface UV spectral flux (325-330 nm) -' Total surface UV spectral flux (325-330 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -# Total surface UV spectral flux (330-335 nm) -' Total surface UV spectral flux (330-335 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -# Total surface UV spectral flux (335-340 nm) -' Total surface UV spectral flux (335-340 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -# Total surface UV spectral flux (340-345 nm) -' Total surface UV spectral flux (340-345 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -# Total surface UV spectral flux (345-350 nm) -' Total surface UV spectral flux (345-350 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -# Total surface UV spectral flux (350-355 nm) -' Total surface UV spectral flux (350-355 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -# Total surface UV spectral flux (355-360 nm) -' Total surface UV spectral flux (355-360 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -# Total surface UV spectral flux (360-365 nm) -' Total surface UV spectral flux (360-365 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -# Total surface UV spectral flux (365-370 nm) -' Total surface UV spectral flux (365-370 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -# Total surface UV spectral flux (370-375 nm) -' Total surface UV spectral flux (370-375 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -# Total surface UV spectral flux (375-380 nm) -' Total surface UV spectral flux (375-380 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -# Total surface UV spectral flux (380-385 nm) -' Total surface UV spectral flux (380-385 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -# Total surface UV spectral flux (385-390 nm) -' Total surface UV spectral flux (385-390 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -# Total surface UV spectral flux (390-395 nm) -' Total surface UV spectral flux (390-395 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -# Total surface UV spectral flux (395-400 nm) -' Total surface UV spectral flux (395-400 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -# Clear-sky surface UV spectral flux (280-285 nm) -' Clear-sky surface UV spectral flux (280-285 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -# Clear-sky surface UV spectral flux (285-290 nm) -' Clear-sky surface UV spectral flux (285-290 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -# Clear-sky surface UV spectral flux (290-295 nm) -' Clear-sky surface UV spectral flux (290-295 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -# Clear-sky surface UV spectral flux (295-300 nm) -' Clear-sky surface UV spectral flux (295-300 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -# Clear-sky surface UV spectral flux (300-305 nm) -' Clear-sky surface UV spectral flux (300-305 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -# Clear-sky surface UV spectral flux (305-310 nm) -' Clear-sky surface UV spectral flux (305-310 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -# Clear-sky surface UV spectral flux (310-315 nm) -' Clear-sky surface UV spectral flux (310-315 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -# Clear-sky surface UV spectral flux (315-320 nm) -' Clear-sky surface UV spectral flux (315-320 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -# Clear-sky surface UV spectral flux (320-325 nm) -' Clear-sky surface UV spectral flux (320-325 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -# Clear-sky surface UV spectral flux (325-330 nm) -' Clear-sky surface UV spectral flux (325-330 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -# Clear-sky surface UV spectral flux (330-335 nm) -' Clear-sky surface UV spectral flux (330-335 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -# Clear-sky surface UV spectral flux (335-340 nm) -' Clear-sky surface UV spectral flux (335-340 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -# Clear-sky surface UV spectral flux (340-345 nm) -' Clear-sky surface UV spectral flux (340-345 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -# Clear-sky surface UV spectral flux (345-350 nm) -' Clear-sky surface UV spectral flux (345-350 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -# Clear-sky surface UV spectral flux (350-355 nm) -' Clear-sky surface UV spectral flux (350-355 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -# Clear-sky surface UV spectral flux (355-360 nm) -' Clear-sky surface UV spectral flux (355-360 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -# Clear-sky surface UV spectral flux (360-365 nm) -' Clear-sky surface UV spectral flux (360-365 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -# Clear-sky surface UV spectral flux (365-370 nm) -' Clear-sky surface UV spectral flux (365-370 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -# Clear-sky surface UV spectral flux (370-375 nm) -' Clear-sky surface UV spectral flux (370-375 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -# Clear-sky surface UV spectral flux (375-380 nm) -' Clear-sky surface UV spectral flux (375-380 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -# Clear-sky surface UV spectral flux (380-385 nm) -' Clear-sky surface UV spectral flux (380-385 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -# Clear-sky surface UV spectral flux (385-390 nm) -' Clear-sky surface UV spectral flux (385-390 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -# Clear-sky surface UV spectral flux (390-395 nm) -' Clear-sky surface UV spectral flux (390-395 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -# Clear-sky surface UV spectral flux (395-400 nm) -' Clear-sky surface UV spectral flux (395-400 nm)' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -# Profile of optical thickness at 340 nm -' Profile of optical thickness at 340 nm' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -# Source/gain of sea salt aerosol (0.03 - 0.5 um) -' Source/gain of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -# Source/gain of sea salt aerosol (0.5 - 5 um) -' Source/gain of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -# Source/gain of sea salt aerosol (5 - 20 um) -' Source/gain of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -# Dry deposition of sea salt aerosol (0.03 - 0.5 um) -' Dry deposition of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -# Dry deposition of sea salt aerosol (0.5 - 5 um) -' Dry deposition of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -# Dry deposition of sea salt aerosol (5 - 20 um) -' Dry deposition of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -# Sedimentation of sea salt aerosol (0.03 - 0.5 um) -' Sedimentation of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -# Sedimentation of sea salt aerosol (0.5 - 5 um) -' Sedimentation of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -# Sedimentation of sea salt aerosol (5 - 20 um) -' Sedimentation of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -' Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -' Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -' Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -' Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -' Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -# Negative fixer of sea salt aerosol (0.03 - 0.5 um) -' Negative fixer of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -# Negative fixer of sea salt aerosol (0.5 - 5 um) -' Negative fixer of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -# Negative fixer of sea salt aerosol (5 - 20 um) -' Negative fixer of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -' Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -' Vertically integrated mass of sea salt aerosol (0.5 - 5 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -# Vertically integrated mass of sea salt aerosol (5 - 20 um) -' Vertically integrated mass of sea salt aerosol (5 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -# Sea salt aerosol (0.03 - 0.5 um) optical depth -' Sea salt aerosol (0.03 - 0.5 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -# Sea salt aerosol (0.5 - 5 um) optical depth -' Sea salt aerosol (0.5 - 5 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -# Sea salt aerosol (5 - 20 um) optical depth -' Sea salt aerosol (5 - 20 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -# Source/gain of dust aerosol (0.03 - 0.55 um) -' Source/gain of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -# Source/gain of dust aerosol (0.55 - 9 um) -' Source/gain of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -# Source/gain of dust aerosol (9 - 20 um) -' Source/gain of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -# Dry deposition of dust aerosol (0.03 - 0.55 um) -' Dry deposition of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -# Dry deposition of dust aerosol (0.55 - 9 um) -' Dry deposition of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -# Dry deposition of dust aerosol (9 - 20 um) -' Dry deposition of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -# Sedimentation of dust aerosol (0.03 - 0.55 um) -' Sedimentation of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -# Sedimentation of dust aerosol (0.55 - 9 um) -' Sedimentation of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -# Sedimentation of dust aerosol (9 - 20 um) -' Sedimentation of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -' Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -' Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -' Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -' Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -' Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -' Wet deposition of dust aerosol (9 - 20 um) by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -# Negative fixer of dust aerosol (0.03 - 0.55 um) -' Negative fixer of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -# Negative fixer of dust aerosol (0.55 - 9 um) -' Negative fixer of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -# Negative fixer of dust aerosol (9 - 20 um) -' Negative fixer of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -' Vertically integrated mass of dust aerosol (0.03 - 0.55 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -# Vertically integrated mass of dust aerosol (0.55 - 9 um) -' Vertically integrated mass of dust aerosol (0.55 - 9 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -# Vertically integrated mass of dust aerosol (9 - 20 um) -' Vertically integrated mass of dust aerosol (9 - 20 um)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -# Dust aerosol (0.03 - 0.55 um) optical depth -' Dust aerosol (0.03 - 0.55 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -# Dust aerosol (0.55 - 9 um) optical depth -' Dust aerosol (0.55 - 9 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -# Dust aerosol (9 - 20 um) optical depth -' Dust aerosol (9 - 20 um) optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -# Source/gain of hydrophobic organic matter aerosol -' Source/gain of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -# Source/gain of hydrophilic organic matter aerosol -' Source/gain of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -# Dry deposition of hydrophobic organic matter aerosol -' Dry deposition of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -# Dry deposition of hydrophilic organic matter aerosol -' Dry deposition of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -# Sedimentation of hydrophobic organic matter aerosol -' Sedimentation of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -# Sedimentation of hydrophilic organic matter aerosol -' Sedimentation of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -' Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -' Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -# Wet deposition of hydrophobic organic matter aerosol by convective precipitation -' Wet deposition of hydrophobic organic matter aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -# Wet deposition of hydrophilic organic matter aerosol by convective precipitation -' Wet deposition of hydrophilic organic matter aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -# Negative fixer of hydrophobic organic matter aerosol -' Negative fixer of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -# Negative fixer of hydrophilic organic matter aerosol -' Negative fixer of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -# Vertically integrated mass of hydrophobic organic matter aerosol -' Vertically integrated mass of hydrophobic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -# Vertically integrated mass of hydrophilic organic matter aerosol -' Vertically integrated mass of hydrophilic organic matter aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -# Hydrophobic organic matter aerosol optical depth -' Hydrophobic organic matter aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -# Hydrophilic organic matter aerosol optical depth -' Hydrophilic organic matter aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -# Source/gain of hydrophobic black carbon aerosol -' Source/gain of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -# Source/gain of hydrophilic black carbon aerosol -' Source/gain of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -# Dry deposition of hydrophobic black carbon aerosol -' Dry deposition of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -# Dry deposition of hydrophilic black carbon aerosol -' Dry deposition of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -# Sedimentation of hydrophobic black carbon aerosol -' Sedimentation of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -# Sedimentation of hydrophilic black carbon aerosol -' Sedimentation of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -' Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -' Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -# Wet deposition of hydrophobic black carbon aerosol by convective precipitation -' Wet deposition of hydrophobic black carbon aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -# Wet deposition of hydrophilic black carbon aerosol by convective precipitation -' Wet deposition of hydrophilic black carbon aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -# Negative fixer of hydrophobic black carbon aerosol -' Negative fixer of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -# Negative fixer of hydrophilic black carbon aerosol -' Negative fixer of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -# Vertically integrated mass of hydrophobic black carbon aerosol -' Vertically integrated mass of hydrophobic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -# Vertically integrated mass of hydrophilic black carbon aerosol -' Vertically integrated mass of hydrophilic black carbon aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -# Hydrophobic black carbon aerosol optical depth -' Hydrophobic black carbon aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -# Hydrophilic black carbon aerosol optical depth -' Hydrophilic black carbon aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -# Source/gain of sulphate aerosol -' Source/gain of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -# Dry deposition of sulphate aerosol -' Dry deposition of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -# Sedimentation of sulphate aerosol -' Sedimentation of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -# Wet deposition of sulphate aerosol by large-scale precipitation -' Wet deposition of sulphate aerosol by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -# Wet deposition of sulphate aerosol by convective precipitation -' Wet deposition of sulphate aerosol by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -# Negative fixer of sulphate aerosol -' Negative fixer of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -# Vertically integrated mass of sulphate aerosol -' Vertically integrated mass of sulphate aerosol' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -# Sulphate aerosol optical depth -' Sulphate aerosol optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'Accumulated total aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'Effective (snow effect included) UV visible albedo for direct radiation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'10 metre wind speed dust emission potential' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'10 metre wind gustiness dust emission potential' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'Total aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'Natural (sea-salt and dust) aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'Total absorption aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'Total absorption aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'Total absorption aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'Total absorption aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'Total absorption aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'Total absorption aerosol optical depth at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'Total absorption aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'Total absorption aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'Total absorption aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'Total absorption aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'Total absorption aerosol optical depth at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'Total absorption aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'Total absorption aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'Total absorption aerosol optical depth at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'Total absorption aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'Total absorption aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'Total absorption aerosol optical depth at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'Total absorption aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'Single scattering albedo at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'Single scattering albedo at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'Single scattering albedo at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'Single scattering albedo at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'Single scattering albedo at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'Single scattering albedo at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'Single scattering albedo at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'Single scattering albedo at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'Single scattering albedo at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'Single scattering albedo at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'Single scattering albedo at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'Single scattering albedo at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'Single scattering albedo at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'Single scattering albedo at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'Single scattering albedo at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'Single scattering albedo at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'Single scattering albedo at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'Single scattering albedo at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Assimetry factor at 340 nm -'Assimetry factor at 340 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Assimetry factor at 355 nm -'Assimetry factor at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Assimetry factor at 380 nm -'Assimetry factor at 380 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Assimetry factor at 400 nm -'Assimetry factor at 400 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Assimetry factor at 440 nm -'Assimetry factor at 440 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Assimetry factor at 469 nm -'Assimetry factor at 469 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Assimetry factor at 500 nm -'Assimetry factor at 500 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Assimetry factor at 532 nm -'Assimetry factor at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Assimetry factor at 550 nm -'Assimetry factor at 550 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Assimetry factor at 645 nm -'Assimetry factor at 645 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Assimetry factor at 670 nm -'Assimetry factor at 670 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Assimetry factor at 800 nm -'Assimetry factor at 800 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Assimetry factor at 858 nm -'Assimetry factor at 858 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Assimetry factor at 865 nm -'Assimetry factor at 865 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Assimetry factor at 1020 nm -'Assimetry factor at 1020 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Assimetry factor at 1064 nm -'Assimetry factor at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Assimetry factor at 1240 nm -'Assimetry factor at 1240 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Assimetry factor at 1640 nm -'Assimetry factor at 1640 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'Source/gain of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'Dry deposition of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'Sedimentation of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'Wet deposition of sulphur dioxide by large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'Wet deposition of sulphur dioxide by convective precipitation' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'Negative fixer of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'Vertically integrated mass of sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'Sulphur dioxide optical depth' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'Total absorption aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'Single scattering albedo at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Assimetry factor at 2130 nm -'Assimetry factor at 2130 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'Aerosol extinction coefficient at 355 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'Aerosol extinction coefficient at 532 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'Aerosol extinction coefficient at 1064 nm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 355 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 532 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'Aerosol backscatter coefficient at 1064 nm (from top of atmosphere)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'Aerosol backscatter coefficient at 355 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'Aerosol backscatter coefficient at 532 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'Aerosol backscatter coefficient at 1064 nm (from ground)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'Hydrogen peroxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane -'Methane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'Nitric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'Methyl peroxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'Paraffins' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'Ethene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'Olefins' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'Aldehydes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'Peroxyacetyl nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'Peroxides' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'Organic nitrates' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'Isoprene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'Dimethyl sulfide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'Ammonia' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'Sulfate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'Ammonium' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'Methane sulfonic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'Methyl glyoxal' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'Stratospheric ozone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'Lead' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'Nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'Hydroperoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'Methylperoxy radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'Hydroxyl radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'Nitrate radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'Dinitrogen pentoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'Pernitric acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'Peroxy acetyl radical' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'Organic ethers' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'PAR budget corrector' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'NO to NO2 operator' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'NO to alkyl nitrate operator' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'Amine' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'Polar stratospheric cloud' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'Methanol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'Formic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'Methacrylic acid' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'Ethane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'Ethanol' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'Propane' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'Propene' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'Terpenes' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'Methacrolein MVK' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'Nitrate' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'Acetone' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'Acetone product' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'IC3H7O2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'HYPROPO2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'Nitrogen oxides Transp' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Total column hydrogen peroxide -'Total column hydrogen peroxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'Total column methane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'Total column nitric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'Total column methyl peroxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'Total column paraffins' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'Total column ethene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'Total column olefins' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'Total column aldehydes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'Total column peroxyacetyl nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'Total column peroxides' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'Total column organic nitrates' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'Total column isoprene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'Total column dimethyl sulfide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'Total column ammonia' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'Total column sulfate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'Total column ammonium' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'Total column methane sulfonic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'Total column methyl glyoxal' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'Total column stratospheric ozone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'Total column lead' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'Total column nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'Total column hydroperoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'Total column methylperoxy radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'Total column hydroxyl radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'Total column nitrate radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'Total column dinitrogen pentoxide' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'Total column pernitric acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'Total column peroxy acetyl radical' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'Total column organic ethers' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'Total column PAR budget corrector' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'Total column NO to NO2 operator' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'Total column NO to alkyl nitrate operator' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'Total column amine' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'Total column polar stratospheric cloud' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'Total column methanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'Total column formic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'Total column methacrylic acid' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'Total column ethane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'Total column ethanol' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'Total column propane' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'Total column propene' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'Total column terpenes' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'Total column methacrolein MVK' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'Total column nitrate' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'Total column acetone' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'Total column acetone product' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'Total column IC3H7O2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'Total column HYPROPO2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'Total column nitrogen oxides Transp' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Ozone emissions -'Ozone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'Nitrogen oxides emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'Hydrogen peroxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'Methane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'Carbon monoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'Nitric acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'Methyl peroxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'Formaldehyde emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'Paraffins emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'Ethene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'Olefins emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'Aldehydes emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'Peroxyacetyl nitrate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'Peroxides emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'Organic nitrates emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'Isoprene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'Sulfur dioxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'Dimethyl sulfide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'Ammonia emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'Sulfate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'Ammonium emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'Methane sulfonic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'Methyl glyoxal emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'Stratospheric ozone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'Radon emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'Lead emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'Nitrogen monoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'Hydroperoxy radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'Methylperoxy radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'Hydroxyl radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'Nitrogen dioxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'Nitrate radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'Dinitrogen pentoxide emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'Pernitric acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'Peroxy acetyl radical emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'Organic ethers emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'PAR budget corrector emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'NO to NO2 operator emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'NO to alkyl nitrate operator emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'Amine emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'Polar stratospheric cloud emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'Methanol emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'Formic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'Methacrylic acid emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'Ethane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'Ethanol emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'Propane emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'Propene emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'Terpenes emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'Methacrolein MVK emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'Nitrate emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'Acetone emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'Acetone product emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'IC3H7O2 emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'HYPROPO2 emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'Nitrogen oxides Transp emissions' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Ozone deposition velocity -'Ozone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'Nitrogen oxides deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'Hydrogen peroxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'Methane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'Carbon monoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'Nitric acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'Methyl peroxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'Formaldehyde deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'Paraffins deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'Ethene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'Olefins deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'Aldehydes deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'Peroxyacetyl nitrate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'Peroxides deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'Organic nitrates deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'Isoprene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'Sulfur dioxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'Dimethyl sulfide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'Ammonia deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'Sulfate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'Ammonium deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'Methane sulfonic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'Methyl glyoxal deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'Stratospheric ozone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'Radon deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'Lead deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'Nitrogen monoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'Hydroperoxy radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'Methylperoxy radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'Hydroxyl radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'Nitrogen dioxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'Nitrate radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'Dinitrogen pentoxide deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'Pernitric acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'Peroxy acetyl radical deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'Organic ethers deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'PAR budget corrector deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'NO to NO2 operator deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'NO to alkyl nitrate operator deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'Amine deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'Polar stratospheric cloud deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'Methanol deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'Formic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'Methacrylic acid deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'Ethane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'Ethanol deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'Propane deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'Propene deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'Terpenes deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'Methacrolein MVK deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'Nitrate deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'Acetone deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'Acetone product deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'IC3H7O2 deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'HYPROPO2 deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'Nitrogen oxides Transp deposition velocity' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Total sky direct solar radiation at surface -'Total sky direct solar radiation at surface' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'Clear-sky direct solar radiation at surface' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'Cloud base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Zero degree level -'Zero degree level' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; - } -#Horizontal visibility -'Horizontal visibility' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'Maximum temperature at 2 metres in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'Minimum temperature at 2 metres in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'Soil wetness index in layer 1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'Soil wetness index in layer 2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'Soil wetness index in layer 3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'Soil wetness index in layer 4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of Zero Deg Wet Bulb Temperature -'Height of Zero Deg Wet Bulb Temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of One Deg Wet Bulb Temperature -'Height of One Deg Wet Bulb Temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Total column rain water -'Total column rain water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'Total column snow water' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'Canopy cover fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'Soil texture fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'Ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Surface solar radiation downward clear-sky -'Surface solar radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'Surface thermal radiation downward clear-sky' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'Surface short wave-effective total cloudiness' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#100 metre wind speed -'100 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; - } -#Irrigation fraction -'Irrigation fraction' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'Irrigation' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'Surface long wave-effective total cloudiness' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'Stream function gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'Velocity potential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'Potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'Equivalent potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'Saturated equivalent potential temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'U component of divergent wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'V component of divergent wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'U component of rotational wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'V component of rotational wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'Unbalanced component of temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'Unbalanced component of logarithm of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'Unbalanced component of divergence gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'Reserved for future unbalanced components' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'Lake cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'Low vegetation cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'High vegetation cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'Type of low vegetation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'Type of high vegetation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'Sea-ice cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'Snow albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'Snow density gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'Sea surface temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'Ice surface temperature layer 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'Ice surface temperature layer 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'Ice surface temperature layer 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'Ice surface temperature layer 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'Volumetric soil water layer 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'Volumetric soil water layer 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'Volumetric soil water layer 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'Volumetric soil water layer 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'Soil type gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'Snow evaporation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'Snowmelt gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'Solar duration gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'Direct solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'Magnitude of turbulent surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'10 metre wind gust gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'Large-scale precipitation fraction gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'Maximum 2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'Minimum 2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'Montgomery potential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'Pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'Mean 2 metre temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'Mean 2 metre dewpoint temperature in the last 24 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'Downward UV radiation at the surface gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'Photosynthetically active radiation at the surface gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'Convective available potential energy gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'Potential vorticity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'Total precipitation from observations gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'Observation count gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'Start time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'Finish time for skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'Skin temperature difference' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'Leaf area index, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'Leaf area index, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'Minimum stomatal resistance, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'Minimum stomatal resistance, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'Biome cover, low vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'Biome cover, high vegetation' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'Total column liquid water' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'Total column ice water' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'Experimental product' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'Maximum temperature at 2 metres gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'Minimum temperature at 2 metres gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10 metre wind gust in the last 6 hours gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'Vertically integrated total energy' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'Atmospheric tide gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'Budget values gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'Geopotential gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'Temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'U component of wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'V component of wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'Specific humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'Surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'vertical velocity (pressure) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'Total column water gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'Total column water vapour gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'Vorticity (relative) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'Soil temperature level 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'Soil wetness level 1 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'Snow depth gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'Stratiform precipitation (Large-scale precipitation) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'Convective precipitation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'Snowfall (convective + stratiform) gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'Boundary layer dissipation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'Surface sensible heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'Surface latent heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'Charnock gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'Surface net radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'Top net radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'Mean sea level pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'Logarithm of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'Short-wave heating rate gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'Long-wave heating rate gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'Divergence gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'Height gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'Relative humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'Tendency of surface pressure gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'Boundary layer height gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'Standard deviation of orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'Anisotropy of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'Angle of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'Slope of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'Total cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'10 metre U wind component gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'10 metre V wind component gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'2 metre temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'2 metre dewpoint temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'Surface solar radiation downwards gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'Soil temperature level 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'Soil wetness level 2 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'Land-sea mask gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'Surface roughness gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'Albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'Surface thermal radiation downwards gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'Surface net solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'Surface net thermal radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'Top net solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'Top net thermal radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'East-West surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'North-South surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'Evaporation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'Soil temperature level 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'Soil wetness level 3 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'Convective cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'Low cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'Medium cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'High cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'Sunshine duration gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'East-West component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'North-South component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'North-West/South-East component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'North-East/South-West component of sub-gridscale orographic variance gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'Brightness temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'Longitudinal component of gravity wave stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'Meridional component of gravity wave stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'Gravity wave dissipation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'Skin reservoir content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'Vegetation fraction gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'Variance of sub-gridscale orography gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'Maximum temperature at 2 metres since previous post-processing gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'Minimum temperature at 2 metres since previous post-processing gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'Ozone mass mixing ratio gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'Precipitation analysis weights gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'Runoff gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'Total column ozone gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'10 metre wind speed gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'Top net solar radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'Top net thermal radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'Surface net solar radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'Surface net thermal radiation, clear sky gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'TOA incident solar radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'Diabatic heating by radiation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'Diabatic heating by vertical diffusion gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'Diabatic heating by cumulus convection gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'Diabatic heating large-scale condensation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'Vertical diffusion of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'Vertical diffusion of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'East-West gravity wave drag tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'North-South gravity wave drag tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'Convective tendency of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'Convective tendency of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'Vertical diffusion of humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'Humidity tendency by cumulus convection gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'Humidity tendency by large-scale condensation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'Change from removal of negative humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'Total precipitation gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'Instantaneous X surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'Instantaneous Y surface stress gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'Instantaneous surface heat flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'Instantaneous moisture flux gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'Apparent surface humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'Logarithm of surface roughness length for heat gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'Skin temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'Soil temperature level 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'Soil wetness level 4 gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'Temperature of snow layer gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'Convective snowfall gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'Large scale snowfall gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'Accumulated cloud fraction tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'Accumulated liquid water tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'Forecast albedo gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'Forecast surface roughness gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'Forecast logarithm of surface roughness for heat gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'Specific cloud liquid water content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'Specific cloud ice water content gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'Cloud cover gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'Accumulated ice water tendency gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'Ice age gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'Adiabatic tendency of temperature gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'Adiabatic tendency of humidity gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'Adiabatic tendency of zonal wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'Adiabatic tendency of meridional wind gradient' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'Top solar radiation upward' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'Top thermal radiation upward' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'Top solar radiation upward, clear sky' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'Top thermal radiation upward, clear sky' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'Cloud liquid water' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'Cloud fraction' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'Diabatic heating by radiation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'Diabatic heating by vertical diffusion' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'Diabatic heating by cumulus convection' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'Diabatic heating by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'Vertical diffusion of zonal wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'Vertical diffusion of meridional wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'East-West gravity wave drag' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'North-South gravity wave drag' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'Vertical diffusion of humidity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'Humidity tendency by cumulus convection' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'Humidity tendency by large-scale condensation' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'Adiabatic tendency of temperature' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'Adiabatic tendency of humidity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'Adiabatic tendency of zonal wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'Adiabatic tendency of meridional wind' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'Mean vertical velocity' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'2m temperature anomaly of at least +2K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'2m temperature anomaly of at least +1K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'2m temperature anomaly of at least 0K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'2m temperature anomaly of at most -1K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'2m temperature anomaly of at most -2K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'Total precipitation anomaly of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'Total precipitation anomaly of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'Total precipitation anomaly of at least 0 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'Surface temperature anomaly of at least 0K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'Mean sea level pressure anomaly of at least 0 Pa' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'Height of 0 degree isotherm probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'Height of snowfall limit probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'Showalter index probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'Whiting index probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'Temperature anomaly less than -2 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'Temperature anomaly of at least +2 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'Temperature anomaly less than -8 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'Temperature anomaly less than -4 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'Temperature anomaly greater than +4 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'Temperature anomaly greater than +8 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'10 metre wind gust probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'Convective available potential energy probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'Total precipitation less than 0.1 mm' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'Total precipitation rate less than 1 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'Total precipitation rate of at least 3 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'Total precipitation rate of at least 5 mm/day' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10 metre Wind speed of at least 10 m/s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10 metre Wind speed of at least 15 m/s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre Wind gust of at least 25 m/s -'10 metre Wind gust of at least 25 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre temperature less than 273.15 K -'2 metre temperature less than 273.15 K' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'Significant wave height of at least 2 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 5 ; - scaledValueOfLowerLimit = 2 ; - } -#Significant wave height of at least 4 m -'Significant wave height of at least 4 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 4 ; - probabilityType = 3 ; - } -#Significant wave height of at least 6 m -'Significant wave height of at least 6 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - } -#Significant wave height of at least 8 m -'Significant wave height of at least 8 m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 8 ; - } -#Mean wave period of at least 8 s -'Mean wave period of at least 8 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'Mean wave period of at least 10 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'Mean wave period of at least 12 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'Mean wave period of at least 15 s' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'Geopotential probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'Temperature anomaly probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'Soil temperature level 1 probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'Snowfall (convective + stratiform) probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'Mean sea level pressure probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'Total cloud cover probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'10 metre speed probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'Maximum 2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'Minimum 2 metre temperature probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'Total precipitation probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'Significant wave height probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'Mean wave period probability' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'2m temperature probability less than -10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'2m temperature probability less than -5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'2m temperature probability less than 0 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'2m temperature probability less than 5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'2m temperature probability less than 10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'2m temperature probability greater than 25 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'2m temperature probability greater than 30 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'2m temperature probability greater than 35 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'2m temperature probability greater than 40 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'2m temperature probability greater than 45 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'Minimum 2 metre temperature probability less than -10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'Minimum 2 metre temperature probability less than -5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'Minimum 2 metre temperature probability less than 0 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'Minimum 2 metre temperature probability less than 5 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'Minimum 2 metre temperature probability less than 10 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'Maximum 2 metre temperature probability greater than 25 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'Maximum 2 metre temperature probability greater than 30 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'Maximum 2 metre temperature probability greater than 35 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'Maximum 2 metre temperature probability greater than 40 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'Maximum 2 metre temperature probability greater than 45 C' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10 metre wind speed probability of at least 10 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10 metre wind speed probability of at least 15 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10 metre wind speed probability of at least 20 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10 metre wind speed probability of at least 35 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10 metre wind speed probability of at least 50 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10 metre wind gust probability of at least 20 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10 metre wind gust probability of at least 35 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10 metre wind gust probability of at least 50 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10 metre wind gust probability of at least 75 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10 metre wind gust probability of at least 100 m/s' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'Total precipitation probability of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'Total precipitation probability of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'Total precipitation probability of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'Total precipitation probability of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'Total precipitation probability of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'Total precipitation probability of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'Total precipitation probability of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'Total precipitation probability of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'Total precipitation probability of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'Total precipitation probability of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'Total precipitation probability of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'Snowfall probability of at least 1 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'Snowfall probability of at least 5 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'Snowfall probability of at least 10 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'Snowfall probability of at least 20 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'Snowfall probability of at least 40 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'Snowfall probability of at least 60 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'Snowfall probability of at least 80 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'Snowfall probability of at least 100 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'Snowfall probability of at least 150 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'Snowfall probability of at least 200 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'Snowfall probability of at least 300 mm' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'Total Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'Total Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'Total Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'Total Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'Total Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'Total Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'Total Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'Total Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'Total Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'Total Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'High Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'High Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'High Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'High Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'High Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'High Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'High Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'High Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'High Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'High Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'Medium Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'Medium Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'Medium Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'Medium Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'Medium Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'Medium Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'Medium Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'Medium Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'Medium Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'Medium Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'Low Cloud Cover probability greater than 10%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'Low Cloud Cover probability greater than 20%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'Low Cloud Cover probability greater than 30%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'Low Cloud Cover probability greater than 40%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'Low Cloud Cover probability greater than 50%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'Low Cloud Cover probability greater than 60%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'Low Cloud Cover probability greater than 70%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'Low Cloud Cover probability greater than 80%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'Low Cloud Cover probability greater than 90%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'Low Cloud Cover probability greater than 99%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'Maximum of significant wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'Period corresponding to maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'Maximum individual wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'Model bathymetry' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'Mean wave period based on first moment' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean wave period based on second moment -'Mean wave period based on second moment' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'Wave spectral directional width' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'Mean wave period based on first moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'Mean wave period based on second moment for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'Wave spectral directional width for wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'Mean wave period based on first moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'Mean wave period based on second moment for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'Wave spectral directional width for swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak period of 1D spectra -'Peak period of 1D spectra' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'Coefficient of drag with waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'Mean direction of wind waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'Significant height of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'Mean direction of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'Mean period of total swell' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'Standard deviation wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'Mean wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'Standard deviation of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'Mean square slope of waves' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'Altimeter wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'Altimeter corrected wave height' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'Altimeter range relative correction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'10 metre wind direction' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'2D wave spectra (multiple)' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'2D wave spectra (single)' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'Wave spectral kurtosis' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'Benjamin-Feir index' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'Wave spectral peakedness' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'Ocean potential temperature' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'Ocean salinity' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'Ocean potential density' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'Ocean U wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'Ocean V wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'Ocean W wind component' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'Richardson number' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'U*V product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'U*T product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'V*T product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'U*U product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'V*V product' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'UV - U~V~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'UT - U~T~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'VT - V~T~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'UU - U~U~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'VV - V~V~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'Sea level' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'Barotropic stream function' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'Depth' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'U stress' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'V stress' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'Net surface heat flux' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'Surface solar radiation' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'P-E' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'Heat flux correction' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'Observed sea surface temperature' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'Observed heat flux' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'In situ Temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Ocean potential temperature -'Ocean potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Salinity -'Salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Ocean current zonal component -'Ocean current zonal component' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; - } -#Ocean current meridional component -'Ocean current meridional component' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; - } -#Ocean current vertical component -'Ocean current vertical component' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'Modulus of strain rate tensor' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'Vertical viscosity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'Vertical diffusivity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'Bottom level Depth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sigma-theta -'Sigma-theta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'Richardson number' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'UV product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'UT product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'VT product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'UU product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'VV product' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level -'Sea level' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; - } -#Sea level previous timestep -'Sea level previous timestep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Barotropic stream function -'Barotropic stream function' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'Bottom Pressure (equivalent height)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'Steric height' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'Curl of Wind Stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'Divergence of wind stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#U stress -'U stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#V stress -'V stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'Turbulent kinetic energy input' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'Net surface heat flux' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'Absorbed solar radiation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'Precipitation - evaporation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'Specified sea surface temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'Specified surface heat flux' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'Diagnosed sea surface temperature error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'Heat flux correction' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#20 degrees isotherm depth -'20 degrees isotherm depth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; - } -#Average potential temperature in the upper 300m -'Average potential temperature in the upper 300m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'Vertically integrated zonal velocity (previous time step)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'Vertically Integrated meridional velocity (previous time step)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'Vertically integrated zonal volume transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'Vertically integrated meridional volume transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'Vertically integrated zonal heat transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'Vertically integrated meridional heat transport' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'U velocity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'Depth of the velocity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'Salinity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'Depth of salinity maximum' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Average salinity in the upper 300m -'Average salinity in the upper 300m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; - } -#Layer Thickness at scalar points -'Layer Thickness at scalar points' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'Layer Thickness at vector points' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'Potential temperature increment' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'Potential temperature analysis error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'Background potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'Analysed potential temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'Potential temperature background error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'Analysed salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'Salinity increment' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'Estimated Bias in Temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'Estimated Bias in Salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'Zonal Velocity increment (from balance operator)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'Meridional Velocity increment (from balance operator)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'Salinity increment (from salinity data)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'Salinity analysis error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'Background Salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'Salinity background error' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'Estimated temperature bias from assimilation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'Estimated salinity bias from assimilation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'Temperature increment from relaxation term' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'Salinity increment from relaxation term' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Bias in the zonal pressure gradient (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Bias in the meridional pressure gradient (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'Estimated temperature bias from relaxation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'Estimated salinity bias from relaxation' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'First guess bias in temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'First guess bias in salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'Applied bias in pressure' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'FG bias in pressure' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'Bias in temperature(applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'Bias in salinity (applied)' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'10 metre wind gust during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'vertical velocity (pressure)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'Precipitable water content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'Soil wetness level 1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Snow depth -'Snow depth' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 141 ; - } -#Large-scale precipitation -'Large-scale precipitation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'Snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'Height' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'East-West surface stress' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'North-South surface stress' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'Soil wetness level 3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'Skin reservoir content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'Percentage of vegetation' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'Maximum temperature at 2 metres during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'Minimum temperature at 2 metres during averaging time' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'Standard deviation of geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'Covariance of temperature and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'Standard deviation of temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'Covariance of specific humidity and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'Covariance of specific humidity and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'Standard deviation of specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'Covariance of U component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'Covariance of U component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'Covariance of U component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'Standard deviation of U velocity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'Covariance of V component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'Covariance of V component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'Covariance of V component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'Covariance of V component and U component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'Standard deviation of V component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'Covariance of W component and geopotential' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'Covariance of W component and temperature' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'Covariance of W component and specific humidity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'Covariance of W component and U component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'Covariance of W component and V component' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'Standard deviation of vertical velocity' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'Instantaneous surface heat flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'Cloud liquid water content' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'Forecast albedo' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'Momentum flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'Gravity wave dissipation flux' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'Heaviside beta function' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'Surface geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'Vertical integral of mass of atmosphere' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'Vertical integral of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'Vertical integral of water vapour' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'Vertical integral of cloud liquid water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'Vertical integral of cloud frozen water' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'Vertical integral of ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'Vertical integral of kinetic energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'Vertical integral of thermal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'Vertical integral of potential+internal energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'Vertical integral of potential+internal+latent energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'Vertical integral of total energy' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'Vertical integral of energy conversion' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'Vertical integral of eastward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'Vertical integral of northward mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'Vertical integral of eastward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'Vertical integral of northward kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'Vertical integral of eastward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'Vertical integral of northward heat flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'Vertical integral of eastward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'Vertical integral of northward water vapour flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'Vertical integral of eastward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'Vertical integral of northward geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'Vertical integral of eastward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'Vertical integral of northward total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'Vertical integral of eastward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'Vertical integral of northward ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'Vertical integral of divergence of mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'Vertical integral of divergence of kinetic energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'Vertical integral of divergence of thermal energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'Vertical integral of divergence of moisture flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'Vertical integral of divergence of geopotential flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'Vertical integral of divergence of total energy flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'Vertical integral of divergence of ozone flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'Tendency of short wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'Tendency of long wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'Tendency of clear sky short wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'Tendency of clear sky long wave radiation' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'Updraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'Downdraught mass flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'Updraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'Downdraught detrainment rate' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'Total precipitation flux' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'Turbulent diffusion coefficient for heat' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'Tendency of temperature due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'Tendency of specific humidity due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'Tendency of u component due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'Tendency of v component due to physics' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'Variance of geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'Covariance of geopotential/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'Variance of temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'Covariance of geopotential/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'Covariance of temperature/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'Variance of specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'Covariance of u component/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'Covariance of u component/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'Covariance of u component/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'Variance of u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'Covariance of v component/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'Covariance of v component/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'Covariance of v component/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'Covariance of v component/u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'Variance of v component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'Covariance of omega/geopotential' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'Covariance of omega/temperature' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'Covariance of omega/specific humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'Covariance of omega/u component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'Covariance of omega/v component' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'Variance of omega' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'Variance of surface pressure' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'Variance of relative humidity' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'Covariance of u component/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'Covariance of v component/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'Covariance of omega/ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'Variance of ozone' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'Soil wetness level 2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'Stream function anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'Velocity potential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'Potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'Equivalent potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'Saturated equivalent potential temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'U component of divergent wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'V component of divergent wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'U component of rotational wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'V component of rotational wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'Unbalanced component of temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'Unbalanced component of logarithm of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'Unbalanced component of divergence anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'Lake cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'Low vegetation cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'High vegetation cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'Type of low vegetation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'Type of high vegetation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'Sea-ice cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'Snow albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'Snow density anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'Sea surface temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'Ice surface temperature anomaly layer 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'Ice surface temperature anomaly layer 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'Ice surface temperature anomaly layer 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'Ice surface temperature anomaly layer 4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'Volumetric soil water anomaly layer 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'Volumetric soil water anomaly layer 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'Volumetric soil water anomaly layer 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'Volumetric soil water anomaly layer 4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'Soil type anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'Solar duration anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'Direct solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'10 metre wind gust anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'Maximum 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'Minimum 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'Montgomery potential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'Pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'Mean 2 metre temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'Mean 2 metre dewpoint temperature in the last 24 hours anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'Downward UV radiation at the surface anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'Photosynthetically active radiation at the surface anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'Convective available potential energy anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'Potential vorticity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'Total precipitation from observations anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'Observation count anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'Start time for skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'Finish time for skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'Skin temperature difference anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'Total column liquid water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'Total column ice water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'Vertically integrated total energy anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Generic parameter for sensitive area prediction' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'Atmospheric tide anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'Budget values anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'Geopotential anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'Temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'U component of wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'V component of wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'Specific humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'Surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'Vertical velocity (pressure) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'Total column water anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'Total column water vapour anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'Relative vorticity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'Soil temperature anomaly level 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'Soil wetness anomaly level 1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'Snow depth anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'Stratiform precipitation (Large-scale precipitation) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'Convective precipitation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'Snowfall (convective + stratiform) anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'Surface sensible heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'Surface latent heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'Charnock anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'Top net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'Mean sea level pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'Logarithm of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'Relative divergence anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'Height anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'Relative humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'Tendency of surface pressure anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'Boundary layer height anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'Standard deviation of orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'Anisotropy of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'Angle of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'Slope of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'Total cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'10 metre U wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'10 metre V wind component anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'2 metre temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'2 metre dewpoint temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'Surface solar radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'Soil temperature anomaly level 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'Soil wetness anomaly level 2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'Surface roughness anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'Albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'Surface thermal radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'Surface net solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'Surface net thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'Top net solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'Top net thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'East-West surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'North-South surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'Evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'Soil temperature anomaly level 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'Soil wetness anomaly level 3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'Convective cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'Low cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'Medium cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'High cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'Sunshine duration anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'East-West component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'North-South component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'North-West/South-East component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'North-East/South-West component of sub-gridscale orographic variance anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'Brightness temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'Skin reservoir content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'Vegetation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'Variance of sub-gridscale orography anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'Maximum temperature at 2 metres anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'Minimum temperature at 2 metres anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'Ozone mass mixing ratio anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'Precipitation analysis weights anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'Runoff anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'Total column ozone anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'10 metre wind speed anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'Top net solar radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'Top net thermal radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'Surface net solar radiation clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'Solar insolation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'Diabatic heating by radiation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'Diabatic heating by vertical diffusion anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'Diabatic heating by cumulus convection anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'Diabatic heating by large-scale condensation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'Vertical diffusion of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'Vertical diffusion of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'East-West gravity wave drag tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'North-South gravity wave drag tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'Convective tendency of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'Convective tendency of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'Vertical diffusion of humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'Humidity tendency by cumulus convection anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'Humidity tendency by large-scale condensation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'Change from removal of negative humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'Total precipitation anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'Instantaneous X surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'Instantaneous Y surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'Instantaneous surface heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'Instantaneous moisture flux anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'Apparent surface humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'Logarithm of surface roughness length for heat anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'Skin temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'Soil temperature level 4 anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'Soil wetness level 4 anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'Temperature of snow layer anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'Accumulated cloud fraction tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'Accumulated liquid water tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'Forecast albedo anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'Forecast surface roughness anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'Forecast logarithm of surface roughness for heat anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'Cloud liquid water content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'Cloud ice water content anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'Cloud cover anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'Accumulated ice water tendency anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'Ice age anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'Adiabatic tendency of temperature anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'Adiabatic tendency of humidity anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'Adiabatic tendency of zonal wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'Adiabatic tendency of meridional wind anomaly' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'Snow evaporation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'Snowmelt' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'Magnitude of turbulent surface stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'Large-scale precipitation fraction' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) -'Stratiform precipitation (Large-scale precipitation)' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) -'Snowfall (convective + stratiform)' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Surface net radiation -'Surface net radiation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Short-wave heating rate -'Short-wave heating rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'Long-wave heating rate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Surface solar radiation -'Surface solar radiation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Surface thermal radiation -'Surface thermal radiation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Top solar radiation -'Top solar radiation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Top thermal radiation -'Top thermal radiation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress -'East-West surface stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress -'North-South surface stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'Evaporation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Sunshine duration -'Sunshine duration' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'Longitudinal component of gravity wave stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'Meridional component of gravity wave stress' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'Gravity wave dissipation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Runoff -'Runoff' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'Top net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'Top net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'Surface net solar radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'Surface net thermal radiation, clear sky' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation -'Solar insolation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Total precipitation -'Total precipitation' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'Convective snowfall' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'Large scale snowfall' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'Snow evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'Snowmelt anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'Magnitude of turbulent surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'Large-scale precipitation fraction anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'Stratiform precipitation (Large-scale precipitation) anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'Convective precipitation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'Snowfall (convective + stratiform) anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'Boundary layer dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'Surface sensible heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'Surface latent heat flux anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'Surface net radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'Short-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'Long-wave heating rate anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomaly -'Surface solar radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomaly -'Surface thermal radiation downwards anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomaly -'Surface solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomaly -'Surface thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomaly -'Top solar radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomaly -'Top thermal radiation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'East-West surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'North-South surface stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'Evaporation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'Sunshine duration anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'Longitudinal component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'Meridional component of gravity wave stress anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'Gravity wave dissipation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomaly -'Runoff anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'Top net solar radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'Top net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'Surface net solar radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'Surface net thermal radiation, clear sky anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'Solar insolation anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'Total precipitation anomalous rate of accumulation' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'Convective snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'Large scale snowfall anomaly' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'Sub-surface runoff' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'10 metre wind gust in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'Mean sea surface temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'1.5m specific humidity' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Sea-ice thickness -'Sea-ice thickness' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; - } -#Liquid water potential temperature -'Liquid water potential temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'Fraction of sea-ice in sea' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'Open-sea surface temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'Volumetric soil water layer 1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'Volumetric soil water layer 2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'Volumetric soil water layer 3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'Volumetric soil water layer 4' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'10m wind gust in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'1.5m temperature - mean in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'Net primary productivity' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'10m U wind over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'10m V wind over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'1.5m temperature over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'1.5m dewpoint temperature over land' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'Top incoming solar radiation' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'Top outgoing solar radiation' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'Ocean ice concentration' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'Ocean mean ice depth' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'Soil temperature layer 1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'Average potential temperature in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'1.5m temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'1.5m dewpoint temperature' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'Soil temperature layer 2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'Average salinity in upper 293.4m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'Soil temperature layer 3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'1.5m temperature - maximum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'1.5m temperature - minimum in the last 24 hours' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'Soil temperature layer 4' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'Total soil wetness' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'Top net solar radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Snow depth -'Snow depth' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; - } -#Field capacity -'Field capacity' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'Wilting point' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'Roughness length' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'Total soil moisture' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'2 metre dewpoint temperature difference' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'downward shortwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'upward shortwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'downward longwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'upward longwave radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'downwd photosynthetic active radiant flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'net shortwave flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'net longwave flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'total net radiative flux density' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'downw shortw radiant flux density, cloudfree part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'upw shortw radiant flux density, cloudy part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'downw longw radiant flux density, cloudfree part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'upw longw radiant flux density, cloudy part' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'shortwave radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'longwave radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'total radiative heating rate' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'soil heat flux, surface' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'soil heat flux, bottom of layer' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'fractional cloud cover' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'cloud cover, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'specific cloud water content' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'cloud water content, grid scale, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'specific cloud ice content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'cloud ice content, grid scale, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'specific rainwater content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'specific snow content, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'specific rainwater content, gs, vert. integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'specific snow content, gs, vert. integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'total column water' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'vert. integral of divergence of tot. water content' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'cloud covers CH_CM_CL (000...888)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'cloud cover CH (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'cloud cover CM (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'cloud cover CL (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'total cloud cover (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'fog (0..8)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'fog' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'cloud cover, convective cirrus' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'specific cloud water content, convective clouds' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'cloud water content, conv clouds, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'specific cloud ice content, convective clouds' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'cloud ice content, conv clouds, vert integrated' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'convective mass flux' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'Updraft velocity, convection' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'entrainment parameter, convection' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'cloud base, convective clouds (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'cloud top, convective clouds (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'convective layers (00...77) (BKE)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'KO-index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'convection base index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'convection top index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'convective temperature tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'convective tendency of specific humidity' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'convective tendency of total heat' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'convective tendency of total water' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'convective momentum tendency (X-component)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'convective momentum tendency (Y-component)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'convective vorticity tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'convective divergence tendency' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'top of dry convection (above msl)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'dry convection top index' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'height of 0 degree Celsius isotherm above msl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'height of snow-fall limit' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'spec. content of precip. particles' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'surface precipitation rate, rain, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'surface precipitation rate, snow, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'surface precipitation amount, rain, grid scale' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'surface precipitation rate, rain, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'surface precipitation rate, snow, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'surface precipitation amount, rain, convective' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'deviation of pressure from reference value' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'coefficient of horizontal diffusion' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'Maximum wind velocity' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'water content of interception store' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'snow temperature' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'ice surface temperature' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'convective available potential energy' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'Indicates a missing value' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; -} -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'SO2 precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'Soil clay content' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'Methane' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'Total column Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#Total column Methane -'Total column Methane' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'Number of positive FRP pixels per grid cell' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'Radon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'Total column Radon' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'Sea Salt Aerosol (5 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'Dust Aerosol (0.03 - 0.55 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'Dust Aerosol (0.55 - 0.9 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'Dust Aerosol (0.9 - 20 um) Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'Hydrophobic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'Hydrophilic Organic Matter Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'Hydrophobic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'Hydrophilic Black Carbon Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'Sulphate Aerosol Mixing Ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'Aerosol type 12 mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'Aerosol type 1 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'Aerosol type 2 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'Aerosol type 3 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'Aerosol type 4 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'Aerosol type 5 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'Aerosol type 6 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'Aerosol type 7 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'Aerosol type 8 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'Aerosol type 9 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'Aerosol type 10 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'Aerosol type 11 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'Aerosol type 12 source/gain accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'Aerosol type 1 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'Aerosol type 2 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'Aerosol type 3 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'Aerosol type 4 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'Aerosol type 5 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'Aerosol type 6 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'Aerosol type 7 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'Aerosol type 8 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'Aerosol type 9 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'Aerosol type 10 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'Aerosol type 11 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'Aerosol type 12 sink/loss accumulated' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'Aerosol precursor mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'Aerosol small mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'Aerosol large mode mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'Aerosol precursor optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'Aerosol small mode optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'Aerosol large mode optical depth' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'Dust emission potential' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'Lifting threshold speed' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'Soil clay content' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'Methane' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'Total column Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'Total column Methane' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'Total column Nitrous oxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'Ocean flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'Natural biosphere flux of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'Anthropogenic emissions of Carbon Dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'Methane Surface Fluxes' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'Methane loss rate due to radical hydroxyl (OH)' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'Wildfire overall flux of burnt Carbon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'Wildfire fraction of C4 plants' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'Wildfire vegetation map index' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'Wildfire Combustion Completeness' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'Wildfire Fuel Load: Carbon per unit area' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'Wildfire fraction of area observed' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'Wildfire observed area' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'Wildfire radiative power' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'Wildfire combustion rate' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'Total column Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'Total column Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'Total column Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'Total column Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'Total Column Nitrogen Oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'Reactive tracer 1 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'Total column GRG tracer 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'Reactive tracer 2 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'Total column GRG tracer 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'Reactive tracer 3 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'Total column GRG tracer 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'Reactive tracer 4 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'Total column GRG tracer 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'Reactive tracer 5 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'Total column GRG tracer 5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'Reactive tracer 6 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'Total column GRG tracer 6' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'Reactive tracer 7 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'Total column GRG tracer 7' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'Reactive tracer 8 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'Total column GRG tracer 8' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'Reactive tracer 9 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'Total column GRG tracer 9' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'Reactive tracer 10 mass mixing ratio' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'Total column GRG tracer 10' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'Surface flux Nitrogen oxides' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'Surface flux Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'Surface flux Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'Surface flux Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'Surface flux Formaldehyde' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'Surface flux GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'Surface flux reactive tracer 1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'Surface flux reactive tracer 2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'Surface flux reactive tracer 3' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'Surface flux reactive tracer 4' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'Surface flux reactive tracer 5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'Surface flux reactive tracer 6' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'Surface flux reactive tracer 7' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'Surface flux reactive tracer 8' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'Surface flux reactive tracer 9' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'Surface flux reactive tracer 10' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'Radon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'Total column Radon' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'Total column Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'Anthropogenic Emissions of Sulphur Hexafluoride' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'GEMS Total column ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'Total Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'Sea Salt Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'Dust Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'Organic Matter Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'Black Carbon Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'Sulphate Aerosol Optical Depth at 550nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'Total Aerosol Optical Depth at 469nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'Total Aerosol Optical Depth at 670nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'Total Aerosol Optical Depth at 865nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'Total Aerosol Optical Depth at 1240nm' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'Total precipitation observation count' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'Friction velocity' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'Mean temperature at 2 metres' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'Mean of 10 metre wind speed' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'Mean total cloud cover' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'Lake depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'Lake mix-layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'Lake mix-layer depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'Lake bottom temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'Lake total layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'Lake shape factor' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'Lake ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'Lake ice depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'Minimum vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'Mean vertical gradient of refractivity inside trapping layer' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'Duct base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'Trapping layer base height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'Trapping layer top height' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'Neutral wind at 10 m u-component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'Neutral wind at 10 m v-component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'Surface temperature significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'Mean sea level pressure significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'2 metre temperature significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'Total precipitation significance' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'U-component stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'V-component stokes drift' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire radiative power maximum -'Wildfire radiative power maximum' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'V-tendency from non-orographic wave drag' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'U-tendency from non-orographic wave drag' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#100 metre U wind component -'100 metre U wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; - } -#100 metre V wind component -'100 metre V wind component' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ASCAT first soil moisture CDF matching parameter' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ASCAT second soil moisture CDF matching parameter' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def deleted file mode 100644 index 7ff7d1cd..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/paramId.def +++ /dev/null @@ -1,17509 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'131060' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; - } -#Total precipitation of at least 5 mm -'131061' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; - } -#Total precipitation of at least 40 mm -'131082' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; - } -#Total precipitation of at least 60 mm -'131083' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; - } -#Total precipitation of at least 80 mm -'131084' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; - } -#Total precipitation of at least 100 mm -'131085' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Total precipitation of at least 150 mm -'131086' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; - } -#Total precipitation of at least 200 mm -'131087' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; - } -#Total precipitation of at least 300 mm -'131088' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; - } -#Equivalent potential temperature -'4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'5' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'7' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'8' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'9' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'11' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'12' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'13' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'14' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'15' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'16' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'17' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'18' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'19' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'20' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'21' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'22' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'23' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'25' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'26' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'27' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'28' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'29' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'30' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'32' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'35' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'36' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'37' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'38' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'39' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'40' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'41' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'42' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'44' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'45' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'46' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'47' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'48' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'50' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'51' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'52' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Montgomery potential -'53' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'55' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'56' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'57' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'58' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'62' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'63' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'64' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'65' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'66' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'67' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'68' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'69' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'70' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'71' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'72' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'73' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'74' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Total column liquid water -'78' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; - } -#Total column ice water -'79' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; - } -#Experimental product -'80' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'81' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'82' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'83' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'84' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'85' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'86' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'87' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'88' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'89' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'90' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'91' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'92' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'93' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'94' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'95' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'96' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'97' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'98' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'99' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'100' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'101' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'102' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'103' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'104' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'105' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'106' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'107' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'108' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'109' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'110' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'111' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'112' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'113' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'114' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'115' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'116' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'117' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'118' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'119' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'120' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'123' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'124' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'125' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'126' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'127' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'128' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'137' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'139' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'140' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - unitsFactor = 1000 ; - } -#Large-scale precipitation -'142' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'144' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'148' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'149' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'150' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'152' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'153' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'154' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'158' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'159' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'160' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'161' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'162' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'163' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'164' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'170' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'171' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'174' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'178' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'182' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'183' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'184' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'185' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'186' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'187' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'188' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'190' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'191' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'192' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'193' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'195' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'196' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'197' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'198' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'199' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'200' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'204' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'205' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'206' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'208' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'209' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'210' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'211' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation -'212' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'213' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'214' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'215' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'216' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'217' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'218' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'219' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'220' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'221' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'222' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'223' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'224' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'225' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'226' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'227' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'228' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'229' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'230' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'231' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'232' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'233' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'234' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'236' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'237' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Temperature of snow layer -'238' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } -#Convective snowfall -'239' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'240' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'241' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'242' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'243' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'244' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'245' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'249' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'250' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'251' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'252' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'253' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'254' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'200001' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'200002' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'200003' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'200004' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'200005' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'200011' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'200012' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'200013' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'200014' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'200021' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'200022' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'200023' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'200024' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'200025' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'200026' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'200027' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'200028' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'200029' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'200030' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'200031' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'200032' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'200033' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'200034' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'200035' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'200036' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'200037' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'200038' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'200039' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'200040' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'200041' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'200042' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'200043' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'200044' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'200045' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'200046' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'200047' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'200048' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'200049' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'200050' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'200051' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'200052' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'200053' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'200054' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'200055' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'200056' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'200057' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'200058' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'200059' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'200060' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'200061' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'200062' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'200063' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'200064' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'200065' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'200066' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'200067' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'200068' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'200069' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'200070' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'200071' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'200078' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'200079' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'200080' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'200081' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'200082' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'200083' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'200084' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'200085' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'200086' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'200087' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'200088' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'200089' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'200090' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'200091' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'200092' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'200093' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'200094' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'200095' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'200096' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'200097' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'200098' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'200099' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'200100' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'200101' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'200102' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'200103' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'200104' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'200105' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'200106' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'200107' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'200108' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'200109' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'200110' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'200111' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'200112' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'200113' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'200114' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'200115' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'200116' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'200117' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'200118' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'200119' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'200120' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'200121' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'200122' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'200123' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'200125' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'200126' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'200127' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'200128' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'200129' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'200130' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'200131' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'200132' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'200133' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'200134' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'200135' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'200136' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'200137' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'200138' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'200139' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'200140' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'200141' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'200142' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'200143' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'200144' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'200145' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'200146' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'200147' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'200148' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'200149' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'200150' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'200151' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'200152' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'200153' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'200154' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'200155' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'200156' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'200157' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'200158' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'200159' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'200160' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'200161' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'200162' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'200163' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'200164' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'200165' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'200166' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'200167' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'200169' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'200170' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'200171' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'200172' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'200173' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'200174' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'200175' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'200176' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'200177' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'200178' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'200179' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'200180' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'200181' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'200182' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'200183' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'200184' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'200185' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'200186' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'200187' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'200188' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'200189' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'200190' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'200191' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'200192' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'200193' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'200194' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'200195' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'200196' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'200197' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'200198' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'200199' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'200200' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'200201' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'200202' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'200203' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'200204' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'200205' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'200206' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'200207' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'200208' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'200209' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'200210' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'200211' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'200212' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'200214' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'200215' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'200216' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'200217' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'200218' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'200219' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'200220' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'200221' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'200222' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'200223' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'200224' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'200225' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'200226' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'200227' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'200228' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'200229' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'200230' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'200231' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'200232' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'200233' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'200234' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'200235' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'200236' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'200237' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'200238' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'200239' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'200240' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'200241' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'200242' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'200243' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'200244' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'200245' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'200246' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'200247' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'200248' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'200249' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'200250' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'200251' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'200252' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'200253' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'200254' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'200255' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'151193' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'162114' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'162115' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'162116' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'162117' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'162118' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'162119' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'162120' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'162121' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'162122' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'162123' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'162124' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'162125' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'162126' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'162127' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'162128' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'162129' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'162130' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'162131' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'162132' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'162133' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'162134' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'162135' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'162136' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'162137' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'162138' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'162139' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'162140' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'162141' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'171006' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'171007' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'171121' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'171122' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'210013' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'210014' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'210015' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'210028' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'210029' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'210030' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'210043' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'210044' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'210045' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'210055' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'210056' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'210057' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'210058' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'210059' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Particulate matter d < 1 um -'210072' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'210073' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'210074' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'210079' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Mean altitude of maximum injection -'210119' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'210120' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'210186' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'210187' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'210188' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'210189' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'210190' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'210191' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'210192' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'210193' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'210194' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'210195' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'210196' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'210197' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'210217' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'210218' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'210219' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'210220' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'210221' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'210222' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'210223' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'210224' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'210225' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'210226' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'210227' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'210228' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'210229' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'210230' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Altitude of plume bottom -'210242' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'210243' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'210244' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'210245' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'210246' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Aerosol type 13 mass mixing ratio -'211013' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'211014' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'211015' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'211028' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'211029' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'211030' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'211043' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'211044' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'211045' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'211055' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'211056' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'211119' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'211120' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Experimental product -'212001' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'212002' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'212003' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'212004' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'212005' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'212006' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'212007' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'212008' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'212009' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'212010' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'212011' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'212012' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'212013' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'212014' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'212015' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'212016' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'212017' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'212018' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'212019' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'212020' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'212021' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'212022' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'212023' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'212024' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'212025' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'212026' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'212027' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'212028' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'212029' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'212030' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'212031' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'212032' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'212033' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'212034' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'212035' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'212036' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'212037' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'212038' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'212039' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'212040' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'212041' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'212042' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'212043' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'212044' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'212045' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'212046' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'212047' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'212048' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'212049' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'212050' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'212051' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'212052' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'212053' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'212054' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'212055' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'212056' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'212057' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'212058' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'212059' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'212060' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'212061' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'212062' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'212063' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'212064' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'212065' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'212066' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'212067' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'212068' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'212069' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'212070' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'212071' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'212072' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'212073' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'212074' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'212075' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'212076' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'212077' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'212078' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'212079' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'212080' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'212081' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'212082' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'212083' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'212084' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'212085' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'212086' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'212087' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'212088' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'212089' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'212090' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'212091' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'212092' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'212093' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'212094' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'212095' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'212096' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'212097' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'212098' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'212099' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'212100' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'212101' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'212102' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'212103' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'212104' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'212105' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'212106' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'212107' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'212108' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'212109' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'212110' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'212111' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'212112' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'212113' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'212114' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'212115' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'212116' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'212117' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'212118' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'212119' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'212120' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'212121' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'212122' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'212123' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'212124' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'212125' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'212126' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'212127' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'212128' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'212129' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'212130' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'212131' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'212132' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'212133' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'212134' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'212135' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'212136' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'212137' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'212138' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'212139' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'212140' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'212141' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'212142' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'212143' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'212144' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'212145' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'212146' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'212147' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'212148' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'212149' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'212150' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'212151' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'212152' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'212153' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'212154' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'212155' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'212156' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'212157' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'212158' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'212159' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'212160' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'212161' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'212162' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'212163' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'212164' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'212165' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'212166' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'212167' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'212168' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'212169' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'212170' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'212171' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'212172' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'212173' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'212174' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'212175' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'212176' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'212177' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'212178' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'212179' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'212180' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'212181' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'212182' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'212183' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'212184' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'212185' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'212186' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'212187' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'212188' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'212189' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'212190' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'212191' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'212192' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'212193' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'212194' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'212195' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'212196' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'212197' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'212198' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'212199' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'212200' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'212201' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'212202' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'212203' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'212204' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'212205' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'212206' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'212207' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'212208' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'212209' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'212210' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'212211' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'212212' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'212213' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'212214' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'212215' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'212216' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'212217' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'212218' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'212219' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'212220' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'212221' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'212222' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'212223' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'212224' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'212225' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'212226' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'212227' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'212228' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'212229' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'212230' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'212231' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'212232' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'212233' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'212234' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'212235' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'212236' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'212237' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'212238' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'212239' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'212240' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'212241' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'212242' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'212243' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'212244' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'212245' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'212246' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'212247' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'212248' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'212249' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'212250' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'212251' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'212252' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'212253' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'212254' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'212255' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'213001' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'213002' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'213003' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'213004' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'213005' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -# Cosine of solar zenith angle -'214001' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -# UV biologically effective dose -'214002' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -# UV biologically effective dose clear-sky -'214003' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -# Total surface UV spectral flux (280-285 nm) -'214004' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -# Total surface UV spectral flux (285-290 nm) -'214005' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -# Total surface UV spectral flux (290-295 nm) -'214006' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -# Total surface UV spectral flux (295-300 nm) -'214007' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -# Total surface UV spectral flux (300-305 nm) -'214008' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -# Total surface UV spectral flux (305-310 nm) -'214009' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -# Total surface UV spectral flux (310-315 nm) -'214010' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -# Total surface UV spectral flux (315-320 nm) -'214011' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -# Total surface UV spectral flux (320-325 nm) -'214012' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -# Total surface UV spectral flux (325-330 nm) -'214013' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -# Total surface UV spectral flux (330-335 nm) -'214014' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -# Total surface UV spectral flux (335-340 nm) -'214015' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -# Total surface UV spectral flux (340-345 nm) -'214016' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -# Total surface UV spectral flux (345-350 nm) -'214017' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -# Total surface UV spectral flux (350-355 nm) -'214018' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -# Total surface UV spectral flux (355-360 nm) -'214019' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -# Total surface UV spectral flux (360-365 nm) -'214020' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -# Total surface UV spectral flux (365-370 nm) -'214021' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -# Total surface UV spectral flux (370-375 nm) -'214022' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -# Total surface UV spectral flux (375-380 nm) -'214023' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -# Total surface UV spectral flux (380-385 nm) -'214024' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -# Total surface UV spectral flux (385-390 nm) -'214025' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -# Total surface UV spectral flux (390-395 nm) -'214026' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -# Total surface UV spectral flux (395-400 nm) -'214027' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -# Clear-sky surface UV spectral flux (280-285 nm) -'214028' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -# Clear-sky surface UV spectral flux (285-290 nm) -'214029' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -# Clear-sky surface UV spectral flux (290-295 nm) -'214030' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -# Clear-sky surface UV spectral flux (295-300 nm) -'214031' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -# Clear-sky surface UV spectral flux (300-305 nm) -'214032' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -# Clear-sky surface UV spectral flux (305-310 nm) -'214033' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -# Clear-sky surface UV spectral flux (310-315 nm) -'214034' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -# Clear-sky surface UV spectral flux (315-320 nm) -'214035' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -# Clear-sky surface UV spectral flux (320-325 nm) -'214036' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -# Clear-sky surface UV spectral flux (325-330 nm) -'214037' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -# Clear-sky surface UV spectral flux (330-335 nm) -'214038' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -# Clear-sky surface UV spectral flux (335-340 nm) -'214039' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -# Clear-sky surface UV spectral flux (340-345 nm) -'214040' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -# Clear-sky surface UV spectral flux (345-350 nm) -'214041' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -# Clear-sky surface UV spectral flux (350-355 nm) -'214042' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -# Clear-sky surface UV spectral flux (355-360 nm) -'214043' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -# Clear-sky surface UV spectral flux (360-365 nm) -'214044' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -# Clear-sky surface UV spectral flux (365-370 nm) -'214045' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -# Clear-sky surface UV spectral flux (370-375 nm) -'214046' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -# Clear-sky surface UV spectral flux (375-380 nm) -'214047' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -# Clear-sky surface UV spectral flux (380-385 nm) -'214048' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -# Clear-sky surface UV spectral flux (385-390 nm) -'214049' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -# Clear-sky surface UV spectral flux (390-395 nm) -'214050' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -# Clear-sky surface UV spectral flux (395-400 nm) -'214051' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -# Profile of optical thickness at 340 nm -'214052' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -# Source/gain of sea salt aerosol (0.03 - 0.5 um) -'215001' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -# Source/gain of sea salt aerosol (0.5 - 5 um) -'215002' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -# Source/gain of sea salt aerosol (5 - 20 um) -'215003' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -# Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'215004' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -# Dry deposition of sea salt aerosol (0.5 - 5 um) -'215005' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -# Dry deposition of sea salt aerosol (5 - 20 um) -'215006' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -# Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'215007' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -# Sedimentation of sea salt aerosol (0.5 - 5 um) -'215008' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -# Sedimentation of sea salt aerosol (5 - 20 um) -'215009' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'215010' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'215011' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'215012' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'215013' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'215014' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'215015' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -# Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'215016' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -# Negative fixer of sea salt aerosol (0.5 - 5 um) -'215017' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -# Negative fixer of sea salt aerosol (5 - 20 um) -'215018' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'215019' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'215020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -# Vertically integrated mass of sea salt aerosol (5 - 20 um) -'215021' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -# Sea salt aerosol (0.03 - 0.5 um) optical depth -'215022' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -# Sea salt aerosol (0.5 - 5 um) optical depth -'215023' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -# Sea salt aerosol (5 - 20 um) optical depth -'215024' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -# Source/gain of dust aerosol (0.03 - 0.55 um) -'215025' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -# Source/gain of dust aerosol (0.55 - 9 um) -'215026' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -# Source/gain of dust aerosol (9 - 20 um) -'215027' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -# Dry deposition of dust aerosol (0.03 - 0.55 um) -'215028' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -# Dry deposition of dust aerosol (0.55 - 9 um) -'215029' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -# Dry deposition of dust aerosol (9 - 20 um) -'215030' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -# Sedimentation of dust aerosol (0.03 - 0.55 um) -'215031' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -# Sedimentation of dust aerosol (0.55 - 9 um) -'215032' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -# Sedimentation of dust aerosol (9 - 20 um) -'215033' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'215034' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'215035' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'215036' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'215037' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'215038' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'215039' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -# Negative fixer of dust aerosol (0.03 - 0.55 um) -'215040' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -# Negative fixer of dust aerosol (0.55 - 9 um) -'215041' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -# Negative fixer of dust aerosol (9 - 20 um) -'215042' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'215043' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -# Vertically integrated mass of dust aerosol (0.55 - 9 um) -'215044' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -# Vertically integrated mass of dust aerosol (9 - 20 um) -'215045' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -# Dust aerosol (0.03 - 0.55 um) optical depth -'215046' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -# Dust aerosol (0.55 - 9 um) optical depth -'215047' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -# Dust aerosol (9 - 20 um) optical depth -'215048' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -# Source/gain of hydrophobic organic matter aerosol -'215049' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -# Source/gain of hydrophilic organic matter aerosol -'215050' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -# Dry deposition of hydrophobic organic matter aerosol -'215051' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -# Dry deposition of hydrophilic organic matter aerosol -'215052' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -# Sedimentation of hydrophobic organic matter aerosol -'215053' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -# Sedimentation of hydrophilic organic matter aerosol -'215054' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'215055' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'215056' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -# Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'215057' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -# Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'215058' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -# Negative fixer of hydrophobic organic matter aerosol -'215059' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -# Negative fixer of hydrophilic organic matter aerosol -'215060' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -# Vertically integrated mass of hydrophobic organic matter aerosol -'215061' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -# Vertically integrated mass of hydrophilic organic matter aerosol -'215062' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -# Hydrophobic organic matter aerosol optical depth -'215063' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -# Hydrophilic organic matter aerosol optical depth -'215064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -# Source/gain of hydrophobic black carbon aerosol -'215065' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -# Source/gain of hydrophilic black carbon aerosol -'215066' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -# Dry deposition of hydrophobic black carbon aerosol -'215067' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -# Dry deposition of hydrophilic black carbon aerosol -'215068' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -# Sedimentation of hydrophobic black carbon aerosol -'215069' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -# Sedimentation of hydrophilic black carbon aerosol -'215070' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'215071' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'215072' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -# Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'215073' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -# Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'215074' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -# Negative fixer of hydrophobic black carbon aerosol -'215075' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -# Negative fixer of hydrophilic black carbon aerosol -'215076' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -# Vertically integrated mass of hydrophobic black carbon aerosol -'215077' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -# Vertically integrated mass of hydrophilic black carbon aerosol -'215078' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -# Hydrophobic black carbon aerosol optical depth -'215079' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -# Hydrophilic black carbon aerosol optical depth -'215080' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -# Source/gain of sulphate aerosol -'215081' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -# Dry deposition of sulphate aerosol -'215082' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -# Sedimentation of sulphate aerosol -'215083' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -# Wet deposition of sulphate aerosol by large-scale precipitation -'215084' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -# Wet deposition of sulphate aerosol by convective precipitation -'215085' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -# Negative fixer of sulphate aerosol -'215086' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -# Vertically integrated mass of sulphate aerosol -'215087' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -# Sulphate aerosol optical depth -'215088' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'215089' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'215090' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'215091' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'215092' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'215093' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'215094' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'215095' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'215096' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'215097' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'215098' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'215099' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'215100' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'215101' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'215102' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'215103' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'215104' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'215105' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'215106' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'215107' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'215108' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'215109' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'215110' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'215111' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'215112' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'215113' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'215114' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'215115' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'215116' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'215117' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'215118' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'215119' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'215120' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'215121' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'215122' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'215123' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'215124' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'215125' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'215126' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'215127' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'215128' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'215129' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'215130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'215131' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'215132' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'215133' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'215134' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'215135' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'215136' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'215137' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'215138' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'215139' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'215140' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'215141' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'215142' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'215143' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'215144' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'215145' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'215146' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'215147' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'215148' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'215149' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Assimetry factor at 340 nm -'215150' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Assimetry factor at 355 nm -'215151' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Assimetry factor at 380 nm -'215152' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Assimetry factor at 400 nm -'215153' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Assimetry factor at 440 nm -'215154' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Assimetry factor at 469 nm -'215155' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Assimetry factor at 500 nm -'215156' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Assimetry factor at 532 nm -'215157' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Assimetry factor at 550 nm -'215158' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Assimetry factor at 645 nm -'215159' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Assimetry factor at 670 nm -'215160' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Assimetry factor at 800 nm -'215161' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Assimetry factor at 858 nm -'215162' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Assimetry factor at 865 nm -'215163' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Assimetry factor at 1020 nm -'215164' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Assimetry factor at 1064 nm -'215165' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Assimetry factor at 1240 nm -'215166' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Assimetry factor at 1640 nm -'215167' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'215168' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'215169' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'215170' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'215171' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'215172' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'215173' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'215174' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'215175' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'215176' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'215177' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'215178' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Assimetry factor at 2130 nm -'215179' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'215180' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'215181' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'215182' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'215183' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'215184' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'215185' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'215186' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'215187' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'215188' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Experimental product -'216001' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'216002' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'216003' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'216004' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'216005' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'216006' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'216007' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'216008' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'216009' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'216010' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'216011' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'216012' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'216013' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'216014' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'216015' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'216016' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'216017' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'216018' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'216019' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'216020' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'216021' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'216022' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'216023' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'216024' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'216025' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'216026' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'216027' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'216028' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'216029' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'216030' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'216031' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'216032' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'216033' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'216034' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'216035' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'216036' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'216037' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'216038' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'216039' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'216040' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'216041' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'216042' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'216043' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'216044' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'216045' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'216046' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'216047' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'216048' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'216049' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'216050' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'216051' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'216052' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'216053' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'216054' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'216055' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'216056' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'216057' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'216058' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'216059' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'216060' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'216061' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'216062' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'216063' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'216064' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'216065' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'216066' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'216067' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'216068' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'216069' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'216070' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'216071' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'216072' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'216073' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'216074' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'216075' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'216076' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'216077' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'216078' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'216079' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'216080' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'216081' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'216082' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'216083' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'216084' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'216085' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'216086' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'216087' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'216088' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'216089' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'216090' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'216091' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'216092' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'216093' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'216094' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'216095' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'216096' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'216097' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'216098' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'216099' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'216100' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'216101' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'216102' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'216103' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'216104' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'216105' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'216106' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'216107' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'216108' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'216109' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'216110' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'216111' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'216112' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'216113' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'216114' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'216115' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'216116' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'216117' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'216118' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'216119' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'216120' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'216121' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'216122' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'216123' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'216124' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'216125' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'216126' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'216127' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'216128' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'216129' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'216130' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'216131' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'216132' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'216133' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'216134' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'216135' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'216136' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'216137' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'216138' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'216139' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'216140' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'216141' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'216142' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'216143' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'216144' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'216145' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'216146' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'216147' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'216148' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'216149' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'216150' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'216151' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'216152' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'216153' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'216154' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'216155' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'216156' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'216157' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'216158' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'216159' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'216160' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'216161' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'216162' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'216163' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'216164' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'216165' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'216166' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'216167' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'216168' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'216169' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'216170' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'216171' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'216172' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'216173' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'216174' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'216175' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'216176' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'216177' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'216178' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'216179' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'216180' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'216181' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'216182' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'216183' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'216184' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'216185' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'216186' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'216187' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'216188' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'216189' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'216190' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'216191' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'216192' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'216193' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'216194' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'216195' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'216196' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'216197' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'216198' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'216199' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'216200' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'216201' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'216202' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'216203' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'216204' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'216205' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'216206' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'216207' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'216208' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'216209' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'216210' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'216211' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'216212' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'216213' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'216214' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'216215' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'216216' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'216217' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'216218' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'216219' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'216220' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'216221' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'216222' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'216223' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'216224' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'216225' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'216226' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'216227' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'216228' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'216229' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'216230' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'216231' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'216232' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'216233' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'216234' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'216235' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'216236' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'216237' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'216238' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'216239' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'216240' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'216241' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'216242' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'216243' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'216244' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'216245' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'216246' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'216247' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'216248' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'216249' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'216250' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'216251' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'216252' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'216253' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'216254' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'216255' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'217003' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane -'217004' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'217006' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'217007' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'217009' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'217010' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'217011' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'217012' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'217013' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'217014' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'217015' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'217016' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'217018' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'217019' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'217020' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'217021' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'217022' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'217023' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'217024' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'217026' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'217027' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'217028' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'217029' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'217030' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'217032' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'217033' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'217034' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'217035' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'217036' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'217037' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'217038' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'217039' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'217040' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'217041' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'217042' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'217043' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'217044' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'217045' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'217046' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'217047' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'217048' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'217049' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'217050' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'217051' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'217052' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'217053' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'217054' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'217055' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'217056' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Total column hydrogen peroxide -'218003' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'218004' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'218006' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'218007' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'218009' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'218010' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'218011' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'218012' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'218013' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'218014' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'218015' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'218016' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'218018' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'218019' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'218020' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'218021' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'218022' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'218023' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'218024' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'218026' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'218027' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'218028' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'218029' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'218030' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'218032' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'218033' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'218034' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'218035' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'218036' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'218037' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'218038' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'218039' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'218040' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'218041' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'218042' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'218043' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'218044' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'218045' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'218046' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'218047' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'218048' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'218049' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'218050' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'218051' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'218052' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'218053' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'218054' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'218055' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'218056' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Ozone emissions -'219001' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'219002' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'219003' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'219004' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'219005' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'219006' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'219007' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'219008' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'219009' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'219010' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'219011' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'219012' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'219013' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'219014' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'219015' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'219016' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'219017' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'219018' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'219019' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'219020' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'219021' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'219022' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'219023' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'219024' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'219025' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'219026' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'219027' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'219028' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'219029' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'219030' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'219031' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'219032' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'219033' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'219034' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'219035' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'219036' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'219037' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'219038' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'219039' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'219040' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'219041' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'219042' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'219043' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'219044' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'219045' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'219046' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'219047' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'219048' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'219049' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'219050' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'219051' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'219052' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'219053' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'219054' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'219055' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'219056' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Ozone deposition velocity -'221001' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'221002' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'221003' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'221004' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'221005' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'221006' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'221007' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'221008' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'221009' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'221010' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'221011' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'221012' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'221013' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'221014' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'221015' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'221016' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'221017' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'221018' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'221019' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'221020' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'221021' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'221022' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'221023' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'221024' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'221025' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'221026' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'221027' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'221028' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'221029' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'221030' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'221031' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'221032' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'221033' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'221034' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'221035' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'221036' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'221037' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'221038' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'221039' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'221040' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'221041' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'221042' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'221043' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'221044' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'221045' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'221046' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'221047' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'221048' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'221049' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'221050' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'221051' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'221052' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'221053' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'221054' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'221055' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'221056' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Total sky direct solar radiation at surface -'228021' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'228022' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'228023' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Zero degree level -'228024' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; - } -#Horizontal visibility -'228025' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'228026' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'228027' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - } -#10 metre wind gust in the last 3 hours -'228028' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'228040' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'228041' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'228042' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'228043' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of Zero Deg Wet Bulb Temperature -'228047' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of One Deg Wet Bulb Temperature -'228048' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Total column rain water -'228089' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'228090' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'228091' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'228092' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'228093' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'228094' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Surface solar radiation downward clear-sky -'228129' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'228130' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'228248' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#100 metre wind speed -'228249' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; - } -#Irrigation fraction -'228250' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'228251' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'228252' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'228255' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'129001' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'129002' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'129003' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'129004' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'129005' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'129011' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'129012' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'129013' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'129014' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'129021' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'129022' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'129023' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'129024' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'129025' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'129026' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'129027' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'129028' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'129029' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'129030' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'129031' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'129032' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'129033' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'129034' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'129035' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'129036' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'129037' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'129038' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'129039' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'129040' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'129041' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'129042' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'129043' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'129044' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'129045' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'129046' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'129047' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'129048' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'129049' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'129050' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'129051' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'129052' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'129053' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'129054' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'129055' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'129056' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'129057' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'129058' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'129059' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'129060' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'129061' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'129062' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'129063' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'129064' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'129065' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'129066' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'129067' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'129068' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'129069' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'129070' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'129071' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'129078' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'129079' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'129080' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'129081' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'129082' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'129083' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'129084' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'129085' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'129086' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'129087' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'129088' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'129089' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'129090' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'129091' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'129092' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'129093' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'129094' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'129095' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'129096' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'129097' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'129098' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'129099' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'129100' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'129101' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'129102' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'129103' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'129104' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'129105' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'129106' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'129107' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'129108' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'129109' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'129110' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'129111' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'129112' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'129113' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'129114' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'129115' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'129116' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'129117' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'129118' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'129119' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'129120' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'129121' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'129122' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'129123' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'129125' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'129126' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'129127' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'129128' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'129129' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'129130' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'129131' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'129132' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'129133' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'129134' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'129135' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'129136' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'129137' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'129138' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'129139' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'129140' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'129141' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'129142' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'129143' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'129144' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'129145' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'129146' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'129147' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'129148' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'129149' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'129150' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'129151' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'129152' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'129153' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'129154' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'129155' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'129156' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'129157' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'129158' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'129159' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'129160' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'129161' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'129162' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'129163' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'129164' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'129165' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'129166' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'129167' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'129168' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'129169' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'129170' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'129171' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'129172' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'129173' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'129174' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'129175' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'129176' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'129177' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'129178' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'129179' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'129180' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'129181' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'129182' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'129183' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'129184' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'129185' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'129186' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'129187' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'129188' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'129189' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'129190' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'129191' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'129192' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'129193' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'129194' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'129195' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'129196' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'129197' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'129198' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'129199' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'129200' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'129201' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'129202' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'129203' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'129204' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'129205' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'129206' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'129207' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'129208' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'129209' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'129210' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'129211' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'129212' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'129214' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'129215' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'129216' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'129217' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'129218' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'129219' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'129220' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'129221' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'129222' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'129223' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'129224' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'129225' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'129226' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'129227' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'129228' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'129229' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'129230' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'129231' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'129232' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'129233' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'129234' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'129235' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'129236' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'129237' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'129238' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'129239' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'129240' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'129241' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'129242' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'129243' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'129244' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'129245' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'129246' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'129247' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'129248' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'129249' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'129250' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'129251' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'129252' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'129253' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'129254' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'129255' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'130208' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'130209' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'130210' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'130211' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'130212' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'130213' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'130214' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'130215' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'130216' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'130217' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'130218' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'130219' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'130220' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'130221' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'130224' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'130225' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'130226' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'130228' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'130229' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'130230' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'130231' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'130232' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'131001' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'131002' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'131003' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'131004' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'131005' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'131006' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'131007' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'131008' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'131009' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'131010' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'131015' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'131016' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'131017' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'131018' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'131020' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'131021' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'131022' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'131023' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'131024' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'131025' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'131049' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'131059' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'131064' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'131065' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'131066' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'131067' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'131068' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'131069' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre Wind gust of at least 25 m/s -'131072' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#2 metre temperature less than 273.15 K -'131073' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'131074' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 2 ; - scaleFactorOfLowerLimit = 0 ; - } -#Significant wave height of at least 4 m -'131075' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 4 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - } -#Significant wave height of at least 6 m -'131076' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 6 ; - } -#Significant wave height of at least 8 m -'131077' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'131078' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'131079' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'131080' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'131081' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'131129' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'131130' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'131139' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'131144' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'131151' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'131164' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'131165' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'131167' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'131201' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'131202' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'131228' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'131229' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'131232' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'131255' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'133001' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'133002' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'133003' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'133004' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'133005' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'133006' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'133007' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'133008' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'133009' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'133010' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'133011' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'133012' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'133013' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'133014' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'133015' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'133016' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'133017' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'133018' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'133019' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'133020' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'133021' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'133022' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'133023' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'133024' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'133025' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'133026' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'133027' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'133028' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'133029' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'133030' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'133031' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'133032' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'133033' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'133034' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'133035' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'133036' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'133037' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'133038' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'133039' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'133040' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'133041' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'133042' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'133043' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'133044' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'133045' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'133046' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'133047' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'133048' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'133049' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'133050' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'133051' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'133052' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'133053' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'133054' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'133055' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'133056' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'133057' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'133058' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'133059' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'133060' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'133061' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'133062' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'133063' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'133064' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'133065' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'133066' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'133067' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'133068' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'133069' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'133070' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'133071' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'133072' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'133073' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'133074' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'133075' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'133076' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'133077' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'133078' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'133079' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'133080' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'133081' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'133082' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'133083' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'133084' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'133085' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'133086' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'133087' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'133088' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'133089' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'133090' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'133091' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'133092' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'140200' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'140217' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'140218' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'140219' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'140220' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean wave period based on second moment -'140221' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'140222' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'140223' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'140224' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'140225' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'140226' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'140227' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'140228' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak period of 1D spectra -'140231' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'140233' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'140234' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'140235' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'140236' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'140237' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'140238' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'140239' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'140240' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'140241' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'140242' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'140243' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'140244' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'140245' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'140246' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'140247' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'140248' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'140249' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'140250' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'140251' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'140252' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'140253' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'140254' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'140255' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'150129' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'150130' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'150131' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'150133' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'150134' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'150135' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'150137' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'150139' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'150140' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'150141' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'150142' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'150143' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'150144' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'150145' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'150146' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'150147' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'150148' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'150152' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'150153' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'150154' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'150155' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'150168' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'150169' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'150170' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'150171' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'150172' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'150173' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'150180' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'150181' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'150182' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'150183' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'150255' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'151128' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Ocean potential temperature -'151129' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Salinity -'151130' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Ocean current zonal component -'151131' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; - } -#Ocean current meridional component -'151132' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; - } -#Ocean current vertical component -'151133' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'151134' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'151135' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'151136' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'151137' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sigma-theta -'151138' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'151139' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'151140' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'151141' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'151142' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'151143' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'151144' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level -'151145' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; - } -#Sea level previous timestep -'151146' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Barotropic stream function -'151147' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'151148' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'151149' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'151150' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'151151' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'151152' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#U stress -'151153' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#V stress -'151154' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'151155' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'151156' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'151157' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'151158' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'151159' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'151160' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'151161' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'151162' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#20 degrees isotherm depth -'151163' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; - } -#Average potential temperature in the upper 300m -'151164' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'151165' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'151166' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'151167' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'151168' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'151169' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'151170' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'151171' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'151172' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'151173' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'151174' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Average salinity in the upper 300m -'151175' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; - } -#Layer Thickness at scalar points -'151176' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'151177' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'151178' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'151179' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'151180' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'151181' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'151182' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'151183' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'151184' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'151185' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'151186' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'151187' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'151188' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'151190' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'151191' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'151192' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'151194' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'151199' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'151200' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'151201' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'151202' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'151203' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'151204' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'151205' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'151206' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'151207' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'151208' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'151209' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'151210' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'151211' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'151212' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'151255' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'160049' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'160135' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'160137' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'160140' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Snow depth -'160141' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 141 ; - } -#Large-scale precipitation -'160142' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'160143' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'160144' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'160156' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'160157' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'160171' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'160180' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'160181' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'160182' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'160184' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'160198' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'160199' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'160201' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'160202' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'160205' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'160206' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'160207' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'160208' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'160209' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'160210' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'160211' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'160212' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'160213' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'160214' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'160215' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'160216' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'160217' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'160218' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'160219' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'160220' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'160221' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'160222' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'160223' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'160224' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'160225' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'160226' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'160231' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'160239' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'160240' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'160241' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'160242' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'160243' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'160246' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'160247' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'160249' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'160254' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'162051' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'162053' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'162054' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'162055' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'162056' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'162057' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'162058' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'162059' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'162060' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'162061' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'162062' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'162063' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'162064' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'162065' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'162066' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'162067' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'162068' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'162069' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'162070' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'162071' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'162072' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'162073' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'162074' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'162075' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'162076' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'162077' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'162078' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'162081' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'162082' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'162083' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'162084' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'162085' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'162086' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'162087' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'162100' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'162101' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'162102' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'162103' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'162104' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'162105' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'162106' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'162107' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'162108' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'162109' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'162110' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'162111' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'162112' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'162113' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'162206' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'162207' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'162208' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'162209' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'162210' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'162211' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'162212' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'162213' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'162214' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'162215' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'162216' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'162217' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'162218' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'162219' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'162220' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'162221' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'162222' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'162223' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'162224' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'162225' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'162226' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'162227' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'162229' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'162230' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'162231' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'162232' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'162233' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'162255' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'170149' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'170171' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'170179' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'171001' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'171002' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'171003' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'171004' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'171005' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'171011' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'171012' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'171013' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'171014' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'171021' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'171022' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'171023' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'171026' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'171027' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'171028' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'171029' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'171030' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'171031' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'171032' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'171033' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'171034' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'171035' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'171036' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'171037' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'171038' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'171039' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'171040' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'171041' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'171042' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'171043' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'171044' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'171045' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'171046' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'171047' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'171048' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'171049' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'171050' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'171051' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'171052' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'171053' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'171054' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'171055' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'171056' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'171057' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'171058' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'171059' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'171060' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'171061' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'171062' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'171063' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'171064' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'171065' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'171078' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'171079' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'171125' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'171126' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'171127' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'171128' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'171129' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'171130' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'171131' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'171132' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'171133' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'171134' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'171135' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'171136' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'171137' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'171138' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'171139' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'171140' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'171141' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'171142' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'171143' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'171144' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'171145' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'171146' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'171147' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'171148' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'171149' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'171150' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'171151' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'171152' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'171153' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'171154' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'171155' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'171156' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'171157' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'171158' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'171159' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'171160' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'171161' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'171162' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'171163' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'171164' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'171165' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'171166' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'171167' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'171168' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'171169' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'171170' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'171171' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'171173' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'171174' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'171175' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'171176' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'171177' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'171178' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'171179' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'171180' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'171181' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'171182' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'171183' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'171184' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'171185' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'171186' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'171187' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'171188' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'171189' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'171190' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'171191' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'171192' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'171193' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'171194' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'171195' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'171196' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'171197' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'171198' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'171199' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'171200' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'171201' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'171202' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'171203' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'171204' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'171205' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'171206' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'171207' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'171208' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'171209' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'171210' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'171211' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'171212' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'171214' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'171215' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'171216' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'171217' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'171218' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'171219' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'171220' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'171221' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'171222' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'171223' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'171224' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'171225' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'171226' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'171227' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'171228' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'171229' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'171230' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'171231' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'171232' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'171233' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'171234' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'171235' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'171236' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'171237' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'171238' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'171239' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'171240' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'171241' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'171242' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'171243' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'171244' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'171245' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'171246' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'171247' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'171248' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'171249' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'171250' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'171251' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'171252' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'171253' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'171254' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'171255' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'172044' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'172045' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'172048' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'172050' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) -'172142' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Convective precipitation -'172143' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) -'172144' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'172145' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux -'172146' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Surface latent heat flux -'172147' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Surface net radiation -'172149' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Short-wave heating rate -'172153' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'172154' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards -'172169' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards -'172175' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Surface solar radiation -'172176' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Surface thermal radiation -'172177' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Top solar radiation -'172178' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Top thermal radiation -'172179' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress -'172180' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress -'172181' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'172182' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Sunshine duration -'172189' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'172195' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'172196' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'172197' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Runoff -'172205' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'172208' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'172209' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'172210' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'172211' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation -'172212' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Total precipitation -'172228' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'172239' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'172240' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'172255' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'173044' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'173045' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'173048' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'173050' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'173142' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'173143' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'173144' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'173145' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'173146' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'173147' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'173149' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'173153' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'173154' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomaly -'173169' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomaly -'173175' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomaly -'173176' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomaly -'173177' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomaly -'173178' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomaly -'173179' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'173180' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'173181' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'173182' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'173189' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'173195' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'173196' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'173197' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomaly -'173205' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'173208' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'173209' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'173210' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'173211' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'173212' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'173228' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'173239' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'173240' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'173255' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'174006' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'174009' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'174031' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'174034' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'174039' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'174040' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'174041' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'174042' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'174049' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'174055' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'174083' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'174085' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'174086' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'174087' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'174088' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'174089' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'174090' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'174094' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'174095' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Sea-ice thickness -'174098' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; - } -#Liquid water potential temperature -'174099' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'174110' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'174111' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'174139' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'174164' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'174167' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'174168' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'174170' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'174175' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'174183' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'174201' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'174202' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'174236' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'174255' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'175006' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'175031' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'175034' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'175039' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'175040' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'175041' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'175042' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'175049' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'175055' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'175083' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'175085' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'175086' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'175087' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'175088' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'175089' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'175090' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'175110' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'175111' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'175139' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'175164' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'175167' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'175168' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'175170' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'175175' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'175183' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'175201' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'175202' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'175236' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'175255' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'180149' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'180176' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'180177' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'180178' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'180179' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Snow depth -'190141' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; - } -#Field capacity -'190170' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'190171' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'190173' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'190229' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'200168' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'201001' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'201002' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'201003' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'201004' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'201005' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'201006' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'201007' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'201008' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'201009' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'201010' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'201011' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'201012' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'201013' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'201014' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'201015' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'201016' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'201017' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'201029' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'201030' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'201031' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'201032' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'201033' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'201034' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'201035' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'201036' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'201037' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'201038' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'201041' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'201042' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'201050' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'201051' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'201052' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'201053' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'201054' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'201055' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'201056' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'201060' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'201061' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'201062' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'201063' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'201064' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'201065' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'201066' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'201067' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'201068' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'201069' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'201070' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'201071' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'201072' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'201073' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'201074' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'201075' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'201076' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'201077' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'201078' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'201079' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'201080' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'201081' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'201082' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'201083' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'201084' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'201085' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'201099' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'201100' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'201101' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'201102' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'201111' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'201112' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'201113' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'201139' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'201150' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'201187' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'201200' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'201203' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'201215' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'201241' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'201255' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'210001' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'210002' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'210003' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'210004' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'210005' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'210006' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'210007' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'210008' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'210009' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'210010' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'210011' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'210012' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'210016' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'210017' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'210018' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'210019' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'210020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'210021' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'210022' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'210023' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'210024' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'210025' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'210026' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'210027' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'210031' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'210032' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'210033' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'210034' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'210035' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'210036' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'210037' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'210038' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'210039' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'210040' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'210041' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'210042' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'210046' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'210047' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'210048' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'210049' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'210050' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'210051' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'210052' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'210053' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'210054' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'210061' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'210062' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'210063' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'210064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#Total column Methane -'210065' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'210066' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'210067' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'210068' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'210069' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'210070' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'210071' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'210092' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'210093' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'210094' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'210095' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'210096' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'210097' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'210098' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'210099' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'210100' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'210121' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'210122' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'210123' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'210124' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'210125' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'210126' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'210127' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'210128' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'210129' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'210130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'210131' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'210132' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'210133' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'210134' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'210135' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'210136' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'210137' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'210138' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'210139' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'210140' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'210141' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'210142' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'210143' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'210144' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'210145' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'210146' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'210147' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'210148' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'210149' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'210150' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'210151' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'210152' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'210153' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'210154' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'210155' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'210156' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'210157' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'210158' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'210159' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'210160' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'210161' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'210162' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'210163' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'210164' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'210165' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'210166' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'210181' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'210182' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'210183' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'210184' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'210185' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'210203' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'210206' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'210207' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'210208' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'210209' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'210210' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'210211' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'210212' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'210213' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'210214' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'210215' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'210216' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'211001' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'211002' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'211003' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'211004' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'211005' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'211006' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'211007' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'211008' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'211009' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'211010' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'211011' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'211012' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'211016' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'211017' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'211018' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'211019' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'211020' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'211021' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'211022' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'211023' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'211024' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'211025' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'211026' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'211027' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'211031' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'211032' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'211033' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'211034' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'211035' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'211036' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'211037' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'211038' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'211039' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'211040' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'211041' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'211042' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'211046' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'211047' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'211048' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'211049' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'211050' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'211051' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'211052' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'211053' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'211054' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'211061' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'211062' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'211063' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'211064' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'211065' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'211066' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'211067' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'211068' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'211069' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'211070' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'211071' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'211092' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'211093' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'211094' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'211095' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'211096' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'211097' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'211098' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'211099' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'211100' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'211121' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'211122' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'211123' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'211124' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'211125' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'211126' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'211127' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'211128' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'211129' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'211130' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'211131' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'211132' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'211133' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'211134' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'211135' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'211136' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'211137' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'211138' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'211139' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'211140' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'211141' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'211142' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'211143' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'211144' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'211145' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'211146' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'211147' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'211148' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'211149' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'211150' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'211151' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'211152' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'211153' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'211154' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'211155' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'211156' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'211157' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'211158' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'211159' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'211160' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'211161' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'211162' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'211163' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'211164' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'211165' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'211166' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'211181' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'211182' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'211183' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'211184' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'211185' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'211203' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'211206' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'211207' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'211208' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'211209' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'211210' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'211211' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'211212' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'211213' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'211214' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'211215' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'211216' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'220228' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'228003' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'228004' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'228005' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'228006' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'228007' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'228008' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'228009' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'228010' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'228011' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'228012' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'228013' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'228014' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'228015' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'228016' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'228017' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'228018' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'228019' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'228131' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'228132' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'234139' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'234151' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'234167' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'234228' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'140215' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'140216' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'210101' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire radiative power maximum -'211101' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'228134' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'228136' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#100 metre U wind component -'228246' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; - } -#100 metre V wind component -'228247' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'228253' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'228254' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def deleted file mode 100644 index 1d420461..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/shortName.def +++ /dev/null @@ -1,17509 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'tpg1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; - } -#Total precipitation of at least 5 mm -'tpg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; - } -#Total precipitation of at least 40 mm -'tpg40' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; - } -#Total precipitation of at least 60 mm -'tpg60' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; - } -#Total precipitation of at least 80 mm -'tpg80' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; - } -#Total precipitation of at least 100 mm -'tpg100' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Total precipitation of at least 150 mm -'tpg150' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; - } -#Total precipitation of at least 200 mm -'tpg200' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; - } -#Total precipitation of at least 300 mm -'tpg300' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; - } -#Equivalent potential temperature -'eqpt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'sept' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'ssfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'scfr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'sro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'udvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'vdvw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'urtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'vrtw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'aluvp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'aluvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'alnip' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'alnid' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'uvcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'parcs' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'uctp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'ucln' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'ucdv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'cl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'cvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'cvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'tvl' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'tvh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'asn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'istl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'istl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'istl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'istl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'swvl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'swvl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'swvl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'swvl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'es' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'smlt' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'sdur' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'magss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'lspf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'mx2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'mn2t24' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Montgomery potential -'mont' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'mean2t24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'mn2d24' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'uvb' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'par' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'obct' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'stsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'ftsktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'sktd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'lai_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'lai_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'msr_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'msr_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'bc_lv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'bc_hv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'issrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'istrd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'sdfor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Total column liquid water -'tclw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; - } -#Total column ice water -'tciw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'10fg6' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'emis' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'vite' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'at' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'bv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'tcwv' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'stl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'swl1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - unitsFactor = 1000 ; - } -#Large-scale precipitation -'lsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'sf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'chnk' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'snr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'tnr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'lnsp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'swhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'lwhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'tsp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'blh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'sdor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'isor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'anor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'slor' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'tcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'stl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'al' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'e' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'stl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'swl3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'ccc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'lcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'mcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'hcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'ewov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'nsov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'nwov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'neov' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'lgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'mgws' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'src' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'veg' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'vso' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'paw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'ro' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'tco3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'tsrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'ttrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'ssrc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'strc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation -'tisr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'vimd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'ewgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'nsgd' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'ctzw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'ctmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'crnh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'iews' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'inss' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'ishf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'ie' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'asq' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'lsrh' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'stl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'swl4' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } -#Convective snowfall -'csf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'lsf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'acf' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'alw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'fal' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'fsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'flsr' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'aiw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'ice' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'atte' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'athe' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'atze' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'atmw' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'strfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'vpotdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'ptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'eqptdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'septdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'udvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'vdvwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'urtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'vrtwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'uctpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'uclndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'ucdvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'cldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'cvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'cvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'tvldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'tvhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'sicdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'asndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'rsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'sstdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'istl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'istl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'istl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'istl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'swvl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'swvl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'swvl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'swvl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'sltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'esdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'smltdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'sdurdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'dsrpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'magssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'10fgdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'lspfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'mx2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'mn2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'montdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'presdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'mean2t24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'mn2d24diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'uvbdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'pardiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'capediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'pvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'tpodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'obctdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'mx2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'mn2t6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'10fg6diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'atdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'bvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'zdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'qdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'spdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'wdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'tcwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'tcwvdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'vodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'stl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'swl1diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'sddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'lspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'cpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'sfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'blddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'sshfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'slhfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'chnkdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'snrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'tnrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'msldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'lnspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'swhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'lwhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'ghdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'rdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'tspdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'blhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'sdordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'isordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'anordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'slordiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'tccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'10udiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'10vdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'ssrddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'stl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'swl2diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'lsmdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'srdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'aldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'strddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'ssrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'strdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'tsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'ttrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'ewssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'nsssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'ediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'stl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'swl3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'cccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'lccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'mccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'hccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'sunddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'ewovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'nsovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'nwovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'neovdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'btmpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'lgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'mgwsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'gwddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'srcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'vegdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'vsodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'mx2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'mn2tdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'o3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'pawdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'rodiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'tco3diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'10sidiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'tsrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'ttrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'ssrcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'strcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'tisrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'dhrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'dhvddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'dhccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'dhlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'vdzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'vdmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'ewgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'nsgddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'ctzwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'ctmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'vdhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'htccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'htlcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'crnhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'tpdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'iewsdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'inssdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'ishfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'iediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'asqdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'lsrhdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'sktdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'stl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'swl4diff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'tsndiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'csfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'lsfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'acfdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'alwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'faldiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'fsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'flsrdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'clwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'ciwcdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'ccdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'aiwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'icediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'attediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'athediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'atzediff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'atmwdiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'utendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'vtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'ttendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'qtendd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'ttendr' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'utendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'vtendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'ttendts' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'qtendt' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'utends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'vtends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'ttends' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'utendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'vtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'ttendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'qtendcds' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'lpc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'ipc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'ttendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'qtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'qltendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'qitendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'lpcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'ipcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'utendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'vtendcs' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'ttendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'qtendsc' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'100ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'100va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'mx2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'mn2t6a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'aermr13' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'aermr14' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'aermr15' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdms' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'ocnuc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'monot' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'soapr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Particulate matter d < 1 um -'pm1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'pm2p5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'pm10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'vafire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Mean altitude of maximum injection -'mami' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'apt' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'aluvpi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'aluvpv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'aluvpg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'alnipi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'alnipv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'alnipg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'aluvdi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'aluvdv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'aluvdg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'alnidi' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'alnidv' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'alnidg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'aod340' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'aod355' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'aod380' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'aod400' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'aod440' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'aod500' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'aod532' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'aod645' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'aod800' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'aod858' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'aod1020' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'aod1064' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'aod1640' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'aod2130' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Altitude of plume bottom -'apb' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'vsuaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'vashaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'taedec550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'taedab550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Aerosol type 13 mass mixing ratio -'aermr13diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'aermr14diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'aermr15diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'aerpr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'aerwv01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'aerwv02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'emdmsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'aerwv03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'aerwv04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'alediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'aptdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'sppt1' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'sppt2' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'sppt3' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'sppt4' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'sppt5' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -# Cosine of solar zenith angle -'uvcossza' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -# UV biologically effective dose -'uvbed' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -# UV biologically effective dose clear-sky -'uvbedcs' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -# Total surface UV spectral flux (280-285 nm) -'uvsflxt280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -# Total surface UV spectral flux (285-290 nm) -'uvsflxt285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -# Total surface UV spectral flux (290-295 nm) -'uvsflxt290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -# Total surface UV spectral flux (295-300 nm) -'uvsflxt295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -# Total surface UV spectral flux (300-305 nm) -'uvsflxt300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -# Total surface UV spectral flux (305-310 nm) -'uvsflxt305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -# Total surface UV spectral flux (310-315 nm) -'uvsflxt310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -# Total surface UV spectral flux (315-320 nm) -'uvsflxt315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -# Total surface UV spectral flux (320-325 nm) -'uvsflxt320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -# Total surface UV spectral flux (325-330 nm) -'uvsflxt325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -# Total surface UV spectral flux (330-335 nm) -'uvsflxt330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -# Total surface UV spectral flux (335-340 nm) -'uvsflxt335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -# Total surface UV spectral flux (340-345 nm) -'uvsflxt340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -# Total surface UV spectral flux (345-350 nm) -'uvsflxt345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -# Total surface UV spectral flux (350-355 nm) -'uvsflxt350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -# Total surface UV spectral flux (355-360 nm) -'uvsflxt355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -# Total surface UV spectral flux (360-365 nm) -'uvsflxt360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -# Total surface UV spectral flux (365-370 nm) -'uvsflxt365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -# Total surface UV spectral flux (370-375 nm) -'uvsflxt370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -# Total surface UV spectral flux (375-380 nm) -'uvsflxt375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -# Total surface UV spectral flux (380-385 nm) -'uvsflxt380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -# Total surface UV spectral flux (385-390 nm) -'uvsflxt385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -# Total surface UV spectral flux (390-395 nm) -'uvsflxt390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -# Total surface UV spectral flux (395-400 nm) -'uvsflxt395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -# Clear-sky surface UV spectral flux (280-285 nm) -'uvsflxcs280285' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -# Clear-sky surface UV spectral flux (285-290 nm) -'uvsflxcs285290' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -# Clear-sky surface UV spectral flux (290-295 nm) -'uvsflxcs290295' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -# Clear-sky surface UV spectral flux (295-300 nm) -'uvsflxcs295300' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -# Clear-sky surface UV spectral flux (300-305 nm) -'uvsflxcs300305' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -# Clear-sky surface UV spectral flux (305-310 nm) -'uvsflxcs305310' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -# Clear-sky surface UV spectral flux (310-315 nm) -'uvsflxcs310315' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -# Clear-sky surface UV spectral flux (315-320 nm) -'uvsflxcs315320' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -# Clear-sky surface UV spectral flux (320-325 nm) -'uvsflxcs320325' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -# Clear-sky surface UV spectral flux (325-330 nm) -'uvsflxcs325330' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -# Clear-sky surface UV spectral flux (330-335 nm) -'uvsflxcs330335' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -# Clear-sky surface UV spectral flux (335-340 nm) -'uvsflxcs335340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -# Clear-sky surface UV spectral flux (340-345 nm) -'uvsflxcs340345' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -# Clear-sky surface UV spectral flux (345-350 nm) -'uvsflxcs345350' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -# Clear-sky surface UV spectral flux (350-355 nm) -'uvsflxcs350355' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -# Clear-sky surface UV spectral flux (355-360 nm) -'uvsflxcs355360' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -# Clear-sky surface UV spectral flux (360-365 nm) -'uvsflxcs360365' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -# Clear-sky surface UV spectral flux (365-370 nm) -'uvsflxcs365370' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -# Clear-sky surface UV spectral flux (370-375 nm) -'uvsflxcs370375' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -# Clear-sky surface UV spectral flux (375-380 nm) -'uvsflxcs375380' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -# Clear-sky surface UV spectral flux (380-385 nm) -'uvsflxcs380385' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -# Clear-sky surface UV spectral flux (385-390 nm) -'uvsflxcs385390' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -# Clear-sky surface UV spectral flux (390-395 nm) -'uvsflxcs390395' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -# Clear-sky surface UV spectral flux (395-400 nm) -'uvsflxcs395400' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -# Profile of optical thickness at 340 nm -'aot340' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -# Source/gain of sea salt aerosol (0.03 - 0.5 um) -'aersrcsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -# Source/gain of sea salt aerosol (0.5 - 5 um) -'aersrcssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -# Source/gain of sea salt aerosol (5 - 20 um) -'aersrcssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -# Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'aerddpsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -# Dry deposition of sea salt aerosol (0.5 - 5 um) -'aerddpssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -# Dry deposition of sea salt aerosol (5 - 20 um) -'aerddpssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -# Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'aersdmsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -# Sedimentation of sea salt aerosol (0.5 - 5 um) -'aersdmssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -# Sedimentation of sea salt aerosol (5 - 20 um) -'aersdmssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'aerwdlssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'aerwdlsssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'aerwdlsssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'aerwdccsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'aerwdccssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'aerwdccssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -# Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'aerngtsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -# Negative fixer of sea salt aerosol (0.5 - 5 um) -'aerngtssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -# Negative fixer of sea salt aerosol (5 - 20 um) -'aerngtssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'aermsssss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'aermssssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -# Vertically integrated mass of sea salt aerosol (5 - 20 um) -'aermssssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -# Sea salt aerosol (0.03 - 0.5 um) optical depth -'aerodsss' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -# Sea salt aerosol (0.5 - 5 um) optical depth -'aerodssm' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -# Sea salt aerosol (5 - 20 um) optical depth -'aerodssl' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -# Source/gain of dust aerosol (0.03 - 0.55 um) -'aersrcdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -# Source/gain of dust aerosol (0.55 - 9 um) -'aersrcdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -# Source/gain of dust aerosol (9 - 20 um) -'aersrcdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -# Dry deposition of dust aerosol (0.03 - 0.55 um) -'aerddpdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -# Dry deposition of dust aerosol (0.55 - 9 um) -'aerddpdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -# Dry deposition of dust aerosol (9 - 20 um) -'aerddpdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -# Sedimentation of dust aerosol (0.03 - 0.55 um) -'aersdmdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -# Sedimentation of dust aerosol (0.55 - 9 um) -'aersdmdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -# Sedimentation of dust aerosol (9 - 20 um) -'aersdmdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'aerwdlsdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'aerwdlsdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'aerwdlsdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'aerwdccdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'aerwdccdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'aerwdccdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -# Negative fixer of dust aerosol (0.03 - 0.55 um) -'aerngtdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -# Negative fixer of dust aerosol (0.55 - 9 um) -'aerngtdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -# Negative fixer of dust aerosol (9 - 20 um) -'aerngtdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'aermssdus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -# Vertically integrated mass of dust aerosol (0.55 - 9 um) -'aermssdum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -# Vertically integrated mass of dust aerosol (9 - 20 um) -'aermssdul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -# Dust aerosol (0.03 - 0.55 um) optical depth -'aeroddus' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -# Dust aerosol (0.55 - 9 um) optical depth -'aeroddum' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -# Dust aerosol (9 - 20 um) optical depth -'aeroddul' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -# Source/gain of hydrophobic organic matter aerosol -'aersrcomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -# Source/gain of hydrophilic organic matter aerosol -'aersrcomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -# Dry deposition of hydrophobic organic matter aerosol -'aerddpomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -# Dry deposition of hydrophilic organic matter aerosol -'aerddpomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -# Sedimentation of hydrophobic organic matter aerosol -'aersdmomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -# Sedimentation of hydrophilic organic matter aerosol -'aersdmomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'aerwdlsomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'aerwdlsomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -# Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'aerwdccomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -# Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'aerwdccomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -# Negative fixer of hydrophobic organic matter aerosol -'aerngtomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -# Negative fixer of hydrophilic organic matter aerosol -'aerngtomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -# Vertically integrated mass of hydrophobic organic matter aerosol -'aermssomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -# Vertically integrated mass of hydrophilic organic matter aerosol -'aermssomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -# Hydrophobic organic matter aerosol optical depth -'aerodomhphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -# Hydrophilic organic matter aerosol optical depth -'aerodomhphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -# Source/gain of hydrophobic black carbon aerosol -'aersrcbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -# Source/gain of hydrophilic black carbon aerosol -'aersrcbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -# Dry deposition of hydrophobic black carbon aerosol -'aerddpbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -# Dry deposition of hydrophilic black carbon aerosol -'aerddpbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -# Sedimentation of hydrophobic black carbon aerosol -'aersdmbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -# Sedimentation of hydrophilic black carbon aerosol -'aersdmbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'aerwdlsbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'aerwdlsbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -# Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'aerwdccbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -# Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'aerwdccbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -# Negative fixer of hydrophobic black carbon aerosol -'aerngtbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -# Negative fixer of hydrophilic black carbon aerosol -'aerngtbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -# Vertically integrated mass of hydrophobic black carbon aerosol -'aermssbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -# Vertically integrated mass of hydrophilic black carbon aerosol -'aermssbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -# Hydrophobic black carbon aerosol optical depth -'aerodbchphob' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -# Hydrophilic black carbon aerosol optical depth -'aerodbchphil' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -# Source/gain of sulphate aerosol -'aersrcsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -# Dry deposition of sulphate aerosol -'aerddpsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -# Sedimentation of sulphate aerosol -'aersdmsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -# Wet deposition of sulphate aerosol by large-scale precipitation -'aerwdlssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -# Wet deposition of sulphate aerosol by convective precipitation -'aerwdccsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -# Negative fixer of sulphate aerosol -'aerngtsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -# Vertically integrated mass of sulphate aerosol -'aermsssu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -# Sulphate aerosol optical depth -'aerodsu' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'accaod550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'aluvpsn' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'aerdep10si' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'aerdep10fg' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'aot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'naot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'aaot532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'aodabs340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'aodabs355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'aodabs380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'aodabs400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'aodabs440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'aodabs469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'aodabs500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'aodabs532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'aodabs550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'aodabs645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'aodabs670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'aodabs800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'aodabs858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'aodabs865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'aodabs1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'aodabs1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'aodabs1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'aodabs1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'aodfm340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'aodfm355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'aodfm380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'aodfm400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'aodfm440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'aodfm469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'aodfm500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'aodfm532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'aodfm550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'aodfm645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'aodfm670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'aodfm800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'aodfm858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'aodfm865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'aodfm1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'aodfm1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'aodfm1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'aodfm1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'ssa340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'ssa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'ssa380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'ssa400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'ssa440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'ssa469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'ssa500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'ssa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'ssa550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'ssa645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'ssa670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'ssa800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'ssa858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'ssa865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'ssa1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'ssa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'ssa1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'ssa1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Assimetry factor at 340 nm -'assimetry340' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Assimetry factor at 355 nm -'assimetry355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Assimetry factor at 380 nm -'assimetry380' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Assimetry factor at 400 nm -'assimetry400' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Assimetry factor at 440 nm -'assimetry440' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Assimetry factor at 469 nm -'assimetry469' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Assimetry factor at 500 nm -'assimetry500' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Assimetry factor at 532 nm -'assimetry532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Assimetry factor at 550 nm -'assimetry550' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Assimetry factor at 645 nm -'assimetry645' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Assimetry factor at 670 nm -'assimetry670' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Assimetry factor at 800 nm -'assimetry800' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Assimetry factor at 858 nm -'assimetry858' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Assimetry factor at 865 nm -'assimetry865' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Assimetry factor at 1020 nm -'assimetry1020' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Assimetry factor at 1064 nm -'assimetry1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Assimetry factor at 1240 nm -'assimetry1240' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Assimetry factor at 1640 nm -'assimetry1640' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'aersrcso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'aerddpso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'aersdmso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'aerwdlsso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'aerwdccso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'aerngtso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'aermssso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'aerodso2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'aodabs2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'aodfm2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'ssa2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Assimetry factor at 2130 nm -'assimetry2130' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'aerext355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'aerext532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'aerext1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'aerbackscattoa355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'aerbackscattoa532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'aerbackscattoa1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'aerbackscatgnd355' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'aerbackscatgnd532' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'aerbackscatgnd1064' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'h2o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'hno3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'ch3ooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'par' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'c2h4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'ole' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'ald2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'pan' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'rooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'onit' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'c5h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'dms' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'so4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'nh4' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'msa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'ch3cocho' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'o3s' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'pb' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'ho2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'ch3o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'no3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'n2o5' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'ho2no2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'c2o3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'ror' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'rxpar' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'xo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'xo2n' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'nh2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'psc' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'ch3oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'hcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'mcooh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'c2h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'c2h5oh' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'c3h8' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'c3h6' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'c10h16' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'ispd' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'no3_a' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'ch3coch3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'aco2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'ic3h7o2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'hypropo2' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'noxa' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Total column hydrogen peroxide -'tc_h2o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'tc_ch4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'tc_hno3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'tc_ch3ooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'tc_par' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'tc_c2h4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'tc_ole' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'tc_ald2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'tc_pan' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'tc_rooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'tc_onit' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'tc_c5h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'tc_dms' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'tc_nh3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'tc_so4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'tc_nh4' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'tc_msa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'tc_ch3cocho' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'tc_o3s' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'tc_pb' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'tc_no' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'tc_ho2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'tc_ch3o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'tc_oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'tc_no3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'tc_n2o5' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'tc_ho2no2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'tc_c2o3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'tc_ror' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'tc_rxpar' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'tc_xo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'tc_xo2n' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'tc_nh2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'tc_psc' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'tc_ch3oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'tc_hcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'tc_mcooh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'tc_c2h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'tc_c2h5oh' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'tc_c3h8' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'tc_c3h6' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'tc_c10h16' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'tc_ispd' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'tc_no3_a' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'tc_ch3coch3' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'tc_aco2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'tc_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'tc_hypropo2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'tc_noxa' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Ozone emissions -'e_go3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'e_nox' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'e_h2o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'e_ch4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'e_co' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'e_hno3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'e_ch3ooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'e_hcho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'e_par' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'e_c2h4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'e_ole' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'e_ald2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'e_pan' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'e_rooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'e_onit' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'e_c5h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'e_so2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'e_dms' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'e_nh3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'e_so4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'e_nh4' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'e_msa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'e_ch3cocho' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'e_o3s' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'e_ra' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'e_pb' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'e_no' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'e_ho2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'e_ch3o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'e_oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'e_no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'e_no3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'e_n2o5' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'e_ho2no2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'e_c2o3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'e_ror' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'e_rxpar' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'e_xo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'e_xo2n' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'e_nh2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'e_psc' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'e_ch3oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'e_hcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'e_mcooh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'e_c2h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'e_c2h5oh' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'e_c3h8' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'e_c3h6' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'e_c10h16' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'e_ispd' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'e_no3_a' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'e_ch3coch3' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'e_aco2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'e_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'e_hypropo2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'e_noxa' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Ozone deposition velocity -'dv_go3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'dv_nox' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'dv_h2o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'dv_ch4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'dv_co' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'dv_hno3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'dv_ch3ooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'dv_hcho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'dv_par' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'dv_c2h4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'dv_ole' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'dv_ald2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'dv_pan' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'dv_rooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'dv_onit' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'dv_c5h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'dv_so2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'dv_dms' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'dv_nh3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'dv_so4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'dv_nh4' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'dv_msa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'dv_ch3cocho' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'dv_o3s' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'dv_ra' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'dv_pb' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'dv_no' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'dv_ho2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'dv_ch3o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'dv_oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'dv_no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'dv_no3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'dv_n2o5' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'dv_ho2no2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'dv_c2o3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'dv_ror' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'dv_rxpar' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'dv_xo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'dv_xo2n' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'dv_nh2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'dv_psc' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'dv_ch3oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'dv_hcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'dv_mcooh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'dv_c2h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'dv_c2h5oh' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'dv_c3h8' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'dv_c3h6' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'dv_c10h16' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'dv_ispd' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'dv_no3_a' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'dv_ch3coch3' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'dv_aco2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'dv_ic3h7o2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'dv_hypropo2' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'dv_noxa' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Total sky direct solar radiation at surface -'fdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'cdir' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'cbh' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Zero degree level -'deg0l' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; - } -#Horizontal visibility -'hvis' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'mx2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'mn2t3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - lengthOfTimeRange = 3 ; - } -#10 metre wind gust in the last 3 hours -'10fg3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'swi1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'swi2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'swi3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'swi4' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of Zero Deg Wet Bulb Temperature -'hwbt0' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of One Deg Wet Bulb Temperature -'hwbt1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Total column rain water -'tcrw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'tcsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'ccf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'stf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'swv' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'ist' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Surface solar radiation downward clear-sky -'ssrdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'strdc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'tccsw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#100 metre wind speed -'100si' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; - } -#Irrigation fraction -'irrfr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'pev' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'irr' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'tcclw' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'strfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'vpotgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'ptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'eqptgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'septgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'udvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'vdvwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'urtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'vrtwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'uctpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'uclngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'ucdvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'clgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'cvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'cvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'tvlgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'tvhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'sicgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'asngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'rsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'sstkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'istl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'istl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'istl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'istl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'swvl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'swvl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'swvl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'swvl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'sltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'esgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'smltgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'sdurgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'dsrpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'magssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'10fggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'lspfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'mx2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'mn2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'montgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'presgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'mean2t24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'mn2d24grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'uvbgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'pargrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'capegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'pvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'tpogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'obctgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'mx2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'mn2t6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'10fg6grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'atgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'bvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'zgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'qgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'spgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'wgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'tcwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'tcwvgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'vogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'stl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'swl1grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'sdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'lspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'cpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'sfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'bldgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'sshfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'slhfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'chnkgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'snrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'tnrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'mslgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'lnspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'swhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'lwhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'ghgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'rgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'tspgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'blhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'sdorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'isorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'anorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'slorgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'tccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'10ugrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'10vgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'2dgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'ssrdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'stl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'swl2grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'lsmgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'srgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'algrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'strdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'ssrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'strgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'tsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'ttrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'ewssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'nsssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'egrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'stl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'swl3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'cccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'lccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'mccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'hccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'sundgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'ewovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'nsovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'nwovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'neovgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'btmpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'lgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'mgwsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'gwdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'srcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'veggrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'vsogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'mx2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'mn2tgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'o3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'pawgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'rogrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'tco3grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'10sigrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'tsrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'ttrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'ssrcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'strcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'tisrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'dhrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'dhvdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'dhccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'dhlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'vdzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'vdmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'ewgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'nsgdgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'ctzwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'ctmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'vdhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'htccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'htlcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'crnhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'tpgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'iewsgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'inssgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'ishfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'iegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'asqgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'lsrhgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'sktgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'stl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'swl4grd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'tsngrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'csfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'lsfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'acfgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'alwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'falgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'fsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'flsrgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'clwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'ciwcgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'ccgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'aiwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'icegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'attegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'athegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'atzegrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'atmwgrd' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'tsru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'ttru' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'tsuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'ttuc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'clw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'cf' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'dhr' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'dhvd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'dhcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'dhlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'vdzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'vdmw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'ewgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'nsgd' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'vdh' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'htcc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'htlc' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'att' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'ath' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'atzw' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'atmwax' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'mvv' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'2tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'2tag1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'2tag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'2talm1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'2talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'tpag20' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'tpag10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'tpag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'stag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'mslag0' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'h0dip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'hslp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'saip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'whip' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'talm2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'tag2' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'talm8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'talm4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'tag4' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'tag8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'10gp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'capep' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'tpl01' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'tprl1' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'tprg3' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'tprg5' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'10spg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'10spg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre Wind gust of at least 25 m/s -'10fgg25' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 25 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre temperature less than 273.15 K -'2tl273' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'swhg2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 2 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - probabilityType = 3 ; - } -#Significant wave height of at least 4 m -'swhg4' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 4 ; - } -#Significant wave height of at least 6 m -'swhg6' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - } -#Significant wave height of at least 8 m -'swhg8' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - } -#Mean wave period of at least 8 s -'mwpg8' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'mwpg10' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'mwpg12' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'mwpg15' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'zp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'tap' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'stl1p' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'sfp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'mslpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'tccp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'10sp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'mx2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'mn2tp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'tpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'swhp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'mwpp' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'mn2tplm10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'mn2tplm5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'mn2tpl0' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'mn2tpl5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'mn2tpl10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'mx2tpg25' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'mx2tpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'mx2tpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'mx2tpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'mx2tpg45' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'10spg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'10spg15' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'10spg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'10spg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'10spg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'10gpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'10gpg35' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'10gpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'10gpg75' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'10gpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'tppg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'tppg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'tppg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'tppg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'tppg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'tppg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'tppg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'tppg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'tppg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'tppg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'tppg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'sfpg1' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'sfpg5' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'sfpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'sfpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'sfpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'sfpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'sfpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'sfpg100' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'sfpg150' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'sfpg200' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'sfpg300' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'tccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'tccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'tccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'tccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'tccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'tccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'tccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'tccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'tccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'tccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'hccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'hccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'hccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'hccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'hccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'hccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'hccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'hccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'hccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'hccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'mccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'mccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'mccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'mccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'mccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'mccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'mccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'mccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'mccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'mccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'lccpg10' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'lccpg20' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'lccpg30' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'lccpg40' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'lccpg50' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'lccpg60' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'lccpg70' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'lccpg80' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'lccpg90' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'lccpg99' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'maxswh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'tmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'hmax' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'wmb' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'mp1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean wave period based on second moment -'mp2' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'wdw' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'p1ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'p2ww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dwww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'p1ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'p2ps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dwps' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak period of 1D spectra -'pp1d' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'cdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'mdww' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'shts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'mdts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'mpts' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'sdhs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'mu10' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'mdwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'sdu' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'msqs' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'wind' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'awh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'acwh' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'arrc' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'dwi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'2dsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'2dfd' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'wsk' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'bfi' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'wsp' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'ocs' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'ocpd' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'ocu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'ocv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'ocw' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'uv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'ut' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'vt' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'uu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'vv' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Ocean potential temperature -'ocpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Salinity -'s' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Ocean current zonal component -'ocu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; - } -#Ocean current meridional component -'ocv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; - } -#Ocean current vertical component -'ocw' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'mst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'vvs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'vdf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'dep' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sigma-theta -'sth' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'rn' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'uv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'ut' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'vt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'uu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'vv' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level -'sl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; - } -#Sea level previous timestep -'sl_1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Barotropic stream function -'bsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'mld' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'btp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'sh' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'crl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#U stress -'tax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#V stress -'tay' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'tki' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'nsf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'asr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'pme' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'sst' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'shf' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'dte' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'hfc' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#20 degrees isotherm depth -'20d' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; - } -#Average potential temperature in the upper 300m -'tav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'uba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'vba1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'ztr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'mtr' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'zht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'mht' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'umax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'dumax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'smax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'dsmax' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Average salinity in the upper 300m -'sav300' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; - } -#Layer Thickness at scalar points -'ldp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'ldu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'pti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'ptae' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'bpt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'apt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'ptbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'as' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'sali' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'ebt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'ebs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'uvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'vvi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'subi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'sale' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'bsal' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'salbe' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'ebta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'ebsa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'lti' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'lsi' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'bzpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'bmpga' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'ebtl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'ebsl' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'fgbt' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'fgbs' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'bpa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'fgbp' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'pta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'10fgrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'wrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'pwcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'swl1rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Snow depth -'sdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 141 ; - } -#Large-scale precipitation -'lsprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'sfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'ghrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'rrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'swl2rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'ewssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'nsssrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'erea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'swl3rea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'srcrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'vegrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'mx2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'mn2trea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'rorea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'zzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'tzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'ttrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'qzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'qtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'qqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'uzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'utrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'uqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'uurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'vzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'vtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'vqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'vurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'vvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'wzrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'wtrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'wqrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'wurea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'wvrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'wwrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'ishfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'csfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'lsfrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'clwcerrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'ccrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'falrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'10wsrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'moflrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'~' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'hsdrea' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'vima' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'vit' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'viwv' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'vilw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'viiw' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'vioz' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'vike' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'vithe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'vipie' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'vipile' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'vitoe' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'viec' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'vimae' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'viman' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'vikee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'viken' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'vithee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'vithen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'viwve' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'viwvn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'vige' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'vign' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'vitoee' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'vitoen' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'vioze' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'viozn' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'vimad' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'viked' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'vithed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'viwvd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'vigd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'vitoed' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'viozd' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'srta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'trta' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'srtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'trtca' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'umfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'dmfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'udra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'ddra' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'tpfa' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'tdcha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'ttpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'qtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'utpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'vtpha' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'tsw' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'swl2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'strfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'vpota' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'pta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'epta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'septa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'udwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'vdwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'urwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'vrwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'uctpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'uclna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'ucdva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'cla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'cvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'cvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'tvla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'tvha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'sica' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'asna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'rsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'ssta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'istal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'istal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'istal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'istal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'swval1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'swval2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'swval3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'swval4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'slta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'esa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'smlta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'sdura' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'dsrpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'magssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'10fga' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'lspfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'mx2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'monta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'mn2d24a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'uvba' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'para' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'capea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'pva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'tpoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'obcta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'stsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'ftsktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'sktda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'tclwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'tciwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'vitea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'ata' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'bva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'za' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'qa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'spa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'wa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'tcwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'tcwva' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'voa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'stal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'swal1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'sda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'cpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'sfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'blda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'sshfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'slhfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'chnka' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'snra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'tnra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'msla' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'lspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'swhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'lwhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'gha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'ra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'tspa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'blha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'sdora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'isora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'anora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'slora' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'tcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'10ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'10va' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'2da' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'ssrda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'stal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'swal2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'sra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'ala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'strda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'ssra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'stra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'tsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'ttra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'eqssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'nsssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'ea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'stal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'swal3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'ccca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'lcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'mcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'hcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'sunda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'ewova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'nsova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'nwova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'neova' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'btmpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'lgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'mgwsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'gwda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'srca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'vfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'vsoa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'mx2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'mn2ta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'o3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'pawa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'roa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'tco3a' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'10ua' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'tsrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'ttrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'ssrca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'strca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'sia' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'dhra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'dhvda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'dhcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'dhlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'vdzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'vdmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'ewgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'nsgda' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'ctzwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'ctmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'vdha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'htcca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'htlca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'crnha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'tpa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'iewsa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'inssa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'ishfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'iea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'asqa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'lsrha' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'skta' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'stal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'swal4' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'tsna' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'csfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'lsfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'acfa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'alwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'fala' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'fsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'flsra' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'clwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'ciwca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'cca' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'aiwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'iaa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'attea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'athea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'atzea' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'atmwa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'esrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Convective precipitation -'cprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'bldrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Surface latent heat flux -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Surface net radiation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Short-wave heating rate -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Surface solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Surface thermal radiation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Top solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Top thermal radiation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'erate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Sunshine duration -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'gwdrate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Runoff -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Total precipitation -'tprate' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'sfara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'sundara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'tpara' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'ssro' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Sea-ice thickness -'sit' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; - } -#Liquid water potential temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'tsw' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'str' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'tsr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Snow depth -'sdsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; - } -#Field capacity -'cap' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'wiltsien' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'sr' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'tsm' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'2ddiff' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'apab_s' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'sohr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'thhr_rad' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'clc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'qc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'qi' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'twater' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'ch_cm_cl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'hbas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'htop_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'bas_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'top_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'dt_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'dqv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'du_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'dv_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'htop_dc' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'hzerocl' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'snowlmt' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'qrs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'prr_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'prs_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'rain_gsp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'prr_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'prs_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'rain_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'pp' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'vmax_10m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'w_i' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'t_snow' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'t_ice' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'cape_con' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'aermr12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodpr' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsm' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdep' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerlts' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'aerscc' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'ch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2o' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2of' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4f' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'nofrp' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tcco' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'nox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnox' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhcho' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'ra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcra' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apf' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'aermr01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'aermr02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'aermr03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'aermr04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'aermr05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'aermr06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'aermr07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'aermr08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'aermr09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'aermr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'aermr11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'aermr12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'aergn01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'aergn02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'aergn03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'aergn04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'aergn05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'aergn06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'aergn07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'aergn08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'aergn09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'aergn10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'aergn11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'aergn12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'aerls01diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'aerls02diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'aerls03diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'aerls04diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'aerls05diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'aerls06diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'aerls07diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'aerls08diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'aerls09diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'aerls10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'aerls11diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'aerls12diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'aerprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'aersmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'aerlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'aodprdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'aodsmdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'aodlgdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'aerdepdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'aerltsdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'aersccdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'co2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'ch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'n2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'tcco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'tcch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'tcn2odiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'co2ofdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'co2nbfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'co2apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'ch4fdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'kch4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'cfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'c4ffirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'vegfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'ccfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'flfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'offirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'oafirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'frpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'crfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'hchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'tcno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'tcso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'tccodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'tchchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'noxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'tcnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'grg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'tcgrg1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'grg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'tcgrg2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'grg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'tcgrg3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'grg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'tcgrg4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'grg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'tcgrg5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'grg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'tcgrg6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'grg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'tcgrg7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'grg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'tcgrg8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'grg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'tcgrg9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'grg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'tcgrg10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'sfnoxdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'sfno2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'sfso2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'sfco2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'sfhchodiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'sfgo3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'sfgr1diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'sfgr2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'sfgr3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'sfgr4diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'sfgr5diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'sfgr6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'sfgr7diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'sfgr8diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'sfgr9diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'sfgr10diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'radiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'sf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'tcradiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'tcsf6diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'sf6apfdiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'gtco3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'aod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'ssaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'duaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'omaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'bcaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'suaod550diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'aod469diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'aod670diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'aod865diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'aod1240diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'tpoc' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'zust' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'mean2t' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'mean10ws' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'meantcc' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'dndzn' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'dndza' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'dctb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'tplb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'tplt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'u10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'v10n' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'sts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'msls' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'2ts' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'tps' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'ust' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'vst' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'maxfrpfire' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire radiative power maximum -'maxfrpfirediff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'vtnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'utnowd' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#100 metre U wind component -'100u' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; - } -#100 metre V wind component -'100v' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'ascat_sm_cdfa' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'ascat_sm_cdfb' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib3/localConcepts/ecmf/units.def b/eccodes/definitions.save/grib3/localConcepts/ecmf/units.def deleted file mode 100644 index 25665b33..00000000 --- a/eccodes/definitions.save/grib3/localConcepts/ecmf/units.def +++ /dev/null @@ -1,17509 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Total precipitation of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 60 ; - } -#Total precipitation of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 61 ; - } -#Total precipitation of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 82 ; - } -#Total precipitation of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 83 ; - } -#Total precipitation of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 84 ; - } -#Total precipitation of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 85 ; - } -#Total precipitation of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 86 ; - } -#Total precipitation of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 87 ; - } -#Total precipitation of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 88 ; - } -#Equivalent potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 5 ; - } -#Soil sand fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 6 ; - } -#Soil clay fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 7 ; - } -#Surface runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 8 ; - } -#Sub-surface runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 9 ; - } -#U component of divergent wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 11 ; - } -#V component of divergent wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 12 ; - } -#U component of rotational wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 13 ; - } -#V component of rotational wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 14 ; - } -#UV visible albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 15 ; - } -#UV visible albedo for diffuse radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 16 ; - } -#Near IR albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 17 ; - } -#Near IR albedo for diffuse radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 18 ; - } -#Clear sky surface UV -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 19 ; - } -#Clear sky surface photosynthetically active radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 20 ; - } -#Unbalanced component of temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence -'s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 25 ; - } -#Lake cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 26 ; - } -#Low vegetation cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 27 ; - } -#High vegetation cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 28 ; - } -#Type of low vegetation -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 29 ; - } -#Type of high vegetation -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 30 ; - } -#Snow albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 32 ; - } -#Ice temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 35 ; - } -#Ice temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 36 ; - } -#Ice temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 37 ; - } -#Ice temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 42 ; - } -#Snow evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 44 ; - } -#Snowmelt -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 45 ; - } -#Solar duration -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 46 ; - } -#Direct solar radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 50 ; - } -#Maximum temperature at 2 metres in the last 24 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; - } -#Minimum temperature at 2 metres in the last 24 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 24 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Montgomery potential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 53 ; - } -#Mean temperature at 2 metres in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 58 ; - } -#Observation count -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 71 ; - } -#Instantaneous surface solar radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 72 ; - } -#Instantaneous surface thermal radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 73 ; - } -#Standard deviation of filtered subgrid orography -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 74 ; - } -#Total column liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 78 ; - } -#Total column ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 120 ; - } -#10 metre wind gust in the last 6 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 123 ; - } -#Surface emissivity -'dimensionless' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 124 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 126 ; - } -#Atmospheric tide -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 127 ; - } -#Budget values -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 128 ; - } -#Total column water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 137 ; - } -#Soil temperature level 1 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 140 ; - } -#Snow depth -'m of water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - unitsFactor = 1000 ; - } -#Large-scale precipitation -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 142 ; - } -#Convective precipitation -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - unitsFactor = 1000 ; - } -#Snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 144 ; - } -#Charnock -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 148 ; - } -#Surface net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 149 ; - } -#Top net radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 150 ; - } -#Logarithm of surface pressure -'~' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - typeOfFirstFixedSurface = 105 ; - } -#Short-wave heating rate -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 154 ; - } -#Tendency of surface pressure -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 158 ; - } -#Boundary layer height -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 159 ; - } -#Standard deviation of orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography -'radians' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 163 ; - } -#Total cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 164 ; - } -#Soil temperature level 2 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 171 ; - } -#Albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 174 ; - } -#Top net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 178 ; - } -#Evaporation -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 184 ; - } -#Convective cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 185 ; - } -#Low cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 186 ; - } -#Medium cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 187 ; - } -#High cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 188 ; - } -#East-West component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 193 ; - } -#Eastward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 195 ; - } -#Northward gravity wave surface stress -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 197 ; - } -#Skin reservoir content -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 198 ; - } -#Vegetation fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography -'m**2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 200 ; - } -#Precipitation analysis weights -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 204 ; - } -#Runoff -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 205 ; - } -#Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 206 ; - } -#Top net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 212 ; - } -#Vertically integrated moisture divergence -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 226 ; - } -#Tendency due to removal of negative humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 227 ; - } -#Total precipitation -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - unitsFactor = 1000 ; - } -#Instantaneous eastward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 229 ; - } -#Instantaneous northward turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 230 ; - } -#Instantaneous surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 232 ; - } -#Apparent surface humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 234 ; - } -#Soil temperature level 4 -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 237 ; - } -#Temperature of snow layer -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } -#Convective snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 239 ; - } -#Large-scale snowfall -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 242 ; - } -#Forecast albedo -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 243 ; - } -#Forecast surface roughness -'m' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat -'~' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 245 ; - } -#Accumulated ice water tendency -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 249 ; - } -#Ice age -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind -'m s**-1' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 254 ; - } -#Stream function difference -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 1 ; - } -#Velocity potential difference -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 2 ; - } -#Potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 5 ; - } -#U component of divergent wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 11 ; - } -#V component of divergent wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 12 ; - } -#U component of rotational wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 13 ; - } -#V component of rotational wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 25 ; - } -#Lake cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 26 ; - } -#Low vegetation cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 27 ; - } -#High vegetation cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 28 ; - } -#Type of low vegetation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 29 ; - } -#Type of high vegetation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 30 ; - } -#Sea-ice cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 31 ; - } -#Snow albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 32 ; - } -#Snow density difference -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 33 ; - } -#Sea surface temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 difference -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 42 ; - } -#Soil type difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 43 ; - } -#Snow evaporation difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 44 ; - } -#Snowmelt difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 45 ; - } -#Solar duration difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 46 ; - } -#Direct solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 48 ; - } -#10 metre wind gust difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 52 ; - } -#Montgomery potential difference -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 53 ; - } -#Pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 58 ; - } -#Convective available potential energy difference -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 59 ; - } -#Potential vorticity difference -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 60 ; - } -#Total precipitation from observations difference -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 61 ; - } -#Observation count difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 71 ; - } -#Total column liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 78 ; - } -#Total column ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 126 ; - } -#Atmospheric tide difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 127 ; - } -#Budget values difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 128 ; - } -#Geopotential difference -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 129 ; - } -#Temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 130 ; - } -#U component of wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 131 ; - } -#V component of wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 132 ; - } -#Specific humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 133 ; - } -#Surface pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) difference -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 135 ; - } -#Total column water difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 136 ; - } -#Total column water vapour difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 137 ; - } -#Vorticity (relative) difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 140 ; - } -#Snow depth difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 142 ; - } -#Convective precipitation difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 146 ; - } -#Surface latent heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 147 ; - } -#Charnock difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 148 ; - } -#Surface net radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 149 ; - } -#Top net radiation difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 150 ; - } -#Mean sea level pressure difference -'Pa' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 152 ; - } -#Short-wave heating rate difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 153 ; - } -#Long-wave heating rate difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 154 ; - } -#Divergence difference -'s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 155 ; - } -#Height difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 156 ; - } -#Relative humidity difference -'%' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure difference -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 158 ; - } -#Boundary layer height difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 159 ; - } -#Standard deviation of orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography difference -'radians' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 163 ; - } -#Total cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 164 ; - } -#10 metre U wind component difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 165 ; - } -#10 metre V wind component difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 166 ; - } -#2 metre temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 167 ; - } -#Surface solar radiation downwards difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 171 ; - } -#Land-sea mask difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 172 ; - } -#Surface roughness difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 173 ; - } -#Albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 175 ; - } -#Surface net solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 177 ; - } -#Top net solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 178 ; - } -#Top net thermal radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 179 ; - } -#East-West surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 180 ; - } -#North-South surface stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 181 ; - } -#Evaporation difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 184 ; - } -#Convective cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 185 ; - } -#Low cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 186 ; - } -#Medium cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 187 ; - } -#High cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 188 ; - } -#Sunshine duration difference -'s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 193 ; - } -#Brightness temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress difference -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 197 ; - } -#Skin reservoir content difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 198 ; - } -#Vegetation fraction difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography difference -'m**2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 204 ; - } -#Runoff difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 205 ; - } -#Total column ozone difference -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 206 ; - } -#10 metre wind speed difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 227 ; - } -#Total precipitation difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress difference -'N m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress difference -'N m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux difference -'J m**-2' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux difference -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 232 ; - } -#Apparent surface humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 234 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 237 ; - } -#Temperature of snow layer difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 238 ; - } -#Convective snowfall difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 239 ; - } -#Large scale snowfall difference -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 242 ; - } -#Forecast albedo difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 243 ; - } -#Forecast surface roughness difference -'m' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat difference -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 247 ; - } -#Cloud cover difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency difference -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 249 ; - } -#Ice age difference -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity difference -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind difference -'m s**-1' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 255 ; - } -#Reserved -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 193 ; - } -#U-tendency from dynamics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 114 ; - } -#V-tendency from dynamics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 115 ; - } -#T-tendency from dynamics -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 116 ; - } -#q-tendency from dynamics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 117 ; - } -#T-tendency from radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 118 ; - } -#U-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 119 ; - } -#V-tendency from turbulent diffusion + subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 120 ; - } -#T-tendency from turbulent diffusion + subgrid orography -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 121 ; - } -#q-tendency from turbulent diffusion -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 122 ; - } -#U-tendency from subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 123 ; - } -#V-tendency from subgrid orography -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 124 ; - } -#T-tendency from subgrid orography -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 125 ; - } -#U-tendency from convection (deep+shallow) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 126 ; - } -#V-tendency from convection (deep+shallow) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 127 ; - } -#T-tendency from convection (deep+shallow) -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 128 ; - } -#q-tendency from convection (deep+shallow) -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 129 ; - } -#Liquid Precipitation flux from convection -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 130 ; - } -#Ice Precipitation flux from convection -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 131 ; - } -#T-tendency from cloud scheme -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 132 ; - } -#q-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 133 ; - } -#ql-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 134 ; - } -#qi-tendency from cloud scheme -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 135 ; - } -#Liquid Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 136 ; - } -#Ice Precip flux from cloud scheme (stratiform) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 137 ; - } -#U-tendency from shallow convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 138 ; - } -#V-tendency from shallow convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 139 ; - } -#T-tendency from shallow convection -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 140 ; - } -#q-tendency from shallow convection -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 141 ; - } -#100 metre U wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 6 ; - } -#100 metre V wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 7 ; - } -#Maximum temperature at 2 metres in the last 6 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres in the last 6 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 122 ; - } -#Volcanic ash aerosol mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 13 ; - } -#Volcanic sulphate aerosol mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 14 ; - } -#Volcanic SO2 precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 56 ; - } -#Mixing ration of organic carbon aerosol, nucleation mode -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 57 ; - } -#Monoterpene precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 58 ; - } -#Secondary organic precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 59 ; - } -#Particulate matter d < 1 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 72 ; - } -#Particulate matter d < 2.5 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 73 ; - } -#Particulate matter d < 10 um -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 74 ; - } -#Wildfire viewing angle of observation -'deg' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 79 ; - } -#Mean altitude of maximum injection -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 120 ; - } -#UV visible albedo for direct radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 186 ; - } -#UV visible albedo for direct radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 187 ; - } -#UV visible albedo for direct radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 188 ; - } -#Near IR albedo for direct radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 189 ; - } -#Near IR albedo for direct radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 190 ; - } -#Near IR albedo for direct radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 191 ; - } -#UV visible albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 192 ; - } -#UV visible albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 193 ; - } -#UV visible albedo for diffuse radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 194 ; - } -#Near IR albedo for diffuse radiation, isotropic component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 195 ; - } -#Near IR albedo for diffuse radiation, volumetric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 196 ; - } -#Near IR albedo for diffuse radiation, geometric component -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 197 ; - } -#Total aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 217 ; - } -#Total aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 218 ; - } -#Total aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 219 ; - } -#Total aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 220 ; - } -#Total aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 221 ; - } -#Total aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 222 ; - } -#Total aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 223 ; - } -#Total aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 224 ; - } -#Total aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 225 ; - } -#Total aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 226 ; - } -#Total aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 227 ; - } -#Total aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 228 ; - } -#Total aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 229 ; - } -#Total aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 230 ; - } -#Altitude of plume bottom -'m' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 242 ; - } -#Volcanic sulphate aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 243 ; - } -#Volcanic ash optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 244 ; - } -#Profile of total aerosol dry extinction coefficient -'m**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 245 ; - } -#Profile of total aerosol dry absorption coefficient -'m**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 246 ; - } -#Aerosol type 13 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 13 ; - } -#Aerosol type 14 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 14 ; - } -#Aerosol type 15 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 15 ; - } -#SO4 aerosol precursor mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 28 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 1 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 29 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 30 ; - } -#DMS surface emission -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 43 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 3 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 44 ; - } -#Water vapour mixing ratio for hydrophilic aerosols in mode 4 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 56 ; - } -#Altitude of emitter -'m' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 119 ; - } -#Altitude of plume top -'m' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 212 ; - parameterNumber = 255 ; - } -#Random pattern 1 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 1 ; - } -#Random pattern 2 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 2 ; - } -#Random pattern 3 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 3 ; - } -#Random pattern 4 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 4 ; - } -#Random pattern 5 for sppt -'dimensionless' = { - discipline = 192 ; - parameterCategory = 213 ; - parameterNumber = 5 ; - } -# Cosine of solar zenith angle -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 1 ; - } -# UV biologically effective dose -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 2 ; - } -# UV biologically effective dose clear-sky -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 3 ; - } -# Total surface UV spectral flux (280-285 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 4 ; - } -# Total surface UV spectral flux (285-290 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 5 ; - } -# Total surface UV spectral flux (290-295 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 6 ; - } -# Total surface UV spectral flux (295-300 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 7 ; - } -# Total surface UV spectral flux (300-305 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 8 ; - } -# Total surface UV spectral flux (305-310 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 9 ; - } -# Total surface UV spectral flux (310-315 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 10 ; - } -# Total surface UV spectral flux (315-320 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 11 ; - } -# Total surface UV spectral flux (320-325 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 12 ; - } -# Total surface UV spectral flux (325-330 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 13 ; - } -# Total surface UV spectral flux (330-335 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 14 ; - } -# Total surface UV spectral flux (335-340 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 15 ; - } -# Total surface UV spectral flux (340-345 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 16 ; - } -# Total surface UV spectral flux (345-350 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 17 ; - } -# Total surface UV spectral flux (350-355 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 18 ; - } -# Total surface UV spectral flux (355-360 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 19 ; - } -# Total surface UV spectral flux (360-365 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 20 ; - } -# Total surface UV spectral flux (365-370 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 21 ; - } -# Total surface UV spectral flux (370-375 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 22 ; - } -# Total surface UV spectral flux (375-380 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 23 ; - } -# Total surface UV spectral flux (380-385 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 24 ; - } -# Total surface UV spectral flux (385-390 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 25 ; - } -# Total surface UV spectral flux (390-395 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 26 ; - } -# Total surface UV spectral flux (395-400 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 27 ; - } -# Clear-sky surface UV spectral flux (280-285 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 28 ; - } -# Clear-sky surface UV spectral flux (285-290 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 29 ; - } -# Clear-sky surface UV spectral flux (290-295 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 30 ; - } -# Clear-sky surface UV spectral flux (295-300 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 31 ; - } -# Clear-sky surface UV spectral flux (300-305 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 32 ; - } -# Clear-sky surface UV spectral flux (305-310 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 33 ; - } -# Clear-sky surface UV spectral flux (310-315 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 34 ; - } -# Clear-sky surface UV spectral flux (315-320 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 35 ; - } -# Clear-sky surface UV spectral flux (320-325 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 36 ; - } -# Clear-sky surface UV spectral flux (325-330 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 37 ; - } -# Clear-sky surface UV spectral flux (330-335 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 38 ; - } -# Clear-sky surface UV spectral flux (335-340 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 39 ; - } -# Clear-sky surface UV spectral flux (340-345 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 40 ; - } -# Clear-sky surface UV spectral flux (345-350 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 41 ; - } -# Clear-sky surface UV spectral flux (350-355 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 42 ; - } -# Clear-sky surface UV spectral flux (355-360 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 43 ; - } -# Clear-sky surface UV spectral flux (360-365 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 44 ; - } -# Clear-sky surface UV spectral flux (365-370 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 45 ; - } -# Clear-sky surface UV spectral flux (370-375 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 46 ; - } -# Clear-sky surface UV spectral flux (375-380 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 47 ; - } -# Clear-sky surface UV spectral flux (380-385 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 48 ; - } -# Clear-sky surface UV spectral flux (385-390 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 49 ; - } -# Clear-sky surface UV spectral flux (390-395 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 50 ; - } -# Clear-sky surface UV spectral flux (395-400 nm) -'W m**-2' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 51 ; - } -# Profile of optical thickness at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 214 ; - parameterNumber = 52 ; - } -# Source/gain of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 1 ; - } -# Source/gain of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 2 ; - } -# Source/gain of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 3 ; - } -# Dry deposition of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 4 ; - } -# Dry deposition of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 5 ; - } -# Dry deposition of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 6 ; - } -# Sedimentation of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 7 ; - } -# Sedimentation of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 8 ; - } -# Sedimentation of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 9 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 10 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 11 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 12 ; - } -# Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 13 ; - } -# Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 14 ; - } -# Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 15 ; - } -# Negative fixer of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 16 ; - } -# Negative fixer of sea salt aerosol (0.5 - 5 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 17 ; - } -# Negative fixer of sea salt aerosol (5 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 18 ; - } -# Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 19 ; - } -# Vertically integrated mass of sea salt aerosol (0.5 - 5 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 20 ; - } -# Vertically integrated mass of sea salt aerosol (5 - 20 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 21 ; - } -# Sea salt aerosol (0.03 - 0.5 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 22 ; - } -# Sea salt aerosol (0.5 - 5 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 23 ; - } -# Sea salt aerosol (5 - 20 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 24 ; - } -# Source/gain of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 25 ; - } -# Source/gain of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 26 ; - } -# Source/gain of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 27 ; - } -# Dry deposition of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 28 ; - } -# Dry deposition of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 29 ; - } -# Dry deposition of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 30 ; - } -# Sedimentation of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 31 ; - } -# Sedimentation of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 32 ; - } -# Sedimentation of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 33 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 34 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 35 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 36 ; - } -# Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 37 ; - } -# Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 38 ; - } -# Wet deposition of dust aerosol (9 - 20 um) by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 39 ; - } -# Negative fixer of dust aerosol (0.03 - 0.55 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 40 ; - } -# Negative fixer of dust aerosol (0.55 - 9 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 41 ; - } -# Negative fixer of dust aerosol (9 - 20 um) -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 42 ; - } -# Vertically integrated mass of dust aerosol (0.03 - 0.55 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 43 ; - } -# Vertically integrated mass of dust aerosol (0.55 - 9 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 44 ; - } -# Vertically integrated mass of dust aerosol (9 - 20 um) -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 45 ; - } -# Dust aerosol (0.03 - 0.55 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 46 ; - } -# Dust aerosol (0.55 - 9 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 47 ; - } -# Dust aerosol (9 - 20 um) optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 48 ; - } -# Source/gain of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 49 ; - } -# Source/gain of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 50 ; - } -# Dry deposition of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 51 ; - } -# Dry deposition of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 52 ; - } -# Sedimentation of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 53 ; - } -# Sedimentation of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 54 ; - } -# Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 55 ; - } -# Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 56 ; - } -# Wet deposition of hydrophobic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 57 ; - } -# Wet deposition of hydrophilic organic matter aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 58 ; - } -# Negative fixer of hydrophobic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 59 ; - } -# Negative fixer of hydrophilic organic matter aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 60 ; - } -# Vertically integrated mass of hydrophobic organic matter aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 61 ; - } -# Vertically integrated mass of hydrophilic organic matter aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 62 ; - } -# Hydrophobic organic matter aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 63 ; - } -# Hydrophilic organic matter aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 64 ; - } -# Source/gain of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 65 ; - } -# Source/gain of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 66 ; - } -# Dry deposition of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 67 ; - } -# Dry deposition of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 68 ; - } -# Sedimentation of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 69 ; - } -# Sedimentation of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 70 ; - } -# Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 71 ; - } -# Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 72 ; - } -# Wet deposition of hydrophobic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 73 ; - } -# Wet deposition of hydrophilic black carbon aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 74 ; - } -# Negative fixer of hydrophobic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 75 ; - } -# Negative fixer of hydrophilic black carbon aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 76 ; - } -# Vertically integrated mass of hydrophobic black carbon aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 77 ; - } -# Vertically integrated mass of hydrophilic black carbon aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 78 ; - } -# Hydrophobic black carbon aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 79 ; - } -# Hydrophilic black carbon aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 80 ; - } -# Source/gain of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 81 ; - } -# Dry deposition of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 82 ; - } -# Sedimentation of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 83 ; - } -# Wet deposition of sulphate aerosol by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 84 ; - } -# Wet deposition of sulphate aerosol by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 85 ; - } -# Negative fixer of sulphate aerosol -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 86 ; - } -# Vertically integrated mass of sulphate aerosol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 87 ; - } -# Sulphate aerosol optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 88 ; - } -#Accumulated total aerosol optical depth at 550 nm -'s' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 89 ; - } -#Effective (snow effect included) UV visible albedo for direct radiation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 90 ; - } -#10 metre wind speed dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 91 ; - } -#10 metre wind gustiness dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 92 ; - } -#Total aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 93 ; - } -#Natural (sea-salt and dust) aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 94 ; - } -#Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm -'dimensionless' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 95 ; - } -#Total absorption aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 96 ; - } -#Total absorption aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 97 ; - } -#Total absorption aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 98 ; - } -#Total absorption aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 99 ; - } -#Total absorption aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 100 ; - } -#Total absorption aerosol optical depth at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 101 ; - } -#Total absorption aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 102 ; - } -#Total absorption aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 103 ; - } -#Total absorption aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 104 ; - } -#Total absorption aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 105 ; - } -#Total absorption aerosol optical depth at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 106 ; - } -#Total absorption aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 107 ; - } -#Total absorption aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 108 ; - } -#Total absorption aerosol optical depth at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 109 ; - } -#Total absorption aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 110 ; - } -#Total absorption aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 111 ; - } -#Total absorption aerosol optical depth at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 112 ; - } -#Total absorption aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 113 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 114 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 115 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 116 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 117 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 118 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 119 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 120 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 121 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 122 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 123 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 124 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 125 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 126 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 127 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 128 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 129 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 130 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 131 ; - } -#Single scattering albedo at 340 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 132 ; - } -#Single scattering albedo at 355 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 133 ; - } -#Single scattering albedo at 380 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 134 ; - } -#Single scattering albedo at 400 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 135 ; - } -#Single scattering albedo at 440 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 136 ; - } -#Single scattering albedo at 469 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 137 ; - } -#Single scattering albedo at 500 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 138 ; - } -#Single scattering albedo at 532 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 139 ; - } -#Single scattering albedo at 550 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 140 ; - } -#Single scattering albedo at 645 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 141 ; - } -#Single scattering albedo at 670 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 142 ; - } -#Single scattering albedo at 800 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 143 ; - } -#Single scattering albedo at 858 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 144 ; - } -#Single scattering albedo at 865 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 145 ; - } -#Single scattering albedo at 1020 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 146 ; - } -#Single scattering albedo at 1064 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 147 ; - } -#Single scattering albedo at 1240 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 148 ; - } -#Single scattering albedo at 1640 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 149 ; - } -#Assimetry factor at 340 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 150 ; - } -#Assimetry factor at 355 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 151 ; - } -#Assimetry factor at 380 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 152 ; - } -#Assimetry factor at 400 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 153 ; - } -#Assimetry factor at 440 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 154 ; - } -#Assimetry factor at 469 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 155 ; - } -#Assimetry factor at 500 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 156 ; - } -#Assimetry factor at 532 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 157 ; - } -#Assimetry factor at 550 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 158 ; - } -#Assimetry factor at 645 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 159 ; - } -#Assimetry factor at 670 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 160 ; - } -#Assimetry factor at 800 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 161 ; - } -#Assimetry factor at 858 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 162 ; - } -#Assimetry factor at 865 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 163 ; - } -#Assimetry factor at 1020 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 164 ; - } -#Assimetry factor at 1064 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 165 ; - } -#Assimetry factor at 1240 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 166 ; - } -#Assimetry factor at 1640 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 167 ; - } -#Source/gain of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 168 ; - } -#Dry deposition of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 169 ; - } -#Sedimentation of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 170 ; - } -#Wet deposition of sulphur dioxide by large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 171 ; - } -#Wet deposition of sulphur dioxide by convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 172 ; - } -#Negative fixer of sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 173 ; - } -#Vertically integrated mass of sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 174 ; - } -#Sulphur dioxide optical depth -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 175 ; - } -#Total absorption aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 176 ; - } -#Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 177 ; - } -#Single scattering albedo at 2130 nm -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 178 ; - } -#Assimetry factor at 2130 nm -'~' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 179 ; - } -#Aerosol extinction coefficient at 355 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 180 ; - } -#Aerosol extinction coefficient at 532 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 181 ; - } -#Aerosol extinction coefficient at 1064 nm -'m**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 182 ; - } -#Aerosol backscatter coefficient at 355 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 183 ; - } -#Aerosol backscatter coefficient at 532 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 184 ; - } -#Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 185 ; - } -#Aerosol backscatter coefficient at 355 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 186 ; - } -#Aerosol backscatter coefficient at 532 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 187 ; - } -#Aerosol backscatter coefficient at 1064 nm (from ground) -'m**-1 sr**-1' = { - discipline = 192 ; - parameterCategory = 215 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 1 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 2 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 3 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 4 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 5 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 6 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 7 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 8 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 9 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 10 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 11 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 12 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 13 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 14 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 15 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 16 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 17 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 18 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 19 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 20 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 21 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 22 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 23 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 24 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 25 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 26 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 27 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 28 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 29 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 30 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 31 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 32 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 33 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 34 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 35 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 36 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 37 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 38 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 39 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 40 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 41 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 42 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 43 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 44 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 45 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 46 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 47 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 48 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 49 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 50 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 51 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 52 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 53 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 54 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 55 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 56 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 57 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 58 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 59 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 60 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 61 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 62 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 63 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 64 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 65 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 66 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 67 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 68 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 69 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 70 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 71 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 72 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 73 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 74 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 75 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 76 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 77 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 78 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 120 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 121 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 122 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 123 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 124 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 125 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 126 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 127 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 128 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 129 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 130 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 131 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 132 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 133 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 134 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 135 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 136 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 137 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 138 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 139 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 140 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 141 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 142 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 143 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 144 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 145 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 146 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 147 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 148 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 149 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 150 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 151 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 152 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 153 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 154 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 155 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 156 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 157 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 158 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 159 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 160 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 161 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 162 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 163 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 164 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 165 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 166 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 167 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 168 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 169 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 170 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 171 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 172 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 173 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 174 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 175 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 176 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 177 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 178 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 179 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 180 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 181 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 182 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 183 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 184 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 185 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 186 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 187 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 188 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 189 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 190 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 191 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 192 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 193 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 194 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 195 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 196 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 197 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 198 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 199 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 200 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 201 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 202 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 203 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 204 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 205 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 206 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 207 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 208 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 209 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 210 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 211 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 212 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 213 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 214 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 215 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 216 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 217 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 218 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 219 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 220 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 221 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 222 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 223 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 224 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 225 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 226 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 227 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 228 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 229 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 230 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 231 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 232 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 233 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 234 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 235 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 236 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 237 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 238 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 239 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 240 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 241 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 242 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 243 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 244 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 245 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 246 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 247 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 248 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 249 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 250 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 251 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 252 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 253 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 254 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 216 ; - parameterNumber = 255 ; - } -#Hydrogen peroxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 3 ; - } -#Methane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 4 ; - } -#Nitric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 6 ; - } -#Methyl peroxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 7 ; - } -#Paraffins -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 9 ; - } -#Ethene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 10 ; - } -#Olefins -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 11 ; - } -#Aldehydes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 13 ; - } -#Peroxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 14 ; - } -#Organic nitrates -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 15 ; - } -#Isoprene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 16 ; - } -#Dimethyl sulfide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 18 ; - } -#Ammonia -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Sulfate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 20 ; - } -#Ammonium -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 22 ; - } -#Methyl glyoxal -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 23 ; - } -#Stratospheric ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 24 ; - } -#Lead -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 28 ; - } -#Methylperoxy radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 29 ; - } -#Hydroxyl radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 30 ; - } -#Nitrate radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 33 ; - } -#Pernitric acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 35 ; - } -#Organic ethers -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 36 ; - } -#PAR budget corrector -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 37 ; - } -#NO to NO2 operator -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 39 ; - } -#Amine -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 41 ; - } -#Methanol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 42 ; - } -#Formic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 43 ; - } -#Methacrylic acid -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 44 ; - } -#Ethane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 45 ; - } -#Ethanol -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 46 ; - } -#Propane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 47 ; - } -#Propene -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 48 ; - } -#Terpenes -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 49 ; - } -#Methacrolein MVK -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 50 ; - } -#Nitrate -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 51 ; - } -#Acetone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 52 ; - } -#Acetone product -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 53 ; - } -#IC3H7O2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 54 ; - } -#HYPROPO2 -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 56 ; - } -#Total column hydrogen peroxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 3 ; - } -#Total column methane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 4 ; - } -#Total column nitric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 6 ; - } -#Total column methyl peroxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 7 ; - } -#Total column paraffins -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 9 ; - } -#Total column ethene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 10 ; - } -#Total column olefins -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 11 ; - } -#Total column aldehydes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 12 ; - } -#Total column peroxyacetyl nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 13 ; - } -#Total column peroxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 14 ; - } -#Total column organic nitrates -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 15 ; - } -#Total column isoprene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 16 ; - } -#Total column dimethyl sulfide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 18 ; - } -#Total column ammonia -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 19 ; - } -#Total column sulfate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 20 ; - } -#Total column ammonium -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 21 ; - } -#Total column methane sulfonic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 22 ; - } -#Total column methyl glyoxal -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 23 ; - } -#Total column stratospheric ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 24 ; - } -#Total column lead -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 26 ; - } -#Total column nitrogen monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 27 ; - } -#Total column hydroperoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 28 ; - } -#Total column methylperoxy radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 29 ; - } -#Total column hydroxyl radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 30 ; - } -#Total column nitrate radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 32 ; - } -#Total column dinitrogen pentoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 33 ; - } -#Total column pernitric acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 34 ; - } -#Total column peroxy acetyl radical -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 35 ; - } -#Total column organic ethers -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 36 ; - } -#Total column PAR budget corrector -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 37 ; - } -#Total column NO to NO2 operator -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 38 ; - } -#Total column NO to alkyl nitrate operator -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 39 ; - } -#Total column amine -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 40 ; - } -#Total column polar stratospheric cloud -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 41 ; - } -#Total column methanol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 42 ; - } -#Total column formic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 43 ; - } -#Total column methacrylic acid -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 44 ; - } -#Total column ethane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 45 ; - } -#Total column ethanol -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 46 ; - } -#Total column propane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 47 ; - } -#Total column propene -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 48 ; - } -#Total column terpenes -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 49 ; - } -#Total column methacrolein MVK -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 50 ; - } -#Total column nitrate -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 51 ; - } -#Total column acetone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 52 ; - } -#Total column acetone product -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 53 ; - } -#Total column IC3H7O2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 54 ; - } -#Total column HYPROPO2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 55 ; - } -#Total column nitrogen oxides Transp -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 218 ; - parameterNumber = 56 ; - } -#Ozone emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 1 ; - } -#Nitrogen oxides emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 3 ; - } -#Methane emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 4 ; - } -#Carbon monoxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 5 ; - } -#Nitric acid emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 6 ; - } -#Methyl peroxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 7 ; - } -#Formaldehyde emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 8 ; - } -#Paraffins emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 9 ; - } -#Ethene emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 10 ; - } -#Olefins emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 11 ; - } -#Aldehydes emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 13 ; - } -#Peroxides emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 14 ; - } -#Organic nitrates emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 15 ; - } -#Isoprene emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 16 ; - } -#Sulfur dioxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 18 ; - } -#Ammonia emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 19 ; - } -#Sulfate emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 20 ; - } -#Ammonium emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 22 ; - } -#Methyl glyoxal emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 23 ; - } -#Stratospheric ozone emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 24 ; - } -#Radon emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 25 ; - } -#Lead emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 28 ; - } -#Methylperoxy radical emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 29 ; - } -#Hydroxyl radical emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 31 ; - } -#Nitrate radical emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 33 ; - } -#Pernitric acid emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 35 ; - } -#Organic ethers emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 36 ; - } -#PAR budget corrector emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 37 ; - } -#NO to NO2 operator emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 39 ; - } -#Amine emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 41 ; - } -#Methanol emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 42 ; - } -#Formic acid emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 43 ; - } -#Methacrylic acid emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 44 ; - } -#Ethane emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 45 ; - } -#Ethanol emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 46 ; - } -#Propane emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 47 ; - } -#Propene emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 48 ; - } -#Terpenes emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 49 ; - } -#Methacrolein MVK emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 50 ; - } -#Nitrate emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 51 ; - } -#Acetone emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 52 ; - } -#Acetone product emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 53 ; - } -#IC3H7O2 emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 54 ; - } -#HYPROPO2 emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp emissions -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 219 ; - parameterNumber = 56 ; - } -#Ozone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 1 ; - } -#Nitrogen oxides deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 2 ; - } -#Hydrogen peroxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 3 ; - } -#Methane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 4 ; - } -#Carbon monoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 5 ; - } -#Nitric acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 6 ; - } -#Methyl peroxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 7 ; - } -#Formaldehyde deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 8 ; - } -#Paraffins deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 9 ; - } -#Ethene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 10 ; - } -#Olefins deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 11 ; - } -#Aldehydes deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 12 ; - } -#Peroxyacetyl nitrate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 13 ; - } -#Peroxides deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 14 ; - } -#Organic nitrates deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 15 ; - } -#Isoprene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 16 ; - } -#Sulfur dioxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 17 ; - } -#Dimethyl sulfide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 18 ; - } -#Ammonia deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 19 ; - } -#Sulfate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 20 ; - } -#Ammonium deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 21 ; - } -#Methane sulfonic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 22 ; - } -#Methyl glyoxal deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 23 ; - } -#Stratospheric ozone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 24 ; - } -#Radon deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 25 ; - } -#Lead deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 26 ; - } -#Nitrogen monoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 27 ; - } -#Hydroperoxy radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 28 ; - } -#Methylperoxy radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 29 ; - } -#Hydroxyl radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 30 ; - } -#Nitrogen dioxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 31 ; - } -#Nitrate radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 32 ; - } -#Dinitrogen pentoxide deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 33 ; - } -#Pernitric acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 34 ; - } -#Peroxy acetyl radical deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 35 ; - } -#Organic ethers deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 36 ; - } -#PAR budget corrector deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 37 ; - } -#NO to NO2 operator deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 38 ; - } -#NO to alkyl nitrate operator deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 39 ; - } -#Amine deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 40 ; - } -#Polar stratospheric cloud deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 41 ; - } -#Methanol deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 42 ; - } -#Formic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 43 ; - } -#Methacrylic acid deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 44 ; - } -#Ethane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 45 ; - } -#Ethanol deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 46 ; - } -#Propane deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 47 ; - } -#Propene deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 48 ; - } -#Terpenes deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 49 ; - } -#Methacrolein MVK deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 50 ; - } -#Nitrate deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 51 ; - } -#Acetone deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 52 ; - } -#Acetone product deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 53 ; - } -#IC3H7O2 deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 54 ; - } -#HYPROPO2 deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 55 ; - } -#Nitrogen oxides Transp deposition velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 221 ; - parameterNumber = 56 ; - } -#Total sky direct solar radiation at surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 21 ; - } -#Clear-sky direct solar radiation at surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 22 ; - } -#Cloud base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 23 ; - } -#Zero degree level -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 24 ; - } -#Horizontal visibility -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 25 ; - } -#Maximum temperature at 2 metres in the last 3 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres in the last 3 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#10 metre wind gust in the last 3 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 28 ; - } -#Soil wetness index in layer 1 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 40 ; - } -#Soil wetness index in layer 2 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 41 ; - } -#Soil wetness index in layer 3 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 42 ; - } -#Soil wetness index in layer 4 -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 43 ; - } -#Height of Zero Deg Wet Bulb Temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 47 ; - } -#Height of One Deg Wet Bulb Temperature -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 48 ; - } -#Total column rain water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 89 ; - } -#Total column snow water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 90 ; - } -#Canopy cover fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 91 ; - } -#Soil texture fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 92 ; - } -#Volumetric soil moisture -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 93 ; - } -#Ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 94 ; - } -#Surface solar radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 129 ; - } -#Surface thermal radiation downward clear-sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 130 ; - } -#Surface short wave-effective total cloudiness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 248 ; - } -#100 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 249 ; - } -#Irrigation fraction -'Proportion' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 250 ; - } -#Potential evaporation -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 251 ; - } -#Irrigation -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 252 ; - } -#Surface long wave-effective total cloudiness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 255 ; - } -#Stream function gradient -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 1 ; - } -#Velocity potential gradient -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 2 ; - } -#Potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 5 ; - } -#U component of divergent wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 11 ; - } -#V component of divergent wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 12 ; - } -#U component of rotational wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 13 ; - } -#V component of rotational wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 23 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 24 ; - } -#Reserved for future unbalanced components -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 25 ; - } -#Lake cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 26 ; - } -#Low vegetation cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 27 ; - } -#High vegetation cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 28 ; - } -#Type of low vegetation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 29 ; - } -#Type of high vegetation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 30 ; - } -#Sea-ice cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 31 ; - } -#Snow albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 32 ; - } -#Snow density gradient -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 33 ; - } -#Sea surface temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 34 ; - } -#Ice surface temperature layer 1 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 35 ; - } -#Ice surface temperature layer 2 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 36 ; - } -#Ice surface temperature layer 3 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 37 ; - } -#Ice surface temperature layer 4 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 38 ; - } -#Volumetric soil water layer 1 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 gradient -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 42 ; - } -#Soil type gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 43 ; - } -#Snow evaporation gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 44 ; - } -#Snowmelt gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 45 ; - } -#Solar duration gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 46 ; - } -#Direct solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 48 ; - } -#10 metre wind gust gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 52 ; - } -#Montgomery potential gradient -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 53 ; - } -#Pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 58 ; - } -#Convective available potential energy gradient -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 59 ; - } -#Potential vorticity gradient -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 60 ; - } -#Total precipitation from observations gradient -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 61 ; - } -#Observation count gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 64 ; - } -#Skin temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 65 ; - } -#Leaf area index, low vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 66 ; - } -#Leaf area index, high vegetation -'m**2 m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 67 ; - } -#Minimum stomatal resistance, low vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 68 ; - } -#Minimum stomatal resistance, high vegetation -'s m**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 69 ; - } -#Biome cover, low vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 70 ; - } -#Biome cover, high vegetation -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 71 ; - } -#Total column liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 78 ; - } -#Total column ice water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 79 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 80 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 81 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 82 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 83 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 84 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 85 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 86 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 87 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 88 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 89 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 90 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 91 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 92 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 93 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 94 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 95 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 96 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 97 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 98 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 99 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 100 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 101 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 102 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 103 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 104 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 105 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 106 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 107 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 108 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 109 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 110 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 111 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 112 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 113 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 114 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 115 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 116 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 117 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 118 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 119 ; - } -#Experimental product -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 120 ; - } -#Maximum temperature at 2 metres gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 121 ; - } -#Minimum temperature at 2 metres gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 122 ; - } -#10 metre wind gust in the last 6 hours gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 123 ; - } -#Vertically integrated total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 126 ; - } -#Atmospheric tide gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 127 ; - } -#Budget values gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 128 ; - } -#Geopotential gradient -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 129 ; - } -#Temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 130 ; - } -#U component of wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 131 ; - } -#V component of wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 132 ; - } -#Specific humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 133 ; - } -#Surface pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 134 ; - } -#vertical velocity (pressure) gradient -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 135 ; - } -#Total column water gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 136 ; - } -#Total column water vapour gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 137 ; - } -#Vorticity (relative) gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 138 ; - } -#Soil temperature level 1 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 139 ; - } -#Soil wetness level 1 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 140 ; - } -#Snow depth gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 142 ; - } -#Convective precipitation gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 146 ; - } -#Surface latent heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 147 ; - } -#Charnock gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 148 ; - } -#Surface net radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 149 ; - } -#Top net radiation gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 150 ; - } -#Mean sea level pressure gradient -'Pa' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 152 ; - } -#Short-wave heating rate gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 153 ; - } -#Long-wave heating rate gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 154 ; - } -#Divergence gradient -'s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 155 ; - } -#Height gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 156 ; - } -#Relative humidity gradient -'%' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure gradient -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 158 ; - } -#Boundary layer height gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 159 ; - } -#Standard deviation of orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography gradient -'radians' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 163 ; - } -#Total cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 164 ; - } -#10 metre U wind component gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 165 ; - } -#10 metre V wind component gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 166 ; - } -#2 metre temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 169 ; - } -#Soil temperature level 2 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 170 ; - } -#Soil wetness level 2 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 171 ; - } -#Land-sea mask gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 172 ; - } -#Surface roughness gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 173 ; - } -#Albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 175 ; - } -#Surface net solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 177 ; - } -#Top net solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 178 ; - } -#Top net thermal radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 179 ; - } -#East-West surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 180 ; - } -#North-South surface stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 181 ; - } -#Evaporation gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 182 ; - } -#Soil temperature level 3 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 183 ; - } -#Soil wetness level 3 gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 184 ; - } -#Convective cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 185 ; - } -#Low cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 186 ; - } -#Medium cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 187 ; - } -#High cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 188 ; - } -#Sunshine duration gradient -'s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 193 ; - } -#Brightness temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress gradient -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 197 ; - } -#Skin reservoir content gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 198 ; - } -#Vegetation fraction gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography gradient -'m**2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres since previous post-processing gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres since previous post-processing gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 204 ; - } -#Runoff gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 205 ; - } -#Total column ozone gradient -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 206 ; - } -#10 metre wind speed gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 207 ; - } -#Top net solar radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 211 ; - } -#TOA incident solar radiation gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 216 ; - } -#Diabatic heating large-scale condensation gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 227 ; - } -#Total precipitation gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress gradient -'N m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress gradient -'N m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux gradient -'J m**-2' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux gradient -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 232 ; - } -#Apparent surface humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 234 ; - } -#Skin temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 237 ; - } -#Temperature of snow layer gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 238 ; - } -#Convective snowfall gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 239 ; - } -#Large scale snowfall gradient -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 242 ; - } -#Forecast albedo gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 243 ; - } -#Forecast surface roughness gradient -'m' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat gradient -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 245 ; - } -#Specific cloud liquid water content gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 246 ; - } -#Specific cloud ice water content gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 247 ; - } -#Cloud cover gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency gradient -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 249 ; - } -#Ice age gradient -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature gradient -'K' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity gradient -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind gradient -'m s**-1' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 129 ; - parameterNumber = 255 ; - } -#Top solar radiation upward -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 208 ; - } -#Top thermal radiation upward -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 209 ; - } -#Top solar radiation upward, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 210 ; - } -#Top thermal radiation upward, clear sky -'J m**-2' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 211 ; - } -#Cloud liquid water -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 212 ; - } -#Cloud fraction -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 213 ; - } -#Diabatic heating by radiation -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 221 ; - } -#Vertical diffusion of humidity -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 226 ; - } -#Adiabatic tendency of temperature -'K s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 228 ; - } -#Adiabatic tendency of humidity -'kg kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 229 ; - } -#Adiabatic tendency of zonal wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 230 ; - } -#Adiabatic tendency of meridional wind -'m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 231 ; - } -#Mean vertical velocity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 130 ; - parameterNumber = 232 ; - } -#2m temperature anomaly of at least +2K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 1 ; - } -#2m temperature anomaly of at least +1K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 2 ; - } -#2m temperature anomaly of at least 0K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 3 ; - } -#2m temperature anomaly of at most -1K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 4 ; - } -#2m temperature anomaly of at most -2K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 5 ; - } -#Total precipitation anomaly of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 6 ; - } -#Total precipitation anomaly of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 7 ; - } -#Total precipitation anomaly of at least 0 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 8 ; - } -#Surface temperature anomaly of at least 0K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 9 ; - } -#Mean sea level pressure anomaly of at least 0 Pa -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 10 ; - } -#Height of 0 degree isotherm probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 15 ; - } -#Height of snowfall limit probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 16 ; - } -#Showalter index probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 17 ; - } -#Whiting index probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 18 ; - } -#Temperature anomaly less than -2 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 20 ; - } -#Temperature anomaly of at least +2 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 21 ; - } -#Temperature anomaly less than -8 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 22 ; - } -#Temperature anomaly less than -4 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 23 ; - } -#Temperature anomaly greater than +4 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 24 ; - } -#Temperature anomaly greater than +8 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 49 ; - } -#Convective available potential energy probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 59 ; - } -#Total precipitation less than 0.1 mm -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 64 ; - } -#Total precipitation rate less than 1 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 65 ; - } -#Total precipitation rate of at least 3 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 66 ; - } -#Total precipitation rate of at least 5 mm/day -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 67 ; - } -#10 metre Wind speed of at least 10 m/s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 68 ; - } -#10 metre Wind speed of at least 15 m/s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 69 ; - } -#10 metre Wind gust of at least 25 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#2 metre temperature less than 273.15 K -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 73 ; - } -#Significant wave height of at least 2 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 5 ; - scaledValueOfLowerLimit = 2 ; - } -#Significant wave height of at least 4 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 4 ; - probabilityType = 3 ; - } -#Significant wave height of at least 6 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - } -#Significant wave height of at least 8 m -'%' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 101 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 8 ; - } -#Mean wave period of at least 8 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 78 ; - } -#Mean wave period of at least 10 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 79 ; - } -#Mean wave period of at least 12 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 80 ; - } -#Mean wave period of at least 15 s -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 81 ; - } -#Geopotential probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 129 ; - } -#Temperature anomaly probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 130 ; - } -#Soil temperature level 1 probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 139 ; - } -#Snowfall (convective + stratiform) probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 144 ; - } -#Mean sea level pressure probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 151 ; - } -#Total cloud cover probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 164 ; - } -#10 metre speed probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 165 ; - } -#2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 167 ; - } -#Maximum 2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 201 ; - } -#Minimum 2 metre temperature probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 202 ; - } -#Total precipitation probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 228 ; - } -#Significant wave height probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 229 ; - } -#Mean wave period probability -'%' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 232 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 131 ; - parameterNumber = 255 ; - } -#2m temperature probability less than -10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 1 ; - } -#2m temperature probability less than -5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 2 ; - } -#2m temperature probability less than 0 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 3 ; - } -#2m temperature probability less than 5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 4 ; - } -#2m temperature probability less than 10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 5 ; - } -#2m temperature probability greater than 25 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 6 ; - } -#2m temperature probability greater than 30 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 7 ; - } -#2m temperature probability greater than 35 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 8 ; - } -#2m temperature probability greater than 40 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 9 ; - } -#2m temperature probability greater than 45 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 10 ; - } -#Minimum 2 metre temperature probability less than -10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 11 ; - } -#Minimum 2 metre temperature probability less than -5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 12 ; - } -#Minimum 2 metre temperature probability less than 0 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 13 ; - } -#Minimum 2 metre temperature probability less than 5 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 14 ; - } -#Minimum 2 metre temperature probability less than 10 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 15 ; - } -#Maximum 2 metre temperature probability greater than 25 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 16 ; - } -#Maximum 2 metre temperature probability greater than 30 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 17 ; - } -#Maximum 2 metre temperature probability greater than 35 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 18 ; - } -#Maximum 2 metre temperature probability greater than 40 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 19 ; - } -#Maximum 2 metre temperature probability greater than 45 C -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 20 ; - } -#10 metre wind speed probability of at least 10 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 21 ; - } -#10 metre wind speed probability of at least 15 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 22 ; - } -#10 metre wind speed probability of at least 20 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 23 ; - } -#10 metre wind speed probability of at least 35 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 24 ; - } -#10 metre wind speed probability of at least 50 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 25 ; - } -#10 metre wind gust probability of at least 20 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 26 ; - } -#10 metre wind gust probability of at least 35 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 27 ; - } -#10 metre wind gust probability of at least 50 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 28 ; - } -#10 metre wind gust probability of at least 75 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 29 ; - } -#10 metre wind gust probability of at least 100 m/s -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 30 ; - } -#Total precipitation probability of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 31 ; - } -#Total precipitation probability of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 32 ; - } -#Total precipitation probability of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 33 ; - } -#Total precipitation probability of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 34 ; - } -#Total precipitation probability of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 35 ; - } -#Total precipitation probability of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 36 ; - } -#Total precipitation probability of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 37 ; - } -#Total precipitation probability of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 38 ; - } -#Total precipitation probability of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 39 ; - } -#Total precipitation probability of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 40 ; - } -#Total precipitation probability of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 41 ; - } -#Snowfall probability of at least 1 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 42 ; - } -#Snowfall probability of at least 5 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 43 ; - } -#Snowfall probability of at least 10 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 44 ; - } -#Snowfall probability of at least 20 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 45 ; - } -#Snowfall probability of at least 40 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 46 ; - } -#Snowfall probability of at least 60 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 47 ; - } -#Snowfall probability of at least 80 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 48 ; - } -#Snowfall probability of at least 100 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 49 ; - } -#Snowfall probability of at least 150 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 50 ; - } -#Snowfall probability of at least 200 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 51 ; - } -#Snowfall probability of at least 300 mm -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 52 ; - } -#Total Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 53 ; - } -#Total Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 54 ; - } -#Total Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 55 ; - } -#Total Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 56 ; - } -#Total Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 57 ; - } -#Total Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 58 ; - } -#Total Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 59 ; - } -#Total Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 60 ; - } -#Total Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 61 ; - } -#Total Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 62 ; - } -#High Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 63 ; - } -#High Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 64 ; - } -#High Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 65 ; - } -#High Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 66 ; - } -#High Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 67 ; - } -#High Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 68 ; - } -#High Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 69 ; - } -#High Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 70 ; - } -#High Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 71 ; - } -#High Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 72 ; - } -#Medium Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 73 ; - } -#Medium Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 74 ; - } -#Medium Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 75 ; - } -#Medium Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 76 ; - } -#Medium Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 77 ; - } -#Medium Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 78 ; - } -#Medium Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 79 ; - } -#Medium Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 80 ; - } -#Medium Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 81 ; - } -#Medium Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 82 ; - } -#Low Cloud Cover probability greater than 10% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 83 ; - } -#Low Cloud Cover probability greater than 20% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 84 ; - } -#Low Cloud Cover probability greater than 30% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 85 ; - } -#Low Cloud Cover probability greater than 40% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 86 ; - } -#Low Cloud Cover probability greater than 50% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 87 ; - } -#Low Cloud Cover probability greater than 60% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 88 ; - } -#Low Cloud Cover probability greater than 70% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 89 ; - } -#Low Cloud Cover probability greater than 80% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 90 ; - } -#Low Cloud Cover probability greater than 90% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 91 ; - } -#Low Cloud Cover probability greater than 99% -'%' = { - discipline = 192 ; - parameterCategory = 133 ; - parameterNumber = 92 ; - } -#Maximum of significant wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 200 ; - } -#Period corresponding to maximum individual wave height -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 217 ; - } -#Maximum individual wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 218 ; - } -#Model bathymetry -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 219 ; - } -#Mean wave period based on first moment -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 220 ; - } -#Mean wave period based on second moment -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 221 ; - } -#Wave spectral directional width -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 222 ; - } -#Mean wave period based on first moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 223 ; - } -#Mean wave period based on second moment for wind waves -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 224 ; - } -#Wave spectral directional width for wind waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 225 ; - } -#Mean wave period based on first moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 226 ; - } -#Mean wave period based on second moment for swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 227 ; - } -#Wave spectral directional width for swell -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 228 ; - } -#Peak period of 1D spectra -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 231 ; - } -#Coefficient of drag with waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 233 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean direction of wind waves -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 235 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Significant height of total swell -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 237 ; - } -#Mean direction of total swell -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 238 ; - } -#Mean period of total swell -'s' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 239 ; - } -#Standard deviation wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 240 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 241 ; - } -#Mean wind direction -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 242 ; - } -#Standard deviation of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 243 ; - } -#Mean square slope of waves -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 244 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 245 ; - } -#Altimeter wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 246 ; - } -#Altimeter corrected wave height -'m' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 247 ; - } -#Altimeter range relative correction -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 248 ; - } -#10 metre wind direction -'degrees' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 249 ; - } -#2D wave spectra (multiple) -'m**2 s radian**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 250 ; - } -#2D wave spectra (single) -'m**2 s radian**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 251 ; - } -#Wave spectral kurtosis -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 252 ; - } -#Benjamin-Feir index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 253 ; - } -#Wave spectral peakedness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 255 ; - } -#Ocean potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 129 ; - } -#Ocean salinity -'psu' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 130 ; - } -#Ocean potential density -'kg m**-3 -1000' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 131 ; - } -#Ocean U wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 133 ; - } -#Ocean V wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 134 ; - } -#Ocean W wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 135 ; - } -#Richardson number -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 137 ; - } -#U*V product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 139 ; - } -#U*T product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 140 ; - } -#V*T product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 141 ; - } -#U*U product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 142 ; - } -#V*V product -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 143 ; - } -#UV - U~V~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 144 ; - } -#UT - U~T~ -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 145 ; - } -#VT - V~T~ -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 146 ; - } -#UU - U~U~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 147 ; - } -#VV - V~V~ -'m s**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 148 ; - } -#Sea level -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 152 ; - } -#Barotropic stream function -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 153 ; - } -#Mixed layer depth -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 154 ; - } -#Depth -'m' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 155 ; - } -#U stress -'Pa' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 168 ; - } -#V stress -'Pa' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 169 ; - } -#Turbulent kinetic energy input -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 170 ; - } -#Net surface heat flux -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 171 ; - } -#Surface solar radiation -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 172 ; - } -#P-E -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 173 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 180 ; - } -#Heat flux correction -'J m**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 181 ; - } -#Observed sea surface temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 182 ; - } -#Observed heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 183 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 150 ; - parameterNumber = 255 ; - } -#In situ Temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 128 ; - } -#Ocean potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; - } -#Salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; - } -#Ocean current zonal component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 131 ; - } -#Ocean current meridional component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 132 ; - } -#Ocean current vertical component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; - } -#Modulus of strain rate tensor -'s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 134 ; - } -#Vertical viscosity -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 135 ; - } -#Vertical diffusivity -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 136 ; - } -#Bottom level Depth -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 137 ; - } -#Sigma-theta -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; - } -#Richardson number -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 139 ; - } -#UV product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 140 ; - } -#UT product -'m s**-1 degC' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 141 ; - } -#VT product -'m s**-1 deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 142 ; - } -#UU product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 143 ; - } -#VV product -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 144 ; - } -#Sea level -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 145 ; - } -#Sea level previous timestep -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 146 ; - } -#Barotropic stream function -'m**3 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 147 ; - } -#Mixed layer depth -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 148 ; - } -#Bottom Pressure (equivalent height) -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 149 ; - } -#Steric height -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 150 ; - } -#Curl of Wind Stress -'N m**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 151 ; - } -#Divergence of wind stress -'Nm**-3' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 152 ; - } -#U stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; - } -#V stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; - } -#Turbulent kinetic energy input -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 155 ; - } -#Net surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 156 ; - } -#Absorbed solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 157 ; - } -#Precipitation - evaporation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 158 ; - } -#Specified sea surface temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 159 ; - } -#Specified surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 160 ; - } -#Diagnosed sea surface temperature error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 161 ; - } -#Heat flux correction -'J m**-2' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 162 ; - } -#20 degrees isotherm depth -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 163 ; - } -#Average potential temperature in the upper 300m -'degrees C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 164 ; - } -#Vertically integrated zonal velocity (previous time step) -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 165 ; - } -#Vertically Integrated meridional velocity (previous time step) -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 166 ; - } -#Vertically integrated zonal volume transport -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 167 ; - } -#Vertically integrated meridional volume transport -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 168 ; - } -#Vertically integrated zonal heat transport -'J m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 169 ; - } -#Vertically integrated meridional heat transport -'J m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 170 ; - } -#U velocity maximum -'m s**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 171 ; - } -#Depth of the velocity maximum -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 172 ; - } -#Salinity maximum -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 173 ; - } -#Depth of salinity maximum -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 174 ; - } -#Average salinity in the upper 300m -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 175 ; - } -#Layer Thickness at scalar points -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 176 ; - } -#Layer Thickness at vector points -'m' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 177 ; - } -#Potential temperature increment -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 178 ; - } -#Potential temperature analysis error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 179 ; - } -#Background potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 180 ; - } -#Analysed potential temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 181 ; - } -#Potential temperature background error -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 182 ; - } -#Analysed salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 183 ; - } -#Salinity increment -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 184 ; - } -#Estimated Bias in Temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 185 ; - } -#Estimated Bias in Salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 186 ; - } -#Zonal Velocity increment (from balance operator) -'m s**-1 per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 187 ; - } -#Meridional Velocity increment (from balance operator) -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 188 ; - } -#Salinity increment (from salinity data) -'psu per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 190 ; - } -#Salinity analysis error -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 191 ; - } -#Background Salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 192 ; - } -#Salinity background error -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 194 ; - } -#Estimated temperature bias from assimilation -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 199 ; - } -#Estimated salinity bias from assimilation -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 200 ; - } -#Temperature increment from relaxation term -'deg C per time step' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 201 ; - } -#Salinity increment from relaxation term -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 202 ; - } -#Bias in the zonal pressure gradient (applied) -'Pa m**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 203 ; - } -#Bias in the meridional pressure gradient (applied) -'Pa m**-1' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 204 ; - } -#Estimated temperature bias from relaxation -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 205 ; - } -#Estimated salinity bias from relaxation -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 206 ; - } -#First guess bias in temperature -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 207 ; - } -#First guess bias in salinity -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 208 ; - } -#Applied bias in pressure -'Pa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 209 ; - } -#FG bias in pressure -'Pa' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 210 ; - } -#Bias in temperature(applied) -'deg C' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 211 ; - } -#Bias in salinity (applied) -'psu' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 212 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 255 ; - } -#10 metre wind gust during averaging time -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 49 ; - } -#vertical velocity (pressure) -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 135 ; - } -#Precipitable water content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 137 ; - } -#Soil wetness level 1 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 140 ; - } -#Snow depth -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 141 ; - } -#Large-scale precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 142 ; - } -#Convective precipitation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 143 ; - } -#Snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 144 ; - } -#Height -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 156 ; - } -#Relative humidity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 157 ; - } -#Soil wetness level 2 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 171 ; - } -#East-West surface stress -'N m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 180 ; - } -#North-South surface stress -'N m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 181 ; - } -#Evaporation -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 182 ; - } -#Soil wetness level 3 -'m' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 184 ; - } -#Skin reservoir content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 198 ; - } -#Percentage of vegetation -'%' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 199 ; - } -#Maximum temperature at 2 metres during averaging time -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres during averaging time -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 202 ; - } -#Runoff -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 205 ; - } -#Standard deviation of geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 206 ; - } -#Covariance of temperature and geopotential -'K m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 207 ; - } -#Standard deviation of temperature -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 208 ; - } -#Covariance of specific humidity and geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 209 ; - } -#Covariance of specific humidity and temperature -'K' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 210 ; - } -#Standard deviation of specific humidity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 211 ; - } -#Covariance of U component and geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 212 ; - } -#Covariance of U component and temperature -'K m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 213 ; - } -#Covariance of U component and specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 214 ; - } -#Standard deviation of U velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 215 ; - } -#Covariance of V component and geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 216 ; - } -#Covariance of V component and temperature -'K m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 217 ; - } -#Covariance of V component and specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 218 ; - } -#Covariance of V component and U component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 219 ; - } -#Standard deviation of V component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 220 ; - } -#Covariance of W component and geopotential -'Pa m**2 s**-3' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 221 ; - } -#Covariance of W component and temperature -'K Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 222 ; - } -#Covariance of W component and specific humidity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 223 ; - } -#Covariance of W component and U component -'Pa m s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 224 ; - } -#Covariance of W component and V component -'Pa m s**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 225 ; - } -#Standard deviation of vertical velocity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 226 ; - } -#Instantaneous surface heat flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 231 ; - } -#Convective snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 240 ; - } -#Cloud liquid water content -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 241 ; - } -#Cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 242 ; - } -#Forecast albedo -'~' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 243 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 246 ; - } -#Momentum flux -'N m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 247 ; - } -#Gravity wave dissipation flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 249 ; - } -#Heaviside beta function -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 160 ; - parameterNumber = 254 ; - } -#Surface geopotential -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 51 ; - } -#Vertical integral of mass of atmosphere -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 53 ; - } -#Vertical integral of temperature -'K kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 54 ; - } -#Vertical integral of water vapour -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 55 ; - } -#Vertical integral of cloud liquid water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 56 ; - } -#Vertical integral of cloud frozen water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 57 ; - } -#Vertical integral of ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 58 ; - } -#Vertical integral of kinetic energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 59 ; - } -#Vertical integral of thermal energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 60 ; - } -#Vertical integral of potential+internal energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 61 ; - } -#Vertical integral of potential+internal+latent energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 62 ; - } -#Vertical integral of total energy -'J m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 63 ; - } -#Vertical integral of energy conversion -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 64 ; - } -#Vertical integral of eastward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 65 ; - } -#Vertical integral of northward mass flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 66 ; - } -#Vertical integral of eastward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 67 ; - } -#Vertical integral of northward kinetic energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 68 ; - } -#Vertical integral of eastward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 69 ; - } -#Vertical integral of northward heat flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 70 ; - } -#Vertical integral of eastward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 71 ; - } -#Vertical integral of northward water vapour flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 72 ; - } -#Vertical integral of eastward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 73 ; - } -#Vertical integral of northward geopotential flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 74 ; - } -#Vertical integral of eastward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 75 ; - } -#Vertical integral of northward total energy flux -'W m**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 76 ; - } -#Vertical integral of eastward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 77 ; - } -#Vertical integral of northward ozone flux -'kg m**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 78 ; - } -#Vertical integral of divergence of mass flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 81 ; - } -#Vertical integral of divergence of kinetic energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 82 ; - } -#Vertical integral of divergence of thermal energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 83 ; - } -#Vertical integral of divergence of moisture flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 84 ; - } -#Vertical integral of divergence of geopotential flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 85 ; - } -#Vertical integral of divergence of total energy flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 86 ; - } -#Vertical integral of divergence of ozone flux -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 87 ; - } -#Tendency of short wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 100 ; - } -#Tendency of long wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 101 ; - } -#Tendency of clear sky short wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 102 ; - } -#Tendency of clear sky long wave radiation -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 103 ; - } -#Updraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 104 ; - } -#Downdraught mass flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 105 ; - } -#Updraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 106 ; - } -#Downdraught detrainment rate -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 107 ; - } -#Total precipitation flux -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 108 ; - } -#Turbulent diffusion coefficient for heat -'m**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 109 ; - } -#Tendency of temperature due to physics -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 110 ; - } -#Tendency of specific humidity due to physics -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 111 ; - } -#Tendency of u component due to physics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 112 ; - } -#Tendency of v component due to physics -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 113 ; - } -#Variance of geopotential -'m**4 s**-4' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 206 ; - } -#Covariance of geopotential/temperature -'m**2 K s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 207 ; - } -#Variance of temperature -'K**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 208 ; - } -#Covariance of geopotential/specific humidity -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 209 ; - } -#Covariance of temperature/specific humidity -'K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 210 ; - } -#Variance of specific humidity -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 211 ; - } -#Covariance of u component/geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 212 ; - } -#Covariance of u component/temperature -'m s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 213 ; - } -#Covariance of u component/specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 214 ; - } -#Variance of u component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 215 ; - } -#Covariance of v component/geopotential -'m**3 s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 216 ; - } -#Covariance of v component/temperature -'m s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 217 ; - } -#Covariance of v component/specific humidity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 218 ; - } -#Covariance of v component/u component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 219 ; - } -#Variance of v component -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 220 ; - } -#Covariance of omega/geopotential -'m**2 Pa s**-3' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 221 ; - } -#Covariance of omega/temperature -'Pa s**-1 K' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 222 ; - } -#Covariance of omega/specific humidity -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 223 ; - } -#Covariance of omega/u component -'m Pa s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 224 ; - } -#Covariance of omega/v component -'m Pa s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 225 ; - } -#Variance of omega -'Pa**2 s**-2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 226 ; - } -#Variance of surface pressure -'Pa**2' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 227 ; - } -#Variance of relative humidity -'dimensionless' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 229 ; - } -#Covariance of u component/ozone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 230 ; - } -#Covariance of v component/ozone -'m s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 231 ; - } -#Covariance of omega/ozone -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 232 ; - } -#Variance of ozone -'dimensionless' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 233 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 162 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 149 ; - } -#Soil wetness level 2 -'m' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 171 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 170 ; - parameterNumber = 179 ; - } -#Stream function anomaly -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 1 ; - } -#Velocity potential anomaly -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 2 ; - } -#Potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 3 ; - } -#Equivalent potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 4 ; - } -#Saturated equivalent potential temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 5 ; - } -#U component of divergent wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 11 ; - } -#V component of divergent wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 12 ; - } -#U component of rotational wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 13 ; - } -#V component of rotational wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 14 ; - } -#Unbalanced component of temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 21 ; - } -#Unbalanced component of logarithm of surface pressure anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 22 ; - } -#Unbalanced component of divergence anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 23 ; - } -#Lake cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 26 ; - } -#Low vegetation cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 27 ; - } -#High vegetation cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 28 ; - } -#Type of low vegetation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 29 ; - } -#Type of high vegetation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 30 ; - } -#Sea-ice cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 31 ; - } -#Snow albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 32 ; - } -#Snow density anomaly -'kg m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 33 ; - } -#Sea surface temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 34 ; - } -#Ice surface temperature anomaly layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 35 ; - } -#Ice surface temperature anomaly layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 36 ; - } -#Ice surface temperature anomaly layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 37 ; - } -#Ice surface temperature anomaly layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 38 ; - } -#Volumetric soil water anomaly layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 39 ; - } -#Volumetric soil water anomaly layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 40 ; - } -#Volumetric soil water anomaly layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 41 ; - } -#Volumetric soil water anomaly layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 42 ; - } -#Soil type anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 43 ; - } -#Snow evaporation anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 45 ; - } -#Solar duration anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 46 ; - } -#Direct solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 47 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 48 ; - } -#10 metre wind gust anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 49 ; - } -#Large-scale precipitation fraction anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 50 ; - } -#Maximum 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 51 ; - } -#Minimum 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 52 ; - } -#Montgomery potential anomaly -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 53 ; - } -#Pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 54 ; - } -#Mean 2 metre temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 55 ; - } -#Mean 2 metre dewpoint temperature in the last 24 hours anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 56 ; - } -#Downward UV radiation at the surface anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 57 ; - } -#Photosynthetically active radiation at the surface anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 58 ; - } -#Convective available potential energy anomaly -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 59 ; - } -#Potential vorticity anomaly -'K m**2 kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 60 ; - } -#Total precipitation from observations anomaly -'Millimetres*100 + number of stations' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 61 ; - } -#Observation count anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 62 ; - } -#Start time for skin temperature difference anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 63 ; - } -#Finish time for skin temperature difference anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 64 ; - } -#Skin temperature difference anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 65 ; - } -#Total column liquid water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 78 ; - } -#Total column ice water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 79 ; - } -#Vertically integrated total energy anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 125 ; - } -#Generic parameter for sensitive area prediction -'Various' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 126 ; - } -#Atmospheric tide anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 127 ; - } -#Budget values anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 128 ; - } -#Geopotential anomaly -'m**2 s**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 129 ; - } -#Temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 130 ; - } -#U component of wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 131 ; - } -#V component of wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 132 ; - } -#Specific humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 133 ; - } -#Surface pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 134 ; - } -#Vertical velocity (pressure) anomaly -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 135 ; - } -#Total column water anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 136 ; - } -#Total column water vapour anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 137 ; - } -#Relative vorticity anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 138 ; - } -#Soil temperature anomaly level 1 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 139 ; - } -#Soil wetness anomaly level 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 140 ; - } -#Snow depth anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 141 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 147 ; - } -#Charnock anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 148 ; - } -#Surface net radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 149 ; - } -#Top net radiation anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 150 ; - } -#Mean sea level pressure anomaly -'Pa' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 151 ; - } -#Logarithm of surface pressure anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 152 ; - } -#Short-wave heating rate anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 154 ; - } -#Relative divergence anomaly -'s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 155 ; - } -#Height anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 156 ; - } -#Relative humidity anomaly -'%' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 157 ; - } -#Tendency of surface pressure anomaly -'Pa s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 158 ; - } -#Boundary layer height anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 159 ; - } -#Standard deviation of orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 160 ; - } -#Anisotropy of sub-gridscale orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 161 ; - } -#Angle of sub-gridscale orography anomaly -'radians' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 162 ; - } -#Slope of sub-gridscale orography anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 163 ; - } -#Total cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 164 ; - } -#10 metre U wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 165 ; - } -#10 metre V wind component anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 166 ; - } -#2 metre temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 167 ; - } -#2 metre dewpoint temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 168 ; - } -#Surface solar radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 169 ; - } -#Soil temperature anomaly level 2 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 170 ; - } -#Soil wetness anomaly level 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 171 ; - } -#Surface roughness anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 173 ; - } -#Albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 174 ; - } -#Surface thermal radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 175 ; - } -#Surface net solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 177 ; - } -#Top net solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 178 ; - } -#Top net thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 182 ; - } -#Soil temperature anomaly level 3 -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 183 ; - } -#Soil wetness anomaly level 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 184 ; - } -#Convective cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 185 ; - } -#Low cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 186 ; - } -#Medium cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 187 ; - } -#High cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 188 ; - } -#Sunshine duration anomaly -'s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 189 ; - } -#East-West component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 190 ; - } -#North-South component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 191 ; - } -#North-West/South-East component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 192 ; - } -#North-East/South-West component of sub-gridscale orographic variance anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 193 ; - } -#Brightness temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 194 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 197 ; - } -#Skin reservoir content anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 198 ; - } -#Vegetation fraction anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 199 ; - } -#Variance of sub-gridscale orography anomaly -'m**2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 200 ; - } -#Maximum temperature at 2 metres anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 201 ; - } -#Minimum temperature at 2 metres anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 202 ; - } -#Ozone mass mixing ratio anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 203 ; - } -#Precipitation analysis weights anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 204 ; - } -#Runoff anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 205 ; - } -#Total column ozone anomaly -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 206 ; - } -#10 metre wind speed anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 207 ; - } -#Top net solar radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 208 ; - } -#Top net thermal radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 209 ; - } -#Surface net solar radiation clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 212 ; - } -#Diabatic heating by radiation anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 214 ; - } -#Diabatic heating by vertical diffusion anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 215 ; - } -#Diabatic heating by cumulus convection anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 216 ; - } -#Diabatic heating by large-scale condensation anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 217 ; - } -#Vertical diffusion of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 218 ; - } -#Vertical diffusion of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 219 ; - } -#East-West gravity wave drag tendency anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 220 ; - } -#North-South gravity wave drag tendency anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 221 ; - } -#Convective tendency of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 222 ; - } -#Convective tendency of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 223 ; - } -#Vertical diffusion of humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 224 ; - } -#Humidity tendency by cumulus convection anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 225 ; - } -#Humidity tendency by large-scale condensation anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 226 ; - } -#Change from removal of negative humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 227 ; - } -#Total precipitation anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 228 ; - } -#Instantaneous X surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 229 ; - } -#Instantaneous Y surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 230 ; - } -#Instantaneous surface heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 231 ; - } -#Instantaneous moisture flux anomaly -'kg m**-2 s' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 232 ; - } -#Apparent surface humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 233 ; - } -#Logarithm of surface roughness length for heat anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 234 ; - } -#Skin temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 235 ; - } -#Soil temperature level 4 anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 236 ; - } -#Soil wetness level 4 anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 237 ; - } -#Temperature of snow layer anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 238 ; - } -#Convective snowfall anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 240 ; - } -#Accumulated cloud fraction tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 241 ; - } -#Accumulated liquid water tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 242 ; - } -#Forecast albedo anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 243 ; - } -#Forecast surface roughness anomaly -'m' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 244 ; - } -#Forecast logarithm of surface roughness for heat anomaly -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 245 ; - } -#Cloud liquid water content anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 246 ; - } -#Cloud ice water content anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 247 ; - } -#Cloud cover anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 248 ; - } -#Accumulated ice water tendency anomaly -'(-1 to 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 249 ; - } -#Ice age anomaly -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 250 ; - } -#Adiabatic tendency of temperature anomaly -'K' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 251 ; - } -#Adiabatic tendency of humidity anomaly -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 252 ; - } -#Adiabatic tendency of zonal wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 253 ; - } -#Adiabatic tendency of meridional wind anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 254 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 171 ; - parameterNumber = 255 ; - } -#Snow evaporation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 44 ; - } -#Snowmelt -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 142 ; - } -#Convective precipitation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 146 ; - } -#Surface latent heat flux -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 147 ; - } -#Surface net radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 149 ; - } -#Short-wave heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 153 ; - } -#Long-wave heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 175 ; - } -#Surface solar radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 176 ; - } -#Surface thermal radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 177 ; - } -#Top solar radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 178 ; - } -#Top thermal radiation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 179 ; - } -#East-West surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 180 ; - } -#North-South surface stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 181 ; - } -#Evaporation -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 182 ; - } -#Sunshine duration -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress -'N m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 197 ; - } -#Runoff -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 211 ; - } -#Solar insolation -'W m**-2' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 212 ; - } -#Total precipitation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 228 ; - } -#Convective snowfall -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 239 ; - } -#Large scale snowfall -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 172 ; - parameterNumber = 255 ; - } -#Snow evaporation anomaly -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 44 ; - } -#Snowmelt anomaly -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 45 ; - } -#Magnitude of turbulent surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 48 ; - } -#Large-scale precipitation fraction anomaly -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 50 ; - } -#Stratiform precipitation (Large-scale precipitation) anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 142 ; - } -#Convective precipitation anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 143 ; - } -#Snowfall (convective + stratiform) anomalous rate of accumulation -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 144 ; - } -#Boundary layer dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 145 ; - } -#Surface sensible heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 146 ; - } -#Surface latent heat flux anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 147 ; - } -#Surface net radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 149 ; - } -#Short-wave heating rate anomaly -'K s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 153 ; - } -#Long-wave heating rate anomaly -'K s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 154 ; - } -#Surface solar radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 169 ; - } -#Surface thermal radiation downwards anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 175 ; - } -#Surface solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 176 ; - } -#Surface thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 177 ; - } -#Top solar radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 178 ; - } -#Top thermal radiation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 179 ; - } -#East-West surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 180 ; - } -#North-South surface stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 181 ; - } -#Evaporation anomaly -'m of water s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 182 ; - } -#Sunshine duration anomalous rate of accumulation -'dimensionless' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 189 ; - } -#Longitudinal component of gravity wave stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 195 ; - } -#Meridional component of gravity wave stress anomaly -'N m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 196 ; - } -#Gravity wave dissipation anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 197 ; - } -#Runoff anomaly -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 205 ; - } -#Top net solar radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 208 ; - } -#Top net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 209 ; - } -#Surface net solar radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 210 ; - } -#Surface net thermal radiation, clear sky anomaly -'J m**-2' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 211 ; - } -#Solar insolation anomaly -'W m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 212 ; - } -#Total precipitation anomalous rate of accumulation -'m s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 228 ; - } -#Convective snowfall anomaly -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 239 ; - } -#Large scale snowfall anomaly -'m of water equivalent s**-1' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 240 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 173 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 6 ; - } -#Sub-surface runoff -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 9 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 42 ; - } -#10 metre wind gust in the last 24 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 83 ; - } -#10m U wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 85 ; - } -#10m V wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 90 ; - } -#Mean sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 94 ; - } -#1.5m specific humidity -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 95 ; - } -#Sea-ice thickness -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 98 ; - } -#Liquid water potential temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 99 ; - } -#Ocean ice concentration -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'m' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 164 ; - } -#1.5m temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 174 ; - parameterNumber = 255 ; - } -#Total soil moisture -'m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 6 ; - } -#Fraction of sea-ice in sea -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 31 ; - } -#Open-sea surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 34 ; - } -#Volumetric soil water layer 1 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 39 ; - } -#Volumetric soil water layer 2 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 40 ; - } -#Volumetric soil water layer 3 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 41 ; - } -#Volumetric soil water layer 4 -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 42 ; - } -#10m wind gust in the last 24 hours -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 49 ; - } -#1.5m temperature - mean in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 55 ; - } -#Net primary productivity -'kg C m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 83 ; - } -#10m U wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 85 ; - } -#10m V wind over land -'m s**-1' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 86 ; - } -#1.5m temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 87 ; - } -#1.5m dewpoint temperature over land -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 88 ; - } -#Top incoming solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 89 ; - } -#Top outgoing solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 90 ; - } -#Ocean ice concentration -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 110 ; - } -#Ocean mean ice depth -'m' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 111 ; - } -#Soil temperature layer 1 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 139 ; - } -#Average potential temperature in upper 293.4m -'degrees C' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 164 ; - } -#1.5m temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 167 ; - } -#1.5m dewpoint temperature -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 168 ; - } -#Soil temperature layer 2 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 170 ; - } -#Average salinity in upper 293.4m -'psu' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 175 ; - } -#Soil temperature layer 3 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 183 ; - } -#1.5m temperature - maximum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 201 ; - } -#1.5m temperature - minimum in the last 24 hours -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 202 ; - } -#Soil temperature layer 4 -'K' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 236 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 175 ; - parameterNumber = 255 ; - } -#Total soil wetness -'m' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 149 ; - } -#Surface net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 176 ; - } -#Surface net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 177 ; - } -#Top net solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 178 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 180 ; - parameterNumber = 179 ; - } -#Snow depth -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 141 ; - } -#Field capacity -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 170 ; - } -#Wilting point -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 171 ; - } -#Roughness length -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 173 ; - } -#Total soil moisture -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 190 ; - parameterNumber = 229 ; - } -#2 metre dewpoint temperature difference -'K' = { - discipline = 192 ; - parameterCategory = 200 ; - parameterNumber = 168 ; - } -#downward shortwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 1 ; - } -#upward shortwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 2 ; - } -#downward longwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 3 ; - } -#upward longwave radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 4 ; - } -#downwd photosynthetic active radiant flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 5 ; - } -#net shortwave flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 6 ; - } -#net longwave flux -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 7 ; - } -#total net radiative flux density -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 8 ; - } -#downw shortw radiant flux density, cloudfree part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 9 ; - } -#upw shortw radiant flux density, cloudy part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 10 ; - } -#downw longw radiant flux density, cloudfree part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 11 ; - } -#upw longw radiant flux density, cloudy part -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 12 ; - } -#shortwave radiative heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 13 ; - } -#longwave radiative heating rate -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 14 ; - } -#total radiative heating rate -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 15 ; - } -#soil heat flux, surface -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 16 ; - } -#soil heat flux, bottom of layer -'J m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 17 ; - } -#fractional cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 29 ; - } -#cloud cover, grid scale -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 30 ; - } -#specific cloud water content -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 31 ; - } -#cloud water content, grid scale, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 32 ; - } -#specific cloud ice content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 33 ; - } -#cloud ice content, grid scale, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 34 ; - } -#specific rainwater content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 35 ; - } -#specific snow content, grid scale -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 36 ; - } -#specific rainwater content, gs, vert. integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 37 ; - } -#specific snow content, gs, vert. integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 38 ; - } -#total column water -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 41 ; - } -#vert. integral of divergence of tot. water content -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 42 ; - } -#cloud covers CH_CM_CL (000...888) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 50 ; - } -#cloud cover CH (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 51 ; - } -#cloud cover CM (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 52 ; - } -#cloud cover CL (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 53 ; - } -#total cloud cover (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 54 ; - } -#fog (0..8) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 55 ; - } -#fog -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 56 ; - } -#cloud cover, convective cirrus -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 60 ; - } -#specific cloud water content, convective clouds -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 61 ; - } -#cloud water content, conv clouds, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 62 ; - } -#specific cloud ice content, convective clouds -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 63 ; - } -#cloud ice content, conv clouds, vert integrated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 64 ; - } -#convective mass flux -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 65 ; - } -#Updraft velocity, convection -'m s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 66 ; - } -#entrainment parameter, convection -'m**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 67 ; - } -#cloud base, convective clouds (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 68 ; - } -#cloud top, convective clouds (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 69 ; - } -#convective layers (00...77) (BKE) -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 70 ; - } -#KO-index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 71 ; - } -#convection base index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 72 ; - } -#convection top index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 73 ; - } -#convective temperature tendency -'K s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 74 ; - } -#convective tendency of specific humidity -'s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 75 ; - } -#convective tendency of total heat -'J kg**-1 s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 76 ; - } -#convective tendency of total water -'s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 77 ; - } -#convective momentum tendency (X-component) -'m s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 78 ; - } -#convective momentum tendency (Y-component) -'m s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 79 ; - } -#convective vorticity tendency -'s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 80 ; - } -#convective divergence tendency -'s**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 81 ; - } -#top of dry convection (above msl) -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 82 ; - } -#dry convection top index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 83 ; - } -#height of 0 degree Celsius isotherm above msl -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 84 ; - } -#height of snow-fall limit -'m' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 85 ; - } -#spec. content of precip. particles -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 99 ; - } -#surface precipitation rate, rain, grid scale -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 100 ; - } -#surface precipitation rate, snow, grid scale -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 101 ; - } -#surface precipitation amount, rain, grid scale -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 102 ; - } -#surface precipitation rate, rain, convective -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 111 ; - } -#surface precipitation rate, snow, convective -'kg s**-1 m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 112 ; - } -#surface precipitation amount, rain, convective -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 113 ; - } -#deviation of pressure from reference value -'Pa' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 139 ; - } -#coefficient of horizontal diffusion -'m**2 s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 150 ; - } -#Maximum wind velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 187 ; - } -#water content of interception store -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 200 ; - } -#snow temperature -'K' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 203 ; - } -#ice surface temperature -'K' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 215 ; - } -#convective available potential energy -'J kg**-1' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 241 ; - } -#Indicates a missing value -'~' = { - discipline = 192 ; - parameterCategory = 201 ; - parameterNumber = 255 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 11 ; - } -#SO2 precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 53 ; - } -#Soil clay content -'%' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 61 ; - } -#Methane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 64 ; - } -#Total column Methane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 97 ; - } -#Number of positive FRP pixels per grid cell -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 166 ; - } -#Radon -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 182 ; - } -#Total column Radon -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 216 ; - } -#Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 1 ; - } -#Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 2 ; - } -#Sea Salt Aerosol (5 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 3 ; - } -#Dust Aerosol (0.03 - 0.55 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 4 ; - } -#Dust Aerosol (0.55 - 0.9 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 5 ; - } -#Dust Aerosol (0.9 - 20 um) Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 6 ; - } -#Hydrophobic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 7 ; - } -#Hydrophilic Organic Matter Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 8 ; - } -#Hydrophobic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 9 ; - } -#Hydrophilic Black Carbon Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 10 ; - } -#Sulphate Aerosol Mixing Ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 11 ; - } -#Aerosol type 12 mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 12 ; - } -#Aerosol type 1 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 16 ; - } -#Aerosol type 2 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 17 ; - } -#Aerosol type 3 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 18 ; - } -#Aerosol type 4 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 19 ; - } -#Aerosol type 5 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 20 ; - } -#Aerosol type 6 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 21 ; - } -#Aerosol type 7 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 22 ; - } -#Aerosol type 8 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 23 ; - } -#Aerosol type 9 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 24 ; - } -#Aerosol type 10 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 25 ; - } -#Aerosol type 11 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 26 ; - } -#Aerosol type 12 source/gain accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 27 ; - } -#Aerosol type 1 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 31 ; - } -#Aerosol type 2 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 32 ; - } -#Aerosol type 3 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 33 ; - } -#Aerosol type 4 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 34 ; - } -#Aerosol type 5 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 35 ; - } -#Aerosol type 6 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 36 ; - } -#Aerosol type 7 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 37 ; - } -#Aerosol type 8 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 38 ; - } -#Aerosol type 9 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 39 ; - } -#Aerosol type 10 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 40 ; - } -#Aerosol type 11 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 41 ; - } -#Aerosol type 12 sink/loss accumulated -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 42 ; - } -#Aerosol precursor mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 46 ; - } -#Aerosol small mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 47 ; - } -#Aerosol large mode mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 48 ; - } -#Aerosol precursor optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 49 ; - } -#Aerosol small mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 50 ; - } -#Aerosol large mode optical depth -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 51 ; - } -#Dust emission potential -'kg s**2 m**-5' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 52 ; - } -#Lifting threshold speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 53 ; - } -#Soil clay content -'%' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 54 ; - } -#Carbon Dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 61 ; - } -#Methane -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 62 ; - } -#Nitrous oxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 63 ; - } -#Total column Carbon Dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 64 ; - } -#Total column Methane -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 65 ; - } -#Total column Nitrous oxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 66 ; - } -#Ocean flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 67 ; - } -#Natural biosphere flux of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 68 ; - } -#Anthropogenic emissions of Carbon Dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 69 ; - } -#Methane Surface Fluxes -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 70 ; - } -#Methane loss rate due to radical hydroxyl (OH) -'s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 71 ; - } -#Wildfire overall flux of burnt Carbon -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 92 ; - } -#Wildfire fraction of C4 plants -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 93 ; - } -#Wildfire vegetation map index -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 94 ; - } -#Wildfire Combustion Completeness -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 95 ; - } -#Wildfire Fuel Load: Carbon per unit area -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 96 ; - } -#Wildfire fraction of area observed -'dimensionless' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 97 ; - } -#Wildfire observed area -'m**2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 98 ; - } -#Wildfire radiative power -'W m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 99 ; - } -#Wildfire combustion rate -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 100 ; - } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } -#Formaldehyde -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 124 ; - } -#Total column Nitrogen dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 125 ; - } -#Total column Sulphur dioxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 126 ; - } -#Total column Carbon monoxide -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 127 ; - } -#Total column Formaldehyde -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 128 ; - } -#Nitrogen Oxides -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 129 ; - } -#Total Column Nitrogen Oxides -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 130 ; - } -#Reactive tracer 1 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 131 ; - } -#Total column GRG tracer 1 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 132 ; - } -#Reactive tracer 2 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 133 ; - } -#Total column GRG tracer 2 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 134 ; - } -#Reactive tracer 3 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 135 ; - } -#Total column GRG tracer 3 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 136 ; - } -#Reactive tracer 4 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 137 ; - } -#Total column GRG tracer 4 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 138 ; - } -#Reactive tracer 5 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 139 ; - } -#Total column GRG tracer 5 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 140 ; - } -#Reactive tracer 6 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 141 ; - } -#Total column GRG tracer 6 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 142 ; - } -#Reactive tracer 7 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 143 ; - } -#Total column GRG tracer 7 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 144 ; - } -#Reactive tracer 8 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 145 ; - } -#Total column GRG tracer 8 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 146 ; - } -#Reactive tracer 9 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 147 ; - } -#Total column GRG tracer 9 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 148 ; - } -#Reactive tracer 10 mass mixing ratio -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 149 ; - } -#Total column GRG tracer 10 -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 150 ; - } -#Surface flux Nitrogen oxides -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 151 ; - } -#Surface flux Nitrogen dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 152 ; - } -#Surface flux Sulphur dioxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 153 ; - } -#Surface flux Carbon monoxide -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 154 ; - } -#Surface flux Formaldehyde -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 155 ; - } -#Surface flux GEMS Ozone -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 156 ; - } -#Surface flux reactive tracer 1 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 157 ; - } -#Surface flux reactive tracer 2 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 158 ; - } -#Surface flux reactive tracer 3 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 159 ; - } -#Surface flux reactive tracer 4 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 160 ; - } -#Surface flux reactive tracer 5 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 161 ; - } -#Surface flux reactive tracer 6 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 162 ; - } -#Surface flux reactive tracer 7 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 163 ; - } -#Surface flux reactive tracer 8 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 164 ; - } -#Surface flux reactive tracer 9 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 165 ; - } -#Surface flux reactive tracer 10 -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 166 ; - } -#Radon -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 181 ; - } -#Sulphur Hexafluoride -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 182 ; - } -#Total column Radon -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 183 ; - } -#Total column Sulphur Hexafluoride -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 184 ; - } -#Anthropogenic Emissions of Sulphur Hexafluoride -'kg m**-2 s**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 185 ; - } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } -#GEMS Total column ozone -'kg m**-2' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 206 ; - } -#Total Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 207 ; - } -#Sea Salt Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 208 ; - } -#Dust Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 209 ; - } -#Organic Matter Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 210 ; - } -#Black Carbon Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 211 ; - } -#Sulphate Aerosol Optical Depth at 550nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 212 ; - } -#Total Aerosol Optical Depth at 469nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 213 ; - } -#Total Aerosol Optical Depth at 670nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 214 ; - } -#Total Aerosol Optical Depth at 865nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 215 ; - } -#Total Aerosol Optical Depth at 1240nm -'~' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 216 ; - } -#Total precipitation observation count -'dimensionless' = { - discipline = 192 ; - parameterCategory = 220 ; - parameterNumber = 228 ; - } -#Friction velocity -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 3 ; - } -#Mean temperature at 2 metres -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 4 ; - } -#Mean of 10 metre wind speed -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 5 ; - } -#Mean total cloud cover -'(0 - 1)' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 6 ; - } -#Lake depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } -#Minimum vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 15 ; - } -#Mean vertical gradient of refractivity inside trapping layer -'m**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 16 ; - } -#Duct base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 17 ; - } -#Trapping layer base height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 18 ; - } -#Trapping layer top height -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 19 ; - } -#Neutral wind at 10 m u-component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 131 ; - } -#Neutral wind at 10 m v-component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 132 ; - } -#Surface temperature significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 139 ; - } -#Mean sea level pressure significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 151 ; - } -#2 metre temperature significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 167 ; - } -#Total precipitation significance -'%' = { - discipline = 192 ; - parameterCategory = 234 ; - parameterNumber = 228 ; - } -#U-component stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 215 ; - } -#V-component stokes drift -'m s**-1' = { - discipline = 192 ; - parameterCategory = 140 ; - parameterNumber = 216 ; - } -#Wildfire radiative power maximum -'W' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 101 ; - } -#Wildfire radiative power maximum -'W' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 101 ; - } -#V-tendency from non-orographic wave drag -'m s**-2' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } -#U-tendency from non-orographic wave drag -'m s**-2' = { - localTablesVersion = 228 ; - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } -#100 metre U wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 246 ; - } -#100 metre V wind component -'m s**-1' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 247 ; - } -#ASCAT first soil moisture CDF matching parameter -'m**3 m**-3' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 253 ; - } -#ASCAT second soil moisture CDF matching parameter -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 254 ; -} diff --git a/eccodes/definitions.save/grib3/ls.def b/eccodes/definitions.save/grib3/ls.def deleted file mode 100644 index 139597f9..00000000 --- a/eccodes/definitions.save/grib3/ls.def +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/eccodes/definitions.save/grib3/ls_labeling.82.def b/eccodes/definitions.save/grib3/ls_labeling.82.def deleted file mode 100644 index 93e89f46..00000000 --- a/eccodes/definitions.save/grib3/ls_labeling.82.def +++ /dev/null @@ -1,23 +0,0 @@ -######################### -# -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -######################### - -constant g1conceptsMasterDir="grib1" : hidden; -constant g1conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; - - -alias ls.dataType = marsType; - -if (localDefinitionNumber == 83 ) { - - concept_nofail ls.timerepres (unknown,"timeRepresConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.sort (unknown,"sortConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.landtype (unknown,"landTypeConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - concept_nofail ls.aerosolbinnumber (unknown,"aerosolConcept.def",g1conceptsLocalDirAll,g1conceptsMasterDir); - -} - diff --git a/eccodes/definitions.save/grib3/mars_labeling.82.def b/eccodes/definitions.save/grib3/mars_labeling.82.def deleted file mode 100644 index 65661577..00000000 --- a/eccodes/definitions.save/grib3/mars_labeling.82.def +++ /dev/null @@ -1,48 +0,0 @@ -# author: Sebastien Villaume -# created: 14 Feb 2014 -# modified: -# -######################### - -constant conceptsMasterMarsDir="mars" : hidden; -constant conceptsLocalMarsDirAll="mars/[centre:s]" : hidden; - -########################## -# # -# Base MARS keywors # -# # -########################## - -alias mars.class = marsClass; -alias mars.type = marsType; -alias mars.stream = marsStream; -alias mars.model = marsModel; -alias mars.expver = experimentVersionNumber; -alias mars.domain = globalDomain; - -######################### -# # -# local section 82 # -# # -######################### - -### nothing needed here... - -######################### -# # -# local section 83 # -# # -######################### - -if ( localDefinitionNumber == 83 ) { - - alias mars.sort = matchSort; - alias mars.timerepres = matchTimeRepres; - alias mars.landtype = matchLandType; - alias mars.aerosolbinnumber = matchAerosolBinNumber; - - concept_nofail matchAerosolPacking (unknown,"aerosolPackingConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); - alias mars.aerosolpacking = matchAerosolPacking; - -} - diff --git a/eccodes/definitions.save/grib3/mars_labeling.def b/eccodes/definitions.save/grib3/mars_labeling.def deleted file mode 100644 index f542ecb7..00000000 --- a/eccodes/definitions.save/grib3/mars_labeling.def +++ /dev/null @@ -1,52 +0,0 @@ -# (C) Copyright 2005- 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. -# - -codetable[2] marsClass "mars/class.table" = "od" : dump,string_type,lowercase; -codetable[2] marsType "mars/type.table" = "an" : dump,string_type,no_fail,lowercase; -codetable[2] marsStream "mars/stream.table" = "oper" : dump,string_type,lowercase ; -ksec1expver[4] experimentVersionNumber = "0001" : dump; - -meta class g2_mars_labeling(0,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -meta type g2_mars_labeling(1,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -meta stream g2_mars_labeling(2,marsClass, - marsType, - marsStream, - experimentVersionNumber, - typeOfProcessedData, - productDefinitionTemplateNumber, - stepType, - derivedForecast, - typeOfGeneratingProcess); - -alias ls.dataType = marsType; - -alias mars.class = class; -alias mars.type = type; -alias mars.stream = stream; -alias mars.expver = experimentVersionNumber; - -alias mars.domain = globalDomain; # For now... diff --git a/eccodes/definitions.save/grib3/meta.def b/eccodes/definitions.save/grib3/meta.def deleted file mode 100644 index eb3ab581..00000000 --- a/eccodes/definitions.save/grib3/meta.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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 "Empty file"; - -#meta area g1area(latitudeOfFirstGridPoint,longitudeOfFirstGridPoint,latitudeOfLastGridPoint,longitudeOfLastGridPoint,angleMultiplier,angleDivisor); diff --git a/eccodes/definitions.save/grib3/modelName.def b/eccodes/definitions.save/grib3/modelName.def deleted file mode 100644 index 25b89c3d..00000000 --- a/eccodes/definitions.save/grib3/modelName.def +++ /dev/null @@ -1,43 +0,0 @@ -# modelName: Contribution from Daniel Lee @ DWD - -# COSMO -# general definition -'cosmo' = { originatingCentre=250; } -'cosmo' = { subCentre=250; } - -# definitions for ARPA-SIMC -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=36; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=139; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=144; } -'cosmo-i2' = { originatingCentre=200; - generatingProcessIdentifier=148; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=31; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=32; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=34; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=38; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=42; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=46; } -'cosmo-i7' = { originatingCentre=200; - generatingProcessIdentifier=131; } -# definitions for Moscow -'cosmo_ru' = { originatingCentre=76; - generatingProcessIdentifier=135; } -'cosmo_ru-eps' = { originatingCentre=76; - generatingProcessIdentifier=235;} - -# definitions for Athens -'cosmo-greece' = { originatingCentre=96;} -# definitions for Warsaw / Poland -'cosmo-poland' = { originatingCentre=220;} -# definitions for Romania -'cosmo-romania' = { originatingCentre=242;} - diff --git a/eccodes/definitions.save/grib3/name.def b/eccodes/definitions.save/grib3/name.def deleted file mode 100644 index d0fed7ac..00000000 --- a/eccodes/definitions.save/grib3/name.def +++ /dev/null @@ -1,3009 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea-ice cover -'Sea-ice cover' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'Snow density' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'Sea surface temperature' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'Soil type' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'10 metre wind gust since previous post-processing' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Specific rain water content -'Specific rain water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'Specific snow water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'Eta-coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Surface solar radiation downwards -'Surface solar radiation downwards' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'Surface thermal radiation downwards' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Eastward turbulent surface stress -'Eastward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'Northward turbulent surface stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Ozone mass mixing ratio -'Ozone mass mixing ratio' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Specific cloud liquid water content -'Specific cloud liquid water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'Specific cloud ice water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'Fraction of cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'large scale precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'Snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'Low cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'Medium cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'High cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#10 metre wind gust in the last 3 hours -'10 metre wind gust in the last 3 hours' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'Relative humidity with respect to water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'Relative humidity with respect to ice' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'Snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'Fraction of stratiform precipitation cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'Fraction of convective precipitation cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Height of convective cloud top -'Height of convective cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Unbalanced component of specific humidity -'Unbalanced component of specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'Unbalanced component of specific cloud liquid water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'Unbalanced component of specific cloud ice water content' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Soil moisture top 20 cm -'Soil moisture top 20 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil moisture top 100 cm -'Soil moisture top 100 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'Soil temperature top 20 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Soil temperature top 100 cm -'Soil temperature top 100 cm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Convective precipitation -'Convective precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'Water runoff and drainage' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mean temperature tendency due to short-wave radiation -'Mean temperature tendency due to short-wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'Mean temperature tendency due to long-wave radiation' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'Mean temperature tendency due to short-wave radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'Mean temperature tendency due to long-wave radiation, clear sky' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'Mean temperature tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'Mean specific humidity tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'Mean eastward wind tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'Mean northward wind tendency due to parametrisations' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'Mean updraught mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'Mean downdraught mass flux' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'Mean updraught detrainment rate' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'Mean downdraught detrainment rate' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'Mean total precipitation flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'Mean turbulent diffusion coefficient for heat' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Cross sectional area of flow in channel -'Cross sectional area of flow in channel' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'Side flow into river channel' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'Discharge from rivers or streams' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'River storage of water' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'Floodplain storage of water' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'Water fraction' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'Days since last observation' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'Frost index' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'Depth of water on soil surface' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'Upstream accumulated precipitation' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'Upstream accumulated snow melt' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Snow depth at elevation bands -'Snow depth at elevation bands' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'Groundwater upper storage' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'Groundwater lower storage' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Surface air relative humidity -'Surface air relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Apparent temperature -'Apparent temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'Haines Index' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'Cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'Evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'Evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'10 metre wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Direct short wave radiation flux -'Direct short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'Diffuse short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'Time-integrated surface direct short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil temperature -'Soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'Downward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'Upward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'Downward long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'Soil heat flux' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'Percolation rate' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'Soil depth' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'Accumulated surface downward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'Accumulated surface upward short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'Accumulated surface downward long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Percolation -'Percolation' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'Cloudy brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'Clear-sky brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'Scaled radiance' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Scaled albedo' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Scaled brightness temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Scaled precipitable water' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Scaled lifted index' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Scaled cloud top pressure' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Scaled skin temperature' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Cloud mask' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Pixel scene type' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Fire detection indicator' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Cloudy radiance (with respect to wave number) -'Cloudy radiance (with respect to wave number)' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'Clear-sky radiance (with respect to wave number)' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'Wind speed' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'Aerosol optical thickness at 0.635 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'Aerosol optical thickness at 0.810 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'Aerosol optical thickness at 1.640 um' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'Angstrom coefficient' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Virtual temperature -'Virtual temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'Virtual potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'Pseudo-adiabatic potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'Wind direction' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Significant height of combined wind waves and swell -'Significant height of combined wind waves and swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'Mean wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Mean wave period -'Mean wave period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Surface runoff -'Surface runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Total precipitation of at least 10 mm -'Total precipitation of at least 10 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 20 mm -'Total precipitation of at least 20 mm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 20 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Stream function -'Stream function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'Velocity potential' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'Potential temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Pressure -'Pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'Convective available potential energy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Potential vorticity -'Potential vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'Maximum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'Minimum temperature at 2 metres in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'Geopotential' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'Temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'U component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'V component of wind' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'Specific humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'Surface pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'Vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'Total column water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'Vorticity (relative)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'Boundary layer dissipation' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'Surface sensible heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'Surface latent heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'Mean sea level pressure' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'Divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'Geopotential Height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'Relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'10 metre U wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'10 metre V wind component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'2 metre temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'Land-sea mask' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'Surface roughness' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'Surface net solar radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'Surface net thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'Top net thermal radiation' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'Sunshine duration' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'Brightness temperature' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'10 metre wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Skin temperature -'Skin temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'Latent heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'Sensible heat net flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'Heat index' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'Wind chill factor' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'Minimum dew point depression' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'Snow phase change heat flux' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'Vapor pressure' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'Large scale precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'Snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'Convective snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'Large scale snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'Snow age' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'Absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'Precipitation type' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'Integrated liquid water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'Condensate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'Cloud mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'Ice water mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'Rain mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'Snow mixing ratio' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'Horizontal moisture convergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'Maximum relative humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'Maximum absolute humidity' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'Total snowfall' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'Precipitable water category' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'Hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'Graupel (snow pellets)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'Categorical rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'Categorical freezing rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'Categorical ice pellets' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'Categorical snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'Convective precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'Horizontal moisture divergence' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'Percent frozen precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'Potential evaporation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'Potential evaporation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'Snow cover' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'Rain fraction of total cloud water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'Rime factor' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'Total column integrated rain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'Total column integrated snow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'Large scale water precipitation (non-convective)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'Convective water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'Total water precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'Total snow precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'Total column water (Vertically integrated total water (vapour + cloud water/ice))' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'Total precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'Total snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'Large scale precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'Convective snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'Large scale snowfall rate water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'Total snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'Convective snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'Large scale snowfall rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth -'Water equivalent of accumulated snow depth' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'Total column integrated water vapour' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'Rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'Snow precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'Freezing rain precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'Ice pellets precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'Momentum flux, u component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'Momentum flux, v component' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'Maximum wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'Wind speed (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'u-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'v-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'Vertical speed shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'Horizontal momentum flux' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'U-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'V-component storm motion' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Drag coefficient' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'Frictional velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'Pressure reduced to MSL' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'Geometric height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'Altimeter setting' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'Thickness' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'Pressure altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'Density altitude' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5-wave geopotential height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'Zonal flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'Meridional flux of gravity wave stress' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'Planetary boundary layer height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5-wave geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'Standard deviation of sub-grid scale orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'Net short-wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'Downward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'Upward short-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'Net short wave radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'Photosynthetically active radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'Net short-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'Downward UV radiation' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'UV index (under clear sky)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'UV index ' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'Net long wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'Net long wave radiation flux (top of atmosphere)' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'Downward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'Upward long-wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'Net long wave radiation flux' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'Net long-wave radiation flux, clear sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'Cloud Ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'Cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'Cloud amount' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'Cloud type' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'Thunderstorm maximum tops' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'Thunderstorm coverage' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'Cloud base' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'Cloud top' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'Ceiling' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'Non-convective cloud cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'Cloud work function' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Convective cloud efficiency' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'Total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'Total column-integrated cloud water' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'Total column-integrated cloud ice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'Total column-integrated condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Ice fraction of total condensate' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'Cloud ice mixing ratio' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Sunshine' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'Horizontal extent of cumulonimbus (CB)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'K index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'KO index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'Total totals index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Sweat index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'Storm relative helicity' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Energy helicity index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'Surface lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'Best (4-layer) lifted index' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'Aerosol type' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'Total ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'Total column integrated ozone' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'Base spectrum width' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'Base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'Base radial velocity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'Vertically-integrated liquid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'Layer-maximum base reflectivity' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'Precipitation' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'Air concentration of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'Air concentration of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'Air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'Ground deposition of Caesium 137' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'Ground deposition of Iodine 131' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'Ground deposition of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'Time-integrated air concentration of caesium pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'Time-integrated air concentration of iodine pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'Time-integrated air concentration of radioactive pollutant' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'Volcanic ash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'Icing top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'Icing base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'Turbulence top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'Turbulence base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'Turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'Turbulent kinetic energy' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'Planetary boundary layer regime' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'Contrail intensity' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'Contrail engine type' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'Contrail top' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'Contrail base' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'Maximum snow albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'Snow free albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'Icing' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'In-cloud turbulence' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'Clear air turbulence (CAT)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'Supercooled large droplet probability (see Note 4)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'Arbitrary text string' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'Flash flood runoff (Encoded as an accumulation over a floating subinterval of time)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'Remotely sensed snow cover' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'Elevation of snow covered terrain' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'Snow water equivalent percent of normal' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'Baseflow-groundwater runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'Storm surface runoff' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'Probability of 0.01 inch of precipitation (POP)' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'Land cover (1=land, 0=sea)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'Vegetation' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'Water runoff' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'Evapotranspiration' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'Model terrain height' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'Land use' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Volumetric soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'Ground heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'Moisture availability' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'Exchange coefficient' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'Plant canopy surface water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'Blackadar mixing length scale' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'Canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'Minimal stomatal resistance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Solar parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Temperature parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'Soil moisture parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'Humidity parameter in canopy conductance' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'Column-integrated soil water' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'Heat flux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'Volumetric soil moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'Volumetric wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'Upper layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'Upper layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'Lower layer soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'Bottom layer soil temperature' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'Number of soil layers in root zone' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Liquid volumetric soil moisture (non-frozen)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'Volumetric transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'Transpiration stress-onset (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'Volumetric direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'Direct evaporation cease (soil moisture)' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'Soil porosity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'Volumetric saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'Saturation of soil moisture' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'Estimated precipitation' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'Instantaneous rain rate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'Cloud top height' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Cloud top height quality indicator' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'Estimated u component of wind ' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'Estimated v component of wind' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'Number of pixels used' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Solar zenith angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Relative azimuth angle' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'Reflectance in 0.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'Reflectance in 0.8 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'Reflectance in 1.6 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'Reflectance in 3.9 micron channel' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'Atmospheric divergence' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'Direction of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'Primary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'Primary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'Secondary wave mean period' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'Current direction' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'Current speed' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'Geometric vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'Ice temperature' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'Deviation of sea level from mean' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'Seconds prior to initial reference time (defined in Section 1)' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'Albedo' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pressure tendency' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'ICAO Standard Atmosphere reference height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'Geometrical height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'Standard deviation of height' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'Maximum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'Minimum temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'Dew point temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'Lapse rate' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'Visibility' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'Radar spectra (1)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'Radar spectra (2)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'Radar spectra (3)' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'Parcel lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'Temperature anomaly' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pressure anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'Geopotential height anomaly' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'Wave spectra (1)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'Wave spectra (2)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'Wave spectra (3)' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'Montgomery stream Function' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'Sigma coordinate vertical velocity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'Absolute vorticity' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'Absolute divergence' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'Vertical u-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'Vertical v-component shear' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'U-component of current ' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'V-component of current ' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'Precipitable water' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'Saturation deficit' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'Precipitation rate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'Thunderstorm probability' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'Convective precipitation (water)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'Mixed layer depth' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'Transient thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'Main thermocline depth' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'Main thermocline anomaly' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'Best lifted index (to 500 hPa)' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'Soil moisture content' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'Salinity' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'Density' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'Ice thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Direction of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'Speed of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'U-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'V-component of ice drift' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'Ice growth rate' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'Ice divergence' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'Snow melt' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'Significant height of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'Mean period of wind waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Direction of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'Significant height of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'Mean period of swell waves' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'Secondary wave direction' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'Net short-wave radiation flux (surface)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'Global radiation flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'Radiance (with respect to wave number)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'Radiance (with respect to wave length)' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'Wind mixing energy' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre Wind gust of at least 15 m/s -'10 metre Wind gust of at least 15 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#10 metre Wind gust of at least 20 m/s -'10 metre Wind gust of at least 20 m/s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - } -#Convective inhibition -'Convective inhibition' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'Orography' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'Snow depth water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow Fall water equivalent -'Snow Fall water equivalent' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'Total Cloud Cover' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'Field capacity' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'Wilting point' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Total Precipitation -'Total Precipitation' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib3/paramId.def b/eccodes/definitions.save/grib3/paramId.def deleted file mode 100644 index b9e3a7fa..00000000 --- a/eccodes/definitions.save/grib3/paramId.def +++ /dev/null @@ -1,3009 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea-ice cover -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'33' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'34' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'43' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'49' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Specific rain water content -'75' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'76' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'77' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Surface solar radiation downwards -'169' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface thermal radiation downwards -'175' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Eastward turbulent surface stress -'180' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'181' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; - } -#Ozone mass mixing ratio -'203' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Specific cloud liquid water content -'246' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'247' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'248' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'3062' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'3066' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'3073' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'3074' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'3075' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#10 metre wind gust in the last 3 hours -'228028' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Relative humidity with respect to water -'228030' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'228031' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'228032' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'228033' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'228034' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Height of convective cloud top -'228046' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Unbalanced component of specific humidity -'228054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'228055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'228056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Soil moisture top 20 cm -'228086' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil moisture top 100 cm -'228087' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil temperature top 20 cm -'228095' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil temperature top 100 cm -'228096' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Convective precipitation -'228143' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'228205' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mean temperature tendency due to short-wave radiation -'235001' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'235002' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'235003' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'235004' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'235005' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'235006' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'235007' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'235008' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'235009' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'235010' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'235011' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'235012' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'235013' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'235014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Cross sectional area of flow in channel -'240011' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'240012' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'240013' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'240014' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'240015' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'240016' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'240017' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'240018' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'240020' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'240021' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'240022' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Snow depth at elevation bands -'240026' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'240028' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'240029' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Surface air relative humidity -'260242' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'260255' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'260256' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'260257' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'260258' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'260259' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#10 metre wind direction -'260260' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'260262' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'260263' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'260264' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Soil temperature -'260360' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'260361' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'260362' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'260363' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'260364' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'260365' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'260367' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'260423' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'260427' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'260428' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'260430' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfFirstFixedSurface = 177 ; - typeOfStatisticalProcessing = 1 ; - } -#Cloudy brightness temperature -'260510' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'260511' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'260530' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'260531' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'260532' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'260533' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'260534' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'260535' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'260536' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'260537' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'260538' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'260539' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Cloudy radiance (with respect to wave number) -'260550' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'260551' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'260552' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'260553' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'260554' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'260555' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'260556' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Virtual temperature -'300012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'3012' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'3014' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'3031' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Significant height of combined wind waves and swell -'140229' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'140230' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Mean wave period -'140232' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Surface runoff -'174008' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Total precipitation of at least 10 mm -'131062' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Total precipitation of at least 20 mm -'131063' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - } -#Stream function -'1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'3' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Pressure -'54' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'59' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'60' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'121' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'122' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'129' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'130' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'131' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'132' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'133' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'134' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'135' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'136' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'138' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'145' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'146' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface latent heat flux -'147' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'151' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'155' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'156' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'157' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'165' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'166' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'167' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'172' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'173' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'176' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'177' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'179' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'189' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'194' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'207' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Skin temperature -'235' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'260002' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'260003' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'260004' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'260005' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'260006' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'260007' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'260008' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'260009' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'260010' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'260011' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'260012' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'260013' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'260014' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'260015' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'260016' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'260017' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'260018' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'260019' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'260020' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'260021' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'260022' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'260023' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'260024' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'260025' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'260026' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'260027' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'260028' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'260029' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'260030' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'260031' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'260032' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'260033' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'260034' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'260035' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'260036' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'260037' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'260038' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'260039' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'260040' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'260041' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'260042' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'260043' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'260044' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'260045' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'260046' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'260047' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'260048' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'260049' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'260050' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'260051' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'260052' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'260053' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'260054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'260055' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth -'260056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'260057' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'260058' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'260059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'260060' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'260061' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'260062' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'260063' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'260064' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'260065' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'260066' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'260067' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'260068' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'260069' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'260070' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'260071' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'260072' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'260073' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'260074' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'260075' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'260076' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'260077' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'260078' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'260079' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'260080' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'260081' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'260082' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'260083' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'260084' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'260085' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'260086' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'260087' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'260088' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'260089' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'260090' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'260091' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'260092' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'260093' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'260094' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'260095' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'260096' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'260097' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'260098' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'260099' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'260100' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'260101' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'260102' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'260103' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'260104' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'260105' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'260106' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'260107' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'260108' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'260109' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'260110' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'260111' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'260112' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'260113' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'260114' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'260115' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'260116' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'260117' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'260118' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'260119' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'260120' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'260121' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'260122' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'260123' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'260124' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'260125' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'260126' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'260127' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'260128' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'260129' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'260130' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'260132' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'260133' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'260134' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'260135' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'260136' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'260137' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'260138' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'260139' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'260140' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'260141' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'260142' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'260143' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'260144' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'260145' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'260146' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'260147' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'260148' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'260149' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'260150' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'260151' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'260152' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'260153' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'260154' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'260155' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'260156' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'260157' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'260158' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'260159' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'260160' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'260161' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'260162' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'260163' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'260164' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'260165' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'260166' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'260167' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'260168' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'260169' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'260170' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'260171' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'260172' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'260173' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'260174' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'260175' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'260176' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'260177' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'260178' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'260179' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'260180' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'260181' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'260182' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'260183' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'260184' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'260185' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'260186' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'260187' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'260188' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'260189' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'260190' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'260191' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'260192' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'260193' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'260194' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'260195' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'260196' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'260197' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'260198' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'260199' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'260200' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'260201' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'260202' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'260203' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'260204' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'260205' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'260206' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'260207' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'260208' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'260209' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'260210' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'260211' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'260212' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'260213' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'260214' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'260215' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'260216' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'260217' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'260218' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'260219' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'260220' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'260221' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'260222' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'260223' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'260224' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'260225' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'260226' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'260227' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'260228' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'260229' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'260230' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'260231' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'260232' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'260233' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'260234' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'260235' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'260236' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'260237' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'260238' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'260239' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'260240' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'260241' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'260509' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'3003' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'3005' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'3008' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'3009' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'3015' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'3016' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'3017' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'3019' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'3020' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'3021' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'3022' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'3023' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'3024' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'3025' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'3026' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'3027' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'3028' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'3029' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'3030' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'3037' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'3038' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'3041' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'3042' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'3045' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'3046' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'3049' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'3050' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'3054' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'3056' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'3059' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'3060' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'3063' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'3067' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'3068' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'3069' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'3070' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'3077' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'3086' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'3088' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'3089' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'3092' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'3093' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'3094' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'3095' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'3096' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'3097' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'3098' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'3099' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'3102' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'3103' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'3104' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'3105' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'3106' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'3109' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'3111' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'3117' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'3119' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'3120' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'3126' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre Wind gust of at least 15 m/s -'131070' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - } -#10 metre Wind gust of at least 20 m/s -'131071' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - } -#Convective inhibition -'228001' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'228002' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'228141' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow Fall water equivalent -'228144' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Total Cloud Cover -'228164' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Field capacity -'228170' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wilting point -'228171' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'228228' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/grib3/parameters.def b/eccodes/definitions.save/grib3/parameters.def deleted file mode 100644 index e7cea2eb..00000000 --- a/eccodes/definitions.save/grib3/parameters.def +++ /dev/null @@ -1,38 +0,0 @@ -# (C) Copyright 2005- 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. -# - -transient dummyc=0: hidden; -constant conceptsMasterDir="grib3" : hidden; -constant conceptsLocalDirAll="grib3/localConcepts/[centre:s]" : hidden; -constant conceptsLocalDirECMF="grib3/localConcepts/ecmf" : hidden; - -concept paramIdECMF (defaultParameter,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy; -concept paramId (paramIdECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirAll): long_type; - -concept shortNameECMF (defaultShortName,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept ls.shortName (shortNameECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; - -concept unitsECMF (defaultName,"units.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy; -concept units (unitsECMF,"units.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy; - -concept nameECMF (defaultName,"name.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept name (nameECMF,"name.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; - -concept cfNameECMF (defaultShortName,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept cfName (cfNameECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; - -concept cfVarNameECMF (defaultShortName,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; - -# modelName: Contribution from Daniel Lee @ DWD -concept modelName (defaultName,"modelName.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump,read_only; - -template_nofail names "grib3/products_[productionStatusOfProcessedData].def"; - -meta ifsParam ifs_param(paramId,type); diff --git a/eccodes/definitions.save/grib3/products_0.def b/eccodes/definitions.save/grib3/products_0.def deleted file mode 100644 index 4bf54ef1..00000000 --- a/eccodes/definitions.save/grib3/products_0.def +++ /dev/null @@ -1,18 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Operational products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; diff --git a/eccodes/definitions.save/grib3/products_1.def b/eccodes/definitions.save/grib3/products_1.def deleted file mode 100644 index 9688c57e..00000000 --- a/eccodes/definitions.save/grib3/products_1.def +++ /dev/null @@ -1,20 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Operationl test products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - - diff --git a/eccodes/definitions.save/grib3/products_2.def b/eccodes/definitions.save/grib3/products_2.def deleted file mode 100644 index 65a7fcd9..00000000 --- a/eccodes/definitions.save/grib3/products_2.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Research products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - diff --git a/eccodes/definitions.save/grib3/products_3.def b/eccodes/definitions.save/grib3/products_3.def deleted file mode 100644 index bc11b637..00000000 --- a/eccodes/definitions.save/grib3/products_3.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Re-analysis products - -alias parameter=paramId; -alias mars.param = paramId; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - diff --git a/eccodes/definitions.save/grib3/products_4.def b/eccodes/definitions.save/grib3/products_4.def deleted file mode 100644 index 3d5e1fa0..00000000 --- a/eccodes/definitions.save/grib3/products_4.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Tigge -constant marsExpver = 'prod'; -include "grib2/products_tigge.def" diff --git a/eccodes/definitions.save/grib3/products_5.def b/eccodes/definitions.save/grib3/products_5.def deleted file mode 100644 index 19aa93a9..00000000 --- a/eccodes/definitions.save/grib3/products_5.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Tigge -constant marsExpver = 'test'; -include "grib2/products_tigge.def" diff --git a/eccodes/definitions.save/grib3/products_6.def b/eccodes/definitions.save/grib3/products_6.def deleted file mode 100644 index fe5c4d3b..00000000 --- a/eccodes/definitions.save/grib3/products_6.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# S2S -constant marsExpver = 'prod'; -include "grib2/products_s2s.def" diff --git a/eccodes/definitions.save/grib3/products_7.def b/eccodes/definitions.save/grib3/products_7.def deleted file mode 100644 index c9e281db..00000000 --- a/eccodes/definitions.save/grib3/products_7.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# S2S test -constant marsExpver = 'test'; -include "grib2/products_s2s.def" diff --git a/eccodes/definitions.save/grib3/products_8.def b/eccodes/definitions.save/grib3/products_8.def deleted file mode 100644 index f06ae4c7..00000000 --- a/eccodes/definitions.save/grib3/products_8.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Uncertainties in ensembles of regional re-analysis project (UERRA) -constant marsExpver = 'prod'; -include "grib2/products_uerra.def" diff --git a/eccodes/definitions.save/grib3/products_9.def b/eccodes/definitions.save/grib3/products_9.def deleted file mode 100644 index cf7911e9..00000000 --- a/eccodes/definitions.save/grib3/products_9.def +++ /dev/null @@ -1,12 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Uncertainties in ensembles of regional re-analysis project test (UERRA) -constant marsExpver = 'test'; -include "grib2/products_uerra.def" diff --git a/eccodes/definitions.save/grib3/products_s2s.def b/eccodes/definitions.save/grib3/products_s2s.def deleted file mode 100644 index 7d1dd772..00000000 --- a/eccodes/definitions.save/grib3/products_s2s.def +++ /dev/null @@ -1,106 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# S2S -constant marsClass = 's2'; -constant marsModel = 'glob'; -alias is_s2s = one; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.model = marsModel; - -# See GRIB-761. For Italy, subCentre 102 is ISAC-CNR -if (centre is "cnmc" && subCentre == 102) { - constant cnmc_isac = 'isac'; - alias mars.origin = cnmc_isac; -} else { - alias mars.origin = centre; -} - -unalias mars.domain; - -concept marsType { - - fc = { - typeOfProcessedData = 2; - } - "9" = { - typeOfProcessedData = 2; - } - - cf = { - typeOfProcessedData = 3; - } - "10" = { - typeOfProcessedData = 3; - } - - pf = { - typeOfProcessedData = 4; - } - "11" = { - typeOfProcessedData = 4; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -concept marsStream { - - oper = { - typeOfProcessedData = 0; - } - - oper = { - typeOfProcessedData = 2; - } - - enfo = { - typeOfProcessedData = 3; - } - - enfo = { - typeOfProcessedData = 4; - } - - enfo = { - typeOfProcessedData = 8; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; - -# Normally MARS step is endStep but for monthly means we want stepRange -if (stepType is "avg") { - alias mars.step = stepRange; -} - -if (isHindcast == 1) { - # S2S reforecasts - constant theHindcastMarsStream = "enfh"; - alias mars.stream = theHindcastMarsStream; - alias mars.hdate = dataDate; - alias mars.date = modelVersionDate; - alias mars.time = modelVersionTime; -} diff --git a/eccodes/definitions.save/grib3/products_tigge.def b/eccodes/definitions.save/grib3/products_tigge.def deleted file mode 100644 index bc102800..00000000 --- a/eccodes/definitions.save/grib3/products_tigge.def +++ /dev/null @@ -1,102 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Tigge -constant marsClass = 'ti'; -constant marsModel = 'glob'; -alias is_tigge = one; - -alias tigge_short_name=shortName; -alias short_name=shortName; -alias parameter=paramId; -alias tigge_name=name; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -if(levtype is "sfc") -{ - unalias mars.levelist; -} - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.model = marsModel; -alias mars.origin = centre; - -# Tigge-LAM rules -# productionStatusOfProcessedData == 4 -if (section2Used == 1) { - constant marsLamModel = 'lam'; - alias mars.model = marsLamModel; # model redefined. It is not 'glob' - alias mars.origin = tiggeSuiteID; # origin is the suiteName for Tigge-LAM - unalias mars.domain; # No mars domain needed -} - -concept marsType { - - fc = { - typeOfProcessedData = 2; - } - "9" = { - typeOfProcessedData = 2; - } - - cf = { - typeOfProcessedData = 3; - } - "10" = { - typeOfProcessedData = 3; - } - - pf = { - typeOfProcessedData = 4; - } - "11" = { - typeOfProcessedData = 4; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -concept marsStream { - - oper = { - typeOfProcessedData = 0; - } - - oper = { - typeOfProcessedData = 2; - } - - enfo = { - typeOfProcessedData = 3; - } - - enfo = { - typeOfProcessedData = 4; - } - - enfo = { - typeOfProcessedData = 8; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; diff --git a/eccodes/definitions.save/grib3/products_uerra.def b/eccodes/definitions.save/grib3/products_uerra.def deleted file mode 100644 index 82289f68..00000000 --- a/eccodes/definitions.save/grib3/products_uerra.def +++ /dev/null @@ -1,92 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Uncertainties in ensembles of regional re-analysis project (UERRA) -constant marsClass = 'ur'; - -alias tigge_short_name=shortName; -alias short_name=shortName; -alias parameter=paramId; -alias tigge_name=name; - -alias parameter.paramId=paramId; -alias parameter.shortName=shortName; -alias parameter.units=units; -alias parameter.name=name; - -# Special UERRA rule for level type 103 'Specified height level above ground (m)' -if(typeOfFirstFixedSurface == 103) { - # only the parameters above 10m - if (level > 10) { - constant heightLevelName = 'hl'; - alias mars.levtype = heightLevelName; - # levelist was unaliased in template.4.horizontal.def so we must have it back - alias mars.levelist = level; - } -} - -if(typeOfFirstFixedSurface == 151 && typeOfSecondFixedSurface == 151) { - alias level = bottomLevel; - alias mars.levelist = level; -} - -alias mars.expver = marsExpver; -alias mars.class = marsClass; -alias mars.param = paramId; -alias mars.origin = centre; - -# See GRIB-911 re typeOfProcessedData values in UERRA -concept marsType { - - fc = { - typeOfProcessedData = 1; - } - "9" = { - typeOfProcessedData = 1; - } - - an = { - typeOfProcessedData = 0; - } - "2" = { - typeOfProcessedData = 0; - } - - "default" = { - dummyc = 0; - } -} - -# See GRIB-205 re no_copy -# Cannot use typeOfProcessedData for stream. See GRIB-911 -concept marsStream { - - oper = { - productDefinitionTemplateNumber = 8; - } - - oper = { - productDefinitionTemplateNumber = 0; - } - - enda = { - productDefinitionTemplateNumber = 11; - } - - enda = { - productDefinitionTemplateNumber = 1; - } - - "default" = { - dummyc = 0; - } -} : no_copy; - -alias mars.stream = marsStream; -alias mars.type = marsType; diff --git a/eccodes/definitions.save/grib3/rules.def b/eccodes/definitions.save/grib3/rules.def deleted file mode 100644 index de8932e5..00000000 --- a/eccodes/definitions.save/grib3/rules.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Experimental stuff - -transient isAccumulation = 0 ; -transient isEPS = 0 ; - -when(isAccumulation and !isEPS) - set productDefinitionTemplateNumber = 8; - -when(isAccumulation and isEPS) - set productDefinitionTemplateNumber = 11; diff --git a/eccodes/definitions.save/grib3/section.00.def b/eccodes/definitions.save/grib3/section.00.def deleted file mode 100644 index bc68175b..00000000 --- a/eccodes/definitions.save/grib3/section.00.def +++ /dev/null @@ -1,26 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 0 - Indicator Section - -position offsetSection0; -constant section0Length = 16; -ascii[4] identifier = "GRIB" : read_only; -unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; - -codetable[1] tablesVersion 'grib3/tables/0.0.table' = 1 : edition_specific; -alias gribMasterTablesVersionNumber=tablesVersion; - -unsigned[1] editionNumber = 3 : edition_specific,dump; -alias ls.edition = editionNumber; - -section_length[8] totalLength; -position startOfHeaders; # See later for endOfHeadersMarker - -meta section0Pointer section_pointer(offsetSection0,section0Length,0); diff --git a/eccodes/definitions.save/grib3/section.01.def b/eccodes/definitions.save/grib3/section.01.def deleted file mode 100644 index 5bde245b..00000000 --- a/eccodes/definitions.save/grib3/section.01.def +++ /dev/null @@ -1,103 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 1 - Originator Section - -position offsetSection1; -section_length[4] section1Length ; -meta section1Pointer section_pointer(offsetSection1,section1Length,1); - -unsigned[1] numberOfSection = 1 :read_only; - -codetable[2] centre 'common/c-11.table' : dump,string_type; -alias identificationOfOriginatingGeneratingCentre=centre; -meta centreDescription codetable_title(centre); - -alias parameter.centre=centre; -alias ls.centre=centre; -alias originatingCentre=centre; - -unsigned[2] subCentre : dump; - -_if (subCentre==98 ) { - alias centreForLocal=subCentre; -} else { - alias centreForLocal=centre; -} - -#codetable[1] tablesVersion 'grib3/tables/1.0.table' = 1 : edition_specific; -#alias gribMasterTablesVersionNumber=tablesVersion; - -codetable[1] localTablesVersion 'grib3/tables/[tablesVersion]/1.0.table' ; -alias versionNumberOfGribLocalTables=localTablesVersion; -transient localDir=""; -if (localTablesVersion != 0) { - transient localDir="grib3/tables/local/[centre]/[localTablesVersion]"; -} - -transient masterDir="grib3/tables/[tablesVersion]"; -when (tablesVersion!=255) { - set masterDir="grib3/tables/[tablesVersion]"; -} else { - set masterDir="grib3/tables/1"; -} - -codetable[1] identificationOfProject 'grib3/tables/[tablesVersion]/1.1.table' = 255 : dump; - - -# Production status of processed data in this GRIB message -codetable[1] productionStatusOfProcessedData ('1.2.table',masterDir,localDir) : dump; -concept is_uerra(zero) { - '1' = {productionStatusOfProcessedData=9;} - '1' = {productionStatusOfProcessedData=8;} - '0' = {dummy=1;} -} - -unsigned[2] originatorLocalTemplateNumber = missing() : dump,edition_specific,can_be_missing; -unsigned[2] lengthOfOriginatorLocalTemplate = 0: dump,edition_specific; -template_nofail originatorLocalTemplate "grib3/template.1.originator.[originatorLocalTemplateNumber:i].def"; - - -unsigned[2] projectLocalTemplateNumber = missing() : dump,edition_specific,can_be_missing; -unsigned[2] lengthOfProjectLocalTemplate = 0: dump,edition_specific; -template_nofail projectLocalTemplate "grib3/template.1.project.[projectLocalTemplateNumber:i].def"; - -# Type of processed data in this GRIB message -#codetable[1] typeOfProcessedData ('1.4.table',masterDir,localDir) = 255 : dump,string_type,no_fail; -#alias ls.dataType=typeOfProcessedData; - -meta md5Section1 md5(offsetSection1,section1Length); - -#meta selectStepTemplateInterval select_step_template(productDefinitionTemplateNumber,0); # 0 -> not instant -#meta selectStepTemplateInstant select_step_template(productDefinitionTemplateNumber,1); # 1 -> instant - -#transient stepTypeInternal="instant" : hidden,no_copy; - -#concept stepType { -# "instant" = {selectStepTemplateInstant=1; stepTypeInternal="instant";} -# "avg" = {selectStepTemplateInterval=1; stepTypeInternal="avg";} -# "avgd" = {selectStepTemplateInterval=1; stepTypeInternal="avgd";} -# "accum" = {selectStepTemplateInterval=1; stepTypeInternal="accum";} -# "max" = {selectStepTemplateInterval=1; stepTypeInternal="max";} -# "min" = {selectStepTemplateInterval=1; stepTypeInternal="min";} -# "diff" = {selectStepTemplateInterval=1; stepTypeInternal="diff";} -# "rms" = {selectStepTemplateInterval=1; stepTypeInternal="rms";} -# "sd" = {selectStepTemplateInterval=1; stepTypeInternal="sd";} -# "cov" = {selectStepTemplateInterval=1; stepTypeInternal="cov";} -# "ratio" = {selectStepTemplateInterval=1; stepTypeInternal="ratio";} -#} - -#transient setCalendarId = 0 ; -#transient deleteCalendarId = 0 ; -#alias calendarIdPresent = zero; -#if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { -# alias calendarIdPresent = present; -# codetable[2] calendarIdentificationTemplateNumber ('1.5.table',masterDir,localDir) : dump,string_type,no_fail; -# template calendarIdentification "grib3/template.1.[calendarIdentificationTemplateNumber:i].def"; -#} diff --git a/eccodes/definitions.save/grib3/section.02.def b/eccodes/definitions.save/grib3/section.02.def deleted file mode 100644 index 78c33893..00000000 --- a/eccodes/definitions.save/grib3/section.02.def +++ /dev/null @@ -1,65 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 2 - Repetitions and Index Section - -position offsetSection2; -section_length[4] section2Length ; -meta section2Pointer section_pointer(offsetSection2,section2Length,2); -unsigned[1] numberOfSection = 2 :read_only; - -# Note 1: A message with only one field shall have the total number of repetitions and -# each of the number of distinct sections set to 1 -unsigned[2] totalNumberOfRepetitions = 1 : dump; - -# Note 2: Two repeated sections shall never be identical. -# If two sections are identical because they have the same content, one of the two shall be coded -# with only 7 bytes (empty section with reference) and the SUI shall be coded with the same value -# of the identical section to which this section refers. Each section will therefore have content -# in it or refer to another section of the same section number. In the latter case, it will be made -# only of 7 bytes comprising section length (4 bytes), number of section (1 byte) and -# Section Unique Identifier - SUI (2 bytes) -unsigned[2] numberOfDistinctSection3s = 1: dump; -unsigned[2] numberOfDistinctSection4s = 1: dump; -unsigned[2] numberOfDistinctSection5s = 1: dump; -unsigned[2] numberOfDistinctSection6s = 1: dump; -unsigned[2] numberOfDistinctSection7s = 1: dump; -unsigned[2] numberOfDistinctSection8s = 1: dump; -unsigned[2] numberOfDistinctSection9s = 1: dump; - -# Note 3: The inclusion of an Index template is optional. If index template is not present, -# the index template number shall be set to missing and the length of index template shall be set to 0 -unsigned[2] indexTemplateNumber = missing() : dump,can_be_missing; -unsigned[4] lengthOfIndexTemplate = 0: dump,edition_specific; -template_nofail indexTemplate "grib3/template.2.[indexTemplateNumber:i].def"; - -#if ( addEmptySection2 == 0 ) { -# if ( grib2LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { -# alias section2Used=one; -# -# if(productionStatusOfProcessedData == 4 || productionStatusOfProcessedData == 5) { -# # This is TIGGE-LAM because of the productionStatusOfProcessedData and the non-empty section 2 -# codetable[2] tiggeLocalVersion 'grib3/tiggeLocalVersion.table' = 1 : dump; -# template tiggeSection "grib3/local.tigge.[tiggeLocalVersion:l].def"; -# } -# -# codetable[2] grib2LocalSectionNumber 'grib3/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; -# -# if (grib2LocalSectionNumber!=0) { -# template_nofail local "grib3/local.[centreForLocal:l].def"; -# } else { -# constant deleteLocalDefinition=1; -# } -# position offsetAfterCentreLocalSection; -# } -#} - -#section_padding section2Padding : read_only; - -meta md5Section2 md5(offsetSection2,section2Length); diff --git a/eccodes/definitions.save/grib3/section.03.def b/eccodes/definitions.save/grib3/section.03.def deleted file mode 100644 index 16ddc6bc..00000000 --- a/eccodes/definitions.save/grib3/section.03.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 3 - Time Domain Section - -position offsetSection3; -section_length[4] section3Length ; -meta section3Pointer section_pointer(offsetSection3,section3Length,3); -unsigned[1] numberOfSection = 3 :read_only; - -unsigned[2] section3UniqueIdentifier; # SUI - -codetable[1] significanceOfReferenceDateAndTime ('3.0.table',masterDir,localDir) = 1 : dump; - -# The type of calendar used applies to the entire section including the Time Domain Template -codetable[1] typeOfCalendar ('3.1.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; - -# Year, month, day etc form the Reference date and time -# Note: year is SIGNED integer (according to Reg. 92.1.5) to represent large negative dates (BC). -# This was a requirement for the climate. -signed[4] year ; -unsigned[1] month ; -unsigned[1] day ; -unsigned[1] hour ; -unsigned[1] minute ; -unsigned[1] second ; - -meta dataDate g2date(year,month,day) : dump; -alias mars.date = dataDate; -alias ls.date = dataDate; -meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; -meta dataTime time(hour,minute,second) : dump; -alias mars.time = dataTime; - -codetable[2] timeDomainTemplateNumber ('3.2.table',masterDir,localDir) =0 : dump,edition_specific; -template timeDomainTemplate "grib3/template.3.[timeDomainTemplateNumber:l].def"; - -meta md5Section3 md5(offsetSection3,section3Length); -alias md5TimeDomainSection = md5Section3; diff --git a/eccodes/definitions.save/grib3/section.04.def b/eccodes/definitions.save/grib3/section.04.def deleted file mode 100644 index fe8d0149..00000000 --- a/eccodes/definitions.save/grib3/section.04.def +++ /dev/null @@ -1,33 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 4 - Horizontal Domain Section - -position offsetSection4; -section_length[4] section4Length ; -meta section4Pointer section_pointer(offsetSection4,section4Length,4); -unsigned[1] numberOfSection = 4:read_only; - -unsigned[2] section4UniqueIdentifier; # SUI - -unsigned[4] numberOfPointsInDomain : dump; -alias numberOfPoints=numberOfPointsInDomain; -alias numberOfDataPoints=numberOfPointsInDomain; - -codetable[2] horizontalDomainTemplateNumber ('4.0.table',masterDir,localDir) =0 : dump,edition_specific; -template horizontalDomainTemplate "grib3/template.4.[horizontalDomainTemplateNumber:i].def"; - - -########################### -#if (defined(marsStream) && defined(marsType)) { -# template_nofail marsKeywords1 "mars/grib.[marsStream:s].[marsType:s].def"; -#} -#template parameters "grib3/parameters.def"; - -meta md5Section4 md5(offsetSection4,section4Length); diff --git a/eccodes/definitions.save/grib3/section.05.def b/eccodes/definitions.save/grib3/section.05.def deleted file mode 100644 index 1cd85ec8..00000000 --- a/eccodes/definitions.save/grib3/section.05.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 5 - Vertical Domain Section - -position offsetSection5; -section_length[4] section5Length; -meta section5Pointer section_pointer(offsetSection5,section5Length,5); -unsigned[1] numberOfSection = 5: read_only; - -unsigned[2] section5UniqueIdentifier; # SUI - -codetable[2] verticalDomainTemplateNumber ('5.0.table',masterDir,localDir) =0 : dump,edition_specific; -template verticalDomainTemplate "grib3/template.5.[verticalDomainTemplateNumber:i].def"; - -meta md5Section5 md5(offsetSection5, section5Length); diff --git a/eccodes/definitions.save/grib3/section.06.def b/eccodes/definitions.save/grib3/section.06.def deleted file mode 100644 index 59db019e..00000000 --- a/eccodes/definitions.save/grib3/section.06.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 6 - Generating Process Section - -position offsetSection6; -section_length[4] section6Length; -meta section6Pointer section_pointer(offsetSection6,section6Length,6); -unsigned[1] numberOfSection = 6: read_only; - -unsigned[2] section6UniqueIdentifier; # SUI - -codetable[2] generatingProcessTemplateNumber ('6.0.table',masterDir,localDir) =0 : dump,edition_specific; -template generatingProcessTemplate "grib3/template.6.[generatingProcessTemplateNumber:i].def"; - -meta md5Section6 md5(offsetSection6, section6Length); diff --git a/eccodes/definitions.save/grib3/section.07.def b/eccodes/definitions.save/grib3/section.07.def deleted file mode 100644 index 5ac66dba..00000000 --- a/eccodes/definitions.save/grib3/section.07.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 7 - Observable Property Section - -position offsetSection7; -section_length[4] section7Length; -meta section7Pointer section_pointer(offsetSection7,section7Length,7); -unsigned[1] numberOfSection = 7: read_only; - -unsigned[2] section7UniqueIdentifier; # SUI - -codetable[2] observablePropertyTemplateNumber ('7.0.table',masterDir,localDir) =0 : dump,edition_specific; -template observablePropertyTemplate "grib3/template.7.[observablePropertyTemplateNumber:i].def"; - -meta md5Section7 md5(offsetSection7, section7Length); diff --git a/eccodes/definitions.save/grib3/section.08.def b/eccodes/definitions.save/grib3/section.08.def deleted file mode 100644 index 90838fa7..00000000 --- a/eccodes/definitions.save/grib3/section.08.def +++ /dev/null @@ -1,27 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 8 - Data Representation Section - -position offsetSection8; -section_length[4] section8Length; -meta section8Pointer section_pointer(offsetSection8,section8Length,8); -unsigned[1] numberOfSection = 8: read_only; - -unsigned[2] section8UniqueIdentifier; # SUI - -# Number of data points where one or more values encoded in Section 10 -unsigned[4] numberOfValues : dump; -alias numberOfCodedValues=numberOfValues; -alias numberOfEffectiveValues=numberOfValues; - -codetable[2] dataRepresentationTemplateNumber ('8.0.table',masterDir,localDir) =0 : dump,edition_specific; -template dataRepresentationTemplate "grib3/template.8.[dataRepresentationTemplateNumber:i].def"; - -meta md5Section8 md5(offsetSection8, section8Length); diff --git a/eccodes/definitions.save/grib3/section.09.def b/eccodes/definitions.save/grib3/section.09.def deleted file mode 100644 index 8c423483..00000000 --- a/eccodes/definitions.save/grib3/section.09.def +++ /dev/null @@ -1,24 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 9 - Overlay Section - -position offsetSection9; -position offsetBSection9; - -section_length[4] section9Length; -meta section9Pointer section_pointer(offsetSection9,section9Length,9); -unsigned[1] numberOfSection = 9: read_only; - -unsigned[2] section9UniqueIdentifier; # SUI - -codetable[2] overlayTemplateNumber ('9.0.table',masterDir,localDir) =0 : dump,edition_specific; -template overlayTemplate "grib3/template.9.[overlayTemplateNumber:i].def"; - -meta md5Section9 md5(offsetSection9, section9Length); diff --git a/eccodes/definitions.save/grib3/section.10.def b/eccodes/definitions.save/grib3/section.10.def deleted file mode 100644 index ff53c3e7..00000000 --- a/eccodes/definitions.save/grib3/section.10.def +++ /dev/null @@ -1,35 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Section 10 - Data Section - -position offsetSection10; -section_length[4] section10Length; -meta section10Pointer section_pointer(offsetSection10,section10Length,10); -unsigned[1] numberOfSection = 10: read_only; - -# Data in a format described by data template 10.X, -# where X is the Data Template number given in bytes 12-13 of Section 8 -position offsetBeforeData; -template dataValues "grib3/template.10.[dataRepresentationTemplateNumber:i].def"; - -meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values): edition_specific; -meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision): edition_specific; -alias setDecimalPrecision=changeDecimalPrecision; - -meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; - -meta getNumberOfValues size(values) : edition_specific,dump ; - -meta scaleValuesBy scale_values(values,missingValue) : edition_specific; -meta offsetValuesBy offset_values(values,missingValue) : edition_specific; - -position offsetAfterData; -meta md5Section10 md5(offsetSection10, section10Length); -alias md5DataSection = md5Section10; diff --git a/eccodes/definitions.save/grib3/section.11.def b/eccodes/definitions.save/grib3/section.11.def deleted file mode 100644 index 2c6bd14c..00000000 --- a/eccodes/definitions.save/grib3/section.11.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# -# Section 11 - End Section -constant section11Length=4; -position offsetSection11; -ascii[4] '7777' = "7777" : read_only; -meta section11Pointer section_pointer(offsetSection11,section11Length,11); diff --git a/eccodes/definitions.save/grib3/sections.def b/eccodes/definitions.save/grib3/sections.def deleted file mode 100644 index 313b93b7..00000000 --- a/eccodes/definitions.save/grib3/sections.def +++ /dev/null @@ -1,77 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# The section number is always 1 byte and at the 5th byte of each section (so offset=4) - -lookup[1] sectionNumber(4); -if (sectionNumber == 1 or new()){ - position sectionPosition; - template section_01 "grib3/section.01.def"; #Originator Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 2 or new()){ - position sectionPosition; - template section_02 "grib3/section.02.def"; #Repetitions and Index Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 3 or new()){ - position sectionPosition; - template section_03 "grib3/section.03.def"; #Time Domain Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 4 or new()){ - position sectionPosition; - template section_04 "grib3/section.04.def"; #Horizontal Domain Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 5 or new()){ - position sectionPosition; - template section_05 "grib3/section.05.def"; #Vertical Domain Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 6 or new()){ - position sectionPosition; - template section_06 "grib3/section.06.def"; #Generating Process Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 7 or new()){ - position sectionPosition; - template section_07 "grib3/section.07.def"; #Observable Property Section -} - -lookup[1] sectionNumber(4); - -# Used to mark end of headers. Can be accessed with grib_get_offset() -position endOfHeadersMarker; - -meta lengthOfHeaders evaluate(endOfHeadersMarker - startOfHeaders); -meta md5Headers md5(startOfHeaders,lengthOfHeaders); - -if (sectionNumber == 8 or new()){ - position sectionPosition; - template section_08 "grib3/section.08.def"; #Data Representation Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 9 or new()){ - position sectionPosition; - template section_09 "grib3/section.09.def"; #Overlay Section -} - -lookup[1] sectionNumber(4); -if (sectionNumber == 10 or new()){ - position sectionPosition; - template section_10 "grib3/section.10.def"; #Data Section -} diff --git a/eccodes/definitions.save/grib3/shortName.def b/eccodes/definitions.save/grib3/shortName.def deleted file mode 100644 index 9a2015a3..00000000 --- a/eccodes/definitions.save/grib3/shortName.def +++ /dev/null @@ -1,3009 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea-ice cover -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'rsn' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'sst' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'slt' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'10fg' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - } -#Specific rain water content -'crwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'cswc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'etadot' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Surface solar radiation downwards -'ssrd' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'strd' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Eastward turbulent surface stress -'ewss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'nsss' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Ozone mass mixing ratio -'o3' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Specific cloud liquid water content -'clwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'ciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'cc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'lsp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Snow depth -'sde' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'lcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'mcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'hcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#10 metre wind gust in the last 3 hours -'10fg3' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'rhw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'rhi' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'asn' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'fspc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'fcpc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Height of convective cloud top -'hcct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Unbalanced component of specific humidity -'ucq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'ucclwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'ucciwc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Soil moisture top 20 cm -'sm20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil moisture top 100 cm -'sm100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'st20' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 100 cm -'st100' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 10 ; - } -#Convective precipitation -'cp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Water runoff and drainage -'ro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mean temperature tendency due to short-wave radiation -'mttswr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'mttlwr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'mttswrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'mttlwrcs' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'mttpm' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'mqtpm' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'mutpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'mvtpm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'mumf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'mdmf' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'mudr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'mddr' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'mtpf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'mtdch' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Cross sectional area of flow in channel -'chcross' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'chside' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'dis' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'rivsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'fldsto' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'fldfrc' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'dslr' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'frost' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'woss' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'tpups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'smups' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Snow depth at elevation bands -'sd_elev' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'gwus' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'gwls' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Surface air relative humidity -'2r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Apparent temperature -'aptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'hindex' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'ccl' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'evarate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'eva' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'10wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Direct short wave radiation flux -'dirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'difswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'tidirswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil temperature -'sot' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'dswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'uswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'dlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'sohf' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'percr' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'sod' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'adswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'auswrf_cs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'adlwrf_cs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Percolation -'perc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'clbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'csbt' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'~' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Cloudy radiance (with respect to wave number) -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'~' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Virtual temperature -'vtmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'vptmp' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'papt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'wdir' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Significant height of combined wind waves and swell -'swh' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'mwd' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Mean wave period -'mwp' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Surface runoff -'sro' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Total precipitation of at least 10 mm -'tpg10' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; - } -#Total precipitation of at least 20 mm -'tpg20' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfLowerLimit = 20 ; - typeOfStatisticalProcessing = 1 ; - } -#Stream function -'strf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'vp' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'pt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Pressure -'pres' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'cape' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Potential vorticity -'pv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'mx2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'mn2t6' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'z' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'q' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'sp' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'w' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'tcw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'vo' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'bld' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'sshf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'slhf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Mean sea level pressure -'msl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'d' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'r' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'10u' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'10v' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'lsm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'sr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'ssr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface net thermal radiation -'str' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'ttr' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'sund' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'btmp' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'10si' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Skin temperature -'skt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'lhtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'shtfl' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'heatx' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'wcf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'mindpd' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'snohf' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'vapp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'ncpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'srweq' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'snoc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'snol' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'snoag' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'absh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'ptype' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'iliqw' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'clwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'icmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'rwmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'snmr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'mconv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'maxrh' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'maxah' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'asnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'pwcat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'hail' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'grle' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'crain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'cfrzr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'cicep' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'csnow' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'cprat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'mdiv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'cpofp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'pevap' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'pevpr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'snowc' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'frain' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'rime' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'tcolr' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'tcols' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'lswp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'cwp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'twatp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'tsnowp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'tcwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'tprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'tsrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'lsprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'csrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'lssrwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'tsrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'csrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'lssrate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth -'sdwe' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'tciwv' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'rprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'sprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'fprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'iprate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'uflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'vflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'maxgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'gust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'ugust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'vgust' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'vwsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'mflx' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'ustm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'vstm' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'cd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'fricv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'prmsl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'dist' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'alts' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'thick' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'presalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'denalt' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'5wavh' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'u-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'v-gwd' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'hpbl' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'5wava' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'sdsgso' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'nswrt' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'dswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'uswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'nswrf' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'photar' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'nswrfcs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'dwuvr' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'uviucs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'uvi' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'nlwrs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'nlwrt' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'dlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'ulwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'nlwrf' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'nlwrcs' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'cice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'cwat' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'cdca' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'tmaxt' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'thunc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'cdcb' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'cdct' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'ceil' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'cdlyr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'cwork' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'cuefi' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'tcond' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'tcolw' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'tcoli' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'tcolc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'fice' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'cdcimr' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'suns' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'~' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'kx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'kox' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'totalx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'sx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'hlcy' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'ehlx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'4lftx' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'aerot' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'tozne' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'tcioz' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'bswid' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'bref' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'brvel' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'veril' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'lmaxbr' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'prec' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'acces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'aciod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'acradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'gdces' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'gdiod' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'gdradp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'tiaccp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'tiacip' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'tiacrp' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'volash' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'icit' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'icib' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'ici' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'turbt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'turbb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'turb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'tke' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'pblreg' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'conti' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'contet' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'contt' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'contb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'mxsalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'snfalb' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'cat' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'~' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'var190m0' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'ffldg' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'ffldro' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'rssc' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'esct' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'swepon' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'bgrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'ssrun' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'cppop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'pposp' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'pop' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'land' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'veg' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'watr' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'evapt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'mterh' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'landu' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'soilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'gflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'mstav' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'sfexc' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'cnwat' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'bmixl' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'ccond' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'rsmin' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'rcs' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'rct' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'rcsol' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'rcq' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'cisoilw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'hflux' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'vsw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'vwiltm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'uplst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'uplsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'lowlsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'botlst' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'soill' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'rlyrs' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'smref' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'smdry' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'poros' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'liqvsm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'voltso' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'transo' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'voldec' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'direc' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'soilp' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'vsosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'satosm' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'estp' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'irrate' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'ctoph' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'ctophqi' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'estu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'estv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'npixu' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'solza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'raza' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'rfl06' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'rfl08' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'rfl16' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'rfl39' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'atmdiv' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'wvdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'dirpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'perpw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'persw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'dirc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'spc' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'wz' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'ist' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'dslm' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'tsec' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'al' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'ptend' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'icaht' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'h' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'hstdv' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'tmax' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'tmin' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'dpt' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'lapr' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'vis' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'rdsp1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'rdsp2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'rdsp3' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'pli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'ta' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'presa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'wvsp1' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'wvsp2' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'wvsp3' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'mntsf' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'sgcvv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'absv' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'absd' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'vucsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'vvcsh' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'ucurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'vcurr' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'pwat' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'satd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'prate' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'tstm' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'acpcp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'mld' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'tthdp' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'mthd' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'mtha' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'bli' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'ssw' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'s' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'den' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'icetk' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'diced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'siced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'uice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'vice' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'iceg' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'iced' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'snom' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'shww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'mpww' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'swdir' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'swell' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'swper' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'dirsw' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'nswrs' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'grad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'lwrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'swrad' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'wmixe' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre Wind gust of at least 15 m/s -'10fgg15' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; - } -#10 metre Wind gust of at least 20 m/s -'10fgg20' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; - typeOfFirstFixedSurface = 103 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#Convective inhibition -'cin' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'orog' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'sd' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow Fall water equivalent -'sf' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'tcc' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'cap' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'wilt' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Total Precipitation -'tp' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; -} diff --git a/eccodes/definitions.save/grib3/tables/0.0.table b/eccodes/definitions.save/grib3/tables/0.0.table deleted file mode 100644 index 40bcd993..00000000 --- a/eccodes/definitions.save/grib3/tables/0.0.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 0.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on DAY MONTH YEAR -# 2-254 Future versions -255 255 Missing. Local tables in use. Valid local tables version number shall be coded diff --git a/eccodes/definitions.save/grib3/tables/0/0.0.table b/eccodes/definitions.save/grib3/tables/0/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib3/tables/0/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/1.0.table b/eccodes/definitions.save/grib3/tables/0/1.0.table deleted file mode 100644 index a34f44ee..00000000 --- a/eccodes/definitions.save/grib3/tables/0/1.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# Code Table 1.0: GRIB Master Tables Version Number -0 0 Experimental -1 1 Initial operational version number -2 2 Previous operational version number -3 3 Current operational version number implemented on 2 November 2005 -# 4-254 Future operational version numbers -255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/eccodes/definitions.save/grib3/tables/0/1.1.table b/eccodes/definitions.save/grib3/tables/0/1.1.table deleted file mode 100644 index 6c5a6036..00000000 --- a/eccodes/definitions.save/grib3/tables/0/1.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 1.1 GRIB Local Tables Version Number -0 0 Local tables not used -# . Only table entries and templates from the current Master table are valid. -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/1.2.table b/eccodes/definitions.save/grib3/tables/0/1.2.table deleted file mode 100644 index eb875520..00000000 --- a/eccodes/definitions.save/grib3/tables/0/1.2.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -#4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/1.3.table b/eccodes/definitions.save/grib3/tables/0/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib3/tables/0/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/1.4.table b/eccodes/definitions.save/grib3/tables/0/1.4.table deleted file mode 100644 index ac21f5c4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.0.table b/eccodes/definitions.save/grib3/tables/0/3.0.table deleted file mode 100644 index 6030a513..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.0, Source of Grid Definition -0 0 Specified in Code table 3.1 -1 1 Predetermined grid definition Defined by originating centre -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 A grid definition does not apply to this product diff --git a/eccodes/definitions.save/grib3/tables/0/3.1.table b/eccodes/definitions.save/grib3/tables/0/3.1.table deleted file mode 100644 index 235fb8bd..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.1.table +++ /dev/null @@ -1,43 +0,0 @@ -# CODE TABLE 3.1, Grid Definition Template Number -0 0 Latitude/longitude. Also called equidistant cylindrical, or Plate Carree -1 1 Rotated latitude/longitude -2 2 Stretched latitude/longitude -3 3 Stretched and rotated latitude/longitude -# 4-9 Reserved -10 10 Mercator -# 11-19 Reserved -20 20 Polar stereographic can be south or north -# 21-29 Reserved -30 30 Lambert Conformal can be secant or tangent, conical or bipolar -31 31 Albers equal-area -# 32-39 Reserved -40 40 Gaussian latitude/longitude -41 41 Rotated Gaussian latitude/longitude -42 42 Stretched Gaussian latitude/longitude -43 43 Stretched and rotated Gaussian latitude/longitude -# 44-49 Reserved -50 50 Spherical harmonic coefficients -51 51 Rotated spherical harmonic coefficients -52 52 Stretched spherical harmonic coefficients -53 53 Stretched and rotated spherical harmonic coefficients -# 54-89 Reserved -90 90 Space view perspective orthographic -# 91-99 Reserved -100 100 Triangular grid based on an icosahedron -# 101-109 Reserved -110 110 Equatorial azimuthal equidistant projection -# 111-119 Reserved -120 120 Azimuth-range projection -# 121-129 Reserved -130 130 Irregular latitude/longitude grid -# 131-139 Reserved -140 140 Lambert azimuthal equal area projection -# 141-999 Reserved -1000 1000 Cross-section grid, with points equally spaced on the horizontal -# 1001-1099 Reserved -1100 1100 Hovmoller diagram grid, with points equally spaced on the horizontal -# 1101-1199 Reserved -1200 1200 Time section grid -# 1201-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.10.table b/eccodes/definitions.save/grib3/tables/0/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib3/tables/0/3.11.table b/eccodes/definitions.save/grib3/tables/0/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.15.table b/eccodes/definitions.save/grib3/tables/0/3.15.table deleted file mode 100644 index bb431e14..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.15.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature K -# 21-99 Reserved -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -# 113-159 Reserved -160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/eccodes/definitions.save/grib3/tables/0/3.2.table b/eccodes/definitions.save/grib3/tables/0/3.2.table deleted file mode 100644 index d037ee12..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.2.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 3.2, Shape of the Earth -0 0 Earth assumed spherical with radius = 6,367,470.0 m -1 1 Earth assumed spherical with radius specified by data producer -2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6,378,160.0 m, minor axis = 6,356,775.0 m, f = 1/297.0) -3 3 Earth assumed oblate spheroid with major and minor axes specified by data producer -4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6,378,137.0 m, minor axis = 6,356,752.314 m, f = 1/298.257222101) -5 5 Earth assumed represented by WGS84 (as used by ICAO since 1998) -6 6 Earth assumed spherical with radius of 6,371,229.0 m -# 7-191 Reserved -# 192- 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.20.table b/eccodes/definitions.save/grib3/tables/0/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.21.table b/eccodes/definitions.save/grib3/tables/0/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/3.3.table b/eccodes/definitions.save/grib3/tables/0/3.3.table deleted file mode 100644 index 84cbb8bc..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.3.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.3, Resolution and Component Flags -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates respectively diff --git a/eccodes/definitions.save/grib3/tables/0/3.4.table b/eccodes/definitions.save/grib3/tables/0/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib3/tables/0/3.5.table b/eccodes/definitions.save/grib3/tables/0/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib3/tables/0/3.6.table b/eccodes/definitions.save/grib3/tables/0/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib3/tables/0/3.7.table b/eccodes/definitions.save/grib3/tables/0/3.7.table deleted file mode 100644 index 2746bdba..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.7.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing -# Note: -# -#(1) Values of N(m) for common truncations cases: -# Triangular M = J = K, N(m) = J -# Rhomboidal K = J + M, N(m) = J+m -# Trapezoidal K = J, K > M, N(m) = J diff --git a/eccodes/definitions.save/grib3/tables/0/3.8.table b/eccodes/definitions.save/grib3/tables/0/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/3.9.table b/eccodes/definitions.save/grib3/tables/0/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib3/tables/0/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib3/tables/0/4.0.table b/eccodes/definitions.save/grib3/tables/0/4.0.table deleted file mode 100644 index 759512a0..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.0.table +++ /dev/null @@ -1,38 +0,0 @@ -# CODE TABLE 4.0, Product Definition Template Number -0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -2 2 Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time -4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time -5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time -6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time -7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time -8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -12 12 Derived forecasts based in all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval -20 20 Radar product -30 30 Satellite product -31 31 Satellite product -311 311 Satellite product auxiliary information -40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -42 42 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric chemical constituents -44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric aerosol -46 46 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric aerosol -47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for atmospheric aerosol -48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of atmospheric aerosol -51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time -91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -254 254 CCITT IA5 character string -1000 1000 Cross section of analysis and forecast at a point in time -1001 1001 Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time -1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed -1100 1100 Hovmoller-type grid with no averaging or other statistical processing -1101 1101 Hovmoller-type grid with averaging or other statistical processing -65335 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.0.table b/eccodes/definitions.save/grib3/tables/0/4.1.0.table deleted file mode 100644 index 33d1c398..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.0.table +++ /dev/null @@ -1,30 +0,0 @@ -#Discipline 0: Meteorological products -#Category Description -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.1.table b/eccodes/definitions.save/grib3/tables/0/4.1.1.table deleted file mode 100644 index ebb7d9ea..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.1.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 1: Hydrological products -#Category Description -0 0 Hydrology basic products -1 1 Hydrology probabilities -#2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.10.table b/eccodes/definitions.save/grib3/tables/0/4.1.10.table deleted file mode 100644 index 45b08caa..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.10.table +++ /dev/null @@ -1,12 +0,0 @@ -#Discipline 10: Oceanographic Products -#Category Description -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface Properties -4 4 Sub-surface Properties -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.2.table b/eccodes/definitions.save/grib3/tables/0/4.1.2.table deleted file mode 100644 index f7f2ea2b..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.2.table +++ /dev/null @@ -1,11 +0,0 @@ -#Discipline 2: Land Surface Products -#Category Description -0 0 Vegetation/Biomass -1 1 Agri-/aquacultural Special Products -2 2 Transportation-related Products -3 3 Soil Products -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.3.table b/eccodes/definitions.save/grib3/tables/0/4.1.3.table deleted file mode 100644 index f7578e16..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.3.table +++ /dev/null @@ -1,9 +0,0 @@ -#Discipline 3: Space Products -#Category Description -0 0 Image format products -1 1 Quantitative products -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.1.table b/eccodes/definitions.save/grib3/tables/0/4.1.table deleted file mode 100644 index cc5bb2ff..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.1, Category of parameters by product discipline -0 0 Temperature -1 1 Moisture -3 3 Mass -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.10.table b/eccodes/definitions.save/grib3/tables/0/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.11.table b/eccodes/definitions.save/grib3/tables/0/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.12.table b/eccodes/definitions.save/grib3/tables/0/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.13.table b/eccodes/definitions.save/grib3/tables/0/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.14.table b/eccodes/definitions.save/grib3/tables/0/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.15.table b/eccodes/definitions.save/grib3/tables/0/4.15.table deleted file mode 100644 index 49b0b2d2..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.15.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.151.table b/eccodes/definitions.save/grib3/tables/0/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.0.table deleted file mode 100644 index 0386b8cd..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.0.table +++ /dev/null @@ -1,23 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 0: Temperature -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -4 4 Maximum temperature (K) -5 5 Minimum temperature (K) -6 6 Dew point temperature (K) -7 7 Dew point depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -14 14 Minimum dew point depression (K) -15 15 Virtual potential temperature (K) -16 16 Snow phase change heat flux (W m-2) -17 17 Skin Temperature (K) -#17-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.1.table deleted file mode 100644 index 6f7ce78f..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.1.table +++ /dev/null @@ -1,66 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 1: Moisture -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapor pressure (Pa) -5 5 Saturation deficit (Pa) -6 6 Evaporation (kg m-2) -7 7 Precipitation rate (kg m-2 s-1) -8 8 Total precipitation (kg m-2) -9 9 Large scale precipitation (non-convective) (kg m-2) -10 10 Convective precipitation (kg m-2) -11 11 Snow depth (m) -12 12 Snowfall rate water equivalent (kg m-2 s-1) -13 13 Water equivalent of accumulated snow depth (kg m-2) -14 14 Convective snow (kg m-2) -15 15 Large scale snow (kg m-2) -16 16 Snow melt (kg m-2) -17 17 Snow age (day) -18 18 Absolute humidity (kg m-3) -19 19 Precipitation type (code table (4.201) -20 20 Integrated liquid water (kg m-2) -21 21 Condensate (kg kg-1) -22 22 Cloud mixing ratio (kg kg-1) -23 23 Ice water mixing ratio (kg kg-1) -24 24 Rain mixing ratio (kg kg-1) -25 25 Snow mixing ratio (kg kg-1) -26 26 Horizontal moisture convergence (kg kg-1 s-1) -27 27 Maximum relative humidity (%) -28 28 Maximum absolute humidity (kg m-3) -29 29 Total snowfall (m) -30 30 Precipitable water category code table (4.202) -31 31 Hail (m) -32 32 Graupel (snow pellets) (kg kg-1) -33 33 Categorical rain (Code table 4.222) -34 34 Categorical freezing rain (Code table 4.222) -35 35 Categorical ice pellets (Code table 4.222) -36 36 Categorical snow (Code table 4.222) -37 37 Convective precipitation rate (kg m-2 s-1) -38 38 Horizontal moisture divergence (kg kg-1 s-1) -39 39 Percent frozen precipitation (%) -40 40 Potential evaporation (kg m-2) -41 41 Potential evaporation rate (W m-2) -42 42 Snow cover (%) -43 43 Rain fraction of total cloud water (Proportion) -44 44 Rime factor (Numeric) -45 45 Total column integrated rain (kg m-2) -46 46 Total column integrated snow (kg m-2) -51 51 Total column water (kg m-2) -52 52 Total precipitation rate (kg m-2 s-1) -53 53 Total snowfall rate water equivalent (kg m-2 s-1) -54 54 Large scale precipitation rate (kg m-2 s-1) -55 55 Convective snowfall rate water equivalent (kg m-2 s-1) -56 56 Large scale rate water equivalent (kg m-2 s-1) -57 57 Total snowfall rate (m s-1) -58 58 Convective snowfall rate (m s-1) -59 59 Large scale snowfall rate (m s-1) -60 60 Snow depth water equivalent (kg m-2) -69 69 Specific cloud liquid water content (kg kg-1) -70 70 Specific cloud ice water content (kg kg-1) -71 71 Specific rain water content (kg kg-1) -72 72 Specific snow water content (kg kg-1) -#47-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.13.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.13.table deleted file mode 100644 index 8fc3425a..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 13: Aerosols -0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.14.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.14.table deleted file mode 100644 index 309c40d4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.14.table +++ /dev/null @@ -1,7 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 14: Trace Gases -0 0 Total ozone (Dobson) -1 1 Ozone mixing ratio (kg kg-1) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.15.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.15.table deleted file mode 100644 index bb419178..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.15.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.18.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.18.table deleted file mode 100644 index 5c0fd6e5..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.18.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.19.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.19.table deleted file mode 100644 index 369c3f65..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.19.table +++ /dev/null @@ -1,24 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -# 19-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.190.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.190.table deleted file mode 100644 index b1f47bc0..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.190.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string -0 0 Arbitrary text string (CCITTIA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.191.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.191.table deleted file mode 100644 index affb98f4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.2.table deleted file mode 100644 index f45206bf..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum -0 0 Wind direction [from which blowing] (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity [pressure] (Pa s-1) -9 9 Vertical velocity [geometric] (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed [gust] (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.20.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.20.table deleted file mode 100644 index 4d762c38..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.20.table +++ /dev/null @@ -1,26 +0,0 @@ -0 0 Mass density (concentration) kg m-3 -1 1 Column-integrated mass density (see Note1) kg m-2 -2 2 Mass mixing ratio (mass fraction in air) kg kg-1 -3 3 Atmosphere emission mass flux kg m-2 s-1 -4 4 Atmosphere net production mass flux kg m-2 s-1 -5 5 Atmosphere net production and emission mass flux kg m-2 s-1 -6 6 Surface dry deposition mass flux kg m-2 s-1 -7 7 Surface wet deposition mass flux kg m-2 s-1 -8 8 Atmosphere re-emission mass flux kg m-2 s-1 -#9-49 9-49 Reserved -50 50 Amount in atmosphere mol -51 51 Concentration in air mol m-3 -52 52 Volume mixing ratio (fraction in air) mol mol-1 -53 53 Chemical gross production rate of concentration mol m-3 s-1 -54 54 Chemical gross destruction rate of concentration mol m-3 s-1 -55 55 Surface flux mol m-2 s-1 -56 56 Changes of amount in atmosphere (see Note 1) mol s-1 -57 57 Total yearly average burden of the atmosphere mol -58 58 Total yearly averaged atmospheric loss (see Note 1) mol s-1 -#59-99 59-99 Reserved -100 100 Surface area density (aerosol) m-1 -101 101 Atmosphere optical thickness m -#102-191 102-191 Reserved -#192-254 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.3.table deleted file mode 100644 index 5c7e8151..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 3: Mass - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) -# 20-191 Reserved -# 192-254 Reserved for local use - 255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.4.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.4.table deleted file mode 100644 index 815c184a..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.4.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.5.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.5.table deleted file mode 100644 index 1b57fa30..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.6.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.6.table deleted file mode 100644 index 05cf72f5..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.6.table +++ /dev/null @@ -1,30 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.0.7.table b/eccodes/definitions.save/grib3/tables/0/4.2.0.7.table deleted file mode 100644 index 78374fde..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.0.7.table +++ /dev/null @@ -1,18 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -#13-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.1.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.1.0.table deleted file mode 100644 index 97efaa8c..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.1.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 0: Hydrology basic products -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely sensed snow cover (Code table 4.215) -3 3 Elevation of snow covered terrain (Code table 4.216) -4 4 Snow water equivalent percent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.1.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.1.1.table deleted file mode 100644 index b7342ef2..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.1.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 1: Hydrologic products, Parameter Category 1: Hydrology probabilities -0 0 Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.10.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.0.table deleted file mode 100644 index 479e26d5..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.10.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.1.table deleted file mode 100644 index df18f31d..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.10.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.2.table deleted file mode 100644 index cb73da46..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.10.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -# 8-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.10.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.3.table deleted file mode 100644 index a14ae22e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.10.4.table b/eccodes/definitions.save/grib3/tables/0/4.2.10.4.table deleted file mode 100644 index a24c3c8c..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.10.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.2.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.2.0.table deleted file mode 100644 index fdc8ce0e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.2.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -# 23-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.2.3.table b/eccodes/definitions.save/grib3/tables/0/4.2.2.3.table deleted file mode 100644 index d6376fec..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.2.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -# 11-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.3.0.table b/eccodes/definitions.save/grib3/tables/0/4.2.3.0.table deleted file mode 100644 index 94456638..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product discipline 3: Space products, Parameter Category 0: Image format products -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.3.1.table b/eccodes/definitions.save/grib3/tables/0/4.2.3.1.table deleted file mode 100644 index 60d6e842..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.3.1.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 3: Space products, Parameter Category 1: Quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -# 6-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/0/4.2.table b/eccodes/definitions.save/grib3/tables/0/4.2.table deleted file mode 100644 index ff955364..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.2.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 4.2, Parameter number by product discipline and parameter category -# 4 4 unknown -# 151 151 unknown -# 192 192 unknown -# 255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.201.table b/eccodes/definitions.save/grib3/tables/0/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.202.table b/eccodes/definitions.save/grib3/tables/0/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.203.table b/eccodes/definitions.save/grib3/tables/0/4.203.table deleted file mode 100644 index d2ad10b0..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.203.table +++ /dev/null @@ -1,88 +0,0 @@ -# CODE TABLE 4.203, Cloud type - -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.204.table b/eccodes/definitions.save/grib3/tables/0/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.205.table b/eccodes/definitions.save/grib3/tables/0/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.206.table b/eccodes/definitions.save/grib3/tables/0/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.207.table b/eccodes/definitions.save/grib3/tables/0/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.208.table b/eccodes/definitions.save/grib3/tables/0/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.209.table b/eccodes/definitions.save/grib3/tables/0/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.210.table b/eccodes/definitions.save/grib3/tables/0/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.211.table b/eccodes/definitions.save/grib3/tables/0/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.212.table b/eccodes/definitions.save/grib3/tables/0/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.213.table b/eccodes/definitions.save/grib3/tables/0/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.215.table b/eccodes/definitions.save/grib3/tables/0/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.216.table b/eccodes/definitions.save/grib3/tables/0/4.216.table deleted file mode 100644 index dbe26b0e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.216.table +++ /dev/null @@ -1,95 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain - -0 0 Elevation in increments of 100 m -1 1 Elevation in increments of 100 m -2 2 Elevation in increments of 100 m -3 3 Elevation in increments of 100 m -4 4 Elevation in increments of 100 m -5 5 Elevation in increments of 100 m -6 6 Elevation in increments of 100 m -7 7 Elevation in increments of 100 m -8 8 Elevation in increments of 100 m -9 9 Elevation in increments of 100 m -10 10 Elevation in increments of 100 m -11 11 Elevation in increments of 100 m -12 12 Elevation in increments of 100 m -13 13 Elevation in increments of 100 m -14 14 Elevation in increments of 100 m -15 15 Elevation in increments of 100 m -16 16 Elevation in increments of 100 m -17 17 Elevation in increments of 100 m -18 18 Elevation in increments of 100 m -19 19 Elevation in increments of 100 m -20 20 Elevation in increments of 100 m -21 21 Elevation in increments of 100 m -22 22 Elevation in increments of 100 m -23 23 Elevation in increments of 100 m -24 24 Elevation in increments of 100 m -25 25 Elevation in increments of 100 m -26 26 Elevation in increments of 100 m -27 27 Elevation in increments of 100 m -28 28 Elevation in increments of 100 m -29 29 Elevation in increments of 100 m -30 30 Elevation in increments of 100 m -31 31 Elevation in increments of 100 m -32 32 Elevation in increments of 100 m -33 33 Elevation in increments of 100 m -34 34 Elevation in increments of 100 m -35 35 Elevation in increments of 100 m -36 36 Elevation in increments of 100 m -37 37 Elevation in increments of 100 m -38 38 Elevation in increments of 100 m -39 39 Elevation in increments of 100 m -40 40 Elevation in increments of 100 m -41 41 Elevation in increments of 100 m -42 42 Elevation in increments of 100 m -43 43 Elevation in increments of 100 m -44 44 Elevation in increments of 100 m -45 45 Elevation in increments of 100 m -46 46 Elevation in increments of 100 m -47 47 Elevation in increments of 100 m -48 48 Elevation in increments of 100 m -49 49 Elevation in increments of 100 m -50 50 Elevation in increments of 100 m -51 51 Elevation in increments of 100 m -52 52 Elevation in increments of 100 m -53 53 Elevation in increments of 100 m -54 54 Elevation in increments of 100 m -55 55 Elevation in increments of 100 m -56 56 Elevation in increments of 100 m -57 57 Elevation in increments of 100 m -58 58 Elevation in increments of 100 m -59 59 Elevation in increments of 100 m -60 60 Elevation in increments of 100 m -61 61 Elevation in increments of 100 m -62 62 Elevation in increments of 100 m -63 63 Elevation in increments of 100 m -64 64 Elevation in increments of 100 m -65 65 Elevation in increments of 100 m -66 66 Elevation in increments of 100 m -67 67 Elevation in increments of 100 m -68 68 Elevation in increments of 100 m -69 69 Elevation in increments of 100 m -70 70 Elevation in increments of 100 m -71 71 Elevation in increments of 100 m -72 72 Elevation in increments of 100 m -73 73 Elevation in increments of 100 m -74 74 Elevation in increments of 100 m -75 75 Elevation in increments of 100 m -76 76 Elevation in increments of 100 m -77 77 Elevation in increments of 100 m -78 78 Elevation in increments of 100 m -79 79 Elevation in increments of 100 m -80 80 Elevation in increments of 100 m -81 81 Elevation in increments of 100 m -82 82 Elevation in increments of 100 m -83 83 Elevation in increments of 100 m -84 84 Elevation in increments of 100 m -85 85 Elevation in increments of 100 m -86 86 Elevation in increments of 100 m -87 87 Elevation in increments of 100 m -88 88 Elevation in increments of 100 m -89 89 Elevation in increments of 100 m -90 90 Elevation in increments of 100 m -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.217.table b/eccodes/definitions.save/grib3/tables/0/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.220.table b/eccodes/definitions.save/grib3/tables/0/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.221.table b/eccodes/definitions.save/grib3/tables/0/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.230.table b/eccodes/definitions.save/grib3/tables/0/4.230.table deleted file mode 100644 index 7bcbe304..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.230.table +++ /dev/null @@ -1,117 +0,0 @@ -#Code figure Code figure Meaning -0 0 Ozone -1 1 Water vapour -2 2 Methane -3 3 Carbon dioxide -4 4 Carbon monoxide -5 5 Nitrogen dioxide -6 6 Nitrous oxide -7 7 Formaldehyde -8 8 Sulphur dioxide -9 9 Ammonia -10 10 Ammonium -11 11 Nitrogen monoxide -12 12 Atomic oxygen -13 13 Nitrate radical -14 14 Hydroperoxyl radical -15 15 Dinitrogen pentoxide -16 16 Nitrous acid -17 17 Nitric acid -18 18 Peroxynitric acid -19 19 Hydrogen peroxide -20 20 Molecular hydrogen -21 21 Atomic nitrogen -22 22 Sulphate -23 23 Radon -24 24 Elemental mercury -25 25 Divalent mercury -26 26 Atomic chlorine -27 27 Chlorine monoxide -28 28 Dichlorine peroxide -29 29 Hypochlorous acid -30 30 Chlorine nitrate -31 31 Chlorine dioxide -32 32 Atomic bromine -33 33 Bromine monoxide -34 34 Bromine chloride -35 35 Hydrogen bromide -36 36 Hypobromous acid -37 37 Bromine nitrate -10000 10000 Hydroxyl radical -10001 10001 Methyl peroxy radical -10002 10002 Methyl hydroperoxide -10004 10004 Methanol -10005 10005 Formic acid -10006 10006 Hydrogen Cyanide -10007 10007 Aceto nitrile -10008 10008 Ethane -10009 10009 Ethene (= Ethylene) -10010 10010 Ethyne (= Acetylene) -10011 10011 Ethanol -10012 10012 Acetic acid -10013 10013 Peroxyacetyl nitrate -10014 10014 Propane -10015 10015 Propene -10016 10016 Butanes -10017 10017 Isoprene -10018 10018 Alpha pinene -10019 10019 Beta pinene -10020 10020 Limonene -10021 10021 Benzene -10022 10022 Toluene -10023 10023 Xylene -#10024-10499 10024-10499 reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides,...) -10500 10500 Dimethyl sulphide -#10501-20000 10501-20000 Reserved -20001 20001 Hydrogen chloride -20002 20002 CFC-11 -20003 20003 CFC-12 -20004 20004 CFC-113 -20005 20005 CFC-113a -20006 20006 CFC-114 -20007 20007 CFC-115 -20008 20008 HCFC-22 -20009 20009 HCFC-141b -20010 20010 HCFC-142b -20011 20011 Halon-1202 -20012 20012 Halon-1211 -20013 20013 Halon-1301 -20014 20014 Halon-2402 -20015 20015 Methyl chloride (HCC-40) -20016 20016 Carbon tetrachloride (HCC-10) -20017 20017 HCC-140a -20018 20018 Methyl bromide (HBC-40B1) -20019 20019 Hexachlorocyclohexane (HCH) -20020 20020 Alpha hexachlorocyclohexane -20021 20021 Hexachlorobiphenyl (PCB-153) -60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) -60002 60002 Passive Ozone -60003 60003 NOx expressed as nitrogen -60004 60004 All nitrogen oxides (NOy) expressed as nitrogen -60005 60005 Total inorganic chlorine -60006 60006 Total inorganic bromine -60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx -60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx -60009 60009 Lumped Alkanes -60010 60010 Lumped Alkenes -60011 60011 Lumped Aromatic Compounds -60012 60012 Lumped Terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -62000 62000 Total aerosol -62001 62001 Dust dry -62002 62002 Water in ambient -62003 62003 Ammonium dry -62004 62004 Nitrate dry -62005 62005 Nitric acid trihydrate -62006 62006 Sulphate dry -62007 62007 Mercury dry -62008 62008 Sea salt dry -62009 62009 Black carbon dry -62010 62010 Particulate organic matter dry -62011 62011 Primary particulate organic matter dry -62012 62012 Secondary particulate organic matter dry -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.3.table b/eccodes/definitions.save/grib3/tables/0/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.4.table b/eccodes/definitions.save/grib3/tables/0/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.5.table b/eccodes/definitions.save/grib3/tables/0/4.5.table deleted file mode 100644 index 5fe94d4d..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.5.table +++ /dev/null @@ -1,33 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 105 Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 ml Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.6.table b/eccodes/definitions.save/grib3/tables/0/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.7.table b/eccodes/definitions.save/grib3/tables/0/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.8.table b/eccodes/definitions.save/grib3/tables/0/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.9.table b/eccodes/definitions.save/grib3/tables/0/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/4.91.table b/eccodes/definitions.save/grib3/tables/0/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib3/tables/0/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.0.table b/eccodes/definitions.save/grib3/tables/0/5.0.table deleted file mode 100644 index 0cf3752c..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.0.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 5.0, Data Representation Template Number -0 0 Grid point data - simple packing -1 1 Matrix value - simple packing -2 2 Grid point data - complex packing -3 3 Grid point data - complex packing and spatial differencing -4 4 Grid point data - ieee packing -6 6 Grid point data - simple packing with pre-processing -40 40 JPEG2000 Packing -41 41 PNG pacling -50 50 Spectral data -simple packing -51 51 Spherical harmonics data - complex packing -61 61 Grid point data - simple packing with logarithm pre-processing -# 192-254 Reserved for local use -255 255 Missing -40000 40000 JPEG2000 Packing -40010 40010 PNG pacling diff --git a/eccodes/definitions.save/grib3/tables/0/5.1.table b/eccodes/definitions.save/grib3/tables/0/5.1.table deleted file mode 100644 index d7ca4bed..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.1.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.1, Type of original field values -0 0 Floating point -1 1 Integer -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.2.table b/eccodes/definitions.save/grib3/tables/0/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.3.table b/eccodes/definitions.save/grib3/tables/0/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.4.table b/eccodes/definitions.save/grib3/tables/0/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.40.table b/eccodes/definitions.save/grib3/tables/0/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.40000.table b/eccodes/definitions.save/grib3/tables/0/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.5.table b/eccodes/definitions.save/grib3/tables/0/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.6.table b/eccodes/definitions.save/grib3/tables/0/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.7.table b/eccodes/definitions.save/grib3/tables/0/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.8.table b/eccodes/definitions.save/grib3/tables/0/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/5.9.table b/eccodes/definitions.save/grib3/tables/0/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib3/tables/0/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/0/6.0.table b/eccodes/definitions.save/grib3/tables/0/6.0.table deleted file mode 100644 index 6a8c74b4..00000000 --- a/eccodes/definitions.save/grib3/tables/0/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0, Bit Map Indicator - -0 0 A bit map applies to this product and is specified in this Section -1 1 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -# 2 253 A bit map pre-determined by the originating/generating Centre applies to this product and is not specified in this Section -254 254 A bit map defined previously in the same "GRIB" message applies to this product -255 255 A bit map does not apply to this product diff --git a/eccodes/definitions.save/grib3/tables/1.0.table b/eccodes/definitions.save/grib3/tables/1.0.table deleted file mode 100644 index 4cf7db8d..00000000 --- a/eccodes/definitions.save/grib3/tables/1.0.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.0 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/0.0.table b/eccodes/definitions.save/grib3/tables/1/0.0.table deleted file mode 100644 index fd205635..00000000 --- a/eccodes/definitions.save/grib3/tables/1/0.0.table +++ /dev/null @@ -1,10 +0,0 @@ -#Code Table 0.0: Discipline of processed data in the GRIB message, number of GRIB Master Table -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/1.0.table b/eccodes/definitions.save/grib3/tables/1/1.0.table deleted file mode 100644 index 70eed2b8..00000000 --- a/eccodes/definitions.save/grib3/tables/1/1.0.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 1.0 - GRIB local tables version number -0 0 Local tables not used. Only table entries and templates from the current master table are valid -# 1-254 Number of local tables version used -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/1.1.table b/eccodes/definitions.save/grib3/tables/1/1.1.table deleted file mode 100644 index e3b17508..00000000 --- a/eccodes/definitions.save/grib3/tables/1/1.1.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 1.1 - International Projects -0 0 Reserved -1 1 THORPEX Interactive Grand Global Ensemble (TIGGE) -2 2 Subseasonal-to-Seasonal prediction (S2S) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/1.2.table b/eccodes/definitions.save/grib3/tables/1/1.2.table deleted file mode 100644 index b61ea3c5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/1.2.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 1.2 - Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/1.3.table b/eccodes/definitions.save/grib3/tables/1/1.3.table deleted file mode 100644 index d4ed48c6..00000000 --- a/eccodes/definitions.save/grib3/tables/1/1.3.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 1.3, Production status of data -0 0 Operational products -1 1 Operational test products -2 2 Research products -3 3 Re-analysis products -4 4 TIGGE Operational products -5 5 TIGGE test products -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/1.4.table b/eccodes/definitions.save/grib3/tables/1/1.4.table deleted file mode 100644 index ac21f5c4..00000000 --- a/eccodes/definitions.save/grib3/tables/1/1.4.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 1.4, Type of data -0 an Analysis products -1 fc Forecast products -2 af Analysis and forecast products -3 cf Control forecast products -4 pf Perturbed forecast products -5 cp Control and perturbed forecast products -6 sa Processed satellite observations -7 ra Processed radar observations -8 ep Event Probability -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.0.table b/eccodes/definitions.save/grib3/tables/1/3.0.table deleted file mode 100644 index a32a38e2..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.0.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.0 - Significance of reference date and time -0 0 Analysis -1 1 Start of forecast -2 2 Verifying time of forecast -3 3 Observation time -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.1.table b/eccodes/definitions.save/grib3/tables/1/3.1.table deleted file mode 100644 index 7b476d92..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.1 - Type of calendar -0 0 Gregorian -1 1 360-day -2 2 365-day -3 3 Proleptic Gregorian -# 4-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.10.table b/eccodes/definitions.save/grib3/tables/1/3.10.table deleted file mode 100644 index ae5baf9d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.10.table +++ /dev/null @@ -1,7 +0,0 @@ -# FLAG TABLE 3.10, Scanning mode for one diamond -1 0 Points scan in +i direction, i.e. from pole to equator -1 1 Points scan in -i direction, i.e. from equator to pole -2 0 Points scan in +j direction, i.e. from west to east -2 1 Points scan in -j direction, i.e. from east to west -3 0 Adjacent points in i direction are consecutive -3 1 Adjacent points in j direction is consecutive diff --git a/eccodes/definitions.save/grib3/tables/1/3.11.table b/eccodes/definitions.save/grib3/tables/1/3.11.table deleted file mode 100644 index 9a84d4a9..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.11.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.11, Interpretation of list of numbers defining number of points -0 0 There is no appended list -1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows -2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.15.table b/eccodes/definitions.save/grib3/tables/1/3.15.table deleted file mode 100644 index bb431e14..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.15.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved -20 20 Temperature K -# 21-99 Reserved -100 100 Pressure Pa -101 101 Pressure deviation from mean sea level Pa -102 102 Altitude above mean sea level m -103 103 Height above ground (see Note 1) m -104 104 Sigma coordinate -105 105 Hybrid coordinate -106 106 Depth below land surface m -107 pt Potential temperature (theta) K -108 108 Pressure deviation from ground to level Pa -109 pv Potential vorticity K m-2 kg-1 s-1 -110 110 Geometrical height m -111 111 Eta coordinate (see Note 2) -112 112 Geopotential height gpm -# 113-159 Reserved -160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use -255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/eccodes/definitions.save/grib3/tables/1/3.2.table b/eccodes/definitions.save/grib3/tables/1/3.2.table deleted file mode 100644 index c7e90ae4..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.2.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 3.2 - Time domain template number -0 0 Forecast point in time -# 1-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.20.table b/eccodes/definitions.save/grib3/tables/1/3.20.table deleted file mode 100644 index cfa35ae3..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.20.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 3.20, Type of horizontal line -0 0 Rhumb -1 1 Great circle -# 2-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.21.table b/eccodes/definitions.save/grib3/tables/1/3.21.table deleted file mode 100644 index c2fd9458..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.21.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 3.21, Vertical dimension coordinate values definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -# 2-10 Reserved -11 11 Geometric coordinates -# 12-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.3.table b/eccodes/definitions.save/grib3/tables/1/3.3.table deleted file mode 100644 index 1cf5141d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.3.table +++ /dev/null @@ -1,17 +0,0 @@ -# CODE TABLE 3.3 - Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -# 8-9 Reserved -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/3.4.table b/eccodes/definitions.save/grib3/tables/1/3.4.table deleted file mode 100644 index 51d0664b..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 3.4, Scanning Mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction diff --git a/eccodes/definitions.save/grib3/tables/1/3.5.table b/eccodes/definitions.save/grib3/tables/1/3.5.table deleted file mode 100644 index 117b26be..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.5.table +++ /dev/null @@ -1,5 +0,0 @@ -# FLAG TABLE 3.5, Projection Centre -1 0 North Pole is on the projection plane -1 1 South Pole is on the projection plane -2 0 Only one projection centre is used -2 1 Projection is bi-polar and symmetric diff --git a/eccodes/definitions.save/grib3/tables/1/3.6.table b/eccodes/definitions.save/grib3/tables/1/3.6.table deleted file mode 100644 index 41dd97e4..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.6.table +++ /dev/null @@ -1,2 +0,0 @@ -# CODE TABLE 3.6, Spectral data representation type -1 1 The Associated Legendre Functions of the first kind are defined by: diff --git a/eccodes/definitions.save/grib3/tables/1/3.7.table b/eccodes/definitions.save/grib3/tables/1/3.7.table deleted file mode 100644 index 2746bdba..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.7.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code Table 3.7: Spectral data representation mode -0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) -# 2-254 Reserved -255 255 Missing -# Note: -# -#(1) Values of N(m) for common truncations cases: -# Triangular M = J = K, N(m) = J -# Rhomboidal K = J + M, N(m) = J+m -# Trapezoidal K = J, K > M, N(m) = J diff --git a/eccodes/definitions.save/grib3/tables/1/3.8.table b/eccodes/definitions.save/grib3/tables/1/3.8.table deleted file mode 100644 index 0d9b7d00..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.8.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 3.8: Grid point position -0 0 Grid points at triangle vertices -1 1 Grid points at centres of triangles -2 2 Grid points at midpoints of triangle sides -#3-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/3.9.table b/eccodes/definitions.save/grib3/tables/1/3.9.table deleted file mode 100644 index 800c0825..00000000 --- a/eccodes/definitions.save/grib3/tables/1/3.9.table +++ /dev/null @@ -1,3 +0,0 @@ -# FLAG TABLE 3.9, Numbering order of diamonds as seen from the corresponding pole -1 0 Clockwise orientation -1 1 Anti-clockwise (i.e., counter-clockwise) orientation diff --git a/eccodes/definitions.save/grib3/tables/1/4.0.table b/eccodes/definitions.save/grib3/tables/1/4.0.table deleted file mode 100644 index 54600ce5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.0.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.0 - Grid definition template number -0 0 Latitude/longitude regular grid on an ellipsoidal planet -1 1 Rotated latitude/longitude regular grid on an ellipsoidal planet -2 2 Stretched latitude/longitude regular grid on an ellipsoidal planet -3 3 Stretched and rotated latitude/longitude regular grid on an ellipsoidal planet -# 4-32767 Reserved -# 32768-65534 Reserved for local use -65335 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.1.table b/eccodes/definitions.save/grib3/tables/1/4.1.table deleted file mode 100644 index 4d91fdb6..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.1.table +++ /dev/null @@ -1,9 +0,0 @@ -# FLAG TABLE 4.1 - Resolution and component flags -# 1-2 Reserved -3 0 i direction increments not given -3 1 i direction increments given -4 0 j direction increments not given -4 1 j direction increments given -5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions -5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively -# 6-8 Reserved - set to zero diff --git a/eccodes/definitions.save/grib3/tables/1/4.10.table b/eccodes/definitions.save/grib3/tables/1/4.10.table deleted file mode 100644 index 9cf447b6..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.10.table +++ /dev/null @@ -1,14 +0,0 @@ -# CODE TABLE 4.10, Type of statistical processing - -0 avg Average -1 accum Accumulation -2 max Maximum -3 min Minimum -4 diff Difference (Value at the end of time range minus value at the beginning) -5 rms Root mean square -6 sd Standard deviation -7 cov Covariance (Temporal variance) -8 8 Difference (Value at the start of time range minus value at the end) -9 ratio Ratio -# 192 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.11.table b/eccodes/definitions.save/grib3/tables/1/4.11.table deleted file mode 100644 index 68901aac..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.11.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 4.11, Type of time intervals - -1 1 Successive times processed have same forecast time, start time of forecast is incremented -2 2 Successive times processed have same start time of forecast, forecast time is incremented -3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant -4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant -5 5 Floating subinterval of time between forecast time and end of overall time interval -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.12.table b/eccodes/definitions.save/grib3/tables/1/4.12.table deleted file mode 100644 index 86b6177b..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.12.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.12, Operating Mode - -0 0 Maintenance Mode -1 1 Clear air -2 2 Precipitation -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.13.table b/eccodes/definitions.save/grib3/tables/1/4.13.table deleted file mode 100644 index ddd7537d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.13.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.13, Quality Control Indicator - -0 0 No quality control applied -1 1 Quality control applied -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.14.table b/eccodes/definitions.save/grib3/tables/1/4.14.table deleted file mode 100644 index 69984d72..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.14.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.14, Clutter Filter Indicator - -0 0 No clutter filter used -1 1 Clutter filter used -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.15.table b/eccodes/definitions.save/grib3/tables/1/4.15.table deleted file mode 100644 index 49b0b2d2..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.15.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') -1 1 Delta time (seconds) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.151.table b/eccodes/definitions.save/grib3/tables/1/4.151.table deleted file mode 100644 index bcfa0aea..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.151.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.15, Confidence level units - -0 0 bad -1 1 suspect -2 2 acceptable -3 3 excellent -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.15.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.15.table deleted file mode 100644 index bb419178..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.15.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0 - Meteorological products, Parameter Category 15: Radar -0 0 Base spectrum width (m s-1) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m s-1) -3 3 Vertically-integrated liquid (kg m-1) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.18.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.18.table deleted file mode 100644 index 5c0fd6e5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.18.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 18: Nuclear/radiology -0 0 Air concentration of Caesium 137 (Bq m-3) -1 1 Air concentration of Iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of Caesium 137 (Bq m-2) -4 4 Ground deposition of Iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.19.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.19.table deleted file mode 100644 index 369c3f65..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.19.table +++ /dev/null @@ -1,24 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 19: Physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 mixed layer depth (m) -4 4 Volcanic ash (Code table 4.206) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing (Code table 4.207) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence (Code table 4.208) -11 11 Turbulent kinetic energy (J kg-1) -12 12 Planetary boundary layer regime (Code table 4.209) -13 13 Contrail intensity (Code table 4.210) -14 14 Contrail engine type (Code table 4.211) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -# 19-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.190.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.190.table deleted file mode 100644 index b1f47bc0..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.190.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 190: CCITT IA5 string -0 0 Arbitrary text string (CCITTIA5) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.191.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.191.table deleted file mode 100644 index affb98f4..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.191.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 191: Miscellaneous -0 0 Seconds prior to initial reference time (defined in Section 1) (s) -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.2.table deleted file mode 100644 index f45206bf..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.2.table +++ /dev/null @@ -1,35 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 2: Momentum -0 0 Wind direction [from which blowing] (deg true) -1 1 Wind speed (m s-1) -2 2 u-component of wind (m s-1) -3 3 v-component of wind (m s-1) -4 4 Stream function (m2 s-1) -5 5 Velocity potential (m2 s-1) -6 6 Montgomery stream function (m2 s-2) -7 7 Sigma coordinate vertical velocity (s-1) -8 8 Vertical velocity [pressure] (Pa s-1) -9 9 Vertical velocity [geometric] (m s-1) -10 10 Absolute vorticity (s-1) -11 11 Absolute divergence (s-1) -12 12 Relative vorticity (s-1) -13 13 Relative divergence (s-1) -14 14 Potential vorticity (K m2 kg-1 s-1) -15 15 Vertical u-component shear (s-1) -16 16 Vertical v-component shear (s-1) -17 17 Momentum flux, u component (N m-2) -18 18 Momentum flux, v component (N m-2) -19 19 Wind mixing energy (J) -20 20 Boundary layer dissipation (W m-2) -21 21 Maximum wind speed (m s-1) -22 22 Wind speed [gust] (m s-1) -23 23 u-component of wind (gust) (m s-1) -24 24 v-component of wind (gust) (m s-1) -25 25 Vertical speed shear (s-1) -26 26 Horizontal momentum flux (N m-2) -27 27 U-component storm motion (m s-1) -28 28 V-component storm motion (m s-1) -29 29 Drag coefficient (Numeric) -30 30 Frictional velocity (m s-1) -# 31-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.20.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.20.table deleted file mode 100644 index 4e7f45db..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.20.table +++ /dev/null @@ -1,13 +0,0 @@ -0 0 Mass density (concentration) kg.m-3 -1 1 Total column (integrated mass density) kg.m-2 -2 2 Volume mixing ratio (mole fraction in air) mole.mole-1 -3 3 Mass mixing ratio (mass fraction in air) kg.kg-1 -4 4 Surface dry deposition mass flux kg.m-2.s-1 -5 5 Surface wet deposition mass flux kg.m-2.s-1 -6 6 Atmosphere emission mass flux kg.m-2.s-1 -7 7 Chemical gross production rate of mole concentration mole.m-3.s-1 -8 8 Chemical gross destruction rate of mole concentration mole.m-3.s-1 -9 9 Surface dry deposition mass flux into stomata kg.m-2.s-1 -#10-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.3.table deleted file mode 100644 index 5c7e8151..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.3.table +++ /dev/null @@ -1,25 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 3: Mass - 0 0 Pressure (Pa) - 1 1 Pressure reduced to MSL (Pa) - 2 2 Pressure tendency (Pa s-1) - 3 3 ICAO Standard Atmosphere Reference Height (m) - 4 4 Geopotential (m2 s-2) - 5 5 Geopotential height (gpm) - 6 6 Geometric height (m) - 7 7 Standard deviation of height (m) - 8 8 Pressure anomaly (Pa) - 9 9 Geopotential height anomaly (gpm) - 10 10 Density (kg m-3) - 11 11 Altimeter setting (Pa) - 12 12 Thickness (m) - 13 13 Pressure altitude (m) - 14 14 Density altitude (m) - 15 15 5-wave geopotential height (gpm) - 16 16 Zonal flux of gravity wave stress (N m-2) - 17 17 Meridional flux of gravity wave stress (N m-2) - 18 18 Planetary boundary layer height (m) - 19 19 5-wave geopotential height anomaly (gpm) -# 20-191 Reserved -# 192-254 Reserved for local use - 255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.4.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.4.table deleted file mode 100644 index 815c184a..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.4.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 4: Short-wave Radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -5 5 Radiance (with respect to wave number) (W m-1 sr-1) -6 6 Radiance (with respect to wave length) (W m-3 sr-1) -7 7 Downward short-wave radiation flux (W m-2) -9 8 Upward short-wave radiation flux (W m-2) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.5.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.5.table deleted file mode 100644 index 1b57fa30..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.5.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 5: Long-wave Radiation -0 0 Net long wave radiation flux (surface) (W m-2) -1 1 Net long wave radiation flux (top of atmosphere) (W m-2) -2 2 Long wave radiation flux (W m-2) -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long wave radiation flux (W m-2) -# 5-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.6.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.6.table deleted file mode 100644 index 05cf72f5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.6.table +++ /dev/null @@ -1,30 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 6: Cloud -0 0 Cloud Ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -8 8 Cloud type (Code table 4.203) -9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage (Code table 4.204) -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J kg-1) -16 16 Convective cloud efficiency (Proportion) -17 17 Total condensate (kg kg-1) -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -23 23 Cloud ice mixing ratio (kg kg-1) -24 24 Sunshine (Numeric) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.0.7.table b/eccodes/definitions.save/grib3/tables/1/4.2.0.7.table deleted file mode 100644 index 78374fde..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.0.7.table +++ /dev/null @@ -1,18 +0,0 @@ -# Product Discipline 0: Meteorological products, Parameter Category 7: Thermodynamic Stability Indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J kg-1) -7 7 Convective inhibition (J kg-1) -8 8 Storm relative helicity (J kg-1) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -#13-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.10.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.0.table deleted file mode 100644 index 479e26d5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.10.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 0: Waves -0 0 Wave spectra (1) (-) -1 1 Wave spectra (2) (-) -2 2 Wave spectra (3) (-) -3 3 Significant height of combined wind waves and swell (m) -4 4 Direction of wind waves (Degree true) -5 5 Significant height of wind waves (m) -6 6 Mean period of wind waves (s) -7 7 Direction of swell waves (Degree true) -8 8 Significant height of swell waves (m) -9 9 Mean period of swell waves (s) -10 10 Primary wave direction (Degree true) -11 11 Primary wave mean period (s) -12 12 Secondary wave direction (Degree true) -13 13 Secondary wave mean period (s) -# 14-191 Reserved -# 192-254 Reserved for local use -255 255 Missing - - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.10.1.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.1.table deleted file mode 100644 index df18f31d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.10.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 1: Currents -0 0 Current direction (Degree true) -1 1 Current speed (m s-1) -2 2 u-component of current (m s-1) -3 3 v-component of current (m s-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.10.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.2.table deleted file mode 100644 index cb73da46..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.10.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 2: Ice -0 0 Ice cover (Proportion) -1 1 Ice thickness (m) -2 2 Direction of ice drift (Degree true) -3 3 Speed of ice drift (m s-1) -4 4 u-component of ice drift (m s-1) -5 5 v-component of ice drift (m s-1) -6 6 Ice growth rate (m s-1) -7 7 Ice divergence (s-1) -# 8-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.10.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.3.table deleted file mode 100644 index a14ae22e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.10.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 3: Surface Properties -0 0 Water temperature (K) -1 1 Deviation of sea level from mean (m) -# 2-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.10.4.table b/eccodes/definitions.save/grib3/tables/1/4.2.10.4.table deleted file mode 100644 index a24c3c8c..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.10.4.table +++ /dev/null @@ -1,9 +0,0 @@ -# Product Discipline 10: Oceanographic products, Parameter Category 4: Sub-surface Properties -0 0 Main thermocline depth (m) -1 1 Main thermocline anomaly (m) -2 2 Transient thermocline depth (m) -3 3 Salinity (kg kg-1) -# 4-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.2.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.2.0.table deleted file mode 100644 index fdc8ce0e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.2.0.table +++ /dev/null @@ -1,29 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 0: Vegetation/Biomass -0 0 Land cover (0=land, 1=sea) (Proportion) -1 1 Surface roughness (m) -2 2 Soil temperature (K) -3 3 Soil moisture content (kg m-2) -4 4 Vegetation (%) -5 5 Water runoff (kg m-2) -6 6 Evapotranspiration (kg -2 s-1) -7 7 Model terrain height (m) -8 8 Land use (Code table 4.212) -9 9 Volumetric soil moisture content (Proportion) -10 10 Ground heat flux (W m-2) -11 11 Moisture availability (%) -12 12 Exchange coefficient (kg m-2 s-1) -13 13 Plant canopy surface water (kg m-2) -14 14 Blackadars mixing length scale (m) -15 15 Canopy conductance (m s-1) -16 16 Minimal stomatal resistance (s m-1) -17 17 Wilting point (Proportion) -18 18 Solar parameter in canopy conductance (Proportion) -19 19 Temperature parameter in canopy conductance (Proportion) -20 20 Soil moisture parameter in canopy conductance (Proportion) -21 21 Humidity parameter in canopy conductance (Proportion) -22 22 Soil moisture (kg m-3) -26 26 Wilting point (kg m-3) -# 23-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.2.3.table b/eccodes/definitions.save/grib3/tables/1/4.2.2.3.table deleted file mode 100644 index d6376fec..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.2.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# Product Discipline 2: Land surface products, Parameter Category 3: Soil Products -0 0 Soil type (Code table 4.213) -1 1 Upper layer soil temperature (K) -2 2 Upper layer soil moisture (kg m-3) -3 3 Lower layer soil moisture (kg m-3) -4 4 Bottom layer soil temperature (K) -5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) -6 6 Number of soil layers in root zone (Numeric) -7 7 Transpiration stress-onset (soil moisture) (Proportion) -8 8 Direct evaporation cease (soil moisture) (Proportion) -9 9 Soil porosity (Proportion) -12 12 Transpiration stress-onset (soil moisture) (kg m-3) -# 11-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.3.0.table b/eccodes/definitions.save/grib3/tables/1/4.2.3.0.table deleted file mode 100644 index 94456638..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.3.0.table +++ /dev/null @@ -1,14 +0,0 @@ -# Product discipline 3: Space products, Parameter Category 0: Image format products -0 0 Scaled radiance (Numeric) -1 1 Scaled albedo (Numeric) -2 2 Scaled brightness temperature (Numeric) -3 3 Scaled precipitable water (Numeric) -4 4 Scaled lifted index (Numeric) -5 5 Scaled cloud top pressure (Numeric) -6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask (Code table 4.217) -8 8 Pixel scene type (Code table 4.218) -# 9-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.3.1.table b/eccodes/definitions.save/grib3/tables/1/4.2.3.1.table deleted file mode 100644 index 60d6e842..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.3.1.table +++ /dev/null @@ -1,11 +0,0 @@ -# Product Discipline 3: Space products, Parameter Category 1: Quantitative products -0 0 Estimated precipitation (kg m-2) -1 1 Instantaneous rain rate (kg m-2 s-1) -2 2 Cloud top height (m) -3 3 Cloud top height quality indicator (Code table 4.219) -4 4 Estimated u component of wind (m s-1) -5 5 Estimated v component of wind (m s-1) -# 6-191 Reserved -#192-254 Reserved for local use -255 255 Missing - diff --git a/eccodes/definitions.save/grib3/tables/1/4.2.table b/eccodes/definitions.save/grib3/tables/1/4.2.table deleted file mode 100644 index 0073a4f3..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.2.table +++ /dev/null @@ -1,17 +0,0 @@ -# FLAG TABLE 4.2 - Scanning mode -1 0 Points of first row or column scan in the +i (+x) direction -1 1 Points of first row or column scan in the -i (-x) direction -2 0 Points of first row or column scan in the -j (-y) direction -2 1 Points of first row or column scan in the +j (+y) direction -3 0 Adjacent points in i (x) direction are consecutive -3 1 Adjacent points in j (y) direction is consecutive -4 0 All rows scan in the same direction -4 1 Adjacent rows scans in the opposite direction -5 0 Points within odd rows are not offset in i (x) direction -5 1 Points within odd rows are offset by Di/2 in i (x) direction -6 0 Points within even rows are not offset in i (x) direction -6 1 Points within even rows are offset by Di/2 in i (x) direction -7 0 Points are not offset in j (y) direction -7 1 Points are offset by Dj/2 in j (y) direction -8 0 Rows have Ni grid points and columns have Nj grid points -8 1 Rows have Ni grid points if points are not offset in i direction. Rows have Ni-1 grid points if points are offset by Di/2 in i direction. Columns have Nj grid points if points are not offset in j direction. Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/eccodes/definitions.save/grib3/tables/1/4.201.table b/eccodes/definitions.save/grib3/tables/1/4.201.table deleted file mode 100644 index 7445c9c2..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.201.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.201, Precipitation Type - -1 1 Rain -2 2 Thunderstorm -3 3 Freezing rain -4 4 Mixed/ice -5 5 Snow -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.202.table b/eccodes/definitions.save/grib3/tables/1/4.202.table deleted file mode 100644 index 69dbe3a5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.202.table +++ /dev/null @@ -1,66 +0,0 @@ -# CODE TABLE 4.202, Precipitable water category - -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.203.table b/eccodes/definitions.save/grib3/tables/1/4.203.table deleted file mode 100644 index d2ad10b0..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.203.table +++ /dev/null @@ -1,88 +0,0 @@ -# CODE TABLE 4.203, Cloud type - -0 0 Clear -1 1 Cumulonimbus -2 2 Stratus -3 3 Stratocumulus -4 4 Cumulus -5 5 Altostratus -6 6 Nimbostratus -7 7 Altocumulus -8 8 Cirrostratus -9 9 Cirrocumulus -10 10 Cirrus -11 11 Cumulonimbus - ground based fog beneath the lowest layer -12 12 Stratus - ground based fog beneath the lowest layer -13 13 Stratocumulus - ground based fog beneath the lowest layer -14 14 Cumulus - ground based fog beneath the lowest layer -15 15 Altostratus - ground based fog beneath the lowest layer -16 16 Nimbostratus - ground based fog beneath the lowest layer -17 17 Altocumulus - ground based fog beneath the lowest layer -18 18 Cirrostratus - ground based fog beneath the lowest layer -19 19 Cirrocumulus - ground based fog beneath the lowest layer -20 20 Cirrus - ground based fog beneath the lowest layer -191 191 Unknown -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.204.table b/eccodes/definitions.save/grib3/tables/1/4.204.table deleted file mode 100644 index 23b60cf7..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.204.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.204, Thunderstorm coverage - -0 0 None -1 1 Isolated (1% - 2%) -2 2 Few (3% - 15%) -3 3 Scattered (16% - 45%) -4 4 Numerous (> 45%) -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.205.table b/eccodes/definitions.save/grib3/tables/1/4.205.table deleted file mode 100644 index 98c7b48e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.205.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.205, Aerosol type - -0 0 Aerosol not present -1 1 Aerosol present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.206.table b/eccodes/definitions.save/grib3/tables/1/4.206.table deleted file mode 100644 index b1ef2e78..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.206.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.206, Volcanic ash - -0 0 Not present -1 1 Present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.207.table b/eccodes/definitions.save/grib3/tables/1/4.207.table deleted file mode 100644 index 13fc7b54..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.207.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.207, Icing - -0 0 None -1 1 Light -2 2 Moderate -3 3 Severe -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.208.table b/eccodes/definitions.save/grib3/tables/1/4.208.table deleted file mode 100644 index 15b514a0..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.208.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.208, Turbulence - -0 0 None (smooth) -1 1 Light -2 2 Moderate -3 3 Severe -4 4 Extreme -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.209.table b/eccodes/definitions.save/grib3/tables/1/4.209.table deleted file mode 100644 index b4cca1d7..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.209.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.209, Planetary boundary layer regime - -1 1 Stable -2 2 Mechanically driven turbulence -3 3 Forced convection -4 4 Free convection -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.210.table b/eccodes/definitions.save/grib3/tables/1/4.210.table deleted file mode 100644 index d05e0772..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.210.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.210, Contrail intensity - -0 0 Contrail not present -1 1 Contrail present -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.211.table b/eccodes/definitions.save/grib3/tables/1/4.211.table deleted file mode 100644 index 604b2e64..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.211.table +++ /dev/null @@ -1,69 +0,0 @@ -# CODE TABLE 4.211, Contrail engine type - -0 0 Low bypass -1 1 High bypass -2 2 Non bypass -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.212.table b/eccodes/definitions.save/grib3/tables/1/4.212.table deleted file mode 100644 index 7393238e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.212.table +++ /dev/null @@ -1,79 +0,0 @@ -# CODE TABLE 4.212, Land Use - -1 1 Urban land -2 2 Agriculture -3 3 Range land -4 4 Deciduous forest -5 5 Coniferous forest -6 6 Forest/wetland -7 7 Water -8 8 Wetlands -9 9 Desert -10 10 Tundra -11 11 Ice -12 12 Tropical forest -13 13 Savannah -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.213.table b/eccodes/definitions.save/grib3/tables/1/4.213.table deleted file mode 100644 index cc4bdfc1..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.213.table +++ /dev/null @@ -1,77 +0,0 @@ -# CODE TABLE 4.213, Soil type - -1 1 Sand -2 2 Loamy sand -3 3 Sandy loam -4 4 Silt loam -5 5 Organic (redefined) -6 6 Sandy clay loam -7 7 Silt clay loam -8 8 Clay loam -9 9 Sandy clay -10 10 Silty clay -11 11 Clay -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.215.table b/eccodes/definitions.save/grib3/tables/1/4.215.table deleted file mode 100644 index 7e144296..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.215.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 4.215, Remotely Sensed Snow Coverage - -50 50 No-snow/no-cloud -100 100 Clouds -250 250 Snow -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.216.table b/eccodes/definitions.save/grib3/tables/1/4.216.table deleted file mode 100644 index dbe26b0e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.216.table +++ /dev/null @@ -1,95 +0,0 @@ -# CODE TABLE 4.216, Elevation of Snow Covered Terrain - -0 0 Elevation in increments of 100 m -1 1 Elevation in increments of 100 m -2 2 Elevation in increments of 100 m -3 3 Elevation in increments of 100 m -4 4 Elevation in increments of 100 m -5 5 Elevation in increments of 100 m -6 6 Elevation in increments of 100 m -7 7 Elevation in increments of 100 m -8 8 Elevation in increments of 100 m -9 9 Elevation in increments of 100 m -10 10 Elevation in increments of 100 m -11 11 Elevation in increments of 100 m -12 12 Elevation in increments of 100 m -13 13 Elevation in increments of 100 m -14 14 Elevation in increments of 100 m -15 15 Elevation in increments of 100 m -16 16 Elevation in increments of 100 m -17 17 Elevation in increments of 100 m -18 18 Elevation in increments of 100 m -19 19 Elevation in increments of 100 m -20 20 Elevation in increments of 100 m -21 21 Elevation in increments of 100 m -22 22 Elevation in increments of 100 m -23 23 Elevation in increments of 100 m -24 24 Elevation in increments of 100 m -25 25 Elevation in increments of 100 m -26 26 Elevation in increments of 100 m -27 27 Elevation in increments of 100 m -28 28 Elevation in increments of 100 m -29 29 Elevation in increments of 100 m -30 30 Elevation in increments of 100 m -31 31 Elevation in increments of 100 m -32 32 Elevation in increments of 100 m -33 33 Elevation in increments of 100 m -34 34 Elevation in increments of 100 m -35 35 Elevation in increments of 100 m -36 36 Elevation in increments of 100 m -37 37 Elevation in increments of 100 m -38 38 Elevation in increments of 100 m -39 39 Elevation in increments of 100 m -40 40 Elevation in increments of 100 m -41 41 Elevation in increments of 100 m -42 42 Elevation in increments of 100 m -43 43 Elevation in increments of 100 m -44 44 Elevation in increments of 100 m -45 45 Elevation in increments of 100 m -46 46 Elevation in increments of 100 m -47 47 Elevation in increments of 100 m -48 48 Elevation in increments of 100 m -49 49 Elevation in increments of 100 m -50 50 Elevation in increments of 100 m -51 51 Elevation in increments of 100 m -52 52 Elevation in increments of 100 m -53 53 Elevation in increments of 100 m -54 54 Elevation in increments of 100 m -55 55 Elevation in increments of 100 m -56 56 Elevation in increments of 100 m -57 57 Elevation in increments of 100 m -58 58 Elevation in increments of 100 m -59 59 Elevation in increments of 100 m -60 60 Elevation in increments of 100 m -61 61 Elevation in increments of 100 m -62 62 Elevation in increments of 100 m -63 63 Elevation in increments of 100 m -64 64 Elevation in increments of 100 m -65 65 Elevation in increments of 100 m -66 66 Elevation in increments of 100 m -67 67 Elevation in increments of 100 m -68 68 Elevation in increments of 100 m -69 69 Elevation in increments of 100 m -70 70 Elevation in increments of 100 m -71 71 Elevation in increments of 100 m -72 72 Elevation in increments of 100 m -73 73 Elevation in increments of 100 m -74 74 Elevation in increments of 100 m -75 75 Elevation in increments of 100 m -76 76 Elevation in increments of 100 m -77 77 Elevation in increments of 100 m -78 78 Elevation in increments of 100 m -79 79 Elevation in increments of 100 m -80 80 Elevation in increments of 100 m -81 81 Elevation in increments of 100 m -82 82 Elevation in increments of 100 m -83 83 Elevation in increments of 100 m -84 84 Elevation in increments of 100 m -85 85 Elevation in increments of 100 m -86 86 Elevation in increments of 100 m -87 87 Elevation in increments of 100 m -88 88 Elevation in increments of 100 m -89 89 Elevation in increments of 100 m -90 90 Elevation in increments of 100 m -254 254 Clouds -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.217.table b/eccodes/definitions.save/grib3/tables/1/4.217.table deleted file mode 100644 index 475ab686..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.217.table +++ /dev/null @@ -1,70 +0,0 @@ -# CODE TABLE 4.217, Cloud mask type - -0 0 Clear over water -1 1 Clear over land -2 2 Cloud -3 3 No data -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.220.table b/eccodes/definitions.save/grib3/tables/1/4.220.table deleted file mode 100644 index 9fddcd49..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.220.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.220, Horizontal dimension processed - -0 0 Latitude -1 1 Longitude -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.221.table b/eccodes/definitions.save/grib3/tables/1/4.221.table deleted file mode 100644 index 2291eab6..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.221.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.221, Treatment of missing data - -0 0 Not included -1 1 Extrapolated -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.230.table b/eccodes/definitions.save/grib3/tables/1/4.230.table deleted file mode 100644 index 23e819b6..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.230.table +++ /dev/null @@ -1,47 +0,0 @@ -#Code figure Code figure Meaning -0 0 Air -1 1 Ozone -2 2 Water vapour -3 3 Methane -4 4 Carbon dioxide -5 5 Carbon monoxide -6 6 Nitrogen dioxide -7 7 Nitrous oxide -8 8 Nitrogen monoxide -9 9 Formaldehyde -10 10 Sulphur dioxide -11 11 Nitric acid -12 12 All nitrogen oxides (NOy) expressed as nitrogen -13 13 Peroxyacetyl nitrate -14 14 Hydroxyl radical -15 15 Ammonia -16 16 Ammonium -17 17 Radon -18 18 Dimethyl sulphide -19 19 Hexachlorocyclohexane -20 20 Alpha hexachlorocyclohexane -21 21 Elemental mercury -22 22 Divalent mercury -23 23 Hexachlorobiphenyl -24 24 NOx expressed as nitrogen -25 25 Non-methane volatile organic compounds expressed as carbon -26 26 Anthropogenic non-methane volatile organic compounds expressed as carbon -27 27 Biogenic non-methane volatile organic compounds expressed as carbon -#28-39999 28-39999 Reserved -40000 40000 Sulphate dry aerosol -40001 40001 Black carbon dry aerosol -40002 40002 Particulate organic matter dry aerosol -40003 40003 Primary particulate organic matter dry aerosol -40004 40004 Secondary particulate organic matter dry aerosol -40005 40005 Sea salt dry aerosol -40006 40006 Dust dry aerosol -40007 40007 Mercury dry aerosol -40008 40008 PM10 aerosol -40009 40009 PM2P5 aerosol -40010 40010 PM1 aerosol -40011 40011 Nitrate dry aerosol -40012 40012 Ammonium dry aerosol -40013 40013 Water in ambient aerosol -#40014-63999 40014-63999 Reserved -#64000-65534 64000-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.3.table b/eccodes/definitions.save/grib3/tables/1/4.3.table deleted file mode 100644 index 84a72352..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.3.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 4.3, Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -# 9-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.4.table b/eccodes/definitions.save/grib3/tables/1/4.4.table deleted file mode 100644 index 61aa20c5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.4.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 4.4, Indicator of unit of time range -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -# 14-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.5.table b/eccodes/definitions.save/grib3/tables/1/4.5.table deleted file mode 100644 index 89c5fb17..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.5.table +++ /dev/null @@ -1,33 +0,0 @@ -#Code table 4.5: Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface -2 2 Cloud base level -3 3 Level of cloud tops -4 4 Level of 0o C isotherm -5 5 Level of adiabatic condensation lifted from the surface -6 6 Maximum wind level -7 7 Tropopause -8 sfc Nominal top of the atmosphere -9 9 Sea bottom -# 10-19 Reserved -20 20 Isothermal level (K) -#21-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level -# 112-116 Reserved -117 117 Mixed layer depth (m) -# 118-159 Reserved -160 160 Depth below sea level (m) -#161-191 Reserved -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.6.table b/eccodes/definitions.save/grib3/tables/1/4.6.table deleted file mode 100644 index dc6d94c2..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.6.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 4.6, Type of ensemble forecast - -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.7.table b/eccodes/definitions.save/grib3/tables/1/4.7.table deleted file mode 100644 index dadf59b4..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.7.table +++ /dev/null @@ -1,73 +0,0 @@ -# CODE TABLE 4.7, Derived forecast - -0 0 Unweighted mean of all members -1 1 Weighted mean of all members -2 2 Standard deviation with respect to cluster mean -3 3 Standard deviation with respect to cluster mean, normalized -4 4 Spread of all members -5 5 Large anomaly index of all members (see Note) -6 6 Unweighted mean of the cluster members -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.8.table b/eccodes/definitions.save/grib3/tables/1/4.8.table deleted file mode 100644 index 9d3a0e8a..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.8.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 4.8, Clustering Method - -0 0 Anomaly correlation -1 1 Root mean square -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.9.table b/eccodes/definitions.save/grib3/tables/1/4.9.table deleted file mode 100644 index 895f3017..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.9.table +++ /dev/null @@ -1,71 +0,0 @@ -# CODE TABLE 4.9, Probability Type - -0 0 Probability of event below lower limit -1 1 Probability of event above upper limit -2 2 Probability of event between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Probability of event above lower limit -4 4 Probability of event below upper limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/4.91.table b/eccodes/definitions.save/grib3/tables/1/4.91.table deleted file mode 100644 index a960f56b..00000000 --- a/eccodes/definitions.save/grib3/tables/1/4.91.table +++ /dev/null @@ -1,78 +0,0 @@ -# CODE TABLE 4.91 Category Type - -0 0 Below lower limit -1 1 Above upper limit -2 2 Between lower and upper limits. The range includes the lower limit but not the upper limit -3 3 Above lower limit -4 4 Below upper limit -5 5 Lower or equal lower limit -6 6 Greater or equal upper limit -7 7 Between lower and upper limits. The range includes lower limit and upper limit -8 8 Greater or equal lower limit -9 9 Lower or equal upper limit -10 10 Between lower and upper limits. The range includes the upper limit but not the lower limit -11 11 Equal to first limit -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 missing Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.0.table b/eccodes/definitions.save/grib3/tables/1/5.0.table deleted file mode 100644 index 6c05d886..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.0.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.0 - Vertical domain template number -0 0 Vertical level -1 1 Vertical layer -# 2-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.1.table b/eccodes/definitions.save/grib3/tables/1/5.1.table deleted file mode 100644 index d621f5d3..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.1.table +++ /dev/null @@ -1,72 +0,0 @@ -# CODE TABLE 5.1 - Fixed surface types and units -0 0 Reserved -1 sfc Ground or water surface (-) -2 2 Cloud base level (-) -3 3 Level of cloud tops (-) -4 4 Level of 0 degree C isotherm (-) -5 5 Level of adiabatic condensation lifted from the surface (-) -6 6 Maximum wind level (-) -7 7 Tropopause (-) -8 sfc Nominal top of the atmosphere (-) -9 9 Sea bottom (-) -10 10 Entire atmosphere (-) -11 11 Cumulonimbus (CB) base (m) -12 12 Cumulonimbus (CB) top (m) -13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) -# 17-19 Reserved -20 20 Isothermal level (K) -21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) -22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) -23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) -24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) -# 25-99 Reserved -100 pl Isobaric surface (Pa) -101 sfc Mean sea level -102 102 Specific altitude above mean sea level (m) -103 sfc Specified height level above ground (m) -104 104 Sigma level (sigma value) -105 ml Hybrid level (-) -106 sfc Depth below land surface (m) -107 pt Isentropic (theta) level (K) -108 108 Level at specified pressure difference from ground to level (Pa) -109 pv Potential vorticity surface (K m2 kg-1 s-1) -110 110 Reserved -111 111 Eta level (-) -112 112 Reserved -113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) -115 115 Sigma height level -# 116 Reserved -117 117 Mixed layer depth (m) -118 hhl Hybrid height level (-) -119 hpl Hybrid pressure level (-) -# 120-149 Reserved -150 150 Generalized vertical height coordinate -151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) -161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) -163 163 Bottom of sediment layer (-) -164 164 Bottom of thermally active sediment layer (-) -165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) -167 167 Bottom of root zone (-) -# 168-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river -176 176 Bottom surface (underside) ice on sea, lake or river -177 sfc Deep soil (of indefinite depth) -# 178 Reserved -179 179 Top surface of glacier ice and inland ice -180 180 Deep inland or glacier ice (of indefinite depth) -181 181 Grid tile land fraction as a model surface -182 182 Grid tile water fraction as a model surface -183 183 Grid tile ice fraction on sea, lake or river as a model surface -184 184 Grid tile glacier ice and inland ice fraction as a model surface -# 185-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.2.table b/eccodes/definitions.save/grib3/tables/1/5.2.table deleted file mode 100644 index a048d712..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.2.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.2, Matrix coordinate value function definition -0 0 Explicit coordinate values set -1 1 Linear coordinates -11 11 Geometric coordinates -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.3.table b/eccodes/definitions.save/grib3/tables/1/5.3.table deleted file mode 100644 index 4a673ef8..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.3.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.3, Matrix coordinate parameter -1 1 Direction Degrees true -2 2 Frequency (s-1) -3 3 Radial number (2pi/lambda) (m-1) -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.4.table b/eccodes/definitions.save/grib3/tables/1/5.4.table deleted file mode 100644 index 1fd37966..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.4.table +++ /dev/null @@ -1,5 +0,0 @@ -# CODE TABLE 5.4, Group Splitting Method -0 0 Row by row splitting -1 1 General group splitting -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.40.table b/eccodes/definitions.save/grib3/tables/1/5.40.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.40.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.40000.table b/eccodes/definitions.save/grib3/tables/1/5.40000.table deleted file mode 100644 index 1eef7c76..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.40000.table +++ /dev/null @@ -1,5 +0,0 @@ -# Code Table 5.40: Type of Compression -0 0 Lossless -1 1 Lossy -#2-254 Reserved -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.5.table b/eccodes/definitions.save/grib3/tables/1/5.5.table deleted file mode 100644 index d1caac9e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.5.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 5.5, Missing Value Management for Complex Packing - -0 0 No explicit missing values included within data values -1 1 Primary missing values included within data values -2 2 Primary and secondary missing values included within data values -# 192 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.6.table b/eccodes/definitions.save/grib3/tables/1/5.6.table deleted file mode 100644 index 4aec3314..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.6.table +++ /dev/null @@ -1,68 +0,0 @@ -# CODE TABLE 5.6, Order of Spatial Differencing - -1 1 First-order spatial differencing -2 2 Second-order spatial differencing -192 192 Reserved for local use -193 193 Reserved for local use -194 194 Reserved for local use -195 195 Reserved for local use -196 196 Reserved for local use -197 197 Reserved for local use -198 198 Reserved for local use -199 199 Reserved for local use -200 200 Reserved for local use -201 201 Reserved for local use -202 202 Reserved for local use -203 203 Reserved for local use -204 204 Reserved for local use -205 205 Reserved for local use -206 206 Reserved for local use -207 207 Reserved for local use -208 208 Reserved for local use -209 209 Reserved for local use -210 210 Reserved for local use -211 211 Reserved for local use -212 212 Reserved for local use -213 213 Reserved for local use -214 214 Reserved for local use -215 215 Reserved for local use -216 216 Reserved for local use -217 217 Reserved for local use -218 218 Reserved for local use -219 219 Reserved for local use -220 220 Reserved for local use -221 221 Reserved for local use -222 222 Reserved for local use -223 223 Reserved for local use -224 224 Reserved for local use -225 225 Reserved for local use -226 226 Reserved for local use -227 227 Reserved for local use -228 228 Reserved for local use -229 229 Reserved for local use -230 230 Reserved for local use -231 231 Reserved for local use -232 232 Reserved for local use -233 233 Reserved for local use -234 234 Reserved for local use -235 235 Reserved for local use -236 236 Reserved for local use -237 237 Reserved for local use -238 238 Reserved for local use -239 239 Reserved for local use -240 240 Reserved for local use -241 241 Reserved for local use -242 242 Reserved for local use -243 243 Reserved for local use -244 244 Reserved for local use -245 245 Reserved for local use -246 246 Reserved for local use -247 247 Reserved for local use -248 248 Reserved for local use -249 249 Reserved for local use -250 250 Reserved for local use -251 251 Reserved for local use -252 252 Reserved for local use -253 253 Reserved for local use -254 254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.7.table b/eccodes/definitions.save/grib3/tables/1/5.7.table deleted file mode 100644 index 35b23b94..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.7.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 5.7, Precision of floating-point numbers - -1 1 IEEE 32-bit (I=4 in Section 7) -2 2 IEEE 64-bit (I=8 in Section 7) -3 3 IEEE 128-bit (I=16 in Section 7) -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.8.table b/eccodes/definitions.save/grib3/tables/1/5.8.table deleted file mode 100644 index c654331f..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.8.table +++ /dev/null @@ -1,3 +0,0 @@ -# CODE TABLE 5.8, lossless compression method -0 no no compression method -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/5.9.table b/eccodes/definitions.save/grib3/tables/1/5.9.table deleted file mode 100644 index 6925d31a..00000000 --- a/eccodes/definitions.save/grib3/tables/1/5.9.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 5.8, pre-processing -0 no no pre-processing -1 logarithm logarithm -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/6.0.table b/eccodes/definitions.save/grib3/tables/1/6.0.table deleted file mode 100644 index e01e35e5..00000000 --- a/eccodes/definitions.save/grib3/tables/1/6.0.table +++ /dev/null @@ -1,7 +0,0 @@ -# CODE TABLE 6.0 - Generating process template number -0 0 Forecast, analysis or observation -1 1 Individual ensemble forecast or analysis, control and perturbed -2 2 Statistical post-processing of all ensemble members -# 3-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/6.1.table b/eccodes/definitions.save/grib3/tables/1/6.1.table deleted file mode 100644 index a8fffa23..00000000 --- a/eccodes/definitions.save/grib3/tables/1/6.1.table +++ /dev/null @@ -1,23 +0,0 @@ -# CODE TABLE 6.1 - Type of generating process -0 0 Analysis -1 1 Initialization -2 2 Forecast -3 3 Bias corrected forecast -4 4 Ensemble forecast -5 5 Probability forecast -6 6 Forecast error -7 7 Analysis error -8 8 Observation -9 9 Climatological -10 10 Probability-weighted forecast -11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast -14 14 Nowcast -15 15 Hindcast -16 16 Physical retrieval -17 17 Regression analysis -18 18 Difference between two forecasts -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/6.2.table b/eccodes/definitions.save/grib3/tables/1/6.2.table deleted file mode 100644 index 4423f714..00000000 --- a/eccodes/definitions.save/grib3/tables/1/6.2.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 6.2 - Type of ensemble member -0 0 Unperturbed high-resolution control forecast -1 1 Unperturbed low-resolution control forecast -2 2 Negatively perturbed forecast -3 3 Positively perturbed forecast -4 4 Multi-model forecast -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/6.3.table b/eccodes/definitions.save/grib3/tables/1/6.3.table deleted file mode 100644 index d34749b0..00000000 --- a/eccodes/definitions.save/grib3/tables/1/6.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 6.3 - Type of statistical post-processing of ensemble members -0 0 Unweighted mean -1 1 Weighted mean -2 2 Spread -3 3 Large anomaly index -4 4 Interquartile range (range between the 25th and 75th quantile) -5 5 Minimum -6 6 Maximum -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.0.table b/eccodes/definitions.save/grib3/tables/1/7.0.table deleted file mode 100644 index f88fff58..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.0.table +++ /dev/null @@ -1,9 +0,0 @@ -# CODE TABLE 7.0 - Observable property template number -0 0 Observable property by discipline, category and number -1 1 Observable property with units conversion -2 2 Atmospheric chemical or physical constituent -3 3 Aerosol physical property -4 4 Aerosol optical property -# 5-32767 Reserved -# 32768-65534 Reserved for local use -65535 65535 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.1.table b/eccodes/definitions.save/grib3/tables/1/7.1.table deleted file mode 100644 index 29587795..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.1.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 7.1 - Discipline -0 0 Meteorological products -1 1 Hydrological products -2 2 Land surface products -3 3 Space products -# 4-9 Reserved -10 10 Oceanographic products -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.2.0.table b/eccodes/definitions.save/grib3/tables/1/7.2.0.table deleted file mode 100644 index e8176e02..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.2.0.table +++ /dev/null @@ -1,28 +0,0 @@ -# CODE TABLE 7.2 - Parameter category by discipline -# Discipline 0: Meteorological products -0 0 Temperature -1 1 Moisture -2 2 Momentum -3 3 Mass -4 4 Short-wave Radiation -5 5 Long-wave Radiation -6 6 Cloud -7 7 Thermodynamic Stability indices -8 8 Kinematic Stability indices -9 9 Temperature Probabilities -10 10 Moisture Probabilities -11 11 Momentum Probabilities -12 12 Mass Probabilities -13 13 Aerosols -14 14 Trace gases (e.g., ozone, CO2) -15 15 Radar -16 16 Forecast Radar Imagery -17 17 Electro-dynamics -18 18 Nuclear/radiology -19 19 Physical atmospheric properties -20 20 Atmospheric chemical or physical constituents -# 20-189 Reserved -190 190 CCITT IA5 string -191 191 Miscellaneous -#192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.2.1.table b/eccodes/definitions.save/grib3/tables/1/7.2.1.table deleted file mode 100644 index 1a4b16b9..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.2.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# CODE TABLE 7.2 - Parameter category by discipline -# Discipline 1: Hydrological products -0 0 Hydrology basic products -1 1 Hydrology probabilities -2 2 Inland water and sediment properties -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.2.10.table b/eccodes/definitions.save/grib3/tables/1/7.2.10.table deleted file mode 100644 index 4b41256f..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.2.10.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 7.2 - Parameter category by discipline -# Discipline 10: Oceanographic products -0 0 Waves -1 1 Currents -2 2 Ice -3 3 Surface properties -4 4 Subsurface properties -# 5-190 Reserved -191 191 Miscellaneous -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.2.2.table b/eccodes/definitions.save/grib3/tables/1/7.2.2.table deleted file mode 100644 index aef9e64c..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.2.2.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 7.2 - Parameter category by discipline -# Discipline 2: Land surface products -0 0 Vegetation/biomass -1 1 Agri-/aquacultural special products -2 2 Transportation-related products -3 3 Soil products -4 4 Fire weather products -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.2.3.table b/eccodes/definitions.save/grib3/tables/1/7.2.3.table deleted file mode 100644 index 53aa830c..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.2.3.table +++ /dev/null @@ -1,11 +0,0 @@ -# CODE TABLE 7.2 - Parameter category by discipline -# Discipline 3: Satellite products -0 0 Reserved -1 1 Reserved -2 2 Cloud properties -3 3 Flight rule conditions -4 4 Volcanic ash -5 5 Sea-surface temperature -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.0.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.0.table deleted file mode 100644 index a7896a6e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.0.table +++ /dev/null @@ -1,20 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 0: temperature -0 0 Temperature (K) -1 1 Virtual temperature (K) -2 2 Potential temperature (K) -3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) -# 4-5 Reserved -6 6 Dewpoint temperature (K) -7 7 Dewpoint depression (or deficit) (K) -8 8 Lapse rate (K m-1) -9 9 Temperature anomaly (K) -10 10 Latent heat net flux (W m-2) -11 11 Sensible heat net flux (W m-2) -12 12 Heat index (K) -13 13 Wind chill factor (K) -# 14 Reserved -15 15 Virtual potential temperature (K) -# 16-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.1.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.1.table deleted file mode 100644 index fa4a1f47..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.1.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 1: moisture -0 0 Specific humidity (kg kg-1) -1 1 Relative humidity (%) -2 2 Humidity mixing ratio (kg kg-1) -3 3 Precipitable water (kg m-2) -4 4 Vapour pressure (Pa) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.13.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.13.table deleted file mode 100644 index bd28d13e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.13.table +++ /dev/null @@ -1,6 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 13: aerosols -0 0 Aerosol type -# 1-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.14.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.14.table deleted file mode 100644 index 2d9c52ed..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.14.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 14: trace gases -0 0 Total ozone (DU) -1 1 Ozone mixing ratio (kg/kg) -2 2 Total column integrated ozone (DU) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.15.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.15.table deleted file mode 100644 index 7ff84c78..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.15.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 15: radar -0 0 Base spectrum width (m/s) -1 1 Base reflectivity (dB) -2 2 Base radial velocity (m/s) -3 3 Vertically integrated liquid water (VIL) (kg m-2) -4 4 Layer-maximum base reflectivity (dB) -5 5 Precipitation (kg m-2) -6 6 Radar spectra (1) (-) -7 7 Radar spectra (2) (-) -8 8 Radar spectra (3) (-) -9 9 Reflectivity of cloud droplets (dB) -10 10 Reflectivity of cloud ice (dB) -11 11 Reflectivity of snow (dB) -12 12 Reflectivity of rain (dB) -13 13 Reflectivity of graupel (dB) -14 14 Reflectivity of hail (dB) -15 15 Hybrid scan reflectivity (dB) -16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.16.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.16.table deleted file mode 100644 index af711e93..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.16.table +++ /dev/null @@ -1,11 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 16: forecast radar imagery -0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) -1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) -2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) -3 3 Echo top (m) -4 4 Reflectivity (dB) -5 5 Composite reflectivity (dB) -# 6-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.17.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.17.table deleted file mode 100644 index e0e6237d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.17.table +++ /dev/null @@ -1,4 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 17: electrodynamics -0 0 Lightning strike density (m-2 s-1) -1 1 Lightning potential index (LPI) (J kg-1) diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.18.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.18.table deleted file mode 100644 index f3dc107a..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.18.table +++ /dev/null @@ -1,24 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 18: nuclear/radiology -0 0 Air concentration of caesium 137 (Bq m-3) -1 1 Air concentration of iodine 131 (Bq m-3) -2 2 Air concentration of radioactive pollutant (Bq m-3) -3 3 Ground deposition of caesium 137 (Bq m-2) -4 4 Ground deposition of iodine 131 (Bq m-2) -5 5 Ground deposition of radioactive pollutant (Bq m-2) -6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) -7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) -8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved -10 10 Air concentration (Bq m-3) -11 11 Wet deposition (Bq m-2) -12 12 Dry deposition (Bq m-2) -13 13 Total deposition (wet + dry) (Bq m-2) -14 14 Specific activity concentration (Bq kg-1) -15 15 Maximum of air concentration in layer (Bq m-3) -16 16 Height of maximum air concentration (m) -17 17 Column-integrated air concentration (Bq m-2) -18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.19.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.19.table deleted file mode 100644 index 640fe37d..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.19.table +++ /dev/null @@ -1,37 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 19: physical atmospheric properties -0 0 Visibility (m) -1 1 Albedo (%) -2 2 Thunderstorm probability (%) -3 3 Mixed layer depth (m) -4 4 Volcanic ash ((Code table 4.206)) -5 5 Icing top (m) -6 6 Icing base (m) -7 7 Icing ((Code table 4.207)) -8 8 Turbulence top (m) -9 9 Turbulence base (m) -10 10 Turbulence ((Code table 4.208)) -11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime ((Code table 4.209)) -13 13 Contrail intensity ((Code table 4.210)) -14 14 Contrail engine type ((Code table 4.211)) -15 15 Contrail top (m) -16 16 Contrail base (m) -17 17 Maximum snow albedo (%) -18 18 Snow free albedo (%) -19 19 Snow albedo (%) -20 20 Icing (%) -21 21 In-cloud turbulence (%) -22 22 Clear air turbulence (CAT) (%) -23 23 Supercooled large droplet probability (%) -24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather ((Code table 4.225)) -26 26 Convective outlook ((Code table 4.224)) -27 27 Icing scenario ((Code table 4.227)) -28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) -29 29 Clear air turbulence (CAT) (m2/3 s-1) -30 30 Eddy dissipation parameter (m2/3 s-1) -31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) -# 32-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.2.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.2.table deleted file mode 100644 index c8882c48..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.2.table +++ /dev/null @@ -1,12 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 2: momentum -0 0 Wind direction (from which blowing) (degree true) -1 1 Wind speed (m/s) -2 2 u-component of wind (m/s) -3 3 v-component of wind (m/s) -4 4 Stream function (m2/s) -5 5 Velocity potential (m2/s) -6 6 Montgomery stream function (m2 s-2) -# 7-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.20.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.20.table deleted file mode 100644 index 098d771e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.20.table +++ /dev/null @@ -1,48 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 20: atmospheric chemical constituents -0 0 Mass density (concentration) (kg m-3) -1 1 Column-integrated mass density (kg m-2) -2 2 Mass mixing ratio (mass fraction in air) (kg/kg) -3 3 Atmosphere emission mass flux (kg m-2 s-1) -4 4 Atmosphere net production mass flux (kg m-2 s-1) -5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) -6 6 Surface dry deposition mass flux (kg m-2 s-1) -7 7 Surface wet deposition mass flux (kg m-2 s-1) -8 8 Atmosphere re-emission mass flux (kg m-2 s-1) -9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) -10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) -11 11 Sedimentation mass flux (kg m-2 s-1) -12 12 Dry deposition mass flux (kg m-2 s-1) -13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) -14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) -# 15-49 Reserved -50 50 Amount in atmosphere (mol) -51 51 Concentration in air (mol m-3) -52 52 Volume mixing ratio (fraction in air) (mol/mol) -53 53 Chemical gross production rate of concentration (mol m-3 s-1) -54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) -55 55 Surface flux (mol m-2 s-1) -56 56 Changes of amount in atmosphere (mol/s) -57 57 Total yearly average burden of the atmosphere (mol) -58 58 Total yearly averaged atmospheric loss (mol/s) -59 59 Aerosol number concentration (m-3) -60 60 Aerosol specific number concentration (kg-1) -61 61 Maximum of mass density in layer (kg m-3) -62 62 Height of maximum mass density (m) -63 63 Column-averaged mass density in layer (kg m-3) -# 64-99 Reserved -100 100 Surface area density (aerosol) (/m) -101 101 Vertical visual range (m) -102 102 Aerosol optical thickness (Numeric) -103 103 Single scattering albedo (Numeric) -104 104 Asymmetry factor (Numeric) -105 105 Aerosol extinction coefficient (/m) -106 106 Aerosol absorption coefficient (/m) -107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) -108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) -109 109 Aerosol lidar extinction from satellite (/m) -110 110 Aerosol lidar extinction from the ground (/m) -111 111 Angstrom exponent (Numeric) -# 112-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.3.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.3.table deleted file mode 100644 index f3c0c1d2..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.3.table +++ /dev/null @@ -1,16 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 3: mass -0 0 Pressure (Pa) -1 1 Pressure reduced to MSL (Pa) -2 2 Pressure tendency (Pa/s) -3 3 ICAO Standard Atmosphere Reference Height (m) -4 4 Geopotential (m2 s-2) -5 5 Geopotential height (gpm) -6 6 Geometric height (m) -7 7 Standard deviation of height (m) -8 8 Pressure anomaly (Pa) -9 9 Geopotential height anomaly (gpm) -10 10 Density (kg m-3) -# 11-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.4.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.4.table deleted file mode 100644 index 970d9044..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.4.table +++ /dev/null @@ -1,10 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 4: short-wave radiation -0 0 Net short-wave radiation flux (surface) (W m-2) -1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) -2 2 Short-wave radiation flux (W m-2) -3 3 Global radiation flux (W m-2) -4 4 Brightness temperature (K) -# 5-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.5.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.5.table deleted file mode 100644 index 71d21775..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.5.table +++ /dev/null @@ -1,13 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 5: long-wave radiation -# 0 Reserved -# 1 Reserved -# 2 Reserved -3 3 Downward long-wave radiation flux (W m-2) -4 4 Upward long-wave radiation flux (W m-2) -5 5 Net long-wave radiation flux (W m-2) -6 6 Net long-wave radiation flux, clear sky (W m-2) -7 7 Brightness temperature (K) -# 8-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.6.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.6.table deleted file mode 100644 index 1d28c213..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.6.table +++ /dev/null @@ -1,28 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 6: cloud -0 0 Cloud ice (kg m-2) -1 1 Total cloud cover (%) -2 2 Convective cloud cover (%) -3 3 Low cloud cover (%) -4 4 Medium cloud cover (%) -5 5 High cloud cover (%) -6 6 Cloud water (kg m-2) -7 7 Cloud amount (%) -# 8 Reserved -9 9 Thunderstorm maximum tops (m) -# 10 Reserved -11 11 Cloud base (m) -12 12 Cloud top (m) -13 13 Ceiling (m) -14 14 Non-convective cloud cover (%) -15 15 Cloud work function (J/kg) -16 16 Convective cloud efficiency (Proportion) -# 17 Reserved -18 18 Total column-integrated cloud water (kg m-2) -19 19 Total column-integrated cloud ice (kg m-2) -20 20 Total column-integrated condensate (kg m-2) -21 21 Ice fraction of total condensate (Proportion) -22 22 Cloud cover (%) -# 23-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.0.7.table b/eccodes/definitions.save/grib3/tables/1/7.3.0.7.table deleted file mode 100644 index 166d9d7f..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.0.7.table +++ /dev/null @@ -1,25 +0,0 @@ -# CODE TABLE 7.3 - Parameter number by product discipline and parameter category -# Product discipline 0 - Meteorological products, parameter category 7: Thermodynamic stability indices -0 0 Parcel lifted index (to 500 hPa) (K) -1 1 Best lifted index (to 500 hPa) (K) -2 2 K index (K) -3 3 KO index (K) -4 4 Total totals index (K) -5 5 Sweat index (Numeric) -6 6 Convective available potential energy (J/kg) -7 7 Convective inhibition (J/kg) -8 8 Storm relative helicity (J/kg) -9 9 Energy helicity index (Numeric) -10 10 Surface lifted index (K) -11 11 Best (4-layer) lifted index (K) -12 12 Richardson number (Numeric) -13 13 Showalter index (K) -# 14 Reserved -15 15 Updraught helicity (m2 s-2) -16 16 Bulk Richardson number (Numeric) -17 17 Gradient Richardson number (Numeric) -18 18 Flux Richardson number (Numeric) -19 19 Convective available potential energy - shear (m2 s-2) -# 20-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.1.0.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.0.table deleted file mode 100644 index baa42eef..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.1.0.table +++ /dev/null @@ -1,22 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 1 - Hydrological products, parameter category 0: hydrology basic products -0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) -1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover ((Code table 4.215)) -3 3 Elevation of snow-covered terrain ((Code table 4.216)) -4 4 Snow water equivalent per cent of normal (%) -5 5 Baseflow-groundwater runoff (kg m-2) -6 6 Storm surface runoff (kg m-2) -7 7 Discharge from rivers or streams (m3/s) -8 8 Groundwater upper storage (kg m-2) -9 9 Groundwater lower storage (kg m-2) -10 10 Side flow into river channel (m3 s-1 m-1) -11 11 River storage of water (m3) -12 12 Floodplain storage of water (m3) -13 13 Depth of water on soil surface (kg m-2) -14 14 Upstream accumulated precipitation (kg m-2) -15 15 Upstream accumulated snow melt (kg m-2) -16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.1.1.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.1.table deleted file mode 100644 index 475f676e..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.1.1.table +++ /dev/null @@ -1,8 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 1 - Hydrological products, parameter category 1: hydrology probabilities -0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) -1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) -2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved -# 192-254 Reserved for local use -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/1/7.3.1.2.table b/eccodes/definitions.save/grib3/tables/1/7.3.1.2.table deleted file mode 100644 index 5d5fcb84..00000000 --- a/eccodes/definitions.save/grib3/tables/1/7.3.1.2.table +++ /dev/null @@ -1,16 +0,0 @@ -# Code table 7.3 - Parameter number by product discipline and parameter category -# Product discipline 1 - Hydrological products, parameter category 2: inland water and sediment properties -0 0 Water depth (m) -1 1 Water temperature (K) -2 2 Water fraction (Proportion) -3 3 Sediment thickness (m) -4 4 Sediment temperature (K) -5 5 Ice thickness (m) -6 6 Ice temperature (K) -7 7 Ice cover (Proportion) -8 8 Land cover (0 = water, 1 = land) (Proportion) -9 9 Shape factor with respect to salinity profile (-) -10 10 Shape factor with respect to temperature profile in thermocline (-) -11 11 Attenuation coefficient of water with respect to solar radiation (/m) -12 12 Salinity (kg/kg) -13 13 Cross-sectional area of flow in channel (m2) diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table b/eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table deleted file mode 100644 index a0f9c973..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/4/1.2.table +++ /dev/null @@ -1,4 +0,0 @@ -# CODE TABLE 1.2, Significance of Reference Time -191 191 funny reference time -#4-191 Reserved -#192-254 Reserved for local use diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table deleted file mode 100644 index 92a1b782..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.1.0.table +++ /dev/null @@ -1,2 +0,0 @@ -#Code Table obstat.1.0: Monitoring Statistics Outputs types -1 obstat Monitoring statistics diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table deleted file mode 100644 index 347e17f6..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.10.0.table +++ /dev/null @@ -1,42 +0,0 @@ -#Code Table obstat.10.0: Data selection criteria -1 Active Active data -2 All All data -3 Non_Active Not Active data -4 Best_Active Best active wind -5 Used Used data -6 VarQC_Rej VarQC rejected data -7 Blacklisted Blacklisted data -8 Failed Failed data -9 Passed_FgCheck Data that passed FG check -10 Non_Rejected All non rejected data -11 VarBC_Passive VarBC passive channels -12 Failed_FG_Non_Black Data failed FG check but not blacklisted -13 Failed_FG_VarQC_Rej Data failed FG check and VARQC rejected -#14-19 Reserved for additional standard IFS flags -20 QI_LE_20 AMVs with QI <= 20 -21 QI_LE_66 AMVs with 20 < QI <=65 -22 QI_GE_65 AMVs with QI > 65 -23 QI_GE_80 AMVs with QI > 80 -24 QI_GE_90 AMVs with QI > 90 -#25-29 Reserved for additional AMVs flags -30 Clear_LE_70%WV_80%IR CSR data with clear fraction < 70 % (WV) and < 80 % (IR) -31 Clear_GE_70%WV_80%IR CSR data with clear fraction >= 70 % (WV) and >= 80 % (IR) -32 Clear_100% CSR data completely clear (according to IR window channel) -33 Clear_GE_40%WV CSR data with clear fraction >= 40 % (WV) -34 Clear_GE_70%WV CSR data with clear fraction >= 70 % (WV) -35 Clear_100%WV CSR data completely clear (according to WV channel) -#36-39 Reserved for additional CSR flags -40 Clear Clear -41 Used_Clear Used clear data -42 Used_Cloudy_Rainy Used cloudy and rainy data -43 All_Cloudy_Rainy All cloudy and rainy data -44 Used_ObsCld_FGClr Used Obs cloudy and FG clear -45 Used_ObsClr_FGCld Used Obs clear and FG cloudy -#44-49 Reserved for additional radiances flags -50 Good_ozone Good ozone data -51 Daytime Day time data -52 Nighttime Night time data -#53-69 Reserved for additional ozone, trace gases and Aerosol flags -#70-79 Reserved for GPSRO flags -#80-89 Reserved for scatterometer flags -#33-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table deleted file mode 100644 index 2d82ce7e..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.11.0.table +++ /dev/null @@ -1,4 +0,0 @@ -#Code Table obstat.11.0: Scan position definition -0 0 Explicit scan position (table 11.1) -1 1 Scan position interval (table 11.2) -255 255 Missing diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table deleted file mode 100644 index e3aea161..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.2.0.table +++ /dev/null @@ -1,13 +0,0 @@ -#Code Table obstat.2.0: Observation types -1 Synop Synop -2 Airep Airep -3 Satob Satob -4 Dribu Dribu -5 Temp Temp -6 Pilot Pilot -7 Satem Satem -8 Paob Paob -9 Scatterometer Scatterometer -10 GPSRO Limb -13 Radar Radar -#14-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table deleted file mode 100644 index 60b907f5..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.3.0.table +++ /dev/null @@ -1,52 +0,0 @@ -#Code Table obstat.3.0: Observation code types -2 RADAR RADAR 1 -8 SCATTEROMETER1 SCATTEROMETER 1 -11 Manual_land Manual land station -14 Automatic_land Automatic land station -21 Ship Ship -22 Ship Ship abbreviated -23 Shred Shred -24 Automatic_ship Automatic Ship -32 Land LAND -33 Ship SHIP -34 Profilers WIND PROFILERS -35 Land LAND -36 Ship SHIP -37 Mobile MOBILE -39 Land_Racob LAND ROCOB -40 Ship_Racob SHIP ROCOB -41 Codar Codar -63 Bathy BATHY -64 Tesac TESAC -86 SATEM_GTS SATEM VIA GTS -88 Satob Satob -89 High-Res_VIS_wind High-resolution VIS wind -90 AMV AMV -122 SCATTEROMETER2 SCATTEROMETER 2 -139 SCATTEROMETER3 SCATTEROMETER 3 -141 Aircraft Aircraft -142 Simulated Simulated -144 Amdar Amdar -145 Acars Acars -160 ERS_AS_DRIBU ERS as DRIBU -165 DRIBU DRIBU -135 DROP DROP -137 SIMULATED SIMULATED -180 PAOB PAOB -184 High_Res_Sim_SATEM HIGH RESOLUTION SIMULATED SATEM -185 High_Res_Sim_DWLTOVS HIGH RESOLUTION SIMULATED DWL TOVS -186 High_Res_Sat HIGH RESOLUTION SATTELITE REPORT -188 SST SST -200 GTS_BUFR_SATEM GTS BUFR 250 KM SATEM -201 GTS_BUFR_CLR_Rad GTS BUFR SATEM CLEAR RADIANCE -202 GTS_BUFR_DATEM_RETR GTS BUFR SATEM RETRIEVED PROFILES AND CLEAR RADIANCES -206 OZONE RETRIEVED OZONE (TOTAL & PROFILES) -210 L1C_RADIANCES LEVEL 1C CALIBRATED RADIANCES -211 RTOVS_CLR_RAD RTOVS CLEAR RADIANCES AND RETRIEVED -212 TOVS_CLEAR_RAD TOVS CLEAR RADIANCES AND RETRIEVED -215 AllSky_MWRAD SSMI/AMSRE/SSMIS/TMI -241 COLBA Colba -250 GPSRO GPS RADIO OCCULTATION -251 LIMB LIMB RADIANCES -300 SCATTEROMETER4 SCATTEROMETER 4 -301 SCATTEROMETER5 SCATTEROMETER 5 diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table deleted file mode 100644 index a342b56d..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.4.0.table +++ /dev/null @@ -1,82 +0,0 @@ -#Code Table obstat.4.0: List of meteorological satellites -1 ERS-1 ERS 1 -2 ERS-2 ERS 2 -3 METOP-B METOP-B -4 METOP-A METOP-A -41 CHAMP CHAMP -42 TERRA-SAR-X TERRA-SAR-X -46 SMOS SMOS -54 METEOSAT-7 METEOSAT 7 -55 METEOSAT-8 METEOSAT 8 -56 METEOSAT-9 METEOSAT 9 -57 METEOSAT-10 METEOSAT 10 -58 METEOSAT-1 METEOSAT 1 -59 METEOSAT-2 METEOSAT 2 -60 ENVISAT ENVISAT -70 METEOSAT-11 METEOSAT-11 -122 GCOM-W1 GCOM-W1 -140 GOSAT GOSAT -171 MTSAT-1R MTSAT-1R -172 MTSAT-2 MTSAT-2 -200 NOAA-8 NOAA-8 -201 NOAA-9 NOAA-9 -202 NOAA-10 NOAA-10 -203 NOAA-11 NOAA-11 -204 NOAA-12 NOAA-12 -205 NOAA-14 NOAA 14 -206 NOAA-15 NOAA 15 -207 NOAA-16 NOAA 16 -208 NOAA-17 NOAA 17 -209 NOAA-18 NOAA 18 -222 AQUA AQUA -223 NOAA-19 NOAA 19 -224 NPP NPP -240 DMSP-7 DMSP-7 -241 DMSP-8 DMSP-8 -242 DMSP-9 DMSP-9 -243 DMSP-10 DMSP-10 -244 DMSP-11 DMSP-11 -246 DMSP-13 DMSP-13 -246 DMSP-13 DMSP 13 -247 DMSP-14 DMSP 14 -248 DMSP-15 DMSP 15 -249 DMSP-16 DMSP 16 -253 GOES-9 GOES 9 -254 GOES-10 GOES 10 -255 GEOS-11 GOES 11 -256 GEOS-12 GOES 12 -257 GEOS-13 GOES 13 -258 GEOS-14 GOES 14 -259 GEOS-15 GOES 15 -260 JASON-1 JASON-1 -261 JASON-2 JASON-2 -281 QUIKSCAT QUIKSCAT -282 TRMM TRMM -283 CORIOLIS CORIOLIS -285 DMSP17 DMSP 17 -286 DMSP18 DMSP 18 -421 OCEANSAT-2 OCEANSAT-2 -500 FY-1C FY-1C -501 FY-1D FY-1D -510 FY-2 FY-2 -512 FY-2B FY-2B -513 FY-2C FY-2C -514 FY-2D FY-2D -515 FY-2E FY-2E -520 FY-3A FY-3A -521 FY-3B FY-3B -722 GRACE-A GRACE-A -706 NOAA-6 NOAA-6 -707 NOAA-7 NOAA-7 -708 TIROS-N TIROS-N -740 COSMIC-1 COSMIC-1 -741 COSMIC-2 COSMIC-2 -742 COSMIC-3 COSMIC-3 -743 COSMIC-4 COSMIC-4 -744 COSMIC-5 COSMIC-5 -745 COSMIC-6 COSMIC-6 -783 TERRA TERRA -784 AQUA AQUA -785 AURA AURA -786 C-NOFS C-NOFS -820 SAC-C SAC-C diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table deleted file mode 100644 index 71a9a0e8..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.5.0.table +++ /dev/null @@ -1,53 +0,0 @@ -#Code Table obstat.5.0: List of satellite instruments -0 HIRS HIRS -1 MSU MSU -2 SSU SSU -3 AMSUA AMSUA -4 AMSUB AMSUB -6 SSM/I SSM/I -9 TMI TMI -10 SSMI/S SSMI/S -11 AIRS AIRS -15 MHS MHS -16 IASI IASI -17 AMSRE AMSR-E -19 ATMS ATMS -20 MVIRI MVIRI -21 SEVIRI SEVIRI -22 GOES GOES Imager -24 MTSAT-1R MTSAT-1R imager -27 CrIS CrIS -30 WINDSAT WINDSAT -40 MWTS MWTS -41 MWHS MWHS -63 AMSR2 AMSR2 -102 GPSRO GPSRO -172 GOMOS GOMOS -174 MERIS MERIS -175 SCIAMACHY SCIAMACHY -202 GRAS GRAS -207 SEVIRI_O3 SEVIRI O3 -220 GOME-2 GOME-2 -387 MLS MLS -394 OMI OMI -516 TANSO TANSO -624 SBUV-2 SBUV-2 -2000 AMV_WV_CLOUDY AMV WV cloudy -2001 AMV_IR AMV IR -2002 AMV_VIS AMV VIS -2003 AMV_WVMIX AMV WVMIX -2005 AMV_WV_Clear AMV Water Vapor clear -2100 AMV_WV_6.2_cloudy AMV WV 6.2 cloudy -2101 AMV_IR_ch1 AMV IR ch1 -2102 AMV_VIS_ch1 AMV VIS ch1 -2105 AMV_WV_6.2_clear AMV WV_6.2 clear -2200 AMV_WV_7.3_cloudy AMV WV 7.3 cloudy -2201 AMV_IR_ch2 AMV IR ch2 -2202 AMV_VIS-2 AMV VIS-2 -2205 AMV_WV_7.3_clear AMV WV 7.3 clear -2300 AMV_WV_cloudy_ch3 AMV WV cloudy ch 3 -2301 AMV_IR-10 AMV IR-10 -2305 AMV_WV_clear_Ch3 AMV WV clear Ch3 -2350 QUIKSCAT QUIKSCAT -2150 SCAT SCAT -2190 ASCAT ASCAT diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table deleted file mode 100644 index 2bb1fa92..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.6.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.6.0: List of data streams -0 Normal_delivery Normal delivery -1 EARS EARS -2 PAC-RARS PAC-RARS -3 DB_MODIS DB MODIS winds -#4-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table deleted file mode 100644 index fcd1c2e0..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.7.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.7.0: Vertical coordinate types -1 1 Channel -2 2 Pressure level -3 3 Pressure layer -4 4 Surface -#5-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table deleted file mode 100644 index 42bba148..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.8.0.table +++ /dev/null @@ -1,6 +0,0 @@ -#Code Table obstat.8.0: List Mask types -1 Land Land -2 Sea Sea -3 Sea-ice Sea-ice -4 All_surfaces All surface types combined -#5-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table deleted file mode 100644 index bed03c02..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.9.0.table +++ /dev/null @@ -1,52 +0,0 @@ -#Code Table obstat.9.0: Observation diagnostics -1 count data count -2 obs Average of observed values -3 obs_stdv Standard deviation of observed values -4 fgdep Average of first guess departure -5 fgdep_stdv Standard deviation of first guess departure -6 andep Average of analysis departure -7 andep_stdv Standard deviation of analysis departure -8 obs_error Average of observation standard error -9 obs_error_stdv Standard deviation of observation standard error -10 bkg_error Average of background standard error -11 bkg_error_stdv Standard deviation of background standard error -12 lr_andep1 Average of low resolution analysis departure update 1 -13 lr_andep1_stdv Standard deviation of low resolution analysis departure update 1 -14 hr_fgdep2 Average of high resolution background departure update 2 -15 hr_fgdep2_stdv Standard deviation of high resolution background departure update 2 -16 lr_andep2 Average of low resolution analysis departure update 2 -17 lr_andep2_stdv Standard deviation of low resolution analysis departure update 2 -18 bcor Average of Bias correction -19 bcor_stdv Standard deviation of bias correction -20 vbcor average of Variational bias correction -21 vbcor_stdv Standard deviation of variational bias correction -22 fgdep_nbcor Average of background departure without bias correction -23 fgdep_nbcor_stdv Standard deviation of background departure without bias correction -24 windspeed Average of wind speed -25 windspeed_stdv Standard deviation of wind speed -26 norm_andep Average of normalised analysis fit -27 norm_andep_stdv Standard deviation of normalised analysis fit -28 norm_fgdep Average of normalised background fit -29 norm_fgdep_stdv Standard deviation of normalised background fit -30 fso Average of forecast sensitivity to observations -31 fso_stdv stdv of forecast sensitivity to observations -32 norm_obs Average of normalised observation -33 norm_obs_stdv stdv of normalised observation -34 anso Average of analyse sensitivity to observations -35 anso_stdv stdv of analyse sensitivity to observations -40 fcst_dep1 Average of forecast departure for step 1 -41 fcst_dep1_stdv Standard deviation of forecast departure for step 1 -42 fcst_dep2 Average of forecast departure for step 2 -43 fcst_dep2_stdv Standard deviation of forecast departure for step 2 -44 norm_fcst_dep1 Average of normalised forecast departure for step 1 -45 norm_fcst_dep1_stdv Standard deviation of normalised forecast departure for step 1 -46 norm_fcst_dep2 Average of normalised forecast departure for step 2 -47 norm_fcst_dep2_stdv Standard deviation of normalised forecast departure for step 2 -60 far_rate False alarm rate -62 miss_rate Miss rate -64 hit_rate hit rate -66 corr_nul correct nuls -68 est_fg_err Estimated variance of the first guess error -70 edafgspr EDA first guess variance -72 edaanspr EDA Analysis variance -#36-255 Reserved diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table deleted file mode 100644 index 75ccf290..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.reporttype.table +++ /dev/null @@ -1,185 +0,0 @@ -#Code Table obstat.reporttype: List of Report types -1 TIROS-N TIROS-N -2 NOAA-6/HIRS NOAA-6/HIRS -3 NOAA-7/HIRS NOAA-7/HIRS -4 NOAA-8/HIRS NOAA-8/HIRS -5 NOAA-9/HIRS NOAA-9/HIRS -6 NOAA-10/HIRS NOAA-10/HIRS -7 NOAA-11/HIRS NOAA-11/HIRS -8 NOAA-12/HIRS NOAA-12/HIRS -9 NOAA-14/HIRS NOAA-14/HIRS -10 NOAA-15/HIRS NOAA-15/HIRS -11 NOAA-16/HIRS NOAA-16/HIRS -12 NOAA-17/HIRS NOAA-17/HIRS -13 NOAA-18/HIRS NOAA-18/HIRS -14 NOAA-19/HIRS NOAA-19/HIRS -15 METOP-A/HIRS METOP-A/HIRS -1001 NOAA-15/AMSUA NOAA-15/AMSUA -1002 NOAA-16/AMSUA NOAA-16/AMSUA -1003 NOAA-17/AMSUA NOAA-17/AMSUA -1004 NOAA-18/AMSUA NOAA-18/AMSUA -1005 NOAA-19/AMSUA NOAA-19/AMSUA -1006 NOAA-19/AMSUA NOAA-19/AMSUA -1007 METOP-A/AMSUA METOP-A/AMSUA -1008 AQUA/AMSUA AQUA/AMSUA -2001 NOAA-15/AMSUB NOAA-15/AMSUB -2002 NOAA-16/AMSUB NOAA-16/AMSUB -2003 NOAA-17/AMSUB NOAA-17/AMSUB -2004 NOAA-18/AMSUB NOAA-18/AMSUB -2005 NOAA-18/AMSUB NOAA-18/AMSUB -3001 NOAA-19/MHS NOAA-19/MHS -3002 METOP-A/MHS METOP-A/MHS -4001 GOES-5/IMAGER GOES-5/IMAGER -4002 GOES-8/IMAGER GOES-8/IMAGER -4003 GOES-9/IMAGER GOES-9/IMAGER -4004 GOES-10/IMAGER GOES-10/IMAGER -4005 GOES-11/IMAGER GOES-11/IMAGER -4006 GOES-12/IMAGER GOES-12/IMAGER -4007 METEOSAT-7/MVIRI METEOSAT-7/MVIRI -4008 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI -4009 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI -4010 MTSAT-1R/IMAGER MTSAT-1R/IMAGER -5001 ERS-2/GOME ERS-2/GOME -5002 METEOSAT-8/SEVIRI METEOSAT-8/SEVIRI -5003 METEOSAT-9/SEVIRI METEOSAT-9/SEVIRI -5004 AURA/MLS AURA/MLS -5005 AURA/OMI AURA/OMI -5006 NOAA-9/SBUV NOAA-9/SBUV -5007 NOAA-11/SBUV NOAA-11/SBUV -5008 NOAA-14/SBUV NOAA-14/SBUV -5009 NOAA-16/SBUV NOAA-16/SBUV -5010 NOAA-17/SBUV NOAA-17/SBUV -5011 NOAA-18/SBUV NOAA-18/SBUV -5012 NOAA-19/SBUV NOAA-19/SBUV -5013 METOP-A/GOME-2 METOP-A/GOME-2 -5014 ENVISAT/SCIAMACHY ENVISAT/SCIAMACHY -5015 ENVISAT/GOMOS ENVISAT/GOMOS -5016 ENVISAT/MIPAS ENVISAT/MIPAS -5017 Metror-3/TOMS Metror-3/TOMS -5018 Nimbus-7/TOMS Nimbus-7/TOMS -6001 ENVISAT/GOMOS ENVISAT/GOMOS -6002 ENVISAT/MERIS ENVISAT/MERIS -7001 METOP-A/GRAS METOP-A/GRAS -7002 CHAMP CHAMP -7003 GRACE-A GRACE-A -7004 COSMIC-1 COSMIC-1 -7005 COSMIC-2 COSMIC-2 -7006 COSMIC-3 COSMIC-3 -7007 COSMIC-4 COSMIC-4 -7008 COSMIC-5 COSMIC-5 -7009 COSMIC-6 COSMIC-6 -8001 METEOSAT-2/AMV METEOSAT-2/AMV -8002 METEOSAT-3/AMV METEOSAT-3/AMV -8003 METEOSAT-4/AMV METEOSAT-4/AMV -8014 METEOSAT-5/AMV METEOSAT-5/AMV -8005 METEOSAT-6/AMV METEOSAT-6/AMV -8006 METEOSAT-7/AMV METEOSAT-7/AMV -8007 METEOSAT-8/AMV METEOSAT-8/AMV -8008 METEOSAT-9/AMV METEOSAT-9/AMV -8009 GMS-5/AMV GMS-5/AMV -8010 MTSAT-1R/AMV MTSAT-1R/AMV -8011 GOES-9/WV GOES-9/WV -8012 GOES-10/AMV GOES-10/AMV -8013 GOES-11/AMV GOES-11/AMV -8014 GOES-12/AMV GOES-12/AMV -8015 NOAA-15/AVHRR NOAA-15/AVHRR -8016 NOAA-16/AVHRR NOAA-16/AVHRR -8017 NOAA-17/AVHRR NOAA-17/AVHRR -8018 NOAA-18/AVHRR NOAA-18/AVHRR -8019 NOAA-19/AVHRR NOAA-19/AVHRR -8020 TERRA/MODIS TERRA/MODIS -8021 AQUA/MODIS AQUA/MODIS -8022 FY-2C/IR FY-2C/IR -9001 ERS/SCATT ERS/SCATT -9002 ERS/SCATT ERS/SCATT -9003 ERS-2/SCATT ERS-2/SCATT -9004 QuickSCAT/SeaWind QuickSCAT/SeaWind -9005 METOP-A/ASCAT METOP-A/ASCAT -10001 DSMP-7/SSMI DSMP-7/SSMI -10002 DSMP-8/SSMI DSMP-8/SSMI -10003 DSMP-9/SSMI DSMP-9/SSMI -10004 DSMP-10/SSMI DSMP-10/SSMI -10005 DSMP-11/SSMI DSMP-11/SSMI -10006 DSMP-13/SSMI DSMP-13/SSMI -10007 DSMP-14/SSMI DSMP-14/SSMI -10008 DSMP-15/SSMI DSMP-15/SSMI -10009 DSMP-8/SSMI DSMP-8/SSMI -10010 DSMP-9/SSMI DSMP-9/SSMI -10011 DSMP-10/SSMI DSMP-10/SSMI -10012 DSMP-11/SSMI DSMP-11/SSMI -10013 DSMP-13/SSMI DSMP-13/SSMI -10014 DSMP-14/SSMI DSMP-14/SSMI -10015 DSMP-15/SSMI DSMP-15/SSMI -11001 METOP-A/IASI METOP-A/IASI -12001 AQUA/AIRS AQUA/AIRS -13001 DMSP-16/SSMIS DMSP-16/SSMIS -14001 TRMM/TMI TRMM/TMI -15001 AQUA/AMSRE AQUA/AMSRE -16001 Automatic-Land Automatic-Land -16002 Manual-Land Manual-Land -16003 Abbreviated-SYNOP Abbreviated-SYNOP -16004 METAR METAR -16005 DRIBU DRIBU -16006 Automatic-SHIP Automatic-SHIP -16007 Reduced-SHIP Reduced-SHIP -16008 SHIP SHIP -16009 Abbreviated-SHIP Abbreviated-SHIP -16010 DRIBU-BATHY DRIBU-BATHY -16011 DRIBU-TESAC DRIBU-TESAC -16012 Ground-Based-GPS Ground-Based-GPS -16013 Land-PILOT Land-PILOT -16014 PILOT-SHIP PILOT-SHIP -16015 American-WindProfilers American-WindProfilers -16016 American-WindProfilers American-WindProfilers -16017 European-WindProfilers European-WindProfilers -16018 Japanese-WindProfilers Japanese-WindProfilers -16019 TEMP-SHIP TEMP-SHIP -16020 DROP-Sonde DROP-Sonde -16021 Mobile-TEMP Mobile-TEMP -16022 Land-TEMP Land-TEMP -16023 ROCOB-TEMP ROCOB-TEMP -16024 SHIP-ROCOB SHIP-ROCOB -16025 European-WindProfilers European-WindProfilers -16026 AIREP AIREP -16027 CODAR CODAR -16028 COLBA COLBA -16029 AMDAR AMDAR -16030 ACARS ACARS -16031 PAOB PAOB -16032 PAOB PAOB -16033 SATOB_Temperature SATOB_Temperature -16034 SATOB_Wind SATOB_Wind -16035 SATOB_Temperature SATOB_Temperature -16036 SATOB_Temperature SATOB_Temperature -16037 SATEM_500km SATEM_500km -16038 SATEM_500km SATEM_500km -16039 SATEM_500km SATEM_500km -16040 SATEM_500km SATEM_500km -16041 SATEM_250km SATEM_250km -16042 SATEM_250km SATEM_250km -16043 SATEM_250km SATEM_250km -16044 SATEM_250km SATEM_250km -17001 Automatic_Land Automatic_Land -17002 Manual_Land Manual_Land -17003 Abbreviated_SYNOP Abbreviated_SYNOP -17004 METAR METAR -17005 DRIBU DRIBU -17006 Automatic_SHIP Automatic_SHIP -17007 Reduced_SHIP Reduced_SHIP -17008 SHIP SHIP -17009 Abbreviated-SHIP Abbreviated-SHIP -17010 DRIBU-BATHY DRIBU-BATHY -17011 DRIBU-TESAC DRIBU-TESAC -17012 Ground-Based_GPS Ground-Based_GPS -17013 Land-PILOT Land-PILOT -17014 PILOT-SHIP PILOT-SHIP -17015 American-Wind American-Wind -17016 American-Wind American-Wind -17017 European-Wind European-Wind -17018 Japanese-Wind Japanese-Wind -17019 TEMP-SHIP TEMP-SHIP -17020 DROP-Sonde DROP-Sonde -17021 Mobile-TEMP Mobile-TEMP -17022 Land-TEMP Land-TEMP -17023 ROCOB-TEMP ROCOB-TEMP -17024 SHIP-ROCOB SHIP-ROCOB diff --git a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table b/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table deleted file mode 100644 index cb80dc4e..00000000 --- a/eccodes/definitions.save/grib3/tables/local/ecmf/obstat.varno.table +++ /dev/null @@ -1,31 +0,0 @@ -#Code Table obstat.4.0: List of variable number -110 P Pressure (Pa) - 1 Z Geopotential height (m) - 57 Z Geopotential height (m) - 3 U zonal component of wind (m/s) - 4 V meridional component of wind (m/s) - 41 10mU 10 m zonal component of wind (m/s) - 42 10mV 10 m meridional component of wind (m/s) -125 Amb_10mU 10 m zonal ambiguous component of wind (m/s) -124 Amb_10mV 10 m meridional ambiguous component of wind (m/s) -111 DD wind direction (DD) degree -112 FF wind speed (FF) m/s - 2 T Temperature (K) - 39 T2m 2m temperature (K) - 59 DewPT Dew point temperature (K) -119 BT Brightness temperature (K) - 7 SHU specific humidity (Kg/kg) - 9 PWC precipitable water content (Kg/m2) - 58 RH 2m relative humidity (%) -123 LWC liquid water content (Kg/m2) -206 Ozone integrated ozone density (O3) DU -128 Path_delay Atmospheric path delay -162 Bending_Angle Bending Angle (Alpha) Radians -174 Aerosol Aerosol -181 NO2 Nitrogen dioxide (NO2) -182 SO2 Sulphur dioxide (SO2) -183 CO Carbon monoxide (CO) -184 HCHO Formaldehyde (HCHO) -185 GO3 GEMS ozone (GO3) -186 CO2 Carbone dioxide (CO2) -188 CH4 Methane (CH4) diff --git a/eccodes/definitions.save/grib3/template.10.0.def b/eccodes/definitions.save/grib3/template.10.0.def deleted file mode 100644 index 96685a9c..00000000 --- a/eccodes/definitions.save/grib3/template.10.0.def +++ /dev/null @@ -1,41 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 10.0, Grid point data - simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) - -meta codedValues data_g2simple_packing( - section10Length, - offsetBeforeData, - offsetSection10, - unitsFactor, - unitsBias, - changingPrecision, - numberOfValues, - bitsPerValue, - referenceValue, - binaryScaleFactor, - decimalScaleFactor, - optimizeScaleFactor -): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; - -meta packingError simple_packing_error(bitsPerValue,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; -meta unpackedError simple_packing_error(zero,binaryScaleFactor,decimalScaleFactor,referenceValue,ieee) : no_copy; - -alias data.packedValues=codedValues; - -template statistics "common/statistics_grid.def"; diff --git a/eccodes/definitions.save/grib3/template.3.0.def b/eccodes/definitions.save/grib3/template.3.0.def deleted file mode 100644 index bf36bce1..00000000 --- a/eccodes/definitions.save/grib3/template.3.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 3.0, Forecast point in time - -# Forecast point in time -include "grib3/template.component.3.0.def"; diff --git a/eccodes/definitions.save/grib3/template.3.110.def b/eccodes/definitions.save/grib3/template.3.110.def deleted file mode 100644 index 480f5045..00000000 --- a/eccodes/definitions.save/grib3/template.3.110.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- 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. -# - - -# TEMPLATE 3.110, Equatorial azimuthal equidistant projection -include "grib2/template.3.shape_of_the_earth.def"; - -# Nx - number of points along X-axis -unsigned[4] numberOfPointsAlongXAxis : dump ; - -alias Nx = numberOfPointsAlongXAxis; -# Ny - number of points along Y-axis -unsigned[4] numberOfPointsAlongYAxis : dump ; - -alias Ny = numberOfPointsAlongYAxis; -# La1 - latitude of tangency point -# (centre of grid) -signed[4] latitudeOfTangencyPoint : dump ; - -alias La1 = latitudeOfTangencyPoint; -# Lo1 - longitude of tangency point -unsigned[4] longitudeOfTangencyPoint : dump ; - -alias Lo1 = longitudeOfTangencyPoint; -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; - -# Dx - X-direction grid length in units of 10 -3 m as measured at the point of the axis -unsigned[4] Dx : dump ; - -# Dy - Y-direction grid length in units of 10 -3 m as measured at the point of the axis -unsigned[4] Dy : dump ; - -# Projection centre flag -unsigned[1] projectionCentreFlag : dump ; - -include "grib2/template.3.scanning_mode.def"; - diff --git a/eccodes/definitions.save/grib3/template.3.140.def b/eccodes/definitions.save/grib3/template.3.140.def deleted file mode 100644 index 58ce8901..00000000 --- a/eccodes/definitions.save/grib3/template.3.140.def +++ /dev/null @@ -1,71 +0,0 @@ -# (C) Copyright 2005- 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 2/template.3.140 ---------------------------------------------------------------------- -# TEMPLATE 3.140, Lambert azimuthal equal area projection -include "grib2/template.3.shape_of_the_earth.def"; - -# Nx - number of points along X-axis -unsigned[4] numberOfPointsAlongXAxis : dump ; -alias Nx = numberOfPointsAlongXAxis; - -# Ny - number of points along Y-axis -unsigned[4] numberOfPointsAlongYAxis : dump ; -alias Ny = numberOfPointsAlongYAxis; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint: edition_specific ; -alias La1 = latitudeOfFirstGridPoint; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint - ,one,grib3divider,truncateDegrees) : dump; -#meta latitudeOfFirstGridPointInMicrodegrees times(latitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor): no_copy; - -# Lo1 - longitude of first grid point -signed[4] longitudeOfFirstGridPoint: edition_specific ; -alias La1 = longitudeOfFirstGridPoint; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint - ,one,grib3divider,truncateDegrees) : dump; -#meta longitudeOfFirstGridPointInMicrodegrees times(longitudeOfFirstGridPoint,mAngleMultiplier,angleDivisor) : no_copy; - -signed[4] standardParallelInMicrodegrees : dump; -alias standardParallel=standardParallelInMicrodegrees; - -signed[4] centralLongitudeInMicrodegrees : dump; -alias centralLongitude=centralLongitudeInMicrodegrees; - -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; - -# Dx - X-direction grid length in millimetres -unsigned[4] xDirectionGridLengthInMillimetres : dump ; -alias Dx = xDirectionGridLengthInMillimetres ; - -# Dy - Y-direction grid length in millimetres -unsigned[4] yDirectionGridLengthInMillimetres : dump ; -alias Dy = yDirectionGridLengthInMillimetres ; - -include "grib2/template.3.scanning_mode.def"; - -iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, - radius,Nx,Ny, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - standardParallel,centralLongitude, - Dx,Dy, - iScansNegatively, - jScansPositively, - jPointsAreConsecutive, - alternativeRowScanning); - -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); - -# END 2/template.3.140 ---------------------------------------------------------------------- diff --git a/eccodes/definitions.save/grib3/template.3.20.def b/eccodes/definitions.save/grib3/template.3.20.def deleted file mode 100644 index af4afaae..00000000 --- a/eccodes/definitions.save/grib3/template.3.20.def +++ /dev/null @@ -1,89 +0,0 @@ -# (C) Copyright 2005- 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 2/template.3.20 ---------------------------------------------------------------------- -# TEMPLATE 3.20, Polar stereographic projection -include "grib2/template.3.shape_of_the_earth.def"; -transient oneThousand=1000; - -# Nx - number of points along X-axis -unsigned[4] Nx : dump; -alias Ni = Nx; -alias numberOfPointsAlongXAxis = Nx; -alias geography.Nx=Nx; - -# Ny - number of points along Y-axis -unsigned[4] Ny : dump; -alias Nj = Ny; -alias numberOfPointsAlongYAxis = Ny; -alias geography.Ny=Ny; - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific ; -meta geography.latitudeOfFirstGridPointInDegrees scale(latitudeOfFirstGridPoint,oneConstant,grib3divider,truncateDegrees) : dump; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoint,oneConstant,grib3divider,truncateDegrees) : dump; -alias Lo1 = longitudeOfFirstGridPoint; - -# Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; - -# LaD - Latitude where Dx and Dy are specified -signed[4] LaD : edition_specific; -alias latitudeWhereDxAndDyAreSpecified=LaD; -meta geography.LaDInDegrees scale(LaD,oneConstant,grib3divider,truncateDegrees) : dump; -alias latitudeWhereDxAndDyAreSpecifiedInDegrees=LaDInDegrees; - -# LoV - orientation of the grid -# LoV is the longitude value of the meridian which is parallel to the y-axis (or columns of the grid) -# along which latitude increases as the y-coordinate increases -signed[4] orientationOfTheGrid : edition_specific; -alias LoV = orientationOfTheGrid ; -meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib3divider,truncateDegrees) : dump; - -# Dx - X-direction grid length -# Grid length is in units of 10-3 m at the latitude specified by LaD -unsigned[4] Dx : edition_specific; -meta geography.DxInMetres scale(Dx,one,thousand,truncateDegrees) : dump; -alias xDirectionGridLength=Dx; - -# Dy - Y-direction grid length -# Grid length is in units of 10-3 m at the latitude specified by LaD -unsigned[4] Dy : edition_specific; -meta geography.DyInMetres scale(Dy,one,thousand,truncateDegrees) : dump; -alias yDirectionGridLength=Dy; - -# Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -# If bit 1 is 0, then the North Pole is on the projection plane -# If bit 1 is 1, then the South Pole is on the projection plane -flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 - -include "grib2/template.3.scanning_mode.def"; - - -iterator polar_stereographic(numberOfPoints,missingValue,values, - radius,Nx,Ny, - latitudeOfFirstGridPointInDegrees,longitudeOfFirstGridPointInDegrees, - southPoleOnProjectionPlane, - orientationOfTheGridInDegrees, - LaDInDegrees, - DxInMetres,DyInMetres, - iScansNegatively, - jScansPositively, - jPointsAreConsecutive, - alternativeRowScanning); - - -# END 2/template.3.20 ---------------------------------------------------------------------- diff --git a/eccodes/definitions.save/grib3/template.3.resolution_flags.def b/eccodes/definitions.save/grib3/template.3.resolution_flags.def deleted file mode 100644 index 41b11dfe..00000000 --- a/eccodes/definitions.save/grib3/template.3.resolution_flags.def +++ /dev/null @@ -1,46 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; - -# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 -# (most significant to least significant) - -flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; -flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); -flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); -flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); -flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; -flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; - -concept ijDirectionIncrementGiven { - '1' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 0; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 0; - } -} - -alias DiGiven=iDirectionIncrementGiven; -alias DjGiven=jDirectionIncrementGiven; - diff --git a/eccodes/definitions.save/grib3/template.4.0.def b/eccodes/definitions.save/grib3/template.4.0.def deleted file mode 100644 index 8fa46dee..00000000 --- a/eccodes/definitions.save/grib3/template.4.0.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.0, Latitude/longitude regular grid on ellipsoidal planet - -# Ellipsoid of revolution defined with axis lengths -include "grib3/template.component.4.0.def"; - -# Latitude/longitude regular grid -include "grib3/template.component.4.1.def"; diff --git a/eccodes/definitions.save/grib3/template.4.1.def b/eccodes/definitions.save/grib3/template.4.1.def deleted file mode 100644 index 477162a6..00000000 --- a/eccodes/definitions.save/grib3/template.4.1.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.1, Rotated latitude/longitude regular grid on ellipsoidal planet - -# Ellipsoid of revolution defined with axis lengths -include "grib3/template.component.4.0.def" - -# Latitude/longitude regular grid -include "grib3/template.component.4.1.def" - -# Rotation of latitude/longitude coordinate system -include "grib3/template.component.4.2.def" diff --git a/eccodes/definitions.save/grib3/template.4.2.def b/eccodes/definitions.save/grib3/template.4.2.def deleted file mode 100644 index 474ef1c3..00000000 --- a/eccodes/definitions.save/grib3/template.4.2.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.2, Stretched latitude/longitude regular grid on ellipsoidal planet - -# Ellipsoid of revolution defined with axis lengths -include "grib3/template.component.4.0.def" - -# Latitude/longitude regular grid -include "grib3/template.component.4.1.def" - -# Stretching of latitude/longitude coordinate system -include "grib3/template.component.4.3.def" diff --git a/eccodes/definitions.save/grib3/template.4.3.def b/eccodes/definitions.save/grib3/template.4.3.def deleted file mode 100644 index 93099694..00000000 --- a/eccodes/definitions.save/grib3/template.4.3.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 4.3, Stretched and rotated latitude/longitude regular grid on ellipsoidal planet - -# Ellipsoid of revolution defined with axis lengths -include "grib3/template.component.4.0.def" - -# Latitude/longitude regular grid -include "grib3/template.component.4.1.def" - -# Rotation of latitude/longitude coordinate system -include "grib3/template.component.4.2.def" - -# Stretching of latitude/longitude coordinate system -include "grib3/template.component.4.3.def" diff --git a/eccodes/definitions.save/grib3/template.4.horizontal.def b/eccodes/definitions.save/grib3/template.4.horizontal.def deleted file mode 100755 index bc259c77..00000000 --- a/eccodes/definitions.save/grib3/template.4.horizontal.def +++ /dev/null @@ -1,133 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Type of first fixed surface -codetable[1] typeOfFirstFixedSurface ('4.5.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; -meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; -meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; - -# Scale factor of first fixed surface -signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of first fixed surface -unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Type of second fixed surface -codetable[1] typeOfSecondFixedSurface ('4.5.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; -meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; -meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; - -# Scale factor of second fixed surface -signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of second fixed surface -unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -transient pressureUnits="hPa"; - -concept_nofail vertical.typeOfLevel (unknown) { -#set uses the last one -#get returns the first match - 'surface' = { typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } - 'cloudBase' = { typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255; } - 'cloudTop' = { typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255; } - 'isothermZero' = { typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255; } - 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255; } - 'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} - 'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} - 'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255; } - 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} - 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} - 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa'; } - 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} - 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} - 'meanSea' = { typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255; } - 'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} - 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} - 'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} - 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103;typeOfSecondFixedSurface=103;} - 'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} - 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} - 'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} - 'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} - 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } - 'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} - 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} - 'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} - 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} - 'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} - 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108;typeOfSecondFixedSurface=108;} - 'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} - 'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} - -# In the case of Generalized vertical height coordinates, NV must be 6 - 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} - 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} - - 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} - 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} - 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} - 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} - 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} -} - -alias levelType=typeOfFirstFixedSurface; - -if (typeOfSecondFixedSurface == 255) { - # Only one surface - meta level g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - transient bottomLevel=level; # Do not use alias (see GRIB-725) - transient topLevel=level; -} else { - # Two surfaces - meta topLevel g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - meta bottomLevel g2level(typeOfSecondFixedSurface, - scaleFactorOfSecondFixedSurface, - scaledValueOfSecondFixedSurface, - pressureUnits) :dump; - alias level=topLevel; # (see GRIB-725) -} -alias ls.level=level; -alias vertical.level=level; -alias vertical.bottomLevel=bottomLevel; -alias vertical.topLevel=topLevel; - -alias extraDim=zero; -if (defined(extraDimensionPresent)) { - if (extraDimensionPresent) { - alias extraDim=one; - } -} -if (extraDim) { - alias mars.levelist = dimension; - alias mars.levtype = dimensionType; -} else { - # See GRIB-74 why we store the pressureUnits in a transient - transient tempPressureUnits=pressureUnits; - if (!(typeOfLevel is "surface")) { - if (tempPressureUnits is "Pa") { - meta marsLevel scale(level,one,hundred) : read_only; - alias mars.levelist=marsLevel; - } else { - alias mars.levelist = level; - } - } - alias mars.levtype = typeOfFirstFixedSurface; - # GRIB-372: levelist alias does not pertain to surface parameters - if (levtype is "sfc") { - unalias mars.levelist; - } -} -alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions.save/grib3/template.4.resolution_flags.def b/eccodes/definitions.save/grib3/template.4.resolution_flags.def deleted file mode 100644 index 41b11dfe..00000000 --- a/eccodes/definitions.save/grib3/template.4.resolution_flags.def +++ /dev/null @@ -1,46 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; - -# Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 -# (most significant to least significant) - -flagbit resolutionAndComponentFlags1(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags2(resolutionAndComponentFlags,6) = 0: read_only; -flagbit iDirectionIncrementGiven(resolutionAndComponentFlags,5); -flagbit jDirectionIncrementGiven(resolutionAndComponentFlags,4); -flagbit uvRelativeToGrid(resolutionAndComponentFlags,3); -flagbit resolutionAndComponentFlags6(resolutionAndComponentFlags,7) = 0: read_only; -flagbit resolutionAndComponentFlags7(resolutionAndComponentFlags,6) = 0: read_only; -flagbit resolutionAndComponentFlags8(resolutionAndComponentFlags,6) = 0: read_only; - -concept ijDirectionIncrementGiven { - '1' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 1; - jDirectionIncrementGiven = 0; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 1; - } - '0' = { - iDirectionIncrementGiven = 0; - jDirectionIncrementGiven = 0; - } -} - -alias DiGiven=iDirectionIncrementGiven; -alias DjGiven=jDirectionIncrementGiven; - diff --git a/eccodes/definitions.save/grib3/template.4.scanning_mode.def b/eccodes/definitions.save/grib3/template.4.scanning_mode.def deleted file mode 100644 index 718e2eda..00000000 --- a/eccodes/definitions.save/grib3/template.4.scanning_mode.def +++ /dev/null @@ -1,45 +0,0 @@ -# (C) Copyright 2005- 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. -# - -flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; - -# Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 -flagbit iScansNegatively(scanningMode,7) : dump; # WMO bit 1 -flagbit jScansPositively(scanningMode,6) : dump; # WMO bit 2 -flagbit jPointsAreConsecutive(scanningMode,5) : dump; -flagbit alternativeRowScanning(scanningMode,4) = 0 : edition_specific,dump; - -if (jPointsAreConsecutive) { - alias numberOfRows=Ni; - alias numberOfColumns=Nj; -} else { - alias numberOfRows=Nj; - alias numberOfColumns=Ni; -} - -alias geography.iScansNegatively=iScansNegatively; -alias geography.jScansPositively=jScansPositively; -alias geography.jPointsAreConsecutive=jPointsAreConsecutive; - -transient iScansPositively = !iScansNegatively : constraint; - -flagbit scanningMode5(scanningMode,3) = 0: read_only; -flagbit scanningMode6(scanningMode,2) = 0: read_only; -flagbit scanningMode7(scanningMode,1) = 0: read_only; -flagbit scanningMode8(scanningMode,0) = 0: read_only; - -meta swapScanningX change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - xFirst,xLast,x) : edition_specific,hidden,no_copy; -alias swapScanningLon = swapScanningX; - -meta swapScanningY change_scanning_direction( values,Ni,Nj, - iScansNegatively,jScansPositively, - yFirst,yLast,y) : edition_specific,hidden,no_copy; -alias swapScanningLat = swapScanningY; diff --git a/eccodes/definitions.save/grib3/template.5.0.def b/eccodes/definitions.save/grib3/template.5.0.def deleted file mode 100644 index dd15efcb..00000000 --- a/eccodes/definitions.save/grib3/template.5.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 5.0, Vertical level - -# Vertical level -include "grib3/template.component.5.0.def"; diff --git a/eccodes/definitions.save/grib3/template.5.1.def b/eccodes/definitions.save/grib3/template.5.1.def deleted file mode 100644 index b2f4041b..00000000 --- a/eccodes/definitions.save/grib3/template.5.1.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 5.1, Vertical layer - -# Vertical layer -include "grib3/template.component.5.1.def"; diff --git a/eccodes/definitions.save/grib3/template.6.0.def b/eccodes/definitions.save/grib3/template.6.0.def deleted file mode 100644 index f30084b0..00000000 --- a/eccodes/definitions.save/grib3/template.6.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 6.0, Forecast, analysis or observation - -# Process type and identifier -include "grib3/template.component.6.0.def"; diff --git a/eccodes/definitions.save/grib3/template.6.1.def b/eccodes/definitions.save/grib3/template.6.1.def deleted file mode 100644 index 5f9e77fa..00000000 --- a/eccodes/definitions.save/grib3/template.6.1.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 6.1, Individual ensemble forecast or analysis - -# Process type and identifier -include "grib3/template.component.6.0.def"; - -# Ensemble size -include "grib3/template.component.6.1.def"; - -# Ensemble member -include "grib3/template.component.6.2.def"; diff --git a/eccodes/definitions.save/grib3/template.6.2.def b/eccodes/definitions.save/grib3/template.6.2.def deleted file mode 100644 index 6fd511fd..00000000 --- a/eccodes/definitions.save/grib3/template.6.2.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 6.2, Statistical post-processing of all ensemble members - -# Process type and identifier -include "grib3/template.component.6.0.def"; - -# Ensemble size -include "grib3/template.component.6.1.def"; - -# Statistical post-processing of ensemble members -include "grib3/template.component.6.3.def"; diff --git a/eccodes/definitions.save/grib3/template.7.0.def b/eccodes/definitions.save/grib3/template.7.0.def deleted file mode 100644 index ab6c102d..00000000 --- a/eccodes/definitions.save/grib3/template.7.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 7.0, Observable property by discipline, category and number - -# Observable property by discipline, category and number -include "grib3/template.component.7.0.def"; diff --git a/eccodes/definitions.save/grib3/template.7.1.def b/eccodes/definitions.save/grib3/template.7.1.def deleted file mode 100644 index e101423a..00000000 --- a/eccodes/definitions.save/grib3/template.7.1.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 7.1, Observable Property with units conversion - -# Observable property by discipline, category and number -include "grib3/template.component.7.0.def"; - -# Units conversion -include "grib3/template.component.7.1.def"; diff --git a/eccodes/definitions.save/grib3/template.7.2.def b/eccodes/definitions.save/grib3/template.7.2.def deleted file mode 100644 index 8ed124fb..00000000 --- a/eccodes/definitions.save/grib3/template.7.2.def +++ /dev/null @@ -1,16 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 7.2, Atmospheric chemical or physical constituents - -# Observable property by discipline, category and number -include "grib3/template.component.7.0.def"; - -# Chemical or physical constituents -include "grib3/template.component.7.2.def"; diff --git a/eccodes/definitions.save/grib3/template.7.3.def b/eccodes/definitions.save/grib3/template.7.3.def deleted file mode 100644 index c5470746..00000000 --- a/eccodes/definitions.save/grib3/template.7.3.def +++ /dev/null @@ -1,19 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 7.3, Aerosol physical property - -# Observable property by discipline, category and number -include "grib3/template.component.7.0.def"; - -# Chemical or physical constituents -include "grib3/template.component.7.2.def"; - -# Aerosol size -include "grib3/template.component.7.3.def"; diff --git a/eccodes/definitions.save/grib3/template.7.4.def b/eccodes/definitions.save/grib3/template.7.4.def deleted file mode 100644 index 4bb1b150..00000000 --- a/eccodes/definitions.save/grib3/template.7.4.def +++ /dev/null @@ -1,22 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 7.4, Aerosol optical property - -# Observable property by discipline, category and number -include "grib3/template.component.7.0.def"; - -# Chemical or physical constituents -include "grib3/template.component.7.2.def"; - -# Aerosol size -include "grib3/template.component.7.3.def"; - -# Radiation wavelength interval -include "grib3/template.component.7.4.def"; diff --git a/eccodes/definitions.save/grib3/template.8.0.def b/eccodes/definitions.save/grib3/template.8.0.def deleted file mode 100644 index 3a9a0fff..00000000 --- a/eccodes/definitions.save/grib3/template.8.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 8.0, Simple packing - -# Simple packing -include "grib3/template.component.8.0.def"; diff --git a/eccodes/definitions.save/grib3/template.8.1.def b/eccodes/definitions.save/grib3/template.8.1.def deleted file mode 100644 index c05cebe0..00000000 --- a/eccodes/definitions.save/grib3/template.8.1.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 8.1, IEEE floating point - -# IEEE floating point -include "grib3/template.component.8.1.def"; diff --git a/eccodes/definitions.save/grib3/template.8.missing_value.def b/eccodes/definitions.save/grib3/template.8.missing_value.def deleted file mode 100755 index 9ebab198..00000000 --- a/eccodes/definitions.save/grib3/template.8.missing_value.def +++ /dev/null @@ -1,15 +0,0 @@ -# Missing value management - -# Management of explicitly missing values is an alternative to bit-map use -# within the Overlay Section. -# It is intended to reduce the whole GRIB message size and to provide better -# performance when decoding data with missing values - -# default = 0 means No explicit missing values included within data values -codetable[1] missingValueManagementUsed ('8.2.table',masterDir,localDir)=0; - -# Primary missing value substitute -unsigned[4] primaryMissingValueSubstitute; - -# Secondary missing value substitute -unsigned[4] secondaryMissingValueSubstitute; diff --git a/eccodes/definitions.save/grib3/template.8.original_values.def b/eccodes/definitions.save/grib3/template.8.original_values.def deleted file mode 100644 index 36e74f7e..00000000 --- a/eccodes/definitions.save/grib3/template.8.original_values.def +++ /dev/null @@ -1,2 +0,0 @@ -# Type of original field values -codetable[1] typeOfOriginalFieldValues ('8.1.table',masterDir,localDir) = 0; # Default set to floating diff --git a/eccodes/definitions.save/grib3/template.8.packing.def b/eccodes/definitions.save/grib3/template.8.packing.def deleted file mode 100755 index 218095b8..00000000 --- a/eccodes/definitions.save/grib3/template.8.packing.def +++ /dev/null @@ -1,17 +0,0 @@ -# Reference value (R) -# The copy_ok means that the value is copied when changing the representation -# e.g. from jpeg to simple packing. -ieeefloat referenceValue : read_only, copy_ok; -meta referenceValueError reference_value_error(referenceValue,ieee); - -# Binary scale factor (E) -signed[2] binaryScaleFactor : read_only, copy_ok; - -# Decimal scale factor (D) -signed[2] decimalScaleFactor ; - -# Number of bits used for each packed value for simple packing, or for each group reference -# value for complex packing or spatial differencing -unsigned[1] bitsPerValue; -alias numberOfBits = bitsPerValue; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; diff --git a/eccodes/definitions.save/grib3/template.9.0.def b/eccodes/definitions.save/grib3/template.9.0.def deleted file mode 100644 index 9c5dfd50..00000000 --- a/eccodes/definitions.save/grib3/template.9.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# (C) Copyright 2005- 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. -# - -# TEMPLATE 9.0, Bitmap - -# Bitmap -include "grib3/template.component.9.0.def"; diff --git a/eccodes/definitions.save/grib3/template.component.3.0.def b/eccodes/definitions.save/grib3/template.component.3.0.def deleted file mode 100644 index 18528248..00000000 --- a/eccodes/definitions.save/grib3/template.component.3.0.def +++ /dev/null @@ -1,17 +0,0 @@ -# Time Domain Template Component 3.0 - Forecast point in time - -# Hours of observational data cut-off after reference time -# Note: Hours greater than 65534 will be coded as 65534 -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('3.3.table',masterDir,localDir) : dump; -codetable[1] stepUnits 'stepUnits.table' = 1 : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/eccodes/definitions.save/grib3/template.component.4.0.def b/eccodes/definitions.save/grib3/template.component.4.0.def deleted file mode 100644 index 179c6a8f..00000000 --- a/eccodes/definitions.save/grib3/template.component.4.0.def +++ /dev/null @@ -1,25 +0,0 @@ -# Horizontal Domain Template Component 4.0 - Ellipsoid of revolution defined with axis lengths - -# Scale factor of length of semi-major axis -unsigned[1] scaleFactorOfLengthOfSemiMajorAxis = missing() : can_be_missing, edition_specific; - -# Scaled value of length of semi-major axis (equatorial radius) -unsigned[4] scaledValueOfLengthOfSemiMajorAxis = missing(): can_be_missing, edition_specific; - -# Scale factor of prime meridian offset -unsigned[1] scaleFactorOfPrimeMeridianOffset = missing(): can_be_missing, edition_specific; - -# Scaled value of prime meridian offset -# Note: Basic angle of the initial production domain and subdivisions of this basic angle are -# provided to manage cases where the recommended unit of 10^-6 degrees is not applicable -# to describe the extreme longitudes and latitudes, and direction increments. -# For these descriptors, the unit is equal to the ratio of the basic angle and the subdivisions number. -# For ordinary cases, zero and missing values should be coded, equivalent to respective values -# of 1 and 10^6 (10^-6 degrees unit) -unsigned[4] scaledValueOfPrimeMeridianOffset = missing(): can_be_missing, edition_specific; - -# Scale factor of length of semi-minor axis -unsigned[1] scaleFactorOfLengthOfSemiMinorAxis = missing() : can_be_missing, edition_specific; - -# Scaled value of length of semi-minor axis (distance from ellipsoid centre to pole) -unsigned[4] scaledValueOfLengthOfSemiMinorAxis = missing() : can_be_missing, edition_specific; diff --git a/eccodes/definitions.save/grib3/template.component.4.1.def b/eccodes/definitions.save/grib3/template.component.4.1.def deleted file mode 100644 index 3fc6ff0c..00000000 --- a/eccodes/definitions.save/grib3/template.component.4.1.def +++ /dev/null @@ -1,133 +0,0 @@ -# Horizontal Domain Template Component 4.1 - Latitude/longitude regular grid - -# Ni - number of points along a parallel -unsigned[4] Ni : dump; # Note: This is for a REGULAR GRID so Ni cannot be missing -alias numberOfPointsAlongAParallel=Ni; -alias Nx = Ni; -alias geography.Ni=Ni; - -# Nj - number of points along a meridian -unsigned[4] Nj : dump; -alias numberOfPointsAlongAMeridian=Nj; -alias Ny = Nj ; -alias geography.Nj=Nj; - -# Basic angle of the initial production domain -unsigned[4] basicAngleOfTheInitialProductionDomain = 0; -transient mBasicAngle=basicAngleOfTheInitialProductionDomain*oneMillionConstant; - -transient angleMultiplier = 1; -transient mAngleMultiplier = 1000000; -when (basicAngleOfTheInitialProductionDomain == 0) { - set angleMultiplier = 1; - set mAngleMultiplier = 1000000; -} else { - set angleMultiplier = basicAngleOfTheInitialProductionDomain; - set mAngleMultiplier = mBasicAngle; -} - -# Subdivisions of basic angle used to define extreme longitudes and latitudes, and direction increments -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing; - -transient angleDivisor = 1000000; -when (missing(subdivisionsOfBasicAngle) || subdivisionsOfBasicAngle == 0) { - set angleDivisor = 1000000; -} else { - set angleDivisor = subdivisionsOfBasicAngle; -} - -# Note: Basic angle of the initial production domain and subdivisions of this basic angle are -# provided to manage cases where the recommended unit of 10^-6 degrees is not applicable -# to describe the extreme longitudes and latitudes, and direction increments. -# For these descriptors, the unit is equal to the ratio of the basic angle and the subdivisions number. -# For ordinary cases, zero and missing values should be coded, equivalent to respective values -# of 1 and 10^6 (10^-6 degrees unit) - -# La1 - latitude of first grid point -signed[4] latitudeOfFirstGridPoint : edition_specific; -alias La1 = latitudeOfFirstGridPoint; - -# Lo1 - longitude of first grid point -signed[4] longitudeOfFirstGridPoint ; -alias Lo1 = longitudeOfFirstGridPoint; - -include "grib3/template.4.resolution_flags.def" - -# La2 - latitude of last grid point -signed[4] latitudeOfLastGridPoint : edition_specific; -alias La2 = latitudeOfLastGridPoint; - -# Lo2 - longitude of last grid point -signed[4] longitudeOfLastGridPoint : edition_specific; -alias Lo2 = longitudeOfLastGridPoint; - -# Di - i direction increment -# Direction increments are unsigned and direction of increment is represented in the scanning mode -unsigned[4] iDirectionIncrement : can_be_missing,edition_specific; -alias Di = iDirectionIncrement; -alias Dx = iDirectionIncrement; - -# Dj - j direction increment -# Direction increments are unsigned and direction of increment is represented in the scanning mode -unsigned[4] jDirectionIncrement : can_be_missing,edition_specific; -alias Dj = jDirectionIncrement; -alias Dy = jDirectionIncrement; - -include "grib3/template.4.scanning_mode.def"; - - -meta g2grid g2grid( - latitudeOfFirstGridPoint, - longitudeOfFirstGridPoint, - latitudeOfLastGridPoint, - longitudeOfLastGridPoint, - iDirectionIncrement, - jDirectionIncrement, - basicAngleOfTheInitialProductionDomain, - subdivisionsOfBasicAngle - ); - -meta geography.latitudeOfFirstGridPointInDegrees g2latlon(g2grid,0) : dump; -meta geography.longitudeOfFirstGridPointInDegrees g2latlon(g2grid,1) : dump; -meta geography.latitudeOfLastGridPointInDegrees g2latlon(g2grid,2) : dump; -meta geography.longitudeOfLastGridPointInDegrees g2latlon(g2grid,3) : dump; - -alias xFirst=longitudeOfFirstGridPointInDegrees; -alias yFirst=latitudeOfFirstGridPointInDegrees; -alias xLast=longitudeOfLastGridPointInDegrees; -alias yLast=latitudeOfLastGridPointInDegrees; - -meta geography.iDirectionIncrementInDegrees g2latlon(g2grid,4, - iDirectionIncrementGiven) : can_be_missing,dump; - -meta geography.jDirectionIncrementInDegrees g2latlon(g2grid,5, - jDirectionIncrementGiven) : can_be_missing,dump; - -alias latitudeFirstInDegrees = latitudeOfFirstGridPointInDegrees; -alias longitudeFirstInDegrees = longitudeOfFirstGridPointInDegrees; -alias latitudeLastInDegrees = latitudeOfLastGridPointInDegrees; -alias longitudeLastInDegrees = longitudeOfLastGridPointInDegrees; -alias DiInDegrees = iDirectionIncrementInDegrees; -alias DxInDegrees = iDirectionIncrementInDegrees; -alias DjInDegrees = jDirectionIncrementInDegrees; -alias DyInDegrees = jDirectionIncrementInDegrees; - -#_if ( missing(Ni) && PLPresent == 1 ) { -# iterator latlon_reduced(numberOfPoints,missingValue,values, -# latitudeFirstInDegrees,longitudeFirstInDegrees, -# latitudeLastInDegrees,longitudeLastInDegrees, -# Nj,DjInDegrees,pl); -# nearest latlon_reduced(values,radius,Nj,pl,longitudeFirstInDegrees,longitudeLastInDegrees); -#} else { -# iterator latlon(numberOfPoints,missingValue,values, -# longitudeFirstInDegrees,DiInDegrees , -# Ni,Nj,iScansNegatively, -# latitudeFirstInDegrees, DjInDegrees,jScansPositively,jPointsAreConsecutive); -# nearest regular(values,radius,Ni,Nj); -#} -meta latLonValues latlonvalues(values); -alias latitudeLongitudeValues=latLonValues; -meta latitudes latitudes(values,0); -meta longitudes longitudes(values,0); -meta distinctLatitudes latitudes(values,1); -meta distinctLongitudes longitudes(values,1); diff --git a/eccodes/definitions.save/grib3/template.component.4.2.def b/eccodes/definitions.save/grib3/template.component.4.2.def deleted file mode 100644 index fd314fea..00000000 --- a/eccodes/definitions.save/grib3/template.component.4.2.def +++ /dev/null @@ -1,21 +0,0 @@ -# Horizontal Domain Template Component 4.2 - Rotation of latitude/longitude coordinates system - -# Latitude of the southern pole of projection -signed[4] latitudeOfSouthernPole : no_copy; -alias latitudeOfTheSouthernPoleOfProjection=latitudeOfSouthernPole; - -# Longitude of the southern pole of projection -unsigned[4] longitudeOfSouthernPole : no_copy; -alias longitudeOfTheSouthernPoleOfProjection=longitudeOfSouthernPole; - -meta geography.latitudeOfSouthernPoleInDegrees scale(latitudeOfSouthernPole, - one,grib3divider,truncateDegrees) : dump; -meta geography.longitudeOfSouthernPoleInDegrees g2lon(longitudeOfSouthernPole) : dump; - -# Angle of rotation of projection -ieeefloat angleOfRotation : dump,edition_specific ; -alias geography.angleOfRotationInDegrees=angleOfRotation; - -alias angleOfRotationOfProjection=angleOfRotation; - -alias isRotatedGrid=one; diff --git a/eccodes/definitions.save/grib3/template.component.4.3.def b/eccodes/definitions.save/grib3/template.component.4.3.def deleted file mode 100644 index ad9ba670..00000000 --- a/eccodes/definitions.save/grib3/template.component.4.3.def +++ /dev/null @@ -1,20 +0,0 @@ -# Horizontal Domain Template Component 4.3 - Stretching of latitude/longitude coordinates system - -label "Stretching information"; - -# Latitude of the pole of stretching -signed[4] latitudeOfThePoleOfStretching : edition_specific,no_copy; - -# Longitude of the pole of stretching -signed[4] longitudeOfThePoleOfStretching : edition_specific,no_copy; - -meta geography.latitudeOfStretchingPoleInDegrees - scale(latitudeOfThePoleOfStretching,oneConstant,grib3divider,truncateDegrees) : dump; -meta geography.longitudeOfStretchingPoleInDegrees - scale(longitudeOfThePoleOfStretching,oneConstant,grib3divider,truncateDegrees) : dump; - -# Stretching factor -unsigned[4] stretchingFactorScaled : edition_specific,no_copy; - -meta geography.stretchingFactor - scale(stretchingFactorScaled,oneConstant,grib3divider) : dump; diff --git a/eccodes/definitions.save/grib3/template.component.5.0.def b/eccodes/definitions.save/grib3/template.component.5.0.def deleted file mode 100644 index 50cbaa55..00000000 --- a/eccodes/definitions.save/grib3/template.component.5.0.def +++ /dev/null @@ -1,91 +0,0 @@ -# Vertical Coordinate Template Component 5.0 - Vertical level - -# Type of first fixed surface -codetable[1] typeOfFirstFixedSurface ('5.1.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; -meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; -meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; - -# Scale factor of first fixed surface -signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of first fixed surface -unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -#### -transient pressureUnits="hPa"; - -concept_nofail vertical.typeOfLevel (unknown) { -#set uses the last one -#get returns the first match - 'surface' = { typeOfFirstFixedSurface=1; } - 'cloudBase' = { typeOfFirstFixedSurface=2; } - 'cloudTop' = { typeOfFirstFixedSurface=3; } - 'isothermZero' = { typeOfFirstFixedSurface=4; } - 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; } - 'maxWind' = {typeOfFirstFixedSurface=6; } - 'tropopause' = {typeOfFirstFixedSurface=7; } - 'nominalTop' = {typeOfFirstFixedSurface=8; } - 'seaBottom' = {typeOfFirstFixedSurface=9; } - 'isothermal' = {typeOfFirstFixedSurface=20; } - 'isobaricInPa' = {typeOfFirstFixedSurface=100; pressureUnits='Pa'; } - 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; } - # 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} - 'meanSea' = { typeOfFirstFixedSurface=101; } - 'heightAboveSea' = {typeOfFirstFixedSurface=102; } - # 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} - 'heightAboveGround' = {typeOfFirstFixedSurface=103; } - # 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} - 'sigma' = {typeOfFirstFixedSurface=104; } - # 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} - 'hybrid' = {typeOfFirstFixedSurface=105; } - 'hybridHeight' = {typeOfFirstFixedSurface=118; } - # 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } - 'depthBelowLand' = {typeOfFirstFixedSurface=106; } - # 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} - 'theta' = {typeOfFirstFixedSurface=107; } - # 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} - 'pressureFromGround' = {typeOfFirstFixedSurface=108; } - # 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} - 'potentialVorticity' = {typeOfFirstFixedSurface=109; } - 'eta' = {typeOfFirstFixedSurface=111; } -# In the case of Generalized vertical height coordinates, NV must be 6 - # 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} - # 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} - 'depthBelowSea' = {typeOfFirstFixedSurface=160; } - # 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} - # 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} - 'snow' = {typeOfFirstFixedSurface=114; } - # 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} -} -alias levelType=typeOfFirstFixedSurface; - -# Only one surface -meta level g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; -transient bottomLevel=level; # Do not use alias (see GRIB-725) -transient topLevel=level; - -alias ls.level=level; -alias vertical.level=level; -alias vertical.bottomLevel=bottomLevel; -alias vertical.topLevel=topLevel; - -# See GRIB-74 why we store the pressureUnits in a transient -transient tempPressureUnits=pressureUnits; -if (!(typeOfLevel is "surface")) { - if (tempPressureUnits is "Pa") { - meta marsLevel scale(level,one,hundred) : read_only; - alias mars.levelist=marsLevel; - } else { - alias mars.levelist = level; - } -} -alias mars.levtype = typeOfFirstFixedSurface; -# GRIB-372: levelist alias does not pertain to surface parameters -if (levtype is "sfc") { - unalias mars.levelist; -} - -alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions.save/grib3/template.component.5.1.def b/eccodes/definitions.save/grib3/template.component.5.1.def deleted file mode 100644 index cafaf2c1..00000000 --- a/eccodes/definitions.save/grib3/template.component.5.1.def +++ /dev/null @@ -1,117 +0,0 @@ -# Vertical Coordinate Template Component 5.1 - Vertical layer - -# Type of first fixed surface -codetable[1] typeOfFirstFixedSurface ('5.1.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; -meta unitsOfFirstFixedSurface codetable_units(typeOfFirstFixedSurface) : dump; -meta nameOfFirstFixedSurface codetable_title(typeOfFirstFixedSurface) : dump; - -# Scale factor of first fixed surface -signed[1] scaleFactorOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of first fixed surface -unsigned[4] scaledValueOfFirstFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Type of second fixed surface -codetable[1] typeOfSecondFixedSurface ('5.1.table',masterDir,localDir) = 255 : dump,no_copy,edition_specific; -meta unitsOfSecondFixedSurface codetable_units(typeOfSecondFixedSurface) : dump; -meta nameOfSecondFixedSurface codetable_title(typeOfSecondFixedSurface) : dump; - -# Scale factor of second fixed surface -signed[1] scaleFactorOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - -# Scaled value of second fixed surface -unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no_copy,edition_specific; - - -####### -transient pressureUnits="hPa"; - -concept_nofail vertical.typeOfLevel (unknown) { -#set uses the last one -#get returns the first match - 'surface' = { typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } - 'cloudBase' = { typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255; } - 'cloudTop' = { typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255; } - 'isothermZero' = { typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255; } - 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255; } - 'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} - 'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} - 'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255; } - 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} - 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} - 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa'; } - 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} - 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} - 'meanSea' = { typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255; } - 'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} - 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} - 'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} - 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103;typeOfSecondFixedSurface=103;} - 'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} - 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} - 'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} - 'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} - 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } - 'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} - 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} - 'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} - 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} - 'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} - 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108;typeOfSecondFixedSurface=108;} - 'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} - 'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} -# In the case of Generalized vertical height coordinates, NV must be 6 - 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} - 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} - 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} - 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} - 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} - 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} - 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} -} - -alias levelType=typeOfFirstFixedSurface; - -if (typeOfSecondFixedSurface == 255) { - # Only one surface - meta level g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - transient bottomLevel=level; # Do not use alias (see GRIB-725) - transient topLevel=level; -} else { - # Two surfaces - meta topLevel g2level(typeOfFirstFixedSurface, - scaleFactorOfFirstFixedSurface, - scaledValueOfFirstFixedSurface, - pressureUnits) :dump; - meta bottomLevel g2level(typeOfSecondFixedSurface, - scaleFactorOfSecondFixedSurface, - scaledValueOfSecondFixedSurface, - pressureUnits) :dump; - alias level=topLevel; # (see GRIB-725) -} -alias ls.level=level; -alias vertical.level=level; -alias vertical.bottomLevel=bottomLevel; -alias vertical.topLevel=topLevel; - - -# See GRIB-74 why we store the pressureUnits in a transient -transient tempPressureUnits=pressureUnits; -if (!(typeOfLevel is "surface")) { - if (tempPressureUnits is "Pa") { - meta marsLevel scale(level,one,hundred) : read_only; - alias mars.levelist=marsLevel; - } else { - alias mars.levelist = level; - } -} -alias mars.levtype = typeOfFirstFixedSurface; -# GRIB-372: levelist alias does not pertain to surface parameters -if (levtype is "sfc") { - unalias mars.levelist; -} - -alias ls.typeOfLevel=typeOfLevel; diff --git a/eccodes/definitions.save/grib3/template.component.6.0.def b/eccodes/definitions.save/grib3/template.component.6.0.def deleted file mode 100644 index c52b3e5d..00000000 --- a/eccodes/definitions.save/grib3/template.component.6.0.def +++ /dev/null @@ -1,7 +0,0 @@ -# Generating Process Template Component 6.0 - Process type and identifier - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('6.1.table',masterDir,localDir) : dump; - -# Generating processes identifier (managed by the originating centre) -unsigned[1] generatingProcessIdentifier : dump; diff --git a/eccodes/definitions.save/grib3/template.component.6.1.def b/eccodes/definitions.save/grib3/template.component.6.1.def deleted file mode 100644 index 3329e203..00000000 --- a/eccodes/definitions.save/grib3/template.component.6.1.def +++ /dev/null @@ -1,5 +0,0 @@ -# Generating Process Template Component 6.1 - Ensemble size - -# Number of members in ensemble -unsigned[2] numberOfMembersInEnsemble : dump; -alias totalNumber=numberOfMembersInEnsemble; diff --git a/eccodes/definitions.save/grib3/template.component.6.2.def b/eccodes/definitions.save/grib3/template.component.6.2.def deleted file mode 100644 index d6f53ae1..00000000 --- a/eccodes/definitions.save/grib3/template.component.6.2.def +++ /dev/null @@ -1,9 +0,0 @@ -# Generating Process Template Component 6.2 - Ensemble member - -# Type of ensemble member -codetable[1] typeOfEnsembleMember ('6.2.table',masterDir,localDir) = 255 : dump; - -# Member (Perturbation) number -unsigned[2] memberNumber : dump; -alias perturbationNumber=memberNumber; -alias number=memberNumber; diff --git a/eccodes/definitions.save/grib3/template.component.6.3.def b/eccodes/definitions.save/grib3/template.component.6.3.def deleted file mode 100644 index ac9e411c..00000000 --- a/eccodes/definitions.save/grib3/template.component.6.3.def +++ /dev/null @@ -1,3 +0,0 @@ -# Generating Process Template Component 6.3 - Statistical post-processing of all ensemble members - -codetable[1] typeOfStatisticalPostProcessingOfEnsembleMembers ('6.3.table',masterDir,localDir) = 255 : dump; diff --git a/eccodes/definitions.save/grib3/template.component.7.0.def b/eccodes/definitions.save/grib3/template.component.7.0.def deleted file mode 100644 index a0ab0c72..00000000 --- a/eccodes/definitions.save/grib3/template.component.7.0.def +++ /dev/null @@ -1,13 +0,0 @@ -# Observable Property Template Component 7.0 - Observable property by discipline, category and number - -# Parameter discipline -codetable[1] parameterDiscipline('7.1.table',masterDir,localDir) : dump; -alias discipline = parameterDiscipline; - -# Parameter category -codetable[1] parameterCategory ('7.2.[discipline:i].table',masterDir,localDir) : dump; - -# Parameter number -codetable[2] parameterNumber ('7.3.[discipline:i].[parameterCategory:i].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; diff --git a/eccodes/definitions.save/grib3/template.component.7.1.def b/eccodes/definitions.save/grib3/template.component.7.1.def deleted file mode 100644 index 33c9cd6a..00000000 --- a/eccodes/definitions.save/grib3/template.component.7.1.def +++ /dev/null @@ -1,13 +0,0 @@ -# Observable Property Template Component 7.1 - Units conversion - -ieeefloat unitsConversionScaleFactor : dump, edition_specific,no_copy; -ieeefloat unitsConversionOffset : dump, edition_specific,no_copy; - -alias ucs = unitsConversionScaleFactor; -alias uco = unitsConversionOffset; - -# Notes: -# Units conversion scale factor (ucs) and offset (uco) shall be used to encode fields in units different -# from the units reported in table 7.3. -# If the values encoded in the GRIB message are 've', then the values 'v' in the units provided in table 7.3 -# shall be: v = ucs*ve + uco diff --git a/eccodes/definitions.save/grib3/template.component.7.2.def b/eccodes/definitions.save/grib3/template.component.7.2.def deleted file mode 100644 index c1e939c4..00000000 --- a/eccodes/definitions.save/grib3/template.component.7.2.def +++ /dev/null @@ -1,5 +0,0 @@ -# Observable Property Template Component 7.2 - Chemical or physical constituents - -# Common code table C-14 -codetable[2] atmosphericChemicalOrPhysicalConstituentType ('7.230.table',masterDir,localDir) : dump; -alias constituentType=atmosphericChemicalOrPhysicalConstituentType; diff --git a/eccodes/definitions.save/grib3/template.component.7.3.def b/eccodes/definitions.save/grib3/template.component.7.3.def deleted file mode 100644 index cdb0e000..00000000 --- a/eccodes/definitions.save/grib3/template.component.7.3.def +++ /dev/null @@ -1,9 +0,0 @@ -# Observable Property Template Component 7.3 - Aerosol size - -codetable[1] typeOfSizeInterval ('7.4.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; # in metres -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; # in metres diff --git a/eccodes/definitions.save/grib3/template.component.7.4.def b/eccodes/definitions.save/grib3/template.component.7.4.def deleted file mode 100644 index c836f283..00000000 --- a/eccodes/definitions.save/grib3/template.component.7.4.def +++ /dev/null @@ -1,10 +0,0 @@ -# Observable Property Template Component 7.4 - Radiation wavelength interval - -codetable[1] typeOfWavelengthInterval ('7.4.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; - -# wavelengths in metres -signed[1] scaleFactorOfFirstWavelength : dump; -signed[4] scaledValueOfFirstWavelength : dump; # in metres -signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; -signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; # in metres diff --git a/eccodes/definitions.save/grib3/template.component.8.0.def b/eccodes/definitions.save/grib3/template.component.8.0.def deleted file mode 100644 index dc27f086..00000000 --- a/eccodes/definitions.save/grib3/template.component.8.0.def +++ /dev/null @@ -1,6 +0,0 @@ -# Data Representation Template Component 8.0 - Grid point data - Simple packing - -include "grib3/template.8.packing.def"; -include "grib3/template.8.original_values.def"; -include "grib3/template.8.missing_value.def"; -label 'Template Component 8.0'; diff --git a/eccodes/definitions.save/grib3/template.component.8.1.def b/eccodes/definitions.save/grib3/template.component.8.1.def deleted file mode 100644 index 1d710cbb..00000000 --- a/eccodes/definitions.save/grib3/template.component.8.1.def +++ /dev/null @@ -1,10 +0,0 @@ -# Data Representation Template Component 8.1 - Grid point data - IEEE floating point data - -transient bitsPerValue=0 : hidden; -transient referenceValue=0 : hidden; -transient binaryScaleFactor=0 : hidden; -transient decimalScaleFactor=0 : hidden; -alias numberOfBits = bitsPerValue; -alias numberOfBitsContainingEachPackedValue = bitsPerValue; - -codetable[1] precision ('8.3.table',masterDir,localDir) = 1 : edition_specific; diff --git a/eccodes/definitions.save/grib3/template.component.9.0.def b/eccodes/definitions.save/grib3/template.component.9.0.def deleted file mode 100644 index 32ce023d..00000000 --- a/eccodes/definitions.save/grib3/template.component.9.0.def +++ /dev/null @@ -1,42 +0,0 @@ -# Overlay Template Component 9.0 - Bitmap - -# TODO: Is there a Bit-map indicator??? - - -# Bit-map indicator -codetable[1] bitMapIndicator ('6.0.table',masterDir,localDir) = 255 : dump; - -meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump; -transient missingValuesPresent = bitmapPresent : hidden; - -# Bitmap... -if(bitMapIndicator == 0) -{ - if(dataRepresentationTemplateNumber == 1) - { - if(matrixBitmapsPresent == 1) - { - meta primaryBitmap g2bitmap( tableReference, - missingValue, - offsetBSection9, - section9Length, - numberOfDataMatrices) : read_only; - } - else - { - meta geography.bitmap g2bitmap( tableReference, - missingValue, - offsetBSection9, - section9Length, - numberOfDataPoints) : read_only; - } - } - else - { - meta geography.bitmap g2bitmap( tableReference, - missingValue, - offsetBSection9, - section9Length, - numberOfDataPoints) : read_only; - } -} diff --git a/eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def b/eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def deleted file mode 100644 index 792d6005..00000000 --- a/eccodes/definitions.save/grib3/template_components/4.8.regular_latitudes.def +++ /dev/null @@ -1 +0,0 @@ -# diff --git a/eccodes/definitions.save/grib3/tiggeLocalVersion.table b/eccodes/definitions.save/grib3/tiggeLocalVersion.table deleted file mode 100644 index c5bbcd23..00000000 --- a/eccodes/definitions.save/grib3/tiggeLocalVersion.table +++ /dev/null @@ -1 +0,0 @@ -1 TIGGE-LAM TIGGE LAM diff --git a/eccodes/definitions.save/grib3/tigge_name.def b/eccodes/definitions.save/grib3/tigge_name.def deleted file mode 100644 index 76fbb84b..00000000 --- a/eccodes/definitions.save/grib3/tigge_name.def +++ /dev/null @@ -1,45 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - - '10_meter_u_velocity' = { parameter = 165; } - '10_meter_v_velocity' = { parameter = 166; } - '10_metre_wind_gust_of_at_least_15_m/s' = { parameter = 131070; } - '10_metre_wind_gust_of_at_least_25_m/s' = { parameter = 131071; } - 'convective_available_potential_energy' = { parameter = 59; } - 'convective_inhibition' = { parameter = 228001; } - 'field_capacity' = { parameter = 228170; } - 'geopotential_height' = { parameter = 156; } - 'land_sea_mask' = { parameter = 172; } - 'maximum_wind_gust' = { parameter = 49; } - 'mean_sea_level_pressure' = { parameter = 151; } - 'orography' = { parameter = 228002; } - 'potential_temperature' = { parameter = 3; } - 'potential_vorticity' = { parameter = 60; } - 'sea_surface_temperature_anomaly' = { parameter = 171034; } - 'skin_temperature' = { parameter = 235; } - 'snow_depth_water_equivalent' = { parameter = 228141; } - 'snow_fall_water_equivalent' = { parameter = 228144; } - 'soil_moisture' = { parameter = 228039; } - 'soil_temperature' = { parameter = 228139; } - 'specific_humidity' = { parameter = 133; } - 'sunshine_duration' = { parameter = 189; } - 'surface_air_dew_point_temperature' = { parameter = 168; } - 'surface_air_maximum_temperature' = { parameter = 121; } - 'surface_air_minimum_temperature' = { parameter = 122; } - 'surface_air_temperature' = { parameter = 167; } - 'surface_pressure' = { parameter = 134; } - 'temperature' = { parameter = 130; } - 'time_integrated_outgoing_long_wave_radiation' = { parameter = 179; } - 'time_integrated_surface_latent_heat_flux' = { parameter = 147; } - 'time_integrated_surface_net_solar_radiation' = { parameter = 176; } - 'time_integrated_surface_net_thermal_radiation' = { parameter = 177; } - 'time_integrated_surface_sensible_heat_flux' = { parameter = 146; } - 'total_cloud_cover' = { parameter = 228164; } - 'total_column_water' = { parameter = 136; } - 'total_precipitation' = { parameter = 228228; } - 'total_precipitation_of_at_least_10_mm' = { parameter = 131062; } - 'total_precipitation_of_at_least_20_mm' = { parameter = 131063; } - 'u_velocity' = { parameter = 131; } - 'v_velocity' = { parameter = 132; } - 'wilting_point' = { parameter = 228171; } - 'default' = { parameter = 99999; } - diff --git a/eccodes/definitions.save/grib3/tigge_parameter.def b/eccodes/definitions.save/grib3/tigge_parameter.def deleted file mode 100644 index c7ae282a..00000000 --- a/eccodes/definitions.save/grib3/tigge_parameter.def +++ /dev/null @@ -1,396 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - -# 10_meter_u_velocity - '165' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; - } - -# 10_meter_v_velocity - '166' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 3; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; - } - -# 10_metre_wind_gust_of_at_least_15_m/s - '131070' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - productDefinitionTemplateNumber = 9; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - scaledValueOfLowerLimit = 15; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; - } - -# 10_metre_wind_gust_of_at_least_25_m/s - '131071' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - productDefinitionTemplateNumber = 9; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - scaledValueOfLowerLimit = 25; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; - } - -# convective_available_potential_energy - '59' = { - discipline = 0; - parameterCategory = 7; - parameterNumber = 6; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; - } - -# convective_inhibition - '228001' = { - discipline = 0; - parameterCategory = 7; - parameterNumber = 7; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; - } - -# field_capacity - '228170' = { - discipline = 2; - parameterCategory = 3; - parameterNumber = 12; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; - } - -# geopotential_height - '156' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 5; - typeOfFirstFixedSurface = 100; - } - -# land_sea_mask - '172' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 1; - } - -# maximum_wind_gust - '49' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 22; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 10; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; - } - -# mean_sea_level_pressure - '151' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 0; - typeOfFirstFixedSurface = 101; - } - -# orography - '228002' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 5; - typeOfFirstFixedSurface = 1; - } - -# potential_temperature - '3' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 6; - scaledValueOfFirstFixedSurface = 2; - typeOfFirstFixedSurface = 109; - } - -# potential_vorticity - '60' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 14; - scaleFactorOfFirstFixedSurface = 0; - scaledValueOfFirstFixedSurface = 320; - typeOfFirstFixedSurface = 107; - } - -# sea_surface_temperature_anomaly - '171034' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 9; - typeOfFirstFixedSurface = 1; - } - -# skin_temperature - '235' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 17; - typeOfFirstFixedSurface = 1; - } - -# snow_depth_water_equivalent - '228141' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 60; - typeOfFirstFixedSurface = 1; - } - -# snow_fall_water_equivalent - '228144' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 53; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# soil_moisture - '228039' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 22; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; - } - -# soil_temperature - '228139' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 2; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; - } - -# specific_humidity - '133' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 0; - typeOfFirstFixedSurface = 100; - } - -# sunshine_duration - '189' = { - discipline = 0; - parameterCategory = 6; - parameterNumber = 24; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# surface_air_dew_point_temperature - '168' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 6; - typeOfFirstFixedSurface = 103; - } - -# surface_air_maximum_temperature - '121' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 2; - } - -# surface_air_minimum_temperature - '122' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; - typeOfStatisticalProcessing = 3; - } - -# surface_air_temperature - '167' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 103; - } - -# surface_pressure - '134' = { - discipline = 0; - parameterCategory = 3; - parameterNumber = 0; - typeOfFirstFixedSurface = 1; - } - -# temperature - '130' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - typeOfFirstFixedSurface = 100; - } - -# time_integrated_outgoing_long_wave_radiation - '179' = { - discipline = 0; - parameterCategory = 5; - parameterNumber = 5; - typeOfFirstFixedSurface = 8; - typeOfStatisticalProcessing = 1; - } - -# time_integrated_surface_latent_heat_flux - '147' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 10; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# time_integrated_surface_net_solar_radiation - '176' = { - discipline = 0; - parameterCategory = 4; - parameterNumber = 9; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# time_integrated_surface_net_thermal_radiation - '177' = { - discipline = 0; - parameterCategory = 5; - parameterNumber = 5; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# time_integrated_surface_sensible_heat_flux - '146' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 11; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# total_cloud_cover - '228164' = { - discipline = 0; - parameterCategory = 6; - parameterNumber = 1; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; - } - -# total_column_water - '136' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 51; - typeOfFirstFixedSurface = 1; - typeOfSecondFixedSurface = 8; - } - -# total_precipitation - '228228' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# total_precipitation_of_at_least_10_mm - '131062' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - productDefinitionTemplateNumber = 9; - scaledValueOfLowerLimit = 10; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# total_precipitation_of_at_least_20_mm - '131063' = { - discipline = 0; - parameterCategory = 1; - parameterNumber = 52; - productDefinitionTemplateNumber = 9; - scaledValueOfLowerLimit = 20; - typeOfFirstFixedSurface = 1; - typeOfStatisticalProcessing = 1; - } - -# u_velocity - '131' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 2; - } - -# unknown - 'default' = { - discipline = 0; - parameterCategory = 0; - parameterNumber = 0; - } - -# v_velocity - '132' = { - discipline = 0; - parameterCategory = 2; - parameterNumber = 3; - } - -# wilting_point - '228171' = { - discipline = 2; - parameterCategory = 0; - parameterNumber = 26; - scaleFactorOfFirstFixedSurface = 0; - scaleFactorOfSecondFixedSurface = 1; - scaledValueOfFirstFixedSurface = 0; - scaledValueOfSecondFixedSurface = 2; - typeOfFirstFixedSurface = 106; - typeOfSecondFixedSurface = 106; - } - diff --git a/eccodes/definitions.save/grib3/tigge_short_name.def b/eccodes/definitions.save/grib3/tigge_short_name.def deleted file mode 100644 index 42ef5c6e..00000000 --- a/eccodes/definitions.save/grib3/tigge_short_name.def +++ /dev/null @@ -1,44 +0,0 @@ -# Automatically generated by ./tigge_def.pl, do not edit - - '10fgg25' = { parameter = 131071; } - '10fgg15' = { parameter = 131070; } - '10v' = { parameter = 166; } - '10u' = { parameter = 165; } - '10u' = { parameter = 49; } - 'ci' = { parameter = 228001; } - 'cap' = { parameter = 228170; } - 'cape' = { parameter = 59; } - 'gh' = { parameter = 156; } - 'lsm' = { parameter = 172; } - 'msl' = { parameter = 151; } - 'orog' = { parameter = 228002; } - 'sd' = { parameter = 228141; } - 'mx2t6' = { parameter = 121; } - '2d' = { parameter = 168; } - 'pv' = { parameter = 60; } - 'pt' = { parameter = 3; } - 'sf' = { parameter = 228144; } - 'skt' = { parameter = 235; } - 'sm' = { parameter = 228039; } - 'str' = { parameter = 177; } - 'sund' = { parameter = 189; } - 'mn2t6' = { parameter = 122; } - 'q' = { parameter = 133; } - 'ssta' = { parameter = 171034; } - '2t' = { parameter = 167; } - 'tcw' = { parameter = 136; } - 'slhf' = { parameter = 147; } - 'st' = { parameter = 228139; } - 'sshf' = { parameter = 146; } - 'sp' = { parameter = 134; } - 't' = { parameter = 130; } - 'tcc' = { parameter = 228164; } - 'ssr' = { parameter = 176; } - 'tpg10' = { parameter = 131062; } - 'tpg20' = { parameter = 131063; } - 'ttr' = { parameter = 179; } - 'tp' = { parameter = 228228; } - 'u' = { parameter = 131; } - 'v' = { parameter = 132; } - 'wilt' = { parameter = 228171; } - 'default' = { parameter = 99999; } diff --git a/eccodes/definitions.save/grib3/tigge_suiteName.table b/eccodes/definitions.save/grib3/tigge_suiteName.table deleted file mode 100644 index 09afac2c..00000000 --- a/eccodes/definitions.save/grib3/tigge_suiteName.table +++ /dev/null @@ -1,12 +0,0 @@ -0 unknown unknown -1 mogreps-mo-eua Unified model based LAM-EPS run by UK Met Office -2 sreps-aemet-eua Multi model based LAM-EPS run by AEMET (Spain) -3 srnwppeps-dwd-eua Poor man's LAM-EPS run by DWD (Germany) -4 cosmoleps-arpasimc-eu COSMO model based LAM-EPS run by ARPA-SIM (Italy) -6 aladinlaef-zamg-eu ALADIN model based LAM-EPS run by ZAMG (Austria) -7 cosmodeeps-dwd-eu COSMO model based LAM-EPS run by DWD (Germany) -9 glameps-hirlamcons-eu ALADIN and HIRLAM models based LAM-EPS run by HIRLAM and ALADIN consortium -10 aromeeps-mf-eu AROME model based LAM-EPS run by Meteo-France -11 hirlam-dmi-eu HIRLAM model based LAM-EPS run by DMI (Denmark) -12 aladinhuneps-omsz-eu ALADIN model based LAM-EPS run by OMSZ (Hungary) -13 pearp-mf-eu ARPEGE model based LAM-EPS run by Meteo-France diff --git a/eccodes/definitions.save/grib3/units.def b/eccodes/definitions.save/grib3/units.def deleted file mode 100644 index 56d8cf43..00000000 --- a/eccodes/definitions.save/grib3/units.def +++ /dev/null @@ -1,3009 +0,0 @@ -# Automatically generated by ./create_def.pl, do not edit -#Sea-ice cover -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Snow density -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 61 ; - } -#Sea surface temperature -'K' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil type -'~' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#10 metre wind gust since previous post-processing -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - } -#Specific rain water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 85 ; - } -#Specific snow water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 86 ; - } -#Eta-coordinate vertical velocity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 32 ; - } -#Surface solar radiation downwards -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface thermal radiation downwards -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Eastward turbulent surface stress -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; - } -#Northward turbulent surface stress -'N m**-2 s' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; - } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } -#Ozone mass mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 1 ; - } -#Specific cloud liquid water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 83 ; - } -#Specific cloud ice water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 84 ; - } -#Fraction of cloud cover -'(0 - 1)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 32 ; - } -#large scale precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow depth -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Low cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 3 ; - } -#Medium cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 4 ; - } -#High cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 5 ; - } -#10 metre wind gust in the last 3 hours -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 3 ; - } -#Relative humidity with respect to water -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 93 ; - } -#Relative humidity with respect to ice -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 94 ; - } -#Snow albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 19 ; - } -#Fraction of stratiform precipitation cover -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 36 ; - } -#Fraction of convective precipitation cover -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 37 ; - } -#Height of convective cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 27 ; - } -#Unbalanced component of specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 118 ; - } -#Unbalanced component of specific cloud liquid water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 119 ; - } -#Unbalanced component of specific cloud ice water content -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 120 ; - } -#Soil moisture top 20 cm -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil moisture top 100 cm -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Soil temperature top 20 cm -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - } -#Soil temperature top 100 cm -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfSecondFixedSurface = 10 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - } -#Convective precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Water runoff and drainage -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 33 ; - } -#Mean temperature tendency due to short-wave radiation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to short-wave radiation, clear sky -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to long-wave radiation, clear sky -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean temperature tendency due to parametrisations -'K s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean specific humidity tendency due to parametrisations -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 108 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean eastward wind tendency due to parametrisations -'m s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 39 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean northward wind tendency due to parametrisations -'m s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 40 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught mass flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught mass flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 28 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean updraught detrainment rate -'kg m**-3 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 29 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean downdraught detrainment rate -'kg m**-3 s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 30 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean total precipitation flux -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 0 ; - } -#Mean turbulent diffusion coefficient for heat -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - typeOfStatisticalProcessing = 0 ; - } -#Cross sectional area of flow in channel -'m**2' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Side flow into river channel -'m**3 s**-1 m**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Discharge from rivers or streams -'m**3 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#River storage of water -'m**3' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Floodplain storage of water -'m**3' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Water fraction -'(0 - 1)' = { - discipline = 1 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Days since last observation -'Integer' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 3 ; - } -#Frost index -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 24 ; - } -#Depth of water on soil surface -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Upstream accumulated precipitation -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Upstream accumulated snow melt -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Snow depth at elevation bands -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 25 ; - } -#Groundwater upper storage -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Groundwater lower storage -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Surface air relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Apparent temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Haines Index -'Numeric' = { - discipline = 2 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 22 ; - } -#Evaporation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - } -#Evaporation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#10 metre wind direction -'Degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Direct short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - } -#Diffuse short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 14 ; - } -#Time-integrated surface direct short wave radiation flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#Downward short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - } -#Upward short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - } -#Downward long-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - } -#Soil heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 26 ; - } -#Percolation rate -'kg m**-2 s**-1' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Soil depth -'m' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 27 ; - } -#Accumulated surface downward short-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface upward short-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Accumulated surface downward long-wave radiation flux, clear sky -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Percolation -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 177 ; - } -#Cloudy brightness temperature -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Clear-sky brightness temperature -'K' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Scaled radiance -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Scaled albedo -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Scaled brightness temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Scaled precipitable water -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Scaled lifted index -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Scaled cloud top pressure -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Scaled skin temperature -'Numeric' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Cloud mask -'Code table 4.217' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Pixel scene type -'Code table 4.218' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Fire detection indicator -'Code table 4.223' = { - discipline = 3 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Cloudy radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Clear-sky radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Wind speed -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Aerosol optical thickness at 0.635 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Aerosol optical thickness at 0.810 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Aerosol optical thickness at 1.640 um -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Angstrom coefficient -'dimensionless' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Virtual temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Virtual potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Pseudo-adiabatic potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Wind direction -'Degree true' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - } -#Significant height of combined wind waves and swell -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Mean wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Mean wave period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Surface runoff -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 34 ; - } -#Total precipitation of at least 10 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; - } -#Total precipitation of at least 20 mm -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - scaledValueOfLowerLimit = 20 ; - scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - } -#Stream function -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#Velocity potential -'m**2 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Potential temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - } -#Convective available potential energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Potential vorticity -'K m**2 kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 14 ; - } -#Maximum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Minimum temperature at 2 metres in the last 6 hours -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 6 ; - } -#Geopotential -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#U component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#V component of wind -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#Specific humidity -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Surface pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Vertical velocity -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Total column water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 8 ; - } -#Vorticity (relative) -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 12 ; - } -#Boundary layer dissipation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 20 ; - } -#Surface sensible heat flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface latent heat flux -'J m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Mean sea level pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - } -#Divergence -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 13 ; - } -#Geopotential Height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#10 metre U wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#10 metre V wind component -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - } -#2 metre temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - } -#Land-sea mask -'(0 - 1)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - } -#Surface roughness -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Surface net solar radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Surface net thermal radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Top net thermal radiation -'J m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 8 ; - } -#Sunshine duration -'s' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - } -#Brightness temperature -'K' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 4 ; - } -#10 metre wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; - } -#Skin temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 17 ; - typeOfFirstFixedSurface = 1 ; - } -#Latent heat net flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Sensible heat net flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Heat index -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Wind chill factor -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Minimum dew point depression -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Snow phase change heat flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Vapor pressure -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Large scale precipitation (non-convective) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Convective snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } -#Large scale snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } -#Snow age -'day' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 17 ; - } -#Absolute humidity -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 18 ; - } -#Precipitation type -'code table (4.201)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 19 ; - } -#Integrated liquid water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 20 ; - } -#Condensate -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 21 ; - } -#Cloud mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 22 ; - } -#Ice water mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 23 ; - } -#Rain mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 24 ; - } -#Snow mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 25 ; - } -#Horizontal moisture convergence -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 26 ; - } -#Maximum relative humidity -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 27 ; - } -#Maximum absolute humidity -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 28 ; - } -#Total snowfall -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 29 ; - } -#Precipitable water category -'code table (4.202)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 30 ; - } -#Hail -'m' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 31 ; - } -#Graupel (snow pellets) -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 32 ; - } -#Categorical rain -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 33 ; - } -#Categorical freezing rain -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 34 ; - } -#Categorical ice pellets -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 35 ; - } -#Categorical snow -'(Code table 4.222)' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 36 ; - } -#Convective precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 37 ; - } -#Horizontal moisture divergence -'kg kg**-1 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 38 ; - } -#Percent frozen precipitation -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 39 ; - } -#Potential evaporation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 40 ; - } -#Potential evaporation rate -'W m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 41 ; - } -#Snow cover -'%' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 42 ; - } -#Rain fraction of total cloud water -'Proportion' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 43 ; - } -#Rime factor -'Numeric' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 44 ; - } -#Total column integrated rain -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 45 ; - } -#Total column integrated snow -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 46 ; - } -#Large scale water precipitation (non-convective) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 47 ; - } -#Convective water precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 48 ; - } -#Total water precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 49 ; - } -#Total snow precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 50 ; - } -#Total column water (Vertically integrated total water (vapour + cloud water/ice)) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 51 ; - } -#Total precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - } -#Total snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - } -#Large scale precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 54 ; - } -#Convective snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 55 ; - } -#Large scale snowfall rate water equivalent -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 56 ; - } -#Total snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 57 ; - } -#Convective snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 58 ; - } -#Large scale snowfall rate -'m s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 59 ; - } -#Water equivalent of accumulated snow depth -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Total column integrated water vapour -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 64 ; - } -#Rain precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 65 ; - } -#Snow precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 66 ; - } -#Freezing rain precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 67 ; - } -#Ice pellets precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 68 ; - } -#Momentum flux, u component -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 17 ; - } -#Momentum flux, v component -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 18 ; - } -#Maximum wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 21 ; - } -#Wind speed (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - } -#u-component of wind (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 23 ; - } -#v-component of wind (gust) -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } -#Vertical speed shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 25 ; - } -#Horizontal momentum flux -'N m**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 26 ; - } -#U-component storm motion -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 27 ; - } -#V-component storm motion -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 28 ; - } -#Drag coefficient -'Numeric' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 29 ; - } -#Frictional velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 30 ; - } -#Pressure reduced to MSL -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Geometric height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Altimeter setting -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Thickness -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Pressure altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Density altitude -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#5-wave geopotential height -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Zonal flux of gravity wave stress -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Meridional flux of gravity wave stress -'N m**-2' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Planetary boundary layer height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 18 ; - } -#5-wave geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 19 ; - } -#Standard deviation of sub-grid scale orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 20 ; - } -#Net short-wave radiation flux (top of atmosphere) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Downward short-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - } -#Upward short-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 8 ; - } -#Net short wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - } -#Photosynthetically active radiation -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 10 ; - } -#Net short-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 11 ; - } -#Downward UV radiation -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 12 ; - } -#UV index (under clear sky) -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 50 ; - } -#UV index -'Numeric' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 51 ; - } -#Net long wave radiation flux (surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 0 ; - } -#Net long wave radiation flux (top of atmosphere) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 1 ; - } -#Downward long-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 3 ; - } -#Upward long-wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 4 ; - } -#Net long wave radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 5 ; - } -#Net long-wave radiation flux, clear sky -'W m**-2' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - } -#Cloud Ice -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 0 ; - } -#Cloud water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 6 ; - } -#Cloud amount -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 7 ; - } -#Cloud type -'code table (4.203)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 8 ; - } -#Thunderstorm maximum tops -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 9 ; - } -#Thunderstorm coverage -'code table (4.204)' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 10 ; - } -#Cloud base -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 11 ; - } -#Cloud top -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 12 ; - } -#Ceiling -'m' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 13 ; - } -#Non-convective cloud cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 14 ; - } -#Cloud work function -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 15 ; - } -#Convective cloud efficiency -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 16 ; - } -#Total condensate -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 17 ; - } -#Total column-integrated cloud water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 18 ; - } -#Total column-integrated cloud ice -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 19 ; - } -#Total column-integrated condensate -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 20 ; - } -#Ice fraction of total condensate -'Proportion' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 21 ; - } -#Cloud ice mixing ratio -'kg kg**-1' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 23 ; - } -#Sunshine -'Numeric' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 24 ; - } -#Horizontal extent of cumulonimbus (CB) -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 25 ; - } -#K index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 2 ; - } -#KO index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 3 ; - } -#Total totals index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 4 ; - } -#Sweat index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 5 ; - } -#Storm relative helicity -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 8 ; - } -#Energy helicity index -'Numeric' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 9 ; - } -#Surface lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 10 ; - } -#Best (4-layer) lifted index -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 11 ; - } -#Aerosol type -'code table (4.205)' = { - discipline = 0 ; - parameterCategory = 13 ; - parameterNumber = 0 ; - } -#Total ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 0 ; - } -#Total column integrated ozone -'DU' = { - discipline = 0 ; - parameterCategory = 14 ; - parameterNumber = 2 ; - } -#Base spectrum width -'m s**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 0 ; - } -#Base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 1 ; - } -#Base radial velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 2 ; - } -#Vertically-integrated liquid -'kg m**-1' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 3 ; - } -#Layer-maximum base reflectivity -'dB' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 4 ; - } -#Precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 5 ; - } -#Air concentration of Caesium 137 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 0 ; - } -#Air concentration of Iodine 131 -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 1 ; - } -#Air concentration of radioactive pollutant -'Bq m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 2 ; - } -#Ground deposition of Caesium 137 -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 3 ; - } -#Ground deposition of Iodine 131 -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 4 ; - } -#Ground deposition of radioactive pollutant -'Bq m**-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 5 ; - } -#Time-integrated air concentration of caesium pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 6 ; - } -#Time-integrated air concentration of iodine pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 7 ; - } -#Time-integrated air concentration of radioactive pollutant -'Bq s m**-3' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 8 ; - } -#Volcanic ash -'code table (4.206)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 4 ; - } -#Icing top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 5 ; - } -#Icing base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 6 ; - } -#Icing -'code table (4.207)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 7 ; - } -#Turbulence top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 8 ; - } -#Turbulence base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 9 ; - } -#Turbulence -'code table (4.208)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 10 ; - } -#Turbulent kinetic energy -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 11 ; - } -#Planetary boundary layer regime -'code table (4.209)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 12 ; - } -#Contrail intensity -'code table (4.210)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 13 ; - } -#Contrail engine type -'code table (4.211)' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 14 ; - } -#Contrail top -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 15 ; - } -#Contrail base -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 16 ; - } -#Maximum snow albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 17 ; - } -#Snow free albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 18 ; - } -#Icing -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 20 ; - } -#In-cloud turbulence -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 21 ; - } -#Clear air turbulence (CAT) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 22 ; - } -#Supercooled large droplet probability (see Note 4) -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 23 ; - } -#Arbitrary text string -'CCITTIA5' = { - discipline = 0 ; - parameterCategory = 190 ; - parameterNumber = 0 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 0 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the ref -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Remotely sensed snow cover -'(code table 4.215)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Elevation of snow covered terrain -'(code table 4.216)' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Snow water equivalent percent of normal -'%' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Baseflow-groundwater runoff -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Storm surface runoff -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Conditional percent precipitation amount fractile for an overall period (Encoded as an accumulation) -'kg m**-2' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Percent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over th -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Probability of 0.01 inch of precipitation (POP) -'%' = { - discipline = 1 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Land cover (1=land, 0=sea) -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Vegetation -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Water runoff -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Evapotranspiration -'kg**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Model terrain height -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Land use -'code table (4.212)' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Volumetric soil moisture content -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Ground heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Moisture availability -'%' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Exchange coefficient -'kg m**-2 s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Plant canopy surface water -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Blackadar mixing length scale -'m' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 14 ; - } -#Canopy conductance -'m s**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 15 ; - } -#Minimal stomatal resistance -'s m**-1' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 16 ; - } -#Solar parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 18 ; - } -#Temperature parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 19 ; - } -#Soil moisture parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 20 ; - } -#Humidity parameter in canopy conductance -'Proportion' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 21 ; - } -#Column-integrated soil water -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 23 ; - } -#Heat flux -'W m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 24 ; - } -#Volumetric soil moisture -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 25 ; - } -#Volumetric wilting point -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 27 ; - } -#Upper layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Upper layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#Lower layer soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Bottom layer soil temperature -'K' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 4 ; - } -#Liquid volumetric soil moisture (non-frozen) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - } -#Number of soil layers in root zone -'Numeric' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Transpiration stress-onset (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Direct evaporation cease (soil moisture) -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Soil porosity -'Proportion' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Liquid volumetric soil moisture (non-frozen) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Volumetric transpiration stress-onset (soil moisture) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 11 ; - } -#Transpiration stress-onset (soil moisture) -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - } -#Volumetric direct evaporation cease (soil moisture) -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 13 ; - } -#Direct evaporation cease (soil moisture) -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 14 ; - } -#Soil porosity -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 15 ; - } -#Volumetric saturation of soil moisture -'m**3 m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 16 ; - } -#Saturation of soil moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 17 ; - } -#Estimated precipitation -'kg m**-2' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Instantaneous rain rate -'kg m**-2 s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Cloud top height -'m' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#Cloud top height quality indicator -'Code table 4.219' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Estimated u component of wind -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 4 ; - } -#Estimated v component of wind -'m s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Number of pixels used -'Numeric' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 6 ; - } -#Solar zenith angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Relative azimuth angle -'Degree' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 8 ; - } -#Reflectance in 0.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 9 ; - } -#Reflectance in 0.8 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Reflectance in 1.6 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 11 ; - } -#Reflectance in 3.9 micron channel -'%' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 12 ; - } -#Atmospheric divergence -'s**-1' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 13 ; - } -#Direction of wind waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Primary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 10 ; - } -#Primary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 11 ; - } -#Secondary wave mean period -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 13 ; - } -#Current direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 0 ; - } -#Current speed -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 1 ; - } -#Geometric vertical velocity -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 9 ; - } -#Ice temperature -'K' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 8 ; - } -#Deviation of sea level from mean -'m' = { - discipline = 10 ; - parameterCategory = 3 ; - parameterNumber = 1 ; - } -#Seconds prior to initial reference time (defined in Section 1) -'s' = { - discipline = 10 ; - parameterCategory = 191 ; - parameterNumber = 0 ; - } -#Albedo -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 1 ; - } -#Pressure tendency -'Pa s**-1' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 2 ; - } -#ICAO Standard Atmosphere reference height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 3 ; - } -#Geometrical height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 6 ; - } -#Standard deviation of height -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 7 ; - } -#Maximum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 4 ; - } -#Minimum temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Dew point temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Lapse rate -'K m**-1' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Visibility -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 0 ; - } -#Radar spectra (1) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 6 ; - } -#Radar spectra (2) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 7 ; - } -#Radar spectra (3) -'~' = { - discipline = 0 ; - parameterCategory = 15 ; - parameterNumber = 8 ; - } -#Parcel lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 0 ; - } -#Temperature anomaly -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Pressure anomaly -'Pa' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 8 ; - } -#Geopotential height anomaly -'gpm' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 9 ; - } -#Wave spectra (1) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - } -#Wave spectra (2) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 1 ; - } -#Wave spectra (3) -'~' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Montgomery stream Function -'m**2 s**-2' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Sigma coordinate vertical velocity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Absolute vorticity -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 10 ; - } -#Absolute divergence -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 11 ; - } -#Vertical u-component shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 15 ; - } -#Vertical v-component shear -'s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 16 ; - } -#U-component of current -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 2 ; - } -#V-component of current -'m s**-1' = { - discipline = 10 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Precipitable water -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 3 ; - } -#Saturation deficit -'Pa' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 5 ; - } -#Precipitation rate -'kg m**-2 s**-1' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 7 ; - } -#Thunderstorm probability -'%' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 2 ; - } -#Convective precipitation (water) -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; - } -#Mixed layer depth -'m' = { - discipline = 0 ; - parameterCategory = 19 ; - parameterNumber = 3 ; - } -#Transient thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 2 ; - } -#Main thermocline depth -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Main thermocline anomaly -'m' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 1 ; - } -#Best lifted index (to 500 hPa) -'K' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 1 ; - } -#Soil moisture content -'kg m**-2' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 3 ; - } -#Salinity -'kg kg**-1' = { - discipline = 10 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Density -'kg m**-3' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 10 ; - } -#Ice thickness -'m' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - } -#Direction of ice drift -'Degree true' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 2 ; - } -#Speed of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 3 ; - } -#U-component of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 4 ; - } -#V-component of ice drift -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 5 ; - } -#Ice growth rate -'m s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 6 ; - } -#Ice divergence -'s**-1' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 7 ; - } -#Snow melt -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 16 ; - } -#Significant height of wind waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 5 ; - } -#Mean period of wind waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - } -#Direction of swell waves -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 7 ; - } -#Significant height of swell waves -'m' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 8 ; - } -#Mean period of swell waves -'s' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 9 ; - } -#Secondary wave direction -'Degree true' = { - discipline = 10 ; - parameterCategory = 0 ; - parameterNumber = 12 ; - } -#Net short-wave radiation flux (surface) -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 0 ; - } -#Global radiation flux -'W m**-2' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 3 ; - } -#Radiance (with respect to wave number) -'W m**-1 sr**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 5 ; - } -#Radiance (with respect to wave length) -'W m**-3 sr**-1' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 6 ; - } -#Wind mixing energy -'J' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 19 ; - } -#10 metre Wind gust of at least 15 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; - } -#10 metre Wind gust of at least 20 m/s -'%' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - typeOfStatisticalProcessing = 2 ; - scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; - } -#Convective inhibition -'J kg**-1' = { - discipline = 0 ; - parameterCategory = 7 ; - parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Orography -'m' = { - discipline = 0 ; - parameterCategory = 3 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - } -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - } -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } -#Snow depth water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; - } -#Snow Fall water equivalent -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 53 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - } -#Total Cloud Cover -'%' = { - discipline = 0 ; - parameterCategory = 6 ; - parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; - } -#Field capacity -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 3 ; - parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Wilting point -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 26 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - } -#Total Precipitation -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} diff --git a/eccodes/definitions.save/mars_param.table b/eccodes/definitions.save/mars_param.table deleted file mode 100644 index 80c71dfe..00000000 --- a/eccodes/definitions.save/mars_param.table +++ /dev/null @@ -1,6809 +0,0 @@ -1.1 54 134 | -1.128 1 | -1.129 129001 | -1.131 131001 | -1.133 133001 | -1.171 171001 | -1.2 54 134 500000 500000 500001 500001 | -1.200 200001 | -1.201 201001 | -1.204 500308 500308 | -1.205 500324 500324 500325 500325 500326 500326 500327 500327 | -1.210 210001 | -1.211 211001 | -1.212 212001 | -1.213 213001 | -1.214 214001 | -1.215 215001 | -1.216 216001 | -1.228 228001 | -1.254 300001 | -1.3 54 134 | -10.1 206 | -10.128 10 | -10.131 131010 | -10.133 133010 | -10.2 206 500009 500009 | -10.201 201010 | -10.202 500191 500191 | -10.204 500317 500317 | -10.210 210010 | -10.211 211010 | -10.212 212010 | -10.214 214010 | -10.215 215010 | -10.216 216010 | -10.228 228010 | -10.3 206 | -100.1 3100 | -100.128 100 | -100.129 129100 | -100.162 162100 | -100.2 3100 500071 500071 | -100.200 200100 | -100.201 201100 500132 500132 | -100.210 210100 | -100.211 211100 | -100.212 212100 | -100.215 215100 | -100.216 216100 | -100.254 300100 | -100.3 3100 | -100si 228249 | -100u 228246 | -100ua 171006 | -100v 228247 | -100va 171007 | -101.1 3101 | -101.128 101 | -101.129 129101 | -101.162 162101 | -101.2 3101 500072 500072 | -101.200 200101 | -101.201 201101 500133 500133 | -101.203 500293 500293 | -101.210 210101 | -101.211 211101 | -101.212 212101 | -101.215 215101 | -101.216 216101 | -101.254 300101 | -101.3 3101 | -102.1 3102 | -102.128 102 | -102.129 129102 | -102.162 162102 | -102.2 3102 500073 500073 | -102.200 200102 | -102.201 201102 500134 500134 | -102.210 210102 | -102.211 211102 | -102.212 212102 | -102.215 215102 | -102.216 216102 | -102.254 300102 | -102.3 3102 | -103.1 3103 | -103.128 103 | -103.129 129103 | -103.162 162103 | -103.2 3103 500074 500074 | -103.200 200103 | -103.203 500294 500294 | -103.210 210103 | -103.211 211103 | -103.212 212103 | -103.215 215103 | -103.216 216103 | -103.254 300103 | -103.3 3103 | -104.1 3104 | -104.128 104 | -104.129 129104 | -104.162 162104 | -104.2 3104 500075 500075 | -104.200 200104 | -104.202 500233 500233 | -104.210 210104 | -104.211 211104 | -104.212 212104 | -104.215 215104 | -104.216 216104 | -104.254 300104 | -104.3 3104 | -105.1 3105 | -105.128 105 | -105.129 129105 | -105.162 162105 | -105.2 3105 500076 500076 | -105.200 200105 | -105.202 500234 500234 | -105.210 210105 | -105.211 211105 | -105.212 212105 | -105.215 215105 | -105.216 216105 | -105.254 300105 | -105.3 3105 | -106.1 3106 | -106.128 106 | -106.129 129106 | -106.162 162106 | -106.2 3106 500077 500077 | -106.200 200106 | -106.210 210106 | -106.211 211106 | -106.212 212106 | -106.215 215106 | -106.216 216106 | -106.254 300106 | -106.3 3106 | -107.1 3107 | -107.128 107 | -107.129 129107 | -107.162 162107 | -107.2 3107 | -107.200 200107 | -107.203 500295 500295 | -107.210 210107 | -107.211 211107 | -107.212 212107 | -107.215 215107 | -107.216 216107 | -107.254 300107 | -107.3 3107 | -108.1 3108 | -108.128 108 | -108.129 129108 | -108.162 162108 | -108.2 3108 | -108.200 200108 | -108.210 210108 | -108.211 211108 | -108.212 212108 | -108.215 215108 | -108.216 216108 | -108.254 300108 | -108.3 3108 | -109.1 3109 | -109.128 109 | -109.129 129109 | -109.162 162109 | -109.2 3109 | -109.200 200109 | -109.203 500296 500296 | -109.210 210109 | -109.211 211109 | -109.212 212109 | -109.215 215109 | -109.216 216109 | -109.254 300109 | -109.3 3109 | -10fg 49 | -10fg3 228028 | -10fg6 123 | -10fg6diff 200123 | -10fg6grd 129123 | -10fga 171049 | -10fgdiff 200049 | -10fgg15 131070 | -10fgg20 131071 | -10fgg25 131072 | -10fggrd 129049 | -10fgi 132049 | -10fgrea 160049 | -10gp 131049 | -10gpg100 133030 | -10gpg20 133026 | -10gpg35 133027 | -10gpg50 133028 | -10gpg75 133029 | -10si 207 | -10sidiff 200207 | -10sigrd 129207 | -10sp 131165 | -10spg10 131068 133021 | -10spg15 131069 133022 | -10spg20 133023 | -10spg35 133024 | -10spg50 133025 | -10u 165 | -10ua 171165 171207 | -10udiff 200165 | -10ugrd 129165 | -10v 166 | -10va 171166 | -10vdiff 200166 | -10vgrd 129166 | -10wsi 132165 | -10wsrea 160246 | -11.1 130 167 | -11.128 11 | -11.129 129011 | -11.133 133011 | -11.171 171011 | -11.2 130 167 500010 500010 500011 500011 500012 500012 500013 500013 500014 500014 | -11.200 200011 | -11.201 201011 | -11.204 500318 500318 | -11.206 500372 500372 | -11.210 210011 | -11.211 211011 | -11.212 212011 | -11.214 214011 | -11.215 215011 | -11.216 216011 | -11.228 228011 | -11.254 300011 | -11.3 130 167 | -110.1 3110 | -110.128 110 | -110.129 129110 | -110.162 162110 | -110.174 174110 | -110.175 175110 | -110.2 3110 | -110.200 200110 | -110.210 210110 | -110.211 211110 | -110.212 212110 | -110.215 215110 | -110.216 216110 | -110.254 300110 | -110.3 3110 | -111.1 3111 | -111.128 111 | -111.129 129111 | -111.162 162111 | -111.174 174111 | -111.175 175111 | -111.2 3111 500078 500078 500079 500079 | -111.200 200111 | -111.201 201111 500135 500135 | -111.210 210111 | -111.211 211111 | -111.212 212111 | -111.215 215111 | -111.216 216111 | -111.254 300111 | -111.3 3111 | -112.1 3112 | -112.128 112 | -112.129 129112 | -112.162 162112 | -112.2 3112 500080 500080 500081 500081 | -112.200 200112 | -112.201 201112 500136 500136 | -112.210 210112 | -112.211 211112 | -112.212 212112 | -112.215 215112 | -112.216 216112 | -112.254 300112 | -112.3 3112 | -113.1 3113 | -113.128 113 | -113.129 129113 | -113.162 162113 | -113.2 3113 500082 500082 500083 500083 | -113.200 200113 | -113.201 201113 500137 500137 | -113.202 500235 500235 | -113.210 210113 | -113.211 211113 | -113.212 212113 | -113.215 215113 | -113.216 216113 | -113.254 300113 | -113.3 3113 | -114.1 3114 | -114.128 114 | -114.129 129114 | -114.162 162114 | -114.2 3114 500084 500084 500085 500085 | -114.200 200114 | -114.202 500236 500236 | -114.210 210114 | -114.211 211114 | -114.212 212114 | -114.215 215114 | -114.216 216114 | -114.254 300114 | -114.3 3114 | -115.1 3115 | -115.128 115 | -115.129 129115 | -115.162 162115 | -115.2 3115 | -115.200 200115 | -115.202 500237 500237 | -115.210 210115 | -115.211 211115 | -115.212 212115 | -115.215 215115 | -115.216 216115 | -115.254 300115 | -115.3 3115 | -116.1 3116 | -116.128 116 | -116.129 129116 | -116.162 162116 | -116.2 3116 | -116.200 200116 | -116.210 210116 | -116.211 211116 | -116.212 212116 | -116.215 215116 | -116.216 216116 | -116.254 300116 | -116.3 3116 | -117.1 3117 | -117.128 117 | -117.129 129117 | -117.162 162117 | -117.2 3117 | -117.200 200117 | -117.210 210117 | -117.211 211117 | -117.212 212117 | -117.215 215117 | -117.216 216117 | -117.254 300117 | -117.3 3117 | -118.1 194 | -118.128 118 | -118.129 129118 | -118.162 162118 | -118.2 194 | -118.200 200118 | -118.210 210118 | -118.211 211118 | -118.212 212118 | -118.215 215118 | -118.216 216118 | -118.3 194 | -119.1 3119 | -119.128 119 | -119.129 129119 | -119.162 162119 | -119.2 3119 | -119.200 200119 | -119.210 210119 | -119.211 211119 | -119.212 212119 | -119.215 215119 | -119.216 216119 | -119.3 3119 | -12.1 3012 | -12.128 12 | -12.129 129012 | -12.133 133012 | -12.171 171012 | -12.2 3012 | -12.200 200012 | -12.201 201012 | -12.204 500319 500319 | -12.210 210012 | -12.211 211012 | -12.212 212012 | -12.214 214012 | -12.215 215012 | -12.216 216012 | -12.228 228012 | -12.254 300012 | -12.3 3012 | -120.1 3120 | -120.128 120 | -120.129 129120 | -120.162 162120 | -120.2 3120 | -120.200 200120 | -120.202 500238 500238 | -120.210 210120 | -120.211 211120 | -120.212 212120 | -120.215 215120 | -120.216 216120 | -120.3 3120 | -121.1 147 | -121.128 121 | -121.129 129121 | -121.162 162121 | -121.171 171121 | -121.2 147 500086 500086 | -121.200 200121 | -121.202 500239 500239 | -121.210 210121 | -121.211 211121 | -121.212 212121 | -121.215 215121 | -121.216 216121 | -121.228 260121 | -121.254 300121 | -121.3 147 | -122.1 146 | -122.128 122 | -122.129 129122 | -122.162 162122 | -122.171 171122 | -122.2 146 500087 500087 | -122.200 200122 | -122.201 500138 500138 | -122.202 500240 500240 | -122.210 210122 | -122.211 211122 | -122.212 212122 | -122.215 215122 | -122.216 216122 | -122.254 300122 | -122.3 146 | -123.1 145 | -123.128 123 | -123.129 129123 | -123.162 162123 | -123.2 145 | -123.200 200123 | -123.201 500139 500139 | -123.202 500241 500241 | -123.210 210123 | -123.211 211123 | -123.212 212123 | -123.215 215123 | -123.216 216123 | -123.228 260123 | -123.254 300123 | -123.3 145 | -124.1 3124 | -124.128 124 | -124.162 162124 | -124.2 3124 500088 500088 | -124.201 500140 500140 | -124.203 500297 500297 | -124.210 210124 | -124.211 211124 | -124.212 212124 | -124.215 215124 | -124.216 216124 | -124.3 3124 | -125.1 3125 | -125.128 125 | -125.129 129125 | -125.162 162125 | -125.171 171125 | -125.2 3125 500089 500089 | -125.200 200125 | -125.201 500141 500141 | -125.210 210125 | -125.211 211125 | -125.212 212125 | -125.215 215125 | -125.216 216125 | -125.3 3125 | -126.1 3126 | -126.128 126 | -126.129 129126 | -126.162 162126 | -126.171 171126 | -126.2 3126 | -126.200 200126 | -126.210 210126 | -126.211 211126 | -126.212 212126 | -126.215 215126 | -126.216 216126 | -126.3 3126 | -127.1 3127 | -127.128 127 | -127.129 129127 | -127.160 127 | -127.162 162127 | -127.171 171127 | -127.2 3127 | -127.200 200127 | -127.201 500142 500142 | -127.210 210127 | -127.211 211127 | -127.212 212127 | -127.215 215127 | -127.216 216127 | -127.254 300127 | -127.3 3127 | -128.128 128 | -128.129 129128 | -128.151 151128 | -128.160 128 | -128.162 162128 | -128.171 171128 | -128.200 200128 | -128.210 210128 | -128.211 211128 | -128.212 212128 | -128.215 215128 | -128.216 216128 | -128.254 300128 | -129.128 129 | -129.129 129129 | -129.131 131129 | -129.150 150129 | -129.151 151129 | -129.160 129 | -129.162 162129 | -129.170 129 | -129.171 171129 | -129.180 129 | -129.190 129 | -129.200 200129 | -129.201 500143 500143 | -129.210 210129 | -129.211 211129 | -129.212 212129 | -129.215 215129 | -129.216 216129 | -129.228 228129 | -129.254 300129 | -13.1 3 | -13.128 13 | -13.129 129013 | -13.133 133013 | -13.171 171013 | -13.2 3 | -13.200 200013 | -13.201 201013 500092 500092 | -13.204 500320 500320 | -13.210 210013 | -13.211 211013 | -13.212 212013 | -13.214 214013 | -13.215 215013 | -13.216 216013 | -13.228 228013 | -13.254 300013 | -13.3 3 | -130.128 130 | -130.129 129130 | -130.131 131130 | -130.150 150130 | -130.151 151130 | -130.160 130 | -130.162 162130 | -130.170 130 | -130.171 171130 | -130.180 130 | -130.190 130 | -130.200 200130 | -130.201 500144 500144 | -130.203 500298 500298 | -130.210 210130 | -130.211 211130 | -130.212 212130 | -130.215 215130 | -130.216 216130 | -130.228 228130 | -130.254 300130 | -131.128 131 | -131.129 129131 | -131.150 150131 | -131.151 151131 | -131.160 131 | -131.162 162131 | -131.170 131 | -131.171 171131 | -131.180 131 | -131.190 131 | -131.200 200131 | -131.201 500145 500145 | -131.203 500299 500299 | -131.210 210131 | -131.211 211131 | -131.212 212131 | -131.215 215131 | -131.216 216131 | -131.228 228131 | -131.254 300131 | -132.128 132 | -132.129 129132 | -132.151 151132 | -132.160 132 | -132.162 162132 | -132.170 132 | -132.171 171132 | -132.180 132 | -132.190 132 | -132.200 200132 | -132.201 500146 500146 | -132.203 500300 500300 | -132.210 210132 | -132.211 211132 | -132.212 212132 | -132.215 215132 | -132.216 216132 | -132.228 228132 | -132.254 300132 | -133.128 133 | -133.129 129133 | -133.150 150133 | -133.151 151133 | -133.160 133 | -133.162 162133 | -133.170 133 | -133.171 171133 | -133.180 133 | -133.190 133 | -133.200 200133 | -133.201 500147 500147 | -133.203 500301 500301 | -133.210 210133 | -133.211 211133 | -133.212 212133 | -133.215 215133 | -133.216 216133 | -133.254 300133 | -134.128 134 | -134.129 129134 | -134.150 150134 | -134.151 151134 | -134.160 134 | -134.162 162134 | -134.171 171134 | -134.180 134 | -134.190 134 | -134.200 200134 | -134.210 210134 | -134.211 211134 | -134.212 212134 | -134.215 215134 | -134.216 216134 | -134.228 228134 | -134.254 300134 | -135.128 135 | -135.129 129135 | -135.150 150135 | -135.151 151135 | -135.160 160135 | -135.162 162135 | -135.170 135 | -135.171 171135 | -135.200 200135 | -135.210 210135 | -135.211 211135 | -135.212 212135 | -135.215 215135 | -135.216 216135 | -135.254 300135 | -136.128 136 | -136.129 129136 | -136.151 151136 | -136.160 136 | -136.162 162136 | -136.171 171136 | -136.200 200136 | -136.210 210136 | -136.211 211136 | -136.212 212136 | -136.215 215136 | -136.216 216136 | -136.228 228136 | -136.254 300136 | -137.128 137 | -137.129 129137 | -137.150 150137 | -137.151 151137 | -137.160 160137 | -137.162 162137 | -137.171 171137 | -137.180 137 | -137.200 200137 | -137.210 210137 | -137.211 211137 | -137.212 212137 | -137.215 215137 | -137.216 216137 | -137.254 300137 | -138.128 138 | -138.129 129138 | -138.151 151138 | -138.160 138 | -138.162 162138 | -138.170 138 | -138.171 171138 | -138.180 138 | -138.190 138 | -138.200 200138 | -138.210 210138 | -138.211 211138 | -138.212 212138 | -138.215 215138 | -138.216 216138 | -138.254 300138 | -139.128 139 | -139.129 129139 | -139.131 131139 | -139.150 150139 | -139.151 151139 | -139.160 139 | -139.162 162139 | -139.170 139 | -139.171 171139 | -139.174 174139 | -139.175 175139 | -139.190 139 | -139.200 200139 | -139.201 201139 500148 500148 | -139.210 210139 | -139.211 211139 | -139.212 212139 | -139.215 215139 | -139.216 216139 | -139.228 228139 | -139.234 234139 | -139.254 300139 | -14.1 3014 | -14.128 14 | -14.129 129014 | -14.133 133014 | -14.171 171014 | -14.2 3014 | -14.200 200014 | -14.201 201014 500093 500093 | -14.204 500321 500321 | -14.210 210014 | -14.211 211014 | -14.212 212014 | -14.214 214014 | -14.215 215014 | -14.216 216014 | -14.228 228014 | -14.254 300014 | -14.3 3014 | -140.128 140 | -140.129 129140 | -140.150 150140 | -140.151 151140 | -140.160 160140 | -140.162 162140 | -140.170 140 | -140.171 171140 | -140.200 200140 | -140.203 500302 500302 | -140.210 210140 | -140.211 211140 | -140.212 212140 | -140.215 215140 | -140.216 216140 | -140.254 300140 | -141.128 141 | -141.129 129141 | -141.150 150141 | -141.151 151141 | -141.160 160141 | -141.162 162141 | -141.170 141 | -141.171 171141 | -141.180 141 | -141.190 190141 | -141.200 200141 | -141.201 500149 500149 | -141.210 210141 | -141.211 211141 | -141.212 212141 | -141.215 215141 | -141.216 216141 | -141.228 228141 | -141.254 300141 | -142.128 142 | -142.129 129142 | -142.150 150142 | -142.151 151142 | -142.160 160142 | -142.170 142 | -142.171 171142 | -142.172 172142 | -142.173 173142 | -142.180 142 | -142.200 200142 | -142.201 500150 500150 | -142.210 210142 | -142.211 211142 | -142.212 212142 | -142.215 215142 | -142.216 216142 | -142.230 230142 | -142.254 300142 | -143.128 143 | -143.129 129143 | -143.150 150143 | -143.151 151143 | -143.160 160143 | -143.170 143 | -143.171 171143 | -143.172 172143 | -143.173 173143 | -143.180 143 | -143.200 200143 | -143.201 500151 500151 | -143.210 210143 | -143.211 211143 | -143.212 212143 | -143.215 215143 | -143.216 216143 | -143.230 230143 | -143.254 300143 | -144.128 144 | -144.129 129144 | -144.131 131144 | -144.132 132144 | -144.150 150144 | -144.151 151144 | -144.160 160144 | -144.171 171144 | -144.172 172144 | -144.173 173144 | -144.180 144 | -144.200 200144 | -144.201 500152 500152 | -144.210 210144 | -144.211 211144 | -144.212 212144 | -144.215 215144 | -144.216 216144 | -144.228 228144 | -144.230 230144 | -144.254 300144 | -145.128 145 | -145.129 129145 | -145.150 150145 | -145.151 151145 | -145.160 145 | -145.171 171145 | -145.172 172145 | -145.173 173145 | -145.200 200145 | -145.201 500153 500153 | -145.210 210145 | -145.211 211145 | -145.212 212145 | -145.215 215145 | -145.216 216145 | -145.230 230145 | -145.254 300145 | -146.128 146 | -146.129 129146 | -146.150 150146 | -146.151 151146 | -146.160 146 | -146.170 146 | -146.171 171146 | -146.172 172146 | -146.173 173146 | -146.180 146 | -146.190 146 | -146.200 200146 | -146.201 500154 500154 | -146.210 210146 | -146.211 211146 | -146.212 212146 | -146.215 215146 | -146.216 216146 | -146.230 230146 | -146.254 300146 | -147.128 147 | -147.129 129147 | -147.150 150147 | -147.151 151147 | -147.160 147 | -147.170 147 | -147.171 171147 | -147.172 172147 | -147.173 173147 | -147.180 147 | -147.190 147 | -147.200 200147 | -147.201 500155 500155 | -147.210 210147 | -147.211 211147 | -147.212 212147 | -147.215 215147 | -147.216 216147 | -147.230 230147 | -147.254 300147 | -148.128 148 | -148.129 129148 | -148.150 150148 | -148.151 151148 | -148.171 171148 | -148.200 200148 | -148.201 500156 500156 | -148.210 210148 | -148.211 211148 | -148.212 212148 | -148.215 215148 | -148.216 216148 | -148.254 300148 | -149.128 149 | -149.129 129149 | -149.151 151149 | -149.170 170149 | -149.171 171149 | -149.172 172149 | -149.173 173149 | -149.180 180149 | -149.200 200149 | -149.201 500157 500157 | -149.210 210149 | -149.211 211149 | -149.212 212149 | -149.215 215149 | -149.216 216149 | -149.254 300149 | -15.1 121 3015 | -15.128 15 | -15.131 131015 | -15.133 133015 | -15.2 121 3015 500015 500015 | -15.201 201015 | -15.204 500322 500322 | -15.206 500373 500373 | -15.210 210015 | -15.211 211015 | -15.212 212015 | -15.214 214015 | -15.215 215015 | -15.216 216015 | -15.228 228015 | -15.254 300015 | -15.3 121 3015 | -150.128 150 | -150.129 129150 | -150.151 151150 | -150.171 171150 | -150.200 200150 | -150.201 201150 | -150.210 210150 | -150.211 211150 | -150.212 212150 | -150.215 215150 | -150.216 216150 | -150.254 300150 | -151.128 151 | -151.129 129151 | -151.131 131151 | -151.151 151151 | -151.160 151 | -151.170 151 | -151.171 171151 | -151.180 151 | -151.190 151 | -151.200 200151 | -151.210 210151 | -151.211 211151 | -151.212 212151 | -151.215 215151 | -151.216 216151 | -151.234 234151 | -151.254 300151 | -152.128 152 | -152.129 129152 | -152.150 150152 | -152.151 151152 | -152.160 152 | -152.171 171152 | -152.200 200152 | -152.201 500158 500158 | -152.210 210152 | -152.211 211152 | -152.212 212152 | -152.215 215152 | -152.216 216152 | -152.254 300152 | -153.128 153 | -153.129 129153 | -153.150 150153 | -153.151 151153 | -153.171 171153 | -153.172 172153 | -153.173 173153 | -153.200 200153 | -153.201 500159 500159 | -153.210 210153 | -153.211 211153 | -153.212 212153 | -153.215 215153 | -153.216 216153 | -153.254 300153 | -154.128 154 | -154.129 129154 | -154.150 150154 | -154.151 151154 | -154.171 171154 | -154.172 172154 | -154.173 173154 | -154.200 200154 | -154.201 500160 500160 | -154.203 500303 500303 | -154.210 210154 | -154.211 211154 | -154.212 212154 | -154.215 215154 | -154.216 216154 | -154.254 300154 | -155.128 155 | -155.129 129155 | -155.150 150155 | -155.151 151155 | -155.160 155 | -155.170 155 | -155.171 171155 | -155.180 155 | -155.190 155 | -155.200 200155 | -155.210 210155 | -155.211 211155 | -155.212 212155 | -155.215 215155 | -155.216 216155 | -155.254 300155 | -156.1 85001156 | -156.128 156 | -156.129 129156 | -156.151 151156 | -156.160 160156 | -156.171 171156 | -156.200 200156 | -156.210 210156 | -156.211 211156 | -156.212 212156 | -156.215 215156 | -156.216 216156 | -156.254 300156 | -157.1 85001157 | -157.128 157 | -157.129 129157 | -157.151 151157 | -157.160 160157 | -157.170 157 | -157.171 171157 | -157.190 157 | -157.200 200157 | -157.203 500304 500304 | -157.210 210157 | -157.211 211157 | -157.212 212157 | -157.215 215157 | -157.216 216157 | -157.254 300157 | -158.128 158 | -158.129 129158 | -158.151 151158 | -158.160 158 | -158.171 171158 | -158.200 200158 | -158.210 210158 | -158.211 211158 | -158.212 212158 | -158.215 215158 | -158.216 216158 | -158.254 300158 | -159.128 159 | -159.129 129159 | -159.151 151159 | -159.171 171159 | -159.200 200159 | -159.210 210159 | -159.211 211159 | -159.212 212159 | -159.215 215159 | -159.216 216159 | -159.254 300159 | -16.1 122 3016 | -16.128 16 | -16.131 131016 | -16.133 133016 | -16.2 122 3016 500016 500016 | -16.201 201016 | -16.204 500323 500323 | -16.206 500374 500374 | -16.210 210016 | -16.211 211016 | -16.212 212016 | -16.214 214016 | -16.215 215016 | -16.216 216016 | -16.228 228016 | -16.254 300016 | -16.3 122 3016 | -160.1 85001160 | -160.128 160 | -160.129 129160 | -160.151 151160 | -160.171 171160 | -160.200 200160 | -160.210 210160 | -160.211 211160 | -160.212 212160 | -160.215 215160 | -160.216 216160 | -160.254 300160 | -161.128 161 | -161.129 129161 | -161.151 151161 | -161.171 171161 | -161.200 200161 | -161.210 210161 | -161.211 211161 | -161.212 212161 | -161.215 215161 | -161.216 216161 | -162.128 162 | -162.129 129162 | -162.151 151162 | -162.171 171162 | -162.200 200162 | -162.210 210162 | -162.211 211162 | -162.212 212162 | -162.215 215162 | -162.216 216162 | -162.254 300162 | -163.128 163 | -163.129 129163 | -163.151 151163 | -163.171 171163 | -163.200 200163 | -163.210 210163 | -163.211 211163 | -163.212 212163 | -163.215 215163 | -163.216 216163 | -163.254 300163 | -164.128 164 | -164.129 129164 | -164.131 131164 | -164.151 151164 | -164.160 164 | -164.170 164 | -164.171 171164 | -164.174 174164 | -164.175 175164 | -164.180 164 | -164.190 164 | -164.200 200164 | -164.210 210164 | -164.211 211164 | -164.212 212164 | -164.215 215164 | -164.216 216164 | -164.228 228164 | -164.254 300164 | -165.128 165 | -165.129 129165 | -165.131 131165 | -165.132 132165 | -165.151 151165 | -165.160 165 | -165.171 171165 | -165.180 165 | -165.190 165 | -165.200 200165 | -165.210 210165 | -165.211 211165 | -165.212 212165 | -165.215 215165 | -165.216 216165 | -165.254 300165 | -166.128 166 | -166.129 129166 | -166.151 151166 | -166.160 166 | -166.171 171166 | -166.180 166 | -166.190 166 | -166.200 200166 | -166.210 210166 | -166.211 211166 | -166.212 212166 | -166.215 215166 | -166.216 216166 | -167.128 167 | -167.129 129167 | -167.131 131167 | -167.132 132167 | -167.151 151167 | -167.160 167 | -167.171 171167 | -167.174 174167 | -167.175 175167 | -167.180 167 | -167.190 167 | -167.200 200167 | -167.212 212167 | -167.215 215167 | -167.216 216167 | -167.234 234167 | -167.254 300167 | -168.128 168 | -168.129 129168 | -168.150 150168 | -168.151 151168 | -168.160 168 | -168.171 171168 | -168.174 174168 | -168.175 175168 | -168.180 168 | -168.190 168 | -168.200 200168 | -168.212 212168 | -168.215 215168 | -168.216 216168 | -168.254 300168 | -169.128 169 | -169.129 129169 | -169.150 150169 | -169.151 151169 | -169.171 171169 | -169.172 172169 | -169.173 173169 | -169.190 169 | -169.200 200169 | -169.212 212169 | -169.215 215169 | -169.216 216169 | -169.230 230169 | -169.254 300169 | -17.1 3017 | -17.128 17 | -17.131 131017 | -17.133 133017 | -17.2 3017 500017 500017 500018 500018 | -17.201 201017 | -17.202 500192 500192 | -17.206 500375 500375 | -17.210 210017 | -17.211 211017 | -17.212 212017 | -17.214 214017 | -17.215 215017 | -17.216 216017 | -17.228 228017 | -17.254 300017 | -17.3 3017 | -170.128 170 | -170.129 129170 | -170.150 150170 | -170.151 151170 | -170.160 170 | -170.171 171170 | -170.174 174170 | -170.175 175170 | -170.190 190170 | -170.200 200170 | -170.201 500161 500161 | -170.212 212170 | -170.215 215170 | -170.216 216170 | -170.228 228170 | -170.254 300170 | -171.128 171 | -171.129 129171 | -171.150 150171 | -171.151 151171 | -171.160 160171 | -171.170 170171 | -171.171 171171 | -171.190 190171 | -171.200 200171 | -171.201 500162 500162 | -171.212 212171 | -171.215 215171 | -171.216 216171 | -171.228 228171 | -171.254 300171 | -172.128 172 | -172.129 129172 | -172.150 150172 | -172.151 151172 | -172.160 172 | -172.171 172 | -172.174 172 | -172.175 172 | -172.180 172 | -172.190 172 | -172.200 200172 | -172.212 212172 | -172.215 215172 | -172.216 216172 | -172.254 300172 | -173.128 173 | -173.129 129173 | -173.150 150173 | -173.151 151173 | -173.160 173 | -173.171 171173 | -173.190 190173 | -173.200 200173 | -173.201 500163 500163 | -173.212 212173 | -173.215 215173 | -173.216 216173 | -173.254 300173 | -174.128 174 | -174.129 129174 | -174.151 151174 | -174.160 174 | -174.171 171174 | -174.190 174 | -174.200 200174 | -174.212 212174 | -174.215 215174 | -174.216 216174 | -174.230 230174 | -174.254 300174 | -175.128 175 | -175.129 129175 | -175.151 151175 | -175.171 171175 | -175.172 172175 | -175.173 173175 | -175.174 174175 | -175.175 175175 | -175.190 175 | -175.200 200175 | -175.212 212175 | -175.215 215175 | -175.216 216175 | -175.230 230175 | -175.254 300175 | -176.128 176 | -176.129 129176 | -176.151 151176 | -176.160 176 | -176.170 176 | -176.171 171176 | -176.172 172176 | -176.173 173176 | -176.180 180176 | -176.190 176 | -176.200 200176 | -176.212 212176 | -176.215 215176 | -176.216 216176 | -176.230 230176 | -176.254 300176 | -177.128 177 | -177.129 129177 | -177.151 151177 | -177.160 177 | -177.170 177 | -177.171 171177 | -177.172 172177 | -177.173 173177 | -177.180 180177 | -177.190 177 | -177.200 200177 | -177.212 212177 | -177.215 215177 | -177.216 216177 | -177.230 230177 | -177.254 300177 | -178.128 178 | -178.129 129178 | -178.151 151178 | -178.160 178 | -178.171 171178 | -178.172 172178 | -178.173 173178 | -178.180 180178 | -178.190 178 | -178.200 200178 | -178.212 212178 | -178.215 215178 | -178.216 216178 | -178.230 230178 | -178.254 300178 | -179.128 179 | -179.129 129179 | -179.151 151179 | -179.160 179 | -179.170 170179 | -179.171 171179 | -179.172 172179 | -179.173 173179 | -179.180 180179 | -179.190 179 | -179.200 200179 | -179.212 212179 | -179.215 215179 | -179.216 216179 | -179.230 230179 | -179.254 300179 | -18.1 3018 | -18.128 18 | -18.131 131018 | -18.133 133018 | -18.2 3018 | -18.201 500094 500094 | -18.202 500193 500193 | -18.210 210018 | -18.211 211018 | -18.212 212018 | -18.214 214018 | -18.215 215018 | -18.216 216018 | -18.228 228018 | -18.254 300018 | -18.3 3018 | -180.128 180 | -180.129 129180 | -180.150 150180 | -180.151 151180 | -180.160 160180 | -180.170 180 | -180.171 171180 | -180.172 172180 | -180.173 173180 | -180.180 180 | -180.200 200180 | -180.202 500242 500242 | -180.212 212180 | -180.216 216180 | -180.230 230180 | -180.254 300180 | -181.128 181 | -181.129 129181 | -181.150 150181 | -181.151 151181 | -181.160 160181 | -181.170 181 | -181.171 171181 | -181.172 172181 | -181.173 173181 | -181.180 181 | -181.200 200181 | -181.210 210181 | -181.211 211181 | -181.212 212181 | -181.216 216181 | -181.230 230181 | -181.254 300181 | -182.128 182 | -182.129 129182 | -182.150 150182 | -182.151 151182 | -182.160 160182 | -182.170 182 | -182.171 171182 | -182.172 172182 | -182.173 173182 | -182.180 182 | -182.190 182 | -182.200 200182 | -182.210 210182 | -182.211 211182 | -182.212 212182 | -182.216 216182 | -182.230 230182 | -182.254 300182 | -183.128 183 | -183.129 129183 | -183.150 150183 | -183.151 151183 | -183.160 183 | -183.171 171183 | -183.174 174183 | -183.175 175183 | -183.200 200183 | -183.210 210183 | -183.211 211183 | -183.212 212183 | -183.216 216183 | -183.254 300183 | -184.128 184 | -184.129 129184 | -184.151 151184 | -184.160 160184 | -184.170 184 | -184.171 171184 | -184.200 200184 | -184.210 210184 | -184.211 211184 | -184.212 212184 | -184.216 216184 | -184.254 300184 | -185.128 185 | -185.129 129185 | -185.151 151185 | -185.160 185 | -185.170 185 | -185.171 171185 | -185.200 200185 | -185.210 210185 | -185.211 211185 | -185.212 212185 | -185.216 216185 | -185.254 300185 | -186.128 186 | -186.129 129186 | -186.151 151186 | -186.160 186 | -186.171 171186 | -186.200 200186 | -186.210 210186 | -186.212 212186 | -186.216 216186 | -186.254 300186 | -187.128 187 | -187.129 129187 | -187.151 151187 | -187.160 187 | -187.171 171187 | -187.200 200187 | -187.201 201187 500164 500164 | -187.206 500385 500385 | -187.207 500388 500388 | -187.210 210187 | -187.212 212187 | -187.216 216187 | -187.254 300187 | -188.128 188 | -188.129 129188 | -188.151 151188 | -188.160 188 | -188.171 171188 | -188.200 200188 | -188.210 210188 | -188.212 212188 | -188.216 216188 | -188.254 300188 | -189.128 189 | -189.129 129189 | -189.171 171189 | -189.172 172189 | -189.173 173189 | -189.200 200189 | -189.210 210189 | -189.212 212189 | -189.216 216189 | -189.230 230189 | -189.254 300189 | -19.1 3019 | -19.128 19 | -19.133 133019 | -19.2 3019 | -19.201 500095 500095 | -19.202 500194 500194 | -19.210 210019 | -19.211 211019 | -19.212 212019 | -19.214 214019 | -19.215 215019 | -19.216 216019 | -19.228 228019 | -19.254 300019 | -19.3 3019 | -190.128 190 | -190.129 129190 | -190.151 151190 | -190.160 190 | -190.171 171190 | -190.200 200190 | -190.210 210190 | -190.212 212190 | -190.216 216190 | -190.254 300190 | -191.128 191 | -191.129 129191 | -191.151 151191 | -191.160 191 | -191.171 171191 | -191.200 200191 | -191.210 210191 | -191.212 212191 | -191.216 216191 | -191.254 300191 | -192.128 192 | -192.129 129192 | -192.151 151192 | -192.160 192 | -192.171 171192 | -192.200 200192 | -192.210 210192 | -192.212 212192 | -192.216 216192 | -192.254 300192 | -193.128 193 | -193.129 129193 | -193.151 151193 | -193.160 193 | -193.171 171193 | -193.200 200193 | -193.210 210193 | -193.212 212193 | -193.216 216193 | -193.254 300193 | -194.128 194 | -194.129 129194 | -194.151 151194 | -194.171 171194 | -194.200 200194 | -194.201 500165 500165 | -194.202 500243 500243 | -194.210 210194 | -194.212 212194 | -194.216 216194 | -194.254 300194 | -195.128 195 | -195.129 129195 | -195.160 195 | -195.171 171195 | -195.172 172195 | -195.173 173195 | -195.200 200195 | -195.202 500244 500244 | -195.210 210195 | -195.212 212195 | -195.216 216195 | -195.230 230195 | -195.254 300195 | -196.128 196 | -196.129 129196 | -196.160 196 | -196.171 171196 | -196.172 172196 | -196.173 173196 | -196.200 200196 | -196.202 500245 500245 | -196.203 500305 500305 | -196.210 210196 | -196.212 212196 | -196.216 216196 | -196.230 230196 | -196.254 300196 | -197.128 197 | -197.129 129197 | -197.160 197 | -197.171 171197 | -197.172 172197 | -197.173 173197 | -197.200 200197 | -197.201 500166 500166 | -197.202 500246 500246 | -197.210 210197 | -197.212 212197 | -197.216 216197 | -197.230 230197 | -197.254 300197 | -198.128 198 | -198.129 129198 | -198.160 160198 | -198.171 171198 | -198.200 200198 | -198.201 500167 500167 | -198.202 500247 500247 | -198.212 212198 | -198.216 216198 | -198.230 230198 | -198.254 300198 | -199.128 199 | -199.129 129199 | -199.151 151199 | -199.160 160199 | -199.171 171199 | -199.200 200199 | -199.201 500168 500168 | -199.202 500248 500248 | -199.212 212199 | -199.216 216199 | -2.1 151 | -2.128 2 | -2.129 129002 | -2.131 131002 | -2.133 133002 | -2.171 171002 | -2.2 151 500002 500002 | -2.200 200002 | -2.201 201002 | -2.204 500309 500309 | -2.205 500328 500328 500329 500329 500330 500330 500331 500331 | -2.210 210002 | -2.211 211002 | -2.212 212002 | -2.213 213002 | -2.214 214002 | -2.215 215002 | -2.216 216002 | -2.228 228002 | -2.254 300002 | -2.3 151 | -20.1 3020 | -20.128 20 | -20.131 131020 | -20.133 133020 | -20.2 3020 | -20.201 500096 500096 | -20.210 210020 | -20.211 211020 | -20.212 212020 | -20.214 214020 | -20.215 215020 | -20.216 216020 | -20.3 3020 | -200.128 200 | -200.129 129200 | -200.140 140200 | -200.151 151200 | -200.160 200 | -200.171 171200 | -200.200 200200 | -200.201 201200 500169 500169 | -200.202 500249 500249 | -200.212 212200 | -200.216 216200 | -200.254 300200 | -201.128 201 | -201.129 129201 | -201.131 131201 | -201.132 132201 | -201.151 151201 | -201.160 160201 | -201.170 201 | -201.171 171201 | -201.174 174201 | -201.175 175201 | -201.190 201 | -201.200 200201 | -201.202 500250 500250 | -201.212 212201 | -201.216 216201 | -201.254 300201 | -202.128 202 | -202.129 129202 | -202.131 131202 | -202.132 132202 | -202.151 151202 | -202.160 160202 | -202.170 202 | -202.171 171202 | -202.174 174202 | -202.175 175202 | -202.190 202 | -202.200 200202 | -202.202 500251 500251 | -202.212 212202 | -202.216 216202 | -202.254 300202 | -203.128 203 | -203.129 129203 | -203.151 151203 | -203.171 171203 | -203.200 200203 | -203.201 201203 500170 500170 | -203.202 500252 500252 | -203.203 500306 500306 | -203.210 210203 | -203.211 211203 | -203.212 212203 | -203.216 216203 | -203.254 300203 | -204.128 204 | -204.129 129204 | -204.151 151204 | -204.160 204 | -204.171 171204 | -204.200 200204 | -204.202 500253 500253 | -204.203 500307 500307 | -204.212 212204 | -204.216 216204 | -205.128 205 | -205.129 129205 | -205.151 151205 | -205.160 160205 | -205.171 171205 | -205.172 172205 | -205.173 173205 | -205.180 205 | -205.200 200205 | -205.202 500254 500254 | -205.212 212205 | -205.216 216205 | -205.230 230205 | -205.254 300205 | -206.128 206 | -206.129 129206 | -206.151 151206 | -206.160 160206 | -206.162 162206 | -206.171 171206 | -206.200 200206 | -206.202 500255 500255 | -206.210 210206 | -206.211 211206 | -206.212 212206 | -206.216 216206 | -206.254 300206 | -207.128 207 | -207.129 129207 | -207.151 151207 | -207.160 160207 | -207.162 162207 | -207.171 171207 | -207.200 200207 | -207.202 500256 500256 | -207.210 210207 | -207.211 211207 | -207.212 212207 | -207.216 216207 | -207.254 300207 | -208.128 208 | -208.129 129208 | -208.130 130208 | -208.151 151208 | -208.160 160208 | -208.162 162208 | -208.171 171208 | -208.172 172208 | -208.173 173208 | -208.200 200208 | -208.202 500257 500257 | -208.210 210208 | -208.211 211208 | -208.212 212208 | -208.216 216208 | -208.230 230208 | -208.254 300208 | -209.128 209 | -209.129 129209 | -209.130 130209 | -209.151 151209 | -209.160 160209 | -209.162 162209 | -209.171 171209 | -209.172 172209 | -209.173 173209 | -209.200 200209 | -209.202 500258 500258 | -209.210 210209 | -209.211 211209 | -209.212 212209 | -209.216 216209 | -209.230 230209 | -209.254 300209 | -20d 151163 | -21.1 3021 | -21.128 21 | -21.129 129021 | -21.131 131021 | -21.133 133021 | -21.171 171021 | -21.2 3021 500019 500019 | -21.200 200021 | -21.201 500097 500097 | -21.210 210021 | -21.211 211021 | -21.212 212021 | -21.214 214021 | -21.215 215021 | -21.216 216021 | -21.228 228021 | -21.254 300021 | -21.3 3021 | -210.128 210 | -210.129 129210 | -210.130 130210 | -210.151 151210 | -210.160 160210 | -210.162 162210 | -210.171 171210 | -210.172 172210 | -210.173 173210 | -210.200 200210 | -210.202 500259 500259 | -210.210 210210 | -210.211 211210 | -210.212 212210 | -210.216 216210 | -210.230 230210 | -210.254 300210 | -211.128 211 | -211.129 129211 | -211.130 130211 | -211.140 140211 | -211.151 151211 | -211.160 160211 | -211.162 162211 | -211.171 171211 | -211.172 172211 | -211.173 173211 | -211.200 200211 | -211.202 500260 500260 | -211.210 210211 | -211.211 211211 | -211.212 212211 | -211.216 216211 | -211.230 230211 | -211.254 300211 | -212.128 212 | -212.129 129212 | -212.130 130212 | -212.140 140212 | -212.151 151212 | -212.160 160212 | -212.162 162212 | -212.171 171212 | -212.172 172212 | -212.173 173212 | -212.200 200212 | -212.201 500171 500171 | -212.202 500261 500261 | -212.210 210212 | -212.211 211212 | -212.212 212212 | -212.216 216212 | -212.230 230212 | -212.254 300212 | -213.128 213 | -213.130 130213 | -213.140 140213 | -213.160 160213 | -213.162 162213 | -213.202 500262 500262 | -213.210 210213 | -213.211 211213 | -213.212 212213 | -213.216 216213 | -213.254 300213 | -214.128 214 | -214.129 129214 | -214.130 130214 | -214.140 140214 | -214.160 160214 | -214.162 162214 | -214.171 171214 | -214.200 200214 | -214.202 500263 500263 | -214.210 210214 | -214.211 211214 | -214.212 212214 | -214.216 216214 | -214.254 300214 | -215.128 215 | -215.129 129215 | -215.130 130215 | -215.140 140215 | -215.160 160215 | -215.162 162215 | -215.171 171215 | -215.200 200215 | -215.201 201215 500172 500172 | -215.202 500264 500264 | -215.210 210215 | -215.211 211215 | -215.212 212215 | -215.216 216215 | -215.254 300215 | -216.128 216 | -216.129 129216 | -216.130 130216 | -216.132 132216 | -216.140 140216 | -216.160 160216 | -216.162 162216 | -216.171 171216 | -216.200 200216 | -216.202 500265 500265 | -216.210 210216 | -216.211 211216 | -216.212 212216 | -216.216 216216 | -217.128 217 | -217.129 129217 | -217.130 130217 | -217.140 140217 | -217.160 160217 | -217.162 162217 | -217.171 171217 | -217.200 200217 | -217.202 500266 500266 | -217.210 210217 | -217.212 212217 | -217.216 216217 | -218.128 218 | -218.129 129218 | -218.130 130218 | -218.140 140218 | -218.160 160218 | -218.162 162218 | -218.171 171218 | -218.200 200218 | -218.202 500267 500267 | -218.210 210218 | -218.212 212218 | -218.216 216218 | -218.254 300218 | -219.128 219 | -219.129 129219 | -219.130 130219 | -219.140 140219 | -219.160 160219 | -219.162 162219 | -219.171 171219 | -219.200 200219 | -219.202 500268 500268 | -219.210 210219 | -219.212 212219 | -219.216 216219 | -219.254 300219 | -22.1 3022 | -22.128 22 | -22.129 129022 | -22.131 131022 | -22.133 133022 | -22.171 171022 | -22.2 3022 | -22.200 200022 | -22.210 210022 | -22.211 211022 | -22.212 212022 | -22.214 214022 | -22.215 215022 | -22.216 216022 | -22.228 228022 | -22.254 300022 | -22.3 3022 | -220.128 220 | -220.129 129220 | -220.130 130220 | -220.140 140220 | -220.160 160220 | -220.162 162220 | -220.171 171220 | -220.200 200220 | -220.202 500269 500269 | -220.210 210220 | -220.212 212220 | -220.216 216220 | -220.254 300220 | -221.128 221 | -221.129 129221 | -221.130 130221 | -221.140 140221 | -221.160 160221 | -221.162 162221 | -221.171 171221 | -221.200 200221 | -221.202 500270 500270 | -221.210 210221 | -221.212 212221 | -221.216 216221 | -221.254 300221 | -222.128 222 | -222.129 129222 | -222.130 222 | -222.140 140222 | -222.160 160222 | -222.162 162222 | -222.171 171222 | -222.200 200222 | -222.202 500271 500271 | -222.210 210222 | -222.212 212222 | -222.216 216222 | -222.254 300222 | -223.128 223 | -223.129 129223 | -223.130 223 | -223.140 140223 | -223.160 160223 | -223.162 162223 | -223.171 171223 | -223.200 200223 | -223.202 500272 500272 | -223.210 210223 | -223.212 212223 | -223.216 216223 | -223.254 300223 | -224.128 224 | -224.129 129224 | -224.130 130224 | -224.140 140224 | -224.160 160224 | -224.162 162224 | -224.171 171224 | -224.200 200224 | -224.202 500273 500273 | -224.210 210224 | -224.212 212224 | -224.216 216224 | -224.254 300224 | -225.128 225 | -225.129 129225 | -225.130 130225 | -225.140 140225 | -225.160 160225 | -225.162 162225 | -225.171 171225 | -225.200 200225 | -225.202 500274 500274 | -225.210 210225 | -225.212 212225 | -225.216 216225 | -225.254 300225 | -226.128 226 | -226.129 129226 | -226.130 130226 | -226.140 140226 | -226.160 160226 | -226.162 162226 | -226.171 171226 | -226.200 200226 | -226.202 500275 500275 | -226.210 210226 | -226.212 212226 | -226.216 216226 | -226.254 300226 | -227.128 227 | -227.129 129227 | -227.130 227 | -227.140 140227 | -227.162 162227 | -227.171 171227 | -227.200 200227 | -227.202 500276 500276 | -227.210 210227 | -227.212 212227 | -227.216 216227 | -227.254 300227 | -228.128 228 | -228.129 129228 | -228.130 130228 | -228.131 131228 | -228.132 132228 | -228.140 140228 | -228.160 228 | -228.170 228 | -228.171 171228 | -228.172 172228 | -228.173 173228 | -228.190 228 | -228.200 200228 | -228.202 500277 500277 | -228.210 210228 | -228.212 212228 | -228.216 216228 | -228.220 220228 | -228.228 228228 | -228.230 230228 | -228.234 234228 | -229.128 229 | -229.129 129229 | -229.130 130229 | -229.131 131229 | -229.140 140229 | -229.160 229 | -229.162 162229 | -229.171 171229 | -229.190 190229 | -229.200 200229 | -229.202 500278 500278 | -229.210 210229 | -229.212 212229 | -229.216 216229 | -23.1 3023 | -23.128 23 | -23.129 129023 | -23.131 131023 | -23.133 133023 | -23.171 171023 | -23.2 3023 | -23.200 200023 | -23.210 210023 | -23.211 211023 | -23.212 212023 | -23.214 214023 | -23.215 215023 | -23.216 216023 | -23.228 228023 | -23.254 300023 | -23.3 3023 | -230.128 230 | -230.129 129230 | -230.130 130230 | -230.140 140230 | -230.160 230 | -230.162 162230 | -230.171 171230 | -230.200 200230 | -230.201 500173 500173 500174 500174 500175 500175 | -230.210 210230 | -230.212 212230 | -230.216 216230 | -230.254 300230 | -231.128 231 | -231.129 129231 | -231.130 130231 | -231.140 140231 | -231.160 160231 | -231.162 162231 | -231.171 171231 | -231.200 200231 | -231.202 500279 500279 500280 500280 | -231.210 210231 | -231.212 212231 | -231.216 216231 | -231.254 300231 | -232.128 232 | -232.129 129232 | -232.130 130232 | -232.131 131232 | -232.140 140232 | -232.160 232 | -232.162 162232 | -232.171 171232 | -232.200 200232 | -232.201 500176 500176 | -232.202 500281 500281 500282 500282 | -232.210 210232 | -232.212 212232 | -232.216 216232 | -232.254 300232 | -233.128 233 | -233.129 129233 | -233.140 140233 | -233.160 233 | -233.162 162233 | -233.171 171233 | -233.200 200233 | -233.201 500177 500177 | -233.202 500283 500283 500284 500284 | -233.210 210233 | -233.212 212233 | -233.216 216233 | -233.254 300233 | -234.128 234 | -234.129 129234 | -234.140 140234 | -234.160 234 | -234.171 171234 | -234.200 200234 | -234.210 210234 | -234.212 212234 | -234.216 216234 | -234.254 300234 | -235.128 235 | -235.129 129235 | -235.140 140235 | -235.160 235 | -235.171 171235 | -235.200 200235 | -235.210 210235 | -235.212 212235 | -235.216 216235 | -235.254 300235 | -236.128 236 | -236.129 129236 | -236.140 140236 | -236.160 236 | -236.171 171236 | -236.174 174236 | -236.175 175236 | -236.200 200236 | -236.201 500178 500178 | -236.210 210236 | -236.212 212236 | -236.216 216236 | -236.254 300236 | -237.128 237 | -237.129 129237 | -237.140 140237 | -237.160 237 | -237.171 171237 | -237.200 200237 | -237.201 500179 500179 | -237.210 210237 | -237.212 212237 | -237.216 216237 | -237.254 300237 | -238.128 238 | -238.129 129238 | -238.140 140238 | -238.160 238 | -238.171 171238 | -238.200 200238 | -238.201 500180 500180 | -238.210 210238 | -238.212 212238 | -238.216 216238 | -238.254 300238 | -239.128 239 | -239.129 129239 | -239.140 140239 | -239.160 160239 | -239.171 171239 | -239.172 172239 | -239.173 173239 | -239.200 200239 | -239.201 500181 500181 | -239.210 210239 | -239.212 212239 | -239.216 216239 | -239.254 300239 | -24.1 3024 | -24.128 24 | -24.129 129024 | -24.131 131024 | -24.133 133024 | -24.2 3024 | -24.200 200024 | -24.210 210024 | -24.211 211024 | -24.212 212024 | -24.214 214024 | -24.215 215024 | -24.216 216024 | -24.228 228024 | -24.3 3024 | -240.128 240 | -240.129 129240 | -240.140 140240 | -240.160 160240 | -240.171 171240 | -240.172 172240 | -240.173 173240 | -240.200 200240 | -240.201 500182 500182 | -240.210 210240 | -240.212 212240 | -240.216 216240 | -240.254 300240 | -241.128 241 | -241.129 129241 | -241.140 140241 | -241.160 160241 | -241.171 171241 | -241.200 200241 | -241.201 201241 500183 500183 | -241.210 210241 | -241.212 212241 | -241.216 216241 | -241.254 300241 | -242.128 242 | -242.129 129242 | -242.140 140242 | -242.160 160242 | -242.171 171242 | -242.200 200242 | -242.212 212242 | -242.216 216242 | -242.228 228242 | -242.254 300242 | -243.128 243 | -243.129 129243 | -243.140 140243 | -243.160 160243 | -243.171 171243 | -243.200 200243 | -243.201 500184 500184 | -243.212 212243 | -243.216 216243 | -243.228 228243 | -243.254 300243 | -244.128 244 | -244.129 129244 | -244.140 140244 | -244.160 244 | -244.171 171244 | -244.200 200244 | -244.212 212244 | -244.216 216244 | -244.228 228244 | -244.254 300244 | -245.128 245 | -245.129 129245 | -245.140 140245 | -245.160 245 | -245.171 171245 | -245.200 200245 | -245.212 212245 | -245.216 216245 | -245.228 228245 | -245.254 300245 | -246.128 246 | -246.129 129246 | -246.140 140246 | -246.160 160246 | -246.171 171246 | -246.200 200246 | -246.212 212246 | -246.216 216246 | -246.228 228246 | -246.254 300246 | -247.128 247 | -247.129 129247 | -247.140 140247 | -247.160 160247 | -247.171 171247 | -247.200 200247 | -247.212 212247 | -247.216 216247 | -247.228 228247 | -247.254 300247 | -248.128 248 | -248.129 129248 | -248.140 140248 | -248.171 171248 | -248.200 200248 | -248.202 500285 500285 | -248.212 212248 | -248.216 216248 | -248.254 300248 | -249.128 249 | -249.129 129249 | -249.140 140249 | -249.160 160249 | -249.171 171249 | -249.200 200249 | -249.212 212249 | -249.216 216249 | -249.228 228249 | -249.254 300249 | -25.1 3025 | -25.128 25 | -25.129 129025 | -25.131 131025 | -25.133 133025 | -25.2 3025 | -25.200 200025 | -25.210 210025 | -25.211 211025 | -25.212 212025 | -25.214 214025 | -25.215 215025 | -25.216 216025 | -25.228 228025 | -25.254 300025 | -25.3 3025 | -250.128 250 | -250.129 129250 | -250.140 140250 | -250.171 171250 | -250.200 200250 | -250.212 212250 | -250.216 216250 | -250.228 228250 | -250.254 300250 | -251.128 251 | -251.129 129251 | -251.140 140251 | -251.171 171251 | -251.200 200251 | -251.212 212251 | -251.216 216251 | -251.228 228251 | -251.254 300251 | -252.128 252 | -252.129 129252 | -252.140 140252 | -252.171 171252 | -252.200 200252 | -252.212 212252 | -252.216 216252 | -252.228 228252 | -252.254 300252 | -253.128 253 | -253.129 129253 | -253.140 140253 | -253.171 171253 | -253.200 200253 | -253.212 212253 | -253.216 216253 | -253.228 228253 | -253.254 300253 | -254.128 254 | -254.129 129254 | -254.140 140254 | -254.160 160254 | -254.171 171254 | -254.200 200254 | -254.212 212254 | -254.216 216254 | -254.228 228254 | -254.254 300254 | -255.128 255 | -255.129 129255 | -255.130 255 | -255.131 131255 | -255.132 255 | -255.140 140255 | -255.150 150255 | -255.151 151255 | -255.160 255 | -255.162 162255 | -255.170 255 | -255.171 171255 | -255.172 172255 | -255.173 173255 | -255.174 174255 | -255.175 175255 | -255.180 255 | -255.190 255 | -255.200 200255 | -255.201 201255 | -255.212 212255 | -255.216 216255 | -255.254 300255 | -26.1 3026 | -26.128 26 | -26.129 129026 | -26.133 133026 | -26.171 171026 | -26.2 3026 | -26.200 200026 | -26.210 210026 | -26.211 211026 | -26.212 212026 | -26.214 214026 | -26.215 215026 | -26.216 216026 | -26.228 228026 | -26.254 300026 | -26.3 3026 | -27.1 3027 | -27.128 27 | -27.129 129027 | -27.133 133027 | -27.171 171027 | -27.2 3027 | -27.200 200027 | -27.210 210027 | -27.211 211027 | -27.212 212027 | -27.214 214027 | -27.215 215027 | -27.216 216027 | -27.228 228027 | -27.254 300027 | -27.3 3027 | -28.1 3028 | -28.128 28 | -28.129 129028 | -28.133 133028 | -28.171 171028 | -28.2 3028 500020 500020 | -28.200 200028 | -28.210 210028 | -28.211 211028 | -28.212 212028 | -28.214 214028 | -28.215 215028 | -28.216 216028 | -28.228 228028 | -28.254 300028 | -28.3 3028 | -29.1 3029 | -29.128 29 | -29.129 129029 | -29.133 133029 | -29.171 171029 | -29.2 3029 500021 500021 | -29.200 200029 | -29.201 201029 500098 500098 | -29.203 500286 500286 | -29.210 210029 | -29.211 211029 | -29.212 212029 | -29.214 214029 | -29.215 215029 | -29.216 216029 | -29.254 300029 | -29.3 3029 | -2d 168 | -2da 171168 | -2ddiff 200168 | -2dfd 140251 | -2dgrd 129168 | -2dsp 140250 | -2t 167 | -2ta 171167 | -2tag0 131003 | -2tag1 131002 | -2tag2 131001 | -2talm1 131004 | -2talm2 131005 | -2tdiff 200167 | -2tgrd 129167 | -2ti 132167 | -2tl273 131073 | -2tp 131139 131167 | -2tpg25 133006 | -2tpg30 133007 | -2tpg35 133008 | -2tpg40 133009 | -2tpg45 133010 | -2tpl0 133003 | -2tpl10 133005 | -2tpl5 133004 | -2tplm10 133001 | -2tplm5 133002 | -2ts 234167 | -3.1 3003 | -3.128 3 | -3.129 129003 | -3.131 131003 | -3.133 133003 | -3.171 171003 | -3.2 3003 500003 500003 | -3.200 200003 | -3.201 201003 | -3.204 500310 500310 | -3.205 500332 500332 500333 500333 500334 500334 500335 500335 500336 500336 500337 500337 500338 500338 500339 500339 | -3.210 210003 | -3.211 211003 | -3.212 212003 | -3.213 213003 | -3.214 214003 | -3.215 215003 | -3.216 216003 | -3.228 228003 | -3.254 300003 | -3.3 3003 | -30.1 3030 | -30.128 30 | -30.129 129030 | -30.133 133030 | -30.171 171030 | -30.2 3030 500022 500022 | -30.200 200030 | -30.201 201030 500099 500099 | -30.203 500287 500287 | -30.210 210030 | -30.211 211030 | -30.212 212030 | -30.214 214030 | -30.215 215030 | -30.216 216030 | -30.254 300030 | -30.3 3030 | -31.1 3031 | -31.128 31 | -31.129 129031 | -31.133 133031 | -31.171 171031 | -31.174 174031 | -31.175 175031 | -31.2 3031 500023 500023 500024 500024 | -31.200 200031 | -31.201 201031 500100 500100 | -31.210 210031 | -31.211 211031 | -31.212 212031 | -31.214 214031 | -31.215 215031 | -31.216 216031 | -31.254 300031 | -31.3 3031 | -32.1 10 | -32.128 32 | -32.129 129032 | -32.133 133032 | -32.171 171032 | -32.2 10 500025 500025 500026 500026 | -32.200 200032 | -32.201 201032 | -32.210 210032 | -32.211 211032 | -32.212 212032 | -32.214 214032 | -32.215 215032 | -32.216 216032 | -32.254 300032 | -32.3 10 | -33.1 131 165 | -33.128 33 | -33.129 129033 | -33.133 133033 | -33.171 171033 | -33.2 131 165 500027 500027 500028 500028 | -33.200 200033 | -33.201 201033 500101 500101 | -33.203 500288 500288 | -33.206 500376 500376 | -33.210 210033 | -33.211 211033 | -33.212 212033 | -33.214 214033 | -33.215 215033 | -33.216 216033 | -33.254 300033 | -33.3 131 165 | -34.1 132 166 | -34.128 34 | -34.129 129034 | -34.133 133034 | -34.171 171034 | -34.174 174034 | -34.175 175034 | -34.2 132 166 500029 500029 500030 500030 | -34.200 200034 | -34.201 201034 | -34.206 500377 500377 | -34.210 210034 | -34.211 211034 | -34.212 212034 | -34.214 214034 | -34.215 215034 | -34.216 216034 | -34.254 300034 | -34.3 132 166 | -35.1 1 | -35.128 35 | -35.129 129035 | -35.133 133035 | -35.171 171035 | -35.2 1 | -35.200 200035 | -35.201 201035 500102 500102 | -35.210 210035 | -35.211 211035 | -35.212 212035 | -35.214 214035 | -35.215 215035 | -35.216 216035 | -35.254 300035 | -35.3 1 | -36.1 2 | -36.128 36 | -36.129 129036 | -36.133 133036 | -36.171 171036 | -36.2 2 | -36.200 200036 | -36.201 201036 500103 500103 | -36.210 210036 | -36.211 211036 | -36.212 212036 | -36.214 214036 | -36.215 215036 | -36.216 216036 | -36.254 300036 | -36.3 2 | -37.1 3037 | -37.128 37 | -37.129 129037 | -37.133 133037 | -37.171 171037 | -37.2 3037 | -37.200 200037 | -37.201 201037 500104 500104 | -37.210 210037 | -37.211 211037 | -37.212 212037 | -37.214 214037 | -37.215 215037 | -37.216 216037 | -37.3 3037 | -38.1 3038 | -38.128 38 | -38.129 129038 | -38.133 133038 | -38.171 171038 | -38.2 3038 | -38.200 200038 | -38.201 201038 500105 500105 | -38.210 210038 | -38.211 211038 | -38.212 212038 | -38.214 214038 | -38.215 215038 | -38.216 216038 | -38.254 300038 | -38.3 3038 | -39.1 135 | -39.128 39 | -39.129 129039 | -39.133 133039 | -39.171 171039 | -39.174 174039 | -39.175 175039 | -39.2 135 500031 500031 | -39.200 200039 | -39.201 500106 500106 | -39.210 210039 | -39.211 211039 | -39.212 212039 | -39.214 214039 | -39.215 215039 | -39.216 216039 | -39.228 228039 | -39.254 300039 | -39.3 135 | -4.1 60 | -4.128 4 | -4.129 129004 | -4.131 131004 | -4.133 133004 | -4.171 171004 | -4.2 60 | -4.200 200004 | -4.201 201004 | -4.202 500185 500185 | -4.204 500311 500311 | -4.205 500340 500340 500341 500341 500342 500342 500343 500343 500344 500344 500345 500345 500346 500346 500347 500347 500348 500348 500349 500349 500350 500350 500351 500351 500352 500352 500353 500353 500354 500354 500355 500355 500356 500356 500357 500357 500358 500358 500359 500359 500360 500360 500361 500361 500362 500362 500363 500363 500364 500364 500365 500365 500366 500366 500367 500367 500368 500368 500369 500369 500370 500370 500371 500371 | -4.210 210004 | -4.211 211004 | -4.212 212004 | -4.213 213004 | -4.214 214004 | -4.215 215004 | -4.216 216004 | -4.228 228004 | -4.3 60 | -40.128 40 | -40.129 129040 | -40.133 133040 | -40.171 171040 | -40.174 174040 | -40.175 175040 | -40.2 500032 500032 | -40.200 200040 | -40.201 500107 500107 | -40.202 500195 500195 | -40.210 210040 | -40.211 211040 | -40.212 212040 | -40.214 214040 | -40.215 215040 | -40.216 216040 | -40.228 228040 | -40.254 300040 | -41.1 3041 | -41.128 41 | -41.129 129041 | -41.133 133041 | -41.171 171041 | -41.174 174041 | -41.175 175041 | -41.2 3041 | -41.200 200041 | -41.201 201041 500108 500108 | -41.202 500196 500196 | -41.210 210041 | -41.211 211041 | -41.212 212041 | -41.214 214041 | -41.215 215041 | -41.216 216041 | -41.228 228041 | -41.254 300041 | -41.3 3041 | -42.1 3042 | -42.128 42 | -42.129 129042 | -42.133 133042 | -42.171 171042 | -42.174 174042 | -42.175 175042 | -42.2 3042 | -42.200 200042 | -42.201 201042 500109 500109 | -42.202 500197 500197 | -42.210 210042 | -42.211 211042 | -42.212 212042 | -42.214 214042 | -42.215 215042 | -42.216 216042 | -42.228 228042 | -42.254 300042 | -42.3 3042 | -43.1 138 | -43.128 43 | -43.129 129043 | -43.133 133043 | -43.171 171043 | -43.2 138 | -43.200 200043 | -43.201 500110 500110 | -43.210 210043 | -43.211 211043 | -43.212 212043 | -43.214 214043 | -43.215 215043 | -43.216 216043 | -43.228 228043 | -43.254 300043 | -43.3 138 | -44.1 155 168 | -44.128 44 | -44.129 129044 | -44.133 133044 | -44.171 171044 | -44.172 172044 | -44.173 173044 | -44.2 155 168 | -44.200 200044 | -44.201 500111 500111 | -44.202 500198 500198 | -44.210 210044 | -44.211 211044 | -44.212 212044 | -44.214 214044 | -44.215 215044 | -44.216 216044 | -44.230 230044 | -44.254 300044 | -44.3 155 168 | -45.1 3045 | -45.128 45 | -45.129 129045 | -45.133 133045 | -45.171 171045 | -45.172 172045 | -45.173 173045 | -45.2 3045 | -45.200 200045 | -45.202 500199 500199 | -45.210 210045 | -45.211 211045 | -45.212 212045 | -45.214 214045 | -45.215 215045 | -45.216 216045 | -45.230 230045 | -45.254 300045 | -45.3 3045 | -46.1 3046 | -46.128 46 | -46.129 129046 | -46.133 133046 | -46.171 171046 | -46.2 3046 | -46.200 200046 | -46.202 500200 500200 | -46.210 210046 | -46.211 211046 | -46.212 212046 | -46.214 214046 | -46.215 215046 | -46.216 216046 | -46.230 230046 | -46.254 300046 | -46.3 3046 | -47.1 3047 | -47.128 47 | -47.129 129047 | -47.133 133047 | -47.171 171047 | -47.2 3047 | -47.200 200047 | -47.202 500201 500201 | -47.210 210047 | -47.211 211047 | -47.212 212047 | -47.214 214047 | -47.215 215047 | -47.216 216047 | -47.254 300047 | -47.3 3047 | -48.1 3048 | -48.128 48 | -48.129 129048 | -48.133 133048 | -48.171 171048 | -48.172 172048 | -48.173 173048 | -48.2 3048 | -48.200 200048 | -48.202 500202 500202 | -48.210 210048 | -48.211 211048 | -48.212 212048 | -48.214 214048 | -48.215 215048 | -48.216 216048 | -48.254 300048 | -48.3 3048 | -49.1 3049 | -49.128 49 | -49.129 129049 | -49.131 131049 | -49.132 132049 | -49.133 133049 | -49.160 160049 | -49.171 171049 | -49.174 174049 | -49.175 175049 | -49.2 3049 | -49.200 200049 | -49.202 500203 500203 | -49.210 210049 | -49.211 211049 | -49.212 212049 | -49.214 214049 | -49.215 215049 | -49.216 216049 | -49.254 300049 | -49.3 3049 | -4lftx 260128 | -5.1 3005 | -5.128 5 | -5.129 129005 | -5.131 131005 | -5.133 133005 | -5.171 171005 | -5.2 3005 | -5.200 200005 | -5.201 201005 500090 500090 500091 500091 | -5.204 500312 500312 | -5.210 210005 | -5.211 211005 | -5.212 212005 | -5.213 213005 | -5.214 214005 | -5.215 215005 | -5.216 216005 | -5.228 228005 | -5.3 3005 | -50.1 3050 | -50.128 50 | -50.129 129050 | -50.133 133050 | -50.171 171050 | -50.172 172050 | -50.173 173050 | -50.2 3050 | -50.200 200050 | -50.201 201050 | -50.210 210050 | -50.211 211050 | -50.212 212050 | -50.214 214050 | -50.215 215050 | -50.216 216050 | -50.254 300050 | -50.3 3050 | -51.1 133 | -51.128 51 | -51.129 129051 | -51.133 133051 | -51.162 162051 | -51.171 171051 | -51.2 133 500033 500033 500034 500034 500035 500035 | -51.200 200051 | -51.201 201051 500112 500112 | -51.210 210051 | -51.211 211051 | -51.212 212051 | -51.214 214051 | -51.215 215051 | -51.216 216051 | -51.254 300051 | -51.3 133 | -52.1 157 | -52.128 52 | -52.129 129052 | -52.133 133052 | -52.162 134 | -52.171 171052 | -52.2 157 500036 500036 500037 500037 | -52.200 200052 | -52.201 201052 500113 500113 | -52.210 210052 | -52.211 211052 | -52.212 212052 | -52.214 214052 | -52.215 215052 | -52.216 216052 | -52.254 300052 | -52.3 157 | -53.1 3053 | -53.128 53 | -53.129 129053 | -53.133 133053 | -53.162 162053 | -53.171 171053 | -53.2 3053 | -53.200 200053 | -53.201 201053 500114 500114 | -53.210 210053 | -53.211 211053 | -53.212 212053 | -53.215 215053 | -53.216 216053 | -53.254 300053 | -53.3 3053 | -54.1 3054 | -54.128 54 | -54.129 129054 | -54.133 133054 | -54.162 162054 | -54.171 171054 | -54.2 3054 500038 500038 | -54.200 200054 | -54.201 201054 | -54.210 210054 | -54.211 211054 | -54.212 212054 | -54.215 215054 | -54.216 216054 | -54.254 300054 | -54.3 3054 | -55.1 3055 | -55.128 55 | -55.129 129055 | -55.133 133055 | -55.162 162055 | -55.171 171055 | -55.174 174055 | -55.175 175055 | -55.2 3055 | -55.200 200055 | -55.201 201055 | -55.210 210055 | -55.211 211055 | -55.212 212055 | -55.215 215055 | -55.216 216055 | -55.254 300055 | -55.3 3055 | -56.1 3056 | -56.128 56 | -56.129 129056 | -56.133 133056 | -56.162 162056 | -56.171 171056 | -56.2 3056 | -56.200 200056 | -56.201 201056 | -56.202 500204 500204 | -56.210 210056 | -56.211 211056 | -56.212 212056 | -56.215 215056 | -56.216 216056 | -56.254 300056 | -56.3 3056 | -57.1 182 | -57.128 57 | -57.129 129057 | -57.133 133057 | -57.162 162057 | -57.171 171057 | -57.2 182 500039 500039 | -57.200 200057 | -57.202 500205 500205 | -57.210 210057 | -57.212 212057 | -57.215 215057 | -57.216 216057 | -57.230 230057 | -57.254 300057 | -57.3 182 | -58.128 58 | -58.129 129058 | -58.133 133058 | -58.162 162058 | -58.171 171058 | -58.2 500040 500040 | -58.200 200058 | -58.201 500115 500115 | -58.210 210058 | -58.212 212058 | -58.215 215058 | -58.216 216058 | -58.230 230058 | -59.1 3059 | -59.128 59 | -59.129 129059 | -59.131 131059 | -59.133 133059 | -59.162 162059 | -59.171 171059 | -59.2 3059 | -59.200 200059 | -59.201 500116 500116 | -59.210 210059 | -59.212 212059 | -59.215 215059 | -59.216 216059 | -59.254 300059 | -59.3 3059 | -5wava 260084 | -5wavh 260080 | -6.1 129 | -6.128 6 | -6.131 131006 | -6.133 133006 | -6.171 171006 | -6.174 174006 | -6.175 175006 | -6.2 129 500004 500004 500005 500005 500006 500006 | -6.201 201006 | -6.204 500313 500313 | -6.210 210006 | -6.211 211006 | -6.212 212006 | -6.214 214006 | -6.215 215006 | -6.216 216006 | -6.228 228006 | -6.254 300006 | -6.3 129 | -60.1 3060 | -60.128 60 | -60.129 129060 | -60.131 131060 | -60.133 133060 | -60.162 162060 | -60.171 171060 | -60.2 3060 | -60.200 200060 | -60.201 201060 | -60.212 212060 | -60.215 215060 | -60.216 216060 | -60.254 300060 | -60.3 3060 | -61.1 228228 | -61.129 129061 | -61.131 131061 | -61.133 133061 | -61.162 162061 | -61.171 171061 | -61.2 228228 500041 500041 | -61.200 200061 | -61.201 201061 500117 500117 | -61.202 500206 500206 | -61.206 500378 500378 | -61.207 500386 500386 | -61.210 210061 | -61.211 211061 | -61.212 212061 | -61.215 215061 | -61.216 216061 | -61.254 300061 | -61.3 228228 | -62.1 3062 | -62.128 62 | -62.129 129062 | -62.131 131062 | -62.133 133062 | -62.162 162062 | -62.171 171062 | -62.2 3062 500042 500042 | -62.200 200062 | -62.201 201062 | -62.202 500207 500207 | -62.210 210062 | -62.211 211062 | -62.212 212062 | -62.215 215062 | -62.216 216062 | -62.254 300062 | -62.3 3062 | -63.1 3063 | -63.128 63 | -63.129 129063 | -63.131 131063 | -63.133 133063 | -63.162 162063 | -63.171 171063 | -63.2 3063 500043 500043 | -63.200 200063 | -63.201 201063 | -63.210 210063 | -63.211 211063 | -63.212 212063 | -63.215 215063 | -63.216 216063 | -63.254 300063 | -63.3 3063 | -64.1 3064 | -64.128 64 | -64.129 129064 | -64.131 131064 | -64.133 133064 | -64.162 162064 | -64.171 171064 | -64.2 3064 | -64.200 200064 | -64.201 201064 | -64.202 500208 500208 | -64.210 210064 | -64.211 211064 | -64.212 212064 | -64.215 215064 | -64.216 216064 | -64.254 300064 | -64.3 3064 | -65.1 228144 | -65.128 65 | -65.129 129065 | -65.131 131065 | -65.133 133065 | -65.162 162065 | -65.171 171065 | -65.2 228144 500044 500044 | -65.200 200065 | -65.201 201065 | -65.202 500209 500209 | -65.210 210065 | -65.211 211065 | -65.212 212065 | -65.215 215065 | -65.216 216065 | -65.254 300065 | -65.3 228144 | -66.1 228141 | -66.128 66 | -66.129 129066 | -66.131 131066 | -66.133 133066 | -66.162 162066 | -66.2 228141 500045 500045 | -66.200 200066 | -66.201 201066 | -66.210 210066 | -66.211 211066 | -66.212 212066 | -66.215 215066 | -66.216 216066 | -66.254 300066 | -66.3 228141 | -67.1 3067 | -67.128 67 | -67.129 129067 | -67.131 131067 | -67.133 133067 | -67.162 162067 | -67.2 3067 | -67.200 200067 | -67.201 201067 | -67.202 500210 500210 | -67.210 210067 | -67.211 211067 | -67.212 212067 | -67.215 215067 | -67.216 216067 | -67.254 300067 | -67.3 3067 | -68.1 3068 | -68.128 68 | -68.129 129068 | -68.131 131068 | -68.133 133068 | -68.162 162068 | -68.2 3068 | -68.200 200068 | -68.201 201068 500118 500118 | -68.202 500211 500211 | -68.210 210068 | -68.211 211068 | -68.212 212068 | -68.215 215068 | -68.216 216068 | -68.254 300068 | -68.3 3068 | -69.1 3069 | -69.128 69 | -69.129 129069 | -69.131 131069 | -69.133 133069 | -69.162 162069 | -69.2 3069 | -69.200 200069 | -69.201 201069 500119 500119 | -69.202 500212 500212 | -69.210 210069 | -69.211 211069 | -69.212 212069 | -69.215 215069 | -69.216 216069 | -69.254 300069 | -69.3 3069 | -7.1 156 228002 | -7.128 7 | -7.131 131007 | -7.133 133007 | -7.171 171007 | -7.2 156 228002 | -7.201 201007 | -7.202 500186 500186 500187 500187 | -7.204 500314 500314 | -7.210 210007 | -7.211 211007 | -7.212 212007 | -7.214 214007 | -7.215 215007 | -7.216 216007 | -7.228 228007 | -7.254 300007 | -7.3 156 228002 | -70.1 3070 | -70.128 70 | -70.129 129070 | -70.131 131070 | -70.133 133070 | -70.162 162070 | -70.2 3070 | -70.200 200070 | -70.201 201070 | -70.202 500213 500213 | -70.210 210070 | -70.211 211070 | -70.212 212070 | -70.215 215070 | -70.216 216070 | -70.254 300070 | -70.3 3070 | -71.1 228164 | -71.128 71 | -71.129 129071 | -71.131 131071 | -71.133 133071 | -71.162 162071 | -71.2 228164 500046 500046 | -71.200 200071 | -71.201 201071 | -71.202 500214 500214 | -71.206 500379 500379 | -71.210 210071 | -71.211 211071 | -71.212 212071 | -71.215 215071 | -71.216 216071 | -71.254 300071 | -71.3 228164 | -72.1 185 | -72.128 72 | -72.131 131072 | -72.133 133072 | -72.162 162072 | -72.2 185 500047 500047 | -72.201 201072 500120 500120 | -72.210 210072 | -72.212 212072 | -72.215 215072 | -72.216 216072 | -72.254 300072 | -72.3 185 | -73.1 186 | -73.128 73 | -73.131 131073 | -73.133 133073 | -73.162 162073 | -73.2 186 500048 500048 | -73.201 201073 500121 500121 | -73.206 500380 500380 | -73.210 210073 | -73.212 212073 | -73.215 215073 | -73.216 216073 | -73.254 300073 | -73.3 186 | -74.1 187 | -74.128 74 | -74.131 131074 | -74.133 133074 | -74.162 162074 | -74.2 187 500049 500049 | -74.201 201074 500122 500122 | -74.202 500215 500215 500216 500216 | -74.206 500381 500381 | -74.210 210074 | -74.212 212074 | -74.215 215074 | -74.216 216074 | -74.254 300074 | -74.3 187 | -75.1 188 | -75.128 75 | -75.131 131075 | -75.133 133075 | -75.162 162075 | -75.2 188 500050 500050 | -75.201 201075 500123 500123 | -75.202 500217 500217 | -75.206 500382 500382 | -75.212 212075 | -75.215 215075 | -75.216 216075 | -75.254 300075 | -75.3 188 | -76.1 260102 | -76.128 76 | -76.131 131076 | -76.133 133076 | -76.162 162076 | -76.2 260102 500051 500051 | -76.201 201076 | -76.202 500218 500218 | -76.212 212076 | -76.215 215076 | -76.216 216076 | -76.254 300076 | -76.3 260102 | -77.1 3077 | -77.128 77 | -77.131 131077 | -77.133 133077 | -77.162 162077 | -77.2 3077 | -77.201 201077 | -77.202 500219 500219 | -77.212 212077 | -77.215 215077 | -77.216 216077 | -77.254 300077 | -77.3 3077 | -78.1 239 | -78.128 78 | -78.129 129078 | -78.131 131078 | -78.133 133078 | -78.162 162078 | -78.171 171078 | -78.2 239 500052 500052 | -78.200 200078 | -78.201 201078 500124 500124 | -78.202 500220 500220 | -78.212 212078 | -78.215 215078 | -78.216 216078 | -78.3 239 | -79.1 240 | -79.128 79 | -79.129 129079 | -79.131 131079 | -79.133 133079 | -79.162 162079 | -79.171 171079 | -79.2 240 500053 500053 | -79.200 200079 | -79.201 201079 500125 500125 | -79.202 500221 500221 500222 500222 | -79.206 500383 500383 | -79.207 500387 500387 | -79.212 212079 | -79.215 215079 | -79.216 216079 | -79.3 240 | -8.1 3008 | -8.128 8 | -8.131 131008 | -8.133 133008 | -8.174 174008 | -8.2 3008 500007 500007 500008 500008 | -8.201 201008 | -8.202 500188 500188 500189 500189 | -8.204 500315 500315 | -8.210 210008 | -8.211 211008 | -8.212 212008 | -8.214 214008 | -8.215 215008 | -8.216 216008 | -8.228 228008 | -8.230 230008 | -8.254 300008 | -8.3 3008 | -80.1 3080 | -80.128 80 | -80.129 129080 | -80.131 131080 | -80.133 133080 | -80.162 162080 | -80.2 3080 | -80.200 200080 | -80.201 201080 | -80.210 210080 | -80.211 211080 | -80.212 212080 | -80.215 215080 | -80.216 216080 | -80.228 228080 | -80.3 3080 | -81.1 172 | -81.128 81 | -81.129 129081 | -81.131 131081 | -81.133 133081 | -81.162 162081 | -81.2 172 500054 500054 | -81.200 200081 | -81.201 201081 | -81.210 210081 | -81.211 211081 | -81.212 212081 | -81.215 215081 | -81.216 216081 | -81.228 228081 | -81.254 300081 | -81.3 172 | -82.1 3082 | -82.128 82 | -82.129 129082 | -82.131 131082 | -82.133 133082 | -82.162 162082 | -82.2 3082 | -82.200 200082 | -82.201 201082 500126 500126 | -82.210 210082 | -82.211 211082 | -82.212 212082 | -82.215 215082 | -82.216 216082 | -82.228 228082 | -82.254 300082 | -82.3 3082 | -83.1 173 | -83.128 83 | -83.129 129083 | -83.131 131083 | -83.133 133083 | -83.162 162083 | -83.174 174083 | -83.175 175083 | -83.2 173 500055 500055 | -83.200 200083 | -83.201 201083 | -83.210 210083 | -83.211 211083 | -83.212 212083 | -83.215 215083 | -83.216 216083 | -83.228 228083 | -83.254 300083 | -83.3 173 | -84.1 174 | -84.128 84 | -84.129 129084 | -84.131 131084 | -84.133 133084 | -84.162 162084 | -84.2 174 500056 500056 500057 500057 | -84.200 200084 | -84.201 201084 500127 500127 | -84.202 500223 500223 500224 500224 | -84.210 210084 | -84.211 211084 | -84.212 212084 | -84.215 215084 | -84.216 216084 | -84.228 228084 | -84.254 300084 | -84.3 174 | -85.1 228139 | -85.128 85 | -85.129 129085 | -85.131 131085 | -85.133 133085 | -85.162 162085 | -85.174 174085 | -85.175 175085 | -85.2 228139 500058 500058 500059 500059 500060 500060 500061 500061 | -85.200 200085 | -85.201 201085 500128 500128 | -85.206 500384 500384 | -85.210 210085 | -85.211 211085 | -85.212 212085 | -85.215 215085 | -85.216 216085 | -85.228 228085 | -85.254 300085 | -85.3 228139 | -86.1 3086 228039 | -86.128 86 | -86.129 129086 | -86.131 131086 | -86.133 133086 | -86.162 162086 | -86.174 174086 | -86.175 175086 | -86.2 3086 228039 500062 500062 500063 500063 500064 500064 | -86.200 200086 | -86.202 500225 500225 500226 500226 | -86.210 210086 | -86.211 211086 | -86.212 212086 | -86.215 215086 | -86.216 216086 | -86.254 300086 | -86.3 3086 228039 | -87.1 199 | -87.128 87 | -87.129 129087 | -87.131 131087 | -87.133 133087 | -87.162 162087 | -87.174 174087 | -87.175 175087 | -87.2 199 500065 500065 | -87.200 200087 | -87.210 210087 | -87.211 211087 | -87.212 212087 | -87.215 215087 | -87.216 216087 | -87.254 300087 | -87.3 199 | -88.1 3088 | -88.128 88 | -88.129 129088 | -88.131 131088 | -88.133 133088 | -88.162 162088 | -88.174 174088 | -88.175 175088 | -88.2 3088 | -88.200 200088 | -88.201 500129 500129 | -88.210 210088 | -88.211 211088 | -88.212 212088 | -88.215 215088 | -88.216 216088 | -88.3 3088 | -89.1 3089 | -89.128 89 | -89.129 129089 | -89.131 131089 | -89.133 133089 | -89.162 162089 | -89.174 174089 | -89.175 175089 | -89.2 3089 | -89.200 200089 | -89.201 500130 500130 | -89.210 210089 | -89.211 211089 | -89.212 212089 | -89.215 215089 | -89.216 216089 | -89.228 228089 | -89.254 300089 | -89.3 3089 | -9.1 3009 | -9.128 9 | -9.131 131009 | -9.133 133009 | -9.174 174009 | -9.2 3009 | -9.201 201009 | -9.202 500190 500190 | -9.204 500316 500316 | -9.210 210009 | -9.211 211009 | -9.212 212009 | -9.214 214009 | -9.215 215009 | -9.216 216009 | -9.228 228009 | -9.230 230009 | -9.3 3009 | -90.1 205 | -90.128 90 | -90.129 129090 | -90.131 131090 | -90.133 133090 | -90.162 162090 | -90.174 174090 | -90.175 175090 | -90.2 205 500066 500066 500067 500067 500068 500068 | -90.200 200090 | -90.203 500289 500289 | -90.210 210090 | -90.211 211090 | -90.212 212090 | -90.215 215090 | -90.216 216090 | -90.228 228090 | -90.3 205 | -91.1 3091 | -91.128 91 | -91.129 129091 | -91.131 131091 | -91.133 133091 | -91.162 162091 | -91.2 3091 500069 500069 | -91.200 200091 | -91.202 500227 500227 500228 500228 | -91.203 500290 500290 | -91.210 210091 | -91.211 211091 | -91.212 212091 | -91.215 215091 | -91.216 216091 | -91.228 228091 | -91.254 300091 | -91.3 3091 | -92.1 3092 | -92.128 92 | -92.129 129092 | -92.131 131092 | -92.133 133092 | -92.162 162092 | -92.2 3092 500070 500070 | -92.200 200092 | -92.202 500229 500229 500230 500230 | -92.210 210092 | -92.211 211092 | -92.212 212092 | -92.215 215092 | -92.216 216092 | -92.228 228092 | -92.254 300092 | -92.3 3092 | -93.1 3093 | -93.128 93 | -93.129 129093 | -93.131 131093 | -93.2 3093 | -93.200 200093 | -93.202 500231 500231 500232 500232 | -93.210 210093 | -93.211 211093 | -93.212 212093 | -93.215 215093 | -93.216 216093 | -93.228 228093 | -93.254 300093 | -93.3 3093 | -94.1 3094 | -94.128 94 | -94.129 129094 | -94.131 131094 | -94.174 174094 | -94.2 3094 | -94.200 200094 | -94.203 500291 500291 | -94.210 210094 | -94.211 211094 | -94.212 212094 | -94.215 215094 | -94.216 216094 | -94.228 228094 | -94.254 300094 | -94.3 3094 | -95.1 3095 | -95.128 95 | -95.129 129095 | -95.131 131095 | -95.174 174095 | -95.2 3095 | -95.200 200095 | -95.210 210095 | -95.211 211095 | -95.212 212095 | -95.215 215095 | -95.216 216095 | -95.254 300095 | -95.3 3095 | -96.1 3096 | -96.128 96 | -96.129 129096 | -96.131 131096 | -96.2 3096 | -96.200 200096 | -96.210 210096 | -96.211 211096 | -96.212 212096 | -96.215 215096 | -96.216 216096 | -96.254 300096 | -96.3 3096 | -97.1 3097 | -97.128 97 | -97.129 129097 | -97.131 131097 | -97.2 3097 | -97.200 200097 | -97.210 210097 | -97.211 211097 | -97.212 212097 | -97.215 215097 | -97.216 216097 | -97.254 300097 | -97.3 3097 | -98.1 3098 | -98.128 98 | -98.129 129098 | -98.174 174098 | -98.2 3098 | -98.200 200098 | -98.210 210098 | -98.211 211098 | -98.212 212098 | -98.215 215098 | -98.216 216098 | -98.254 300098 | -98.3 3098 | -99.1 3099 | -99.128 99 | -99.129 129099 | -99.174 174099 | -99.2 3099 | -99.200 200099 | -99.201 201099 500131 500131 | -99.203 500292 500292 | -99.210 210099 | -99.211 211099 | -99.212 212099 | -99.215 215099 | -99.216 216099 | -99.3 3099 | -CAPE_INS 85001160 | -PREC_CONVEC 85001156 | -PREC_GDE_ECH 85001157 | -abdv 300042 | -absd 3042 | -absh 260014 | -absv 3041 | -abvo 300041 | -accaod550 215089 | -acces 260139 | -acf 241 | -acfa 171241 | -acfdiff 200241 | -acfgrd 129241 | -aciod 260140 | -aco2gpp 228081 | -aco2nee 228080 | -aco2rec 228082 | -acond 260469 | -acpcp 3063 | -acpcpn 260287 | -acradp 260141 | -acwh 140247 | -adrtg 500295 | -advor 500294 | -advorg 500293 | -aer_bc 500229 | -aer_bc12 500230 | -aer_dust 500225 | -aer_dust12 500226 | -aer_org 500227 | -aer_org12 500228 | -aer_so4 500223 | -aer_so412 500224 | -aer_ss 500231 | -aer_ss12 500232 | -aerddpbchphil 215068 | -aerddpbchphob 215067 | -aerddpdul 215030 | -aerddpdum 215029 | -aerddpdus 215028 | -aerddpomhphil 215052 | -aerddpomhphob 215051 | -aerddpso2 215169 | -aerddpssl 215006 | -aerddpssm 215005 | -aerddpsss 215004 | -aerddpsu 215082 | -aerdep 210052 | -aerdep10fg 215092 | -aerdep10si 215091 | -aerdepdiff 211052 | -aergn01 210016 | -aergn01diff 211016 | -aergn02 210017 | -aergn02diff 211017 | -aergn03 210018 | -aergn03diff 211018 | -aergn04 210019 | -aergn04diff 211019 | -aergn05 210020 | -aergn05diff 211020 | -aergn06 210021 | -aergn06diff 211021 | -aergn07 210022 | -aergn07diff 211022 | -aergn08 210023 | -aergn08diff 211023 | -aergn09 210024 | -aergn09diff 211024 | -aergn10 210025 | -aergn10diff 211025 | -aergn11 210026 | -aergn11diff 211026 | -aergn12 210027 | -aergn12diff 211027 | -aerlg 210048 | -aerlgdiff 211048 | -aerls01 210031 | -aerls01diff 211031 | -aerls02 210032 | -aerls02diff 211032 | -aerls03 210033 | -aerls03diff 211033 | -aerls04 210034 | -aerls04diff 211034 | -aerls05 210035 | -aerls05diff 211035 | -aerls06 210036 | -aerls06diff 211036 | -aerls07 210037 | -aerls07diff 211037 | -aerls08 210038 | -aerls08diff 211038 | -aerls09 210039 | -aerls09diff 211039 | -aerls10 210040 | -aerls10diff 211040 | -aerls11 210041 | -aerls11diff 211041 | -aerls12 210042 | -aerls12diff 211042 | -aerlts 210053 | -aerltsdiff 211053 | -aermr01 210001 | -aermr01diff 211001 | -aermr02 210002 | -aermr02diff 211002 | -aermr03 210003 | -aermr03diff 211003 | -aermr04 210004 | -aermr04diff 211004 | -aermr05 210005 | -aermr05diff 211005 | -aermr06 210006 | -aermr06diff 211006 | -aermr07 210007 | -aermr07diff 211007 | -aermr08 210008 | -aermr08diff 211008 | -aermr09 210009 | -aermr09diff 211009 | -aermr10 210010 | -aermr10diff 211010 | -aermr11 210011 | -aermr11diff 211011 | -aermr12 210012 | -aermr12diff 211012 | -aermr13 210013 | -aermr13diff 211013 | -aermr14 210014 | -aermr14diff 211014 | -aermr15 210015 | -aermr15diff 211015 | -aermssbchphil 215078 | -aermssbchphob 215077 | -aermssdul 215045 | -aermssdum 215044 | -aermssdus 215043 | -aermssomhphil 215062 | -aermssomhphob 215061 | -aermssso2 215174 | -aermssssl 215021 | -aermssssm 215020 | -aermsssss 215019 | -aermsssu 215087 | -aerngtbchphil 215076 | -aerngtbchphob 215075 | -aerngtdul 215042 | -aerngtdum 215041 | -aerngtdus 215040 | -aerngtomhphil 215060 | -aerngtomhphob 215059 | -aerngtso2 215173 | -aerngtssl 215018 | -aerngtssm 215017 | -aerngtsss 215016 | -aerngtsu 215086 | -aerodbchphil 215080 | -aerodbchphob 215079 | -aeroddul 215048 | -aeroddum 215047 | -aeroddus 215046 | -aerodomhphil 215064 | -aerodomhphob 215063 | -aerodso2 215175 | -aerodssl 215024 | -aerodssm 215023 | -aerodsss 215022 | -aerodsu 215088 | -aerot 260129 | -aerpr 210046 | -aerpr03 210028 | -aerpr03diff 211028 | -aerprdiff 211046 | -aerscc 210054 | -aersccdiff 211054 | -aersdmbchphil 215070 | -aersdmbchphob 215069 | -aersdmdul 215033 | -aersdmdum 215032 | -aersdmdus 215031 | -aersdmomhphil 215054 | -aersdmomhphob 215053 | -aersdmso2 215170 | -aersdmssl 215009 | -aersdmssm 215008 | -aersdmsss 215007 | -aersdmsu 215083 | -aersm 210047 | -aersmdiff 211047 | -aersrcbchphil 215066 | -aersrcbchphob 215065 | -aersrcdul 215027 | -aersrcdum 215026 | -aersrcdus 215025 | -aersrcomhphil 215050 | -aersrcomhphob 215049 | -aersrcso2 215168 | -aersrcssl 215003 | -aersrcssm 215002 | -aersrcsss 215001 | -aersrcsu 215081 | -aerwdccbchphil 215074 | -aerwdccbchphob 215073 | -aerwdccdul 215039 | -aerwdccdum 215038 | -aerwdccdus 215037 | -aerwdccomhphil 215058 | -aerwdccomhphob 215057 | -aerwdccso2 215172 | -aerwdccssl 215015 | -aerwdccssm 215014 | -aerwdccsss 215013 | -aerwdccsu 215085 | -aerwdlsbchphil 215072 | -aerwdlsbchphob 215071 | -aerwdlsdul 215036 | -aerwdlsdum 215035 | -aerwdlsdus 215034 | -aerwdlsomhphil 215056 | -aerwdlsomhphob 215055 | -aerwdlsso2 215171 | -aerwdlsssl 215012 | -aerwdlsssm 215011 | -aerwdlssss 215010 | -aerwdlssu 215084 | -aerwv01 210029 | -aerwv01diff 211029 | -aerwv02 210030 | -aerwv02diff 211030 | -aerwv03 210044 | -aerwv03diff 211044 | -aerwv04 210045 | -aerwv04diff 211045 | -aevap_s 500039 | -agpl 300054 | -aiw 249 | -aiwa 171249 | -aiwdiff 200249 | -aiwgrd 129249 | -akhs 260449 | -akms 260450 | -al 174 260509 | -ala 171174 | -alb_rad 500056 | -albe 300084 | -albedo_b 500057 | -aldf 228245 | -aldiff 200174 | -aldr 228244 | -ale 210119 | -alediff 211119 | -algrd 129174 | -alhfl_bs 500094 | -alhfl_pl 500095 | -alhfl_s 500086 | -alnid 18 | -alnidg 210197 | -alnidi 210195 | -alnidv 210196 | -alnip 17 | -alnipg 210191 | -alnipi 210189 | -alnipv 210190 | -alts 260076 | -aluvd 16 | -aluvdg 210194 | -aluvdi 210192 | -aluvdv 210193 | -aluvp 15 | -aluvpg 210188 | -aluvpi 210186 | -aluvpsn 215090 | -aluvpv 210187 | -alvar 230174 | -alw 242 | -alwa 171242 | -alwdiff 200242 | -alwgrd 129242 | -amdl 300185 | -amixl 260460 | -amsl 300186 | -ana_err_fi 500195 | -ana_err_u 500196 | -ana_err_v 500197 | -anor 162 | -anora 171162 | -anordiff 200162 | -anorgrd 129162 | -aod1020 210227 | -aod1064 210228 | -aod1240 210216 | -aod1240diff 211216 | -aod1640 210229 | -aod2130 210230 | -aod340 210217 | -aod355 210218 | -aod380 210219 | -aod400 210220 | -aod440 210221 | -aod469 210213 | -aod469diff 211213 | -aod500 210222 | -aod532 210223 | -aod550 210207 | -aod550diff 211207 | -aod645 210224 | -aod670 210214 | -aod670diff 211214 | -aod800 210225 | -aod858 210226 | -aod865 210215 | -aod865diff 211215 | -aodabs1020 215110 | -aodabs1064 215111 | -aodabs1240 215112 | -aodabs1640 215113 | -aodabs2130 215176 | -aodabs340 215096 | -aodabs355 215097 | -aodabs380 215098 | -aodabs400 215099 | -aodabs440 215100 | -aodabs469 215101 | -aodabs500 215102 | -aodabs532 215103 | -aodabs550 215104 | -aodabs645 215105 | -aodabs670 215106 | -aodabs800 215107 | -aodabs858 215108 | -aodabs865 215109 | -aodfm1020 215128 | -aodfm1064 215129 | -aodfm1240 215130 | -aodfm1640 215131 | -aodfm2130 215177 | -aodfm340 215114 | -aodfm355 215115 | -aodfm380 215116 | -aodfm400 215117 | -aodfm440 215118 | -aodfm469 215119 | -aodfm500 215120 | -aodfm532 215121 | -aodfm550 215122 | -aodfm645 215123 | -aodfm670 215124 | -aodfm800 215125 | -aodfm858 215126 | -aodfm865 215127 | -aodlg 210051 | -aodlgdiff 211051 | -aodpr 210049 | -aodprdiff 211049 | -aodsm 210050 | -aodsmdiff 211050 | -aohflx 260496 | -aot340 214052 | -apab_s 201005 500090 | -apcpn 260286 | -apt 151181 210120 | -aptdiff 211120 | -arain 260284 | -arrc 140248 | -as 151183 | -ascat_sm_cdfa 228253 | -ascat_sm_cdfb 228254 | -ashfl 260497 | -ashfl_s 500087 | -asn 32 | -asna 171032 | -asndiff 200032 | -asngrd 129032 | -asnow 260025 | -asob_s 500078 | -asob_t 500082 | -asq 233 | -asqa 171233 | -asqdiff 200233 | -asqgrd 129233 | -asr 151157 | -asymmetry1020 215164 | -asymmetry1064 215165 | -asymmetry1240 215166 | -asymmetry1640 215167 | -asymmetry2130 215179 | -asymmetry340 215150 | -asymmetry355 215151 | -asymmetry380 215152 | -asymmetry400 215153 | -asymmetry440 215154 | -asymmetry469 215155 | -asymmetry500 215156 | -asymmetry532 215157 | -asymmetry550 215158 | -asymmetry645 215159 | -asymmetry670 215160 | -asymmetry800 215161 | -asymmetry858 215162 | -asymmetry865 215163 | -at 127 | -ata 171127 | -atdiff 200127 | -atgrd 129127 | -ath 130229 | -athb_s 500080 | -athb_t 500084 | -athe 252 | -athea 171252 | -athediff 200252 | -athegrd 129252 | -atmdiv 260231 | -atmt 300234 | -atmw 254 | -atmwa 171254 | -atmwax 130231 | -atmwdiff 200254 | -atmwgrd 129254 | -att 130228 | -atte 251 | -attea 171251 | -attediff 200251 | -attegrd 129251 | -atze 253 | -atzea 171253 | -atzediff 200253 | -atzegrd 129253 | -atzw 130230 | -aumfl_s 500088 | -austr_sso 500279 | -avdis_sso 500283 | -avmfl_s 500089 | -avsft 260481 | -avstr_sso 500281 | -awh 140246 | -ba-140 500276 | -ba-140d 500277 | -ba-140w 500278 | -baret 260480 | -bas_con 201072 500120 | -bc_hv 71 | -bc_lv 70 | -bcaod550 210211 | -bcaod550diff 211211 | -bcfire 210091 | -bcfirediff 211091 | -bffire 210097 | -bffirediff 211097 | -bfi 140253 | -bgrun 260174 | -bkeng 260504 | -bld 145 | -blda 171145 | -blddiff 200145 | -bldgrd 129145 | -bldrate 172145 | -blds 300123 | -bldvar 230145 | -blh 159 | -blha 171159 | -blhdiff 200159 | -blhgrd 129159 | -bli 3077 300077 | -bmixl 260190 | -bmpga 151204 | -botlst 260204 | -bpa 151209 | -bpt 151180 | -bref 260134 | -brvel 260135 | -bsal 151192 | -bsf 151147 | -bslh 300176 | -bswid 260133 | -btmp 194 | -btmpa 171194 | -btmpdiff 200194 | -btmpgrd 129194 | -btp 151149 | -bv 128 | -bva 171128 | -bvdiff 200128 | -bvgrd 129128 | -bzpga 151203 | -c2h4fire 210106 | -c2h4firediff 211106 | -c2h4ofire 210114 | -c2h4ofirediff 211114 | -c2h5ohfire 210104 | -c2h5ohfirediff 211104 | -c2h6fire 210118 | -c2h6firediff 211118 | -c2h6sfire 210117 | -c2h6sfirediff 211117 | -c3h6fire 210107 | -c3h6firediff 211107 | -c3h6ofire 210115 | -c3h6ofirediff 211115 | -c3h8fire 210105 | -c3h8firediff 211105 | -c4ffire 210093 | -c4ffirediff 211093 | -c4h10fire 210238 | -c4h8fire 210234 | -c5h10fire 210235 | -c5h12fire 210239 | -c5h8fire 210108 | -c5h8firediff 211108 | -c6h12fire 210236 | -c6h14fire 210240 | -c6h6fire 210232 | -c7h16fire 210241 | -c7h8fire 210231 | -c8h10fire 210233 | -c8h16fire 210237 | -cap 190170 228170 | -cape 59 300140 | -cape_con 201241 500183 | -cape_ml 500153 | -cape_mu 500151 | -capea 171059 | -capediff 200059 | -capegrd 129059 | -capep 131059 | -cat 260165 | -cbh 228023 | -cbnt 300149 | -cbnv 300071 | -cc 248 | -cca 171248 | -ccc 185 | -ccca 171185 | -cccdiff 200185 | -cccgrd 129185 | -ccdiff 200248 | -ccf 228091 | -ccfire 210095 | -ccfirediff 211095 | -ccgrd 129248 | -ccl_gnd 500290 | -ccl_nn 500291 | -ccond 260191 | -ccrea 160242 | -cd 260072 | -cdca 260103 | -cdcb 260107 | -cdcimr 260118 | -cdct 260104 260108 | -cdif 228243 | -cdir 228022 | -cdlyr 260110 | -cduvb 260341 | -cdww 140233 | -ceil 260109 | -ceiling 500304 | -cf 130213 | -cfire 210092 | -cfirediff 211092 | -cfnlf 260357 | -cfnsf 260345 | -cfrzr 260030 | -ch2ofire 210113 | -ch2ofirediff 211113 | -ch3ohfire 210103 | -ch3ohfirediff 211103 | -ch4 210062 | -ch4diff 211062 | -ch4f 210070 | -ch4fdiff 211070 | -ch4fire 210082 | -ch4firediff 211082 | -ch_cm_cl 201050 | -chnk 148 | -chnka 171148 | -chnkdiff 200148 | -chnkgrd 129148 | -ci 31 | -cice 260101 | -cicel 260406 | -cicep 260031 | -ciflt 260408 | -cin 228001 | -cin_ml 500154 | -cin_mu 500152 | -cine 300141 | -cisoilw 260197 | -civis 260407 | -ciwc 247 | -ciwca 171247 | -ciwcdiff 200247 | -ciwcgrd 129247 | -cl 26 | -cl_typ 500289 | -cla 171026 | -clbt 260510 | -clc 201029 500098 | -clc_con 500047 | -clc_sgs 500099 | -clch 500050 | -clch_8 500112 | -clch_s 500382 | -clcl 500048 | -clcl_8 500114 | -clcl_s 500380 | -clcm 500049 | -clcm_8 500113 | -clcm_s 500381 | -clct 500046 | -clct_mod 500307 | -clct_s 500379 | -cldepth 500306 | -cldiff 200026 | -clgrd 129026 | -clsf 300121 | -clw 130212 | -clw_con 500117 | -clwc 246 | -clwca 171246 | -clwcdiff 200246 | -clwcerrea 160241 | -clwcgrd 129246 | -clwmr 260018 | -cngwdu 260313 | -cngwdv 260314 | -cnvdemf 260334 | -cnvdmf 260333 | -cnvhr 260246 | -cnvmr 260276 | -cnvu 260309 | -cnvumf 260332 | -cnvv 260310 | -cnwat 260189 | -co 210123 | -co2 210061 | -co2apf 210069 | -co2apfdiff 211069 | -co2diff 211061 | -co2fire 210080 | -co2firediff 211080 | -co2nbf 210068 | -co2nbfdiff 211068 | -co2of 210067 | -co2ofdiff 211067 | -codiff 211123 | -cofire 210081 | -cofirediff 211081 | -condp 260279 | -contb 260160 | -contet 260158 | -conti 260157 | -contt 260159 | -covmz 260302 | -covtm 260304 | -covtz 260303 | -cp 143 | -cpa 171143 | -cpdiff 200143 | -cpgrd 129143 | -cph 131093 | -cpofp 260035 | -cpozp 260429 | -cppop 260176 | -cprat 260033 | -cprate 172143 | -cprea 160143 | -cptd 131094 | -cpts 131092 | -cpvar 230143 | -crain 260029 | -crfire 210100 | -crfirediff 211100 | -crl 151151 | -crnh 227 | -crnha 171227 | -crnhdiff 200227 | -crnhgrd 129227 | -crwc 75 | -cs-137 500252 | -cs-137d 500253 | -cs-137w 500254 | -csbt 260511 | -csdlf 260356 | -csdsf 260342 | -csf 239 | -csfa 171239 | -csfdiff 200239 | -csfgrd 129239 | -csfrea 160239 | -csnow 260032 | -csrate 260054 | -csrwe 260051 | -cssf 300122 | -csulf 260355 | -csusf 260344 | -cswc 76 | -ctmp 300190 | -ctmw 223 | -ctmwa 171223 | -ctmwdiff 200223 | -ctmwgrd 129223 | -ctoph 260220 | -ctophqi 260221 | -ctzw 222 | -ctzwa 171222 | -ctzwdiff 200222 | -ctzwgrd 129222 | -cuefi 260112 | -cvh 28 | -cvha 171028 | -cvhdiff 200028 | -cvhgrd 129028 | -cvl 27 | -cvla 171027 | -cvldiff 200027 | -cvlgrd 129027 | -cvnv 300072 | -cwat 260102 | -cwdi 260370 | -cwork 260111 | -cwp 260044 | -cwr 260432 | -d 155 | -da 171155 | -dbss 260505 | -dbz 500174 | -dbz_850 500173 | -dbz_cmax 500175 | -dbz_max 500019 | -dctb 228017 | -dd 500024 | -dd_10m 500023 | -ddiff 200155 | -deg0l 228024 | -den 3089 | -denalt 260079 | -dens 300089 | -dep 151137 | -depr 3018 | -dgrd 129155 | -dhcc 216 130216 | -dhcca 171216 | -dhccdiff 200216 | -dhccgrd 129216 | -dhlc 217 130217 | -dhlca 171217 | -dhlcdiff 200217 | -dhlcgrd 129217 | -dhr 214 130214 | -dhra 171214 | -dhrdiff 200214 | -dhrgrd 129214 | -dhvd 215 130215 | -dhvda 171215 | -dhvddiff 200215 | -dhvdgrd 129215 | -diced 3093 | -dirc 3047 260236 300047 | -direc 260214 | -dirpw 260233 | -dirsw 3109 | -dist 260075 | -divg 300044 | -dl 228007 | -dlwrf 260097 | -dndza 228016 | -dndzn 228015 | -dp2m 300129 | -dpsdt 500003 | -dpt 3017 | -dptd 300018 | -dqc_con 500129 | -dqc_gsp 500142 | -dqi_con 500130 | -dqi_gsp 500144 | -dqv_con 201075 500123 | -dqv_gsp 500141 | -dqvdt 500233 | -dslm 3082 260240 300082 | -dsmax 151174 | -dsrp 47 | -dsrpa 171047 | -dsrpdiff 200047 | -dsrpgrd 129047 | -dstp 300085 | -dswrf 260087 | -dt_con 201074 500122 | -dt_gsp 500140 | -dte 151161 | -dtrf 260350 | -dttdiv 500176 | -du_con 201078 500124 | -du_sso 500198 | -duaod550 210209 | -duaod550diff 211209 | -dumax 151172 | -dursun 500096 | -duvb 260340 | -dv_con 201079 500125 | -dv_sso 500199 | -dvmt 300237 | -dvsh 300167 | -dwi 140249 | -dwps 140228 | -dwuvr 260092 | -dwww 140225 | -e 182 | -ea 171182 | -ebs 151186 | -ebsa 151200 | -ebsl 151206 | -ebt 151185 | -ebta 151199 | -ebtl 151205 | -ediff 200182 | -efa-fi 500314 | -efa-ke 500322 | -efa-om 500320 | -efa-ps 500308 | -efa-rh 500316 | -efa-t 500318 | -efa-u 500310 | -efa-v 500312 | -egrd 129182 | -ehlx 260126 | -eia-fi 500315 | -eia-ke 500323 | -eia-om 500321 | -eia-ps 500309 | -eia-rh 500317 | -eia-t 500319 | -eia-u 500311 | -eia-v 500313 | -elevhtml 260493 | -elon 260422 | -elonn 260426 | -emdms 210043 | -emdmsdiff 211043 | -emis 124 | -emis_rad 500204 | -emnp 260274 | -epsr 260418 | -epta 171004 | -eqpt 4 | -eqptdiff 200004 | -eqptgrd 129004 | -eqssa 171180 | -erate 172182 | -erea 160182 | -es 44 | -esa 171044 | -esct 260172 | -esdiff 200044 | -esgrd 129044 | -esrate 172044 | -estp 260218 | -estu 260222 | -estv 260223 | -esvar 230044 | -etadot 77 | -etsrg 260492 | -evap 300057 | -evapt 260182 | -evar 230182 | -evatra_sum 500178 | -evbs 260478 | -evcw 260470 | -evpp 300177 | -ewatr 260454 | -ewgd 220 130220 | -ewgda 171220 | -ewgddiff 200220 | -ewgdgrd 129220 | -ewov 190 | -ewova 171190 | -ewovdiff 200190 | -ewovgrd 129190 | -ewss 180 | -ewssdiff 200180 | -ewssgrd 129180 | -ewssrea 160180 | -ewssvar 230180 | -fal 243 | -fala 171243 | -faldiff 200243 | -falgrd 129243 | -falrea 160243 | -fc 500235 | -fcmt 300249 | -fco2gpp 228084 | -fco2nee 228083 | -fco2rec 228085 | -fcor 300035 | -fdif 228242 | -fdir 228021 | -fdlt 300154 | -fdlu 300155 | -fdlv 300156 | -ffldg 260169 | -ffldro 260170 | -fgbp 151210 | -fgbs 151208 | -fgbt 151207 | -fi 500006 | -fice 260117 | -fif 500005 | -fis 500004 | -fldcp 260483 | -flfire 210096 | -flfirediff 211096 | -flght 260405 | -flsr 245 | -flsra 171245 | -flsrdiff 200245 | -flsrgrd 129245 | -for_d 500218 | -for_e 500217 | -fprate 260060 | -fqn 500297 | -fr_ice 500069 | -fr_land 500054 | -frain 260039 | -freshsnw 500143 | -fricv 260073 | -frpfire 210099 | -frpfirediff 211099 | -frzr 260288 | -fsr 244 | -fsra 171244 | -fsrdiff 200244 | -fsrgrd 129244 | -ftsktd 64 | -ftsktda 171064 | -fzht 300152 | -fzrh 300153 | -gdces 260142 | -gdiod 260143 | -gdradp 260144 | -geop 300006 | -gflux 260186 | -gh 156 | -gha 171156 | -ghdiff 200156 | -ghfl 300198 | -ghgrd 129156 | -ghrea 160156 | -glbr 300117 | -go3 210203 | -go3diff 211203 | -gpa 3027 | -grad 3117 | -grau_gsp 500146 | -grg1 210131 | -grg10 210149 | -grg10diff 211149 | -grg1diff 211131 | -grg2 210133 | -grg2diff 211133 | -grg3 210135 | -grg3diff 211135 | -grg4 210137 | -grg4diff 211137 | -grg5 210139 | -grg5diff 211139 | -grg6 210141 | -grg6diff 211141 | -grg7 210143 | -grg7diff 211143 | -grg8 210145 | -grg8diff 211145 | -grg9 210147 | -grg9diff 211147 | -grle 260028 | -gsfp 300133 | -gtco3 210206 | -gtco3diff 211206 | -gust 260065 | -gvdu 300162 | -gvdv 300163 | -gvus 300164 | -gvvs 300165 | -gwd 197 | -gwda 171197 | -gwddiff 200197 | -gwdgrd 129197 | -gwdrate 172197 | -gwdu 260307 | -gwdv 260308 | -gwdvar 230197 | -gwrec 260455 | -gzge 300008 | -h 3008 | -h0dip 131015 | -h2fire 210084 | -h2firediff 211084 | -h_ice 500070 | -h_snow 500045 | -hail 260027 | -hailprob 260398 | -havni 260410 | -hbas_con 201068 500118 | -hbas_sc 500115 | -hcc 188 | -hcca 171188 | -hccdiff 200188 | -hccgrd 129188 | -hccpg10 133063 | -hccpg20 133064 | -hccpg30 133065 | -hccpg40 133066 | -hccpg50 133067 | -hccpg60 133068 | -hccpg70 133069 | -hccpg80 133070 | -hccpg90 133071 | -hccpg99 133072 | -hcho 210124 | -hchodiff 211124 | -hddf 300220 | -heatx 260004 | -hfc 151162 | -hflux 260198 | -hgtn 260336 | -hgtx 260328 | -hgty 260329 | -hhdf 300218 | -hhl 500008 | -hialkanesfire 210112 | -hialkanesfirediff 211112 | -hialkenesfire 210111 | -hialkenesfirediff 211111 | -hinv 300075 | -hlcy 260125 | -hmax 140218 | -hmdf 300219 | -hmfc 300168 | -hmo3 500208 | -hmxr 300053 | -hpbl 260083 | -hrcono 260396 | -hsdrea 160254 | -hslp 131016 | -hstdv 3009 | -hsurf 500007 | -htcc 225 130225 | -htcca 171225 | -htccdiff 200225 | -htccgrd 129225 | -htlc 226 130226 | -htlca 171226 | -htlcdiff 200226 | -htlcgrd 129226 | -htop_con 201069 500119 | -htop_dc 201082 500126 | -htop_sc 500116 | -hvdf 300221 | -hvis 228025 | -hzerocl 201084 500127 | -i-131a 500249 | -i-131ad 500250 | -i-131aw 500251 | -i-131g 500270 | -i-131gd 500271 | -i-131gw 500272 | -i-131o 500273 | -i-131od 500274 | -i-131ow 500275 | -iaa 171250 | -icaht 3005 | -icdv 300098 | -ice 250 | -ice_grd 500305 | -icec 3091 260238 300091 | -iced 3098 300093 | -icediff 200250 | -iceg 3097 300097 | -icegrd 129250 | -ices 300094 | -icet 300092 | -icetk 3092 | -iceu 300095 | -icev 300096 | -ici 260151 | -icib 260150 | -icit 260149 | -icmr 260019 | -icwat 260448 | -ie 232 | -iea 171232 | -iediff 200232 | -iegrd 129232 | -iews 229 | -iewsa 171229 | -iewsdiff 200229 | -iewsgrd 129229 | -iliqw 260016 | -imag 300127 | -imgd 3127 260508 | -inss 230 | -inssa 171230 | -inssdiff 200230 | -inssgrd 129230 | -intfd 260506 | -ipc 162131 | -ipcs 162137 | -iprate 260061 | -ipv 500298 | -irr 228252 | -irrate 260219 | -irrfr 228250 | -ishf 231 | -ishfa 171231 | -ishfdiff 200231 | -ishfgrd 129231 | -ishfrea 160231 | -isor 161 | -isora 171161 | -isordiff 200161 | -isorgrd 129161 | -issrd 72 | -ist 228094 260239 | -istal1 171035 | -istal2 171036 | -istal3 171037 | -istal4 171038 | -istl1 35 | -istl1diff 200035 | -istl1grd 129035 | -istl2 36 | -istl2diff 200036 | -istl2grd 129036 | -istl3 37 | -istl3diff 200037 | -istl3grd 129037 | -istl4 38 | -istl4diff 200038 | -istl4grd 129038 | -istrd 73 | -iswf 300197 | -kch4 210071 | -kch4diff 211071 | -ke 500157 | -keng 260500 | -ko 500302 | -kox 260122 | -kr-85 500261 | -kr-85d 500262 | -kr-85w 500263 | -kx 260121 | -lai 260373 500206 | -lai_hv 67 | -lai_lv 66 | -lai_mn 500213 | -lai_mx 500212 | -land 260179 | -landn 260459 | -landu 260184 | -lapp 260299 | -lapr 3019 | -lauv 260295 | -lavni 260409 | -lavv 260297 | -layth 260330 | -lblt 228010 | -lcc 186 | -lcca 171186 | -lccdiff 200186 | -lccgrd 129186 | -lccpg10 133083 | -lccpg20 133084 | -lccpg30 133085 | -lccpg40 133086 | -lccpg50 133087 | -lccpg60 133088 | -lccpg70 133089 | -lccpg80 133090 | -lccpg90 133091 | -lccpg99 133092 | -ldp 151176 | -ldu 151177 | -lftx 260127 | -lglh 300172 | -lgms 300173 | -lgws 195 | -lgwsa 171195 | -lgwsdiff 200195 | -lgwsgrd 129195 | -lgwsvar 230195 | -lhcv 300142 | -lhtfl 260002 | -licd 228014 | -lict 228013 | -lipmf 260377 | -liqvsm 260210 | -lmaxbr 260137 | -lmh 260335 | -lmld 228009 | -lmlt 228008 | -lmv 260315 | -lnmt 300239 | -lnsp 152 300134 | -lnspdiff 200152 | -lnspgrd 129152 | -lopp 260300 | -louv 260296 | -lovv 260298 | -lowlsm 260203 | -lpc 162130 | -lpcs 162136 | -lpmtf 260376 | -lpsr 300019 | -lpsx 260326 | -lpsy 260327 | -lrghr 260245 | -lrgmr 260280 | -lsf 240 | -lsfa 171240 | -lsfdiff 200240 | -lsfgrd 129240 | -lsfrea 160240 | -lshf 228012 | -lsi 151202 | -lsm 172 | -lsmdiff 200172 | -lsmgrd 129172 | -lsmk 300081 | -lsoil 260453 | -lsp 142 3062 | -lspa 171142 171152 260479 | -lspdiff 200142 | -lspf 50 | -lspfa 171050 | -lspfdiff 200050 | -lspfgrd 129050 | -lspgrd 129142 | -lsprate 260050 | -lsprea 160142 | -lspvar 230142 | -lsrh 234 | -lsrha 171234 | -lsrhdiff 200234 | -lsrhgrd 129234 | -lssrate 260055 | -lssrwe 260052 | -lswp 260043 | -lti 151201 | -ltlt 228011 | -ltng 260391 | -lwavr 3115 | -lwbc 300200 | -lwhr 154 260354 | -lwhra 171154 | -lwhrdiff 200154 | -lwhrgrd 129154 | -lwnv 300073 | -lwrad 3119 | -lwrd 300115 | -lwrh 300205 | -lwtc 300201 | -magss 48 | -magssa 171048 | -magssdiff 200048 | -magssgrd 129048 | -mask 300137 | -maxah 260024 | -maxfrpfire 210101 | -maxfrpfirediff 211101 | -maxgust 260064 | -maxrh 260023 | -maxswh 140200 | -maxswhi 132216 | -mcc 187 | -mcca 171187 | -mccdiff 200187 | -mccgrd 129187 | -mccpg10 133073 | -mccpg20 133074 | -mccpg30 133075 | -mccpg40 133076 | -mccpg50 133077 | -mccpg60 133078 | -mccpg70 133079 | -mccpg80 133080 | -mccpg90 133081 | -mccpg99 133082 | -mconv 260022 260034 | -mdnv 300074 | -mdps 3107 500075 | -mdts 140238 | -mdwi 140242 | -mdww 3101 140235 500072 | -mean10ws 228005 | -mean2t 228004 | -mean2t24 55 | -mean2t24diff 200055 | -mean2t24grd 129055 | -meantcc 228006 | -mflux 260366 | -mflx 260069 | -mflx_con 500182 | -mgws 196 | -mgwsa 171196 | -mgwsdiff 200196 | -mgwsgrd 129196 | -mgwsvar 230196 | -mh 500163 | -mht 151170 | -mindpd 260006 | -minrh 260261 | -mixly 260404 | -mixr 3053 | -mkmt 300240 | -mld 3067 150154 151148 | -mlyno 260424 | -mn2d24 56 | -mn2d24a 171056 | -mn2d24diff 200056 | -mn2d24grd 129056 | -mn2t 202 | -mn2t24 52 | -mn2t24a 171052 171055 | -mn2t24diff 200052 | -mn2t24grd 129052 | -mn2t3 228027 | -mn2t6 122 | -mn2t6a 171122 | -mn2t6diff 200122 | -mn2t6grd 129122 | -mn2ta 171202 | -mn2tdiff 200202 | -mn2tgrd 129202 | -mn2ti 132202 | -mn2tp 131202 | -mn2tpl0 133013 | -mn2tpl10 133015 | -mn2tpl5 133014 | -mn2tplm10 133011 | -mn2tplm5 133012 | -mn2trea 160202 | -mntp 300016 | -mntsf 3037 | -moflrea 160247 | -monot 210058 | -mont 53 | -monta 171053 | -montdiff 200053 | -montgrd 129053 | -mp1 140220 | -mp2 140221 | -mpmt 300246 | -mpp_s 500188 | -mpps 3108 500077 | -mpts 140239 | -mpww 3103 140236 500074 | -mrcono 260395 | -mscv 300143 | -msl 151 | -msla 171151 | -mslag0 131010 | -msldiff 200151 | -mslet 260317 | -mslgrd 129151 | -mslma 260323 | -msls 234151 | -msqs 140244 | -msr_hv 69 | -msr_lv 68 | -mst 151134 | -mstav 260187 | -mterh 260183 | -mtha 3070 300070 | -mthd 3069 300069 | -mtr 151168 | -mu10 140241 | -mvv 130232 | -mwd 140230 500185 | -mwp 140232 | -mwp_x 500186 | -mwpg10 131079 | -mwpg12 131080 | -mwpg15 131081 | -mwpg8 131078 | -mwpp 131232 | -mx2t 201 | -mx2t24 51 | -mx2t24a 171051 | -mx2t24diff 200051 | -mx2t24grd 129051 | -mx2t3 228026 | -mx2t6 121 | -mx2t6a 171121 | -mx2t6diff 200121 | -mx2t6grd 129121 | -mx2ta 171201 | -mx2tdiff 200201 | -mx2tgrd 129201 | -mx2ti 132201 | -mx2tp 131201 | -mx2tpg25 133016 | -mx2tpg30 133017 | -mx2tpg35 133018 | -mx2tpg40 133019 | -mx2tpg45 133020 | -mx2trea 160201 | -mxld 300067 | -mxsalb 260161 | -mxtp 300015 | -mxwp 300146 | -mxwu 300138 | -mxwv 300139 | -n2o 210063 | -n2odiff 211063 | -n2ofire 210086 | -n2ofirediff 211086 | -nbdsf 260348 | -nbsalb 260413 | -ncip 260270 | -ncpcp 260009 | -nddsf 260349 | -ndvi 260458 500219 | -ndvi_max 500220 | -ndvi_mrat 500221 | -ndviratio 500222 | -neov 193 | -neova 171193 | -neovdiff 200193 | -neovgrd 129193 | -neve 300064 | -nh3fire 210116 | -nh3firediff 211116 | -nhcm 300171 | -nlat 260421 | -nlatn 260425 | -nlgsp 260331 | -nlwrcs 260100 | -nlwrf 260099 | -nlwrs 3112 260095 | -nlwrt 3113 3114 260096 | -nmhcfire 210083 | -nmhcfirediff 211083 | -no2 210121 | -no2diff 211121 | -nox 210129 | -noxdiff 211129 | -noxfire 210085 | -noxfirediff 211085 | -npixu 260224 | -nsf 150171 151156 | -nsgd 221 130221 | -nsgda 171221 | -nsgddiff 200221 | -nsgdgrd 129221 | -nsov 191 | -nsova 171191 | -nsovdiff 200191 | -nsovgrd 129191 | -nsss 181 | -nsssa 171181 | -nsssdiff 200181 | -nsssgrd 129181 | -nsssrea 160181 | -nsssvar 230181 | -nswr 300113 | -nswrf 260089 | -nswrfcs 260091 | -nswrs 3111 | -nswrt 260086 | -nvde 300066 | -nwov 192 | -nwova 171192 | -nwovdiff 200192 | -nwovgrd 129192 | -nwsalb 260414 | -o3 203 500242 | -o3a 171203 | -o3diff 200203 | -o3grd 129203 | -o3mr 260131 | -oafire 210098 | -oafirediff 211098 | -obct 62 | -obcta 171062 | -obctdiff 200062 | -obctgrd 129062 | -obsmsg_alb_hrv 500389 | -obsmsg_alb_nir1.6 500390 | -obsmsg_alb_vis0.6 500391 | -obsmsg_alb_vis0.8 500392 | -obsmsg_bt_ir10.8 500393 | -obsmsg_bt_ir12.0 500394 | -obsmsg_bt_ir13.4 500395 | -obsmsg_bt_ir3.9 500396 | -obsmsg_bt_ir8.7 500397 | -obsmsg_bt_ir9.7 500398 | -obsmsg_bt_wv6.2 500399 | -obsmsg_bt_wv7.3 500400 | -ocac 300203 | -ocas 300111 | -oces 300212 | -ocfire 210090 | -ocfirediff 211090 | -ocic 300210 | -ocis 300209 | -ocnuc 210057 | -ocpd 150131 | -ocpt 150129 151129 | -ocs 150130 | -ocu 150133 151131 | -ocv 150134 151132 | -ocw 150135 151133 | -ohc 260507 | -oles 300211 | -olic 300208 | -olis 300207 | -omaod550 210210 | -omaod550diff 211210 | -omeg 300039 | -omega 500031 | -omg2 300040 | -omgalf 260312 | -omlu 260487 | -omlv 260488 | -ommt 300236 | -omtm 300242 | -oro_mod 500214 | -orog 228002 | -ozcat 260380 | -ozcon 260379 | -p 500001 | -p1ps 140226 | -p1ww 140223 | -p2omlt 260495 | -p2ps 140227 | -p2ww 140224 | -pa 171054 | -paaod532 215095 | -pabs_rad 500091 | -pah 131096 | -paod532 215093 | -papt 3014 | -par 58 | -para 171058 | -parcs 20 | -pardiff 200058 | -pargrd 129058 | -parvar 230058 | -patd 131097 | -pats 131095 | -paw 204 | -pawa 171204 | -pawdiff 200204 | -pawgrd 129204 | -pblreg 260156 | -pcbs 300150 | -pcmt 300244 | -pctp 300151 | -perpw 260234 | -persw 260235 | -pev 228251 | -pevap 260036 | -pevpr 260037 | -ph 131090 | -phiaw 140211 | -phioc 140212 | -photar 260090 | -pitp 300179 | -plcov 500065 | -plcov_mn 500211 | -plcov_mx 500210 | -pli 3024 | -plpl 260325 | -pm1 210072 | -pm10 210074 | -pm2p5 210073 | -pm2p5fire 210087 | -pm2p5firediff 211087 | -pme 151158 | -pmsl 500002 | -pmtc 260374 | -pmtf 260375 | -pnaod532 215094 | -pop 260178 | -poros 260209 | -potv 300036 | -poz 260382 | -pozo 260385 | -pozt 260384 | -pp 201139 500148 | -pp1d 140231 500190 | -ppffg 260431 | -pposp 260177 | -ppps 500189 | -ppww 500187 | -prate 3059 | -prcr 300059 | -prcv 300063 | -prec 260138 300061 | -prec_con 500043 | -prec_gsp 500042 | -pres 54 300001 | -presa 3026 | -presalt 260078 | -presdiff 200054 | -presgrd 129054 | -presn 260337 | -prg_gsp 500145 | -prge 300062 | -prmp 300108 | -prmsl 260074 | -prr_con 201111 500135 | -prr_gsp 201100 500132 | -prs_con 201112 500136 | -prs_gsp 201101 500133 | -prs_min 500171 | -prsigsvr 260416 | -prsvr 260415 | -prwd 300107 | -ps 500000 | -psa 151212 | -psan 300026 | -psat 300014 | -pslc 300135 | -pslm 300136 | -psmt 300250 | -psnm 300002 | -pt 3 | -pta 151211 171003 | -ptae 151179 | -ptbe 151182 | -ptd 131091 | -ptdiff 200003 | -ptend 3003 | -ptgrd 129003 | -ptheta 500301 | -pti 151178 | -ptmp 300013 | -ptmt 300243 | -pts 131089 | -ptype 260015 | -pv 60 | -pva 171060 | -pvdiff 200060 | -pvgrd 129060 | -pvmt 300252 | -pvmww 260316 | -pwat 3054 | -pwcat 260026 | -pwcrea 160137 | -q 133 | -q_sedim 500131 | -qa 171133 | -qc 201031 500100 | -qc_rad 500110 | -qcvg_con 500184 | -qdiff 200133 | -qg 500106 | -qgrd 129133 | -qi 201033 500101 | -qi_rad 500111 | -qitendcs 162135 | -qltendcs 162134 | -qmax 260282 | -qmin 260283 | -qqrea 160211 | -qr 500102 | -qrec 260456 | -qrs_gsp 201099 | -qs 500103 | -qsfc 300181 | -qtendcds 162129 | -qtendcs 162133 | -qtendd 162117 | -qtendsc 162141 | -qtendt 162122 | -qtrea 160210 | -qv 500035 | -qv_2m 500034 | -qv_s 500033 | -qvsflx 500234 | -qz0 260281 | -qzrea 160209 | -r 157 | -ra 171157 210181 | -radiff 211181 | -radt 260482 | -rain_con 201113 500137 | -rain_gsp 201102 500134 | -raza 260226 | -rcq 260196 | -rcs 260193 | -rcsol 260195 | -rct 260194 | -rdiff 200157 | -rdrip 260447 | -rds1 300021 | -rds2 300022 | -rds3 300023 | -rdsp1 3021 | -rdsp2 3022 | -rdsp3 3023 | -refc 260390 | -refd 260389 | -refzc 260388 | -refzi 260387 | -refzr 260386 | -relhum 500037 | -relhum_2m 500036 | -resid_wso 500181 | -rev 260244 | -rfl06 260227 | -rfl08 260228 | -rfl16 260229 | -rfl39 260230 | -rgrd 129157 | -rhmt 300245 | -rho_snow 500147 | -ri 260369 | -rime 260040 | -rlat 500236 | -rlon 500237 | -rlyrs 260206 | -rn 150137 151139 | -rnof 300178 | -ro 205 | -roa 171205 | -roce 300214 | -rodiff 200205 | -rogrd 129205 | -role 300114 | -rootdp 500207 | -rorea 160205 | -rovar 230205 | -rprate 260058 | -rr_c 500139 | -rr_f 500138 | -rrea 160157 | -rsmin 260192 | -rsmt 300233 | -rsn 33 | -rsna 171033 | -rsndiff 200033 | -rsngrd 129033 | -rssc 260171 | -rstom 500097 | -ru-103 500165 500243 | -ru-103d 500244 | -ru-103w 500245 | -runoff_g 500066 | -runoff_g_lm 500067 | -runoff_s 500068 | -rwmr 260020 | -s 3088 151130 | -sadf 300056 | -saip 131017 | -salbe 151194 | -sale 151191 | -sali 151184 | -salin 260503 | -satd 3056 | -satosm 260217 | -sav300 151175 | -sbsalb 260411 | -sbsno 260275 | -scfr 7 | -scvh 300145 | -scvm 300144 | -sd 141 228141 | -sda 171141 | -sddiff 200141 | -sdfor 74 | -sdgrd 129141 | -sdhs 140240 | -sdi_1 500149 | -sdi_2 500150 | -sdor 160 | -sdora 171160 | -sdordiff 200160 | -sdorgrd 129160 | -sdrea 160141 | -sdsgso 260085 | -sdsien 190141 | -sdu 140243 | -sdur 46 | -sdura 171046 | -sdurdiff 200046 | -sdurgrd 129046 | -sdurvar 230046 | -sdwe 260056 | -sept 5 | -septa 171005 | -septdiff 200005 | -septgrd 129005 | -sf 144 228144 | -sf6 210182 | -sf6apf 210185 | -sf6apfdiff 211185 | -sf6diff 211182 | -sfa 171144 | -sfara 173144 | -sfco2 210154 | -sfco2diff 211154 | -sfcrh 260457 | -sfdiff 200144 | -sfexc 260188 | -sfgo3 210156 | -sfgo3diff 211156 | -sfgr1 210157 | -sfgr10 210166 | -sfgr10diff 211166 | -sfgr1diff 211157 | -sfgr2 210158 | -sfgr2diff 211158 | -sfgr3 210159 | -sfgr3diff 211159 | -sfgr4 210160 | -sfgr4diff 211160 | -sfgr5 210161 | -sfgr5diff 211161 | -sfgr6 210162 | -sfgr6diff 211162 | -sfgr7 210163 | -sfgr7diff 211163 | -sfgr8 210164 | -sfgr8diff 211164 | -sfgr9 210165 | -sfgr9diff 211165 | -sfgrd 129144 | -sfhcho 210155 | -sfhchodiff 211155 | -sfi 132144 | -sfno2 210152 | -sfno2diff 211152 | -sfnox 210151 | -sfnoxdiff 211151 | -sfp 131144 | -sfpg1 133042 | -sfpg10 133044 | -sfpg100 133049 | -sfpg150 133050 | -sfpg20 133045 | -sfpg200 133051 | -sfpg300 133052 | -sfpg40 133046 | -sfpg5 133043 | -sfpg60 133047 | -sfpg80 133048 | -sfrea 160144 | -sfso2 210153 | -sfso2diff 211153 | -sfvar 230144 | -sgcvv 3038 | -sgvv 300038 | -sh 151150 | -shahr 260251 | -shailpro 260401 | -shamr 260277 | -shcw 300100 | -shf 151160 | -shps 500076 | -shtfl 260003 | -shts 140237 | -shww 3102 140234 500073 | -sia 171212 | -sica 171031 | -sicdiff 200031 | -siced 3094 | -sicgrd 129031 | -simt 300247 | -sipd 260417 | -skt 235 | -skta 171235 | -sktd 65 | -sktda 171065 | -sktdiff 200235 | -sktgrd 129235 | -sl 150152 151145 | -sl_1 151146 | -stal2 171170 | -slds 300112 | -slhf 147 | -slhfa 171147 | -slhfdiff 200147 | -slhfgrd 129147 | -slhfvar 230147 | -slor 163 | -slora 171163 | -slordiff 200163 | -slorgrd 129163 | -slt 43 | -slta 171043 | -sltdiff 200043 | -sltfl 260501 | -sltgrd 129043 | -sltyp 260474 | -sm 228039 | -smav 300174 | -smax 151173 | -smdry 260208 | -smlt 45 | -smlta 171045 | -smltdiff 200045 | -smltgrd 129045 | -smltvar 230045 | -smref 260207 | -snfalb 260162 | -snmr 260021 | -snoag 260013 | -snoc 260011 | -snohf 260007 | -snol 260012 | -snom 3099 | -snot 260271 | -snow_con 500052 | -snow_gsp 500053 | -snow_gsp_c 500387 | -snow_gsp_s 500383 | -snowc 260038 | -snowlmt 201085 500128 | -snowt 260285 | -snr 149 | -snra 171149 | -snrdiff 200149 | -snrgrd 129149 | -so2 210122 | -so2diff 211122 | -so2fire 210102 | -so2firediff 211102 | -soapr 210059 | -sobs_rad 500079 | -sobt_rad 500083 | -sohr_rad 201013 500092 | -soic 300086 | -soill 260205 | -soilp 260215 | -soiltyp 500205 | -soilw 260185 | -solza 260225 | -sotr_rad 500177 | -sp 134 500026 | -sp_10m 500025 | -spa 171134 | -spc 3048 260237 | -spdc 300048 | -spdiff 200134 | -spgrd 129134 | -sppt1 213001 | -sppt2 213002 | -sppt3 213003 | -sppt4 213004 | -sppt5 213005 | -sprate 260059 | -sprd 500194 | -sr 173 190173 | -sr-90 500246 | -sr-90d 500247 | -sr-90w 500248 | -sra 171173 | -src 198 | -srca 171198 | -srcdiff 200198 | -srcgrd 129198 | -srcono 260394 | -srcrea 160198 | -srcvar 230198 | -srdiff 200173 | -srgrd 129173 | -srh 500287 | -sro 8 174008 | -srovar 230008 | -srweq 3064 260010 | -ssa1020 215146 | -ssa1064 215147 | -ssa1240 215148 | -ssa1640 215149 | -ssa2130 215178 | -ssa340 215132 | -ssa355 215133 | -ssa380 215134 | -ssa400 215135 | -ssa440 215136 | -ssa469 215137 | -ssa500 215138 | -ssa532 215139 | -ssa550 215140 | -ssa645 215141 | -ssa670 215142 | -ssa800 215143 | -ssa858 215144 | -ssa865 215145 | -ssaod550 210208 | -ssaod550diff 211208 | -ssfr 6 | -sshf 146 | -sshfa 171146 | -sshfdiff 200146 | -sshfgrd 129146 | -sshfvar 230146 | -sshg 260494 | -sso_gamma 500201 | -sso_sigma 500203 | -sso_stdh 500200 | -sso_theta 500202 | -ssr 176 180176 | -ssra 171176 | -ssrc 210 | -ssrca 171210 | -ssrcdiff 200210 | -ssrcgrd 129210 | -ssrcvar 230210 | -ssrd 169 | -ssrda 171169 | -ssrdc 228129 | -ssrddiff 200169 | -ssrdgrd 129169 | -ssrdiff 200176 | -ssrdvar 230169 | -ssrgrd 129176 | -ssro 9 174009 | -ssrovar 230009 | -ssrun 260175 | -ssrvar 230176 | -ssst 260499 | -sst 34 151159 | -ssta 171034 | -sstdiff 200034 | -sstkgrd 129034 | -sstor 260452 | -sstt 260498 | -ssw 3086 | -st 228139 | -stag0 131009 | -stal1 171139 | -stal3 171183 | -stal4 171236 | -stf 228092 | -sth 151138 | -stl1 139 | -stl1diff 200139 | -stl1grd 129139 | -stl2 170 | -stl2diff 200170 | -stl2grd 129170 | -stl3 183 | -stl3diff 200183 | -stl3grd 129183 | -stl4 236 | -stl4diff 200236 | -stl4grd 129236 | -stmt 300235 | -storprob 260400 | -str 177 180177 | -stra 171177 | -strc 211 | -strca 171211 | -strcdiff 200211 | -strcgrd 129211 | -strcvar 230211 | -strd 175 | -strda 171175 | -strdc 228130 | -strddiff 200175 | -strdgrd 129175 | -strdiff 200177 | -strdvar 230175 | -strf 1 | -strfa 171001 | -strfdiff 200001 | -strfgrd 129001 | -strgrd 129177 | -strvar 230177 | -sts 234139 | -stsktd 63 | -stsktda 171063 | -suaod550 210212 | -suaod550diff 211212 | -subi 151190 | -sund 189 | -sunda 171189 | -sundara 173189 | -sunddiff 200189 | -sundgrd 129189 | -sundvar 230189 | -suns 260119 | -surge 260491 | -suvf 300196 | -swal1 171140 | -swal2 171171 | -swal3 171184 | -swal4 171237 | -swavr 3116 | -swdi 300104 300109 | -swdir 3104 | -swea 300116 | -swec 300202 | -swell 3105 | -swepon 260173 | -swgc 300213 | -swh 3100 140229 500071 | -swhg2 131074 | -swhg4 131075 | -swhg6 131076 | -swhg8 131077 | -swhp 131229 | -swhr 153 260343 | -swhra 171153 | -swhrdiff 200153 | -swhrgrd 129153 | -swi1 228040 | -swi2 228041 | -swi3 228042 | -swi4 228043 | -swindpro 260402 | -swl1 140 | -swl1diff 200140 | -swl1grd 129140 | -swl1rea 160140 | -swl2 171 170171 | -swl2diff 200171 | -swl2grd 129171 | -swl2rea 160171 | -swl3 184 | -swl3diff 200184 | -swl3grd 129184 | -swl3rea 160184 | -swl4 237 | -swl4diff 200237 | -swl4grd 129237 | -swmp 300106 300110 | -swp 3110 | -swper 3106 | -swrad 3120 | -swrh 300206 | -swsalb 260412 | -swsh 300105 | -swtc 300215 | -swv 228093 | -swval1 171039 | -swval2 171040 | -swval3 171041 | -swval4 171042 | -swvl1 39 | -swvl1diff 200039 | -swvl1grd 129039 | -swvl2 40 | -swvl2diff 200040 | -swvl2grd 129040 | -swvl3 41 | -swvl3diff 200041 | -swvl3grd 129041 | -swvl4 42 | -swvl4diff 200042 | -swvl4grd 129042 | -sx 260124 | -synme5_bt_cl 500324 | -synme5_bt_cs 500325 | -synme5_rad_cl 500326 | -synme5_rad_cs 500327 | -synme6_bt_cl 500328 | -synme6_bt_cs 500329 | -synme6_rad_cl 500330 | -synme6_rad_cs 500331 | -synme7_bt_cl_ir11.5 500332 | -synme7_bt_cl_wv6.4 500333 | -synme7_bt_cs_ir11.5 500334 | -synme7_bt_cs_wv6.4 500335 | -synme7_rad_cl_ir11.5 500336 | -synme7_rad_cl_wv6.4 500337 | -synme7_rad_cs_ir11.5 500338 | -synme7_rad_cs_wv6.4 500339 | -synmsg_bt_cl_ir10.8 500340 | -synmsg_bt_cl_ir12.1 500341 | -synmsg_bt_cl_ir13.4 500342 | -synmsg_bt_cl_ir3.9 500343 | -synmsg_bt_cl_ir8.7 500344 | -synmsg_bt_cl_ir9.7 500345 | -synmsg_bt_cl_wv6.2 500346 | -synmsg_bt_cl_wv7.3 500347 | -synmsg_bt_cs_ir10.8 500349 | -synmsg_bt_cs_ir12.1 500350 | -synmsg_bt_cs_ir13.4 500351 | -synmsg_bt_cs_ir3.9 500352 | -synmsg_bt_cs_ir8.7 500348 | -synmsg_bt_cs_ir9.7 500353 | -synmsg_bt_cs_wv6.2 500354 | -synmsg_bt_cs_wv7.3 500355 | -synmsg_rad_cl_ir10.8 500356 | -synmsg_rad_cl_ir12.1 500357 | -synmsg_rad_cl_ir13.4 500358 | -synmsg_rad_cl_ir3.9 500359 | -synmsg_rad_cl_ir8.7 500360 | -synmsg_rad_cl_ir9.7 500361 | -synmsg_rad_cl_wv6.2 500362 | -synmsg_rad_cl_wv7.3 500363 | -synmsg_rad_cs_ir10.8 500364 | -synmsg_rad_cs_ir12.1 500365 | -synmsg_rad_cs_ir13.4 500366 | -synmsg_rad_cs_ir3.9 500367 | -synmsg_rad_cs_ir8.7 500368 | -synmsg_rad_cs_ir9.7 500369 | -synmsg_rad_cs_wv6.2 500370 | -synmsg_rad_cs_wv7.3 500371 | -t 130 500014 | -t_2m 500011 | -t_2m_av 500012 | -t_2m_cl 500013 | -t_2m_s 500372 | -t_cl 500058 | -t_cl_lm 500059 | -t_g 500010 | -t_ice 201215 500172 | -t_m 500060 | -t_s 500061 | -t_s_s 500384 | -t_snow 201203 500170 | -t_so 500166 | -ta 3025 171130 | -tag2 131021 | -tag4 131024 | -tag8 131025 | -talm2 131020 | -talm4 131023 | -talm8 131022 | -tap 131130 | -tauoc 140214 | -tav300 151164 | -tax 151153 | -tay 151154 | -tcas 300189 | -tcc 164 228164 | -tcca 171164 | -tccdiff 200164 | -tccgrd 129164 | -tcch4 210065 | -tcch4diff 211065 | -tcclw 228255 | -tcco 210127 | -tcco2 210064 | -tcco2diff 211064 | -tccodiff 211127 | -tccp 131164 | -tccpg10 133053 | -tccpg20 133054 | -tccpg30 133055 | -tccpg40 133056 | -tccpg50 133057 | -tccpg60 133058 | -tccpg70 133059 | -tccpg80 133060 | -tccpg90 133061 | -tccpg99 133062 | -tccsw 228256 | -tcfire 210089 | -tcfirediff 211089 | -tcgrg1 210132 | -tcgrg10 210150 | -tcgrg10diff 211150 | -tcgrg1diff 211132 | -tcgrg2 210134 | -tcgrg2diff 211134 | -tcgrg3 210136 | -tcgrg3diff 211136 | -tcgrg4 210138 | -tcgrg4diff 211138 | -tcgrg5 210140 | -tcgrg5diff 211140 | -tcgrg6 210142 | -tcgrg6diff 211142 | -tcgrg7 210144 | -tcgrg7diff 211144 | -tcgrg8 210146 | -tcgrg8diff 211146 | -tcgrg9 210148 | -tcgrg9diff 211148 | -tch 500162 | -tchcho 210128 | -tchchodiff 211128 | -tchp 260254 | -tcioz 260132 | -tciw 79 | -tciwa 171079 | -tciwv 260057 | -tclsw 260272 | -tclw 78 | -tclwa 171078 | -tcm 500161 | -tcn2o 210066 | -tcn2odiff 211066 | -tcno2 210125 | -tcno2diff 211125 | -tcnox 210130 | -tcnoxdiff 211130 | -tco3 206 | -tco3a 171206 | -tco3diff 200206 | -tco3grd 129206 | -tcolc 260116 | -tcoli 260115 | -tcolm 260273 | -tcolr 260041 | -tcols 260042 | -tcolw 260114 | -tcond 260017 260113 | -tcra 210183 | -tcradiff 211183 | -tcrw 228089 | -tcsf6 210184 | -tcsf6diff 211184 | -tcso2 210126 | -tcso2diff 211126 | -tcsw 228090 | -tcw 136 | -tcwa 171136 | -tcwat 260047 | -tcwdiff 200136 | -tcwgrd 129136 | -tcwv 137 | -tcwva 171137 | -tcwvdiff 200137 | -tcwvgrd 129137 | -td_2m 500017 | -td_2m_av 500018 | -td_2m_s 500375 | -tdiff 200130 | -tdiv_hum 500109 | -te-132 500255 | -te-132d 500256 | -te-132w 500257 | -temp 300011 | -tems 300188 | -terpenesfire 210109 | -terpenesfirediff 211109 | -tgrd 129130 | -tgrz 300175 | -tgsc 300191 | -thbs_rad 500081 | -thbt_rad 500085 | -thetae 500303 | -thflx 260247 | -thhr_rad 201014 500093 | -thick 260077 | -thpb 300060 | -thunc 260106 | -thz0 260253 | -tiaccp 260145 | -tiacip 260146 | -tiacrp 260147 | -tipd 260269 | -tisr 212 | -tisrdiff 200212 | -tisrgrd 129212 | -tisrvar 230212 | -tke 260155 500158 | -tke_con 500155 | -tketens 500156 | -tki 151155 | -tkvh 500160 | -tkvm 500159 | -tla 140213 | -tm01 500192 | -tm02 500193 | -tm10 500191 | -tmax 3015 140217 | -tmax_2m 500015 | -tmax_2m_s 500373 | -tmaxt 260105 | -tmin 3016 | -tmin_2m 500016 | -tmin_2m_s 500374 | -tmmt 300251 | -tnr 150 | -tnra 171150 | -tnrdiff 200150 | -tnrgrd 129150 | -to3 500009 | -toluenefire 210110 | -toluenefirediff 211110 | -top_con 201073 500121 | -topo 300132 | -torprob 260397 | -tot_prec 500041 | -tot_prec_c 500386 | -tot_prec_s 500378 | -totalx 260123 | -totforce_s 500180 | -toz 260383 | -tozne 260130 | -tp 228 228228 | -tp2m 300128 | -tpa 171228 | -tpag0 131008 | -tpag10 131007 | -tpag20 131006 | -tpan 300025 | -tpara 173228 | -tpdiff 200228 | -tpfi 260419 | -tpg1 131060 | -tpg10 131062 | -tpg100 131085 | -tpg150 131086 | -tpg20 131063 | -tpg200 131087 | -tpg300 131088 | -tpg40 131082 | -tpg5 131061 | -tpg60 131083 | -tpg80 131084 | -tpgrd 129228 | -tpi 132228 | -tpl01 131064 | -tplb 228018 | -tplt 228019 | -tpmfire 210088 | -tpmfirediff 211088 | -tpoa 171061 | -tpoc 220228 | -tpodiff 200061 | -tpogrd 129061 | -tpor 300017 | -tpp 131151 131228 | -tppg1 133031 | -tppg10 133033 | -tppg100 133038 | -tppg150 133039 | -tppg20 133034 | -tppg200 133040 | -tppg300 133041 | -tppg40 133035 | -tppg5 133032 | -tppg60 133036 | -tppg80 133037 | -tppp 300157 | -tppt 300158 | -tppu 300159 | -tppv 300160 | -tprate 172228 260048 | -tprg3 131066 | -tprg5 131067 | -tprl1 131065 | -tps 234228 | -tpvar 230228 | -tqc 500051 | -tqg 500107 | -tqi 500040 | -tqr 500104 | -tqs 500105 | -tqv 500038 | -tr-2 500264 | -tr-2d 500265 | -tr-2w 500266 | -tra_sum 500179 | -trans 260471 | -transo 260212 | -tsd1d 260250 | -tsec 260168 260241 | -tsfc 300187 | -tslsa 260324 | -tsm 190229 | -tsmt 300232 | -tsn 238 | -tsna 171238 | -tsndiff 200238 | -tsngrd 129238 | -tsnowp 260046 | -tsp 158 | -tspa 171158 | -tspdiff 200158 | -tspgrd 129158 | -tsps 300003 | -tsr 178 180178 | -tsra 171178 | -tsrate 260053 | -tsrc 208 | -tsrca 171208 | -tsrcdiff 200208 | -tsrcgrd 129208 | -tsrcvar 230208 | -tsrdiff 200178 | -tsrgrd 129178 | -tsru 130208 | -tsrvar 230178 | -tsrwe 260049 | -tstm 3060 | -tstmc 260403 | -tsuc 130210 | -tsw 170149 180149 | -ttdia 260248 | -ttendcds 162128 | -ttendcs 162132 | -ttendd 162116 | -ttendr 162118 | -ttends 162125 | -ttendsc 162140 | -ttendts 162121 | -tthd 300068 | -tthdp 3068 | -ttphy 260249 | -ttr 179 170179 180179 | -ttra 171179 | -ttrad 260243 | -ttrc 209 | -ttrca 171209 | -ttrcdiff 200209 | -ttrcgrd 129209 | -ttrcvar 230209 | -ttrdiff 200179 | -ttrea 160208 | -ttrgrd 129179 | -ttru 130209 | -ttrvar 230179 | -ttuc 130211 | -turb 260154 | -turbb 260153 | -turbt 260152 | -tvh 30 | -tvha 171030 | -tvhdiff 200030 | -tvhgrd 129030 | -tvl 29 | -tvla 171029 | -tvldiff 200029 | -tvlgrd 129029 | -tvmt 300253 | -twater 201041 500108 | -twatp 260045 | -tzrea 160207 | -u 131 500028 | -u-gwd 260081 | -u10m 300130 | -u10n 228131 | -u_10m 500027 | -u_10m_s 500376 | -ua 171131 | -uba1 151165 | -ubaro 260489 | -ucdv 23 | -ucdva 171023 | -ucdvdiff 200023 | -ucdvgrd 129023 | -ucln 22 | -uclna 171022 | -uclndiff 200022 | -uclngrd 129022 | -ucpc 300049 | -uctp 21 | -uctpa 171021 | -uctpdiff 200021 | -uctpgrd 129021 | -ucurr 3049 | -udiff 200131 | -udvw 11 | -udvwdiff 200011 | -udvwgrd 129011 | -udwa 171011 | -uemt 300248 | -uflx 3124 260062 | -ugrd 129131 | -ugust 260066 | -uice 3095 | -ulwrf 260098 | -umax 151171 | -umes 300051 | -umrl 300052 | -umrs 300226 | -up 500299 | -uphl 260372 | -uplsm 260202 | -uplst 260201 | -uqrea 160214 | -urtw 13 | -urtwdiff 200013 | -urtwgrd 129013 | -urwa 171013 | -usct 260484 | -usmt 300230 | -ussl 300182 | -usst 300193 | -ust 140215 | -ustm 260070 | -ustr 300147 500238 | -ustr_sso 500280 | -uswrf 260088 | -ut 150140 151141 | -utendcds 162126 | -utendcs 162138 | -utendd 162114 | -utends 162123 | -utendts 162119 | -utnowd 228136 | -utrea 160213 | -utrf 260351 | -uu 150142 151143 | -uurea 160215 | -uv 150139 151140 | -uv_max 500285 | -uvb 57 | -uvba 171057 | -uvbdiff 200057 | -uvbed 214002 | -uvbedcs 214003 | -uvbgrd 129057 | -uvbvar 230057 | -uvcossza 214001 | -uvcs 19 | -uvel 300033 | -uves 300192 | -uvi 151187 260094 | -uviucs 260093 | -uvmt 300255 | -uvsflxcs280285 214028 | -uvsflxcs285290 214029 | -uvsflxcs290295 214030 | -uvsflxcs295300 214031 | -uvsflxcs300305 214032 | -uvsflxcs305310 214033 | -uvsflxcs310315 214034 | -uvsflxcs315320 214035 | -uvsflxcs320325 214036 | -uvsflxcs325330 214037 | -uvsflxcs330335 214038 | -uvsflxcs335340 214039 | -uvsflxcs340345 214040 | -uvsflxcs345350 214041 | -uvsflxcs350355 214042 | -uvsflxcs355360 214043 | -uvsflxcs360365 214044 | -uvsflxcs365370 214045 | -uvsflxcs370375 214046 | -uvsflxcs375380 214047 | -uvsflxcs380385 214048 | -uvsflxcs385390 214049 | -uvsflxcs390395 214050 | -uvsflxcs395400 214051 | -uvsflxt280285 214004 | -uvsflxt285290 214005 | -uvsflxt290295 214006 | -uvsflxt295300 214007 | -uvsflxt300305 214008 | -uvsflxt305310 214009 | -uvsflxt310315 214010 | -uvsflxt315320 214011 | -uvsflxt320325 214012 | -uvsflxt325330 214013 | -uvsflxt330335 214014 | -uvsflxt335340 214015 | -uvsflxt340345 214016 | -uvsflxt345350 214017 | -uvsflxt350355 214018 | -uvsflxt355360 214019 | -uvsflxt360365 214020 | -uvsflxt365370 214021 | -uvsflxt370375 214022 | -uvsflxt375380 214023 | -uvsflxt380385 214024 | -uvsflxt385390 214025 | -uvsflxt390395 214026 | -uvsflxt395400 214027 | -uzds 300184 | -uzrea 160212 | -uzrs 300183 | -v 132 500030 | -v-gwd 260082 | -v10m 300131 | -v10n 228132 | -v_10m 500029 | -v_10m_s 500377 | -va 171132 | -vabs 500288 | -vadv 300170 | -vaftd 260420 | -vapp 260008 300055 | -var190m0 260167 | -vba1 151166 | -vbaro 260490 | -vbdsf 260346 | -vcpc 300050 | -vcurr 3050 | -vdcc 300227 | -vddsf 260347 | -vdf 151136 | -vdfh 300225 | -vdfhr 260252 | -vdfmr 260278 | -vdfoz 260381 | -vdfu 300223 | -vdfua 260305 | -vdfv 300224 | -vdfva 260306 | -vdh 224 130224 | -vdha 171224 | -vdhdiff 200224 | -vdhgrd 129224 | -vdiff 200132 | -vdis_sso 500284 | -vdms 300222 | -vdmw 219 130219 | -vdmwa 171219 | -vdmwdiff 200219 | -vdmwgrd 129219 | -vdvw 12 | -vdvwdiff 200012 | -vdvwgrd 129012 | -vdwa 171012 | -vdzw 218 130218 | -vdzwa 171218 | -vdzwdiff 200218 | -vdzwgrd 129218 | -vedh 260301 | -veg 199 260180 | -vegdiff 200199 | -vege 300087 | -vegfire 210094 | -vegfirediff 211094 | -veggrd 129199 | -vegrea 160199 | -vegt 260451 | -veril 260136 | -vfa 171199 | -vflx 3125 260063 | -vgrd 129132 | -vgtyp 260439 | -vgust 260067 | -vice 3096 | -vimd 213 | -vio3 500209 | -vis 3020 | -vite 125 | -vitea 171125 | -vmax_10m 201187 500164 | -vmax_10m_c 500388 | -vmax_10m_s 500385 | -vmfl 300169 | -vo 138 | -voa 171138 | -vodiff 200138 | -vogrd 129138 | -volash 260148 | -voldec 260213 | -voltso 260211 | -vort 300043 | -vp 2 3055 500300 | -vpca 300180 | -vpota 171002 | -vpotdiff 200002 | -vpotgrd 129002 | -vptmp 3012 | -vqrea 160218 | -vrtw 14 | -vrtwdiff 200014 | -vrtwgrd 129014 | -vrwa 171014 | -vsct 260485 | -vsmt 300231 | -vso 200 | -vsoa 171200 | -vsodiff 200200 | -vsogrd 129200 | -vsosm 260216 | -vsst 300195 | -vst 140216 | -vstm 260071 | -vstr 300148 | -vstr_sso 500282 | -vsw 260199 | -vt 150141 151142 | -vtendcds 162127 | -vtendcs 162139 | -vtendd 162115 | -vtends 162124 | -vtendts 162120 | -vtmp 300012 | -vtmt 300254 | -vtnowd 228134 | -vtrea 160217 | -vucs 300045 | -vucsh 3045 | -vurea 160219 | -vv 150143 151144 | -vvcs 300046 | -vvcsh 3046 | -vvel 300034 | -vves 300194 | -vvi 151188 | -vvmt 300241 | -vvrea 160220 | -vvs 151135 | -vwiltm 260200 | -vwsh 260068 | -vzrea 160216 | -w 135 500032 | -w_cl 500062 | -w_g1 500063 | -w_g2 500064 | -w_i 201200 500169 | -w_shaer 500286 | -w_snow 500044 | -w_so 500167 | -w_so_ice 500168 | -wa 171135 | -watr 260181 | -wcconv 260464 | -wcf 260005 | -wcinc 260462 | -wcuflx 260467 | -wcvflx 260468 | -wdiff 200135 | -wdir 3031 | -wdiv 500296 | -wdw 140222 | -wenv 300065 | -wgrd 129135 | -whip 131018 | -wilt 228171 260442 | -wiltsien 190171 | -wind 140245 300031 | -windprob 260399 | -wins 300032 | -wmb 140219 | -wmixe 3126 | -wqrea 160223 | -wrea 160135 | -ws 10 | -wsk 140252 | -wsp 140254 | -wstp 260486 | -wtend 260311 | -wtmp 3080 | -wtmpc 260502 | -wtnv 300076 | -wtrea 160222 | -wurea 160224 | -wvar1 500215 | -wvar2 500216 | -wvconv 260463 | -wvdir 260232 | -wvinc 260461 | -wvrea 160225 | -wvs1 300028 | -wvs2 300029 | -wvs3 300030 | -wvsp1 3028 500020 | -wvsp2 3029 500021 | -wvsp3 3030 500022 | -wvuflx 260465 | -wvvflx 260466 | -ww 500292 | -wwdi 300101 | -wwmp 300103 | -wwrea 160226 | -wwsh 300102 | -wzrea 160221 | -xe-133 500267 | -xe-133d 500268 | -xe-133w 500269 | -z 129 | -z0 500055 | -za 171129 | -zdiff 200129 | -zgan 300027 | -zgeo 300007 | -zgrd 129129 | -zhd 500241 | -zhmt 300238 | -zht 151169 | -zorl 300083 | -zp 131129 | -zr-95 500258 | -zr-95d 500259 | -zr-95w 500260 | -ztd 500239 | -ztr 151167 | -zust 228003 | -zwd 500240 | -zzrea 160206 | diff --git a/eccodes/definitions.save/param_id.table b/eccodes/definitions.save/param_id.table deleted file mode 100644 index d29b0240..00000000 --- a/eccodes/definitions.save/param_id.table +++ /dev/null @@ -1,4056 +0,0 @@ -1 strf 1.128 35.1 35.2 35.3 | -10 ws 10.128 32.1 32.2 32.3 | -100 100.128 | -101 101.128 | -102 102.128 | -103 103.128 | -104 104.128 | -105 105.128 | -106 106.128 | -107 107.128 | -108 108.128 | -109 109.128 | -11 udvw 11.128 | -110 110.128 | -111 111.128 | -112 112.128 | -113 113.128 | -114 114.128 | -115 115.128 | -116 116.128 | -117 117.128 | -118 118.128 | -119 119.128 | -12 vdvw 12.128 | -120 120.128 | -121 mx2t6 15.1 15.2 15.3 121.128 | -122 mn2t6 16.1 16.2 16.3 122.128 | -123 10fg6 123.128 | -124 emis 124.128 | -125 vite 125.128 | -126 126.128 | -127 at 127.128 127.160 | -128 bv 128.128 128.160 | -129 z 6.1 6.2 6.3 129.128 129.160 129.170 129.180 129.190 | -129001 strfgrd 1.129 | -129002 vpotgrd 2.129 | -129003 ptgrd 3.129 | -129004 eqptgrd 4.129 | -129005 septgrd 5.129 | -129011 udvwgrd 11.129 | -129012 vdvwgrd 12.129 | -129013 urtwgrd 13.129 | -129014 vrtwgrd 14.129 | -129021 uctpgrd 21.129 | -129022 uclngrd 22.129 | -129023 ucdvgrd 23.129 | -129024 24.129 | -129025 25.129 | -129026 clgrd 26.129 | -129027 cvlgrd 27.129 | -129028 cvhgrd 28.129 | -129029 tvlgrd 29.129 | -129030 tvhgrd 30.129 | -129031 sicgrd 31.129 | -129032 asngrd 32.129 | -129033 rsngrd 33.129 | -129034 sstkgrd 34.129 | -129035 istl1grd 35.129 | -129036 istl2grd 36.129 | -129037 istl3grd 37.129 | -129038 istl4grd 38.129 | -129039 swvl1grd 39.129 | -129040 swvl2grd 40.129 | -129041 swvl3grd 41.129 | -129042 swvl4grd 42.129 | -129043 sltgrd 43.129 | -129044 esgrd 44.129 | -129045 smltgrd 45.129 | -129046 sdurgrd 46.129 | -129047 dsrpgrd 47.129 | -129048 magssgrd 48.129 | -129049 10fggrd 49.129 | -129050 lspfgrd 50.129 | -129051 mx2t24grd 51.129 | -129052 mn2t24grd 52.129 | -129053 montgrd 53.129 | -129054 presgrd 54.129 | -129055 mean2t24grd 55.129 | -129056 mn2d24grd 56.129 | -129057 uvbgrd 57.129 | -129058 pargrd 58.129 | -129059 capegrd 59.129 | -129060 pvgrd 60.129 | -129061 tpogrd 61.129 | -129062 obctgrd 62.129 | -129063 63.129 | -129064 64.129 | -129065 65.129 | -129066 66.129 | -129067 67.129 | -129068 68.129 | -129069 69.129 | -129070 70.129 | -129071 71.129 | -129078 78.129 | -129079 79.129 | -129080 80.129 | -129081 81.129 | -129082 82.129 | -129083 83.129 | -129084 84.129 | -129085 85.129 | -129086 86.129 | -129087 87.129 | -129088 88.129 | -129089 89.129 | -129090 90.129 | -129091 91.129 | -129092 92.129 | -129093 93.129 | -129094 94.129 | -129095 95.129 | -129096 96.129 | -129097 97.129 | -129098 98.129 | -129099 99.129 | -129100 100.129 | -129101 101.129 | -129102 102.129 | -129103 103.129 | -129104 104.129 | -129105 105.129 | -129106 106.129 | -129107 107.129 | -129108 108.129 | -129109 109.129 | -129110 110.129 | -129111 111.129 | -129112 112.129 | -129113 113.129 | -129114 114.129 | -129115 115.129 | -129116 116.129 | -129117 117.129 | -129118 118.129 | -129119 119.129 | -129120 120.129 | -129121 mx2t6grd 121.129 | -129122 mn2t6grd 122.129 | -129123 10fg6grd 123.129 | -129125 125.129 | -129126 126.129 | -129127 atgrd 127.129 | -129128 bvgrd 128.129 | -129129 zgrd 129.129 | -129130 tgrd 130.129 | -129131 ugrd 131.129 | -129132 vgrd 132.129 | -129133 qgrd 133.129 | -129134 spgrd 134.129 | -129135 wgrd 135.129 | -129136 tcwgrd 136.129 | -129137 tcwvgrd 137.129 | -129138 vogrd 138.129 | -129139 stl1grd 139.129 | -129140 swl1grd 140.129 | -129141 sdgrd 141.129 | -129142 lspgrd 142.129 | -129143 cpgrd 143.129 | -129144 sfgrd 144.129 | -129145 bldgrd 145.129 | -129146 sshfgrd 146.129 | -129147 slhfgrd 147.129 | -129148 chnkgrd 148.129 | -129149 snrgrd 149.129 | -129150 tnrgrd 150.129 | -129151 mslgrd 151.129 | -129152 lnspgrd 152.129 | -129153 swhrgrd 153.129 | -129154 lwhrgrd 154.129 | -129155 dgrd 155.129 | -129156 ghgrd 156.129 | -129157 rgrd 157.129 | -129158 tspgrd 158.129 | -129159 blhgrd 159.129 | -129160 sdorgrd 160.129 | -129161 isorgrd 161.129 | -129162 anorgrd 162.129 | -129163 slorgrd 163.129 | -129164 tccgrd 164.129 | -129165 10ugrd 165.129 | -129166 10vgrd 166.129 | -129167 2tgrd 167.129 | -129168 2dgrd 168.129 | -129169 ssrdgrd 169.129 | -129170 stl2grd 170.129 | -129171 swl2grd 171.129 | -129172 lsmgrd 172.129 | -129173 srgrd 173.129 | -129174 algrd 174.129 | -129175 strdgrd 175.129 | -129176 ssrgrd 176.129 | -129177 strgrd 177.129 | -129178 tsrgrd 178.129 | -129179 ttrgrd 179.129 | -129180 ewssgrd 180.129 | -129181 nsssgrd 181.129 | -129182 egrd 182.129 | -129183 stl3grd 183.129 | -129184 swl3grd 184.129 | -129185 cccgrd 185.129 | -129186 lccgrd 186.129 | -129187 mccgrd 187.129 | -129188 hccgrd 188.129 | -129189 sundgrd 189.129 | -129190 ewovgrd 190.129 | -129191 nsovgrd 191.129 | -129192 nwovgrd 192.129 | -129193 neovgrd 193.129 | -129194 btmpgrd 194.129 | -129195 lgwsgrd 195.129 | -129196 mgwsgrd 196.129 | -129197 gwdgrd 197.129 | -129198 srcgrd 198.129 | -129199 veggrd 199.129 | -129200 vsogrd 200.129 | -129201 mx2tgrd 201.129 | -129202 mn2tgrd 202.129 | -129203 o3grd 203.129 | -129204 pawgrd 204.129 | -129205 rogrd 205.129 | -129206 tco3grd 206.129 | -129207 10sigrd 207.129 | -129208 tsrcgrd 208.129 | -129209 ttrcgrd 209.129 | -129210 ssrcgrd 210.129 | -129211 strcgrd 211.129 | -129212 tisrgrd 212.129 | -129214 dhrgrd 214.129 | -129215 dhvdgrd 215.129 | -129216 dhccgrd 216.129 | -129217 dhlcgrd 217.129 | -129218 vdzwgrd 218.129 | -129219 vdmwgrd 219.129 | -129220 ewgdgrd 220.129 | -129221 nsgdgrd 221.129 | -129222 ctzwgrd 222.129 | -129223 ctmwgrd 223.129 | -129224 vdhgrd 224.129 | -129225 htccgrd 225.129 | -129226 htlcgrd 226.129 | -129227 crnhgrd 227.129 | -129228 tpgrd 228.129 | -129229 iewsgrd 229.129 | -129230 inssgrd 230.129 | -129231 ishfgrd 231.129 | -129232 iegrd 232.129 | -129233 asqgrd 233.129 | -129234 lsrhgrd 234.129 | -129235 sktgrd 235.129 | -129236 stl4grd 236.129 | -129237 swl4grd 237.129 | -129238 tsngrd 238.129 | -129239 csfgrd 239.129 | -129240 lsfgrd 240.129 | -129241 acfgrd 241.129 | -129242 alwgrd 242.129 | -129243 falgrd 243.129 | -129244 fsrgrd 244.129 | -129245 flsrgrd 245.129 | -129246 clwcgrd 246.129 | -129247 ciwcgrd 247.129 | -129248 ccgrd 248.129 | -129249 aiwgrd 249.129 | -129250 icegrd 250.129 | -129251 attegrd 251.129 | -129252 athegrd 252.129 | -129253 atzegrd 253.129 | -129254 atmwgrd 254.129 | -129255 255.129 | -13 urtw 13.128 | -130 t 11.1 11.2 11.3 130.128 130.160 130.170 130.180 130.190 | -130208 tsru 208.130 | -130209 ttru 209.130 | -130210 tsuc 210.130 | -130211 ttuc 211.130 | -130212 clw 212.130 | -130213 cf 213.130 | -130214 dhr 214.130 | -130215 dhvd 215.130 | -130216 dhcc 216.130 | -130217 dhlc 217.130 | -130218 vdzw 218.130 | -130219 vdmw 219.130 | -130220 ewgd 220.130 | -130221 nsgd 221.130 | -130224 vdh 224.130 | -130225 htcc 225.130 | -130226 htlc 226.130 | -130228 att 228.130 | -130229 ath 229.130 | -130230 atzw 230.130 | -130231 atmwax 231.130 | -130232 mvv 232.130 | -131 u 33.1 33.2 33.3 131.128 131.160 131.170 131.180 131.190 | -131001 1.131 2tag2 | -131002 2tag1 2.131 | -131003 2tag0 3.131 | -131004 2talm1 4.131 | -131005 2talm2 5.131 | -131006 tpag20 6.131 | -131007 tpag10 7.131 | -131008 tpag0 8.131 | -131009 stag0 9.131 | -131010 mslag0 10.131 | -131015 h0dip 15.131 | -131016 hslp 16.131 | -131017 saip 17.131 | -131018 whip 18.131 | -131020 talm2 20.131 | -131021 tag2 21.131 | -131022 talm8 22.131 | -131023 talm4 23.131 | -131024 tag4 24.131 | -131025 tag8 25.131 | -131049 10gp 49.131 | -131059 capep 59.131 | -131060 tpg1 60.131 | -131061 tpg5 61.131 | -131062 tpg10 62.131 | -131063 tpg20 63.131 | -131064 tpl01 64.131 | -131065 tprl1 65.131 | -131066 tprg3 66.131 | -131067 tprg5 67.131 | -131068 10spg10 68.131 | -131069 10spg15 69.131 | -131070 10fgg15 70.131 | -131071 10fgg20 71.131 | -131072 10fgg25 72.131 | -131073 2tl273 73.131 | -131074 swhg2 74.131 | -131075 swhg4 75.131 | -131076 swhg6 76.131 | -131077 swhg8 77.131 | -131078 mwpg8 78.131 | -131079 mwpg10 79.131 | -131080 mwpg12 80.131 | -131081 mwpg15 81.131 | -131082 tpg40 82.131 | -131083 tpg60 83.131 | -131084 tpg80 84.131 | -131085 tpg100 85.131 | -131086 tpg150 86.131 | -131087 tpg200 87.131 | -131088 tpg300 88.131 | -131089 pts 89.131 | -131090 ph 90.131 | -131091 ptd 91.131 | -131092 cpts 92.131 | -131093 cph 93.131 | -131094 cptd 94.131 | -131095 pats 95.131 | -131096 pah 96.131 | -131097 patd 97.131 | -131129 zp 129.131 | -131130 tap 130.131 | -131139 2tp 139.131 | -131144 sfp 144.131 | -131151 tpp 151.131 | -131164 tccp 164.131 | -131165 10sp 165.131 | -131167 2tp 167.131 | -131201 mx2tp 201.131 | -131202 mn2tp 202.131 | -131228 tpp 228.131 | -131229 swhp 229.131 | -131232 mwpp 232.131 | -131255 255.131 | -132 v 34.1 34.2 34.3 132.128 132.160 132.170 132.180 132.190 | -132049 10fgi 49.132 | -132144 sfi 144.132 | -132165 10wsi 165.132 | -132167 2ti 167.132 | -132201 mx2ti 201.132 | -132202 mn2ti 202.132 | -132216 maxswhi 216.132 | -132228 tpi 228.132 | -133 q 51.1 51.2 51.3 133.128 133.160 133.170 133.180 133.190 | -133001 1.133 2tplm10 | -133002 2tplm5 2.133 | -133003 2tpl0 3.133 | -133004 2tpl5 4.133 | -133005 2tpl10 5.133 | -133006 2tpg25 6.133 | -133007 2tpg30 7.133 | -133008 2tpg35 8.133 | -133009 2tpg40 9.133 | -133010 2tpg45 10.133 | -133011 mn2tplm10 11.133 | -133012 mn2tplm5 12.133 | -133013 mn2tpl0 13.133 | -133014 mn2tpl5 14.133 | -133015 mn2tpl10 15.133 | -133016 mx2tpg25 16.133 | -133017 mx2tpg30 17.133 | -133018 mx2tpg35 18.133 | -133019 mx2tpg40 19.133 | -133020 mx2tpg45 20.133 | -133021 10spg10 21.133 | -133022 10spg15 22.133 | -133023 10spg20 23.133 | -133024 10spg35 24.133 | -133025 10spg50 25.133 | -133026 10gpg20 26.133 | -133027 10gpg35 27.133 | -133028 10gpg50 28.133 | -133029 10gpg75 29.133 | -133030 10gpg100 30.133 | -133031 tppg1 31.133 | -133032 tppg5 32.133 | -133033 tppg10 33.133 | -133034 tppg20 34.133 | -133035 tppg40 35.133 | -133036 tppg60 36.133 | -133037 tppg80 37.133 | -133038 tppg100 38.133 | -133039 tppg150 39.133 | -133040 tppg200 40.133 | -133041 tppg300 41.133 | -133042 sfpg1 42.133 | -133043 sfpg5 43.133 | -133044 sfpg10 44.133 | -133045 sfpg20 45.133 | -133046 sfpg40 46.133 | -133047 sfpg60 47.133 | -133048 sfpg80 48.133 | -133049 sfpg100 49.133 | -133050 sfpg150 50.133 | -133051 sfpg200 51.133 | -133052 sfpg300 52.133 | -133053 tccpg10 53.133 | -133054 tccpg20 54.133 | -133055 tccpg30 55.133 | -133056 tccpg40 56.133 | -133057 tccpg50 57.133 | -133058 tccpg60 58.133 | -133059 tccpg70 59.133 | -133060 tccpg80 60.133 | -133061 tccpg90 61.133 | -133062 tccpg99 62.133 | -133063 hccpg10 63.133 | -133064 hccpg20 64.133 | -133065 hccpg30 65.133 | -133066 hccpg40 66.133 | -133067 hccpg50 67.133 | -133068 hccpg60 68.133 | -133069 hccpg70 69.133 | -133070 hccpg80 70.133 | -133071 hccpg90 71.133 | -133072 hccpg99 72.133 | -133073 mccpg10 73.133 | -133074 mccpg20 74.133 | -133075 mccpg30 75.133 | -133076 mccpg40 76.133 | -133077 mccpg50 77.133 | -133078 mccpg60 78.133 | -133079 mccpg70 79.133 | -133080 mccpg80 80.133 | -133081 mccpg90 81.133 | -133082 mccpg99 82.133 | -133083 lccpg10 83.133 | -133084 lccpg20 84.133 | -133085 lccpg30 85.133 | -133086 lccpg40 86.133 | -133087 lccpg50 87.133 | -133088 lccpg60 88.133 | -133089 lccpg70 89.133 | -133090 lccpg80 90.133 | -133091 lccpg90 91.133 | -133092 lccpg99 92.133 | -134 sp 1.1 1.2 1.3 52.162 134.128 134.160 134.180 134.190 | -135 w 39.1 39.2 39.3 135.128 135.170 | -136 tcw 136.128 136.160 | -137 tcwv 137.128 137.180 | -138 vo 43.1 43.2 43.3 138.128 138.160 138.170 138.180 138.190 | -139 stl1 139.128 139.160 139.170 139.190 | -14 vrtw 14.128 | -140 swl1 140.128 140.170 | -140200 maxswh 200.140 | -140211 phiaw 211.140 | -140212 phioc 212.140 | -140213 tla 213.140 | -140214 tauoc 214.140 | -140215 ust 215.140 | -140216 vst 216.140 | -140217 tmax 217.140 | -140218 hmax 218.140 | -140219 wmb 219.140 | -140220 mp1 220.140 | -140221 mp2 221.140 | -140222 wdw 222.140 | -140223 p1ww 223.140 | -140224 p2ww 224.140 | -140225 dwww 225.140 | -140226 p1ps 226.140 | -140227 p2ps 227.140 | -140228 dwps 228.140 | -140229 swh 229.140 | -140230 mwd 230.140 | -140231 pp1d 231.140 | -140232 mwp 232.140 | -140233 cdww 233.140 | -140234 shww 234.140 | -140235 mdww 235.140 | -140236 mpww 236.140 | -140237 shts 237.140 | -140238 mdts 238.140 | -140239 mpts 239.140 | -140240 sdhs 240.140 | -140241 mu10 241.140 | -140242 mdwi 242.140 | -140243 sdu 243.140 | -140244 msqs 244.140 | -140245 wind 245.140 | -140246 awh 246.140 | -140247 acwh 247.140 | -140248 arrc 248.140 | -140249 dwi 249.140 | -140250 2dsp 250.140 | -140251 2dfd 251.140 | -140252 wsk 252.140 | -140253 bfi 253.140 | -140254 wsp 254.140 | -140255 255.140 | -141 sd 141.128 141.170 141.180 | -142 lsp 142.128 142.170 142.180 | -143 cp 143.128 143.170 143.180 | -144 sf 144.128 144.180 | -145 bld 123.1 123.2 123.3 145.128 145.160 | -146 sshf 122.1 122.2 122.3 146.128 146.160 146.170 146.180 146.190 | -147 slhf 121.1 121.2 121.3 147.128 147.160 147.170 147.180 147.190 | -148 chnk 148.128 | -149 snr 149.128 | -15 aluvp 15.128 | -150 tnr 150.128 | -150129 ocpt 129.150 | -150130 ocs 130.150 | -150131 ocpd 131.150 | -150133 ocu 133.150 | -150134 ocv 134.150 | -150135 ocw 135.150 | -150137 rn 137.150 | -150139 uv 139.150 | -150140 ut 140.150 | -150141 vt 141.150 | -150142 uu 142.150 | -150143 vv 143.150 | -150144 144.150 | -150145 145.150 | -150146 146.150 | -150147 147.150 | -150148 148.150 | -150152 sl 152.150 | -150153 153.150 | -150154 mld 154.150 | -150155 155.150 | -150168 168.150 | -150169 169.150 | -150170 170.150 | -150171 nsf 171.150 | -150172 172.150 | -150173 173.150 | -150180 180.150 | -150181 181.150 | -150182 182.150 | -150183 183.150 | -150255 255.150 | -151 msl 2.1 2.2 2.3 151.128 151.160 151.170 151.180 151.190 | -151128 128.151 | -151129 ocpt 129.151 | -151130 s 130.151 | -151131 ocu 131.151 | -151132 ocv 132.151 | -151133 ocw 133.151 | -151134 mst 134.151 | -151135 vvs 135.151 | -151136 vdf 136.151 | -151137 dep 137.151 | -151138 sth 138.151 | -151139 rn 139.151 | -151140 uv 140.151 | -151141 ut 141.151 | -151142 vt 142.151 | -151143 uu 143.151 | -151144 vv 144.151 | -151145 sl 145.151 | -151146 sl_1 146.151 | -151147 bsf 147.151 | -151148 mld 148.151 | -151149 btp 149.151 | -151150 sh 150.151 | -151151 crl 151.151 | -151152 152.151 | -151153 tax 153.151 | -151154 tay 154.151 | -151155 tki 155.151 | -151156 nsf 156.151 | -151157 asr 157.151 | -151158 pme 158.151 | -151159 sst 159.151 | -151160 shf 160.151 | -151161 dte 161.151 | -151162 hfc 162.151 | -151163 20d 163.151 | -151164 tav300 164.151 | -151165 uba1 165.151 | -151166 vba1 166.151 | -151167 ztr 167.151 | -151168 mtr 168.151 | -151169 zht 169.151 | -151170 mht 170.151 | -151171 umax 171.151 | -151172 dumax 172.151 | -151173 smax 173.151 | -151174 dsmax 174.151 | -151175 sav300 175.151 | -151176 ldp 176.151 | -151177 ldu 177.151 | -151178 pti 178.151 | -151179 ptae 179.151 | -151180 bpt 180.151 | -151181 apt 181.151 | -151182 ptbe 182.151 | -151183 as 183.151 | -151184 sali 184.151 | -151185 ebt 185.151 | -151186 ebs 186.151 | -151187 uvi 187.151 | -151188 vvi 188.151 | -151190 subi 190.151 | -151191 sale 191.151 | -151192 bsal 192.151 | -151193 193.151 | -151194 salbe 194.151 | -151199 ebta 199.151 | -151200 ebsa 200.151 | -151201 lti 201.151 | -151202 lsi 202.151 | -151203 bzpga 203.151 | -151204 bmpga 204.151 | -151205 ebtl 205.151 | -151206 ebsl 206.151 | -151207 fgbt 207.151 | -151208 fgbs 208.151 | -151209 bpa 209.151 | -151210 fgbp 210.151 | -151211 pta 211.151 | -151212 psa 212.151 | -151255 255.151 | -152 lnsp 152.128 152.160 | -153 swhr 153.128 | -154 lwhr 154.128 | -155 d 44.1 44.2 44.3 155.128 155.160 155.170 155.180 155.190 | -156 gh 7.1 7.2 7.3 156.128 | -157 r 52.1 52.2 52.3 157.128 157.170 157.190 | -158 tsp 158.128 158.160 | -159 blh 159.128 | -16 aluvd 16.128 | -160 sdor 160.128 | -160049 10fgrea 49.160 | -160135 wrea 135.160 | -160137 pwcrea 137.160 | -160140 swl1rea 140.160 | -160141 sdrea 141.160 | -160142 lsprea 142.160 | -160143 cprea 143.160 | -160144 sfrea 144.160 | -160156 ghrea 156.160 | -160157 rrea 157.160 | -160171 swl2rea 171.160 | -160180 ewssrea 180.160 | -160181 nsssrea 181.160 | -160182 erea 182.160 | -160184 swl3rea 184.160 | -160198 srcrea 198.160 | -160199 vegrea 199.160 | -160201 mx2trea 201.160 | -160202 mn2trea 202.160 | -160205 rorea 205.160 | -160206 zzrea 206.160 | -160207 tzrea 207.160 | -160208 ttrea 208.160 | -160209 qzrea 209.160 | -160210 qtrea 210.160 | -160211 qqrea 211.160 | -160212 uzrea 212.160 | -160213 utrea 213.160 | -160214 uqrea 214.160 | -160215 uurea 215.160 | -160216 vzrea 216.160 | -160217 vtrea 217.160 | -160218 vqrea 218.160 | -160219 vurea 219.160 | -160220 vvrea 220.160 | -160221 wzrea 221.160 | -160222 wtrea 222.160 | -160223 wqrea 223.160 | -160224 wurea 224.160 | -160225 wvrea 225.160 | -160226 wwrea 226.160 | -160231 ishfrea 231.160 | -160239 csfrea 239.160 | -160240 lsfrea 240.160 | -160241 clwcerrea 241.160 | -160242 ccrea 242.160 | -160243 falrea 243.160 | -160246 10wsrea 246.160 | -160247 moflrea 247.160 | -160249 249.160 | -160254 hsdrea 254.160 | -161 isor 161.128 | -162 anor 162.128 | -162051 51.162 | -162053 53.162 | -162054 54.162 | -162055 55.162 | -162056 56.162 | -162057 57.162 | -162058 58.162 | -162059 59.162 | -162060 60.162 | -162061 61.162 | -162062 62.162 | -162063 63.162 | -162064 64.162 | -162065 65.162 | -162066 66.162 | -162067 67.162 | -162068 68.162 | -162069 69.162 | -162070 70.162 | -162071 71.162 | -162072 72.162 | -162073 73.162 | -162074 74.162 | -162075 75.162 | -162076 76.162 | -162077 77.162 | -162078 78.162 | -162079 79.162 | -162080 80.162 | -162081 81.162 | -162082 82.162 | -162083 83.162 | -162084 84.162 | -162085 85.162 | -162086 86.162 | -162087 87.162 | -162088 88.162 | -162089 89.162 | -162090 90.162 | -162091 91.162 | -162092 92.162 | -162100 100.162 | -162101 101.162 | -162102 102.162 | -162103 103.162 | -162104 104.162 | -162105 105.162 | -162106 106.162 | -162107 107.162 | -162108 108.162 | -162109 109.162 | -162110 110.162 | -162111 111.162 | -162112 112.162 | -162113 113.162 | -162114 utendd 114.162 | -162115 vtendd 115.162 | -162116 ttendd 116.162 | -162117 qtendd 117.162 | -162118 ttendr 118.162 | -162119 utendts 119.162 | -162120 vtendts 120.162 | -162121 ttendts 121.162 | -162122 qtendt 122.162 | -162123 utends 123.162 | -162124 vtends 124.162 | -162125 ttends 125.162 | -162126 utendcds 126.162 | -162127 vtendcds 127.162 | -162128 ttendcds 128.162 | -162129 qtendcds 129.162 | -162130 lpc 130.162 | -162131 ipc 131.162 | -162132 ttendcs 132.162 | -162133 qtendcs 133.162 | -162134 qltendcs 134.162 | -162135 qitendcs 135.162 | -162136 lpcs 136.162 | -162137 ipcs 137.162 | -162138 utendcs 138.162 | -162139 vtendcs 139.162 | -162140 ttendsc 140.162 | -162141 qtendsc 141.162 | -162206 206.162 | -162207 207.162 | -162208 208.162 | -162209 209.162 | -162210 210.162 | -162211 211.162 | -162212 212.162 | -162213 213.162 | -162214 214.162 | -162215 215.162 | -162216 216.162 | -162217 217.162 | -162218 218.162 | -162219 219.162 | -162220 220.162 | -162221 221.162 | -162222 222.162 | -162223 223.162 | -162224 224.162 | -162225 225.162 | -162226 226.162 | -162227 227.162 | -162229 229.162 | -162230 230.162 | -162231 231.162 | -162232 232.162 | -162233 233.162 | -162255 255.162 | -163 slor 163.128 | -164 tcc 164.128 164.160 164.170 164.180 164.190 | -165 10u 33.1 33.2 33.3 165.128 165.160 165.180 165.190 | -166 10v 34.1 34.2 34.3 166.128 166.160 166.180 166.190 | -167 2t 11.1 11.2 11.3 167.128 167.160 167.180 167.190 | -168 2d 44.1 44.2 44.3 168.128 168.160 168.180 168.190 | -169 ssrd 169.128 169.190 | -17 alnip 17.128 | -170 stl2 170.128 170.160 | -170149 tsw 149.170 | -170171 swl2 171.170 | -170179 ttr 179.170 | -171 swl2 171.128 | -171001 strfa 1.171 | -171002 vpota 2.171 | -171003 pta 3.171 | -171004 epta 4.171 | -171005 septa 5.171 | -171006 6.171 100ua | -171007 7.171 100va | -171011 udwa 11.171 | -171012 vdwa 12.171 | -171013 urwa 13.171 | -171014 vrwa 14.171 | -171021 uctpa 21.171 | -171022 uclna 22.171 | -171023 ucdva 23.171 | -171026 cla 26.171 | -171027 cvla 27.171 | -171028 cvha 28.171 | -171029 tvla 29.171 | -171030 tvha 30.171 | -171031 sica 31.171 | -171032 asna 32.171 | -171033 rsna 33.171 | -171034 ssta 34.171 | -171035 istal1 35.171 | -171036 istal2 36.171 | -171037 istal3 37.171 | -171038 istal4 38.171 | -171039 swval1 39.171 | -171040 swval2 40.171 | -171041 swval3 41.171 | -171042 swval4 42.171 | -171043 slta 43.171 | -171044 esa 44.171 | -171045 smlta 45.171 | -171046 sdura 46.171 | -171047 dsrpa 47.171 | -171048 magssa 48.171 | -171049 10fga 49.171 | -171050 lspfa 50.171 | -171051 mx2t24a 51.171 | -171052 mn2t24a 52.171 | -171053 monta 53.171 | -171054 pa 54.171 | -171055 mn2t24a 55.171 | -171056 mn2d24a 56.171 | -171057 uvba 57.171 | -171058 para 58.171 | -171059 capea 59.171 | -171060 pva 60.171 | -171061 tpoa 61.171 | -171062 obcta 62.171 | -171063 stsktda 63.171 | -171064 ftsktda 64.171 | -171065 sktda 65.171 | -171078 tclwa 78.171 | -171079 tciwa 79.171 | -171121 mx2t6a 121.171 | -171122 mn2t6a 122.171 | -171125 vitea 125.171 | -171126 126.171 | -171127 ata 127.171 | -171128 bva 128.171 | -171129 za 129.171 | -171130 ta 130.171 | -171131 ua 131.171 | -171132 va 132.171 | -171133 qa 133.171 | -171134 spa 134.171 | -171135 wa 135.171 | -171136 tcwa 136.171 | -171137 tcwva 137.171 | -171138 voa 138.171 | -171139 stal1 139.171 | -171140 swal1 140.171 | -171141 sda 141.171 | -171142 lspa 142.171 | -171143 cpa 143.171 | -171144 sfa 144.171 | -171145 blda 145.171 | -171146 sshfa 146.171 | -171147 slhfa 147.171 | -171148 chnka 148.171 | -171149 snra 149.171 | -171150 tnra 150.171 | -171151 msla 151.171 | -171152 lspa 152.171 | -171153 swhra 153.171 | -171154 lwhra 154.171 | -171155 da 155.171 | -171156 gha 156.171 | -171157 ra 157.171 | -171158 tspa 158.171 | -171159 blha 159.171 | -171160 sdora 160.171 | -171161 isora 161.171 | -171162 anora 162.171 | -171163 slora 163.171 | -171164 tcca 164.171 | -171165 10ua 165.171 | -171166 10va 166.171 | -171167 2ta 167.171 | -171168 2da 168.171 | -171169 ssrda 169.171 | -171170 stal2 170.171 | -171171 swal2 171.171 | -171173 sra 173.171 | -171174 ala 174.171 | -171175 strda 175.171 | -171176 ssra 176.171 | -171177 stra 177.171 | -171178 tsra 178.171 | -171179 ttra 179.171 | -171180 eqssa 180.171 | -171181 nsssa 181.171 | -171182 ea 182.171 | -171183 stal3 183.171 | -171184 swal3 184.171 | -171185 ccca 185.171 | -171186 lcca 186.171 | -171187 mcca 187.171 | -171188 hcca 188.171 | -171189 sunda 189.171 | -171190 ewova 190.171 | -171191 nsova 191.171 | -171192 nwova 192.171 | -171193 neova 193.171 | -171194 btmpa 194.171 | -171195 lgwsa 195.171 | -171196 mgwsa 196.171 | -171197 gwda 197.171 | -171198 srca 198.171 | -171199 vfa 199.171 | -171200 vsoa 200.171 | -171201 mx2ta 201.171 | -171202 mn2ta 202.171 | -171203 o3a 203.171 | -171204 pawa 204.171 | -171205 roa 205.171 | -171206 tco3a 206.171 | -171207 10ua 207.171 | -171208 tsrca 208.171 | -171209 ttrca 209.171 | -171210 ssrca 210.171 | -171211 strca 211.171 | -171212 sia 212.171 | -171214 dhra 214.171 | -171215 dhvda 215.171 | -171216 dhcca 216.171 | -171217 dhlca 217.171 | -171218 vdzwa 218.171 | -171219 vdmwa 219.171 | -171220 ewgda 220.171 | -171221 nsgda 221.171 | -171222 ctzwa 222.171 | -171223 ctmwa 223.171 | -171224 vdha 224.171 | -171225 htcca 225.171 | -171226 htlca 226.171 | -171227 crnha 227.171 | -171228 tpa 228.171 | -171229 iewsa 229.171 | -171230 inssa 230.171 | -171231 ishfa 231.171 | -171232 iea 232.171 | -171233 asqa 233.171 | -171234 lsrha 234.171 | -171235 skta 235.171 | -171236 stal4 236.171 | -171237 swal4 237.171 | -171238 tsna 238.171 | -171239 csfa 239.171 | -171240 lsfa 240.171 | -171241 acfa 241.171 | -171242 alwa 242.171 | -171243 fala 243.171 | -171244 fsra 244.171 | -171245 flsra 245.171 | -171246 clwca 246.171 | -171247 ciwca 247.171 | -171248 cca 248.171 | -171249 aiwa 249.171 | -171250 iaa 250.171 | -171251 attea 251.171 | -171252 athea 252.171 | -171253 atzea 253.171 | -171254 atmwa 254.171 | -171255 255.171 | -172 lsm 81.1 81.2 81.3 172.128 172.160 172.171 172.174 172.175 172.180 172.190 | -172044 esrate 44.172 | -172045 45.172 | -172048 48.172 | -172050 50.172 | -172142 142.172 | -172143 cprate 143.172 | -172144 144.172 | -172145 bldrate 145.172 | -172146 146.172 | -172147 147.172 | -172149 149.172 | -172153 153.172 | -172154 154.172 | -172169 169.172 | -172175 175.172 | -172176 176.172 | -172177 177.172 | -172178 178.172 | -172179 179.172 | -172180 180.172 | -172181 181.172 | -172182 erate 182.172 | -172189 189.172 | -172195 195.172 | -172196 196.172 | -172197 gwdrate 197.172 | -172205 205.172 | -172208 208.172 | -172209 209.172 | -172210 210.172 | -172211 211.172 | -172212 212.172 | -172228 tprate 228.172 | -172239 239.172 | -172240 240.172 | -172255 255.172 | -173 sr 83.1 83.2 83.3 173.128 173.160 | -173044 44.173 | -173045 45.173 | -173048 48.173 | -173050 50.173 | -173142 142.173 | -173143 143.173 | -173144 sfara 144.173 | -173145 145.173 | -173146 146.173 | -173147 147.173 | -173149 149.173 | -173153 153.173 | -173154 154.173 | -173169 169.173 | -173175 175.173 | -173176 176.173 | -173177 177.173 | -173178 178.173 | -173179 179.173 | -173180 180.173 | -173181 181.173 | -173182 182.173 | -173189 sundara 189.173 | -173195 195.173 | -173196 196.173 | -173197 197.173 | -173205 205.173 | -173208 208.173 | -173209 209.173 | -173210 210.173 | -173211 211.173 | -173212 212.173 | -173228 tpara 228.173 | -173239 239.173 | -173240 240.173 | -173255 255.173 | -174 al 84.1 84.2 84.3 174.128 174.160 174.190 | -174006 6.174 | -174008 sro 8.174 | -174009 ssro 9.174 | -174031 31.174 | -174034 34.174 | -174039 39.174 | -174040 40.174 | -174041 41.174 | -174042 42.174 | -174049 49.174 | -174055 55.174 | -174083 83.174 | -174085 85.174 | -174086 86.174 | -174087 87.174 | -174088 88.174 | -174089 89.174 | -174090 90.174 | -174094 94.174 | -174095 95.174 | -174098 98.174 | -174099 99.174 | -174110 110.174 | -174111 111.174 | -174139 139.174 | -174164 164.174 | -174167 167.174 | -174168 168.174 | -174170 170.174 | -174175 175.174 | -174183 183.174 | -174201 201.174 | -174202 202.174 | -174236 236.174 | -174255 255.174 | -175 strd 175.128 175.190 | -175006 6.175 | -175031 31.175 | -175034 34.175 | -175039 39.175 | -175040 40.175 | -175041 41.175 | -175042 42.175 | -175049 49.175 | -175055 55.175 | -175083 83.175 | -175085 85.175 | -175086 86.175 | -175087 87.175 | -175088 88.175 | -175089 89.175 | -175090 90.175 | -175110 110.175 | -175111 111.175 | -175139 139.175 | -175164 164.175 | -175167 167.175 | -175168 168.175 | -175170 170.175 | -175175 175.175 | -175183 183.175 | -175201 201.175 | -175202 202.175 | -175236 236.175 | -175255 255.175 | -176 ssr 176.128 176.160 176.170 176.190 | -177 str 177.128 177.160 177.170 177.190 | -178 tsr 178.128 178.160 178.190 | -179 ttr 179.128 179.160 179.190 | -18 alnid 18.128 | -180 ewss 180.128 180.170 180.180 | -180149 tsw 149.180 | -180176 ssr 176.180 | -180177 str 177.180 | -180178 tsr 178.180 | -180179 ttr 179.180 | -181 nsss 181.128 181.170 181.180 | -182 e 57.1 57.2 57.3 182.128 182.170 182.180 182.190 | -183 stl3 183.128 183.160 | -184 swl3 184.128 184.170 | -185 ccc 72.1 72.2 72.3 185.128 185.160 185.170 | -186 lcc 73.1 73.2 73.3 186.128 186.160 | -187 mcc 74.1 74.2 74.3 187.128 187.160 | -188 hcc 75.1 75.2 75.3 188.128 188.160 | -189 sund 189.128 | -19 uvcs 19.128 | -190 ewov 190.128 190.160 | -190141 sdsien 141.190 | -190170 cap 170.190 | -190171 wiltsien 171.190 | -190173 sr 173.190 | -190229 tsm 229.190 | -191 nsov 191.128 191.160 | -192 nwov 192.128 192.160 | -193 neov 193.128 193.160 | -194 btmp 118.1 118.2 118.3 194.128 | -195 lgws 195.128 195.160 | -196 mgws 196.128 196.160 | -197 gwd 197.128 197.160 | -198 src 198.128 | -199 veg 87.1 87.2 87.3 199.128 | -2 vp 2.128 36.1 36.2 36.3 | -20 parcs 20.128 | -200 vso 200.128 200.160 | -200001 strfdiff 1.200 | -200002 vpotdiff 2.200 | -200003 ptdiff 3.200 | -200004 eqptdiff 4.200 | -200005 septdiff 5.200 | -200011 udvwdiff 11.200 | -200012 vdvwdiff 12.200 | -200013 urtwdiff 13.200 | -200014 vrtwdiff 14.200 | -200021 uctpdiff 21.200 | -200022 uclndiff 22.200 | -200023 ucdvdiff 23.200 | -200024 24.200 | -200025 25.200 | -200026 cldiff 26.200 | -200027 cvldiff 27.200 | -200028 cvhdiff 28.200 | -200029 tvldiff 29.200 | -200030 tvhdiff 30.200 | -200031 sicdiff 31.200 | -200032 asndiff 32.200 | -200033 rsndiff 33.200 | -200034 sstdiff 34.200 | -200035 istl1diff 35.200 | -200036 istl2diff 36.200 | -200037 istl3diff 37.200 | -200038 istl4diff 38.200 | -200039 swvl1diff 39.200 | -200040 swvl2diff 40.200 | -200041 swvl3diff 41.200 | -200042 swvl4diff 42.200 | -200043 sltdiff 43.200 | -200044 esdiff 44.200 | -200045 smltdiff 45.200 | -200046 sdurdiff 46.200 | -200047 dsrpdiff 47.200 | -200048 magssdiff 48.200 | -200049 10fgdiff 49.200 | -200050 lspfdiff 50.200 | -200051 mx2t24diff 51.200 | -200052 mn2t24diff 52.200 | -200053 montdiff 53.200 | -200054 presdiff 54.200 | -200055 mean2t24diff 55.200 | -200056 mn2d24diff 56.200 | -200057 uvbdiff 57.200 | -200058 pardiff 58.200 | -200059 capediff 59.200 | -200060 pvdiff 60.200 | -200061 tpodiff 61.200 | -200062 obctdiff 62.200 | -200063 63.200 | -200064 64.200 | -200065 65.200 | -200066 66.200 | -200067 67.200 | -200068 68.200 | -200069 69.200 | -200070 70.200 | -200071 71.200 | -200078 78.200 | -200079 79.200 | -200080 80.200 | -200081 81.200 | -200082 82.200 | -200083 83.200 | -200084 84.200 | -200085 85.200 | -200086 86.200 | -200087 87.200 | -200088 88.200 | -200089 89.200 | -200090 90.200 | -200091 91.200 | -200092 92.200 | -200093 93.200 | -200094 94.200 | -200095 95.200 | -200096 96.200 | -200097 97.200 | -200098 98.200 | -200099 99.200 | -200100 100.200 | -200101 101.200 | -200102 102.200 | -200103 103.200 | -200104 104.200 | -200105 105.200 | -200106 106.200 | -200107 107.200 | -200108 108.200 | -200109 109.200 | -200110 110.200 | -200111 111.200 | -200112 112.200 | -200113 113.200 | -200114 114.200 | -200115 115.200 | -200116 116.200 | -200117 117.200 | -200118 118.200 | -200119 119.200 | -200120 120.200 | -200121 mx2t6diff 121.200 | -200122 mn2t6diff 122.200 | -200123 10fg6diff 123.200 | -200125 125.200 | -200126 126.200 | -200127 atdiff 127.200 | -200128 bvdiff 128.200 | -200129 zdiff 129.200 | -200130 tdiff 130.200 | -200131 udiff 131.200 | -200132 vdiff 132.200 | -200133 qdiff 133.200 | -200134 spdiff 134.200 | -200135 wdiff 135.200 | -200136 tcwdiff 136.200 | -200137 tcwvdiff 137.200 | -200138 vodiff 138.200 | -200139 stl1diff 139.200 | -200140 swl1diff 140.200 | -200141 sddiff 141.200 | -200142 lspdiff 142.200 | -200143 cpdiff 143.200 | -200144 sfdiff 144.200 | -200145 blddiff 145.200 | -200146 sshfdiff 146.200 | -200147 slhfdiff 147.200 | -200148 chnkdiff 148.200 | -200149 snrdiff 149.200 | -200150 tnrdiff 150.200 | -200151 msldiff 151.200 | -200152 lnspdiff 152.200 | -200153 swhrdiff 153.200 | -200154 lwhrdiff 154.200 | -200155 ddiff 155.200 | -200156 ghdiff 156.200 | -200157 rdiff 157.200 | -200158 tspdiff 158.200 | -200159 blhdiff 159.200 | -200160 sdordiff 160.200 | -200161 isordiff 161.200 | -200162 anordiff 162.200 | -200163 slordiff 163.200 | -200164 tccdiff 164.200 | -200165 10udiff 165.200 | -200166 10vdiff 166.200 | -200167 2tdiff 167.200 | -200168 2ddiff 168.200 | -200169 ssrddiff 169.200 | -200170 stl2diff 170.200 | -200171 swl2diff 171.200 | -200172 lsmdiff 172.200 | -200173 srdiff 173.200 | -200174 aldiff 174.200 | -200175 strddiff 175.200 | -200176 ssrdiff 176.200 | -200177 strdiff 177.200 | -200178 tsrdiff 178.200 | -200179 ttrdiff 179.200 | -200180 ewssdiff 180.200 | -200181 nsssdiff 181.200 | -200182 ediff 182.200 | -200183 stl3diff 183.200 | -200184 swl3diff 184.200 | -200185 cccdiff 185.200 | -200186 lccdiff 186.200 | -200187 mccdiff 187.200 | -200188 hccdiff 188.200 | -200189 sunddiff 189.200 | -200190 ewovdiff 190.200 | -200191 nsovdiff 191.200 | -200192 nwovdiff 192.200 | -200193 neovdiff 193.200 | -200194 btmpdiff 194.200 | -200195 lgwsdiff 195.200 | -200196 mgwsdiff 196.200 | -200197 gwddiff 197.200 | -200198 srcdiff 198.200 | -200199 vegdiff 199.200 | -200200 vsodiff 200.200 | -200201 mx2tdiff 201.200 | -200202 mn2tdiff 202.200 | -200203 o3diff 203.200 | -200204 pawdiff 204.200 | -200205 rodiff 205.200 | -200206 tco3diff 206.200 | -200207 10sidiff 207.200 | -200208 tsrcdiff 208.200 | -200209 ttrcdiff 209.200 | -200210 ssrcdiff 210.200 | -200211 strcdiff 211.200 | -200212 tisrdiff 212.200 | -200214 dhrdiff 214.200 | -200215 dhvddiff 215.200 | -200216 dhccdiff 216.200 | -200217 dhlcdiff 217.200 | -200218 vdzwdiff 218.200 | -200219 vdmwdiff 219.200 | -200220 ewgddiff 220.200 | -200221 nsgddiff 221.200 | -200222 ctzwdiff 222.200 | -200223 ctmwdiff 223.200 | -200224 vdhdiff 224.200 | -200225 htccdiff 225.200 | -200226 htlcdiff 226.200 | -200227 crnhdiff 227.200 | -200228 tpdiff 228.200 | -200229 iewsdiff 229.200 | -200230 inssdiff 230.200 | -200231 ishfdiff 231.200 | -200232 iediff 232.200 | -200233 asqdiff 233.200 | -200234 lsrhdiff 234.200 | -200235 sktdiff 235.200 | -200236 stl4diff 236.200 | -200237 swl4diff 237.200 | -200238 tsndiff 238.200 | -200239 csfdiff 239.200 | -200240 lsfdiff 240.200 | -200241 acfdiff 241.200 | -200242 alwdiff 242.200 | -200243 faldiff 243.200 | -200244 fsrdiff 244.200 | -200245 flsrdiff 245.200 | -200246 clwcdiff 246.200 | -200247 ciwcdiff 247.200 | -200248 ccdiff 248.200 | -200249 aiwdiff 249.200 | -200250 icediff 250.200 | -200251 attediff 251.200 | -200252 athediff 252.200 | -200253 atzediff 253.200 | -200254 atmwdiff 254.200 | -200255 255.200 | -201 mx2t 201.128 201.170 201.190 | -201001 1.201 | -201002 2.201 | -201003 3.201 | -201004 4.201 | -201005 apab_s 5.201 | -201006 6.201 | -201007 7.201 | -201008 8.201 | -201009 9.201 | -201010 10.201 | -201011 11.201 | -201012 12.201 | -201013 sohr_rad 13.201 | -201014 thhr_rad 14.201 | -201015 15.201 | -201016 16.201 | -201017 17.201 | -201029 clc 29.201 | -201030 30.201 | -201031 qc 31.201 | -201032 32.201 | -201033 qi 33.201 | -201034 34.201 | -201035 35.201 | -201036 36.201 | -201037 37.201 | -201038 38.201 | -201041 twater 41.201 | -201042 42.201 | -201050 ch_cm_cl 50.201 | -201051 51.201 | -201052 52.201 | -201053 53.201 | -201054 54.201 | -201055 55.201 | -201056 56.201 | -201060 60.201 | -201061 61.201 | -201062 62.201 | -201063 63.201 | -201064 64.201 | -201065 65.201 | -201066 66.201 | -201067 67.201 | -201068 hbas_con 68.201 | -201069 htop_con 69.201 | -201070 70.201 | -201071 71.201 | -201072 bas_con 72.201 | -201073 top_con 73.201 | -201074 dt_con 74.201 | -201075 dqv_con 75.201 | -201076 76.201 | -201077 77.201 | -201078 du_con 78.201 | -201079 dv_con 79.201 | -201080 80.201 | -201081 81.201 | -201082 htop_dc 82.201 | -201083 83.201 | -201084 hzerocl 84.201 | -201085 snowlmt 85.201 | -201099 qrs_gsp 99.201 | -201100 prr_gsp 100.201 | -201101 prs_gsp 101.201 | -201102 rain_gsp 102.201 | -201111 prr_con 111.201 | -201112 prs_con 112.201 | -201113 rain_con 113.201 | -201139 pp 139.201 | -201150 150.201 | -201187 vmax_10m 187.201 | -201200 w_i 200.201 | -201203 t_snow 203.201 | -201215 t_ice 215.201 | -201241 cape_con 241.201 | -201255 255.201 | -202 mn2t 202.128 202.170 202.190 | -203 o3 203.128 | -204 paw 204.128 204.160 | -205 ro 90.1 90.2 90.3 205.128 205.180 | -206 tco3 10.1 10.2 10.3 206.128 | -207 10si 207.128 | -208 tsrc 208.128 | -209 ttrc 209.128 | -21 uctp 21.128 | -210 ssrc 210.128 | -210001 aermr01 1.210 | -210002 aermr02 2.210 | -210003 aermr03 3.210 | -210004 aermr04 4.210 | -210005 aermr05 5.210 | -210006 aermr06 6.210 | -210007 aermr07 7.210 | -210008 aermr08 8.210 | -210009 aermr09 9.210 | -210010 aermr10 10.210 | -210011 aermr11 11.210 | -210012 aermr12 12.210 | -210013 aermr13 13.210 | -210014 aermr14 14.210 | -210015 aermr15 15.210 | -210016 aergn01 16.210 | -210017 aergn02 17.210 | -210018 aergn03 18.210 | -210019 aergn04 19.210 | -210020 aergn05 20.210 | -210021 aergn06 21.210 | -210022 aergn07 22.210 | -210023 aergn08 23.210 | -210024 aergn09 24.210 | -210025 aergn10 25.210 | -210026 aergn11 26.210 | -210027 aergn12 27.210 | -210028 aerpr03 28.210 | -210029 aerwv01 29.210 | -210030 aerwv02 30.210 | -210031 aerls01 31.210 | -210032 aerls02 32.210 | -210033 aerls03 33.210 | -210034 aerls04 34.210 | -210035 aerls05 35.210 | -210036 aerls06 36.210 | -210037 aerls07 37.210 | -210038 aerls08 38.210 | -210039 aerls09 39.210 | -210040 aerls10 40.210 | -210041 aerls11 41.210 | -210042 aerls12 42.210 | -210043 emdms 43.210 | -210044 aerwv03 44.210 | -210045 aerwv04 45.210 | -210046 aerpr 46.210 | -210047 aersm 47.210 | -210048 aerlg 48.210 | -210049 aodpr 49.210 | -210050 aodsm 50.210 | -210051 aodlg 51.210 | -210052 aerdep 52.210 | -210053 aerlts 53.210 | -210054 aerscc 54.210 | -210055 55.210 | -210056 56.210 | -210057 ocnuc 57.210 | -210058 monot 58.210 | -210059 soapr 59.210 | -210061 co2 61.210 | -210062 ch4 62.210 | -210063 n2o 63.210 | -210064 tcco2 64.210 | -210065 tcch4 65.210 | -210066 tcn2o 66.210 | -210067 co2of 67.210 | -210068 co2nbf 68.210 | -210069 co2apf 69.210 | -210070 ch4f 70.210 | -210071 kch4 71.210 | -210072 pm1 72.210 | -210073 pm2p5 73.210 | -210074 pm10 74.210 | -210080 co2fire 80.210 | -210081 cofire 81.210 | -210082 ch4fire 82.210 | -210083 nmhcfire 83.210 | -210084 h2fire 84.210 | -210085 noxfire 85.210 | -210086 n2ofire 86.210 | -210087 pm2p5fire 87.210 | -210088 tpmfire 88.210 | -210089 tcfire 89.210 | -210090 ocfire 90.210 | -210091 bcfire 91.210 | -210092 cfire 92.210 | -210093 c4ffire 93.210 | -210094 vegfire 94.210 | -210095 ccfire 95.210 | -210096 flfire 96.210 | -210097 bffire 97.210 | -210098 oafire 98.210 | -210099 frpfire 99.210 | -210100 crfire 100.210 | -210101 maxfrpfire 101.210 | -210102 so2fire 102.210 | -210103 ch3ohfire 103.210 | -210104 c2h5ohfire 104.210 | -210105 c3h8fire 105.210 | -210106 c2h4fire 106.210 | -210107 c3h6fire 107.210 | -210108 c5h8fire 108.210 | -210109 terpenesfire 109.210 | -210110 toluenefire 110.210 | -210111 hialkenesfire 111.210 | -210112 hialkanesfire 112.210 | -210113 ch2ofire 113.210 | -210114 c2h4ofire 114.210 | -210115 c3h6ofire 115.210 | -210116 nh3fire 116.210 | -210117 c2h6sfire 117.210 | -210118 c2h6fire 118.210 | -210119 ale 119.210 | -210120 apt 120.210 | -210121 no2 121.210 | -210122 so2 122.210 | -210123 co 123.210 | -210124 hcho 124.210 | -210125 tcno2 125.210 | -210126 tcso2 126.210 | -210127 tcco 127.210 | -210128 tchcho 128.210 | -210129 nox 129.210 | -210130 tcnox 130.210 | -210131 grg1 131.210 | -210132 tcgrg1 132.210 | -210133 grg2 133.210 | -210134 tcgrg2 134.210 | -210135 grg3 135.210 | -210136 tcgrg3 136.210 | -210137 grg4 137.210 | -210138 tcgrg4 138.210 | -210139 grg5 139.210 | -210140 tcgrg5 140.210 | -210141 grg6 141.210 | -210142 tcgrg6 142.210 | -210143 grg7 143.210 | -210144 tcgrg7 144.210 | -210145 grg8 145.210 | -210146 tcgrg8 146.210 | -210147 grg9 147.210 | -210148 tcgrg9 148.210 | -210149 grg10 149.210 | -210150 tcgrg10 150.210 | -210151 sfnox 151.210 | -210152 sfno2 152.210 | -210153 sfso2 153.210 | -210154 sfco2 154.210 | -210155 sfhcho 155.210 | -210156 sfgo3 156.210 | -210157 sfgr1 157.210 | -210158 sfgr2 158.210 | -210159 sfgr3 159.210 | -210160 sfgr4 160.210 | -210161 sfgr5 161.210 | -210162 sfgr6 162.210 | -210163 sfgr7 163.210 | -210164 sfgr8 164.210 | -210165 sfgr9 165.210 | -210166 sfgr10 166.210 | -210181 ra 181.210 | -210182 sf6 182.210 | -210183 tcra 183.210 | -210184 tcsf6 184.210 | -210185 sf6apf 185.210 | -210186 aluvpi 186.210 | -210187 aluvpv 187.210 | -210188 aluvpg 188.210 | -210189 alnipi 189.210 | -210190 alnipv 190.210 | -210191 alnipg 191.210 | -210192 aluvdi 192.210 | -210193 aluvdv 193.210 | -210194 aluvdg 194.210 | -210195 alnidi 195.210 | -210196 alnidv 196.210 | -210197 alnidg 197.210 | -210203 go3 203.210 | -210206 gtco3 206.210 | -210207 aod550 207.210 | -210208 ssaod550 208.210 | -210209 duaod550 209.210 | -210210 omaod550 210.210 | -210211 bcaod550 211.210 | -210212 suaod550 212.210 | -210213 aod469 213.210 | -210214 aod670 214.210 | -210215 aod865 215.210 | -210216 aod1240 216.210 | -210217 aod340 217.210 | -210218 aod355 218.210 | -210219 aod380 219.210 | -210220 aod400 220.210 | -210221 aod440 221.210 | -210222 aod500 222.210 | -210223 aod532 223.210 | -210224 aod645 224.210 | -210225 aod800 225.210 | -210226 aod858 226.210 | -210227 aod1020 227.210 | -210228 aod1064 228.210 | -210229 aod1640 229.210 | -210230 aod2130 230.210 | -210231 c7h8fire 231.210 | -210232 c6h6fire 232.210 | -210233 c8h10fire 233.210 | -210234 c4h8fire 234.210 | -210235 c5h10fire 235.210 | -210236 c6h12fire 236.210 | -210237 c8h16fire 237.210 | -210238 c4h10fire 238.210 | -210239 c5h12fire 239.210 | -210240 c6h14fire 240.210 | -210241 c7h16fire 241.210 | -211 strc 211.128 | -211001 aermr01diff 1.211 | -211002 aermr02diff 2.211 | -211003 aermr03diff 3.211 | -211004 aermr04diff 4.211 | -211005 aermr05diff 5.211 | -211006 aermr06diff 6.211 | -211007 aermr07diff 7.211 | -211008 aermr08diff 8.211 | -211009 aermr09diff 9.211 | -211010 aermr10diff 10.211 | -211011 aermr11diff 11.211 | -211012 aermr12diff 12.211 | -211013 aermr13diff 13.211 | -211014 aermr14diff 14.211 | -211015 aermr15diff 15.211 | -211016 aergn01diff 16.211 | -211017 aergn02diff 17.211 | -211018 aergn03diff 18.211 | -211019 aergn04diff 19.211 | -211020 aergn05diff 20.211 | -211021 aergn06diff 21.211 | -211022 aergn07diff 22.211 | -211023 aergn08diff 23.211 | -211024 aergn09diff 24.211 | -211025 aergn10diff 25.211 | -211026 aergn11diff 26.211 | -211027 aergn12diff 27.211 | -211028 aerpr03diff 28.211 | -211029 aerwv01diff 29.211 | -211030 aerwv02diff 30.211 | -211031 aerls01diff 31.211 | -211032 aerls02diff 32.211 | -211033 aerls03diff 33.211 | -211034 aerls04diff 34.211 | -211035 aerls05diff 35.211 | -211036 aerls06diff 36.211 | -211037 aerls07diff 37.211 | -211038 aerls08diff 38.211 | -211039 aerls09diff 39.211 | -211040 aerls10diff 40.211 | -211041 aerls11diff 41.211 | -211042 aerls12diff 42.211 | -211043 emdmsdiff 43.211 | -211044 aerwv03diff 44.211 | -211045 aerwv04diff 45.211 | -211046 aerprdiff 46.211 | -211047 aersmdiff 47.211 | -211048 aerlgdiff 48.211 | -211049 aodprdiff 49.211 | -211050 aodsmdiff 50.211 | -211051 aodlgdiff 51.211 | -211052 aerdepdiff 52.211 | -211053 aerltsdiff 53.211 | -211054 aersccdiff 54.211 | -211055 55.211 | -211056 56.211 | -211061 co2diff 61.211 | -211062 ch4diff 62.211 | -211063 n2odiff 63.211 | -211064 tcco2diff 64.211 | -211065 tcch4diff 65.211 | -211066 tcn2odiff 66.211 | -211067 co2ofdiff 67.211 | -211068 co2nbfdiff 68.211 | -211069 co2apfdiff 69.211 | -211070 ch4fdiff 70.211 | -211071 kch4diff 71.211 | -211080 co2firediff 80.211 | -211081 cofirediff 81.211 | -211082 ch4firediff 82.211 | -211083 nmhcfirediff 83.211 | -211084 h2firediff 84.211 | -211085 noxfirediff 85.211 | -211086 n2ofirediff 86.211 | -211087 pm2p5firediff 87.211 | -211088 tpmfirediff 88.211 | -211089 tcfirediff 89.211 | -211090 ocfirediff 90.211 | -211091 bcfirediff 91.211 | -211092 cfirediff 92.211 | -211093 c4ffirediff 93.211 | -211094 vegfirediff 94.211 | -211095 ccfirediff 95.211 | -211096 flfirediff 96.211 | -211097 bffirediff 97.211 | -211098 oafirediff 98.211 | -211099 frpfirediff 99.211 | -211100 crfirediff 100.211 | -211101 maxfrpfirediff 101.211 | -211102 so2firediff 102.211 | -211103 ch3ohfirediff 103.211 | -211104 c2h5ohfirediff 104.211 | -211105 c3h8firediff 105.211 | -211106 c2h4firediff 106.211 | -211107 c3h6firediff 107.211 | -211108 c5h8firediff 108.211 | -211109 terpenesfirediff 109.211 | -211110 toluenefirediff 110.211 | -211111 hialkenesfirediff 111.211 | -211112 hialkanesfirediff 112.211 | -211113 ch2ofirediff 113.211 | -211114 c2h4ofirediff 114.211 | -211115 c3h6ofirediff 115.211 | -211116 nh3firediff 116.211 | -211117 c2h6sfirediff 117.211 | -211118 c2h6firediff 118.211 | -211119 alediff 119.211 | -211120 aptdiff 120.211 | -211121 no2diff 121.211 | -211122 so2diff 122.211 | -211123 codiff 123.211 | -211124 hchodiff 124.211 | -211125 tcno2diff 125.211 | -211126 tcso2diff 126.211 | -211127 tccodiff 127.211 | -211128 tchchodiff 128.211 | -211129 noxdiff 129.211 | -211130 tcnoxdiff 130.211 | -211131 grg1diff 131.211 | -211132 tcgrg1diff 132.211 | -211133 grg2diff 133.211 | -211134 tcgrg2diff 134.211 | -211135 grg3diff 135.211 | -211136 tcgrg3diff 136.211 | -211137 grg4diff 137.211 | -211138 tcgrg4diff 138.211 | -211139 grg5diff 139.211 | -211140 tcgrg5diff 140.211 | -211141 grg6diff 141.211 | -211142 tcgrg6diff 142.211 | -211143 grg7diff 143.211 | -211144 tcgrg7diff 144.211 | -211145 grg8diff 145.211 | -211146 tcgrg8diff 146.211 | -211147 grg9diff 147.211 | -211148 tcgrg9diff 148.211 | -211149 grg10diff 149.211 | -211150 tcgrg10diff 150.211 | -211151 sfnoxdiff 151.211 | -211152 sfno2diff 152.211 | -211153 sfso2diff 153.211 | -211154 sfco2diff 154.211 | -211155 sfhchodiff 155.211 | -211156 sfgo3diff 156.211 | -211157 sfgr1diff 157.211 | -211158 sfgr2diff 158.211 | -211159 sfgr3diff 159.211 | -211160 sfgr4diff 160.211 | -211161 sfgr5diff 161.211 | -211162 sfgr6diff 162.211 | -211163 sfgr7diff 163.211 | -211164 sfgr8diff 164.211 | -211165 sfgr9diff 165.211 | -211166 sfgr10diff 166.211 | -211181 radiff 181.211 | -211182 sf6diff 182.211 | -211183 tcradiff 183.211 | -211184 tcsf6diff 184.211 | -211185 sf6apfdiff 185.211 | -211203 go3diff 203.211 | -211206 gtco3diff 206.211 | -211207 aod550diff 207.211 | -211208 ssaod550diff 208.211 | -211209 duaod550diff 209.211 | -211210 omaod550diff 210.211 | -211211 bcaod550diff 211.211 | -211212 suaod550diff 212.211 | -211213 aod469diff 213.211 | -211214 aod670diff 214.211 | -211215 aod865diff 215.211 | -211216 aod1240diff 216.211 | -212 tisr 212.128 | -212001 1.212 | -212002 2.212 | -212003 3.212 | -212004 4.212 | -212005 5.212 | -212006 6.212 | -212007 7.212 | -212008 8.212 | -212009 9.212 | -212010 10.212 | -212011 11.212 | -212012 12.212 | -212013 13.212 | -212014 14.212 | -212015 15.212 | -212016 16.212 | -212017 17.212 | -212018 18.212 | -212019 19.212 | -212020 20.212 | -212021 21.212 | -212022 22.212 | -212023 23.212 | -212024 24.212 | -212025 25.212 | -212026 26.212 | -212027 27.212 | -212028 28.212 | -212029 29.212 | -212030 30.212 | -212031 31.212 | -212032 32.212 | -212033 33.212 | -212034 34.212 | -212035 35.212 | -212036 36.212 | -212037 37.212 | -212038 38.212 | -212039 39.212 | -212040 40.212 | -212041 41.212 | -212042 42.212 | -212043 43.212 | -212044 44.212 | -212045 45.212 | -212046 46.212 | -212047 47.212 | -212048 48.212 | -212049 49.212 | -212050 50.212 | -212051 51.212 | -212052 52.212 | -212053 53.212 | -212054 54.212 | -212055 55.212 | -212056 56.212 | -212057 57.212 | -212058 58.212 | -212059 59.212 | -212060 60.212 | -212061 61.212 | -212062 62.212 | -212063 63.212 | -212064 64.212 | -212065 65.212 | -212066 66.212 | -212067 67.212 | -212068 68.212 | -212069 69.212 | -212070 70.212 | -212071 71.212 | -212072 72.212 | -212073 73.212 | -212074 74.212 | -212075 75.212 | -212076 76.212 | -212077 77.212 | -212078 78.212 | -212079 79.212 | -212080 80.212 | -212081 81.212 | -212082 82.212 | -212083 83.212 | -212084 84.212 | -212085 85.212 | -212086 86.212 | -212087 87.212 | -212088 88.212 | -212089 89.212 | -212090 90.212 | -212091 91.212 | -212092 92.212 | -212093 93.212 | -212094 94.212 | -212095 95.212 | -212096 96.212 | -212097 97.212 | -212098 98.212 | -212099 99.212 | -212100 100.212 | -212101 101.212 | -212102 102.212 | -212103 103.212 | -212104 104.212 | -212105 105.212 | -212106 106.212 | -212107 107.212 | -212108 108.212 | -212109 109.212 | -212110 110.212 | -212111 111.212 | -212112 112.212 | -212113 113.212 | -212114 114.212 | -212115 115.212 | -212116 116.212 | -212117 117.212 | -212118 118.212 | -212119 119.212 | -212120 120.212 | -212121 121.212 | -212122 122.212 | -212123 123.212 | -212124 124.212 | -212125 125.212 | -212126 126.212 | -212127 127.212 | -212128 128.212 | -212129 129.212 | -212130 130.212 | -212131 131.212 | -212132 132.212 | -212133 133.212 | -212134 134.212 | -212135 135.212 | -212136 136.212 | -212137 137.212 | -212138 138.212 | -212139 139.212 | -212140 140.212 | -212141 141.212 | -212142 142.212 | -212143 143.212 | -212144 144.212 | -212145 145.212 | -212146 146.212 | -212147 147.212 | -212148 148.212 | -212149 149.212 | -212150 150.212 | -212151 151.212 | -212152 152.212 | -212153 153.212 | -212154 154.212 | -212155 155.212 | -212156 156.212 | -212157 157.212 | -212158 158.212 | -212159 159.212 | -212160 160.212 | -212161 161.212 | -212162 162.212 | -212163 163.212 | -212164 164.212 | -212165 165.212 | -212166 166.212 | -212167 167.212 | -212168 168.212 | -212169 169.212 | -212170 170.212 | -212171 171.212 | -212172 172.212 | -212173 173.212 | -212174 174.212 | -212175 175.212 | -212176 176.212 | -212177 177.212 | -212178 178.212 | -212179 179.212 | -212180 180.212 | -212181 181.212 | -212182 182.212 | -212183 183.212 | -212184 184.212 | -212185 185.212 | -212186 186.212 | -212187 187.212 | -212188 188.212 | -212189 189.212 | -212190 190.212 | -212191 191.212 | -212192 192.212 | -212193 193.212 | -212194 194.212 | -212195 195.212 | -212196 196.212 | -212197 197.212 | -212198 198.212 | -212199 199.212 | -212200 200.212 | -212201 201.212 | -212202 202.212 | -212203 203.212 | -212204 204.212 | -212205 205.212 | -212206 206.212 | -212207 207.212 | -212208 208.212 | -212209 209.212 | -212210 210.212 | -212211 211.212 | -212212 212.212 | -212213 213.212 | -212214 214.212 | -212215 215.212 | -212216 216.212 | -212217 217.212 | -212218 218.212 | -212219 219.212 | -212220 220.212 | -212221 221.212 | -212222 222.212 | -212223 223.212 | -212224 224.212 | -212225 225.212 | -212226 226.212 | -212227 227.212 | -212228 228.212 | -212229 229.212 | -212230 230.212 | -212231 231.212 | -212232 232.212 | -212233 233.212 | -212234 234.212 | -212235 235.212 | -212236 236.212 | -212237 237.212 | -212238 238.212 | -212239 239.212 | -212240 240.212 | -212241 241.212 | -212242 242.212 | -212243 243.212 | -212244 244.212 | -212245 245.212 | -212246 246.212 | -212247 247.212 | -212248 248.212 | -212249 249.212 | -212250 250.212 | -212251 251.212 | -212252 252.212 | -212253 253.212 | -212254 254.212 | -212255 255.212 | -213 vimd 213.128 | -213001 sppt1 1.213 | -213002 sppt2 2.213 | -213003 sppt3 3.213 | -213004 sppt4 4.213 | -213005 sppt5 5.213 | -214 dhr 214.128 | -214001 uvcossza 1.214 | -214002 uvbed 2.214 | -214003 uvbedcs 3.214 | -214004 uvsflxt280285 4.214 | -214005 uvsflxt285290 5.214 | -214006 uvsflxt290295 6.214 | -214007 uvsflxt295300 7.214 | -214008 uvsflxt300305 8.214 | -214009 uvsflxt305310 9.214 | -214010 uvsflxt310315 10.214 | -214011 uvsflxt315320 11.214 | -214012 uvsflxt320325 12.214 | -214013 uvsflxt325330 13.214 | -214014 uvsflxt330335 14.214 | -214015 uvsflxt335340 15.214 | -214016 uvsflxt340345 16.214 | -214017 uvsflxt345350 17.214 | -214018 uvsflxt350355 18.214 | -214019 uvsflxt355360 19.214 | -214020 uvsflxt360365 20.214 | -214021 uvsflxt365370 21.214 | -214022 uvsflxt370375 22.214 | -214023 uvsflxt375380 23.214 | -214024 uvsflxt380385 24.214 | -214025 uvsflxt385390 25.214 | -214026 uvsflxt390395 26.214 | -214027 uvsflxt395400 27.214 | -214028 uvsflxcs280285 28.214 | -214029 uvsflxcs285290 29.214 | -214030 uvsflxcs290295 30.214 | -214031 uvsflxcs295300 31.214 | -214032 uvsflxcs300305 32.214 | -214033 uvsflxcs305310 33.214 | -214034 uvsflxcs310315 34.214 | -214035 uvsflxcs315320 35.214 | -214036 uvsflxcs320325 36.214 | -214037 uvsflxcs325330 37.214 | -214038 uvsflxcs330335 38.214 | -214039 uvsflxcs335340 39.214 | -214040 uvsflxcs340345 40.214 | -214041 uvsflxcs345350 41.214 | -214042 uvsflxcs350355 42.214 | -214043 uvsflxcs355360 43.214 | -214044 uvsflxcs360365 44.214 | -214045 uvsflxcs365370 45.214 | -214046 uvsflxcs370375 46.214 | -214047 uvsflxcs375380 47.214 | -214048 uvsflxcs380385 48.214 | -214049 uvsflxcs385390 49.214 | -214050 uvsflxcs390395 50.214 | -214051 uvsflxcs395400 51.214 | -214052 aot340 52.214 | -215 dhvd 215.128 | -215001 aersrcsss 1.215 | -215002 aersrcssm 2.215 | -215003 aersrcssl 3.215 | -215004 aerddpsss 4.215 | -215005 aerddpssm 5.215 | -215006 aerddpssl 6.215 | -215007 aersdmsss 7.215 | -215008 aersdmssm 8.215 | -215009 aersdmssl 9.215 | -215010 aerwdlssss 10.215 | -215011 aerwdlsssm 11.215 | -215012 aerwdlsssl 12.215 | -215013 aerwdccsss 13.215 | -215014 aerwdccssm 14.215 | -215015 aerwdccssl 15.215 | -215016 aerngtsss 16.215 | -215017 aerngtssm 17.215 | -215018 aerngtssl 18.215 | -215019 aermsssss 19.215 | -215020 aermssssm 20.215 | -215021 aermssssl 21.215 | -215022 aerodsss 22.215 | -215023 aerodssm 23.215 | -215024 aerodssl 24.215 | -215025 aersrcdus 25.215 | -215026 aersrcdum 26.215 | -215027 aersrcdul 27.215 | -215028 aerddpdus 28.215 | -215029 aerddpdum 29.215 | -215030 aerddpdul 30.215 | -215031 aersdmdus 31.215 | -215032 aersdmdum 32.215 | -215033 aersdmdul 33.215 | -215034 aerwdlsdus 34.215 | -215035 aerwdlsdum 35.215 | -215036 aerwdlsdul 36.215 | -215037 aerwdccdus 37.215 | -215038 aerwdccdum 38.215 | -215039 aerwdccdul 39.215 | -215040 aerngtdus 40.215 | -215041 aerngtdum 41.215 | -215042 aerngtdul 42.215 | -215043 aermssdus 43.215 | -215044 aermssdum 44.215 | -215045 aermssdul 45.215 | -215046 aeroddus 46.215 | -215047 aeroddum 47.215 | -215048 aeroddul 48.215 | -215049 aersrcomhphob 49.215 | -215050 aersrcomhphil 50.215 | -215051 aerddpomhphob 51.215 | -215052 aerddpomhphil 52.215 | -215053 aersdmomhphob 53.215 | -215054 aersdmomhphil 54.215 | -215055 aerwdlsomhphob 55.215 | -215056 aerwdlsomhphil 56.215 | -215057 aerwdccomhphob 57.215 | -215058 aerwdccomhphil 58.215 | -215059 aerngtomhphob 59.215 | -215060 aerngtomhphil 60.215 | -215061 aermssomhphob 61.215 | -215062 aermssomhphil 62.215 | -215063 aerodomhphob 63.215 | -215064 aerodomhphil 64.215 | -215065 aersrcbchphob 65.215 | -215066 aersrcbchphil 66.215 | -215067 aerddpbchphob 67.215 | -215068 aerddpbchphil 68.215 | -215069 aersdmbchphob 69.215 | -215070 aersdmbchphil 70.215 | -215071 aerwdlsbchphob 71.215 | -215072 aerwdlsbchphil 72.215 | -215073 aerwdccbchphob 73.215 | -215074 aerwdccbchphil 74.215 | -215075 aerngtbchphob 75.215 | -215076 aerngtbchphil 76.215 | -215077 aermssbchphob 77.215 | -215078 aermssbchphil 78.215 | -215079 aerodbchphob 79.215 | -215080 aerodbchphil 80.215 | -215081 aersrcsu 81.215 | -215082 aerddpsu 82.215 | -215083 aersdmsu 83.215 | -215084 aerwdlssu 84.215 | -215085 aerwdccsu 85.215 | -215086 aerngtsu 86.215 | -215087 aermsssu 87.215 | -215088 aerodsu 88.215 | -215089 accaod550 89.215 | -215090 aluvpsn 90.215 | -215091 aerdep10si 91.215 | -215092 aerdep10fg 92.215 | -215093 paod532 93.215 | -215094 pnaod532 94.215 | -215095 paaod532 95.215 | -215096 aodabs340 96.215 | -215097 aodabs355 97.215 | -215098 aodabs380 98.215 | -215099 aodabs400 99.215 | -215100 aodabs440 100.215 | -215101 aodabs469 101.215 | -215102 aodabs500 102.215 | -215103 aodabs532 103.215 | -215104 aodabs550 104.215 | -215105 aodabs645 105.215 | -215106 aodabs670 106.215 | -215107 aodabs800 107.215 | -215108 aodabs858 108.215 | -215109 aodabs865 109.215 | -215110 aodabs1020 110.215 | -215111 aodabs1064 111.215 | -215112 aodabs1240 112.215 | -215113 aodabs1640 113.215 | -215114 aodfm340 114.215 | -215115 aodfm355 115.215 | -215116 aodfm380 116.215 | -215117 aodfm400 117.215 | -215118 aodfm440 118.215 | -215119 aodfm469 119.215 | -215120 aodfm500 120.215 | -215121 aodfm532 121.215 | -215122 aodfm550 122.215 | -215123 aodfm645 123.215 | -215124 aodfm670 124.215 | -215125 aodfm800 125.215 | -215126 aodfm858 126.215 | -215127 aodfm865 127.215 | -215128 aodfm1020 128.215 | -215129 aodfm1064 129.215 | -215130 aodfm1240 130.215 | -215131 aodfm1640 131.215 | -215132 ssa340 132.215 | -215133 ssa355 133.215 | -215134 ssa380 134.215 | -215135 ssa400 135.215 | -215136 ssa440 136.215 | -215137 ssa469 137.215 | -215138 ssa500 138.215 | -215139 ssa532 139.215 | -215140 ssa550 140.215 | -215141 ssa645 141.215 | -215142 ssa670 142.215 | -215143 ssa800 143.215 | -215144 ssa858 144.215 | -215145 ssa865 145.215 | -215146 ssa1020 146.215 | -215147 ssa1064 147.215 | -215148 ssa1240 148.215 | -215149 ssa1640 149.215 | -215150 asymmetry340 150.215 | -215151 asymmetry355 151.215 | -215152 asymmetry380 152.215 | -215153 asymmetry400 153.215 | -215154 asymmetry440 154.215 | -215155 asymmetry469 155.215 | -215156 asymmetry500 156.215 | -215157 asymmetry532 157.215 | -215158 asymmetry550 158.215 | -215159 asymmetry645 159.215 | -215160 asymmetry670 160.215 | -215161 asymmetry800 161.215 | -215162 asymmetry858 162.215 | -215163 asymmetry865 163.215 | -215164 asymmetry1020 164.215 | -215165 asymmetry1064 165.215 | -215166 asymmetry1240 166.215 | -215167 asymmetry1640 167.215 | -215168 aersrcso2 168.215 | -215169 aerddpso2 169.215 | -215170 aersdmso2 170.215 | -215171 aerwdlsso2 171.215 | -215172 aerwdccso2 172.215 | -215173 aerngtso2 173.215 | -215174 aermssso2 174.215 | -215175 aerodso2 175.215 | -215176 aodabs2130 176.215 | -215177 aodfm2130 177.215 | -215178 ssa2130 178.215 | -215179 asymmetry2130 179.215 | -216 dhcc 216.128 | -216001 1.216 | -216002 2.216 | -216003 3.216 | -216004 4.216 | -216005 5.216 | -216006 6.216 | -216007 7.216 | -216008 8.216 | -216009 9.216 | -216010 10.216 | -216011 11.216 | -216012 12.216 | -216013 13.216 | -216014 14.216 | -216015 15.216 | -216016 16.216 | -216017 17.216 | -216018 18.216 | -216019 19.216 | -216020 20.216 | -216021 21.216 | -216022 22.216 | -216023 23.216 | -216024 24.216 | -216025 25.216 | -216026 26.216 | -216027 27.216 | -216028 28.216 | -216029 29.216 | -216030 30.216 | -216031 31.216 | -216032 32.216 | -216033 33.216 | -216034 34.216 | -216035 35.216 | -216036 36.216 | -216037 37.216 | -216038 38.216 | -216039 39.216 | -216040 40.216 | -216041 41.216 | -216042 42.216 | -216043 43.216 | -216044 44.216 | -216045 45.216 | -216046 46.216 | -216047 47.216 | -216048 48.216 | -216049 49.216 | -216050 50.216 | -216051 51.216 | -216052 52.216 | -216053 53.216 | -216054 54.216 | -216055 55.216 | -216056 56.216 | -216057 57.216 | -216058 58.216 | -216059 59.216 | -216060 60.216 | -216061 61.216 | -216062 62.216 | -216063 63.216 | -216064 64.216 | -216065 65.216 | -216066 66.216 | -216067 67.216 | -216068 68.216 | -216069 69.216 | -216070 70.216 | -216071 71.216 | -216072 72.216 | -216073 73.216 | -216074 74.216 | -216075 75.216 | -216076 76.216 | -216077 77.216 | -216078 78.216 | -216079 79.216 | -216080 80.216 | -216081 81.216 | -216082 82.216 | -216083 83.216 | -216084 84.216 | -216085 85.216 | -216086 86.216 | -216087 87.216 | -216088 88.216 | -216089 89.216 | -216090 90.216 | -216091 91.216 | -216092 92.216 | -216093 93.216 | -216094 94.216 | -216095 95.216 | -216096 96.216 | -216097 97.216 | -216098 98.216 | -216099 99.216 | -216100 100.216 | -216101 101.216 | -216102 102.216 | -216103 103.216 | -216104 104.216 | -216105 105.216 | -216106 106.216 | -216107 107.216 | -216108 108.216 | -216109 109.216 | -216110 110.216 | -216111 111.216 | -216112 112.216 | -216113 113.216 | -216114 114.216 | -216115 115.216 | -216116 116.216 | -216117 117.216 | -216118 118.216 | -216119 119.216 | -216120 120.216 | -216121 121.216 | -216122 122.216 | -216123 123.216 | -216124 124.216 | -216125 125.216 | -216126 126.216 | -216127 127.216 | -216128 128.216 | -216129 129.216 | -216130 130.216 | -216131 131.216 | -216132 132.216 | -216133 133.216 | -216134 134.216 | -216135 135.216 | -216136 136.216 | -216137 137.216 | -216138 138.216 | -216139 139.216 | -216140 140.216 | -216141 141.216 | -216142 142.216 | -216143 143.216 | -216144 144.216 | -216145 145.216 | -216146 146.216 | -216147 147.216 | -216148 148.216 | -216149 149.216 | -216150 150.216 | -216151 151.216 | -216152 152.216 | -216153 153.216 | -216154 154.216 | -216155 155.216 | -216156 156.216 | -216157 157.216 | -216158 158.216 | -216159 159.216 | -216160 160.216 | -216161 161.216 | -216162 162.216 | -216163 163.216 | -216164 164.216 | -216165 165.216 | -216166 166.216 | -216167 167.216 | -216168 168.216 | -216169 169.216 | -216170 170.216 | -216171 171.216 | -216172 172.216 | -216173 173.216 | -216174 174.216 | -216175 175.216 | -216176 176.216 | -216177 177.216 | -216178 178.216 | -216179 179.216 | -216180 180.216 | -216181 181.216 | -216182 182.216 | -216183 183.216 | -216184 184.216 | -216185 185.216 | -216186 186.216 | -216187 187.216 | -216188 188.216 | -216189 189.216 | -216190 190.216 | -216191 191.216 | -216192 192.216 | -216193 193.216 | -216194 194.216 | -216195 195.216 | -216196 196.216 | -216197 197.216 | -216198 198.216 | -216199 199.216 | -216200 200.216 | -216201 201.216 | -216202 202.216 | -216203 203.216 | -216204 204.216 | -216205 205.216 | -216206 206.216 | -216207 207.216 | -216208 208.216 | -216209 209.216 | -216210 210.216 | -216211 211.216 | -216212 212.216 | -216213 213.216 | -216214 214.216 | -216215 215.216 | -216216 216.216 | -216217 217.216 | -216218 218.216 | -216219 219.216 | -216220 220.216 | -216221 221.216 | -216222 222.216 | -216223 223.216 | -216224 224.216 | -216225 225.216 | -216226 226.216 | -216227 227.216 | -216228 228.216 | -216229 229.216 | -216230 230.216 | -216231 231.216 | -216232 232.216 | -216233 233.216 | -216234 234.216 | -216235 235.216 | -216236 236.216 | -216237 237.216 | -216238 238.216 | -216239 239.216 | -216240 240.216 | -216241 241.216 | -216242 242.216 | -216243 243.216 | -216244 244.216 | -216245 245.216 | -216246 246.216 | -216247 247.216 | -216248 248.216 | -216249 249.216 | -216250 250.216 | -216251 251.216 | -216252 252.216 | -216253 253.216 | -216254 254.216 | -216255 255.216 | -217 dhlc 217.128 | -218 vdzw 218.128 | -219 vdmw 219.128 | -22 ucln 22.128 | -220 ewgd 220.128 | -220228 tpoc 228.220 | -221 nsgd 221.128 | -222 ctzw 222.128 222.130 | -223 ctmw 223.128 223.130 | -224 vdh 224.128 | -225 htcc 225.128 | -226 htlc 226.128 | -227 crnh 227.128 227.130 | -228 tp 228.128 228.160 228.170 228.190 | -228001 cin 1.228 | -228002 orog 2.228 7.1 7.2 7.3 | -228003 zust 3.228 | -228004 mean2t 4.228 | -228005 mean10ws 5.228 | -228006 meantcc 6.228 | -228007 dl 7.228 | -228008 lmlt 8.228 | -228009 lmld 9.228 | -228010 lblt 10.228 | -228011 ltlt 11.228 | -228012 lshf 12.228 | -228013 lict 13.228 | -228014 licd 14.228 | -228015 dndzn 15.228 | -228016 dndza 16.228 | -228017 dctb 17.228 | -228018 tplb 18.228 | -228019 tplt 19.228 | -228021 fdir 21.228 | -228022 cdir 22.228 | -228023 cbh 23.228 | -228024 deg0l 24.228 | -228025 hvis 25.228 | -228026 mx2t3 26.228 | -228027 mn2t3 27.228 | -228028 10fg3 28.228 | -228039 sm 39.228 86.1 86.2 86.3 | -228040 swi1 40.228 | -228041 swi2 41.228 | -228042 swi3 42.228 | -228043 swi4 43.228 | -228080 aco2nee 80.228 | -228081 aco2gpp 81.228 | -228082 aco2rec 82.228 | -228083 fco2nee 83.228 | -228084 fco2gpp 84.228 | -228085 fco2rec 85.228 | -228089 tcrw 89.228 | -228090 tcsw 90.228 | -228091 ccf 91.228 | -228092 stf 92.228 | -228093 swv 93.228 | -228094 ist 94.228 | -228129 ssrdc 129.228 | -228130 strdc 130.228 | -228131 u10n 131.228 | -228132 v10n 132.228 | -228134 vtnowd 134.228 | -228136 utnowd 136.228 | -228139 st 85.1 85.2 85.3 139.228 | -228141 sd 66.1 66.2 66.3 141.228 | -228144 sf 65.1 65.2 65.3 144.228 | -228164 tcc 71.1 71.2 71.3 164.228 | -228170 cap 170.228 | -228171 wilt 171.228 | -228228 tp 61.1 61.2 61.3 228.228 | -228242 fdif 242.228 | -228243 cdif 243.228 | -228244 aldr 244.228 | -228245 aldf 245.228 | -228246 100u 246.228 | -228247 100v 247.228 | -228249 100si 249.228 | -228250 irrfr 250.228 | -228251 pev 251.228 | -228252 irr 252.228 | -228253 ascat_sm_cdfa 253.228 | -228254 ascat_sm_cdfb 254.228 | -228255 tcclw | -228256 tccsw | -229 iews 229.128 229.160 | -23 ucdv 23.128 | -230 inss 230.128 230.160 | -230008 srovar 8.230 | -230009 ssrovar 9.230 | -230044 esvar 44.230 | -230045 smltvar 45.230 | -230046 sdurvar 46.230 | -230057 uvbvar 57.230 | -230058 parvar 58.230 | -230142 lspvar 142.230 | -230143 cpvar 143.230 | -230144 sfvar 144.230 | -230145 bldvar 145.230 | -230146 sshfvar 146.230 | -230147 slhfvar 147.230 | -230169 ssrdvar 169.230 | -230174 alvar 174.230 | -230175 strdvar 175.230 | -230176 ssrvar 176.230 | -230177 strvar 177.230 | -230178 tsrvar 178.230 | -230179 ttrvar 179.230 | -230180 ewssvar 180.230 | -230181 nsssvar 181.230 | -230182 evar 182.230 | -230189 sundvar 189.230 | -230195 lgwsvar 195.230 | -230196 mgwsvar 196.230 | -230197 gwdvar 197.230 | -230198 srcvar 198.230 | -230205 rovar 205.230 | -230208 tsrcvar 208.230 | -230209 ttrcvar 209.230 | -230210 ssrcvar 210.230 | -230211 strcvar 211.230 | -230212 tisrvar 212.230 | -230228 tpvar 228.230 | -231 ishf 231.128 | -232 ie 232.128 232.160 | -233 asq 233.128 233.160 | -234 lsrh 234.128 234.160 | -234139 sts 139.234 | -234151 msls 151.234 | -234167 2ts 167.234 | -234228 tps 228.234 | -235 skt 235.128 235.160 | -236 stl4 236.128 236.160 | -237 swl4 237.128 237.160 | -238 tsn 238.128 238.160 | -239 csf 78.1 78.2 78.3 239.128 | -24 24.128 | -240 lsf 79.1 79.2 79.3 240.128 | -241 acf 241.128 | -242 alw 242.128 | -243 fal 243.128 | -244 fsr 244.128 244.160 | -245 flsr 245.128 245.160 | -246 clwc 246.128 | -247 ciwc 247.128 | -248 cc 248.128 | -249 aiw 249.128 | -25 25.128 | -250 ice 250.128 | -251 atte 251.128 | -252 athe 252.128 | -253 atze 253.128 | -254 atmw 254.128 | -255 255.128 255.130 255.132 255.160 255.170 255.180 255.190 | -26 cl 26.128 | -260002 lhtfl | -260003 shtfl | -260004 heatx | -260005 wcf | -260006 mindpd | -260007 snohf | -260008 vapp | -260009 ncpcp | -260010 srweq | -260011 snoc | -260012 snol | -260013 snoag | -260014 absh | -260015 ptype | -260016 iliqw | -260017 tcond | -260018 clwmr | -260019 icmr | -260020 rwmr | -260021 snmr | -260022 mconv | -260023 maxrh | -260024 maxah | -260025 asnow | -260026 pwcat | -260027 hail | -260028 grle | -260029 crain | -260030 cfrzr | -260031 cicep | -260032 csnow | -260033 cprat | -260034 mconv | -260035 cpofp | -260036 pevap | -260037 pevpr | -260038 snowc | -260039 frain | -260040 rime | -260041 tcolr | -260042 tcols | -260043 lswp | -260044 cwp | -260045 twatp | -260046 tsnowp | -260047 tcwat | -260048 tprate | -260049 tsrwe | -260050 lsprate | -260051 csrwe | -260052 lssrwe | -260053 tsrate | -260054 csrate | -260055 lssrate | -260056 sdwe | -260057 tciwv | -260058 rprate | -260059 sprate | -260060 fprate | -260061 iprate | -260062 uflx | -260063 vflx | -260064 maxgust | -260065 gust | -260066 ugust | -260067 vgust | -260068 vwsh | -260069 mflx | -260070 ustm | -260071 vstm | -260072 cd | -260073 fricv | -260074 prmsl | -260075 dist | -260076 alts | -260077 thick | -260078 presalt | -260079 denalt | -260080 5wavh | -260081 u-gwd | -260082 v-gwd | -260083 hpbl | -260084 5wava | -260085 sdsgso | -260086 nswrt | -260087 dswrf | -260088 uswrf | -260089 nswrf | -260090 photar | -260091 nswrfcs | -260092 dwuvr | -260093 uviucs | -260094 uvi | -260095 nlwrs | -260096 nlwrt | -260097 dlwrf | -260098 ulwrf | -260099 nlwrf | -260100 nlwrcs | -260101 cice | -260102 cwat 76.1 76.2 76.3 | -260103 cdca | -260104 cdct | -260105 tmaxt | -260106 thunc | -260107 cdcb | -260108 cdct | -260109 ceil | -260110 cdlyr | -260111 cwork | -260112 cuefi | -260113 tcond | -260114 tcolw | -260115 tcoli | -260116 tcolc | -260117 fice | -260118 cdcimr | -260119 suns | -260121 kx 121.228 | -260122 kox | -260123 totalx 123.228 | -260124 sx | -260125 hlcy | -260126 ehlx | -260127 lftx | -260128 4lftx | -260129 aerot | -260130 tozne | -260131 o3mr | -260132 tcioz | -260133 bswid | -260134 bref | -260135 brvel | -260136 veril | -260137 lmaxbr | -260138 prec | -260139 acces | -260140 aciod | -260141 acradp | -260142 gdces | -260143 gdiod | -260144 gdradp | -260145 tiaccp | -260146 tiacip | -260147 tiacrp | -260148 volash | -260149 icit | -260150 icib | -260151 ici | -260152 turbt | -260153 turbb | -260154 turb | -260155 tke | -260156 pblreg | -260157 conti | -260158 contet | -260159 contt | -260160 contb | -260161 mxsalb | -260162 snfalb | -260165 cat | -260167 var190m0 | -260168 tsec | -260169 ffldg | -260170 ffldro | -260171 rssc | -260172 esct | -260173 swepon | -260174 bgrun | -260175 ssrun | -260176 cppop | -260177 pposp | -260178 pop | -260179 land | -260180 veg | -260181 watr | -260182 evapt | -260183 mterh | -260184 landu | -260185 soilw | -260186 gflux | -260187 mstav | -260188 sfexc | -260189 cnwat | -260190 bmixl | -260191 ccond | -260192 rsmin | -260193 rcs | -260194 rct | -260195 rcsol | -260196 rcq | -260197 cisoilw | -260198 hflux | -260199 vsw | -260200 vwiltm | -260201 uplst | -260202 uplsm | -260203 lowlsm | -260204 botlst | -260205 soill | -260206 rlyrs | -260207 smref | -260208 smdry | -260209 poros | -260210 liqvsm | -260211 voltso | -260212 transo | -260213 voldec | -260214 direc | -260215 soilp | -260216 vsosm | -260217 satosm | -260218 estp | -260219 irrate | -260220 ctoph | -260221 ctophqi | -260222 estu | -260223 estv | -260224 npixu | -260225 solza | -260226 raza | -260227 rfl06 | -260228 rfl08 | -260229 rfl16 | -260230 rfl39 | -260231 atmdiv | -260232 wvdir | -260233 dirpw | -260234 perpw | -260235 persw | -260236 dirc | -260237 spc | -260238 icec | -260239 ist | -260240 dslm | -260241 tsec | -260243 ttrad | -260244 rev | -260245 lrghr | -260246 cnvhr | -260247 thflx | -260248 ttdia | -260249 ttphy | -260250 tsd1d | -260251 shahr | -260252 vdfhr | -260253 thz0 | -260254 tchp | -260261 minrh | -260269 tipd | -260270 ncip | -260271 snot | -260272 tclsw | -260273 tcolm | -260274 emnp | -260275 sbsno | -260276 cnvmr | -260277 shamr | -260278 vdfmr | -260279 condp | -260280 lrgmr | -260281 qz0 | -260282 qmax | -260283 qmin | -260284 arain | -260285 snowt | -260286 apcpn | -260287 acpcpn | -260288 frzr | -260295 lauv | -260296 louv | -260297 lavv | -260298 lovv | -260299 lapp | -260300 lopp | -260301 vedh | -260302 covmz | -260303 covtz | -260304 covtm | -260305 vdfua | -260306 vdfva | -260307 gwdu | -260308 gwdv | -260309 cnvu | -260310 cnvv | -260311 wtend | -260312 omgalf | -260313 cngwdu | -260314 cngwdv | -260315 lmv | -260316 pvmww | -260317 mslet | -260323 mslma | -260324 tslsa | -260325 plpl | -260326 lpsx | -260327 lpsy | -260328 hgtx | -260329 hgty | -260330 layth | -260331 nlgsp | -260332 cnvumf | -260333 cnvdmf | -260334 cnvdemf | -260335 lmh | -260336 hgtn | -260337 presn | -260340 duvb | -260341 cduvb | -260342 csdsf | -260343 swhr | -260344 csusf | -260345 cfnsf | -260346 vbdsf | -260347 vddsf | -260348 nbdsf | -260349 nddsf | -260350 dtrf | -260351 utrf | -260354 lwhr | -260355 csulf | -260356 csdlf | -260357 cfnlf | -260366 mflux | -260369 ri | -260370 cwdi | -260372 uphl | -260373 lai | -260374 pmtc | -260375 pmtf | -260376 lpmtf | -260377 lipmf | -260379 ozcon | -260380 ozcat | -260381 vdfoz | -260382 poz | -260383 toz | -260384 pozt | -260385 pozo | -260386 refzr | -260387 refzi | -260388 refzc | -260389 refd | -260390 refc | -260391 ltng | -260394 srcono | -260395 mrcono | -260396 hrcono | -260397 torprob | -260398 hailprob | -260399 windprob | -260400 storprob | -260401 shailpro | -260402 swindpro | -260403 tstmc | -260404 mixly | -260405 flght | -260406 cicel | -260407 civis | -260408 ciflt | -260409 lavni | -260410 havni | -260411 sbsalb | -260412 swsalb | -260413 nbsalb | -260414 nwsalb | -260415 prsvr | -260416 prsigsvr | -260417 sipd | -260418 epsr | -260419 tpfi | -260420 vaftd | -260421 nlat | -260422 elon | -260424 mlyno | -260425 nlatn | -260426 elonn | -260429 cpozp | -260431 ppffg | -260432 cwr | -260439 vgtyp | -260442 wilt | -260447 rdrip | -260448 icwat | -260449 akhs | -260450 akms | -260451 vegt | -260452 sstor | -260453 lsoil | -260454 ewatr | -260455 gwrec | -260456 qrec | -260457 sfcrh | -260458 ndvi | -260459 landn | -260460 amixl | -260461 wvinc | -260462 wcinc | -260463 wvconv | -260464 wcconv | -260465 wvuflx | -260466 wvvflx | -260467 wcuflx | -260468 wcvflx | -260469 acond | -260470 evcw | -260471 trans | -260474 sltyp | -260478 evbs | -260479 lspa | -260480 baret | -260481 avsft | -260482 radt | -260483 fldcp | -260484 usct | -260485 vsct | -260486 wstp | -260487 omlu | -260488 omlv | -260489 ubaro | -260490 vbaro | -260491 surge | -260492 etsrg | -260493 elevhtml | -260494 sshg | -260495 p2omlt | -260496 aohflx | -260497 ashfl | -260498 sstt | -260499 ssst | -260500 keng | -260501 sltfl | -260502 wtmpc | -260503 salin | -260504 bkeng | -260505 dbss | -260506 intfd | -260507 ohc | -260508 imgd | -260509 al | -260510 clbt | -260511 csbt | -27 cvl 27.128 | -28 cvh 28.128 | -29 tvl 29.128 | -3 pt 3.128 13.1 13.2 13.3 | -30 tvh 30.128 | -300001 pres 1.254 | -300002 psnm 2.254 | -300003 tsps 3.254 | -300006 geop 6.254 | -300007 zgeo 7.254 | -300008 gzge 8.254 | -300011 temp 11.254 | -300012 vtmp 12.254 | -300013 ptmp 13.254 | -300014 psat 14.254 | -300015 mxtp 15.254 | -300016 mntp 16.254 | -300017 tpor 17.254 | -300018 dptd 18.254 | -300019 lpsr 19.254 | -300021 rds1 21.254 | -300022 rds2 22.254 | -300023 rds3 23.254 | -300025 tpan 25.254 | -300026 psan 26.254 | -300027 zgan 27.254 | -300028 wvs1 28.254 | -300029 wvs2 29.254 | -300030 wvs3 30.254 | -300031 wind 31.254 | -300032 wins 32.254 | -300033 uvel 33.254 | -300034 vvel 34.254 | -300035 fcor 35.254 | -300036 potv 36.254 | -300038 sgvv 38.254 | -300039 omeg 39.254 | -300040 omg2 40.254 | -300041 abvo 41.254 | -300042 abdv 42.254 | -300043 vort 43.254 | -300044 divg 44.254 | -300045 vucs 45.254 | -300046 vvcs 46.254 | -300047 dirc 47.254 | -300048 spdc 48.254 | -300049 ucpc 49.254 | -300050 vcpc 50.254 | -300051 umes 51.254 | -300052 umrl 52.254 | -300053 hmxr 53.254 | -300054 agpl 54.254 | -300055 vapp 55.254 | -300056 sadf 56.254 | -300057 evap 57.254 | -300059 prcr 59.254 | -300060 thpb 60.254 | -300061 prec 61.254 | -300062 prge 62.254 | -300063 prcv 63.254 | -300064 neve 64.254 | -300065 wenv 65.254 | -300066 nvde 66.254 | -300067 mxld 67.254 | -300068 tthd 68.254 | -300069 mthd 69.254 | -300070 mtha 70.254 | -300071 cbnv 71.254 | -300072 cvnv 72.254 | -300073 lwnv 73.254 | -300074 mdnv 74.254 | -300075 hinv 75.254 | -300076 wtnv 76.254 | -300077 bli 77.254 | -300081 lsmk 81.254 | -300082 dslm 82.254 | -300083 zorl 83.254 | -300084 albe 84.254 | -300085 dstp 85.254 | -300086 soic 86.254 | -300087 vege 87.254 | -300089 dens 89.254 | -300091 icec 91.254 | -300092 icet 92.254 | -300093 iced 93.254 | -300094 ices 94.254 | -300095 iceu 95.254 | -300096 icev 96.254 | -300097 iceg 97.254 | -300098 icdv 98.254 | -300100 shcw 100.254 | -300101 wwdi 101.254 | -300102 wwsh 102.254 | -300103 wwmp 103.254 | -300104 swdi 104.254 | -300105 swsh 105.254 | -300106 swmp 106.254 | -300107 prwd 107.254 | -300108 prmp 108.254 | -300109 swdi 109.254 | -300110 swmp 110.254 | -300111 ocas 111.254 | -300112 slds 112.254 | -300113 nswr 113.254 | -300114 role 114.254 | -300115 lwrd 115.254 | -300116 swea 116.254 | -300117 glbr 117.254 | -300121 clsf 121.254 | -300122 cssf 122.254 | -300123 blds 123.254 | -300127 imag 127.254 | -300128 tp2m 128.254 | -300129 dp2m 129.254 | -300130 u10m 130.254 | -300131 v10m 131.254 | -300132 topo 132.254 | -300133 gsfp 133.254 | -300134 lnsp 134.254 | -300135 pslc 135.254 | -300136 pslm 136.254 | -300137 mask 137.254 | -300138 mxwu 138.254 | -300139 mxwv 139.254 | -300140 cape 140.254 | -300141 cine 141.254 | -300142 lhcv 142.254 | -300143 mscv 143.254 | -300144 scvm 144.254 | -300145 scvh 145.254 | -300146 mxwp 146.254 | -300147 ustr 147.254 | -300148 vstr 148.254 | -300149 cbnt 149.254 | -300150 pcbs 150.254 | -300151 pctp 151.254 | -300152 fzht 152.254 | -300153 fzrh 153.254 | -300154 fdlt 154.254 | -300155 fdlu 155.254 | -300156 fdlv 156.254 | -300157 tppp 157.254 | -300158 tppt 158.254 | -300159 tppu 159.254 | -300160 tppv 160.254 | -300162 gvdu 162.254 | -300163 gvdv 163.254 | -300164 gvus 164.254 | -300165 gvvs 165.254 | -300167 dvsh 167.254 | -300168 hmfc 168.254 | -300169 vmfl 169.254 | -300170 vadv 170.254 | -300171 nhcm 171.254 | -300172 lglh 172.254 | -300173 lgms 173.254 | -300174 smav 174.254 | -300175 tgrz 175.254 | -300176 bslh 176.254 | -300177 evpp 177.254 | -300178 rnof 178.254 | -300179 pitp 179.254 | -300180 vpca 180.254 | -300181 qsfc 181.254 | -300182 ussl 182.254 | -300183 uzrs 183.254 | -300184 uzds 184.254 | -300185 amdl 185.254 | -300186 amsl 186.254 | -300187 tsfc 187.254 | -300188 tems 188.254 | -300189 tcas 189.254 | -300190 ctmp 190.254 | -300191 tgsc 191.254 | -300192 uves 192.254 | -300193 usst 193.254 | -300194 vves 194.254 | -300195 vsst 195.254 | -300196 suvf 196.254 | -300197 iswf 197.254 | -300198 ghfl 198.254 | -300200 lwbc 200.254 | -300201 lwtc 201.254 | -300202 swec 202.254 | -300203 ocac 203.254 | -300205 lwrh 205.254 | -300206 swrh 206.254 | -300207 olis 207.254 | -300208 olic 208.254 | -300209 ocis 209.254 | -300210 ocic 210.254 | -300211 oles 211.254 | -300212 oces 212.254 | -300213 swgc 213.254 | -300214 roce 214.254 | -300215 swtc 215.254 | -300218 hhdf 218.254 | -300219 hmdf 219.254 | -300220 hddf 220.254 | -300221 hvdf 221.254 | -300222 vdms 222.254 | -300223 vdfu 223.254 | -300224 vdfv 224.254 | -300225 vdfh 225.254 | -300226 umrs 226.254 | -300227 vdcc 227.254 | -300230 usmt 230.254 | -300231 vsmt 231.254 | -300232 tsmt 232.254 | -300233 rsmt 233.254 | -300234 atmt 234.254 | -300235 stmt 235.254 | -300236 ommt 236.254 | -300237 dvmt 237.254 | -300238 zhmt 238.254 | -300239 lnmt 239.254 | -300240 mkmt 240.254 | -300241 vvmt 241.254 | -300242 omtm 242.254 | -300243 ptmt 243.254 | -300244 pcmt 244.254 | -300245 rhmt 245.254 | -300246 mpmt 246.254 | -300247 simt 247.254 | -300248 uemt 248.254 | -300249 fcmt 249.254 | -300250 psmt 250.254 | -300251 tmmt 251.254 | -300252 pvmt 252.254 | -300253 tvmt 253.254 | -300254 vtmt 254.254 | -300255 uvmt 255.254 | -3003 ptend 3.1 3.2 3.3 | -3005 icaht 5.1 5.2 5.3 | -3008 h 8.1 8.2 8.3 | -3009 hstdv 9.1 9.2 9.3 | -3012 vptmp 12.1 12.2 12.3 | -3014 papt 14.1 14.2 14.3 | -3015 tmax 15.1 15.2 15.3 | -3016 tmin 16.1 16.2 16.3 | -3017 dpt 17.1 17.2 17.3 | -3018 depr 18.1 18.2 18.3 | -3019 lapr 19.1 19.2 19.3 | -3020 vis 20.1 20.2 20.3 | -3021 rdsp1 21.1 21.2 21.3 | -3022 rdsp2 22.1 22.2 22.3 | -3023 rdsp3 23.1 23.2 23.3 | -3024 pli 24.1 24.2 24.3 | -3025 ta 25.1 25.2 25.3 | -3026 presa 26.1 26.2 26.3 | -3027 gpa 27.1 27.2 27.3 | -3028 wvsp1 28.1 28.2 28.3 | -3029 wvsp2 29.1 29.2 29.3 | -3030 wvsp3 30.1 30.2 30.3 | -3031 wdir 31.1 31.2 31.3 | -3037 mntsf 37.1 37.2 37.3 | -3038 sgcvv 38.1 38.2 38.3 | -3041 absv 41.1 41.2 41.3 | -3042 absd 42.1 42.2 42.3 | -3045 vucsh 45.1 45.2 45.3 | -3046 vvcsh 46.1 46.2 46.3 | -3047 dirc 47.1 47.2 47.3 | -3048 spc 48.1 48.2 48.3 | -3049 ucurr 49.1 49.2 49.3 | -3050 vcurr 50.1 50.2 50.3 | -3053 mixr 53.1 53.2 53.3 | -3054 pwat 54.1 54.2 54.3 | -3055 vp 55.1 55.2 55.3 | -3056 satd 56.1 56.2 56.3 | -3059 prate 59.1 59.2 59.3 | -3060 tstm 60.1 60.2 60.3 | -3062 lsp 62.1 62.2 62.3 | -3063 acpcp 63.1 63.2 63.3 | -3064 srweq 64.1 64.2 64.3 | -3067 mld 67.1 67.2 67.3 | -3068 tthdp 68.1 68.2 68.3 | -3069 mthd 69.1 69.2 69.3 | -3070 mtha 70.1 70.2 70.3 | -3077 bli 77.1 77.2 77.3 | -3080 wtmp 80.1 80.2 80.3 | -3082 dslm 82.1 82.2 82.3 | -3086 ssw 86.1 86.2 86.3 | -3088 s 88.1 88.2 88.3 | -3089 den 89.1 89.2 89.3 | -3091 icec 91.1 91.2 91.3 | -3092 icetk 92.1 92.2 92.3 | -3093 diced 93.1 93.2 93.3 | -3094 siced 94.1 94.2 94.3 | -3095 uice 95.1 95.2 95.3 | -3096 vice 96.1 96.2 96.3 | -3097 iceg 97.1 97.2 97.3 | -3098 iced 98.1 98.2 98.3 | -3099 snom 99.1 99.2 99.3 | -31 ci 31.128 | -3100 swh 100.1 100.2 100.3 | -3101 mdww 101.1 101.2 101.3 | -3102 shww 102.1 102.2 102.3 | -3103 mpww 103.1 103.2 103.3 | -3104 swdir 104.1 104.2 104.3 | -3105 swell 105.1 105.2 105.3 | -3106 swper 106.1 106.2 106.3 | -3107 mdps 107.1 107.2 107.3 | -3108 mpps 108.1 108.2 108.3 | -3109 dirsw 109.1 109.2 109.3 | -3110 swp 110.1 110.2 110.3 | -3111 nswrs 111.1 111.2 111.3 | -3112 nlwrs 112.1 112.2 112.3 | -3113 nlwrt 113.1 113.2 113.3 | -3114 nlwrt 114.1 114.2 114.3 | -3115 lwavr 115.1 115.2 115.3 | -3116 swavr 116.1 116.2 116.3 | -3117 grad 117.1 117.2 117.3 | -3119 lwrad 119.1 119.2 119.3 | -3120 swrad 120.1 120.2 120.3 | -3124 uflx 124.1 124.2 124.3 | -3125 vflx 125.1 125.2 125.3 | -3126 wmixe 126.1 126.2 126.3 | -3127 imgd 127.1 127.2 127.3 | -32 asn 32.128 | -33 rsn 33.128 | -34 sst 34.128 | -35 istl1 35.128 | -36 istl2 36.128 | -37 istl3 37.128 | -38 istl4 38.128 | -39 swvl1 39.128 | -4 eqpt 4.128 | -40 swvl2 40.128 | -41 swvl3 41.128 | -42 swvl4 42.128 | -43 slt 43.128 | -44 es 44.128 | -45 smlt 45.128 | -46 sdur 46.128 | -47 dsrp 47.128 | -48 magss 48.128 | -49 10fg 49.128 | -5 sept 5.128 | -50 lspf 50.128 | -500000 ps 1.2 1.2 | -500001 p 1.2 1.2 | -500002 pmsl 2.2 2.2 | -500003 dpsdt 3.2 3.2 | -500004 fis 6.2 6.2 | -500005 fif 6.2 6.2 | -500006 fi 6.2 6.2 | -500007 hsurf 8.2 8.2 | -500008 hhl 8.2 8.2 | -500009 to3 10.2 10.2 | -500010 t_g 11.2 11.2 | -500011 t_2m 11.2 11.2 | -500012 t_2m_av 11.2 11.2 | -500013 t_2m_cl 11.2 11.2 | -500014 t 11.2 11.2 | -500015 tmax_2m 15.2 15.2 | -500016 tmin_2m 16.2 16.2 | -500017 td_2m 17.2 17.2 | -500018 td_2m_av 17.2 17.2 | -500019 dbz_max 21.2 21.2 | -500020 wvsp1 28.2 28.2 | -500021 wvsp2 29.2 29.2 | -500022 wvsp3 30.2 30.2 | -500023 dd_10m 31.2 31.2 | -500024 dd 31.2 31.2 | -500025 sp_10m 32.2 32.2 | -500026 sp 32.2 32.2 | -500027 u_10m 33.2 33.2 | -500028 u 33.2 33.2 | -500029 v_10m 34.2 34.2 | -500030 v 34.2 34.2 | -500031 omega 39.2 39.2 | -500032 w 40.2 40.2 | -500033 qv_s 51.2 51.2 | -500034 qv_2m 51.2 51.2 | -500035 qv 51.2 51.2 | -500036 relhum_2m 52.2 52.2 | -500037 relhum 52.2 52.2 | -500038 tqv 54.2 54.2 | -500039 aevap_s 57.2 57.2 | -500040 tqi 58.2 58.2 | -500041 tot_prec 61.2 61.2 | -500042 prec_gsp 62.2 62.2 | -500043 prec_con 63.2 63.2 | -500044 w_snow 65.2 65.2 | -500045 h_snow 66.2 66.2 | -500046 clct 71.2 71.2 | -500047 clc_con 72.2 72.2 | -500048 clcl 73.2 73.2 | -500049 clcm 74.2 74.2 | -500050 clch 75.2 75.2 | -500051 tqc 76.2 76.2 | -500052 snow_con 78.2 78.2 | -500053 snow_gsp 79.2 79.2 | -500054 fr_land 81.2 81.2 | -500055 z0 83.2 83.2 | -500056 alb_rad 84.2 84.2 | -500057 albedo_b 84.2 84.2 | -500058 t_cl 85.2 85.2 | -500059 t_cl_lm 85.2 85.2 | -500060 t_m 85.2 85.2 | -500061 t_s 85.2 85.2 | -500062 w_cl 86.2 86.2 | -500063 w_g1 86.2 86.2 | -500064 w_g2 86.2 86.2 | -500065 plcov 87.2 87.2 | -500066 runoff_g 90.2 90.2 | -500067 runoff_g_lm 90.2 90.2 | -500068 runoff_s 90.2 90.2 | -500069 fr_ice 91.2 91.2 | -500070 h_ice 92.2 92.2 | -500071 swh 100.2 100.2 | -500072 mdww 101.2 101.2 | -500073 shww 102.2 102.2 | -500074 mpww 103.2 103.2 | -500075 mdps 104.2 104.2 | -500076 shps 105.2 105.2 | -500077 mpps 106.2 106.2 | -500078 asob_s 111.2 111.2 | -500079 sobs_rad 111.2 111.2 | -500080 athb_s 112.2 112.2 | -500081 thbs_rad 112.2 112.2 | -500082 asob_t 113.2 113.2 | -500083 sobt_rad 113.2 113.2 | -500084 athb_t 114.2 114.2 | -500085 thbt_rad 114.2 114.2 | -500086 alhfl_s 121.2 121.2 | -500087 ashfl_s 122.2 122.2 | -500088 aumfl_s 124.2 124.2 | -500089 avmfl_s 125.2 125.2 | -500090 apab_s 5.201 5.201 | -500091 pabs_rad 5.201 5.201 | -500092 sohr_rad 13.201 13.201 | -500093 thhr_rad 14.201 14.201 | -500094 alhfl_bs 18.201 18.201 | -500095 alhfl_pl 19.201 19.201 | -500096 dursun 20.201 20.201 | -500097 rstom 21.201 21.201 | -500098 clc 29.201 29.201 | -500099 clc_sgs 30.201 30.201 | -500100 qc 31.201 31.201 | -500101 qi 33.201 33.201 | -500102 qr 35.201 35.201 | -500103 qs 36.201 36.201 | -500104 tqr 37.201 37.201 | -500105 tqs 38.201 38.201 | -500106 qg 39.201 39.201 | -500107 tqg 40.201 40.201 | -500108 twater 41.201 41.201 | -500109 tdiv_hum 42.201 42.201 | -500110 qc_rad 43.201 43.201 | -500111 qi_rad 44.201 44.201 | -500112 clch_8 51.201 51.201 | -500113 clcm_8 52.201 52.201 | -500114 clcl_8 53.201 53.201 | -500115 hbas_sc 58.201 58.201 | -500116 htop_sc 59.201 59.201 | -500117 clw_con 61.201 61.201 | -500118 hbas_con 68.201 68.201 | -500119 htop_con 69.201 69.201 | -500120 bas_con 72.201 72.201 | -500121 top_con 73.201 73.201 | -500122 dt_con 74.201 74.201 | -500123 dqv_con 75.201 75.201 | -500124 du_con 78.201 78.201 | -500125 dv_con 79.201 79.201 | -500126 htop_dc 82.201 82.201 | -500127 hzerocl 84.201 84.201 | -500128 snowlmt 85.201 85.201 | -500129 dqc_con 88.201 88.201 | -500130 dqi_con 89.201 89.201 | -500131 q_sedim 99.201 99.201 | -500132 prr_gsp 100.201 100.201 | -500133 prs_gsp 101.201 101.201 | -500134 rain_gsp 102.201 102.201 | -500135 prr_con 111.201 111.201 | -500136 prs_con 112.201 112.201 | -500137 rain_con 113.201 113.201 | -500138 rr_f 122.201 122.201 | -500139 rr_c 123.201 123.201 | -500140 dt_gsp 124.201 124.201 | -500141 dqv_gsp 125.201 125.201 | -500142 dqc_gsp 127.201 127.201 | -500143 freshsnw 129.201 129.201 | -500144 dqi_gsp 130.201 130.201 | -500145 prg_gsp 131.201 131.201 | -500146 grau_gsp 132.201 132.201 | -500147 rho_snow 133.201 133.201 | -500148 pp 139.201 139.201 | -500149 sdi_1 141.201 141.201 | -500150 sdi_2 142.201 142.201 | -500151 cape_mu 143.201 143.201 | -500152 cin_mu 144.201 144.201 | -500153 cape_ml 145.201 145.201 | -500154 cin_ml 146.201 146.201 | -500155 tke_con 147.201 147.201 | -500156 tketens 148.201 148.201 | -500157 ke 149.201 149.201 | -500158 tke 152.201 152.201 | -500159 tkvm 153.201 153.201 | -500160 tkvh 154.201 154.201 | -500161 tcm 170.201 170.201 | -500162 tch 171.201 171.201 | -500163 mh 173.201 173.201 | -500164 vmax_10m 187.201 187.201 | -500165 ru-103 194.201 194.201 | -500166 t_so 197.201 197.201 | -500167 w_so 198.201 198.201 | -500168 w_so_ice 199.201 199.201 | -500169 w_i 200.201 200.201 | -500170 t_snow 203.201 203.201 | -500171 prs_min 212.201 212.201 | -500172 t_ice 215.201 215.201 | -500173 dbz_850 230.201 230.201 | -500174 dbz 230.201 230.201 | -500175 dbz_cmax 230.201 230.201 | -500176 dttdiv 232.201 232.201 | -500177 sotr_rad 233.201 233.201 | -500178 evatra_sum 236.201 236.201 | -500179 tra_sum 237.201 237.201 | -500180 totforce_s 238.201 238.201 | -500181 resid_wso 239.201 239.201 | -500182 mflx_con 240.201 240.201 | -500183 cape_con 241.201 241.201 | -500184 qcvg_con 243.201 243.201 | -500185 mwd 4.202 4.202 | -500186 mwp_x 7.202 7.202 | -500187 ppww 7.202 7.202 | -500188 mpp_s 8.202 8.202 | -500189 ppps 8.202 8.202 | -500190 pp1d 9.202 9.202 | -500191 tm10 10.202 10.202 | -500192 tm01 17.202 17.202 | -500193 tm02 18.202 18.202 | -500194 sprd 19.202 19.202 | -500195 ana_err_fi 40.202 40.202 | -500196 ana_err_u 41.202 41.202 | -500197 ana_err_v 42.202 42.202 | -500198 du_sso 44.202 44.202 | -500199 dv_sso 45.202 45.202 | -500200 sso_stdh 46.202 46.202 | -500201 sso_gamma 47.202 47.202 | -500202 sso_theta 48.202 48.202 | -500203 sso_sigma 49.202 49.202 | -500204 emis_rad 56.202 56.202 | -500205 soiltyp 57.202 57.202 | -500206 lai 61.202 61.202 | -500207 rootdp 62.202 62.202 | -500208 hmo3 64.202 64.202 | -500209 vio3 65.202 65.202 | -500210 plcov_mx 67.202 67.202 | -500211 plcov_mn 68.202 68.202 | -500212 lai_mx 69.202 69.202 | -500213 lai_mn 70.202 70.202 | -500214 oro_mod 71.202 71.202 | -500215 wvar1 74.202 74.202 | -500216 wvar2 74.202 74.202 | -500217 for_e 75.202 75.202 | -500218 for_d 76.202 76.202 | -500219 ndvi 77.202 77.202 | -500220 ndvi_max 78.202 78.202 | -500221 ndvi_mrat 79.202 79.202 | -500222 ndviratio 79.202 79.202 | -500223 aer_so4 84.202 84.202 | -500224 aer_so412 84.202 84.202 | -500225 aer_dust 86.202 86.202 | -500226 aer_dust12 86.202 86.202 | -500227 aer_org 91.202 91.202 | -500228 aer_org12 91.202 91.202 | -500229 aer_bc 92.202 92.202 | -500230 aer_bc12 92.202 92.202 | -500231 aer_ss 93.202 93.202 | -500232 aer_ss12 93.202 93.202 | -500233 dqvdt 104.202 104.202 | -500234 qvsflx 105.202 105.202 | -500235 fc 113.202 113.202 | -500236 rlat 114.202 114.202 | -500237 rlon 115.202 115.202 | -500238 ustr 120.202 120.202 | -500239 ztd 121.202 121.202 | -500240 zwd 122.202 122.202 | -500241 zhd 123.202 123.202 | -500242 o3 180.202 180.202 | -500243 ru-103 194.202 194.202 | -500244 ru-103d 195.202 195.202 | -500245 ru-103w 196.202 196.202 | -500246 sr-90 197.202 197.202 | -500247 sr-90d 198.202 198.202 | -500248 sr-90w 199.202 199.202 | -500249 i-131a 200.202 200.202 | -500250 i-131ad 201.202 201.202 | -500251 i-131aw 202.202 202.202 | -500252 cs-137 203.202 203.202 | -500253 cs-137d 204.202 204.202 | -500254 cs-137w 205.202 205.202 | -500255 te-132 206.202 206.202 | -500256 te-132d 207.202 207.202 | -500257 te-132w 208.202 208.202 | -500258 zr-95 209.202 209.202 | -500259 zr-95d 210.202 210.202 | -500260 zr-95w 211.202 211.202 | -500261 kr-85 212.202 212.202 | -500262 kr-85d 213.202 213.202 | -500263 kr-85w 214.202 214.202 | -500264 tr-2 215.202 215.202 | -500265 tr-2d 216.202 216.202 | -500266 tr-2w 217.202 217.202 | -500267 xe-133 218.202 218.202 | -500268 xe-133d 219.202 219.202 | -500269 xe-133w 220.202 220.202 | -500270 i-131g 221.202 221.202 | -500271 i-131gd 222.202 222.202 | -500272 i-131gw 223.202 223.202 | -500273 i-131o 224.202 224.202 | -500274 i-131od 225.202 225.202 | -500275 i-131ow 226.202 226.202 | -500276 ba-140 227.202 227.202 | -500277 ba-140d 228.202 228.202 | -500278 ba-140w 229.202 229.202 | -500279 austr_sso 231.202 231.202 | -500280 ustr_sso 231.202 231.202 | -500281 avstr_sso 232.202 232.202 | -500282 vstr_sso 232.202 232.202 | -500283 avdis_sso 233.202 233.202 | -500284 vdis_sso 233.202 233.202 | -500285 uv_max 248.202 248.202 | -500286 w_shaer 29.203 29.203 | -500287 srh 30.203 30.203 | -500288 vabs 33.203 33.203 | -500289 cl_typ 90.203 90.203 | -500290 ccl_gnd 91.203 91.203 | -500291 ccl_nn 94.203 94.203 | -500292 ww 99.203 99.203 | -500293 advorg 101.203 101.203 | -500294 advor 103.203 103.203 | -500295 adrtg 107.203 107.203 | -500296 wdiv 109.203 109.203 | -500297 fqn 124.203 124.203 | -500298 ipv 130.203 130.203 | -500299 up 131.203 131.203 | -500300 vp 132.203 132.203 | -500301 ptheta 133.203 133.203 | -500302 ko 140.203 140.203 | -500303 thetae 154.203 154.203 | -500304 ceiling 157.203 157.203 | -500305 ice_grd 196.203 196.203 | -500306 cldepth 203.203 203.203 | -500307 clct_mod 204.203 204.203 | -500308 efa-ps 1.204 1.204 | -500309 eia-ps 2.204 2.204 | -500310 efa-u 3.204 3.204 | -500311 eia-u 4.204 4.204 | -500312 efa-v 5.204 5.204 | -500313 eia-v 6.204 6.204 | -500314 efa-fi 7.204 7.204 | -500315 eia-fi 8.204 8.204 | -500316 efa-rh 9.204 9.204 | -500317 eia-rh 10.204 10.204 | -500318 efa-t 11.204 11.204 | -500319 eia-t 12.204 12.204 | -500320 efa-om 13.204 13.204 | -500321 eia-om 14.204 14.204 | -500322 efa-ke 15.204 15.204 | -500323 eia-ke 16.204 16.204 | -500324 synme5_bt_cl 1.205 1.205 | -500325 synme5_bt_cs 1.205 1.205 | -500326 synme5_rad_cl 1.205 1.205 | -500327 synme5_rad_cs 1.205 1.205 | -500328 synme6_bt_cl 2.205 2.205 | -500329 synme6_bt_cs 2.205 2.205 | -500330 synme6_rad_cl 2.205 2.205 | -500331 synme6_rad_cs 2.205 2.205 | -500332 synme7_bt_cl_ir11.5 3.205 3.205 | -500333 synme7_bt_cl_wv6.4 3.205 3.205 | -500334 synme7_bt_cs_ir11.5 3.205 3.205 | -500335 synme7_bt_cs_wv6.4 3.205 3.205 | -500336 synme7_rad_cl_ir11.5 3.205 3.205 | -500337 synme7_rad_cl_wv6.4 3.205 3.205 | -500338 synme7_rad_cs_ir11.5 3.205 3.205 | -500339 synme7_rad_cs_wv6.4 3.205 3.205 | -500340 synmsg_bt_cl_ir10.8 4.205 4.205 | -500341 synmsg_bt_cl_ir12.1 4.205 4.205 | -500342 synmsg_bt_cl_ir13.4 4.205 4.205 | -500343 synmsg_bt_cl_ir3.9 4.205 4.205 | -500344 synmsg_bt_cl_ir8.7 4.205 4.205 | -500345 synmsg_bt_cl_ir9.7 4.205 4.205 | -500346 synmsg_bt_cl_wv6.2 4.205 4.205 | -500347 synmsg_bt_cl_wv7.3 4.205 4.205 | -500348 synmsg_bt_cs_ir8.7 4.205 4.205 | -500349 synmsg_bt_cs_ir10.8 4.205 4.205 | -500350 synmsg_bt_cs_ir12.1 4.205 4.205 | -500351 synmsg_bt_cs_ir13.4 4.205 4.205 | -500352 synmsg_bt_cs_ir3.9 4.205 4.205 | -500353 synmsg_bt_cs_ir9.7 4.205 4.205 | -500354 synmsg_bt_cs_wv6.2 4.205 4.205 | -500355 synmsg_bt_cs_wv7.3 4.205 4.205 | -500356 synmsg_rad_cl_ir10.8 4.205 4.205 | -500357 synmsg_rad_cl_ir12.1 4.205 4.205 | -500358 synmsg_rad_cl_ir13.4 4.205 4.205 | -500359 synmsg_rad_cl_ir3.9 4.205 4.205 | -500360 synmsg_rad_cl_ir8.7 4.205 4.205 | -500361 synmsg_rad_cl_ir9.7 4.205 4.205 | -500362 synmsg_rad_cl_wv6.2 4.205 4.205 | -500363 synmsg_rad_cl_wv7.3 4.205 4.205 | -500364 synmsg_rad_cs_ir10.8 4.205 4.205 | -500365 synmsg_rad_cs_ir12.1 4.205 4.205 | -500366 synmsg_rad_cs_ir13.4 4.205 4.205 | -500367 synmsg_rad_cs_ir3.9 4.205 4.205 | -500368 synmsg_rad_cs_ir8.7 4.205 4.205 | -500369 synmsg_rad_cs_ir9.7 4.205 4.205 | -500370 synmsg_rad_cs_wv6.2 4.205 4.205 | -500371 synmsg_rad_cs_wv7.3 4.205 4.205 | -500372 t_2m_s 11.206 11.206 | -500373 tmax_2m_s 15.206 15.206 | -500374 tmin_2m_s 16.206 16.206 | -500375 td_2m_s 17.206 17.206 | -500376 u_10m_s 33.206 33.206 | -500377 v_10m_s 34.206 34.206 | -500378 tot_prec_s 61.206 61.206 | -500379 clct_s 71.206 71.206 | -500380 clcl_s 73.206 73.206 | -500381 clcm_s 74.206 74.206 | -500382 clch_s 75.206 75.206 | -500383 snow_gsp_s 79.206 79.206 | -500384 t_s_s 85.206 85.206 | -500385 vmax_10m_s 187.206 187.206 | -500386 tot_prec_c 61.207 61.207 | -500387 snow_gsp_c 79.207 79.207 | -500388 vmax_10m_c 187.207 187.207 | -500389 obsmsg_alb_hrv | -500390 obsmsg_alb_nir1.6 | -500391 obsmsg_alb_vis0.6 | -500392 obsmsg_alb_vis0.8 | -500393 obsmsg_bt_ir10.8 | -500394 obsmsg_bt_ir12.0 | -500395 obsmsg_bt_ir13.4 | -500396 obsmsg_bt_ir3.9 | -500397 obsmsg_bt_ir8.7 | -500398 obsmsg_bt_ir9.7 | -500399 obsmsg_bt_wv6.2 | -500400 obsmsg_bt_wv7.3 | -51 mx2t24 51.128 | -52 mn2t24 52.128 | -53 mont 53.128 | -54 pres 1.1 1.2 1.3 54.128 | -55 mean2t24 55.128 | -56 mn2d24 56.128 | -57 uvb 57.128 | -58 par 58.128 | -59 cape 59.128 | -6 ssfr 6.128 | -60 pv 4.1 4.2 4.3 60.128 | -62 obct 62.128 | -63 stsktd 63.128 | -64 ftsktd 64.128 | -65 sktd 65.128 | -66 lai_lv 66.128 | -67 lai_hv 67.128 | -68 msr_lv 68.128 | -69 msr_hv 69.128 | -7 scfr 7.128 | -70 bc_lv 70.128 | -71 bc_hv 71.128 | -72 issrd 72.128 | -73 istrd 73.128 | -74 sdfor 74.128 | -75 crwc 75.128 | -76 cswc 76.128 | -77 etadot 77.128 | -78 tclw 78.128 | -79 tciw 79.128 | -8 sro 8.128 | -80 80.128 | -81 81.128 | -82 82.128 | -83 83.128 | -84 84.128 | -85 85.128 | -85001156 PREC_CONVEC 156.1 | -85001157 PREC_GDE_ECH 157.1 | -85001160 CAPE_INS 160.1 | -86 86.128 | -87 87.128 | -88 88.128 | -89 89.128 | -9 ssro 9.128 | -90 90.128 | -91 91.128 | -92 92.128 | -93 93.128 | -94 94.128 | -95 95.128 | -96 96.128 | -97 97.128 | -98 98.128 | -99 99.128 | diff --git a/eccodes/definitions.save/param_limits.def b/eccodes/definitions.save/param_limits.def deleted file mode 100644 index 1bbcd18d..00000000 --- a/eccodes/definitions.save/param_limits.def +++ /dev/null @@ -1,166 +0,0 @@ -constant default_min_val = -1e13 : double_type, hidden; -constant default_max_val = +1e13 : double_type, hidden; - -concept param_value_min(default_min_val) { - -150 = { paramId=165; } - -100 = { paramId=166; } - 0 = { paramId=260260; } - 0 = { paramId=228028; } - 0 = { paramId=49; } - 0 = { paramId=207; } - 25 = { paramId=168; } - 0 = { paramId=260242; } - 160 = { paramId=167; } - 0 = { paramId=260509; } - 5 = { paramId=151175; } - 0 = { paramId=260257; } - 0 = { paramId=59; } - -60000 = { paramId=228001; } - 0 = { paramId=151163; } - -3.5 = { paramId=151131; } - -10 = { paramId=260259; } - -13000 = { paramId=129; } - -1300 = { paramId=156; } - 0 = { paramId=3075; } - 0 = { paramId=172; } - -0.05 = { paramId=3062; } - 0 = { paramId=260210; } - 0 = { paramId=3073; } - 160 = { - one=(step > 0); - paramId=121; - } - 150 = { - one=(step > 0); - paramId=122; - } - 85000 = { paramId=151; } - 270 = { paramId=151126; } - -1 = { paramId=140230; } - 0 = { paramId=140221; } - 0 = { paramId=3074; } - 0 = { paramId=140214; } - -3.5 = { paramId=151132; } - 0 = { paramId=151225; } - -1300 = { paramId=228002; } - 0 = { paramId=140231; } - 0 = { paramId=260430; } - 170 = { paramId=3; } - -1 = { paramId=60; } - 100 = { paramId=54; } - 0 = { paramId=157; } - -4 = { paramId=151145; } - 0 = { paramId=151219; } - 160 = { paramId=34; } - -0.00001 = { paramId=31; } - 0 = { paramId=174098; } - 0 = { paramId=140229; } - 120 = { paramId=235; } - 20 = { paramId=228032; } - 10 = { paramId=33; } - 0 = { paramId=3066; } - -1e-10 = { paramId=228141; } - 0.005 = { paramId=260367; } - -1000 = { paramId=260364; } - 0 = { paramId=228039; } - 0 = { paramId=228087; } - -20 = { paramId=228086; } - 170 = { paramId=260360; } - 170 = { paramId=228139; } - 170 = { paramId=228096; } - 170 = { paramId=228095; } - 0 = { paramId=43; } - -0.001 = { paramId=247; } - -0.001 = { paramId=246; } - -0.1 = { paramId=133; } - 43000 = { paramId=134; } - 0 = { paramId=173; } - 140 = { paramId=130; } - -3 = { paramId=260057; } - -50 = { paramId=136; } - -250 = { paramId=131; } - -250 = { paramId=132; } - -30 = { paramId=135; } - 0 = { paramId=260199; } - 0 = { paramId=3031; } - 0 = { paramId=10; } -} : double_type, hidden; - -concept param_value_max(default_max_val) { - 150 = { paramId=165; } - 100 = { paramId=166; } - 360.1 = { paramId=260260; } - 140 = { paramId=228028; } - 100 = { paramId=49; } - 300 = { paramId=207; } - 350 = { paramId=168; } - 160 = { paramId=260242; } - 370 = { paramId=167; } - 100 = { paramId=260509; } - 50 = { paramId=151175; } - 100 = { paramId=260257; } - 40000 = { paramId=59; } - 1000 = { paramId=228001; } - 1500 = { paramId=151163; } - 3.5 = { paramId=151131; } - 5 = { paramId=260259; } - 3500000 = { paramId=129; } - 35000 = { paramId=156; } - 100 = { paramId=3075; } - 1 = { paramId=172; } - 130 = { paramId=3062; } - 1 = { paramId=260210; } - 100 = { paramId=3073; } - 380 = { paramId=121; } - 125000 = { paramId=151; } - 308 = { paramId=151126; } - 360.5 = { paramId=140230; } - 50 = { paramId=140221; } - 100 = { paramId=3074; } - 330 = { paramId=122; } - 150 = { paramId=140214; } - 3.5 = { paramId=151132; } - 4000 = { paramId=151225; } - 8888 = { paramId=228002; } - 50 = { paramId=140231; } - 30 = { paramId=260430; } - 1200 = { paramId=3; } - 1 = { paramId=60; } - 108000 = { paramId=54; } - 180 = { paramId=157; } - 4 = { paramId=151145; } - 50 = { paramId=151219; } - 320 = { paramId=34; } - 1.001 = { paramId=31; } - 15 = { paramId=174098; } - 100 = { paramId=140229; } - 380 = { paramId=235; } - 100 = { paramId=228032; } - 1000 = { paramId=33; } - 5 = { paramId=3066; } - 15000 = { paramId=228141; } - 100 = { paramId=260367; } - 1000 = { paramId=260364; } - 2000 = { paramId=228039; } - 2000 = { paramId=228087; } - 2000 = { paramId=228086; } - 350 = { paramId=260360; } - 350 = { paramId=228139; } - 350 = { paramId=228096; } - 350 = { paramId=228095; } - 10 = { paramId=43; } - 0.01 = { paramId=247; } - 1e+06 = { paramId=246; } - 0.1 = { paramId=133; } - 115000 = { paramId=134; } - 10 = { paramId=173; } - 400 = { paramId=130; } - 150 = { paramId=260057; } - 220 = { paramId=136; } - 250 = { paramId=131; } - 250 = { paramId=132; } - 30 = { paramId=135; } - 1 = { paramId=260199; } - 360.1 = { paramId=3031; } - 300 = { paramId=10; } -} : double_type, hidden; diff --git a/eccodes/definitions.save/parameters_version.def b/eccodes/definitions.save/parameters_version.def deleted file mode 100644 index 3bc23be7..00000000 --- a/eccodes/definitions.save/parameters_version.def +++ /dev/null @@ -1 +0,0 @@ -transient parametersVersion=1 :hidden; diff --git a/eccodes/definitions.save/stepUnits.table b/eccodes/definitions.save/stepUnits.table deleted file mode 100644 index 6174b275..00000000 --- a/eccodes/definitions.save/stepUnits.table +++ /dev/null @@ -1,16 +0,0 @@ -# stepUnits table used for both grib 1 and 2 -0 m Minute -1 h Hour -2 D Day -3 M Month -4 Y Year -5 10Y Decade (10 years) -6 30Y Normal (30 years) -7 C Century (100 years) -10 3h 3 hours -11 6h 6 hours -12 12h 12 hours -13 s Second -14 15m 15 minutes -15 30m 30 minutes -255 255 Missing From 5b817cac75166a55408746f127839edec5764339 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 19:21:46 -0700 Subject: [PATCH 38/44] add RAP grid template file --- eccodes/template.3.32769.def | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 eccodes/template.3.32769.def diff --git a/eccodes/template.3.32769.def b/eccodes/template.3.32769.def new file mode 100644 index 00000000..d0a5f437 --- /dev/null +++ b/eccodes/template.3.32769.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.1, Rotated Latitude/longitude (or equidistant cylindrical, or Plate Carree) + +include "grib2/template.3.shape_of_the_earth.def"; +include "grib2/template.3.latlon.def"; +#include "grib2/template.3.rotation.def"; From 648ac28a5986cbec0a8e652e338a92a4d98b084f Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 19:22:30 -0700 Subject: [PATCH 39/44] update --- Changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog b/Changelog index b5e0dc70..be9dda65 100644 --- a/Changelog +++ b/Changelog @@ -4,7 +4,7 @@ version 2.1.2 (git tag v2.1.2rel) * change license to MIT. * changes gribmessage.projparams['proj'] from 'cyl' to 'longlat' for non-projection projections (e.g. 'regular_ll'). Issue #167. -* reorganize to include eccodes definitions inside package. +* reorganize to include eccodes definitions inside package when wheels are build (PYGRIB_WHEEL env var is set). Add set_definitions_path/get_defintions_path module functions to get/reset ECCODES_DEFINITION_PATH. From 67a94f186744bf330b7c0f348eecbfc311c44929 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Mon, 21 Dec 2020 19:28:41 -0700 Subject: [PATCH 40/44] add rap file with weird grid template (issue #134) --- sampledata/rap.wrfnat.grib2 | Bin 0 -> 792071 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 sampledata/rap.wrfnat.grib2 diff --git a/sampledata/rap.wrfnat.grib2 b/sampledata/rap.wrfnat.grib2 new file mode 100644 index 0000000000000000000000000000000000000000..6354975b9952cbc92f916f921d4b65ba750995ac GIT binary patch literal 792071 zcmZ6U1)NpI`~MeFKtYslSYQ)D6gyE26s2RA?cUpc&Y8Iaf?|Q9U}AT7U}1M-cLx@B zfQtN|_j&fn_xIm@-FweHXJ($yJT=ceGw0mNvyPrrP*AXqyb20>^zSO~{W=xM$2Ofh zb^W48Uru+D*No0`x$w?{g2kP>aPI&7b-ur#pfk<*e~YhJy?n1)a9=&fo6a`2;&3-Tl{1Qn1s` zekr|HQ1HoH1>4DSC%@))+X%XXE?u@1^ys%&*MhgsEO=|h;{2F`f_!m)OuqcT|NlMS zdNw%Ht6Sg8@+J8)`44Kzr?*$;A9v4a)cMS7^*TEroAI8t4K3&9hYJnL@=kktR4Sjl z_}|8KoEa;hyvp-jKwzE0eKHsu9 z-`6ikS*^MCbL%;6iFfFh<;VH$YXAQCU8$E#@3k)d_c1uP<<@6TwR60~a(|os?V0vf z`$hAY_Q2qJ2X3v!d+-|jUk|h=!Ff2PRP@YP`L0L*l`zLU`{YJuKJg~zF0@O$ckL7Q z?R=N!UUpnZS>-0Q_%D^09xL_#r5ChWnjh_#EA=HCa5uQ>w`0$6ck`yDAM*yff4Fbh zcJC*
    YZ~-L%H;;L{2C8{iFirYLw^IHh?e;#+tq5s5=&Mo~@AF~ps)KT1k) zbvOSr;J)%pTK4XDCLR}cBHlnV)~+&p*qiP9%>gnk6-cJIgBERorX&xK;jL0H&5snS zh4~3SMy?mjKV?)h)Im4tgMVZ%O5f((=oWh~n<;ipetY{@(?9tg{MP@&*HNDDB|d%S zGQ8hKuHg;v37}BB2|R?#e1h~puv(?A*vs=n)9aiTZ-sl6nQl+D2imCpx_NK=rH@Vf zuN;TR^o3U7wZ7B~ac(PJy%zM9^YCM9Ej_}b%W}7;{>^&1mvgt+Ddrvfpq*t`HJ@e& za!p=J87|SofMetQZ(LJ9OnXRKDUOn}ffn=;$|FS*MSfZJZQ5?2IXkzlIP1mO>@!}> zoMac;sIm4CdtdV}W}{DCQK;O}U_}JoKnkV#5keiE8tiiftt*prin%mDMChwNXkF-{ ztAf@3(YD3g*l>Kh*Kzf>pE=haW#^f5g$viWWbLm~0y!xH?HMg#y(+)07@&Z54e=3{ z2?D5;_!3vFrNRU3E*Q1o1Q>kj88^J++*GXG8uO2R+jcU$n_gyB>w$Ljf7BH_?*Rto zKJVxpFR+0@eHk(z+HuSkq=1B|p=JHi&&xF~tJx#8pS{FfV~fn2?h4alZ*1Lc|CMqo zDV4fXrfy(;0Rk)<-RL7+hxgh`_@q*x1`;Wh7d~LCmkTr)N~LCGyVrC_>ml}N^O5c5 zY<3r!zpZV1*KU%l_$ufHH2K65xT5%I3l8^}Pvk-W=_lIHXNma0QnBeFf(Aa&7Uz9E z^1e6K%{!+DrQdJc&U~7G-R@!DG>>>Y*_+!J+c%_azzMCRRMoF-J)<@_M*0X6unZT@ zP;-ROGth#CcmRt~Zc$&`Q>m1>zdL7D-5PF3ea0XSvQd{6vZGpHxSE|B!gjUD=k|{~xn3-_t&1 z9<~kUh431mN60}vd%15Rv>9*{3!ooG`Cig;p->*-YXUf-j|_&(@kqJa*Qc*%;T$8T za#mW%9gw}J?xm*Nou}<*cCG!&I^H9u(LNCAVgHo+0S~mES|jJ^H5!LzjF1-93-=Xm z01sB6nvb7E5+LCUCFuj)Q}0&pOARky;yh)>*X)<P zt4^pq#>#os1xnCnk3N?DK?c=m4Jsq&!{}yT!*)+t*cxQTOMq=+1{S- zV_y`jc+fi0vi!DE9=ys8^*PFmAW{mnp-eb{REFle3jImGWT?fsLOmTn;U3?>v9nyk zmuo+u!WEHE?t<8m(75TYeZ{_GZ_3~5y=PZOFPE!ZbyGPTcwOZM8iu|OkTweQz4N;Z z54s420rFBSP#UU9I*yH&a>YI-YK{{cB~nkdO^{^QhgLRU-EQm!cB8%C``GSc%gjH~ zKcwu)jvm2VU!VPW3F)f`=N$BgcG%`l@(rJ*-^a_hJ^qso{Dn_LJ0zl>p0n^nISgMO zYUvT(%`UR*?3;FXGs}Eo---U&(c=II(k604KIppg8YDVa56O2Ix_D~63iml0*->7j z4D^ON^i5@7?(LLnuiH1Vo4Z(InV$r~cjj<&iTNouSZeo?(%PQtKgR)ml@8yF{T@TP zzi8oB3hEWO4jT0(MAp#ejOwdOuRQZy%jDLx-08N|)Y{c{llj2jX7*hWHZ8GJ{QeS= zLR;yBNBz3ubh6{UukBdV&wd_% zPiiRdg1$mak3mB#U?`Dx21(h$;+ydoI{NE1#R!hQ{Zdj=B>-)mO$MG5k1$HSAbdh1iaW^Pl=)*9+Jn9jjl$6$ zQiDE7d3#WDTpwSdP=lZU~gMLyTu9c)}YkH(#wYS^6_m{of?CqUzuD8<@^L&)*1L=iQ zLl!D|TBgT%VAa5p`Mo-P0_T-FqdAJ@y7_5@B)mbiejeT6Hd6F+hW-(+|6dTy*&T0x8D2NYqDDsA+GueXhlbHMWZ&Zb1pqoB0iERroViGI_r5Z9_ORp-xf-;lZ3O&PTMb74 zU<^|Cr`STF*bn_s9t0dIlvWkF&PYG8=@eBgMw|kt1wJJbCi6#OBmV z-Y??0PP9*n_g-gjNon?iwpEhY3i#0ojisOu4%${ZL!BdNDc4Hm4BxQga?t@scJvaj zCDcQE%zVZCV2>4@d_v~oh4xl+u$`8=+;3ND1^w4=jG$0Mw&R7@K(4iWK^a&EkzD(oEc1zpwL% zU1KNPn0Sjj?Ka*@kw`lEgpWcsK}Q34fINb^1U?7L8tluWuV6xYSf$zkNB9O_8ne)X z=!nE?w?kWM@amZ_a=xybV2+hhG-D38&E_ZL+U3a!Qd&o9bViY&TbdCg{|cHy!2^d& zga_!_KpDrN4>yRfGw5GtLR;k^bmAPi8?xds;;W{f)A>{)YZ`h->(`j zayDaIA>)(H!bj?XK`kWkm5eoLFL@Bgr~Y!iyL{p$R1V4` z<%nXzQixAz3$4b}`4W?3vA1ly>on)hjkZ>DsUysN67dYSwaE(w1AL=>uQH-7&250FICpu>gr2c`%FJ+Ev&L51o6Ixz znB-l;W!g~5XrJ^Qbm%R8$0o?k^p)rZjqWTsK9dL#$)nvWRqBC*nX>i^?E(+u4}2;% zx3q8Dypyf5kJ_;PKsr|%Pbg9tNjJM&@r7>!Gc8K2L7B_rNsO>W1r-w?nh!T7ud7Shvsdw z$a}#)lR8XF5UXe&K>MMwjv~aOKsCUh3H6q5SPbJD^3WMQC8$|0_Q$*0nBq_*Mfp8_ zPT>QJOsZ~F`=|EW<0hH!&6DO+v&ByEmfHcTMyZLMX-|6>w5(ZGdb7K{hDqGBi+uKw zvg8%vr0OHoIc9#XnJMMRaN!wTC;KtdE~uK2KBM_*bB`T=+|{OK6cNfCz3mur^J8mU>`M~n2)?Q_S7`Bu3Eg4R zV{%m3hiX_iX_uT1HmDeM)ktNjEtJaaVU)-V?}dz{m6lH{u8prWFPm3vKgn-CVtU$j z>ADV@flojaz=4FJIao%?K^^)8)lrfS++XN2|IiVQPeo2mj;Tq`6Pw;kUVUPh9J}szk{Jf(DL>2F*I9?XC1VvbOt}?JK(n`qC37;tJ19H~nk;)c~j;^54dMKx0y%nEOUrGD&HwH z)o+amEznHmENvmDBGJzg!U61*9x`6`^fd;0XcZ;(Kj=YFmzHQ{ko1&{^oYdT*^zK} zbAsK~baUS{QCX`UX@ATtl5+Ht+y^~SB=880P??m8rQ-WpkAWto`9y=ELMf%Mc+^KR zda0yz-YVK||H%)IzSJ^s%J1eO_kFM4yk{=67uxeO-$+YHLFc*JU)q9-j^riz{iIA^ zq0KrRvQzmH8!Bxu1-yVR^~tlsH(Fu7FjA!1Pmbkm)5+5!raAY8Yh}GMEm^%AvswyY zg#M8mgg4MBk{J-$3r2L-!8xn8!wdz=)Cz1BouD`12P?7s_mG zKl`$6H?P}$?St7P{5~c z#g=3SRk=(3SFzz{O?IZNk=|{eGCddevPTN-DN>4Y0*SJs5@>&*=YtQvvF)9|gI9#xdYQ1jelZo#a4zy#uon=1IDyw1(#X678?$&`8f2e*E z$!T7Q`7C(>WC)r-4~f4A2yWGsz#j#%x~{s?3NQ5;1bq}PAUgS`Z%x%>7gB5bH?mXs;@NY1~DS?T?lW95@b zl6R!YYz%&&Swn?K95*8+u9G-Q}egf`8lUtpdGJZX!3dhIWa3y5&ciiJ`SM z$EGgv{&g0aZ5AvvF*DcfZBNMU<(Gqx=sO%xeM9ecHB9sSJNoE2tG1-`Jv0idBG%el zYSSCq3PxA;Svt=m8wS39QhH?bQ?q}Zy<@V#*&uW0Pn~&^%X!fIz@C?z)6qZrO#TU6 zWUc!O1&!a}mBzNr%UQcehK$tsEFw|$O-Kjd0UjjGH;zk%lh`>vYjk65`iV_<#7f$x zn-aTs?n&EUa*lu5U2>O5IV6gQW8{XHj8EtUBZ%f=pwCPd{UGL0pQZC4^`wE0CUlX6#gAf|2j%nK~ri{zmL$B_kB2aCSJ ztv*txL}u}&`2z(fJ8aS{v#eUH?n_hv_=+DLXFrrL%|WZp%%bxjh$>I_f9T1@$4CAMP#RHGV}G z$gr{RW3bo_J;jQ!G3AR&BCwnQg`71{XRfzfY}ef9GQS;|@19&&H#o7}JJ|f{jdO;X zKfUd3e|81s!W}q}0P`Iv!UbmO#NXuZuu`m%`2d!zvK%RVQO~3PEg0kAuj0}pkymE4 z(_)Wo87JHvkRK91vEknKjZOXRk>)pZvGcPTYWA^x#kEc5;Hr)Xy6XTmiXZgK4O-&Jf0x<7 z^2|x5Q+j-ExL9#X{j%7{iLtVpImZ1&u9eB^$yIi!U6MP<=ds!iEvSFil@Og3AQ{?J zgz8W6R#+7r;2pYXNq`_YD$A`lsc>nwCj6yWC4DJ%ifdMy?_&eKyG@lHC!@{oCTy?E z)k{t7Q<-=WX5{E0w0K7=$pdh#oMQbPJ!14DZ%SrK5eB}DlHdwZ6=zpv?r%RX+%@-S za&N|o?27t(YyW9DsnHX8G@DBIFLSBnTJpJ7(iT>$u^=2F`bG+z!T+N-0X;>8ci{|{ z!`PtqrkbT%0*C0C%;Q4aChiY^JbmZH?%w0}{QQu{LsKUmwOid`k=bT>?gTr_`@>d9 zlysn7mwQ2K&|~#0+A29H>=P{d(lUYXVD_||uc^9@rF;k^^Z(hhv!ddR+EZ#DG*`(8 zD6w{ONFvs1W5 za_j%nrVqkti8VIFOAmgf?wr&k-ekc&IA*i+lH=x-RV@`R9AjP=D?Z0|6D;$c*L)qI zHAO?;@NViez(%fGwNbgH))im|6?OP${DqT(BfUEGQ*}T0!MfhEH%R7yi5brJ^>Y#* zwm)cgmo=0PvhIF`DYoU-b^fIMf32V?nw8Plf$aj`rz6U^(a| z7D8O4mZE%6TU0CNydqJr0UziCco;F!-EHCz&))5bn3)+GYbBycj-E2J=BV^ZEwkJ~ zcB~sSf5;xgx9tdTwe9Vk@n365K_dWmhv6T{-YdVAOHfiPLS|4_D*|PJ29B`TN=DuA z$oM0X3$y3t2fIU@FY<-ai{~EV?bdKp_;a(HZSy9}ipKk9rv*=%3C?tB8E&gxFh}BB zAO9?9`bfX_kXN7)&;u=)!J%5K5t;HsdBVC5ZI(G*vTbf3J19Rqluevr_lsUPf7i$x zO^<{o$4BNKHfeK&$i*|KFRSG_2fv*`6=EUMC}I=VJG)w%gk#Mtg*d z>WZ>c&DGxNP9O7Cevr)i^SQVD7F0gN{P9hV@egt!G=6OMU1<#Ox*3nwLt5nFCYrM|) zBCp+SaT~JdN`2v3@}9__$v=|gGdsnHH=G%HF>|~5-koJGb5F9@+KbGU_Fjke5tX}2 z1x(DC`bbQvG3zLQHX*BbQWCx??f*qX3;N<+kKr#_%3`-7@_RPwEi{+O7*%2iHzt#7 zV%xQx89%e_w{VL+!28mEmmOf2ENnHel4w(?8)B6w!-_< zIW>2Ky)@I)USl73_7*I7OvV;kB7?x}L2^pc7ae(6U!jclJlI7^)URjYM_@xlctv(y z{FTfHxeab%>~Ckbtel_?f+ssAyD~hd`ukLmbh2?m`vJDxTfd;z?w@$i?wKF%94%BB zLC8lGF;Ym}!mg>_K9->}YtR^Mm}JQV-w|jn81x)>;V8e5=C-D>cAtue+mAD=QY*8w zjN{MGB;wCL80k{AA)9R3Jv3bIlxi|5Gv4+!AE%CVFSKVkH9i*P%ZzGQ9}A;!ck#FE z$Yl)kGh0+H9*r3K-WKJ}vJtTjCpnzvOuOPEToTR?x|Kb5d zU-KK+VxPAjA8mDqLidt9J(=bL2iT{DQjLsB!+*ve!JEi?K95B zK9ykXXI@FZidlbOIoerxf&Q@GK%N>DzIDn`zz2^0(-Sk&J4@=8#V$McocTwDR#)U= z(Shf<7-Odc*k)rp$=vBf$Y>&E~re^g4LEw zqffWq)P7FBsCI{$SG3HUeoD*Q*kz$kr2FK@0;2?d*bX!t$7EMHpFv$Zfi zr+LXy=hW;YcZUrYj|zviM!9pa-7h>p@^Nlf>~njF`PtrU>sq?TitQI}g_OZkkOg^g za*W#u26FgB3$(%ALBYKj_&KbOT3aQhJS(?;10oagJl zOFv~Za!(?WmzErpx-!xp{w+2*a*0iQ8|}MxioGIsb8cJvy?dfx1{pC%lS9@#9-L7t z;8X9-0l8uU&3}5FscK$Sz3!9)Qjb+Fy27nIb)u<$t!hU*$Q~eVs-})PVtGSl>t&&5!}Dh~9Q9Pg{f(EH2hF+C%3g}ZjW=S zLXCGuMmWpfF>p|hHqm!REM9`8dU?$mN3Wez->@$AYva34earcg4K;7!Vs2x^^3OTs zqNshD2oC>$&X}oWJg@15(Ec*({a$p(X!|4+Zs1l zZ){i;kH)%1+FR$=U)km)=clGxG+(`OnftM`D1KDM5u&M`CChicJ;Kat?HhmJ`L2U< zz;QCs_WSYmKV<7Xr}d!v7vzqX&E|8nmtF2W>^9}jZ+SiUo{tBcP%6xB(O772+i{NQ z0e3=dqeF}ty^k7Etdv zm6Mvff8yAA=Zk%SfozC;y8otERnD1zbb7J^Q(7pV{t}zf|qm_E=?e=Ap^^w>V~5-NJazogd3i9iKSa zd&0;)v38l%7A(#|?sbt3bp`QL^V`_5t?ws?wA~qhFVPTs!k+HDDpasZG(guOi3f=N zp%%oM$ch;>WprFnA4eagTmKWHralDxXP}}_pmeKtJ^m>@1K4>bAbKHx!Nxi^qzJ2u2K&~)P*{H zqb=1DK6O_xGbOZvUi=H){Tvxz*W^z0ED3Wv*~GrCj?&W47XL_h*~(TcV$3 zsWslM?RzyYif+hvw=>P0HxZQO58~M9x}{cBGCsCo$rvF4j)lHF}r*!g9h{pIdpz}+)C@}D&FC?H zWwhj;3Izw8fjW3~)g0~69jqO^$=aj#%A8o;J6%w{INjT?F1;-WYp4b8u6n<|n^RnN7&*+ah~vM{V`mK7VR1Z9m`K*3iv!WM9EHiQQVp zG`88EW|mX!)5J%xk_%OK-ZAdLRmG!s2`B>Or2M7_#SK#y{?_(cb9Q+t<=1HQPrk?3&n>t;P25M0<@%c9VP1u9mfT_Hy`wCd8b#t$n|g2JD*O7}Oscc& zqUfJHDfY^FAB8q$W}3p>QfZU2yyH1_6znZ}vcIpzth{p-Y=OMAM)0%{pGTo#Rfi^G z;T@W4d4Fa`S1-#h%Xd!?Yui6|bMv@Vfp=T>5_;jI zCURlC;SLG*95Y7KZ~Do3<%aS?Yl!aFmnJJi-=6tc=+@lXDo?M-yUichwcQ|lSl)8% zW%J@oDy|OyEOAS>mY<@>ttyQVshb=v&edmJ;X%MTGK55!Jp_-=q1Bh_eLu zN3uF~d;OTy$?k7vMrIe$4ccbh=NS_0%^}WZ=7@(;52v*8F^V58^C?uH&=_f(npz#5 z96BxgkIy~1;`Op&X@N`)F*`^o&l*LUIorEFyIXss{Wjk%d1mt_cWUh0_!KW@Hl=^^ zB|ur-2Zqk*oD5!(MFNwrr5!CQ^78bVP1mQtau!EUXvoKQw7$+t$#TiZz2fKbG$K`- z7g@>v_`71)LbTqTERW~|#Am!jo z$&rKS^*#UYc9e@6_ZHQPDqtDT_bnfd=UNejIwCL8y+3tJf2$7p-qaJC<#x}&$l7+ z*w_sDFWpy${eVSLDLyckdbjSo_hlEy+UgICu9R2=of4Y4-^~&`R_2@Po3tlBC%x9_ zE15=jo_#3sa%NcDkknPFA3AzTEImjl?=47FOQ^w^I9@b_(FfiI8mG~&;PLLB+^^-{ za8d1Lp)OudN-!>zIwzVgw%z_LZQ=>xr1G@Xtc~s#zsvc^K4~|nH>MUXxvRZ*dZ|4y zeY#&t`#4Be+mOr7LRt5;v0Dc%!MdRxtQq<~E_(Yu4Rd={&xl#4$*1FE6m}j;27ealKV4qj=3+(Tu5ccQ*w~uP|;0R z5mckl2|Ng`=xDbU3wXpPQ!5Uf+Zu^Ik(^RFJokyzMQbHKHOI+ZU1tT1&#NKh&c+I&D(M{>?Y%2D%lw^Dc0ee4($(q~{ z$>fv&^p>ZwfO=Os zUo!E_=!x+@;TIzb`;?UQHOVIIxx!0Y;5&77hANb@A7s8t+z{U6Zng(Hy&P};InfQ? z=+FgHE|ACGzE-M!5Hr(*BGHK9a*V%64vb+O^Q|LhOP#mJRY%?4USB&oe5;+>alOob zpTA7v_-mz{j!(*O)i9s?nT_eIW9j4@<~sMU=07qM<9kb49l`P5?09A$EUUNJGE~_g zue*bh3p&ABT2^FoZsHCHXWI{nH?|xY?PWgnuZz#Ke@M2bR?6v}pZ_DBd`WJ3bb)ue zIm%h;e$nt~>&K}-G8)~WQLIkxBrh`L>_ox4vs#K*R2x?W$`8SD^e>e+x9^&}qxsU< z(W05UiYK`2ANJD!F#Fy{S^|5yo#g$VyCU?#;v>8|Z%}PKc3yI3=0|CrHj!*k;UMcw zcrNZ%!RE-{bAJK)*WpKuZ^@Y}XDw|m$lMZJ-?&TSSG&Kj-M;^mS;_{vxA|iq1#RI0 zsNFHn$sL^MhnISLdfz*5x~(mLhR0{W_NhRLUb3pseHQQl+Z`tJaj@{uGc&L%=~H}x ze3sRR=H3u~*SWCzCFfz=DrM>IPWE+)ZPbHlo6ts6JDz&hw#F%zeM%R(wa%&0Ga?1a z{k_++y8jd^^pw5ycy#zd)KMtkkVi)^1m!TlhrR{JpN;w}tSw_Eom72VZf*73sm^vs zUz+GoSNpX1cG?9U{L`@kT7t^%C;fmTSZiwvZbjxJ@@|0jTpGb&NmOT#0 zNbjCNBN;C=r%De?+jpqCI$zQ@Y|f{twx$=Sd}0zEJSnqZi*DBWm^HTn9!22urtSUQ z3vxI3hhCT1k;&EBr z74vpEVu#2&k*Ug{MC8wmn-PmM*c9|jY;(RWa&9!`KJWhJ+}boNdU@t1Ij<-w$0$qY z5Z|dIie@Erg&12x7GRK9>!6B6zWmVhll^n#^u4?V{_*n@{akS!R#M ztMg?u9%{ZXHQVc6dsq91sq6f4h;rrj6Z^2#B%;-IAjV7j>|d4q$C_M`SM7N1XCz~( zljSV>OZ)wVf0Ts-$VIuY`oMXg2eQ&E>l|&lsvDaANUlESp0?jz9h1RYE}r5+p^Y5M zr7tDYHrlP!x&D##ag=*QW{mkZdun#a_G43J*=YJL>iX@2Vwj9*>=#pwWSjzv?;(7g z8a?>;0VUp!9-l97>U-Xuk)u)#bw^azB&<+Go@h_GJT3JLc}JrMimU@$>4+8VY$;Q0 zW~L^3&$hl0+tYnE^SNJ(n&e*K2kVXa4BpXI?3EVr8*oKDNBbM`cG=IdQ%z-Z+qNfC zhs|0QJ3;orvx`UhRxWF-pUZcZUl-{gdo_p?xEC7E(qeID8}|-(x;M3YdUAU9l#cWC zd^WmFYC&eYC2o_0Qx*O;=}cHwOznR({|fWtpR+^L*>yc5W-jXpQnndg5+0x211M z@0dN+T$pW<^I!%mo}4+P`VZ!kNJ%{bQL8@>@kV51HPrk(@2~W8;So1o9A7G#W4M46 zprSH_Vvm-M$$#XGX2=wS@FMc3JI$0NBH7cu8Q!w2+ffU@G}s?Y*t@Zhyzrgm)cexXtPl|?*Pj_zLrM204P^jQ%0tCKA`aF@b*r}0+ypt0r z#=kIw+?f(l>-8eZmEole{d<)`p}y3QeWjP!oj*!@52cz!?w?jw&3vJvB)hTtn9Na; zQL@LUO!h5t|DSRMjSe(nNPLgnl^q;a4>r85!cNJ3Eo)pk?|xI~TrZ`Gx6!-Kq8Hp@ zk2W9)`>EuOuqvs7Pdsd{kcZ=Bs>St6kv^t2$@~V zNO|j+3!l_~mz$yT#FDb?VCoQgib0=ef*k16>;?*3K+SqafuHYZAwLr`Nmx@*EkOaJbQ1^ z9mWSRG2&oBjKse6`dn1a7-MF(-<&UNS~n-tw14C8som<|%3NR%mNpozY1404{0g!f zD{T>PDmK05Uyt+;A8CIz&$(-lKgFXq>)~pJ%q#3bHL%b+J3@RUAkIA!8ZWyIAM)P5lISli614u$xM4Np?xupXCXh=m!|kcpWon zM|zcdICr1D(=GB|m38x1{np_Xxyc@)bv!SC9fkYLyGB^dWfVa$*DbRbg=G$8&YAvp zbZTN$sE;$C{@;fAnX&TR1^m8hRhd1{9^%)9*Kh}!sZ`4Hy%I;K2G~pG{;h$&exaq5 z!!8(wdG-=xE^9@Mg~%1Ji&SU>Oq4EeuQy?P>h!k``#$_vrc3*Z(1z${c`ojga!vCo zQrZ~rBb$>N(1%ZqN4{US@45p8=fAeQ_oMmJo+oG31K^v;hN#EanIZV;n@U02*PA?PMli5WEt6ZPHKO7Yhy~&MX(smAa27o?&li%^vajEfXWB&O5m2%XG1~ufNM{ps)G9ez_Oe zh0=!5j@9Oi>%TUS3kS3<^=CWgb~5Xv|2(&tyL6#}SKyte(!gyjT4xs602tBoz-!_S zgi~JEraNWL{rZ{b&pR-)@3dzc8YM#PEWUviIr;(eVzh@PmQB__kZbQS~#t`W1N*KkNYwb`#(Vw2QW$8?$XQ|j5u zF%3I7=bHOuzQeul+jbxkdfCmHJ?uuQS8VrfnjqirGLu2(<3RQ!-J`v4q!yCcPU`7y zE$&R^2+NY^uEm6p8K-(LxOg_4joQ>43jb zyt2-T&^(@K;oFNGp=}+RA@7&O?IN!Q(YltGQWLU8waa3QvOC(5GS?+$&Bv$Aw>jN6xl4#5V=8Usg=>TWF4IQ>|WA3^hZe+2n{9^T_QRT7VMG{0c>a! z8l>Kc{^5muo~5c=9?Ne(|BBH2xk%NMt-rf7Y_ZJS+0n_2U%gd{DYcs-qiln>GSX&0 zl&9NGNZcSTt48~Cxr{uA$?xxI$?lV<;BI5=f_q{V4R+VZ$EFfP;u>?Pjg>ny>W!@Z zojT>=ma}4awSM2wocl`9d?YRPlX@kh$Fw1TJ(m@V$;_)<%Z;@+j)_x_4|4c z31T!9zDuN#{9WoO9vw;aNfP)TxWQiVU3}i)p@aAwJ;OTCsWG`;t@51k@adIPQcpHL zmwTXPTW^8ASlTWX%Vi8@9}n@OSd!^w_DOGVueXhEy?L$m-PwcVdH)LfB6GzYF{)&? zgg@l!Sh*M?vS*J4dd(Qa%mH5MQ$3KD+Pba)3%9d($P-fvQ+vVp7mss(kY`WkLlY8d(T~gKPPPMtJ|jEaVN}>bS{Hr_o}qH2`OlsG z6&-kkC+H(uz$gmG(6qqLblpVoq^3&TwlR6)rs2T*9{^OC;Dd%N2+B@g2PUItRrx(PYj|`1p>s@0u$a*;xy7(NXFVcTgXx{X~ zHk|Agy~4g-dswE*r=^-rj5FMq5m~;WzGf?8o??bn(JP*01#j3xguQ?pjTTh7$I@>n zjD2xN`xS4`&gUjIZ4Q^kBW8j;G3+lXUnad_UZi}*Q;hQ7lczki*huc!#DdtS<_XDJ z{&j70fOoO;jI>S`WR(2QhsM&Z#-WjnAdFSSgy=t!5M0Dd`~TTBP50Q(nm(F0x%r9g zsJ0X9D^nRW$Sbq=3JP%Z%Lj0oev^Y8Ztu4@*iG)_=+3dZsZRDTzh$sMp?~zT^v6PD zxXfP$iw9zs;M<+N`e%;bHvTNp|SXKLb-tRW#kLnsz>p02`k^3{y%i`Rg;cHvxN;~w6 zr&A6UJ3)$g;6nfRM^vNXC9U8e7&XDoKe3|f2B|Uski2)2m$V)Jto{1x>!l_7D%Ndp_CJY)yZ98)ORz#s zdxT~)yF>Rtqll0?(gC?(N-s#%RX%#elEfv^o{h6=4#*9ar+MuvnPsfCNS^OVYn0c! zYUx{P`qQdw=6oS7pnZ%yatE;F=9L0G>nUgX(k-vK>5uAcm((Q z_?kf5#JOPA884h76Tmx`p!Td@%AY;vM`p8$@7nrD9?k8Z_@M39)HCJ)bH0pIU;1@A z2_jlmD}ffh6U}qSHT`H-3ROi2o??kO&||cuzaQ6A7Vpe8G+*yPRF2?nh-u*ldV>bR zp;9wG^`==D`Mhp*@~%*~$O8>`CD+Om9y0b5>4V5XG;*Nt9TbaNuhuWhT#$Xsy zhhEFwV)iuC<(YMGqpKhBP%H2z^oDk~le?J<<@e`wE-B~aX|l*e(Q#HShVe*s8LFyX zw6&}BbT@wvp=i|3O0#Y8H|)*n{iodDylpaH`$w|SOtedc({Q|-??LfSDl2%5^tYFY zd9>Tz43zI6EltX}CC9|K;4i3NSe&3v&TUsmm zb?3Os4e{?yljH*46l!E|dq}&)H&F0xN#2>ccFvb%j`2F%3TX+=Ds6d4&LS|W<0ANx7+iurV?QNn8R^Ntc`w`}yR!D2ij!OVhc`9;QTev)i(f4f`)GgF7@w*( zh+Jrc{**FuW!&6EXZ3$AmCBkq_$kB6gvtudQQbgRe$48Z=-{QahVJ{(u~X4f1{H*1RS6d!B4xl^zv{u5^;}^ck&XoGp|Q0u2s=&A@+^VmO2Ld| zC`Zf$9b!%VJXFzI_==}MVraF-Rd`;FK+AG7+JDUcn!J7PkkDT>N6S4P_uHMt`;%{! zHAndsL$x)1)&o(Ej>x{ha4V7x(lV`=rPtbSQVUCmD_~)!0S;)Z-N9GpF;G`~?^utQ zvSrzs&C}CYHhmWQq2c-X5s`}Qx6TP>7nyC|DdP&Wi|&$jpuE_feMM??m2V?tUX7$n za=oLE2(1#AD@YSmjCML+V;^cks_#R^kHA@c99$0k9!F9$`A*GbXPep=!wnL}PT+<$-%Us8{K|y`! zYK)21>vgnAuI28{7pK0e-4aVq?^ZcIbl<#mcy_iZ`=Ue*^L)QDIKQn(%Ev3dRmM7r zu9%h05uVVJ&@-Vpt6$P9PuAz$zx|d$7)W&&U((6}bd@NG>;L21Xe-=b@VuW0C(fuo za?Ur&pJ)7&_{9C%-OF2Qr-^3DZYh~Xqq8!CNFH@3`DYfglV||^ElE$6Yh{^V5;scU zL9F94)(legMdboNG>gN#@`-gF<#ti#+I(5t8K-`moK^9B^_I#Z@vkcCawogfoPlNs z`4y}ULT$MHMI_;CoPA5?yWNB<{N4pp>mzLoZ*49!Q9eh>lS9>mz;AG=7uEYN!N?ia zW+Dmr!_E#6bCtW&;jMg+k8OJ+S2*{?$-hTGYT3o<>YizO*`!EEMhoE#*(l!=2*L+s z4z#1->mjdxf)yPt4ZS1l#BwB2GWHs*u%I#O@rXi|F8a*ufGcF%IIp@68g!>D_hQZA z>6U77wHviN^>y)U`u4^oscj^5m+@N%tI=r7w%#AKg6d*`^~iU!|tikIQxUqPcI~ zHdAj;7VJ_-vcx^)Q`)e<3U5l~4nVRTJY}`R@7wofj3{ln+}lIiXFn1A;I0a|A@|fv zKNJI+gdS-Gif6>{5M`-$Q?D$$XLQ@txI^yDI;r~1JMJWNus6rtWC|rCOdf1o`;y;A zvEa zMecE_Gpef+XJnToesP|1#(P6do%gn6gk)@#XPe`}OGGDnNFJb6vPSQS{-KX(U%Blp zpXKde3oUv``;1IPc&alc;+J$aK)oNMGC415!ynpFP3BXzt2}XNd_dxi=3Klcv99@| z_<^R-dBpwNT;iQ$Gu#gI-j#cD*5~75-+rE2>}sRz zil7a2oX7xupyg8gMykQQVw7fAiGjgNZWL_FNxcS5Vhy5B+E7W6!+}HcE%w~hZ_Ve4 zA3{Hb5}}L2r+BT|8fUNEYvxez9kHeX;sJSnM~S^uo`?I3@LEOA?rhW+EpLAW2He{3%^K@j9YenW>(c@j39lXpBWGfW*b z;IH*N=8vA14PO0F zKk*fNlJMj^`;0#>l-iqQxAt-wJGn;$npiM067I{ccfM=S`DCxKN&pSjk&g2!U-piG zgcW!YE1%_ha@V@|bN|#XKXz2BD#(M3}G;@S|ruUfq3eiiF_vj+lBK;O@H_9C<1H`WAHJNPa zF%E&HOmb_WQ_9RQ5Au(RJm7_nS9(7-^Emu69+90TYIi|DgrhB6!e5294aZ`=W82re z?s9jL`&S@p`>UURDR|*O4O*@%3Y~xIco3j3OCLP@`Rs~h zan;oL2kE~<2j@1*Ts!M#-1MT=66>7c-R}J&ccsf+G4d?C)qYzt&<4%7&(tsD))nUfmKk>1ojgQ061M)azzO$`e|n&N?$)@~ttMabIVj@FlDsO5-Q>Wy%-k zs?3AbYSpd+4?fn9${DkD%)-ml4*1aZ(#k`Ue?)(X+>-jB;^oMpD@LX-v$uI?n_In7 z^OC7GcgQbZShI)x=0zX7R%$Xs)ZW2)^@hAFKWG_yBr3sfpg@nc2D^>XR?P;XFVy3m zanzS^{FYFA=GEK*b%(^yPpo&ZwO@NPz24>^Sy8)Fo= zSNlr~@J4+@Fe^cK@$Z~xY*P(WYh%4q*9eG^K|oz_$gy2l8%`dbJ-n%J-Rb8PWvAI! z&2DDCcf3T}<4mFVr8(R=NPc;G8yR=@@N4nA(%NfKsI@AWISU15&j-mn)ER4`r#_9W zC^keco_!vaR!`(h$*oLJIRD+~zirc__ask@UGH=<8@-dfcfFC`_X}*S1UQ zx@^heo5N#6XEc4--aGrOX_9A@-YRRJugNo&-j(0MnB`t0znN1fQD&vIzBM|fU&sOa ziiczDnCI7VmaF_O1XoqRh_|t79e41JflhHGa-O{+^irZ{cGaw3WBppLc5gFBSjX%q zPoUb?TqM80u%}rocaZiJ{jHYV6`l-9(?|9Hibi!*QE`lpf`_qyUt{BLaIS(2JV*zW zs#Qo_T8%$BIoi5((&&aK!mHh3rp_MXQ%R^=9%A=1CKanWQ zZg2Lq7aq5#dx<>5{W7zoJUz71Op*O&U&uUUvrk#?eMAfBHFkw$)L*HL$eVzLl}XNn zStX`;(0Mq-eQDqqzwABG^uQ6vL~ARKbNi;BO03P5<|^#E#q+&q7pyWl`Gu{+P1saP zY_LIA7rXde(Whq65;)jrrgjNG&=mF+fTzgcV*q76&smkNj$Lpw7@LQ;{ILI)_;1G? z68kHgY@U~0Ex$wYs@X~I*sK?if1Ytnl_@fd>>_{d3@<*|?;|p&oxo1jZ?bO)BzwSn z$wNS&@4AMnJ_z~31LY^Z;e2uImgzsYK2bBU_e8;Qw)c|xMr1V2 zR7jTfCwqlYw~yEYzk{T|mBT$N&fB_e5+7FbjoqlGWbWt9i&c|fKaRrQB~j(4xUt#V04W$xtIduMgceC3^&S!L%s zJ314*BkVKY4GTUslbqG^i@3+xOQc0;;S=yvD(N5+3ZfRM!I^$ijuP@NSpc0`t3ZB!Qolsm0inS&PM`nWF}pNVtENso6wb#`-;xfjjT=1g;(aP1`H`r=J``-HO<=&&tRQWx)0nU1PLd|e_n&1~gmvvoca@Zr1Rf|OC(1zAd{*m?@ z1Vl?9;Ht`pl5iE-P)_`gdsSmod|tz@HEY^F&;8I;mRg0MyX^-^YS@-+8v?<40z z;lciPtz=0V%ZSQYS7U}kZ&ly5clZg_1NM!nbm*^gKsAT6{DL_?4+NS!6>gY^qd!*< zsLrIOXD)BL-5Hdt^}3p~Oo7>unvgr$>}TIJ3*C%7?RRInn^Pkp)-TEQ(GI(3v~8pd zjdH<&juH##6-A_&;Q)wuF9}agpE~=k#`hDQvqdeR#lOs5mb=K5nnN>3Id{nuQXe-r z$g_|ivvVY~tvha5J7x}x_hcOd49aJyYkzymCrHp*)jZHB-$4RuoyqHH4M$3nWub1_ zNY!)AyCf31gBl)6f0|nBF7*D${UW;rs=X6T&b?E9FGQbG3-4K7BEI2?E$BKD(h&?udBFPPFaPE*VGmov~kpp3;wC{sdKhmJI89@CC~34pa&qvky(w9=>x!ee9mhg`q2Jr)D#f*>dEb)I$0Fmgnt6r`q|(oMT$;8h?c4IUzi` zmpxvzOQt25bf%CoyZcgC7$y@$Qu zoO8V+B@+2lG6GmB_jhU5m3GmTtx~6lpco;gwEsoP)fu@P(*LHuh4R!SzT=)7AdR1bwLFCzl zKUfWWY0*^Vjcj!O1|{UCSpm5kZIU}O&E;-pD&r>-YUNb+udKs1cCYtqGFvXaSkf#*8&dkWN~;@ z)Y_|QgM5M+j_|3PL=9F%=m}?wnom0F*y?!otfLm3drj=bhU(1w-UM^FcbfONcT09& z_7Ahd^zvTG-6c`|m-0Ji|4MI_HuG8Vz>EJ!)mOk-S$ywP5>nE=%O)+|-JJ_8+a0&> zePd?cr9lJ{0TodcP|6@wN>mgJF+foaPyta?5G6!xkpJ_%!~OdEfA+Jx_r5W6=G2^X z=FAytcD-`QQ}3g6;yl1SqD0T9{)pQ@si(CMH7V&t86=f8Hz$^U*lk0>6Qk-)OAl7H z*JXYePFL$iKwh$zBcc|OwXB(Pp<3&tVGW$ILC$eHVyIza+oTj*)w#$TBgr$8iVwJO zX^KVpLR&3-m$H+X)30*r)T8MydRB#%`EAxp{~=LRHN+a!J+ilThrJoH>oJ?E+i|wx z1F*@oJdIHiB|CjDppXAJT5EJo2d#goT@nk%lzU=w`@G}1 z<+tt@f93unOVux8r_)$`B<{7|PA=sln{MedZ_}<{RqHphb~rI7Cz2T~=d0uWQq5E&)B|Fd zITbTo1=&0Jo;?_`US{;r`l8Ru`G)+Uqh&fDhulFKW-pXT(uZ_UcJA{|aqkfZ@+0AA z%}q@`Eoro!30+cPb*|NWN{dZXgMkK~<$>}%b?QR}rOR|fpY-Rm4bZ4Lb_y%yqvdW~ejbBk6L3=&tNOTSR%)g7VHDx$jVuCbc+d4+0X|DNz8tXqRkXhY?zol!HxzH7KEnZo!-1Dc4jy`GReINKa z+wdK>?r=(EXVrgBsXcDa>teohm))&kxpk*9XI;k0@y&r5+QvLzka-#8KW%epNXQpl z_i6*oQDQVMlFfzqOl?Z8(7eRE`UzGF^xrrTL|RyD*H4d-oVt7v)DXL|%0^p-)?*FV za-uY8z94668ZpX8%-!yOZzCJxOm|X|+@&eTG3aa(?L$)=0-B78MGHsu&Rgq$F{NGh zn-e=_zbbw}zG7SXm>eoL$SvYbQOnYFRN6lSeMfnT0cWtHh>nLd4nhv<=8ldUVpWDzeMc{%*&XL{msc`IEQND02E?4!(c|TL-vG&JV zm^<*A0w%6f(6432v(_N2Q_AnHTsX*?Nrkt${YLxNd`zf`5j`^j{@_=`8zpX@K0J3t z`lP(LX_N9xGc%18In}AA4j}G%Qw&gE`A+0=V3l84ugN^D+*5*D*cFm<92Vd)&lvZhc>(t{DyJzO)^v791afniNljW2W z*AeGj<9U4A1*j~8=Kv05X~s=;EOol=zQNkvTJc4r}^ zgt9`KaMscFJsN>)iQyYOj5H%ch$uZfwQHP)o84{{si8no+m!(>D0ofc)$?#{y96+ zib{6ZirxBxat~GpwTxdZrgDzLW6Y;Q3;{gYw56rfpt;p30&TiCr^pRTu8>Bxukr>hT^nWs< zVd5LKQ`~(#;Yt4EYkTA-hvsHp@GYGDsW-UbWw9Qb;$AgXtiqWPN%Gym3nim*7SSSL zgg!92f&0AlxdPPwdStpH7H5E%TN*_7M_8kj`2Rl<)>|vEp_obWS;j<9+9>~5lbg;+ zH!tH9nR2sGslePRE~*%Narn-_TedAmA-kIIXwQY2q?$(X&w0tfX7a424!@Bi{Dq$PeH~tq z8k4qn=);9$CW)-k<6bD48U9*bbe_eI>Q(UhHpq?YRoORm&eK_i)SHNVYfG^?@)xMj zX~pVY&^pepEs#Xqb>+a$^D%=VN)P_0zT#OF`YLUuuBx|wT52R zA*Ik~aq%ro@SDbkwyCJ=36Z83aA}?ouba`f^SRM?Ww)InN*iM}?>(o3+^g==B-|gd(1We>y5D7@iO-r2oPjw4v*w9nQ9m0TX$U^r7~ojPe^Z z!=o@nb0X;(k`|;LA>w^%Q*c&bo%iU3mPLFnkCm9)i^;&*ZPf^kM_gf{?i}CmY!n?11TCGxZ8he zYOCC)Q`V24;Omo?k^hqXP<4c@@szBs-oWX4H%r!8HzKGR@9uJEpeLkDRs*$6{bn^r@V(eM{(v; z12x4NY!8Rz{y1xld_xrZ10~}`oYM+fVq9fn@2H!DPmErX>a@b5_|@7m2|6T-4b737 zHwhPENOa$4tb+CKo@daX{S=C)FcPe>9y7$`CPA0O@! znvgYVeIWg*DSI-H1P5dweq~-#2~Jn>xb0JOMS}X$tZi&Dj;U!*7^_dw-H=JJf;oP2 zDeVBwAN)%#%YC^O@R|6~V~+O8cZe-bGs2&kd%}~M`QWE7%}-}%PR)BAe2nlVlj z^@)>@2t_$j3zhO4h!dgq<~X(A;i_aaV1pGRs-maX;0Dd_8W)5C>mYKDEqTI~N` zy#^S#dfgJT$au`{&{JGJV|*h4b{3)0GaK-L3_o|YzQee~Pa0NAilz#mrGybCmzI&Y z3-30%7QQvj%IsG3r1$Q^bKzBxmtve|H(PDCA91Ry*TfiA$G*!y4VL1w(B;gc;!d1c z{BUKPb`T{(pH8J^z;ah}|nlCt1zvN}#1`<%Rhy=_b6J+@_RwBA-L zQH883xP$uH-RTOuojbT`iE<{_RYdpzb^p4kC)WJ8c&oovDmDXg5dEL|2PyE@A zEtqXovUe30My@!2svhuVr>cj=D(5!)&$&;F5B(K_7o8YrbM8%|$3}Uiez*gFV_~6k zO+wo6D24c`u-4ESXD0% zZ>gM;a=)`qj<$EGI;E*ty=&<(9@7bskjrWLa21p1qtO;}IUfJnPcm|rH3zUS!oaIh ztnk0)Owv|su!O8QP7TyppP+84p-v+;#hNX9_%rf9MMdV0 z=u2}WwK^la3GkA*TEq4T0mg_p0L}-&&wu?#{do-&$4^}FiDZ9%;g*8B1sg&Oy;;St z_r|CrJ7bXn_?^>3ZUa8HnVal2g%yl;I5D#V`qKU@H2|wP4Feq7=HL~! z-P-vC|MhBMlrP=uZohnnIzvATNzH0ubWB~H@u&CYaZmY?S{_&ci=sqLg`R3{zl(YP zx|n3YQF0*nTU7k{%^j<@LgQSHtnbRJ-VwldU5)_v=$>7y;HuW-{L7fT<{CYR5VGXb zlr*FGmx7i#P164KC0pl8yC4sxo7!V%scAA6*hn{D42&~iuR9L{dj7CZ3VD*VJELXP zn{2TS_9E-Z3+*U!0DI*RIaPmW|NQ38`uPj9Pn6!9dAK;7Su6J+V~qE=qMhOuHB<~! z_sR;ec2ZP#?--Nybe6lAqZM8med)~PTmB8M(NX{nocAzB7ZQADfB*gEH*KAe1Kp8l z2mG5SR86gtS9#hrV@=Vrz|+B2kUms_v$b+i9CZCL_Xu+?!swBI$2H~uXrOsQYk(*(Xj$bmge0NpwFzHk5Am;_ z9L{(@Qql9iIZGaeonJ!=)OVVoOuHEV&_?U3tWw;!bOcT};cQ8JnQO$XiBA1M&D6}5 zL2bvn74~qp(0}p}g^9eVxkSqjzY#~!P{ZHPsy5-r!d;QPa6#(7`QyDF|B&#TvxchG zY7H{US31X4!0PS{7cJ+^us|3i-2BT@ z#i=Eh?1Bu(L{y@jj-1pEI3sri{G`39Ykb|2r~9gl4_5Qyc|xqDMcya95@1{LKYOOO zMD=Urdq+7$ONyqFmYFDqG{#zu45dye*;rB*o*b!|_Cx7Oqgbx6E;yZ?ddL`lM5Q|I zRdZw-OjdL4pFM^po$2VG7SbKAUDF$wAkQSa97AmD>@esDmrwM#iJ9o{Ev~?G#8i|| z0NZ3=!8_UGy&Xc$t>rn6r=s0g-6rmoi=AxfvE%A_Ss#^PZpbaA8IeU+ANWa}(>ZU| zfEFc9s6lAOX(&iDtl=ZK_&?lhdJs2U1B>d>TR56NJn!?oExtw4V?2`Hv-HJqma)(N zT+R^>sZ)rOGalJT{Nf!PxuV{4`(_QY{^*z9Xmh|oKA}F-6`R<566nU>^_VprQD`(Q zxNgNo4o%;iy+7Dp{AiW8U$??`6DL`%opo4csJ+f~dDXwv z+z-F`JVwr40+do_Y9(X;L3ey&M1ixqra5{-T{o>m|AUBqYMn}YP^ScFceE9CrTJbTeJM98ixDv%& z`EK~s2sye{(WaIk?TO%<^Co)Keg0oQB|Ms=wSS;7<^C=GsbE`1N%$qvAos28OHYgo zK5twV8R9k77CD7a$=6g*`GVuOua`vZPKX5Ub@8FK7JvC+Y&Vec}=M0AB#V9d#*s)u^lXAp{hC$o9wA3}1Msd(Kf8vhc3u={& zD@ZAtlR7>)c1A|HyU|{yA?IYInl8O+m&%L87|QzwtQSTf>8n#pX!WvAP6$f9GjE3u8iE(=Qgkncp}3dgLSdoh{WSoT>1- zd>?xyuLu7rJ%fEzT%8z>U(RXlA2JD#lw+!YD>}hGk}(r&s<3^{i+a4oz4jtCHHeE_ zKiMm{yyQJL>Ew`U-u0n|nc0y??|CcotnF1})h5LMhN}9g1)e2*=7XM}#0j*|efQj- zORCdX=BT)ql8A4##kD?4hCjsEie5i(^)%l34;osl{LXa*{s*u4?kn2tJ)fO2Ea+=L za(i){wZS*e4j|q**|CseQri*g7xlJm_!-}=8A*^Fu+JYsAkUQwJYI_En&AEi0 zIC?^=;m|fXd!@`oWrKG$ENx1E^WGL&k=1D8uJC@(oPvV%YQY}%E4B}FieZlshvly_ z;M9^g?19C9!=I}$a)dKctu>wuPcgRH6)|@5AlDa@p(C|T&RLxvqK?;5 zLsUfT?3H||^`VC2|KovM9D%odv!|{1x6GV9Ql?kS=;=!`im-#)kh8FdV!n7lbWy*{ z+5Sl6s`v+Iq%pgP+0Gn2ZF1tD*kF8IOC~iU?H>00-^evSqWqv~p)o^x;aT~2NoIOK z-=WM`dXGt8H1J2yOX?%l&7L8a$tOiuRa4w_#;QX3QAsD`3bL{@fQxuwKt~L?M!{3o zqp)x{4O^#=P|5wI``5C_9<}`P84ZPd-})o>uDtiB&P|US{BFT9?;&FwDpUS#hp_{8 zshxye_vd9vE5E)Mqs(w#M-@azI~zD>=l5=6^~esY2|rN8*8R z{6`=CxwUvRvaC>KmovspQu*OA<1=0kCR%>8pI9Ilh-~??eM7Cqe%JxdWO+smlDS37 z?jdwd0BUIVzQ)L@!&{0rFZ_>xUUi>K{vbz$q@ zp0j38A>otE5*?iZa+ss0o3MWs9pSt z@m>1fNi{r%@yFedf)^Hv?Pd3+t_y*G1)Y=Pw zWW94x%v5VsMW>1U*BENGiS#kAp+~K$NC)oy)=)6Bh&DM_j5vM`S!MiZ|Gc6h(-t71 z;+-f?c#pb}^ksxFx%g1=>tj;Wd>Mxy4|w(%AAmNMjmOk0s*7r2mBQXRtGuDDMoDm` zwFNL}`=1%T#7h#Q8`@K+ug2_J_C@%jI)puIcxdHmIJ8xyVI?{xH_f?mUnsf)69T7FeI@S<5_f9t%ds>>Z}l-R3AO6Byi?h_+J-7M0BaB%&f z{K1)?UK>YEYm1|#R42RDJxCYcliZMa{b?+zhGEoA9Am9v`Vo zdo((3+QjUYqb3~epVZV`!cXzgjI0vQI9e-XP4T+mdT;5Vyu7(q9W~9Wh@G6%R2A&` z8ZYlr-`O2x3#W_qM&MF-yxAVrA4%c=JRN#r?1MU`p4%UBamBqx7&N|^|IO&Nh7plW z)YoVN&(}TGA?Lbhi_ggXB5RMgS9r1M*s<~=dj3Y`s?X&v>mm8Mc;C7jJSc{u`Y?Of z`b*0urM@QoRkls2*f$~4)e>j{Xi7CK>xXx#b&<7zXvA%Jwl>BepK-)D*G%#r&)Z^t zZ@eh{(4pU{1K649*aOAi&Sd*7qeICCMBF%sQ_m5fbrDh3@f*^$j;qO0^BnhDu|^TD z5#O}Xb*6&GzRpdfwVY7a3;Z$&RH%vyYOE~>8!E4T=z!75q&6XdB(t%+ML<@uV9m#eL>J>sf@{ z$_g3u_=x8^$h)kM`?tH5?db6)6&0oLjugxG8I#8z_BONUiBZ;Odx-2TPnpZbXYl6R zt7~QTRBhu8b<{eXFGDA=Tagwb;UGMECe!v1tDtZOq+W436@D#F`S>4X)D_y2;V13| zpP+4q*kc^Dub555uZUdtajKbvXaA%QLc{)I zZ80;|Bfi@O*VPzNr*O{^6^h=unhH6-|t%+6lI*>6| zF~hol%AKAERLjh5UB5T}kqPGAvYUEF^;BT=4zGX|CXW8~OB8DC>Z zc9txb(1p%^V`St}wV|xBIwUUz>R9i~iQq8Kgwd=bLZIs*ag~xeSeg>V2)RY;Th3El znc&VtoOc5&rYRy@HNo%o5Dh1NSmiTGzU`kf{c@;q#$8!IS(AMotwkcscmmZYmZ()u zJ@tfjx9nj(Ejy}AXPmQE?)I$+))B2ytAuO!T#e@3z`k@ej&n9+y_%Jv3?PQ1!i zZ2~i`hefv9?5t7`IxqQxA`xfJvrX>*;93M>qU}y8=dL+TIYL8wftrq#BG1zH67qHBC4bZY8UCW;f2S@8<=AViV(YXz?_^>XWXAlO;Xj?uV%A*b zhdaydzx-brPa<|jyNUS()E(LaiH`jij$BKDx{-HjcXLgX8B8rek!rvO&pC?&wV?@B zr0A)>$4k16KbX-|oHldh0ri(N3Ok@y;Kc94GNiUSa`tobM>WG7720o31&6VJW|)v4 z^$bWYJOI~8CwFEB1jK^&MEM+Xff{n)4brCq&Q|;f5b-=jQieJ+p=A5OX6cE;rsn?~ znqriOZF4ca9-lCgxi?#lG{?)Q)rTg+2UW;@q9&Ue&QBi{>f*Xi$QlA*mx`i_p zKe=!K9sgrCkY>LC;nlr^NU-GyArsH$p)*75u9M~SYLR%Na7P;el^hvzvm0M~z z?uCd0Jd{A3_KjFyP4G}9d?r@76BV;nQM-{Un>lQR9@@>hxE$tpw~k zO%w}kr9KhD`?6h(bujH8P)jh@Px=!V)T4xgvnB3ewIWfYFX~Ims6AziioQyi-th^qJ_gR^PFClI<{;mJ~6YJwib9JFf=D))b8x{p||ZmqO~kh?>kSa-PVU{6Fku= zh_EKwHLMrrbhS>Ztib5vHIi#&ZJ-y4;XBZNL$qBTpS9fR2rO+P%)EewQ5(X;@8n2k z@KBEqap56NTuQj_lVZ@o!K2epW^5grgjm+c=HkdN@*V7qdQ9Cj?{P%puVZ&z#BOMP zEeRZGl|m~?&u_#I zqzCqp-cP|fTT_Ve@T@kjtWe%*acP@@Z&P?kt9M1LKA4xXadan4p;Voj2 z^ycn<`b8W)y-(hO+<+oFNWcf%tYj< z7-FsJ>nwr%F2$L3SDd=yEfHgX23|d&W}7kg*I6G)p6*FFINxea=vjyP5qfNt*kn{D z)qcA6leIO#{)mqz_;J_Z&<B9Ut{LeB+_3U&kc-8pCK5q>~-!r^_I6Y7a zLs`2-d#u2F#Y-Z=d@ua8U0=NKzDb{syKU}3Z`woFI#SC?Yqy@d_OU2WguN=byCJZp zcSh>dqWLD_ASN5+zny)p$D%10?bqbX@?Npg$+QkzBeA+V9IFQ@*k}2W`rJ-1yNRm7 zomN9>y5rPqIUQX-VJv`@W-frXM<~JXLslsfgn^ve1pG7#-}PD$Ih0hS{DFf!k*o`C zdr!ET)Y*U8US^*Z<TrB|x26AJDOt%PUvzGCK7lgH?tHS>-eyC`LS=F+4@)Sql&{VeLv z?S{%Q?NNa;SL8#Z3cHtCON{sYjnxG5qpLmOM^j3<500y& zNcK|=oJwjvY}Q92twQgJ!LS{fi9nef35#6s5#}7BYh(~NkOnskQB#b%f_;)7c}5c7 zrT@wi(LW=El)0G5nW9-E_vK9-_UMeYCCjY3;%)UavM(Er#Cs2nf5!S(1MkKPt z*dXhv;cl;p>L40k9qp8N$I3V#;b9CZ2|TNH1$mU*N%-j9=})v6h(jIWAY_CccZNhVXUXn%ubIDK zeR@D>nLMaAIHfoN=igZyP?c+%>}XaBKQ3NZU#QV&i*?#L%F1XZ&czCOyE)*|S~d~Y zR;hb6camoGcJ%rJuSIjDXp8H6(1JOC4)*uW@+^^0I4$f)vC}qNbdSt}ZtLrelO-E{c?siyY3R97hw3zn0r`9B9P-S;PlvLccQJ-AAPHqwzsbXRqXN(u}ql ztE><{Xy^RzvR@rL9xF<3V3)%}dzF>v^l?^WhtyGLkh;rx3pFZZWW0S`tPk%BUl&0& z5p9qL^x&v1$a%fNhqOJ&neZ*3>Gj;FXE!}3QNqca)pwSE z7{9?gpW*DoUf@ZppR*YiGunx# zE|;)3{u2LMn)#pnNf-#X{-qtAl=IWj8#!|aZw_`6Z>ZnqZn7T_m2+~On(B3DhiaoP zV|Q?Y@pU*3r?EXL8Ox&1rp-sqK#rwc&?=!Nnuy$P-4n6S9{G*EGZUUT(DLlc38`uH z?|LnJvG>gAcMFGj9ov%2jHi%ux2NQ1)B^hinH<-gPO2E1?S$APhslA~gTbSAPq9%A zL2Jxz;TWjdT0(Bw-ym?WrUiO~J|kzaH~mW<)$3z~i}tFvnkYf2`C;v9HMC7kdeMNc z>CDNKKbF zn0ZZZ;7&hn6JX?SHlB_h5hJv$`Jddwm=gU7atNuW->!!Lt^Hg2uU%Oq*ldzH-6^$Y zCAA%=J`GcM1t&YxaC+=m>}5+rUhOf|sC?EKyr^yA^X4u|dJqq_A-(il7zJh4V)Wb% z=nfYe@`0v_<`CUGZ74!OtnqE_Nhg^fw#XfFHdte1g8w(H|Mip8MVy?2oV3GE3rJ62 ztb;x5G!r}Qx&`~>e)GHt;_c?(5Mm(#*kMbw3&{k8*_3Pf1U#Y&ZmU`q)SP`~sL^g;6 zSR3K|06zz-5ws0(-WmQ9+d5azeq zh0JH{p!&fw5N|CDG{-KCNzP&?QRO=xHPfjk&l-D5Z}VO=TN{t!%ou7T+JkK&5nSP9 zg;nN}>KPFHh|0L^O>;5vLK)Wn2Bk{hqkbbcq4)E?4{pkMWB5!Ni(UL3=eCgNLdl3X zu7T&d3sSVw8RB%552&-&6??VuXP~b*7;0p$#k-8Su;K#O5MuEkl8k+-lnITIH{8C+ zn}kNwM^i`3Hm?vKt?>~*8GnD#vqf9do|rh$x=mgepIWc05xzA}d*?~iG4BHI@Plec z#1?CRWJL~GTyiy_nzC#Ug=v#y;|}qs_NAjGwoBTU^^Tu7AH_GbgudoXK0Rf z($x{QN<8E*Fs9h=o5zh1-lqrM0&^ZMbXI|g!^$zObIyNB&Q`z@wFcNLxmC+9p`o57 zhV(O9(-68UWsOsxPT7{e%5z=JLyy0rO7;_|Aae;CEoWAOGeGUfzR=IZW5QpDFJncC zb_aQc-aYM#n#j?J!-+eHFXLXKvk^UTUL@a=PYDHaM@UF1J?oM`Xk*3(i!#fno(f*D z_aeW%8g?;dVg6m>G)8uHZO58A8}a|cfC)iD-oC|YRXc&rK0 z7I9||=V4rDe}sW{t>y&w%r~O4!zXlplGY~hjGYnrM@D9OyAQrAe7IDirtcId*;*1h zf{fNw)KPx~vtJy}87Xsit7BreH4pX8_L+;7*XpQZYH%nve8bpjRhC~{E6^9MG|qR_V%)h9hiEJFJzN|(v;GH1RL7Gq zm>Eh6MRhFsmi4ok$qvi~$`Ab0cs}#`vQdU%2gP{tgi6D#dp}Oq9HjQotmT|h4yu)$ z10C;%Ew?f-Gcq{fHTQ|7=0U)sXB=j@(E?(|BVu)knQ%^`Y$Q2h^hX@e%y;F{~ zzt99WG`({0i<9B@PCcr7rPSyQGJPe=DSSKLe`Lmh;U;Ml;U~o}`Gh3r!*4jjYE0k(tg^b=(;)Usac# z-p+?O8|MtcLw9WUggniqwJdzV&a9+ zky~_aEmEyX8J-WF&i4eSWmfmqFn5(*K@8^^WW?Cevl6oWCaCgJSveGn9Mt`mc(Nxpi%>|SSwa~w9o73YxJD6Q~&@JrX(DX2Z$P3ao= zY>N>P@*^qK9Da`0CrQ|4$)4$7YDv)=wiRX>Vn^He)bARz4a-JA@wcgDIv+buNcZj1{?`)_3gseR8TyqL=j>%`vqc|zO|Lh!V zhVL^2tG8w+w@=Q%#BCk?GM}b7d~@=P8*5OP-JYVHLEnZw(_-O&awhXQ=qu_IfoSW- z`1|Ev3CD*{<{RdQWn*A5wpTapYH~exl9n{?Er0PX}lfFP3u?iLaVgk*bY+#lVOs@Gd zAAp|5@93Ak6B1S*i0(=vj+kRY+7TPX5A*N|C1b<58%jxkHqfy6S@De(E59_iVBghu zIP0Y%PLUcS_n}Hhz1g)zrnw{Zj(jToaaoI!7x5;od9531JMyvr{1!79K(+E7cigg4H7pk~k~8W+&%Y9HXF{vs#vDdK?IPS16$ zeMenG&S5RzIM43>w-u}`9Rm&GHBP9}_Lr!}Tm^gY)11fEw^$#49&fi-JuQE6j&G~o z)7j%;E>*%&<0; z#TBQykg#?3LEoYS;xsqGwY-+B9tIrT>8a~UkUO;G5Inf!kXh+#xjN8$PXd3ZpE%Rt0YnlBS>$MuU3Q)hBx&EHpMbvqS^A9sAO%s1b-- zHFBCE!({+YJc}2L)gsv=vOmz*SYcXdk+!KGBXK;;)nZA=qSSge8S8M&p5{EPd6PII z7N~n5MX-0-2BY@n@I5h5et3N9pt8SBGdxxvQmbbjL~Z}=&>(f4uHexd$jhy4H82*3 z=`)SHHFA!H{HHCOIIR8Cf=@=gkEh>~3zAhD@SxBBW&dtm8dpdO|8!-e=2=@>X zGrkEX^iRp|7i<^4SC+S%NBXn6p8NorxhI|5)LG=ojdcPzH7}^Ti<9OHfwsj*@jmlz z2?@E3sFlO%xhRjpl=v z&`HEpb$r*h0CKeyA?Nvv^n(aBaYiqV78N<94>TP8G_I#m@9@o*vLvN$;h^y&d=o7v z_`T6s&UYempGuycs`lY@#T@5J|8ryT;#UQDjunX27BSdc8JFiZK$46>>-r z?E=yUXCf#K2m6a!16n6C|AtiKFC)m!Fb8V9(w+fNId6~2E%JqXTHTF5)exgljB^I6 z4)6shI2D|CVWlAFMJ*7g%wEN#?Jl?Ap~t1;%&hKDi-2v$LW-%$klBZoDN>9YL~}3k zz;p|lT8CENV90%X$L9_y1QTs)O$k|{M<8ASt#C}RS z57#+9#xfbFiAN7y)8a}g@xZm|WO)g9wN4{6T+d;(DZTHA5<$sgMHznP&L3A!11l%3 zp1vVa%UlvU7`lY&M2ppA^#E$otcK@Zi!C~TiZr#tY98DZj7L`U7sx;80qcc4P0nU3 zj8(LBTj$(DiHqYdZu#Y{&v)V~_6*@$w1y!$oS19s&X9zMBLQT=4cU+7_enoBSo+S} z&lzJqt?f^7>dV`h4{}j0X%+HnDx;+YIl`V}T=oq#R@ggbTIttljXa`bW}0&JskmmV zao0+|<31Db<`57=)I_va=pQob!7H>ZN!@ntwKmRYnProX=EV1IX~$Y~t=mg)R}agz zPBZx+@;~ds(*6O@CZNXW$6{6fx1PHr56LX2L-04W#a49d)GdqzLQbG(2_@}HNWa|e zexek+l?T8)J{)J|i+nD&72u01?>*+15|OcvSkkm*{p8>$_6j~H)lj!>D{;k`b% zzj!9Rr3CY;y%{4Uo!A%W@7wUp%o)7~lq?mlQ|{P;w*6bUc0bQmrKL=cAza$3B5kYT zS{pGT^S#HjQ*ZYai-*FO%~pnx%dO#Zko;WT=O`D0XwS}+oyBt1D{{@(Qz4ft^bcaY zw7b|IPxoT>S{!^&YE;ha=t&mh9-}dOos#;S`wPjnjC)W6(88hY^Ym`;d0y{n^QI)2 zOArxz82jL+S*wxbovOl!N~XJzB-?kRy5b;fq@7aSSW0l|4SywLk75=E$HqP?x%|Lb z6vyjkHOfh7o&B&sKF9bFsnH2s+Y{F{x6xkZRqn(De1)yk9v+-&x3E{Ca$;SaVE4Fv zCw3~dlY0@6E^EjR$AIHGH9SaNdSCP_7}ENNv0p7$t&4^Z zO7aXX?0;{JxHt4dxI9*p+ac@hS5RlTYxjf3@?3Dc>Y*M}Me;BEsyG^{Synyo$w|?GXJ*##zRfCV?+HFGnqrSsDm>dU@T^z4>(?9++ElyE-;g!28G8nb?VX{4_DC7Z zZxwhw{G_;mcG-6aw9cI01o-~U4yQE;eIvLoLH~+96E?=}<3L$PbQ4{xhq*Y!DB()> zg)-I;oj*M{@Ul}ka@|+1tiD(zzri`cA*Tc0Mr|4AZ*!XX-ub{uv+fE1Ao_chaUysK zZIKH)f@i6V%enkPEe$(DtihYKqRBl`PN7!f>OCz{-qBVOX$S0NRBC&t@J+cMY>AU8 z&RT(jgU;9BSfx_n*}Q}2lQCZ6x}kX#r-;nL4BpmGmw%bI<@4ppsa8GvRoo>!%ynZv zK6|FmiT`2&{?a$+HDZPOPUq6lisZRsS|@Xbg)nRSgJ!{BN3TrpF=|s$b^9^(gV87a zyz-&8Ya3J`djs!qY>DPM=%9^=e_t?es)_~kv37L9J(GeQ&2WiUBUbqN zrrQEJjgZqaWn7$)QwQlei&~Q0)23+Nz&nxWTVU@D|7a^?HR{qlhxL*SCGjkAi0AC? zI4Av2bvR^dKuO5 zje3R_eKb3^P3Tg7mx1pDYGu9=d?~y~thU~VcQqU5MSiMgyKT5UT$U8sW%ZCs4#m!` zl1PRaAnFuPu-*>q6*Qir(HT844&vGG3miLf5&Wl@^|Hc;TZ~~mp((UiEDSX&he#v8Qwl+ zslQ=ltu-n<3v1**;)KsbRz!|hrxj+cTX4avGff#|o|Y%fN5o|V^)x&S?bT)~dZ%~O z1${OJUnjuMC-3N-wpR94+--t8dM+lGc!yfNGB8CfF|ML#Qc|p~_kH8_%=Qz1^nPwR z*1_V2sCB+uPEAH^cCM&ih47jYJ2MIebGm8EHwI+H0&xL-fG3Dc zj5<|-V<*_(hu>UyM0O63&_eDRR&r(ln+Xqk;PRz&;9Q9kq z8hKIOEhWwPOAp37+CH&xJ!%78J$>8wJ0SRj?OijcOyt z%FD1UG{3-ORZ~VQMX}t)h~_*GZkTJ zrA~-5k!_Ja_QT?BUl-$?ML)O;M#R|(xOOEv!JVabWFo;HfZnK$HFgO}j5}j+E~kzo z*EWSV*7H1RhZ=_?driB?w> zhPhjQa{6n@mD5N(!5kZbG@!f7_}f8D4BITN(7Daovc%MlSC?t3F1xI#vKP|wXX zq9$Vf{rKT4G8PAWhEMow6-ThDf7MwjYhjo5Y&pexTsbZzpttjbx?*k%%o9)AfB4_C z)*v=XY2^G|AL}hK$V{o{N;aWze{E(I)5Bz(hj`H07Stp>)r5DNK%NMh)-YIiPrJBr zZT2U5&-kl~d2*e+i5!Fd_7r$~TksUdh5dM|&2K{AitO;C{KmMv$m>%xh}Lz+-uzLe@XTTJdbyY6UIVm(bNMEkPq2| zt4FPGT}WutkY5M~`)-1#2@jv54Mt0ZaKv+OP`ww5uV#!X{HJuYOqYw*F7uiUI`w2# z`Nhm{sEJrHL_YK1nOH0#e;^|#SZNV#>#Q3HKgq-@XtA#6ai$` zVSHj=)W_sIZK;z}nPaLcr)fm^i07oS^OLKluJ#-*eb7FM9E`50OL7LMJ-v+T0iWRw zaGuJ>x^g+x%6(Wo;2maU%bI2wBjwo0kr6yYUB}sw*Qh(_DJ5FF@V;vcvlYNV4x`2) z#O|6lo+Q7px^auLw$mcR?Fr=r1^Jb|b>x%CV(MpIL=CR1s+=<)xM2%T)k*ui@Bp)` zsAZG|cNacqRk3J$bAKJ%Xv%)UiE)61SRsVy!CK?;EuV9B1FjK%?(wC~(+W~VPNJ=& ztyI_)eIMu&KlO01Q(@NRk=BDVr=e2cQ_`8cOLY?OsYKWzE^cr>bQfol6>Fzi{!o|V zO6H3q6?oP4XSf1Fco-Sc(O+sXH?C#P$NTi@G#^tdX}d;8CP*V%>73oEd6=UQm?lhV zGby*1Kaklbqs!#Ykzc&ckd6MKJZ>{<#d60$EVWhl*k4Azl-I1e-p|rb`7L zBQk54--gmeX{aW6`)xT7qbHv#I5PdYlt;qbg-_in zjyWmzEVU53#$LcFUZinb`!4mXSQwdVnMSQZD|1kACuR{sL|?lZU;%begQOAKrewKs zC-V2N5FL#fztd(GublK?=J%ny#B7yk<5Ulv z=`~u_$C-)5JK{z-X?l~a48QcI*)r56@|D~KC@4YAk)?z91oDrW3(R_^+RscjzrqzA z^CyNhE*K}|&Ogc(=U)Ejjz?bM?$oyZ^3&2M{VCc_7+rYTzryID?n9-}yTW@^XX`1{ zt-Rol3*N9S7yjJ75^e%IEyr$7M!1&XwMibI5lEyZD|{_sb`&@%DGf2%C!MUa(->31gjlk-Hl0ckDZ@o2ro-=1L^iy+l^{v}_zcW6lxX>@@W{-X%AX+hSn5CBm9y zo+o*PV~jKJL9gsx|MDK^Yi;{7hud8zap6J>44CDtp>eEW9fDULNx zTVLC+s1Y*2h(7v&&tZ17_k|W%7wn5>Yx$GY3lV;L_S6jX$T2e~$sNBL1Pp}2 zwSCzJVBw4nuL{2n@h&k#Zx?tRQdT@W=f&)5y=VBlnqSx*v2OU6Q(JB|=c)0kzI{@n zRc7H^HDt#~SMi;9W+Z}IER;m9KD*IGjE&l(CZJ&MI&~a1eJe8spLmjE6f1xi{@y#P^X*Gw<*TkLExB}zOnr2V*LcS$z#1w0L5huhHt#w{wB(z0Y zi)qhJ=sDp1{4=49?5{i{WUl;4RaB#`6WC=jLJkKc^Bn*&f1T_Ut|=yp!RFrJvv^xa zTD8Vz-EjJ1mECw$3}DfaxKRd^tK`)8TH}(UJTrywQ{xd|gs2{H%J@HIr^Bc7Ud>Ak zygfA;HGQ*j(%7r&AtPx2Vy219>MSC}r{POwqk?%CMuS3$MNgm&@;mo!QU5oG)@M$K z-d~_+NWfxNL7$WuULnWP+T>fr24@u7jI7654fiN#;Q0}K3u=Ytq#ViLHYMWSAlqTj zTCVk@{Uvr^&O~Nd63(X^E!UYhaBgfz&-dn2c#E2i)+6UeWO2YV&}-dQT&&Q-L+i$6 z{MRuX)*Yj#Kt0PyEg_?{Gpm5HCs-f@x247w2hzXxrjGt5qhqL9_=LS)J!lun&h~WF zvnfTEMdNvW#095{4gDM`2`2(16U2uwV0-xDq5A;X45}>Wg zA&irdW|SUQ2-1)>FS}#pA5%A{J(>S?Bt5@oVB7SE&ByKfYO6eriXoHb0DGT$tgNN7 z#Myb+r7G&nt1>1VyPaJEnYn2EA!o=B)Z_Bdg2{F>;}YtQwnKLL zAkSJu$GvEWvpq@?^@~0~mv$O?fionf#^oDhE1=LcqpdRdGafka}Wwbz>OV1gs#6ozR`S0pCqUiVOe|T3G zf0BFCoG!+qF5L)Qh^nB|0(IJY1ntC`tHdR{sd~&47c8+CqP=Jy3H@5?Pf9MM3)Fqu zMu|5T;tsPms7;6|p3uoTfVP&dRmwQmXw?lELfky?^pyV7Kb!GP@#~?jrTxt^;guiD zs&ku*^{CpHXPWpE3kW!sFFxvx5lZ?&%Hc)f$a9{S`NdGtTDCD+mjqJP@w zdj6xY#(hMTaoWb*NrNm=al`u4*@3rWoHYdx3?G}ZKWBZgb$;)Ra_VX8pvttjsG0Us zaZs6Zlv<;9mc{ujvEBQjf8x}hc%OZd54j>oDpBiKgI;H!)WKR_scGYlEL_#qzi0+z}7rtIN!|}M>K`x+$$_inu$HDRHTuePT!hbb-0ZMuy#FO^)>)>7DQ^!AQk*?Nj zz8<*SJbV7c;W_y^-}!E4_qXFk8TOJ_!P@S8VCXyfkLYbLn)8`>8t=w??lae+!q@ZO z-ve#Y9%Fr4dk`A(B&CMZ!agz67;P7f00p_OL7Y$ruzCk^K~ASu#CoT5!a41&8h#R2 zo8&L+-+gkL?_1Bs0$I??z7u=dEjd{Ak(*>a=)CiykGd&74;QLUWp(U3^ZKC$H$sBZ z(tqa|d7=pIL9VF~J`D-;{aMY0lq3$wy*y#or4Uvbsv$x!6g94Dc{)#>%(ic6-0_YK$8~eIMi^xUCt#vqH_{)foMGX z<4#D;xrs(K7f+-NZ3|W$<-Q(p4x((Bqtr3@EJ^;&7P8RIq@uJLU-&8&z2?s={w{FJ zxF-@LeizH^R;ao&4l5^v#N%>HWTki~^bc~VQ_x4_5ObiZyQvLa`w@R>AyT6-my%e= z^~gW&=($=+Jn7$B?vvD$%#FnRaz8b$?;CqWSp&0i$$M#EWLNRc%=Z_M5XHWuMh$z8 zU0vR9UsaRD2lg&`$lM?=ArjdLwZIUY^p8h7)a-hep~uSI@2o?|YS*xc5G6`b_XA!+ z+A5->sf0*JWHOS)^>A_S#W3=jnbk=|vy z?%uv{=UfyFLOMjTCB*;>u@DteQ4|pc0}~Sj5lj@7|MR@V%J=vG>}PlHePia#nbULT z4CO7o`}*jW`=v90%fL1;-oah+IN_&uWE_N0a6Y?wU#S1+hDfL0jx`=Nu~1WgFBn)k zqHK-%m%G@U6rJX+!oKba{!;Z^qXhe^527E=K`tuz%Bq%>X_Q#q(7UV@PMe^Ce*hdq z_;QVx@RxFhTtyh@Gw}+2NYt;eKT`)re>JZuNDRNLgY@m?eU%5Fsk@xGSxZ$B3m;+6 zaZCKJ%4)Pl9?W)D1pQJ2ORDAUOPZl(;>gd!cWEnNCB?WefS8`Ql-OG#0#vLsh7#>;vwR%Nl*3|XNP5M}Gs5aW27JA!x1Uuea0FM3UR{Kx11G#07 zcYeo6J3_7p(hGly8_o|sc1oKpND1OyT8+S%u@LXl#-J^y1d-o40fWgT(9MP6Kn7eVHM zi>jNfi^TjudU&K>>N?tVw4bzB&NMf3!Nk2iURXKv#bO0&ZsTZ zC;W19{xzSKMhEOx*Oz+}SIvDdcAdG*I^V1kt-V|99o{JCDf>21*W=8J9c{xAQx@T;iR6y&H*$vr74EL#d7_*?{BUP~iOf6h(pBf)85;J4lr!G|6U#pDU z9^W$MpZKJF-|7@UB(699)rKL)RDs>h8{B{N`tEaP5wiRniay2?ql3CwS&Xp{MXSUF zV>RSOnLE&y8d-fG&=H2I!9DU6^|pk!Ehw8ZrhYJjmgPT(0HfPJTE|~L@}+1)Wm z%BV9UPElt3lZQv*FL_Qzpd>t44Z(AStbVE_cCNb}9Qk5m?xHVJAB@=--aZ)-*B8q9OXf4PRze&dXge`OqwBkgXJZxH)47H1T{tqp)q4?en{t{3@Xdl}EB9=V}6*2k;GXtUVOwBB&POJ^XH^e*oK zv?H}Esg%4RWiI)Vu}D%NrCB#~1McS-wb3J^aZ<9#cn;nd73MRs$MHT!CU%Gp#jV1k zYJbruTJ6#zZHV=**WS5O{nPfmb8%wLAu+_PYn`R5prgj_MCW1bRDFhTqHRJUVc_^W zK-w{;$4a6Z{(QowAH#Rbc<#vI$cza?6)!2}p#{ndUa94~ z`@NO!HOOLk(0Nom>2@(E>!xJ_o-3R;&9%l+eKUFv?4JM<>UQ=^iA8Cd4eiJ|p>*$R zjpjXl2jF0K1#=x`B^Hi^dMTh6V}NK1oPv)1VX?K9bCMUA4=!{kKc(HNU!gqc{O!%O zha=uKNDRgkFS|L~)AkUpHZp7Sm6_IRKqKdhvqfuzRv7WY%;FBPk0>c%N5?PcTL*HL&RW;vx?Ww(G5i95X0q4Fi%Kdle{1Tzq;QAneX%by;@zwtK;~T( zaE!N_I+L9ry~W5zxWHKu+iqNkKAC4n3XpU|d~@$Q=c5VYd)=_BbS&;?>-XXrdKEoE z)%-+C?F268`9GQdPC&-F>*}>sx8_}}A1ZuoWPiO*MFVTEGf^va#<&gb;n;8YmVYPm znA?h3&UmcHA41GH2Q`yk^c(8To**=op3XvTib;29m0RUXNLsK7)U0qc#HD$^b+TYc)jeND9U6Fjqd(3>s-2*AV6|0}~ z(~bRaj27yPP9vu->D7j6(`Ri(Z>kI%bJHQ84 zd4U_QwMeMCi+}C6ajjdrkF!agXKyU}Hu?RVZt+Cpqu3+Z=`qAQX>P#jg%iCc&ME9T zzt0Hi9xB^&tpxqKyVadoQJ|bh54a*Jn4Ch{(*+WSvXFVJ_3%9#HZO3ZhfrIQnwofG zMiTjul8Q9c-ky#(GNj#LzGW*D_E)V=jjHaf9WD7LvZoq$e{>!Ayq)omd#&-Y^DWk1 z9PfyIZq-`AbD@+VOr&D+6uE|!+7a=v{`k+m58#q0;L|6dUm2g2@h(~Q zh%?p$wWDc`5sP0M*A#qT91Er5?}Z*UGD2au%-ZfGouz(%cO}j&ek3^$5r5b^qQ5)G z`WS6;7TCLlfOY~`fI0yew6mKBTm?%%5&;ZDafkCjT}0?541v|{zJ~A6BBHOe%(%Gx zlFPHJE41=!evV&|{97BSWVubXJ5k$lpZ}=a+WFAm?Jct}^UqQe=Bro_LVX^kvp*f} zGGC85F{EO8WwebDL50sIqhiehXrYIYFO;qK#Xa&nX}dN2RQep`E86FzEBe}8#p&YC zN}Xk1QGBHG4dtbj6@6g-CNpYmurK!#sG9H^cCp@S)iHPJrb~Qe`?|YRyBM*bZjk<* z9aaw^eh3dEsD$Wi^vG;+ayvaC{^aVEa9n|+m%{8S@+4v68nxWL($#%Pf8T1FsG7R3 z;#p(5GAVpz@;c)q?|$R5#Pjyk-mTbQ^_(-nTdkP(b6hP$rS7xrtBqa2FV~r*)MsT1 z%2Kx95|mmWcWWc!K|19%NI;yB!@j8%s4;01ldA`E1UNyJ`MurUj^T~gyXK%$vmjMA zJ{C=m)HYkEw1f6mWd`hr^T1IBenSy)wm8d_$6U6NBMdh`_Oa0pD}&sqEm9qTlgiFyHEB%TNlTSo*+ ze1Tm>w6j})r%1uXUbgldV5Tf2HMhq-ayNZQP?5M0vYHu8hzW~KEgGF`om2j%);&3O zzL9v+xI4DWndI!(yV=X!IqnghUh$>))8FMRvxjM;?GdQ*@QHV~Ip2a;b9&xLMWi7{ zp=jeGqAE@Tsty5dGdG%=1i#uLz(7xpmF&;O{7HKYyocBVtqewqI@o_`rn@M0yVnpt z`-a$)#*kR+2Ydh*WR3bb3eC(S4+=+>S_LJTw#rD-E8eua8TVHG z>dn(TIjYiE{mY$;Q?@3cg8445lk2-*xN)(^e_J4?=so~xe^D?hY4ggQ&>oP-gy`&a z6(kO|CT-#XKj|LYZhQyNVdbqk-j?!!dnO=f#z6)O+c9mF4cAh5Ou?j;5NXJtn5yBGPD?;q4ksLyQ#(MRo2gT6a6FOxN=r> ze)MvCiu$m9?ai;~U2kmc6}nldj+O6VK2VvcA#%`Ob_U>FAv2KDQYsP$kcRl}fzj7a zkHM&!M<6K~>v`I%xJPd6iu>GY&xkoBPvR%Q!6-ESKEUkVuXeB>cIKIj{YK_9>g&ns zs_EK!)~{-%Q`^b$V%~e+V84eLXjR!ar+XO-{Js8AWR~XJ8J5flC3ZMtw39(S(D*^+ z|3LFgyFN>M1$O}raMm)w3MDgQ1KyMFec*gj9v~HKjZnD0d#AO@_)DqnntBuGqN)u> zf8&8z=k%SZSs8WOc@K%1&Pw}Z=Vnw~EfzD~YBQtHy<}O9w)S@*|P;Lif#g5LFpk7K~p1BA}wC8~X za#wBi&uSjDyXxZ}b3EwfK~9PnaR%_R)GhHH=6UKwWtltGdciq?>nE^!b6k98t+3Pj zo$d`{p*ZXwPL3=cYDZw(GS7>@@`sd3{lf?q*BmJW8>6odc!nI3qdgPQCC`sw?R(zo z;h(@?sox*a)p%bck`Qv)>$SHMh!U55Z}hFJcaNITh}5|B`fP^BH{>yoQ~q z05C@U=2u(JwSPyK1am?9pmd>KO8%*bUsjA{$F$QABsrG5aF_@ClQ ztdOHG#H5P)QznnS6G*YwuS5+cBu9=dZy&(N*}YKxbl`6GXm%#?@)mib_VvQ zM=U#@t2J<@ilouTxH$Z#|E!PbIM&YwdY`1TLm5UhaPHe;6f$e?b6&0v6(0?7P8#9- zNPAdTOl}{nLs0%RyP7^7KXGpOxf`Tl2CNKbh>|+m5NlQnPsqp>B&0Yh_PfXIkImhw zp$H?JU<;nYW8OoPO5&RMV-QMFjnlYxpDSq$gk?ziwKn%nD3r#uJoL6sdk6iFtsDG&6yzn5~>60h)*?7xQ+cj z)jzs}kwyH5|Fiv|`EY(*FUPz{KZRT)=Z8|3D*=?{^b9EdnYDLe0Ld1>Na~>$r6)5K z&mm6Zp2B}}&JVbbU3p$ad&ys6U+pxDx!S|}oY*DWg;*arAo9^l4kX$#d!u;JnWLdT zq_xjGUyQczaK4Ldi~j^#;k@Kvt%A~vSy8l=xxz=;MGhursHt;7EsS!~+mp~p%pqGx z32JWa7V`sHo|Kp}M@qc4o`%IXQUt|(?PLWgTrmKx|F6 zPue5ggz|56gjT##S$EU}v5oSL2P0V`r8Qol^SN~IM^ z8qO^K*VgbxpwV!J5gbMz8RaH-T<)6w<)MlkHqcioh zRk))v8z;b!dr3oF$D&nDDyA1h4arrdZrT(0Bs~Gf4M6m%RrF{VlB$2TX_Zi0-iZ**V z^{_{?T+cUKYaiQtBL~YbG^PU{@UV4f{1v0Aw#~m*oNZ2YM@s^ z3eJ&mdqk4)MbSn0PASh(bM>4VWULW8K7fceR+jc4;E*d@Txnx`jrxgnLk{TSH5S{w zXY>#4tK7d*O_UFd{#5&^FA(cSU$e@4S)FaY?e*}wsTaDV-C2pxoix_fSG$a{BJ(fZ zL_1p6F}f7}Qv))8g8sg&Ge!**@GkJO1~8DWIeT0&mok7f+#c^xI(8RrtS&PjvoS(+ven%XIXdVEiGBDY)31Y zA%BcE#&{RID_%-$Fb)}ySZ2I1vNiev?qX!|%ag7AIR&p&9tmcIHUsz8FkgwZ$+1)V z4grS1yV_!WmlaevC$zMAiXEY#TpUDb{bH}LD6?mWozgFcjzfkaVDL_w*BUL|FT6zR z;~81*Y<0EKcj~k}$36~xLCaMx(Z~7yV)at>(F&=KS!~pafzA&u~&+g#X7p*;K^Kfp501!ZZ3A- zF#mOXyNhmq&}f|MXO5rxNphXXV$a z{5O@I6}LIJCwmxuu31xYzqcqDUuI&{gg=e@E4D>v12#rt7*Swl3PykEHPgzJl-yBs zgU?-oAIcU&1xog>!+q{Yr>!g_j@{Lasa|4!Dj#)LN#QwOH=JI6jy=ZeZ0xx zB7a7d)mbRb5dAHEFZQX|B>I&eMN6_C5usqzmA!M0xW}0Nz@E_J!Bu7)(!Qm|L9Xu( zJwO=9UDR8F9pa9#`h-8ec6WY(Hr{^}eNnzQaTj~}Vv)Hk`dw^&qW9F&s6L?xkYdK2 zbi8xaaSugig&#y4%+)j_MPHDA%7g4x zpEc8HO=jydr=PMjh}@x1&X|k_b<-vUu(iVOHfl!h0b)cNn!)30h~#GaX_S(nBELXc zIpOL_N0%RqUtzPV2Wh3J^^iFnc_|0|zUo@*_OdU_{!H8wnu9kmhp5HzR_VoNSN~h1 zxxN*%L5sQ_sD=4Rq(nyXX|u_gW*5|LWdwk$KXMNMsR$8B=QsT4%(j7NNqqJ8k67K5 zH_E0Y_LzTT_jurq+FSh#EqL7Gx8!v5f%09e@=D$slht827mP3hvTQYB71AcBA_Va*QUIEyZ|fAq~O*mcT^|d?wv6 z`bsWi?;SPnDB<3ka{?;i%<<&140y1#a!5piY+ z!8c&nDNOuX*;sq9s6X1~eY{m(taL-Q&|_j={4qR3Oyq!nnR7{>ne9@Rk^|`{WN6$? z+zL5WtZyTICY)k`Pt3_<^r}795=n7A6IvvmT37z7K1$t>I{K6ow6lBKe#UD%S=?H z3p5gTUp?*ivA^_>!XnNRRq3_`z2jSgH^@ghc|TUH4Ru5`{Ez65)%OEF%D66&AJmJK zE1U_r&ed7njeBR|iiDI^qlg)nT|!ZfF5^038Jt=&>iac5;JxAktQI^bc{O%@b&eb3}d0-Qk(;0sV;AK)cZx zoo-wFXrxZielD$lB{SMUtPvl1y{f_(Bdvj^h)(isSz5A`u(a~zUV!%MR(u-*SwI;l ztxCoYJ0X%l>Y}Ws{gvak_0P68I`!j&>jS=xhJYbY|*reNW-~kHy}v{>SGfUR%U4pPGOxBM#ZQh zm{ZOyNzOoP^&xy_pG^W7kUI(+g8O0l9BWIl9th-C{LyqzZI|!slgeK=_qzi`A+G{A z{LM8-&wasq&{<;l^xK6WtcFd4yPO?hG;x<0o^IxT5m^Zsxuc%hiu4*;>xWu{E3$1+ zZIQFFYA7{g2Nvs(FAptdd{B8StK z>#0t)`*@GXZ?oR>7R5R##kj|r0RH?p!1tHn)PyCW@#j?xpT7fnx^u?6a$Ho0 zU2TlJlttt(dRK%v%egY$%Q`PzH{QTMM@$UX4Qkdsa`nafYR51RN8e1(HRlJAfO4uI zNS&>{E0W@{IFVRcUVt_`fNttwth6H8H{lo>%n|3|Y;`U^GXo1Y0yH|~9sH3oKWY!w z@@y5H-J9zjfM1JBno2{QQXj{PQ$WL@@H>pTJuo#qlrIv z!t1Gz&@*$Z8Ure>PcwgzE1xn#MLLGgQl|$r#TBHEz+?yfv=j8ur4Mx$#v>(SZ~V_u zUeKTOUKIvTL}H%-SNV?_Z@Qm5j~I3B6RsWa5L!&S#ywDfwI9DVv`=(~%-NV)=6?hz zxr#Ri76Z>PX^pv(_5^d7XoF%ULluCPk+Rm{J!X+m9<_DJb5btzT}s4U@fz}1?nvI~ zH$^R!0B-??vaOZo822(Y!#fb|65`4^=OP=c?{DKIzJ^LZTBq#bPLX<;1xi0!5%g$j zK{9gHR(0^sxzN#n<4M}egP>o(4e-LKMKiobitg#nhKG2oX`m`8{e{4$!5xg>$afa{ zm)QGLw_BZ4wJcrV7!A=N~lP)uyL_+ z%1i_5g>yI>e7gdfBzXZu)Sh+H#kfoFAM(?B-)f81q~@p$5lH?3FS&jha-Gf=dCo8T zTK}72Y&d!gef6G@3Y-HJZHj3vuRmUCt|M^@Y@}$NT2|xbF$byf-1CdtCx`%ekUc+wxVCuAHR?*Y8>*WAEX-ToE`%ALZa4S>{Z++tZe`l ze6HjjRvuQL8hhi#5dSZRJMQ2{{}YlX4|g*EpW57Xk=u}E4>ifWg2HwbT%wM6jfCnIcQ0%hdpqNXM6UjZWj8t*% zq`t^SZS?Q_7%a{U^e4(63k?Zy2rR@mR&`Mi<9x=AzHX-ZN%6-9%9OSClZ4FL~!RPoH&oZ7aVG8KnpTl~b z$sc3Yp%+fW(>TbXn>Ji$iqQ+TgEwSYQhnj;kNg2`8eK)zv_!;j|!qbBP zKN#`4pq8{Zt%tijdWpUb{RH$7-Wz(&UWrW5gP>^ERv_fkmZ7#|1b|*1TO$oik0DDf zgMD!dbkY>R_3<2Mk5SUjpksP`ggr<5J-!aR`$<(Y#v$h?_zPRCvl#3?D3DPX9<5!9 zUI4H7J+xE#$o}s7QSe01Mz!MoXtRcHNgaHbdXe-gd|_Ui+8!$CL9ej?PA z3fu)o-sq@Br81yVe)F{n2vTYw|A2v}hRm(^4019ERBp&^DEqHnI~@q`V~kD^$+ z+)DrlX`3@fh&TtZDTIYgo)YDklDb&Uqs+-volr<==}!`#_(1HcJe4FiD77i)XkXJ# z;9QYsPhXmm+^*w764zmcJ%>8{Q#>5C?>vEl}13_z3<3-)bH-S9{C{xxXI% zUV!`bHTWF&E7F5NB`%yT)6!zCnam*D_zXr!vsvyy^Re*_tFgNr``I8{mG${u#5tg+ zSH*!z3-uP{1hhyUL1;Jz!bXlDres_T-_^;W7gkPyZiVmO8GT6!!?&0t!Kg7P%PKJ@ zIDOFy^Vb6(2JKU8;m2QPjYwS+S$ORloZ8sT9s`eKpjv3%gEJ&Izz&^JGBULY?a*44 z)rVxXiE#+I635JCj9#4py5J6JNO4%qtWZRqKzOJv_=#&Z8TLuN(z`u?Mb12}y}&BP z|HjUu@PNYFDm1b>%|-4@>V0dsvkNtOpTlWQyHj_jUdMQ7=Su5?_@!?}E1B0Q|4C(8 z>KH)7vrl1fz(%Tvr)V!zkCB1{S{8c+)}~V1?BV`$z(d?}l!Qh?6yQj-w^!+(SASM? ztl%nC89d)=fR*Q%vk_+|mE*jVMPj4c$9M{FlLiR`=Zq4bv3qK6#`rpezu0n?Iug=_ zu_Vl}I4(X4@I-&~Le3L@LGR}4&ZFt>O1^fVU|W2T76fVNbexu-&2Rn9)}RTe3g_ur zh3oA1(%F?my-P(ce+o_@e+nl%jg9`DpcEk`bG#B`v^VRaC(92AZ1YwdiB;$gZM?WpDEx#tdR_Pe(ZEj6xDS0>( z;n``MfakGduGr%}RYLE9D{%C*I6B6PGeN^VTa2q_64ESn2sJt&8Wz+;Vyupujq}I( zrPs<&?bL)Ao9=En9_x(pJWgUuS{XGo)r;p7Yt2XB7V2vBj+{vTXzWZkHFf_F@iAz8 ztN2s&wwr`$Ayf8KmPlIf20XC>67vKoi+~Mv5OgR#Ev{wqY%;>YS>~E8WmR|kYil}U zYuD&2ag7kjzmlfp43g5iB|`;!3s30!6cMYJu9Iks93c&-l6?=F{8@BJevn##wy765 z8qxq`2C}lFgo)B0F(37OKvV~xxgLR?XSgQi2IdOS^Zj;4XE6m5J%t@+Y>QAx3a6Cj zH%M-EQr^eKxs&b)_l;}{tu|h^7l|clUwk6I6({_!wZY0pKuyduqRm-j1m$e}B~>w# zje3Mw%2Ip5+o8PXiU`+3k^6&t{3X4SPkWf%;d%6QU$oA(8U+wZnE02{K*AL0kn$T7 zqpMa~qsMxY8G8LHM|=j_eg!z%fYYZgMQh{>N*3x>@*lBO51;9Uk?si<@=mNCb;7kl@*YIovX6OM~#RY__hz6ei}c z72+92HFLem+K>K9ft5YW7Xt!J5iZW*f4HjnbySglMe)Mq`)VJUCII zrq>#(4rVH@mK}@lFIo^EVej+?z^h)LPN0`YVut-~^=APtI5(7S7XS)!4=s-d=%+uv zQE~!PY8`O^yhT}fHvYCDG@KQ@7et-aDtm*o&nUw=9X0+jqui2~5h>-|sGCC7k%o~l zc9?7ueZ^MJGx&SEsV3^7Ej}yhfmq?HGhwQaztSQII10UHD<=>)KrIABly1g!hN4E|;Cp;vB3X2Cs_lYhsq_7fUI%fWm;t_62*0DX z5ZVKg@6no!VQ|k}AHcxMpj;c1HV3Uuj7~X(+2k&=OAz;?O$<4N_y*@PhybTvPi?YC zC2w1bAL59=d)gfFG^}sdYN}<;t(c4!i4|Ie^w;Up zoQ1rVzJP)}M46bYd1Kn=^5ngK7PmQ*6ov~<1!Xvd6q3J2gLw{Z4 zRsW*@>9-fIe~&0Z#u_~V*qMH3^&#_a^d?~;2Ms$ z_`wbx#j$nwK(a~f3S5(vQ-dA0nHw)Rzbn1={u8Oe)84>ILak64tqxAZZVSq(pYCP$ zteO?jAK#%)p~b@$C&EXYqILicTcTA1EvPJk7u*l;H%X7iJLE;qC+V2_ze{CA8Eb^S zL*^#EcZ8J~Bu59Z;2ZwykD4Qr#l}8uQ~DM0iijd2AtE2Lj~v9!+Xd%lkcK&Xq?X4K8)jwzeazPAjWpcDd_CYg zd>a2#%Wk*kC~un;5;Vh(|tRy?U)xA{;uTOQ{qz#UeInhJyUF3 z!Xs%YCwl*ssPXuut0GrHl9FoA4)&zdRa z#2R-1u-FpP;4)A!u}R-EL#(qG;u|9f)5<3$SK0e3-mwn@Gc}&Lloy04pai9D*?=|u z%0GpL)(Wt!0)AeE_1!6Taq{JWSEyf!f4)cmu|7T%Cma{4DAQl>EEFF@hp+~Y^m^!D zHTNFD6Nr7qUY^=azdL!W`&N8M`J2)E*`8oDoe)soNc^9MC-m63*#&hH8`4{V<;Lmy zka*x*b&+{d6)kU4NN=pEA(fKhtVcSR3lx86XK(% z@qWBzvPo%y*&ZvQJ)!pxLL)argmo@Xw!A~@RXh%F)@TvgJJ%v8|7EP7QV_jcn!Bbd z52I;{yM%`QQ5r}Of$@|s$ycM}lf#X5TL03W4y;cxGkBMCB)LgS;hfNf{GYVJ$c}4+ z8ssNoVSbCgauL7z$(UEZ7;Tb+sk0@ewZuG96LS2#mYw*^x~?oFzQS{~&!ycRWc~nd z(hoGf(yUTbUs$?Z`L1+jV!HpH^*vf79{B`b>sDt!6EY*&fr9_sA*dB%uiJ{2}Xo*@jSOdfudk1h*BCrMi_6qIP4@U<;o-h-L zqvJ{h`S&vX?-*MfFVoI3o^UR-`&R#%coEg&h$+se#76Kxzsa~&Wsjuq1g`G@7P4{H z`TO?JRI+?O+Tp4OA*HQEkAgUsK0GBI-q&6+W+rxFtn{wQV~oHO2bbb+XT214ov*WQ zsQ4;+$U%G>ZONY+2mpsUq~M15Bh{#QAa+1rw}NMQJFM)z@yQi~(JnDcjY_!5AG(=y0&_C^yEO-L6O&Ea*WVHQ2YGHzz z2=rOW4a5Phl8hivKO@m3`mGglXKMF^o|$!qY7?iBUowzXKB+K2eg^fs^NLrxm z8i>2J%UR1V%ga-fiMJv@8e^SaTFbIK)Sb{h0Ul37BKagc@nLe*wFgs2!JB);0?dmo zcKH8#!xDc~uSs{a1}A%YU!ZkLCF)`BMeGt-1Hnj)*W86w$8eQi5V1_}h;k!{R*8RN zP2x@bTG$oZC^ifp&I$XQpm(lG$~lpE!M9Y;yf5;@+B%~j>Ys8gtqE2($BLKyaQOS` zmm)ajIi6##@tpt`(%yN1rVDLKSSP1tnsv1?-l|t|5A+M=97o#|^GDexeYlLOgUaUc zMaHE!9@kc+PF9D^`_U6^96}>!=nQ1p(b?(`;mzhTaTg>8YmGI>sk{Tl58gkiy<>;Q zn77_7o>1qba;l7HQI^&XyuN^Q?e+1`-GgNf(K=(zQp=OC0FVC({$|+m=v~S7c5Usl zE%XXyv;QQTUi=$taObs~ge<8_I{=^=AMAO{*<{o8%{gZJrz9zogEJ168R6NS7TCa zn}1=tS4EppZ}iAD1xDb>qvt}lab1SvB0uFMODf+f>mBe5HOv6?0&gglPX6P*;XG@u zP#<;HIBlF`&O?c3tYI8(`OhmmDnHUM zO!h}U*vX0s+B&?&8KU-S4_Kt6B&XzrpYyIO9dWvKdSrv}Oqb*x`X*&J&N7~&&ah5K z+F$p$QIKlo)j$1Q;7;ibu`@Yt@%6EAyi^@v%#Du@==OhUk~kn`v7OAwsYnaV@Og-uKOnNS z4WXNqcf&JMQAkbfZA(07$#p^M{VtH6^tY))I4i(|x!zk30% z%@nQm4;@#%Us(|rsnO=lB(s>=FW;?!r-m}{ZtCC4waEHK-XQ4mA#qhQHuZ%_QFKtW z8Qb^%R(Ck>gGZ$eggSV@$hlrVS_@{x+LL^vkQ$a&lJqlj-Jil*^6`qJ)p56*J0|jx zGcWc{d|B$P#pkI%Rx*2%xa<>*v}S(f{{X5~oL%I4d>hNmfQ1V6%W@;eH4JE=4C0hcw%Mt(lNHiS3Q=3?RYhp3vef{$N%J0NZ zfCa86)Qz?B8w3~t=jg+ya@Cy@g_b;8tn8}{4u4wogz=o>hd)hRUh%3nv;2zF8sWbl z1FQr*6J1`t0aitKF;7g0A5^QtbtnVUwNpRb_An@m*k<3zeF{G+-oPhW+bcUh#&4LP z#5djro{JjitBIN6Q$?K<7drc@>{O5Hp9(s~s*+zrlSzvHzvGr1o2|5pG=&|}Lu>+l z?odbBUi3=^Rahbuv=LG6^d!}>=1Ui)zs{%wsUb%^lQ=(559pq2VW2qiRmq-MZO@C0 zjsBc!nONl_gDV+V-%73w54S!rxEF-}g`~?f)Je!PtG_Itsoe|j@hUO6bVlSzUgzYC z>8!C^B7@^s1GBVaImeB}`Nlqvo&v|5Wjr!vG(JmT5&UM1zqV2MKIeGyCo5F#>wQDZ z;x~IG*6&K^(D-O9d@@-}%mDQejx$gYCxjtGIL2+!iu7#cqP{L#D0=mY!hXt=yl1D% zr|ZlA>xnYDga31Cqsz=$wgqU+4<|XeE`6h({(M`#kd?)>7nw!U!oyJ9AHB^mtc9q0ph4Y@R_%-pHJ=@u%9Vj`ToE6TB-lhK& z%-sK_2iZR*M|ZWSwIYqUn6N|_^Sg>SmBx{mAcY}Wv_BKW)vo|KqdL%{`e>_68y<{= zR%oU(Wo#kZCXNxka_2j%y{4s3=_Tse#B}kG*0d74P!dy$hMT=$ZA;6OBj@-z4`-w% zsbX02AhKmX7OLm@i=$>)JUS9k^s*|do(i$X7Oe*Sx^F9OyymD+NWPJ>E7x2#_7I++ zcFjl(4qcLNrZvfHV_aX7p)E`H@fs-`oK430)$hfRCHnZU1vr%2<9}y@QU(@u)l$1k ze3EV`&h_6(tiAH7vd0bX)4o!;muD&n6-hCliH+GJf6cuQ@h8_q{4PI(!6%<$g zTdF^HAa?Qh__@~eVNssvau*_D%GKsaZVE<3zZUage-CUw89)@YYZs)4l+njy<*p2K zyuTj1g_Pnajkk;;_LNXEd24)J{HR_BdYhHBYUq*>$m%0VT(8M~ zswfUmlKKpBF#A+lE%ZSxMq2OgzMv=cJJANMJmg?mZ7M#*C&rR9>^cr5U5=|1mc{$n zliVNu8 zCb5ENoc_`KfR%uI(QB5oRcmC82Q2hq@wV5nQtrg!8f$z1GT7`mm)l!h(nOhuJ*Pd? zs|;5i7u{2Rer1VEuUD?SN{DLc_ROq7B94F9e9P}D4vL=MbLNw7)zl#>tqHC)KvURD zm8Iy3a*Z6EX%90WMou|b97)Bb#@f!(vSNG#hO7c)JJ1H{;Z7^o^t8DdQK}3*WVeW& zuO5q(s+Y#^h7BpTf6ZD}4Yr6IX$9n@evfQ3W(d#UZjV#fRu)HBqc6rvvAS&MRjfb{ z91A6ErZdLxVIILZ$|+vS^=1?whCRsm#U0`{eCmNSuLfE@-M73C(>=<@qI}5D@gEX9 z3;IRQgC#|5|1V|;hvai`R>{n%d!17Mgvj=9uAXe(825{*&6o*rUihPmzflX0SRlm) z|C8v<-wfxZeStec`x@&WnaS6eO-fx?l97m6 zm!z6;4mpMZBH89?oCMc!N4>aWg%=VlL|=Du@oULFrMrPo&UD{W7pE0SN(Pl#v+dD> zEo4J)vrZ4zw%oZz>+ob3R9Eku9)(dL#%Gq;ThMm4f7E^~p)TH)Y?s=F%CdX~FDB`?^oz!;uv5N;yZ)K1ZLU-{d2^7ubhZ6e5mAV3A9v$8_Cr*(R9F6(RKXB^hf@u zRhtW*Pf_B^b@D!%rqhEY6f)}3+MVw9@ezG?&hu7y^&pMFWyQ}RqQ+GL@;Y-CxTc=r zK7%vd=^6L*kH@DOcf~&n&(f5DrM0QAa!u2v(gQnYU32n`pxkhd*6H9XV=48l>au`RGnswAj{RhbNZbQVQ?77V zwzM8;|7DtMY|OKNw|~FY*E@_m-6w2?UxplER4XUnv6_DnITZ#zkvef6Tj>z>(4DK} zOBQxWzK$!zg{0dWZ16ijqrXWrtNT>jURUd)vELOuQ%z|^$SLi(gNKqW3v07ku@-id z)DTeZchC{@$*H*8ZTxw#F>}Qe$kojSS5Zom@A=Dh9`sO{j=vhIPCXI-G@+wqStsxe z4@)`@W+$C9`IqG7T5Id((6!cuj$F4Q_w!6))^MUf%c$bT=mqlD{M_w=7{)Z~Gvqvu z3aT#Wcx@;5hgExD>^eM2ACxpkItN}NXH~CID&hzACD!ct;RNG(oNxC1fANB6c`vU+ zX=wajZ&hU4gt)EaSz64@*P{JG8Aqzj5xboJmJ2SOg^bKhuZg%8S9^-*>2sw}i5cG* zl_IyDwhxqh!-bW7!dDr;E4$G@@5uS7frB{>|3fRGV`C>zT9d5jysdYQPVk?C1&+h_P4m>&;y&*K{|$`b z$>j5Rg0*jniy?Sc#S2O%L3aW5%l7cq@?h38Ci*NPq1dS{sU)$isXLJrYNzeIf&&om95C(jWpT=7CR zWAUTiarlH9}%)xDM5%fC#{u$y?p&;~UcB?Nhq zyu-FZDUR=cr+-MQv=-^m%{cewXa9H6(ch!qlkS0Y1ju!y5w6tI63Z2vLRV>hl1lUu zqZVR9Hz7t=BVo@#QUgzbDPwV2tMKMX$j?VV%v2>mvj#4or#DFZ1-&=}joJ36pxM7u zkE2pcH+POd(7)B+=AXiyoC#;&H_5ZhqhFN)pX*l9l1 z@1Q^J-e$9g54o9~Oj@88$k4W%pF|cIyVVBC?q-qL>)jpPlQvKdAJxFoE4j&T5x=l( zuy_HS$yp{&x?=|lN62^ywGgBK8BRZSgYih{J*}7ZstCFN`saIJ8sktw>$YHaYP?Y5 zF*CZZ>VCxo56=<_u9M-1JyHsjO5_X?J937QOOt%K;Dol(TaEH#c!u05Ekr4az(3LPYH8&oO0!f!YMK=iA%7#Dl9HYhM?xU6Lg*zV8HFv8 z!%m!Wg@(9b#u4*B=yha?W4P8MHpjxLno4{9QFn}g?~KkkEorpaj_Mlkpp_au!#1gV zGW1R1d}VrKzPZjF9P9=per3P1S4QJ%Fp*i+M`y&C6vq7;l4D8LS=KH7BxLc|O-$A! z)^GX;Rn&3^?BxZVm9VsI%bqK!TU8Z zNLn~Uq1o}SIH`x&q@7Cc;L{vUj{bsw6I#ekG(+XVeO@>JI(w&etMjPS&mZM|;a%ip zdHe9Rgn*U+`2&$Yu~~T~bz}Jhk>f`D$WQ)!R5$%OsNE(ddkwG3H~BWPLkI&HQ-fk< z_(m?FZNyV1_(ZnDh)LV(b;`bq2p9d!0M3lZUOh&R|8ae~oUyC(co z)W!-`6e=-eoViV0h?Vp+mLhwTkVx9#clLj7atizt^7|n4F0E9;mt{A=^Ia0xMUTY# z-13mq&ic#0$vx(O=r?e;J6}8Zf`2)S!~yq6HuGbmz5goSXOB|D z$@!3DmwgihS@uz*I)H={oEEUmgW#M12mTK9(cT_iCQ_F=mfy^J)Ng3t0%`R&s4LLfqk9AV#J@r; zoYcxJ2Fg#`d7LYb5?9^j%FULVIAnk2-62Z++SV~wvse3Ta9YM3+=n+7JWG8@F33

    |U zj7aZ_FiELOs34tO=KPX6m|f7_+lIT80DKBIv)Wsmn7qgA}n6mF}!%`CWcb#e*T%wBQ^VP(Bs+=sUR7X#8}W)H+TXNaE}y=EQ+ zA%V8{4hDCLV@b`FVx7$k^ozB3jB2~JiyB?d1h=krzLSVuC^q3a>5)mfgO;mauX2-% zmrhs0rlWr?QUd!uFd~j!;!ggRva2QwjN{>b_Qsx>E7QZh2A@bDq;=ZP-R%CUI`#s0 zw)?I>4Yf)gdy2g^nu|PL;zUXw>H&-^{7(70G)d&Yj%Z;N!%M;q@f~_DgQ%blT&T)3NXf~F>%QE*>c0k{A8EdJ&920 zX6s_h^t%Y(e_1#f75kAhR6`jON0O@~#)x4?qlh1BZ;ll4SMj{p%U@d zBciQ;nOirhRxHAO(v{Ro{F`fiSbdS=F3C#%VNG(5W1qd_r^G!$@1#WbCUH_TKm5)s zk`iRT68Cxy1ss&pT$>?1XNouBWurf%BhHalob%kT{A~SS_wgwk@ub9}#2xoA5Fb75 zoT_|dO{7b-OJs<3m5VBN*n3Zos__>%Hxdqs1%8*;Xq!{h^UOKEA!$$M@(`*<-b_-Y zc9wgtdk*TA&+;#E%IvGgPX#Q*9eF0O41js=H_Ayxs)w%kOSUCeS6}SS^51n@;yg>K zh1es#2mY6ssDX;#IR})D+yhS9le&}h$@V2hA@A3;{T_Zd_jkXad%O38`mj4{EPVyS zLVlqgDQ77sHl+0N*iv&ZqM$2H4IIu^*)D&BwXWbZTRsC3+aY#2nr>)~P!T`Gd<`6E zM;!4sd6w5~#vW&rUtt|k+f7UcJxl8+(6)Gk6qB8pUS3|7>-O=k^M#mcJ!nlrE|`>P z5)UJq>o@-b z_)k(3%4gXt`=SJ^nIm577G(H!L5su!sZ`n_pj-b%d?p0h-d|#(|G2%w-!BH6trP8V z$|0c${5Fh-m_zoL^|~^RhI(b53lyxG=a{#e34XjU4YPHxKV|9Zo(ka}xPlq2Du@AqD>bP?07jm#`KE$66y(2uWwu$|fiCJ^Tml z=K7lRsP(CvW4G{D`r`=|ato!Nqz;CKk=R?lW?Zh4s`}ph+@-MY7$HX`(wG1Jl_9O0OZG4F;Km-kK|HoM^lZ2TN?Ijpd|f<8$x5{977u6dKG0P zXP)*ny*pO62(W=W#8D1TD7!)V$-T`_cy9xemxA|*XO0H5t(`1-B642EcZpB!x1ELB zd&UCy6sloBE+V5V$Ja5wGnB*e6BbD|l5?qVSWS`EEALanP$DvpK&%lSW=Y@|yIFJG zIp)2|uZ^yW<=DxMyfTj!If+49eAIxs(W|2$D7!-OM5cAb%d$UCHnjTL%aPL!Zt{4x z9Hkb2XsOi9lC+XY#Zsn`h6w}flt_u!H)x*_2DlWn{EPj|>^<&})*!E_^a+eL0cdn5 zj{C$eH4yec$7`v7RIUrZTs_Cypf+*$X`Ai+VkvT%b5JXv6jFm9Dd*%I$*Y7!!pbaj ziEqYPr7S0pu^-|{w$st?ZWlPNJ$?$-Q5@9ibX&t7r+lXT$2w(6I_ceeM41!aY}9ve zH2YX%^!cKx_z;+_AG9QAO8zAbQs&4$2nlt(hMu?61sI0dk?y*J=B${bQo*EmifEqTURq1@{v^^n!d_z^h*kD-NJe+8Z(1U0?0 zO2q5;7?Fy2eNP~PQ0EATl9C!X?GI79vA&MEt5v(}}3McRHI7#U*k0Mw)@ z?i)u<9A|dowa9p_v!m<7?fbmTL>{vI(2F<=_iJz<@xZ>NHOU^?3Uf+`6Rv)cUUFf# z@j8Dc?aKLsWN<6JTNCd)opRdw&)ChdQ|C`}B+hlCwZhm6vC>6P#{QWH%04angoKbUkfX*Q&x5PE_8TpuciExv?bNrq5v(B5| z9#e09ll!&R!ZO9vW^d!&0DE#(tDD-Px+pbBo08n0I?GnP$8k#A4Dmjs_TOkhQihak zHMC2}iFIr_BAw6JBe(%I|3Jtvn~*ulW}5M!UJa$};T_f~T0} z0GXY*Fl?xQCFhk^hL+kT{z>O1Zy0z+!w7r&Pav8{EJ#d9yMVJoE|A!enJXL*rCaZy zO=5y@NXv~Fk$y@i?={2no0`8BZ)#S{FL!RRqt-RrmsT=pi;-FKd-upOEkAKge`!Rm z(npQX{%CiETOkU>WUO2R5N$QRWzp{{H9 zj3-)Ny%aEaQ{Hlx`E5`&J0M|vC1xWJ0iP04oiF- z>^Rxy8NDarg0AtOLYu@t`KB9c&`|$Sj*)ZuJf(wtJ6C+_)z>oI>COc>!}@gW&%Dt* z>>cnv046z#cGgc7_bH3Z_b887&xvg@?-AFinjaA#`?Y-+E0S#hHCwB(0wl%qFUOp% z3`8~!XMoXno{Gp5?HPY2wxk}Gng-d#qS(5~?PNX^u1@?CJP-Qx#`?pcZ#c7A>E_B; z+AjT6tb^MAfxVSY^-sNXoI2ifV!A&Vc1kDlO3-T!rONrK!AlSOUGo+6OS#A@CbTNa zxuj%r4ka2b@OI)M^C@>j^?7RZ`~1|W=$X$3wy9Ss8o`!_H6b2N?ns>~X=ja6_7z_` z>}cXM?Qi#WMB%>k4S#_6LD)gNgoOM->`1&IZWLOJn(2(cbH9+}S@MeHW{DNToQb+x z1MQ!@YW3slb=F|*54=PDl;s_FA2+`Pq>w|Vs*Fwj6n!UeN%D}B@E&$@9bfbk54dy1 zgMyliGsD(o9)tV_iIM!aT*dp8703@kTjVLulGHNN?&j0=+@tm&^?P+exMixpSqIM# zfYb*ii5*_ry9uBEA5-4~*JQo_KM-lsv|(sN$u=&^G)@eqq_WtC#Kla8DIzLtaZYwn2a)8OYbb1X$J$*MPOU(p44g79x9PX2fi zD|?_J{Hvxir^fCsT~o13yU+AJ-OKc&0v(BcA`&hFl#;9~!~-Ie5Cw!c_wlE-VNMcp ziS`8a@Jn3FOiLZH zx@oGovVG>qsc$MWxD9+ByN~bSGue{htpg#s{OP4Z3w(I-(-v!Rw9tJ`B>(+WA6SJe zmRF$?MvxBlnt$EdZTp^i$#mTCy)(|mYG@I6#cQ6xO|KVR_moYnoqmdCqe?$6m+oL6{-iVVE$$BGV10jzZ(i3E< zuFaKR=gaI*sM`lCC|DKx85?8!l%|;l=FRBlEkx}d60*4MH@OJs3tSv_c@XbB%eA{Q z!`5Z^_p)zu_Zwb*={MX=TZ9{FIh+V)bN$XfgIN>a5Nr{W6`?1Yf0X*ysyl5-EXgiN zhDt0smGA=J1+~`nT4|hhlQSDXC!b8>MyUTduIqoUsdbV3eI_;b>{iQ&VHHzAbOpVe zl!^yTpOsgXcA64R-#Yd(N-{FLhg*sf2?e(+Nw@VR-Xd8x!9EgvKdD6%FGhSE;Y?!5 zKbHQ>`jK-UzJ^92-rZr3b^c9%OFy4^k;m>Uy2SYG3Z?O5=OyxXCP(+V{hwN~Raw5v zR9Sw`{ z^TwfM?DJnnsVrUP0+#}(n4-&JTx5E;XdO$>t89Y`JSrlD>E}&*%?(U zO*CBsyW31=&Ys0MMBj*R{7*KdZ%O!)pj}~{R@{^G5aLVFD}pC~3F>0di>>@4_j&C! z*KTSk_~}{vGWHMqyYwQq(ezqLfisT#QFo`ow&J+G$n+!b)FEfq$(&b>d&^TS%M8z3 z&#YQ%(U#p~%Cc<2ji{dl#~@igq2qs23TX*AV-r+mR&3P7R}pVUq(ja~ArXeql3cvj zw5|MO>SKJGaHfSCv42IqXG(K!a^;#$+P~T#tDL^&b)y@|7;)OZ$W&eR!HR6-j^!=d zFw;I~JEuagIGKAj_+~=G|7`U(Jqd=FR?E!W$mj8wAhS??p4cXG)MekAj+VSn_2avl z{5703zSQM$&bCLEq&PmM)|BnEq+4T5zv1>j(vO>InQp+EOv{VL&6WkLuyN7$fT71l zaYFtne0stENrX@ll1oTK$=8X-FYK>qC5Ee@fvjsI{y8m((t|ax(sA}Fm0vKgFa+lk zzxs%4opUd4{jgQ+HziujSC-rI&9c(X_ITVIzRylhqDUyOHs+S!ZF{onKPC+|q4d+L zHe)1PfI9~Me@TRNA{6(DM@TZgL_J0Cr^uO%p*_W+9ksy+=2oY~@bN*niu3`<1RSo64OWs)iu&vZ^jpTEX zG0_Dgk&sM690_rS_>dq+tQy)%?d5x^0%$!!?x9Zv{Z`e<(vww2ry48I#N5v~wM@)a zIOjOxoR8Z+rav?E>+R-BZH+-~Su!B+{%3}YvR@p(GQV;Qko(Ny4bESvNv`FN{nqHJ z!0MkVU1f%mHNRZ>p7A-8({>5xf6SzRH+^M)*ZAm~FP2_)v{`Pfp0o76vOJT6nSkA@ z&jsIoTPH$XA=J#it*=;PvE0-Qj^94xiPUmK&%rKC^r{<1No66slz)tSfggu+Yb$Bm zm1f)LI<+RYa(wB!su!&fl*~6=qp|kFQMoCnvd5CJ{7e0c6=$BFwqmFKmNOpvcTfL0 zCgH{ZI76r+?;>~usN7=1?H#0^LTr`%j9?1#JYowsuYzAa!JNrW;16)i_zJ$;`KWz{ zvyN?c{Z+Te^!kbijW6i~Cci^fmSRX?w!n7-x$6eZCFM`9S-#p|$ry&s*H_7mM=V&GE)0W2u4Am7UNkfeHLp%Pth625|+_EVqTjWR(zrI=o*p3Rk5#P^YbOfOuCKx zFXnh#;)L4-C6oWj&w}z|B=Gxc)6b9x$;(J>n|M%Eha5>Sr!5y&yy2kPyRm~&z4jfh zmAk{GvwTZ!pbM(ntw$HtuBxy^TI}{xYJbtC(wS_%v*+p4mjBSz%LZ4SGQLr<-&Sh6 zVvriD*)Q9)~RRpC5Yn`@P<;zXgv=tSq zZ_r2E$7R|?wA1z5lIJbYKiO4w!|+$fo%Ra-+t>;6w>7s+U(>AqT}Q?0B3qSVtyyZh z>6pQt4pKqh9(rpC1>Kg+Oy+%5jiNC3zd$0Su1YcxvU=xU{(i&bMOO@eb)lNWm9z1D z8@t1H!19&L?s~D}HB(oC(mb!~OXprTfj(OGU&|``E&A-zetnnu3&SPqcU`Ns)Qmk% zmF4CC=BEZTTS7xfH;Lp)%(!higtA%O=a3YMDMUAdr*Z^&5R3CE6ZjeC8%CS88z&Y{ z_e3{be}*6p$zp5L$UVlG6DUigXdr5 zoJs%o~aEY;R;xnzIOu|(^zTsLEd zy0xh6DdEd)ZiIY2iRt7994Sk7_a|cg3_(JPd~dbLamw^Iwa1|Z2k*mr zARi;PHaSO`2g(L4OG_B%5|@#?VoI&bccz;c0(n1L{F3R9s>jRDR$O*`uzJ4r51qX9 z3Hx`(Cgwa(svfr`K(vFzE_~0C>JO0!sd$jAScS++{MRgIvhy4MlGAn-^(xC=TSPg(ejw%3)k|pb(H~alVMJ|9dY}X z`JU2g*0U9vE{<))UY^^$ARLkNF_=BM=R#=9LmUB5Yw;LYUSp}qsr5t6~p zbY6Ed>`?geg`FJ3{j!f!kJ;`h8=zTh0^?(!Do?k3PCsV8 zRKCDoZ1~YGwcoTYc1|+Yt{moVdtV28q$xw)w zA~{Mhy4gJR?uwR;a$A1+zv*W7eXJr&j-J+YV=PGuu zYBo$TD|B-#KUO|PuQ2a*yoB|aKiX~dEz@GH%WR+~G0TCzrhp$oiQxT+BCb*UpZdYn zB3izOpAt_()*TS-AbE76nL=%AnPrdRQ~D{U9ufXJ_a5tKJ0Qz1D*kXBGqqRFvmWEt zSgGXtG1Y2ym49FTi}hEmEZfVy#B^hI)K}=Dtar|3 zJ}SG@_L=G2a-B_QTM4OMr_7aMmc81})zhn9w*FxM!n}+A)U|>dt16-MansY2j&E?& zKr?o=--WS5-U>3YPQ^Kjkd)&Y{VKB?ZzfccQ=y3EkWM;@akHqb;uU6TrJyR>bqBk{ zxs5Nw-9)9_Vty&B)V^lD*Rfa|VDI2BIQ!QORs33d&kBVh*&1X1uki=R>+DyKcWg@x zlS)6bEVY~Jc2Hsb0MYZ{pIMc^u{A^w9BT91&Nv1hAt(ou9}sSl?hCMxkzF~-`2Lmx z(>{HR;bZ506zf>-+RXl&#YyAbv#d_Hz_h*O5IwkZ9W#~9HJ;OToB9eyD<;@d%fg)D zI6Gphel~W5%dDmL&4%;#VM86A?^w>1pyo#?A$}B|lTw>5;qBl7-RpRPTF*`j>P4s` zPVh#kmzik)nSN8>U@qNs*!YNfC#`kaIA9LuYv*zPZ~R}lyBV?Niv9Jn^Um6pUob;_ zmQB0*QQMr-^%kk)C(C*LH?)^+(*DiRzp2#RXSvH}a;R~4=eJmo9HIl#D33Ll;HJ`3 z)yeuJ*1JuPpfo~K37rX&Wb9x4)zf`tM{G^DuQ`T|<{xFt=@WNy%rTqO_QvY# zwwyJ&Oa=chYqz0Z`(tIc^r70D&8{edeHv9>2q5EQC|Sx5Tu5UF8{VH1vfPi?>XDC%`gRsfY@wEOGxejZ$dMr zPwQFB{)!q~Co|4YIoGkH&O=-UdyJjT7u)w#e(Ut=#8!p=P4qH$nI1GHR;AmxDyrlm zmbNugYh0IDU%`Q*OH`mT!?dodigvQ!b7?qPCM+l!c~ytDm|D&K0U8J&r6*Swl#H!OH9fqhmL6rL&UD+it}ER8%r-vFWvPy0FEfAPc39(Ge=!d@pDSO; zpW;*P>#8p(eW;uF>dR4!w`3ldByo|?I)JARcV&}T9L8TSX2J1Jrnd#vHxD_GtHn&s(!S- z;4HIuGtXk}N{A9U^|R4#d(c&f^Tb2(1(xJo2|5TRgo+RbL3f*4w&Kuh9~OV8Ni_XT zU8Y~6Co%6mH_Y~MPqGiAmiIh2ovU^X(XZ;SFMrwbIB&3J+l!4p{Y%zkWf!dvo3=V~ z8H#_%(pkwlE>@&dH}x}27w8qt_S<&j{J30iuyH5xR`TXx{g3z-P#UU|2loywIa>Zr z@!E}6>TYWX`vi4`F>ui=gY(B9pyu0l1v?(3I*o3;OQiE#wqhp$iF5>$h2%nP zhR{H?6>FNS{%Z|e`jPz$%Y*da%}uy1K9kwbRdbVZuFmJ&3)WlCD$_#yuk_n|ob9RS zzq1xGUsg;sx$FljGO9jZ-EMrEvN@{QkGZ9#FPb>VQzeg>zoO4NcetjI6S1KWXNmQ= zzN6l!dvR7C(NAJagfHZ4l3@~5M(UM`_P-QM3=7NevL-lxV|Utrr&inVbbZXJ*wcI} zPIG;Pzv%j$mgw$x{EgkiUa{G&>AGJGQ&*k0Y7MQHt8^7O#c=be*=zL9yKE0sNp_c_7`fqAoGB-EOvG6Q&3{rtDo-gvYC>3^Jc)WTwQGf@V&CfTP4zAt^P&9| z^}K5q`!O@j-N7|7NBP%WnREsHz4aO0YI*@L;v4MO^^2?vov)Y&E2pgbr7~&5LBn${ z6}O7h(ESFtb@9`SZ7(=e9j{~G2014$nP1_0fg40Gnsm`8{2whLt`J!fT_OA-NK#t< zjNzDLGW`%U;5x)SYs#m0+s0F`^4~LZSP+j6!4~E*>Js&p`3>uI`&LxI?&V@k279r7 zf-RDIZuvi}?rMBD;#gq%h__ghfo#4{Kz?ho_@f) z@qO_9M0W^^B=rYEO?>g4rYx%598LMrWuWXo(J!!1b4!^K?hJ<-G54{n#Pyx-T=g$b z+H!@O&pp9AEho$t-8FN)Zfn($Bg|P%-Eeg{zhkds_3w_#nAMA({A0ytYdyQts&_pE ze=BD%Z{KTwk9nPa{+R)8 zF?O-d;&w4>%7>imtcBJw&cOGY4%(%wUbk|k#MIh#v|0Jc5l-v&O%qry?!uG{-X%=S|lhs*}y* zw$XoJUGOTt7Cnx&+^fuQ%s7Y5d<&=6KkwXRo=2UknpM_s?=n1QtfarGj&ps-wNM*1 zEmo1TU`3i~2iDf?p?`7}^LLPyN6v8jQm35hM5Mc&@e)di){+L zs0j3?3!UGyjofbbXV)mN0QQ{83$QX!$WZIA(sxj$?0EAguFCqNYrpwzW1Zclf7SMM zsm*f0HOYRAeSv$38)P2WUMrrS?=8_dcW_he+t>l_Q|19a3wXr8`c-F@Yh6$h1Sy8N zLZm`uLu5oy{dC*W@*+CQy2YMAzs=%!18&W;E_ORk?fV5eco`S&y4ScB=v2Wic3@AH z^Ep~>I%a>=@mIqQz0f>rI90L4zTUa+x$({ncb4<{vIB)?lZUxZZD60~&G1QofRa14 zZs(WG_c)J}oIMmm0k?IQ$cK0s{LklG?x%War>%i5alPbh#F+u{{7n8q{sI1XoIRh! z{LbCu`iWYJJ=puJ!<{d3dYUu+syjZo9)2DB6#JGTlWroUSo`5%hW{pNjQvWEOJl27DVQ$Q4t` z*bi60oLGAgb`8`wG*M5|we0Ve#Z;8xoO#Gt$Cc4jxJ8`Sp*BWnmYbw>2g5sVaZ%h# zri=X%Hlk&(Vmu;~P%I4TZiqwR40YDhz)W&I#lGo!f}I6T5B?rG=#dZ|To(5-dxrVa zT8woGzqpogM_se1mDs1KwEn};MT>pE8LSnN&OOeZRugwG|D0=QVP@rd7l)Pf*-jU| zlPTmr;Wl#Xjc2JD=%bLVGek#7RuAAOA&nvL{R_SWUU3yz&OP%Slf+D7JyaL-J!b&@ zvyl5}@mcce+3b7V2kb-4MXQi%X0NkHxHv}^5Jfus4eo(mYW(O`m95_L_u^%iX6o54n)1@=wME;hhEP8Yh?ai6p6xzEfGFyCVIzX#8-3?Zpd%no&Qh;5OR zGvh06I0LReTE$qMHmvyF@+a;}=5x6J@C?rp8rhAwzhpk|=8U$toDSx%Y#aM()hT*0 zcKF9R*IUjTGR@SQ*A05=30`9Si1~$kna(ymN@;P^?n>$_#LtcFZgvwh295rlm*Gr_ zQ0IVThav1hy3ph+)IQk=)8|w*JIA${OGL-xQSMWmY8UjGya(r(UE!ZY-o1-o#U12h zxP|6!x|$hwtwnWs1X;^Cc8uw#J~ny+v-*L!>d z^Qkk+md!rSRr1B0+%dUa@0`hg$@4gCydlAx#MV%Qqz9-BR_VNpy$e-| zn>ev^7&kHy{l^L9`~)&9_93>PImV6fE7(cKG9i65j5TNWebhE~F?WFbCa8hLQ^Gf+?^=py`msM&Thx&I15LLRa&;7 z2O_*6F^h1A?4mPo=gV4m%#qg=02bIOj`zp=adLQ6j|)kW?(^!H<3(^)t7BF?l~&MtKc zn0L8VIH&YIoUKXj%MA9!gVc~5lGH_mRUm4v?Q15HOLYB_u9!N^fZ$O;-H}_YZg`0@8-$S}T8@mqXvWK}34O^@3qdE*d?9}J1sAkj5PwWxr zBImai!^SC=mmCkV3mi{CGvurURp&|65X;&2Gbfl=u%`SVv(9=Ji1Y&cByw(&B@k*z zB^{9^nQuF5V2C z{F+yC!_;t<-PFSV;CjTh!1WC8aQ*1m$VQspU7bnU>_?dt%Ukp>I33|h?lGW&Jnj#y z1$49RTnY0Xa~G%J7qPeK`OYEc(x1|SOz7QwD7Pl}GKAtfR&CL`XSoZhAI>y>3-<*d<6Pvr;rx*+3(_=`UhQl~ zP8B-!gJ^Z|=2m))KF*riteXFFH*0*{uiWGO3WTNo}KULK(2F(S8-3_*2y(aCF5le@VT5G=MUPsr(8cE zmMjV8Es($KVaF*vOKvJ9elOG!BWIJ|$95v_N^tt-7~fR07csLC7Ss=Fh!?;bDz28F z$Q^TZHHuu1@EqI2hD}Tv6!;R7%yuCUCZ|TKdR!7;j?32&_#Kmv{ z_I2D%8o;e4eS9A8!d(@o_#u8fe+g@3zr*dWG^lpLLdm+DkX__)ud|(aKjAysokF@a z1bNQk&LIo@j<4gd0?qu4+~q$w!SFx0Jt&<2JAanfW{vY^3&cv_9$=xqwmARC^o8QhggFjDJ zU*buxBFGV}egB&K5Vs5x?vUFFf~zq(InDyfV>FJWUF zaWj$ucPPa;-{arsencnycfOvv#bE;xyOJ|A7xqgf^AmSVRzu_-=+?Bl>a{mIz z=-;rnIs6UoEazBz68FIzf(LS9j%|<%i3dOg@N9$ZiJ-&?ekL@{1ZsJZtw%NWwd!$L zm;DF+yp1zbPhvgfEpX+(c*ASZun16mnSYA;4ID_v4Qf%~h8;Te2fGTl?AGy=>sM|w zGrM{cZ0}j{MS*+3F5%`C9vNdgKbL=l)xa_ibBFN#`#2LOv~HDH>z({vIN6f;5n|y) zvyzcv-otBaOne(|YX4XDf5{xs`HTTQo%k$`Gt;+1Iu%&we;?n1vpxEeN#4gZ;CT<$ z3~b@^ffg@usr-lNan!)36wtfV{AB#>7|vb$J8XU@R*m->i^G_}fUB*IgnEx5O>#kv>lNiy@BhF)m!M{;wpO3rG-(x@H z{@^dL2hk;Bc{8{{>`$%EC&~Hr&u8t&LX(pnS54$1189+M(^=!tbo%-auutTNhnDk$VgCUs>}m{}107iSy}SKs5dkD~F1(bM|lCRsLo6zu@SF>Ib&?l~u|BSoHCzE@AvG;ZlM)?INhksI?3W-g@X`eq~6;K1#m>+81L~68u6X!7sGph%jNez#|i? z!~vN%UV2pOji21ozs?w5yFNxO_Q*tdSRo7-W=Vya0#CFsUhGyxWQim2)k;Z6ckaV+ zTZHi#%8Oq}BUIw-XpssZ6Do!Hm`c3$kiw+d?95P#YeAJ5RH?*SG7%n56RF9!nfTaF zlWuB9@~FBAZ^O?-Dq)?}E5ldfHgP~92q%=P#F|5jMat7x$tY4c`K&-oMyVGElo+Z` zCXAol+}~|d4y_kp`q4r{JwAqMHAF|s#9FCaf#K^C_nEZk>UZ1_x}{#FfDkDRD8y>< zV1Zv7ovoQUBe#RD=?eORQ-n~C{O@fF2vOS~~3&tY!yAUB}!szDXLs+Icn5|7NQ z77LPkHfonP?L2|GMW~`9qrKr0@|+a(X(b-WD#&MvJ7M0$ag!U8CM^lF)2k4Xp_)o# zvt|B;5_g)vT;e9}r*G%3{`7L<`clW?P6ctRm7{Hdde#wJ9Rw{aPth z3j{@j($=?o-&AF8n-A$j=CP21Hd(0jx2Fcu{Nv=2Wlc~Tg;y_WJ|8x$Jk#EJlzgic z50a?{6ftgDUaH8QItWgZ&yJJ0l@liBx44sX91#$iG$4aUcojmuJhBk>;nj*f@+izr z;!#Z4L!WWWXX81jRD{g0#h~JT*`P)^PI^M=-zASogZcy%8+>%J^WHg{5(g2U63RNL z@Rmyl)iKvnJu+W|q*3eF$3~`!G9`Tv%7@ENHY9a`NU>HNkc!5MJxX7LV$zZruwB+v zD{Ul$dSn|m8%1t;N-9WGLj@wpZ$)jgMN4AZ@D4v1ktRGUk5q_DC4rHQ!G|ZcAB3b+ zeZ<6lWf-M)VMd+?6YL|h^n{C5lD;&NR#$TF-l)8-AI8*+2NW>BL4`mao0-;9E*GSV zA~5NgatTDHmV$qaXia@bt~#sCi+9K()Gz~IAa;=o;vP`M)JI3j{5natY=f_+=!G3$ zYl;(yX3H@B0VSFKTs#7CXGulhl%j z@m{@TKc2P}S~2w--E6ian{KEV)S8)Gxt|z-NsRO0B?im->^E^O~EzrD9JQ z1n&v+Yh$BSEfJ865T+X+0~1e+(M^v#pY%jtQ?suQM8d=ac!w-U>#LX4LZzgU1)_3U zwrtZLdg(TKjv+z;D~ptR)tI@zUEZjID&u3NMDTi9j$&e$M$?g!LW~o78ZXjG>J%av zWU5as?vr_mjB53Y$h3(Q>7`AbdFpJ15c5d&#$&$T@aRabxFZ&h2TGkOS{R!hE^&)5 zjdsk=Ya(IRsG&WlUMUsrAr4Tg@N!T^^u-^D&4JvA z6NE_?_{*h{@e?;Uwdqn(&sZ3ZR?2A zoc<7=WVPD=qTu7^X3(Mr5wUbiAr+1*vV^P=g>?Ud(jJp-+COMUeM zk4BW0dZMh!4GX|zPAI(%u{mk}_Snd`)02y#8!5373Q!M@Yh!Z?Mg6jDrH{l4#J3a5 z4cW;9sxAAAW449O(G;f!{R@=Zqw<$04;A?8r2%EFl2~$mUR0)dSN!Gnj$F;w4>1&| zN)QYxz3p;gS<^0=5Kaq<8KF*w+#sVg-$KRI(e^0SlJfYAe>}0W22h%@8v^aDsv1O$f&&%mp*bzPV!d-k^$0dXDO{;H z0Tw0JD`G}>OwcUd*3pIl?t=pb^@0;x(J`o~9}x^d2?plZD<+Sw%MAymRaNi@P&kBC z=?QgAeKHqm*t7d7Fe72@oAtv@Fghwxo(Z?dLmWs2azHv}daXCWu zyh(W)HyJN2I3B!3V>kql@!BL2(Ggm>B@w(!LDMiD)6|jwNVd!$wD@{io<^*fO_E}6 z2(ySd$`+4Q$jqOpiD~Mrtb)Sfl`>y_m&zK@vbEYBX zNiYIH1RhBzYg9ozq5^L{qAAQ}Kqm6UW~w#~hi~oglo$Iy^y=ZNpdf=7G}^mFR8QuH zmn%f&@Oqmzo3{3JOwcSj;>&{Gd*KuidKJRCqPplDg(!hwM~EU?)F7)>_6+AqdXjS0 zk?}D)h)0waD=HN0q>bT-=K;7Lx%1keC(P8}Pm5d{=@Wjz@b z#w4v(#X=q1WwpzCzt)~>-wD$tGxEfX^}15Ch-(tfE-%fPM_=V%vB44 zA_W6s{#qH3Oq+P1fG|SpMqDUxtHVU9d%KEToSn&~1ArRBKpF^Nq>5>f1kz#%KETZ3 z?>(}TQTgt?n24SA(Ge>JclN z^m35~?;TW05CaG#4uk=od*c1>*rHnta;hN!n)Fi~{ zQwIySZLU7k2ghBc5W;1o2^!=%8sHLgADXK0S<60P`am zhEE|n7TcKJ`;B&KKOTn9ZitRji}ljMc=#c_!yTK0cmyPkkzu9*)8*sx6wT6Rky@9{QzP&0#$O9(jOrmToU6EpUedIiNJG0 z=zDl<_FG%5;}HCf;Y&RT^x4qP=sX~(u&A__c15HbIuy)5p!e;Ci!@WLrsi$kgjXWM zE1^dY>MG!tKr`4Gj_e7PZapja$XiGE&C%9wORAR+!23uCHGV_`RZ~MO8B~fqC7wh{ z<=x9(Z0e_5ukKp}W0JWAeF|^AxNokwUIrL{EH)AV2yjrKLJV-Ljgl{7Hk(>Iy7M)e z&0@6_49kr53V`nsFWZtKEd)M7L6fI*uOjY3Qod$sQ->SIgn10YEx|>K5wVqCco5`U zFux6*^t3auyqJTXv-6?PnJ_xo(ICK%xGxP3B^$0@O#YF0Ml$vqJQo%WYnJsSi6ov( zpDuYYE$E;SL!%Vpa^fcuYo#Ips+;oh^o-HYPR-I64iG=&U5LqmYaXSS4BrGnA?3j* zCOl7{({34}n*!@*=Sh?zt)vcaPBN&5D%T?LNdrNknI_8BtsZ@|!!+#<`Ru%{?FZ^G z0MaTz-F`8=4-7VFp)#?4dfd;w9SKG7w#7>h?u0W^h?J5+_>yF|LZFupASDxLrNa4M z9P3>ypLU^VxOf?2<0Fv@uMSZNa0ZWHz6IccTPjqGv&;P1rcd5T+*H##zOylJ@m)Ju7X+(6AFOZ6bKCl93WG|44zr^D&@y!n11AVj&~gt7_GA>ay*LQ4?jgh=8Z z+*cdld^~-qrlm)btJ-=5x&dff9~Pw~*ink{0>tHdG!tvJ-t_xVnp*pljCq@nz$X&d zhosM^0;&r760j*NETUF==}>Z=dg^HJ4$ZP%NyGs_=7S2iUh0MKgt(#i$Y!A>s)^>6 zQOcx7Q``vj`ApjZND#Uqi!5kr0DJ=s1y2D71;TK#w@1+-zBH1)kIwAqG=Nesf-vHA zYEBxM8BAO7U%2=v!jp7pVeiJU>=)CAO|9FKI>Waffuo3w_ch3Z4>uC~faVaVdhbSh zT7Q$?czLAvO-<9Gq)v6DvZ*fCqilk+REz2)UO-MfOsWC%(l@OvIxAXeyfoT9oLAf2 zK17^gxFS+3*%cePM5Ki|!~39|po?xA>rK&~NDJFMuHWLl(3BCngidMsm4ZiI5fMq0c>o=lwt!(`bB zB2RKKMl}+@233K-8o6I*x_lwsC~Z_Kkj%rdjc{&ABh&o#GH)25qz8yrSSy>@Wr(}A zV3-OQjkEwtGq3wb*^JTN8^*0lZ{6LKM|(DCCXe2Wv@cT#^)3Jzh(~n- zVi1^M?4}ycSkJe#Mk`W_i$;6#uxIbT0PckCB$WpCAqbg>;_kR>iaz@CwZwXHT~9`> zq3K}K<`pBrGz6Blfda&C@Bp^((4%+JB^M5#(qxBu^9ozeCgtY0Hb9XE65!T{5W!+a zNU&h%Le=zF$9jfqw%=L+gp$-T>^K9F%>__`F{!-Z8k`KQOpqy#h+lAuzBIa^tG=~g zd{y91?-|6jI_mIS@i2 zQApT;@a~OA4jYXbT}VG^DtcX@oIdr!ystD%M^h0DWj+8j4RPFn24d8kfR@sFZ`8LQ z4;#XKBXUh~S7T@APd%QhgLCs9lMXtF?^KD@L=RN)m{FH0?pFE+>7Y#BNsFDG8+FY) zed7esm$uYe7&}6TkCcJB`{-9Mq+96LZn1Xqw6_ml%PT&Vv4?=gw&)xrA$VIYl!2)2 z<{<1T>x`(NYaGUZ-N>ESmfllHrNNlqQ9y|;(&UX&!ykp(jfVzss zrmfEIy>O8}b#xSL0iu9>-I%2;dy7{G4eM;AE}qHQlNnHY7p-hP_tO0}aTih{WR(xx zNJCM~lO`x9gm1>fiq67i*@v^?f>IFj-925VsUSmqLM4VbOB2=soB10g?(D;T^y=fX zJYDv!#G}%Pu#{nkf1tb1I3n|A$%Wwp1TY3+JHk#;dG#F|OHViuUEHJZd_zw=bU(q~qIyLR-iuHf1PL1!)2|-%eXY%Y%cm6# zB&B~zPukTpv=U_-Byp&<04Vv1$`eK;9Ui7jws^lT8&G*wQqRncu7Z)#p3SAeVRc}v zq@L7nGR1JJT4~G8-u-2fS#l3Bh){KR$@;y=b(i`PqA`?Sfik2j82At+z44~L(~474 zk4uq2VthEQ`B`$E*6ad6%TbB@2|OxAy$LWX@Q|X*)S`%8l#66fmC(9=-gO$dQyH9= z9HG1(9!WF~y6aQZt*6rik~4>ZpJ7Z1HU68Dp{i*;sain*fId~A5ol46gsIgcn%-SI z(z{F2)RQ=lJp7cdxnfLNpza9qu!2?-!|yw<>)wro^QE8Oj^`C>3Ji4{Ub$( zx=}Jy#6%#qgnt$)Y7sw_JvVA3z_!Ip9e&_Cg<@Dc<9N!6QY230G9**SP=65;0mOc5 zdiBFvt!4=lK&dBng2B|%-n);I06WT}kiJS!p!h=qbGY>5JJL@U4aUn8;X(X5ao}L@ z?!1fVQ<3>A{JQ`;MB|}rcsXWdu4%onw@%X7-h_~^^xj|iYJcY*df5>XvOB7!Jr}Hz7Jw)v`+-nF)vp8-z*94i8h_0?}6wM?g@}c3GEk3f6_YC z#|Hsdr%yXAx0*1I1{sp6a#@tJ3Dp1s`~wdi8K##i{ZFK2lbWh0Uh#ouWVHMBAf?j5 zf~NXpDpGTuAaGo?xTa;ay`;;l}rUVA-6e3$BNyxdG>3g)7M&_x-k*KQ41sW7X;Qv%B-DBxCTBP*l z%pXEE0E2GW6n=4Zo>V+Y*bdcGgLNAg-(5R;_yg1;?;V#M&S*u4UY52amkM53?Jc=`MRmDsEGH^`zgp%L)PYLolI z!HG3Rg<@^=X@%$s#iTR>(6aY!q>EtZsHDcY(bj1ygIC!!JpJ;>;XSe0Qtua-Z!hta zTYM{*olikpswLHA@ID##Q7*YOu6G~33|$%V5Ip9b)?iB8pS}rM42lwXE<~y1(vhU$ zs%fb9km^x34S`C<0|W9s#Vx3o$=w>LUTFF==jG8QBcgV|H;8d)goGHG*l29+-v@lJ zZCXd*C1#}b)mWxnhFHvfm@$b1cAmDH>WHrgerR!IY>-UjH%TkO8WAunr@{( zPZy;%>F{uE`J9r}S~!Y?DSd@Yds3krT7MR#DySz29<`A-CO%J>Tm?ErgREW=7YH5y9B_4&SRPM!~vK->- z2NbenD*^L9SORw#uRN^~z{F9EGl~0O!N+7RJESMVp$EvU)l&aw^6RFeE2*Eu7bj(5 z&?Zca>Aq8wO*(r~YB3R+7=nSR!~uxd-0o8+pOATTw2QZOgi8aerT`oY zDg@|9LFKRQyg_S5_a&ftrI;z%nksHX(1Y@@~N`+KRxeRHVM>+`P2Hfu5q+N~Nl-gX-(k?l1wxx>lUWwDe-W2-e zK?*Pc*65C11Z_tm;nj;H(&vGU?kklnm4SlLg*# z!N_`fmGSh2+Il1$@8DrYQ=2qWB`GHeSuGt(*;oqsWiuOgP6P; zgd{|^p=&N4?lPX!iuzFiOUW-Re&W$}z|VgD>?nnAy#igC9VDCpZ$QU&MQjETe2=6) z18IRtbLPUmL-5MAyE^C=OrNMy@pd9Kc(GHBSIf+&>~??r_J1}K>g_U>jDPd0Y#>blM4^0X zb6JkEDMB(x`E`&Rnk9lX)Spo+jh|CA+S8>y_ks^DP3A9+j(qwsYJ%v=;bCNLIZ82N zMH*n)06@&N)@F>{+LKr>hjtPHIdg)Mh%)caq@xHcL5qdjh z=?2sXiI_App=XG09g`b0LTWq8C)z3STt{jxNVHLy0ak`{^QaTn5uR>r&#b(+ zb7W}V_bHlmXi|&D!K0^tLzfJ68#4zB(Umz_=(~d8)vJ~jr6T@%(vZr)&AE|Wh!(-( zd-t0p9XmXV0fpq45;~%vR;-w)D}p8h6@&|sG^CNPuVVg_x{}eud$diIWKdq~xZapkwr?tcd#+10Xj(O9?0m(1s)v@C~Ns4VQRkrFYd#8{L<$ zS*(f+#75Nb0H{n$(%IoRu!=#p9hO3H-GDSgZJKsV(WSlEllX;vNa6c(S|o*Nb-L`G zagvC5u`YTu@p>ns{qrSiyoC2(WSn&Qkkvv@~3}S^)feeym!OQ!>Vxl?Q2LPg%_Hjo})Oa-0@}Xq&m^-lF05J9ac}& zqS#OXq(4YXx9HcZB>wMGx=hVIiu_z~t?FUn++bC0XJ?V8thN*-en=3O>?SP|EX4Q; zmfY0eotLp$J8`x$$^qw*otTs$YlJ8;JSuI_HRAfb_gA-!EGR8*YL7dvm|TwqAQ4I| zPtv4G)L8z5$c}6qQJ1W>s(X89m$CJl++4i1zUAt)B?W-LwQ0WcA`fth99=>9L^X^K z1!wKu(nGy_sdGJ@vy~_7CMIY2k)~mkl<{I@$7O(OB(2wqb;$FC+QN|w>6_5uNSXQY zB&94l11#@zoMCU>`)m`xNs;^u-I^`P$}o!I(nWBsh*{F)@uTC?^bti?RT0(13yjBS_Oi zJLeLD*UG6K?PIBfO_EAz7)JIgP(%$N6k&M38>_uUIxOc%AJ(-VNXgeMp+$|k*$()% z$atX^%eO?w;Ecd=k;<<}YtpARUA)k9Qrp*)g6;^lB`Omcq#KzleAr-_uwK>(e;qVVSoU*$#3wJggT-&Rnpm zrsQUlxwxsP^Nu_b5SavV0s4|Asl$u}5Jj->g7%&`Ft)DCF4@*?)Qq(6lxF~?!H=h* zQ$Dx^`7|I&aL{p}K(u(AWGvlVe6d4r%<~5aC8b?&xM&BV8MP&uzby>)H9+d&D-R;nrz?$qWnP8DtEa6nhm5H)}&1yOeH*!^=_hT1N(BptE6OL8pK}@fMN0w z+CC)xuaKS~t+GDF;Z3Ny0rZ}1-gphowZLpwWD)(am%(2s3`mf)+rz-2^5Ib zaHS$oa5)jyD2dFa(@+BirD6G+rY02oy`-0lxPS&I8q!cR3DOoNR$_V64-e~5aBeK# z+P-d4ag#eZEkq{rFggRsXFx`PSOr3sYzl(#g%kt2X`T6+trVd^MhqKEmQp>kCJ)eI z(0&PexPV&Z)NLKcyygzMfE0OQ0i>WdFjuIPi{Qw}DkQ!5gu)kL+CFl4llF8^M_%5! zj*f`fr~+srD5yt{DBhJ!T1*hKuU$Hre)xJ#(MXD5305)Whr>+Uu|@y|o`W!Wlm2eAO1G!V8OE{#ljK!$ue zLMf^#tCS@d?ba7aT+buupuTejsCAa?ptaZ~@!IohVWrgHTBeR^pvI6mKOY;)b5R?i6bA2kwi4QTn7dbmA5^2#$Ti0cZ>462b^dya! zEmHf(!QnwM18R{vVVMlMUqFHGt4DEg5=v&hd-A6?r_3pw+P=LlHfJtkN*}4!d&<0e zIx7s#0}mjl#PdY@Nj%(CZyy3vd#F(2*Jup3#P-j&8Le08A5$u3Mk! zVn<3oq@@Txd<<|44+Gm~qXBS04P_;DepC_?UL9LULcYSda%%eytnvv*N#z8(`q9XV z+ewat=iv36$ci>s#q^}qYKnRik702JI$eV*)b!noo;qUPPzF4lu;bQz0j=ptF=<*m zIwOL08sxCP%;@ZRQ5V7qmJ{`%unGb6d{=|Y_HIpcpWITsStEh!A?zfRdbVIl=Etfl z5(pqp?kVydjK14-xP!XeszHGYA%@`%^c|@y~ zp!BL-sP)$q3dW@d!nVK$(}aoS9RNEQ4g>ynbefAtPNyU*atdP_WI}~#U94cP5J(jU z3;Q7TwOM~7-9Dr@=MI6V%i1OFiae~}AoHz@9Y7%zYFn#A=|wyaCBnW*~cO%}AeolhLn@@gzrKH4DicO2sD? zVv8L;G&Q=KVi5ksTmO%z_YZ6PJn#JxU|A-@M^Krs5Tuj9G|09#gpq5~WkZ5skg*4X zQX*JpOE@tSq_LHDKfH5>ksvY%DyU3VMm!u##KhoOsYSxMmesM5Oo?$E7X;(@>PeGW zPP;Yj&RLUvd!4P{*F(>~|M<$)e)#D5JU{OHeZTMbeLw%@#ln=XR2Yg`+lX24aOnyU zCn~M_;G*eVkATUzHYk1)U-IvCfBD18tABOhJ9oIbaCP<}YEtsV3Dz=gX}{0jUaRe8 z7!v%JuN;E?*+&abOERWkX;YYkaf6Jd;3Q90YX%bN6WL~F;qIzc4?yAWvf5@>rW`Jzjh7P4PASpfH!$z0f3 zsCw(>w(!T=hW+H#;4*O0r~H_-G9f1ipyd>tdKypuPVgjB zOtI^7ga}4_{<9BpeB<-6L6fYBv|k4Tg$jkW8Hih zeyFY8uYg=8lqPG5ZKv{p&#xx2#23Bq?)d!e$E>Z9nSBuUQ~hO$<3X58ZA>&qZ{2bC3-H=N;ri^0% zGFs`^`R#CM;>Rfa86bmmnWLX03VDaSVm9sBq;i#-P=A)&AJi*SgWjk^^f{RC@ z1_o&?pM`;f{g{x(1oSI$wNHfc)63-|Rb~j9)gm6mM9Mf!2478nA@U?gYea9cY)mh7 ziRZ#Pg3%1s$SFV1A+p4sWI76-g)K4r?cvL#FE~fa1DS{hgyh)S?U9a`QT45)1q4J`~gdmYheCdiB zL#EJJ%bs>WNJVD>+jC9}3hWG2C5pJV?zq2Gbx$0jzA}Fw>&l7u9zrt_O6s@U#;)le zYo8cHy9F^FhQW|$?aRH2L`q2HRCBaoOXakY!3;htIiZMuTfc zgq6nOv@2@9D!B?Ol?<^(OF%~EkeBdPK8?89@2HeD@o+84U4b%8(05P0;Yt%eJ}k zpC!p&!5{OwKtUy(Q|}vH5unu~wY) zKwfxe*iIto63Ufc;kHSjWD28z_=|$PoY*hi4?d4NZNY0LJ@)$m8@M1Z?1EPDyl@1( z)F3Nnq?zf>%+UKzWa6&$7W|to4U!UE7eLls&EEBi5eT!Sn%ItiYm4d6*;XSnywr^L z*J1)QfKUjqG<-BwlHy^xg;*SPql#hXR?h>SmmsTksIJ1YM76(0fp&pu5@kUHC9(Ja zLY>fc3lKPL_nBaNrIKKV$_Hu@9Dw+IfJn`4e!MEqk8i{z4NjjV5HGtUayHVkz%7oX znD#X6&!WM=GO{Gx!iQ^GcttHi^QSZJqF`3PYz z6YJ4t9$2^vdlcQ19*P;?V|i4bG9>1pX5rqwO@5*3guG2yvyZqt9xV(xH@4{y+k%N+ z5P)62NEwR%IoMiR5eA+&i-(c-$MCSR*ibt1uzLF@BhU>~lO zOitoP3pww_H?p9}tLyCYVRzwnjeplp*j#CP;(<;B2zg(VXCIulxA&$wo;i!2Ow3LbxV8z%1y2VIy4VmbpBeMvic32cED7MftXa^#rmVsYqGL$_^pe(tax zIaYQh1!V#dh=ee`HX;jhmQ*;lX63_4eXx~nz|W?hqz_`QNZ{g{mon9XWd-qu;{ zlX0~=weVhsDkjNtVd3=lK@N*%QDkMLhDk>$GPSs&!4Zm-`kQ8eGi%WaG*Y*D5yz?`|PDbj1 zZvw~>=Jur}B%yF+ot1}S%lh39*5-zq^UfP;?5p$9Z5-H8KgC7xr+2l`EKBL3MMIq< zbP1r2?kg0NblF$W8#0(;;~iA5>@c>9M?CyA=S}s{(9nzsE9+3@FHf@%EXQQqW_sMR zbVXd}GYE)yT4pD&D}UKg)vN?*nOR!qpuRbGK8InfmwB}fcBn+DX*6Ax$q}yv)o%mV zQqBdU;JN8iKlWh3p@kZX^I1qrr8T0^*eahUR8XS6GX&<&Tv#&<+FG_n8aV8_SsX7F zLBE@WvxFJcuZ9H-$z-pA09xZSPW$+D4x3@U)GK)Yn<7DRqUr_+fbAU$lg5{O*^|c4 zoEtGH>KpTVmt(@@AE3lW{v6pQe~Lt!;smsRpr6l@h4=S

    tVR`}MQwtctLZ5Af3GC7;8SOJ-D%M!vZ1sBC0?{^c!x(KulPW#4N#+v-vD&?&$L6hd5i35S0 z15qLKjOz$o{p-TDvxn`$@qLfkH$Dj-(+*;m(9`%%3O`6n*Q%P5H<|(iBvb?O{HzM_q-?*k-_T%HRHFiU=f;@_@wvlJT&B~qnYio$^uUH9`RY}} zynE8_SVR4WERmkC{l-(Dk?1q-X(k8ccPYyiywsowleW_kMVsW1Iz;=J@W9=S2eGKr zu7pc#R?SDNiQYpnq}7T`rT3^=QQe_h3kAE}Q~amf-+8ZHxmMDJ0gVm0(G^ zrYU$9<$=4hPce5<>4)V?kyISqp(Ai2*XadtK)@KxY+}r0Hy<( zz*XYu8H z(nqKd-@Z&tqJ`S%EWRK%YwPOFUQ2M^IM`HI9*pxb%A5IFHINcG2aiap^=p<7RsNH8 zH4(`&xAg0}+pA)VexOER8z^U#8WRX-6?g|IStJg2%+NsAV`h(KT&h3JoK9l?8L77J ztk7dZpOB~*#6tP#hkyO$wVCebJSsK`X`_DY4Xcu+NGEDjh(wUL94(?)T5av8m7m#q z=OcT}W0B~b6;nkhjV=D&bNG*bHjO{C^dGl#R+Dl4>rYZvDj0&fno_WTgc@x{XVI4M zY0-ozU1kUj6l*ZAwi_{HJ)vrerM)nIt>5swrA4Y&m7qjPFkbk5Dj5vY^|MoMT+vZc zhr6daH@S~eT}EKQ6`jORiVztx6K@*ybbfg~HfUcBQXF`HzS7^e+^j@wMA}$$kBpN* zWK0CC8a_40pWT>{RNYc7I^7ei71(k zt~grD11VkBacuEY1$23WBMyw}#eWRCwJCm*xVf~7u4cpF3iMtf0EqXQ+8_UD_SqI*E!<{#!UpBX#FWF;x zkd&aMI~KepQZqh&oIRF+pyRVtVK;%3)7~3?rOH}$zGTFujt0V&gXYl7q=|+z1yxc_ z!8D;3ELf(Y?hE7l&ha&Eon_2B^Mb>6O_)A=p{GbzMC7_$2AfA-E$rHS6r+;sytdw& zdmdn@zKP+1`FyC6RTT2OyfmjqM8f#cfxQnthaVd6-@U`Snl#pk^5+39pMOr|kE-ES zAV`q-`rQ+8eFFv9Q#;J#31fGY%o>$}zbHSyg_PwQ}W5+cn*kwekG!9gWJQap-tfxpGnGgMmaqC~{s! zA@&P?M(3-2XCxzUzNFOJk|}ut;x{_mF2k$w=KRdkr3$iNB(#7U!0vqcehMic#Ak-= z956BF=wKJ#uU{K51-p<~BKTu_oAa5A!50fZ*EcxF&X?4iRuje{C%z1+S+&MfdY{w+ zfKSk*T6w&YEibOqSrjitd+ZzLt+TZ&16D2ECnk14uy1_|^lLp1IQ=2#YJlRb zo!>Hy*hA&=UY)F&DB-?{CKB2pc`MSbIp$haD!DO9y;Tv+f6SpCFZF1p)-T&r1i*G(6y?mq=%- z93so@(E4s0F~i}=c57q*Ww|@+roTT&ZVgNk_FWbkz%J)2U40_TAgdIv869pve3$yJ?D!t7uV>u13@$ca(ml}hdH^c6X9G{30 zF+tNR>f=4G&D2~sXryG1Ny+|mE`J1@EN{fLBrf{VgYZ(a>tJsm#XHu`n8>AuNB6oy z_sj4-<*F&HKsLh={*9!v18@?eI!+2>!{>LIS|hP5$MGbN(ya2rOPW=*zgQm*;!!i| zS@jo2zYPmq-*j(28g9xGJlsH|(qZuNQXNH@Ue%&~vJ*TcIHP$9Bm$e-%)usp!$m9Z zSmmEESC?zFHCntCMZh2DS6StAo(ED$^6@YSHkZ#LiH=Gj%j(CoAHQtZ$+SK%eqYW! zHw90$Klp;B?VZxqo9CP1NU^C-HK*HIltBCi)d?!7HTpfJIHfoYkcynY-PdzwA`!*R1yzpn z)!SrRJ8+tcrDnyVVkv!JrwD351$cYKG7k&>WlE5(rDaP3LQL{8q7wZR#gfqv4}z@| z`Q(0rnsdK@W@e1}n&w>1>Wi^%0g2onfGGrZAHR3Mym} zm%aqAeA2SIO<$^$RzyforFM@{i$W>l;AzFBwq!vb#TDI<4R9 zQXYtMLd#XJX_lL2MeGbkBP*AQmR3~s!G}4i67o4=#-h)=)uaCYvaHkcxEj}6t@T+0 zoCR7RfR_6Lbsk7lu1k>X*o zEewIh%7!wbn9)KES`!hctBCo$`kmQ#8pf+w zRZ}gpTJ!oV_5^ip2l=)k>WYMsE{9bk0d;~hkEh;0eSb~Y)hIQLLY2f9{B4W8xf1Ys zqK%O{pl(AXuJHy17gBRqoa1O=bEHCGvH6w(K;NwVM8$oHgqsHc3C$e`&XO{K28Izm zVqFa*i&{$PosPWQ21GDs;#I^C-e(9~?D+t`X=qJ3XXa5184d~1M#AtpmM8jxOO45( znmrIM09{v$?mD*+%7q*vGcasfo!7x^e_QXO&?L%X7xPRY)=gP6RUfiuavcfwGkM(@ zQlyv?G`AM*Y0kTC9AYaI8-QOH3y7$oq)egL6r4dv0V$>-=U7bQY+Ow9`P=gtMmvc} zT2)yU;$av~=({+=d_r&nk{CWSq7Z z#?VQI4ULUK=5JS%Z={|Rc4qmsJY0}TRzVc!13rmTRg3GDvnNsc)FZ3VcQg9fP~D@^)8+dMg-Svml-P58Aa`kM(ap8Y;$ z<{}#&1B$Q4u07^bN1zET_K-JU`flJBP!g)iQmzo`^vb(1;4@D2D(5YZmZbiQDXm-; zF(8lYWCWr`j8#UZqbbmrum1d<6*wrpMb#_ObvsvYm&xm?%YscgE%zK-LYc&I2|O>@ z0DJ!A7jWi*$c(FQu_)qiFT7Fa!4XV$;_`<*TAx;EimIWgW#A^N)C|Xn{R+)FIMQxc zUX^@6dlWF6w)Af3RkGZEPi0NH>SLVd`OjRT$SZUth{?^`)%n2$?BJ30WJny9#;RsMPu_7P|foJ2%aW6O}SYa8V2w#y^J;v;k(81D5kk zcL%vt>*__H)3PydymFj3Z^I+<=Gu1!rZxvo=mxBu)t9%k&Bnx=7mH`Qog3?h6WY3J zz?Ban!7=C^bH2q&lN_K`xa`AU5!tlF&mL})YG1L~|Nn=@p*vQ%!M>aZ1aO9| zgHNrvFC=Hk%8;V7GK`fbF!0Oxqr%L5spJ|lHnMmj`(1=XQM`C&@{w`K(Hfg^pw1_u zumOih_44oXIP9TDL=x~)*u-XXX&-)3`Ps?5wHfEZ#j;_ieKQf=t&^Q187lzkv1K$s zWimG@$GT=T^gnsD@Hz-je^@h6qMvPVTO$G=s16Vina&Ak)BBum=W+kEYT2&z7EqY< z&m_!s6nd6`_0)+l5jcUdaD1Zo4l0JM!=FK?3KnPEeuo2}{LK=1XtFb4kkypqG%FP%XBLmKEob z1dSPnyX_lmntu3pk!LrI@*IjmUMke!)?HgKbs`J(+SN>PcYPK)AT2}l6w81CLO&_E zDrNtf3m;aVvya824UJ2tSTB6>ETR>>u5dQurGcj*U`1_E^HX=pDb3YmpssZl=WUA( zG*a3#plxVYfX8p9v4>2+4{5W422jrCKJCQM$TPHq&4nlSZ;FQzUpv*vojP44 zg2INQcI7ql-`KwY7l1lwl!i-Het{ve7n>|gMgqF=##$nxd}_l$3wbGo2+ zL{+GQdK^QJ2Ok=!M!X`Bmg)P~&P;wNq-zlZj^rU@L=Z<|orNY5BBkp`9n-s6ysqTfI3tWV1aC zc0yqLBODj%p74ks9Xuh`g)!v`2a4`H&<+67rPgToX&4rv4-1{3lU-RqQIQ{=0?Xa3 zD8ER~@R4rNMux3^Z(H*3<04l%t?PyO_}%PcC*wTqpF0j!ch^BPmdBcvZ^njQ8~m$Q7AoHrhD!85t;KRJ8q`+#5m683 z$Zwztf_Cf&Is4oXwo6tx;=*{`mk$ebcp`rg!m23Cbe*JtL3v4=_4SG!NW&IBbEqDI zfz$dRNb1+DcS7amoly{L{vuQcba?b|I;Z0XmUI6c5=(k8V` zos^WWZs%5=66@=3O@PfNt#ZF$QXQNg5&&7I-X0BsT`wug{BI&p!kABhZfsbPNTvEs zC9x^kLRVKEJOOYB;59_!mAZ0OkDJ8sUDqU>f^%%%=-jgupCo1?>mfv4Csfh{sJL-4LsfNN3qBaz(ZN9$FA!%#hqlys~c&=CYfKdxTD4K;LE<=n8a%*KbICUq67VIAL@-$Bl-e z#*O)F5k#_nl5o{BUt{7v&DyeXA_k?^f5o*yYZ^z}{9G1s$~BKYc|YwEfg%lu{Fp=8 zrbu^@73?o(GtfMRu2(MgJgeZJHV&zR^TA_qbFx0#OezLSms%@&N?{vG(%cOAU4{25 zuO3syOByVywafPOO@supo3v=tEpr+RvcA#_IwZxU%etw^+)I50y*mMw~rdo@~;(7?gLuVym`qG_6} zRS`a{dW3_t!9aouqsNXb=fj<D!E@D{fA>wB}uoVbn(De3eVW1+or|Zw@ z%sjUv>$^%S+l6UPqZ_uJBMG&U^m-5#B0H*s<;R2h9VhQtfrx2jrVMpokIs^zq;FJS zWajyH_08;_I%Hd3ZCy)YTry}1^w7U97{^#%#(j<>$FE9O3gou$=l0E87rVQp$gzZ& z>@s;osPWAza)xZUD;k+~Zq~VZ8{TXa4KvVGx5G}MM7j(e_jIMNTGm-mmkxU1;W-2dZrie?R*MZ7GQwVbOekO;>s^~v1`?~R*qa*Q7H)?A=JoOJ| z_8cED`AjfW-T?`_t}|b4Rit3w0{u11ydiM=r`q1kL0@d`||@}|F2t$rAzHCM`b**t#T&`mzRB2(rq^A$7C zXuGB572Zm+LFbw*rcu44Efu}v9C&)J-jTI7y2G(rMY_Su6bp^8r%PJRdhD!H_U9`S zR06lg1OL>tF+W$@{_LA_Ew%x?ODWxAX|3dXm~>%q5R92a6CGe^dh%(5b8ppnNnP`^ z_YppUJRXt<oyPHo?7IXlKwN=(YXC>i7Si^+D z-`}U(nrgr}?3jGl*WglLk2SQbQ`f?(@zmR4DBD118N(eW%timge_cU$jX}vgU_4?U zPwMZysItme+*k$x0i{V=8_@}gLuJ2C_VqHkYvQ5Ielm~e9O{o}36ZBO<2f>GuwRV1 zzY8D-@ZwVq(pt%oYvKc0h9mS)|6V(7!o2zFRAq#&C0pMXnA6D|ycB%DO&hvq_>Q|q zJ2z{6kceJAxm+82;Z$8U%{u|=y}GRXia2(1O4#C(bB@V>^|>4^^RM(cE<}|h&IdP@ z13+h`7YRs(Xo4CD?-_(@D%$uKw9@3o>~4m;PfqVKzjv?gtqNq$cAEUurOU!yY2`t} zs#gA~vp(M7o}A*%s_}(k$AgQ3t7i)DgQSrUOtHS#y~r%K4wx}eL^n+luNq#0atJMitTk`~ zY!-|c)pB}D7b{|SUD6ziNmVEnRZHtO-r<8{qxVRaRVTQv}$eclE1E7DG;W`yqv0k#PR zyQGdlT#{wK9L|w92Re&w&`*tv+PR?ub>f|s#>De6rvoz*XNKskuxSDx@PSUkO$F`5 zQu-oUGAVCxbo|;sa3(bV_6fSna>@uOS9DvI48GHW{xX>f)}<}F4exFYG9iTqhIs>_0^-)fH>rPZc8VDf&!UN5cj` zjNCJIR`lFbFqhM+@iuhT)-KF}8Q!UPuo+UNGUik)ZCt{h?AIRsdeB3Y$9*5Eyz^1V zo{dMc6U7tP$>yTBz>wLm4;X3z>f$RC$E7q}vn^`R?c1MbJpY2LwrKRK)piqKCbL2- z*?`GpE;!EPrcq&^W$CK1o5t#A)G1P-wGgnUWY!QKwpux7*x3{$sV5#Dd{a(#Esb4nUup{?`(`uc)dW@9Nl(X%pL0qK} zvShUi7-bHL7&bIW=ecN|Y9Pnk*`Al&wL&U1wp86=_TLs=$1x+%2~^Jt*2_pw*(c_C z*lWnX({8(YomBUMsQxdOtAn55)JYU9HCGUVa(WDM9xn1FE97+uKVNWe%wL}-k(Pbc z*2Z~*9z)k6dyaSzug38+UB;fq!)Db)Lg#l4YW<$(mj3JgT0eUi@qZxR)o{uWBL|JE z*{IcBwfi8%U7>kH7#&4)wz{=ii3Y>ukLY~O6%nwlN=ni;6fPK8qn@q?A9hTbVU4sb z=Zbl=9A`vuQG;4Z!JDlRx)yVATC+J2xoQuPkXE#`kF{palWUMo8x0yc(W4Xg-r z^D_U0A_dY>A5BT(C2_`(u2RVb)=b z`Z~|F1xr?FViLSX4~RhKe*EQY_-^Eia%<34lt}J|V4t5G;)IT_*c)Ffvm2HnT&M;N zK3CjeS4ycdp= z6mS-_EehS{^jwd9@&j-6-p$oljx=RCRMTR&$93`_E2jyyc6swHrvsjP)f!zV7Y`Un zG#li@&fNR{Y26*GAG2=Fhkq##L_{6wq9%DD`UJg@d_A^}hcU{U*Nuk`x5A3kYY6+y z^%sJyk$d;}%7ZtEe`A9tp($@y_Q&)ZZ~4NExnq<;`b?B9;f1CR;KVsL=4fYu`no9h ziHBT{whw&tQTlF#ZdU2=O{@Z9C}5N>vp8oF+Zh~|sMfT_ih*K%adTnZZ_mm4!f@zt zok3LPA<@Dok4|H_(_WSoRx4lAsc%w+SgVz#tH(+VD=#i$|7=!Z9zm<(7;trTn)M*; z^I?k(bqC(|TSr9AKyY+lmph~-pWG6B8%Ko{Q=ItzE`NIH5`l;EA)>h0CnpuhMa{tO zizk{pKJd{-^!h9N5DOBfVN^L$KUO`2K?|IazzX#oSJx=sa6#b*z8cY<_V@Fp z#}w$kVCb2WifN>sicB`Y;;^gkBU1YV+H+a$9Y6KM*1ohg3>=UJZ;$j(69-sBC2l0M zt4gJOpvoK5kDOdQWUMc@K?6b22xhxB*e@A59rTi}4%}*Ptya8>$X$Nen)X%&ojj!_ zJ5ExoK!zOBgs;T7ffz3d(|pNoMePN#e{N6p&h;|8x-cnuf_V;-B@=x_fRYj9ihxh_ zAmP%@HyJKk`%mp->z645UDN!mi^L&|Lgx{N!3tuPFR}0Od7E*0Sb+lDWLaHLvln-) zmF#d!@vuUZAKsy6D~riyikr@_99wE40Q1i8n>#&V`u-hrOvYUAzak?64$7PLHC~< zTK~fxCpVHM+Ye6~h|k5C5nEQoD=lvRs|u4*tiDJvkFNfZ}i(j ziQ5%D)|~;g(MzIyNYH%rNS=&Kj@tc~N|&1yCtj4reSIu9^VfKQdegRVv&8q4{{FNC zCIbPhvd6I0yv4o+!tJ$5d7r2(}ns_vRzNWb+UTQ)l{~yd z`s2`R5?^{6$;6c5JsN%Z7%pfeqviV4hn0aOl8oi8s!Mt`b=_$!3~P_VM7vZ;LM`r7 zs-~DP+LgZ3{rE64CSv>Eba_}a;RsD1%&N-SL6iBjvos_m>dnmAff_d^DXkp*RuoAF zKhA9#hzmB|%G(mGDAI@n3qAG(27pVS4(>!=J(bdJtceCF=?cW9NI(mY+CvGNt6dw= zsZxenDv_Aj8qJOoVS={T-*Ln^(})2|eMFVo+8=XPeb!x_l7`yo3nv$I7>4%%O+y>+)4fizzEozDZlHdqbd!k?K@I)t9~m0(jZ{T(kHnEP zRco*8F!@__uOa#&raQ_AG@BVn^8BIH0M8%$A% zfBrRsV0pN>&6@KkZrkmr9Ne=aPTqRu+><*!lRt9Fwwj4F2kmJ~aux|W?>E4T~CAMR)gT89Yhe%Me<&}d)U~k0@8LT>T+jKC+{_X&OCel`G!U4w7kbO&G#<*-ft5Qjo4bWEgS8MzCQ#jD9yGCu@E( z!N&Z)S*QM-3V7-k*=E{>75h;~;qB^Y$r!VDS&xAlBi}~eRG0Pi!c|9AQemf>%~$j# zimndn?mB{>3W!r9veNLtMaCB@2f^rqeww4b>b`S|8VM(vJ2IZ23_!!fP(w_5Fhett zJot&u*F^Sk+06FtSiQzYC<^**POeTRp4>Tp4gEnmhmU&1*;C8uA~T>3#)~Iz8@pBB z99a>q1dS^uUb<9WXbxngE$zoT_Ljs(;ADbilF~=7I@;DNR<<6NO@1CunUX0Ku-F_R ziDAb|*I<(`oG-JY#@I-W-ol#6ie4=A^geu2^*M>n0SVfpWrMHBF=(a&YRSB77Vu7C zO)Wp}nEdfn>dC4BqFERqNEYg1iq*HU**pi;F0VWZsg6%ckX*=6-QXm7>9eTQ(sO6 zsPGuS?8#UEFHr6VwKAfc5FFVUEeyr-6scDq-{G3Pnf*dn9V}CGkp3^OC99&#)sduH zR!z))yv~qW#hUM$eKPmaLVy0mM~dG3wl#&L_*o!HK`3>0#ZKCIPDeFm5!3FQJAO1A zT{%^Ez=#okE*eH1^M?r47iaFe8fZpuuM;(o)PYy$bgW+7+uXr@B3&{-hlAv)!?A46 zxw`+^d&bwrkCPMOykUoS-7(#terLrX{YIHLzmBf4G=>@dj!t^WaM?AHI1iDRnyXgT zPlY2{K8wsEp7 zEJZroXW=Tff)&ItM35XC_SN*miaU2X=1#ix*_gufyJ@A+in}ZICUnXu1M8w%e`sXt-erkkVYS< z7hMxcn(Zu#izvX}-*ku8uaR+rVJW>IAMGwy7_^_9l9KfRrf~U<6n7`C^#pPXRp;2d zP}G=6k9D(l-%!)y_eO7N8$?2XaxGRPWbr&_pfTm(tI&6~6e`-(@5XwYb1M#ZA4h9N zY_1chk%xRmHx za;UbOwQ+Ecsrn??&P9XqE)9!G8GwRFa;2`lN9{uZ!DP9D&S}YLJw@I;2Wet2et=`i zLF`+juB$cnWXK~k-(f7M{-l^MckV?t7Xe4QOqd($0`c~~18HGb9&$0d!}vXEpnvYu zj7KtAEm+k>L(UzpQX=kN`th!-E)p58_CiryF1^idGPz#fMLbL>@-SIgOYE_;>^tU)g*W451`Ta+4v zrgsa`ZQyAV>y@ut#)yBhLu{!5?b|o=>qr<;y+>!Ly#BM@%}UX-r-q_umolipP+%>1 z&i4YSKG2Ptl$MutY8`5(O6am^Jw#}fip|jn3MaCmP*yxoXh-u2AbwmcY9(D2KIAMBSRf+Cw@KPqxc=X%GIaDh8VX;Au z(FKaMPHSK{Ia~rKYI$VUIhpKE(OK|V(Ix^thI@@xX-xsg*CwP3C^*Mx;dVo_RYk(> zLu~X*8rk_sZyTb^t0Fw~6cpYw`mHUa1S|i!pllEtcp%x#k!yIV)A42G%Rp>jx7eZ$ zO>9wilelEaO9eM&mI~O4{j(nGFK1@|QuOPibSp*`M9fH~-hb|A>Q2~FOZ#ycwN|4j z>WqFuprbfJ_9lARDHFj;4f|fSZUWJo2<#FjzvszSL|CpRQ-DT;)@(Y!g^51tS3xa& z4u3(nncqDuk>>91EJD^ZghA#l%ZH3U%H|Y~Mm(okY=J&;c_e~+b9RQ7LXO`(r&y+Y zh-EcC>B-+hOTroQLur&nmhY;`m!8)R9#;3EiSg~ z(e}8^RH+dT7f}>}413T%ahgXmb7T(jFfTx~QaWg!8pKvRSQy7Gd@Cm26fs`}7EvgxC@v_yA=C>G``xS+y*)2p_+I47%ta!Qn)7%OArik5GAib z%6?Sp$HGyFLa!rjpom+05;vpO+M4R8rd*^OW~x>>GjtQeZiog;;?9UyX&mRP zKAe}-{k+R|7MYdk>s>aS@HibD%^OgAtf;rPjMSagVx7;q@b_}uBVm|4|*PZu9 zbs5Mwz)d%c=$gP)IgFhoK@= zNO*QQ8O>sK$&kD1K1~af(+VGQorPbV-aM}_g~?)RYpj)FNgeH~g+sIFukzC4>E(JP zUy0aVcgtF2pP3U-o#vG&hfhhZAb=a?a%T4gkw|M*Z>RZ&dDoQdS*Rv)2cBI9U;$&A zE5pKQdA53R=CmZDE60}0wTEesBUORjo0=g)RqRz(yu zAfdHS$9*CKjx%}jA1Lfkl1ZPn4z$J^+OkY!Mlakm4#AWA0q+C|)g5c-XyLDp6?8!U z6onG8PW5K;TDYK)6tP2QylfY9Rh^@j;)?jJ&NCBH-^up2b^UHG6$$#$MOI|n$Bcz+ zOxOSgJQu2G%&Q7aW6uvJ7P^Wdllrxrw~ZrbCf?GOsxw7Xlo~^(so>cUd}O6f!|%Im z_s5}KK}X!5L9zP6%lz*3Fk?1e{VOhB z%TOmcrUI{VhtVTODvB^)B+FCH6*aN}Fw)=WvLrS&j*2!u)|@#9Lc=*eUl@1{ zfNb#q8#Bv{gN(>`q>On#)?~QuOtqjc(G1Oya2kE7jISCO1R4AsJrdWNhzsS z^jvLr<1o6pvvXB94VmKVJQC^6Y!YP8eogYH+csE=kigTbLQ*IGYR9 zL{!MrxomGUrK?xBtsxXqr_NsO^3BKSwohG~8NkAqV<;5Cw-hHh`#!Pob9*eg31cty zl1A?_^?D_ZdOQ%EwEqI!mC29P*9vLpfNAEg^KSU!ur0|;Vas-h-L@~7E8BHGpM8oW zD9fHLMH<`rqWag`J(kc~^u05-8x@ZgPry-}R9_d<&iyKU{=RDTFA5amwX}U-49_*d z(usila~;<}uv#vqSfc^K-tXSO6)7qmES8YKdByjf#OYqmAdpCy}Qk*-|KF@ zZTtlqFXPae39essO?;PWTHI>bq|L4t8eB3uPa9WGTj^ri-u8L)F-O%JgXG5t>jO0XSEze>u4}6O%G|5@qVa$x8Al|RcS)aR2_-9sx#*B6p^cO0TrKKl zc`nIa5SQGSK>lMS!xo=CX&XaQdQwGAtMGYZvqqmY;L3{~H3mHuZdTg!sBar*ZT`rN zg`d=MG*Wujh(c{g+YhF05^&7Y(d(x^PI9?_SU`=#ma%dDifbdO8*$x8Qg&@i#0KjH zWma%hdp(=aSI~lw-Q>z!q(uUKqE9*|9zlTRC1SK?@o+v`4AI%P0Zg-s8eSGJ5p^{w z-(n`Q44=6|Qf^IwS)4WCNV`ui9f)4xi-Mh{OUX*&!B|PRxdo;6>HEyR!xoQCxoq*t zpVCgOVz^)eLq@h;^8k#5=uMDMs21ZSr=*P=({aoW;f5xA~;%NWr( zle+iT$im!>{i}AWt{ic=6{8Xn$MN60Lz0J@? z*;qY(9F)dQos!JMjDY6iqD88t@R4NLkr(;?o;KAZLzW{X_9^Ytt~#KkZtkcmS(rvO zi9_QmK0ZrIDRJ=YGk#awxa11?4^eo_S+#GR-I1BQxyX(M8gy#2YN%gx;)f3txX3 zOD(DfX>>$P9PK%#IzLk)e9E9j_$Xw9QQF4bHd3fqqTkm@>jQ^CC|AY*F-!gB=wU~1 zBHASi0%k>Pq^lXB`MILz)_4%43h0n6wJyxsXhT?Kt&Je`QedPR?hLy)rN3g$OzO9c zB?q=#PVk-3H&`2uGu@81ftc9nB~Hi07r5xvQ_FeEDPsq)ie`r48PCp})Xk-;)e;$wJt+u0YyUvzz`Bi{Qw zI8oGXn=TTC%$J?B9v#ykIi~E@4~tcpJG~LXveJEOx1;R_nC6CoYD%ejZk8S?vmQ(0 z>`a4OaefBD6{|(7k+A55H;xald6Di#jfFff1biqa5 zh+Y0!rS#P0k8Hi+xjAY$XrJ+Hl7}hXY7jjF=Ir;Z91Rj9-n}$|rn{5rvYj3pu|XHT z!ST*)ANx4nb=upmU(}*%0=&!8b5L|!HJ-ZrP1#QRXr7(rQxU%^*JkR4AiKNmUSFt+ zuqp`Qcf)YZHc(U8r5e#joXy1hLl}MPPFBwgawQTSs=BKUWQe9!Ub^psuG z>4h0Ln*qxpHFDLqXd1bhh^D7OypcxG_SWpRUDKabx7amy1r1c^9Ie|T)YyqPk4Ls% ze|Gj60tv{jGJmF)!`Y>784Cdy7Uy1YE0V~y;i`sNX}utrqH_unB9oJ2RI3%GGCXni zVEe>$w7Xe-`>8AKtu(uHYtUK<`}|>b zOK{hYCwDpum!7orm$>#Tf+aHR>a~)3i_-gembvkKNtPvdR8eDYi6R)1hD&snSocpY zT!ri0t2nQHjONqY()z$lGdsjh?R(Oeib|Y0=wv$Ul)=K3Meey+YFfP>@mX4e+`*F! zYfI}CFX^7J^ae}nt1^qSvz`$*ywxYeuRKxSc={EoWoPFr4VJc+lI_-ek(ra}jo+R6 zS$gC7S7g?mWipRtRjcSzaq9v^tD7AC-S0-axP`E{&W1KxV@dNw>aC68aFzv{r>j}c zojx)eU+kz-(1Oow&3t@^E%*A&6Xx7FW6AZtQc5GCk~&*sL|d%!?T1Svy}ZL_{nqYB zrh6?V8q>Y=B|d9zzkwST!c(&PdoM-mExG-XQdp!>OQVl8rMV@%`%}}smv+mZY&@o$ zvF48JKpvi{?Pji+uV=C^!U3Ew#dd~ud!B53i6)^V{hFVdSHHKbzApEg_ORt%c5J^Rqv{ z|97wdo%SDoV$!we{pt_@W}Bq(>YshBG+8rI>-pCRtuG(z%-i;(H`e~JY{?;2^Pkj1h@rSDg|5oyI`~Aq{dfzkeU&y)n!{^5SwdF$W z_?|!c;-r56x0I!6zvmyDDfzSCwEpsyuG)!R)xY)sFpz32OXSw8mUqqD({vD+w-UY(f`#)?SJ?6`F|PEKK-u2 zI`;i{{^anxHUFZs{LidZ$vw%xPQU-u*moO#|KBeDrsRkJr!ic&|J0*xS6}+;|M8XG zf3@#|_OG)Bt980lg%`h4qs+YU_E(Pg{_y|(m*c;E@YM_MXY!wX?8DKMfB#BX`46@4 z+&u9|KR)=wzo%ZT_jT*Pe8pEYk@4@}H-6)15!38R-JxI0>pqEm^_lu$$-~8g}>HikH@y(BBgTMNJPAk7LQ9tI{{`6k?t(ME~2^{B3&A0xg<#gTu zsMu-E{Owy~e`bB|Pa>}0{Q2T#gSz_%Z^~a)7JOZ9`-eaN^%YCYXm|7O#>K}n{@{Oy z4S(0C{D48%8B^U#GPgjqq#!kO9^_qx?zo21!lO;*;k^MlWc$0{M!O` zw)ozW*VgP@ZRnbt5lI>?$WbDRPLdbSQ3b&p0YC8-5j#2nFZ3 zz+1vdCo5j+ZoF3b@JPyDj;;#{a!}3CizW;m}KTeLwA=jk%~aRs_?vY}(wKfWo^T5pQe84bWficDW$N9~$a} z_l;Pj#|CQ)-OCzY#b`Lz@j8?#_!KoK*A`tl1BfHi^lYSi9dwCur{52%=RfkO%ni%l zj+4-w_Q~8rusKfP%KbKL7Bj`qj1SqP-gKKOsEZyRLk&D+o{23x*IAIT{@bLz7`GVt z0^@VFfEYWqq6;-qD5Tq@&8Ku3QMrC;gdqze2Q##+gG_a-kcAx9$~h~*Ohn?Z$SJ%O zP|@G1H_G@+Y*FyZD1?VOHM5Oy-@Eb>FD03llvu86+h?odCvXqDTSpYYQc7DKhjx3T zTHQ>|MqpbdtOVij&Wzh$Qy))7r2qu=UgBTFbTo(VwMBo%kggt99W)iLR9lJWVvBtU88PbJ?RfnX_~PZUslYbm@j7%9LBR zP9G~|0^537;Tf6(Yqsj;;&4NQL3p6!|MqM*_5I!bmt1=@8^d5Km$)Cf>xnK#AxFTz2aL#RtMu%V5qi6m5V(EMsPA9f zsnT%9=logAw=bPU(68**uM0snlPQC=QVqUKZH>0!6$JN)6kmO)+05O z8Ik_kE~hN(`J)~0if6S9-Y-zY(d*l(7O8%q+67($uXyL!sJ;I;b1zk%y2Wya#DYV# z-`p_8df;|~FYgr9JJzG<)w=LXO|2C#&NEdGDtPS12i4%QGsUEd*=86-*2w(%mrbm9i^-? zY#K-gW&0DXT0YLE#VRaWR2dN8NCug@Rjm%@aUOE~jqB3sg0%qPFt84Ocz3lv^4xYW zi8Hi%aMNG&c&RSNX{Yd$G0Dl&?!(rlT%dx-@h-8G8xLr3?-(TFSnOI~pE3B{!-I{t zDo_7L<56>M2<1aZpA0EwiNyD4VsXL~#OE}g=Ve9YTRJObdZ4MhQ*z*wl%Bf3zKBZ& z4F89Y`z@bHay2+NcO|*pFDaW-@mhdDa|4Wtn0Ad@GP=`7?yuB`^XZ|HwU)feM=~vK z$&0g6$MQ9hV){HrtL_)dk4k&}-LjIi&I!R^TaD|+)SE6PdTBVab?uXq*VX&cuKG%Q zfX7xRp&Y#=oqW6Pip`?>_$&c+~EAT&)}l4JJR)Z7{J?89!NTwr*zl zyyg*Nzqg?^+`cHhC<2V>x8RQ{zsdu?uJ`@co10q;vLD(Ujf$6Drn^LcxqZ*~=Kh<) z&lA+|#-pQqPiBR^l)iQ(is<&BFfW%MOJQD8Tey*(^=EpGf6IERNL#YZP&MWfqKfZ9 zO&@AvQ08U{wZ-BL ztV+X)GJ60c6B7Lph&FAB%8D%mTE!&$);~5BxMu#CUjPF$DF`kpXeC;YcYrERi3}DF z6YO_|(CITfr;Gy?+P}e{V+s|6l9qqj9@TkDBgPST0nAk1_wqS_Sh?D#CDL=HkNsSx zRt`dY^`6>Z*2b(DNQ67}o124{J;uI!&3*U70Pcy5{?@mAr1^MnMR`$@h!r_tBQPmR zncPK`R(@f>P!lF$;{@%IDK8&2-&EqHX-073w+UYD^P+oa{|`+)$L#lFtF=P#QVuV&AU|)Q@#-+HlT+n!4$y4mPtfL;Z;!PtBD!Tc-Jk4c@Fm24ok{a z`KN)A@My8ns`GY}5Fa2@ecXS~%LI;5FW;GUMwMV(FJU4;bz_~j?m;m&UE+lCQMo(?6 zynE>IR`gHqhcWLZ@A@PhQ0JVxy(BD}5b9kYki<^cArnbERt-1GkDiwgQJsma}tVTX+lcRd(t5Rp3oUOAJ20E}-^2 z$5<@D-eHk@uT1jLekDyxEjT$x^}t|?$aQ_i|(ENO_2Z>jzPFzV}lX6pX@;k<4zvphYR?N zF>?A6CHepU@oyL~37z^0)vbONWfO&URM~NhleFtYkg~s9v|#XrHb!-Pt%D+w)jy@* zjwu9P!q*d8QQEc+!x)J}jsty72?E>_*E32ABze@*7?%B4E?nK~7?Na!4@ywKmX=UR zeR*$dPigb^U1ELoK1RvhxFe&?I5t>2oqN_#{9odG!P&ap&q%DhkcTHS1*qDXsM0l# zh*<+K?k#h~NyOJ)qvFC~B@R*@adey1(-JM!E5)s*Mv?-w$ zE2XwniEL0tiaa08(+!-4>LL|_SXSnT7RoJPP;q@AN<`lGAr_-nVlEwTr!MtXpS2SlB_xjF^5vZwV;@;Q9{4-)ntjb9RDc&|%lB5|RCmJ)dq&rQq zrtw7kE0k|bvaaDJk>f5$V!b&EHTULJ{jqlAsc>`1eTkVTc2(3XEMq-`&&grhhxE9b zegC`zl*9C-MY^K9cvEV!)D18s68;N=-<0uSUA8MvM`7*Ct}_Rtowjf98_Qiel2%Td z>eF zgU47dl5WI{R|j29B=p|z^z7X?$tlbmAGKBiwSOj{%1F0j6o)#B(V$-KU9 z<1l*gE56@{9C4Dco>|bPqeB;M6k%K36kH%9;rS)Z#Vb`$B)&eG&sgHhlWj-dV>s#7 zXFvK(jKyfFVO;dQcXmJ_q3ttv9zzk1GAuinsTWO8&K`+WLOkb_z@HJ+zEcgw zy?1Bs+C07g)`Y#K$SlAVIo%3qSCIUdR_)WClX3bvf3pND!Swwg@zu(w>JCn3^?LyO8XPeOH?-Rwo86mnvk6xRLw4)c2G3 zphuC&lvY0DQt-gUQc1PGfSrO=ua0L%-BMz*?-@fl-rjJKoJ1T(NxL+X)qogDlq%pR z?tGEpjf$fK7Rnyn9eDP+Ib?j^PPo4lfnGU)xgWbd^Bg=a8>Y)Yp2n0_U+;C)?L((l znMcE?UI#=^L#loKnlmI#V{0yyiFo-8QKMZO>!GSQBzD0%C;h&|t10+2InM;QcCFw* z@($Ow&_a98$QEgrGsTN?^iP5mOV?xCl+1z!NElpoepFB2K%tdK-sBSvDM};I4F`b| zdBogqfq$gC&}!SW3EVkb!)ItxM^QRlhPc>yWd?25_mble3w_!5{p+Eh}-)< zvpue|N6$C<9D$*hCXfTo4Pi*3m+{x|1uT)gPto5J{6wK-LqbmVK`z-ITMLKJ9P8P{biAI~fIe!k$GFaYJ=!bJ zS+_pj=Q|OEAmmhW8Nu;wboK>lNabaoiTj-e7$3TlKtNHwSd<46%Tmt^-s!A#U|DkU ziB}cVkPZo+Y5exK zixIy9*UbBfL5n5eFfw|j(@@-fXW|kH-QI9RpilTA=bu@aZuLj0Y2Evx@dbT+uFyN# zpAcnNao_G^PCSLZo&7DVdrvGFVkptO-}*eGLfAsRU!f2ri>zWP=Jd6+6l}of+7*d* z-MbupMCNh!Izvyzz#qbJ}{h7Sd_Q4$oSI1p`bdgK6h z<9Ijm4lyg_e1>Odtj#`2xjG--47L-v>|58=Vk+j*o~144zgwTaoMeSC_Sqg1ZM)0O zgzCTFc^455DB)}}b||;K6q`}==*u@YSkl3pyh+Q5bxgT?{0t^l zNvXYH*|Dm<((e=OyG3T$I=Q_Iro(60iu5ZmvI#6GGi)}E=i_`NJzXG%^b*u;)$PW$ zE^OroKG0$M=e(sl{;4!Eg0>CM(3&ubyUA{_sgLn&MIf#V$!EQiw&A*E*6sLa0m6jF zOzG=Qz#;}@>*cjV<^SC|`vE=S@`4XA`Hky0N0=}c$+Gj}`ym!{#nCkyfy3!{K57or*9gC+h1uY_J!zcV-OXPm#dOK@? zbe!g!Xr?yI%5S)hPCp*MEJCA^4eLORafeKkX1Ej%T3eGzo-^1Y5mrj;UTk_4KJ9z6 zeal7Lji1hEvq*OYWbx_??s{RSNx)Lv0e|>q(5u3BL?&R+{wC%eH2>0ahmH}Ux7rzo znPn)7+q;X$DdZ~@w7RyrsfJ5FMeekm#mpBfR+}9@HVHVyzT#bNJ>u$WXcUyfW8HXu z$hXbQYr}!1g8(?R=THX}^MP`MG5XekC*s>#E?t))GEys6} z_m#vWbm*}kX+ez& zBH(+{Ysc4FbG0xDjso8y>1Q0<&)wjr7<&S_Q}+N3kHo#KKxIy8r?A}C$9c60wi>zu znT^z%OU6ZaauNc@FO{Z8W1h)wnqWOjmqPzt&k?)1sC`T1h=`kn@FmaC(mc;&EOcTc z$nb;$iAPD7?9Y570*F~GzVdQxhLvRVF_xazomW5Ets~PbbUMd!xcbftjs9zvN6Y~X`(vVs8;$dJ9WdT zgeR`if01t^;7jT%b)1LIS&;M)7sKj!>dY?mc zn(hun9QwB1$(m+R#m|sqEV<(N&BmayXgcYLG31Oag4TaYs;W_X}`P$Tr8MM!6}71k8K;= zCQ5RW&-QB6vZ3v&kQyei#vp#6wl=t^w`j_mZE0DZex%y+pt&2Vbx_$CLH9(p0m73q z=eP0}sBiDqWP5V1=J}=ySSKrUry<-5jzy8Y6g1yHL3o>)NXKIR<77gGcWFpOq2GbA zQf)`RuRG5gB>N#bjieO{f`c`E^I8ymvEGZwvcz>LbHeK!%qpTWhgNYO<$-XVu*4OX z{P1@xENo2tKF~Tb~dVF~7fG*e+I9GPPQlh{T)j-hK zvWU)wljb7&_qy{ShkI0yM5$LQd3OuBZJMI}O-(rV;tMRGcvvyd42ccnWJcg-r}%VV znW^06Dl0IAhK6xVZNyBqLy28}W;8^122F6IKkwunKXt5{JXjVZ@U@}RN!xQ*ZfX&d_|={tn z-z3v`p%);1-nmg;XY5Ye2WUu%sh6E9`jQ-|eansn&s0?>2hPBl-cl@8F{yH&mas%` z51MxF&WC{w&+d*cVP~>)P2GRi4q+idZ?=3VhlUAF|0%EB!Ca{4xPhib}A4ZcQ#=BN|nV_efq{;E@{d!*deI{J_~@>?!FG3BhdYbwReUn|rUkpNDcjO*qM znDtelRv0-49E(f=CR943|pGpct;C5;lm_VIWo;t*+QkaT0_aG=bWBcxw)`Cvq;Q1+! zVF}Wsj9X{-u^F<9`1!Xyl-BgH-tuwa?Ez!CQ{F>l%-)&=lv7>1L zHSyyyTjB`AC#W@RS(>>+zDjF?HRkCZ5nR_nml0U`sB7u0hl3P%xn?N`X$ejzkN1*t-CcaS@m7t*-891hfK zrktSFlBb)Y08*XWNm5asotRLcFu6KzOhHHg#bRM9s80uG3e0mWrh%=6+DXB@6Eq&6 zO)WJM{(G~bct&9SS+i|A*S|d90&-Dhp;yKZ6zcVMqanhx8QW=Ogs(-7l2q#c0|v=* z8RCJn!VTgD@iar7@~I-lYMKk;$YXbArcnOKYY|x$>!AGoyYM{9G@%W?DD5a`x@cu(svtdY-LV3b_JDJ|P z4b(jHh@t3m=8SXxEAAS8t=W1dL&{n3ElXnFB3kRA6PG*GP|5nqda_j5svDtX`3wUr z)|sZ% z(kp$_G&hbKJ(@~AX$sOARaX{uf+t4!n_l9`T{4S-r93@>%0$yyU{bb3%>`HifJSl) z;XWN^C-npx(h%PQZaL{7+&v|@NTtEmdxhI%)rWq!q!wUePSq!sgysl%<(iCX#!R2g zxP7YE-SBw1l>UK$$y-X{Qm6fPkbOL)otcT>$_5?V$K|ngNY{9zg#13L#IXwSyzuAY zy`HmCfQsw%Gc(TNEK!_7y~%G|1#0$&ct!C$tx113sqxEf%mLKY79Eds^* zq{xLn02|o{4ruc!`H-s^h>HGZA%zmk7!U>fwzMIzeD%{;N@(jO+rur8TEycqYc7&h zP@oPpK3>9^der>|=6&<9+?}-d~`U!p&>}-I*bKFu%dPD8XQk#EF z>wUC<+lfhW@-E^(`L>;<*?sDkYF53)v*_htsB&0}miQ4u0uUnVR zxu4yo1BDbd4aB|1r;m~sQ&NwYV>2ZNh7w=P0)@f-zp1yN3%z~4h?U!9(x|%ln~n2_ z)x2Mji|sVW0?sum(>v=l7#^lV$z0q|j{|Z47LUn!PslWR>{2kHBo(5#`dG3~yKH!`i3MadXHL#8Q;7_#`3)*mb;S?6 zBq8+YQW(#@(KPVw*hKrKrf6~=+&q@cj23#T_XoTQ<~P|Z1b=JIgeo-Tr7e<~tZ{8j zw%a8=xp^|`hmuDyc=ffCA^=_6bnUS}RzXfShiFbol@A-^&KRwTZ@U23&3(42RdTgh z7iC-+R?G2*5;bXHR#Lr~bA2IAd9g7?x5h>MMf@o=k4$O9;QqzCiMR0hf@UEEHduG5 z_gONF|0Y&WJ}JpICUZ+y?rIrSOx28S;M?6R{G~=+W@ZB6%sZGNA#S2N;1{358Y1QV z1Zvq)2TGGG)ir?r4;y1k6ZhY$9$d10VsqXUgZouQ#cHhOvx#R}O*8&wE%6Ed>$udj z)u8DH1+3EUYDj>SlaA!^c;eya$?p&oNS@%XtV1mtYS0i1_s{*Iv$)uc3Y#k=HKLd6 z+!L1HE}J4?n;~d{Ok1$II2rei#Y6-La|XnSQIol1o#>}XCKXq@wE^CIhW1SWhdWQ) zc?YTD#^Q8rE5=Le1Z2-;*;3D*Od-MQUmKs1K3TmuS!?wQ%P zeHQ(~FUW2mz0zuboqEF+bEAo3h~OQ4*>d(;`ik766!suf$DW`^EA;!oIgNC-4`_JKnCQKBAI|@Op?lsvc!wAsA&aH$_ zKCPQeRZQ-i=d)7%Tb}|Ik^Eb;(c}+pghYtKOQys#G$K#nH290nlJ^PLfi%6rzZGo_ zP|DIS(QM{%Sk|w$v`Yyx`{KqYLQuW8(#Yo)-BFUDobsHzCITT7LVJ!3tmWFSR(O>u z>=|!2@m$Ee(4Ewl*pQQJMXA039h~O&h za553O!gt=rTjrA~R7!-_5YJ6fZuplpwaX$OdL{#DYp1_h=2Obk z$obigSry$UTsUIyt1=m8Kd(>g3bOea^D|aO3l^H$vzdCw3)Jo*pgfS3WczRaY4WO9 z-q0!&o48M75>r%qqdb#;T87=2m`K~$M|_y+&#B1cT|2=v1wTO$0=uB(GHTP9#Or`Z z#-9XO8XMwO!Hj1FLoPTmQX{rgDW<}y!Rf_aUT1hXqEt!Sf9@&Wa38Z*zIgei#1YOp zTg_%Yd19a~^G3<7#JpJZydnIuZ{$#5($Gu|EYQiQXBcPxvofQhF*O-aaKd)bYp=vK zNh0CAU|o3aAJ0H0;&uLK6K6*~juBT%wO$l?vP?{4p*SfBKSkAY##gU1+Ni+Y6GjRE zX=8_q(Mg-eL$J09rl2I^&=`F=%cP z?Z};XJ8@RJC(CWV-67K1AcQ0q`ty5)p$qR%Ed!}zv|*=1DWkYZA&H;VB8zAZ+S3VH zzPb%=#LjYR-i;ke8+yHMfU((E=5pLHy-qwH4#l;7qa<0 z9qe$jTf$>zv8eP~P#bPJ>_>B4-9ZP37cQo9jF4ow5B!?_lwy=>|)F ze^1bVQchB~T4HZozQNTm{W=|i)=T%M?!PS1UrzFv-PJ;T(;Iw`!cNS|@=h1RSa$Z% zplIyhZG=M?$WkuM-ltAk;5zf0zc$LA&=VC(EU0P`fWxU{RdX*TFJcqF+1e)!{fLv| z?8$fA`1V%6W-U5i0GtUZl%j8GU%v)yI*Fj^-nA2!dvH|$n$rF7`+@Oe@c`D{jTg>- zmZs3pD?>dFWSL^8Fo&bVHFvB;y;jH(N7BYuYEHNe8Hd{TB+4Dm=-EBSI(>%wEA;h~ zOg63-aTHA@c5cT{6oW@}PUIM`rIfL#-#S$#%}DC)lx4tWPy1#*qQjb$usM~18YRfE zmIb4SyXpQ($r(y;6qeRAP}5X<8cC{ za%BUy;Aq7rI0LzI5a5P(6XW3-odTv~YlU)#B0vsKoa$A2KH|jRkatm9IW?jC`Oinn zYTizuu;i&>DM)}w8<~*Ndep2lJ2qgbOT?JXVC(|>{&eGL)!}I*(l^XfD=hyA@ z2dtTeJMr4^K-=)>xzgBPdmIhs8GBmhakIv7zF*}MAld#K*OzX5?!ep5IyL!k*MGB^ zx;Y5SUyglw>2|i}_%4-RIH%=o@_YuSXHy21U_wsL;;h5GZC<28B}Zn12w5Dt)xVWw zs_~lLD9`K-%vA3f!jiITYRw~hMwMZn_H&}Zpa%{PNOB@v*>n@5em>e9OS!IU*Oum( zIG8+y_NW{-DEv|IDg1neJI@ok?;b4O_ zH;t3InrCpl4T?O*WvR`r$aPBN50vMr7{cj9GEjcDug64BE^Tm${4!W5V?<7|(izc{ z7v&5VYOitfQ<^sQ3Xq^bUX&h6zmJfdwys=L-d=?d`@fxT`hhe2aq2THKR`V+!e?rv?GlGf9-?E(SV~ zWvk2kynk5?j{U@GtVKELhijjNQmUpQp8&5p;ygJH<*B(cr&p<;JxkT+-d_jH^|m1h z6jnCrME<&{zpu?j-5_}MsWIzmh2z#>nZo3+rERIhFRtAOSh$=en=?+LB#wL*0_g+I zL2pzjN2NDkx!>PJdccPF{{RfPHTD*M!tWv<{66slgQ>u|%1=G(16_My_F#EiE zNwJbv-l53fI7rVmJDdEXhVJnPpShcB%_i8?;myE$o-n-KN6v84R7!S9VpW&mWt-rr zm|VQwZ>!JB#vunQ8K+aCS8h&7Bea~pl*l3_unZlE>yg`I7w!En<|fo(Ae``+L6a%0 z`s~sH>Z#5k&iyFS7r&2mu~`#8LXYhHQWBrMHsc-BE7!~&}8lRt^f7EYzbg)e@?xJy^fHa$O=xVZWWp4xzR zRj++|B~lyr!_HSZ5kMsm8_T7fE73f6-`HubRdZbtQ#fi$#uip$je&El2=atWlgK!4 z%6X?vWP5ir0>jVHidUjAFbNS3?GGZiEeG=?&Y~uxwHM?}+7OuhuWHt7_xo1vH8DW4 zv6n;IUtqj`>9D=TrfC>Lqq|~GTne{CBzI9!Z#Kf)oCJ)X3zS~1r518-;MZ2teny|S za^}VacTB>Q*JBJ!k)qs?uX}HUQ0MnJ${;yt}o zj116U_asknpW1U55A#v+qWVtE{j!(?!Kmczf4?l(w}(y$LwRilyzs|Cp94~o4H`kU z5`QTzO<1BHxBHq#&Tac)*H-*g>)^}foFLdWMjxEec~Q@xz#t}3E*{EFJ#M`jsJ3Fr^_9Or97Cj=%1BAL{1<(CFlWT87#R7%4o%XuPamrVJ8jTP|US z68q@)oyFo)T20lUz|xHyy4S^yk*f5M0=78EzxRC>>XQn=6DRC~>Hvq3v@o6Bj^mgN zfb6k-xv-iKQU83I&-I=}r)`C{rsyt8k3SM*3fvQmya|Vp8t{24?e}bcAJH1?PC0&m z5KBNz8@k%N?$C35IRC2|GuV*_n|^AGa=7ND@=dKa$wxT(B3#MRoh|YY?aCh-h)6LEFAByYJukn zX@jXJxRW0t)LV1DHodzDG8#X;G%Xf;{dtF5xWvR&BJ7Zgn>c9;&i-MdP(SbwJ>4F) zsff4a4?X!w(gdx`pHW#`+-PefT5m?)gxWCpaj!&HO!QMq(?0xqPXv(=KuD-z_lNB1A` z^?i-I*H!Df#UfyC4HNHr&dtdfGV(Jq_z(aVr2#;^3pW1$I{c_^5Yw& zq^m@JS%aD$N>###Vs_U{{e>Ark61#fQAqmxsE)utqJlhdb#&V!`D6;uUuML!-Og*6 z>7-lA{yl|;_vMzeyL554kK-B(6IV{=;^tWPD=}zoc2eqriHR5@_zbhj?fmu6&-Fit zgTYz3*sOWFFT#8sk9UuoiFMv?le#(evdQqq@{3-f3dnnr!gYI?X#bPE880YfC%jZLBpX;K&;hYIl!FLvsrP6@Fm6-R zYuugH{EuXR*Yj(bR(Wb636U^91e2!Qs>o(tB= z4e)oc(9rzFy+;b1HD!gB_B^gf&- z4P|tvZr@!clw6>S!4@Rr${a+G1#X9ztZZRwYT0pPpm{Qx^iX(!g+QACFzXnxpO4+m zMB1rh4~0*pLc6aHt~N;lQh{jhf)#RR0HHMXss54rtcm|!;EeQnsqL6^p0hl+B4n4( zfyAnd1{>sfcy+%)trtdg@58pIoA<-TYJJo)g&y$bB87(bc!-Cca(<-u>P%qd3Hhpv z!o7Ytxr?*W2hT!f|FVLp*#1_CTcxa0_~dK=?VC5h_@g(;O_X671pUniI3`*vx=#AA zQ$8_Sp-7b(x7I#}t;JA=5-Jk?KHH^pedQc1Ab%hD=1A_8L+KC{G`5K7-NYLXWV!>R zFA>`z=r8(m298k3D_E|s{@9pC$9s10gild&NRUID+sjEWt{MRv2sdmv|B#DW8pgfU zjQ@CiB*Prjd&UeRiFwb3p@dji=V)fUKGX3pxd1E4(W8EA#NL3CVd6R~c`)iWZIN?# z2~U?+z8){w9ZGN)yv;+x@tI$#zPRfx{8#QyWx@4H%}k!gME{%LjT8!4ZXXw>%c}1c z2A6-06hB2JtLHoMe(%6gYbcRe>*O=M&+OPadtQc+_sHZwtDBayKY16n^Q(9Mk@)2IX6}9E{+M8KPx{5g1&_0A=_GMM-T?Nc3mhelBNm>L z7INHW6v*ynXBy8x*TYHzLdV9XXo!HjYU|K_=2t1HuT1B3VsyoK^Cw7;T}}_7Hy)IK zodzv`o*zXwzHm&mwKFB_ipUN3?`Lj@e6&peIGk~7sw{Oz0y9$v2w(u&ca6nOOWBDK z5=0UK7Z~S?q89fV@c0cVo*~<+d1fQ!V!L$uMOE9j;@Bol|2F?4yfZ4q36lcZ&GKazl(|AdOAh9rr27f&4CTJ})KA=Ze0x_O%81;8qP1ybfyAnF zuo(n)Vu+)rWKal(_b}`HS*j$=)P+m9q^gk9G&FM2i?N*UMDoP)1-l+z4>x440o)8A zRHSP{RM}NQ>?sJe-l?7z&R=YsIMQ21uczEHyN_k$oauufHdq2a$e!nku!oVOuG{W( zHiuyH=|qco*8~2t^M$9iPEHliAWur=&0IXSEXXe|@OmXl+wHC8YfhK9{{J@kOSDzb zMoW3B+VpvpLgA0OR>hGwMT&*Sc?TJ$2z#-@Q$NTuKu{D47>-?&vm!N(2=BJsh*q7;9qx6m0^m7(KbY3DZGa7kP8TT@+vwQ_sM zaM#tjPq1ShDUXqUI!jS6k}4{w59Hs*Wo|W26=|MDl$~t8chW=vm?79Ng2f5=FSA-c+wnWdhn0AcEZ0v0>6cN*W4mz827<3Ik*08iwn78 zqVAURmCg1EQ|w|v)AImtgE+xIq#1M6UR5w_!>H7h0d%Z<8fT2i+8%Vnt1qSVx}Z4P#$eDY+2;QQ|8G-QK$7Fn;cAuDcT6Q42X;V2H$H zK6svv9nTMJj(#pBbVcNF!gX405pJYIoJy?>w^QVB{1mv8U&cgWLQH`G1qw|ixp(L3 z#hY9Juv&iJ8ykcDibBOEM6N8@_$1W6t3J@9eQ_%^07BXB!}=W{jwbs)jxx+F=$fLy zTz*8ObT{-KaVfIRws2)980Pj`0vwJMId@7-eqh$%s@>$3GaTd;@lIB4QA+Y8K2bQ-EsAD_>bbhL=#8HIB9+ zOqDK$vI3zpS7(UVjL?7*2E^;?Xu|zAIO(hy!JPWZ*24>v4toU#T{_Bd*lJ0zi$J9C z*C%<5v=<7Z`wb4Si9N%6Ja{a~BSzxzO$0pSAT9E5DfbGnJ}OAu z)GQ%7RkxQs>N2Q>K0MAycqvH{^>OV9xFs64QY5$X;HiFwZ^otFX2O2C7r17)bVN1G zzWjKN%{@tO$#`2sV5=5R)xPr=G8bYP7+-~CZTo?_&RjB~hcLMo)#wcrw-oWQJpW=Y z!{KQ1GnO{iO*C!e>`e*BcZLvUGSk>Txz(9alcM8`oG%&-xS?>wB7j#sSBU}JA6V!* zJA!a%&K~}TW;o&3<4@qtT1S@$L%TW=H*-&j=D@#Qp`xA1166>w%Un%6r`&?A&ffIk z&))Q`+)?JDNOLzD_-Aq_>B`NoQu9?qS06Cfh?}%Tz zS+&!>?j)6FwFiR$o)azK3eQ75B}1StN54vUL;qLmW1msS>PFcaUeClNHAOnw#}mJb zjiSBq?HZq*KdBPNkPK<4G{oAX%s4<9v@Xa1yT)sg$@MLt{nB=-K-Ud+YY^~eYSU-A z{GUmK5k56#cS$njj_630@2mG}`~6*`up-nJv@wp?)TySqqft|_Vz!3qD!f<8x+4K= z^*w*AxLZdXO`TSb=r`@%vZM?$kci;v0S{Zf6{)fC^rOgiTFxcMMg<$|!WOR28nOnQ zObGXTw`A#)B<)=H)O%E0)$%XlFRN#Ut~v&_LJhx6J_cW-JUju#OzAiB#|rL1Nm;!+ zR9}2a$+QOm%dk>eJ9?mowit92pp(vQa%~gWX_@l@h8{)FlD_`1jYtxXnOrpM7hyw) zuK@*W)*qyujgnCB>0d18XZSxkDv{kliM98*R_}I1Q z86YaAhyj1Ne2J#@+-KJcXIC;v#=0lpea#QXv@3>?a1$|?swmN8YH{PC(CkPP3Jr=l z-3~FwV%N0YN(ck9+zQf~LLB@%4VP?5~M8y6F>I z=@94qjem(0Q|C;yLy`2h@%$Gd!&lQN4f1)`-yJjL*CBxp`_a!7j}p$Bir=Iu6lm(j zF>ciunBk6^2>wnQ+olcYe55Orde!a=;xiNfh?gqXUp)<%1c&ZDG=)TA;Fq_2;n}+o z%E^fm8s%y2Ol#Im1x!afDWIBd!uwJql?aQGo489L(?B`!lHP*=;!X|ryWWJd)|T1q zMCQf=zNqg@wIyC)fjytRIp$@>qJ})@iU+pQW2;g9%*Zhw`g zq5<)X8f=s`w1(~Z$`RBGFKIQ+2mWVb${YTYTJo~?PN~5d0@l&Y7MiVVyW{tLy1{ub z=y=nYI80vVXBb#WG%G#Nx2wV4JI@D?N&}euFm|gw+Cfq3O;rM>Ss?xJioq4hfSg*Z zr(M314lglTVJM*+{7LV^PsGYdLCAin-;ivVfq<+z;5%$w_eD z6Ny=VIX#Gf4mdbPOV`*@1?5^U(cU7?J(a@gw`J+l>QGbs4cFMYtflakcVuO(`Entx zcYx`9UhRV2=m71m?zDUZd?d)g*_tHMKgAa&^-DGl|H88wn(y7-QSGu&F@VclC<1a; zuy+i>#9HUaA^x{J4TYd(GY$=LX}k>RO<9Szcx2-xW=aKr;60ex**6EeZksi&X2+oFt(U1haP2@kODptHm<9!?$X14U zQK2#~GXpId>-iy6Xjtj%#euJGdA$ggPLF=LY60*;qmVPX9Q=%6>ohkLA;+J6J0c@> z71QQvLWB5@PT4}2l*KL_uQ+x;s_v$&&;Jyi`#+P9|HexWIWu!e&NhtAnaH7xv4i6_ zVpN(#PL)%Nj?8Iu$Yyiq?XY2(&f?d*Pimh6sR~|6 zu&akh_VtV|_IVKJPpEjq1&t!d$viti`=@U0K|uV{8Gb@x z2>+#7!qXR1dX;(?@1yRA(ir~$OGv+iu1*AG_zzJX*`qKW$vU5Y-$sy9r3@c5j~1rc zybpWo)Do@B)Mgg_I=$7n-|%HI+^GENd$957Qb6BfMqtmR2m4U@aT-uf_v-tM@7>0q#H-KD})6C_=Qjh z89Mva#0)5+iT>M2d53)sNn@^U|EKNlFB|K++z z_(68JPg--)4lCD@$%;;`ap1Tm0*%?3t!gEP>v!y|k5r$Iyh;|lh$@1Z`kFJ=>sKzP4VGvuFCJ;XH%9Q~P?x*{gD@8o(bJs}q$Q=t8W7KfPKO)+(}qR<&)Qfg{II`t zkz2-XK-Mnb`i@kp=20Z~0U}^{-;Ti{xy4h>RcGR1MSm?wZh?(P>%mybEZtud+kOqI zf*F=6me|#Zh}Gk=WE?=XSp6#OJ&&{g=o@czA~$MDYazL%U`6!O15JSmO;}inA6ji^ zB1k(K+~YmP!>5@FTLr7(#gZB0$o?6(*U0wUhVHRrLB0XDA(ED{R(Q#*xkN-nHY9rG zyTvUx1rK&0@l>vb>#(wJmkFU{c-iEz7Hy=VDty3Mmv%sJ!sI8d>i%iE5PMC|cX|)6 zbFGFa53rHgbfdb;Z%a27j*#`(`C_gimw};!BZG#Yvk;a+G4yurGcgrlrnLukXA^pE zoB9kEIFQ`s_vc$+`$(K83#}IhY12NsMCb6Y@d4iZXs=~%HSPgCNS{nJxDX@HD#?fJ zB9AX|k}Z=38JNSt;hn*UjfxPFN9K$Q&>f$&y-?IyRpzajPY;_sqYaVlu7HU*tSsONX$LT_-@T%@HtH8#QOaz9@a*Wrt&$2=b z^D8dyyWS&g$Noz2olJB7KKbEMm@2Eqla`h9t?n`WqyErrN1L_=w2`S0bV}q}@o7y6;!qbYKjqP|o>ok0kl5(tRKqdhcNr z{^>DJnT*;I2!mf%VL;v+-|F}MI1wTAM}iL_V$kW?nyVGKT!mv@^)jU&Gm9GRF6q;| zb3RyA?Q{{4`Zm-ur^l1Mq@V5oIJw-HwgW$=t%3?SS_gxiAy(1vEFk)VtU|EoO40G; zIBZShQ*c2Dq{s|P!K!EBf#X>7tysZr7L~Ax8 zjP3z0BH|S1v|?RCQ^jaCS@!`-IHSW$=~eT3NcGo?qsgA5-`FU^OJ$eyXzWq*iSWSt z(AuB*=*aWv5(Y+5Z`yqj19B1G|BQUj^%P(b7;sqcDM7y?8h^-3zkUyP>HA~d=(c#W zR<}T2@09U?FPzp~zN#L%5ptAfvc&9g<4 zM}uh#!l5U83q%{@VdwD_r32fFgA%WcJHKd==QKH+Ztqxe+VjO+&fziPn<&Cc$Aly? zaBnf*E2+P>8dKHw<&5gfOc>wqRA7H-fm-eOxNF$K`7^CWEo_LKa{TC%aGf{!X_>MT z7br-)vYn#ox`i?e#(sYQ>58Ii2Go@6axc(;%x(zAKYj3ExJ;9H69c~|r(%5{#$O>l z0rkmw*1SQRie_(dw?@}SKu6)UM%c6fl-VvCmIY`21;37i=|*5@05~gb<3Kr7eaf3$ zrbp07uB+{DFbupwhfUK|vMkPnbd>qhedR#t>m;Bl3?7bCHvf{w53JCkr4Ue0Dhf?3 zplJN=8-SaU8kZJT@ZH8Ww%`Cel1NK=Wk6D{MaW3(k57np)hpMNyi|C(dgv3LVdHhc z^o>31qN5B96f>;^z61YIp|v_r6_NP5?;(@?Us}(sjS+T_0#|Y;kY0e;p~Cwk!yhva zdCI%>wFwBb^rxDHQ-NFyWuP*fcP_vL4zU6mK#X>)X7ofM*Cp<^6GhB^cwi)HkP%8_ zH*^>GA!GbDGF*xmo}eLYHj6W`Wh^Et2C+=)YH7cARe;WiSC0u6o{|{?^}G!@?NUJ} zAu_eRF?xQ=>3S+wU}4OV>;5EOj19?)&JlELe@5!;upkoJ5_dM3{lC%=qS&nSsxOa_-?vOQdD-153EXNp2lF z!Lp2nim6cv{hSd{(!5+T`c5}DpVPojjaH5F5XI|+i<-?(53E;Uu6Chlc@GyH-dZG&jl5x4gvY8lq`9EA>vsai8Fdk zR-*DArTD`cofA`#2H%W%lFU{mz-{(Z_R8CDJ ziEqvC1pN`#{u6ZC1|XRm>pE^0b^W{VX)%pRX7g8IH#pi=AmF@RcY$>8eF3nCSAjJR z5uRDJZOu<0Ky=n*gNg$r*S84(t9KOc6}rphJ2w}^f5@aHF>-9!keEM*n~%JR>Q?(? zCCo{mfz$W>HavF{%x+E(J7VwU=xu$qE&jvTzG%-1)IR;tS4~)>TP1{XEjQ}5e)FQ|B zM7BAtMO$8FeoUR8hQZ(ugKUtp)QHBnErgzBdo^dCt;pEwez?1*ymi@a1MCW90PlU5 zS#a|mT{qve3)v?LzImg`BSlRfHd+Z}_DPAJWk}t96x!hUetn^|&b!hIz(?tao`YE= z=Jq(t#$i-#@(TGL2!|i1VOgQ-?)h(y+zt(s)E!S+JYn~iA{^oPUG?7lrHz{Z z20!0%f_kDk3~1Mk?TYW5%|zT>N!C$mgMRy5 zr+xAxa@I5&SLR$|rwa_(XcvG729gkv;2j~OaXP%Q0uqkLUWF!TGAIzfh2SIKZ?3+eRPssq*ani`dFHWOM)*`mvY18DY@A(4#n! z(7sc!o?jr&mba8Ngo`JXr5!4`0jR2oI(6Dk+zcbrGFa$_ueh~}le$som3(kUaTC5E zc6IggpO>KOD}r_Ys=mOqdJ`Q!g_5CVf7d;a(um}6uG2df_t9LoK{k}CH+=)07mDXL ztu5*Eh#1UwAwSPUwB1YoX)h=d59}*CW^bnJ^a|}7VCkdxx@%egrp_QgtWu>B5O;VY zgVloyeKQEd>jPXou#v}FyfBm8SMdB=s^7Wd{L+3CoG_KY_bmH92p}b(k@vT*I$>0zqjrzP(G=M%qHLGw!~83i1Hw6&YgpGyCo;f zt^7bNOK(@-jevu8*Mmjsaw7~`t64g4>RPFLe7H8Kj|69d+Vf?^>dL_pO&K(n!DCw= z+!8O4m3lMf--RvVw9u=X9VrNW;saii+99Sa>6BzOh8n(=eL=H`Vm+MKUcrJ8PwI06 zkdaHxpU{{CP7wU_WXcok`4Ubp(ba%LDo--UFe^R8!Dc}#U5MjPur9yii!3XQQRsl$ zF_}#|j|CZYjp?od#Y{cTfP9S`F0ERdi(RZ~KNpy$8yJtF4}`{&WB z{@Jcqp8=s0AtS#fj6j8#9`Mr$ku_1+@cqBMV4Iq^3M!!sMC1wP)6=EaNmgPl(aaW7Y{jp2ku?yobjd(0QmQsmi=j;((yL~9 z#i-4!P`EXzx(VoyD)-kx*CZ^6Zvs;8`=TpKRU+92a$X9UieCAZ@W)Gq7%ZKh@wJ19 z?9~d~Xv#5#zk505=7(iRy49^@fjXrktifTsI(A+tzYh#OSuc0?Vm{@yHiTOVV)j5$ zJoj;2p87mT30@+p7}tfTUbReH;xfMms>n0DwfO;>1udf5Och+&D!`PGwI#ew$2VoY zubUkjGqJ_Or$ZCDET0z7+=H_rtL+?A()DtsEQ?x zR8|b&QxR;9L^uXm8;w>N7Wv75f}!CHS@n8Bm6(39XcL8q?65$uglFg_?kyknik?@H zkbTG4aHgvc!KYN+1QLTh&tMrx1kCipV$~#J0cjG)3bwr?1IN9CrFb1@>+!4zv(QDU z_>ZRmnlKOZe>dFaGJ?vu$~5F#jy^303E9i4HgGMmz`a9p47U5gyB3cTTkts-u?OD7 z1D_=TyH#3tz&F~W6=>XLZMKX<0395hk!7QoyZiFYr*|><6r(4^J#+KwO+#DzqSTN` z@K`vW+Sh-?!#c-<1TZ$fj$VSwe@5tQ%|Az)~r~X!5tgvN`JSKFeZHsWI+f?zg}>1KT1Xjl37;X zj0G$bdU}^F5TBHT#6B;j?ZH2Q>GKXQs~O^ZjB^`-bJtCl)HeGzs$%nnw>~`utShMT zu#Hg;qKEAp%Gq4juW&9i22 zS_vIujlKB|0`l}ek&$xo@K)go^y3029cIzoeoOT9aV&rt(7?+(5YtMrC%!bxfdo&Y zz~)vnGd}A;*RS0X6=g-E7hLbNxWR4v?G;;%U;gx)b~TkWB-WiW@f4t4b^I+bhVQ}d z4%2RfLBPj9Ej#QUmMU{0iw~B5w zTI8I>E}nFE4M>4Su&Z0IfFo?0^w0Pc1LfNPU_;T3~dz~G?vGS+!yj{hy zAc7q@zT$?(1Ctm3`B&#^Aa|itu8A{X&uA5a-3gPCu@;FdfSyhtVxirwuQ-(q1S;-> zY&zx2ikZuKsd^*MD!l0ZPgIaW=Miv%QoH*xt}%fcEWZ%=kvW3n|MzCYn`(LXhU^71B`P z9S#|3O-uhh zpPW9)FI+H^u3wX}R#zUv1PqU+$Y3u+FM$oVVHZ~avx1Sl0ACSfs3>O6=RHg^%Ug9t zhR%p8lFw_kDk~G$tJm7J$WQcln%2|nCS1>K&28tFwIZPAKq#Y zr|);`EsVDu94utY#UTyF6t(eLQ0%Gt!Rx?3K*Vp_8U@j z(fh4mlg`T1LB_0V{v)k~a|XoPi+plEScPGV0bn$qohe&#f(cyW-N~oU&;3$%2u}s0 zT9-NwtS0bER%1{aB?rjSVjD1i=LZ-|7G96+UXCF|+nmD#mTs_q{O7NGt4ny+AS)w{ z&WswX*+T3BZaW_fK_BX^o{;(J1%60^78+D9f1H9$& zI5m>l<@1bAX#(Nx|HzhAUDxnerVg>z{JfNv+7Hi?>AMPl&h|%(vc-7vS3fErda5$I zGKhlJ4;4$vtOs|VuK=#*NGdryke1H{W*KRN6qanQ(ZH{Lk+Axo3F!2K zzhbs`7x{Pxwx0ZB+!?SdRYgz!vS1U{(uHt?PCyIqa`;H%x9Xg|nSm7=_Ojc{7_IMS z3`(2<<%vu>P}xkcz>XpAJ&vW<-bh z&KR^A)Td9XdIFk3>m*;MOZvT`ZgF$X7H&C3Mo(^7*)u$2s_~~H&EGgt7zL*WQ{k`d zeE;p0)72i@Dm1Tr9N=$BJUh)n`GJ+%+c9#R@x`uyFJA4;fHxnD(8~%h>e7~SvYP^@ z?I1e&rSxnl(ivs%>#5UVvx>{zjHiQC=2->4VIs!?v4Wv4s{E|PZ;v*AMb82P&aL26 z@P702D8HI*rA&9^7hYCkP@4@I1!Xn1TmdbMWbTqd9m9>AJt89Y_&XEle1v!HsTgE4 z$ox#LSB?1Dq2%VzvK2=jx1#kn{_MZHKh)Orc;j5{1Od;K5Q&wxVIh8DryfPlV z4ycQcDl&t5L77*BL_6~WPx@|?GZeO&>uvD6cO>Bzc{lt6*O-z=M8)6T&P-S+G57P~ zhZp)N1DeD=D)(nIiu~3Xd!Ob<%_zPmc4q$#>QX0yt#p3jL5rKBPC$!kR6UQ31evv% zVkAHoylI76zELclS*R8ovNWpHu4H~KTB$lbXO&tj({>SOOyfnU@(|4EvmYek9x(@W zQL!jGx7Qw}!7Jzg(0wz74GLg^I%C35NW=`eeediveK_;OI0LzTXq2dGK#8`fEul!c zl9KLuW5XA6zKFs^ZBf`P351d>3DDhPlFdi?IGlC06+1m-9=aJ+mf-a)QKhIUw4dI8 zD<)XNceseah1}U+6h+bfY!!5YW#I7wTx$a-9p5{n5~#c`Y~%w{T*`Eb;=q3j_2B^H zk|zLxp>c5=Ijp3cm5)>JtCm4mF_>y+%F101+3a_U%-Y{I^29brqimU}1f(&pv1y4z?(O z@!I39K{IsjTRRT=wLD<=f?KiWuq<&EG5|q~baD)X)odzPm82XNuFaJ~$WsXym z%Z{J+&H55jD7tv&>QniZLv_n66_8gf23Y*YkU%_Q8cr0d_xe^uVS}jXS_nApM}5bM zGeZ=iKj?~}%!1bqG%8vTN|7 zxy4b;&(r!&P3d~HmN@;Ez_t&VdZ|H(l_e?E`66J#7~@z@&vvgAGJ8Uk$N-d2;=2?h zE*e|Jhndj04_sPQl?@s(bIWz8WYQMT^HSVPW{3u`Cwdn7t|GnN^3}d*J0iAO*9%Rk z3rW_P7OlFFQA8W$hkJN{*8S(cMH?4K9TH@xKC$aCNnND3C@2$be%tw#4Or#_XORqc z>(dUtRP5kCOed2d@%#S1N^UKy$hDlHfh3P3kagcbDUC9+w9DZ0H~#=#T+@WJb?+nU zzJreV>dkaQqA$30O_&AUZP%wgdSBt27=h3vqfenHq~i6@c$vJ2TQ)#dt^)3t#))rU z#hoWhyU zwJH%<-b)4-5ZXcSltTXl&NGq2+P86KcSbE_9kJCsy^MKx=`Qm6i8i&wh<#oVffxbe zNPOmc?kxVJNaxbU10=V7Kk4J8`$Di;=T-{ofszw6*PP~nCl9HMe*IX6xXBZRl8c4< z3nx&SWTQ*0K7#`%3PbsOIR}##g?CPzy};I-IqvDbe&|hTI#L;p<WyF8LuIM+P|- zyjft%h!<(P;8+xjKVG*j85`q;zd+OZEyPT+z%|$+6Fy%RonmvYGqlWk-`UrtawTXr zI=|CCWaVRvC+99G_elVKK5o)E66_wUf;n`qW%kRAG={F;cwi@Ii=&$q1}=m=_wLq> z@f;MCm|r0nUGNSAMD&nRX#<}Uk!uW_iRiyngr~J2V8A!9;5!cjB7xhb>j7r0EQejQ zrd9unB~rAO3L8X6&(5&PnH3O-5h1TfvOv4=?x9$8NV&aEQs8g!qx6-L!|Qe|Wmbj& zfg9)r126U)q!`zseD)ls9hVFnhcjqsmmTtX$DJigj37l4Y!yQzbsfw&1d;uG=;3d; zyb_4&A|OH8rYJycz{{x=QAA+mDl7WW7$@>pQ}<({L|Ig+5%$nvJg zW~VD|H6g(do0#4yf4a=t-|JLl@gg5J=8l&DhcrFzn{{nhg$h9yQ_idOsbbfL=wPz_&K_X~66P*2UB?M9Ruv z%DXdVk52OP_j3P9nre^Uh|x|&+Mv)b4Hjl7XXeaVl@Ls7BJg1|-20qZ0|#%Tg|zSU z7TtETgjbM;fg1RWwKE8{;tJ7vwIy|m&FdL_(9_cv#}?guFCDt+S#tKF4Tcr~VZ)!6 z>U`-sRSq^qwz^!N)PKs9!f3h}p$vc96n9@#0mQgmaai1inS#cL2>b9ZCrrtCg-Zq~ zTMz7@&Ut)^v8UUZHfQSOnJ<2gyMAEB&jl(*QtU)xWSt=tOJ}#o#&var=c3eIAVe?g zyLvY#a=Uzso9jYh&MHyO9qOmmAH;YDtgs}pjFgj>g!vOXM{Ew*>qF3l#okYPX3D%h ziVCATpCI|8qf#rhHM{8m7F;Tw6GfF`!VNbg?t4DcHxubepg#l0?4Nwl*e z*fsiLJ~Ev8TPiR7E@=FY#F=Hos9ViVKIs)Blopf5k^7QM^$^Lp47LBSd@1pQeL;eg zIIecbbO^b3@_AB>Z;BsAA5si3BAg`Yd`we21vB5xKYQe zx3{^7xne$%^dEe*pG!9xcKcbcwm?%>RYMqGnVe-oFt_$JEmAE*7n-6`%-|5j`?Stu z@PYa^reb=I*?XWPc4kL?g|ki-c7(aE-oDpJgd}bo9CRo@JG?@fwCg+H(Y~j!@I#&q z2j%d#U?AZJj7!6fk7&*$H72vzK?GbkH?y#(W0|BbPuDItXSN^sj|W#7J2Oik7kH|7 z`F|6oldR*KuWvCeNir9!pCpEOD7HrDAy`Kb&y_HqE~YQqS?DEZIy>K-ju5u=!7 ztfpc(5UbD!GsTo!H+y?&1^He;`zd$d{PRk}(HajxmPFT8J#vC-6gAbOh}c0C|6Gv~ z^$8BUY~g+8g-U&1BH=%iwS?I?mW9+q*-m40$%&5CGy%QO0;$8&0;T`Y&gcS>memrC z8P8^qG|V2dFbUjf^|FC8582Cj`o7)9iX#_muE=0%>=-%T_AQLUN=k@Gy|ECsiK!rFeGW0?F_c<(=Xx8eV(N#G#~| z=63&7EbA8Gu%eTe*k}%WPYKld4MBpHI-z5Dt_AdGQIFUlZPlOk}w$ zsZ8-Lb?%kyMHnW4FJql%=H*Zzb=px;4W zrf2;KBpOFk8(8-?4Y4junzktnCGEEiu^|c*`D=c6_rUmAFGcv-(1rYr+(059LMpQ6 zvW*cTQFZ6Vgv$@&!xb7}(Vmhk1C|bWywYMnO_SAh<>?fH<{&e;I!g3N?i;2A*d0HN ztkn{^ffi&HyR=AJw@Rbl#lR9!S{UsE9SgHYc#Lb9b&5E#1=flL;pz$R^m05^y#jh) z^6RwbAWHhPmtt;X@#7(Hsb!DujcM*TE2%_>6t`@LIz|o|Un%E7aR6KCDH9oCpytha z{Py8N@^eY*)A$8eVbYIv(e?!7r-5rww7~8(x^#T0K7ygL;MG8$7qZ}#$zHo>(lG`P zUWtMv54^8``K?>(z+b|sx}k8Xw_UW%4svq{xKXZlX~Ra5g8OB{x%yO@BHy8 z25<_U9+OEEGR+9IA^umB1^JPoFm&==B&17`m;la+JkfU(2m5>)pBSC zzVrBr-qSYR3s+QuZCLd5{%ij-uD{pKB^QVc*k<6FE%KM`j&y9L+F#b>%M8T;91`iX zHe~c6CMRvc_J5==vGjUgG{G;kQ{u}0Ya~8lj!;6!(28klCc+&M>Kax^Yas&0^-cPp zZ7Yt!2le_AFW2zc2B9ne_F77Ka|aZD}Mt(NT*3;hmbeF!whiBBM{g1^) zj7_k^72^L+B`>Xiq(_5dY=GZD7iq5k_DF&ckU1*xa{u4IVg}sKrZcB5A8sW^D9?-Z zSJCSz5_8>+l7xd>E!i<1$(_c&dfnU{Z`At>>khL^Op83#crQrm?8S8L_}6nBz2x*> zaQ2yS^};)jfaBNBA>I=YLva3E-FHJ87hGhKjwcPocq)5^wdgtbSD0w6+R+OR(ib`r z(eIVaJBX9rGV`dpg&6CQfU`DAAn0x#+!H#&oAf+*X;OjsdO%>15dFN_Ww-W(lBJb~ z)m8Psv(G2r6E(pPXqdbZ*3fQEj}*{~UTOz(c$PB(tvD&heiw6m%X3a#C14)9OELhB zql0Y4F`;WcHV9G+^**{26UA7>XgE}_x(ZADRvkCC01|1DQa4tJ75|jWB!mt#Ruks7 z{;VIKgaEa@X76T0P^O1EE|`4kp0tqwmKoes{d4;Es%HtjCx|@Xt-Qk8^N$=+aBg)> zlCG6Nv5^Z%uxa>bltHBb!qBxI4M8Vj#YG3Bc>#yBg({1^7wsv4?q6cTvwV!&tUz?> zF4uC9kiqVM_{HF=k9C&n&#}3r(+4vBRophxb)wk{(rZ`jBXfqLKrO|>X$~ar)9v4t zb0A0tdbXs9@1BO0G_g3$H|ryZR;`dG+?*j#{A51r6Ch|$?KIrgz!Hc|Li$eCZ9m!a z=sXO7?sN{lsQdt8rLjAsR|P`pesrUa{r!+L$M${d5CmcYK@CrrJsjlKxLux zww<1Y69z1)Vn8bB1oq{{8si2UgItN$6WCq=>M+E08nGS#NwbBi-`$D6iya@(^aiIV z(gjL(pG%0x>Jp1-T-FiM8o?_QEBq46UP4gZxwu;?U;e-IGDjw2^=Fg;cL5b29&%7x z%sMpARc5acOm9wQO}~wc^on{p{C7v}#P{@N+;fD*9uWA^@m0!Zj}c!3^e>B8sLyTj zb3ADt02B?tBlm=y>yYoIX@$YMo!ZCt5QiMs*8}w)8u}YplFK!_I4|&E z*dx!S>I!uFao>)>W@Faz-B8s*yx3G`;c6mYEpOE&p!@Gfhxgyu21PYPl@SnWuKA*mM3pxu-R7LK0JSSKKV7X z;O%JGHxB?qcZq$xzY%0Gyg{vWlB1cU#&gXMJ>98G z!d9n*pZzmD2$8@e`8w2aHn?g$5(6}WI(pBR= zl)C3LAAXA2T-Hpd17kXgq}tC9_OdfVF78@*n3L|fOH0P-jz9F;O>{kzW+ba3tdaf+ zVCZjX(58+`CgORJ3`$6h_ifSqh|qmM8Qa4@#5IyR9Vbg7jo$Vb)x#kx#NplpJ0PB_ zAyH>}1Iqu;%I)CJ{P60Xb7yW3LXIwc=NMKh<+5Z?%p*H>DV0AC<%!c67h>}s%C>{t zXH5Q>?Z|$IfU`cAmYZS+C9Kvn1rm-@yI4jyd7IDhvq(Dig3Qdd%hyxNTh!;bUw*WbJNEY<-0KBD6r2^*g7uIazO_wY7R%cH z41vN>M7%nLf*xU8?2TphrY-;6u>GBgc6<9GIXOJM+v_-E`vEi!XD;z6zDc>7j4qYT z*2fEIcI_5Tak$z%*53#GN(&&eH7zphnoetdqOtOSS$e(iD^9DDmZ33?eGu2jVjtaq z!oIm1?rERkPbe?Y=+_qR9WFn&?!A;-zgiLRhCuCIlVQ+H()FgMLD$ac76J7feDHe2 zE52i-|24zFx%bs;@y$)VoKrFbDD!&Ek=iZd^{pRYj{SU+>Usjf<~9EgU4eCms=IX_DpeRN9NGge!jJgDWllO;Y@8* zC?V&yXo-W}KcaLG%_nz4O4Oz?#bU?Jew0;AF86x}x)`f}s{Q4aj}x1cB)Z@m0m^^S za>;0Pqb14#TUM2bmnRp^MTZ6!<`M+d$xfuYS<4=}j^{Pd<$c2M=5FS#PGgZ91W66Q z#VnXneMo5wy2|&?s4ZTlKBSO_V;D%vOlMk3q6~74#R&Wxe+trksZTM4!alzkB(ca} zDPfl87pIL68g27c?$L~vYm`-HqkNayV`j&1t)u+wGn~vb{NDJVKN9l%(Wp|CAq0i8 zWE#l~JC{Px1N*ls*_0=hS0}t8#2}Uxz#*<;;L=4>!Nszs65XQdE!q>P+ct+h_ie7t z!UPu@D6#vhSxXU3r~s+^g)kcx^#$o(u_;)S65VozF$1LEtbd=mO|i1MBVAzDQ51Qd z`z7sKq4vZoW`WoIoH(e;Q3kr`>+w+O3a!t$p~H4P6!XU@k<@+g6}r6qK}m-RZ_E?$-gI= zy=xMJOUzWg&}b0;Oo$BHdz+OF z!%vQj{M4*_6J4Jkid*|<(7n&(-qNg;EFM^QU#*$K% zvJH^-#RHo;f*)WANt4?5uhnCgy)i;(n3c8nR+-y-8!l%$F^+L{3T--Ut}YFGH0o7+NmmE-2fr{jf6N^y%Iyp-tw(HT~r$hxj+pmwmnP0 zLBQGcMa_YB+p%w)w^u@XM4Ha2{loY$blAojayjb#q2(*B`nGYJIv$!5EeN2}Mc>** zCqd9`E=xD}@?(fe&Y!IrQw&abpda@#5Mr7Ipz$Q)ungH*WGxo+$+PJFu<#tVl!8XT zQ5{+ZmNUA1gPu0=Yw&d?<^@4yNrzUamRQ!CYw zESmk@)EHQs#l6jt7TvS|8JA_d=FM;LQN>bA_`hyhO}*8-KHtpb(r~~%M~b8ZiV~({ z-&5-6-G4hz#;u^~;FWp)-!*-zvO(>Y09p14bY=7_RH&w^xB*V*!(Q?QuVNE*vH@TM zPCLbhP%B;C>9;k{`lg=!g%h(C5+{vKePnXqPK=y+BMFBcSa{V1a>S>0LP$zkng6q2 zVi>(7L~OOGq*cbjhP&%8cgLUw%na);qLI4Je`>?2(PAa#Fi7EbH%P+O9kV~C=yE6U z@T2M8+I+!M(e_{p_LANQlA`F>v7nkNBa>Z8-!Z9yj)pVvU&5|47P5r<{t%Mumh5;8 zE%H#&N%f8X7!5yG2Ns?4ldT^^Qq91H&1o}M5;d0lOtb@^_#gi-F}IH|S|)_W-FX_- zu=JEkb?GX`j-=b4E8UpkRvZ%JK{RXSw~yd;P~Gp#%wu%dWC205JJ4pP_XGV!TbJWg zQEOma_^J0O{j^Ye^)pl($DqvdRn<)f-h1 zcsHg+GhxR}{J^T0FYf>nDRr>vc`VZ-c<3&^^WSxpXB zv-o427C6k&9V@Hoj@YYRZ~bWEx{vj`s-h%kH5fW@wRN?gnP-T=m zF|H-_y4vwVkLC}7rYxxZPXc{Bbmx!fgBRr*OWkZNozIG^P#dfBz%U}d7)rd%BgsPL zx&kCyu@b+Hr3_g7=rqFj^Pua^!>qRKA*N{o29QQ`+A9xY1c(ud<6gqDyG~AV={q8! z!|ApbC{TK%;?wl1M$M+G8vQ>K8!dNUg|_(C+q7j!?n7tf&6^mmpBBccLeVNS9Q{Hq zy79iRll65|71MZ@Il869a2(Yp%`$Lxzcc7b$=aIICjL+Fh_COihwow=!P;)<9+t7j$_-9j*esI?*xPa;lQQ^RFH`X{jY8%x zEvZLjsFElw=G38+Jn1Xgh?@4pm7l9W7l3*oiy>mve$k!FTb?I;mJUDU18HBK;o2|I za*aiCbn+z>|J&}E*u1l?G;$XsVmYeh=vjDuuO+69a4H4#KJD|2eV#~^_RDc1HT>IA zrP*%S?XVU5Mo$!Y>AngLdlo?dF{x)pMn`K)en=5fmb`IBJr80_~&xoC3dgIOygj>n0K6>XQ6e>w{O z-~?!}a1VWE&3Kp4+-(zKt@@{#iC-8C=z_$~Lq0V<1`DCgn#48Tn zd20pDbasgzs;56d!s9PeydOVfEW^mBHv4i3#22#X(uQ8LIxDq{VaqgyzU*$=Y$V>o z#Jxw)$j@Ti?=U8iAte?k_o7ffSPgYDoEmb;b>~C&<^ws`h3M*%t17A-*I*3L=-KYr za)NIh{ToaX?V`9XBNqC#cd8d8ZGgt=U94WUCJggYVW3NgDA557n2E}bP5sZYgCRQP z4ElJRt%$P`p;rDim#G{hsORZdsbsrgs#WajToXOQo7eB5z8HQaK9|vz&j2zf{m!g3 zrr+52P&j%=5D*1QTvHoih2F!~1)17Rb}r+0m*RgTxFMwve1ZrS(5E5$ZueCL3u<{v zp0qOjhcKUJn6$M#Kui24^IKdnR)+_QFV6HCPP(G8;I8<*vJrx&6&&CnEG`V}blL41 z42MK7)JVlr2ya#u9T&H<$rulb!|ID#mDqQqyFDA_MV6{J8>h7C+dfxaQ zzPl#fcrvg&j`Y#S^eqfc$#Sxu!jtvYp@-UQr-~!7)E;kDqX(_%{b9v~*mRS_0BQw%tRm6REw`ERNB@t>#VUMNrTIxYQNfGy z7|+tZ<5O=+ql!VW`dsrR^wUR!2gA_9y5y6NEvl<%wQh9}g1?H?LXY5CMqEb4D(rpg zGvq=xCH#3C=fE@3JVUFZN!L|Ry8LGh5t~9pWtM$w`!{x7%)X0w{Bd~&p%pwq=%Qa-`F^i^17^h4R^qo^ucrBzWsvyEBd#!HWem1i9bj!c15iFn3b|R2#NBmdaS&PwEb>zK9;tD zP&yo7Q2keIuIBA0G%cg?_7(CWRxRB(vW61^aW5E78#239h<-gs+@$#qTAbRkhuo^~ zUz1QO)XevmS9YtiZ}CZ-QEFy{+10IMD3OiFftt5~1uZ-4X2q+Cv@K{S9=lkYb*J=E zee@O8ITj=X;}?2~7BKK2NeW6=F{}@`Vr#mKKg)S?%Cp&^93A-PPXr~5+qV%vA8p){ zh&szGcMx*rLT^@OP8ne@Y+!!v(o>idUgrnB>VG^eK7N?6Ft1!pA~xu;(b*LBkMLU} z%(p)Rgwb)x#f}@R82TM8KODhS{6j5h%AyPV(g+30c-JSjFAGrnO77kQooSCUOzt{O z;BWZ1xgL!3Yq|{O8=8r>OR_$mFR=b`PLyQi=1=_B4V2H;Rhd*HU3b>wztE8Mv%t_9 zefIIem%*MHLc`Oa;^bJ+6ig11W@=mzX38ux`R-?qs@8yzih&~vz2JYc>vSK5uvvK` zA6P9i8t(n=9-;nTZts1accniD{HfF|>JnzXk`{5V)1=$$QW(;=jh*J#u zRaz{2(>mOM)ik;AtG^!Kqnn40oH}C^C$?ROL6yzqP$&U8A|q+>1e7MO!cKf)P+1xJ z_wTG^`Y|9NvRjV$B-UZ#rm8hXPHd^@Rc@#r*K0Toi-ClGGOD& zuZ8!YfoWpb+OK>_8Akow>)(;DZeH%@V2k~3tiTPoBjWw1P!L7F&XH=~{duYG5F)Lw zdP_;?jjs)Iqt1&0k78+Qw*eAwzu(y$QC3OA8oe9``7SZ0G3oyC)^36yJx^kR8enwg z@yCldUp(GkSVpJ)-lq*hwse~i^54KCZvJZvwR40^4Y^Pb9$X;_fXb5FKZ$ zhyL}uz6OSU>rBB~g{wh8CEVfex_?7r*y(Iy$BeO`-#5KT%5x$&@%Qy+rjbzc7$@oI zh*=F=w$zX#nc3v&#SuNlD}O5Hf&y2V;Io=nt(>J^{W7kKZoEanW*3y=&u81j%SsKK zTNK4_*#N{`NN|G;<;o`osU_6$nh?lVu_b!A4_svVT>5Hz2=*-}+LbEZ1;xx|v)wXJ z8@A@fkr-g7UuRW;}AiV^6j`vRqG8}K-0wTVc;xj z@OxG9-RQcCcbaP%d0Ta>5}$U!5H91ax?G?Ua}cVZXD+mMu%>FcEZm`2&zz~5X#pEP zcZ0073U(H$ePy*%<5s6GcBa#c^(}C@^AjBXjD-`jWwzIV#*ZpOJy<5x7EjMm=N*6NDcm?d`5+9XEp-If})i=uW_wKb}nw%Y#sdjEX> zJm)&+`#jfuKlkTGY@U1WD-PxSA}QL70*l^Y-{xR_Qe8)2ev5Tf6FC=G~mG~_4Hk7v!O9J&(@M(d+nl?^V-Lh@s5>m40 ziwAWnwUHJeyrMRv-ncm1y)mzd%rt9W{sDn@9-#59%~ z5+bq}z8tqNo(nN3Ha}Tw8q4!Ou9lu#oEQR8dK>%s)c>VUs&-i$-j_a%j@F0?Z!jLf zKP%BQH6T7hgnxXYI(-R*0wzxTCB#hV|(@R9QTHD?KEc zR3I`ICtX+>cPB1Eu-Y#U!nyrfCIZ!5KF-$rB{cC+WM>gkEy6I(&A5E^)Jy96(egX#>^riQk zWzc~>3ITp5yTtNBwJkhWSYG&_9`@&1o|AJGQ4eJr)z2px!S3Cw;b>e>Vko?~{d4c%!WnO?2?NH20-8 z8?jN_htVlUiCqdDx3AORyOBV*k=L1nCY;eE?@H5CPxG~qzC^bBZssph&L73oU;oAH zU9i6y@KZWwRMU5z0TUwM^{Q8ZA-H0LkK|jG@$Q7|Shw@Jt+z4D<+fD@Kc!@I8PNhs z#?SJl`|vb=@$6((4Cd0KR<+&Kl1b~0418m@K?l;b<#KCHh9@{#!Xk4q)wq^>z)&Yt z=X3QL#O>^ZpOTW|IOT0Ke#arok-eS8q#0$5jMps`fWk~|g=@lO<|<2#Wu>2~p)^eF zMx~uZ;)_ExEm2CRlP~0`?v=UZx9nxUls|3kX3L>pqam8Q5m@O< z7m3B=8c_N*DhpILl%D)H81KgW^u#Xkn6vSMsePWvjv2qpGrZN}%;r79RDt9UYt?l& zuZ*c@%B9Id6-vn8Sk}hvo=wBQm2sFJEneEz)pU;QMQ2!e^%OP^g2f4Q=QE6WOt8K& zX*R8sDM$!k>4^oJPGZQyYfo#g9NGK~XMs}%<)tnR7z-_KyNVHuzElur_+M^CNOT_q zr4mh#Za1M1e`A!rfC+N$Sb632-!+^QI{hxvi)O9=RBkS9R^OD2IH&rxK%a-3_d3?) zC||=VN|67j+LdLiNKDMnN;a)TssdM+h1~3LMXM$acdkB-t{5BaKm=iJH0J{NcPH<8 zDp*>JKjQ0~x; zcwLdrv%&>IOKI(bo&Hd|6noA_3NsWG)n;WOP8d7+MQCTUZrbzZMaSz*Sr|G!{ zyhN^vn%vB8whl^QBTKFIDNQ6%&Rk71{pr3vx6(xL<<{72d)dCla0Q2XmM=EBZ<@yR zro(P9` zm34s*LxWnZyWvkUp+i>?uweJ~I?^@S)`A+J6}FonAu2ATQvNaF42GV-vFL1mPqk^W z(6YkXvv74=4UcmdUfa5nke{V^DnIX|udPQ*{^>Umemw9CZWelvaxO}8$9#Hs$cO4K zH5z1V5Wlf!2GV$pzc`(EecRwd1#<@>@STB+o65Z_N6T-w@Jm`A(Af!gqr*}zIrZ5- z*PZ&-l;A6$UG76Lewn*(Uz7hCM&1bdYrIL_xOGqR+1pCIuVx`9^oD3@;hqcmt=J`3 zXHCWq1mdNEyOrK5QBPISel$vVi|D;}y5ii3uIUI}DLvX2583lkVJ-PEh+Z1}faCkF zoMkHFe(sJbu1cP6J6)-oew@S}N(_&^G?`9bI8ge?D)g2XcH)I*H6mbu*VngMAjd*E zrAim{zy+}+YZ~lxt}(sjsw{BP@v^8Sx}|Sv%+EonaFC;!;LxQ?FjDLL?lg*I^0~lU zGxyB%IV+RSONyoKxeG@we$*X+olg%--$Dtfz|J;tBT8Byu{Lu5uFJAt{Z?>AclbvW zg*N+b`?GCOyF^8jA|H-lPbfz}dE42x3GXT+gc?P}&)SRG_#`VTyIoQ|4+|~hy{Tzd zpEdM8%XVw<6fu9}HJjfY3UP0ao>%%s>wAKl9L@N99Lo0oz+;6FJ{cXw4b=?JcdiTP zMAH27RNB0ZrxPmnAQf{npzff~QpR=ZjN$4Kep%JG%QjG9003BK?8+WuFDKs;Jd(cg znl(|1N==fMBLA09bVIr(BJr+79Fc%?MIvYbjX8*+nVMpZpiEk0EuTUy?0BJCVZ^~p z!ze^R_8 zeL0dD6&?$7bIqpV2<-ch_>g>6{u=7;Czp2S;()2LiJ)mX&A2&G_e~rCd3AGMRCD0wIo8ceTMqOb zSHHQ*?JYFa)=4eKA(HUOmW8!pb{Pk7rzT|52!3B>-YOUF3Eb3H;a0AQrE%~co*vZ5 z)lP9w?3$01$XDkN5g)A=1Jo2>Dm`u+is>6oqX;Pqim7e?h>~%dG)}#f-|5f*hWPye z02!fR)9e??Y%Wld3f~XR>R*oj2c@VAm;}AN8+NCy{(UqGH^+=_r?*5=_pbZ>E@yHu z56=4C|8R#mU6#!&J&`P@dM|ty0-sQlvjFD5X$H2e={$Pgz18+F`!iJYyF!Xqd6>t14%X{eeE%0`Ib>5v)<_H$=WfbzLV5k6#^uT$hN4zS*H7EP#R@j{# zKJZ_eo_j^)G}pU&sQA0(k?s4h+gz6n_s(?a-yV*PUfsXG=gXDwI~w)x2J?H>FAY{x zrqxjJ>RG`jD4T|_-GG^TOYM997UfuBF(yvJ3Si~KIUf`LKeBJjT zPg3!SETdk9?N$|s11=X%7|xt7-||Q&8mt4L%sxcRrb$&6HgNcx`JS`ketLp!7oSv0 z`KjQdWwRTOXi$$y&70SenhD5z>j<{-*glrJpZ z<82XzR%J#QKjsxhyERt>?IcioreGfd_4{K`WnR9UJYxBQT403GyG&kiAXZ|*GBRq< z8S7w$_J(IFj|+5k2<8Y168Eh*Tz&YGN`xr#hz0oxuOF{$&Tlebt% zr5~l5aU31$MS;{+A9std9uO~uO-ivf*=F$PM19;{WilbV#gTDk6}orRci1~BX9zc( zKlHxL{e9kq0-QQ(13;;l7u-Fl`<{@yu8(8<67r3AcASv?=cg%2!p%-rfL1k|9U(W( zB*(4?%6(gm7i?B=py%nZ{k!xWz_zaAV%tpfpABCX2T!SGs!g2l12R#XjLac7E1PGx z)bu~uwx~ZkDc=A{TaEvEqjftRkh+xg&T^k%(*I>w9@^%A?%LZ?vsT|nL2V)h3z^3p z$_K{D6mmGgQath|xRWBno!Dk-5Z=8O)F~bL@!kEhhX+X|W6|^7`!e|9WrG)gtM-W# zTc%VF3+Xt1Kbzc77Isf0f7g{U9oF{?*a~8#+W15&0g{9E>Y?vTQgVAo?wVumDtUy$ zxc|w!ek{e1X2_{Kk}@UR@ z@#>RWgJ(pJCxx1Q%BFU1_kdpS#XJMJse6d;X+8MHec1CO0IX?hXBz+QCLp}P5NZmN z^lvNfT6L3T2w)w|Jb=?~;I|e$1S!c_B|vIc!ar$0Gq88J_&-4ip(W}zgNSNwmfi%w zugT4)-}AgRW!lJ!XucBLk?v#V0@xguR&4E`P&6gXpO$RuoP>h{VoLlHM}HrJ6>Yb_ z{(UpTb*-a2O6$+vCU`wiYI#8u6qED};03DD(|tqDr2QUEfMw&aE{DragDXKr@=?&^ z<*#4{*Eoj)r-$rH&pc_q-tLeXT5#pV+KTg0tyj`osZ~K9R$4e?R0u)zg2S-FqXlaz z1sJ}0K2wi=VlF!|ft?s>EhKEe;tbx$r39+N*ES@k%U|n)bQ}6>+DW9_AKf~7Jx~b=G z+wze@@-nLEp+T&@0R!xkU&V*W639X3P*?nFqu1bk1PvkxDd>q0d@`~6;ltMV5Ax9z z(7xZ*i2Z?R<+^Hl!1;?bBvWv4q}b#<02zwjbj%9+b>(VYaGNk1%(lbN?a@!)`jQ3x z$uxU)=r0ZcI+D|!pX0v7Co2gq*D~Fy1|T%}hEhU|#HWWJM*7^Q!kEPivcpXj&N7xe zy{}x3-)?Zzee-b_@cBCu-etZ;J{wFKV{k*8aUZH7{3A`P5mdqgeCaV|fqZ+c09lH7 zy|&{7LW=%{1AMIsQd$&H&ZCD>U$#kHyc^lELS#IVeI7$~C7F8)tFKtUsU-w1VCn2K zjNNJ{`ko6lsUQ}UPbAoBcwcY!tB%O7{0UK>H(s;QA|aAsPg8$w$|eYsqFyz}S8dt| zC@GmwAbnaM_cHew3XHvi$yzTQ1YYiC8%-a7SX!5m8N|*bm}5=%U{ASR(KXF)ZTZ1j zDDFLK_o|ZSe1HwM)T#(2WqcoQ4bNT>>|x=P<-^i)cs<-eg^yErQo+aZ6H4zPSo-tG)cV0-tI281CEuit(AndgFA z9bs~m}Z(%Ae5P@JU{R3mI|v-D^&Usb(ZK@kz7GD)a<|^@Sglhopp^Yo>bce z0ydu(&16R9_`hGSXV!ZAP2E7^eF+W)+?|Di#OSGx=%XlN!$-f5VHO?Cs-1>UzNE7U zbOCI<+kOZieo00WJ08zc=6i0B+JnBb&C$C4tnJXTtd(ewA$GpOV#IwZD%PiRqzM`& z6`}MO*vT3A%B-eYFz#Y5GcqHly!I2xxIhp`M7kyTMMpLC_-XI|cLj=4YAoY2%^09yU520fGrgZWUTc{Lqwg&2d_~9 zNvPuAhv4#EA+OMd?K2Ip0Py!8&yD(T88Czwuc!?tO^5t_+z~klh-fH!y!kuRrd?Y{ z%4!di3;tXh3;=KLrNf4*tA*Y7{>}i3Q(XH>jiMty(Cz&k?PEj0Hyz0)n_=3l(||JCKazB$W*qyyS0k2s+PZhs zlX8-!i3zq;Qqafub`I}!_L{^*0(;ycD+`nQjy7xf2>*G5F{}PITXF)@of-KsD(Yjs zUs8s$zwF`itNm7$W<`FuKt5YMVboL$?Alie0jEC1RAh z$}W7R{8j4L6|v3~%D%r&5A=yn$*`}+Ulz2jk7wNNGro4+-DiFbY!f=&_2 zUv$8N>^!X!D`K#&*2(rn`&epHj-f2lmU*3C{G{-KX4VSU&nZA%C8h)la(}hbk@h0-Wr(@-f&mQd2v%*;U#VB$WgWP#(U^7PbM#7; zw|yo#15%2&iIUxWsYiebWn!~OO4>xIFU5I`3qn^?*IJ)j%i9}#0Fy9M@_A}J@u$i> z0_KE7c zT<=P9gP}|CvN+oWm;gC9G-6QuYJse8taIMH6=)=S2@b++SK77xtKHEe-ox#Hwg8sS z3|pP4;jBA)&EfA7D9}@ei0fgI?<)oCem8}yI`1(KbUP<4-8rml03E+sMM;>C<>hWI z7Ge4R2?~zF-v?kgKF@+a$=cFB2$?=9tAN!eLn zYhqSe(ayv&kulP2e!AO)A$|nV@uqXljM$;=MA@0+PeehEZ&o2(<(BO;HIx(u)e|4lFOe99J4>smvw=O(EQAL zEJ-A{Cb~8}<&cBehQM)zrz7k}4B2hHY^@92JadXJHrP2A9<qos#1K}DJTVPg5 zop%PCU!}`O8uIuzPO3QwJ-Y&Yf; z(%+opYw?>_Ib3C2+{QqqJUK`V;no|03b#lGZ_}(!USOgN?~Ez>5lb={Byg)%Re@ z?*bQ{PW0ph@Ky(dy*IB?U1v3KTK~QDoTZ6y+pT-&l%7LR-j{~d z<^!BM2;t(YxBcmK+hhl?p(UAW_n)^PO2@}jSU&WV`hb*~`l~xfY;{F0iT55~$vVHE zr&!Q@uhSI`lEsMjov@baUZZARVaz2H4Ry`#Cnff=?^qmm7RuCip@M~m5`N

    &p-~$O0J? zYZ@j9V441LRID+Obc&v`UG*>=oMgpk{~f8^)LmMS#1NBAgY5VMIc^)!KNQwlSW*#L}7-; zw~jjo51|mL6$$f7tx@`#qkmw@L{R67wx@RkzM(4Uh|fZ+&n)sGDgF2T;%$>B^n&}3 zW|{L2NH+DK(TW)jTq3v{D z_|K#bVCA*zMZ~0Ps>uF>(cys4pv5zfFWphzRN5Bn8q|G!@j)}%OBL{9yX9_khaLOL zYvH2L6h5l1rWrr+^gke+Gh-{a>)!&PU}qNRS%=|kPdxQJ6i2Z-5k3R3Jvj#oBD%J` zor7~ni#q0F&Iy{E%8^Zc^hOfSqW#{BM1pxF!(p?%oz)#G4JrkkpCL7_3J+ znJ7&rmLqZ2IAh`Uqjj(1VnJ%s+V3BCx*fubKGy%JUuAyvWlFGb7RBcV#zW52*;@_c zum!W1)@1a`?V5{U(#v~dpwo{oL1kGe2!G`_i4u7@2qiZ?0a*9W{Ec?@ ze)aM8%*MmsQX9!xJE$Hjz*(8*!Cpgu5FXliO5p>y&cuvpYjos=8lvLv`#X4hu zO#M%0#ZPX`<*4gb#(~nojeo`uKlvcD-c*3)r(%mA^>Mh_9TllqCol{+&I8|S?sSWc z6|Vl~9sAY@6e$M${yu@MD+18~O@CZyEHBa6_;b?OiybuQ8(NUPily`0Y_I#|&JhLt#sF*TXiItuE6=cncl>Qrmglr7=O zgZoCz@iF;$!@2=}q;&G86n99ylN$3SnUaJ6kD18h)hnBcYlu}}cuF9g>QxlO&l_uL zf%jlQDtF&JdM#k{9~h=R(FBTa-oldPmov`=K&qG2XguLZw&WIIY|jQgZV^;gIoIK~ ze6cvraIYP?I)_}!aZCAG&uJqgLz(RtC_nXtIIm^Gh=PU7o5lp_%-;Mo01+ILJ8r-pc8Q1OFhw8rX+ zINeoXPnOViKeRS_AZU?K8Oh;MX$=<5A)Jz%lC5m5g7!oj9pB;7Drnq&X`LlF$C|TZ zb8Vo(R}Nu;HH=|s_Fc;T=101U)8N~@CMC7CC+)+&cG>l^WWqq=N*dBO@H}gtV%2xP z%%A8R6+%9jC-%i#DjDrn?UA2WL9yHF+Iir_;#KKyCnn!^m>{~U&S>t1tqC30KHNBU$~=dlAXBGdRdP;x z1c0tXcgt!6VSvLE6FB?%ZeL9N*c^}k^|+jSW%|!fW9L*XU+0=7=ct!bKx8y@EZBC( zek6CWeD_crcJ*c|=|B~R%8|7dQcV7Z|yI8Me!-6ng+->pbhmQH{k_; zfU6PU&7SGr2R&jhwY2B88e@&qHvsuvrHWmt(&I_|CU4*I#eS~`l7G?~BA_<+f;X*o zv>BR;4slE4ZNYXF*XOeC?D?0bpa))aMDG^3Tj6&7Whn=KP3?bjwh8T3(#&N=RC>#P z{~oiF-atVrRg66fj?!_MEp7|&kZ?%HQ3a>dP^2!=%;~8UW5w0XI+KfI_jk@=Kh@k3 z4`D%nF9E4OCzXJj#;hGy0PV4carkiigtBlUEXy1^VLGM;mtu1dDOFeMX>9}u z%->Li2h{I{TfS|5n?PY7V1273-)DQA8M?@pAp~)sdGS}}az@;jFV$*dC*hM7%r_n* zMF9Xuv)kB}0kkkUMJP~bqb2;q^z#aUciTn5=~|^vPG-!VS->fEYT|R;-3-z_u0F83 zs9L-Q>CImblMjISiQ2(+p{wESADVP-HcZC0DW^>cBzXZReAeuaHUt0wGTfYyxYBlH zY@c}Byn{VaT$R<{zw8-9F0ivRh2y&k^+u8c8wIe!8ziu0J6pSAu>y01pAsAN_4-eh z%_M0XSiC87llG9Gy^Nmq$ntNG&H3>J0%7F_E-vzH8PW|Yl7ne8_5E|3!uqL3?s5B_ z`W~;Cu#2;;yxPg!h!IQ8WUe%iR-@lnucXlG*?Pf0Rbl{5>oWv#8RDW5xBp0%;X8=PclaG{3}Z~S3WrRUn`j(wwn z*ZqIS3!OF;j2PQ0R4GA3i%F0RaQEr$eW52HsY`*7h`UlJLbp$*p-tb<&NOgvq5)R5 zkc;PytIAsrF0pz6(T`rL#iQLHBnUov4as*`uRDTH ztY`wjxtq$uSIYEs>d@2N+glEE9hGW?=u{V$rwxe4G>?TzlZl>V(J=R!^3p#GfGyci zQc<4L`W|;x9_ZkiM&|-Q5d)sX%b*B_bBI%m5I^#n4yXFuFdP8nH+$l9WE~zD-rQ+# zr}#k-19(|CtGr6Tpb$JU$N19Uw>2G`e!E2@L`+gagcZ@@apyR1pu8e4&2+4+MZRh? z>!Bx%!Ycp8jeE)Yzh}s8vH3&y$s1`$628**C|;2y0fut(3WGG5CPfTvkyxLfb`Slg z)TFc>=os)#j!UXHxOvwPw?0Q*Oxk}CR=Deu%{JL%bt|1v5!0Fhj&Qzv1OLTZ*G*x_ zFs<_((YkU*WKsVY2eRfigZq&behZV(ALvH;^zDXm0a^H|wfuS7CZZeEp|RWNjBNwj zTt&vRV*rxxm-ta}fw%GNy|Feh^<5^fx`G+Mq+#wiJd#g2B{E5aJK(P0Nvkt1>|C=s zPH)JHGkA|teEs_0#nlYHBSRefpTWBvM;rj_rrCwh0E|-iAU0-CH*rXkM-lp;E{;B$ zV%XX&IF%)m2>|n7=%g_e@2=`1XP+0qYQJ|$0wiP!u++)7-|8oaB@M%_ZOETTm2jZ3gZyR{=!^uXvS6PgI9}OHwGwVw{{qhQ~ znC5H%tPH|se6a#%+(ybQ3a+1YRWaz$&&5!{OAG0Sh$Af}Rqlq?GJXgoL-2W8(jw*q zmg9ZJhm%)zdRFE-Zt2Wa91|ADbQgiNGXEGoQV(xjYDS749L0$fLh2M+Y6>M?1{;j_ zl;!nqgb7suRTLq#+>?=*V2EigFVRWT@czG4zSepsPCQap*(HS zM$)f)%L( z0LPjL!P9!dz=fxS0sIe!BByTz_mH}z>O7Vzk* z>Io;m2tV=1sL(*;{D=Ab6bPzF_Wo>r!xb>Q6{O-->aY}ZfAA|mU4jbcMV|i3#s)we z+pl%E=TczLR|4*1g@ezQ^4jq`m>hqfTDTpl);PjV`~ebii^!@et!`~b))ve~WO&=< zXfV1VRYLZB^Md5k3d!}~$v)&ttQ%I^JW=t9Zvz05=Vd=zBJEw{WviL!lM;LaVJ)!J zCy2}B&tZ2eD0ejI63x=|1;w+(vRC$%j`1cE0|mv?K&MPjs&S<*!D_l&r-#HTCWByb zPDsq}@f?2B+^x_{u&+6)Y*B%p+AY4_wH|$B|GEj_M9MCn@W^hh_j+@CZ8FiN=)Ead zmulaqI?LCB3x9d9oLpg6Up({nNonNOr_C-nB@MO9=Zm(lG}H`zh1EZz%}z6#+F(Z1KyHO+hrOzT7G zs1x-U_A)9;#IEfJ%MN%g5Yr4?-i8vud}#1M|vI=F2d zjXk&Np`4qcu@ync#dFjayV}N=V6~wX8BZfO>=bSa(N1rUNRXtv!us zE9AKwCOnj^VHEShNRzE81fdnJ1$K}8v_vWOqv#YwMQ28b&DXBJTkd;m6joMHP}rQ* z0)85!0E=cLR}gWcPSQw(@_a3ok293F>X};mmG2~j0Oi( zHQ=|6!4%+k`>NOoK%5EAOT|2I!;{EM@!3zU_w93oh4gpKJKcfo3II&kDw7U6ifW1aGL$=i>f9ow`gG*rz+8gAXQe@uAzPG+sCFwDmsSdJ1npvKr zDoJ`}6!p8z?g$V=tIN&@S%16v^!R)z(yT?l{~Lg|L@DH)RCBo_mm6+V;tg$tL+az}fJ&ds1_x0O(Y zx4VO}0y);*%T~mX^i}3R3QdCm@_o}68aM7cHxuY%yUOyRP)~mV{W`EcuCQXn@>>lH z4BWk4^uZ)aoYtD0b8aV}$|;#gD3o0>$kiQ9-l|2HUl0G%;{Ytn=@l>KGpD^VRwdbvXZ<&x!HNQhUD5U+7=+ze^OK!aer| zwA#vD0LEz3sY1C5E?!pN?svFQ+V)oXStV3y+itZ|*=e|HQ$I(S0a=b~?F0Sz$j1%m zz|~;0Bkbf3eS9bY#N@h3d$`xRoP*-pXoapdZ%>~XeCuX{e(TUXeosZmdUdz#g+s$1 zl&gfVPnicsAf%?b&#aZg1aFg)!cc~~KJT|VH8q6G`*sSQ+?&vIA+2&#&|bTK_t(Rd zTMg^%O3mpjc8l_#PcPc&XIGr6vXEY%AabA}xp#-uMr#mj9A03oVfPz=Ri^G*+ zaqia4=@heCw1Er@2xWeFd_;7;;7$rqZ1@@dO6|z+PXWL;AmO|5 ziydbM!<%)JLiFw5%2*8aV|rKt0=8v;2JzRXHbY&<9_;uw`~^6Ag+9$QUxv4>nxE-- zar;%|_a+|~c6SF);lwxN3w_C+vWG2Q2ikk8TztN51^%AyF#6dS!ui*nPX0)v!o%U< zU%cbK36Mq}m)3Xn4`ln%(3T8o()nj{{xL2PneGSoDWIqJ2QOVU!sF|ef1jyU*oz)( zSI)4Z0CBNAK05I2I6p2QOesG=^|$$G(y{;_G>x68EfIPyuK|@A_G>6%z&4=z1fis= zl?s+o)<{1vEKZ$?X)fm)OHxr6{-qHZXihcGJEn)p22(3%R4ob!n3Sj+M4PV363e~r zex=+&rN>4=wL;W9*WVL1b9~fRXxp0 z;Vg03yT22+y;1ntJBEur0Lo`=&Yh#k;?onL^e)p-N7lEM5W}J=H0$$@Tpz;9Dq`Kj zxFY#qLF+IG^>pDka_vdT=}Z0)%?GdXC$1+0tYH)Y#`pCeI&F&!$&-I` zYyN@WIqtAOpuvW|j)zY=vDsjT79`eaeBGyY5F~ur5kjuFJVn2MiZZ{94*) z);T}5ZAlf;7e>4%w3E|^cgradtudtUT#iPUiNocg4sGmh0N@Wpm9VSAP33KNzN6wF zhnt|;0Pvwwx|nBdi|>Z8N^z~*t;@Uc=5aN+=-601J?WC@ZdJ97mc1*7ZipsBXtA6% zg+a#G`rr3(vuf$;(pK zDPx0kRCfPN9Ga&BZPs7kTeImiQrvISpmlJS|<{?igf5=QdM9jQWHBj9S{imc3-9@n7pF&$ZfLisfpm%Cqzn zyFPDt{)w(jSH9Xh^*igyT?QsS>gtc=bvNkSh6TVfx<_3_&*#h2iWBlWoFLNg@dDA# z$s`K5x1mCSdylX-FDuuSupms1!u;96-=;p9Px$FwNO}`JTj9^U!?vt*MqzFD`}wM1 z9r3`k@(bTz%(qu1X~$;@e3TJ+;c{Co@iWgch$|?H&h_|#jxD2 zWW%06eeQE*7nc6tLb>T{T{L!0V*T_0rx+ex6Wk9|k*Cn)y zzUH0(cRov-2TS+5pi}9t+D?83Iy6R?E#nKpQZmvqz?@R64bQd`RRqRO(m&pPd$>yJQL|zsiSzH;8z*X$7g673`DcH*UhjX zvcW`ezC1^(tQ9^J-xx{l%iX`+ePWk2Jis5zj1p9j+vGg}E~g1;>Xcu+M21+Re!Y7= z@lmRxdj6S6={PQ(`ygZp_V0Gt_+vj6NZ+q16~E;ps|{6$c?K4&`J&9oz;;WKC0H4s za%u!#6adS?1wbxKf9DP2_l!Rcf8G#$inI~UTioZz~rnm2r1dWv`+IntaqKDBr4>D!{O0(&wdNG7x zi(yd3NmVpQnd3|%hfs`um%U-KI=u;FkZ!qy8EP?*o@!D!R@}geyiN*g(*mzG8WZ!k z*XMZB)|{WeOK=7<8 zrlwlkwXwsAfV5x&z0-BReT&dYzi`Sef;J@-U|{lI{Me{zZ>)|Yi|BhMy7bQGAtUYk zI=QNJxvI`XPhOAW3+Y{3aRmPadl_qB`LPDM8Rf>UR!^M4ke7lHCLO+Zt5I^!uD3@I zO7=*fiZY)uf#1zp6x+ZGk07CVl24(MnLP%z4B2eMK7JgmJ^*lR2GdQmKyQhW@_|}W z0pP$c93Ze)QU525|7L#3!C6T-pj>y9?f?Ctw0(kdgyKJG81~PCJMUozAa_Z!z-fr% z20?u@y6Nud-|sA!x~&N#DdE5yTw~K`K&LLj1S0-~Lr_&p_Qp$|KY7%Sx!`_<{-6tS zk|3H_(s%X6yq8x*4soz~WF z7KC7ZSD&Bl8#zZ8yI!qu>rwqn_FO|c$C5O)Yn5+d8J;OJSeWIbR9v;vbK34K#@vkB zSXUdWcs5265O}Q|frWMHEV8-IIUA6kQEJNwIwSMLD3B|bJ6(6Z?GIFf+$rUZuC7(x zKG*SRQ?%Nl*_b6LdmenVwsHL5^OaBe9LAgV{K~O-nVgow_IITxle?+eR10xG9fV7@ zhUnW#W_N}bOL0lRg|-M?Y;}vk7RF)# zOYjLWr5wJ&)>_u8ckweT!8n*ti9;ZjCmSPMbf_iJ-wLYL>OjcQ&mo7b!U7iv1l1Jm z7_3uP$FRlrwU!z`1@z;_?sp9ik#dDHm1I4HJOCBApV~F9eV+u%}OA6dux37beA;G(Be@T+iM3sWe)}(1y0R~jDykPEBL`?Vdg?aR@ba@2Uv5cg?F;wNdc2u~ zKjr8O$lMM2bE#$XWq}Y!s)oitt^BR zdo0HQ94t#uf10J;Ibf~(h4f=VT_AKjJ`}-pXf?wxMwkL3iN0l>*mH`*OU z=!?!Z4*iPlf2TN~>gcYWdQ?|h?tiyYVXP=uE~&5q$Hiv6JL~}xWIAocGa8cz9&hoE zOb>?Kk>;|HQ&-+Y*P*SA-tlOD^pz5Sd2N3l$C>o50_U)lNS3z9Rk@jACs=Azi8B9(nj9)&5dA zaTR8xAc25SPBsS8)@!m~5-rxb?eO+X^%$)<1>J=6F)V$SyiHeuqZK^@p>{A!=U zVU*gLz9@B?t;&j)Yh~4N2;1Y2%ZP3=^s?7>_Cq`Nvg}Ubko6Il6ZA{$H9|>_br0|V-KG5TMUL#sze~RmDFXB7zb(9qa5T^&BfH92W_N5LNmb^FYuNV? zPs6OyHU(a;SD@f(I!)d+)C1gVCG{>#xeO+3QUjI(A$%e+J?{#inVPc@F$aA#N!M~2 z@OY8UP{MKmK>nV(tdzL5EuQqQz1TeF8z5b%eY#p?eHU5V16xbu=xx};6hfcyj!EV7 zm1aeh$9aBicpi{!|CVli8td7NHoaD5s`PX(V8`B&;%gyru9T*}>a(yX)q}`wIq~_! zj78_*`I4I=s9|VHUnMiCHp#vA1LqHoo4Ng5pZn-d?Czfd#8`~tV5*rn74$A>#3z+L z_qb;9jcIC*bi$HXw3KZRF1N8%n^E++9`B zhie;GYEJqL5?HTa;ga`}^F6z}3HbFUn$S9>Vn3v!BG!XLuPsn9C8!Xf9cOkSNCF4ebZxo+6*>FKEg zEMEP2D6HX7JRs(AvVJ)jrLX?O-(N}ucF$Rfsx<>CHE(OJed^|x{OY>XP+jbrpAM+(M(5d%gHMz?^Bl18yc zNO!k%jP6!ML`nptyOk6H72~fD&+GH@ch2XWbKl?Zb$v_Rfx47==(kI9f_c(4qbY`e z1By^8P&mxRDiI`@VEY-nl>BHcu(mJTdXd))zSRsLA&BzaC7I&O)9WvS@Xky9GYvY3 zQs`&}q>O@OBu;2A&d>$TYMEpx(X_|2w>3tjrWn!TsqbI;2FULV*2XlWOyY!=(lhsI zG6Z1lDM6RuHYu?Nkw*Ar;}H0^e(Hu;4^|0ra+=ssQZSG>_N?-!bs+eCn@czwR&J;ZU` z2UsFsFnxwfW?KPdb!x2TEo7TEEh!}aYZ>c{oF7haOz)?_jXX6XtKLfWfTxe;$oKn} z$sN7Y?nhpivKNQ##GG^ZB@GvIw1GcbN;=%E_CIK?n5ZZbwEx)8pxNY{g@}5#OL5x) z=%e6$uSo|UB)rSFl@WenWA(kx*W}|{CcMo>FF=vodR!@~N?11Zu3dhyL*8fVUeA-W z+7Qh1vTO3H&VsHACoggm!cAxS!zGi;KCG>laaS3wz;NPk- zu2*|J^;+G!|5DgJSgd}Uks`lT^@#N31^52)aT`wflV!EG@GVsT9@~&;K*eaCf>(*5 z9Z2$K@5UhLt^D zKTO-EYAQNaFWN``rDRTtR4dj`d)J@(Jda!o)2$J8435q)G2X!ZtJvn^i z^e^+%ORD#f)gQ&vC6 z>>D{oSO;t+tK3ik9l4vH+R~s4M_RTF3)~lE#aYgF`=qXXX&b{1&1g}UETQcZwQK9d zZRF#>a(@|1f9~jLk5V*giW3#8R&D%^D6>gu}k9Zam-+&ji=NDGXjWlCwViwP9nrTs{e5$~WY<>>5(DT5y9KZvWRRcU;kRQZ z0jj4%Ida;~fLNymNTMuCS6A?}gl})Q8#DiC=XchdUyT(o(jwtEZy78Sshpn1>zcMc zQ@*FysPZ+JdV@TzkoH}8Xm45S&v!&dF!h~#I_;!6tpsPlyylx!?nB`i32SF}eUz)} zwU=}xZEsfP8~?@^D&hfT_rD1Rz{0+_?C9)X#rk9g;}3MMN7e?wzWWtp7j-W`K_{%e zw%&8IYqjU%QHn^8K5BF+IgjWuS9Q(%z8fuju7Fui`W3a;SdfW9Zr;V@jC48I2#AX; z$zB_$QpuV`mXwPzcLZrgk{!elOyDK5sVDR-27a!RY`@6YH?_r0Hn6RSydpQm}M*{5?9^) zyeazQ_sgpu1>2MMGN*e+0SC{U=`ds_k$DMk;n(nW6JK%&WF5Cks;kRpr_;oR`O4b{ z=|nESKcbd|8d#+Hn_iPCKj2tZk zxjP#p%pkq|N#$I4`iR~Z+=5ko_6gdubu5YabjfS5%o>xrL)OVNYrb@;yoS!7~v@=0+-uaciig$GOgGFw%N>}F^LNa zt7Eafzm{bqqd_b=TZ>3-l=A1|pV&wG$)K&&c#>msR^Hd%maf;P9$v0@R- zDacP)m`W*2L(@2lH*~M{(J(fDd7@zGuGhNGNu{_SU!jhWk8XNYqq%0PqpeWIzUilz zT$ntnWfFV2pZQ^u@G7&Va%1|61EhYr3Hvv&)u}^q^1^R((R^VeyhvO)#j-amg_J}VvG+i-NoBk)h|#4L1q@w zmCT$eMn!RDCCIWWW5#GT+E~)W=Z`X1?T=-Jj-L|VG zS$g0q&xsLhw|gI(ankcnrFD-1q_I{Hen^7aApUCcTCA&f{iCl&%;uvQDx42KxpH((O`Tx2ZjurUym6g}SQk9gD6(SP!9MKx zKdm+SxFS?_iEsih@ChNe7NHw2C&?W>hx2H8tA0W8`Z}w6Wx5 zYDAPVUCC7!N&A@oH>vNXcxH`i_E@1g!??v~7M zBr*sHpB7>nf%M3#~rT?qQB)A7g3vGR_QFW@(K5EYB{cmKTg%zkc@1 z&tyY0i}#V_0y5BGMB1k)iXy%_a)S8-#qEXV%;88d5-D#Iw~%r8q)fleb3r)0^m^W@ z*v;)U-Pp$0w5gqtbX%D_yEXi*^nbOXh`(vI;6Wi0?3S8jWsR3|*KbwTo}M0MqEtUf zBi1{MTq4Hac+_X+GT$^lmyQRULN}1Lpv(KRj$jgA@sG=FPKufV27CBqb{NzTNNr}0 z%rX=K2*%%3EHbUKAIKn;F98oCyO7^_9i`YSueZ-7e1qN?4aBs%4hS}nI};UYPir|g z=C7&Tb8OF1BtB-?lw(p)T;hBQp)H0l)UunY2|7??~cEm z32{^zzAJV5E~6Wa1{#=LiqhW6@X6Q}Y1-H=v;wEQLnpr!KGJ;>l-(p~^{ zrJT6c^u!hn325SbG;m?w>duK#2NSE^3dzw>6s3OT41Siqo7LD7B9Lr>hh4k(D=cG- zJ7?Kje>^wYSuHHZ3<*KM;c=9)7b>kwyV9^rDpv+3)Kvste*nk1LU{2wOj&3GHEX#}Tyc60kC*95KbM!cn656-LSts7 zc|E6mpF?|`k~=#<(OCqmCJOBx6L^y!z+B#PPo?LSwd`I!SzT*MbYa)S=VtZGeP+8o zT_ibt&vl8aYu(O~mys*WXPySh)!@f$24ByD05G-DWu|&#b&NiyL-+N~GrOh_ z^sND=KN}|}$!7h383;NZPECG!o%;KYJPhzIk|Y8KW4u_AhdXSgo$CW8uPy;^BMPkg zx6c>8eqfq>%Ebp@*q$jx{6(}U89m@CDK#A44}b%ArV^agT4g7aiNT-UK{;9GE>8KCGw!ZjAnH z9A06tIt5greu^bh6_1Rw-@JSPa1_|2-Vmp4{XIy}HAPnhS9wm}nvOFkC5=39(rXY9 zf}qm4sD*53N*{#vi0I!OP`DmMf+8YdE$Y3;b{J7X+4f1v<4FnWbW(>_UUPP9C||Jv zEAI&9W3T<1!0O;HWT#9*GI`bO8|f7lX?9wZ4=BOk^bgrGeDYmoA}sdz3@AK%NDAlT zX?pms^j#e-lR{uLw+CMj1V5>-dD4_U!lB0UP@Ki1sqSeSQ+bbYo5Am@Y7P5ol75UJ zTXeBdjsr7Sv6Excer;_=M}eG6B%T5~%UT}qRr_cEU?({S%Fi_p^$f4Y8MKM8sOj2* z-Gn^axTc40Xv#P7*?ci>VlG9Sr(Wn99sX#NGdz3!J$)V>a^wL7JX& zuozOPyb9JL%(s9F@JN!{5K}3?ixFd5%GEtZzupIcdjhb??$mz)D1g<;_)B6!7kkOH zu=+8x*=3Hyz&x~12MBsxw&^)(&6;pub@J+w^~2H2#~&`y0``7|fo31cSa{-|581J% zPZ2rv7ID$O5;CFOL4cm70L%5Vh}mIi$;j<$!17rgh zi9~?Lt9guB@6ba~k?4}1Z*a>5t6`nc3U4~&s|+*ee>Kv0j@9GUkzYn&^n!^i{y;#JRQ+1nZ&LR*_(bE;ER)&tEhYZd&!S8} zvK6Z@{m6<<=xM4IoJBOb_irUrU(x_dMk-~FbK1OGH-@R>>|*9^=w5z1W|4XQKSJkOqWor}u9j+?*$#ycLV116aD(8Xl>aZsy{~4~4?e?z` zGRv2|Re<={n{0A7SjE)7FyJ|7*Y^+r8Gl0Hp=M!u=b`9;+E4d>Kt}x?<_MtsOky40 z`5`jgid77emjV4inwj`{rc5fNSu9+%`Ucj5F!^D%R|DXyI{{=p;Tl(5uCp0*1SFR& zi(H;@Rz5GjTs#0Ik^57n^0~r%!_VZlDA@s7zw*aGA2rEo)HwVe(~jTCdGXvMqZS4h zC6@<6eDS{-|I5|}(f2@VV;4Iekwi8`xh&yk+h8<6`%#bAtKn9aCl5tza-D}*4Q)&B zd-SA1DF(eaA(A0s*&(BxO{hvupForaMZG*K@toN*Ze#KdkkMK$0Y3yd6CZ%|C@Zi*l%#|Maqn4O&M~1s+H|Y38Gw10eeJ zcLbsH4w-K)==OvIvM0ObzvX94Z>2%mOzUmUORJ-kP%X)K0LQwWezF8Aokl=pH-118 zIft42_9hN731))-aW&8<0;0`BD;|e(98HQQuZ)^g1WF>DT8$WO9Sf{R6nk(A5_N-YQzq(SHiVrt~g{csm#M5 z>BED22py;dWL-VkG_x!{%^y6@gl1L=mza9N`n?^vp)W6Gh*_*;`3%YsV5EwT9|-Cf z<8opKHC2Dse4S=oF3U;l#oQEObeIoPxbU51iOFHlcxk;y{W3x*-x3LONpTS>52I?` z&Ofim@sR5wWy#sQ@>lW7W{z&^qDF;ps>f`c=_tyu^3-PXd1M4pqO*!yu!Rp|*Cklz z(K5Mwe7L|v*<$CR423-^v07*hBe`XO_tqx@O7N3re!`aX>I!-FXe@OsFO}av9G6w!CYX>zpi1APPxRo zUPyWpxUFym$exE;mRBntZQ5I8@txB42H)i?Pz7kE6nh19ii#T>?%9Gak3`Wd{os)C z&*aV3_gg;RQr&MvvNSzGQ$hC8~wIHs99QaF`SmVJO7~n8&1z!T{R2|DU%XM-!Iy ztluZTs>FkG%UHxZ=GJncP(z@SxDF5dl2G)$O6lS}(gQWoY&|op#MVLeR}}7Jv<{^A zP@x97Y?ePGa)@Gf4qQia1CtoT-vtJD?sD3aJc$o!_kL?O3#Dq`jhKIAy@+r>o1|nu z(XPXxdS+SV9^Sv<*V3EM-Qn6_u=WcjS_klF)cI#)N(TiiW;Z58UI>Q~D$XS$>CfeB z=$+UW!ZfHViq^&Y7C=a7ZBd*|4byd5x!77U&xlbkxf0@%tM3QC=GpBsFXdF<(Pc@C zA)#TSrbuQ9?j^Ub!oEJ0bydYMCL-* zaR&E}M;HnS{LS8uEYUX~SQS(S@4=_)=1dw;7 zk(t~~5zyxXmpc8EFb66Qlc$YvGthHj9F)gkDlvW}>j^=zR-QhQntz z>NO^%LSjV_f`XT4D(iR*It-hN+qQ z(PDs;?t9-_B)H;dbGrM@6)J4nk-pbEug($G>ySP;1@0K$_)&H$&DU;bA%;#3#p>J% zD6?p0F3MjB#5ZzPzD@21LFIP}k#%7AlW9TP_N5M2fUCp>Z#sxSC?*%lORQOB2`KAn z(F8{z2WpscDcNrr)8M+TKi$ZOH}pjE>fj%{L?7?*{42@on>5J99$wd}mM5+jy1Gb) z{W@~{kRE|Om%_5tlA4qzXg-!lgJIMS_O_}s%y;(A^Rjt^zEM5Yf>qVLqiak!9;U;R zxQw|<*kFSlJTj_#yfaA;f5Y6X05ZSU!1KXg%f1!ge(hC&?va4M#IvSkmRs~AVP%_d z59&T>U(I9T(aL{r%~%l`jy{k(t*t#(!<^v$w21=tbJ<-mK(w0EaR5dhBPmzRaP)xi zGY?}LqgPIw!Z4ZUza^{LUk)&k36%BI|6YI;VyDR$$`!iEUdl4K}Bwp>)lLs8~VBdg?b|4#~x>=xDW_<}H` zOh2s|rDq&)L~`@sXaz#nXZN$KwZ#{6(Yfnhq`ehQu@WK27&aYmYqHSkyV$MpW>zO_ z!A2eKu>rBT78a!z`%sIcu+=@)>hUKK-GcwPVR9xQ zrv8M$!>Cbw6>4FvD!-Z3^0$NtkfTjyZ#>Sc2!LV*RDF?A4to(UDIt zl3GdF-21Bb>=%q4k)FZTOoBwPM$PEz+;~C~=joY^Ef0zx1Jol?nJaCYyi}uSA`f*YiyB zvu&(NeSrkAWk+N?Maa6OYNi+AiM^Yl`)`7kemEY*R819jmKdmCO=OeVXEd{dPGMR< zXoJ5?x}N_C7>;N|-51t4J`vuU&6T2DGH^)LIRPEz4nLTFP9T&zaG#*SVV$;F%p zZ7KSnA-!12zjW43h>xBl^MOvI0ckgM03BK5Wlb@Lr0CLVGhEaK3Tdd$0)&h)nQ{Wu za>)P$;5175NR?CmF2Pn74nV%)6ry$c*IOncn5{JSf1Q4{E4N}lZao^9+lqg9TtsQ- z97Oo$iL7{;3^A5gZUXNOC}WiVOUKqpjRF)mV$2Yu=h{3T(3!$8{A`V#nW{skM3`vY zt;}k|iEdrmsG$9IzknYAR9x-9U+N+}9{?Kd$Z+3s*ti*Kctfy&jtH>&3fto$;|%FW zUOc*D?HH)3HVa-uM!8h1entAuX^Lrv(6YP8Y3$I)Vr6UQ-N0qMQ>Fz$9Gp|0Pkm?% zcGq^6u?l~vMy~jaNrc*VobEidRM=plwMnt;nwfbA>RR6#)Csa&R*`?`rJ42WYQ;Hl z-<(EGw~FkgAXiK~+Z?l{=)+;qd7?_H;P3+O^I1IG_`or8GtLdRJ7{-^rfVd{#O!%`k{4xwqUzv6JcbM16il2rAJW&LYd!VQw&QT{jnh zgb`s2BY!CsQ2#N%6rcKIGPS~)*`RZPTsQ5Sm@?}Iqm^J|*O)QA5!7wYMQl5^XdaW^ zAmeiS{Q8rd;F&FgwJDZ|=^57vb`3rpUQi=ez6!Uyu2@#PO6ifbEfC(;oZiIf?7qXn zv#|bhbF;ka`JFoeXrK7upTDRqmqbohHOLF)sqgXTnP-zLW5YojWo}*zzCRPx8jSJuYCYAfZ(S$j4 z6)pguy=y7aRCRE})X|chq~Om?qPQ2}y3us}aqt(bEF@$8yf1 zUMa+-8|K_uE@aE54!+wY8s&1=qAitXY0`{33T)Vu6aR8qCpIx93WY4^p~V(8_!hV$ zlgHfv>sG6yT{kZYUHif(4%Y%}G)7#Q>WGDo2=|pOxn>ZD1vQ*=cB84E^LhRfI+>01 z&KMGgo=UbovnC){)#YRrzJbvw6I5}%x-5&3&Un0sFTAi0Ev!sz2unSfq(5vtB1QmfVj0hmyWCunVD%vFV2jJeXp~L8C0{^NI^f6zPEE*)#)r>XTG13rfAp% zH~x(ID;A?HuC&7M01(VBe{5ehK#Kr@v!|^3C8yjYrU_cGcQA5&R`8M&QvS#42zO+7 zE8tb!z?Q%}BOX`6HfImup?>d{`}aj{R2;XR5@Mwg)!7f$h7-74IBSK30!pg3Lz;r( zBoq)*WhhD<$i8+9U@Hqk=ss+8xe{c5dM(vvVD<32rB)IKUTH?Gu~{wbt^1_M>LKFt&{dhNt7qHpFKA$3F$e_7j?<(HZ?53`>s zOoo4RN{#Fk?Of+P;mZj4THD2x%IZvAW0hLg&Lqa226uc1GEMVaI4F5?SEi(fO^1s5 zUozGgnt<4Qu9c)2AimPlW0E z(S88LlTE&|xDHiz&j+8vPXye5xpn^ed1=z3wKot9P_c0pw(QinVcg&R5b~(I!{$IQ z?U@vxTx~2>e(FHZ{GO}4l=ONdsQG<(bs>G}stmk>7lU+e>VpA4%0cCPIvZ3!25{Zjc=^aUve&jb+S6gb4C4UA{O$*L^oT7w zkpGP^2E=801S+dPJsov#P+g^8tqkf+78UXGiHd|Nl6a2#7?Kr2gqz|Pl!jFaTj{@}A4`CTmqa06<&>+GUD$O<1SV5qXOjzz_ zNx?m5ZJ}Kz0H#EJ%NzDKV;XU)QSP7R`uwjn)UvY2i*fd+pQxJ}pJN9kFJA`8f8;;} z1tHtxp%kofY9)<0vGn`hV?>ah-+U^aP=5KCks3so$=##m{$I`idaRYRvZ3C1<9zvv ztZU7xVj;$mN;q43T_nzYkx3ZNG+64u)vF^k>oc(WhgkCltDd8^NoM}HKN!7|AYz?b zB)wUfTP9iLs#Yx--T~>` z;G@B%uDshBwdp@UA^J%_j zv)dodqQAEo+V*!mIc`<Ri31^HH79S^tfuwV1v|A-S zUiID3$^sZ=(SitlGW6#XKGddWM5@cmd%EJ*cZnaRu9bFbi>mEE#lXPkoR^X%=7D)R zgpW=rps%g;?F;i2>vVws&!RN^m+XgUT)`aK1@*(A6A7~xGdhY?uh!CAwbJkMzcK4! zoU1~8*k31T;gf_GdqB)AiUt5h%{4(HjMrgUn)*GBZa@r8P(Sou*-lx(Gp0}FdB_d= z*v_h%V?|<9vh#UQK>xluaYnPF{FP`E=z52d5l z6{{Mqn!Une%hTp+dJ(9u zSm*=l+|aUpr!|V^)g-^3SPdnL%s*X2PT={t{`JsM=X8_M3Jn@&b8fL}Uj}9^=06(~ zjL>yor1RTXdnWaz?-0$J`#U-*Fp#UTc;?1c#0oxzfm<$d8_7t3zL26@@56%B@?d}& zxBD55zaNUr#^e5t!W(BD+EBY$_h0o|h*N!mBJha(w$%92=2_RnQ41K+LO(T$EFo1l zlc*BL4^PX}BcnPL1IL9!3YmW{=}DyM`qTU_q`FrYb;rCVepea-t>N5zA(-{R z=Tg5Fb~w4QgR_`?GZm(o98h{LjH2cdn#_`YHc4(EnU*X^MEA{j+xh~XH2`nR*)Oin zUnUz>{vDR+9!qjy4qLi=KXAHxi>^Z8T@m?rw+%x!(@KlJFEtzA?*Xco420T(ErGKc zs7@4!HVq!6L>7jxs~YoUq^ybdr8z)L1}H=+M!x(GD8(Ppi2H%#-irgX?aP} zoAv0e23nLsz7tsPbgmVX58s$a0U{a>D+SWpjZ(xN6i99ZRDk=ab}PKcN-iY`Un~G$ zu>q7kSR9Kx{omDaH3qsDZBxhb^Apkv;oWFjv+`N7j%l$|aGHi3AaXP1acfS*u(fEe ziD^6l|G;W7Q0E$<8`SpNCg%oKlNDjk@2<;ND3P<=R=X@(vu~VZpLSV72lL$}n#hgv zofvF!0OFe|;?)}0q^Sg-6JJ}K4g%1}{PPO&{x9Ow!7F3n|7z^dq_)z+{IKu?GVymZ z9KGV|*9%W7R%3^=L1rEYai?6oUFhZX+FLyoUk>%PK4vgIiw@m7Iq;fYJFtv@LM=PA zXh;aopr}h!U3=5s<&fjF17CjbOgZkr>Z)ti2JNUmG>n`%P6P#%QnOawT6D=#b%=F^J+l0z)05 zB;xkG(l~T3*IJ*e6Y++dM>DWY(JXIvoYKj53bj}S08ICvF zkNTj@KA`mTBUac+2mt<-lAZV2$%jm9Lgn5S3$CN(;ZT>GDGH#^|3s~Yj1L?My_o3N ze?hcPCZFX>Kbt$8jjYd(SWBSGA@YU!i5uvUG*|klQLK!lxlS6-X^!D(@Ov1!)Iu!D z;Cw!n%6{>ay0JxnAgylW=nz=Xpc!Dm9-aqRi#^m7ArHf$CBzi1?$E8Rsu(?$S0 zKAXC;k@3-@oSX(=+$S!zzV8Pd5(3$@90z4LR*$fvI(qH+W5oAu=_X8<+~cp%eV zi?%j-7<_CVYlU3Wu}KH09zQ{mi9R2A;yM~Is{(`kJhS$Y=%uL zDtlQtfP71$sh$h?0M`~H%(sJ{ZV==$B+W7uhyXpQs$%@3I`BcMVEy0B4a50E9b&?QS$(jRrhzFs+SKmnqU?TS%3IMA~>zBXf^iHf=vEu@03Xoscv6=mp>O=h@ zDe9uwEbjWv+kmT5z(+O#y}KpOV=t7A<8Qo5agwDT2S5~b%Qx($Hy{=TL79FhAJf@Q zT>!w>dAwbIujoTYrZEN7UKWXl?4i(l=^<#b!>>fm*j4jQ)xkPy%E|39v zRnr6C{2xftr@FCL)qX8{nv`jbtx=?=&}Lj1m^uurK~gr)CsL#eU#dR)v*)t^H~jjSmO)t35yOz4q0a{e2Er7$mi z&R`3x=8(H`+|WIp_2)`U+Fws1P=*w;BLJMQ*N_me1UvtoB`Xt4~T;c20}h-VX@V0~Fx)MvE}2 zXC^O8X>Cm41t{go8bw;}u-JSCZ&x|(9QLrwfi#1k|AUyEaQgF!goV@9&&MRz9Pgi5ax}rvA z89Z|iM?J1luM4Uw>CRzBf6G=e|8M?pjV@#T!+3Gs@-w>mmhMBjD@#O~gaBt}D=i}( zkryAd;X>(ER`Q9&fd$>HR{T8JA7g82_ulpz3)>Wt(pGBjrSy%6iqjyEf8PE`Fx8JJDcapr+zb@=- zPI36Y&C!o@zvK<_s_9x!>Q!OEH}VDrSH|Kcpz)S_P}TN!jAOIafWnat8o16Z=anQW zUMm@SdG&$-?r9V!zQKsP#+Mh=laQ(s_u|pRM4knXK?;jBV5ha zO#6{ne?#Jeok?em!D^~xyz!#xx)zYB$PRc-v5q}N^Q4Z`#ag1CiHsDNsK@UYxpaf_ z1w}I?15p(QbfMze5;w%Wp69z{xYa3G2Eo9PV0gj9RNOBegax^09Sj3g5)Y6uju38H zQA1YqPE>f;Um?(!?qCUbS`d~0o{&N``8acV}g-!1EkwPiRf$xc*)Tfbi0lMzrD&B z04K7PNfrH3{P!sWprB)oUx6@K+11vX*QDH{zHQo;9}NH&@p8Q|7)<8#8`nm-5fs@X z-lXcJC-O~gE>^JB!x;z?b)YsorkcsFGSAVt(ghsUOEy)Po6*~AQ*{5<_nUp0sXN-a zX1N?+yE_3OiyrCk{QQ@lS5cP=h%ujJT`zQKL?n4!lJ$g6c82X|J9KQ(R;P%p038nC zU!jrDX{Sh-zg7w2P<3e8OJn-M z5^tDV^W^@kglRO3rqJ5)i>D{=dqdd&(Qj2{wPGIE7=2N@hM#i&-5CX5IXfc(I~nL8GSxLo=oz1o$km z$Cqw3cMs6@HHE;$^?4yeix^4o@*hP2eR6FLqF2yhBto~&077ZT7C80<^j}v3*gh6k zraip{(PNJ_E8wYZ*2pQAyq3FLT=&WDB+T8Q?x5Z;2CoGZCZrN)nTm<{qNqS-KZYAM z6^~Yz-EYSh=Dn(TNM)8e>LL^hwcauIsAm$}&7JG1M7{8ezeadofUQWuR*+}q&~36V zZHi^^+g7Q&4zDpCwI^GCC&v7uUOf(uiFdw#SC;dEzc!d=y5t!O;B~1;515x;v-k7? z7-C1R%cyS1p{aIQO_ZGgV08aYzyb4r{)_iihjgpF+cgMs& z?gneUwL{Ga08r?BO%e<9&2ph#7$IRrMyKdqEOnr^$$7fp+`Ck9?Zn@J078+>f{pG| z9i9k_&4srRV74&qgyo}{!V#AR+LW=f7wCRX|JS6OCP)(SaxMLl6G+Zg{g#`x&~csg z(svvm|JXmOapoyB^+3B4!($4 zHMg59LOX8vxc;`-4Yuv`(sAJC5s8O*z>yU*H@ElTK$wx)YFHM_;2}(Xvu`KgZ}?Dbl0Rx9|C+6v#YmAn`OQ>l zKVVpbK+;osQ}y!BoPas}v;8h}ufW~9Ri}-30D{eS#jOYtX(>vkY&lSB>h43zWF34J zYv&&#E*z8oGkXA3JJYOl#n{*Ti)9(!@VQ8r2#EU(D7m_1kU~TT$S)3`(tl34VS^%v zeedL$#6D_>%+XInF#@bc%K#AHSz%L|A7ehE}?HO^c%{$t+D~IcnGx(d>Wqb zJili0bm;rPVp|2GxYG*F+@eGfkMl?w-7qwlLA^zUc}OV7l1XIko64b^)k1e(tUC;V zZgo$C!CEFMt&lWx`sfTsQiaHG33u#gAjg-w^}WhLL-t5>w=>5#g!KUALu&-QYr-Ud zD6`LkoWj}wnLzVBIuv?0oi%ih0W?QgfTw5UKPny0f@;Ssr zijR|Nh=9hnBt=dJr3+)qpr`MB28V_mpy|sJ{XIS3bf~7#Vb<9*PiH-A3}@xwOlGFp z(Wa21c!~B3`H=@A<;<1EyPwypuaeWS5f?#jNNT!+_T=?u&RRn2PQon85p~~$^_ZJ< z&LqcXG;T*^A*%q|a_HjkBj+7c3m-V32B#bxV9mU`qoLlf;Pte=Yen=oQ)GZyW3rDJ z<|!;1p@AO z;NMRfn2Myri#48k+yFpr-0|RW4PDR7D(Ci+1)2qU=Q`_JXA}@m@C;}lZ5D=hljZJ* zAj#gRV%F(-jF$DLYu$93To@l{stJajO9qaW2>emkRpOr$brigyk7LeUsx69WZkyK6sQH)Us)y>0`HwiXPnFra6$1llCGH9T1^s8&x+eS| zL6WQ`9)JJQEWrInpZIWm`I1`Rcr^B+V{w;+y%rwRk17Uj>&LO9*B-v;yt6>6lGDT#&$> zvl6bOn$`QqsB{8Wv13GjFNVe(7lls%v!oMnmRoNhg%SVI8?W)<_sxri?a};HkLgMs z0gjtCU4HLqGA5+!V%~|ukOYop@`{ zr^*S)@|Lq6C868W8A zo7i1@_7=_YpAYcWrEO@IeU;E(l6fF(hPjFf=J*(VyMjX8-Rb)zc0WYFePS4k(S71V zc$MeQK0TURi*z=T0Et8>>h$(@IDr(m36@$x9bxWMF~~nd>?YD7`#&bIlo00GFq3?xAi(sN-$B)Lx-w zW!n!3*%7}MX~Ia2T{bGaW-(m%9kWDpt?wTW9I|_LSqg$m+{uJdUY~u78)HAX)5bli z>GZ45!Y0kyx^eLtcjioKzvk7y%Mr3yOIe9vas2kK;W1>DbyNsTV`7g$PZ>U2q`%11 z3;>JePMf%Xl97qNUy$kEjo12^D@Riqxau3s*(c^)0dAy5t&nJM_8lOo0JS?#GEo0p z&*#}Ga`ADA=)}*Pcr) zt9Sa=BitQV;wI-P>RMbUg>-~+iT^V#C&UB8GG^o8c$28E5usdNeSdNCPX0de57+q? z>M74f_>U_L!&)0vuD*k*Z055dWlaQ3y;> zPBY~y52Rn$o%;lvi)%r`>Fin}01kqzvV80%eR)#!&E_lkLlUfZzvYu;!obI?a2*5v ziWe=lhjbSIHP-E$Gyb#ne`(xHS^RnCgNdFu)9a%KISS9H{sr2Ox!K5?ctNId1^n$y z>|zsPu=8L9-Q-NK&;Z+FsjeaI)n%siQN<&bEsAA{pLS_1tX$l3Ik2>Nu9|lSWoC=B zy$+2Dx_vpNONd)TD?TPE-xDz{RZ6^Xz)gO(c->)IRB4M76Nlq~` zA2&KfKjnvQpbWL_^MYNf8RESJtQ{RE?VfWQ5b>+u@*_wcS%`MtV~8NkSAJ!HUSms= zc&G`FkXap6&~pn~aZw4#EInMzEr6J-lRjl+*QR?R+|-Q0oR%J6`d~`bd2o_ZIb*Cm z9S?2{dv0#}Tg2p9pA~Nb7MZ*E4QBz&mY5QPeYm;TUrt?@x087T+?v(bYx0Udx&dI` zHW>hFJ?T;_ThE#vuTjZ$m<|U#byB7p}fcSiL`0xcf81)nvO{T z<}85d(R=-C9*pc~FO}F^?&C=0VqDp)x`#XDK4i^OO(~qw#=n10O=+hm89E~&i#0_< zf)DhwW(hqBCmUy5;<{TNm*6s+VYY*$22a)HEu=;Uw-^O+cF~J=(YaW9qsNt+Qes&y zamL}eh79z&vR;ce=U^EY#ks9zJ)PlN=3rPowR_VHeZc-pT{S-6M1MM4i? z%yv}`c1~IDOvv+c9E@D-M5hA4_$ga4JupdjQr5!sL+uSU3}1*J#IzHf`J~e>uNQRzYhLSz!oqgTdrm0xzPY|eWSZm zfS^osjW&yG6&6b45~}7Bo~v?a6%pFl0z)p<>Q04vV`zKJ6A;G|(Mn@dd>pP3DUX+& zBi9Vn>{C427RiUyEJ;(?wJi;Xxi;_BYmG~)=J8=U33nq!S6JmKV@lLkjd@NmoWz_~ zz=ha@@0nDUZeD*4v!XbeGX8{V8%fQ7ZR8j3`4&s&GxdIcS`f)oDTwm~=a`SJgI zPk)a>tegeQUjyTRZe(PME+CPF`WvPsPpgzyi~9Qk_dWGQVNjv*}ZQq+7g>gm2Z0NkHgm@c-O7UW!8 zYQSyGVWvLd=z3rnG~pOk&H`;9&dT){Uc7F!9FPEtKK^$rmASj=Brqw5$iP{it#v?& zh^(1|GBxcC3yz3qj>ETab!Gs4$sbvy0zFv@G}bw^CmDN5Oq14 z9^ZKrVvpFiB_p1Dm(9Fu96JlGaa!#!4BU3!JOyMUuj9w9J^49=k`+mp8W=!tMX2ryM%zH8dVb!0ZDD z6~4QO(v~u>k^INvZ^3`YX83-0=DOLKe$e$cH-p^$gOiPi4<$KG7k+zZf5vBO>HWes;eLoJzp2x?^t?Cdi2d|f{}43h>?FH z&z3mfs}k!G;P>@m?nAl{gkEH}#~IQDLyP_uCYzEgQ>O-ifXYUTC0<_M@XZ#W7FC02 zI)^(iKd&j4VVV0Uyb;&Ajsx=90hNPc_q0@_xwU@IOl72VD*`SSLFDRJ@i;!+UK}8Do#IGZ3&!tLki0OfW8HZP!=y)Mo{ zpHdS4J%vc~a4Ksmqx#h5uM6)dmt6Ggn-&D=8OcR>*U^!6YT#pRiE#7{!ssv``RdiA z-t%|R#X%Y6wThPR4@8P$v4k{)cdzs#s}mQra!1$$X+3aEuWnR_aI00zI=c{PxMJ5p zZNRu)0D~hvf-EJ<)wSu^c`h=k>u4qeFj#6yo0%3ZPJCm?;`NDGTCEZDKAo_P^ZeHY zGR&i1v=1B5&r9&|RAlU?ji_W1>7U;GdBChaG^7^gfTPbIACfyJ(r!RvWTJoObE9K4 z`7;_ONr6hpH;bu&bQvlLbk zYG~!T9;D{rWq8ZtAO8JlP=|Moz2+nS7+rm1Wfs#XX-fLOlDQpTQsg*23h4UFZRO-u zPFngK=FuiWz(rKFov7K9zb-Da?2GElv2_6-z8tr9qy3Q3A(0NcC>&uyuKpP_;$)V6x>JCv(~Rc zGV^sR741ye?-2NxGdP)oL~Mg|2*Gx^0y^~;^H=x@=7nl3N1$X^fyps}bxG%73^SwQ z2xYg^xTZ2Nvns8B<3gAA7x9J9kD`@^e`t==VPJoh_r?;p4v(OB2SwWecQRj5GgqEt z*69f+E=|w28FN)h8e3~nUvoF;03C~tFI_gQUB9m~nb^#R)aL9e_pQ1wrlY0?etare@G}T(rePgSS+<|kf=!Fenh;|NLms|Pw?OOdygvCw*Va9^_jkuQKWqv{3!)c z4u_luu1eZD$q?ThgI>R|C6W{OD_9L<#|MCbRfLm~bL>J=xM&*Z#0mR<719xo018+6 z{62DAVSu=+gZz%$baSyh>s@fy?fICncGr?;Y;t!8SH=lzJB3jktz3r4a%v)%aakv3 zNZTmity2|9@vi513b)Qz1NAX^=Ia!CC+)t>hWJw?7zx{^IG-ChzUsvRt31rnlffxe zm6MLCrNl#2rxuOuuKwi$WpLE1L<($97>r3Zd#g9R8%KB;lkDNk;YTj+5<8!K1eq| zdvS*(BqZl){7P2nGpckZmwTv$GIctUPjV^5uOcs^*1*@zN;<%#h$@ z+5z8n1RZHU>lO4bN2PZ}qE&Y!Pl|r;wj4=Ndg0PmsIEgZxA6vR+ZTeJ(rwE4uAB+s z3-*@~$t1(y6jZK*cPP06RXUN@MkXs0FS2nE#kT&r#z(8O9t3Hj()fu_)BwrD1gjybUReL6gMO5ek0O#+_4!w?c89}(I znun-d!9xczcdjI}9Al@EA*CQ~lIyJ^eh#6BG{2Y}t$;abS!Bh@HT zz;#khuK&rf_e0gashHLoQ))uH8RLh4Nphf)Q@v~X>FEv~hu3QS$rll z)R2hSQR8P-Qn?n>kDUG_WA)WnyHd=m@-q6se26(VyBee->(HX~tI3DHuJ9K%t?@FJ zDNSEyBh*i4zXh2%zh1mM$v%0AZ=vQTB>MO>an4I(7q(B^Sl{}j6Q?!Yf0vznGla8{zpknf~5-fc<+HX+LM};t-%%Rej4()%PRIYyZhvM;q-2$8y!< zIX?4BvJQQWbDIATX)h&yWPc>OyOeoi;@rW%a{xk*ich%oh`o(%!>cT_qPQaA-jvA6 zff{;P$7J4GCWAASr;w)S(p-=pf`B@-hSxTl{|(Idg1i;gOnV#qdK@#$+FZHoOJFF{ z`L{=Qidr6jin>Ma<##BGzu$Kbe2YVHbwh0IpC4gf=b4PT1ND|1Ll zA?5{A0HW}%JhQpK%w(#5UukIkGwDKEX6kbJovmxNkdO}tsjua_!*`$=0(qOXOWg!f zPnwluy74?HBpDs$)8l=M)6ZF#i)pf^deb}v2uIxiYG~2@_pMOpn}VC7EcevbhH#2E zmyA}o3p%7O-H^Nr7B%~eII{2IzMI=Va_dQ1Z%6<^Sm*qs&b7z4ryi1<;E5|1(Wib7 zlDJwpcDS4)Z#ClK3A3?Ejqc_|%@UI%=2*Eo2;FB?=}I!>Hsw!D7IA4^p|h&xM#Ity zc`ssPvjbs%UZOf_M8o=R-S$*vbQkt{ljx9C_g#Da^5w3${mJI`=3k-|NL$VwJhezy zO54ZE8?I}`#C>ge5xa*|i`MI^OOivIdjrxzU4oX^QQMJ$1gp7xZwpA{AxH>C?!<(S0Nj5PMokWE8q zCy|tMBnf^;@`qjy0EHLl5H~OX;B<05rRg7Ibl(1N&t;vXWqSdKGPs5ruD(w~H>pRU zbYy4atMXD7Y70jWxEaca+ifA(VrsWE1*yj9FgvdmmiAjNOjqjvSEmdlwsp@T{;6}( z{I4H5l@@GKUl|dvyRwB<-U6(W<((KnPf#iK;6_>QeSgz$${CKil{!iG1%*KX;+)iZ z9ahyodBmapZPv+Gbvml|o0ue~O=yIBy;=B|6ux$ZXsrt| zKu?0Vxf|Iusc*L}j7Om9MaBsQT{|89wc9h<(1QcreULxKE+bKZo4!#2w^%?(xvfRM zrk@O=yh^#h2{12mT`FEW?$Fjce{`&1c?CxG5;DNAm} z>RzZFcD6KalZbR#x{u&7J?8D1YQPFV>Qt;yoil?#FZmHh zb-|7S9g|sN$Nc)Fw&;D3Tf+*2HW`t)q^0{wnxh+d_D%Ey4^ga;L1qMD z^=YZ0Dw%%AAtKhjwoV(Jk}-xwDeEC`44+KU)*46l#b|SV=rJ9%B^e5kkQ(xZTR+gL z@gl>SFT(BzkvraoDOkeTaDXQNzm)t3ce*UrQxx58fpxd;1EOAC?Ib#S-we&UCsM-0 z0MPPPkQ(sm8W^({2LxBi81RFzS@l5Sqe*Z)drKzHaKgXQY(AfvDsWK8@#S^1^~BD2 zYU9+?kjD?2-sHVLia$zj18awGPO@RwnN{w+v+|MljuT>~c;0hJSNif0&KC8+OBN_; znsUBLTd}&e6inoq7oDnw40C#SpY?|d&nq0|IYDu`8osWj%SwiYKY3{D8*`;L03Ds| z`5K(TnUAb_f`o+eWin0ykq>yhVosocXup>kI!QF-l+ex{x&18-bmn1Z7t+0i!b??FhSKn+JZ z5rZ8}#MVH&6SH!Ix*8F0@`Dr8z<=N9%UG*(*al%Nd4go^zd()lz>#t!i6)l>2~BPq ziD)Qf?C&jPl1{0gt`gHi>Vr0GLa~EfL>dyCq`F!NGHnTb+2kIt?(W(xkV?WUzZ_qU z-98~bs+6nBH;G1;bB-IE<;)S9$dU4lnmB~*W!Epo{SCz&*>ogi7dKSb&Xn)OKD8wQ znqA*lf^{Urep5rps{I`(I&h^0x=Txnnx>0vRmzq@B-X>dCg_;o0Z8pRe4^{}fucpYbi@Aw8YD zAvlOj#-CAkf*OzIbLeyVs#IOW;e0CfxIZq!me1r&*IP?2g)9oT$n$`_A0ipM zuiv|g8m^wsVEsB-c47Hdy|nIl6!k+8UA%{#wP$xGO`1lrImC(jE^mLM`JygWv1_hRvS@reM@nqR(Mi1zI2cuBP>;&DkN4uBJoLO^^@?Q*GcLr zkaeRsy3318JI;y`cy*Q3k@)6z(Sw#1w5p+I&A|ClYG7MsrluJ9k0fds!Xj;{pxrXe zF*KKgcVcHWpfa~ zV82RTzTn9FW!~_ltiaRHh&i79nX5>ag7#=EpyKW2WPTx+O5rpRRC2vuyb8X|nR5nz z(3j%EL63iC_hiB9Z#-)+1Tc!$A7VFsTi*yZ@9n3_X4}guArC)J_;1GcU~rqk#RC5O zc!I;Qn}l(zp4r5d2R6GH%95MTY=t%%rX{BkJ-_9?z3>u@E0B_7Qv?ZL{r)N^lx56C zrqc+z;Mv)--%Vc!5)R0CvPQ5%Oo`EX6Let+AgD&Ns+ulo$jz)A#;~NOuI(>R0n%ok zG|zl$>FlQsY>8THG`CeS$zZ<7iCDHMbkpB##d7_4+M)itlOng#o(iL4SLGT}c$%1a zeEH?AWvd&TE$nWv8CYohVs#&BwDNLy<5=K51BV3aMs5ly{7R-pWn4Z9%a~on=1jvr z9>Oi#%aSjJ+;i{a31dAyiEij?{US6pTXikPN$(J{OBaSqEq#*mGg(H!qIr#z7E+%| z#V-KqeTy9&QB7`XPfC3b(PZt>ppeA)>m#DrpAYBI-m)>)D@ZY3TN)2zu{%jh~hpwQ3>s z{jW-{Sq?`d`&*K46-Qp81iQVzZXQjBt`XSuXa+zOm)h_W4Sa+R2_PhjhoZTRwFj;qD9-PL`JWg2WM?U<|le#B#)_t2otO7T9N^d`m{+Pqy zz!!)W<1@>lorT#I;0&|WCAcCDWg4s0qKZDAAjX}rJiH=d)g|hm=4p9pu@>}#!KJDp z-*#-PN;&CR)VQaeYCn?jab3vNokBPwo}^n(;aF%>i^1~}N&#rL?+9De}hS=!0&EgaL+JWt)J)0Iw! zRF_IQ=RyrrOelhw)ghg_kecQD%Y08r#&9afyU>wI6(448JRqtDmI9(IT?TB#As00! z`*9Lsh1G8rZ{C_0B7u}XA0qs9S==QEl&e-}4g~&vn(#@O zR+=?(;Df<_cuPMHl9wM?xt7DC_gu6lslCvNk1kZrn;_gi%+#Lq>^IX=#GSERue8!u zxC8bbq%L)oF?Z_LYZ28Onhno%kj^eV4${s9EFoN| zS&oS)8`00J5Kp!KtB-lXW1AufeVvPRAHoJ|u_Tc>_2$=!Bks2daXm;PjJLMVoEX+7|!O=gJyF4s?Bg0r@>kg7Byp=uhevC`}@(s8DY zJEKj-L7ZK(nD%N8iuK7@4f)?XeC5G1m;@T2S5>Z;?zp>x%7nS;TaDb8#aFEEQ7*cR6 z5_0LF#3MZ*Cc^6i1UggyDGI$`6KZ8MX;k^c)TsJsk#6=HTWRFYML3F`w0CJwP$U-|K`+zJZUepCj3oqSaZ2Ly^v&|yaJYHUv8-a~(N8~`js zcdP{Zh{Xf4Ls>P^*_0@{UUK6fO4$qr33T0yXL=IF8@etD@c3N96iuZ>95}H{4AQ)Y z<>?r*<)lXmeEVp3{kUNv)#=eSP4Cuu&C7}N=ZKnSW$B{_7C7{ z0)H%QDm(|`2z9O)0((0)&g=O{#lDu`fqB8KP*v%si0CVE&S?k2-oD5j1MXOJ{cgdIMc(AK;ZJ z_#P@^C-kno;84Y|6o@~Zv04~^5P?M2UXj`H&khGVc*Cg7aFjgbvAF3RaKQAE;Z7KR zn8!^&ELkU)?pNwhNHjD13Q-QEWmv@V3hTb8X>$1{aDG&wJT@UNjejL?*KgWL^ z1vEcolY2?+>BQG^Yc2UeLE`kBM1)Q-U7RxOG**}3H=H)Se&+@Pq-(P5%`6PAh){0P zHY-FCvFE80E$lyxywYU_;!)={TzT^qJnr5-`QXKaEC9U zZzAAoDh^8{^LR}kJVewbwiKv(EIiF5zc<-(<`e>t>L`O2qb~Q zge}qM=DCaaUg@%H&K{|Oei|;QVz#%9)vd8k6-KNNSE|@6C-_3n4qig80~9C;F2{G` zc*3t}LLBSth1*Dxb2CncsbyTDB zaWFN%(#N(Y=5DXkL}{o){sevNB?wvEv(ah(3)agt-}v79@Jft0pRrS$Oj2~1^|FG` z!UV@gcs9^%A&icyMPt9%CQ^hSBrs!Qwlv8)^UCJ*4lz?o&a!zxMU}^ za6fc6vbqXAYf!@cGBkh9C5F4dL`Ca^?e4sfs;fnNpIknx`i$H z?e!zeN_G5A2b@LBJEG+e&a~O}2Y^ZC1P76!6CZW5IWT|hl5NAFQktrDP1S8u4L^ig z<6ie3amoOa`8R{gpR;k5+T(!qk0op6{YQ+3)@%qU(OHB#$Pqj|G^(PJ=HBO~qnvgh z%W8?^mVFjXIMj0F;RF64zW{=>I65~B;Vw36M_nq^09I(|8`4~g0M$KBghWJp(MmTy zN9{%C?LVY&&wEI#{owhb+u#Ep-S2j2HZ|8v{4onqskA$OOPh+*)rt)qN_Cz^P*mfx*>Gk`}%9q<|lRQ}M- z&H{d+D+AFu$T@8wZ5^jVdM8Wfg9FL$5OW>t`3R2=tap&PmV#T#Wflv$xVkk?s|GsL zbm{jQZs^#;r+)!i(UaXY^zDHsvdx(<82N{6g?K%q)e#!N-a{71N_@A(}H zRRT< zeO9%g?tlqhkXmk^E<+yVs9%^X?OEhz2!c45`Yc&`5#YO-)!prNwLBGL`5 zouzCjrSBU7*NtuaGf>jf6pkt$hb)U-?|nvu{J5&itG~F0cVbAjKts+7AA^@_xni7} z6Q>?ow&XKuyAvZ0GtVq)()k9m1H+sg-uU1(lt|}1wI7(zZQ>+{&^LceEd^Of5AQa6 z!*Dp_ZAqeDc9CslcmR@|)-~oU$x-5@YOZ~>m~d|{&O+r^m#d($HTgM>1xK8;`j^xE zo~pnf`cF~gDcV{p8;eO#9-H2_`f}ULb3=I91CcGI`6-v{MP9pSmj0{CT3LN&EVo@9 zgIl&f2`+#DkN8U>De(hvPsdbxG7I+*=o3*fh&F-ylrG#AUK(c71urTkXZ~hr{4tJ# zLz2=G_q3n=!-0qqPrOixw93nY`##AAwG?GJpFCQiduRdubJp+usrqZRJ;cX=aE;$0 zCdCzZs$tANrt%|HjX%$kW4vd*r^rWX3(%%T#jn=AOZ)E)`AGtg(Lk+w=A*LnL}5TW zz0vFX$g%v-`dI%8iB1k6`<<{A(Y4jX?g)hTjY(1tJhuQiDgdmF(5T;>jod2wU1Mui zo{iM32a!DWEh1OxQC$WfX94G?&vTC%dXRXsd_%^mJ=lKp>Y^S|Jw>VL~grjb}TOI=HLG z|D5#~9YtwgEKlMnO8JV!Lx;GWXliSAhvI`P;Ec|PxEEe=H2G0SROsR#Q_Vyx_tzX}-@SXpC>vdCUF+5}Yw1ugnfc45 zOQY$wq<`j?!Aj(&FNQBXf=zy?S$5S0qtexQE8cT`#^)u9xA#7xF}j;+;=4mJfj<}Y zGYo733_c0bv|IzmWsC;;qh9^Sv9q?09|}%_}n>0DB*% zI^NQz%-Vc6BVbsYJ7&|RI8;DsNDIIm4k$HUt=p&Q{%qDx2wDC(fd{c>*Y_-b zmVMb4l24oE74%Ug!n`>z<*URzem}kdRGcpHunGL##s;skwqK5V%%BSgkltnhF=R}E zH!D=GA7Iyx=#Z16Oj&;gXnw=-n?!$dU8g!Rims;7Gp(-rt}&+MZi{z>Q&M3;`@fnZI3QLX-yEjM@&Id+*uI>lWoq4_nq_?PmTfsY*PTmpZ@IZDXIRoWqn${wUWcbSR(}862UU8=7g^nZU@nVN02$f3lEVmT#4*9bWUmDPmc#}@DEJn z{V-1dW~$YWa*!Fe8HwnpY?{%tr8@e~nov9KY+g=Y0biROUaq_eIAd9o0#tUuK*$?M zlTV{`Wka;g-aIfh9x$S^;eWrT>l?6lBwe7VmooZ#K{wypW^9yRhawv%zY&^L0=o49 zVdgn$xwgF&;1?~|vVQg4(fC4~$kuc#n50rQc6MvO1OQU`Z9_buu<)nFQkX4cOU>r6 z=Jo`-4deQ=DfA;d+9}z?LLNf5Z!kigXfhc$-Z^?xdJ;02*8BZ@w9+W>IQLi<=4hCp zW`0fztuZeaw9e%Rz#;5Po5=bckjzBrFI74G_`!tS-7j;FTP1A+(C3lRP_{#>A-$t= z5p@Ue=y*VTQN>8}gs-%;($o&)ruh0Mf`E+Ot%%6=@nb;24NDfga=umx7jL8Z4>sI| zGPMUwt?QnDZX&urz|`V#4s;A^3GFfu0M$OkC1CsVG5FhSds@}@ON6C;VdTI2yGohE zfRmp10vbBB=utRDf+Ywi!~uJ|EN5}t_e`Qgo$)!$KD}mzF)F71Y=3t7tpJ6QdP9@i zgIJj~LJ~uzST4u6fL?+Wq9_Mcjatf$-?Np-z>bDAL8`6RIl7{0h?{c=f-FleMTaD5FT-pSp;%d5F^AX+78oAOU$!va4*8% zgt3G{#TBdDF4}S*ljyRrmL0@}(rX!p$#}5>z?}jpe(xI%F1?LWf4gkroPB-SQPUs3 zt31*!mFaDF{QKr}vmC9IMC@vGx`^_ZF+_od?3cHF;HFB!N#($Gi2s}W_8?)AWR)%H z6Iz+CUc-2k^dk|MKt5hBUA?rWu%d9G^I6EL_bszF%Xd(MAA$l6!%7+@E5S~_5$w*= z@BOwX#6X_t$Y+ySFc2YMl;VEDl2~uA!TUlHK+K|2De)|qycTQSA6WnPa_P3Cq=lzD z(f=w_>Tb{=SNS(P#?0AJ#K=_1`<*)dq!V_nTSjWKy*tOe^kjT}f6iTkU$)z}?4-CN znBNN%%ubDTllhXIzU8Ond~&PJ?eD+GxYCYP2`xmgX>BfpPnA@(BrNc*=AE-NBf0$K zPwP0Cn`75jSlgO|ipeNWqf?OZuV?&2LlMHX@frAIIuY6uhLpE)!{ir$nA$J*8V!Q?v|tuzs$2Z!0_9liii| zyLR)WoGC}5{XCA-HXL9#sGB>|vR)c-vX0cDz^E-?DoaODjMxlIz95g1z6O%KECS%_ z%l7j(NFcy&IyjiC7-fM@zBZr)alf1w97F)p=uAc{XvCZ!cs=xZZj|z=Er_Q?Cfhsf zrjiqjbd}&i)`F3~A3kg1=8Q1h@Cw7O^)*6qm^q$QFnM|yzbGyxG;srvpqcoK_e{7x zcW4n&tJ2^g^1_N=eoaN~M9Mh^GQ9j=7xOXFQ-s4dgnor4QVhTi!~=rRfQnm^cWu)7 zAEWOZ366WVwmDt!DScx4Vdz(;9AL=<$M%FCJ#QCho)Kta3S7!D1zY68rld$9|-p&`?pGLLJKRH!JkP1fp83qX*xiz(0m4z9hJp-Kpm@DMzOxXv4 zPg&n;zCD-WJ(n=Ib63qwQeT62#XpWTdLdzyyMRtGvrL^E_N-uQRoFe}l`$)h=~nGD zioB;#YQ&O%m>8vjIld&L(@!<|{ER{|W}kzQop;F%7bTa zD90#IHW`|O|DZ2z4yH-n5;p4|OJ^W6Q}QxMPDdsi)kLQe->Y#NS@{bdQ}k4lJhpSr z{_=t2F48xr<7|DH9sO$VgjKc8XmYoZ-fotYwkRK`73m%_wY2)aLLwkQhN=`ny<+uR z(&-8+JE^TJN`sM*%I&{GW$K#Se5;_}(`54cB7eGoqG=TB{9N=)!}r}`X)8y(HAl<` z%MSpMXlQKcAg>n_n>Qf5;dQgo#kmd>Ed>t?)Qib>hG+{l28WqZajpEk~(QaYQIr%GI!Yz1vr1>BDv)- zKQrQUcgEJ~21(RzS`iKaOPZ=>NxXZK`X>*VaJnqh2b$}dF$)ggQZn)y*XIZS4ZP?K zQdWDP|K>NK@Ctu#C8tH;nKpT3+mRrsA zIF0N1M{NYGj_BW$?ge#Q;>>4cI+7$Z*VO{J@`9CVFiL}Ne*C~Hh)oJ6>KXib3%X6w z*9@5p5Rtzn?|JI}c4+`m?)tgh4ved5`xSXq7$r0wZmlr?&>*VVm#>#WOWH@tE3?cv z{us>YEoEeWhu>MYa3P<9rktag%8`!UJR}iF7XN$MoUV47roq|}HA&Yn^>0z9)_K&2 z^aOm;VYzB@(U%A85Gj+5O_&k(USp@R&hpa|(h@stp(~~bH*;{e9^m(?fM*Tm$rOgQI@5Knw2U}EW+*$tS0*AS=@-Wy)<5^ zGxOU@v+26fnx(w827-F+Nh3e&d27!uiR*Mn_OkSe0Z4)$#NsG>jf_#F$Gpq> zQRX`O85f(bD#J7ULjrpb_v=HA;H$|1;A^$H6DAfe=jIUQ`bcY+%lR`^E8sxn)Ac-? zh4x|nX1I!I*T&`Tc63tSng}Br@cx08d1*k+uV^hg|Wu5^~qewHZrD0b66+u$V>xyPbl= z?G%~3OMV&l9LGo%{!b3yXO?phGQC6|eRp5nP31WJYX*3bfcMuwT5~ZR3--RLHDjz= zy@aaC{HIF;rxPAZq120};Crv*DE(rpwl#sEAlYg>-=HY!7I$*ws?7i~&Bx5gLKdIZ zE2_OOD^~}g^(N*x+WGQU`rY9zsCu;d0DxrOQ}u`DNO8G0upP*GgvVPt=x0UXL&iVi zH&~ljq*Q;{k#G@V0!JTq_{)m&9Eh+zlP)tpR9b2s)rPK};0;-AX7Sz>R4Kj_Z38r?)RK%5A5sGtZCb-ccB{IBH z?y*R;CDD@^EiHP8SozWO)Y~|AmNgSK)lX^<)xMBpH$ffqvwwm3O65J-O;vfa5nsy& ze|B$s_D7UD7a-d7D`{@jUN+Vx#@g-NXdA|g5N`vDAkGVG0Kvcg+BG*ITI~9W|3AI{ zhXBUZdAa}U!8w4?k5PKxt~ajC*W!noEd&U4@U#i!NvJ0QVr7ia@=-~JPe?hjTNj}I zJwb8ev>Mbyl_jqgL3%E7Lg=%VVC2dSD(aPEPEQGp7W8_)wzPjd}dir@}^-(Rq=lV$cB7T?@59I z;3sY*isd`zb{FA~dQ!)yjs~(pedJ45VJ#4F<2>x(UWXXFUGJ@(r+-C<4dVLIIHpF6 z*t`{w!N=>)(ye~LR`GdqLlg+Ec2OfX#zu!NfkzG{n2u7bxyLp=AMV|jeK8vX31!u{ zPh6I(TNA&=F?s5k5D!pXsBN}krOZV>)=4K8yY_M&11f8*9V(q8doxo=(@3L+L7+GTjZ53Skca3Fz;tW<-m#eDMnKL9h+C2*L zQbaFysce#5SfZLuV)!0HFybzp1%BJL98OHZ!cE6ISS!j{xk8Jp>A0y{E0FU=fjwm@ zkpZPC1c%Kn#PK>(X&0z!vGzyDW)Ah>xGbzjtf7d>YO#{+hflMXRv&+|j#8~LFj3y( zVw1KRfAPv(qE1lxwi0&Ec`P5va@aZB3DFUQCpwUI#Hy;Kq;O4x;&PBfAwvTRa{kM8pZ z#6bwaN|#B`^IBv_ty)7mM-WB+KG*mNKqVcW6An00=x@=ZPbw^bd;x?sN#NsecOqI_ z@bqg$kpYyjP%{AW{T*wlO(;!AXj@8_s}r+)A$|ED&mh2b5x&&jsOI9%hD{YWhykR% zFNC6VGPe{i=VD@903j;#S$!VIk8a0eqm@mjg?kJDdh@^dopZp*H@Z{Nv@?|46<%Jt z=ecRXfsVCA&7=$cBU*C8!`?`!4k-tRPV0TUC(& zp^&1Nfq+MezJgDCoJ%@?NmKbC^|R3HvTC+bV+gu}z8dJbO|xt?jT2C@JAYs7tRhVGLuPb#FHIxVU-=rP&QyP@<+birP^+Ds{UH~P1_ z+3zGOV@PVt7lB<%);bHBu~5*bzS&H)$0Dw>x-oE;CYA=?`7bEAZT^`bX5G+3VRgCA zL+!J(FP46;S3(kd>rehNd4D~EtR3nyQ60&!o9{Koray(C`WWlALtpW$=1gF}e{FL$ zFS?W`Zk5L|4t@_FWBRJOju@V$5^vH@L37}yYVV1qRo5pqrx#~6hpx{XVzmS!UA#ug z7>!8{s)j4+_s40qtw?u^px4hz%VWXgkH&9)d|vjCpe@=I8GdyAVTvOKzW8-8}It(aY$}+Uw898eADuG|AJb_g!B4B zlz|{`)H!=ZzAty!bWKD)AQ9fJ*JSKu<;;BBe{1Y`0|$FYzCBV63BWIYePFwzo@tmk zvHA;6Y7rnzWq)wCV0Q~J82>ez^MQQR)S>Q@z8;h*$>fgR6}nMmb;NL3*kPwJa-4-C z8U9Dj_DJmk*YiRQH?6&HdeESm~l3Ox8!>eS-*#T?4u!MMA;n z(m-!aFXQ&{#Pjz z0EYJc5%Kgf(ppd7C*Q+-KM@8{x_v4t7Y33&d1H1r%Hcm8J~*g{`bs-3+t?Rj0}AM@ z{F!Cmu>$#a!+`}CLMJ}<`?l~y0JVFD(dh$3G<2iwZc%E4b9AbtU-Fh!vWGM}c`pAG zH{+Wg0CB22RV7BGMs&MQ0+c6&avx$OGQk``Z0Qt*mr&`K7nGj)QG~nE$4dgUszJM|rFVnBb zy?yeW9)>27I^p_G=EcIfUd9TAZ3kVYB=LNO&pl_qdq3OS#-zFHLl8$}4KoQ}mQr3;v&Q|YWkb!!n%XZQH7Ww%xp}C4I-&g9 zW$wf1bj)JEnEut^@80p2GpneoQq%TsBB<7pIA!?k5<@8gDj5I z#lsD?#Xk!}uIKYA`1!`4=3rG(oTM-L_IRLzaM5ZHI%IVVz>zk}03d-}ub_JZSGt5jO;VsHC7`WCuo&a%x$Wds;IaqRfam$heNYB0O^hu5-0 zua3*mefkdHCV#U*=2%biw>#`Z+bC=tF)p7GC@Z;$N!SaDdupnDaL0}niPt=hL%`1a zi1x3JpYQoqoAk!Z`q%{}be>ig765$Z79l?^4S^5U#*U*7^r3*@_lQj1J#KptkSL_C z@-r-+fV2QZI5}6eG~=~QBp@7R2YvO%VyOBFP0G{%G(4zzY?mDXu~s*yoIzBuGXW*R z#Sw!^il&fL`jM=#VgAgT9q2&eL|kXkm=C>uX-5*8p8Z+ogfilh1r+D`mdxl#$fK7h zZ25jbFLOh0a9wX~l-5?-(kE*SQ%N^EPqd^DO~}!Q zUb&2JgIGB<(B3^$7^5*-j+43EkDv5n2Q->hr6lsJhY*{l9Acc`d~XmX7xzeE+I*Is zym(FN7vkGA;sFn=x~rn6t{5d%Ym}_Pp{C3;4U~q=FSB>I^-W)eWGp2_0%Pg~1rY^B z1Q%y*JDfqx&3bV}2gSOp^>}q}N8%)$WoBC18uM@RDl67Qin{5YVGhl?obc2n=f(5U zHJ_SHBWW7_o{v|^EGN>AJw4=`tM)34QThVK5GAezVqa_g1YeCWQn$Byy=_#BSpGq? zM8BVf4C3Onrlv2ynvdCGX zUE6Bvr!|l%EL)oB8K4-U>bPy)xp>I+AyjxVP&kl4FhUFbvx7LgrUI67!P0E|O6#u> z@{VtZZqrUM5XqXJ&y2SkNadiLwI5^}6)|7_Xc%Z}ac^hxd`mEI@?5b^xX^TM9us=5 zK7t*JKvo2GsRIkyIR#XbIdqKnx$%DD!{d9^ZvX25AT5#p^NwYyShrnbZ*nrt9IBo02n;d7%&ktomc`q8RINP;~`07XgDGo!U5G1?`UxbCV2rp>qaGBQDrkBE_8o3jHY9g zU`ST3j%>V2B)6%dbfB9tLMqg_{-s5qMz~x3BISRY6(I?eP;n<&KZJUG8+AYPA5ZyI%1T(z`Q2!;Z&}7*-x0Xz=j^3C81PoVO%ZS6G zMB2q7ib#dtB-@cSDN>2mhUnnHsAuQZn){HQ!w(|gkw7_riEy;K7!cmZ`Re-DGMXt2Ay!$ym`^U48oF{pH?qj@+ zl4Wda?^;yLJT%HYxUpPElNkVCNvz-S9m1stEc5LF!uF$*7FK<`YSupb-qW1T`8!ee zZQe&j7!WN*rT!zUP~|rOo5B)`z9nxK_FdPMu3y+N0!qb97Y{<~bQFL@XbY4}q?A}H z=wKepZYKJDmAKb)o~k+C1ueEbZCJwQ-6&t3G+NYMJ=uKx(&}q$4>nP%O48Bl%oe4p zd;vr;KtM6(L129eH`3-Deh(1S+mbKmOB1P~+E~mJx}OSUJK`854fYA0!Ad<3M zHRqu1@ltZ^$*=_ona+9d%goUBexJ{(LyDC@iaCdvG2QkX}V}@LZ@U( z_i)dN4@Nw4BWBJlt}2wR$CEu*cc#P5Kak2{T^z?;Hbd$yIM&TaZ3*>qrODRa11A*8 zOn&ghNBk|G)W&U0sF%4u%olU}NMvMOC^v(b zD0?JemrehgIc zmV32^CrpWpdSj9Pl*l0Zy*NOeKMi)?9hoh8yL6RO!g~BS5Hkp}B6Q!W{r`f}v zp&(Xv5S8Ww>CW}Mtu>)A-wqA>_9ac4`%ZwvPVFNb(Zoda1eHg9*^Jbe_R3)VQU*za@x%?M${F@0INZ&#mXm8AoNe$~~`%nox~(|?d4kO;cDhLe!u}9y zEQORhRSf#f1_B)Xhd*3ST}*9+|cqcJ{&5CTKR(yFrnF8b3SzQPNI|0MX=W&-p>sOW5 zUn=Zym~j+8rN3-={08CO)N}^}<Bpbb|}g5zE%xf;fU4n8zRIw?}b3~-6F8? z>zz&ePnW2v4@T|RgX;f&$oLFO>?+@o#2oHw7=@{*SaYl37REoYBQx&v#q;XJRXG2m zI!o;0)+SzqASNE=iKXM9eZk-q2#{Pt*~%+EoaqpEi#Q7hZh(vbB8D&p%HD-?b}2wl z)8uPBOJ6c?SJr8En#kAqxeB>YdcLH>0|212d~Q(~|EcihV!0stbAX*&>dg5G#}GHQ z10x`m+OcKly>%NT--8tDWoU5*8sZLoqg5bRyZG`Dm`UFP+TmtoL#hz_e4@c8cHA0+ zX6kO{Cq9ERTH8hzcECSw=?PV$@t2oFVcblgxqoVN4aHuPE883aQBw_M>q4aQb8`2d zIGSa09mMRjxY>9_?Qx{FcWBuGCxbMPTZTGam5Bj=SUwj!_6JOeo5$7lA65e^dLyGr z-BW0uSW6jV_$dbsoN5v_Cna^Q!gtBPDUJt9bM2aKJmjNu6S zJyF9}=$^EJ$nU0GML>GK^E|!6{6i2;S<8!#hw9lpd?(h)#u3ATLl=om{V7~;{{#E_ zqo}LT?MPrgyx5vnV&gz?oHeMPy4=4*R2v@==s<(>Q zDSr0YsOx$F6-MNxp^QAmKKML!e9be_AIB$v#LH?=7dZejgA)tg^?Mpd^(%Qo91lfH z4vlaG2BlR{bU7j)Q{GOFbbJivkS3nB7?7cA?D1rL;0BgdVEgne-WuLQZx-Nak}FK* zrk(@D>Y{O_^OEk&oWsG8@27_;pP5!nwu8xpS;g=5YIq!Tu?Z6GqrU48E2_+EZcpq8 zzpDPXT215(bd2S#{!0}ufaVPC1 zh8vskvSRAI32W^mAe=Djj3rJf1z57yhY#avBEdP%=ZOd-$rIWWZ~k0l`S2PHqLK*) zSZt;Nn6NabXY+MkqT^cy_te9}5oSk`Z+@`)TGteO@~!D^Z4B;p0XVuvGuJ;;I=7>U z9{BFusPG27&BS|gQGwkQ@h=VN$RgXyRiCQ%Ki-~WuQ(@~`wZtwUzU0_f z|2bPGZFP#{r2eM-#t49`2^oc`*6t3yDA1d;xR4VG#6RzIpZnv-ldTW4SZh>ESKoB1 zRDo+Fe{0>c6b6M(0)qBc&DNn%ak_7E2!gdXBJZ+35YZWvhv+&trawncwW8UED1rM9 zcN`62_>+&cMJO(~T>STvE2An?@|TeC^E!Pcp~KyJv8|6LFQ))wsZP_HAHER>EY>4X zQX0^>as>#gv`DXb)@a)4QKCfbx#LU=d9{>VEJZ)v>!Hai8eo=PC9CAu{6!X0X4;nK zoqFLho+Z9kg(qvo%a${bM-Wx(vcfFx49`C1I&l|**?7(&Y*PkJ+@Mn23wZTc%2{1wdEgl5~2e6>`mTo4rv`nV(c>50c<-T$BGw z9bWJ$E(Wl-wG#q{|K?>s3x-ED{TjXp?nmH%_kpNw;@My#z&|^Y^ZcMtqLl zs=mYEB5MW)$Veu=8zU2iqd?qJpNeg{a|@Xv-{Ro|6Nf%Q!~nzb>d>09IPHHUb%5wf z-+Fu-4shrvT?OBbAz?Z?MLQeUV; z!~`rA>x1D(bynik@FEm#=V7`>HPVmbSB7rBr^Z@v%`a2O9xoM_@?TglY7Nh0A@3Q@ zI$&0$cb6uu=`=)37v#;fht1*3v zxao;luhoCJv;K@_6m#bTV!@51V9V7Mqj|oVy|bKP*9wgiHTv-3(!*T267gNm|%cJ|K)$$?!3hh$0=oFHY6-Qy5h`H*%UrDolk!Y z@RzUetUoPUMrwSo?s&dA#k6%ueA8{MbM2SpH)w0H4Fq_?CYR0Qu$qGJV)Y1~p}Pd@ zzSO|pAkWNr=k80NnP0aHz42vM2oO5pF`GRR(Oys=JOZ8Aj4-)~ynOC0%qcc$NUz;2 z6v=RhW!mgc?mr*is2lR$ec`Pj0CXo&69bo`0HJn=6nF5UM>`5UPdFB^gOXZ2s@Xc9 zs}i;djv^mwgx&P%sgQIi)#~eXm_EuUXg%oxOd3d_`T^d=NX$SStA>CO#&J`T7+|O5 zJ5q;GA3o+_Uf1RLCpwQ8V0G&O9T}c8F8t;ZpXfGZkv?)L)4OA2F*_tGUXt_aoW^~q zD|LnbHp$a>ydTc@iN>VcihBvRe@I=Mpy`85RNKrdA?n){q?D6}cJ9(HBf2FL8A=}b zffK_xl4D*Kfo%`e;C)MIKMNTH{SPw>8+>?%HUR1H_uHdK7j}?}>A)qUs5((e5?!LA z?s(}WJ|%Ti>jzq$^M)I`++Uj)`)4Jq$~@GINbpGc6NPmJNW8DIyx*S9t1n#&(W@FV zzEOfBy1AO$dAs_pO&giY@O%08zf^VF#9M2<=5-P!e4Csg8jXRhwXrHRNN{hnj7E_=2VsuTGssuQ%s^+lF>T}$^`cndJ_Bz8213bX^4Q{%%_cUT*iaOQ!-dT&gNnX# z{*6fLMV+hb9{~&m`qCfZ6l}SU;rG`sTMJjAj_3vNDd1UEs5^TH4K=Y|w2t=S$Cbd6 z#hG}W0Yuuy6k(WZZ1V`~LBC%4;XR|6IR4g(x!<2uwBBNyx$ql`)o1I6cJyR=P&oMy!ik#`}ddedzDFz3Q zIbf7AFR1#$ISTmI5O2&$=Oa;op*RT)Juj_DDEE9hJ2Ucd@6BsR+Wvy?s?U^v>4*XX zkMSm8+Tm=8$6>x_xXnZCZGfZI@hCGDrM1V6HOP%t!8TCfqEj^ew9KFhN6W|3Z8!;S z{0m0(2sCK;_yy>Pc(^-x6rq9s<*(-Q6O~cw%#jkJw=)7c(6yIUyf*s17AEW`Dwt8z zpoCFa#KwJ@(`awr!`P7<>dOUh-O8hv%9#?$lpO9qBh{_iqjL_2Q&O0%<%8aic0zp4 zJMnf$7OA6~*LW@#Db4n@zIwW%xAk|b2&o+DbhXj6c80GkA^F;7I=K=gh8PxC!WP5z zjP8jMFHk`58Y#qSno~RCH<-iBX}nnxp0}@3biZPg!$~lKXA(1cditkDnHeHo+)g_k zvJhsf5F{Ou%6&D5iA%4JX$9U-yG>0xv}sp9&FRv?&WO6&LF86uY{Bv`%MnJVn0p&NlLTGrJ=G^x@h z)SE0T;44@ZoY=eZ8A+&0z93 zAee!#@Lh-3*Pt~PRv}x%BWa_z7Gz(im_%w$cSa0UA-Mr)GpBs1=`b`QOx z3ZD87*od z{UVe~Km-5Z!|Vzd5cyL%ff=Cg9Jd|NjrO(RhEh7;ajFelu7dtrDyI3NUhS&(?aXgw zqqD{5x!UikI^gsA!#8?!32`EFcR@N&R^1CP7yStY<);GYFDme++Cv+)Bl9dYp$|8M zkL;@+T7w~FIoWeODobl4fP+kHm_*~Js^FJ4Ek1WVF5nZ;uwMr6Cy;&^h>Y=TYu?Wa zJwAD{J8a|@@Bc;(5l7b4F68<+xnX!pN)*R)?jcQ0TiPaiN#JFKk+SH_gqrh~bM9BN zO8t``*OEJq#UrU_on;4frjBVASRXnoRk12wP%;wmc9&7Rv^a}@ivShDyS8hsW@zT_ zAnr=hEK^`=fK=)3;y@zf7D@^8tm)dl)mX15F}w*>9)k1Zjoc1Ny(CE*KFL;jXBB5B zh2tK31~RrHuBc}YsjsRTYx#Sw%NtlDOzI6G+t)YP=wwUk!Cg zp_K8dD)rR$PdbZvXeJeZJb)AY&Eu%+FLqWSaW{4cw5;@c8hyx>fxR>^C|XfNor7VN z9FkOj-1T{T)_)8G^a-SpVQte!3Ity2LfBvc@rhw^Dhvgj`MWQMUs>edMD z`^Cs&W>B%7Av8D|G~|Xe5+v0Y^3nxAnCA>ngRPE08J(q*%|YzJ{9D6%hQ0cgtlLAf z5#KZ?VJ8R`uDu&(;kTn?RW5r&iF6;&$(n%DX-fCfn#%}ia}BO?bV^cu(`+|z)Aci3RW4hOo?MwvvpTk z*RAFJ-xG(sKC-PE+u&}sr)KJ#FVTOWP$qhumPo^qm+sJdOGDL!Rcj1H2ZKAjn1{ko z-?jYF;+4E#sTR74z@KoJk3h;ZR)^)TlmWayc?Voug@y(T3z8CO{m}971BtHMdd3r3iTr^R^%HCRKkpLX1+|8XtS?g?1z)eY|TVc z**K4#q#B-bH}I8O-SEN|Fw7leCFq8-pVq~ExMtbq+M`BD(ey@9YcKwTcJ%nVG6!Kv z6nEc}&A0Z2>$7n+A=CIK?p#hmCPMC$ViIKXTH_!pZ+20rUDOzcN1{)r@@biN=d+bh zxDU~Zhs#^F*N*^GVfWSjNewYL{a4&qZUKAAoGZRz0Q7hn&g9cO8Uefw+JpOFJ`^NY z&#*fhttr$xpaA?~bi#Xh-P&sTs}0tMPZVvvvP_I)t95DTDCkBKb1rtmQ#?eOY6vx7 z1t8n@D`m~RgKq8MrAoJ#5c>m-F~XqxD4aW_0)=u#na^Gnc1P0dLSO4f<>AH}2Sz1* zD>Zr<+rgCZB5lZ9sU(sb0dY)CDgeT+w|bfx531%)M3=9_dpR6c1KVCmk(|-NOu7}# zr=jRysy5V>I&N)hL@4k>0Ux^O-^MI}Re81h{&Iyhx3~!T@9%$Jh&BUwD^20Ob6RM? zd{0+paG1mMFCgQJ;QG$O&}8zLr|A7h1v49n+q9igkos|(rkldIyBEpX&P?`8fIfo% zwGUmV()CB9Jv-Y?b-|~%mrqe5>2z8NycSRE489Bw%mwnda;|)k3zhrDtX=zP_@Z1C zqG~xCeX^KyS$$Z>C7r^Ij{tlIZ;l|7Q0(Q3%7Z=fN&+&R^>iFXbRAxue*Q=(YitR( z2`eGUInc@1|NW=_YV0$39H3F=to_cL$gG*M8G%m@DI48z=_$Ya*ZsSl(!hQj&YV^P z-W6k?NezGdsTeD7sfB!3I)wZ-ZE-?jQExrcJ!?pjyR1@LF!qQXhUv|?^V)?^50O^I zST`>5fN7o`(=aO4>fhlD-`E0yDCuC;&I{PIQ}3UY$lQ> zQ)DK?5HMJp5z|thbLu`fAG9~&B|%mXrQ|j`{If|(I3|NfE&6xY@OX>vtZkE`95smvDI zFp^@z|B>NM1INM=6QhOdhjgwlI9e#RLP|9Fba<~VW$<-YFw^OJ{##X}Z|&cauAG?(gP-rBUFBiEvd9UB2=+1i^WmT6ocq#%cUu)EZ|Ur^Y13 zL8v!imu2YUjGIWwR$KH_Z?><4iVL6o^eqR@w8~({r2$?nQH;~~-8xxnVh8P%G)rn6 z7j9ark_~TD4+9)SxPehu85CK&oVuWEvb3)Yg*QuQakYn^Y;-J3?oqpC9jD1hVL`v; z{Q_^Hp-$${?nl60F92m+i+3b#uK~WVbfgjo6&v3>q(Bd6)@){~ux7KgcN^)tp|N&} ze4br$g$_11aSatb#=gmCh$AdeAdfG!T(<@n1>sftr?NfEk=$lLnmhvk{N#;~l?X*` zdS0VZU-s{EmT}RyO1t)0H^|-AGdLg~ZX)EV!SVQtmNv6ujQ3UP19%aOs^|KcelGjI z+qUuS2+wM?z`UR&b#EtjKlY!~`|RgX_p3V8xRl5vv4hbDfzJzc?+Kj@y;vfi;?jz9 z(~*1h_)_^3?#N_=8+7X>7K)QDUz_hu{f%DQ(<=K0SgzRu5_p}vK#a44m9^>2K9OxU z0UHrvEXU>peE1s*t@7<~IKdxHj)48-oI7SF53>~CuqQEVBLK^({-m;|NbX9al#8Z< z`QUcp`#lxulr3ruG+?c;=BTb(&a2uLCGIaUf<>0yU8#P%{CNhFn2aDVd9A-6(r@pr zUrj#n{sM7FE2yCf)cYN#4w(tm{n&YV9(1eZ+&zBpUSQ+OIbXjQm9%>hin!s^?;lj^ zB~bwS^sz>BV}(=Tb6E@&c0Ykg3MJ9}L)N2=$FbYRMB9H5K#mHuX}3ESN()ZnbW=eE z6EJMczhr8V!6ox*c#P|Oa~|K2lh-dvp%I3FHWe74H#1TH5ytM6&zlUfBlN#|OjXOp zLGDUqjtXh%^g_L!4Yv2|aPjFyD{dcq*jX-Zb#Mm1&BU+JbaqyyjUbeg#zar%ctizv zehu4TfB)nAWz_2s5G0WofVQO~#67r)(S~0Vsqbb6zvk`h$VsmjSJCdKnGDt%(WvHc zD)VU7o^Piup)7p#*llV-f#qz`WkJ1JLmJa+%=}tPk8Yu5Z*j_I-GWwku@M0X-p9D( zS7Fs!neKNCI#%JKr$3+#fTBH76<#W!@jMNVTD|zo|Gu3EzQ;+8rANhvFlG}vo zT-hVHflV1;_u}uBKzbbPtbP1D9vLyHh7KDG`F8{qPknF0{WA?Y6M{b!U{?HKqB}lV^x)?Lil8jRHel|!T_)u zwL4C9oklY8MHU8ArDt%S=6-;Yr z6pmrC^Ma?h`b zK*k$>c>8sKl_zZZGIV^48=4^?s_RLuiClE!o^p0{ke>IJ_DIok8dPL0TGAMwgs{}s z?YaR9t)-2=?1KT(H|xUAF1BdRW0(9t~eqyl|d ziuP&h9^BdWad>;;1n@bc?k@=gNUn7c&aS#@>o5LSZtwH-o~ZB}wiE$8p##o>J+yqI zR*J<7ctU)$cFk~X9S1+RdJh$VxTl$G^Df0}H;j^5+9Kve`e<_# z>DK5J&aiMO?EpgdkueDdD5P?y@?1M5J$wpqBjf_zvjc>0ifj1aAOMM{+4Q|OK+tWp zAkl^jvTuy}awRV8hLXZn`9zmWg{y7kVzu%Z5i6vrp%0|yB~_C-f}EW<<`M+7(g4{V zcntoi+HiAysYGk>NU)=A=A218ryUT4-IIMj#X1_`p6-2u~&UWO-wiRTPCKsmK zc*2SRSA&4UU4XyxBr<_h@XZ8E$cDF%TD3R3ya51h+_*IwR+vYki}g-(#|fa1f^Mn7 z0;)2&jzO24V>$JZ1Oy)CB%(g=kN~DD4oA;l_$8-UwgbBTIQ^PL%R6LbA4-WV`9cX9 z>V~4d-of;ROr$h2uB-}WGz8O00kr;ClGM`)J>m%UTKKC}Q9u(ID!Cr(FKq|?nKmhp zA+$8-CHQ$%UG>@`R0iNOs_e0;EU>B^KH}*qkA)s|;c*Hh`8yXR|cb zO#jg3wOMDwN>xIth#h`VprK}#2`5U?j*dk3Q}Box^f%K~e5{N4SPa<6sme4=GC(=U zyucA_>FaG$;rNc^*D%YZ(k*RnGY)RS9cH8^G9h(jbRu7f_g+@(NduWn z4&ulqTjf(>4LGe&d_~-IUz)%yCl@GLj_Mtj-=e(<9ZW<&w&i0 z!7X#;^K1A$5wAx@$fC!6_)YKXKTJX*QoOE~Z>+gT_v_cRrVV3*GU1_g$Jlxl4&&7e zBTH_r>}2ZbtUF{^Nup~rET3*S1^^%tfSVEv_A3OpC@&u>OW9%om&9Uj-W9{tY0zr@ zW*oaXz=u1`rS1ghcFy58?I4+P%!&vGruBg(`fgtv8a!th znJ?r!(XX34mHFBCY%E%=y4(0c#^yXNASy~A6jHq13rr8tua_NkftXplZeT!PZ)m#r z_2Og8xrg-akbH@gP7cGoc<3KM!1@fQ>W_Z52|oiNo@$}ZYoKcBRBlFe@%R^+dhLDB zd`d{!O5&S439XLS7}8go{ejU>3aESt@&~(8K4I1cKE)N8moDjM?<=wiNo8|;prL_r z<**5W`^ouSQ8n;8N8B9Gi@eXdH__Nc0sXi7h1Y@IItk3Hgh2PSCQPi@Pl(U5S({B5 zg1sA25&=pG5Gvw5u8w&zHdK-xCqoJzGR;Bs3{&cco~OnYGHDqw;-!BRjVQU`MD%;c zZS+diTIbtEWP2<9ghucMi@EbO%!d22EOO9J%| z`VzW4zgd0Y%<~Y7^%9*pk8%vYLt$F(ah?;=?S^iPZ%%pet##g<(ETZ0*H)CU7A{IF z2CrgUsK+*@<1!Vu36h3)pWAeBJfUsOdu%6IT5>^U)Fb2Zd>eY|(a5D>uc;HQWjc;B z9?!$!4?LnbsxEF`OI}(Kt6|0`t8^U1E!9btq4|Swz$jCWbu*K%ddw0;2m-REcoVg| z&ff@UpSv)pJo(GwDfwKPe4^&?#Y+q%99_ZVV8Bj?p`x~*21WP^O(CZ%VZ7~%F-R0Z zmOU&eb}anqid4sTn6iB7?rH)cj)@Q~J&YrI?>2G&2V=x&SObv?Uz(pG45)i|XcOv|DyWb+dJy~%VK3Eu_3vMsExWw9m@B@=SufDFn_mWn7 z9`@-40vJ~tO8%(D7np|CLr-{HD;B@(dkB5QB?5pOt@*x&6Z5S=3zW3&kgQ$Rydf|8C+3+MwitDG31F(%(O`T zXj^lA8Se(p(+fILoZs6W8F|7AVkWwr#!Xv34iZkBb+UBxgvewUB1 z_~7b5-ZFUc$*3n~gS~zzPjO%6>#pi!)RU;; zoT<-q%9|ss7pZ<<#uPqKfz|~&F?STg&t6!zB5I0DwOBl^&ug}x*Oi`|za=hp@wE!W zxo?qoB#S(+fDXA9w)+1L!3}qT$%}UZ4TK3!W-|beOK8Pw`wjdRsx+%tnR&MN3?ZvcD;AFJ2&fA=9$0R@7(#%Wdz`#z zUiz|Jx=SUZcke!4W6zZRcRSmhp64nbK-=F9R`UJENc%B8{HEAa9u#)^{BG;s&!_ze zhT=9f-@Uh(v;(&~0}*K%dbtQFjmBC)cR{^CFIn^b8&gpJ=w zn?5aH*jP+-9`^!)3(EA96+sE?aOvB8*SBaWd^DWcAQ> z5`apz#(5!I(@3X}lGLpz=t~W~K@WS>m{rq~4y|>Nhlq{h;pc69^4n@yhOU4z;d|Ib zbzc`iH~%q-?yg|P3)j|^)qdm!S_Ixujg$S1BX-{Jgrfu(XGmgFq}Clq;ER;>lqejr zZ;!l*-`Y8hJF93Z>j6+MfBMM8i90E4Jx9+lGMSuRczJC=~-hh;SPncJ#lLM)z4q;{i9Vv3x|I8B7IJ8EY4>Aq`_&mxGm zE2UTYmNra?D90iqzG^6h*H$)?!8hJdTGsw0|8In+`Y@F-=8fqk_PL|<;|^LcDL22T&Vap#cXudenm%Dxt&ym!@aJg6HXYRi|3-sWle=OmEf}Ss! zX+E+f)@6`%xcTx&YP$FvJAw1|dlcBI0IcQ%MVtf%6^m+rbm>WBAb^7K270L!nmu4fp0=k>Kx6R)D@9gh&sW+f* zOX3R(vZ2Tjb;0%nuUWRek;zsDLTtM4oDH%kFEhVi>yB*InzXsFAphkA}{i>-FSf`DQ-04BCb4( zY~HBh25G5pbWc4_irTeP4V2MwsYw%t=0tiMUjv0qy-oU!II>L!{g?2a&E5pf2TF*8 zG$+2=F7lP$yhD<6-TrbeuLVg*$UIKWz(Qa?0Dm?~(yZ`RQw}?RIp$|(li}{5L%I z@xKR-Mx_&;F6IT(9vA2(-<_6A_<&K_M1d_cqd4+xa)2-5qA3$3J~8R$eRo%~t}Z48 zN9%QyV=7RVzOk>_ZB7$N4KTEVhdQ^c2$Ps=u5u|HNDI4ERaBfUcF~@jE_ybeiV8lL6i# zN5;gV_=;}gaW|tsw>q(Ep8J@k=9+E4m&$^A{~ayL5F$uh7d0X6Hi40O3d9W{;$q$# zNmnP#+eeJ~XuoeLEuP3vcKOiCN1805Ip7EAg4tbqe1=mk2^jLk@g+u>!?=t9;02+rYmL;+pSH=Mq~}j7?Z{$nB3b-jby)z??BZ7{UEsaB+*mFB=FO~O0O5rp-nVQjx zc|jhpArsyN`!90k(Ea5w0H}5{t&$TQ$uCQnQFrk;XmB!EDh>* zWmv&|A}7LZTZxxT$|oUDGtU_JY5jTQ@bCL0(*|U!9XPC{Z`f*23_jP_sF= z_-3ANl86t9$k_E*kWt5eR8T0OjW^gRT8P2c`Yg`}F+)<7P(TzPDQ01_`ihkSPJW^M zDvX?uBI-HjA@-vnr{{|pi=k)GSfLgKI1EN(p6SHfZHr9)uMIOvB1D#AWC4(Ns9dQi zXEw}rVtPaH&ry+?+pd+;(B_!-b`FJ^g@6thx9pT$1CJQ;^&Q88KdUgl`N-^Ns#KiCHdS`53;Jx5D7+*V+9JLr41Bfbk zQf=9=HI$2!>PEIw_AEicC2};-zA9H8w)0`H?uDw*Hsx;NGjr<$wVu>Y$F0z#>z{@w zh;fa^WAGe>E6pW0co;;p4+93-k1tbO2-5qr0-j|G7GfYdOTDHZbJ+)NlO$yi!0roN`W7E#|2op?}5jWBSNU4%OzCV3sGO4sfs1t%p*g zpFT|i`W68w0Ch=<8lrLkF}U9(AJ%4~>tThr#>RYaI$&tdXTeQXQ+oleO8R26h|>4h zEC53Da=*m4tB5O(-RoS}nRSWk-Ov6*K~5eQyb*#Q5+RA^AE@>s0=O8oIj1~s5&^E- z?LdA)jzea&Sp{v!!H-{qgW1#qAG2okM^et8v}X^|LTI7M7$G~C=sQ$NOW9e+FtJ_y zgo*;S&{f#IDJE;ltQ&2QIo9~y7zmz{pZv&9z=C0vmG!OmX~e^=QFJd+cv!kdFqvaH zo#53B#!yo?;InB6lz?eY-TW{kV=2UATRJ2iFDMYwT^8@O5NU+&nA2gkQXE*byspFJ zb{{-T5}I^8MgASkUkqGW6J8yTs1NefVAFfjji~06YLnnY#izy}wSJ7{O1Dge#z+Gw zy|y0@`Vwt!vSo4uIbfykKB>VZa(`r`D%eMk<>YEmfdsYoMwCi=_hN=|K7%@Nt zoeq97Q{2F;E!PV(6BimU5HwGua|^zICRxk@MClwKW9H!o__y9^XBdD7D(kur1S0$z zGKd=|Ja z%1na;2!Tm1B`5SMMf%&VJKaywQk7d%B7PRxFWR2_o&6SLmkG+BVrEc)nWCe7qE*C3 z3*7N$M@xE52He~Lh6k*-Fz|j;H|27XW-&d2rYZmuo&m3K1cO^hTF~TfvY{kbURZ?zHPtQXAV81%tLUbl;R*Jt=n{(nk#16cp zb9bi*{%_2U1(t=c#aak=+a3Qx%AwE4@?%kd7whWe>Wt{DwHC^0&ZDpST*3R9>xA2e zgX%4iU+*UIzTF+d$X48m_7pNe>fr_%cy)*$0x^83qK+|!P^*6Cb@zh4h-t+8e*Tr3 zYnq_l{WJqn$e)USQ#j!s!IUR#S5s$M(%|8KFdyTM+RF@n$@fc+o3|R3#bPFCH z1gRx=7fv;HsiNLlH|6Rv)&X1tjb~KO25p1+^trD&{nFd>yn1uF9o6G3UznC@q~;oF znu^=lWlB2hyosHzx^DbJI-9TPWMWlsHb9^Uv1s|jSfe{=x!a|-6`E&B7%;T zknU2tL0VGj25CtN0TB>U0TqAhyZ3qa4{Xofjq^R{a|(!DQf-eRydmmVrjGmnm?$Gi z+6s;sutUAg$pThXzU=9F{8g+AO|EkfOa?yi)GYXniLY%Sp*=WLZ zang`{B9fqD>2=MuPqhh`yBk(iAuy?qN&Cj1&HAS_Ny+Y^Vx%B|8o$}GD)5at=Z)iO zp17ub5qAwG@5cF3(TD-Ojo8o`l?Vxnqw`}t@$g;tXFnwuRKLcy8LW~ms3NOVl}ql{ zDo7VeWn|q|jL~qt#)?(;B}Q(ajf=clIS<|;zBoTz88*N4IJ&zM`(@e820(vI0j`v3 znK)QZMPxpz4{}A&*9zIxavS~7B3y@yT>@<#NmN5bNt+=XL z9wS93AJ3+j^WX_jGb;CcAS9ppq}2{#bnZD}WuV}#82A8C#mH3pOcE*C{wD!9Xs zy7a~iVJ|1_tMB{M3vIzDjI6c)N_X;|W=yT?wmqEGN{7%@w$#H%m$7c1W|HOU5pK|c2bRiU78w>@gk z=hPd_p9=KpRoq8nxU}+ln+hnbV1uT)!wzTSR!4sdtOFXpA8Be!d84DxsP;y2cp9h9 z*b@y+#^)@`yNJsDq>ryv_$;~!y=~2FGc(YMUg~}8VGp~Z|8iQ6KmIvu3Tlu(wj`vymUI6=IPtq2t0lTfU#HO3ro;}c`@f(NjJvX}w zsNW*>=KmXHCs>0_dm)0$Z4U@AqJJ5P|I4v9&_e19fKv{t1>ob!(f6kagkQh)x{DLAY^s61vp7x7(75j69o)-` z>G}>}ORtc7U;RdZy-9oJuPs?**k5^VYr&a9fR;vRYfc5?T z&hZQo_Scvj`kWjKC?C8Ou&K`eC>zG`Ee4qH0owa9?}DBc zP`BI&q&#{VanqFevn=jsNK#lI1prScqZ8nmr;{Eg-0Prh-RQl*;V9(9$*hb4nkO;-2U^Mpd2v}=O!tH|Zj zOVwa(^(vRnsTLh6{p6m(8cMkrHLNEgO3iOsa!Z5UqbQu~q5n0dSN?%ZRcwx8OHeM- zH=PLuncvqF$1jy*3fl#7F2$!0yXyE}S*SJP}Kglmt|!oeg2%3=o-fv5hU@==2k;{ zwz0Tfr3Mx9B}*p@0IWRd!E6(Pf|GL(~RRh)aPA^$E0XoM-Jg}PC0pO3Y8LQ?YnC5yoI4#+l2 zjA0*)^)l%kMDSDN1JRI7)0!rC&rtuL*=Jn2UZY$B4_Q}}6B);`~>#^($AKRW`XHbzn z_+Ix@_2qhJ_}7tb_*8MWrV@qiaFz6 z@;lA0^$f4A|HOCT$t;k+93p8&Dqj?s^gJ8x*R0Oj$E$eMqf?tHGv2mg!_dl4hHf6fSPS|V=J$qLs z>WbW8KCodtAP6Mt|Nirb0=G2^zLCTl;pX071HEAjqrmIQ6EP8fT98{;Ay!gDPin54 zp661p`u6_MTN6&T5F%vVqP|t)s!BANAqrB_Zh2GBF=( zBe8{JTaGLDNo5XdmYXP+G}PPoYL*9Ub#7H}>q?8Gc30t``CM8y?jO0=2 z1Mm%U6M7O$3TqX7!oSAY8IoI~Iy<+xy=M((7cz>y7$zt>ycjUl3Ty!9&b&p@(U3?0 zeu1UdkIl5gx6T(^B+mxv0QFxf&j>kL0PTq8`B55t*ESGy@=0fm z!*Kwij~eR@gJd8GmXfq)Wh;5&i@7j3Hmr;1_p?cWVBwN5$%08EUC2&i3!1R0RlzRb zekbC-STWoEfI;%-1-o=#335Zqb29!Ik@xYXL~AB|X+G!%Adzud+G)8?mnd@(AjMY@ zm=++Gtt`~qSbZU#amv6Um#rHNpjRql;*FVEws?;XPJ6dVbkqQJRF8c5{gZ`^Ujs<| zElR~H<}Stb=Y4@z+Tw@j+li9DtKtkYri3-=4F%$HMAm4#v=y@41ZM%K(w(#cyGV%( z*CZh1Iy$u7xIlxN#1A-sq)JIkJ;R< zNn#=MS`V6$0~*6M+!S!9sYF^2bwmq^-ah{`M`G|tqH%GkZ!7tX8>fGP6td2W*Be7U6V z^r|W^S0=TNNbGd9L)O~O>lers1ikRNcGpEV?FK_D8?NOQ6Al_Y5lvm8>gn>ORlCN3 zdB;-M1Em?QH&f&|Q#Ge=I6Xw{>!OWH@A3c=rl0*frb>0CHy&C8eJIr;)zbc2yzGB& z-ZhlE(Uo!y11f;xW@j^_c79^`cj9qEH+CAI`p@QVz&aOK^Kn1h?#InY|MFtWYWwmJ zy<7y-b*%tzt_;U>nK0fuzUJO$8wR8<6U!GeyZ)YMOfBUyhDT&(ekt}C#U|ZYW*^>> z={NNKqQUbM5ShASBLys1w@SkEc}klXi!&bdRgY9Zi<~;)j9nuhyT0+q;PiIUc8H1{ zQ#||5u`KQ)(h762?0S{|-O{46FnWA?X>Gc>7LxR?fstSaZ`1~o{6`F0IJ=uromG1nO+zd2#UL^5qRwc7%;}e7%sS}%i zWUDsmHr+hRZ>Wyg({yRw;La$Ym!nVCL9HSyJ~V3Fmjw9w*lNhNPN&g=sU?(v+w8a5 zB)Puw2jWiMdYG`d0(N|bNjw(`JkB6fg}VJ-a=_^=adND#aZJIRNH;=to^Es`O{wa% z;6yzo3gN5twU11_6(PBA5D}SxUl=IF+!)_iv1m^Yh6mWr#Z!+phE`0Q{$|B7^W8 zQD3Ybb@q1QV4$^wLq~}Y!ZoIO=fM+dh!@K%2kjTw%7--X)Jhv4K%>F&Y-shV?I(gmWdtuw> zZO;6vGJ>TX*bYNIRr{A_Dk)P&KL!_I;tNHTR45gn#egsncxlPUhd=Di&lXNfS{*a0 zRpCJ@4H+3a7Jl0Cp~WQ=ka|1cQ^!EgBVzs*Q-3VRoqw`Bn*l?W=;jXkf;*eCvQ0c$ z2YyKKZkAd$ZK0;hl5vUET0VnR`D)+=QQ3npbr<*U6$41wYKdtUxr)|xm!r;eH|@1_*0j#YZ&}aoGRt?72_iy1GV zC?C-XI=c7+Sh7QJo;@!w^LQmuyQhU?z+0w@va6V6f+Y#c%5}$o;`Fk@0GD@bI71!~ z;yZQ5JXA6*wB3k^yv0w|y13~{pfRkPA9G-70R(MvX_YzIGp-KHW+8r+p&^!Cr$E~F zp?v?&;MuQxbPh^8al79%)QK{+%C!$Bx8q#ny8*$m$jGbhB$@DDt3aaAPIgX;a=gDi zdeeJA5+(3sj+V&iEK=>SXzwLp!6?I{ESlcd)faq{k7{cHL8*UVb>YjcV@Ikh`&Y{8 zSlw82!{8`ANNLT8KhuzO>viscJ>YYp?48oaA=qdlh?yPxMmD4^C$1z7NS9N5rN zmzm##p!|n;TdOx|q7GlXij(ISIX(=4*RN+!>^Ktd!n_Rb5V!qc7Vhjgn{kHI^1fx@ zZ+(RYv*?JPu$;t zz4vwW=PBU{h-wdL@+5oVn`7FT`$vyI`-X0XT+&|$JP`b1n$t~s9U$kaZ<_$0cAS%m z;i~Jn9t3QoVQFW!42f#-gG?<4iEZ}G*Yhdna+0|%7bq{zw5w8hqhgfoL#w%=XjGF1 z$a^L%{<>; zeuhJbBr`lV@N_zI+~?ElV-CtO_x(^bU>4c>8oKZ|^~4b;q4=m}6zehjN)FWtIdi@{ z2pK{LG~2VQeHKYH%FP7S4{G89(G$}c8C6X=1JU>X0HA(v#B~upLL0q-Wx4~rgXp*A z`~_HWQS=hf(ayoiZbC)lSY}BalA%Uk9ll?#uiOq>yl%>oAHjW(vJ>6#xzB> zrQh4&$IV>lcU}Tg!mGl}!h;D* zY~L#yJUSW*7!sm>=g{U8&Fu5Na%XadL0_b5F|`vw#`EvH6+Aa{;Sv5zG}5{UIL70@ zGO`7HzdJaraiX6W@bCvyH2++!=zF~#O*ZL*)LUIKcXt@(ZC_udigP=4g`R_13*gpp zGx?rg8=#z$WzOG}9H0>!yq~Xa}z!Y{O@jjZ}gb0~c!;}=bL~GaC zl_cnpx`)j-k&IuJNdia(C!!FCcd^1Fu&*4jJkL?-geBoxtKygxjbXhL9vTlo@8p|V72$E=gB?MhVc3C^x5x^qDpdD z-Ev&iOYH^IljPlpS9Fr`O4xH@v2TwEf*-fj6A{*3zM_$%8zJk->CL-&7uMI>?(g@WFCP0 z@gf}roGnzTpC;V(ZAm75cV$@=sHnL}?hM3*3|l)0ON%rgQWg_AAOO*ab#kCkS|wlq z&5d)xEOkAaLci8}x7vG2%?Tw}6Q+GEdOznXaV@)kLsm%V`YWz+#5$DCBg*&AhW0h#PA6>cE!Z^Udf zEO7`1&&~u8co|@qdL%FP>bARSKA}Wc8Xe+%&~r9ohV6(eTtF(?e$|d8C^Z za>QGQs0_yETzzTbP)|cticytO?aC1ng3%)efNj5Sd_6P0u!w1YU&t(Rj4Z5sco0?! z0L{PMCk|hgxz)-hsmC);vb@z!$+#>gHGA(u_>HPWzJ0XWef&o&A&{mQ>j_-y;r7TkRE|WzO-TxD! zX+h`=_l943B8~v(6~`m^LzC&mW1_ebChCxMYh{&HOX-#S7(jkLQQszdsrUXRe}+d! zHx_e#^ouB#f2c}XA%ZDko=x;AfB0j2@Q(~aDo8-&HE7$e`%C4Em!RHzSv2I%>l88L z>;&frM7w1*V8v(JaIP0qq*7ibx%i3Nl6aXeY9D9gGc-F&YI5YeWHtBWoqBH1wjP_h zV^LUiH_|j#wOw$>%-uqJ46h*DA+n`7X4leWZ3anS3fB-Wc{T3b=3MfANGg%OBwrL? zsx$q#DL-dgY=&bq-Dpj;d39Li39Igm`vJ$dONVE$V_c6$+*}R_jg5;6Zwh4JSureg zE(N(zPDoI-!L4=GB@WtxI^tPu{4Mg42HU>^FxvAn6$d%2br2GrrX_ zrh@>@`8p;jzA%ruosfM>xLb~_HX>wu!}?Agrw~R)rRGQoeW6Zaq!@XF&v!SKU_GY` z`xD{gpJi_KtMs#8-uegY+@9=C)&94w_+L0e+54N7*F7L z%K8w_&+>2hn9cr>99K@sa1E?M<5nwti0XU4JJ76R`+#1l)ARAyIt*&{GJ%hl?MKnI z?<>p?0zbL_hw)}q^T2`87xQG-i!^1u&42a9-3a0N4|fC0E&syp3n2`H;7*Ls3+^Gz z#y|GWn0$asc=l%5j*3su?!Kl08Wu#219Y|G`Ls;BGmf%G=`(>z?V)AM``7BWxjO9g z;X4^^f;`cuh&Q~yKe#Vx^KKf^SkCTYAmXKtRJ_;#!((niq()X@Wj6h5rISAtxtGA< zY4?lPUl^n6RV}r7JsPtNi{=g|mm;CW0F872Nq{9)zf9DhMshbB|GYtL1$G0M=L?iP zQZj}KlR)VzSh!}U>X6S>M^F}|D!Sy`!vyu6YUT49>|RwR>Tt9(yy3;!1G+6Mt)eZ^ z@-eX!y@V&Oly6EwbAvVEsTo_xC%;3J;{-tXc1ZMxwwCgbg7Pejo70t&!X=?! zaJNF@CsRvgr*!B2M0!C(oGe19+#S%2^-9@W%si8~^(zxU36y!ZgxsSFMW=*JS+hk8 zDBC-R0o&V@N`b{LOdDY@6}LB~O&8scQ3UY)>?M+FsmL`J{U2PJ@rMJ1G$y~Jj_0fm zML`~ikNsxZEQ2Jiicmydbs{B#-rIqH3J-wm^+T1|L<=`a7c5hxnS?%(>Zq-I5S^yq)U!E0?WouyVr>5gicpew-l>SX*yD{Ta z#SGRL-S=0TI_BQu3I=GK%sD5c0e9ElUpuGAk|_T|xaXZu@`DW|84j=0sDA={JBPRe zgGHT3p}0Rj$`XVFP+>{f`bk^>TZ$laxXFt8oWnJqhh2rG)$K@&qW%d%+BU8Z;@ErI z%^g7Y#QETOkj=O#4x}E1kbZYQOmwbr=DJWAal*%Wxu=HKwH|nX~>5eCMA1N=A81WfCBTe1B2% zM6DeIc{G#h?}0AEh9Uoh@UKz6>G)M~_0t)^d#31{4k;oZF!jn}a9yR(c^Xrm#)0am zPaY?^CdgG3NhYfZPtZi^xNV}czgP6 z0~H%-lhq^Ar_KaqoT;2~&k2-SlMz`m(NR>WWHzFeuC`b`*?pfoRf+*TG8nuysP{Op z6v2B++ut_?&xZ}PCI`t|V&4tUSs{I@G{P{)o3e$kXgNc)%Tl{Iko0)dfskuG3?`s* zrA+Q5{?)q%wA}kxMK5h9{ydK`d_%y;9#uc{>dITevZPw>FF)OIn+wx| zG!lG?(u#N~^9Or%(SI>$Hs8-mr$+GIJPg|-{O-k5X1J6+o=%DZAg*%&M+Ac7Skv$p zBN4l_AK!ME^!*yoUM=+mK%R(c<7-!sDihkEz?qw-;r8^p?w5e!V+tQjP*;xt$du-3 z0~{km0F4{O?cKa4#N|=K znwXlsav&9#-NhSa1lCtAM;qaQQ)cB(n_{Wm9STwkiAp^TWYrPnu-}B8^8k=+Q$Fsx zB5;=x+FW@~9^&cDJqY=CzUD9bwh@0KlHC6u`6$r`+yhF|l?21*;`gx{=th?Gy?NF4 z^-7nO`Ito_&JTwRfK+xH@xHbV;JhyNwRFWiydcCRl9~|MJWrObe0t({V#owQN@3SF zzA4<=9?#5(I#jMHjY060c*}VCbdOKK6wV2OxOB2L^fhl<|HnpoLN!K?QPQoMM?`EL zrCdpdlv6F}X3;{KzD+Td;3l+(L3~x1`(4D0?mPOBNhecTSg4vxC-G_YEKJ~M+9~J# z8~3^a2VI|y)wMIi4R^4fNICC>EE2YPHDMKAdsgKcC>6@riIhmf9dn$GKN7sFvC&(Hhd2P~=TBigI_hmh#AbFXF3wNrWK^aINn>VA*>#~6Etbz;4`Y)lhwRJZGoSHP7Ql*Q1l*J%I8h=4XZv*lmZ}Oi+Zp~gu1y2h3AG!_ zFV%j``eDds3NNL>-vWmQQA($o&leE)wrRY!PZTLOLw1YdmMOg#UHs|2S*UkfXSNMZ zLCqm+eY5_M#SQz7CK5b@$KTRTelGpM^Q;AQd%Y1k-${K&#P^nX0FAG)<;TzS04ggQ zR&+RZ{6=zPNO#=B*fsC!JvS48sS1vbHXvtfvUc8H)1MRBgYCD4xhvQ-4E=n1CSsYG zfshA-$VE`85FdF(YgyE5$t!ScbN3cES^aa9NtNh0Q* zWNiU6W40V}$|D#mS7saga-v!G!6sY?XH>Y4j55S-?|%_6dRk2=fdsbU-*hF5Iin2J ztR(q*KQ(KnC;ri$tDus`mT4so71I%<`z}-gG$>E~Lt`>)F=dme`Kx;nM`ej;l*RKb{%F&Fxj#4qWjwGdtOfea z{Gtrxl$#`&=WFJALn6?kZfrW;Z*e9x2-_0)PvK8*9kNyIYp765(8KiEou%Y)lUyc| z(YxbjvVarnf~@-tUGCX@u?2_I=TjsWnG?QbxMHiH5hd`V$2#6D`CVuI&s+RQU%`bY zz5wvtHZC9FO)}beXl%qqSW?x8(ep4=Fx}7=>f!(pqcu`glA4L(=Q=3=m4Kk8sv94cr7}q}s5r+en)T8J)3!Bu`SWn^5OCg6tTj2YOuq zGG{0;Ycd*S0#n zc~;@(X$_!l+T?k>6kBXQv%N&T{>C9Sf3?<93KRpCo%}O8Fu=f`a}bLnA_066>(!6+ z8DR@GKOwcxWlrIL7;ZU+^vnodb7?#q@El>FGacMl;`K)bX<+8d~(|Ob|;O9kV#?Y`{ z3IrZC(&pL!iusnsbGv(K;}2l?xnqtGHr>hgUg+3uJd}2F|5$ASQ9HYqjmHq3iX?hO z^oT#1tbUwf+IDvjvq zMw3$&Z_b$v?USbVXO*^IcmIAt#9|;%*JW$Cl`F$tfeK;a}Tg}JU6m*TD% z`K_98Dr@oKeWbKNdK(hrDt(6zupx941GqRw6S62BMcP;>F*E6i4}mMij+&MNDxM^B zeJ7L_qnal3dzgf2WyDpVwDhv#OnawDY}?GLCv0043~bF2^v}&DdeSmfv_z)j+%6QH_&~SZ~Uc2xm{RCK?1!SJ0#ULI{KCLctt-LKV?t>nc0xWg3@f}+5#;!fmDkg3q^No++e zMvJ;@%Lg`BevI`<^n*{i~vcOO+>1tE{_tn`S>VBr+7uuqW65a;ceRl#)%Xm9r^KOnSOC5ibRPTkN%`Dk2rl zD5j{qP$X@Q-Fe31Sd&DD*wdotwWHTfbqtq|ng)P803l~6{a-VKAr64X;*n@zxmPkW z_Qc-&bB)R8{E0Qu>9gmStV;A-sQ@a#LtdweK`cjWq6xYuEfTLjWpQc1+bfsqIvT%{ zf9?jwMkTK#n}yE2JS^EXDNQoCHD@Sa$pI>ygl_`FCB>y4Y5)luQA#=Xee)bU zh=Tg39VGzU~ z*qI7I)a{ui3zw&s{FIm9V#D}^(o&fdg^c5*9@7>zHY-s@iUFJ$bx}e{e13<)X5s z_=zb1(uh02kedIg$ePBi&v>d+V`5o;ci{ZIO${f3odTw0cd$*IjS`~5Al_o_r<=X=rt$8+A&UZ6+h&LZ5vcetX?`+0dvp$}#BS8b1^7E~H9CFhQW5yAtmUsAE>_WUipx$?nhLldv0-L_Bf(qDhRZm9@ooKVdfzK$kG07#rm zDUIY}_>Fggkm!FSV@*$3wNgF01oJRK!4*+c&Lpye`jvoJd?)}XS1s3Qv0i63^vK%z zZeQB79}|WXdmwX0LAGI;=W7vwhz;r#iG~n}RnL@&I#0FZet!q-?3^6$-?wvgGysC+ zVyg5ju#+pm*8eqg~C}QQ{9L2+y&D&4&opHv` zbO7&YD-b}zByssbcC+&*qtZFg{j@SLWR(&h%V>T&_Wc4r2#MYH-X|lFmKdq#{VJ7k z?zbOAC7m?TEfXU9PO9V|~yyyIYoP_FE_{;R0FT4)po$WELSAeP3OS_V+T==zc zn+EBSZDFLx9=M$+&HH}I5FqO|gFTWn5Nxr!iLHXvlww)@66~66^qOmw6oa^eYFcix z#+n^pVsqMAc{j9C-Oon1AbOJC=9X73gH+a;Y+ytV|1nNJ4cV24lf6G5?h!= zUtaqAw+goieZx>RD%Y-ZUn3{wpN#~Flq%-#dv}Fl0Q;=rRqHY{ys>*K%U<7P!D;1> z)hvKi$}n%t8&)}Qye9Z9^EHjeiySAdwMoL^CF2RAoqTVy>CC~l>WZ%2R-|TCj8JK% z>4H){>!nLDz~?x!jn|?&S3(O0I6NJIeAM8iVnubK4gnt0wSN#W&9E&9nJ3^v z)1#e9Z*c#N5xZb?1?dJjhsC2g^xA93oJ{vXI4K`0#MlX!1vgK;vn^)r!<2p)UgjFj z-8xz47=0dN0(Ebf@HmvSrp65pbIGRL`+*l#78li8$)3FBKKFk0^1*x91$;Umyjgnx zag)6I20+P)-u>eHUKBa-eWMi6`Hh#%UQ#^f7jiJh`6)L{O5Tzj>rIRaVCzovBxLuv zTkh?}@s}Jxeu+dvA+S61g5|C2IF6&7`&5#5=_HJXduzZwp1cFuZ7C{VG58v)e0>VsJYl}P$6mPehZ+hPa7MmPXFUuY~wxXL0TCh3KXctLM?FD`^gsV znm#uIHXGBGq+<8I^J$#v4?eleU2*gsc}$y7D_&zcg&oLuj+(81W6%&OBy=< zJM~0rdCal=@g-qig?{PkP&U^hhZc5X5Na+(tSUE*RX$M%MI% zh%R+>o+1?q_jGKy){v+$pxxGeRfq{~J@Nl#7L?PJh|!H`gp%cueweZNwJj&r>&!n| zG$iDxJHtlQR!oDI_@|2QRfgjSVt`j(h=aLyZ5rGphLljEK+BXI5F^loHNt>KgvyNs zCD({KsiFUObBb%5w!|VSa+y@A(~Kt!o+G>o^SYyz71M#h%n<*0ML_;+ATN<6w$q}O z-FFcJ7e*s>dsgV!#{0m?Dnh;dZX$<4CXTNHQdOs=8vM zCq9$0%p}lzZoD?unq*}l^wWj>_g9lY{8d8!yjZB-{U7 zfzCNm7aiEbQ0-m_d3)EL2{iGZHUk)o{Cj!czYlh7PwwFWcxrU3lW%^xiT4f%51xvr zVNRurgg_}If_8cb_0n3fS@A-fc%&DNbN3#)Y!(~YkVR;k|7m1}ew_(MoI6)%Qqhaxz9{aT8A;WYn7oD z4eT%RB(UeD{U9u^6|Prsuj9Ci?s893=;4xmky6g0PP{lTfHH(nI;a%lu5SmFbA;B` ze~Yf%cHcp{bn0pFIip95z27#QQE7S&6O-oPW!APK5!mU zbYf%#hY2LaUpW)hAdD;;sLT7!lMH1J1_vSb3jvCT(k5x>5w-_>7hHps_ui;*A8J!K z7pEM(!5SBqTugpn0?~9@ADrM2O#_2+qa_txVpLN7JI|QT_QzQ!+*wNJepSv_#+E*I z_jrInjP}=ugc{}kad1EtuXn5#zO1J-`(| z(f#bfB3dr+=iXIeDyMq@A(ignh@z{7GCz zl{OJ(7SdvDWj$Sh@W(+i1qWPh^XQ}Y;A7xoYUbTth!R7*>KdHh$LK+3@S$enK%--om5fqV^b zA6%l@wrrh%Seq89PX^Qv$6mVS8QX}UPm=T=woG+}i+&tq#qCU4+EJ_miLHf~L? z6yg_U4K+n3*_U(D-_y6+8V<3+s=dU+`KKN8?pV2-7^ANA##NJJvV}W@&_pGok^|3# zn{nF^rcc>zF#b>D%~>!C3AAh}O|A^S7d^@zT-sQ-n`TlOVo3cKiU#(dP4TFO*v*HW z)B@bSH%!&ZbY*dT`Mqppe@YEvw>d3r6EdSBJ4Y%@C6iM7uvcmihq8@a|B8l|(>lIG zqX@3j2JZ~7NHWbj;w(LW3~LzG8)9|6Zb3QUC>0+9Gi)Htn`Wc+PXb?b5zs+x9s4YoTx80lHhH_WX`Pje^r zDJrn+>fdH7Mx#qEqla_lvZttXpE1JOls~Gr7U-hN4@N4Ke4>O^P%&?%WyusyaaMVE z?ceQYcBTnNM)WwmG?mY6C#sx=-UW)%z?n_Fp>3wO zMckE&@K<^1$gS++)~VwbfcWovME8yrX;#L1f@c%479QfdisSh$1(Cd{i-ZLrJ$UB= zfal)UP|>&dac3mK#UTdJIwRn`er^eIMOd(C2tRWM1cDl}MnauNJG|ow0D5B6BOu}a zv3w>~WqrfUo0;`U$jB9t>tUX$Xb!pc$st@&=RB7=I}k&Q$X*S z|JgvcL!rvTjlx5cr6!t2A3K^S`nV3JU%Ya;^IG_7ATY<^lm36Lb19>;cHMwl&2+~l z)~2H#zzb#r8ICf|MIW5yEd7gqV|IMC001oDqrm)0USS=N_H6r*+rEW8!~wMy+W7f%RM=Eu+G#n5CH>$fPr{BN`3H-K3;jo$0fscq^}{rR0P zWDk&$PM%ZdSTKhhga?^a?wXBjTsrIiqTe6!aa^l_Bp8hq=$zI;vb9q~Q(YIC1dDC(61e!Dv}E ze*SPb+@P{2)PH7Gog#~I+gI3N)ZLp-IjaV)5(+rXF%BG&C_{tP4+<`IKxZRQF<71 z_dF)^T`_=#ZlDFi_h2Z~F^1Sad2P{=tRwMqInjpmWw&a2E3b^FRso_e?(r(;-jfgH zb%NJ2%UhQpNrepjIe(Uv^mg#_Q8es&EeJk`opF@kPZ!1JBD6Cisyq}B07g6(0LT(q zhx*#2<)q~rqBsjU0OU^j*B9Ms_gM4b<FcV9Ft zeLL-K6yw+1o#A+y+GG6KNpbT07iPxrF4?Xk*UIT9kIZAy%bQ+utg8Ok_wW{5IYqG; zq8Z>{6Zy#&rwURWfIW!vdjvF{ILgrWe)Rwt-)8u%L=&=Uc@}WYncl&1$FbS}^(Db< z&T_+a1IOsaV3Q-Iik*H?I!>IEF;Xi%r#EU?f>ycnkG$Bk%dk?_;asgy44LJ|4u(sj z;&Ce7;H$1KLSe}-jUBmrZ(uh+;ggyyTnm{&k{7YK0&VJYo7s_%&<43}nqLsbn~rjf zje?u8)#+-;^^6fwNEt6(-M&ZsCW;Hb&PLAh{G*&l{kYj>Cqrioajv%Toc>o~3Qa&T zyf>nnpH>Uu@op+H{vSnW!4_55h2cFjFf`H)4&B`fGIV#RbO}g{U<}xU4)^x^*fQq^rz?sxIl-znpXzIk$> zK;8V7An}L8qkF4Ak`N3@e@Fvg9JW2R04$f9=CtL!c)UVve-xX8B;BeE+nN!V}O3$`HTPrJ6SCPg3a0?zW|)AnEKEJ&rC%jK}YA*Fb~Hn$-` zVk$SH`H!7nEq8IUmKJCK!|-VUmhY8g$#$6l3=>_6*>pI*C2R%{&Ge0p3`mU=)k{Li zHKC^1VSfQNucpgM$_apN8kt??TK?pXpROnPF&gY4-P%Pxq8gZ$2@8rbb)}$KvfL_P zpvb}nP&O}DAF*mfwnpkyEDqgw97ejqkzi;{=rOurFW)Cv`b1{@hDEmqX)yin=Yq%1 z=XcqKl8~X3*~R%i3{cp7Ol`$u{lUSe@NrC*$7cfwG}_}*z`v^aR^&;{b5&lz#}wS6 zdsm}<&CTxC2H+MotNln0_oK1R(Ck9HOt3zZ)zn>~udpIzb3CfDO@EZj5lt2geMpdx zSY&lSHZa>f&Ln(pA9`>m)I-!*r)kaJ-xzAH{hlvHkH#+DGlRqc6?{oVY`<= zst<+&qE}b;CRMC;;Z|;W@mxh3$;i>sW>2jEF;Pn`Q|4JjbVKPeTH#6pZ+O5R@*}$` z{+A*GjWzQC9y57|g?fhDBAG@;J&EJ}?pN+<0z2{~MZcPJACi10_sM?UB<)Tj5hn8< zd+=Ny_6ki2DvBlS`MGD)`3K7A|&HTTe zCR!cIqGYl)XN?D&9xPue>NQY$jK2>Q$+}4r&m4H*i|r=hd$Bl~71kE>VsAWm1qhLl zUqUesjl;nr9h!uUBr$96(QO)O8E7t*DrNpN0!z7i}h-dBOS5q1r+0JfTxBjH|y2gcmi?#63EWq*8Y(C?Wm&Z4g zZm6p>c!U<}p*HcaSTR2I@_QI>%+F=8Hab_vp@dwgsA$px;=0U>dVik46F%a&n3`B8 z!*}1PMaJhAd9l6;9$0mz<(!L_w3!+5#C_(C1UdDvqve`KvoRX>*KAL*WxAx?)5u=* zGeJyA=ZCMwUkDpt`(4X0T7Mie0720NrB3PYu}*=G#NP4pRCv#xC>Ha1(-u6%0NO3e z_3uv4MI#fv^O-tT#WD{c3r`XzAVcR6pnuKZaOmRW9AOEF+x$Wgxi;q~OK@)XhgnlD zy&Fu!uZZAHrGw!(9968g(6a4QxV$xX<^eubE4;!Wz3V@Z&-G;|(Z5j;%H|W7W2-se z-^<#uJ;@!f$r+U#6mHWbtBjQ^Oi)l0;uvQu)jSAY!`~(8&33Y7l}7XGwERbJZMzre zyW6E+C%$0uF$08p))tj@BnGQ>{$~wN)%+8q#NXdHB1&ogo3RHU+~^X>Q6Q>HE@AKS zc!TO@@0hO_c<|2{3r`W-47wiuhO{b_TM40m7CSJMKcCXlqIuFlSlbe6542Mwbx9}B z3{EYOVEqY;Y;Av9r}(+n#Er!i@!kKh*`kN}0}P~Fs+w($0-gj)&fSW~(wWbLdv#L* z{owX2LDlA1;`7R2RZ&-ujKm-x0E=ec*uJem5i|1EoQY2rI()as>oh%6sGfSF*F2vW zWVSU2Kwcs`FZPeI@gSqK}>az?AZjb+J?T*CI?b>tbbW61)j$20H{% z;mae;6Tqy*WFirnMwtTR6N*Fc)foBlKHw)~TfjuE&Jg`u!1%jGP)LnuC(W;G_EM~F z2(}P?Zb76`8Xai7ZK>i+S1}R$5U6NL?oVdx66;*kC1vYqTcYUAv&Lr2qorC_0{Nxn zh4{~4@*OnTqPz9_wxh;6ZBS*j=0LND>*5Jl&P!FlB)Xqdy8se3s^cPFu<`~jgTt2L zw_1^`51l#y^e=uc{M%A6O6s4v>X_d@em?l+UHG#{KYswc)Haon;&f%U~~*TqX2h`c9`BH zs((KMoekhAxEfbAnlA^L$Li)gDD2++A(xmt|Bsqk-&6*NbDViJ7jQ99)J170 zbOZvM%ak_qQE=1WWLD}4-8yXOzV`Vo^8C~6%f9q1!i`LN{}N+6-AnALX@5?qK@FuS z*FhzzY6urTH1Frb^=jUWUS$-UJULjYS4a zk=y4o*p!binCyxln0S~ZucEv38?aHxFg+sA(Z$(!sFt*YTr z&KSGv8EBLnfKJqrM`Bm{w2e(7(RyTt+>UB$+wntIo)&DP!A87f)}A7%(SoKA_W3_= z#P~%lFLSmi8I%}EO)9GgsddKKr;Xg1=^YEf&5LSeu#5Jf__2oR>zDyt?S!YLyx$oj|k=aP`u1XMHPDP+77 zg6=>o5V6n@e@c_CLqV7G6sTJm7}i1>v$OL&#I%SXs!&A_VcBb~ifIak8rlm%6gEt;gNZp*nNCKXOTzYZ{+e7Jiy9e;Cw7 zU^2yT#J`Gmqt9iTjmY;rrZ4WQO8BUemlHh4MmG1pA{=nc`<6i;(=`z-Ywfy)d4H-bXr^h_SSK^)GqgU z3&ehzN(_y3J6y)^S_F8h0qIG+1T{a~68KQi=K9TpT6pdFigddI=lzg?UI@#g?>+5v zE*>8wfc^3r%3+qs6)Sf&81DiUys4oNGU)Fv?>2EI0cqwx;eGX^xF#~gmD4(-KF*5P zVeBsBs>4pSQu-{GO{wskHlw;HG+g)f^)awGs(A9x(tzk@`VBY9kOYL6-?+>=AKfv0m+V2)-)|A6dIY$HJy_Ppx#^Jukg zSrn;(d)k^as;t+mKTr%Gw#gDoGdT}(5r7+DO9{(#sMJGozl&Di@7W#D z^d*3fx#$pbX(%IN#SMhDGwySyGNv0p&ShP;^F#wx2K1pW`4>$Wr0w^V$~V}io#MiF z9DbI=D$T*?HOMua2_IdelBnnJ*Jx)D&b9m9#?)#&^P`2qYYC@x337CBt}#VXU_jE} zJ`aJmSg)jzm8rY!p%t?oW-U4{8xyJBo&dBI{<?_64f4OgjD**55ksbPgzM&)Ci& z^!l;xZ#)wQ$bGGB0PJo+G;UGI%&w<*ZMuq$Tp=2di2EG+;jz3Sz@?< zw2VZhRuq9)@u@g}e@%hPTf&@sr4EcHW^v-Iu8x&fdpGuYN$ocAy6PmvASyZ8r zyc-{xMnS9&md)SaCGSo13N@qp+lR#J>j?NC9Nim>)A_swt+(|m>Gm>Oap(9XNMOk0 z6pJWI!~l8+ovm4wUGO;NzNNynU!W!V;LM}1lp+QytO^LgDY@!UMyKpP>z^6Jk-(&= zOOmHD8#jIAUUGk&4~4D?<*E}^3y)FoKWQKrrDVgkvhw5ZCCzHJm7wl++ePI$<<)+L z7sb%z=08K<7`P_%g~vY)sd2DObD7O-l zQsa~Gp}JbQ(f0_v#x(9zHxTqE5snMCBV_Uj<`V6z=us89*wYU;>|wxP!EZs)S!?Yp zEp2<%*VNb44Ekw=i$Umj?)6532*jNhpjVx#g-eJE85;fD65c7DtbBEW8HNH}0%P%4 zeF%O1?R_;oQKOXqwy{VfGlxjhjv~!^H!sh#6^nnFg`J8@(MLr!);%wUa0&7!7pIR* zhE9p@MobfkAKcSe-6TvZ+db{$UY^0p0F`glNvP#L z#}#J)|6TukXeK~(%%ORuyly<=_d9+RPW2p(%T3r24~&m$s5Bm(pH5-;oq=NKz76wf zWo?;Iw2Hk$j4v~| z{;+VPV0~Y40s+VNwC(Ype_q^B<@QLj)` zHgQ#@e5bgJP=4ovMcF!;2RXyKsIq<2ohaI4{zfl*ZX*Z|2^39gP@0D0)5a;@D@n=p zmPO&oF=p-#iGlFK57Z?zz4T6N%Xw?_=CG&EG#RqBxzThI8hLoGt}&g&I6In=@E1Lg z?yUVRNaYQ7i$lD!x32N*8)fG{aa?dfQuh=Dh$p#TY6?JwE~pmzO5RM^i%Y76I#ECB zn981Dw$>D^$6^yWyFbnir{(pizSoGN`~x*wc(hNDS(-Y)k80!9SoHtRILF&>7%x@v zN@5Q%H<47eT@_QVJ=Y(*P>6#+t5fioRm_UhR?=OGn3DMXmufj>w*}|WGG)9@uuFK} z-g^T3xkx0XJ1@^VYn>_!L>iWv!PaxedH(NvBoNozDzr>`^rJK zH4X#@<%lM02Yw@7e~ahANJybWS7eHhJydc0ApDzE)UbRmtKQyQ6(EkSP8kRsUwm=B1XjGYTe^s2U^!SS*0N z9`9sN=j8t8dVc_KP7;p+epjT_N${e1waMkr5NGZfX|uHPpu4TPmlr&G>B^S>!TBji zx3D1uItPZgN_W3`Vf+#H)QaX!`!~%vGlrQ`;>O=>%K*v#pY+BrF7cZpS2>2aB=(X2 zs4om0ZQgM=8{e-UzS&UItL_uG0q{JlHGnhDnI(bmW-ypCPnDzcrc#l=)>(r=&8Smx z3yW0pLS9hk!yO4Y@wHS4?E9^wfF<>?ihx9QrL~J{pAy~!caD>s;EK~J7rg0ar)Dm+ zRRae$ab|Kx*SD2TNH-hy=&5Jl?V9xUOX<^pTSWRNZ0;nxk(V!Wzo2v3pVE_NT8vqF zi7qoNVZDUFd!oZMK7z9@0vz|S9X;;)6vy~hDctDX`{B}q#fT1Vc zJw*go{gQcnu?9enZ1P>JrzR`3bhc$<>uFJ8+P8k8gn`(V__}bhqE>+yX*;s@;;vCt zuU<{cu_+2qrm+0-V8PfAEEM2z8@cdR4;?>e zTqQ=J?jR7@?FhBeRhpWYs^2|Lb`|Q{DeJu7mp7TVhwz^l)Ji%qg1=O5#M7ig&?H|6;zf*Aw zk$XzQtnO}s?rqs=nLD*&y$y(bP9`6f^%x{zvdV}rB`Uu++R=ENzR@MP4Y9?*D7v=in7|)YY{NRY%IH=TGPt0;cz(J zvc9?mwCS(_+DX8e?MqGVR3uCnrYq*3?o<`_vD0WZH-EvrVf!OhCTWVYbnZ}vE@#Cc^IB= zW2SO~-9vMV+C_Bhf@%;hmeaTcTJb2o;H(BNyEF%@aSUa4u&8Gk4a!_cTDL09?_kbMU=!uplSNoMzSu>DsD^8uiqG$OdXe_WtIBcaGaSRAS>h= zvjGz8`0-{oITC*~Um{fth8fqz)_pv$r-Ptsg4!7u=jc7nR71#c3``gKsc~7!aB4!A zlhY&j&`Ukj6YY>Pc=+C^l&$%Y%S!#b_HPoiyOnEpdq=h|pKP7?S;|v94FQlGBvOt8 z;H48i=ALcjXWkzPtihMamv9!tKf6U?()t{JcyQ5&R5IYE9?^SlRI+A8%Ok+(<@@AZ^q;T`k!r?<&L43t7Bj81r zs)2ccRGbs8N4D0HiLz^Vu%93FIfbj3!6zG>niA-w$5&6=XlZWObOG~waSzH@U`~!2 zZxB_Z=Kn~tB)%XyeWPos!l}yXZhNKMCM<;_RgHtpBQuH?!0a)(% zIeb+KT1|{?zrW+=WBv91ph`wc!KVn1-zrJu4^dZUY|M_k(_e(Jm{xiCEM=tbx`)IC zz!H@BgD|(vV&;DAHUNj`1q^+qc32|PJkU>mFW~Auj|L#`{#sKt^C^XDif@fWD6PfY zg{YcKTB_OVB)G8+=c%vtGUuW{7pogSka3Y&vVv`ng!_b+`m3o+-74oodJvdjMXA5W zUy?aP`d1+nir$>oh7Wjwik4#9PWTc7Z@J63#tAN9HS6+cqx=xrw~?rlzN1nTAFeJ*!tYzyH3JKW>~nw(`GAc}e-7dO_h?#*tJ63Pw=k zKpUNn8Fj;F{f1Qsynj8?!35w3Y_PR0oZo-5$YP7a$n zH_WNkSnI|_%9z;XJ8Wq}d@pgWlAUDb-KY@nY_+^uLai{BhM_W)|9gB`-9Nz05Wt=OBGgo87 z(eO^G(PpmPHDI}8^+gi(c#4i)?IXfqsYBulqMq=iv5mqqZ@dEPmM!tLVZ2n~XWxpj z%4vf?8Kq7NhcOa=y^Rq;A#+MN;LAH_KY_7Zac|U=dHLbj5m&ysfozM4uC$}~*iHp5 z-yD&-pg?`-#({N|;b91%42Y9|GZTH@-kJ3>wj1*T02xjS+YQBlA??rSfUGf9zj)+n z!wMi~GqqT;+^|Jwr3lQp;m@HdZr?`$!PWQJ z9vL$Pr<=lN9Cb&oO~iGIg=v&l79|or`Hd{WnDmyV z=>yN3#?S|JX87RYIWx2v-N(#NaEJA1{P#}?kc-n-kufu~X_L2S6PaIOCEyLm;5XqS zOsx-0GIXn)F$23kmXK(kY4YEDi~9wgE}rw3&2-6S)DGEPgVBU|0LYR2@gU$*fh6zv zh1lrbr3?&1dW*x}(01zRY^q}SdMY4cvz%2WwAXeLM2sKY{63}q3n$~L8Z5#`fr05$ ziFjuxM9lSu<+I`dXwG!4YEz1cJl)xA%W*88`QSYLWS-pMGM)$zBr7JQ^pkRxO zAT%i5@2e=o$u#|J>oO+_SzuLJ_s8FvGa2xAs?ze}5>jOSQ4C=2R1Y7I0utl+O~hW; zC)?MbeKWu7H~y_Hq2a3y9i-?0cu6S8-unW0F+r0V(MOsoVPdYODjI#0Ii0c3#S*(! z0jRJO@_(etX5`ty4nJ4+hCFQm#Qw$~d$k%LO@*xH7GC`q+yV2va=9oLxJKKLHm6By zy}tcelJb~wTvITA3taHiEEet=Wml(yz^d(EO(W50mhaXE)wUnh@AR2K#NE^mh3F%& z(iJcA<9w2JsWvGrLd&{4wxWEk`CUX1ElqEIG_sm}{3bIm;+1ek8P0Wfl_&v4nBLgl_E zDHm(&)lSEK4U-|CE+_i2lZotOp{8Tf23|C}oMO^IB8sGA>~Z&@>c1Z(UpYT-k*Y$I zQbd{+9RBk&o%4QFfo?d+)IH0L86ScV_r_30!H@^?X zIO{V)P1~pWQ?jZ;Ox-PqghhfD@=DllAZa!?;}Z<9XUozmx~Ofvc`djFH2*jRewvxr z3ZE$62&aAFauWg{7;Y| zM`gM0@KVWyrv*uSs zvkE!5exH+(|Do^?2gNR6Z;s61oN{`py)ET}4~SG0-AqjqQY|V=OJEUF_z!79;M=7q zIdzBjB<1w3tvodkD44Xm`0KzLsL9W0goicO3~jg z)a!mt=mZMrOFXAlnUP?=qdMzn@?Qy7()|ri{5`e&p@wI79?Ho^MI=!#56<$Q)Wjap z_Y8*XNpi}gfSA(-m7?}$O!9Nt5z@~K&uHr}JnR`P!@YF+2A?+B03CUbkbn|7K*88z zpg}>g!1Ef{K()h)xz^lb0SODjYyZvSYbu>q@tMQac5E!Z1?-N$xgtigeSuyT%UL zLq&9eVlyM?@f+Q~cE8F36-hoeS)DPY_HRXowr0t|>~E)ErU?&uW;cJKNYI0BiXQjO zb_$hZRA9l^&F_&3YX*!54PK5jljq2R4SpX zkW$$`UOtLS!OQ${Wg$sRq-kGjrUm_W!2MfOGjXm~zft_A>Hk#Xe3nKn4D%Wbm3X^` z-p-{bcN|Ao3jJ-4OR@Iw9$}o@(sJYvEn9RZ;277SarsYmKRxU~ihX9j#k|bQy?l9s z;vepx6FjrJh92>F(ac*>r9T0_SrAhCy%P6b0TZeW^h2y4r`k+n$delh%G2<+J4r@{ z)rLuXG_&*%JSY2T9~;W#&BkhL$`KL2L!%&3#W>V7SdV4BQ+B5Bm$}Jgo&Yo1EEN2+ ziV{l(CG!c~x`@8J%Es8d1!$6aG5vScs((Iu>mYC7dK7L~vE#|eXzrN1^yB?E_4jJ- zJUr$p-mHi>(J6w#?(;HOeYX)=GYQM)rZga9DPxTEG1JnmTH`!{S6ZlYsaa(6&XJVm zan>vbzt{dkn=ZSe)!>En$6_(s;G?F{%xD^iU`5|{awN{E0>`qkJs7=wZE6@>P+nH_ zx}?0U+yEeLjQ+f-4RJ>~*BC}H$a7h0|L%2ogu`}(jOjIagAEmHnllc@r~EkpceqWw z8N2KN%$K6Q}4P!^cE)=X_@;U@@$e_M2n;fr2r=nTu;6Pu|tL`kRd&lYp&k_fK$K`$YJN^A6 z-2e?pzGC#5!YpJ-KdoNf3GgIk;RsFDOw|JUdQe z125Gutz2P)dStO0tGY!AzdUBVcW6ka@tE|;xxEc|Z&ZwXTUo;2MsSu$Q=bjW%tY{a zRK37?bq$4$= za)Ij7$U^f>j$k?>f35=9SA3@POyM7&OmDpVNCMRAmm91~vJ422gdt`ga|#!|N$)8# zFIWw!lc($v?ZS58Wc>a3=*;vi>%IRTNfVK~)9#<$eVm#gZRp)`QfW+{ZKVD%xw@YU z%^IA^Ofu1szqJ20IT^7Kg}YD|5fPdmKGR?q0-=~ID@%{?Pmd4Q`(YPAOM_#v)uk_o zPX6SG!4ggWaX~d7z<&Md#?fY}6Ce!m;qZ6t(ZmN>wM$BK?qe?uA0V4}P~%$Jv-Q5@ zvz$FKN>h#g-d`%{I^en5Kp)Cd+*YBlLfC-F{S!;&g# zxQRzoo}AZjtOur*DX~xH@pkLDLF~; z-=dx?5{}GesAYJ`o6O)-^je`16DL;c^jED0jg}SU@R`qI-f__xeQK7+dAboUNoKp9 z;Lb>w*UmKko;)69$m}{o8M;K_77f*mDa`)L+}6(Bt#xoXd;Gdu{@b+)bw>}D*7z+~ z>W9Y}0+2|D@n!VOadN89LQD}wtxDn?RM=iS=NZfc(a6P3HKBv$@_Q#57EkNN>n||y zk8vZNIdp^DLgq2xQJU0$J;d{pU0WF?u{o|`9F8&=sRtZHp_y3bMlN5^?0>?&&kJ5T z%bov2v0WGhn=UyRy@q=pz(nJ{vn3T}Ygkzc_?74ZyY&%l6sqa>q)5uKD)Uq#vx!=; zGl#}Niu$`f1p-M=DHz8!+e~KXzXB=1ElFU#mMia6;pgTuwQG;1F(`dQGzmFP&*#hF z4JfXCoL4J=ta@BumPSdQfXKN@Q2FTk|LW;Of80($H^>Gv$D#f3ju2pPFmhBz3b`W(VCWjS;v=@(=Ne` zu$B@q{UXjJDd_L87ECgf%jh0X$5JA-e|VB{@zZH1N1Qq_vVwNh9e=of$M#cgF(Mob zlXo99kOe9ph!6<5U}E7g$1av5Ryb-R$cmaubjcO5nhf5oHj=2Vbb0ej6bStpf8%eL z9ZI#~tTuM1i85BjNUFpx*oCnBn+CJHtS4`j^}pdFRBL*CNm(a>+cDGIw)Hi#EOMeP z0>r|r#ou_E**a(!W3D`t3C=^wEzoA@J3o1^=lq|g41oWV?p0Jy96uRJ6~aP6TD@}G z(OPsGRqEwbi{V3ihVkNrE6z(|3zkQpb&Sk?M&Foan0x5eZRua!`|o=4(hCXsY*p$` zt6(#{Af?gSF>znYKx_ekuj5Yn_fb$){pAK*EWTXgo3PJ zIxq}IAANzpe`E7XZ%Z)}_xS585NP4Ng+E=~7jgc#bZM!j>G;_f&tJtDeui7f=pcUC zDxtN-vR*aLyip0?!^m~5g@}vURi_8GxNVJlmeqTvsAQ*|&0kyv#e*jd=~WpmVzP$t z)$(r61`?%-Gp5Z>P%l8YuXO;Z)?f_;@&3B(Wb{Ic>?8nBNtHtt_8Y+jC_WTfzW%E= zJ4+^F4i=VhT2uk17(+sbZJi=6skS|VrPI)+c zR@pGaG`(M9NDviW{heUW^;w>&Iv+T_zD5d%+P$g-Pe-oC{mP zO)vCo_EWdw(6603UrnE`Q~lz%Su_*mBc2Zz?-6aCG8wVZscg{DrYMQDuq{NfnT7@N zK648j#OOU8;YF!Tc#si%3Ch-T9?u9e&*KavZA^g`3Aqp!i)8AH;aU9W#_Zet)-|&o zzn#P&V$PSm1tYEcEI`5|DA$mG+zCRPLq_iVXh#)T*Q(c_N58x1R1&tpSL~GdcG~LW zV(U7EFm@$rRC+To)mZyT*9$6R)I1oWHPJ{9;;Hxr(cJ9$98{`gx+wf)zB5~(2`q|J zC7BFAIQk6QmUsGljeZ-)a;XXbS)SxtqDmtl;}Jey0j6FE(^&w_P5rf9P(V+n98az4 z!QD8(+*X#D-k`*?)0gXU*Cn(~62}D7t*J3^atp<#EwqdsIMbuW_4WM2{OE&2P$2#7 zl=h2pY>#-tVn`jzmz<=OIyi~KSv9nuc`lOYvFlzU*e07>YyU}E_0|gNu6`USU-d1& z!*$k|Fh%`)ZQY3u;)xjFKbu2bI`?v`Gr3fVQKzxBQ^H#g#g4rOk$YK#g@ZmyxSNZ2 zxD0>Lta^m5WfAq%4z{uN>ZA(gHw<7g_fgBbUu;e3oZBhv7Y8Wlrs!614apY~v(PzP z%)8mQZcAxeNLUdZ`Yw_HPN}y_X88(Mz(4+n*(}d31A)!9x$SUnj7GuYM3QlwwB{7F zvB9=Q%@n8Ee7N_654W%RAK|rHh0Snx7&gfx39YO932P0!k-+AD6vsF;EoviA!rHwX z40=%C{f`1?X20=LtMd}*eMXi3C z%0;Ol_z6dPY~??xSP-?3%S*)D2=-zs{Y;shG>o!0O#th1hF=E3Lvu(^XMZ63o3*~0 zLIgxv8P9!;Cf-P@U%sd6+cZBjaX1T8G@qt;OPp#nq80KoYTTrw;E%v-2D4Y7-Sx9W zgxb!Cof6FFl5>+L7eR56sb%8Hrh_jqtIb#Rm%eVH@0Q|vj7GG8iYTzs#tZtUSvy^) zyaiCm%xiH5xpuI*L2=Zc^*V`wh0oXX6Gy-HsS{SHj@~*L+#v`NIewjZ%057t{z+D- z$XW!zk&?+Mkbg?vZ*aB+@YGi8!hg=(bz@CuJ)yr*{E~40vzcSk@nKb2oqlQP^6?hH z35XbPYWPvs{UC4KyVimyP=ZNgZM~rvKrLgJtdy`4Hq4F7^u5}_Fvc!hW(Ej{^Nx75 zujbmsuoD7M|HT0%=B~&#{gsq}POdQP- zfvF!v#{&vKAjg5=Kgd;++C}dp#$jRO@GTUjNXK`27C_8rFNz6yMA0BRX0z=gk zIg!IxPhSKOe1+9dYhcGUNXl2W8C8lWS5*$Nq|Nc_j89DOEX51(7YyWfQ>o2auGi7y zjae*GzK>e_>WyClVHlU2{G$K#v=~Q~QQ~P_{{ltBUYAcb&Nos6GckZGy(0#{pW{p- zB0_5!O^<=7uKdi96)zyK^Q=ZCI0w zfB2jbrl;pjHo92rtn|neo?JbO(%O;A_5@aI-Q$G@QL{x?V!6=XGICvZGppMA&0TQX zvec_0r@wZl#jK6Z*CP$(Z&RUpLBc(HTAy-LjmHUOh(E}CyxcDcj(`0#jYb&WIO2KQ znRM#wGW~ZHOWsWr(fX_Ej4I3SmcY0C>eMKEZDPo01q|UOA`rHa#~)VILYJrHUS?nb)@h5bK?6dq=_D zX{K6pp(%OH?(&hahOEWXhGRB!W!n$qnL{3|&p>c*UDVj+^iA!VQwDV|O0~4Kp(1vS z)3Bkova+F}q1FpF!!_**ObTZYsme@Q(zF3cU9)heb>EHS4J@n7LA~8P-<=Q$M*-7V z{#0nFx!0qaxP~+F!s&TvhziL{v&o9xO zhpo|ZTt*mnd4#(0ViV=#TM2;q;SlQVurX=R&eA8%;T@|=W;s4jf!l&OD(44|5lsbf zqJB|hOlBGEB%Lr7g-xV1{J@JTs?rR3(Z1~)ZPMS)g@fnB?QXzb5MTH$kb7z*G2zWg z28TF@raH}#rW%dxZ3QR1Kv&HEU9;e0ZL_f4i2bTLR1_w$Av5W!>IBhY`l&-H`oeyaCR59(8kPz#h8kVQQ zP@><@@PQz*BRh;Fx6Bl5CNxs>C|ySBj=I}F90~!{_ZakNz*n|Ea5b5qg;K9r04R6i zNKdWHP45_fPNnM5XCxI4EtssZYVIiXiu>xY$-q8|=kS(F`qUhvsn4)yJJ?ksFCACl zq9nOSK#Q+q)G$&f(GcT2x* zqR47!74He)?_DeXqd17;8NV610EkHYGt^H@;e@+a4jN;^IN;7vuD2bkC+5Up?+UiF`HVmok8RBhd?t8C;Z)) z(N*bdH>p7evRpP|rZchoE~uQ}OYox+tb1rbPKz*XztSC}Rwi1N6gf#TJpmm<{bk5t zG&OZq$r1-Lx}*5i_c+jjewe!UG3M8zbxkEO!H=$dqFSRy8^iERY3ZkJ?**2|8jMR( zVk;EsDm#7}!@@Q{R8U4L5vkC>bj*Ln_2$wbOsDDuI35`cy4Kdw^@F%Yp@wm0jl z0|3)41{jq~>!u}_)(N@SJ4@&5SmT+;l)6r80IG^&{ocD>s~MwHL00T2T& z>qNdTHqpuRy<_hJZ@G8oOQZ6c4NX-Om%4~r{A(1`^Rmm|%*H%`2|MC}%^AH3Y8G@`cO9i$U!0I4{FMIxT4I4$M;E|zEv$3K5`w`9bX z2@)iNpO(Wv1pt^V+kz<#`@{|A5QXNFh?&b-%o7^Fi=M-e)a(NA{Qn-vI*33Z?u8ch z=}o3obg_&&CO6P8#DN$ZVR8woEQ^+}OxaH!tDF2o!4;09LhOBQXi z_JHxl&8%?77EthbLVTJ^1$g4EMs*^MG>eX&6BrISVqY=9L$9IDm%Bd^t}-=I6b5Yz z_b=!Lk15hoi+0STRGOyiwb1`rPU~#ZGRkp{C~Tlm8^QL)8*Gjb2;N_Z zt0Z6lGq7E?ErgbN^5=3%={V;Oi221J02wdR6+m8mJ4+1?^t@$?v35!8WXAu_p)$yJ zm-8=$$;|Vr0d@dMW%b!VkQjcoR&oAeMFoJGUHh`taVL5&?1nIW^&`tChqapnAbBs` z<@CnM)ts&Qr+dCui!IuAXW2sjv*fpFwZgu$fHFK!#hs^EF@X8cOM#1Hl4=Ag(qJVl{+?dBOKA6s9&Eq^a;>b^>=z}-RR4+<1w;sZ#KYn>> zapC)^UE5S+uob>(+D=}ni+8HqAwed1Z*+*S+dPv%OKvlvYV<2Z1O@N=Xk8|N8?@nM zU=@s;7PagZrEd5!F7%6QDFFMEzl3%PF*=c@N7}(ZkwBdBO`%?bg|g^(*CMAYIRF_# z>U@+>R~yXiZak_FO_Wey0Ynz z-usuD{$!(&lgsTJBPZfHcdERp5k$3}`I6RxtYsh;xHqC^FGjO_#|-HH8RGq`;-oyuu2IceLy!~4h?~->@L#Tv#mnl9uW#Yn z2}{8%lDOabOg&HOkqXoY}0yayIREW5irsyByDCWm& z)(Ol%{5w$d>!KcsI(iQCcXFKv_e`+kQ^|$WKmaDfR<@HrR2e$34IrqOsLjRRRu1qP z@*k$B9{^Yf1OMuy7@C}p=mO1vElsDM4~ItCYXfs2SP#IsEH1NkP>{jaE+%&3n&;}D z{s532vxb??trLCxUp~E5kLnkx>wWJrADx1aE*~MUdwwEBI+vdjr204nuk%a zT>t_-x1hzE9|R34dfsO|e7kFY+9L79Nf)&tn7h(Qwjh45>_aN8VF9aq^~ANll8iCA zW_@K$kL_(EYNCRpxi?(toNGzy8@pUm_WsAvSw}_H1WBShhW0&QAZ2%@WIW4|lxe4ReCd#;x6slB8z@BjZdDSO_jSJHbLZ`HKwAy$d`}SN89t(fq!{!GlDs)AvDJS0dX^K|8 z7tm4v0B#lmY{ZThp%yt)lII?LsD8eUH)|jOxa7WxbjJ>T#g#L)`-4_5vT?ks>nk!i z?DJarR+jm}dx^hewly}IK`1YDr*O5;w!THtg2rk^x_85>f0Y*AAuy4)w64yGU7m-# z!Oe@^cZ+W_+o=<-HWIw5iaQ$Q`+PyuF^*jOh>_zF=qU%nti>|9PS%rX zxd1(d1d&&Qdcn8a%$vy8DnQPcPwy}zA;u8}xzRLNsvU8W73zyly^<=i4-(!R18laM zY?`0~$H`;O^ium$V-8cJsj2wsQ#e=PokxS5uePW^TIs>JIusOJ>F>Xl)Ym4H`Ddt| zWOB1Cm^gP-E9}etf!u>v5&(4MM@PTd3-qM%FimE=)ix6lckwN8E)`3;-+%kSnb-cV z=EQ@z$#$cLrTms5X|M1vvp1wZ5X}I&RYAlhvD5W$#%tp(K_k&DK-Xm_mF%lUd7)El zU!NhWOn#V#Lf3B}bAmVXoKa>h9 zH4IbvkK3Lba6lBE=~%tUvV2mVVUPL`fsjt}Yq3^dhaUa7dha3rW2QjM-K$t`F7;1R z-za%GD#E&346j5p1KnKXX@shVU8!MqTFJZshD|VEx0}ty+7pf6;dZBzyWti1pLGgE zjPTsGWich+p)u!3(nN0>VG|saBYoITBkxT?^ys9Qz{bM>A&+euks%^UIkhZB+fEBs`0ewMhO`-ms+UJB zl`CXqb>^NM#W4Rf3r0f&u#`smiH|WYbRbFI-5yeKyV=f~Vc-X&d-BKf++qL@Q+pmF z)7Xpq31FqBPeJcS%35#OQwgte`_+9E5bXYO_9}f_tMe_FdmY)Ix(lKNq^`=B^(uR; z){07EC9)gwo_(=B^wc1Eh7nmQ}q`vqx z-ZhTvi=Z&6*Yl9v$&8_YQK8fCnC2LqDcTaD^o<6Ii7SRKkn7$U`l&#MiM)}-1+o#^ zjvoysP7Ef)HyA|_65J2uDzvT0>Rh9_O@Og_rcbOj5HH92n5A(H;})!JE%{Wh{T86p zUjkgoZky_uytHgXKC7PB?k~8UbKZ>wlJ(xb`1k7P???Z3{tL1P6)IMtRrl)qi4t_~ zfDX+=zcbVK^h%>DwtBF8skdIgzeco~$#<_Z4beUPcoRU&Q{Kp$)a04XS&c4H)CRxs zVha-*zQ4ZGnB^i7%(($(&6?D>xXyj(o<{(P;9qI6XyHxA`*iS6-}OXwD3I;|(pa|! zksR?$&ri1vXhK6y!hD;xO7w}%;uqpES5se(2{TQR9H#;3-95euH_h#q86F+A7XW(n zaiHs;4*kxYzX&GZZ1*jnh)LS)JaeLP5#2_U5KDBEIkX0tyuJIg(@it%=goXL%1kLnij>*rYk*bo4co{;kez2BCG@%Mc6^-LHTR7yYCXb-tw{6~QLyKiZ-`vKW! zw;Pv#JCBi9#*G{ahHL=c9*<1Te0m}^OKP+lU(ND_VVl#$8fqw$<)!018E5Qgm1GQ^ zP^`E`Q>TpNmRWIqIYAt*b0nOXd20;zxp{|9ye9cdCbt2VXvdOPQEH{Ce3a6*QU*RZ zpCF|&n?XgfFv8+Ci<9vt3McAAcI0Pi7&YhFDWRyT zuYsjk_L9?^jWd?U`201k^Ng&;1n1|F842)GrD)kh6E0J|)(pfOovz$ol;drlncBl> zGsX(MmqPK=@=x!OV5S6FG9Hv!*?J71I>p9T4fr0fJtdJYccbj&2eGt75m~fYf@rI4 z^%<+_Pu}Vlb*vT3P`e~~G?|Fb`~g6QGH+^CNOq=x=N>jSbLXSb=$6Nx&{)o5VN+|? zlw8K1(lCz$(NUA<^0gR8DO^tQ-&K=DYo1_vTWsSsmh zphuB?Z#v5-`2YhVZX~V>s3g1EoLp14skK?7`A?wJX0A<1XP+&!g)A_{a{qI@WAeGm zM3y)YF1wB#u#IXdXTRa`un?aHPJ$VFj0c@kZwSKj&6mlP5@dMg>iEW&Dn7@)os(7e z1eIk&PI6~Vy+Jlfoh`Z*Hq?`7l9gmQiS@hl*`I zo0Zeg{J-y0n|!XsnU_QNO^TFPfRz@)dc9yA2PN@YVv zXa)dyqvLF?*0>PQyHc(id=x%E{~q{*m|U}1IfGcVX{?2roj~!Qx);418Znh_ZV@u; z>#Z50hwP+gPh3M!&^=C42t%Ge=TJ`#1$%N=D82?=CRIlhe_~l-0Dsyj?dEXW#s6)m zt!c9PylctI1FsjOi)3yC9R&|k$&pb}sU?ahGJoU5coi&ldqk0M`< z$F(LA2c1_waJUc=D*T;DQdOAd{y<7}s1{uH8MId}5o_BG8QqM^hg%YW0(`iy6s9hD z%ey~0?1h$&$SI+p*t&i*C{!az^QSw$ah}$-HoLpVfXBmu{QIV1_M&6)=%(s=liP&s zK~dCv8JwkM$GPJ*gG;PXA>`pxhvYv)+q!I7u2GOL6C4$^`50M2$bvRk9n!1cH4VXM zPbdj7cqT(hwri7dVRcTm`8^3BWBYv#qNIoaLryp*el@Vym%LjjYexCO;`3j7`J)#y z+W~qn<6{cBJm-rR%SC^eT6^$~4eb!5^nX-*&~EZ3hcb}diMijmP^LT!N#MLqygC-u z3fE4bcoY=Lch|4lmRPISN<|#1Mg5GeXW>i#@wh_N3}ZAW>$eS1K}~}L(!bQ4X-$OJ zYOM}&VDsBxpjrjW?e1oIF)z(nr6EhhswaEXMcEf;iXugrhi(6puFl`F+|WZVu8(Ok z1*T|%1)SX@!cD+n^U4?sp!bsot4Bj?cfuZA za|F30@qSJfyQ4bA`#Em>k<5UOeWCcd)AWJs$Q6qDx0=mi=sBX10V%qVjS|D3e>K>| zyG|uxs;TXF^3?&=ji}Q}#aDxoddv$LWQ-Stw}zD$Rd`(G68a2}Pl!V1PfV%Y(dF`` zs)DwaADqP?ynf)!1J|~w1NCCPu*R9Ft0mtw9p|gc(r(vs4ZW5?;(YpDfR4HUILl(v zLw&el!^oe?;A1GBW(dmrd|wRl>rEw?a>^QZ@_~R5a|ez6k=Pn`?^F)zRYqqGUdNFo zD5p49-O`cYg}guLVL2iR9~@3B?MMJB&GSYXyw-{3N&4d%f!ZU~x=R7`_i1G09M~!w zu9Do|AYO(D2N#}ztEppq`kGrAb<%Nu6Yp4DMLKnV%*+y+f0Y70iYJr|$6qdc0SF~= z`Y3PsuMfa@{VfH`8fqf7ykp$MMYB6Xk>V{rH-xiokLb&Dd;tirHyR~*bTGiN`19?z zewFbo=i0fxVhvlYF2(n@+}~Lq)ZD3~2GnK0c*oq7*S4R@CYBOyR8(nx&N|~|I6YQL zNOJwCid?Qe))RC|9=}|0gm;H)}C5HyUpp zrIGXBEywn6WrU7}X6dSlXNMEtKMjV?xQ1@tE(Gib&?EcAF-}noa9Su})9?u8l9qJ( z+Im%oIg_r~L=#XznMPs(bVEI{XoKN3#$~Q4!vaSo-F-tZl=^{hB=LBi5eALIy%u_e z1|GI5HSOmma~DtUcyhn++)GnwT}yy##nN-fN2z6SQ6NP^mL@kpT&t&_(07vQj$|o` z3~nNl#nQXNe&fFW!BBX-QR^{3b*YV6PX z7%X4IsVqu2A7lQ(ncY7HdkZ9wR39$(<{ry(Xqb(MQ~wxw}XHJ zt_5Q2C>l4${-Zy>^EX!j(+V>{cii54YOLv#;qiJWRX9nuGhxHZqsyA93vl=^W`>EH zmhq=b{4qjJGzpNDxN|hAeI{flYkwGfFezM5rQ{Rw*!! z3ZGA^6;Tm{86=-IsU9(v8Y*+eHrPx|fLqqwhQwMqtBL$ScX{V^I)HocAtOJ-4i ze*#F&%4&3*(R>NH^_2;^k$e2S;pG5KR*%Yh^ioRPR4wV6M*_tBJyUL^)^L>Kff+uxu}-yVA|%mpWwp*7dblc+C}gG>;gcFF(roW8Rh!_Zn}D-0$UuDxz)|M_>I zHS*>A(QP_cf5E~;@`_>aQVPw5iYZtbR(>a04Dckc21)9S%}o$_i7q2lwmUN^49`^u z8tH7RWO;S-_DnV6%X0w-@{a74)w&N~yOW^yFwb`13$xYtTv-{voEqOlwR_VBhIzyy zZzh&vR2%@v7vBajM#AFp2{~tyxBuTyhfQ<$=lA{OOIk-Z5cOx@STr;F9bZoUyv_3B z)Qo;(A$2cUdRj@lCgB&j<}*Z9O6EvnogfA{7qKno;zy#PJE0jH%;{e1SrtZ@TA^3% ze>phz;qud4;x$8wem@G~B4OTVTjo4oHfKaE=;!=8{x#w{r}2`Yof0Zl#D=O1SOgvaMY2VN)7pp26QjjtriSB z=EC|~`jv^XkM@Ki4zNJwx~S*8sOP?D;+;f+l=>N|EM#4JP>SF%F}vVOJxqw31=<)G5PLC@mOW`82STcPrYLcz+z8`zjz+p=X2m^)mU$7_x|k6*51^gTQmg6n7{qxzbHOa z<#u~O)%n(1;x!Am{x&&v>T;wRJLgAXR^ONqB2CR;1N;mQ7h zB7Sp<&`JGwGjIryg>CD1R%_S3)N5qo)#b^m?Jb(Ums>WA>zuH1$Ud@T!AR&PAYG<2 zEf_os)zgG3F%#Mv(in15VUs=81!*$!`GVMb@8(wcjrKwOTdsu}bf%DScKhG3Z}?~* z0%Rc#FdUHybmZZKXry>q#p`^w0D9)S2^Ih}Jjd&`(kdoRsU; zZW5PBP7j<{!R~U8FY73AmtW46z{#3mbYbGEU?7g2WAa1ekFTV6#0sUS*N=ZhbQ7RK zQqqDRt)j{%0Df{K1(jH}>JPl7pSh;eyFRqoy|HBWL%acOa47`X81~NCu zX9oDJ+e#+$xukz0SBthECp|Tc>`}Z95K1OhSd&;R@jd2ZVj*GatA!-X6?$>!Yq`<; znS7q7v~TrL9A9tHAMJ1G3G2OX@Olk-{y17+jgmi}U2ZKCk!)pPT&PtL&ugbu;%+a| zv(c9G?PGJcjuG8h?d`%9}*YVYEf9LMoa&>lhehNBdhY_#-+C{I-U z+!<87dCZ|#VQlG=tYSt#o&6P~pZ);+ z@`k->%6WA_<`jF6LP_fW*8nIJfQ*F!C{hcOxbjX%chYhLgsI%2FP)%z8_RDEsKdie zPOP62y<|<}f2+dAe&DX`qC=PJ%TlRqP_N0X4 z8Y&*Ze5EAEOwuJ1NdoK-ZAPj16ZKGw_xH=&k{-KJYWmPH;gs%bB`Ka-4B##%dil6?bMtAGWe;1w#<*&qau(N76p3Jn3HqmU z2K;%HsSfGHE*%U3T-J}N{`zmcx&G!eX^BOE+)Kk=X1))VZ)?LC6pamky%*S6VeG~7 zqlPZyARl*HkPYuTLeYI>4|OnJ7_zlg$L|Y+t9Amt-8>qG^{_JzWJiuAPGxS^mxu$< zAH=oXC-iXu@_kM|LsbTWS_pG|bSu5Xup>TrJUfsiFAAE{HV>)p`PmVpVRo52l)^wC zkAYlcheI3*ZVUAf5UWDrW;r7d{W_f)wD`zIEXO3HATcL@Y zA+b@6B-6tnA6QmhNVYmXod&YfubbEd=;GCrmm4#j@)+I(S!ces0V(=U=k?vJx!2}j zc><_}Q{G+9%s=q0PV?Z^Nu_3>ysl+*N#d8E$h^t$s{x|~J0ncJ zIo~=WXqy0@P01N;8g|vecMtiDZuI~_$EIEi$ddF2R)TN_(c)d_oY8SN;e&S+yG>%u(g(Z)DGhGlP>KktRJa*!xbn}wg{rW8?5hXrgR?smG3LzV%|qG zXx#YkpBDbWrvv;GvF5Y(h`S+RbmqMF`pfW+1d1&Z>ugccs)MLNb_Xv?eOb_8C^Gx> z^&y)W*AD`4xn`PGNO7IxFL9fnw3K0q)RSq<3mn3`CRqt8@=AHuA!%Pq6bR(KOLzWrtWwYG z*>g7&GqCH817A(8=+IT?Hf^IFhJ_6N!FG~!y#|oyE86QK3#Z1M^_BB~n<5mXfZZFq zW&r|BV)k2IxNB)+MCW+6o2Q^64nl3njv@#+#Tdks+U8N8icmc;7wRe05z5y;yke{m1E& zk0~Q}z?nC2Di5M4-BhyWr3Miny0f@}XBLqAcc{i+Q2%iV@Hf1w)cP*43$B^v4f85% zcy0t%&67TC6;7dZPWix}e=;8`<ZrkUG-Lp@DnDNtyu)?Jmh!|%@&Kvh z$x|T%sCR56o?d%sfHR_?XaW$cjkJ8d+)SU2g0ve4H7(yNk1#-`WB@M~XyN#n^=iie2uXe{d-OTA*{Ql%z*OtGd=r`EjdZrj(Y>ndd$&fR1w}O} zw*H3AehTwAhh_;GL{l9H&e$Wc{RFi$?^!e5+9?dm9;1dl+WSO^8*$ zG46#TOsGz)iAJ#j@};=27!%WI?kcJ=Ly0^s=6IY|*~Mt?6)QCX?cq|Tt4{h<$Gx!^ zbJY#x!=^XOqcK42jhFZWOYez?_!tUg9Em=S^Zi>3IiF}1AhGIfpztqE1AKNGZxVPp z8xss4`V3KK-cVL+u=>G2+XW_6`?e;SZn!2sy_qgJ-=G}tV zw)d2mfIKtnanrKxC*jMeqSk&ymtZtnWy~m~+||Q}o>6Zh*@V<4`(hj5 zMZGAED7h7qRe)13Cq^rUrrt)E)nh%y-T^_Y>#SLY)hnCGX+zjJ_0 zk;4GcV{auWwe#_nn;EqZq>|HxQb@<%dW!=JrJ~CctmWq(jqb)CCH%8N(pQB#pn497l2Tt8WT%}-%=JuFmi>j&-=>l0yr=x5@_nr;M*p^RKzhk0 z`$%x+=141Nn98NetD0$`>H3!FAkR*gkwh&YrU4%_nPzYa)%a6xz5Vn4N(&A$UH9(E zxdlX`Px))I{odg7U~2;apBgG~2cO4Hjj^4iHqyoPU#r$Fd%v_(uSUl)V&*87~e zS%o^zX^9g6aRug|SF=s245Qm+Nj_K#k=jk_xBwC#6@}Ij7&@B&u-i9f9ogvR+-tlg ztV1iS>OlHw(#`(*Q)W``IOcq`aYa*Cq$wv?<2DFl&bNLcRG)w<=WDb7ZmWdb}ovQ!ewF`^W$7^7Y4zE^bWjqNsD!io`Jj-Q5P|@Jx6SNOv7;XSL?yZ><3K08F1M=wWb}7>OBxCw zoEN9Yc&Ngp0c1atM!#JmbwOuS2dcfttpL|vA3Z?H>90K&{C@qS+pwR83ZZoCt!HVr z*o8dA$x56T$}?QjWqczHuuLK)v_0l8;;#!wMvyzT3k4|r9euV;a!iN(RV;B)FFIq#Uf+*WX_A*<$iz-LP8(EgG zP_j=eaZzn>YF>Jm))5OIt|Lft7E#I@9uVu`t2NS>x|c>TtEse5#4PdfYmT(sdhkx$q0@z~%^zCI>hH;p%s!Dglw~9G%Qzk^^?F(&4 z`6OToU@9t91hD@UA3HGFSy~-T(W5N zX}A>Pi~e}Fo3hBC?W$ARW^_%vFu$cg>yeeIv?H^<#<}hNy$TFj_)h~5T*KwG30DW@ z3o@xllT&QD@p?Bh^^{7GbVhpu1ENeC`HKY0RQ~&dqW#sQe*Ka>)>S z%LNXf9LnQ|fN-VFyD?*pV2^Ho<8^tVSnZVA=3xravRczWHp3UiDq zr&FTc`I~faQGGe#`QoSdtAQy-W*rKBR`n)zEC(fs)g=%y%jM>efo{eFr85|`iGRp+Ewy;^3z3=HK$$zG{y6h0)|B!D#!C70eCk{#AIoWG@A=A zJ);yr546VGa@?Y}L640rj9(Qr>TUmgQNkQ@}H0+fFGF%wml=$M;bTlqur>19?V3F>s=mIi1NzYd3&R$H83 z#zs*4kY$`zEiT(u6JL)bt$M0pUB`6{i+JLO2DDvKfv?zJ#W7{>#(k3dm5IBkg{t|Y z8WhHw4}_hRqMH%)A}Eev6o^R*)TmMGbVW&K%hsdf@@Yxem&8?6wFKy%Ws95Rkg+3q zUY|R8GMu%jNusX*$_OClILLTMW)0eB)0IRz_OriNzbWg-neQ|ZpPBzpH$LnJbjpYScTspGg<3I$v7<<-?q)zy^{w>b2# z=x+VgTZD@wJ`4~P;LhAFr>sPJ>|M*-zoxQ%UF#Lw(tHRUFgkp6n2ehjvWrVnd>*%8 zgaNQCurJh3MVTF+EyTK{>J(j+cofTe=(up+D$3 zX=NK(3jY|;diSRbhh!A;#BRS>o{Wh7_JL&uOw7TB4$lghaoKT3LHMwZhGNPcRGmzE0)& zxlpgMsq1+q|D@)?mt6It1zPVBS0Pmxl*Wa>(i6L-VU05Duq6M&Wfc4wd@g=GB(Xl-QK!5pe}~izt6SgqL~+z#2g;&?TqI|j!PYB!B2&PP;Z4Ar8|PSy ziYXd2RH-Lv534_#mz9?2|7i6=x|~GiJe$TNj!R%)F3QUJKIUW*kjgK+=1u>IoGfb` zY;7f5cUB!tqm!>w|Bvl8B}V;#g0g&?u-*i-%ou|NnYr3uTS(|}GeK!RL6J_b1gc`_ z$9IN-NU&Dm~?K3#S>;E!2#Ny5r3?;SC^NQLP0A6?qjNYYC&> z%1dlNOn8h$0&0Oo`tM22G(`Z!AKvL+3oIqNfG=t5bjRi$YUDOF&@~N1(Jm3x9jiD} zmEG3{U7ulj04nc6MD+apqE%AiHhgaZ$-;iD!c3YsPBj@Oh ztp4rUqHk;#<-n=O_~!9CN~5CvMH3c&H&fKCZa{Mz1oyi>#HVxPdZIgYmpw2-r4L01&0hOta=){_ zD;7YgqRq}BoSL-LY8bU77g3$q`|$Jc2R=corcR7t_$9BnRU!+&GEHtW5o5ad#p#H+ zUPHYtX6j#gq7hSMd$)}mRG~>?njX^T=pje`>v_T$`dv%NowL#xk8PAbXmiAmr}5GU z#$25mE{wW1n(_FETG_?)v#)>asJso`KHfKHtz$5OvnHq)BpOfj_Sw8lu8fI!5EBz4 z2QL^scN=Ay&)E!}v%GOh1eWeS-U;>M8?Q^OYBmvUf*}*0+C%TeNsXvweknAq8FBvs z;Id1KtZ4wWE$p1fbCsPYjTv6~&*V=#S?pQc93a&YW$8uL*{Ur0Jm30h9`4Ze4N}=X^R~9q% zc+7nmi@rQw?Q6R`_Nr=}gY;Hfh`3y3W}Ot?k{mGqwvh78GJJ)6Sp#Io1U#f@Q8bB;slqBZrh zZnPiCx{B5Izv%+}cv42d&4FrG90Kp2p3q0%G4kli+*^U9OM8F{uOMH#H#+n;x`XMt zxpBlL@JrLqnOW--qLL;j4NnM2!-fxeRl8r_2_siLo1;Z+QsvUHW15kCH*`FgV2`meaxtw>4h@Fi_QpafGW|x#long=M3jFMKAv*m8-?i%qEP&ysTQG=e^KCSGekv2 z1VP11#lX(a4sTDHBOQVEGzQ<2m^C<`Nr+9uM#hR?*@aNy)I{&MaY*}q%%$r>*l z=c$h2cE}(AeLnkxnuTdoS&aSkJPyU7Wj{V_fBk`~t^%MANay^Nev(z?R`v{iUvAV) z=9D~noq9X(>X%D{F}loJ0H3cNXEs5Xp8VPEKmvFR21l{3pa4CZwojUJItO6ciNF0jEQKGZmgc;7#xqnr zK4^UeP1JGZ+hC=3%B4m4FjKmdF7Lc4qB!@q=gLdSVx;gikHcldn%PJUdL(6+Y& z6t$!K+JfW)$z)@7`}jzEuuSJIyZt>;jdPaI)L~{f2hvZRw&E7B_JgdS$qBea(y*KP zk_?Zf&w^dv$d4m|db9%I$_x{6NcmGKb6Es*yQX^^X`S?+PgQ1F6{$Ym1o7$S-6ah* zJx4>-XH_&1U^4w&z-BBoJcz=_g-!tY8#(6riIt(tG`;BBF9mF|h!4rmpZN>BaRJ}3 zDzAlmxZ3{>(3?5+>ZC^|_FvjASfaR#|7|Adxo^)QbeLgB8 z{g1_nm&}*>$Pe~2Z8xF5jq+?-5-uY;5AyPq6Ls1o&p?~p66IT{55kiw;-NeS`QD^m zk+ZQtWDulNaejUfDeAo!=cEnvS}oI5WOA&%d4E4+U_l4;JV=10|3zs6N$Haxd5Od+%jhLLFu$Tbj%t6 zx_XQP;GqSjdeHfgsBT8g8Wc`pWaG?da*s0;0AI0JdB{1jC6apG%n9fbYYFutfo^pV`f?fxZaxXx7yze|`cq0R z#=w<}+8c5deqgqa1CJ~@*5B9Et*He5PF*r}wa__-L84xPd#f%YpTz3|ugtD5*i5U%6(zBhvH3sboKXA%Fis_g%b2OKw#iPUG11RK$6rEp94fiVQzL8`b-x8-Bl4P5J zQV=1LVn9@V^uDs8siB4v3%|{ddttyPW|mwqzKe`k-5Vxq5)u^bA(8%DD5Mfs^&w^6E8P>retyg0@0Iprj3_7cYJ8FT`CTRs>JdEYzEWkz9g4 z3Ir|$hZ>HNSp1THiZ*8!0W&mLHJ(z^a5YG|pi9{{qbMrWU~*D0uf` znwJx!G*04+w+f%MBA<>aE4qxI$w4!KyA$$?UZvO~wwfc-(g3F~yJ<~fiG%(L>I_H} zkrh-6w~2{$cCko!jL9rs$@Jr=ubni|!{#I!VfbGr#NFofQm2n6lkIB)+V?w5n|{Mr z-aVj}lYKBNq%wJ>o*S!c$a)_KX}GJRrlNdH@s^5;nugK}$gjO3Hoz8NasQNHWKe(u zu0C|*4V@fKLZOBau|z|jrPK0~kAp2=7kBCd8JfCn0J^GP8dh=Y3okqJur+jX?E$fl zZu=tj=N1Rrfct@BmRNC@94>8~`P-KUq(ru9qTB|!em$c4FAjLRT+MvEeIlXq^STw$ zc@vl&Bm9`jyCOWc>O9zO%*y3CG5>H`lrAlxWSjR{KGsYnZY_IoOLi5GqixM37amM* z2NnV&V(TSuZ#Tr zn=Z1<2B>C3+Kyl*WwQ=w_98y;CmWFMs~DhduF5T;VZak6Y0S^7X@aAxu8*4rJPFs{ zHCTN|G>Awsqqv3XbAw~U^2udOJiCnQ`kP82hOJsYomVD=oolADvbs!{lTLTnMjB2#)?RXUUV z)EWSIWj5j)yquTh%kf+HKVuS)_kmHu38j!8d0rn*&s{>kn??Q70d9;u;mWCX?DqQ+cqSj=3o<@C4hK_{j zE&EsIxzhh7lL~U6bt0?Y_K;h1mu?M3Iw6R(aU9eSt^K$*mzUK@>;b>^lz&_^s;jiS>esWbG!Wbk}Ns-5yk)`T8`7eT@EBilN(! zeQQ4Ar;8bfEiFoWXZph5Um9K>^?*!h${SN+XT{^uAiEf>@pG+g~V8bL0(H(#cZ!fLoS zuX1lSUD29l4??*d0Z{8c!8>mjmi5B6LP~~!Exf4lg?6|M$?upwqWa~>HsCXQt%cvk zQ@Ozfhr3h#(BnQrHajoelrhSk2gd&~RdzM8TC0KugV6D+d_?~d&U%#2pf*_z4c0m& z*2Z_g?M#bsEsdow8(wP>d+26L694f~dk>vB$Sj_vFiu-780+HuSE7t%FlpHh zr3txiD)+~RE?#hpj?(4N+ipiyNjMqMZ}ARgPoEXEmgA%TV@KQ$$*2(9d2bf)6JKRW zJB}Yqr1j}_ooV+`)L&>f+eHHTfZwlKHT<6}HDCY}#(LQ$iB6ft2{wsOej|S-2ILYb zXw!(h;8J_MC1MS7tcVjf`f(be2Q!){>Tq9%n@L=PUKkIilJODUV>n=u50T;xP#eC= zFS@IFOMzO{!sl-#Z72nqUV_R$138zOzy<=Kg& z0>~Rp+xV|`sjrs*$gpBcW!zb{awc3X*>o5yt9?Ka)*X+( z9NLGRf9xVf86{Na3;JTrdPaQ{OP}>)$OBAiotKdkCX>4k?vrKtOcg-+bi@p=8gS*6e}2u&7^bcu+zTNjjS6sdq}_J0W}-9>B6`mNi2Jam%eB@;b+pwLIJf4%k>_r$ zP!^X;Z*Tl*EJ7(I@$%tGed^cwS^!v+pONIRPOj~j)R*vY-b(l`qGDMlN2~-kJPXHw zMuT&SFk@c$mV&gzdiA2U!J^XR9s?|Wivd)`cgz5X9!?7osMMF5^Vwd-d=6Z7GuMx} zjAUVX07} zlS$U;S`Ek0y_#N4r1&$et=&22E@XjeOXT8!LCu@IcT{mR_*d$j&}2GFUq?z+K4+H` zzG^2JurN~chgdl~=LKt~RQoy*SwhjeJybt%+(K5%Ee&d405X}H*Atr({&h)(liFny z;#iiv=*x`DDa$sEL~?gh0zFn?93&t^-{a1=)Yiim=8I1Ge_-}FwNcEd#$=wE$H!Ow zfX2Mx%Cu1lV@vZ3d1KG+>*+j&mmeLky(@XQbNcJ=L-S^+vA0okd~sWf=R<2Y05>LS zij^Gd?R`D9Vrn3fg6jFwg(HdJ;E-_s1;`ngp@nA2@_Et*`!1NV{g)Be8 zAEj8%eB;HjNsX4fhyuh`s|ugPTE43L)V^1i1&^)3aNSj39^{d*fcYl?#aTko&wD~t zOa|u-Wryq0YKdu=b@2FJ+EJNL=}}v*fd;fDq_G6xxI&WRL~;(GDv1QcN57)XYFmvO zfR`p9rw=qa&Y*e`bhy@5-t?ED->p5i2NlKp1(sQ#Msd=(AJj$7@~PTQVV+<}{g`Ex z4kP?}#b-ZbG~ePa`=>+G#BX*qX&cZh`&6{V2*sCAK+1U_Ja)?1UTjk^zacMr%1ce^ zy<5k^lirTQ@8K^$cw^wf!p#fl^pwwWCxBY>uA!kGdp4Q-(E9HN4nvka40Pm&VY=>B zsxTe^!%cG?VOve!cq?7ot-|MZ&sxqd*8B2pVQL_E$}Dd?FRU1>yorLDl^1?>Mj26l z$M}B3KxGqB-@o3>5&a4Ww;z}qdjvy55us;l61-u?C=-sbSWG0B)V^_fJE-Op^z^NE z^N~M>-Vl4yF`#%j;jS=~0UG>?{K8o}RHPigw%11;s6zWk-BMKam3v2?$|=?MagICx zwc^Ozvoq3Yu-O(p)iMRcG!d2j$%h7B-JJO$IWh&4#)bjT&&obwt}H10G7`RA5o6gA z=njM(KuX@AlKjRcJ5A-Fv2d&?&>L*w4pIH#jcIp|Mt#u|dl0t#uT*=YNa z9fFku-y!BlxnN`aZdP`=uUOxWjVr>3v%^qq8-E6R<~I&RqdQaeIR~hpvLGypPOldc zDb?@2I#+#UdTl%3-|Jn(*CrMAwu z(_h<%7b-3G@dc@sa)4XW{k3lwZ&SC=kUH@IN>b&CVpyekJk47ERrL8kUE;B6rAPhn z-ox^Kgkdin9w3qZF%p#n#s*7h9yZW702nM^D<&@G-HpXDwqcJO;26hhNb2Z+3Nbvg z$-<>&={BVSXN%f~=GpjwBbzP!EK8~3o> zjWnOXvnC}IC_$U*O=<$rxUFy-K)Yh1>|{I~ijKTl&7PPr1ZGtVJpGN}GQNh?bIp|n z+Ry64dRA*~!ya#wBw^kPbG>ipg12fnuC+A|7(cU=4eQf0nZ9}6 z!V^t_vkZC|;Nj}py{heUK?XDmZmDqL#tkv|mh#r^+~v-f**5PM1D4kHd!z1ZcZS6WpMA4UftQ`=DcE0;x zVs|52+m$IHg4&N*w)Cp>K&O5VFE`Y-Q(zFC7Q&v1B~VX4iBl^Hfv{PWPDRccNj~7) zz7m|+AYmK93X8aiKxW$}1Ia#Z`&og=jvW(W)o01<7^0N}emLi1AMm9teoofypc7B6}U)m^f7Gqr?4v~3Kgq}>XSzjvGP7f02zxPrkPs~Sec%oxMvN5oZ zHNc(QpZ$==F=v?5F$s-_OgP)j2aq;3wQR9OnaYQByNNR8ke|0=qN%Tqu3G~NT(v2XqUC8vWrex zdpht4C9XS|n?H#eGFTHBS$?hd`4N%11@p~%~!SaC)tNy+-n32ryk~Q)QoY75I&hrAK$y$4{?ZiNm}WJI=J9#}Z3c^ZQN0@QZ22Nv+vVn8)k0 zmxONck^fp94DTE0Jcf&_*f|B?n_3Qyw}%s3Er$B(O>{}tcD^mj76i0K2AXSKHRE(X z9su^d_L%`|=Ay~A`FNOm9ix#~LL;}yDvitO(O?;(Q{2flOv?5)_cbR|9|pwZ-XEXUSB&1%zAn`t5}p+FkZT$p^;+LVc1TD5{pY@l;!0mU_!d%(*^zCv)^ui@0XZnXguXJeFDV2pU%{|t%Uk0wgoRj0 zTD0t<+Z#qf9wQrnO{oo78=x@)2-$J{#6i3=7hHf*v@XZ}z!GH^45ZOk9Up@t_H%uz z!htS2>(<1FXBF%WnSeBiHa%8#56lt%z*B?) z3o8>fgWB^p=9gaQb{|%g*Zeo0P%uW z>1jolM|U}~<>MfWqVH~hLGBw0eH@)h!9-YQZc z;yCchueco`(3-;Uo!NPIk z*`N6YlPQ~&v!wlC<_g_`s~X zZ_AQ*YiZ}l7)gye(b;qJgNhn>#fUZ6W-ErctublPpFa>Pp%2vQA#ue^cH<%-kzL+{)#q3II;! z3!WSjj+bf;;WKzYqdR!-dV?WQcg?VL%`iW-w>T`balSQgWF06Z8T7g0rjbvSpPA{a zP*8~l!Yfjt5II;ET?)+i?4Cia8F@Gp`ou0}0G(vWs?2*tmg?|qRu<{ApCsoNHbcL3 z+up08K+y_;{k`NumT52QVTj1BPu=6!u6061@ij|vCB$Qt__vSJo@*t#bZM)upvk0X zQEOwO@q9$Pm#`m#rUJuFGn3iNO{V26%IdldEWZ4M$82ly(O$+?mTDLmLyX)flqH(> zG#}#rz$j%5RmX|qn@f1TLvp_2-M6dx{uPUAx)ocJzz#t)M^sOjQ6$8KU9FuOa1Qj< zFEugaL404swz|lkh?~8ny6<0!aB(8Yc)O6}X^K*xFv6Jd!%O#lZr-LXMCN#XPNA7e z#rc;I!Y!@aLBC=bqz!NH0J67MVIg@`t-FFI(aMW0s^28ZOrEk}fzH@{2{^9#o7GMo z>x6cIidYf$+q4Rm)(c|7ga_k}&G`(M@XJfnJNL#$M^N2@1PVJD3lCeiMZ;3y( zmpdv2KsRn#GplYmm-;>JyQ#j}&({Apw^dBE+o2P8!Ks{dn_vCwVv}3jb=q6g=%_V- zkVg0mYXdwIR9&*N(HMVY- zzokiLnvJGE?jI+;`jHH^+mrLfXm-DPRfIDy0$vx}m z!ZaGsm3~<;3ioX!+?VqnNWF7Su{2zuA@BXm@NJ)n0~nS1E}&)Ys>|VU%$Sd1I5%jg z@7R@XL3;2aA3!=cOt_T(Fv6r4oN(Yf;uDiozeZ7(Ye>>lx?gvsGXbz%OL-$%+?SJ| z5$wxaVFwmmlgHP6JE!e5h?(jXZTJ~Kep$fcMk_0`c%3dZVDpKw>6!CfyyA@Ruwijj z&V^VFR~8L2@RRPr*083mwWp|`=F~&QAk^Y@I-K$1jbeP*wVG2&@=R11n-->YM9uC zL*JVVY&Ftvc2Z58S0}rAt~`X~2^?ckX`P19nMJ)(u2GdhCpzIVw6;AitqJ5Mn-vJV zJFjKv2waF3K8ldOR@6J|C0=!Hj}@5ijrXg8l5i+Obc<~hh|7`~j|rKK8sINBYQl80 zb5skwxRukruxME+|B<6uBF;h+w_}r{R1B99w@3u_Uy;eAvIsmsLG8nW!wsrMl+c&&={y0|$InDJjV*&JyOOf?Vg#%Ya zn2#jx+!@kqc1oRPJR~EH3n`c-PpJFwI|1wm<6W5r#RjAnYH^5z^w$OkPz-5yvL=Wq zqhTfFoR=61?j?Alc1k-eRvW1B9#>kRd>FlAtO?lpw@t(g30cyIOZuc=I7-DE#1yrm z#H)w#e)6&5j$trP*Hg@5A-V5S9S1LGX&!r(??e)oX_#H)?wiYhYTumz)pL3VfR{M^ z?8&ELw5is3xao%)pBKDD`+D{?!H)m$ImkixQ^ zSJoKV*c*cwfZvf45mEjnB~Ucsm}Fk`m;!*1T-}jpWS5vA%G+%(qy}opn>S|_MTrz8 zZhsz)xQcHTNX3Rp&#It+{{v}N0KHuZq=NaJm*z;!Ul+@4c}%#(7^D)DBtA2PmZqU> z!d!`9PYHn=>xNy@%9*YQbKpFt?B135xM`^|%l96pIb+Bxa|~ z63PUt+PH>&#=&BnjyTNVS7`S*3wJeHgANOACPCgt#@Vj&rw~AFzss4wnLjg3&+A= z;z8A9o7P^N=220{>VmfJN&Omr!y0YN6z9){0AeAf2teU5t<+Fo0>;|(%b~zIfde>L zee=X#{^!M)H>m-A6A&iO%s~IqD*<1j={@~`C{4gT#xNNY4Eh=Zne!CpPIpYCc zC?dN?5IIOMmOSwKZ#^t9DQ?b-R7sPMfOQu~r-r%}Dj5ny=beiheKRiyMlzxzK;W$u zb>3*0>h=TY%9OQx%&HRgjO;I&g`Me(4bd->?pQv$k0J415vx3lohma`{hE@LWxNaU z22BzHfR67_4omsV)C(1?!(cgIk-W=I%C^6kYE4^=u-#M{R|6T5xi2bbtds7C1-vZ3 zAOb{ofFM4e`?^alJ*sXZDu>aNYNEXe`$kdk(oMkh_uTj*?HZzE%qYR8)SP4TNjUs_ zO-sa9Us@WGtzC0PfsvD6?v`Ovv4+2kJyb(IlE%$Z;GSH5;Fs$>`ZDQ^x&4; zI+x#?iKO*9^t6pIk3!^2utcbem|S3}*n^?re_HH~mUl9dT;x`dD&ytZtNH6?g=W&KIdvw2xK%(6b}^PeA}|2f`aCXfrAX)L-H{ssz(a7!f-sW8o} z>mRqb2g3*irPF)Ee#7!|S?ymsnDI&c5KEtI*+BtU1b`hBX@*$#jWPOmS$ZZMIOHU% zzmQqxM~*h*FX&Xgoz^c#0m=hS3nz(_Zga|%2{nIp&JRx8o?*9}l?*5W5X=9t;N)k@ z&bZM|qk_EtT%HLCQu*oqwlr0g0N#aHsdN>}L6dJ=YH}c{9H}ch-GZYPsj~2(@@aQN z#Wf)1mui`i-y`+U(B52Jk@by+oXKm>|4Qs?o~AqS>1OOhF!&d}2`uS{X^{83C`{Qj zaf24r&e2tj*n{9!^%t9cynl6*QjagS)8969+-M*^>kV-gaKyr&DH1->pevnAT(n%;R$IaSrfJ_l8@K_5GvkP- z-YiOvD*UGfwta`oExHbU{vFA&3+WPzx_{pO)}X?IiNy366I$H%$lzU$(d9Vb+?>*z zc!{uRq!l2UCd>=6l6Z5=K~+)Pcbas50zF<_%!Y_tB-g4E;ugI3T%o1K64}Lmvx36& zV7Mr+GL20#YQ%kSk~DyROyse;Ahwzqe&jAYT%=y&b1jSNKf0{ZiM$m^ctEN=l{bN* zuf$;HQziWIu$lQ*|8>ZBy&su!$<^!79C|h7s^Y3W!2HrUH@*${jnEf9uOP3w9rCB` zx$OJ$$lfr5$&*xRVI4_+=)Z=4sFL<%Jcw7`3{29J)CSrA^g-w0 zBEQ6nyGij2b4yzFdPwCo#A0*Qg;VaSuUyBMX+%1fJ$vaz7@A)xzB2H{=~^&p#0bn` zg>}ZhAwKJc%ssR1ztid-C&y4O{kWf7HG{C3y3(hLinY!bJ_n$Zq#ONE`|m+hW`8lD zee%S6oxgxz!Q-2UZXj6JxC-!Ykk);Za@GHBrU*a?)QB(-swE7?j6(r9JG=iCu&;T~ zG*(8`OuDHu7gTZw7`rgpvE@m?luj*tp|Dho|g{b;DFy3|m zXcWpZp#3z^apS3||PCqmNiGLK#;Nhc#HC>9t5#LA!YATE zzt_Pfty@wY056OgPke)8^~ZaU{MgSyglXryU)Uf8^DdbWWH0^jfD>?YaI!jS+1bc# zVicZuT*t1{NhgZsA#%a4J4?TFKD$`(F;|9i-fiY-Mb%m8!^RAK{m4W-?JR!WqH4cm zQw(9ZOo2wcHI(lR8!7WLReoWmR>`w&rY>Qb&-ENbPvy<4GDQ9T)TZ;xK0M>MdnLIj zQLKS%5PzcfWw`(i51>owT3Q@5B4~Lw=gDw{sx2m~y;QRbwfwMWGZ@g_nW6vXcuRSb zhHJfJ--GS4jU>s2gw`LZx7EPc=8_=EfX!fi7Vb@nRzwQQW+ zAYvOg)3t(if_|mLj1ZzkA(q5wYdjIQ7#RMu(qxaxpS`!z3GNDctl}dL0m)0Ikjx}N zGI%Bswr@JM-np?ZT-2U&*Xv@-j@r2J#as0`0E}PYi=GgV*M7cOZ}OP&qjlSOo46kR z`m8$Pw+2G|qQt@~i-XPDR)?3X~J+35ILLH6tq2})Fk~kku zE*Bm9F2iojcX3k2ZUwAg%C|{(r9MnyvtrlFRHBer_EXP`=>d~oCtAjOD$8H7r$h9l zhZ4ag9t&&Z>KZLs&s21qOLiFL*MyA1q)qmtu!xnvUBF#38ch(JVNxUYy zg$9KxWLveSULWcE_=Hj-zG#RW)|^#Z`>N!r&l_ew*UD7=&jCIcI8F$tIDu{cRj;@8 zO4p!|Eo}hZ0L3?Jy=7`h7e+-n&x&>)4G{sfT4tmhOiLz0TL=( zJS<0J+LXi9dKwe0ar1NPA!1fIQQZj}?Daw9Ky)xfH>%F9cvC&8(SgPY!5S08G*#5h zhL{p1HZV5Kd|6}Vx@;`Ee6N{|J%-8@5oTt!?U$RDdT_VmQ;D|ywW&arx+c^6Cjj4c zqa4yYuBsR00u7Q|Ve}ZKSsCA3M6dDYYe|_J;&Ukda?#@&vvZhe;p-`+JX%@y%egYK zpy6*jMuWA*yW9LKH1)L*-N^!TBP1FGRXubxqw19L@29a^$TBj_qB5e)FaSbD7~>t( z=VaQSPhNQS1lGnHK1x@$O&p_qe!&bt%f}NA54+~Pg10mu)!(_sJsCaTd_CnGY#j>l z?7XsuQWH`y_EWG+2G>L4u?TbCPdkvZu?hT)AI7VGh^J_X+xspgm+pz3vd>)ugJJbp zOl$%TDjEwI?3l{}8sW8}FvnOb{42dh2pPD|{;s?LHOH1j^|5?^K{U4My)}*Y1sE&Ss(0#)!LHh5m_e~yT*|1 z<^iaB)3hQ(_>rGD#TjmUKDx8`&35GuS$jYOnQ4&sxrA0;$o?U|`xc#YIzpsnr{dMP$L{cu2=t71VifMAlTTyf6VP;iu1Q_WoN>(LVS^bLpBL!f71z!$N7!MBPYRN8!P5RsbscOH^+$FPQDURqhz! zggTCi{GpvzRJF>R9Rr|X{lKe)yq zf@0JaYi!v7AEN1u$`W$!O?_z$b)dmvCW&)XJGh+#*EUeXyCho0I?WqA^eTZaw5~0c z8(O?uY2~!}h=+a!MA98Px%l2F>MrTR_zjlwDp=jO4i~`sv!DAb`N)IfI_~s|4z_g# zdGu@j5b*sH@7MI#;h{VX@YK;>d4vJ2eKEnv!ki$jGM%R*AB3LfQeunvdaN~nx+L=S zn$>19A6Yf(jn7BFtkPz&^MU!etMWnuVJyazjMDLwQL%h=&y9+6($#5QSpPmC3p1w!Uww8gV59eK>97tGi9VP*IvWV&AZ4+%<#{ zPH2{oX(pHN*eZfgRIr@zs**hH(fbSJCoArD`;n~ctG=8_teQxwukbW+XcJBT+uCf* z!9>SPafo;QH%0C!!-_;5?Lq2UXiUtzz&A(Y71-3q|D<9>hV7^Ecp%M7@fQRgsXZ0qjsIm zo}V~!VNV<#P744p)D)k3e3O*|zw-rvAQ8Wm+}xqfJemp z-*jyxi9i_xz52TX=JfC940 zhbMh^wb>LNZX4k)IPOxZey1!IxhuwLa=Sj<0T78je0(>mIlCK@z*YHz7`@0Tf6%yw z4J!N9<-x6I1gBnL1hXsDqfZb%95PhV6mBTKl4ZjSN{WlWIaI`aC|7WzR={09JHySE zM!{OixiH}pKk_@fXFhbPqVIWisE^Tk<_r313Z)Ua}(i}V}^P!+n@Bb~F09I5I*a%XCrcp-N_XDy$0KTWTH zRH;hz-OH1|LXPwybx5a0c6YIk@M4D`^vOUw`>7QA7Plb92R2e;>rbX|p zk*G~Jt7h5Zor(^gFyv`wJ!K8VbtdK@OzoJ#$%gEe`C6Ke{5w~z6+YZCQh@K#_eVkx zY*EI^GfI9IS)1lzj%2yHVf7!R+(u~O3RvjmIlZL2#8S=Kh3Fd=V~a*?*ft~+O_i?f7IzL_iT17QAU?`W&jqRLIb z_bk=jIys0&nlO5BuY}ch+3@xUvV z+MMCH#ov+GR6)12NoXEifas-#yqd?6*<`EAYjaz&nt{@XV;^4cQ;y?Ao%tFTTSgd< zq8>VX^0-1kup6w|1)ztvYEBl&%-j}D2-9gL+@sdaJnXTtTT74=cXEwNr?!OQW~fOc zx70|1evWU@=;K01j3RtYQe@}Ho)??1q8c5GlNU5uxdl_Uly_e4l} zlhPWKH0(8ynG?3VC#eO7nf}EKt3C0~+Ok*6mIT|5VtAa|?y3&nZ)8?lPN17}9JlTd zuPZW0aoFpbAA)5opG9}ic*bnrM;`Gxqb-JNp>pQt?(pV`;zWNYM+q*o^&v4|p^ z9&LPLX`Dpo(eMT)nw^b-ct1uc6auU0GOMj;8|3916nep6-E6v;a-!x)d0hevrS=5uT7J^rFN_NOVn3zSE*uFG{D*)t2`m7B%z4`R(ExG z%=1j5KK!G9NDKheTB7jdm^(mrJT3kArWu~w zrmHu5Ok@}`F&&WyNPUQ>vRX0=f^iyvISaepg@{#3tEX74JDl;>h79xpo@6tlU1g0K zvMVTl46~~Lu=0>2F@~%IGiU}Lq|G>@6%VLBn6ZcYUH?axv&Eq9cYv`)0f^2^pqaWB(%CrTT!3=$QEDeZO~WB5&X&ZMSxe9Vn<&Erreg z#%9+blKW|*vc4eMqn{P*UPZqzc;^WyP^xgw8(O0J={L|^>|2PZ<4MN&ba)8E1+^TVmZE?`DAUJ_r;wJUd_}_fr1B=2c`S}EjdjX zZ8=foWF#uh{> zTATIb3o(SByB}Mah<^!GDi5)uB1krqd?p4d>Y*yx!WMIwWrCDh8oM;o7K?invu-Zb z4M?$Rb4wb`!Z~6@;CY%)@N2KK!ZU&+=^Lp@4?rT$fWN4W_>F;HC~Pts!vQ77Z50N| zuF1ZyX!USBL6J&t&gN7Z(+woa$&#^e3fIq=tSe=sZcf>*GzFM61^uxe_tu*08iY2C zQLBJYdo4wWeZAg(RV=%Y(FcUJd$|a#9pcw+Xsj4g6iTYsq9Q#gj^nXOKJueyx;~Il zdz&Rbx8=}|p4|UBSka3Dg1QCWn%pm5=q`P$vC>CCdW(#?PuUdlAd332E}D(*Ov-rS zHuzLh>EBIT&`K;HitHg_O<|Ef_;BUwYu+i;{dFxXE;nD_bVVtDpZV7Jzf4e5>gD{{N!E>L-%u+k-fpQuD_@mi7L!&}-g@u7TyUOguqVDh>rQlj#s zA$u$UoXs+?o25o|gaIF98 z2yq{uR#oNM$&G)8MZE~Hhxt3XKhstdje~4S<6wK%;z7+!uXcb<{-ibM%GRF<420gn z=R;|}Kv)Uc^<}SV!Un%W-SvNLR-Ni6A%I~b_BI+XSyQc&>It0e(r_M`4}m4kSSvmn zi!pg?dpWz!nhTS7t^HO=0m>`5lYMX#+ z9s9hHU^Z`7AKSz(Jhc=MR*}SW(r~Ayk*m~W@K?sc!#jI}%v9#8P8mHe`4wEForZH- zA&ye-qASqK?pF*T0Dc`iwDo9?(8~qRbk_q`ZDZ={1^wB`jruc@Vz+ znVH$O*z%%_wRR)H8GZT$I$r%UZr_*>^?|)jWLM`H80W&1P3j zDx^nfaJEQdhamk6MtfMe`;sTJ@;(3fh-wN!JDK2^7dJlL!jig6GXW%+6U%e13=5NF zX@8~nN|`VsT}-Xtj)atE&xIHQyHMk2bMiQW$q{P-04jeo-gW+(_|1ia zgdX!RKcycB)_c5|d>p_)ORW`KQLf}jQ zVQhBRY!Lo+Aq4V|0_Gkr8y}BhH^e3--EJqVlX6YxcaOjr9qtyb&!I`~26;&{OJR79 z={JNMc8j*&2^iA4F%l_n^9V~Ehfzp26+I2=HxY${P213hhM8LCHUT3Eh6A{W?MSE z0D4mF0K`stUkf?WmRk~cnv}VnSJsJI31rVNYq1pvsu^F0*A%VF#r6N{#ej{sR=6_3 z?Ch#S!Uue&Vpu7DZ!@8jlq-IveE!EXqdBH=B)u!!1EEmMIskmP(|1of0Kwc*3NM;_ zomE9ap1%ppaY)Iazi5PB)RLG(o@QY;B0_Ba$^EqVUOpJUJ}G*qnIo7f&^k`>r3Ut2 z&vt?sl-m@}AvdHY`2$|XTNi`pGI6L_z;>DYBAV1rVNB6L=i#^18>>hyacDrGMa3@E7 z;Z!eMlSR_=kVg;U+KoaTBwZc3e7HFoLVx1n?A`+X3%4&8f#s*sElNOZWd6Q+jNXz< zo2Alzk|PHk%}@wqn{<(~v~xqrmI~`K56t&zch31d%SveYl1BXv}L~g0q96SW%nL%Uua3}O82jPmgfqXkP`s3 z(X??-4Ec^S&kU)4h>qlVU5D$Q$S6!8Wrm<}09JUyM<44iY379iITT~(P@&8xB+7wj zCsa%l{wEx-`5MUtp;`f>jzB84b5X-5@efcM=5?^?p*G(Pegg>9 zt5`Du|BvLB;b;&B`8@hHld~5?dY{Prpf=lBN?I>z+c3Ys%ItmCGLcVOxdnPGccSrT z!wXKEC5JeHcb`ItN#-ble@h_jy<|?>q+YGHwef4~p1-~q`ZU3s^s(qM6lAI3OpY;- z3K=n%O|+6}7I+d!9adB%p_7mZ3*|0J&7>346rBYqKxky%pQvi0-rKx-aQgy;N*s?xnl$ z+K7dYc5$t52kw?64;}EI)Usng5jJ*Po1`O~F_1R2rodRXvj)nC;6TP}4-otlKZ>HU zm~R8fKfR}ySEn zKv1<`sx+8HoP3aj6qardLgEdPk*Ed}$Mo znULH9{39erv6iCzUib&!-Hy3iqHeAUds4xk1UX&U=@AD~+W3`gUG#Vd)8Tuq9hu^^ zgqN4q6z1tJWB~pb&gB3pD-X)ii7d}avkziE0lnbLS=sQ!csf99h&E>MU zwn{L6D9>3ydr3Wio{CM?)D#09&TvV(vDb3W%>F)3RQ&(j@#Rp#HjEHS21N!E7D*UO0{9bi-6@4zY_)_<{M1 zokJ=6J2WsWx_i8E7VyOh_Dbc@-D`ri--uuTeX4AO zMu5pX-qfI;bDH_Bv~&6l{Pu=-)A1cDPFsC)a5h_rG#aAcO7-MIYmzVNog1(2f>!X0 zl#^dmwEh4OP zGvJY>jyJfVq7Q5fX&kl`j;GtnT8c?QY2oCd%IA6m8_Cn+%dmZn_}GS0Ik0RB{f*x5 zm=eD#3eKdJW7JX$87)%{HCz_tPVsE~a>-vems^q}d#hH|!i9s1@E0$}bf$~Sc*8+0 z!4lt?=8CJM7!M^x_Mvc!g<+Ggdxz@SR7=Dd$&O4WNBq2Pi~(YI(J#E7^jbDJ4nCY| zdU@LxHz!~Lw>L@)n3tvTi^MDcZMSkDSdWl?)ws?4$$IHEUKWchOV!&z%V8)v6{C^5 zqf+hSOnGj*nuw(s?NMxuF`CiyBZ)>(M@jpzlCig)^8!Q6kEse3W{x0=%=*TZxoW6K zjA5nITP-pmMpI1!J|Eb_gnikm_|0|koj!l&v$CC@LsA2p7{pjAC-JrE-m#fu**Nis zpy%mljhTh1j<4LedNBBAWelc-@pVdi__ik_w(R7dW2b*GUkX+x+cz<{gyu~Xbn{Io zOeLAR^E%WdLJm+B^ReR-{2r@K=4ZuSU%~6_TDxCnk2i{8BTt#$pa27fU^c`sT6vlD zqUUX|)d3(L!}E=O$572mhnj`Hd4-dV*kj1Y#lAnZw`$SMvacZ7mQ6KCAU8h@9^Uyl zO4M73GiW>&rahpg4=K4l2LuiplFnoj{0SRAKkYa@^{;Z_KtWR34*uzA)<-;E*2dtS zdax^gsvhNbrPX(pVzmQM{A;4cTYRsw0Jzn@9pm$0|F%@c*4H;%wQP4DORbhsPr#vh zsqgc}*vL_=_YKgRinW4(*R5vHgP``~Y5*Kc3L$^PQ3#?R0$8-Fp-oXO}bV_2RZj#E5ES2t>c{8cjr0Yv%- z=(o>)AB7L-Hfem~Im@Yv;q#?ACfy`4_n%U^#_x8R;xWJ@@o6FvB~xcg9k*-b;cT3D zAJ9*)NiP<)@GnK1o95`H3$}@edT+=>vrr#NBa;|KsU$5o4 z!L>Al+-AdO|LaSVbnnwt@|YKHw2Ys`@*(0f3(WeCdm$mKzF~BZp{oxVF_(b1W@&ee z(_SY_6M7f+PRF+ezUi7h^yBO4rG zjL^QEewu&T-1}$dc^Y4Vyk7{nfmJZ^P;2kKXD0l}+cI%}k*Ay%@iKsFXry?T`E=@h z9S|51zEe7r?2Nw)ztB?EP_ZNZ4ZkC7Y|p%?D>5Y^MKo!}D1^e-G~>d1JZ?#ghQT^B z%PD9a*@TTR=*gkDsTO~%-ADJ&btP&=Y_Sb?V|!SGk_R49;@RNlsaZMEA`R>I7WS%m$)7oWai2~pJbmKOvhXdoIP*1n!{s}gb zWCT}JN=mmfjYh;oD8xJUFFm!q?l*}_G-9)E#(OJ3-2IUzUD$Lg@0zxva5JNK=krB7 zzXplPHfm*-$mf|GGmV?%9UC)kgOySMnG+VIV7KZv^y+OffHut+mr_xR62i}s)OyW; zRq^io1K%W-+kPyLv(x{E^;5#?SB{O6)AICo0RFtEjLeC?XOZROq;3ED*G8ACU$46J zAw$1nsEq;sF<)xYK73=Onc>avx4gJo2n+jN6^%G;R(pgem;b#8c$Nadi$CLs5v)b=d-<>R4N(7B-49M-x6{n8$u6_EEXVBOF@()f#u?;MaT)f!XZBj8uf+l^Rda486vi(gd?v2XQcEaFRsnWi6YTsj|>1akS z)as}`-PgwE8y`)!R-4Q2<0UNJbIrK-8~4MR*Xc=3@L;d8R5M)5SZgHJ+`5ugp6jT6 zTBhTKfT?f`-R(<}5{kAavbHJm+af?ubCKeZG3=#6Ij|78U0PA4#X;QygYu8X+()t8 z$W#YL>RB$&*skaWuW9&{h@z(O}BzX-B55kBu zvg1dFw@+qrIhO>vw}{l(x|0N4f30vlIx5krGh0@DLXb{ol#%ikea`{MLS;mAS-T=a zuj=UidaaYo-O_spN_d2nj6HPDd1TK#NZKjjRstU7#^ay2-2F@#)I#0N;rgKq6M%NV z>oCJKPB7J3rb?~bEK`pUx|*D0ki(U~?9YWr5}(YTi_vDx*2_>6p*CmBG>*tIt*qhV zs^d&S%jS~IxlhKUfXYJ@4)BJX!w_d4^`&{LZCasC69rP;eUpt$&_9hX!U2bpdYunY zCC=cI*^E?V$MG19dXTKrM1&7tCz`zp#|Hb5dTNW;>{}%q{ZjK(a3AZs06_ay9{ESC z>aGK)@O7~5>8y#|oN)*sQHk{}XyLhkzCF_z%nQf~q$7@YBhAO(Ky$?4iZ^=_fN=h5 z$gs4v#t;LvTn5|I7IpYd+yBy39uVDi&NljeM|L|25ZXWc#|}tT_nEu?i`bZN5^l=f z2Tk7s6DqZufxlWgDgPNXbn^Ke1?iO3UMb&wUW4JLg9ba|d%ehh%;SHc;-2kknSP5e zvTkD$>uL?7^2@gIA$d5*9$CmO?{zz%GKM@qiv~}0?#)II602{VW_vU&9J%wc$Bx16 zMx2d^9_=iV5lf8y8xZb+u9r-DbS~*S`#HL*FAdnJ&~EzHWTZiXbFDK?%%SVj#NjR_ z*8#m(y3*6%=cpq>`kNGVPsc)1W>r77*$?qm6q*GoD=+^y9PnWmMJU~@0gdp?BAkeQ z)yUbRX^z5w$wK9S->S8t;oZ<~+K58x1A``B9;yOSb$sOeQ+?-b95AvziBw;!rMEIN z_|A7CCBbgwFgU2nfCPg8#Fs^;FcB(=wRV3^L&v z01P#?odRfZjC+7Cwx^+VW9!{JQs*zv2GvTu4{GZQ;B-b;47Kh?t^(ZavPH-c=#{$K zyuDAh1EAV5T2L@gDF0LX3IKsw(^{4P>{g_-AMP=Vy+l$(WIPpRb-ev-jr=AZ#^uco zC>~l7sJ1l*9p*6)950oa2v5K3*El*ooW}r;5N1#kktcD*zW41Xopv~`%=PEqM=STw zQsv_nk5CX1vXgPR^?&Y+7dQXo=q%itdjCKCY>W;^HxAfnkZyEz!$?V`yBkD5Bc-Kd zfYM#kp)gWfIs^m-5fB?x!1(R^yRNhI2b}A<&YtsrUa$L}Wv5g@+^D7%*zX_{g4{hd z{WMk~F5A!n0JF;u3Xt%*RZtP49-Sl`q{K0WUC)N<39b1J;`kDn2TwgDVjaHL3jSbVf<7Z&>2O=P%OGM1iJSAXcJwOP0; zY|^0PrIircam~@-abccyn)H~!zL$cep}wBz{K)82EEszqE3F z^{4ylht@xC(WnFD5sP~gU^iD2>x@ThA-gkGRx2lz;<>-$~7b(bXb4JLPS zkS*mjE~U*e9eK2yvxj53HF<|QngO(LkWjKjrr1X6v07BRR4@m`{o#$e^plS?8fJZE zjJ{06fw=aSuEpU6(%lyGLpjP^_f&)8}JziDo>(N8dkeNww7#wcRb)J9d zcJI@;A^8iPm*}mLm;6?62M+gJNeCiaXMMmR9K>1PtVIWeZDR(Kkp5#69)Ix79)vAU*11dRuTT#>A6ttBvX>Uzu7!H zqFYf<V3^#>P$0zdLnIg_& zr)*Xsj2fLdxW;C@UEV}(!T#950WcZN8eEcPJBTHD>7Etw>;YizG8z3}JhQQ7A9DF* z8&I)ks(xj&8)hEo$B~{CNZ3&R<%j|+wf<{_-ZAyMWIq`{TjVX|{AHgn71}k;glHr2 zr}B7^F-fE*QMo)B@W=$0zV8&CH5k!IL_cyExEKOdNh{|v<4}cDz?}j!sJ}i>W0Qx0 z@>?bTmDGd(-2Q?Z3*`7l%k?#>9hFLxL?%=f(`~n!PIWS-Gw7UDR8LYoo~!1!0HgZ( zPA}6Cxpz(e;Xz87eY>m&-+5LiuAO70B2FY}+7PQQ)iwyPRw=LLXBTxVW@sDd{qmgZ z+sLT|#4IA?5>TCqq6YI<{lu#0}Nz?qsMZok$r6lqR8_n6)G=IoV02j8GG1Oiv^OLjJq?$=4@48f~BI!INv0UE`r@S`ja zD=6-{Z<5-h~POy?%EjG~bLG@`8wu1DjDzpD@ zAs8U~+}DHh5}*IUPP+%#afZpViFXc{E}y_X-tCeB#y37^#wwyMC+b1cKX-7o6M2Y= zkOkKiYtsh?5o${MO#g&#vo$mwn4`fdJ7XSwK1a3iin0JXwx&Lxtu(0oBuF|zp`spx=1%qS zZ4g_Pc>jglW1riKIbUHllkQt9b^ZEw{Y2&js!?EAO791&tZgY(40|(L`-rtS

    JB zjKGj+Sz4Isd4-S`$i7B9%}RrPGPPp(lpq!HQ&>fV5M>eeR6mPUq^#vBYloQNf*&Sm zW4c+kyh;Xr^`Ig?iM$!&_2my!Y3UbKM}_~t5g+$nCq^T zx@?+KNFUCMvUl0t1vb%P9h9^ElVi8_|-~TUu+0CZ;{2JD9VNXRA5P%zgQd*HG=Qz4VYlW4WB{ zQ==v0vBxedV5s2on#S{0a~nVSYEP#vnWS~i%nDwV9KkH_Q`7M9%gsqZ<~acfCgdMi z&pF?Jz7csf_xi!NpHBu=PU=M44|iDAx>8mxwV0uI_3&U)`ndkH2Cw}3p~$m+_xDNk zJ;cGhw?$#WvR4a$?%~uk05D03$xTg{F{07d;u_KTPQ+x4N4ds^X=E=Cor~lS}VOk zrCZ8oJ@pGcb)HAHy@ArKOnpFh7q07WQ_~amyfk} z3&l&22imguKB-!?cEsP9R#SF*Ebkkm4F|JjdMn1YsaGEU$wiXUQyr+OQd#Aq;A-sF zO(BQ_EIx(X4sXM1$G5P-ftEcK9YgBIr=}=LJG%#^qWt>M8O3|-xAf#VR?o5`F>aGwNN-64fHEZ5;S^dBk*tiPpEQtG znUdD@F`P&d`b2@kV{VyHPY*xwcU~yrOTyl*U)nYpVCCyP_(3LMVeO7az&_fu8m`P3 z+df_E7nV{aQyHUUc{|YQT$RiAV>K>nc>lN z)~w(1^qABt&kF(Jl@W$Jp=R7sBV<5W^5y1!zP#R}E7WTI51GT^pemPqhJ#QFuJv znb9~)J6-t1PKMtVy7V+QUBOLQ&gdbreI)}6pwG!Bu2NRLYzR%eXTmH<_!GVEpv!P( zc}e?+0}B}(=A}-j7YP_bH~{W)6F>ThL}T1;+4S#_E&$V}Z;?Ga?{mYB-l1CU!h*iJ zXyVZP$!aGtJ(7_W>qIoTE7#7r<66ve>}S<1Uj(tnO{z)vLaIhz{fC9&hZvXZ@62Y$ zVqsgPdhXXwl_Dd285sw!^8o2iv)t+|bEox6wo5s1jYQPFGQ8Oo6{vrp*QFd~orMBq zZo@f%@x_9U&=&~Z`!2Ck#s1_>aStnz)qbB=OtWHPJ06U+y%7C$6!#B?))x_cZvZ);M>Vz3=Nu{LAAt~)j; zD+@=9WJ?RH+#gslc@s|i$r+7Kd7$o^j+?e`ppy_vRg{qWJ7=J>r6jyU0{B;_E+JDN zGb|VcWGh^ux@pq6)Y+V92DdF&IVOlMz2qM8;v6~zyzA^ccet6WZSF#}PodQq^^x5{ zqq~3SQqFVH8k1Ch$SVruF(}w3v?F$sbW7YwL(Gw6)$=1AU8YRQ1yM=8ms?j1qc=hv zg}eK_L#gZO!<%cKs{Z!P82NXjKIBt*oE~yb#(Z4?aPdB zf?~zXAwVL-{6|GDHREBK$d0(CX#~!6B>+sQzS3+=0m)ojwMq#F!2cq*5Rb7L1lLoX zf*V4v7<7)%MC85f3~9^#!=@#ffQ!maQ6{L%q3(y#i@;wj*@++*F4?@tR3jkLkId!f zH^^hH&ZNff=E$U$NUM#BV=egViRqTnbxlu&s*KVa-9SbIRrs2P;HC_e5yM*e9T3_4 z;68RXtuCLx4J#9BBYK$eL^*+i_kG3_wPb`feqAa$xM)zS=x$bRLo!lG#wFO}^%=$V zcd^D#+bY>X&~6=E?t=MJnU!14u3L7-<;r>UgE~bq5raMTGLled$MVEFc{AK`$S1+N z@L>INH2HKxRi{l)XK_6kDa7K+q-58seB&8@K3n@Lt23=RIhr@tN#tR!DP^hQlQ?o? zj8rTE1E!neiKlt_&RGZ&8rlG%GNFBuV##SQ_SJ6;&H`FGG*Uz7F#Tc^YbBmMA9IYq zDKswOhBa{?`_nb=B*efDkVr!#^P05wQHu;&|GFBi&*#d+|9NACb`Bq7k^Bj%M5gqa zwd{=y<1&{`yWgMn9Ha9ONt&AsUWgGBJ~2b*`_>hI+I=YXZVaQD z^Oub2kGd~=3&1AozDye(6f@TIkGsCG07MSky`d`O(1Dpy{VMamkXxqz%6Hxr)e^Am z8sl3MKJ5}#^vNQ20J>5>3y4UOmw#00xHiAn8wXt`QtBgCOH@>@bPfp2LHW_EvR?P` z`S_HE$1g5(J!Gu$0+VThxqY$>hN48V#*dD9vLef|(Lgi_AljC>>(Ru3osEE-}|MkM=|pk)p6p*Vi#BfN73UCc4;AsJUhleAXidwKdKs~2u# zU2n;0cTNhJ!RavCuQb^umxCvd=flG{$dAlZT>5&2W{Pgwkq5sA4BNmg(q9CDYPZLE z=`@(m3~EhZ&baD9!aQPA=s6TTAoNx6xckjYCcX@8#i|JXJiL&3m(%#nnvf;ImxEyE zCo#*}z8DEeS+|b4dr9Yl?4|OZ!OUI8`*-FB<%@;hF?}u2UP`i#qC;=)Rp5cdlHl0C=+AEC!`GGNlR!< zO;i<@XrAk3|8?2%cfqf05~8adl&GVvf(k8IcV-Ew26NJH)wa>Taj}-K#OS=2 zRa-2lO_%K_e*yb?@a9+cb z#EF>XLI)p-1LP7F+xF`!kMj4|>>VKSnj7!rOeVcb(PTG@TooSb?>Fezu_PWt@ zq^vC1*={%3Rl(@hG-tny{H(ZLL3r7Kf-=$?XTM39&+MWtCDLF2dA5c}R>g}TqTele z?bG}T0TL_fCc9_eZReVJs9v^e9@i}L8u)9LSZV*3%X#-%VG1$iA+puEK^i<|~)113E z`2t3vT7?j#18f&x=wEDmYD{bsToPDS^w+;spApC>6v ze&YfiJNcHHF{`BdByk zRP1DlPhg}`eASG^yEx#5SMb$d#<2*bLOmh-Es|M>TI2mw`Qqk3sqXjwimq;X>beMd z0`TSYq#f~>H_mU9a{8ZHosrJArU6=|Dn>-o-R7Dc+g7y*GPf}*Y_Mwh-%JDC%oV}3ux32Xm&=T zK(&)uxhn}un9D)8;p8ZRUDMGO3!zbD63i}I{vh=`F9Z4~m8AL67X2})w#=8=Bj??y2ztirFO#}({Ge0?Z^c;Iqi7ZebyZ!`;m8qpNVmZAbE)b*aOxCYn zxx@&wY_;aYk}jvAa8;*fudbW^<*;c&>kUiVNB8yR8Ndwh@CZhhf7b_&K-*Ki-QQulf@pv<$lldgEgx_rLU~-H+nJnZZ7`w& zg%gd^ZyKl#yvz)-V$pj*;UNo9%gMb%6L5CpGghTy3CW^|oZESjU8WcB5>ZC^EK!;l z#V_Lcf+LeQ&`>V$H6vVOA%+{KzVaAv9y*cZiMLyvqzsb2o^B)eP3hSr!kHUTvgtrB z6WM=fs0&eP`*cQIRm&bs`u1aJdM#Vh;i7CsgHv5q zbLcvH(`Cu}>7jjZcTZn$Pj_bvkV(xl2m*j<71#Fgd3n_<`%JLaXfI_DoUG zU)SodwNfJtKSyg)hVN;z(}?^tb~SDTEL`!__fn1DIe=>~of&Qq_~tu2`~AdrIHQ~m zYgnUT=_#3cN&fR&pZMVGrHhjXr?P;|xTb&DOTvRUiJ9)N%=w2x_kpL8=*2tO@dB!DkqycynXxP`ybY48E8de+2dx>TZ>jnFh71y}HS!(g>qiO< z5OXZ;l-)YcjM!)3MQEsmUwZaq%t3Xz6dAPb*{a2z2fu)OC3MqLjD{e-v*dq>&oXAY30J$*|TJkWdCZ`9sG!^Ni!Vp`vevE9&f$*Ld5t zOkBu*10i9NrY0f51|i->e}P$pryc8##9x5HO1X?pTJ0ir>+QxBG_qv@>BT8wp9RgBVyfNvR*x$zmJ*Q=aqbBv*CbU|0b{cz6(!qRAa75S!xykDqVR zi(@K-o=vRtIa!slO@eCp*cYrvJyml6s`;sG>rcJ^&PdFBjq3`kAljObc+_tDhPln+ za^YCq*NUejfWcmgg-yh?as#Wf#J;U@P=;L9U+nP)o#yal3Sjrm^$_?i%N@P$ZmT-? zbM&E$<6)rCt()zlymeoP^3Tu9W&T@DxVfgN(Z*M!jpEyYQ*O@97pko+0Eq85g_tn$ zpI0t=ghW~JJyI`UBS(^e zt;YHy3jy?G0k~*tEN(4I0t|Q4rs8Go!1 z;#ARdr@LO?$egWm>3;#L9`XL9mi;^ItvXZO0jylRXn=eY;p_L4 z+E*%7lFf4J*+c{-m)}!xXu_cZk)d~m$Gua;DGw*Ny){T3o-`%3=z2e`b-!$-H0b?X zSDO^2V@)g|W>qL|Pxy?);=+X-(@6homJ#jzE2n+Uzl@Al06)xM-6#&hf)J0%-+hBt zNUG{3H@ltkYV(_uMnU(i3smu30Mcz8-kB1zL)M5Pjz|_rQWZktl=tW}Cl3X*(yAm& zDj@L5XR|(nE=gUk>2xn*BISDvBMN_Q{3-*K0nixL@|U${4UBZjDj4tIeiUOWJ$8u- z!il0oey@-;tK(T*O)IXO{OxFnV!5tBjfT=5MOd~A3&m8SmbA8m&1rIT_Dht}mQlqV z1vpId=FyU#HBiUQ$<-K{>vFu)*`r&2zhLzK?*vJ`>a8q`DzqpqDy6s`q4T{F&1fC2 zZsSsP!VN_0JRc@I>wPRr)J&PQeT7z{J?}U$EHV!f-jwv(s)D$|4K9+N#d{3&!YTBU zi2K@SN<8a04P{?RPrkO8sQA#mS?EJdky2MTpSJNbU0@~c=tbI5FyXm1cLthrj_|Vx z0CLWjp9QU0<{#JM93$K~>?*Y`R!Cx8dy$xx{Hq>YE%f>b+-LXES(W2|(K~p`?r4 z;)*^R^%itq5+4on8=mXHu$fCtzGNyj0d@V1D@@m%b4C&cKGCh6v_W&4SRkS;dH0Sgb@G-WPT={*4vPEGVj%W^86nX0wXvtIu z$gkh@&$u|}v~J#r1(M|8;`Yod2PE!Uy}F#obdq*dDy(E1Eb^Z2rxBGOFKx{}0-nmb z`5Wu<(=OQF4r2lRQ>!LKn=g0i&SwPs&cF38%=x@?^-pOmL5 zM$%$G0P?{;G+PPRJ-Mtp7^8H=cj9P1g&O87qVX;M_Ov;py!*$2; zP_h&UV-atR8pT^-J>;1Bc`D10eDU~miC9{QtflG=HB(&`ju>9C`uHDtC?StF-NMk8 z^KafFIi*=(QIv|Zohb)+!;uL9E#_pbegHVO?KwH`mvTHS z(R4riFE~x7@3tG+V)-2`>#vcCOvFwfEg*XJDURB5N~3TB+t=PwD3`r5&7WpW?I0RUv(fUKA9^(0sAURJ>iY%< z@AxJ))GpK(5j6zm*7sSUZR_>c=~xFR#(C6Hm}}={kzmt8A}TI>TZ`eHLn$&u=8|)& zNYA*uji^i*m>ipJ8*y>ux6mW3Tkir1PFpVS5@ELDg|BeCc6ALr?2f>-p(6T6P9p z%T~X*!dro=Jx654)ApVpeKxqv>xfM{y($`mRHl*O7s8%F9A1#QSe6&PPF&3wqsSjx zRgc~~Mqwi;O>+~vd;$x_6mtRUY%9*9Q+g}5=Bu2!1Lh!w@_;vlvTVJ|UenopuV3{p zUM$P}6x*ZM4>ervv8hm~wR!8Xz*WjvtFwB?s5aq)+o1iNqj*3YL$7fYi;hL5VI_xD zQTIIv+l(wXy(4NIs+-9vxHRskwe5NLG_Rsd=%=ZgIJ6asAZvrN8X6e2WAZTM)pV{f z3v&2tasCI|Y&K)XF$siO^hniW8#{NX zl#s48_r>iZ0w&Un`oFLPtzts_D0o5w3+P%ar|6CIUN5joXw{u_RWT$!dfE3?9FVT3 zX0m*5O8$5PHd}e>XP8$C;FJAo#k+ez|2c&t5&g`hUJI|3e4ZtZuL(s^%}J_k-o~L~ z|65@|1dESKgKcgA`gpI=0p>`iWE=SGoMW^Iv4S{C}rdWA~5kO@(tcK$c%(|T5Xf()wXj0Y9v^Lj73rS(M z0DO_Xkqq#o9}{&ybWX&HvEHScEXvx3Kd3|ee-mHG$9{`BRIC|@Kr1lj>FiC<%5E6 z5Qd-^$o6Tp6(Bt#6PP4zfKXtvHmN-X(2bO>`Gm;T^d_166j75p$4U3sFFtHt_TLid z#O=GQpeF6{IbQ7hiGkFaMmPs({NA~Ypp2%3j0n_qn|PO2Xved3*z9m6NZi--;kO*i zqBW%rI<;-xY0F%0X(VwJM*Y?w^xY{}lLF4Jy5MCwWpTkK9-MZP+KaKb^ml?`OWB1m zeuzOM)ijo4q~0%fsScZCP>0TZo<#$B>k^+@QUrbD8^g`+tAM;+5E3Gx^N|FiD8hte zgs}Hh;TXsr4+Y7y(oaN6wK!sVi>AZ3wYQ!?PYV~e( z9>!>|$S}YE4@=f#R-`(i7)bMI#M*u=n^!R}xD7%>E>G7~U@FcvwktNO)eyW`DQyaQ ztl<>pH6WsK`2~=LFjK1Y+?Y@hAn(*9Zu?EeL4RqTzLJI~kssHfSoX$3MBAulZzlXq zPjzD@uRmeaQ)FZ9C%@dvGvI( zWCT?jI}sV~u#zKFiM0$DV|W_acHpQUJ=$Of{&rdsrHW}oIE4g(6XInNo;H8X(ER~D zy^)buZ^C@9l3PWMZdb&@O z1V>MO$5>hHT{}caSzM2iE#hxHBlqKym%e&pA7np>ZO}D8ehRNLwLM7b#N}Mk=a;{w zqLI|55Ng}b>vCS>w+j&}edHZ0>3rq?s%TK}qBZ4r>i|)k5>(o#MH>MUTY3{Dm8$@> zN1JHox6_$r&eEl!p_c`BiRYt?%>~^8Uji;P5tEmtVw{4G$Ei19;ge0p>A&{RYS zA^-f#jf#vkTCwfNLMnA;ymv<|(7@-Ca3DfWO83OEgAH)2U%#T*kaubM{8X~}p{sLU~8g%d}TU@nM3hyJc)xw-4*c%y@osPGMbzAA;G zlYYoM{2ujWl@pNOqq=<+d%Cc}2TZensm$q@U=cn}Rqw{D`Nr^YysAi$*U&?Iv)7oC zcpO=uwddGEP@b1nx|YDw(NV_aOKw0s=aM02MNgqC?IX-eR|_hpq}kEv#*^u=H&bw3LGfr z+B>+}|FV^ls87zG1CsNuGV6qn^?bBuW)io|HwgSc_&j;NFiy#z%{eV7D zuEJ~koo8WBJ3>R=AZ}3@R6~lIn=As(bjA4HjkD%vxS2=NuyLV z1%NjELAzmL!wY{<#!Yp5G7VZ)!L4$I9wY2aaRu$G{4Q&9i3zwmuR}p}ioln_5&(i! zcB`*ri9~so`50ff01)=!Vb-Y22ANa3Vl1E6FAC9#X0Owps7UGen9d7m!+0{R5QLT+ zHDx|x*_3$OkjRE5O6b_qvkyLCD|DR&KwO<8$?zA@my#Q}NR%~jk$IdierYRDf76cN z&TW`heSo}Kb^ODviM#TE!Kj3z9S;rBNmdq>Ggc(Del_|l@SzlA??vzp{AGg<5ZD&` zAkP$E8{`L#Ra%;x$iVe%W9jQJ-*4CwOp5|4@0@8i_HnurNWHYcj&2OJyqROAxM1=O|rmjLBi9 zG}~Wd(a=8({hJoA<6kwEKi11VM>aQD#xPRE_|BO!=0ZFKy@rBAqRALC6Z$eh{}=Ej zT#@q@$fY#vMrHPgn#%{1hgs+_M&Xn83MXEXBhgV>HhlL^Du)~dxmYb=71eMy2BY7+ zk~&0sqYFf*NfR|5lXPzU6k`-8V=5~Nw3JvrZbfRDaWprmzvM_p@}TsF$twX-2CjuN-c7yyZ8NzhVTu3=9VJNVNNZL98gK? z+5tpv53dl}@BC0*5r0XdU_LrGUu`Q%$ydbEE2$yS{KKFBC45$$RmEy3$MRM6OmQta z*50Qw$|ABo($IDnGh7J82;!jD+w+P0MeDYM1kq0ZIiB(@pC@)Tb5mr#g;D$ES3)x*pr z4U%cU84^U9OhRASy_=xath&{sG7(EOx^q`b<>;S`#m^Q1xpNaqLkzVH+2)R8v)=Yk zL6n=-t%JTmi3hm1cDA8@G$vnr!fZ5}56WEY-7zPGSUtf=n`6jAy0$Tf8WrKL0)XP> zZ`FYZ5B%W3hLB>>AZ*A`&VRydk_}MJs+z@VMDu%dM>c(&HzWtdtPw4Fh6XR&7C@25 zQjcP8Vx_>H6L3wDp*A;}h27z-Z>l;SPvdt_@zDPxVi%SnT)ZNf+%D%3-1nnUNk)Fm`| zi+YQR&`D%Tp*mQE&MMrYdrY!fjl4%aqM6=WBv7E3`d%R&w}yo9XeQ}MW=&n0+gTo) zoasuMB#pj76{m#wOPaRR4~gp$B&G*UD>5m;fO(qNBNW2qdSbf*o!j`MlQLcB)gcZ$ z6R6RbXX}RNP%J{XT_;o~iN;A90rP4!p!H z9upI~-pLs+1As)OQsjIhn^T4A)e|hR+B|BVIb*Wi8oAn0$)25s1Lyx#G04wkV=4-t z?1T!OwTgRmv-AEezLwUgQ2T@$k_q*dsRJA)hzI}+n58M07cySvewKy+T#%3M6Sz$a zulyVbjz0T?DWC7|mZ;EkQbhndL;QH4Uj<(X-X}7vXq0cnF9f^cfnvvN^`;v<58~e1 zeF1@6Go`zfZvM&l>yHliuW@bNNuQN0Z^J-dd>JsZw$l9bRm74DbvY%#emNrZy_p_O zB02r^J%TD8cS)Y&|xVgI?+^_=5xrWn~9z^z(Lu1?*nKgyC&Rh!H zMGAZF`hj8wV6qjtW+F-S!66G&9Xclg4L%c|ObAqcxS<{qHFfqggo5>}6#CZlO2z@? zYOSIao;O`*wrx-bb*wK^pr}h+|GYWZJ=cEOhcaltd-}^ePW|MX7JY|cDaC7tcI~iA zi>@Ml6Gx3i9*ni@dn%HX6y#dPn1Q;+-_?W%94;=hd=_S$e?;mymyM{{kfSUnu-Tz3 zi1mTa7)5p&T^|D^p?fE=iY_O}&S^Yh_+*jA#=UC2JI3vEqW?=g|9#iParO0eCB>8L zsW<+J8o>C@_}M0I*Sw=4f1VW&Nb0gSK5f5OPXVCF0rhdGQ~%!pk$_Fkl{))^!s)1N zDT56h_?pm$we>#Gn4)K?AT2|Hg7Is!@>|y7S#t1%L?T3o6FI?=wRc|^!lDyu95I=$ z zwzdMRklCWRIes$n>7cE%Hel8IHv@f~z!>aH2D1JLYEP$a3HgxQ>!E={jsAseTn#IS z%K0AkIw;H)~SMPV22WJAKm3+ZE$ie5&m`(x9%O@ z=vQ@C=1G!rBLh^W{4xN9Lu75nlyrLkwc zs4du|d%MgMNa&q!G2uacNWkv3-(zeH=447_EUSpKpHEP4Xj{r<66{Z)2ktZ?{@>B0ae z!J&6g_P};3cj3n?V~1?z+oL7>Y7}wtk?s{o{J}k^x=;3<{Dpkp zZeCH8jKVt^hMMgFq{G(Nn9mGSPq6O%E(Alej8->?%T8DuMbLBA>h)c|T&WVQ-reIC zxp@YFPU5nk+Iqb!IT|QiOtIbHg3TzXQaf$lx_Dniqw6dqYakCItBtj=aNdWcEuHZd zY&AW1f9rCt=YIf~7VgR7T!oR*z<+kKLD$6t;Sp$6RZRr1gX)QiY15Q(GSxnXm%Pi#FWQ1rN zBS1F)!;(&$(u|=t8p-Y+K8AE_b1ep%9y&@HwE8TIB}*X?z_-e_O73q`A)AI!`*ah} zomaHajrwH__&%r~K=;Xuieig!^_i0vxogK9|7nTLlWz!iPlGu!0U4V^kE3)n&vHcy zZw2p~WW!AC1#KrIqNKk!j`Y>1^czCDa4fxU+YKz9tr@RxxRNT;jW@zPXVfS}%ezw` z|HQLxFD~oKbyOCuQZ8^M<*{gn8pfJ$SGVWKsHwf?U$S`z*?eqmr}1OYJ*L|}$#%dL z=HXr!q~Q_vG6%S=hT4B6?g>p-nr7bGIrk7PrRdrzDjCx;;mZTQ;YJ;}x6oC$mNLQL z)uG+XW=O8K$@rFIs$4{WAI>6Z1#+WeXBr;grwb_Xyc921>n6ibAue16dD3_z~a+>qPP z4;WH3;ikdjjK*HiIMTw$q5)rFf^I7stcSw>b!$6B;faquiG?qvz7HN)27k7Q zVl;Bm5M2&0R&8mG95C+h&u+q| z3g7xxJD@@?}s&MIziePSVs-+}$@*xh^@552vt4qT&~Wk;c+UnzAx8 zd9j&;fqIeEdS|wzHIb#14IHeZ#lE~SZxM&U6FX?d>b6ZflaL+|@$$$>XsM$ZDs7{Z z+&p^at*eNCyfIx{Fp5}=vFFRN#U-Bx-~3aLbe6HNpf!7^D^<#PMCbN#6aT5!r9Ei+_|rP+V?U<%`1D! zyJBnZwMF+94m52LF-x+akce5^#^-POc2als(l>YdxW1+K8(9wMuR9LY+bKBJVP(5v zAE>E!Djixm$K|Q6PcI-eg{1ixhX>(l%B@k7gg|LCJO21?G{yZ=`8y29d~>d z$=&z#NYtx%#X3KWlk4_$Y0Wmg9`!;_H?~>79gx@#iX6Qp?C2QkYBxmVEnOu92pM8! zFBX9s)88)K>ylPyhuU3tNr(#ps1$kzJ7RG7*0NnbET`q}{NfugMpGU@qA zg`4O7u*aU-&773a&ap5oCTfthbCu-MMoQC3BybTmaW;j_!|rD&;wtK3XuuxfC;>&=4VCXi~kBXx@$y5i?X}Yt2Hf`uk?vJ zV?z^3{Kc9+#aYc}W3OV6c1<^yJct?FCsO+;1&KW~>%CoB`E@0pN2$DPPL+>r{Pc>^ zCj5}+F<&r)NE+iRZS`YIm}w2FJa_F|K5FGode@!66&R5>T;PdUaLCX5T0idHHrEQU z3XwLG{b{2(l&dMJuhc#vN^zk2ow``Wa5yH%VWGO7|M3~4InmA7Dq8^yTCNi+Sf2g6 z+;JwSvL@R4M-^M1`Sn?udz^E_f(v=?ENFM?Cw)CwS}RC5gRj{d1Q%)ivz5;AwEdf- zqDjXSZ)V|Igoy~Z2%{EVpU?$t*?PGYr$ zo8FB8AU{6%IyJ5J&4XjDcL^fjBOtAPRQi?t5^w$!kCTG7-%yDcky7IjxMR(!9PPmZk zH4Na$v8Zbtd57fl4dKa+rR@ixFC{$a81~WU+ESpf-mu`SbwK3S$DPp2dF?sfLaaqh zd%l5dFVsNmi9LhOW1AEK2mgzlw`18a9Lq04M8+{#^1{1&KveCTHY??Q2Z+NiE96#6 zV8xzveh>(|O+gx`)yRu&ecgXEEqpmb?lW4;nAJDJrI@;>=Y9%8uRv8xBT z&9Hj&Z%!MRiS|n9oy3@bu;{r(Kduk$k*zHhh}reEqwg9kKkY%&vi%)8mhFLjnS&D6BnsotxA=7==S*0#Z5(ZtM>*Fr*I zvq$yND)Pz`a{}cvnJ>A5{XE>lx*$i}UhV4MjwhX1bk%6bxjgE>a@Hm()h6X)=&rWS zHPO{XAW#jNQ%E)^Qm~lm?YjpcZKkE5 ztC^DLRW>Oc`&vB#N2bk8dl>s&0`-$7mR*m=8xmkdo9CFdSSe6+-$_91H&AYrNv=PL zo<_8?=MHAw_x)bk1M)X_iBTAlF8ODHlE>QUk$zs->T<8BulyRkoyEqSz; zp^(6lD}ssiey#J5CQCZFIN78H(-noU9gSY`YJPgkR)a@ho8ShsE0W^PDZ`|a>s|?= zNO9B#l#w}FE{{|hV6f7->)F+2l46g<`)_yrHkBGiBe?+O{blAS{=-gAwRhB(!Z}Hc znrjFVXaQQcf$hy7rfE_p`JZxYe%}4n^{U^`K3CMMGtlpK(8ah`de{fMP44PM{S*vm zUM1sZ*!vIwb6vq{J7|dmE$3KzWqM2uOJWJ2RDK-?V@yLTyfe(HU)<3=a1`aoRVATi z8~KI@vCzTw3?&neTzc%Uzs!1lSyXG?Z~ow2sdM@wGCoCL)A%R?#7aA;wL88OPS7CP zQ!PNfEzsv_Ae}y%&9N?bZJwoFeQX2@7va>EJ3;IH9@e&dO4CG|_7=!L{y&P&f-MSe z3!`U-p}V`gyG4d(DCzD7=@tctl$LIk92x;>L`S4cx5cp6D1%%7}59c}id3US@ zZLMYEqjBq|e}Kx3ox5aYtb2{d#O-_3bx26q-pKLWhB9dB&Y##G;~@&6wS*IyEt!$% zSF_O&Bifn(n4{m8M@V7Latd%qtVqQM%NBdg3syDC)gc*)yR_0bTwY>%!Cw;)U)?!Lfbwdh?ZepHk(evo%uy%(+)l`C1Ui2s{sk7O`^?pZ-SCfv) z^Q1hjRikVOyz#)|0nyS7&PE@ivB|Y^%TM{4P1+KEF((d(=DWFNe#?Rfh`$ygdaSU~ z>T0cA|7KcDgtg~LP42+FeV{jKW{Ty%OEF9ENi=~?P+yesn|C5F2X5P#F8_lq;nrL( zCdP8M?7W|){HFxQ0e$Cbjv!(5}E`!#6eh8&9#oYu`)@28J-n|GM5 z`6{4@I>jORrY4ytBs}e$?dcI)s0?mP8%b0etx&4C?=(B9NPt%X(nrSL+^?NuK}jl|j7MkPV0$E> zHrV46P4Mi`maSNXLsR~<_~aLUVhNFV-M=;YbelrZRIH=<3b1F1RJw?LWB^)@ zA7w-(UrkL=n3t!&NU6Q)Gd`O|VwcLK*#pAu2X+kY#x&rW|0tpG+CTD>nwZ1vZYyUi z$6a*p(YEX_F(h#@P>D&h;(T8Pc)c}2B%O5rAW!>3oI_r)1RTAH8%Xhez1~geW2Da<%4Sa^ z0uj@2Shu4(DH|k1KECi@5Eve=pb4#iD9$#CdlT>p>XGjfFY0)JSIiD=ijuL&Br!Ru zG{a7ifxcJYMK+q0eTWpq9<5XR7L;huVn!6a8_GA4yfrb9X^T%u%3zd^g zpqpG0-dZ-I4;)?lz5K>1MuVHyVEf;mCj3W^tF9keY|9auL4u>7-?xyR&i5D3cNFc= zV%SJiwU76)`U?(xOZ%WcE@?C*f9iao&3Fc~f*0O$>)s_SJR+4GXuN}@*7Q5$lPD7t zi0-dz*u|`J#B~1wHy1*sr-6xCX~|#7 z@Qj+{zTWbVQwjg>=1?9+her0(nCwaZ!Kg!0TN$BdbeZJq4uWqrxPDJDh>`$79&mYo zbui$>LvrDn;BPE<%;urs96N#Ta zuFK;lz3_v;a4Qj6#m@hjp)#K5vnByxHiuO8l;)zoNTw-Z!9{)NEGGm!$vXt8E-iMv zwOY3@(!RK7MKVTEyJ4o7J)DMGcd<~d7XpGY&j%u>Q1muY(&k6LmnJ68(EGN}-IGVH zSl}7I1J$T{uvOjqg!uSHLzCGmnrKJ#zxROaOWd$AFPg!t9G-W<+EQIoHv-{&M_-> z5uCkt{cDlk+BtcyjfN*bq)(`uo9ns>dJi@$a$wCN`bXLM(wflv+f+p?7dgtXvF zdWM#D(Ic)WXmTiB3$j8&fo;t>Yh!bl2Gh%7jny310IAy~owR^+v$K5<5Wc88sKUFt zEiG}b@1<}tC~y+fC*w?JN#qE)nfvV6(5XGoW4h+MK^cOGkW8;qQg8QmmfV+_9C+<0 zlAppV+4}%-|0!_~%#&$12_YFbH&c+8j_`gXx;uto7hliL+t8!vkO{vN#q~T3%&u}roIl8}L8sLoapozn&^yD0GY4u7?E1`P* zUq7Dn7Q|!Lm**?Axwf9D$L2$Nn&TahX|FhhKXpsUKh@s?uO0$U@(wlfjqfZrdY|H zB&8(KduTjmT*V3~d6VN*A7@uWg03JvvcmuiQTOcMal^lvo(h%)EZTax=p02Prl#s7 zY#&18FU==32^^ih>t+e_|+CI|*xvERPoEGgsl98?D;pBEQP^ao$)?#WpsE zi(_V!$WCQzA;^Ac4*yEGy(pc9$}^~baUzC4x>#7_kNE>7!ETsNO0&*>7*w7gFv`{< z;q6sHq6@ehrTA|@OA-EfuoST#^8GSxA-LZ*f6~}}dWs9l|Bcl2zc!(3CA!HT6k$sG z`igJ8&#KQ~&6PTP<53crs$N3Ndlp&F4$F12no}D6L=vQEXuHE&V8>E-lPBEt^BJ5l z?n#c;WJ8j3KAehXSNvS}Q&!ByiT=q&XI~{x$$$5urKtE^^TB^XzT3!dE3R`6ieSPP zjt>YyWlN*WC3>OamjQR<_rtXZxy;WW2;czTqpd zuT^io2@4>)d#Nv)iQ`=|+sN+m$K!`{7C}CnMuVA9egNXzc^YpMlNw5j>Gevn_v7l6 zCE+y2JBc;kXaEh+py1F>>?T?=S#4=cM=a|o>Uu4egB@59nX#&Z#diSA^EEv4dp`Z8G_cIJR zKaf{#Zcx{r#R8dw=FcU0+kRxhGCs~nKsSv%6T|9EgE&Jx+w_wk3#_w3Ytv;gvgRw> z^E`zp>V>4Am)echIj2q(HrM{=9KzC=VTII;Ws^1RPZVSkau*jADBK zUoJo!zirp9G;)M}`f{0jCBKw3lB-dhh?DSZoL+Pub!i*}%Y-47b$dIJ)Dc&ot8GY< zp#`$}aGl#PUuFAp{}W(I$0N-f`NT)$Cj2*00GH|r(TP)JnxYdUE`@o(X>d)W)%}y) z*Rqn0(t)~$(UEau<6xzd&eF-IeVn^#_#M>MbN<-0u_#0UX=_l5O0$cliy5@kG@d`= z0MNvSDvJGnhOaM9w`DNn0I+JUb0)c^8%!mqiaQ0l;l1RR6%w$wlM;l+Au3^eevAoL zG>cERpWvfGg2BL?fK!HNV^j!3W?eC-OpRt}Hh`8d#1Cau;~BQ`zb1M9HL2iU{x-Ci zf$?Z*PhWNqH8|#0XK5p;Y>7e56q6Z_%9M?rPD@J7=|Mx|Xlre(^d^Mob#h53Op|LK z5v%~*u_KpgHS!mI_i}QtpnLQc03Nv~!f#ZAdRvMMAq1~e6Fl8a@0oY;S%rZB-wKD! zAgh%gU^0~=8?GOHC(jpec+uEhMN0#92nqzuH|($L#@_F}p67RRK2#vbC{d7_oEG*% zLI>+6A))&(1wshp!{)eC4Eg|>{O9dD=alE7>94oISHYl83B&k<-zgVcS|*hV8@L}U zAyIHzBrMc4**szrYpoQr8U2kJm3-~kzbMfxPVi&e;U_&D+v}Pcz2q=@sL`7iUGfi7 zE1>fB(>VP|0{PT-ZTUia!VzoP_0y1}^XQ3EOf~r$4DD9_6EzJyXKenQYd#^uo;aIC zt_o!zC7vVt_wJk{pPf98FGbFhh_2O4)W7ZaXip#%e?ulIFbA9dG4;JEuod)T$!mls zpba(k1zDgA$~NwVH9veP3LjgLhg3{Os@g2Ls6AYHzy3ZVUXvVB3#DWewvN?b+x3>I z2v}TkpQhw?;hMqCJXh(8qLc5b5PS27AWI<0pMYa!j8~$R>7+M(u@_GNTx#Uxtdf+I zmWB&6;+N_yz%>xV)%;Ow6{2`;y=3=|@XnsE8rA)tl7(*xA=qm|a;++rwjuFI_vhX# z|9z&i1EvCAB=+x&qbC~go(;cys#=?5rS*ZREbkcPjklT+zN0u4wKPc_aC3B;{mlI{o8MXJD|twAOAnXa{UZGXTJX)#!% z4~#ON;~gZ_=yuAd&T~JRw>4>`4XIxGgM=kn&6f}opWnXXc1{ORvU>x59_yAnWgR3{ z^kf72Pp=NOSzqK(i)j!G@(#4F*8KEtaD1ZOO1h(qH7G1WMffi4gB2lEgZ}(E|Gm#D zA#Qi6{_4h_pzVvt1Vg%D3}cxK60p!ka_Yru?$?0s(&i-bS8$>)awXQKwB1jhB(5i~nLza_V>4)NSsi(o zT>*9dW(77Io~4#jm0+aS~O~+Pvp1- zWvxlqriOAH3;KYsTSoDZV^THg(GAA?2gX9wHMA5Go0`(V=!Cwa;gPjR)pK2}WW@Zk zQUXNpH=d92H@1OZT97H$%2qg)?T+(_Eq(}k3FY_+|FF^XXpJ9QZTEw82=mu*?^_0? z`fD0?PgJ0gi3!~T>>D25P29-ZNVI9~0)f9&y?0Wg)@HNd3o;hYSA(n9mxgx{iB@pz z0hp)cquO=})coH};hQHEJ3qY_Eut5N1#lAq1U&*^xc3k!Bm7pH0Sf0Inl||QtZy6% zVl(`A07jwYs;YZqR@~yey#K$*i4{9dM|p?9l7FTdy+`+oae~qNbu6Z|Ie||HSm|AhXLkhOSm%^X>n{vhj zy6Yprq#E>c(w0CWh|!CTU04LxRXVGqj9Y(k>B0W0o+z4UUW;Ix_5(`6`!x$1_EvCk z_Uj~%3XuXu6%w<8aIMfW$1U=Dx%Kl55{foOVsYC{rholtt)zQ+7JdNhh7KdKX;1AE zwbL;%rYEv)zI7VaEklK?7=`E_hvNGiuxEdC{g>F;29@`IOKgBcP$|P65T-yt&EY%Sa|q<@Dl?Pj4#^HEp-H6l9Oq^+s6tk zRHolBqkbqJ;)+@uNoNgSoX$~z5VwrF+8=x4R-LP5YWsJ@*gLWro#Tvhx<`MRC?{yG zS+uby!lD(UWP`d_)=v{@xB}uJ`=zBkaY{cIs)_=1X<$)r!uz!|XGy(tM4Lz5*`~Na z%V$VZy#z<}lHFs19dATsQ*OnpY#7NZTVx6TbTk2q0@*uG^S!_y_6H-3dda{e?!UE3&AuGu3%-u4u+w<&h)xu-<3D)i6m zaN7=*_(fk^re_PNGAxR6=m^P`N0z@ynP>~d(W}*eqyB!A4%Gw*l$A1Qr-5*wSi)c% zFXn1)4TNFrad#R%N9&t8lem#frV|)&lHr%b;w&gY>F_IBFg*YR#1`8GI+@afl%;?f zVqE!!44(van)8Ku@)EN<)E=TL2L~XE&N68m1mt!&p5Jv}S%Pnw1DQc$OJfK5s{(}oo7OJ28hNj4I@s&Sj z%o3`zNf#eU=cqYw@4&$?)=*Lr$Vk79MQZzq<+i>eSmP+>+*}E1UTs`~=X!eNg=*;= zcmBH!8NfF)X~&kjB`G&p{`5vH*=L*pQ8zXUdDm7PF@F&bOVS}JN?&xQVpkF*nvVJ)=i@SUn?}ummSFJ(fWDF@ zEcj=2J{C8>=wTOUAAC+5J?!$?Y4n-V)tiwjE_ruS)xU6FGrg}piVC>vkWJyv1x^f+Hc)}DS)^5lg<1MSYV$%#vNV*7jP>Er<)c`m9#-riibv=?Ybh{(-rHWmK z%oR=QxBQ~d1MYzG!O0fLRUGE@#E1#e;OEYMu1ctjFblXv!`$=-_>KVSZ>9#{H{#%< ze7b5vRaJ2E>asRJUtSZSix^JhpAFo4Q}OiKUk}+Q1)dnGJo|LX>8Ka_;5`z;lYT*< zo0o~tH`$IsL}9A8K4Hebdy3)sUET~lIXg1NlR4uNo6?S_T=srfv9h=Nq6t-^)oWKlWZWzRF+-CZPD$Wng+ zTW@`~g#4iVe(5MhsS$}H|Bot?F&NU$B0ITZCVr&@iBg+}N?Msict@lr13oFzm^FI` z>AW+7=D$D6tr;HJBV=}T+Ppz(M~=Argp*DELQ#7FcW`iNN7l$X(m3jSp-ngpC*hkC zC7r4eL+(XUPj;vo2F3(yjlehoEpwE-Cr=V@&FFBiChQOYULr3+K8AA&7t^n{0zFSx zLVKz^M;F%t=51EgX0ZI$Jl-P28@7Y*o~ri1#B>8K9n_#A*E(ghxqtwZ7gx!sY~)`n z8iT#$RQ>=#^tL*I2;FY6UlWN}XZ)oN=c)`^Z$K4Y5V5cMZmh0ntbU|hU!0GEqzN;y zzRae!itNAp-bYJ{LS%=jjLbP;=Tso80sugKBfNsXs}cU5Tpa}gZXVLO_^PgHRhlU z#WcNW@rh#TClUabc=)Bm+Qc*TMyD5Z3+w4sIo_u`cxKJM%uhKj%+O%M{yrphWBc23 zInW6E=;)TO)2!z3T=!%a4my5{KLfDoJ6^TTlUNA0?#g3?0CKGdaLNFY7883$3+3`E z$y_$?xVQ2l@$FnKdkS=-eq}uQK}HNpcN+Skr`UCHa{S)Ndi4p%Nk-luG7vX7R~GD& zizwI+Xr)iYg)6rFcD=C|QPq1O!b1u`S$?z@sp$giaWQY^sY}_(K4Ks$P69bs^a}eSHm`(MQTAmPD z)2<&iP>$lOt$MzP$URn=faep_3W1i8wgDoG!7kUDm>ktm)kUVDq1A@0LcBm{d1#25 z*JSisOaD06vZ|ACb*pOGW(WRbYai_@V167|iGCOC6|(uwr5@Xqnp2uPYF5Ld z%MAMg?J9M_I7&65c;9YX>nxWvA33}D^Zi*zum#a-jJ^TLb* z7|RC*17zPA=&5;KbK*YuyNB%R8$L_;w~E*TBv+Iw?-4Q-0~r(40Q*t?c&&g0&p4f$ zkAx<8Z}vOd@|g47IWo6Oz;p~E=Fp}`bb~;W&WaYxO*u`9J&2I_oSo53EYUY{(H2Ug zk+EJ8Bj<+8x&?6Cxs)EKeU(}+5mjRX=Q}8$tEa7DSBbhu)t}xR68_z$FwhBknk0}4 zG~2^ly35N~-MXxVqP(4#chVvAeOq5QpGA7fLN)s5a(_vkWrfxpHfc`g z&9=_GS%qhy>&xW*v91MCf}X=?jj9_9G$G6P*kp>!!^!eeyw|+d`kl$AAOiR7s)Hd% zVw5F0SBBQee}0qC)scyW_M5{upXvUwY-Q7&{NK|AJ1inUNbjP0I~KgqwwaolId5k8 zwfIa8Q+qzWN;g%SbPjah(+bPh9f`}RW|JHgoS$H*{VZ?t=hhb4nVl@5wpB5)VKk(OxXMB<<$djYZNfF8-C zdCKf0nJO#&uGx;<9X!iTB6W$P)2e2v4R7Bj!9e1FAv#NOw@Wp z6o;?*l*&2ZXr==_UAD?!(VkHJrH-+A^4ZeD`nKNzc62E$K*}X_8tDASX>4RmXkD9P z%2DEca&U8d`W{g2*tJR&JaUxY;QCUAA6;ZW>^mZE!s$WN8n$zQjY5K`3xJ!((4?SJ zM@u9^N>kl@HBNCgis!-cuMm!DV|_%rz$#rQ{>(x^MSt)O%~V~co%Jj%Y518gP&W<_=_GL?z4&yUC_{JCD) ze>=jzKXaaMH|*eSDESTn&lTsc@r_P*$jbd3?T2XXt8}-aK0e1)dYsWtgUoiNRl``RMXqj&#(l?vgP%npH zWzBmCPEj@sw#S)WIHgtip32%sJ{{4@%`OSi zYiermY}lXeYHhC=WNtBUp2L^*5Jo^MD^g4Np1biy?Tc1r)jE5PgulLB-(}QUFvTQQGutx|5aIb~Qu7^F z0Ja0$RRj%reWmYv9+O4msiD5FeQox&mG9c+z8sMspDNXHJWw^`Mlvv}WhPMDr6K|L zHTgQZ$HsTAIBP}x{!eDA>D~ph`hYjEBwRFXu%UcyGm-rjo=HFy{mcGY6dFuENE-Pf zF2hAz>4`~OuuxlBV=N6Y2wjz_3`vmp$(?va1BVnpCCE|qTc8H?DUlHy*KcY7F)FPz z7Dr>c$|xtw`&kr>97?rRrCsR<(EH8Y0)oPIy))-``W+>fh;FQ#z#`rXvydfnORkZL$RSWpG7WAIRQiT`Kpc`X}{A#2{Y~R zqC|8WPnqEW5MDVH`K{C|WW?rDL{5WBlZd?<_h9YuZ`%;yITH?9H`J}Ogo8xDXt;}u zdnRtGcdE@&;AWC89qi~HF_y(ryU`I;q9iYoYM0@vR=jM*+GN}tqddN-7rB_*){P|Z z70ZuVkzxe|r-SbW_geq?TIx6g-)zkwzt-1~^~d@=l*{>O;CBjODrdRxjQLl$YSRS@ z^H;bs$=hgp5139uqJvo}=N*NG8UFeK21@BjL{3_K&$UsG5CC(vk%6pEEX!Yk$6T5dsym8!x-c zk{fi6NkA8tCzU!HyWE~ofd5e|CN{eNUw@sfmd(PfIB!rKBWnWOkG({A9$$*?OdunS z1^jeiftcGq>9##Rf0#KYQPHnE=r!(1)}1*QfP_B&fk5pz0BjVo+=R-gM1O|LU-D1Q zBw4tjAv};W#6riz-8QphT|meyT;9?1a>ldWC+iHHpRB)`YbWO`!Wdx3BLDLWi{TaH zG~_NX>ss0Br6&?NI6lT@^m~FuR>%ilSsEqw7Qw=rbE}9RrN8HyM5Z#NQdw8`D&&l8a`m$@W4;;6xXA z4!DAawx7JQcUn_d({zo)cc(PxLUZvl?*iFK_0o1=jd<}`H}jH6d_9JOzT=*M?Wup5 zJtQr5uu4k2{lB(SF)~yjEmo_!(7?LxQ{np$uJ(k?xmY@%UqHF|X+|q7(UE#dMYu-g zmL_%8#sE5P{qs>|wGop;R4s?^?HeA%Mtfd(t_J@jwhn=NI!K1D#E!0l%<*H4s9z%+ z474qe3UJH{W+LJ;?HL@(l4yXy*Fw6}OP5#mTAl2x{>%q?hk3ycCtk{Q0GRCD!@k!Q znEqOpq-_Q(3nC4Tm1bH0zPs}?0l+qXDTlKI13Eh$tt{=D#@X(wP0sHJtXDUxyq^tg zo4lQ~e1@|NC|EJCZGMn_m$qTd45fPHHEn^H)t8q5n4A4a1>Kxj&7Dvpt_`Cs{o0Ag{Y;eXh!XZWJNJJsZEj=RS&H!C)QmBT$`QJiJjv zLp!$1Urw0;N>{<3s@4hup+=jposSe-O|FdXKM+gd4GiJ!VxmTCL) z8d-bb!QY?ykaq%)(ge~=4^Jw9Ec-@IX^A5Tsy&rfcN!E5a=276`!9dXRb#=PRq5<$ z7bzb26725uFY&=~{ab8Dcv8F{?^i+Tg0iYTFFAW*H`*wo*5JH*pSW+=h@Y2{b|6LVd3?n`ybK ziqHH=xspS2c`R*Ft9Frm#41Z-ijA)n=Rl zy8BUoa@!UZ0)DfkSwk7i1>WhjM9VkOCcd4|eG!zIr_%;87!@eVXdq#7)Xjz|4dGdS z_Z1cn&c!PT?crN%t7q*Q;kqjKjyCH7g?y5h-Ld$k()MsPlj9q~Af*aDZ%*^_x${MU zaqRgY0Mjwz4-`F0e3C+YS3CK|IdRdpsdy)(r;5br-}wpopp6(qz!ew zLW0~B$F@(;gj#Ek0t=b;a$4blT2rgQ@pO2MsLQZzG_mGqcBS&L(CYJwQlK51QG1g~ z=gOChkwiDhxX|FWlNPW22$AT-)0A!dDmp0)FxUU?nbsemHMu$b_J@ZD3*c$t!@J@u z`(L7(b-vxgFeh%eprg+YlaUR^8TBi&+kvg(t()AwG{Cd^Qa;ar!h*1IzB@2W42^j! zJ4j1u{Y>JPR@P^0zc#MJA<>@7R)op< zwNbWLr!v(@NY7S3X?cj|D-?E)#*?-EJKer&r|N=3G|AEXaY=mFr!ogaKLDL&h07Lj zeSpmX%#Nek97C9SN%xkV-~f7YVx)AJ|GT~?Js62m@E+wokgw&)1L59ECD%ulybt;l zx8JtHf@J#WDKs(cqPGR*N`l791#l%I_|_bTmadH+RYRr>4&zQRPQF9kG73Mg^;r?# zb~E=6VE)G1+pRr5?{E`NsPe)TFG-?7h3Y5Orzdej5iHC~4pIq*9jtj1B~R1;Iut>~ z5qF8z49<+_I<%FB%Z2bCi8V$Uh2_rWv1mKIXotmU!|>UtR?+$=xfXsa>T;ynZYH$l zQ;T|zjTXfp`NX#2J=9K7W2Bm>BrkPshaydZp=3k8HqoeK}(4!y-v5NBl@oZ+e@%{8ovfS9C zwFkOlefdx_I$FB2c7y+3fcFUi##tT2s{Xu{6tdM7P%Ll5c?vZQBM1^9XUa0wu-^hK zkxkCWd$(O;BV!+b6z$O^iYg{_$@gDGeL%c8?s;@QJ%cFb@P8{`eV3*b*T{b#aD8|N za{hHVd+ijuu$*0BC1~>8tOIPzUsIpbA%8gymQq#e85CY8rb)=xcjP`Sb( z?W+#{x1O4 zUb}QH&5jhX(pp}MR+^BSloc@><-LC31IL=b(IQq3_VA>ejgaF?2F?dGbSAY;BWfS_TRYg?_fzEnX5SsSjIJU-5b?Sc`L__|al>!ZJ(y!X?toZLF z{{YdA=#BqM-piPsMYvT^MX%Ao z$m`uPe#kz>;>05F>abRP)aPRjAMJX{8pdOJP9U8pE|quS)+zn;l?C2dGhC-y#v)0l>7MNs z^b2@@*rwn{9iPwm_-UbcEO-ly2rp4VZtmW;3Rn^tql9_)mf=c^dtnoGc+uoctv%ez zw9xe9j)S+oj-f&l%tw*HP^KHpg+28VLr1D8cik8^j$Yo1*7O%ah#oob-M-TGRMpuh zC@&u#>KaU1^?jW(S8W{?68m^08@U}*<+T0Tqbx~yUmF)y_YmyAJ3|n}fN?AXsO}u9VS~dS4RGv=|D5eAzo^%_EQx%g{SXcQE5uhLH!s>Y zpR2NG1Vp*bidoT-+a&(w>xnWkVM&d%mc-MNY44!z!w%T`!wn5e+lQl6jkL}9dqB8fu4dY z(AllGvUjno8DlHr!u8Zk+CxbGEgC*7QWL%$P3N*Mn;&{B2tUB9+h-hzG!1VAgcuK+ zRFqA7sjCZV@((0e5rCAi|BdCZ{~kphD7dV_r%nixfHL{+a~Ol$P}YM^_;JRnrWSuu z={>jT$ar!(&@@QhM+TB&CPwODKH~L`r_bR7%d)`Bz=DS|_-%O$vfk1Nbl~eQRQIKx zco@Dk38Zz}mQyF2@QebwPz#aw#3THGqlN31f^*Ti-GM*Pfr6cUP0Bow*qOGBVvMG* z{ZU3RlxVg`8Grr6D)c5v8jS4L@o>So2AWL2zLn+4yg~tpoNV_+)P~EJ#93z(h`+pxj!seZhDBXR|b<3HWNb z{n33xD#54>u?rd{GnY<8Aa3+=wX?CQJ*$AdI1ih@%x+c1r$XbESzR_0saPFSjs+Uc z6qDN61{aEzE^8k%{)N^ro;`q&6$fD}Czwk9UYvK9&f`~te1%fQf0uEke>R`$8(Ia9 zV;|-MtkKw*IUYKO=(ABR*2cWS?`nxc6i7h5AD<0?pZ5zkqOb4v=w=PCb!HA&fawTX zeDB9tMGDf+1u84IQ-{GeMipBx^|`7KnzZ>qXa9|foJFQtB4>fA=x4db`zr#>hKDag z009AuD}dyFkDBALNjZG+EZiOl3y-HnN75AGv0aSa&!L5b!vJjP2q zmGH4sI52ba5uI=iS&F`IeOsj@(IrX$> z-C5AyaIBm%iO(2wO{vf0$D>F9%h8a3;S&JGpKut?F}|%q1Gcx1gDiAc8KlcxhgEEytH3w+p%!p6$d8SIl_)+U`pkW)-*7 zPC7W`CHHl@ir(oturL)!UaS$ow6ycdfJOAw_d1qLWbl@J$;ABf0#S_7SIvO=OTWC;hZOQa22f^B;azUNBU9m!pK9=O#&wNU#8Q2|l z=WULzOKJ=|OHY$^3mdH889bHd&bO@WR99QKGUL3MtS@%aoY%H#n3uRIm9|n%-zBGo zktcrGBZ-G9T~zsfC7V+_QW8BXaI4$qxo4}B(c@)zygrkf6}-2=Jho`= ztveecTB__pIKkxpO;Xziv>cPA(c6FP#&MMt(SJe+339v6>`t ze2ql&vifsy)%h*J{)Z_HM%0v=!S8OU)cSi@fCX?R@skQ_{G`rU;UHKGU2!)B{Y#vc zwPDnj5mj^;eFL#<4cF<`1UvW7#h_;&K=_X$S5=@%%$;B{BK>rbJ3fC%khk@_++2g# z#GXPC8VIgy_*1X;)f$XKT*;fLk5kale;Qg=A8PMl?pviZA2es76tnX!uB=x68cd_r zIsmVf*<9sjke3Fq?YN8!vJoY}y`wsn_g+yvw~|AGccjT!LmCr+`QfnF^|Qg_%|}(m z$A4z1zm2viJLv3NbPJ1jkkUMHRT)q{MNKn80ZgijP#@!kfP4*Flg)#f70%op#tN%m zk$HA!bR$ua8w-7Fz`e?5janH7__uqa9UpHr03pOLc$T_(cPfs^R^04l9@xokHFfL! z8RvCZX8%v0h<{K@a$puKXK4 zhq`Z+aTLcZ;zir4nzS)qAp3FooF!kLQ94{n$T}UvaWNbFE5(4?8N?7mkiRki`{^q3 zH?-F|!P#I8N*2PhMZO!z;U3lTd~A+>eUYb`{F5K=@7PA`>CqR$yumDyBq|@BFwbZ+ zJ-2Lp3PG;~Z`soh*pxyDmQYoKW~_)~z<3D4f@iPT$nXuEwp>+xy+=Y@kA>hTuVRY- zXnU=6P$n<8!G07QCv+P`LT7S(fYVe`m5uNhrJPExFdpRV7}a!S7fU=?GAyqY3!CN4 zo)^R^r*fZL6>R4OhBW%=Mfj$4y)u=42aL}(i=LmWT$H4iJ{I)0mHtY@5kn(inKQrnm$_WuB2ytp zDXfkg69KTKtS!hY6=sqEB+5vVatz>ZrtV|VU1y#n(l|tN&Q&#Odl?(?#2e5dpC?$4 zmy)Yud=@*Akjp45`@H}Z#lQFVK(CU0ANv&<*C2}}ZzBF6H0bRI?XRKH4GLTQ6pMsYdhnmGR$ksJZEco>V zrlWnlC>eq^F7nFXPwwAIKUU|$jlVmi0oXUP+xCDh+N@h^i?DMxsak$CPzY#Rd1GTd zN(^_;X&F*)G}1bj+Nx;b$|YV!tcIWoaywFbowD%)KU0#^0ev#AZu}#?Y<~6F zJD03{SNQD6RAn(Mz{o8-vf?JP9z0rM0;E#^5~vs1aQq)b$F1m=M7jOv{e;#@_)nV( z@8){Ul=Zw;*%?K9r|{aJxYdelCiX$x15?%kvrLT7SFB&z7YWk1UhLPn0hp|uYez;{ zIdBJ{C#I0V`u+Gop<-EQ$JgV?eRM4|B>#t#D$Zj|F@(CP9_I6z?dd$Y8OSyiw1BLBD(dQ&u?m#C#=xBEaF$HuIbaXo;18n(` z@Yb(870Cl`4lICW>ng0Zck-q^*uh%;r|?5eIAJJDPp^tk+t|ZTY9~>&y3i+)q8QpC zy(5w*rlh{sQC(>8o8^)@76}xw6e*m`JtMZ}p4}Gf6as85V~)%|h1_(Rn23AeDC8he zJN~H=bMw+;zTx&W;Yj;HF-cBxD;&dS;JY_t6PKtYWDuCG{Xn%;>>KR4C4+cls00T| zL&!8Bw}aQ#7{&nTA1#TBAB`6j!ZWxwPxr3?=I9Cg+?2hRXev1gB!d3EWQfCZxGTiI ze%?W~`dt?iC$`1g7C& zKh9M&wl)r+0GJpwVex?BO%KdYu&ZlHA@2r2h}R~W__qSYuT86|V?OE$$q_K!6Oa;E z(xJGhw6gg>8=u-KN*&MpFZ~Mq3+DnN+cK_&3Mae9M4JIleD5uH1_Ab)4E>Z}$~_FS z%hgx}sZ7}KJuJ-u>s>gB2L%9bjPh`NhFLZ)`v8&I>JF_n+g2OOH~Lt(0mnwHaG$?i zXSpkOq4H>45!!eH72}PLd4EIZ6aDg1{+@KM+~Up+`)6D2W6Q{&c)yO$YvfMO8}mV@ zyq1Xj9ZP}ryM)-)uJX!}a*t&y^*2;e;T*dIzQk=aFe%5z`a24v4_|sZmnjlEl%&WE zI10qnptc|iV!G!7S7~@F{I1B0I;AnrQj?p*h8^zOM?(-~oki1m=$CMaU5K3iRV^{+ zBT@TAwo7sP>sd0n1+E{fznYRa^hlLz!jA+${XyDS4 z&rtGnnFP?hc`ecu2B0N3-icYd>5~Xt26@<1%X>*=m_*5e)R_Frz0god^?kn^Lg0j% zpOGB@F`?!{+`9l4KrYf;qQ=OD2{ix%nP9`Ypj0o|;Pl zu8m#cE)bQTi>JFTbl&g4p3Sd2{1fNT<>stS|Kol|s};okij_ zV+DQa7``YcCdEwQDgzVo+3)HApDL`aiT7NYv`j0?8hBKCRyEiKrf}Xno8_m2WMJ}V{IQZu_#J0JuiN-5qfSiW%b?Q^lu1`GlaH%-AGKZ zkZSTQ#Vm0DWnYVwV#%8S2)9`pUw@dhLsTR*nZrQ(gHZp=jeu`V@gK5~B~9l|la$$amXx!P@HE z*sb`L%^Jwi>Z;-$Fet;qVM~aTC5S%+z}o99t!6 zcpr2%T8RdxXR+#O0Ff30-(0_i2#}laq;sDurtV%Vr~FKV6D@)Sh1*v`auYjzsat@u zSL2CyawFUJ6Ge0TerC$)0`f)0F^tb{GVcJkO!XpUY+6pUcdx%2iS2p*7@oJR)6b7h z*CrkdKn^xqft?fw0Ja7yJkL^*a4{u$AHT7eQb+*K>VQDenX5AfG}0QkroEJ0& zC7=-_-(Ih0{O(j$Axq@4TSe+uNEz2n{%`8eaOGCecX2RV=ZU7nIxlCT$$O6zUPOHC z$bs1)kaae#W+N`5aycy}0sno(QS*ojZX@Rm!6N|!NCHYD!df?COkF+2mE`Fzt|m>fj$~3E zY0i=DjJe|z2_R`o@yf{r#}68(LY+BZ^!1X8!J1>fs=910_WL}u?7nw+@iPZx5~B)Y zH!k_bGzVH!#t~C)=0Be|b*3XK_~c5ZIzSbR2~;K-lP{n&BMkw(Jgv$t$Nft$S)}F@ zH{eEVY^fW7vq7bvEsh4FBhIhe=WYjS*L>(*KNy^?6#Li$liu?sLj0c~+c!)Us<`l% zCLH{^rO@yu33?PFp~y)$CXi)l4+I4n>9Jl};A0{|!9pePQaLUQ#>|*Y>$j?`mlxls z&HxlV&ihg)5K5ouSzSVLpgO6f;2F3d_f7EQt1mJi-NOu zrmTwL3CIG-)*-Jm#nG>k6k4rvgKkpcqJ4blzL z0)kGYL+J+TMgbMEfBP5i=id81?|IHS-@gDNau#ZGxb%Ad{smpvizMlcP(X_V_9`@= zVyGh7qPxy77wt6+*V@9x(=M>(Yw@GnGfw_ST5%c6-0^C@;b01q@J$baV(oJD%)wH1 zXv$y(Uk6hG!)dg!kR?z&a^^!Loo~?)n4i6@qmny*Mgbm}B=U?+8r{A9S=XqklYyUPAYsSf zqq1=V0xL}r?CBN9Corb^=#Yv|p3(a<`av6?myK{T-_Dnio{~<*JMb^7+i#nuH^*Nb zN=&8izKc35S81%x@SvtLn%s4;zzC`HM`bao{5+^ZSaH3>(nQH_TE$72S@TGb25_sd z?5{9yCtfD&mx~fp`2b>$u0JJ{+@@09_lRkyA$zZ%e7MU;ZJ}o-q83nRtgl_pn*&kH zr%oS*b;1?IV+n4%xQ@Fzh{zS zeR>a7VaLRuvObYG?xy+g0}S`N1Xnmk8YMuvx}5eRkyPwy@7LE8k?=386nN}bO1qXg zqhgy-Rr`Z(b$peA@hPo@PI>ul&d%pSH3axE?uamE`8j*8c5V!$zpnM>I`K)6=TF^g zUYlk(@72w&leFrzn2rM=ePk;rwoO;|Ll^4z=gIUD7OYHDJ-H%rew(ZQc+eePSAt(z zl3A#(4gi4P?Unzs6m4Dv$eg0s3`_Yh3udrdET`jvKEsHtunA<;5f`;_yZ>k|Ls_yB z5Z&b?NS#T>$*tOefb}}p#n#AM{aHhZRMn+-?&8Yn-V4$Cda$x5ULTx45{x0)JUxg9 zbn@BUF4@A}!2`uc<;AN24`ZEEh7k0DQDCIU52XbgG$>ERJsZrZn#tcTrcRz$;Fr*L z!?;q=gaIbWZH!2077{X@ba0tH(pAt;F`iZ6WO(Q*P&Ao{5vxURp17w6n*LPz6G}Ga z0krsqdN$WOZhxV|u$^=i-C!ZEtD;nTlDfjb=sz1oX5WharV1qfBC}q0-I$%K)-(mT zcJP0IL!hVc@nopUUQ|p&8!f9oK@O%(2nrd;O`1;edYQ`8JPFEFBxDSmbkD z)BM7Ed@;uMJ6>B4^I%@$ZIiM^Bw!Lv2~1A%tMQ2nej%!XBb++TF^-N8!^AEhCliFQ zztOs7^JVpA^U}@h`KS%`^~7v0CtZ;Y8Pg=gMsJU=j;Q^g`jIbR@nuHpy=`W?AadtX z7on}K@(IcBwxl)ZAb2>w5dVHyEEOB&#iK5fA<8go-4>P6YpqVsRbP*wUbVJd&Q>FT zuEANd8=sO-@I2t52&bj=r#w$1Q-BX$4-@(6d#eSI0Fg0zGId2tQxmpvF5xFu7*Hp` zg1CG%3&5Q}GPLhxBShQGHQskK#fNxkYNDcV+NecFy&eFdUSN&C!?ur`kuPh(>p}8| z#*z$Z6MYs}jae}bU+2t8YaX2t=Bi20bLKp`ta-yoyAQoM8kc7j*~iMk=;wAmnn&yR zB_+->ABt@r!}Fp!p{Usb6?@xooJ6oqB&0-#GzAbDtrWDa|3+F!B3#x1wo)s~h=GMg zJa}68vct{puM5~ZZa{pqwB5f}ezx%R?Hxx`F$;tg-LwHQU=!Go-Imba|Mh`Mdjef7 zc|@W-?+%e+%Q$Sm#;Ki;sk=ENp|6_&jmUFb!LbBI&8O9{ z-aUnLJe^z3F)#Lt0Ij8KfmD5fV#ACtgh5*GBA;gIrTBa1LY}@OkyTuQ;iVW93-V}{ zq3vb8opVP;E$Sglwv-&IGHTS~)(yYRE9C+(WD9+~jj-P^IcDkWfBeAbeJJUZ+udMc zE;y^T0n&Gd7P+noBocdNRHWlTU+iQ};n0~x)!{!2;sLE@c6l0h<%pw?KEAhokKoNGU`;)1sN&$BJa4^HfI{z-o}_lON=7&CoaMEU)GFsPmQ%b+fehaI1Z6#!9D0_*{cenS|I5wqqJv=% z=aS|~hR-LWGZ&l>Z%gdz1wE#3794mm9^<#uYt^;geXd0=gaLL+>479}M*0Jg4O%UY zB7pZ~+ZqmHcNxNao^2wDPPg1?mMmwtq<)<`?iKo;?SiMan~co2wxK zLgti17da%U?3?9ThiedREU39kdK&ykb1XF<84;bf=#@ibLLC3Xh)!3~0iY*n8HnFH z63vR@r0N|reV->{kErZ%OvtT(|m_KjYe$aq$r9Lj4G

    | zm7&+hH-fVy2*XtzH2e6%oKT2^6xaNQsWSg0UCGcD5dyi8L^(;UD9?l=Gn8f(10^cT z0QbJa%Qev3ByPMemK!iZ`jl+01$}m`&fntFGyoM=Z-5pNZ)zrrpKBN4D~N+NcI-NP z-&%2>i>6&EwXW&?tKVm_T-pSpGp<~j$-qUrls~0Pj+X%SJ$-mTLx7_Nu^1@MX5JO8 zbbuC9mDZNU>piIEeLjF{6(&(fz{7HkHoWMBc$+({gpm>Ly}c*=X6dE`yCX-&>9EfoX%V}NfK zhGf}SAb6o2=j6jVbt(-kP?LX;B~24VoUGrpygVsUq5SlvE4q&-Q&9BDcg%v+)wpGB zjb3~Sfe_Vax_!T;NhASgB&I#oVIf%f2pa@RjqKI9*U->-e;UMUr=m)ZtaC`QoWlIG#Mo&m z1R9jlcr>l-7T_O;@mWHsWvaaZbW=H5JK>3`y|z{)|D>F8*4asCRS?%N7N zk=eh75pELi6{26?GPKrs?QuQbz$ysfhw`{0r0xtOk^>sgEE`FPi4(Q7CzXm}=PSPa zV~AMm0G*=ko8CMZ@DUb(Vl*NRSYhe`G9oFA19lGney3HAQ0Nw7TQp z1Sotorko^!1cNF0KoifqJ!2swuDZQ_6Ek7j=e_S>2X&6R!i}JcI{^H4bx4RDn3CM9x+64x6L$Tvr^11KsN!hngf&JSSBRs+ zVRq+XnlODUE7Ea+)y;9>C5v?MPBSi{nrz#Rz~aPxfByyT-{z2zWvT(sNrB5+^wA>? zJ~)8wzo?H~NiereD6z9JeZ5CiO$xxoj}Q{{zwYxs*#bg=5lmuWie%!Q;n+BvG4;4eA9I^PD@vcAay_?bk_=**(?&}pZb{c$2^HJq=Mm9g^6s;F;M}Hi- z9@^3<)>Kq*UZ;5>_yvheUze4hDvEr&)DyZTY%UB^l~S^ zE)NM|N5ahGBTBXYqtJbqNihPlvOd*`m>RE#u||r%k*tO` zUL=Or`WwyK#8-U+uEw5KGNXBjDDHZ;fEsu<70)HUiSbjOMRkVa$&_tq)!XHkN*%;`P(joMVBiL*3DWcv5+r5Q}v zBzb!`1Z(H#C9i^Q&))6AI0x1T8=11!QOj6-EjQQ3(cCO0!=j8HqHR^N`%zyOns*KN z2{ky)sIB(R_Wc&{d9z@GhtKW}yyk#C9mJ^y_JR-jsj+}^){-1fHN|}I7XEy@t=1lZ zWG!woJSuYr;9%x<*$u~^+zZM;0ucg_1j30N1h33%X~gC7VA#BIJg0@Hx6(VV^SbVFCS1ELHU%V>GK89>IOX?i zKFHg4nFkc4PGLqpUrgGkOcYKunhw(IWmjUtj;yNaxc(!#2EYe@TIf=oVvrRJb2L=) zp8fbSY_!Mt2jp)Gv6Vi3k&)B01!XKQD{??kBVCHuRGqsz z7Lx6-HGS2A?7-P-{ zc@X@r^{)@BcO2#+-7@;tjmuVB#>3*n{o=gtfh6{fP2vH8po%Ss7UbeyH()oAH zplF0?^h24-3e4s1RX;AyE)Vddim4;*ENGY48u1xsH732CC8@KM3$xqE-6smm( zDqG1AR!L_fd)0(M9*F!K9;Oj~wjVMy$VA*Hm73%UfGfsfm!5l1;3xSLntubL`DcL4 zq++dEw@=%vm$s~T$nYM1eC8R(CFjbX!{INxwl!gP@C7H>KU+~jI_qye71m;X1w`^t9R*KRj$vfPmD}`n|jc>G6*t=Odq>CQa0_ zsnpu7n;B)9X>DQb&o7HL*$CDT^}6gYM?tsQuKI1E6md|_t@|4Y9QyRrEfa*kG&A{G zc``{Vxr||?v&O)aTh6qk)yLjyv)$|L(>o>n8`Hiqb&ZbxB+t@}pOIb$5jT>bn5T&8 zcgrm)FwfJRhe-8SJQ$#^9mT`S*J!kvrri(B^KcDOm2{bwi5X016_Tt{9fyr+3k*>S zo-~Nm7r8l9-qW7@?s?_F12K9ev+ny?k+(x45WUzNm{4j?+C7uYsM0Hwaza?lej@>i-%R z_#*SH+~wq?RTkhA6rm?{s2jH*4!BW_W;$A$VgO}H+3S{h47ghQN28F^N<7s6JRoR| zp;q!J(-Kh>6@wZicPf~$jSbfL4_ClKcJFh40$}B@A!Z!g*N!#OQ@dR;#kXK1M}Y*Q zr5(=F6MfC$$FS7E^tsPF;`E2|iPizQx;O%sp9YEJ{De~@?PWc#hq%W@D4;(cJ%d9& zwj8(yu&c)tIlDa=MeoE}SG>`o0u;rv@b6=n7|{P+OY*wzsxd!tHet!5@qXDdpjeaT zeq=uq_cE5wRz0zyDneK_@v1%Uwwm!z^C2V@EsUj}$vhxyvYA6z9aa66=c+MVxf*av zBXbb0el9m=l$LhSn3zL(RL(sOWRG=HAqv_7RTPF30_e7aW2 zBS5Z*d$6pPuLMgWR+cj9Hl&V+cPZ*BMlO6sX_Eak(MX8s#|FyWuy+krd8q^{<6J*; zfw;l0^M55<$A6C`#NT0a>eQvCACch~WI7>P?xJ~@);XfR-@DEvp$q0%0v#|vQ(ee= zIb!1MvTUj<0-0<=2;4hWLQZ*+cZbJ8Hb)luwt3L#xa(xNrlX?BKti&2XFJ4viA#>a zU$aE@E5FJ!>7*2_?!sV&HI3_@LN7nz=QQ#nG@BAj7us=hob8 zwk?QR;S4F2rM~hQM;Thv*`6wAo#E^hp&Wexp}`lKRKVV3(5K9$Aw#`)YLv=@6K03NDCX!zw z2z%UbCWFy~EEI&gw`8WzHCx+Cfvrc4V1GBi)4UIz%?>=SRMjX`b}tlt5-1XD(%LD+ z$Dhj8}YB@ajpn+x@P zZMwb5(KV3$cU?PLA1G$gm~fF`gLoRJ$_sh_$kKRImpZlsL^P7YtTO=psFwBeemk|t zAGKfof_)Bn+4+(#VL=JXne{ADmKgky*}Cse#u#E4S9c^97Ka!TEImJN{p30R6rpd- zT8ft^@E`P_-Cav??@W?WxLn0}$Js=l|1?808G|>d)47e?)(nehrW5HdnUq*CbenwO z1^BA=4s{jVE=hbx16U0nIMELUprwfzqmhZepsisIf_C3sg~-ayiGF(dOd5KS(32nK z3R{<`etu2FXfzXMfY+<8z+!q^ zHA_Z)-kPYgr}|;Q3h(8atH?uN*@J0^VjCK^^sJo6NIG6`ZBJfhrrwIEK2EsmWZTz^ zl$R**pditT_08SFHt~bx4&>lAXi$_^?35Jt`^=X1$pHBO60QylQl6{;&_ z1J`@pMm9w=AN zN)~bT$9BKzenzUtw>w_jbUuCmYh_Z8_px90PS?N|Bc+6e-H?TwAfG{=HeYSblQBO* z953t#21x&54VSUF8!ziqgzt{;P0))0FW_(f!+_dqHAq6{OtgHv^xg_%{W)ZCWqHw^ zJ!StFTCLCHSaWjb(6!<>PN>e5LN~?dnOxbXg-%je4i;!My)(4XaP>^-!Y6TP`z!qW zDHe39-Rgdub^aJ>a<7n`{B;_b&NO`s(WcsM{H|kiMa>vsojnNznWv%8>z(kA59=`ONowUmz*IUI z(&lnf`#gDcGWMws;Uy($vj#=;2%28>(QI2~ro5hc6PH%Z`DlrwZ>h2c?4D_Hf9>5I zLD6p@bXD6;Vu{||mtR#86pP*;DGqfZAU>E+m0Y=r$Lo+l%tFVNL!rz=^# z*1`2a!Bh1t<{jf#ysQ0g8kAx*U(BJ$g;%U$W%7x?xM%S^(0U5o+HJL^SLF@04~=0Z z7l1&9|ALDdK<*Ii1|2#KUid+S9hKmYlU1s=VNzo;EQS$%ieku;A*Eekllo zvva$}iF~P|{_%M?#+72~sL|5u<%4=tw)aIiRvwkELqR_Jj1Jb_JO+RVzUEAFe$Kod z0p$3foa9*J&um?>xA=BOg^zHYsmbg-yDx!XHJ)bxC~v|EQ+fC9q29%*Ash-r6b@@uv7e6rBrfY`BZjhp@w&u8* zH}{OvO0%(S6NrD~6%fzM`9r&B;B&K81jx1ou2F39NWi$JmLjx^}ZDO z^jDcq9lIrZPr$JJBf|A0MspJ6C{}H3zq5J}g;Fw_7FOdBmePeXR_er` z66d4WY1i#!FQq2*-u>t^x=WK*s^&-~lqozSsB=n4znB#mOe@QP<8%7-8t&j zoo>osWiKV#tIH!)#W2tZq`VZXLm4 zx<$<#Z5U^TO%-glx-*1Od!fgtzug}ovTj2D`~DL^n@qT^yEf$fmh6wQc#aPzAo1Z# zOO|<0^djbOgwm`C6R&nrFr2d;>L#9cc z!~!#BsQ6?fU8{EKGjjk7TzvIWP)%K>h=YUSWyBEIH?t6X=glnlheiP3vYl0(J6>~c z53TLfa|d@kZof3(Qj#^f9-An$%B8S^-emtd-5i5r5;{PkZVBH?3bbn|Y;!gL}P;}5EFwdO6Xn^XlM zV&qc~0Lem3gBQITjXn(k-WxWgAEk4Z^FM07cQ%s3h^YB=iKvB5JUz#4tK=RlGiSdz zkM%u&_--nNtobJc20;5_#Z|zG_;k}2g!joy)yScP_u{eJ=k;z$b`eoZ3{TsUP|}TO zGq@YY>Jz4BA9#q^51IkWxx#2}szjCAWgWoe6lX=LO;6uFNAdY4Gv+YB`K4SkMRA<8 z<&%{pyvZw{=RbBrgJ8#y*rNvph}27Y2VBcy&5%p*1(f=mZ?2kV@tuv} zPUY4&TXt9atwJj;OQL!by$#gqs^2ZR@xLsMS#35l^}K+bTx8!gcr|NG0cwQA`jg33sx@1c>&& zn%}pxz>koEFMLPhg0t4lD6REFBq|y~iAEq19T&`>RI5zyz`Tn6VzVSNPOk+!9iXWPJn?j)Q3)hZ>P)FGZKa}`5wo(D&sh(8)iY2z(dY)# za%%gPti2XSxqxyLujys9a+a?)7rAVhZuzMJ+e@k@qdJu~S!W-) zkRMW~ig6e_pFhd__ZAxe*j1y1lgQr^u<+7Y!K27|=sbf%yaJgH{fQI8-0SaaA$d_G zhJngGEYehl#uQy+>I}B1k!MwG1l-i)oMuEx@Zxz~*ZX%Yce%YJgt*=sl(Jwo4d_(wQfEG3 zO8c(+QPdx>#@fG*j0`7T&JtXhT`9Iei~L$md-_uK{mM;gY~-Dhx~RAxo|fC#vMIXVxI9n!$;a_K&V0Tl|-P@z^7};SbmN~ zVsn9D%%~SIGFx>+ve^ACGwww79xtz$-WSz%D0}zl5fGdps=~lBavpJiEirt0r;B-R z1&~qdyX?Idyf>snys-2#IE-PzuW-aPqcfFdWRsS-0gi`Ph4N5*D0pWJWQ$HJ7)QlP zSY2#%o{Uo>Mov;iXO=D>L^=@}aiSIolcL+|@%P|z4j7a)ydg1}u$^7Kx0QxvyjuczL)AApms|0AIqfqZf8!mKpnnPi3 zq47@4zS;s24mO{v*!$mR>wN-{-{;YFyG+z zXf*NMNHWsmWd2|V)01FnXBALhH+4Z~6(dINrUw~Mm!+;Pc~hC&VxPQjRI)mk?WQh6 zHcY#|=Vb~#g2mU5COt^|QrBa)M0o@731cLDRl60kaDP^7;RB)wrHA#f2fPzD$%2bN zvXXKern8-=Q=0%#`l)&dAh&BH5zP#))$?m1???j@T2%#Jg=?+vowluWJPSh}Zq0N) zbJ~gghylTBtVdNH(JxUuZXP;%xY6ywGbC9rd^0$UoaoO^#Bs7Ts`xbPD;xtUNKVG) z)943%>w25_x$VV$EZ|cPmiYxB<#|w!W+ys_M(0fTeqq)4wtTslE+24;;D;i9J%Z^; z8GOcm2Y^4$EIs8@;BMdG zd`+ER#`qt#6Lu_FzT{X42{*PA!j!W?GEfRQEdX9VJ01GI#_;xnsFGVR!}F$9#$PWY zO!mF(Zx8>ddWTV#{0*KbLt`uTcuwss!K`5VvKWiU45W44a^WWX_58w@m`4u{wkfZ>e;1g%?HtvUB!c+ zBiOC;@3v%lDtHrep+I*XWVhz^Ti(Pm!mXBUt_kg1Na${`36tZQS$xa2@(6~o*vbK9 zG_Kpw(T8Zz+LBnSI_8B!s)!9#VF(R}-mb4ttO`9!la1+)_(#(c(#HL(IS(BceD5xZ z*&J@BEE!y#@Ad0F>~|@p(dU2|hl1(p$xi-*IJpy&R!g{^zGDJctBog5o+XAx&D2Fj z@jC1eUAit*b=n(ePyQY3kZuOk7Y+IPSvImfiF24E&KI;bXbxij7P&&VFbgW~x#5EX_t;Rga{MvbS zxWXynX`#FYcsl9_0R++4&UGi@*`eGlimybwJHiM1t$zzp26@fwRLLCM8>M9MRWq$; zpMT$JS=Y4K5htXl%kS}N7)Ur1qZW9|rS$DAg<7*ijANyYds4Bf!|(IeQW{`oIP zRN!C7<1fpT)~Jwf2J-5bgLT`-a0q)?2MYoIv~^Gw?~GW`!u=GQ=(uFw0d4dX87$uC z%(Ma8!sF5;2GKg+En|YUhTo9|bg5jg5u)c|<-0ZEjoM#zG~D?h-2w8y%OL3Eui zf&Ug@U@&-Wvf5^KAS2C1o2pHx^1?&h(=-tY3B!F~F*NLHgN6d{h*hXhQJ&<~`*|cj zVs1s}LFf^E2ePY?Awck*J3GLnlM6#DF@j&8VE5tnogDa9PCMaU8WoUrx4WP=zaynS zR5L_(nS6_{mR2A}{%?anV|zsIo*QtFv2w`~UR(1GioDyk(MPlGm|K_1TwdJrwkw*( z9L?L)Lb;-z#EyzM)mTrgYdfn&jEdt)4vx-n>s3TC7l`ast8CG#3Q3)-CYnU7@M_L$ zsLpMu&KK*<`zm4x^{@~&Sa%Y#f^A*JMqS6oKfiLpR4_E&O0$l{*H0@gX}2g$JXr(4`bLYIk!dh*$a_xO@>VYsNeG) zn@;r_8fh9LoeU4*M9$tJn1s&fnq7ec_zWV$^A7RgJmzVP_-`UCkQeTLY)q!Fa-_?(cxFyWT2Xg|t^}5+7ZLtW^7n?86r%8enN0vqaFdgTy znjJ{PKm=Y8iki0?I-1PIt7350?5Z3AUM9nJ5JNpF^Soi=Ftrtr4lD~S4S)2!~YLpSB3 zbe$=PAr3>n`y8Wxp01@cx|#7o>cds$5spwZ;kJ5fi2q;?)6(a886b2FRgmJ(4bQ$v zLMeU97gx0?2UMu94?_$>@{{VGpyU+{3&JZ6lGhp8i2;;x7T2}$F#jW!;}wEpAy+dI zUg!^`i8J-)Cv3hc>ziFl=-y+N0|e)m@(oz9!7(lL8gCoMFY7O5JUQ}O#Cfr*DJ=?P z+9qlAV54_DK=|YbmibZWhuD2eL8=NR(utPK?a{F_)j~3UVrql!l+AF*sMk48!P-GO zd6HZj>h8ebCkS5eXobTXaPw7L2DpWv!Zul59LyK}5bRg=*Em=+q9X zQ=r}clxtYud@!6HZ7G$A1cD^;5YZtT4vxo8&;((Yct`D9ngKD1rSi4Epz!wtrEDR~ z0K^0cvrVB?U0gS3_xnEhU*78VzRTW%sMoz?_9aPev8Z^Ur(Z~7=VOPDv@w9Jkd+JA ziI9BM8Qz4~g!TYP(+uahgZt7sUbod*I?fy-M@Eh-4jwuI;Hmn9!N2JlpYXS|KIg~( z*Rku8-TNPV(ml7(Qn=N2FMZXAf&2e`6bM=`wP}~N(0-2p=QM6?1X)IfaMsd*okJfcA?{<>)u=;qnfY=`rQc*{glxjzpiEnoUrO z(2QNXT|h>%Dl)PdJNapzT|k*c2kaU+>=7}4UX5vc)fd@!SNCE1UOqdT!H~pzVj$c8 z+C5s~T=O3a17WvdD}Q5!*t*&Nczs`uG3;Nxa~%f92Urhcn|A36ammlV>_;NrxT zX{9Opx8cC+2jXARo|Q-bHQWwv=K1gnvJ_vAjk8Lmwt93)_FqtL#cL&LN>{0$ zm%lEx0EIH|&?xf*$SpJJaiBIn-NgGqXj^IbiPJb`MnSE|+(2Aj1zVe!ztmCYe;DAj z;WhvuMB?AW0b}anHi_i)Dxq-FA|KO-o{z%*ahp^}h83JYLN+U&Yf`4HpqP4o=U4V0 z<)Afl&QMx>!pH~G#rz!rf^h(NPca~Tz9QzKpJexYTW-swA-;h}$;WpZd zH}CiizNTw~jDhXcOYn>kFj6?3*$I~7X)3h{)bkkvJhZ&0fI(`|xX!glD6{Pr6xkR3Xec|X2lW{V6J^bE>a=N$YC6^Nb9C#&M7N7d z=G7>Cj-JL_t9$jj>rrm+2YmSELg7~SYFeiCq;aW!kE}gZ{&2DX9Q{_sN{I|HIy$3= zw-hH$+#`#F16!bZ3PW)r{^UW56HlsIx)nndwqWr^;MPsrfR zMmLQ)pz>`EGJI0HXmWT(HE%Tg8@_g)4}3=WaXVSz_g6p-#7R?7(FNxsf!_GUCtQ;^ zab1Cx7fRB*)Korda6mQBpw~gBh#ZvZcME#QgVn!5%>$TN)aKfRcs+~}n{DWjDn;b` z3O65++WksO+Z`EAjFIqT^ND|=KkXiNEqcG#$>WKTJ<5#P)h<>kf78rF@`GBClCUPr zbJV3ROWsvOr|MAx>8qA+9#}A7eLM{aKehd=p?>ft`N>Al2y=tn)Yyk(UDMYv-SOh| zR<2TD99fg&)`&x|u&TW>Ki9c-=9B*+_bRw;+XC?~4bZA~8|?4ZO#{Gm+2!&nBZfuFCm``yj4=c`=1YdAraGR7Pb`~I3o){L+)C#v z7SZ%=xu#7UE?6*LZV}C<$*y^qwc<*I*ggJIp=y*beQgS^jH8)jAPtiYxb-dp*@Tdj z&#DRqGMo-T9QtmSIoa^uo8N!%-25^95G;Q~ULFvb<~Ad329C0TR$*zO>xt$ejh}xi z22T|I@fK9BavGlFSuCRhbul{^d{C6E)?TX-8uJ~ZTN(o#sud=)icpI7f zMCEd~Lqtif5Y?>O@JS>-1j}Z@Mf8ep4vk_o)?jQ?DTRtpXbYi5_mZ3Uxl9{XTUiDP z^>{L8F92+KuaJOh2kDHKNe?~v{_;2L8l098W=V_(Jtz{2ieeKATM+e8W(XUtMT~Ds(Dg3(wo5%EdjrQ=ydNC!6)o zcZTkTVNr>Im}n$~^k2*7Ai!sNwO?dS)jpnM?e9C)HIb`@Bn+%3Oq#_=%33YFBurVy z@ZPs+#sW_9mMH+4IK`w$UActe zFh135Zz^N&zAC9D87@9y)fU`F4^5{6!Y#@`j{{h6z$L?$X5p`MC&ZN!zpu3sxhOE{ zS@#=a#RYy+-U{l{3P36QM~zEezi-*=GAzGf-+>Ka0l;4p-rT}7dM2dOtXyI8&c4Q& zvrZ$-W44>K4=Xt&oh$$MFBX52megs2Lw%j2b3n6CnI#_*w+@)6Ij`qhVjfHa!oj6} zG0y_eyI4G553SL^$mbJ3^zIB7!CpMzwP*z17+HD7xIYA>m&j)sMNhr`+F!gPGnD^| zR)Mt+V5z-El%C=}c88ZqE`&5C*QSI@=;ZqZy?>LDp@)L+GoN&vm*!H0Lb01>546U`O7vwTwcy zjKrD;6OOK;Nli07mzn)OV!aqU8#w8oqM4Ftxb=#eOIfRsA`hh1SEq-AbwsA=^rw?Q z3JLPIE0VDdkckcmGYycQ0jBK`Bs3^Ci>K7dgB&H=;;O0pUI{|GBg9n|aaC*uE2wWf zMeCQz(T2qRDi3U~-LnNDb3=w+{HUE-)oKsLS%F@W25+C@S?IS=*;EgK%MipC$w??Q zKG?ie?h;>@g(zd4h?FyrDi7xboeJg_CVdDX12i&O$vCHO11H<}dHM51+DQ zAXX6j!z;NseV7%b?pA5|S1KOw4?MDD2Gc^6pQR-o2_~j3BXK~Nm2*#Bin?-D@7S?` z`p9w;J;_^T56)lx)QEgK#1izr-p1-7XH!HrkyZW{koy84)8D1(5Dc;^v=f)mY{V_j z3O`LPqso7hKLKJAK+^9&Y$6*Yo9Awj9e;`QX+jF;b?5(0t)|^&PFz7TJE8zyrOeyp zw>I;&iQFHm5QkVmA2+1}EijQUdHU_Gw$a4$ts?^@K(NwPX(AKPt=4)LL0x$gs&LM1 zSE2Dn$}E6AWmg~S}moe0Ya;}djSdNxQ}V2a@lBWG5AG1E-ah>7-6YoEb_<_BrmPvB5&?r zs=dcjJ!CREIbew>ZudNM#qy$&==VuhlQV%_rw1?hJjHOKb4_RdhQBoGvsv4W;*4*^ z?}R$5)wtCA4} zhJIOPZ)ZI=rP-7b6i7VGV3b_7{zBY@A%n)vQr4ZC?MmcalZ@>VpkDep5$a0KO6JVCTto_Sem#Cq*fxIy;Sti9=}Loc%Pl zgy1A?2fa!DJhFOd4{Zu+SNjuJ{l;SXFjVj(^w?Y$&qvon-w6IKUrhY#WNY6cTTKbP z)6jA_(JK0w;!(kqo7nI>wBDQ#7%_O{V&g*uNN+VpI4s(W$dxt2A3v z4cRau%ev&%{}i2NRFiK5#_tUn4Wk=JH`0v`7~S1UH%NyVqZ{e&?gk0biF8OeC?KF9 zEnxe9_kP*OowM^i=h^*S@w?oP-=z0q0G`1 zy2T7fGYORTlvo3@N16J}EoE$sXX92R9*{VHlpDGNz5p-krVQK5{habuw%(fIqjcIg zH%wfqviWrHOR<6fGL{zIzAB7wuz%LkGMhz1SeDVFwhf5iO%Zc9Obs%C*+U$qABy|! ze)a9YyMS0O2IiP7-5ezGq|A*HiN^2dm1ZBs97xSro5oMf@_(<>l&Id-@!sI0`u7-+ zo#8ZO_VOjW1a&!N>3p0Te3x+_30bEcWqlZTSSA@p19NfcdCPsb{`9KK&&%bmyTdsT zlb%U5rM9wJ5BEGM9+uK|p@ah7>^x=FHKS>(zyjozX)hY=8X3{JHzx=|5})M7lw-Qq zbsy9#sfmz$KpFAwOH-j4;)xgCp^BX#nBP0yymtIOtOahHg zN@6O32C^&??o!#X-O9o;k;50X?rDoguO~yRK|Wg!!YCuBTgRF{Q{W6oG-)N7CBwuW zZ8e%^y{VIVKiM)4X)w&z?V8xoi<7c;Xa3wI;5-!~?z`{0R#_f@5=NOqX;KS(EFqqo zR5X(M)n?+31{vjzm1Q_a8d(Lgyu&+|@#9RMoV~6g9&jWd9Hj*BHWpMcgPYnTQp+T% zd^BdfDTp_qs`Xrr%Q7CaRNkwWOh}zYri7ZM?3hUDJX4qEWZI;oelu9nq(^*?ddqc* z$qNW?ZFqp0`Gn~c#1y61tWgmlC#56+OcmtM11d1$L2o29b0(}ctZzovypzoZPvi|& z7k|a!O%$++qap-8u|yIa)a55i3l-Z|{p>B< zE3cELzWbV1GIcGw4HzskUECq;hCH+!gFW@Hh{?TzwS!m*k}#vDwS`ZNdDM15+>#_T z&!MTT8t+v0`cb|)faqa|YlAluE}x<~|NXk$RTq1ZtEl)SEuC8kPsMSDw2u;h?TIUr zKpbiKSuA7J4#sKPAi(}($`=BK_loxE3=EKF2(hnSPS?ELI%+X~UK^=T%R(g-xR*Vv z^Tf@i+CCWXmLuEar7RoP!0;(oUHwG%&94n4%>@b7_HsEA(H^J*a?e4)S54{VB( zU1WQ+;YaIp5yh6td6gZxNi#|mZ~(Pj^d87Z?04wUrL=4qypdME!ASz zFlqAVjL|@Ymm(Tl^1l)oGEX5{UJz?NcUBFHZSd%GxSI@8H95zauQIeamDk1C?hBA?(^xiG zL2*k8=GhyBw`irarl;$Ph&1VX37jkfr>Z>K{wsXGZY**OB%3r+7@ZQbHOemP>y*li z+1ZR8K{J9$K)#0G5TUbVI2pJc^5%EOY9I-vIepQ9)#KOb9E`_X?-An%x_5po-VoL# ziRzAR)z*g8G*X)Ac6!xvBp_mc%$!_>!NqOmbtD=joe2m&TecZ%hxBopc@N)y{z9>eD+A<|)ay&OeE{>PpnK*gw;3#8aK>|p{go3=CXp5qG8v$S| zWEpk8ZJj~(ap!A}vu6I`@?r`QJ|92=SjdueZ{xRAc?Z=?y7yO0iXS`|Vp!v5&&S2~ z?{hV({o73#2P7*E^bf1pLvDv4a)iopa?b(mj z$`)2|N$SeqlYDTP^#r_8g!$i>0QW9r&YjaGmAP54cdtjJ^@)fkv+B4F>-0WXDBhEV z%VJG5zCg?u(P=cn@@Cv#g;!X$6l>7jMe=T4jn6>@a&f|D20i#D_ea+1ZIm|0kc9I& z*8C^0^eU3>fQ7Toy~2RcBDmRm73pn-1-P1cfmB@+pU$;Elc7P{%djn8AdaIx)SQS; z^ZN4#i8EQjYxBpF$8m*hZ>B&Hlf^aXbQL^(h7q@CE39cIlZpbFchZz4J;b!5HEO#6~LX*~KZ zL2lX3ci*i}>3s3DxUR*g@X7HJq>~XLztcP3VFwv01Ib-fP#NQlSTQnWH{|d4@Q)$e z|Aj}PS=Im%x{g1pX-Og6N4c#LnIR10ADSZ)=JPi8G8A8cg(g|DzY^-PZ}|_evxf2K z$2^({HW$131V);l|GL+GI_Ij7lBzSz3H0CWH;OjN?6@Az^8SYtyyY>sWc z!t%t;sM2Mq+e}n~J<329fQ=bu+(PWGVE?Lv=xife%_z&-_z4;uTrwc^e!RUG{)A|) zRCyR0hK(T(7T7V5`l?;tqo{0b3xZSQ5WSlu67BjyW9I7l}~Tsxbtb%5uAu%MmdUVNGq=>%lO)2-w%zfd(l{@y zhcFBm1fc)E7u?>I>sV?r;v#$nLQm5m)kJxL0a~GaYM0E(v_=wH4a{~b?Mw7ISto#K zNkBX~15Ms_Zx?Rd(_yijac~x!>DaEN?VZO%wZ4ufct=pS5!-kw@i(EIXMa^L^32h{ z>z~x2k&a?Hk)o(TkqMyGngBTW)majfUl*bzUu)X?M<2(H^mn1)PT~G(SfOOw>Q_k2 zYwR4&vPaVt+~*nt)k}-02uk9`V1uz~*}M%V0ths;pPlO{??K&mhACU&Jq*<9Ri&gO zj znx#3g$|UEcO_S zN^Rgws!$?undQEpJzY8t*AK0ru69sJ5IZ6)yY3$^U8y4V=ouwxYG*{MZBEV$d^hN;WH9{L!cSMjO&3)1HFN#Y#u>cTNnu1C-isb`gN8478_Q6|ICWUh`u9za9)A9+@q)G_dr42+y1h1+ek`FU(v_bya z#D>rbGx+%q&5U|9Mf@V#+kpz?V+%dBiZ zNIVS%l_+A1m*u@vgg^CZ`;5~eIn%Ic;BV%$p6uG30|xg?*l~&)ljpLUGal=44{6F0 z{ehTd)i;R?Srt)lxmojm2?$GweY|FmXe#R!TFhDPSe;AZq#@l z8hYHUQHPyX*!kR9q8Bc^^;z2?r1~o_%rqi_mjW^chAQf#MRe8jRqRylt?4N;on_L_ zpWaJc_m1g6>~#HfKWFsd($L8%VrxoJ8_i~FDH+do$?5%bL~7krweW%_70f@CRr$ze zv}LycG6uu109Yrp-a1SV>|5OvkIR?I$)`^=0EOmo@?>uJqLzLT zoPiJ6pU8<^nCioG2XVX#Uit8`^9u(~Y81r`ZH4o~Ian**01nHwECZrGT{sV&PCx$Y zM<0U(8gk}Ysjsa2R9v!NkXtZwUVv~>5j8M_{dWV|8$Z_VPv^%4$v+UsggopAkg<{% zMl-LP1InT%HEfK77f{oMZgwGPh|z6O_p=`v@@?r$!IR&nmI|+ZXDgo0Xe-oHo$1Q*3FoQ48Vx?p(rtUMU9#)(8>Bt<>{^~0<2_RB8ld~gDBI9Co>-cT} z1mHqmPTM!j5>4QWJL=v+;~h3*APK+Xc({6P@Qob=qm@_pjzS=zl(LS|=l`$=cLwojwtU|EvTv0e;ChJ0)4=a( z(-&A|OS9)2OQ368kKBB1|=o}1QP$f zU#JQ?>@BqsDxwy31OAqE;EUT1gmaUyTC!2LPVMO+i4Gx*|+jc9%WQt|PahU$XG>b+-ocSJsJXmlgY8#xaD zfwQ8;fe*omeUvQRDwEODqls<$5CMAWCJSoaHTGLO5pT3fh^o5pW9rGYd#ooE88kXp z92eic!pi}W86j4k(SKcp{9}C8_tB7lMHH{&?V#gBYQDBnTb;_6d5b{JaQLu&{uLD0 zdc|5%&p6_HBVseI69Gf*ap9T<%}lCVP|!<6+6bW^{S!O>%r;oz+zjwVxq{<9(p$<0 zj-k0l$=~AceilALrFc+}r*c7TO-aS!xZ5R!Cc=Bjb@&qDX;Dh`vmQ-&!Dg4JM=q1z z7jh>gXJji}PbBp+Mr+5#!GnxZ5ORk_@X1ljOW$aKm$9!E);o-gnitDJUb+dwsz|v^ zDUS3}k8$Q$Rq~=~t-Yf=c2MaI1&0PC=6em-vicKun z!D)o&-u`a;Gnx>2R4+a)Va(cd4Inv@dOLtGmqshNB7v`!J$F$?rgt}ZN(Z^o-$%0DJ6|NY{~EsExfOoFC^ z@ipT(28=9~)ORy_<-Jm8xEya8kv=Bx>Ww_;@eGp+c-B3Mo5VTgiewKhu~-1O1Ln2M z3T3vxkWdRWsp{T<9@3=nD?(!2^uzPTuh;ZAwVF-`ZV;E?i}{$%x|187b&Z<=#2b~H zAgHm$?9Jns%?{mK<=b0V^^qxPQ9KTK2_G^)^ zr*($!m@b+*s%Se$`eVV>5(<H>dNqXbM{r?~(ZQ%&#wjUrb!} z%4NOnp=BuXZ@`uJH^H$XQ3U;X#q%im{2y%V0WW7i)t=6mD%XsRaC+B&+@+~W}GdX>Ku&!-8_`_<tVO3XUFuV0qnJkSj99!M{3pn3ktpWtg1qI{6}4l z!-5xGzDlQZtjAK}XEluik@@kIRQ&Am8kl@xE}{Voy8WpxzNy3&1;?-?i$II5Rk}!$ zDv9OedwsBaISfeOJvG3-b7ib2k2{eo^t(CzOZ^zdXD&ke6`%p8sAv8?JDXO5=I;%> zHkOpYnURL5hap#lKTjYp>UJ-%$%wXy#pT)`XomI)r=G?*Y9uOtgVoX#QB8w2k6|1V z9|~m(x|+SNL`(96oIUs2Mf#|M1q&5BDSH9)eE{u#a#ct9lu7q&jb|znc}dT_)y*Aq z7qw<2_6Oy>A3E>udr{npPcVP)bZeZ$zuSi6ni+Rt+Vd;?4qJI0xI-eUwRI@0{j;tjQS4JiwKM(5Z z1RO9_9~fC%!JN9^F=)9h1nXoua&xz6+8qLXq_(jRR`KBdt%9Zw=b&NH%OYv5o?4RO z+s9ST-S^olT^yj+<2D8KCO^~xag4lPsR}TVgva7@&!Pr$ zDyhs#;d|URX&*S)-NibKPQ+rd86S@{$e$G<)sgHfYd%>(YIn&iX0_S!VugF%*mi9j z=g+jA$$6NfXEq$iLb)b?{r=n*Tq${<ZMW^@;NF|Q)3q<^Cq&} z+8j3MB=W^6frbEDs!2TxZ(>fAY0{=)!jBUUc<}nA+`k$8N#90dU7`cnYmY9+z()3H z#x3_={^bXGVTol)+NPHF&JzWXjvK^^@)4(mxsj@&(VQOTu3g-r4oMMRJ|zXMAKc#x z(->&i^U)}CS7=#RQ0QtyMmjirY7&PP`&lr$G(E#Uz^UDf?Vo}&07ibMFv^FxRA>-j zox{|>F63hwkT6syXAoAqy4{R@gjlJ&H|E|6d>_=(J!_Yudt#W`s*$ikAwh$DedAop zSQfq6xbxwD{k~rYz=?nZ#*mTUggvVBMk~*75-!N6zh;BEPAN=)8 z+0&ol`joeDtCuavlJ{6201u~^{ELad$_h!5>^~aKY)=8W$MX2&^w(c%s6JHzDiQE= zUJCGkMjw-2GJc8i7-fhQPb8XIYyS0mk{|}du+t@Id!H16o0us9ZVhiN-!aOFu!T8d=eeHuI>Dx%)!y>t7@N zY>6Gj?=Fc74_kkWrgPdk@?m6b;_(KQV$)H`lxlu-exj{E%)`u%m~r)gO}{&>ztsn#<( z4plW`9nAO;o!fenS@y1KLq2}Vp@|m8_>6+app3y=C-2IP`$RJj#1nHOH5Scsl9zjn z*xAJ7#RiaSBjp`J6b5XRS>D`hs4ZO<(RwpRwrs~L$Q*=WiYux6@#(frDa`~gr=76I zh7S)^$`XFqtmUwFwRxI;CYnhqd`jao`px#e8wR@%4d(f!?R8++Ckbo27MLDD?;O$l z)R=ev^GxZoNuRHlb_GM~@9Z`#psnOsQ`y|TT%%rJ-D(m)+RjwTVu9eqH14>p2@qTB z>b~lx%Wln0kCyTDR)pD9Ve~zJyxspV5ZiI>Dt@=M)FPqNf&#d^y&=QoCygc7qMJ-V z2HA^7R$jZRJuXEwA76f$`0HiW#r48rgzdW0l~h>BNzXB~EBS*?N6hH80$+=sH(nhE zvR3OWL($MC8R%w^q&!K5^2d17WBtuM_1t{`5kNy|D4>a2d~Yi=M0+f$K2$k=tPR^s zTP@Ti@eqJR{`IA{j<2W((CyhXuJ~WnP*wrKRJ7+Ms;uXRiOL01Abn9 z!`jzx*Q(A}S(b2!K*=%4a&GO(bL|L?&*6OZ%cwwPgAzQXGnyhxuIu?w{?1u&W&$5^ ziVG0Z!Fb4p$fx&8>nV!WA|rlveZ+6>-2d5!CLjT>7mx!6ox)jHS&U5FZ|FnCp+T-~ zrMGX?X+`}+Iq8H#I5!Snl@ww=9zX5AVOg!=*_iSLzRgT13V`=$qzN#0a9-zyIriIq zdQ4Z6Qgqs5uhWShLla0*qT$@-RKtEd&~w8qySb>G(1fBMy1%|si5vcf3ua9#gfaJ6!ryiUZhs}82-6-R=v*hE<&8Fh#o zJy8jJK?-r+Bc-LLSo!Mz2OF$>Oj~~~$Mps?@IJbXkuQf$hY59-vd-BdM?D{dER!fm z5jkAzmUI$Y6s?P7>K;Ad&E=$q^olbw5RVE#Bc5R}atm|lOKy7`Q?7jI!`zv`o+%&n zbEXW5D7mV3bKjR6co{`y8D+IL;_o_r7&*HC>!^UX1U61@_6VUNk~78Cg@FklN5W;4 zZ&ypO%Bs@#!((M~T3e$y?Jt1xGQy^UPjZ5jqQAUvMl~o7^NgmN<@NTJ>tCAS-;Hf2 zB@^+zUyHi4c!FumNelOw89&s&5EVEmTtGuAtBWYSM1@VT7G6$j>`QvQ6uSk zXAUl>C!TQ;^VNbe!`HdHFhJp=A(CP3vDcR5K$d*?v5Mzt4ioLbPQv$1ZfE}Q#c=# zGYk^n)bMF(cqLXqH@IosE$4znTiguk>PXt}NKkII`{iSPh9Q4>H{w>q{iI5XD3}E~ z(@3QTl!2wddPrXlowXC+V9a=_QpHZRql+pLIzov)J zwq=Maw_DC;P#xodoyyXm@Fvu?w61mmfjXmy+$WJ#wvJfGyYNxwM!E3fxvU=&72YDr zU%@g#tmGBDp>_vOYDc%p0g}|gxt8BbSFJM0nA#mhqw4v$oS$23<}FJ5W!qE*lfiMr zX&!fCdjgRLd6fN~9PMA3WzB=OzsE=QcLf!V{V zKM~L)1MKtz@vf*%S?IpuYnAKKidiXUEAks^blMys_~c>v>41gy?LlT9K?i#=#=f*r%-WsGf0edz@-ciq{{$r8aoG;iYib} z@Mz=D!t)U!+EroM_W7H;ca<|)8uW(&snR3kbCE`}lsLAO1Qd=ErEH&csP^hO@>}>n zlvQ0CfW3A2IINSK&pZ~NlDcexu_~D@6th*C z4K(~~Hf?(Z+lt{s20@%`6$5BD@aZc5Tpgl%9VBt2!aF4bAw4_B_jCWdZF=ESAa*Y9 zi|$23dHnJ|8MU)JU-@`xXLyqf5e?*${H3c`9r3jR(%&n5SIcLb%(6x>(9Z0>Q>SGN z&a9J2l-CO(_oy#f!{$a` ztPSfNRi`@#T?1R66zR-9n;|%-es%O3hawS_d}IT?i>fkTQ*#TP6~VP$8(znL=HD)Y zFG|KUMDGicI7JHR_~8-w1G|a;G?Y$hgyVgOknk>LK7USl$4iOmgdoFW4;Giap>9;X zyozTA+%!j-5_WhJy`E5)@<}O|0tY*jou9TuQnW_mnQi1Aq)Hs?&!#!I8l$7P*BV-w4lpt?#+hbhfO+X?3$y0esiJXe)_9CGcS09lKoN=-EZ&?zNbjzguidP_8f?clhhv&7upsjkKF zmn#JJ;g4Y&_BuWZ4Q{^En~-JNQC$7tE+fGgHY598zY+jr`FUHJG1Vy7{CMWSw(V!0 zEkS4?ki;TJFJEb?_ zY;-1X4(f`EOov~IYkZH|h#Fh*wSyo!e*ixp2iGRke48F38BE>pf_;V4hV<@2C(Xdb zC$1X6vS&*@y*kG3aooC7n9QJHf424K#jxD21$$KAAj!9Gf@y5oYT z<2Xs&9``HvGl27W$gxmdN8_bK6lyD?>s<&XJgOWr8iPG;^EUp0sF_{ODYwG&e# zUI4%M#excfuqS$|ux^{R9Y7^y=+AUV-nQ$`o}G!;VaR@f%+HK88~C57b~5(bY0&Bd z#c-4|yUHwTMnh%leJFm6qWTd1uD)&N@W{b&1Ph0gSnIow(w_QFa*dnd=pe(prm6u$ zv!#bNOQnaHM+|&rGn2f#4rMJ`X`uA-)tMB)a~~!Q?v{)p^hd2T1rw;M2*AaooxGu1 zi&_v_uNz4d|60qIRPPeP8w)d4aRipqEYaSK^w#N!WphhzP=XFmC@{2-2~kj8u}$h% zo7il>6!>Z|Ut`?uZ)-KAqZFedp^TSxZ_$j4!AIICFRnnSPf&DpMU%VQg4Bo)bwp~% z7DHKrjyW5;tvP&s%jL68NLeQD{G38K65P3le=3l0#wg&3CHfvOqP*hCw<@Od>92OK zsb?waUOd5Kj&fvv>!tx(L5x>*2iW>-@p)~lVYF=9!ggnw=}K(uJ^}BmhflwuA&NMa zEg!@ZzfKCZeMf_l6TFP&_8Ed9gZGuQk#$b8BWZgX&l0qmJDHMagYMuFT+{%(4Ruzt zoF(Y;Dg~(oc;EYA~G#Ue)fJ^=a4dhN~SS9 z^gP}68Jsh9Q+XE<(5Wj+Eq`Tf904^RZaxjJ0r-Z`I~g|#m81F&=1uD^k9{?g?SQq> zh_tnw7jS|pvg*?0s=&_#q`Wvvh_QkgI~m{(1l!j>nU#cOPMWI-`A=F2q+O}ZrAC{9aFVH znPI?ywafM83}f;PFkh*N3J?&*o`IYIw=1ghGu-wUF?An5VVE|84agqFmL6MJcl5Ra z#kbD}0w-(r-!sCpidxc$mC9Z2dZm*S+zOdQb8cd3S-!J44cW=M;{kP*u zy}oL!V*1E>AO9Vbb>Y1>9L}Xi%g^CoBRn5`uXdJwUpSn;!(3~r6`0S>J3ZBOC#l(5 zF)(xGr>x2Xt_$e5W0|V!*t{5dK$4Z)$H@~fUT<0p^PqQinM@EiY3`=tNQ~MuviDCx zpSj;V)~L-X)B4JIoxe8d_1O&l++>$N4FiGCfUOnWwDcSA!diqOeRTeCHD8H}0S0R5 z_-nu{-QTL+VN{lP>Sqz#LPf`MdepHKz7e4`fP@xoIwYC!W=%i@fO{-^Hpv z57&A8VH#hx97A1hyoWRn5H&7JdRnf!0wmoBjJ_4=>Uqnf$F0iyD!s*dsu{`oPQQ8c z5I6q7j)_us{p*c$!i<&UAVVZ;ogAY=f3#fxH9zD*qFQw zaMwvBKD|`_@`SurQIb~E+NL`=JB{HDeI@N~r6Hs<6kZ_eq~Z&RM5U+L+_)Y}{}z1h z;}b#iOyI3;r_P!Ummnbd*^C}gS3VV&*Sr;@0aP{E27ASFm&yJgfzsV^fFJsz5w+oX z^Uu7GO9kLFv2=Q`qOAuq;mY@8)AH^BQb`RyJ`!e7jh5n}0wRkSRAt2?yh!#FVEj0OWFp?U6H6%`)<@3~+1jDKcTQ zMJ>~FD6bfet(I?x%$RbZM7=cXt~&u;y0nFOs!2h zoqjSP8~Hb~eTJnSNNvS&Z8mumyI|GzBk_?F5-|Da#BUKgUBp)Z{K< zjCcbBAd)eY76$H?Atum;7A^vmAmTy3YMy0nxy=syFk3AVfm3x8sMeu)Z%iuU&~Cd! zoTx1j6CoVIPbOEMzr7K-dJISo&W4BjC0xEx=jV2GqkY;v>%u5ta#<@9HhObX_OFik z5ZZOw4!jZfA?JT*A9;5mvRdY&BA8p|+$N#?`+@k|2x=v2?F>9dGAKu@r- z)s8V?thUE92ri(J_G{)`X)nSTTGpxVWWgaP0HjMmC7)}Z?pLZT{Ov2iYV}YsAkJ`y zFKewPjxM+W75x&vQCclaa@%0enr7PPmvDqH~hG|*(~4*bTi^K;$-Fuu%wWw3@K zjZc9_y<-&+CVo-WcTr|#dv{OG)=h@17IR<#QY3{EhLBvXPk_E+t!lalS0KRJ69IJa zsmGGLpC!vx>+|kO4n1{sGg)ZT4UpENL;}hkXk0xR!*I9MiP_I^yQBW2`x6n&!$?ws zui&WDBXZab5X?t$#i#c>iPZ@x^uY_-{^cVMS=Y1bt&OGdyatUKac_)aXZN4JxB1>a z8uEH;cvApE`xf?9TuxkDzVqJYq#cx9*lr?O_sT?P-DcF816f@2(ZPJgUDLCqjJFnP zQ=hd_&yyK!u&!5x&NkF}D;AxH?p2&?X0;1uET*`?B&-{O??lj(>8v%k7zXGBg_R{% zgU~cpH8sUk0ywWe5Phd+`_-PH%4IK65lnWt(UR)7_BGsvBWG8nD^Y~Q*UrO(*tg3b zM&*a*bgL?3pX*RJV1GeLy<|7V=y!s7ApK}Z*ScWjz^Ci%Rz>n|)3)g~ZfCNZmGSXg zf(iSQF=4`Asixz>?Olp|Lh8r&jKClBFVtg?hiw3nym2oe6YmbfJ&{h;Yx<9POUaCR zG$p%#%}fD1cFgU%C%!fN4Iz8#z8g?O!1iqDwZVgBmC}4PBy;GsLO17&csRHddRtW5 z-!1t;IBG`X%a$XUM5gxY{s2To216;vCSeP?ms_ZsQXfhjBR7EW z{mtLV$IJ8Xz!sOWUb3|bR7Do{w60mQVRBR=escaMJ3m@B_1W`nNqJ5)>-*ir+jbC~ zjj}m)0FqBMxj&GOsNdY$-tb!@Ap<4r4}@C-n05IIfCR5Jc{Ggyc;gpNYx`OdyE%lc zUtD=@wN_=fmc^MCVs~7P*`>-)FQpgi(y6a!mOx92KJv408hHUj{ybZY{^wup8x$Nr@c{^XXHcgndIZqkKXC{9-ZF5=57VeVjFQuasD zM*9`|3G=+j0}3F`heDrpNB%dChJOphw4lR89JHE71Jg(Ggve}Ipi1R@<}Bv|Yh-K$ zEC-QGb5TwFo%IcDgJw<{UB%w#$ArD#onTK3cFDVNmv<8ZB7H~tk)b~Wkd2%iJzS3-C z&Zt1rXA)&UZ^a#iVr|;_EWQ=D^Yn550MHhx5I5Z6W)tkw|G(qe8k10n(C8O4p75dN zp}{R-+ZT6GJ0x!egT)bQektYJ;|{qn>@O1m@J&@?(XBu0j$?bfTrZWyz8x@pz0;~1 zcX;3T^u}#|oQGv7J0myJP~#|u6JAFDkrSbgX9ODn8d(IILMEjH(Qe7+Z**NrOjo3W)3u6?_ZdTExZqp<2FUkOio)eXsQ!*e!0uLOm(6{zkIKc8+hhzQeSIz-ox{*Y? zB2lUzjpHwt)LurhgEFkS(yL37N=_}IP>ccVI+*HdD8o)hs>ROT9HpHc{&I@b)NUd- zNQ{w%6$wfVO}{vs>xwdQ>#ISew)&3g)Uuh0s^>sxdBoJLc4(R$v-!Y7CxN97h0Nw9 z5gToBjwa`{W~XM(g_5!xKDV4uB~2b4ob}yp0VjeLmSi+Xrv5C>uOV&wDlPZktTLms z2-0(UUyVtTXj*z;5Kq8p?LEAkQM8b&-ucGyt&M<}S^#cf~e} zF;8fADXv)^HjaFwQ{?uz-gOI;11O(hwWU+mm?BxfY$5wsyJ}qC`%+ne%$_1z+-8l4 zX4J#qJb86Z?8#F8x}w?6fB4Nd+^-syE{sThh~G%~D}S!wR>5lhfHu6TiH05!NxSl@ zPz)wu8*VR;WMTm9Pk+$CO5k;#EkX0ei?zuW8Tv~)uIL{5G8{Fh*Q?eBS&LG!I^dS9 z$&PsUBz^OtH2BYb*ii3By4l$$3Fh?@9hIM}0T|p@X_7=@oJY+$Of(Dn1K$B;@Vqek z?6+AuRT{VF?$bx7yPFpfMegL7W*WbTq}$%Jg_)n5HeA;-^}}_|0vBAxnl&Q10P*Gt zQxEpb$}!olf1?WaS)Ehod&KH0v->7)`o&YJ7&XnP=+1(ve`k!mJWo6xboPpmUPj`$ z3*|+}Hf9=DMY6k!aq2Q?j)VjJaBRfBtD;+EbPG`XkoXD<|BTR8f^67kAl2UWDv&~2 z2{_9M*tB95+i_f!xswewMw%nz;Mptpom9l`Bm2t2r<l?yhGn$}hZJWbSVE3dp9#(G5(to^=;gi2c zsdvIQ3Dk{UiKbVj=Q=)`v8cG=;eD(qUZIh1y0v9 zkDGdf`wY1k1iEEkHfsxri&&10&!tXbfXk_B!o~TW6=bLB!PJsoS>6Sv@CN`gdb0HM z)$Q~26H*)L}AGr7UqlB6L_2ap&7!6_LxcODwq?@V%O2dt5Q69ilZWPS}j zZXqdD~z9K7)Kk*n>dT|1) zP+IK&#-Pm?Eg44~-;u7`T>57p$ZK&m1dTpSVN*m?eJ^O+An#UgaG6b9j$X^Qo^g}t zNvmN;HuBpG5UAsE?Pa?d@*#2m)3ip0E6Hfs0sHmJv0BzpiqnoMM!D~g(#`PDme>29 z+VM*Cfk0G*qrisMP3sv@oQ}MH!AK~F(6bPdqcjnooG+v`v>0QMnO^r(ox7?=Ib1*Q$~%04+8jgR0V{@-TNLE<6_4eg(9MAo+MlkOVVg z%0RK6OB>|BV{Z%sUPc57vP93^)dvL4qNLurHR|Tm!(r=%UOiiF)HhbF|GF$Q4wI0U z3Ze4{TABPdaB8Fk`38G}vP1$OCQ-Bs8QRv!SEge*%!C#&n~WTzOr&~`Iy?1j|HZ|J zXdq0e(85~5_5Ieu4h_izOn&K3f=fyy$7z#^*$~Q|1LqZwRNVlfjYgB_34<(II-KG`XuG~(LUzFLQ>KZMOdOS} zXM7xPcK|H+u1(G^*6@rE{9~sOmV1df{v_h39c-n*eVA*BbS>`baqA>PL#Ij@$7fDe zW2Sw70lZ?%(u0{30P#nGDa8SubRJCbpk2XdKqoidF3)+E8XfB*gIJ`(-}oNVwyW^) zP85dtJF7E$D&v|E%OJ<7eOu9^qEKF(ye%M!&$nveJX0^P2dBhBTD9o%@+t`AQ9$VE zIV0fPG7y+bxg%H8;&XeCe0{)`BA;CdBG2foyVd=`T zaQ5Zm1-ZzYjaOz_-wmPeNnbiw2(lMtEe&cD(bxg^P$OF3+ex@&O3#R6!H+@p9pO7y zdKr3b+3pz7%ygA)F`j2!e%*y85=Fl4a42TO#+IeUv$#V6w7|&NNBr(MF5~UEUR6$04oX>AI?5cL_(Us8SMMj+Ea%(x5$}X;?z7R2xd6N&N5G)l0&e$^-P7^t|^-23vj1UY=Ih*4A?K@>ZbD_R@$@6YMx1xF}y3 zvnG@a)khFrdhLV$SmmQF8pMB^sXKV?WR~jaZ;>u&5*fgs-I@tkJvO_sU1nKl&mpm^ z!>@f0+ce&E^pNSy_^mo%eEJu@x6v{1iFW=sYtj0AhJ_u(@YoeRsJCPve5=hPW76C! zDK5%m(&BtMkud77;1~O7(5L~s-#FRJtJWGHp*ACXq{pKjeAj%F4_bnOH0MT%;G*N5 zayDLkuW@r~;?#{tL!OHqV*0WH%HFlbqZ-WRr<)QHlzZKzK>1!Hud#~Uf30nkENv4vj3K@}ju6TC0LiN!ulo-X?B5J?3&cFoRj zF{1yicl?l5l%!~W0WF&JOI(e=@p?rIelgj*_vZk{hqsfrYUzU}kqwS%2``N;z(bM0 zk*rcI%vUQ~M&rWx^UY$1h&98aujhZN2WeGo+!C$HfoB{OF|~%Q&Se^a?vR02+~~$W z$qtyjtuOkfB1r{lYb+*6>Rst27vOk3dt2$q6uS@X^}aaErO=9ejPL&=5}$y(9txzf zQi!8+il*H%9iN-P)zrAbSed0~w`)$OSe4zMRzR>zzN^EP7$RV^ zjzZFojT%`T2N$l2c{He>OH4xZmuVoCKif>($C#TUj63-o+1Tn@?IJ6cc=A1{Hxnij zG$-7F_dB)2Z2lnL*?Kb#qB1cb?=3F|Yt<=wiFHQ8jlzNqp}wyTo>B)tWd)mE^E2Py z4(B(}kZ66QYkE%cpMSBWKISuO+dBBv)`@ex8*f5u^L8nf=+c=oO^dQk4k0M#L$|Q+ zk3ec_q7qEKN1d^p6|tvPZ3B%zGEV2YJd5TOt1=3AFLHRhYSZ?mqzK^SvWiph^P(gwe3Sva@o-;4>2c;8l+M4t9y|G} zl3~21F&4!~>Mkt~`fr;k8W{Ure1Lc|0MC9}VPZ+3XDLKnZg}zOA7>ao1E|^BU6s@2 zE#J(hWJxNbFY-63KW#?GT(hP?MP28t^xzRu^F$=T06Qc1MCbr7AEcxFZ5_?nBfjs9 z!x*#t5Ba_n2&T*4zS0zmiUBZ0f3G?O!bWv?;`h6cF1BMr_ke`k>%utp#VNV!-YPH$>Gvg>2&Vq z?Ot`UdUxnSM|rSee*Qw{8}7hx5`ZxcmW9_OpDu{zdyA;%`40n#aPa^Na&3=*(8BRP zf7Gez;hHKcT##-HTZ(0Dxk6FNbUMY8s)c)hH6{IOrpl<-%?HKaB8anP-w#h$o4`7f zA3|8Ls!ri+8Yl&>Aj>8LIzQH7;+gZiug5AB+L>`DlOD5n`b<-$A%18sv5?{-1P_p< z3s*M(PTIn$s~i+$q`4dD|K(wwASajAgm+wL)m-b`L4MrAFE%wjGh0FEQDUdVFVV$? za>~d-_QvjjOsjbBz+yR)Ydi5hqnWZJYYXwFx`~6>#tN;3ZJxk@6!wbNVLayg&nMC| z^)q7{v$HjdACfH1;}uG>{RBk zttR1a7xWqox!8tLytr?A*DL6Fzpoec8H>e9oBXQW1&r+aUC9dU*8V8ST$}d0gnFyo z_}7fK<#d(=kHYi`gLVOfVa8TFy8&Lz$NDONh6f3fI$R}aCX!9_ckAYC0F(2Uud8k4 zNAIrZw#yR5M~|0G&TL0YFBTF)&IN?%+J;vERx!pDE6&}KhG07CE-#HV@8XIc1$Brk zE?T0%okIjXIh+E7iTka&gP;zh6A>dNJTD3I-dtuB>PBNFB>Bt%1hX_s0tD#%xr8a< z$V3P>HrD?6(x18*U#ZK25JM4+FPk&&z?cwpIz|MiOxBJgH`Eeh>7Y0-HG`ese z9((yH#8=`+&)jI7=wjQp1UdjJFSNvFxh?wN`jAS@lq%Hn*X6-`IIkeU*gq2nH3^VxgdGtQacV!9TKo> z(nQm{s`HCq_q@956?uz-G#5B&UUhO%>w3P=s&~`F+8oK;u@|%p_a%L@*qh8Ec*XmP z7+RYvE%$^9N4?2%kdP6x(3>M}YL)zDW zcPL)!uvXpsnKy0%6U7vUKa$UevDVG4jYrmhu`vWh3Yr|pc3Sal3aLBaG_i*pOEn^4 zf)O;bj~-=GI5kOyTK5juPtsPOoFwJnUL5Ms5)4n0lWw~<3VXB*;BEujFYc<{L*E~5 zvJ~&S6E8gl9$&v#D3;WiU^p30Nsh_8!8dc-DIu>>|EIWs8(diGQo z>58T)N{6>pX~h{E9y(G~^HUi;{q;&0JQ)<;r(!o+pC(byyhes*oLsG!zRp-uib^ES z$Eico^x$T9eQgA*Z!2ia^V234Gf51oCEJwVvP{h~>DKVcG3)!J=mmO)#)c}wgbE)8 zzjqm(+H%QNsc;pHgAqIrfWFx0Vu+_MkF~gLA{AR+k?OrpvEUg*iIW#{E4htWkddn`~K>W{5&f{jLNVwOrs>ZW+M{X*CB9lI-N1im$j9I{D zQ0jVChDF9fWAGF$GGo!OEm!CvLOzM!jgmlSv?;pf$)8A_L zo>{(qaK!KG zT`DLoe8E9C0^Q^+4_};ci-Bcs!#}A7E#6CnPbvXc!gn7ifE~TquUuE@jfxjx;jQd& z+6Cc7(U*ZrNXQBDRBbFo;>%;pCAP>J$fXG6M=IoLG=BiBwPx9yk(`siuUr^X;y)zED;!r3W=t^pO< zbJ}WLSyM##XufUrmG3Z>(3ZJ4uy!o)z|K%@uEdj_!7`jLY(SWJolG^(I2m<#VlXVG z6dMtV&iKo%lPC(*W0Rg<6+1p_m_5Nynz5m!C$;rZcq#aaK<2$mnR{DeRI=M5b1rUO zApTY3y4Rre;MoIsRAT0%{(mWsd4P9>j#aZ>7f-NXQMgQ>N@OE|HY0Gb<9&`9?Mt^4 zgN5_X?U<|o%IF4X9vWE1%W}5y;CLP7{AwPf3;FS>J7oL(h>{B(`hg{So4D)pdMw}Q zB;hg3a9y0hr|!Yioo?x21^z@D%nyj6$sQH%DL}=H1d=qCCCzeg5shI4xLz-Z$&lQfzEM}-(Ui&>Q-J5P{af5H{znDQ zLuI_}F@2H_S_3V0?@l=MYaPdq%SE+Ds#Ffa}mCZ+oS|w>$ktulbKFZ?Cp)j{88suaqD$vI za`1fL6qw;aqui{Lodpr5kVVxHOCB-PhN{Fr2e(nGSo0%-1>_pU@?C36oLezc%Rqd7 zKftLaz6i+u!fBonYEY)m4wCw!r&3qo(DL6z^ApiO`3Dl1+Y11YBi%_Fu(Fw_0K9-A zF?i{|2D>;Wkm>g@&IyTMCM!Ov9hvE2C9$eb7WiCHC6G(*_i3kKm`~P(N!eXGV>-;cnGNot2Bu=dsPQ z1`yA&{5a?2BY%X|ysT4(ckdzGh2lx5!MRgf=+Dg#dKo!S%2z|n3xCXIAy6uebBYl_}b5YZLNB@V)jU6^S9R5dUk~(XY*ft#hxw2 z=@Z$;Mpnj3rrG93GHp|T-j*1YUg0q$&twNI5(Al60P2^&D^DC;*B!m#!)(&i6jqTF zBzCGdAV1tEklT+&DIV}aZCoT0!rZFR40QKtl12`uH+hc{W!b)$$}QR?$PqVz5fiphKl{%cn#KVtAiR zCu8g`_Uq*MV}oQ3w>wG`6V|mo>5Pw+pl~8D7L9!LSfxOSe*jz$-_;K!DIXa*aZkqF zFhe@jABD^5QGnOXZz?o>pjf&&JuiixqJEZKA)ysBznBDN-|@-(;hnq*Qiv=>o1FzK zx+$#^r%Aw#Orcx)Yb51g{ILimEJr1SpK-9-BMY{z(=V|3V+g|@I|D>aaw_r5R8$^U zP~T%{mW30;0TFFwK){hIi4@+H$vHfC6#cZzN(I6cmr?B{J(9bXrCBhOcT}}{XProm zLUyr(pboyf3Q5Q%=M0nM3l#29t!uw%ca9>NL6%Z2)FqH24Cx@|EGS3;tclgk;IwS9 zj=yFY?_B%wFGN9Q{V!~P%e%P7TtQ|JVbTd!7hz@h8I-2FmqSX>6;Nj+4jYrQEcu zBur?DTNII}JU#Vs`Nq{tti7x9FneYF-LGQ{!>TfMjPfOlve+V{E6vR3Q$L46?c8r3 z$@5AmV{3UNWXRq$2*;4sRG}QFFeB&3JblE(Dd(i|7hiV(5oL22u*?26pHa9lq;Jop z&+4D*j0Enu@;?4D0wVn^%$J2tGG=}B5neTO*JE$c z;Ll$Z+2u+7jk>rquaUt|wQvWsLoay}` zG7Iqk!=Mg1!Jl+lBkpFcWW~Z-0^|b*L!j&<%_nz}py0eSs!~#oLhU~!2p`Hy<7joJ-oxLyf$+yq1cA>_8uPqoyS|B#sqGZ7rz7UHsa@~g=Zzt`3 zFX6KQ(4{ZpAYi=6V>A(aZ>Q{e_^BH3#Yq(oJ(r#X;F0QDSa{jYm`fOS6>{p-RU8HS zFkE1YaVsx=yKs;lL_vh5q!f;&ws)3Dx&{~VI zs8s6$;{^|uYFVk&92db~&U9AA+uoehJ7&XgO7w@DL)qK@f1`NC|f#$J0nH4fK|?<)ZF7{p1W*1Euyh9(mVS_>S5sl<~_|i6ouKYbd0qiwtCkuy_Q^I zF_`XL1;9^H$=x?L%Wl16G#a_=Ek=pG&#}YI?vP81V@Mb=aRot2)%}zu8{Lv!QUn`^FUbMaJto>nGM!F% znB}52pB>#BW&u&EDh2fY5@}f5@mIvivo1+Bb%AK)Fr(ST6AL&bgOv;K?vaK)ObPkO zJQ7cyIho++2%fGZEaguj5?nptU}KP-BY?_M-jzprcaS* z_jEmfqxdNF^$FH$Q`nF2BwVY;cm9*aRNo96io?FXa7^U>k?+@6FQMrYO^Yc5)2+wn zW)nLxFzOcn`)^LJJb&1Vr2P@=IG)y5&b%#D4GBfN&9!-u9;b$nEiQlr2LL?&wfn^0 zuxj_x_0Z|nZ!+;KuipY_1IyzbJf!3ZwmY$`p5_}SXa8D({Q0gx0Jx0tXiGez){3%8 zF|+-t0VhSt3;mug4LQ>bNxd}5627|kepU#GJ)fjg>%^E|Q`u7*V+N}?9<~X=CLU}d$3AG=jdh3$skGKJt@p<>ks(`eh@Qak>>DwTB19u7+ zAP@#XGdp!@m%vO|e}3J4&wmyxIkNTTUCr;!03-y7U#f)TAqcU1$*kfU=C`KXHY33u zn}8RxO*%v1Rm9f$&@O#omr(nG!iVO=BMcuyynGqOjG$C|*EOBJqP;@%Sn;7>hn=#7FS=&@xeZG^hTZJa&m z_=llpdb#n#TQjN!T4R5YCqEGSSs}xT!HrPD^fDU3^J(^R$6_Mc7G^?WRK?VRd%2$Q z;8#HPUGKCO-HbRD|;ejw2SQKd_w zO_QwV=F-L96}jRP^#Z??BUU+4cbc`fQWeRdqn-O`I%`BvJ@a?5TQhqibOJuFXz$a> zV?&A)YpSO?u1~Q@OQM@$Cv_zre4Qwz)^FaN5l{N92*;Q>_$Enu_3EzO(Hqyj+WtxP zUo!)n?sB`-pVigt@6RgsmGpzU%sxkxQ&%be<7`z+q}Q`c!mp+B?wdEPR(*1Bm_1m+4j4zKgXv1XaBKwg&0K)Y| z2eOo&EW#8ZjvmUF0@x=)Iw&NGDwYyJ-g|GEI}448&j?a<<{^77MeU+GiKQQW9uDPS zw+Gme{yiyA)N1uKSrfD~_k=KSlA=M-Vjjn|ezNFLD} ziu=xE40-KP|8CNHT=Pw`%22g-1I^H5W(2e>*KvjIA+6IO6D=`d)+)waiZmmynx?2z zzm%qE*X_VeH3G2A1+_it9x*fF4{NJP>IH)!;U9aaYifP%9Uj-E`=#jDVhffkFbV$h zj+g2ygYvy2W%r37x$?ThxTt;oPqmc|EE5DitE=(h@+pZ?%MlWIr)E+goN~CTqrh_h z9mIE^W54Z}aF=q~2Lk|qqtnUj2S8dGB?+HM(eOO8FAD2^YtL&+=0LRXK?(7%kINtC zwH2&Acnsr^4lCR!SZrgBPj7^3arT7 z1gJrQZ?B=r(L7I(mC-iOK(Snq9I1hE;I`{v4D@4`^xGcnx{l!t?o`};p?8^cLY;_b ztE~^ebZ`aKa-J))S3|v!!`IB#NZMl@aeco@JI>N!Y>^*z{S8W4g|0EIm0ceCm)UCq zGQ!-M>f=_PMogqvCZeYi0-k}cxSR#q&R=sS3RF8c0+VZy+9IMHN54}$g^qF zalRz6>3+d+q9BP?7I6gLb1Cv!aK2-W z!jN<9!Atv|t=dE)ob}hxm%xT{+(fm*gC)KPU_TGbd|TFQt%|M6buS|pGYmogL16G= z6;mnQ*%*%|)XGN9x9n0|s#mHC9AhhF#0TE6w>jjE%Q|zaU$k@;X3AsIil8}K! zRZ9rO2c~=FF5V{mSyZi_c+#Oy6I_|SxWR~?z9+pNqjbgRAV87Vy}AEf|0xSue7v&P z-5Jh?!P$v*Uy`NkGDnDyi5)@!2ppbKW)UdcQFecCfoSi9_C*rZEs0P?76ha8x^KwE{-EG51~Sy&!KGIy`wQ!&E^14O z>7>fbNLW6!q7YIe&|l168Lk6Gy?R&;4$^rB>Q6GDG_y+ti!qzX?=35*TLlm2B!`pVbCl!!r6m(T-%gWax|g)WoaKvQt72Z`%UXq z)5$h|J$KeRQN9+VDT;HG3DP6HgnLqNlq`T=b0~mPA2W|n4x+xv8(8a z?!uu0V9jOu9oNVAj?;r#&+-vxn7>aHv9$q&kP@0d3@y`DPs|T{cm>T%#0uI-pSGB8 z444=14VFS?g#dTe1>z{)WLFj&@GUF2;GNz~Sn=qbQoqy|Y{cT0%@vnqWLUjPBmB8Zi<{r=Pgtl#(OyeW_qs%yZ2g={4B z06h3N_T`0~Z>Bl?(#KbDt1hFug1~Xic5HePoeQ$l^$^>L=D)CYQpv7WZK=j7Y`07p| z{R67!7S3|nL}JF7gjUQKinK&q<_D|E>nd#^aHY={KlPyRE~ z2v(k53*|4C)De5nI@qZ-vF(9BRU6aa5s4LzKW<7P$xD8<7fERxw zVQqi&%cl?U%IfhT|5!?hfwb3yLnD^{VsbPNI5}pDvJas1wF1JUi(E6q9RNf?DDz z+=NPMUM6MNi3EJp&x?=+mJ%)|UuR?31fz1BE(GU^+>ZQ0m5xV+FE4rTawCXp&Ua+b zrTIK)9$+D6XD@o|fZx6hR@bZyH?t(!A<-(fdomqEhUqrnw5T?Z9*Xhf6Jv?_qk#0 zSanT=u(}A^8~eN|#Y@hySvC63LqE9Y;?25d6R)0N#;u7wccW^cedDhI@q8ps+hZe9&tQG?eDA(d^PdS1pOHFq`5kE@ z(2T-pp=bCVy)jV2K6z%L^g5@Y>}oOt ziAfW#wyQh+OlZtnH_>w~o2f_A0PgU}!u2Q4bs}5texxKPfU*F{sa~u7(!9}t5u(;FkeBbZ&13T?R`+Kcig``BZ$6cPdODZQK zU`VSq@r;EF_RllCh{Qg#zC2Q(TU=>4GFU`82Ubpy5x#{2{mPA0`L$j-SUE?enu?e6f;E>$yYT7JD}D z#f+*>Em!{KTU!z)sB!tKDCu_Y;XFz-u>50a6UahuV^N=N1PwI`BsGZ<%c6R<>)S7* z2y|Oq7U)&udDCU*Q(5&>%*bpD-y?S7^#zSm-gde6kn~9#7JTXo+#d7s05eYmwx#yr z)k((3v-I=x-l7n@lLWX@o#sc<(+dQ7=HoRo5m+S$Q)cn{nPYsKevrFvOn+#hg9`<% z=!#Cb0&e+SHCE=RM$r6G-$Gkr11HxX?%oViL^&>g18sff)8&|{Br#WNlDZ_hgrqFQ zOGI!=T{qg`_)~MR3VRs<@WZZ%D8f_oEFb=3=`D7y>#FY54loowUv&f7t&AcsN@#!g&1AHD9Ns{ekL)|_mzX(R5lxk z*utDHW+WHqn%_LK;0){K`zLU)oMW{q&;7YiAhF>Mom(%aI>&UB2Rgnp3wO9Pk88fM zf#uwmnSH`UVcBuvb;i>-@lWE^M`I<{;x_ieWIk`iRH_f803w4S=U&6B36r`WPDT#A zYD`ZYL&I9|Zm@Tt@{qWxc;U*~1b#+sX8H;t*UN$RDIzpB{)_`sok zK8}qoT}Sp4hjxu{^=3eLxXnL83{EkSyx+xniJ^{Z$+SP=8K=b4m-BXSvQA^1En$Z_ zv_W?DO>_83Qu4H>ualRLPw*(*hzDWKz2pFAQ8LvArAXpykEB&}Sms%>6RZNP7zM0G z3MvjNHqNyMm`DSUbKqrE#%e2MhFP)*`*Rizr?(nc)oWuBMn+7bmg$7xjZPSve zAY$QfibeOcPmCB4>!+~rddeJFsQ;|R-tvfX5M#ttC04Tr67LDv$hY%<)(zR? z7i)eUlVZSd1=%i@-&Nv?(&i@WQT*MVim1H zaSyf|`Rvb4nPqvUexo=~qngZ=<@#w2KDMv?;@9+lQ^j0v8$T~dV zdrRZ9bo2YMaU_Fn7*1rs1>?J!P+s^1P(XA^pfz6cR93*w3wx;f?@eMfOCQPpxGk1f z0e*LIF#1tHM|g}EFJsu;4@aq!Fk1?*K`J-v!BM-(eZSHynYd58(n;xs&CHO~a3XXr)Y(&r74&0C!{wFWkT=0K9I=#{3rYDyS7p zLmbKh$eS3&MnA8u2M9+xx^spprfN{x%ncPu+CZx{`Chf$j;?IL0n9X{S}e23^%I7% zy3gs?S;u3v{h~T#(YZ42TGI&yu;F#NhMk-UNZzggA4*}ybI?s?5tI3hfzwXa!LHBq zG*Q@=I->e&)JL7iwkr$y{Eybs0a&`~cS5?3E4BC{GF`GG6FV;A0kuTx z4vmp4ev)z=+j{z|Ij-K4j(yC{zws(k9$~q-I3fIOsJv5ty{A(oE)FVbksj$BJy3ko z^y$>HHUUby41TQjr@s>`9E(&HB30jyS&m7gh~QR`B+jbh-P1ma&kR(aOLA3>s9e~s zNa?UaTB_(V!xE}d%mjXH#(E=W>dXb7`s@9>dJX*C8u~RUNWM%)*<_1-KzolG@>t%= zV=K4;XgN_aYwk>o3QNNisCT)DS`4ObP}bjsoUBycr^+gmoaK4<14qv}($Kk_=9ZGXHD^t_0m&1`bpWBh4NH0ou7dS#@9a0#5I|hIzD29D5&#I)RJFJlxX3% zu&%DyjUPhGb=E%zzJCp^w*MHTGW0M6sBN2t+SYx9kNUn8@uW%8V>TBA6b77sV~sHh zNgP|P=|N!MqgHnokxf7V?Zc;z=f1N-VQ&$~+vN7y2xa5Kdca*8Gk!MsR{_h1aTtOe6GVO$$=DWU-GB35+CNzG4Pz(itkVLu~Ky)|z^8MW3Km}&g9NVq8%-4)2 zBq>~#(umzh?h^ltn7#yJ6`w`!MaINiFaA~-zgAlgE_Y)NtI(+o*x7I*@fwCHd~U$i z5VigH`==@O1>vi8s913Xc!su_t8@-V;%cxiy{81~-|R^D3-K8-dYN^6Ts~uUq!TW* z{4y}j1|MQNJRic91-GfoWJz&YW(%eOl0xp?6pARpX1pVXPBo&)gMGM7(9Wpxb&Edw zFQX>2hkl|5Z46N-W- zZTeFr+bzbv!9|#Dn%oo9ZaoN%g9r#X5dToBDdT#gikRoGqCDTOjJzOA+qs-_!!~AA2HHSf$4l`=#9-<}ckW_x+|7 z{hg}T$BO$ZWF6SQrwB&!)Fa5XG-kIq5Xh}%6DVWc#MI;bd6-GMA?u7fr&@<|Pfg5~d={M)%-$k@`j^P0P$X&Z6c7^<$tLD&`lkK9O1$tHqluRUd znm+j&sUzy&oQ0MgRVNHqs>;>k;0I12!T6y}ZQ}QA%_iqj^YT%%)r0`WLT5%+^Q*=c z_2_&NXDE(h7sHDdAe&&AEoaItV=R-YICS#GdffUk?gzd{*D`}7O>f%~t&ZpII`K-tEO;3^KGx&z@gKkMY>WzP$Y9SfgsH%AGpdy|pg6k6 z?!rO2IPwdDmo<7M&qP9}tntb)R;{(-+2$WK-{y-P;km5Y->72(VH3$9_I(rxo`z%- z<>O6-zp{H*jeoGYiLy_%h-28SK>_0xjzmJURoWK$L$tYTikZ?=DAJQ-x{6;RV~>qY zQfT?IPL;G_eFWgPt6h`$1kfI~RiQvjy8v^p--IR{k}XtqK+vFe3RR#El`~{uM6kr% z2-Iy#PwD_-ytt~)mOm8^n#qw5UM6%Ie?ejdr%&n8P*YE`Or!_PUU#6QPOJ}Q{6BE1 zo2+dGTV*Xm{zee;i0u%Yik4-+J{sc=0*LByZ6A6^b~VG1PdH?he|wEs{0xx?yo_JlxtUaZqwXF3d(wZ}D~Y(_2=NADX#h8&uyyz`?+5Jajb)8M$cIBCupg$hfx9CF|~F#Z{E$c3H>u16@Zka;S^HNqrQH;bb~`< z&tqbdw>Bp4wZ+JfeQ*mfG`vdQ+!0!NKC8g#;waB64-_H zP^i0b$A$gWyaT}3V&5PIX{>B3_jbg-Y6AsPTR@ALnIXNcQ#YJ$LNAi}Je>ya%72*} z<52_$XO+DFLQR*20&Bk$&dUeTc&K9AL)R7F=8f=@Y*zMF9lB06a{v=$A+j3ycUk<$ zXBVvdzY(y#&yb!s1}<8E#ciz{z6qTSyu7^i59}QVZohOcK6|tUwDqA3>T^JeQ#Z)w%*sH}{p`nX>HAbFDVZp==Do!C)_=t&Bmp_}6U1%#OL{U;g8 zm^$4HchMi4pa%&lSWWa`DRO$J?&IiTkrP|&ZXWF)XGOs+AT(oX8vEZ_q z-lk3khAQ`}(Of8!+Kvv9&Sh6I$4q*X!!po+~IsOv%M3cideEviUG z(pJnNU4z;v@|s1UXAU8V`aAPpPju1PM!8GTgk0H2ibK>@e$I1^4lZa5$%CHJjTv!1 zQleZY8PI4t_e@c~Nk+vF?YMFDxs$^J!`4$omj~J)B93&bR7H-R2DUEw)wG4p@R>`l z<(Ty?TrG(J2x-GkrqFpwrVG5ej))u}Gg)20#8Axl1by?YR z6RGly;m?ityVdupynKId@^uy=P z=F;mD8Y92SHVPahF}eE~oY+6#K7i4oIx#+5GoD;|IqBKEA0rJ1G^Z z8^s(lpYKo1o;T%ro9=#B|55z#*cNSuCIEm@E+L1?B?pBBpc>oL|XC`{DmMeVfCsZ*vRT`d0aERs1HAT1A;9 z09U!ok52Yp9#B|0d#$~FpRrk$)b18b}WH&shbwA ztWA9L(#2ud%{)H9vdJ%}2YF@>h`&_XF{S1rcUCW}nrlqQsj`g&9cBm@iE4;ihcOry zc7Y$#N_ucY zQ#TKY{fJDDvHq>38e#LmkeW`0S3g6lk(+0YXIGXgbwpafD8oobpDZGQfU*=`Vz{l? z_darBpRn!Hacn2PD_6C{zz4IdseIeDlxT%{{NMcG>Fj_{{D_#G2r)$-U?lT5UFGcf ztVW%01doZ&B9G^At&!Y%KZq{(){E)XD^{YFkr;1+6W%p6L* zCXJ%N%ITp+JXy_{Q+M#-lv-Lb*d((WeNvvw-0fxj2D5!18;w?{)8(5+flzfG$Ermj zJ&q*#S>RW_b3Ur-k#HZ9KBbJ2o+rG@K&^$Yapd?K6nQ6>ofN!d$m{Q<-+bi3?I<$x za^i~qhwlIaL=n_wpPzbO(JRm5PZqUR`cS5!#gjMRZYzBKYpt+9WX_=L_!k;=p}A9k zYFucmW;F>Kdu*48t0zQ@zeYT%7hZM5?V^DKj9y5ELzuN?JJ$H;A!zEpYyL0{qn_N= z6gU_ch7`@<*%^iw_8+8L&H*OH%fEh7w>d->(1(==zaF75FVs$`sL8i)WJsSML3E79 zH(#jId_#wz7`&a`Jw07O$+9oN&;hh>eSKx9e!O1+cm}aAoYlU}yKCu+MH&!oFg?i? zy}AOh2dVR_o?BgZHAZ1XPs9%^3UNco=Fg4WYf5C6H0R(xCpFi|wJ88KXL$iIMi*}5 z)sE>=9WYJGM)a4$&BfqFUTa(SKUxjsVI@_4T&Z+YYd~peJW5*on5(xuZ z6p4Uv+LPw}_N-mu6~`oDMd$GCvscPG%JJ+s0OWn))G?0h;QG3eu0}3)_a&xj_eDJ` zAT%CdiE-=fDGyDlDzY?~r+&sw%Gl;@)$<$$S?X4vnv;EEJ`U5rc^D3mr*ME- zveuzt+Z_8mt5EBLuDlELyK{LjW0$KnfH+Peo`l=|d)&QQapos0S^fSX*z>}r=_LRq zNeqwMzu+!{E(Q%mre81BXg^iKN)FA(M5Ph)ppbZxrzQZtOdc#H`#DMDnBEZy;pK4H zOeLoaeV4T7s%&R%^KUpf!KH3oU6TEYYG37H!(qmZQ`;+{9Y+-I*r&h;Is56DukoMn zuMI;SuFipHBgq@)x=-x3dwdm#O&N^+w^wh1(F(LO$(S#_if@P4Zp+dRJDv{`qL(qT z45cua=s;4zq6R#;GhEsjqj**FMFH<<4^WK07mKl0l+y zKItI(nxFz9gDZ7i$i43AG&zWUB6k*TWx|wSphRy@LF)zpp0 z!S3gNNBlWB3p;+p4B&aXD(heuIed-^DmUVsUg@8e?o7>J;;MyW9>SUSlihqC2$=|w z>51e_(=StA3UuK3TcuOv(+p#~yuS~&$k)gjPP*QMM6ubZvBXQhQs@4$5EfKdQQvzU zR=r?ewDalQFo9e@EwrYrhr#J#5#p#^u^VOqjbS%x%GS!G^NJKqo;y|0TnSpuHLu`R zt+XpACT`MhXCqDIS&q^YrS;?z`VafhgTv?P&LbA`@wzzVLjN%^C;v_u2GlUJR<+De zR`)rsFeMattltU_bbFa=<_M(Wc+Iy%cN16JG1NzeNfB)w%1;EQP<3`%#WFYc+H2cDImI3o$gHlWXuc^w1 zQG(aXQnjgr1RJHJ98qsIUMB;B8+eFF%vTZNSKVkHR{Q2d|27`h{c+LV z#l^&mRVZELINDH@4l7;M)kI%D0~IGc``&0z0yWP!Y2jH>-gfbKP0D(e>!^Yl$m?kI zA|{NG%BCWb9Jl;Wi#N@rWi%IaTJqcA0l?6whp#!fo>~IfO=cSIBde`IB2WS1{V&hR4$quYc5rHF>s6{@q^ zdV4D8XD9vgL?Olh7&;5LsG2Aa&n_(8B`vXZNH@Bqba&U%p>(@+BQ5>W($d}C0@9(h zqyd81-~I>pxzF4?bLRZc`40PVqZF0as7rbye=5(*nFg#YEiPD?(z<>F&{z{u6j6Ex>0tL-b-YrrW)eFK zixm5~IO#quo`}byQoFROQyZ^VUy)pcwW+V)_O9=`%_Gvnr#s}6W&T2w#vRHntQV6u zeXS-PW$Lk1OEJOGm2K^5Tx)gV+PGO)lReXrpKYqD$l~>*uD^t%YDp}i&7;DD+{w5Q z5YzRe_;?fx(oXkyh_Pk-aO3Lq$N_}0a=NM&VDuCVUEcR+>wUqcuIK48M=;IaH2$U1 z_vK3B{eFS2q3GsVjcnr7C$xOxzbh`~K!nD%Ginaq>3*r9U1uj5YO)&0oz1Jq?@~^9 zzmQ~pBk%qohV!LC0{suEqUWc(!QWX|%vv^k*IJlC-)4Zk`ry9EzbkfrLTDpXi7!lK z`Mxi{!n@IPR-kVRK0Eb=JrrPX_$od7-S-UOAl}nd2e4lk8}Ski?8%D3k> z2iysLIoMV%o_YY!+@=0GR^6J2pB^V@eUnY{?+f_m_ezV1J1^dlvggHviTz{_jg zZj6?mlvbfVEB@Gq~5d3MI!3>-(; zA_2x43gOLDPP07^fd1h_Q1F+PyhqXxdi{Ax5=9*?_R1LNXZ3)GJgQPtPh3iRz;PPyQY1JwgYQffvF;!m(^)ju54b1k7la zV$w3Megzz24c%ya&m`myo+@d-$;O0*iK(cW9;fWshUb{39@#IO>=r&{OOZ|?Vvz3V z;#}hwh_F00W5YK@&HVK~aXq0tAdOO}lB4<*FKUkLbrEsj7Vckd?RRfUn_uxU>owR~ z>S~JW;g79toWr8sX^8fiE)k!9(emHCNtCfFTj1f9^;L4oiqX^X0{``%wGN6AxyZ_0 zxolfqxd2L+bJBt}|JImd-eX5MX3306CLsVxSmTpQ1GwuH0?X2KC2DUeqUbg}uX(tu z1z~5JI&0x>Y_1SKd9!wOTX^oO^L9A+jK zy{{)5;UP+qem@~{pi+l=@)kW!fApDJKDeyk@e~k$O+y^$;!JNzM`}^55@VI3~tgQxx1GCCyn*pjp$F5yKE05TUR z+}MdUV;W=Jvr_IZ4GxP`K;)nPTH`rd2Fgr7*1aPdTEzrCctUP7O($lfZd$d!Tp&Xi z?A@RL;5q)g=iAW6DioyV>)aw+qeEg-%vRnh0#Z>!o-a#r?ERj|y#v5_DDzhx+fD1y zvk=$%n0!pwA)xiOdhWG^lGa4+Ui=W$L?*MBmbStFonO-m6^>r>&aN;DDlTF7qD+BZ zqPLun#<-ukdswI6j5#o+je$_dwt*@pV%AiSt zt3IzJM9wUMlNE)7Iq5_LX(vzFNE4qCPc_E$)TXGaUk*VR|F>xvYu3)$dWj@BRUBW? z`VuyVJXW)(M$;P{mDO*?)Z|{U?HU@Ey#y`0cDLW%Se{eR8Ozi9Ac>9&xc!22iUv;n z{k=~;#Q;fx_O-sawtB7(+2I#NTYgE@JjwxoWki8E7l--kCt;n9}B46^i{%#$r zxjiFpPEtD#ZE4{grTL_4>0?gvorgH`UAc0Rl<#o|ifyW}_x;i^lYyN`TErD|<<<9XRykiB0T< zKJ!FpXMV@J4s=ZMVapz1v7|1LSL{Sw&Mb2hRJdx%@RdFTSb1VErqGJI>>28U49GRb;Pl~o>SpPmO%92biepn$UfCb9tUb)^&Zx5XLLSE~4eI_C^&HBV!0>upBln?Yq;pTtYk=T)vySy{1Y3ZJ%BtvF~B6IP$qW9Ml z8v+0AMYz0`Cp39R>G^jYHdg zFK~R{G;!oTnQ!TD;zmG3N>r?+vlM057B zRPy9Z6OyyB|83+Kv_I`anNd0CJt1b_ zxCfLrcGBm%3L5`(4W+X96hxB;N6|Cgm2+K}2Tycr8!LF%;Y(z)-d)pa&TFc_?X$nT z3t*jd*lsn5ywzDpmCwE|B z53dyA{|Erh$Mimnff$~Q#Dh8iB9k#(4>Bu2^5-0DPb%{K1RW0B3jD0_8;h>dv@u!l zfvSSE%8d~xRxcp60f`F~UnE6EzBvsOb0<_PGTZeTtFK|js3pkYj$F-E4RqiDvYfNU z7YC+R#<~yG#PNXCMe2s?HTS`-0{{)JD@oQ>mgyMKOf8pz;<5h3)-3LZQOCmHJs~(1 z4m!m(rnlwR*z{{2LIs+RtzsI%USZ(b7oQ^5ZN3L)XU>6}@5~*dqSQijMkbBj#~)TB zE$UXynhi?7wc6~J!_~HSY`qK}qBrdhP_P~*cR&7KLV(HVF3~O6cpVsGFL`O%W-lh( zj)Istk$h)uEDdn$t_H9?>kc-h`ytFVZ9#p`dK4O8k+941;?)CyX`Nrec(#z0WwkzO z>5O`ioEU$HDmZ_4W28h%v>ngZa=91LuJ5Z%HHG4lNsU&)P_;2aA2uW7XxIj>%5?(L;)7zsDhF)cU!M zUlC=1`F5oJ;SJx8Vnvz~i{VLLZNAgv9sW`wRblKO2D`M&pF%v=-u9BI;!kDhyg?T@ zWSI$5i#=;@NqX|}d(rP4g|kIHR8-m&H%aF{xTO*)daD5=lDAp|bka|KOndN>! zFcATJzVNgzzu>{6r6EY$q>L6e9XjGzWcSKx#3H!CQ$5usckjUWwCcZ#>HRMnfJOk%0510YQ8Z_qPB@*Ot~U7GLa}POco@?pCyDUO}DK zsffCl0rYo8>Bpktc(f()N6;Qf7^bOBAA#4jSFRY8S&5#RtxQ=s((^HCO*qoY3xH?8 z-69og8&iJ+9U=9?smE>&#w7ec($@LC%w8y{ahKF?6?Y$V+h>6JbIYU^NAu9^#3In7 zyEuaVBRQ*J6%!^guky{n%9lai99bV7QvoFV$z6P*$$f-Q;mju!=|7#1IbAD_e*WoN zZUWD59hqiztj3X95hxfT8RXp1f#};$#q{2op1o(C+cPbc&(vL_#7>moa6+CcC~Q91 z^O{c@^+Mq=14|3TwM_$>k8ES!^i`L!K!S^9V`l3KQE5ve-Sr_K=L$?oyyK2`%1Kwsn=lf1s|e6+@l5%1rJ;9k`=n^q>&XJrQrV81G}sxp=| zJ)S|+s~YnL3%KaMIYn&)O(CGOVW4mv8T z9CQd_1}?%z2tkqO5VqRE?-I|nBr3?~5jm0WEY*EtV~vF-C3 z0R)-%HUJ}AnKgDp-10up3!mK3&VCMDr)OP%CYCsSpD}syKYPwQExPcoIR5oXay8~8 zx(rNHoH0|4VS;U~RD|V9+f%GJykDfW$X3Rn1HhP_DFl73q)kc9mXkeXGKplnlt3Py zIZFWEsQgIpT>!JTaIaYDJhk~7fPgMp_K#$M9?`f^%QqJo!rAHXOHEIED-{5K=7xa= zOsSed-uH_q~wU}5fAfgTy0K836tW#>$GF2Wa8kKlO|0u*->kDkTs*VsCAD2b_xS_1)xU^?0egnbY{Xq2be~ry9+V**x9FXr4Ra1yrW| zIEjBcX2x({d+e^5UC&IeIm6k&$&$j#kb8l<$y3G*aE(402aGn{B_XlN$@ zA~HqMQprWV8`#f4bMgp%W)%}48B-SHAcWp2)8&{=*TFA7*o}OKo(VVwgt9I`A!l{#b4(H-Mb*u=u_5cGKK{?+zf59RBcM ztl>Hf#9b}V3f3&4*m}O^#a?W@Ba=T|=zg>XuFiT}qxfPiFvT1QRl zLsfTKi?o&$R5rY%KZU^X06hqDNO9x5O44(e|EP%*>QMqd*^ zu2rqn^Z>}#sh*!;YB3>~AWec(F5H>aI!*ybhkg(BKZ;K*SGRFUKg`l!)xu|m0DMQY zdw@ql)E-_Fg?Taq&lq49ahX?eLgAp3$9|&#+e?*^?_n2iM#lGYlhJ|LVPGUImv`&arnV1UVLjCZsC) zjlo-;jdxD5em2GA#|~twTq{GBO%F(ZW~JLOWuOq0&QlpmT?IJzOC>uoH0p-n zOO!ax(M@XuYv*>Jr3Ng~i?yWkr@rXh(AUO+O;N`tW~nC>ntxS?J6g1D0QaZ$IkKZ9 zwS0X^hAg`G-)$1gMt8FQAbA0fKUs-sQ5}h!4@%wT!BDj$CnbDe1fIT-owWLj>T&Ib zCJ7?bu(8z*0T>1S+20_(KVRHSp^|+1DZjTv3t;$bJ*i%Jg~_?~0U7@gpQU}gvU^?P z<${g(*1MjLe>W-EUsZjt53n8~z^89cx{lE?A+D29-5)iS_(}~pVyTFjqJl}njgq_S zuo6hEC>n8|kGs}n@m60MlJ_6P(H^fuaSvP+ewmZfK8soO?^6CNQCUZw(g7G*-&g!x z?+$zfug?1Xm`7d(Ni~Eec;C7vF(!%hM#2HWzQl~p2ol)6dp$lra9a7Go)I17`r>k} zF|%`;^~4>>o{R5YV&NHBV^Uo-Oh$QErs;B~&n-*6=Fp@YQVAPXefwEvTC(>IgGPV|%C~Cq_y$HH2yT znc37w$;A*d>kiMLTMyEh8t3i?6F2R6Q@Ja%olI`O=hkP?bz$5!+5Qz^-)N9e0s1 zRB`>!AO1DTf;*Bar2Xdy)VI8cMM$T2c!^YQJOY6Hna5Xv@r`Em^CT7H5uM7$X+vug z@+D6C;DvA#AYSCZDh!zZR{1d^Omzp<@wevVfQw3k@&{k$<$5Nr=2xQ0cjhG7On^cv zQzGdU!KyZsTnKPm@-~auU+BtdCt;Rm8jg`1?~(3?ka=^DPpTORdixSPs*Vl;%MMjY z5pA<>)GXA%A;hKx^09A>^byW~+7a__PR7%KMopMs)vvf>FI@qJllsYBfu|lj%P#Fo zadD*e00Scs2$I<4Wqffaoh8_Ho}7jDQQDYRDJ}w{TMVmHeKh)E1j#uxzpi=NBg#yyZS_vB!E7rR*N#;}w}ZVnnl9WPIE z^Xj5rBF!}I=M(6Rw+Lj!=cp}{TP>rlnOk)T4I7rVU8tZiUGg<;ZPNXHc9f_x$|fMT z!f~+RQ5~uK{(xuX;*#;V;P_V(1P~g^RTdo@$aLTZMAui5FR32<>m)!W{&BI+BYUf( ztYVH=Nl4bxj9AL|Ov`3lC9AHnfw+7Ki`;$snCvwX=-NoD8Ttk|HEga?)i(Yw zQ;6!}5K%7pX1;UW6GyC7m0U%!ln;tq?+-{?k$s;Yjet*;$|`GPW|}ni>`_z9dQWl8 zcWN8&aQ?*yyei}*JPn#;_&eDnXOKtB{o1ZO|IdESy&le3E^Tt8Vhhh6Ax8+Cvb}&g z&ci&{ji2HBl!j%B(MNtHh<|4>K{~h+Nt_Y%Iix08?|;l62)<#46O=NpU#VdhbV!V* zO6jQzTc&F83pVk%Z!3Dpv!^(pymS%EbP>xTY^nXN11{D7!r*``Nq^}%ap(jsNrH3& zn)4z|Y}4$0x(jjLebV&2gy=+G;VJVMfb-B!W%|?2}R;@;K*24r1uhvA?2#aaz{#_3k^>h&?GQW`88(b>`ScHP-Ozv4VZr{o6!;ARrzZIis=3A*1O@dyjy6XhKh`> z0(5Enz_V`l+ecy#Cgm`Rwe8<8DSn)G_}r}7v>K^P6H8g$#*hXHuzs-mC*1mh?j0cJ zovDOy<@zc2*rnb&7`g07{Y;imwxAIkyCvh1PdnR*&iC8{is86P*|fa_u}9BkrK$jK zI_T*VaLdy8w8MqUSC$;ODI;0gQGsvrZ62s!wnGi_H-rqT70mKShDh#L+(#9w-= zLXw|Bj`J9@^7+OLe{d?3h89nmloW=o%~RvIv<(Xtr9oKuI=Nt*kJ~v*NUCfcI3A(+ zb!?|=(n&rvu4tI0@Kzpv@vT~Gy|Z1kVWS*Oku+~P*;K3588??p%(c3RwOn7d!< zYVOwmOUc&TUY%>DsYdZXRrDhEpQ90fWOPLjiN~qQ4vz~Ixo?)Vbj<4 zefQhy&srH=2ujcF>WRN?RL_f{@Z;svt;vuDugY)7H2u=UGeu`wmN2 zWjVk;SR{%GO8LB@8Q8Cdf8;T9?7CldSpvp&=pap zLE;ki{_&DU!4vY9^7U=f<7PCP)E_gI!ds1)`iU<^)Hd4=+Fg^Cd@8CS$UYT(*zds= zkc#kjhCQ!ttk6}x8MGBl>Cwo3J%m9J%OR#=3$PT7&zA#3Uux=XGl}~WP3O)BS(ISR z{3wx#u4$QTWf}pL&XyV&a|4)w#9!@UL1fTCbv7om1AtQpzQZilYQ+KYuDMqdS{~!` zFS^e)nn|8~RWv0K(Bf8pwmUY&8fa(1@S_3|Y<+@Tyyz^&qAdcT5kz6sshnnMK>AB} zTdG$HM%WM-q^9H!NK;?Mc8d98mpi{c$%F%I}Q2+fK{xK{eq864wb zh3!)`z>%a^t=vJn#)UI-l|u7oVt-lc9jZW(NI03yiz(eNjby#fP^?33N}k%(7O8?` zlh-8X6ymzeRW<9sPYBmPf$qoGu#!JF%Jz=)QDN|=G{u2$;(3!g0X>@}60$E;R;n!9 ze>U%HOE1>++~0fV7j1TS@l>8%A5-bprm5E{3n}|99?9%xdXiSzZX00?cgv(tvRSBH zK4)JpF!NIFp#-I7k?PsYCIY1WTq3!-Xij3vB)bEEwiR)9%V|Cm0@xEGx3UT}M&Bg` zqZ?;MKBoVyqR~_frfgls{r%GHH^6>kw&YMq(*bzmpUIY$L-# zf92@XUFJU4n(-wvrWzqTYyhOmIq3d~?b7JEgRcdgb@E{<&w-~UT>|Lx+VS~`(xsl_rzV~rxN1-)eIOB@3zNSpsPjTqtRaw34i%8oj; z{x;`tDz@g%obUDyDQHGlVKljqfAK&;24z0hU%&d=^ExVDp2ua&8peJw$&bM1G5m9) zleT|q8QEuEG%pCF9l{xC$)JvIc^___4MkLrP%ZU8Gb~JKz0w5)MlWCcnqjpYhrVsk z+4eqwj(0kR-lvhCJ)GSNP@>0@(XBELw*eA1AcQ_hwPFN*?4uoHqFmc801x;?6+X?_ z>#J-4%^vh6n%zY(Mlu zZ2zc~9KzYNhM@k#8ypJ(97l?a*XGiYbtxSM#si2wIgju>nJUN7P<|IAmn*D22{TJ#ytd_uT`WY@kJ=UX9pGRza;B$IL zZzNrSYmax3@AZW<_w9R2>ow8Rp-%=AQQlbSI8@rW)f&@HARK7)yL)xal_tvmV6@YF zOsCe{3Psi*sG_hUo>4=;Fp9WHZY?$Anq3;WK4Q(8%gz?j0le5nIQIM}hsC-jNj-Dj zZ}Ri7faztML;SDLk!Qh>mK;cUr^-*LnhQf3pr)5AQyDRc9zL3*K{Za}1~1L$806rYG@AuG(2HF~Iivsm zzBSn@1$KHfgXK1YK~7Ghairn2M*(TGTL`0+5XI>h$E>LpeiZoA3Rx0-^*$^zg;S+> z@DTz_ie~M{ney7qD;Cb+E^PR=M#EJbq1zJ&^+SINKVd_8NQ3F?Ii@|(9vaDN63t&P zzkG`EBh;f`&vWXRht4gX2!`LpaP6~gJ_*{IX6Ec6hGu5)&pSe%MhmEsbK-^m2edsJ z+Mn!s5mG7^9w~{_&%dT2Uc+3BR9jpm>^#LGdS!k&pu?cCu4$Plhof6j&OU!K@TvZT zA?@&2U%6=a*M-sf>8>VY-eo*+n=$!@KkYM5*YazUbXK+6m#WHQId_5;NsW>TxI4!N z<#km`bY0qkfReY0@CT6-5y{O9JtCc_S0)d!vd5t&fhZmlL^{DvOjH#-rQ*PYh441) zVaUv#>$@W?RWxz9rvwb61NfHUcKkT2%T@yF}fo4H?8V1B;Y1eUc2girpmQa6kI zoiC~m;ia(y7*b#NHU?2l#8EpInPl#^u+LpHOCt>Lp8*D~sPN^bIL???$0lgck}s=A zG(7;HymaWwzWZ_$a0;FSh-{;X30}z;G<+DJN?^r{olQfTFL2^N6nb3ZF^$JyOO~Ok zab=k7@->CDf)XZS|72uebC zQaAE#AWJPK_DcA7c-5|Z2DlLdQaF`o7RO1yb@nsrhERB1?EsXW8^vyQEYhp~WyV)5 z_O4}?O3fbtQfUto<5@H7LxD!h7Zr<|^PURL%8?HW2_(Wp8}TzyQNKtwRizw03tQCg0a<}=r+zG6aA z$jp`!w3o888-{O?iFjmrk5NG%2QjhkqCru@JOb>-ZYl-Lgn?1nQ_0A0SO$t4_cVvdW|!x5gL35!RJ}iGNkA7)65#v*DT5zN@ge{gG?c5TUQas5{3fl# zG`<+n@80C^I}y&Ck&Zv#Q{Av^}paU z&ILkN#_J|P{nJzE?j~{MFvWXs&Uue-WcK3yo#;2fjLGP$**-iLH{D+<{VyZeejD3%R2@$h+q4Th^y`R^sV-shh4r$PsIL~;U*;hAZDy8wo8CW`wTuUENsKkJA-}K@VTKg#B4J3=*P+1iVx%%&9tDBNY2TeH@HqILs?Hx zk-(=aGNono9WM?HGn3Lq=xB}795xDYNl8ju=5Xl0E6T{W&|It%a(If0Wn-`#2nsxn zW_!P0(fQe}WAnGxC=+W-E-rP(B&w8o_O%wnd^yIds8mN}8_seT1WUtBa&u1Dx*QN@;Vq`lqzUCdUrK%;%U@ z)v)g;V$c;V#Yj$h8H&FFote3lt(J9kQvDkx-l!|@mkeabOX7utiuigqn57HZ9*MKz z0OV~3?l42{Q&_o@lHpCPmHxvoU;Ji_&bShm5da*ys-dI$UtJDlq9&EZ)cn$vMO)+# zYEiH^zjE^ZVxIi0nBdm`?3V?w>e_hKJ59i5FUuZ$)zXu!fPp6;&7Dw4;CR^=ZB3!^ zk<0V`@QQjM@xFueO!5AJSa%fLby^!hA4IR*cr;)6rd34oj|!vBL|i@D*1I5`l%}_BCcgt( zu1so13}7FBP_>|SGihx83$&AE2#ny~hN}e^{7Rm_HxEmaub0(zW{_UJN^`$Ok+R;L zia;nsfa1B)1JVVWv=D&Fl3M%rRns9sm?FSEq(mChwlS)?TdE*17%KXm8(Niz>Q;}1 zQ3iE(9Lf`4t>}jR_b~b+Eh~g>U>`lat{yJhfYC>0FC5;mRS0*M+I^mRYwlI~{RvsM zy|nJ3A(O)ic}pn@i|nq3fz#V8o>SvD@ls|aQ)?(7?E4@9-cHSj-)+=Hy=oW>&Qj;p zutbqgMO-)U*^D#~Qs7FUz`AQ3z@~|X()gPaxy5{PLc4}*?J#=cs)Q7has*&hbqKEW zn(ca@s}h)`s|6Q~i-R^Gu)MP@xyfAIWSOsLODv{4K;UIjwtdDlgw-0JJ?Wq*g5b<0 z^Q7raPL&Y-0>c{3ehR*o=EP>a*du5rrHU6&N@x&2CCg*cn#n=PX)z+A1Ykjb7``^; zr_-k?RjYbDv8(BI<=__fS50YoRFEphH^QVz%0&@n8ogB~K%c;J)u<<*&lL`#qF9+P z-}hXYb)N|HU00>x;-b}jXJ)2HS57Vfq4@N9Xvd8NFZ*e(k$vqlo1jM%d(K1GnB1)X zR;El7X7)_RuVps9qGJ@f=YXG-v-S|FO!S(GlvT}6N!&Zx5w;jp6cR2bWsa5psqT2_ zzfJf>4uC-cKztD0ipJD!Dts_@s$~EO2%NCJe1ioO<-ZzS@K19W=>Amn6285wdMt52 z`85P!?0;Pq9MRt#WRkG87l@#te_GQHAm*!oy~p`J07y;`qHNI5=hK$h9s`dA{^NWr z;pI%vJbQwihgTbYlTEu}YOp92kPpfpgWzZ>ES*396NAEc%`KfS6ja2RT>F~n$D;!j zzAol`!^m>}LB}kpFvM4W%@Ot6O(~Mq8EW_1sm;p?Ua{}6*54s9_HQ3xAr}ZoFk9Y9 zL>X=UgXyFuXW4*L6j_hL0P9F(5mz2gWb#v*&lVFV&cx*u7puy&C+zg^|8TRn7Fj)- zv1U0ga9@TQyqjGF0Mm=kfvg!>6h#96?z-fF@p(AJ@V<-Xk8MKI7iFOJ1+-CtoU5({@qTEzhIGK%~z? zDHz$*$T)oFeu~1_cuBFA%ml25o*q?Y2)<%DAw_8x1-~QCYAE~>gIx0Z%`uYr4EWKl z7Ot)^{g80RM_ckJ4Ka*goa*p5{8uEeV>gM>I6acBBvNxj192c^m~`>7REObt}e@G}p`6YxZn(^8|zICbh2 z)5fjUP4ML)tinN%tA+-Gov{6>2x<-lpXiz=IdnH7U=AznEC*9iT))7EikI=emoKXX_o zhhq?2ISGO``C6X$)hxrU3({mQ0$zG`JZxsOGNY@0Q5-tKfKZp~^({6V7JXxeP>E7{ z25oJqw6OpRlF0RjneA^TNy{%8ZQ)N3Tl{MYtcaR`k1RK*KiO8E0^bfJKPw6TN*XB& z44)9Da>%q~3Hn{0Ycsx^(*2>@=q2Uyn2z-=k7FTC8r66$$sHTiu#sh5Q(Pm9aczJ^ zwB^Hz6~HK(YpN?*_0XA{g!duP6=Lcu0E`l&W4EY+K0-_eG4rr!TWgLTF42dtw<}3l zaET!B|AqHWXzY3 z757{K2xShl&Rj!Qwzpt_CRNPOyGOKev-wy=)4M05}B4wG9YE1 zbl*^N8heGpE#)b?;C-1k!)* zXq$pyiHx+8JL8(`c0M!2vM8PO6SItSPM-_)Maubkgkd!q3-ic$uwJmkg`-usnoklH z-YU5xiz0b$6vW7gMDkUZXIt^-dOSM4c|OxTTRAr>1b!>O>2V4Ho_eG%KjySjSuo#F z!mqq5f-;ZX0xc|yZ_K57+$aW*0t}qMA1+(zuFV_n=|A{hO>p9wX6p+RXMW3y*mNir z3`v}~YjGKj5n6hb7TdUgR$Z!ov!PUxha)TnktFgPgL1d{*yX3;)N_fmDrq^}Fp_z1 z^I~<}(&60*%_DTV`yIqgrhcbc<;M9Q+Q8i8=9b>3 zfhLjn2WU$dTvuybdk;v!$Ef{T!|_Qrc;=`?Yg%>w@nOKxRvz%^;*^%v9{~-os6MBy zZu{GjgTluis@c_8e(U|nb&}K6T)&oz=Xt!q8ue(dJqeod1RnfjI~2t3d4UOFY&ZC? z_W;+bs?_L3u-FT+EDkH!O?&1ADMng7f4yO4Zz!Oyc%+WG74WX>u&OU~xe)0%Gj}@t za1pj0Yh1A9^E|Noo=N277YW5zwy>8|8Rw>V z6(O;NMhXEP`DEN@dZ z5N}>B?cBX;)wjxn7!%q)t67^ipAkRK?3%)Ja?F1O|{&!A7fpeaedam*Q-(-%uCe64IJ&&y7dKe zo^ZDheK?*DyGlRq_YL4McMOg-YrtAUwP@hvIb|D~IJiD{37$q)S61!Ra~4U468iQX zLCp0UEhoiTB%UFNZ)#lpM_~o(jl#no21KgXAJ(U0Ew>s3prauaWRHn z8y)^eF4{|}lSC4)3D2qZ%g@|)D=X~iyS`oiIMLc^i)Iqwaiyv4UKrh!YFDT} z>tu7vFgj)5+FNaOs6KMvc>NN->}oy)HZLGim3(U6g_YcD%d=VFVOX&} zuV3b9uqewbVayJBZ+(FceM%Z7`$Ih}0~OdaWV{G3bDaqBIKVfF9!buc>W`=&J}z*E93gs8R}bXuOZcY9C!DRT5VKsaq&{94RuuYDwORLD)K9r=M3{8EBs<X(Elc_ zi#^^1zi+Frd}3$}+f?W^H}f!yltuFPDONifHOTxR!U{mPe#5+cGFN15!YU^s-&3Bs zN@AhGB|MMhu5Dd9p2Af5BQV|~@KdS)brD5m^Yw&@iIP)r>?6|ze8Db9l^Qnjjcm%M zc9deN?P4~WN61ZYsNp(2#;-?<$M_jZ!(@D3L4sr5;Oj!V2THVIV)sAjRQ_Zp>ZP$5 z30kWD6Zs7=Dvf?^e6w)yw}{A<0gz@rB+jhxw~kmz-3mYf>B{H5=Cr$u>+jz`&II5= zpaYZTqO5Z>gRQfY;Nd?l%K$F)8K*f`FmsIg6{n`Mn0_EaA~!xdEmqX(?G z!ui7Qv#}!L)#b+hFQJ|aRsi}9+~-V?l%6?POV{^$cP|f7OA`dG!|@m`Gy8jmBy=Yf z%tjVZ%6NN!YoN0V26>a)VVcq_1aT>8ivdXbwuNG&o9s64=2!MYQ$Q>ii1XscM6~w# z8;C(LhIeY2uy@#AtN0ll>^1#YZlZ;N@xRvEpJACirle0KLr6Ex{KvkIZy=mtyZ%Ek zTJ2!O3ln|go4H^`(Z*KKF$Lifwr2k?dSx7g20cJ}Ha%HVQf-_SD%I@Uf^*8{Snpct{Rm z@}`i+^bTN`d>7W#DA43%Gr*s8=-Xf?#Z#ehwu@IyNq-de#&!|SZFIJ`g)lz(QaDfo z=rYzf(vi!;dY8#mnE7v%(F8cEa5iq5z1i+Gcq}zej&dp-RrcMpOlh&ALeR{x8H@T~(s#FmA}Z5@#I7pbMsy8AMqLryJU#zCkCd+`!HF~2 zPFXliotUCrsEE&^oY58Ww<9kEUK;RemD=qFWqQ8Bd^|Cg8a`%FrzXM~Vy>>+Sq7G? zN27Ua?4u82SOR@E<>y-GBCR(FDM5}}ov%)*zVJ3buIM;NTn zIjobVdOW}USMAG}q$&s5vxMu+u{Tz|a&h)#Y$N<(xQ2DHPsm{9=s}s!u2g&jk33LF z{L6BODK>eHByX6>njT6tnzX^P9%WP(WP^Izuxz-H(#+3zqC;4fsL1Y%hHr?v5HGb` zQj`K-Z`wFlTq&1t#XjWmGX4tM^y^WRjleCH1 zP1RvkM33el85vC2Zc_GQm&j6hO@Z0>Z)WZlS_Fk*nnS}`3obQ#=zPxppZ`>51ZS)| zLJ5DarPpA1I@xalu*A~*mqi6Yzseq_Pb1_8+vpCxCGFz#1aH3peUGzh=7(`_lB??v z5s>P_uh*}Zu#@s#E3z4AhG2G74dz$?LGitXS~Q97?tdGpw^!kXEE*@6kGbmK z`MS)aB}`&`N=LeryHDzHQf>-@KK(Xe)_bv5zxrRScjubIw4TV-I0_Rf@qX?tZFw$O zf*Z-u>KCy;yHQ?@Gq~4EnKW9E!lpkBSgQs;Z)BoDaNvI;!Sp9dlAc|)LAx^auE zk}~*wCbm22x66(LeUyL|{;;zkmIVUblX<+Q$9m=bO~Yt&P?tBHM%g=1ltQ=%N#Tf(A^buZOGWm=V281uljw@nxzF<% zvo{`EF(}Nli}eu{d2cwkhHuXhTIpiCY_ooXFy`KWiK7YgOKc`s*8xulHixt-&l3{2 zQOvb90?cy)A9E+>aBlS>Wwk~l;+;mJ@g7bVW>$q0U(}S16>GHp#{uLg34mHT3Z?Qs zIF%|vx8)t(v5>|9+G5huFERMW&uj8cA|0oWi8%K$cYDa{l87L4fnT=?fK7iMQ1T-u z81xN96A_(En@lb5&dH+z)WNV>Xdu;z4pZ(GA2BRrr^iqBgZ$Zm=!31$s73a@SH(a0O4`{Mr|ynOo#1z^v^@m>G|nj=A20^GLix|dy7mizcG>&DTY zJMI<|-Zvr}Ycp66_#i#MC!^eQzrLwC+tUMlB3IGSpsB)#Yf$$}709@2t0&at^^6!%zfa&1Td$73{mWMQG)e6&7;yAttUBrzA;JbL~ zH~9FubYx;MHb*iLXJBi+eP1|o*1?Mcu4mIqE!L0DH{t~Vj9Ai#byd@Kcw*#%{Pw36 z1x|#DW{N->M%c#d90bXxw%v)UoYF!2)77pR?nRbjXT;bc3{rfQX>=n3eLC5w2AEAM8c? z$9Le!A*TgmlOk&o&`a|10)^`j)p@P26M(X)cp!W3NgiZfZ@l?lw6^WS@@H7(<0c9SVa_GKyT){|>o#k^EpmcZSnX+n zBuw&I-7h}>?~~pwGQXuZ0|DId1J07v1R78!QLa0wIJ|Xg&b#!4d>}*7a6ao5o{icC zq>F$^<+ZB^f@6{32ct*pqRyn8P`b+M)YywwKFVDWb*um&@ozpX()b$LmHOqj4Q+cN zsal=OdK8)JOMwz$tzY0w4l&x+Z`eiU1Dqz^;RI(ua_;|PoiOJJ5HhB_9aU(L;k_Ko z??v_=XJ0gD9sxla;V$|@cSGZd&ab#*C}3_#2yrg-Gip%Sl>j^~r;li@q<0B+h5kH- z2N|!J8GF_aY{*wkEfn;xK_9{kma-Igv|l4D4cS?f2o3v@BlF9F1&T>DLDdQ zDvhb4+lAmS7%y86*%Zy zwDRRLR`zyiYq8>t4O#Kz;t^0DxGD$OPrOkJy+($>8MP=3?ueq4Or zQ4DzAvTazhf+SZXIMY|rOAeFP7-=-+&D&yEM0F z%*jC^EqaZC61*tj;IAkx_FKm-9VZoSpk!3_RL=Hu9ev33AG4xQErbv20BAt0QlR*G#sL6vFP4ZK0pVugH(b+XpBjVC+P`78QEB_* zvMkO+)dV-hA+tXVMrIzMP(apsH2UbJ2^P4y@tlUx4OaPzrDXaNF|*>*wh5=F!i@M> z%_19xzyoFN7z7{~@vFM`$V_XbNt28i^XfAG;J8-e^V_gS3lPfmEeImVbcyUd+#*NaZ)GeoG zw;o%|Yej}DLaT#Zy8@JHyAz=e49VLLAxrT3ms7N4{H{M?k%->TOdzM`ogOkbRF`MY zrpP%Bxt?RmiT5}SKgSZ9-NCkXgNJ7IADVzPySjJusq|rR_T5IJf_+v637#FRH+FEs z9VWw-fwk+0vZV`mC?5U&WKW31N$BP{Z(f_`Ia^Ao zngV*cFF1*24K;|Q_uM~nq#aErOqzBcRiG_TL)UJHLNO4c5mu5PftOs>kbbQv3Taq* zG#F6-B&`Ow2Cr!sAJlQIL7IdYDBrGTlLVF&k~6w%=&@d}DD-yLxWV zfX|fN##XQJ^+_-zAHjB7`V#~0_ZOI|y7YSMVkLiJM1^5X~=FHB)Mgz8@XI9)GCdh>~eO;~9R>ej}KaRCCbieI{%!`U=@Yb@e?SGh%m| z3CWy+gf|!8$P@E1pBAaVO4Pp@dR~KR~XL^%2Tbcf5*^sk};k0xmdJui9CI@2` zmTmo8w=v&#(-V?^hjwKE(y8Vcl|=7vIlJ|ZRuffy%TKo6j3&>Qb??99T)Y_m@TY7e zp^5gd@odyn?dIz55ThCt%T}$tP)(aHUbm{ z+)-vjk#VFaYT}Tf$NdNh#9cB#4<87{x5j5JW9lZN*>qT$u2OEhTN4>pR_~2e-B}NK zXaM1WXk}1|JpVzB-&GWE+Oz3-0-)@6)e31@;Qu8x@w~oIWMR3zhysgi(ZLPw%n;U9 zFbSJv&>$ zCHFHu|IalCPi+a)Q~&2;;mzNd6H*u^(LuiAStNw8A~YBu&udN15sKnlDAgCC@7T<~ zw@Mq$ud6ZSi9d!xOk0>)qV3j9(}ljX3b3LG=Gg3{sApyjktRa)Jla3Bi#e%x;glj|Wvc4-o0^CtO~GB67}3tg zil%nH)ZQ%35eh4vT_lxhvA5CvGDih*Bc7i)MayQKh^Jq+6`j9mAui1&3T zGD%nZ67c8BG z)qpCACm+H`XG*NEuhF{iCH_cB^vgrPy^?suDRTdxNnMuk^o01{dc;2rr0DbGu(dvz zRzx$5J2!S%DNvQ?DfkAt?p+PmeRJW|oNZC+XO6cNz+bPvF!7_rXA$f7u|Ni=-W)IAe~ zgtj#3X~#>STXN1MmE3*hS>61#_KfQ}-^%KLxBx~{2Ak^|!wydZfE_fS91s)A)d>~t zI9lD^y6oDXi|_y4s+%X0*(%$UH-FAfguP<_25hn#4>5Sfs%&h6nvI-1QF-51c)P}0 zI>b3Kc&#)!@}iGkaHcAbi|{x7{@REC{gc9fWB}3qm|bH<<>{U2Y}&V!8gQv+`xb!0 z&3W6hU*Jd9W85CGX8jU=O#taRncR8EWjbgZX9}Rq-@TL)E@dz3(>3F~#xM|HRpvU^ zs(ZF*U6CJ|$TXd$Sdh0BTa%w{WLYM#BdHrS;;&Wg&=4^6 z_h(zSPe)Y_xAufX>Kus!g?Mz(j8KvbuB?s){xFKt8O7mVtg`!*&3k|_^9-lJ*ayBz z!oNzN#rG0IFyBCIa-x~REcZ~SZmpBMBIDU7Pq*!z)>jdssMabzDcA127cP3MKi$WS zxpACSG_&JRy*L_8Fu1ll#_iMt7d}Cdzk$+rJI11KdW_yu_7Qs1X~fB#IxzR$IJ)X!yXH$D=kDiWzqJX?F;;L4DQInYKfo& zn1rVoEYw;qk>#HaqD;9ksppO>4Z4?NsW@+EzNa&Xj|eMi52R(8MNTM!{H&dwj9pY) z(My)dH)#NNZPE^)lrB+1K&<-FA!_AX7H{gLl%~RlZZXYXTH20*<-bUgr#|CcvfNEx?F_`rm2Ljx45^77qVP+Oz z?2QCcsy@wObb)8dr1N)XHh|LdnWS=F5<)LUK&nclxaT31X{t!GXw}9Gi`!?6!Dsqg zp#mFmwd(vt?$;`kvJ+sU>$oEtBk-K??-JKBfEq{{Zm93S%}-GqAXvdbZy@HuGDrxZ zao#E^Y6@;?mKx5ys7^~DM*KqK8ou*KnZ%7f*t&}TlYx=b_!G(el=(mTy~uye`_Cik zrVl7L8%e}Sg7r0}ZciQ-a`q@XPI*%Yl1FSG0m1MJAbh{{O@1+O>$}vW_|D_jKlDjh zo3K&a?_>lY0HBVn=D6f`moO`xr&yaz`gcKcduLd1$6s?dOQd=AqIYj!6FK#!R#mre z*NuUnVkMR|u%&;dVJ@7`LMUa=dXL0>hy2;)?sYYYs*CR$ECdD5{Px3G85V(xrSRhm z;tg3LZh+U?uzQ!bhDlK)L zoG2@Zt@l`yfOS!|iv@B1ow+<-lX<1=dpY@dHOcd(!5W|H;qE5EVP*ve5A&4aI@)@< z1dN#7`BTqr=b;DFv-rh{qx~^PnKF3m)S(9+9WWvC!4py00DtBuO(xhA=PE8uMB0J9 z(sl;uz`ti)QfgWkG)v5E0lnmvyI%$&cV|O8)_U={VtAl96}RLacY7kycYsE3w?AOR zQ`NU^uLgpAO`bYU=x?sw#+@qR$qHPaGl?3eD%10P^$T<51(tXOQ^}4N5vA9_&Ym1e zdq=A7DUoInqBX663s6`Uvq5#OyV%zXr5~Owwk?mH7W~uiim%f-~H)GXlxY;)U`+y>aBbh&ER`15VS^o3q0tblCn8_D{tzG2K8SVlfykihEA>Dd0)kK2W`S5kS0kB6a9SS1evlI9Mk_`B*L&ZiUqIdJmd)AUrsD;3`E0kb* z#G388wx)L4kAjS7IvYS(ZC-E@c;1RIL(>q8{GQ_Kdz&*%_GBV2`f2|JWv;y-69gRq zkFe5}ACMZ8)RdoZwSbV`Ux`#fHo0cKFLl`CkMAxzP0mRL{+F)Ypi?++dH3ayf-^w! z0!jLs&nOrOU68vteH2{zw9?SDyBR`o4;y0mSiOH#2o2#|gz*Z=O~|ySpVu~_VK<0= z35K^QwZ&+*?hAyEx9YVT`abDvgD>eh{OPhMv*+WI(m`ql;gTQI-|p{La&AggzcGKY%>-eExHZRKh5Y zQ(&ogPftIpOI)zer+Kt{)!f?Jo5qPl-%6F^@5z}J=?k5gI=I5AF z;avEQO<(Z1-=IB%O+|$?PKQ&sk_lit9q9s0++F!EX5?)t=X5KVn5Ew~yKLDfZYncC zO|IqGJvA$tCn@@(ZH|h(_B4QaX4m2XsRI#ePb30=6blH#EHewpRoLQ)X6adlrmI+l z=2`)yQgUPbY@wp}Kb7)&MCZ34BtB8v{r>=HP-6iggKN;jklD$vhfjaHFAQ4>S(nlgK7SNoGXMm;m~v=!wZR*#SwZU)mPMyGT6|ibwS4Ocx zZIqirsbR}fbqS>DXk;CYvkdh`vI|WjhnZN}o)e=aZF-SLp8o%wI`sw2pA+FAg#Zx* z1H12ZdwtDd23=MB^YR0_g;$DH1D`yX1#%ISH!Gsu?Gk4w4JkvFLRP&e;-kY$NE7Ah z%F<}m#i<9!dMw(A!uXJnL*_LE~hJ2*4uo1@aW9Qfr-)PmAP z#%m=i3*wV-RGo!kR6`sv?qO45F`9j<63Ll#ALepKf;(b`vyBw7u>mJWrt@<;H$AtU z(@|rZzA^VBZB|TgxZ1U*)0LM|a}|Sku&qYuK|d|Kmne_rpJK?HHyR8d%C6tO|N2+a zW9M#ey?dbYYbQ0_E<7QRz_jgmdO7$CRD#7Rjbar936_IaRGZ+@oq+q#F?c69Q-OKQz;ZlKp1zZwF<^~oF65P-8scvg z4(XDrssIlk<)S&=Ig8Jkyj{ksYGB*$|WVt2!UQm%n~rxGsdCO<$eMwhax zVZn(Hi@C?&vMMT}6F}fS;%0*XNcI!(15hPFrIQV-dqW9zvpi<5Ki_Q3w06y3RE-AZ zWU-&FM!0TbAt85e2m02mwj%qdlKK3o#Q-F* z1WWE&@hm$O5Je4^XSftSOxjIQUvQu1={CgcuGFQp^Q%Gj@@rXe031Rz?1Al)DwPZu z(-hG|MnE-q`BtVp1>o(DAtAl7Zwwq-Cip(=a(Ty#M^V_Vo!CnGnLT{EcAKLLj(%7| z0}ba~`UwCrTzbK3tp2>_+ZxnM^RNGOcb5Hrqg);A9F+bv*#5-kQs_5fG&uC+c9U_q z{kF+Fa@TtM%LwZdU@9*p#sVsi<2zeHP6JSa5W8k!2q1-sbnz;&l8$o!g#?V-<2Hy4 z0LIvhrEYjCrL*#%-!uW=Vx3bjn8dJoxD2{~e5gt)Ew@i0-^KXr?Ek2X zI-NC&Sq=`C6+{+P07hYY$&h6SL)k5!!}%c-2IV33(z8jB>-Rx90}HrMyKo3}U>b5j ze8V&A2QQCKpVDKt4pkE%8eZ7wfqD?$7}6HvnJ0`h^<4FoS<#79n|>-rQM~XDe@HKX zC}l3dLy?KswoAa%TZ1|gZu z^OE?qSfjbbo3B4{*X!BoNI!t zwX(}e52%q}glY_(vDwvn{=A&!HRZ}56^vY{Ig%&=vA<;B27Ne)b7xnNe z!d?wH<}+c4to#j_X29}eGa;*53A&$I(*z&0rEp)*S|5ZVjQ`7kBsbdrP1kxok`>Mcd5c>{L%bpFZn+T86?wO+b>9 zNWr}HfeTB=!A+~yWWK79k1G*PRcxB!sSW_IINR`WwEDFpgb3o3>mr6eHUXx>Bhk&c z)VkyT>gJ||Br;GLx& z6!C{A@kg77L{SygxKn&ZWy<+nu3~3T-0yxJ3EXfxX#pvP8Zx>k@>pQ^Qeew$Cf`D& zCr_uvB}d>jk=Y+nv^zi@YUp2isi#YSkf%xhV*V5S6`~K-l8Aho5lJ>0Pi-udua10_ zKHfG3d_Bj6%0s>16E-bD6}bv^>&d5$iewrMGCCj){DW&K?($g3V-Wq4|DCsDJ1N@( zSb164D0`%uF$;wtVs&jl`Nop$1VYq~2n*k6J`Z_Y+9mJaE&e;F%ozdT_gP$@bm!Cp zI2t(86!G3Ap~}Y>ilY}dOyaF2gZ#Q-)%1rd3XvrwZ+H$!JuH4Wo@;=`>B@t}h=m4g zgp%`ruLowqP9oHcLb&_Jr2k6wy~wn)8w}`joM|pmRK1JYS%j@CjL_#M;iW&z{Q}V; z=UPiOq-!Mv5AZa0SVg8Q}^)t(+7s*Oi`qlAs~*zbQ(EOcPyaCGP7=oHz_k0%WU znXz6@YvbE@=Qv9TvR%?^GS8+c@LN z4x+UEoYqEdJ)GGbG#MvzS2RY;i3MoVSY@c*pamo(*RIIC=CzvjWjSz}4ZgE{L*tK9 z74FrG#sftMSJtU6{D!KawEF%DFc685LdVy{=P?fKQ2VFG*D3s&!wv1#AjB=@cp_d{ zgG|4#hlaI_cQj}ww!Gx4GHetTcmU~a5}P1aZ_UtT)yRs7VR@Cc#th6t>J~b*Wt!Ks z`BfvKyJkwp-@f;ERlR-;aHW3Tp8ejSTH7sd89L0xqIg_+M%(NI1c&p2V^>GvJz0OT z5FwG|`0SM2-+VCDTQ}|;fq|+n;z$;~Zf5(scmTM`)9*G#|979X?6z`a-4rBvW$xJ3 z6w<9V-1bLarD*0Z8bef_?D4JU9-r;tuaEv+u5U*@JZNe#xE#EWfjyLtqD@e+R^Klt z&C~y9l!vlImlH$qrv8hW`osRJ^+tyiH>>(gdR^^1_V0~Xp*QkJyl`VWlZrds>SfI!z=_29p65m=DDC7wMk zoI}T-y(N5x~Y&1Lf_QSJ0Q<{x-Vk!Cnp;wv_6zy3e2qA z3-sauA}@|-?)5$Y$QJeJ51yDv^ekvq(PWYld7P$veSfy}=@X7U@G$IbAb-761Yo3M z=L*u~vtv1@lDCDEH%M5a(!@D%xd_$VGE!v)>VeJf$$^sLS+`qO92kj<2uPVxJ~2@mEI%j1iJ?aj^FHoQfrOyP*v#)fWW1VI_ia zN&5ZhzX6+WcqS4SY}Ca#l}x$OYg|i%$+_7k&bS0d@16`tsak6`aMtFY1&md!xbAHjbb*{)+^(S5AaN=m7tr8_j(&Me z$P9bHT|t<;?ZB%yZ<4qAO-Pr!_CXl(!;9=m8=w%9HRhqKXOv5Ed^NnMY9qbY?Fyv3+iS+14lt`szZ%mB$a-+W4bE;*LIY_lMmNxe$ z8rG(Zmpz}v0O<37ya1->&fA~mWG;VKMs{~*Kwh=wZx0%r@2^vSxOI+%GF9Q@l;aB+ z9N)r(ACEd*M7CftTb=52k3~d1h=pRaJ>G}A#*hEtzZy-4Exq;)p58qMa&H!B7^TNr9-U??8!0^{4NtU&3-R!wT9E)TiZz5nQ|0?n)fqlg92oOCy zldMY|Ym3NKZsO!FSt`FB2Yp78JmcuFV0Pqxyv6M8@?*{&%(`%!R{I(N(CF8>97q30E2aR7f*vjYmb-1lLd4H&r?<~^w$%S2-7a-LX|H5Y#D!TQ1;8VWR z6dpee3#M}LsZ}#;EGjjJbqDe*YpcxOhei!8rz?*>hR=)CoSTCaabFZ{HFQNxDmd@4 zrJJC95All+&erzeKm(wDBUZV37{wGHa6LXLI{d=9l|KIK-EPaDFNU;$pTb65_J)Vu zu+|_|A5Gvtc{*I7(CWKriEy=7(OA;&_@Wp4Ii15>lLVqD`iPsDe+%aNYb;o!S0k$Q z*ofj&2XB#`$puGrbcux~LI}<@r+A+i6qP@(F%Xy&;(Va8$J0QPYhgI7AA!@`PS-^+ zmEadAu%fjSD`AM*WI8nBVt1e-ghc1|FS9Dg;9K>&rmr|UosH~=h42=`jomo7H@fGRiGw z+wsx};y|+MN5u~0k)ILj=pFb_;Hn`8YSyH1N%h%$%&-{6p0eIep$mIr9?j;q(k>h5 z?wbZR+Q3JJ<%|%?XKdG~D!}BU{CcH{UWI#X$TtOr4&9%lt1h|1Cs$cxgVsuoL8*w8 zHFI!Goz!?3{J9 zGne%PX*rY^tTefuFF%}I*J$~OZ@CIaKKhESt$=JTp$rLB(qx-hUNv7H+{W^)tO_Kb z8j;KSp>vEHSlfU;<%a4kG)M&0+0(ANJLF4X4_aHb z1J3)~_>vF%?h=me_BU7Hd5+|wVawqGr2#ip-fvs|a9G~!TZy@Nwa@n2(iQ8v`hI8C zdPcBV{Jg>+1GMuD8OaBWGQu)RGTLdfk0!B1Bc(Oo@DXDYd)7ySoLYh?oXqbNBvp#w zduNdq$p#?YhKkw48j$~0<1Arr^~EP;;hZ1C=Q{1~aI|w-vgq%~!``R$ZYOzM5sevd2VU{B8vHNRWo{TSwQ6s7AXzP`e@|K)jYy7BdrBTQqUD0-|pf6FQC8 z0nG0hvFt-XhT1;uOWH&C;DyQv5=Me2bS5fr$J~i2?S%)-EsXiViMuc~g72*z;z!A-du}lT9m{OE z4G&{5U(g*!0D~BU4`3jXkgYxO`U;cdu?d5y=gRGVna(GXmwfheqH7W<->O97qj&O> z)f@wTR#5cnz}G820|hu4Pu7y%!a|~57c@c3l;vPH&6}<{4DU}vj;}%6;j9`UXc7z?gz75gWIsgT&p!G z@hqCkyst*U#|)k<_^))OWA8t<*(sJ62S|hx?Tm;mH-~dNzEH-O+GK<9uAxwcFaTlU z9j)x$Y}|}`%F4hz=H5PgH&PjIz5+<);#Z_vD8`G55F+rr46O|~(g!lF@SA0(D80nZ z(*KMi>~<|#2wo_~*JgLCTB}#PR(03my$teKqW8HG1du%gKIN&>w_3a+S}dwa(1a8z%c8O>}GUXG3OOgVQ6%!bNV5B zG#>@t@|-90uY&Q3HuP->6_@k={oo+|^Fe42!TCGPo|i>E#C`5PYd!#?UbC zP2q?r#XycCS=?nfVo?n|gTO(x<0pAbOH#U)=g9_b1+l`I`v`8$VFd*50CpSycl;pG zx+^&r@R|3psyGrb&kWW)F3GG`BF;DbMHgAIEH0ELE{Oq+oep1zB>pL8`7j=KcsX#JSI*b4+!jn7@f8fSm z>8ly9-su7?&3o4)ATM#9%^F4rYwJVzG`gQ^ieb|oc;Rm;?{u2Lmn4|?f02OgdWprL zu%GzOAeDYTf7%pT+cWT>a;o+QrZSzB-O8?KR8+~=>T@7Rt!r98L>!#7j8t?I`Z4&r z9HXeI{FXytRdILQEYVna!HU0C(!)ho1&{Fi`^5qo--@OxC8g3V2KU@(GszrB31u?4 zds1A|o{;y5&NcRZ$u1^KYu2NA^S5XKy6hS9wH(%DH@8#EQ!CV%dkSKKXy1e@O=1OQ z>4iw_LUhu%JX8sZAokJf`Os0i&#d#1fohdKUZs`Ql&Au=P@pEa^0WG>p!8a_{ynoP zz)`g3wQigMwQYU}PXnUAYT{KIZ6;EK>L2ktN{zZgI^tJ!saofzwjA3&ZAN*=?Rf&t zw#r>}wCvN0GBacA;;Gj$s?-(6N>WA-CooVC84KfYRaHLDyN&M-|MYYSLn=(T9INI& zFGN)_xK1!eqk+c^lk}Z;L0!5oNhSy2L01YoxZaCantl0(M-FQQ1YQJae zuH~0ZZim9;e|u9T2mow}!%sAJjomX>3~GY2?1{4cTFuR``L{X*`3I#a*>KvzbXHqmN$5)@*9>N>hn#(M`x zy^7Mi0Dl26WYK;x4zwid2I7-VGaG?%C&mZ@YJOd|5W9PHtKEYW)EbbF80&k9RRAVU ztXWL|Y8FeVkpR;}Uxrv{D7}sY2$BbkAy&R$Yl_1FeKZ5A5L#7N)v*zq_H~q4csc(e zDIgUC#AH1vm~9!rDUkk6`TXs_jo7*n)(W}c`LOunq+@p#zvdMa`kKOB!TXQ_i4^Ov z1BZY-$4teGsf;pnlJ3_*%bNQMU}zPd&5Oz|GP~WI6dYEsgm^|CL@9CEDV^$9lqdHC z5E#|AVs8`I01TSQ)2!e*il;0!Z)W*?wP_VzO5u-w8&hi zI|^EX(8r(WUO2K+LRwwwrATeMtUfsqe>Ezt>63f2fKtLu;9d137=p8TW8g$pfUBvI z`T&v;Y{L-`8{%vTGX`CvnIaD*7kulmQd%lRenoSGnu0h@~ zJ<8?&$HrTg=nwPawI=7qJ<87B_Fge`F=s6tmFisiRTE3h@Fd+a)mdbzL`j#hS)o~$fk%vy z;ztEwj+Ugv0)Pi?cQ5j=hIMZG%?f*-yjR^zM*w2&51O$(Lz@lBA{zM<3RJzRz0(29 zehe6((ZZPz$(y$(~oi(`3})eK+(@wn`ECQRuZ zn|55$@gSsJDtHFJ;E#`{%Cfo`Ut2Zt?42K23ac18 zq+_DSK)!<(xoJ&8etSUk&N{cUYQ}HISx^(f=&G^oHOLf|6Qd%#4YuxC zU!gyh0s!GrcNTl`346l8Ui7t}FNqU?M^`&S|Ix8-v44Yg@3f2=8vsQ`hnH#+1V^+= zA15|wkHLw<|7O5RR=Rc=;Sp=~ zQq-m~VaG#(-qRGxGhi-bUg91Oqd9YHs3#I_Y?LebXtLP<%A{tq^?#gbdtP41(oDok&2Z%uDf(Ic+v10aNO-Ls zvDR^~%Gu|7Mgjma$`HN;tk_~nj0l5uW3;eG5!Ypf-rq6+(((GIZYrl;01jOczOWeO zC(G>b_Z&-ms!}KhEmiqjvyh*Q92dVS1L_w;%7}MK>ZZ48Nip47xwh!XWEed4l6SA( z2Mz1rp;;tvnGpgS?G}#;n5XY16+WjR5es?#GT;?}q%z+8VCLb!|Fh+z(lw&r!gjoz z^Awsuig+XR`&pvlw^|`mxADY$g*^5N2xZZ&83 z`dnS#)_pT^6b>OQ;7f%9eR#-Qu6#Gu7Tpeic*|Xdc zZM*KA;zgZRHZFPQzZSqLDPw|+p|LT)EIj&HUFue~_(d&lKKnT{XE(o3FKI59IQk@n zgn6uz#4!Loy|Y!4$*lawd%vn5CrUqdt%1NO#Fn7=Qk*HocZnD*i^^*gHH)=W$uel8 zT(zIg4xbPHM2%>dsH%*gBqBDrp^z*OLsLy%{X%kbh>L~DF2UZAm4^(qd%*y_U>GCe z(W}Hd&jh~(Ibtk59khp7w>?{8|BI*=^sc_>O5`&%LOQkZw%#1HBmv00gP72Cq)H63 zIsZu=P$eKWnMQXhmvQhsUfYq|3zjQ|Yqs6144C)){EdqArNNjzW3S04CQyvQI1 zV!b3j*sjE?t#$!+uXKCP(m3yncok6wG)16uv_Dr&`?Mp6xX*0t9glz4z{E(yE&3$) zAlQYy9}iXbTR6#OWq-1EL?Y=K7DzFaeHWLfHS51(I*r>PB6f$40%%pUt7rDaucE}h zUzN-hQ?U_K$Bs;XoCz{djWgxtmeqzS%>dAz*_#QK(CA~))VRa|)FnQT9cA0pwmk{4C%w(!MKXjR1gAHDiNHa;N$MLWob$ZMvwDi(`IqkK+VGo5+z| zf0&wM%?$uk;MpU7ptB&e?`%G2%V8;pS1t02v57o)VO?ZUME{OJPbM-zAq?o}@~A!9Ybyd2cPK!0*n9O2fjL&4)Q+A{ZiWpgxgw<_CG(qqkHiln^gP z*J%1@1HVc#ZQ*SuWS_g$vru9sUVW=4aB=*)=TC{yO1QtHpPu8Nb%-@5gS9kei&=53 zz3D@;W+iV!fpaM|^sjW?U1GnoF{2ajn>&!?LV%Ab6OUbamUrSJ1rXmX8YKF8bD4}Y z;=UGP03^6`Qrve)0;=u63O7=6!9zjMT23B{Rgnp8qD=i~9hf)$q>UMDaDVszwfG6t zBjM|1bpS97Pg?!w0bA5WGupKkrcxb{T(|uYc|Kjz+fm>MxB6yWNXJ^a#XcTKA5n~a z+gLSRi1QH^%|E4Ta+*AsW6)H=R;y!(sKM`5@?66r=lH~P$u-DK;4UWVO3pOMSU6OG zmDau1g)BBMlZq;Be9V!TB%}gV#P{PQPJK4b>{k;l{V-5LG|6$2HxL)gsr)3s)Wm(W z0(bF~hAEdg225~mJD}Z!>YZwNthgaTMS5@9G6kZ(x=8`$Z3jz_5ib763l1o91CgiF zLnO|u__V}`ei&`fyPE%Yis&b*Xqo@x0VPTgYU1RZq^cX`V+S#&3+_-QoIL_IMcTO; zXrq=)RV4>Aqbo!_H0ZVi(*3ME@NKnOtfi;TZ(^Ny#E2v1P& z>Bt8g0Q`y5^5AZJrsvhza32?|=aGde0|ePWe&>|>0Wyh#;t6K`hX#9xH;di=JcD&b zmx!-%Rp}U@?7&G7&4hvD|7$oWADCWi{=3c7M2V@nuIa6Lgq{8E81^ns_#&;Wql6y^`Tk~u@!u50r5Z~lbt+Uv z5av6dzT|@gUsKbF?T^2W`xyWU^`Ff$zdu%+cqSO~@~NJ-QdEg4B`j<4sp&_=4txn{ z5^ek}+YX0;|NTl{Y#B&>^!`}@*;*h(N+Sgv#wZwd!QnR;r$td*Uw5q7~3LYD!Q=vSbZ zn_7?lW^%Bs1j-uwiwX&(oFyb=Dm(xguINBzWhP{Dke+Xu({~0Mc}oH?5hhnN#t?1| zAyP;yTtNwYGj)hHOhzo_-^lqR0m!p+^WE{9r0Ys3Cf}gX39h9R8KRjlw6{=2Z;x2d zYNAwGnx{7q)|u^at>M76M6NgD{O}!M%XV3#?2l1#(=If@32yL#bN1r@aZF!Fk)?X2 zSbYfA887i;6=tu$@{v7S>1NotV*0ydw#Ilgl&$itnXZ{-^MOygG}FqzXuSu?N>xQgziKwS{P-a zpozaGSmTZkcN8u+Hum4&)neW(D&vk!_@7}{7oHmHXYBmPD^+qKD30$^8GHVMUxMak z`^0-;>fdE}c?fKk1|fay6Br0LqoK#EGWXov@8{e_ro?pe+uLwMpUl#v)5x|<;LFQV z0r1^sSScK-j_qc)Oz-8$b0jQ{Slvs0M`W&46hO}Xg^PqosL;Q+0YDhvN52d?dj;I74;iq$ z%^l(md=4-Ghj}KBP-zI~;G|~RXR`-KCU$t`#<7_wc@!H-O7;hS#?;NjxPIXg6b+3JOO}wa5`iSxMf0p8FXGpK?qPGmMIj?eByd1m58w#%a8JsDv+% zjj~yxxcFMfdp_L|9nSlsjmuw&=XW6>Gpp;O+!&+l9wb+@&LlEALIrc%B=CS0TTf5wXL?74LV8=#3IH{qa;=|Pmo@WIJsEGq5rTdP#U)c8TGfW?xy3Y}! z>ExN~iChrh`J1P{eYAvT@WVocvD_Y5oD{X00WPt% zko0n11}eH`QVc9ZZCqF)>z~?zgFRpOpi0sYW) zW5uG?W&gC|9aSPHop{NdX2+}bvDsq1)mP5c(H<3ey)X}J*G_CmgspLV@W^jT8DY+8v42-8Y1YDZjk_T!-{-VE8a0m`%ij(5GsUofagb>~_6HDr7t?!>HXD|&2_Wdzne-(tzx zQDG1y0Srwr@mWz|4zpoIV8#ocMt zL)j>mrlALJk7S$K8J=-)DuP6V?0KEyQfW>*oi6CzE_yz;6dBBuJLZPDuf0%eXfo=A zL;{5q%55~g&Z)w~Uk2e;^$ko5W3A*rf=J8_j^$ka0`e2Ai~Sg;6vLnP_#t`fH3z-_ zJ5KU{A%AX9#7RjtV~S#BcT}e1S9Jrn&Xp5RiJUV~n;{c4gYNA=&#NE=WaQtHzk4#>)GZef zXxOTTx|iQ_@)(O6c+F$7|5N?EipnE!3jUrWM#V+NFFvYN=-Km@C*V3?-3d|ggVmux zEMAf$hbc3HYR#ihGDUAnuwQ@TrB5RjH`knZl( z6#;4K22nZ%3F}io{(w7kXYQQ2=lst5K9AHq&!61yau~y=(`vmgpyF1OM^5?l_QHs8 z;k{*b(5f*I`d$59d8(i}KhNthM_Lb1Cj+f6swRSfin?g-Yc&zv=Nx$D^B)7Uf#dh2 z!VI5l@5}|IK44QD03=nNxkuPreQ5=X=e$gKx`bJS>6Zx&9+@Yd&$MT&sXp9Sl&a(i zX;}btY-MSdv2))K!v4y)-YR&$9|Ya&KmF|TSpPGK7(f6YHEkqL9L9=*?oFhrYmvlN z^JvALjXTXZzDE}I?!VB#5kXTW`V@o)6*ybr&~mY*)XLlm7AydnF8_lguCUF=riU2) zuOSe|j*aow4f=xEu*c=L842_*)v2*U^oSM6EAQzWUzGwlS?ZVi=mGS4hCgj0ejaN8 z{((mHbWmWg@h~v5!Kj0Y^GSz@mb4HjJc>4SGNhPiiuQe<$9LBIDB*=t?2JJ|v4Gbe zbWQzzoQAt}#tfn-G>X+fu5`>9#0)q{aoEqOy+d4jYAawzTb!Uv-Tdxq_vDYQ zFs35UWK8MZ6N*D)<)aVi9;SAQE$*W{oK78(=5Bxe>a*{@P!LuHm|I4OkLqAV<*EW4 zO*We&BEll(@haze(%&65T`V%47mDr+I$3vGVFv5AdT-YQ36^En`8Z655oC*WAB1?% z8UJX4KS@|XnYjQhn?gY%U0?yxXQOWVsTd;Y(467&&Y$wXP%cyt<8bh2AE(})Z6ZLa z7QroQ_Gfxgfl=U(Zb2;FYGe_Zshknbby+PsCa5{HCoA6CELr)b09|igJmyXJwhDYe ztuU_$<1K5OQ{2dM2snHNVDAb*?E4k(zOW((O9=iDeOa`E6AAW-e}fA<9#A!%vQo6A?J_r#%YE(>)G}JLu8o8RPF3C(3eV zepLj}V!sT3<9N&EZCGtwf`a7~SQN1yz*Qd+e~65})dQe0e!KMAYiiCq@s=`Yu^Ws^%ZIn^j-l7m?27cD+7a-}5kIwS@2P zn$mos+qXqR@qNu2cLprohXKsws!|=64x4GVr^Xt#1?7T@wu$3xos8`f2a1b-d%3>$ z4BC8bgmbzAyD;n?eis2|{)$(sL7~4(0sGg^wFkAORs1y1!8xD3(Wd=jngKPoA?A8c z?;-*gUtn8iy&ERMmuq@nMlIp90HIns#*H)k+alCmJw+mJJa?+S3&KYAJ_}yF&1uuoQz>*kNM>5O8N-R zZ0r2v&`UEbhmWvf9T(_Nx@uO7u#+lGU&yKvU_KkrB+<)9D>0~8mOY6H@Z}fO%UWU$ z?oB?;ehVfF1keC<-WLcqgj-{2@`P*Qz5S#3Sr01)$2$YYA7pFxsesU%I=gkd98-i~ zvUd8KbA)yI7EWA9SY@af@y|ziXb=x=_*Z54ohrst^D5!-vdWTPCpfoX}ayz@4}NwM*$z~e;%4boMVyQY8%3ErnNskAB)KY7Rvi22G!sE z&hwlmca#z+#YB(rO3syav^%F0n7uScS4^VD0N32L2pjJ-vZl3T^UYXV)%}{H3{~l7Zv(%@mGW<`+G%G)ZlC>hV-W~V9*)+5WpHiI0^8B5( z&9?A2i{Zx2ue4NUusEpWv+5Vj_cZ~PV?F}*mO!%9R^Ip}Ie;amN{|_TpWaEiUf}z>tatczW41VlG57 z3+8DI^)#fCHc|Scyx4sRw2xFP;Q%CNx?{~Wi9cO%z%jKK0@3Gf=>~);Le6k#np((l z)rY45%d6*|+h=p(E9|KJjoOy1e&w{!&fA=+nBzcIahT`1-@MDuSxv4Qj$+1bn~(i3 zsOEr}DR>ru)xyQhIb$rGza!a673o#I;Q=8bF=*#<0tC8##;8@{lrEA&0^cL3?C0@= z_-WLkA^D2gfe%Edr3yIZ?evkZd-#2DOno9}8{5=S{E0E1;=F)`XgVvpP8WUO2v;(f zh%`*`$w};l;a_OIJY#eOlChJSA8qKIMoVHBXQ2|NiG(l?cXtGMcG@XnSP(adc$YT$ z#8lN2onSjrORnS65Z z0NjQKZ7R<^qU+f8#s_7XuvR0~FwwG_h4FXFaD{P8?i7F_nb|8JmCGRSsh?<6FX2QH z8wQH@QnggBYCV2rx-MjV#K_P8 zs7BR*UHhm$BCh`-!U<#~xai%-f{c}xiSJoT0at^)ESBJr;0{L}b9@*d^TF}oh4@Z5 z26#?wxdSi*pYD-f0YoK$i~d9g67G42+A_z&C-BbOl{VrR9Wc zd7l3D696({2B_O=+dv;c<-w3h2?vgB=L9{dM+|ktzpeM-?j@yAcO}~H%nGuu`uGX=ln5V6NSv9X`N^632J|Ud`7eGZYFOTkSAg^Rho%H^-8Pau*)KcD} zJkbRq<*AGk*i;WIC@60afpzugflf{KIEO$b6B6Q;cVR>bn)mFJ$il>aPdJxRU1ELX z0X)MPKIC;|BO2p{l*T2k%mU8!1xtEEJBa4~&FCVCSCI(W*Od$di4?uU!ZbYp$L5CB zX+>YT11jA_tW`0@h5^or$5R4KE0rfjvRE)dDqJl&j`XyC7N4%d=a*#2nc}iC)$%hK z^W)#H&e^{eVZYg1M?iGoFfTH4=EP-_zsj=(y`3as`lN4tZxV>9e$RBbzsWx}igV)q zPj{Ru`ZzH|)YY8vveOn2e2PoqbV7#%&d)g>CP};}Bhg3i|DD#e*CLo%Xw-kr2@b_v zFSw1F%)ola0R&He;DqBp`g9iU_okGV@Q*3IDGZ!dNXYA{g*VYyHq-ykT8IFdl|d;a z&$38ljg2flc+1IFvU_`}TRIPi{9LbysZ_21J|&k7d}G-nUl-nfi$rt$ z$^Nk(7VTKU`ueS-<2_md~;XHqmHb4j~lcG1@`$BsscYP=jUtZ zC-h%y6y5QM6U>pxGu*lWlhPBdeByrn;p37a*@c-EN4FL#6FmE9AHa1^!!+wdOhGML zcFIf5H+tfl8wzh#SmW||`a{?2w)`AbX8Xp4Q2s zd;7FJb|{u<7os;l{PE^x`4-O^Y2D2bj`3JEQd}`h_yvDH192C?JqVg|p`EMyra9ZPHMy1Yb8N zGn@92EHYOTJIWZmcDZ&-W;q7K*k-;EXeNhhYLKp)=|ayf{qWnjA0jN{H4&mtYcK__ z`1#RT<}=k7o2-pJM9k0!@Rg8sOnlN+vpt^@@h+RFy;DLdN+sO~6YXWuzzYcdH5{|J z4Bnu#NIet=u_ik!0|~EJ`L~{{|0T(9Tr& zGj@fVP;v%lO8wvASl%w`Cz?noJ@{0!NYVCI*WtUf4nw%y9FQnJY9KPFP6(84HJRf7 z_VKkobP%id>pr>YmZnrsP<^9^CDH zVs18D2KtPAPK7%;1PD)=?5~m)EmsrUq{u5?01b=w8a)toHWa0##H?!bkk9uC?-pjWP8MszsJd=7y zZ(i{v|HMiYV{N8eE`hYA@ z{?%}aI5*(7D-!n-RI0p3w9hyE{X_y`5zMKaU)_F;p_kL$%}n)Ul^_|=51;H$=6qs( zqT><7!EMJRTHlZC8GMg~zHVk6ny6&w7qfG#c)W(+-@6O4cdV;$_`k5F@&i}b!-%z& zwzER&^s`%QO(Zstk&IPJ$5x4j5|3Jd^#}H%1N5#UNfDMORC`DeKe~) zeN#5f^h9$}&Pp;Bg87ad!=}E1sq)py-%tkM)5(R2jkt%dZ!oCy*k>7eunPY31@$$Sa?Fzzs01$5#x-N1qcn*$yLLid` z@!)8ZqfNPt5TQN49LnWnm_dNL7^4FQtq2bBG=G%4XgrRCB~m`}Y)T(4HstoV7PyB7 zB)?!3B2oWACBdc0xSlRS3hN_rqzsNBvr3Z7$6i>AR*q>WFQzZW7(`*Wmv#27IH@o` ziqI}B0OV}!TG?og5yq|ibO7DU?9B?BP1hV--Y0B;_U4piTT#!s{aywMo-5Ya8ZHJG z4fOamHCLU@TGS$cKEcWR>#AZ<(4cK_;~=BL+9Ch`2;GQ${oaSx*Vf!2$U`mvXJ`ci zcn$%y$Z#*_;G!f1g^;O4wRv_c=_@gzTOhV$W41g{9y+?G_NVsx*{%HiflL4MTdtXyJHVuu zq+l^$?G}6A?)4*S{IetY;rY{ zWmM}I! z)><_mN4%9U_c-9^w2yKkPef`Wr zeI%Zv7K>NS9Ghd`s?41Vt81w3Cr~f!`w!@OplTE^m5piv)Y&Urk-(r2tf^CIH_pAgLeIOj(cfT;5dr=iz+>zFaDWbUjh2-uTJ`{q%QHB=sJ z_|FUGrk6I`Jjl%qNu$-m|259xon#v&Z2q352Sg#8OkM>Vf8A^Wy;=G>)o&vd!27|R z3d%Eth|Su=E4Sz^*wtrXO(BYDvbVw#gD24WVwm1NZ zwn7G%=2-esB&c}5UYbe%9+A}UCwF2!czj=gf~1Sq0GqG*aa%RFR~2VmfNt>LS{$xg zj*Wr|j)=!%GO1ELv$TDvp?HLzKc>YurFb5WYtf3!zjt3;G@FLLnC{Iz=+NZ+kknzz zvJ>s_A-dF+ZN(;+-h*RrX7sdiK$K5QLg;klu2FMw_Y8S3mmB)ChB_BLiGf6KyQS}|e0Lv4(Yo8UOUnO|@N zIHLcQWA8Jx3cr7kRbFk;j3Or1bfCS+Ga&nn*duc=H^WA%X!*osD7N(K;q*aSkwrJM zf6K%U`@{?by5+eL0T~l+6$c)5j6!y}TegpDCKk~Aa2U8Hxgf-jbp9ee_}&eC63RsN z*T`_%1Z$erG!-jQ=IUr;X=QIaDaMK2>bd+;a#2G_JWfNfp+B~Pv0|5t+@devagC)4 zu|SM3Cq(A`5B<||wx3QwVtp3Pvx|Aa@NQ#Z44Qn>-KG8TG!HA8@DUZA@Nw2nu4Nke zS)Q%O33Gg{Ws!pM3HWrYL?#lBro{<|hHmN}E5@O=|9yj}3s3pM@szvpm?xOD(pauB zt{E4U*KyQ$)*KU**e=gE^e`H;O6&}JV~iQ_l2MBBOE%4<79qM6Sdymi`wkDX%wq_7 z>s~Rk%4x2M;K?ws8M51<&p~rrb%AVnD8BH--=MNx@VF_5=!rs+{c$_TP34cppAlc; zsUm7#VBuH(7v#G7<8(bUvv%3&QAU)|ulW?I+oOV=hugJ*UoRYKCZO-uG2Svqvw}H@ zXteBTJH8rnyw}9NOo}I)FP+0q%|HT!a9tG+W>BBMMW;W=VqHOR;k+{-dhYP3|5Ca! zeZKaE!N)II#A>^c-OsFwzMH}m8jU^4k1NXSm>=4nm8vI{57Ce18gl4|=3c_c&RgK@ ze0)a00_Ql*K(&)7IlBJEwZd z%Crq|UUnv+Z}JD`kiH`KSo9-1)j;C8Ec82`=~25sUHiGLS3za?5eaFOebKzTMj?lZ z|3%`s60evTea!XXNoidFq8bWa)kNP)WhF=ancoX~r@K(s{A^i>cgq& z?2uIo`vz{N)PgKsM)gDhQSn~`oHpvT<7T4d(*AZE?s&r@D2R3aPwSlH@lW;x%3@fY z9Fs=|f3HQGR6?Brxbt}dKhq$QlIE}lj;E`W$H02eD4XHACrej4`c^+lfgPkJ$iM|7 z>dhodzY!AW3;~x<6_Tj@+CIrEf+nbI({a9@`oUxjG@}abM^PR+VZMs9S&p#Wd`&b#?cQ1U7lB z`e}&f*24J6$PBp^PL-9nmYTzif;76Hk?4q8#zoa`aS~_!gV5;<{;4a=b?5$EW%CXh ziGayE9!RvdY$!#4$mo768-J{6JZz69$RXP-0i#4XdSUA?rO%|>5Z*HAG14OT(N`Hx9$l&br+>yRrBzFn)Fny zG=$8y0P`}s#ZlWl9ze#>jL za|pa#5Bjo(4tKk4c%~!JHuP@cyxyl)?mkF`NQ_brW|SY0kL{t$5IpOg;Rho z4Wn;%VWY%Od~Sa!Fh+O(cO0Pq7m!Tu%6p?fiAnL2M3+|?V6la}`9}o^X${Q06oXZE zEcoh(>oWY+NVNI=C|WIyM?vX98r$#~@n8bzsn~?5?pA08h5akRs$JVJgepmqe9>-nP4Gz|RsB7AOLt!7so;(gvtfBQRFLq@|Hs+xP`dD!F1vnOz zFK@qQfCL^{+oBBXw?YtJg~oS1zm9=YYv+RP0fz`=38(!@J}k*hkqf(+Hp!I)TQS>N zprHPR@h(Ju&_Lz*am;z`s;2z?ZzMw?$uGUxZiRCw9%p{McdZ)}hqbMpt%HL*s6EjY zbtni@+^j#W^Yp0oyM)ipF_%*477GfG&=uOAw2LN3UO3UJAq(B$ ztk!@@SJbSq+W6V2zDzs@ljfsp|9?gS4Tdootg zMH&3a-1$CqE^i#$UU0}&K!iDz4hv0-$2#jNe?8QNKKG)T6B2j&n>+x3GD4PHDvO6o zU~+uFYIaQh#G>&XI(D|NddS&6tL1i+Oy(NEu>UdI)zy*R|Gs98g(Q=N;06UeiXRpL zJ%MNoj?CA2F$JIV?5ujpVP&F*euH&i5>3tpSzO$w)U3MwiEqu|mPV^Tn+S=3`pd9s zYSuH|cAL<6Y0wR*MsOlZ7dnLGbDF#h6kdiRPdG^FJSPSNSW?=ne35dR~0OAr~E?HyY9m(wkm+wCHJlX3Oyt`N%VFcy?oHUf_}0KEV!mt^*mSd0L0_CCNKZB1FD_fQ@z{ovAHYWtI44Nw|?ki1}vU zsHkI)h*;r`oZ47Q2^P@VH$j>F(T>FF5{05^a*4-Unzxvj`~T z>*YzK1(7wCaa7ahMN^a*K(lTttn{_6mk${cR`2b7HECIzV_tA`F+>*wVE+(6jU7Iq zo5PwZ;MBOI60l}wItb|Y1>@!xsN~~3FF1^ceYFu;yZKo$<_4JS=*E;)mzBGam)CdA zoz5Ei4WE%#=E&DMZq`Vlz$;$p@9l62~Gk^jdQ^2BS_9u4UG%YqgKhmaA;_*h#`@a zYAV?!MP})AR(`|XbEtCOTt|Y0sVVqfd$C&ezm&G2R+8Vfk3ahldU8ZU`ACUp8gq%D2!?ijL#s9iC3>JI)i!%7ua zJ~EJFpKyHCCk`-m@Uu!PmAm9mGSR=Ommp!4BfdWBwDhtR=&2dP6}xDN$@Q8UFE$nF zAv$0ft1x9e>jEH0KCcOnlU^y8-FsC%`S`+K^-}PQ+Z9Tkd)hGR1;CoAm0{t}@?O}C zOwkwTJAI2JOeZuh9N=2dMN*M%N{*#7x6F-BJ2ttTQ4+W|Kb#UXTS*SJPq_pI+kOe< z=P)*Aay967OyhZ89oZ`1^y&{)CvtJPBml-*)2^lB*9df#31_kk0mZU5UPp8xoQJn& zhk>!5`RD?qlFW=Gv*5MXBemWa#yz>B1z+~&Vg-*uUod^haWZ$&E9Y1z42|AOYbCql z-pY1$$8>p`a(hFrdvPGuSebVZ@RT{SRCs${5g8P}QQbl6q{}uw>3LiY1n^2>X>nIq zvuj@U|LqItmSVSJZo{vC4pF7Ph)Om;|3UQgd&#w@v4NGa+kpqkqL61W(CJ^wN@$q# z;t7hk-yf$5c79aRG6N|7)y6=D^&V}^3!^dDS9(&ivpPo&0OA=g_y+_D3Z`VQoBeqw ze}rP5#tqw@#z?NlQk&kHoJeB<7Hw~BZS(Lya00bw2w?;IH~;uf^Z#iq^6wwU`0W?^ zU0M{VX9+knpvU4M9$%U$WN6T}=hA3h)Y`Ovovt)0rErf1+a~$6Swu+bvMKnbJ;_h* za$tPEB`AVI|0(%(F_gHe2=e3)R*RJLoqimvRf`JrrIUY{mYOe-i1RQ0#{4nww`OE* zn@E|15w1~ZO-^mEbNT7*MWpOgEG~FOe)PaT2baoo4B0KEd)ojm`7B=fENXd8E_tR7 zBs5%dnvYX~cK?OYm~UJuU@+v1h=WPosIzwi$QvTuZmhcoEE^K6_i@{WVz zH~zvu0a{pgkN%qR56Z6D?kK_H6!sm`Nx)dTG%K(H}(Un2MmLbAmB9d z9oL1aNdvmz)EALtal3bsUz5CWShl50P3OCjkI8e(RU((as=W$$6qojPf2|T^eme8q z`OVgQ6(@SX|KLw%|49&wS}|Tg7ZRc|?DS6#s^NFQI_mJw!bIFE0l+$F9Lt_(-Yp|Qk0JV7%H6}b^3UY6 z-w|M4RTo!$OYCc6o**@r6jKcY(r|Y+yI4C52yL4J7AeCiqIZ7FI0lWDZSK`@;cT*m z72`rfXuJ5PTYPO}La16U?(fG9U4Xu>ab7EN7`7;nA6}ag=JJf}aeYb^FyzclFho;k zHpo{+qqgw%*4*m?91hKW`V5K!ngKVMWjBW{evgRv`4A8W)mkzUjQv8^d)9)8w83HN zP1x2DQ~E#*laX3I(@u~P&*Xda4qzxQB2N?1WrT6jVriQ?J>T_9UBaO?$zAmvU$gB? zD@O$-mPFZhTK(5l)tp*P?kr=gBa74F`gSg+Y@k&{)8~7`BzrL)pliB)42OiZvxm#u zT+Y0Gs*k1>jXk6!nch^Jk7f~rle|`jY?&jC)$q*0puBzgyfN47?@9;yDWqWPrIA{3 zor7Cr(F?b}IN@NRz^_G6;Yi3DYJs;ghIW4?tx8NnF_{shuZI z)MT;63m;D(Iu#RW%gcbD=Y24t4hmpA(!<0#?091vc6#C|9_G6$A&y%R2SWf*u6ANi zN4uQ1O>bc%KW5?b+nRd87UB~$_#D9E$$vA74@Zb9FjWK?QIso(MO!sT2Vj3e0%j4n zpZ%1~8=TX5ZPg+Fo^c->Ug#J?{gKd?tuIS_6a5-$K*<6?1#|H8CO2>A_x1UWWS^lu zCkOlegQgom3@?YrP9)TbXbX|vT0 zDcx!T81Hw)GR1SX$6M8-lOC$Ur)%JmgR#QlVb@o}Ch9kVYcb-iyn5Ghwh-}u%ixJ{ zx?(dySo%Zq3%jjORr>R_1GFieoEtvTV%_?h^IS``(RCnKNNc`Q!UVVpB?*^4!07W;dZz#$?M^p7D)2?(OU>R6eia(KlGZUO zonEuwMq8lMoWtG6cjR~s+Vnh$RYIm~S3c8%m9*-D8-EWGK=(0X=YER(&QR`+pcoGj zTy%Q&P>IUA%kdD z{fcswOq`rjz{(9wvP;g%jEA2Y8a4%rV$7yv3JV(xDw>qyIN#?OQ;1R+%Q_Dz6ofS% zzZmgI807LgXBSY-Or<^fl+LiPx!TnjM3&m3xfbS!ZO;k`&SElM-ac$o{5r&dr5z8s z*fv83Ww;uh^1tf{CTn0YpI-D9hD?yh7Y4NJIz8f5Oa^1u6= zl}EM@Z}M978gF+2v!G3MVySn1^De2V!otKNQEy?9ZyOe5#yC<%(}FbI-xuH-&vVQJ zFvb5lbE1QZ6#wymQ&*P&V)UaBJI+sveRR_iU@Gb7_;`BMH7m~4a;`LV4)InkQ2~5E z((E&%L1lz|P$!@Y6UtMIY3I}sVHw93CPSciUe#Z93v8{#ar-UkSy)tX_%$v?6LM5L z2@+J&=V1hZ5N$5V_-#y3k}QvWR&{V_lBM#)Tm!wLOhk`ToOL zhmp1wIqdEj`=pdPPiUGV>PbQnu*-QzkP>@ay~dd!T_P~%P|08l5f;DoSvSr1hz(hR z+;P#r9|U}&vWfrcmjq2Y@AZ&zk5@=l0Ia!p@%245`!p(|FTe9A(^^Hh!1+G9>*>wP zZRne!Ta1dQzQ$L~ZIzz}X7r1c`F@A2e9!%yYI@j5*z?)go!%6)&;Y!I&L&hNy-qB% zZq~_E9YCYF$^vvc9EjfET_i`Q4{mxn`n1Y}_oe=P=8Ot!{sau2A}>$*4gvO8NT~!) zeqgdOTRJQxN<^aCBw9TH%}n0oy?Kc^)m=neDA3uGZkHm0t2sCnZw5Yekk{6o<=n5!uHp~_1oHk`< zaaTyZQys>Ji%A9SoZn{Dh@ZkAk))Z6rECpRUYi>qL=B@x7iGQ#c$4t7lJFjHRR!Y2 zSx-J?edHm7zyT8%q%;cDB0`5r!3d>p78$lyD(`Q^d`;z-c`vS|vV^`x;Z8WgdF~yt znZ?b#jxu5lRPO}D0#2u=ZF_GJ;SN?{g_VW4;x~(u|F7)gd?RA|17!MV{Cw4bX2TF@ zZg*|!WOGVCYVG}X`Ib6%#gSgL02^y3Obe!tp@(i9?D#qut#5nb(j;J@Xwgs$ps|N= z0q9J^8HFytHXb=W?$pb?=Q0i5#2nN1cgjM{42??wEjeCEFPZ9l58j(!q~YrkI!eOb zLbQy%c_S~hrx%7+#}Wf}&A*+-82uf?;2ENJx{^ z(#_^V^^mxZ$;&(*Aw~CjB^ZVY9v$G6#H2zy;M6%mhYTBp67bi8W+V01B}qzscbGc0 z)lLzR&OBj_JVf9;eLlvhr159U%Iu%;J42ep_c4u>zeby0K?YnnRKj9GWgr%$t1& zwP9!{nbo3Eiww6KGY`mWi+)yP`B_Q~9kB214UkWL#S>fI5T2TQx|y3$F$jLW_LHBv zA|DQSCB;cX3lO$UJwss7)9O?nZQIg?kQ{{alI#Qgy+Q~RJo|2IV1a2{Vk#1s>|0#` z{n_uw$JnjnA$m|G+WC_%MZ1zvey^@C5gd=A)nI(pNLt{?q(^3urw0i#37`D_}K2a*D4S#l*`;E>yQAZjFSZ0X(`zZ0#4M`c02E zON(k0^3f($#2rBkgN;&|8k}JYZX9UnEF$VOhl4Q|#Bz6Vk3mr4Rkl$8)27e-XOT0B zE!5tSXSNrYBwC&7m>4ft|E9}7G_aFU8Mm*S!54m>N~YdCXO+B3mUR_#sJj`D=IH_V zeLFxUIAt7c)0Lu;@D>~Lm+#X2S|dVLz*3!E3?MNID<6u8&sPrUhg zBfVfQ4cxh!_yGo|C-g&{qCL}u=VygvT>$-*IezDTt5A`uimei|GwB!*zL-UIvX<7I zn~|Onh$-acc5p6Ac=!I!$ z7uWKw=DBia)R-K8t4VqQp5?y)reDB}NR}-SFp@^Wi1PCxqn-=ygx2Iwho5~H!Eyw7 zTS-~$c7{dl6#5^$z=ink>0g)tyX*E=%CpsG_|Z@@+0>@{DS#46xg+=B;K}FrhASiA znkhX4+osl^_=dWUNbOCzkxNr>u6k6pMa*HqN7sGRpl<89HO(<9g0N?|RXpFc>$8Bq zVBNl~>_RNp7X+-+x2%}EO+;H$5TT>9#P1J~9pzCgRC>Z2mg8qG&6>N!pV?neyyjygpH)DVeMv`KMO3 zquizxrB_fGp9|41zO#Sq)a8(4YkX_{z76O2C5$Vgs}xM~_NJF37Z%l-$8YQb-ROuN`fKv0 z1jrs-QE)NiIeVviZSn^(x@;L++-xe6wV?|O#$kDRR+&30G>FOIZh594b3U|CRQ8;zs*W6CU{J zB^j!z0X`Mc#C)h%^C&?-whO@uIW^8u>#=;erQu|hA-%guk_W(w6v6!7;9h@j5cbOK z0~SUs)_<8-#&cqq%LvmX0_%ywaUq*!zH=ppON_YpeQHQhEBB6Zui|@~+4VcEg;zVK zN-kXohdhEbA+t-hk9b$>Q9m64@FB72V~g*YHp_+%%c(7FA?B9sWXlmS6PX2LCSEMm z@orgers>t{3}AL>#P4=+We2*!8~d9#kpYd5wkp-!H0os$Yq#!eD0w|0E-L16i|m!ATay<)0S<0~s*o!`F8lUcG|8P8} zJC4lCa0;n!F1_b>FjIa3(Gx%G*d4oqE6B67oM>H5x01*0s6GjHKtKJh=!>USG3r~i zk@HRW_pJE!e?jQWYiIyd$RG*;Sv+gM3ZmUxolU1-AJVIN4+!e&YH$9$fP;*$6`nB_ z>gT?MRl^euGp`rW8hyF{i~M}Z^|)t(c1PY@grq&&IVY>n|(YkxJga z_C$XG#j9L^2f#gVwW26r_yd`QcN(t|ur&7ckv`2!r{;%EKJBIc3M|vqi1+T}QN zW5sTyH+hEUm3d7xEjrWmJN(h2hgqxljUFzcs@?uN_~i`$lZDom73qc zGDfmt(lf3{TS%a@(3*wVsB=~84qO1Fo(kUXf}$#^mluye`b&ns`#Q>#^|53B+~U7z z-Uy}zw+cAsM)cc}cef5o)uz;M$7%uj3yVbyB;jE6kBix9IMuAx_=$_KM}?2UOfFe{ zY9$r~(-uOxPQ{6o+yrEQPXiFp79|ye><_*+yi0*E6;&Te6n(&Xi5Fv7ZnlsXLWm#@ z+_0Xl00Pueps_AaQb(_#Aq#YWeKj-_RKF6FJTIW7yNS07C|xR@(qhr|o{?2$iTfM* zlaEI40=dUxgM@X{@sDzA)&17Y0UGm&%x5FLtT>rET2m|2IkcoG9)QljBL8_mhPE^^ z`t-+YdM{2{%CFx5fB99m-*oWpgs$P)cu5qd7#p%)riNHFUdz{ey$!pOya+&_s|i66 zAK6kJ?-9dHi#}^qIda=kLhp2VGK2NB=lIP7mp!-45+u%B5NJJT2dTR;xI$085KxnA zMvKEA6ErtLZFYmM$@%#7^KfXBpng<42c)!18Ad9i(f_?TUFH|&`ylP&V|2fZRM)Oa z)yzqC@Yn+K(U#R~`tp_{<`D)6?4KXvNb8OMDmmm8j!bT(SZ-2N-#wfhgT!y8Q^jlf z;bE!HS114zW{f+X6&f$+lfUNCqhwB5nC^@(e8?!KCX`eWU!8RctnIDyvuXGMtGQ{I zv#J_1GMZghy`E$%QQZ``ccN?bh@hN!3RE8~dbcb&KA;OI#nT{gLEHl;c9a(sHpH8xF}p7l1IY z4V!Lsnv99)gs`Y^k9fqL@o|;D?^8<4Iw0O;@~PQy5DjzD0G@Rs`AiM*y;=%#*Wl%14j8a#z<<3Rd1gG0iX_$TyBZ zab6v7JxGdHaAi;6BW{yy|5*Zc%Mcx?3l;04g)QU+N!Cm%4oDQk(&zJtN1t)Jk*#oP zh;mn463zaT2iQ11la?`zKfS`-AD|i2glXs^-Z2<|p172Pq0p5-bGJW+Y9en5SNw7g z=!JYp#RUz`D4QrpUw#N_)V2K5JL2*ZvbDre$I#)nut7YBW+d{D1ZRUMz&F*IFNt-f zDvZoiVjl~YV9AfF`<7BlBzk)3ifABOoexm1FJ=X`_3bE z99Px(0t4F+qYe0H()D5T>!qHTKI-gJ9IofKV29l}h^1KRxnbyg3dIvBFS{{!mzxpi zh`OK4Up5)LXataQA+qPxWcV-7mu2pv)XP%G0y1pIU;VALuW%#fWft961O@e`sD{;` zuUD|-0#*mge@>d%&6;I5Wq69?#D~r0WNFqSx+tf$_>xW!1jgch`$)XJ>O;kd*x8nJ zyPniRq+~NokyNTbTf7gp4biT#^U(OMcB4AO!r)%xN!S?G$Wd#0_;vZUde=sDnwA<0 zz~s43L@UtT(cdcK0N|oa6I>l{mSd9K5b0U=YUcJKKG!0gI`_hQ#;%*_{jaX(LQj}> z=_nPP*0CFMN$TkE4S?HON!U_3e#f%SDA9kHbdnIwabW-r&bWZ2XeedTrh!aqD5*UG zV&~U92cb6ZnjfBQwyeR30&ib-Fd%JbMdwI9r{bZ|Y3Dd*eU=8g9Vb!oJh!_Z$X{rT)Fxp8~+!CH8^*8Ssb3r3? z*^9#5R!5e-GTZQebQ}@^>}q7*Cbqg6z4*eQzJx~V7!RPPi^Z^1!!cX2(AX*2wRn!0%;Pnm>kD zHa6uWe2Et#A2kA9HsK&elA6}#zY$LN~?#aG4b@AW~`hD200|; zlxqhGa$gxcN{W54-;Vvz@azOx%o@Nn)mI{XK6UA zO}?i18c-`Phna@nVxq!Xz5&us8w8QE@H-^^GB@O6tIw;rW5Xv%-#CBoI%t`iOZYI0 zErD9N*&m60Ui1#OVQ(e3lTTv>+vFvhH{?{9f~>i@x=N~Mr&O6`oH#&4wjZ79+Suva zE9Hy2Z~(SX97qac>g~1Z6sJmPY+rt{$TOuZQ@1WM1_=W-RLw{)m@muTRT{;njlss& z2fi4D?t1cCzpgkMjZZ5twh&6;8OMK88m{F`Dj*-f$A35cbFGYEkQoB`jIg@OdvVsg zZ*xqX71Jxvb#a_MXb`wxFxCt<(nJax9BiX46J8%f|ARbVN??fov?Wg*#jP=dVx^bx zd91lu332Wk{QHVsH84DS{@axhMIToQ*@q`3a8Msmr%k`xbB#d{zfxv3X6{*3hX1{)mUyEw?dmTxxXlX{Y(-sWhL2T{e( zE5eV9a$11`43)ZCfO)d~bnutnJ1Ly5uSFALIVcob0Ji{*dbOmLNdiOziStIwykS^~ z3tNjS9_Dd^I?-&LZyjh>p?{4;e=9$lM-x*Tnf@*SI2)3kLvSY|UdR5(%lIYYn)IwO zw+hOHgdPcu>P#RUlYYQK1ZZG+l@?x&qq1X=2DUM*2B!Ic}rc;kr*D)CU9p!VuS+*)(hs8p=a1}oPxr##y z<5U;PFaA+yP}qH^L-tDHladpw>?xp>Zl3tj3Q^7Cstn+XT~`$I+SnL&u@IDtH*Yo;w4{*SnAncW5sA)s|=0ClaIw}Of_bmP#Cbc1w*0|HVaEnNZ;0NwLJYWPg~gVL6FG1a5*JJ#XQ z!2*5!Yhj*ibd9}15cYGeV;CZx6V0DZX^16(Xv?ncj180KJf0Zo)h`->bqYCZma4Wt zqWODdR%&-OMVx!r2*SICmgVZhKRJb>R`o#W7^3@QUl&^68*4E{+Qgn9h;?G52I70$RE@l^LKSGu zRBi1V$_V?ZJ$QKIY!RZm%wo175j#yEULgNoWUMC_6LT`pAxKk^c-x-Iub0dAw29R# z=p6Hsz<*mb&kRvOM}x%_3jb1GLxm_t4#OE>>3|U7 zl9yt1yU!!N0RpZUSDTd99F~Y42{}Rlu(u{teT}}j4Y#JXPDo<^QKB(@_(QSg-7UTP zi&p?bNQVDFG0nWQVyoY;TTt=E^v!=*FdnvCu5cF1GvBVfb-?ZNL2h>CamBGeyXmak zEA3;lKrBf93212nmtiy@je}R#p$#YN(atZ^7Nxs7;;n>=EbGdS*m5l@L`F-VyVUnX z4rN>{tDg$k!}@voOdeuNLhI z46SeCus~||3UC1!T;%*q^6N7cp^He{pBFr7;vZoP-lu_=hQ0!Sue@u`bl-if5m%=g zZ}A7Yj1sFMK?@w{_rWS^0ar=VGPH~@4(}_N#$!o2ifM{u8rfZ!=tR`-C2@O@JAQDH zY$G8-Wh{?roBf68C)LR z;1e`$WyN#`S41byZ2AT08gU;}1^wm*jL*N`RaGoim3+0`UFsR=`!`$d*Q-E)i0yX+ zfaF>%sj*WI!b7%?w27nHs}e$!qVF4`*jxEDMBn~LB~^hwe1RpW*qM&CxA0A#i&wvxe(s&q8_5hTY!U|9TvLL<=95R?+xl2hUXM{o5wf{I$myB*CLz_VO3{Wj+^N2XeZ= zibLCoSlbrDB(G6=9sVl)0k^8HiNi?jqB-{(Xo5a*Sd=Au;9#`VptJ=2k}Qu*CMh-!NR?CA_;>EQ6scCOphzH^(Z;@wS^gDfSBW-~E^qs)A31Q&aZsS+LOa9Dh6a$gkugpv@J#|@Cd%u=I z4n!V!3G=cR@s~(&8QL3Sf2?G2FKP(gy(TtxK~WIp$oa7-#0ao@=niCHLnobz2!!IK z$7Y%D35KA=CXIoyLi_rtv*OCneMq>Zao00?-D_5=j@V^IPeqjuNR5nZ*XNk=Ci+|K zE15S##Y{AmhR3>){4JmC6ufl3gR%TuY*lam5PlVJoh2gs%O@#=dR|c5Zrq!+ z!W!q?#NrPCuy{sv^qi>fF1_HNd%>kCG+V;Gd)aIoC0MwnNL)^qfvi-RV?#j7Lg?r| z^Mm^2rDkJP!)6EH8<>*9q4x@FH6TF@?q#jfhDuDQjl3D*Nb1@heL3$I&b|eO(aPs= zn+BOyw_<5;GoK!Y-a1lhInj6`^X843DY2-*^f@Kj&YECCzZh8};PQ`9MQF?!3F)ZK z>rffkRM%ur?8EAxYg(L&ErlC<$^Xo?-cD}$5?Vwf)p(~eGf9S$!IE2@ZwV`4y~6Ck zvM}l*SWKAABcbZ7DeYElCimme44p!d8S)xU8kE*X%TT3B?54Xb%V0n2Gq4r#W$E`v zGnQA69rdki(VaoD$Zg!du4`m@|1E2H~YS`hWQ0aU~k5s|uvBYDt* zq2Vz__xVe(Cs)Qo^nVM|1gavIU`FN)wNZ)wLP>sTNzY!F3rFW^>j;6^W_SmHzxC3* zdDq^9)ez_N&TaMw*H`4=zt*NENs%EM8 zg7PJwpl40xWUe#h)E!1DU35u-{J~VW%1@P8C0{^)2t-|bP)`Mhh<@%k-6FiP<37fx ztwA;_NUn~Byo7tQXWs3u71LhPtyUPDQF$y~eZ2rI?ysG6Gyu?d$Zh#2PB=y9FN&W= zEJGs-1V8iHgQ0gW1l~?np;4_}a&21p&xf!*DX%D1o17b8{|T>mVsDlXtlM-754QZn zwUN@H8KZh1o@|o(3Q>d&+}qfDf2dDYn!0KIncy(}zgd+yDeO&tOoDpIHpPAKi`Q0o z5=U5mmPL3Yb^Jc4NvXjSHyMjhF$o0#(PMwc@R+$;-~P{k%8mIC9`bfX&az9##-&_b z`fn+lw967p0%is?mzgR9MHlr$EqgF1Gq!MMi-&nMI1IWPH#wYMsLQDh8w5GD2x_?8 zsIts?>IWZo!X`elr3Cp|!gorRO~rwu#BRoPvAoH>8d%94M!mEme8lzfS5rhT64N(; zM~}aw9fv18O~&K}_(T z1O}Yhl&M0*EgEOCsu z<_;|#fl14<1wIblhi1-(vDA?(K3KRM1!^)CUh4SIS&&{>CB3 zeoUHUhWQ~f>`yFAQ;xf^BFA{6z8#uAZ5Ez;dyY#8gzz*mrFPTLRKt-Kj|PTnl&OU6 z`tf3!oF~HkNmIEv^T+D5I!t`59OG{)Drvb4>hYIB;((O=Pi?|aK=JtE9V3iV zeY|qS%hNc^lTX*xm*j|)?B4j}nvClP8jsk>-;wT;&YA090K}V+D4sI+3FlwY^^f6X zPx6$XeSdQ;zQR|o5~u#wo4T3I0g>-D{3%buZyi=(M>8{1-gV@%^RxYz zhzWDlG^QM)gbbmuj3ljx8Mztu1d^hY0^jsTD{H`*e%jh1Pd*m@P$9AMu}P6G9$26a z?&*)uM2C%@%XS4#1lD)aUyy%4`fP&iUJE241Ge{%mC{$KS3isV7n_6s&Z$2yBO-j_ zTNwU^V!-Q0z7z(cnS}y*ReGNaLUXqUADi1ceTaHr2(E7ZIed{3`G{x7Lf_9O@gDk1 zSK!4HRJ{M~8iohsLOTFhjcajMetXRcqc3=w*&`qM%cycqS`-V!nhaZu@IvEB^77zb z?=6#WPF8nc(2z=5BYg-a?KadZuM7ZDF(9a{{^C31M@o&4?NrH`4SgPNWo-KyCm@Ba zb=%u4!966ni?)c&!KB;m&~RZq|1N&JI}v566Q>td3{U{{LKdQ~DB?OzQG;yo-$ zv=;9|6g}N9ZeFB@CX7--TU0gFlH7SRujQ^|@KvsU*1$t?r^Ya-oKHK6pnh$>s~`uf zfQv)77kY^|yM#7lE7)u?x7$p+;IDUB#(%C~0-ZIHdiqKwh|X4fU@b`N)Y!BW(Sg4E zbQ^_GGE(;yDz6)`A`{NxhQKAcy1GA#cPLkq6Uvv0=eO7WkU3iB^M$0F$a0V4m@YPf z^5YDSY-5ASp_A`E{($c;ukdGSesVj7d5I`!=*eTpXpO%a#@alvkM_34vQe1?w^5)V zsZAV^WW)!(eFdwM z{hp}P>M;rC@H_A68KEFQz4z}|hZ&8#Xjy2>_KOM5YjYOc@O%QKuL0e_2XjZdGzty= zvA2LZO5`kVfdK-)oC+Q4QZ){1b#)pDV^X|!B0a-l*_L)7H2k{yri;IIx-9PQ>honZ zTb6QW|5-}}vz-a2hkQpXacM(ys70s`v07|E)=0+L{Tp8vo?SkwLqZJyGN;6=UR8LkTOq~aKg?$9ng%2v;25uWmTC)}ZE{Sf7vcqKC`)2_L zeW4ExXW3ciqb3)A34cc}zQpi4uEMg3?}uL|Dqh1c0L{zrrPn6WNa?D0aplo7D!0Ft z!IDZF)Xs#JrJb!qS1FbIrwxRFR!K*|Js)vjui-BZ+4(k?X9Hk87A)nX+|740O27w=D%Iy{9*9y_i;{{iZ;#eW6>}GOF<=+WqECZV6n6|%y`&b zZ}$S%a$w3>ig-Ec)+=cs)8wNZrn{e`$Ja?nZtP!O9l&Bwcl`V*M$I1?=ed`($^1p< zbdV@STalXfOEOo>d{r^%v8y+sJ;u`c`PS>9{;NV{V~XdJKjsJM<{2&t{396%s(P5- zvVvB+AQUJBj=JRJr*%}Tjgva&oEEfZTy8ku6ZM=JF5;lf#az9ToSV|qNE-83$H7NP zZ1;~hT1+>*3<>YjAPP%kgnE>PHiC`ybSJ=_P3;4h6zM>ss|N%*mCh~+mwTNHr;vF( zR9da4XLv_vcI;2F$;#AEgN(J?swK@s#=9EEXoc&#a+BXtVI}#Y0g7*fg&3-H@Uv!{ z3r}3t4K@@k0L_q|IX)ie_w7B(vtC#aKi^LtB0LdJxbL9=fV`X<@6japHH&5aN$GHo zj%3arwSjsj?_|b4V3a&$q^MUld|pTY2S_4Ti+7eVy6oY??W6kn#$?$)lg#YWINync zGOB2Y^Qrb91Vvm(RT9@fkl&571HX7QB3xenBNsX@K!a7)t4q#NNE6!&*sK$ zdGkLjY;UBWWNFfTYyiBN`Cd)UUaZo(_;;bnm3G_2k!OPWO}>px$+zU(AES0hu5Ej~ zAuXnP{dQH}(P0O-Yq8pRwFcmW^D*)y>Cci}5N^qKwx?gXi9Ic`7744ASElg0#v@aH z8_t9LD#>B^nmR4O=)1fks_^r^aF93;=zBlT4fAGa+G>+A{51w;v34)g`n6@OsEJyIAt= zOgSE4xOQ*rysHuH;2whtcd;}#XQe#HN;87hRxM$!OmA#_4%0i;W=D5_RVq9bM=1s? z)OZ%_$z!?o>XX#_0jB%CVlwwTtu%PKNH8j$yr2&vd<~W!f6xtEPBjl6*AWWS;8qk7lnu$Xj;oc10AfzaVDg z%FFKmPvmhOA1!$bp-#g$3M%t-lCRX}<$OjlyZ%@D=t4jpQ6~GsS7-lvW8>JDbh==Z z@UwV}`tP5y9O1eTc^j(18{*b2Sm?W-R|P5$pB-jprhQHLPZkAuAAP))-Bap(2Y|VO zo1wgmWBi#DpIg4^qxXYKEUU=yP%?`?K7+abqF4qX=L&0dFK%J$cH@uU*`$GU4?Rgvbks;VCX}tE+xAslO-R@?OABw=ZgTN zDmM?JMH2vgr>39jizyce5jSpro|2v-ELmG)f6E`d2n!8;5g`xoX|njDq`MKNkwdW# zrJ!pm$~bG@n(4rG;vxqJo<$PH~-wrKh3O8a!7s>AjlM45o}E&JFN zgE{cAVK+UlNF@7qDB&r4x%a_6rIQthU`YgVv)Y@PyL%7#nT>TK(G#!HGwPPHED^ux{|8|G4g=)sGi=TqP@5!BmocCA- zx>076SG;n+O})xbam8_u-w$}vy2=Fjw)5ZLXdoq($3g^0yl$))0)pt#?#If7cmLux z<*%YJA7Ob4(3>iKi<4E-bnbbc6%90V0RC*`0W8C@Du(ZCGYYEMC=5?6xN;gnfGdHU zTmn$YGsaJ9=9Vl3Nj54UUlK`Khq*`f*dj^3e~H$xS~>^Jx~z#6&PWPTEWN^(ZT`EX zf*4RoY<9q1xCZk-Nw{G3;(S73*Zontkm9=ip6xCl3O?=W@5Y6rFkCjvqSb9UT zL@%7b2_?-?zlpQo)-rs@roLkj%|L}v)QIEfh<7U?va|bqG zcy!-S-f}eGv=VIIv2~rs-kDYkGG`^xrjk^?0l=gFYp#?U!>j#~YuR}+^!p6C0O8@p$^*vSYy#Pse|DhNSo>q~ojIf; zMs@$^>_q9hOY_hosn=<7L8>P&mXE90=7$&gyGaAmnLM#|S2%3Vc6b41oY8+j63M`@g7lVV;Ky{j%pfWI+j z-HOg1YoH=w1aNa#GgFg}xg=Y556qNYO8>KZ;`~?&0DKY!?|#o@1u#*qxi}qTm`qxG zsl;3iO@boEDVAW=X(o+KL*?5qmUU@BK<2knGB6IiVPf;Nog!Jf=Kfm%S&35noEE^p z-mP#=0X5!|CQkb5G2H@q$r@kA%G_}_+iy~<+H}3ryjt)_oASPnD+4oD zhm3NXBbgsnLn@tRe8*o64escLhN*mNHSD`buaoUDR|us0E*)h)I?4%xn>MNOa8jM2 z6hj?KyGgr<_o8<5#rJhvO2*(e7w&2^&QT1NwY=LFr{%D+spoPjfPwLL9Daa&h5f)Q z{ZErCfcP!l%xG3mD=>{IGsy8U$!jg$6X3B#fxpAG0nx7m!hxm2n~40rm$kABNa1XQCv&ukoX^zl@kTSy!eLv2fipq{yP#h?nDZsKT_x z61i>&SauuS=|u^0J4J(0#Iw z8JqvmU_xS2M}ljicFUzZ0dP(N9nJbm&0&h+NnmX&{M^e&pix^*zEXHG8h^dpI2LBd z0=}1;TYmxMyvzQ+vjB_oErm!VRKAV-YKV@T%skr!0`DFt@fs(C}yKOBTiAnP7`Z}{S^XsCCG;Jl z#M!s8k};e`5doLv&Q#vWK)HQ(xbYWr#SJ! z0!?ccQtP4107^h-=S?YJ#$hT$wj&!30y$}Ks^CdsT#;S#V)&!|9>L;n#D8mdDnzvL0=9b!taMaCHvR}0E-N{pcr;fM~@Ib>Oof!37 zYoF@DdUJH#j|D2%>#;zZ+|`mrz z70rO-*A}Dn#jUhH{XGv>YPyV?by{IRI=X6jIGfST!6~i$km&0Yu$l8!A{VqfabFzI z_iO9f_jEK6n(+*eYA!jTNqL+Gz`sfh@VvmKHS6oIl)|_3Jd;UgpNazF4|><^0i6oE z_89w20Mn~cwgcnoTu>sg7>XAK9C8}AYz>-Mm30YZD&oeH51!fphkE9DO5pfWJx7~y zB_uF4&svQ0=xHz(5Z?2j*;&X`!CpZ3tU?$GeT7ZxITkot5G_A(RIB<`e_YMo$VXd!L@%X{0-Cq4 zgg?_x7`j6!Z6)Y_0=D|t` z#_VCg5jNwXP7)sCxc2!yLtDz*r}GjXO7=MGvkvOJ1jtEBUCQ{BE7ylGJVdQ35u z?|&Y_2J-}*99GibUOb}$v|XK3BZ#R5rs)b^L(FH&`I-IX49@C*mnMWAXW*G#S^rr= z3FAz8xkzNOuEJbCdi6{;l|yS_GaUeDyUxXsM8!hDtJSn;W&X^5ef4h)LiMorC3{x( zE~D*sF?H4>r4T8zTj)$){kFS|Oz%=}b`AYt-OIoBNmE%OdI05q*z2LqZ`36!0UW&b zl2uq@1fEt#Ul@0_CVqY_*3#hDhGXEd}R!l+#a6! zX=T*s?OuHzSEn?T@i(^!Mf%kDDVYEwa~bgyh|Uwl^&;ql6(X?5YG~ds-`b-l?QD!% zOx<_2Tjnm_V2S?Xy4<=e@xOS_r5#JT~Pl1kb5iE1HR&N}L4DDK(s}wQE*b0fn z#otwxCw(ZuFj&aHt#!{9Me#)Y&gIm&A=9LNqI#18S%4r=SCaWs$+|wjt~zfvqbx2r z>b?rU2&5-C+*izNm5GaBZ5ar@dG>MRVJef?Qhtepxw;`lFqgAVjhd;J5lZpHyOhGH zJO&+U!&s_1u3`Mq8~$D66T?bg2yTep)hbMqnoJfQVDNdn0XQ}C@8nnh@FjE#cwT&t ztxl+qTZCOl{x+LH!<1Uem&#du#!{wMcKhmAe7-LYIew(U~Di)KRC>}gMqzf3Acjr2(zEf z>;e+6i~w85!Mfa51?}1^K(ZEeladyEph!+^438bovcOYLJ6CU_t%~0Z@sGOD&5B__ z(AR6b>;m`1DybAa7fF7F5i2vUFWbGFksaHT9*FvgCphC_gyekF;2dEyR$TJZwA*B5 z%m4MrVV#jDUax-+#Fa%U(q$9Q2Fr&I<4Q%>;!V$c=_st3bXgu46u1D=-_ME!KLRp0 zXTnFCY4;qRBGi~z1i0AE8OdNK4;Mw_H8u6F8tgGp}ct)ljXYyj6;vfyhElw&-c3;QT`(vnN8Igd#otb)Gifm4ro;_}xIF zUFS8^Vm!^o{N--xQrCJQiT%qgkJAWxem9XU912^sJo+&)j}os!lDNEccFFNfydeA5 z6Y)JcYV7h@TJ>Lz1+k`8{UMb$x(Mi*&V4B){TWBdXc35yb;;C;>M?+hdH@PtRO?1QeetRos;Oh{s3n}QHuc!1 z*Yq&wXAx)y;G=Di`&X$~r{Mbg5iY=;;c^{1v}zyueK^-Ep*biDS!@#TV8Vdbkm;GG zR2hBU$DyLLM)@^C1i#=21}VI-nq$&gutYf)w5U;$9~j4LF?}ACbZHFyLM)z>UiIQm zD!S?j0A?-XI%D4s5=u|Zv#tcWEP~crr-f9(`3!SqF;)y@qg0gJhSp*;Q=v|nk;e~B z7$9q6FrwAQ6L1hRb_S?W&&Ir)m;t*Oe9hmls!WZxhUB(;dpR`ii!;w;&IeV4Gs5g{Q_2Ki+v3CBbckdX->zIgf))dEqCvb>&c{v#kegX$5J z@ew?|76yn0h-&Vn{Hea*EsL?pjtkC7lV6_)G{l3Ms14RE0hRjf8}zRKh?^a+;vj4B zEABVICu(z5|lnkw!#K7eYr z5p3I>=cy03KU_lP(Bfe6-#gqlGUSKdRcbADo<<2lmq3#?*cs@%CWAt@ zCEojz-+zH1dP^q6`~4(d){{U_fb+ICmZd~+ZWH)qW%H{8nmuQ?#;-O2rhRlcj61?# zA{RZ2y_5FBzjmY^C(Jx3XCZ*T-LKQgumM!nbIF_|b{ndEZ69w`5cFL4FR178Dy8-@3}gACP5;1n)n^9l-sU)Mfk^-@bZ|2TdOr~*4ZR0Hk769Q(-Ic$ByK|j~LmtGybo4M}H=C z0_EIO5MM?RhR!TquFW>jHjnfW!ue9l%M>l9l|*1Rp-l+_KI;vXr$zejl`C=5(ATDK z9_3nVT*m?s$H*Syj8DSJD(M-}oI5Av>50@J+J&c-FQOV4Sg5o#KrCj@xul6*gnLjR zS6Un*Y12YNw<>>kg?1rLA>d8K4`m={;wU)u`sx*Cn#?+=){o))+_is6aPW)bQm<(x z3Dp2y*zZkHG8k&5(NHMr{{F(|_cQ)Y>_5yLSw0F4j=aKNq6WsRTtD~?T+tAt*Zk`J(k86m zMMfc4F#Aq4{UDTbYHHI|g}+gl0Jp$`CbyUS*QmYS#q7k{hUs^eKQ%VSkcVh%)^~{K zPHwa(WDHRw12HzIqSDY?bjCbGSm{+8mwSmP10_MRL{*yGiDM;Mg-s8 zr_65fd)CXc$63hwV@g{!E;$8;462SXuN3GN;%`NfV_ll5TqJDrm)p!-0!kx&dJ1{` z>Vw8&rUlU?C3RDDBIaDtKfd|Ek5Zn#gZkC2hp$E2@IfFiLnlxW=6>P_qPwSknKPFT zqz8^H#NKb^>%tK(LU&?`iuZnhyZ&pxwKSJ`mGK7prM9wRacAqgaW3v^)@*M!eQSSx zZZ&^YV8?$03*DE{(L|>2#3V)GTVQ%n&`!WIgttFpOnlAl1x1= zMGPOChC^%9R9Lt6TeUjuM|{oDc-T*d5$Jd0e5W@K7yh903-K}2JCVDqBoqs$W`oR_ zcGCtdP#NyE<4xn%`m2hZ4T6Rrs*Sh%~CxZ7z%%aB{3OM5o zd5_H2#;~N{cIR4 z?4l9g`=ty>+Q<2mpx>-*`@Xv>I|IhYk=~oYm87WdM?GE9ru;(=G;fmCBc|vv* z{CSU>ta>N+XJ!<9k5eSaUe4S}s`8~nPs8tdrnYpL?W#%KDAHs6LtDINnK7d(&KWDH z4)v%@cd(7k$?E51D@jW@pUYZN;@OA9N}~++MZ8c@8V$-nsD`ZCC?#RYi+Alvh;9T) zZ~ZZe`7hiD`=875qj52whwj9=|E26l%nXkA6&p%Arq>ac{|l8pcR4h5S{VxHS@aj;$F|d*(tF~J1!(k!kyV1<=Ge-I*Fb?t1l!)t6*EkMd2Wc&Z|VjXUrh-T88_vebu zb9#0Ii0`Yh%%Z@l@$u=i)&%PQEJze-@91xFNeR=!G2)IY_CsCy&_OMUN72Q!Cep@Q7_Q0i2MbN1z zl}FZpc#u-k89fe&(6OI*8Qv<(mcoZ0cw>a2eAA}U}g`U%imG283FoM8JtoP zca?n_^@2Coz9(8=?sFa*P;rjhesEddGgb7kOwxWs*mvFUL~|71!w3u)R;nHd8EFDy zi=qyPs8aEO{W!;3#E3#r2$rbIr4kO5=PyfWLlXy82aL#@s)Xe`qGUKkSq}=0t7%>y zq+x)Bt53zPuyZWwNv5mAGmL%^PKGkw#F+Dj)l6W~f6ZK!^wk9au9PVyRM;J_b%2dlX9GsUz(nSG90n1m*Zrn zgn0;hm_hNAB4Ka2Utx$PN;p1am=z|%sro&QBm*mHE5C=-Pnk(H+3}QzMd%6#`tyX; z&$r!u@|Z-QS+!g}4X@XgMrnr0uY}X|gbL|aiRj8e%L2yI!mSAHR(nm%aI~=x^|tk@ z{&1}Qdpu&W&EbynV9xox`|xwDX|-2c)vMnN&K4Z7cl7tovY`D65&{u*HbZg7EDY0R zEWyjiqs8^Hoj59KQsp&B0;AQu>}#3FHFb_&EG8y_V?l%tgYmk*0O9K5YGA=VEco5z zc{vFPcfatTSJvIO{$2LAo?&4z(sXoPI@Z~; zFG6O(+G=X{B=6D8x38LiM2-?;WO=P!r>Fz~$>KdFQ=+iZ}2uwbc*jjId8DVY<@;4IL{VL`qTR+#=PEZ7Fd;c~&t)5Nkkl^Vg zMon#KoC7kPTXX@gG}zlu=!_6c{*w*^rUfezbSpOLO@~pL#y#Ra8HnEeG>x7P<3}D> zR`)$Sok`Ei>7s})w6Z4){fTr>6v$Fd5Pu|{sWJ&@Ot+8^La-fzF~ol*Qq{6xYpZMO z#HO|40)I#(FvO8Rf`VjPyAccyw+T&4U8yE2>`pVr@Wvr_+~HB&4@2=gi;&mj9Y*l@ zk)p(rCV-Lu4=hUHJ?# zlXc$^{%;+kaU%pe1WB(|v&i48=_lgO&Ir#Ad8)Sc3jPZVURB{@6zMny*o(Grazbyu z+8oEiB&`oFMRiwA$x@V0RkyhT(U0o)!#`2%(K&7$WWHM_n;uWAI3grfn|NM{E_*Tf zTO=#ZWdV5JP5@V&8@~2Pv}UmM+HUE?;S$hZ>WU znb;V9DFn7JcBN`{n_$O!waP*|byil|HSOD$+py~B(1!Zx2{i}K0lR*$TXDTe0C(%x zqQO}r`bo}Gul-I3pRNRlcbTvd**~c&5|^umo-<8_L~l@_qNe(?t%$HXQ*ky@Ag&`p ziT4q>PZfz&E#gDAT4T)l8FnC_x^;2JD_OnriB6$fqB?)qevPq>$Y`3`bN|bVAXy$D zooMXJw_zz1wTd*tu04o5F=jDUfd0_k(+$;n5GZS_AqeQJmK)df?P}?-6RK--(Vg_= zkMzFV8~>&fEi~X>UX3)e-Xs!OKYnBqy5glDyz4Oawkjb!RMdThA(4Um8|@#oFiBxX zSB`l|KVmF7P@PU^-YD3^6q7YYHy-jMuM+ieIl6Vy$K@OHy6m&WU~MUe;7b+vScX^A z{aEPU@w-+;4(gG1sM3=vUJD~*lE+-jt23DbiWD~A70j9zW(XyG1hTVvXoxw8m6#Yq zIj6A#1llCGNi=mncn8w4R*7hP>KTQkn&g!buwx;&WuHqe0y^`hC?RG@1D20e+A0Ff ztA*O-SkpN_cC2>0igtej2>97H)JN7~&U%q+YxyGpn}uMgEYrY z$sYLe!|mSpS}F;y_df1`#K3)PUzEKpq~Nczt2oE4RMi;t(9ka*D7CBx9=5z^O@g?j zRYddrVgq391FbmK;{^vJJc8nBJ1KZw{haeKfY8s`rKk*K-P4awpe@i)w9Afk@GS+r zsd~_Z&;?IrvrQB&A|?AS!Fe9BYexKW)3Rq-^_K%mX!1m9aC3RmYGs7?ubA%YzruM* z)#aLzH$?glfryi2s_t_h%153TB8%&duV~RrqF$xQZqE7fGIm=O#O%QNJ5w9RrPb&a zg!u{%>3blwgy1tB3POSW--Sg2`x~K}SG>hD=KO$!QGfQc6{QN?0B`Dwu_uJxN}aG% zYMXHNyOle(hWX;U7DHV^l2GaC4Jb-H`A)7Sz1oKP2ZjF-6j_msbF7~SdhPJaIWdf> z*_AYu%BK^4+YuuA@i^+)9~jc7G>->DJoSHj5GVzv1HUl_s|QqW4$$9`6Kyo!XnW?v z3S}%=(M4;@*BZIPkD?NmdidUI4=xhLk+Ns%%HqUAfq(QG7q6}xvoH)h&=%8c%X<>< zpihimTBqfsY8j|rHd}ARC!hCe^KX|JPktd+($Q@`U8UUxNMWv^NFVYRgf?GPIRH@{0)D#zaPazhMh1Lqu+pK%Kbso`hXijW*&|HICJ%gT59?cwZZz#p zetC(6Sa*);l=MeN$l}nsOxtTqt zcwlB(48TfG@y*eH0K%XmgpN@D%M(j-Q{ZnE*-b#+>)=c_-sqLt@ZE%nRi5v*;?iyE z_D2McA4^64wSPv?n>_9_8HGOkB}|DG`w& zM0y-d?D7HjWAX_6A&elCimKI?5hE&Cvh$(_kr5c=>JE)t|?0&hKAwpLDrz z-XRUk;FK)oE}k_rtq-;;c@SuPAZoKgS44q|LR9zTG z_Y5!$Dc#`E-65dp&>`I|-Q6nckkZ{HBHf(=Lw9$I(kUVa_@eLpf^(e@C!S~D_gWce zB5w8paNxN>@WQu0Xk32G3i9Gmc+bx`@KdU?GA7S2HFnyMk+4L!UE!N;G?ah!31B`k z7rga-j}cwiX?KheXFR)TUnENqB@gbku740)OHUo%YjupkDYh&ke7ySu0YKG{GvIf^ zNO_`my#W1DNpC4HE(I$_Cl`jxczh5KaxI%$+5d=_Kj~Wz(Zv+lb+0|FTKw<*;zzR9 zww5sC{9O*n)}_i4dbIRnJe+-BS5*2(EE1P=O)F53@JEhT%I98*(bz+CZImlAA%M{| zj?m}f8PT!DXch#UMM4f}C>;K@IiMB#pv%BNT29UoPN}|5XQy&K_kHdQ#ol}3GuW~Z??|rVR9}_9yTi%&#aXF zi^UcbT4U9#NyaD7!f0WMMkWMuo69Wk>}rCSw-)qauLWFa7W$^61ZL?1%|)8kCug$& zL^$;L#Iz6IrNkmk8Xc!^V_imRbbz+dStkXsvw$TJ4A18AtSSp9W7>k49B2(n{09Kx zrWzo}`7K&+?dTPK@U9RpalFJ=sh$S;DJ+NpZEhw5?Ck%E8l+w>ujg*r+==nY+jrF( z6#^etzd^IQZzhI~RSFU;!D>5UhE2;yK>)v8!O&L}6F!#Xt<*vl<&$Fwnk8;)J{%+Q zVKpz+*nnARI?g*DgqesFYnHxO@x0-1eQzWS0PV`)C>by zQw-}oen|l$*;j)5kp8SOv;P3suc~$*qScVUI3M_iD1rN2O7})C_s0pku$OAH@>^cVG~){^Xy|)F@}*4a$bG{$f#>hRFu9` z1?4d0Pc$>{&v}(l(^8ztFob}VU|fZJPBFk%O8VpMFy>~^zM9sbjha?Nif1j3>!af1 zDSui~9tqW}u$S+qb)D}iP_S*6`Ehl(#;56!rrm5$_k3!{Y7UJXwQM0MX)W=q;Sa2} zVryFx!*c(CaF$o-5+##)_)Ip<^Zb(XU!k1pxOGGejIfl3_*CDp=PCbOwLLQ~X1GpNl&pd_3SPB6NXchT$x0IT4L~0L2IK?&(%&1qc$>O-D;v9NRV(62%~tzo z#52gYBO0^n>;H33{qna2A7G1P_L}%t6e+P)9~=F)1(r0)-+VB9fzvUm~fUnpNxEl@E8@O>qWQ2{w$M7~SzyjR0Sm zv_Y$vnE5p2>1Ld`N)M?FJh`L?H#5?Ru_8l=kZe%zg0rd&T-S)xH) zA%N`ig-T5xl>}1GY9ZJm=(=bzgJ1Fy26UwK`1`-AEO{j0&8+&(L0A zSlojyAgCtefLG68=#~-UcF^VUw8}UG2ZOjcyq)9`O8_ru{VAWSmr)UrFdtfaS0--{ zk;(wE>}!xTt?zQSuQjPalSkI@PvuRp}bu|K(-|l3HF%z;r4Nvjm-fUcx&!7Z@$#^D*67(FE8e;D2@(m zI&;7s%FK|+As%;bs?$;Xs)>RSe`N+>H)dGNZ{!5|qjKz_=-?rR6QJa%&-VVNIk09< z5(w3BQpDwEoi*qB)%NOFOEVC!+Es-Vh@}U7!x!Dl|NKk%Qf2GpwYq|BRC;v8SOrNA z;pzoC{oB+98a({abF?YyNYc_8tcQl!MY(=19UF_1UgAx~CHonAegfpqnRs_Y(%;lC zCVntC1|i)j?6RDNZmp%N>aEk<{5G8O`zz6@(j}o6Y`gc|60P*+lpD*I>#^@6%h(ej z=PI!jBXD=YAs_buETk*|`G) z%c9(&btAWwq?DBSmYb1FZsH1bS_Syzxlc*zu9gpHCw7|c$7O-)bbiE6{jC{B?MD6y zO_QHL?@q7FL28Ml*hO0iqg@w#uvJyY9CE~0!p-AL(sw5CD4J3-rh(+EZZWiKOKb+H z+>cC4EezGoQ8b*!dHDF)KR}o}iX=*DQ<#y;^g@UeUqeTkAhsb!XEvjL&zuTUA`2iA zd8zT@d?;s^^hlFNgiTFvnl{uy`$vOV)eYA^{$vt&4@_6*P6{7jSv}BK$PLi1nP+$Z z$uT&^?GS6-Jtta^pVAqP@us6Ff1pbogdwn1-G+YVj}4(4qbx4Q5oPQ^)%2AimjCj@ zkBmC`ly3Ct)OaUowCLThOk>VR$}gfayWOiJFK1}U)=yho)kh497X;ciQ8b@oTvLu_ zBjZ%&-Tk0u`5ZOE0B|n^ow=oih{b>QObs?$-%hWWE?;Ytur@0*Mhs(s0uuoGUpb3- z?0QyrxMSC|8!jAQQ~PwLYkG1E*@tIIH_YCTi0EwhpD2g3!^d#zH_$fm)G*Q z7Z7)5q3d4TAIoX~nQDMysz@*vpNN?q=9lKETFi<1`=9=ECrird1?TrU<-$k+$V8&a z3wYDW?m^CYB#HPrjf#H08=Gf!+gFiR{%!dEgxU`Q&4n#}0tIN+-Cf|Ps_?EM8%1ya z90j~`w{;eSTC_iU3<8?b6Wv*CR;4$W4B0f^Fk4r3JO|+HS1IRfrgR9M`1(406gO{51!&VJK_n0!EtV_x z^Kpx6Q%OHu2G}qt$}$g>zJkGfod)4#-9>$U7Y&0A|T_wDl~_@&O;Mm0(BNU0{T+Nn2RR}ls)Oa|_<|27NDkwLiuClNZKfd6k6;-3_4AiMo>IyX)Wh%7^otJf_A{BnI-IG|K3+rmVQ>v7$Fbk~Q!J+(bPQiAaoz3B36?TWi z>d^Z&0l9dCW2d@t?Ex=Ympkau!Ox&}7zmM>lh`5je5PB&rkyVEylJ!8hyYNj#Az#1 zps;u67l~hloE#%AGI{#fJI9H6D*IjEqZV&=TYh`Jgc-$-yQY})&p zPaK}mw?c6F=5apPAEE9(Le*mu0m2QI{Yf4nh?IC~QXc{fRft!H|C)VS&SYRVnqyNW zu#>~2%Z}hWv9{u2T8ia5icp45^i^syO8izcGNs#p=1Z+1`7BhyKbTG(ux?f5nKAzD zGmIH8(H)LSf?QEr*tnCd)Xk}6u4n_%AK^0ot>RJ|lM0r@kE1Sd)WHK8e|y8V8YVS_ zTlVJXtNcRmE9-jj_-Ced)Wg?p5I{1WMrYg=1%>3PXD;va#^a2VRuNi)QqRW^#9&CeC6gg zhKWak)GUWJT7?iBIOSA;3Sny1i$cAsPdsQG`MLLx6Ebcc6B08x)P6aTD=ntubhPqb z8ZcL}Yg(nsHgr>HDJ zyGbB&#sQg*Ebs#c@32J>o%KUrn1h;yxp!T?{1(N#G`hwoN*5y1z*kN8=i3)wMLAA)F@c|iD;9H6e1YS^J3d`4= zQ@mlbl;`F;A8RPxcrA=7GBtDR(2!>f1xf$b1M!5906|k;&2B!nYo=3^iv3rt?SuJz z>F>IS#6JeV=uS;OEyx5|?-wqHetWc5L~3strp#l@2crIYm-AnVyl4Al1@5oV^A7)H z7CU43ISUN4@Uz1Zg7J+F8vu{y6?=;U_I;0R*(dFl6;5GNQ^AoL)x#Y>r$a9x*F}*9 z_T>Tvfy6ZWx3+%<=?0KwTmL`oZ{VPc{U4*9Z5Jm#Psr#+|Mg&ogY6y z1HCtgk#Cr1c0;dCX~gnHGYz-ho23tVQJBDvtC=(1L4}!B7`4$Bo2z5oEGQf)uN^of zJEcP5JgUBD%OI^Tt4so&-`+m>a&UF~SDx%@K7Nok357+VAHwoq(mlHi^@GNKe<=xS8#Vs~WnY1-d` z5_ukdJ@a<;R zIm_aAKlRzZi2}HACaTc(*8>n8I&DTFJM)nA2PGPwd8#FSPGbf7I{F*FlTjg5^5vmv3PPUU2xM3eu^QLlHs%Z#f ztLV}hi4Y0c0<`(gcpjVl6b`m}>Zudquk=ajgY5)!^B5|HT=7qJLw#bc1#dOn!vxt2 z43ep8)7Tbr*z3{|#YrE2{RpRT6e)UfvN%(&GK{FlCT_QNQ*kRbao%79cnYo@40EGj z;=ee?9<;~_`xbVDeWYz-Cl0Z3WaI3yb%OFvini1FAc4b+{Da;JBKSX6HQW>p}u8DlC6mxX(>x!1qsH z+*r2qOS4wj$_QId-;jFnI{arBnaF-H3b;qC!L<2+!hZ=onOXxv)2yy!{;d|=e+vP< zOjR={rs+z_>fOF*{rMxkUq&ps(}`5dT14}va*)R@(6}D(^y+OC_*)5(#NtcOOA3O5 ze~Xi5@QQ*Gm33eKi&Lo;o%pQZ{-u`3)Ot;Te02OUYp*FxK<$3o<5ANrIs>9k4+<3U8937G#DNAPi*(A!Ri{{@Hf|r4 zHcL}tW4IymmtTi;#mKyTf6u7jY-y0@YIGwo=SGEbCr(I3o-}y5w2=O9b~W?FW2aSKGZm_c>LF)ETYk^5sT< zKS>FnXuX%lhQf)+LR4^P8qE2at=P}`0|DYc8VI#kE_v_5oD+j3oUsVC5AqcsqH1-> z+T3~rsZu^cw0t90Q&KoKKiOpB@7dDSmqi9F`Y3W~NtW$Lk zvZW*nuV)g_B^2WuD(O3&kIWH6%zrgTht3I`-YVeHOm9G>=u{<&HBq4?e4(xaDbrLm zvTq^s@(&?@0+|b3ZucAV4(nK$w^Hu}9maoNAx~*N_81C(;ATDScDc`CHogkDQkZo* z#+xl$i!Uw#d8aASBA&e?bwg`xszxRx(IWs_dY`uu1q>i*idN>@9E@$SshE!J4#2kW zCdHxcmwIlmGwq9Rg@Jq9mANF2k$V_^OPKflQ6`@C61^l~?bDvs0S9!=XYYhr$JL9Y zk1AqkJy&j}FNVmi+2^ju7N-v;7&etiVDI8vVqF`wF!5%%bhnHT}&tVPszs@Vzf{eGSY$h*uL&+b*EQ~8e!7@(;5Ns&r3yxCi; zXr`(ayf1DpUlWnMe_$-`K0bxTUMD0G$1}%}vB6FIHW)#s#NV z4gP0C){xH$FsG5+b0ih#C!e*DUydFf){CFes5^Wo(PiXSHpJE2Bc~caBk@9SHW~q> z>lomG!0$bkH*NcVGUt;eKNSRM!xb3StL)_O>-~=Pw^g}<_ zP$A#lIx@AZD3_a3AN<9ly^9T8q7`Wjq42HoU0)H8j18F;FVnMCa*TSAL7pA*@WZFA zfyQA1NErH)C+3)u5K<7$7Ghe4-)mj)LYw97mp{A#Uq$-fG_VM(o;r{3-PV8VDDj{+ zzf+$m`UpJ`RkwW)jaV)=W$Rz@HoQGZqH=hk4Rd5KEss?-;jCSa@*b3R@MX5@Jl7Rx zC|)-}Jz}p?FNEj$cH8|;Q^W5vaC($}^uV7(<@^>6E-aj@=@~|$RI&688u3u(M8 zUuG+Tx)!o*E43ChMET+siH;uLt7k8=gSo_K&XrVVl>$2ms4$e@)_!Zydsx zmpWUs0c`xbXTfc}v$i;WIP(p4i?gW~2{F$w;Uo}XjJ8|;KFC@6$u5@wnj$U-N4$_c zg6mIyFi6N9Oo9M=T5o5A55A^+fMAMcvjUHv7D-qqTOu!l+5-abjh$bKCmqbB_Zf8Imn_|~-G3cw5 zt2Ii`EX48w5R3IzrHZ9WIY{p-;z(j!%i__=WMTC`(&p)@t3ZI;JnaKvPW)wshCdbI zb$IBtWDx7tcUcJO<4S`$#`aZ~Dg0;5zlV+VyK(BH(WnEk(Wb{aGm^kfkL&1mvo!cn zz)$;*&B-8m0$>e_GZ#Yk&yBD@ZQc77Gkx6=f`*b?zounQpx%50hy%K#7e9%_{}&n` z^g7RgX9r4dRFcm@cJMiB95xt{j|Z@5>{v-0VvG~Rc68onch_5Zc~Oj+MNDXmMX5&3F~n9Ccz)BnL; z&d{|XbgpJtlx=m&8XI6>5E&g%spB#T?0780oFo^7HppovM5;gV06Q56Q&eUif5t$q zNNGKuea3ui^;IVddw*X+3;^M3y!qcT_mz^Y&2! z9T80rWKZ$0xgF?Nk?a}ia}uDCwqM@l*XMOsS$%zZfb$#8B~fDq9vHo>jKL#NqFT-r z_o~XbP%GtQ%bg-*9Q{moHCuA&QT4my3_$zk1NMl2^HWo)k}8y-+W%y|4r^?7uZPvxj7en-H`pNzpMrTfLl7olHMa_Us#4hX2@dt#A5 z?qdy?AAlZ?_C1VL4*5KXk^y64WQrMX1Pyu82qMLq)ph-S*6XY&TvA)E5_%LFBWxZ)=t%WFa`k z@*U2mhWT0cXz>qY3`mL$<7$ZI(QGEZ%JDUxjMySD3}O$|w_K=kk6wT&0^ zsCX};P4x= zaM(fL_$c0{#}pJ3`q%#lku1^Ns2k0g?x51%wXQu zq9SBwU%yi$;lo!zf5?w`v%X8%Q7n?q$ShrBDQlrocYXaS!(Z_-S?5LSO3cUo8bQhu zD`4m9GCr2wWZOg6xNwKYxU;Gr$4zJXMEw4JJcmCJkOQ#J2lvZgZiF0dggKU`hf+;5 z9T;V|dR7MCpgAmk3PCPKekl(X^*TayDQ&ix82xjF+i!bevfQBgsjjk0W=CDobsCoI zYFrAR5SD176K&~$?F#p4{>VsGu`2r5Z2!GgXX$y2qkQY@ZogS@TvqzV+CJ}iBO!bl ziM8NY)-`ZLf8dee5hY(%7GMl7u2kbwhy_^lUre+;AF6SQk*xhr?8=XMRXW7#9?Hs{i?u^y%-%?)=#YRq)4EDXp70;HEO!4lFZ3-r7*f$=1Q`624a6ESbla7 zb&vWmc;?;r9@puc_}1`>cUBMV+%{j{0qES|{Ck=fXAHdphgpS}Y7l|cuw}JV@_jDU zlw_GPToq1wz?~MQZkAQAqcfb!;x14!#+Vr2#ko+lYNLkzp>6;T%^{`0%+>5-gHw7UXZ!**)%21pzprpPjIr`p2ZPjodF!CtPOp#2N>kA z-)w9}rD%?NMRHnRvB^NpJ=0wgA`N~*pskjIg7qy8b30$_%2i(oML3L|4O^e>z05az zCmdQ3nf9aX@X8_i^fRM;ULGc2o2*FS=!z5dW&QH6UfyusI=OCC^BmsL{O<{aAH-=5)!{DM0j&{;lTQt*kOrZ9QvRV~U(Eo(D``!0lnAPFlfDl*bVH zJqKBb$0-2UQrwI4;ThK7sA1g$=B9)10T8iPAqsC&G7X%ryPprQ{)!eb zRr?SdWDhtatjhT3a9(6|NX)-@8?YhM)TV_VB|5M-GWHc_L<+ZS+wxq5=Yk^Z+&Tm? zE1SjxD+kSUz!2Mfr9m-XDQ3#ULgwcOd12t@noc9-=uzE;@aFKvoRVH<^5n8fX!=%>>@jHR$e&3xN?c`qvw{xK5; zcnGQ>f@`+=(wG#(`n3$EsJ@YhZZnIw$nr!f3LoXqYH>M~Wh47uvPM5y#BK}w$do}3 zOHr8776X(H)Gv1(d6

    {MbKph(*1jM~l0fbMfWRzuy7y@fVVY5P_m~wITmi=AY=0 zy~`NB;qj^e_|WjePC_qb6@dobydV9I5zbanq2CBB-%pxP{;^u4eGR2w{b;^@*YSC> zlw|w3QBZvlg)2MqG)6~?*NV*;m-|;?#euJib==mR2!$x{M#deTv8aj!wCD55sgm#^ zaSve)-0x6?n?WA+-GJ@g?Bs2V$$c~&&u4$JSMf6e9&KYZDehZr2j?T(FZQ)gUw()A7O`3s5J2}%N@<{h*c&K%aaUGIHbJ6|m8 z1Fv@_WIu?g6JXiE(=arbE#}4enR>EX%J?`Q0sdVNmFpehs$ORrDMSaiFz9u$NeCmi zd96FAwiGH=kwW{+dkIUqMz1J#4(x-K;?dB`_+&QiWZWW~8k-U#l(-<>tRkL1l6qFt zbV7Hm_7Sf>M161-34Nh)UiFG$Mn)?LvMEz1I&&8KTGI_@Zry5XW(dG*?K!_CKsj|HAHQs-%_WRk)#sVA5|!0zX%! zB(g#xwQkQeMjZC(oVhD=L@AD33ea$lxpIxCpd?@oy%bucD!<|^lMy~m)DB8{ z*Oa7O%wKiiKL70-+==K4o59{9u z!RS9X+dll89@p9OCaZX3vyUqEkFprD09NoXqbhav!)g_`C90CgbV0@B`rl`@$LM+q zKmNcGk=GccJyHaKl-^bnGPf;~N@8*QAnCj8iap$kfn4U{d1dPl-qA&A9r-7z102$4 z>*rh$r|(X?amy3J?&cp=l_F{i;@?)Hu%kL_UKV9;JWo56$e^@>%9TcwiQy~(-dS$4 zV2xo&bn4rX=WpJGMZbL&mKb>np35eBGrCczi*(T9Yef?h7IktKSlxSvN2V4AZ41dI zB=Eb3hPp$L92Q8rBw&FAlw!{b&g*!kE}0@4tZ8o~(`JqsFBiAP%aVI`msOFFN0K~U zJPIQ;fU@Ol$1|(+lmN`^6Y&CLC@HOLK+(T9xodeVqdelj?nthM2oCb6-i!Ff&1@C} zm$FqmvlS*?#)@7e>=BcwU>S<+ATDOrvqMM$!${$1g1@D~H97s+6=(OnivYwmC1_De z%_vK4U-*F}k!Wi&gr1oMN91Wn1Ec?`$7lvh_vQ;0X`^wrXN%{lUB!QIc92;631ljA zoTj%jryJV3frQWVqH8D;r;4y>6-fvG$q~d)af(0l*Z$>G*cHg}{CB_795oy?q+gFW zU|FF4%Su}RTS&9XQ%K7@5|t)8yEwS*FmJV3z+;h}WBoafa^)WQRv3P0I?n&D4o^=K zKuy=D5|FOMr-ZnHZLjwt$(@2H0V|nUJWYjF{&qbr_ro${5|P!-OJ}6LaI9|HhYDxF z=(mEfN7Yl_4j7-3nnl<0#fyV04t*oF@+~*Q+7QiMj6TLJ?Y2JC7Kwfe7~aem)eA_D?DH2L|CgU^80(hsh3dNML&QfVhR*>9)2#HEgWOg zoO-_dB;M6Zc`Sq97=^4xrwbO^+bMaqlAaP>3ExyOsYVF9d?cdu73&$*&`&JgBeSNu z*91uyCR2dP|7Hhir(aNz*C_(T@Es@#UzlCzJ^G)z_)*4Xv8&Is!vW)+Fev|EBN&i@k$TtU=zUPKn4rllA%`^~H{9d409xY>RP}dQ~ zg`Kg+%hMG?e($iRhC{0Xlk)4D6^W|-3kJO;obRRM_{^w>tOgd;>o*^t?2P9Wb<0Vn zExsWMrJ+J;%F*v*BspDa63Oy^L_@0Srs8uCzDTN@}pN>$N z@I1(vYG+91yDWVvyl#m!mcDTa+Dyf}X6R8YO}UM>Rbx@vst4T+Lf7)?P*!^qA0k;4 z6l+DL41IONBd5BBa za~-qx3I*Y7Wp#$1l+q>PSRYl7a`#KyJLqB;$SZPlwd>XgvGb^zVLqyX&+VU&YOC>7 za*2VElxQVi((rLt@vPV?Icj%dX=mu$wTP~I>_a6@;rCFC$Gw&K+0k293i(&0GD?p< ziiVAyg9lWQXbg-dg~H~ip!S*$c&}kKQv&4z1eOOrkz_!46VPV_?Fw@)_g#tUu$eX* z#r5fi9VFVlwySB?eK3`2JQ?J}4DhR;ABqM)Z~oofO#daxW0l5}AZ4ChBxV6p@;pVF z1RRqjH8NGrx!lDr2?3{He}18$kMF=|w$?|{N~2eRj8dIFO>I!$Pmv^bYbIx+Khp=9 z=JJGtV-*E0xOCtoJ3(?^=WG4izP{41F%0cDm71lp&&cz7f-kP{A^fkGLh}Q&G2x1e zddQ=+S!hxIdN^=tK&*%`M_YTfD4ef^`_;d|2o-G&wi~PpvoEpxe^3v7)g}z=d81hp zlTsmh35o5QcGe^u{yk1US}W)@AuvYA$HDS+UK}d7=7+#?a4eDE+M@aGS1FoxV}Qol zkt}HoW@2;jK7Z)sqSyBWw6(j*+N^Chd%O-55BnqqV76k<Eh9WkAqDhd)snjiT-cfklV>NHfMV!i!+p5x|IOVdvuIx6I zHZ~ea*{Ahvv!i!#U=)6DoGztG2Dh;)L2aw)C3WliDAi|uyJuN_TDZAN5!*u@Qsvo10)qjy$J!_ zG-9@sewn@lB-smVqG+|P));*vp>JGd9|WEDm{_ihMXRYI_|u?d-*~JBslF@V)mo`} z(y{E|I~=~yFhzE|(vOB$XE$j=K)+@yt_=!S7$#bY5qecu_(9Jm$kQ+t?F%$2+Ygue@6kY zT1}ktei~it zy^;(SDGz6x$#YK-g8hWZb$@E5TM`o$kH|aHk^Hyq`l#1vx7!NOoz!2)`+W0!mhW}ElejU z#Em1q(%s))sjV`clz#?2_$i;;IPyBYd5DGD-+*Zg>K%rI!U|O^(9==^gaRu6nF>Ne zn*WXJ1&9;~B!*X>;MRu1UmAgX>-Ps%eNKuO1JW-Pzfx4!?V|CKld>!SO4wet;Vml$ z*^!t;2+=)|R7i_phDdO#k!^mws3#ECN8ewzT=vXfJb>ESisWt*(v5PFS1*wS#@G<% z85FOiBIve)&@`rGclM1>qu6J;4HNL90Yau)R{UiPZkEvGLPJ?k4U^&2>}!!77J%eO2k#3rQtg%s}G zMP_K?GTkX~+Dj6=uHS)Z`4kLy1A$ySI6Sy7H;1{Ph;Y|v1pOm%^Ym<&29~K%Yap?!Xq2O_zl$VvHkWm{R`DsZ<+i~s3U$-byI_+_#yykaE62LZ(XNbgo*6{-cjQmEpDWb0dC`gMZ-G|bM zv#O2IZ32ivy_cQKf2WFh&to>p*}W^TaLg=j=$zSoSg$%iWQ0@s6zrir-2_Tl^d=t;n(!6oc_UX;Y!X;MJA*Vy2-yz=w z?Rp`{cdDq`<>;7@siCL0?uC-0p@)FCG`l9@(w%AezBI27V0=}j&1cHh9*M%L?cIJ>aR>)YC9B~&1$(-4Z!T#% zEIuXyN`VJW{j;W(M{(1A#E_@6y0H%sK;b?bIq_1OS^2%h?7E>B_%c^~EYyepr7Q1o zeHKp-ke))*$efekeO#KL!BV_JLoE$>@^zjRNAbhk9Bfv8t9h`rqL%WC`X2n)R#|cr z{02$e93^du_bJFCuCQ4fY(Qb@{R8;yBkRezUtVwW$yaqVERV`F&pQHcyLu$g-#!$a z-d-uTz_1dV9oDmyGWh8nZR8S?&^hNZ3t=MdKj+xgM1}%hCp;hTPy!0-lk!OHITaeH zMO^W&oyH%@9Kc?bU?T&$Lhlr$0s_E8B`&-7MC!2IAIZYvdOHdZo$uaSo~S)!Xa`1Yk47Jvsf{q*;gaa( z!evRP9l5Y^RDh4Dtgm0~;AYm=mYb2e(Q7U_a}?2@k$*!HD|ZK<)V zPkSFc#ST6Ec0B7eHJh5%$1FP2qsCND?r#fl2buyjBE0}E9=Yifh9`3`vci7+rhg#` zrSRW$Dd$ty5#P>a|IiQ$qSjsYF3R}dRB=$b+wq+?M$Co~0o`$ldL8jLc9 zt-CBDhnO>Ve(B)HEvH61w*$w`v&?XZuG(~F_NQShhBQb2F4b!l#~D>hrL#ccv$1v4i8SNEfW#%y`2!AQ zq7bxkc1y>AVfkCKGB@h67tXsw5^~o_{YNJzK&etVHz58LG8{=_oZX~g9O!7L90kZ; zacJ&8@8(q~k_%vFQ^kSBm$;ARRC#OepgiYIf5tpRD2DDIv6A47XTPX;VP-s}bYo0e zHyLI*8eosDMxMhTr}@D3H!`4!OJ4{OGMJb@Eio|bg$=V6VG1i`ro}dKCr3{OTm=bn z8N#c7Km$%h{P=e68$wiyT*W1Y$}@VX1!wvS@lBW7BgiG>EMFb)I$=@LH-|!S=Tp!h zS{1Q%TShp`kCzA7o%;mra&4Oc7Uiz2>5O?xI1QPnmm;z-_6mUHaR6$#ZH2Nu!m;j} zFy->2zoeF2fbiv(k?uustVA&ZYeJhCo7g%EykKRFezJ96Q9j34PWK*04>(S1_<%&L z2bcG^MN@O0&$pqN`vaf%FR0I_3#~lGq2OJ5+`SA z5XN&o9ByawqDOh!HfK^11@v2~O7>$puM;}c{Kb43*V1xgn(|Ftxo<@YvZMb4G{gsXx@x^HXdaV)b zrE{J-N}>V--50g%x8r6djWufw8`Ef8v$y6wj={cSuK4{;%wiMUD3}qGgy*Uj3hUXc zdh-*kbyoAMohQ?am&%NW;xiP9&sd!RKrkl4F6)648JUc7S)mrQeMR|zO8+QZ+oXU>YSSFW;ywTsuh zXZyy1ZO5{2#uDy30v)i3A94To)zKMjTi|y#;cBWqJu>{MA~PMgxARP%yc|9|OA_q} z({=(!Q-o;c)53)HR(bNkG=v>*xG6Tck(@%a

    <-)dqsccXy2z^L7FLx$ogra)nxRSy)LTJ&1lu{EEQ-}>I*Ho` zA`mmB{wp{vTciQybNFJSg&)_0C0EuAsiibhRUY1%Z^6ym;W073$@B-0Ap3y7f@#?1wVnN5zP- zX_~Jq_sMCV(r7g)O9EI9H%qV&fYLfI3^DuuC5lRVB2>I_D~5kxyV5*`-1lPc<(}ns zg2(!3R)Qp#lj}iZB_<{a$2>8`b#ZDuec|?(**TG$zQJktQ+95Q4%=Q2n`hLn7mgiZrKnZhA?!RI8=hzX6*{maEi>Ya~h3v z);9(?!E6lax-?^t-&ckfrTT4)5~Ha4%3y_u_u}RHoq#@H_4a#q7q746FU8@1A@qwJ z!VFSP??xNiLMiKO0l^Vn6@fmy{R4FF#-;oP4T*`lK2IX>Kk@BJ=ez_ zEkmG{hl@iik`w!I+jt8rVv-y1Zmcfx)HZEqVvelq0_!2qSC7E5gv$qx&4M*Y?DAx{ z%S!EZ#M8s>nN3PC<8af$Nb!?Vk7II=C zd%iBoP?xl?C6QGPl4iC7Q(*$EGhEPiFsf_?i?Tv_GC3S0nHSgaOFbT|6WQ{j^T$;j z?0V^=tP07kkSsCN2&5}DL_%rJp&lY#e6_**f(0*TL~0CiKZv9${>CvdIy;Q~=Yo&= zQgp|iS0i3~p*4c{3-OwRirRW{n;{o@!AGq-vuRY5|HIs54e`bSk?`CPA@lncI9c}( zzpeA1u*eV{eGB(PPR{tp1N=Q>Rf-GhwCdOL2&m@INA zLL~6B`hGe5V-;xK>VzvnIjoZSe!Od@3Y|0MRd%X@1KoWDmJaTp()xJqyQg&dm?r>7 z$&=yye%CS*2)aq(K+rW%_Z<->t#|W%Sl`P5L)Y+)v&3kB*HMV*T|m%J{y&92p1q<% zI?7ytY~#m?2BX8mZ(Z661W@(6BU&l?NAX-R26>jQi1i>|pwX2(hR{tnS}#W_B^>%eElxxMgPOK77R(wB`vRz>EcT{pmzuY?gS*-`@xAtflI zDP@UGg9^ov5wmjiKSO8X*HjmP;j=M19G&9mMmj|YjP7ovJEbJV5z^fZP`W`n1!-xJ zPDM&eLJ9FRKK_R7ch7t8dEe(**)V9+$3ZZ!u& zTpEbN1}ksFAI^432HZm=M8!M|3Yh)9@a#nW&%u+~5BbL~sWd4UdR%zg)&tQb3>;hh zX!yOPWX&0E_=T)`;zFcN6)SAuQRX2_I{rOgq`Oc!tAnTa+(a=B6V*J^!*W{21Ed34 z<%sV1&@(?0Lu({I4V>Z?A_h_wr(&!Qiz7(karnB0Okyv`ZA+IwbiO{4$1Zw!jrGSM z1|7NI!FGhA zitlz*5xbgKyQ3eyPY(-t_pL?;w>p1wJkMyVvUj~@U8xqzbLb|7tN+wZDl?7LLZ|P& zj;kWX)U*#{dvt6K_8YbbCIlEV-LtIN5U)47H`!B2|1P8jQs`u`B3X z3y|#=f2;+^=(O3y?YX#0cBe<(lY2Ys51bNhGsk{&`Aiet!AtUoJ|qd<#h;hK+#)Od zhK5N$U)td15o2edbYEReMrV$r-J@poeR6lVXanufpehCZ+gW1i_v^KRI17LsluPjK zs1Lr&*)CVoBBX;w3%#t-!bx%N>Me)%Vbyij*5E|H;XHmI1fY|7zaKZdD-OuryaU*@ zW?8g+l?yD>T>-+l$%Zp{5oAR9Vq{Y;NC;E>)p5okj|%3Dw@>3qz6p{0$I{K zue7uQuCao&GlYR9!#|mHoC46rKzNuVT_X(z0t{SjDJWH#*h#MjHiSGD>Iz>TFt#53 z*GjKq2MXopoG>Qoof$+6Y8>Pb<%O-q)i@v0qUpYYC|#lmkTXzx zd-JiXw3L^E-TpHY;LjDF-C}FQKMSxAKf8-G-{qY+$IV>1-;iRZb)*3tWVZC%3ez9h zL8c${lH!?K4i)0Ch>gX5LHmFTn5-nvEd=-kY2m-hHMGEP zb`b#a`D2sdoJ0PTri4sh4_774&x(Ec4_@x%1qil_rE7l`Wk+HUdNwOFxyM?6EDZ{> z&U$wEgpAd>9Le)gKK>Rh6=KvCuyXoa@>o zA84|xeb5uwhRCVrbk4A2XPq1PgckeEB?jrW9bPVe*qQ2?Y8o z4wq6<$mQJy3>xwvfj1@@!EPq@0tvq1<&$6e>2X-#H&MwoKPo_D%`do{ww0IAn#bH+ z4kLkZ!1HXQXJT==;^{R1UeGZs-zgbR>z)ap9Z?Gnv|51-8-`aYbBr8f(=C0^Nw@1) z_hA;)qu~lcSjLng{iA;cN;hHgU&z%L4BZEM2T@WGoMA>)|B}a>z&pQ>8N{788i(ZDk6~o06p7vldyMBK=YVv+O!$yG3A+`)-A7_L z#E5dB-AJ(A90^rz*F4W*t!^_xsP*9Tx}~V6a`AA9ZBAFOKut1HC=?6))T-0KN`18q zR{}68hoGMrl(#$aJ%oKTMTIkH_ioW7Eh@*wMaZ}#?|#AxVaVPvDfWR`p>tex1Kq9L zZ6j}Eu^lxEq30mcfW^V%Z#^HnZY*~`f%|Eed@kLJ=CxuSihkE}2UVQod*zxj1SMD?A)JmJ4Pi?5DSb{J z@HI8Ls=v1}Ym^iLjPw{2KNDH>4`w7FKZbHIuH{D7M(Q>Puym%}yYv8fpN`pdPkwpl zuW`JtG71&a{^IgQQVjipOHu(42N1PjUL;ApVR~NXB_Z^={h~y@-P&_6Ubrt*GBG)(9W7L5jbZzO^55$`z>47{ii|c)siK0HO1h&HNp5s>hY0}qQm5E zp74IcM>90mxnh}dx&7@JAXNM;XxFNEzo?v%n5-I&*Ru;xWA9Ne>UraO7p9_rcfBJu zPjp75J;R4yck(Tc_t?^|%&YdTQ|`(Z9T6;^kF&SxO)RCIi8BNn>8sqOOh+lHfqfWq zweIhRcUX;I+Xn!n{1#Q~jDv>OF+7VrmJZ$QaCL`MUNjY_?#z?oMs@(Khg=Rxyh?a{ z4e^}OW-S0Wg4QKbv{j@59Fqr1XLM9Lq~lZuMCl2O#bCuSUB+@oEBAyDo9vui%=-AcXLmFzP z!yKNy7$P^2RcF9qHyAd-(Z{`fza~fIUcPJf_dmohCbM7bePdr#r%$U8=WRaUu;@Tso0kUA_NC#js zK+Z3=ur24h8UMewlibP^d*INQaB`+EfC`%hEJ3+zY7dr`NYpKuL*%NeCzZ7-viI%66ruTv<-=ZocMX`#Ct zUT5nZZu`~9#tBG&Mn0OsTAl`cYNcgVyGI#-_{$T?>cY*}EeYvuNUpS3Oi8->-Vo9Z zHuj3S?v%jHwghTh750;&@myljUAN+lXT|zs=MddM{AKG5oxGBvZxQ)CPu&|S8O9nQ zCA72@U)hqtF7RDS-^k&lrwRqEgN)auIlD!+id*v~o)s19nk=G96kjq-W-IdeWvpL3 zMq}-VP=0^w8U*`F@nSu&;*g#{1w4sjE_4N97|p5xNxju8_b^hTv^Moj#&UH{ZHg}R%Tp}6u5jM@zlgg%mB}Wnit=8LRsYHNu^%Xt{ z%Ujx;R}YuM`O)1MA_UT%CK4s#o|{`=8=VEC&_GQe0y-BJO(2IaXT=Kk7yzMZh3{JOgKC7^=5;m#yJ3ldZPnb<{k4_AM zZ`lb2-`%B%acN|iS~+vv0~Ivj^>r>WEGmRBe|{Xo+Y;G_b#G{h6KFCt&YRzd?tYIY z%_iBxT@0Mw@L4dGZLV{(nX|o<&YZbGo!)2@*lW4hs^G&~nZoEQqtJA?b}n4(87kQ+ zcS2IHI{@Npx&77{Lv>yHepz!;k~$aD7*^^%KB13-C$b@}R+~2~Lj9qAeFWclEtWt0 z*3I>jbH(h|@%ds|JYT^bjCPMSjTP#8P|4((G6P5&*sKxmtu-mtZQ6kED+R!7oq6|C zEw_E52n|K9|8#sW_@$)8roGs+K1f0faBy;Ra#eD$msQnrb8)k=RwwTQ7`7Dx!PhHB4*)wRog(ARUK<1=I@-sw|c>Zt5KAW?XZgj_d=*mReH5CO2(b)6MEF3aMF|3tvf(Gm3vRS zFZl?evei$ei^gN$i-DJ3Q0TugW~e29=&zjW%+b3XY=U$d9~E|xRGC*rQwqP|B)}mK z9;EQ=Faz`-7h0*JR0}Y`SE{Yf(xC&C6fGI(1==CVFYiwcnSNd(;pQGNG!dOO)UjdS zetW}~!}Pt6@zg=AfaJ`qf$w^Y=L#jNNP{GLeO)Gr@eqsf9~upgq+~sM#HKp>ZJJlS zSqJt|mmdh?v^yQ8RwB4FwgJ@7F7S8eSYYI=<8gXX-O2I`L#k=wN5j!BAwxqMNk?eV zsPoU2OBZje(9{atH+HmITJa#p8Qx%`s|PR%T<52P3{Q;So_z1H)mY>5C2v%ka?iyX zvU7XuY6}RKP6WW%){tm4W#eVhW+WKCNOi{ck8PD)=UB>f5n6BTaC@c+n);xYO|&WD4}oiu?m zCuz)|%K0!^M1%4pDq`Fav<&|&7HXtWg?)Z(-~hN)$Ui*Wv{8(+Q0jx-l-fs;BB_*G z<(0cP&76M_-GKXa`Al}I<0LK`NC?ezIFAp`&uPis4foE=|(0rgpTRL+6`d zccUz7sar+Q{5#dx;Apt2%StL^Tbd>WKutyx<#~*Jl=r?1fb_4UmT*V5;_}0|hF!NuH!jlA&aP0@3a6OeP7Q=sxglL0#{b!W5$bvVPG~^DpCGOC!rcw{H?y@gG=tu9x#}I!?B^&zh zx8@QGV+E}Ic^dWfk@!3%jZMTb3IkJbI0VZbx?=zNh$*nyZQ^}j)(Yg&MiH3~yV}WNaGD8;eU5ZGK!-+$tWf@% zs7v+y>%rr>B=CcXNI+P#q$J_A7PB4r0d70a@k!DjRS4WSqAb#pfa6G|!d%40;Zb*P z+YoNSFXl_~oaAk)^>A9zyT)$+rL#sTs^xBuOK$4OlBe2!zZDn_pt12Z(KF=m_un+q zA5w1t$v-Eo>+9w*x)ZV7zA2`k=T zR#^)S0wiaDMqI{T#w#L#l6kzcVhWvL>aZUto(p@h8Ui-MOfG=`v!~t_bMUV2u37!N zn23DM%qLDpqv@inhkgZE*;Th8Qa`PoSrM8w*Xux&EP)&@kWY=MlB-Zp$cUCiWw0T&y3_unai4Dmm2)n97QnZ6Nz zb`FN8NK6c-hsOKS{uwKmOdWv8AtB5HDL8Efx*oqI5E|cK8OC>jVSQBDhXcZVZlYY# zLKrZl->RSBtGYav>8>i3tDB9mt04ZwVS^=Bgk!u%41G~aP!)rB-@ZfrlYJpmrVdMk zxTO}!)VY!i&;0zB;N^(CU{rlIM4L1hhhQzPMH{A9TIWIdUz(NY3)PRK)&OUz3L(`3Y_4)+Qly%ja7EReL$QW4~_X>3=Arz-aS==xKOv@7^a!gfpWauG+ z`x>HOL_odZSzdle;)(69lY9CL2R-%qt4hj!{|`(=zn9yGThWjM5Gn-n8@qYJr`2Ws}7#rJJK2a;ay&V{@8oER$4}y zV6WB}KO|w1Yq5*B(Y|a5;KmD>mN?)1t2#3@q^rrTG87GO{ZFWk5T@GK|F-6Ih71r9 zz3>9G-V$#XUF2;Wikby{>q&zNj9sEC8&6p#4l&0$$_YDeG+@vi1V0blPRt+N5UE z2lOQ}!s5J_1a}8!HD9Z*>C8*^KLAvgg=0xWO&7LV*@g;YVP4qOPvdKN(D&MPO2yG* z+=c~It0gjwxnauyPUWfzbpytOL-SSS(&E8*VemJyy<32X^&@uW+-^%BOzWq#OkBjH zg%)>0^?3k5ef;a^8ZD;h9C7K45l;YR;g?VUCRIXP_q$)-3ju`E(Nx%U zPZs*cP?<6d-;L&3U1dM1mPR}H@)N$&%3(GH1oC?7{AOraKoa?#3TJ^nc=E+_j0bXQ zPRvcFWy@U`-_>%t5#^zHvuX}FsZiVp8NjA2G$FIU8?tkD*8BI*zkgrfCLwSk5%S}xBCznrE|m!I&3^S9pO z3NpJJ;eul|`F`kZ2Wk`GvkPP*GVK3z}RubmudibBf!fFo$gVlGzf$Q!xM3%~zy3iLn*>A&Nf-kP3=;%X*yn0KygqJr~+Xb~md* zOs-a(1%4iqXTO107FV6f^0F!WK|qGnnh*R}TE^sM6o6IVsQiwkA3gM7>HD&Q!Clz3VV$*&O$0)$#HF<$i6o})lsvW6f)w@9`>qw*&Zdx>-p+TOsnCMs|E8FU}Y+`^~YI4!pWwi;AvzIt#H{Mo4mr z7fwkbA$j~i2;MxTB5RNNV8SH_RSF}$1lf{g;q6{PT7L(%)|ogjTBJeP^HhdFNkpyX zj_w>vW`a9k?!xfKWR_&fZ;rhcFal6Cdty6oULI%6W4~sXUdncz#C?`Rz^V({CV9xG zU9|$-g$RmSN0}&H$GrAyVIB`BtfTh&c)~+4^20M+1?nUwE5c%d&f2i-$s{+d>1-XY zWB(*CQuNj0>N_G5)@U=%fdoEN!HmkZ^1LfDb7usWR;$s*XO!)KXOP~^q$pjSMcwgI zF0`){4Z{JKbp1&yC5ofIiK>`);>Dm)F*8V4t>)=S(G{6{4&(QiY78SQsU1aEo6ag7 z7TR+UiBk1c!SuVdLrNriP5|z(61+|=g>W*16xPm!C}iM-O*5v(Os)4D@{Y>sj&xRY z&IqELIbT8aw&c{Y7Bn?LIt>Eyjm_h;w}H)Kd7Sk?&WoHs4y%S$O#S_MVj~`^E}>xz zeIV_O+D6LXiSSmr@kIcloC^&Ia~MPb^ht#oUTuOtAP}Fk(-K{tlOgX9_IA%588N28 z6o2=$=ppW;=#;bAHqsfQ_Fei*x6*x#BF-jVF;;fFLwXn`DW|KI{#6_5j0vNxVB?KO zj$$#)_H6`Qv*I<^R3xe>|Ke`;qDOx*oR#oB*#hA?RssN~vMn-Of}Z>lteLb@-XuJSmR4fauM>>te@`?u6*r>{ zI?%=BpAK1@#GsZg$7r%lod?A&#(*d7u`=%OgVL6?)HFH;c`K091ME3!@63bsQfc@X z%yE4s4XJKA4;$jLGv@_=VXD&;P;sRQh%~<%WKOw~p@dceMMz$y<-EfhM>WU1NOlg= z1)nhuH8->e;V53nO8}3U5Tfi#Lq{ZF^*?CrLQB!$&l3-S+eI8vH3Kws@HY}DoF~Q7 zKjKkK0F@}8*F$&@{Jw6z`1;9k@%69}4ZTYi103*fMJiWBvcJB8(iK5pTDSi6WB_bp zd^aq4m4KW^L?;Q}-Tlls`~KZ(+SHYTq(JqS zak;?C^j28{{fZQi;0q3Z3SN0H5PNCd?TW7!(ulP&`CDQJ^X*$ft2G*fs=>>Gr{DaF zki&7UbI3T=vT;HmE#B(hG+7aAt{|v9?d0)m>O_uX)Hg?jo)^)hwjgqYzw!&~Z)r76 zroM^++j-PDkJuGN%SHt&gdy!s53=`RRI&3q$5g~Y zKd3U(u1~cNCmzADmRsxo~a z`89wZR8=F?0ewRdMihCEj3KzVPjuCcy5i5+kXb~Xlm@L4_V22wt)2w!Y*j7OKIk%( z&1!G>4v?m;ksn>ipR%pqNb~zYrpb+0QJLt;>hy@#6%a77ckxR-$bg0XC6lEU*e!O$ zCjJ@R;gSiU?Hzku2YFic;B_d&ncv<9Fds^pSsA#}x!W%Y>J}KcNJVP<6Do85=A^*GcI*Tzq~==%^F87EG~)_qKVLXW~=q{+Pr;H^C1VMl@Hd*|hR+0lCo5Y80njg#o}V&l<0)D0a-Ez{^xPfk!+* z{`8e9Wqp?XJ^P05Bl`*`{oa-=By|CnI^?$3PYc=>1 z0XW?_`wF`5+rGR5=I_dso$&OJ(ZBCKeVn2GZsd%98z!CVf>Dcm#q3GF<5vi1h#pg% zasUD{_6*{-78RsOi$O|7Bz&`sgex(@t>OnA3vTIz_Xra3G$-V_AbGNhMfAtP^aW5U ziA#ssg?!+(B?E(_ikDI7^=BtM85c&%xU-?Rn^i@tvt;XXcnzv{dIY}xS-ZK;U1$=h zF7XP)#nb^IyUru~+&QLcMcZYj2sU#GX&cuI&Q}$O69?~>NrY#aT{e+H89Y>*7As+H zjai`1;yNnP!b zYYU|UAwe2Cm4MQ>f8{5OW{<} zmjexT+}4ziK3_rVsb;`0ixurB-L$*DdDkZBw;MKTSC4||j%LB*^11_fA4IP_pGBLJ zW%Jj~5gO}S!Q-t2#niAt>yE5dYt2Qc?giC!oC)?((bVRL$E=;&!1nAM0Un7~g56w} z{?uu)`?R~ev(;EfZT^!$?Cax~wM3ojHGW~qol2F)14jle-`zy$4S~;=k$;-4 zTRDMF>DS)z1r?!Lmoa9dDPnhb;zXQPB)J68(a-Uo?mW4>W*&WI7%L6kPLKO&apLz< zP1r9ULeUvjh=uwIawo4LIu0IiD14_s%)!|{OOBLJ(ugUKRaMQ)=k*h5F16xTS6sOS z$=t;{R@`E}gp3F=kpVsul21aTvC?GeX**a_LOQKiLd)T zIio01!7Q⋙1_TzpZ?^Zr#i3G&FuYj{;mVZ&~pg>uz5mVhHA#hQmV%ehPWCAPI+O zZ$o3t|ITIYx|_Vqq#4&;^}Ml>WtZ;+ES2HpKAdo9=}SFGY`5C5!2L~2x&5Vjg`0=4 zz?sz#(r48Jp`2__j`VsQW#~v2JzAP_$!A`W+!@`p@us`at+&`B3j@5Y0NX+ly?gnU z{U*BG$_E;;Y1M>ItVY4olbAF6%{q^&1$4_a=o?Ls?EjYk2yfy55NmTjq0m3fcQ1Oh zzdGl^PqK??!ADAKF;}Nv1rm!!o*m1JY;#7URZn|fQ#@3%*=Yl$^0Y?kSy8LK1ecO zbsi+Jd8pv>Ja|;~gWg&D3!&4=Q;rR_m!5T3?>ngee%^qCQ1|+C{#rC>CGx!`8lW3- zrS5yw6<()1->sUYWHe=pfp38-UmyE6+Gi^2dbeIfT|W(mgTtwTKoSDoUlc zozA}jj&v+i%8fGVrL5#RO}2$c3+&Rsf>9L}oWfL6gYsd~=&28QOr=EUxezp4CVMaJ_;k(W*<=xx$)BZ2hxgdJ{8Y+cCFumPeM%Kc_nZLtE|Y8ekJHMUy?gUW?6B zpI1N#S)iOya*ecrdhJ9JAaOJ7xRyI>3?2)1l4Vkt)y;0nu+sokFqmz2F`8 zBfkVFav@&@n>W|tlCt4`IUNzxu@4T@_#yIB($)qsfZ%y2N0FB+qe>#_@Qaq8;GT)0 zH~}g|k?+)2b>-51RIeXE5piRDcs2NDO}xp1s*#xcw`Cwp(V0&pTBr}}{| z#SEuf5gjL--f_YLC)M{AB$(YNZ2x|NlkIQ5NvY?;9@le%xc^C~x=OKi5~^)_d6wFi zuE46@bc9dZBsj{)-mEOm-bBwLWJZ)WLlBMt{`?TKIJz%S$l68;eUnp`y@2BEJ?mP& zbCA|@TzpC0eG@({Mw-JGOtYqsd~#bk|OP6i__J6(dO3 ziJb8kb+N{IM>Wv_{F+IIPl|`h{NDyWqgXHgfdqZ|rZo3aiUR-mA|8eoRlyl`IRO-< zAD1e`iK;9jFAm4R^O7?#G9;IyfQTkT{=Poi3N#!k!P+17>TRp)b17;%^Qvac60OcV z+!<17Q5hunJ;zg|Oq!4|?&22JSnXf5@|CUX0x9f0jYM_?(GQ(71@){Rt5hj2GyW(nFrY2*m%tAp!=9<=0#AAZQeeHXC$i;=-k-Jl06shm8ujt<`WR!Ga#( zyG(1fg1UafjEXhUC61@_A};x4dho0@R>D8Buvem?xB7L(2y*q6Hc3AtYFZ zlEFiM)1f!J%2;7EMo~lp3C{4o^r>)-%0J4Y^vMbjF+cYSXlEi1Y_=&EyJJl+J?dUo0dhH4x!f3FpDNpQXv9AH>zuSTd^1ak)jn4zosj!9Bud9@T?=ZmSjR ztDRWYr+^?vV4aHV^b(@x;Ovj(s~8vV-4ezpcKxZ^f{d^#OIKLbhy&Y<5X*nihzto% ziYxe56+)=-inM~X-)b$@r>R_qfXA`Y7s`+3@A=>rpm9%`ijmlXo>kWPkH61_e~C=x ztrB-R2i!O_Z0LJ|C_9Zm-e=cOKhv47 zz?PxfQVrV%YV#@FSUOP%^ZF^@NB`0|`czaKXJgtCHrte43W zKax4WzqO`_M{#VYnSaDm@bfR|a^`#W`wdm1aC;e>Tt*R^>5--0pq}LQgX$ZLs0t9A zoup(JNkR5(PDx7L-Iz~yi!$}KT*z=ESrushw?<$P8ovZ5|LcOqLEV{DBdbTwj85 zh7pyf_qnKrtBxkLiS!A_x$5Cj2h*n?i`uK09@nDR`FNS2vQXzDSp(8aStqvFDV%?k zoxUe?UMC&=O-4eacHS4m?+$2^OXFVKk_Z(dr2F|E@m|d0V!;+G*>5&26K4RC*^g+V zGUdEOKP^KP1tmV7J;uKmJlqD|F_x8aPS3Cc+oc#m1W-J5V72UkceSTI`Fj2rYt`0>3uRVgUiU4jxGC~O zwy^e_fl|+P0A$|x{;c)uHPG+weCv79UnvwT!0pCFiPxS|D+c7oVs|nl>L4S>);bNk8 zfBd|WE`a~CsSqOCbR9iaw{Yc^C z-#h~Fc|whUrML_E5&yh60eg$FRu4o0_1~;B?yNKRtOX9-%O4FQKe6udP|mVBtJrTR zyxJ*cms=?EewKefkDhi>G>3dc#hxq*0k&*xeRWZAeVKG~fctu4m#gwgn;xu$9~$u?C?o5c0}#f8V7%u9s>88oDi%(Ly$tmkegTt>#Mt{jXtlhPo)+VD^^y33N2c%*cZ^D%U|8yM%66?Pn=9t=Yr}n6V z-{OVjhHZ0f+-Iq1opj#v$`};R(`x*--ljBLXOQuqin)E3jw4s)jgLF{P#CkthD`t! zQVdRE6@^lc;B?i!?>u=uFmu_}3Se&nIY)IJOo6%hGQ~Zy-}N8vK(-Hb_C66esh~2B z_*8Ne(OIz||71$)vU;!&U-@x)#onh_K z0{yFkaHfmbL?(Sr1gV)b`(yB5*=S%X;SS+D=%KDF%DlbR7#k+*L6S-Eiudd!H#pYTgK%Ob`svC&ri+-`B4<-7>fS{s&LGXJ;Lu|h7 z3_k9JC9!U3@+}go6SIhwHJWYjTX^8CTnKvS1^ILXxS_Y5@(y*XHVxHRXzZ8o(`2~l zt)l)*vp{Qdq?1ad!;<0wlx0tR?i>m%h@MYIN>?1emg^c?fWGFm%`ae0r+l0O__4KG z@cyI|e|aS9td9qzM(NLTEaTyfyFNapK_kaCP<1ra`Ax@p7FX5A*xzhzHU5+#h5G|; zXpRa!Z#ZFtIL(f^ZLHVn9VHC_&i)3Wf~SQJV%ln9k83{ItQ~*(EQ196K99o-J>G4b z8CkfBTye#&pme^UxBgNvMFZ;FX_OQvM}95 z86*BL2C+E9O6RitBVLKMKHoPl>qF0s^e7LroA>kFTxru{Lem?GeNDXCa-Gw#+c*w0 z__s+jHH@Um!(Z1J#rnkvrnsmvBde1a03zn6?CY|RCR>ZwyLLlijlXixi=1Kg^V934 zXrA7wR`XAXWKHZyUAJ%O$ticq9LR~f7hb(dpM|+iF>T%;7CHvcEKGe^!DraeJwylV zD$nHi;XOq25H87 z2&kpt90#`d7@lec7XM_bV7q~$Jc}u`v82{oPM~WJ! zo7LPu->XC7cp?GJU4K$hzg6cMN%$)zlep#G2E2(T!5X`@Y|&?3G8`0%Af9uf0f667 zV+l)*wlGt*U%_Yywx#J#Jcrw7x4K1bK>Sg6GOXTmERyo=vY|ml!RLg*N9&2~-R+##t=-dx^ z0oKwxf`j2{l3+k~>i?q7T?aGq(K(p&jXn(mDptPP@75-=*v9^s6Xh;;a=kFhC9J*D zKU*w!hfczqFIP|H1P}fByV5BewtGb9x2kI{8pbg^I;Ek3QGns2q-NP)&z3#Y^$3@+ zVY@$$VcjQ4ofmil5Au}c&h)$*!5<#Sh=iPd{CPFitf23j0a{#Nw1cfJF}&jPWb&zd@>asuVzdaooR zq9lZ0ir9wbpEhmFbnG(y09e^>wOK#&mfI<)4#pb*q1(#n?Sktac5|>Jo#wQKhxT1U zN}7dxJsQNfYpXzh(-jc6_0<&`inr>lyYl0_jzZ(ykW?-T6N)prJU_27E@aDmrt!J- zp2KhNY|d#o@qZ(Q$S~SW!z>Rj)>HxLk|{14`y`o{z4@L1f))7${y;;pnTz+SU7za( zLDTrT3*M97E(Ja(3INXug?@xr#^R}nDBBN%e&Du4h1BtUH_H{xSf)X#7=dGI+M(>G1`Cv#c$bIW{zID ztGM87L_1JNowy>G(8S0hy@aXT9KL%$EL?5BzUp2^xcd?}T@+6pMShHy)$q_GH`Lz~?$*>7_X08rJxUS!gF zd=FP>;mQfZw#L3m%NeQ+M7Qx|ee8wpZ5s4Njp}TInBF#FxT20I`9H2r zHm`}Uy~XZVpF-GI%ubo&{%aY?T~;WKPilaeD$I+$O;L5$26qe$u?m}Js-Z4dfkZlu zWnRE-TiA!+>L&j|F~OGRPpt7ApimK=n!!_VSg6)Ky3%U`xT5nHm}b+Q?sUO-%DLV> zEU*Df7{;-5qdaMeXZ`y+JvY6FxKfC7VnC0s zJ<)5XJ+#5rFn10*_>_$xm{29`iBw5-jVuJB*HJ7h1-AoCv;VT1+3z3GdIWG%v0n=> zJAZZeg;k5Tc@$C)wprnesATQtePyXD)ggB_$+3RmJW=Hz*c%m-EjH;j&cq7NIxzq0 z9mk9|$V#56L?k^ovmvnYMbr7w5(&uK77|K@_p4^cJ6Pu29ixiuU#o>w-^!bNN4>Cv zoFt+KnpfoAYA#%5CzC$i$!$%(3AwnQc(|G(iWg$yZR^wG$_?TOs&N7EA+tE&8+ki3 z^NfK;rMdK>HZ6)W*6>GXuD94#rz^HF#we$}f({MnguBPM6^ zvQj_EqaoJ*V(@qF6;H@K-?w!+Kk^#@SkqZQo@#>(t|%qPK6BHZv!tnfYEjur-+^umTA$JKYD0(8K)fND$l9-bOwI=g-EZVHdE8ase(2HL0&o3)E;U;PzL z#*`&@|BD9GtG9Gl7$jsz@Y;$Dg(al9e&}1#I9s?j1n4eU+R|RXVfpLgziW*ZV)5-K zz@9Y-Gz}14a}=%!7+UQ*cZrt!lwa*z3Ro^85VNhN3E}TE>8e=DdUVmaEX|#xb?UTl z(+9Z5uV!7=i=iCVPnGE}uwCv6KM_9G*l|UIi%NWdGdnru?OWl^W`J#eUbq~{2zkhP zn;X_b5HagQF6+1g{AB60zE}9v-|=NoLv!T>wg9`SSv+sSq&eBOgpLctt{Q%luAfCi zYl;S4r7rdo=TIN9Q%9*am%aEs-rQ%(he-6N@BThqx;W1cQ*~S*=@p1Kta3aKoS#<{ zN&Jz$B5z7@h4;(gF$&ITOi&&-g?JzD$zdT@BZn1u9$iFX6h_r8z}jK&YsFUXEkGC+ z64IHsiH^Rvl1U^=K#hiJ7UoP2VwyQig;gMv!*>k7{8C~B*vUC*Y$;4|m3mI{Z*;FE zSO?t{mi_sz{;+J}6U>9NP{iFBp@!F^+Yj<$rgGsEV#rxLlma_?qQ`DwyANL}v2D}5 zS+l>d>~%q-ps2S9QEP<7M>9+_n_1*|o#;BKzy3<@mR&!L7aJ@)$)z3?X*Ib8)0B`^ zG)xtoP~~f9m$w_ex@qVMJU+7xrVDo52SikIlK@IJ!T30!iTNJa9vbrJR^GtP-obBS zKqKi8oqi$JT)izs^v*_SuZ*hiuNTn)_n?hwzdUg^$8Bx^j%%+>F{5Tp;+)6~Ou8~xQm@yOcpaZ~B0vrnLH9ql` zJtGaTWwR7DDOq2q4pexjilYDJNch%vO&;C-P3LQK?&yIhG?{HrZsao`(zF+nly4>_ zVJrc=ADM5Aq9|XE`}_i6XIOSzX@Bg*oAkGH_RRDxe zDpiaGaJ}oVcCsGkUmZnw71EQSTt3T2_UkC$xA_!8V@ezTJ#5Gps`9H?#mN^9DI&Tf z@%;7$$U)41$&HhKhUIl*CuoTOUiE0uQJ3)_63N7lAnLo1+jHA?8EzZfK5rSfD-zU~ zls2d|Q1QtQ^IQMI#lEW9M^g^T4rY~VZGk?DDS7;&s0OO8Wz!lHZ2(Qh=}x?LFRw!b zg1~uOA5$uTe;pHh(^{br%|~RLfZd+68&)k<D#_wqvBuX-Canwwt5c2q+$V}NJhh~xybqv zUs0zf=*%~a3K1HJW;1MBDg)*A^E6ZmaMibFtZD4VvM-L}XCZBC&5~B^)piDf6wkfl zm>)re%Xvbx_S^ctB+|tSMnM|mC8<#)5MuWelQSK3wQjelraPSqb`AE)7%YpblI=0S z<$XU?gs@1OA;%|DkTANG^-Mp}O%8gg9JzEf_x8}N?QEgVIXGRCCmDsKn(I4HhmyGB z8_NZNXBe{hE3Xec$WOn8F!b~hY;!RP`bNQ2c$!~LqbqM5EOV7>znW5+?~twJNwzsTI;{w zYXHJ9Nw2V^=-I)LzdlA>Wh(awO|j6tRQchj4;UUNCdAr+wzNw(zS}W+b^?DEdg;Dy zr5~9sjfN!%z^)wqiwf4r3il^UUWR^ceyuCOgr!5!Gn^p+SR2k>@J(8}`+nH^33`1& zxIq6k2GVWK3ixQca%}#n1SypM`)rjM_$0khMnIO8HEzxl7oku_{L5C*=wqLw$a%+||aTFy2ak83)dHLOnU(oRDoeIF!vhCd!!c>m4 zW)jaKw|Tyrq*N!()-Xd~Z_Tg=aI+qjWhV2=oZnNCxe;H(Axe-D>V>;fCtLi!PZzoN zeisxddY>aX{m@6!#&exk8A}KokVD%H@R6$sNY`?EhEkf@-+%5%ZZt7XdHica#&0V7 z)e}`syS=MzFd6laGofVY;Vfgs~!LFfOwt;Nx7ww)bq_&Pk+s z**p^9Ky+0g3}Xd!^XTP!+g6o8lfvzc8>g-f-aNO*ts(aWzKqM@lw0`@RWC5s-T^pu zTo#MQqqFnJYSZga-i_(g1L@q)Ll34K_$&76_~|#i)-CuA1?}2>4N68M3&*TRp1tqD zaXTv3EiF`;1Ich*l`9ujL#Hs`&kX(5PPRtSItq|+d;lk>Vi-Bshu%~wnsb&z#i5e9 z%d|&6>|c^Y%C}(+B=>;=^BBrfvxXP?8u9h)p*aW)u_-QTlm&S!y^E-ejD||w@?d^ zdDhZnbf3kMe3`3T76^*))eTjR=~}4Md3Uj@HN?)y89u$aM&a0`WWJ+}1yzxYpDc&# ze1D~pqJhgP|6fXZOrV5~##ot@-?EnSR6*9Rhbp_14+WjOr@8S!2?}r-Bkm9;DXM$y zg4ow99pT9=l_}Zz)`y1IKF(R5JvPi3=wZ^f{Cq+-_1Zl(=}tSV^WTG{619d0qbAJ$ zcYch6=|4+6KOn(>+SUCDZJO}(zJ~&zD$^dMw$%&gS_Tu5oSuc+K0Vr4Y+=_88L7pP z_g$jX4`e$S+UWhp8M*pWf*?+Qi3;^fe|Mu#hCZV7QwH{l`e^VshzVCnY(1)b!7mefqfC%$&BTkEZzniH@B08ot`<*8v8}hwetUHhBtwzz^$- zzbqde;t~~Y1dJD(Nx}tzseZ2S^+UnFxiX7?MkV=jFcROg8RXUqQZ_^8CffENgwk&c zM9#?V_S&fH^R89bv#C6~`v#Dva1&KVknCj&ywDUkLdHCbVKne~+l(#fE2-m^2*DcK z98-fo{P==KKo3;|{7K=H^@hb%fre-rw+=0H92*Z^WoQQ5`-R^q+Jq@5m%!9##m3ux zj(T?8og7cee^$RxrNr6AICZPil;VF?twDQES?E_AXG`yAIs9;2E7Z_r2 zzSqYQ+vm~1Ud8^mso;M-^sbs$kOQyfYbxDBAJEZM`Ur)#qi zZ1uVHr~lGl+RHQgAVB?XCZJz!!(NH6Dic3$8NTZoW!l)Ye^OC@Uo_E6g;R7Q>v8K* z>^Cf%`0g2D9;N_YY_P%cfjZHuH=P`CN5iOOg6_ov!&s)B$?E-7UE58~>_#?){NbaA zc8Vu}lCx=67;^j2cu}ZG=cD-W-`5!0DcHDZ=0KJ$@A29l`S~e#((w&0Y6Dc0CMlrP z7zM;0*A9i^Xnpx#p9s9V01rPB6_{@^a>(xH+UJ$tj4n8IsO+W5o&LP@3kA&kjX6Yo zKvQL0+}goN)q-(}#_|P*j3&Hn&20Mc2p-0EA8m_*SyTS>^WNU33)fDEgcsdqHxJKR zoj+kc4p@5bW;zVSorDQmyH>x3rlPPGYUeOcjq%}^4*2~=o z%jwm8nRC~}$r@R`0E`mPFo(H7w66YWaxrqBJb2U|>7_rf3yV$ZedQsQ@^y3LXCw-g zGB{?x%zJMkpUVSDc@;-mcox9IHR3y}fq`Bx@(^(X>h!;c=X#Efiy~@KctlI+adOrWt^yfF8(l4qBqn#oN~9?Or%Qxv7GTi zxl^JEg$8_}%ZZ-mn7~vFaMpGsbutkqZx+?278Jux>Z!@$F8PyEsY@SVO>rp_&xuM$0dbPMKz(M~LB$%{ZPF!~-JaJiqaiVjWg5#^IM1 z9c*|1TbJuSFY}9KJbBuVpT48Ut%Pf_%Kax87iSlpI#vqd%+#j#Qm6LI>4JF1)a5t3 z?bY4rOegl}(YUlSc0>sSd>VTRG@z*AcYqESR3jrvHk%8R)SHPb+3*32CK~r;@931I zFeg*TH#5&Do{7ryMv_#|3U=dXbbKve>%Rs#qM0NrvZ)a_$)am#N}}GD*ZCL_T(s6S zS<-8e*IU=$obWX)7HEvfYrjGyeFh~p-%vt#zs7H*6?M8<`1{zbfwDTS+b5;VYj}3x zn6M26@Yo)j$Gl}5O)|njI36OP_haNZf7V@)b4S)>l-)!M56uvA6~CMO?|~!0pI@%J z35ZM2d`ChMDh|1a?RdKxWYCZqn}b|^1(0+$sVi4^eAf1g7q5DOB#rW{`GJbunO8aV z>{u=FONXJi*dNbqSej!`<>MSDhH&v%z=&$BqX-W&RBr>+6UD^BA>o{LqQy_{;$s{a zfWjlD+@*qdpZHc1;*?vz&sfE4u(r1fb-M+ zm28?-*ZpYQPufHM{OZtd^E1zONelGo@ z^mYymc&#BVF|c>-)f^HnL~S?vF45oBcjEO_qj47l+4Jg!%tjFWUB9OnaKrQ&c*%8i z8RwKtPpDtxtQD*Wk z5vA*bF@S72U(`y4o=4Cy*(f%`wg&bzw%myNt+Zu? z50|gm@V4_@xmNRy@|go);O!Klrx5y8lM)y1csrSisj%)wkD3Ag=MWk+piX@M*)AvJ z5`$Rzr$_h+1Md9fV4*tB{t-B`k+JnR@rBm-f9Y@5*g1Cj8qE%lbMBa+0AW52uaC_A zp_+*EmA!wMhYRT;Jd8yuesk(RSklC$$x@MkS()%%!!1-Ed$iyNtw^;Fshi3+b~out z_!O|HR1VG$LS57hzZ=+EPTpH`+_SVH+R&OCI+`~Jq`{+r z=4hZb=-i6Jdby(^WT7@&g~4y$@ZN4@z*}Ln#MP3Ke%|Imq`-=l4wCWS59V*Is`Y^O zF#}znc!#aqR5_XOtWzR)m#x3Zr&Wh8@gEkwRd@LUY6Foa3cSA` zCOrdq{kM>sHJ5s-2ie%l9vUO3%X;n006`LBVC}FLBCAt;A(!UMcA!fYYcAYF zcu??`F+K?RZw^lkJJ;iGZ8Fsbd26rtbV=@POuZ#|2Xo4Y0O3gp+k6E6*5O_j_V)3g?MulIqj3^ zm|ET`3gcDuTaLY=2#C7Y#7{k04W&nVG?m|{RSnwYc7oyBjxvu2I?m8Q)7+RV(wwWX z&qU~{Ox`x>81>EIb2L~w6+JCZ{Ubm^X)soNmuv0xL&!Su z2igCM0gc`8%FFs;YGX@ZEe0pQ#gan+eRus(v(XX-c{XauS}b<^gNx5;?P`fTvbe)T zAk>CAJtwOR}z(p}iV9@yMQBFfTj@z*B&i2G5fcw zpTe)tnEwN;0!0m;tD^@O13UTzGL(901w(NItQkFW?94pD~Gx{urTgC(EoXp2k34V3mVt_Pr84TjVN$Bi+GNZ(o zDNdCdO(WsLMAw`D;eTK=CG8L{db2N zn10Pgj~8!f#N{}(+95%rsCEiDt1pTzexr_`9|QL{H+Xp!EitY5U;ZNKFV zxNScw2HcK!>9T^9J%wrG{ScxO(h&)cyTJQdO)jB(QWk?_D-Ebjee}$pO4$Gbb*f-Q z6RnE0CR$c|FG#N=53FiYL8>NW(g9+<3=IKYs>7>B$|N-BqHZy2yF?2;8rAz=y=MB# zhYol1^lj#ewW*APUxkVG$7_Ca|K5x9<}+n_|B&NMcWVCcYD5Zy>Q+Fr|8%^EoU$|q zvC6@Wo9soqplHPL{0HUPqL0KD0Xb&WNozsw6u#9Gd%=RTa9z*f`&+)YOxIl9 z66V|0VFS3SUGd2R0HnxqBiIHh_T=BE$Z1~9&<`tNzLtP!6jxR)LYnh0oSJK;rV35q z0-M^*cvn{t+_v&F-@r%1U`4m~m7K@iufJCLfI)#vt*XBII8mcI$u@sLGa1~+yuO!n ztx*|bUuunM#G;N4XX)Gdy&0QXCnzTRVDo4Z zEBYDl$}@jmP~rG3pp)NG5+`W03lQb?NBtEYuP*Acbo-5GwEQ@TNqHUGWF0Leb!&WN zpds@|*}1DP?gx+U*r)rm6WFweps`XxCgbA9{P8$Y*wijLfmg;CP}&&}`%)LB$fOJ@ ziH$FT>{;7bKyxh>dj36)8}sYRMPv9qy%!YsNlm4OPhVtPX{#nm6-0tkE1+c2OD(cS;**|b z*ZWd%Bjup9RyL^AW$%~an-!9`;$JX;2O{RYy2jin#=0`JJL*xn6kn)<-dXeSj+_>q zN^Q~jCRxCXh~WCF%ZEVuf3>)H;Wv%5JgxL68akmZH46 zV~o3_9oTQ4#t+S~W?F-FY6eH1>UsDl>n?HZ^fLBOI&U8f5n0M|XxHB)4jZJ;r2xoB zY0i0xM7*O<90CPsaPLj2E)yb!jP(0xEF6Fk9b;*kIZ3W>;llSOdfDTXnTf*ojyPp7 zP)*OH1~LFCw$*x}C>hJ@j-pKZiXpn!+wiPu=Wb5H^2(y;w^?LXhv?huAB4*VbUyqo zXhN%9Gunxj?;~H)eG;u?n#BXh^k4bz8wh9!mOZ{KtY`<^f-J#d`}Yim^!^pQx!R^% zQ*V4NqVezxcoAB^4i?yB!LQ(5U>}il%wAOEXpaxgzi9iz^Ih8zPsgn5TY5etZUlP` z?-czgnU24@878s=bDgvCS@>^3-yeWI9N=`8 zL0E8{EheK=QRpZI?p}Ty2rktNDgny1MWe#S4tnjtF|2IXDa7Y0T8Kbg+J2bKHBq>ogvgmjnQC>Skm135$B+bmgTC{eo15P4Yo* zA40{-O2t`y1Cc0kr2oB>SwTIN}5Zfc#8Nqz|(%s?wW^|QBJ^9!&shNH4tXZ!E zAS}&PAs2`V-i$6gp>J1(Bz#^Nsz<-S)`GS>a8aRXcS&+pQP9k8cu8`koR%E2teqS@ z67}QJe;QWpC7;=JD&ebbPO)Pa0}_L0RLO~0b2Y^KuA_mvP-vO}TC?DGyPD+^&Qdsh z=Z6dGWzY4QDnd1Uh!oKi$@Vo-{F7k%Q4yHU70^%XZ!N}|tc|fxg)wxv#T!33ITnUz zE}I|uG*79Ov6(`a%&Z5|mbcJ=M}}8h(L?;L6nrrG4))xn*lqf^VQ-H?srIiAbDx@F zua~Vqwa1oPj@p*kGX&LpOlF|i)OX%nO=IKT>td7T*eEA++fn7Jq{AM8)w=EsMql1Ol>=^ny`%Lje`-&L^M09f(` z)*mYS$0uD1P$X+@hR_q%;T?=(QEe)(x|Ht>&D8rYxwG*vAWXlRDS@bA z`fWC6`9v=&H5T(h)g|&FosNOWdlk7vBHoa1=vaqTm${fYpV;K;IPy!YSu{Q6qq=he zKjTHwpS*{#hq>&fn#qs~?U&Kaj!$94TeP1SE7v9^>Rq`DQ3U$+O@Ax#=Ekid{`t(@ zI?8Eu+@$AQ*`^!8yM3(`0!mfh%jyp6WkCzd+Zezrac>Dnv9E;N2j7a}IHC{AkFyfO1>ph2KLzLawoUXV*nRrQN!b$MLAIdKq_g3Yn`srryAoS$%~ zT+Gc6y6P}%A2dDXavw_~$H;CBw~;}u{$mooP+U?;*!$E!-%bI5M{T^}(wvMC1`LO& z-rc9!D)e+wZlm;!k9!c<^hM(N3~kc!l`!Ccc8*a75Y{8Acd=dN1wlohasg!=*PEA< zId*X#0BIf1@^@%X-KZOR=(2~6FBD(SmCM%TT8<|WE}F>ZzA7)sbUaB2A>>8qYdx|L0^Pud8)`Up}B_k5@^as~!ILQPVT42#wSEY-H9i-?{T_1kwHV>8i4D z8?Z%FaOdH$F%ZMZMIdY}6a;L{NFcJre4-0`c*ouaGMFSbvk9;NXW4O0Ph-1&J!)Gk ziGtcBextLNvEQ|JQQhB(I{sveBa5_pH|hkfC%XecY2qdGM`zEX5aRNRQN@Y@&LZO>KnS>?D}y$%?NDVMrc z_u`=%;$CFaPDyK>d?n;fu2yx!Q((xr*)ma6Una)DeC%rY06+$IKK;qvclt8*pvAk* z1jUtCW|8ee`KBB{-SW3>`CUJanSYb@fxNLUO{XXbq4+s>ntJV%F-zfEAz2JbS|0`D zFKaEkyd{9=^x*0C!3_lc#%WDGD4R>jZB73}DNea0u`aRQ+#aPOj>{-ygX4~N=JH4L zo6aeB(d!JozG2EUdBHw3(3?!)?M(AW??N5LdP$Z$^o@K zG#_`=&m>O)LpeeK_<~FwDb9xY3}A2Nvqa~pe84~WSxGyabL?m;(+1w&tsOA>$V?c{ zIMjUtD?IKm#m3qpkuW1;M?)&-m~tB%7rtvTs8jPn-J)w3Mu6Wc7>qr6P#WQcs|9L$7yk z6u8x%NcEx{E0TYk%<~FddFG;aC_dB^5F9t#MPD3WlNQ#Xy=AGcL!2C$cw#i)zQ)6>tI88T}D^!|XLdc02L6_|=u)WhB9ucyG(4 zGV3IZ@+B?+l+4#Lakrm{9Sam{0(vYE5ONuTzsTl6gIZ_I6IVG ziEShaz&ur8ig!eHvgcw10}f0Z4*SL@C+d*^|4A_2^Ri~_3al>Ueg<{rBPykz1mpxE z4h%eWeVV90c4=LkSg0{_+?`1Wf-Zc0a`LedZ&N(k+E%1RjX01kMSZ$kVq=G<2*M~< z^trbFg6vrFRCZ&I?UCD%(>6Tx7#~M9L*?0#nw>k18$>JCD_zOC)xC35c?hi_My~xC zf7Qy)bpr)0Fl^8=oY7hu)XZ$*<;4+->V>BD(oRjG`S?2cuOo5(r1M2^aWC`oTeR1t z!}PzY)=DTz8Yn>zTGg{pG`4?1VM5^=i6tTti(Er>UXH>F-?>_l zdQv+|Ferh-*z?^+@ceA>DWd-@R7Uqi`mm0Z`Qw~1w&Rp-2YFO_M zfMi`fcl+DOMjoo6g*CPYQd(!Nv`v0HQ0Ps15U>LAq!LNGj^xL1wV@!qA(>-OlYc)z z(rihF0cc3s2>aA+f4}RMl82Tha zY!`;|ZEen6yd&llfoan-{P+Q-NmIlmr9NwIhP4j;_wF6$&(*xEVS|qx8v4UPMBU~~ zM2dyQOA$4X+s4M#V8*q*V~Urv+<$#Qj@C;(hWEzX5b>YmK+OG2hgL6F#Z2JwA^d`1 zj{U{7hDYJ3=I!n-r0~IHYW{6(GHZHPy7aL~Y8pY8ok~1^;?_&HSW#wKz$Fa3A%db& zHsmU7P-5&L#*P%7{d+8bYRoKz{8`_ zIG59=7$V*VxCS-~A9w?!og032;rYeO$S3}uysL_*vp$G|tO`aw7xo$vL@?JVr?4A7 zeNLu>R+Okh8a!ThqFoeVbtK}|=fS|-9~%(7FJ8w0ffWJ+t4EsLC1-d2o{k`zfxip| zC9>m!?awy5beW0&2EZ{Eo(U#BwM>Akk+RoTWKmRF?i{kizwYAMIKBGKtI#K;cI-UR zsGj(#Mlj6g9a>6?z*eLT1r=*#l`NLYj-W8oZN1LATOK(g~*S}f(TI@JAv1tK#&ks{5ghNKRj=BkN+o!d@-(=0$958l|k6G@z;Gj5ZBPp~YTl-}5Wy za~0dt6K-bLYR%Od#S-TCQm!pXP_C%GlQ-q*@5@9)X;7Zh%9n4a0*cx@lWCMUlb{Ml zTK^RdZqzhBnb!&DK0A*p&~rJQ)8hR21@;*nzYS)uoO(V@573|EdGs;`1(AVUnZgj0 zJQC^`2KH;>e|f~rIJ^VC+hD*_#@26{bTQgp^B&{?eWFT0K_YLfD>M<#*bvZKZ1YydW9Oi_^-TFLu=E_&IhRU5Vv-7E1+<$ zFNp8s4QVKEJu5?~XkGl@nB4D0@m+k^`_<7TlV6I+MKGTD7h=|a=)`#gVWc$i3pZaW`0%SU6$@cxfAmgWeY&2 zkoz~jp~DFFmI*s{#yoRs80cg-Y*~&?C3C^diY1(PH@>ai$7t!t9{?D+{|+)YigPLV zMJ?N8?EW22f}%X`&pKP_CkIWB6_YnM)Fo(K0Dr@yEbAX}-$Za$h<z~znr2+K%>5uy-xUb&xxBE5Y9Y33i5k7Z?>2ES@2GQd>8(-tQ5EkntI^pp) zrzN74t|Qw-(u2Xagyg%VzQ^-qpZXC=!00KV2a4sSI+>iw4u<|O8f&fLR|zzJ z({eH%fQnfaLOuw)^S~C;4AA@pSn5<5b?8ItxMKr=wD5i>aJCjSwyr0cr)|TkBffH3 z6WRae<$H60Px)AA{Rsdxn-*i=v#LEcRJ;oVmjET;{vik66VrFiVPd?TjX7FT;1i9{ zw`b}tjP=>s#?I1^-jA=&xlCLWx5F&kp8kC2P)cNP47l~CLegg}1x0$R1C6geD;G&O zKnPv&)?Uwh`@$nx;>ioyifw#Y`roH(mj21K(lG?SbvNyr;=oSj^VZK}QZUt-r2{=jV0=3)u| zB3!o72jpkM#^B`-^a!4WXN%!Dja@hN%lvclfILWBoBYR@9oheiR-B3cZkQEir-D{T z9pj%{Ld%q5YbvSGjUJk7G<9pydBx9IXz50zXZu+QM}@xZDgk^EegVlF7|PHfCn(yF z4r0q3t+oO6*~q0#noK7|Z@>GQvAze?Lst>XmV;oeq_uNYjpXB27kbNzz5^KFzB4mo zSP8~?UP>r}w;*-a>&{?iVakuT$JaVC{5ZtCp*cO|R4Zv4MMVs$;D;e_{M;6_*tMXV z3!3}#XaElI8J#97=N9qhOqCr9o8nF_cLC9J)}fiBly|2wYrm%fY|B6A>$4S#BY^++ zj@Ay%$v9?&Hs$m_cY|!?zR^ymb*ic!<@=eT)G6PejK_!bEt@Ns_<-qsrp*eVH zXf6q2@m!%D5F>o(0r4S^+40xZ^wJ2nt)OZM<{p~#G0$-Az8o74m^k2kcGcovE7qLK z%Nba};R6l}s@5M3jz>JfK|oY(_~`S;a6NC-BKA`u>JC@a<~2GDipavDY_fGu}qkzkx5Ca3jPb5ypd zz}>i5KMFLQK#jtuG*w?SV7x%KX+(W75~2vCBiP{+%!J)@$~#W#y>I0cO(FS}hu*iM z%d4uZ$z8TLegs3Cv_Qt#e)W~p_Z6?&Aurzjtea9z)?L71YL5mXw`Fz9m+;sAXM=Kd znWsEl^l5@BqW;a0H|Z||65c{d1q*k{I)Bxw1jg630f@{3e0ny=V$ZQqp0FfdRb7wD3nfK%|{kO|b|m z8pttn>5`j$!O++YhJO&I;D2tC>xh1Ep~M(n?xsO|n8gEdrEk6RUL3wsVxSOT%w;Hq z1Sxv8z*U_>ioI66!}6O-qG{-7`2Q9IL02hOQ5JR z3{|J$aVyB8%-JjnI_ytc`$j4z&zRNVjG}nm4OQ19IaftcZ`#*PMA(t~xgMPc<~(;C zhZf5(;ZbS91H^Be7{6GQ26Mfdb%ZSrW$Z;0BsEZNq;tK0do8l&V)b{Y$N#`w1i0_l zXn#|Sd@QMAU?z-b51x|ILm1R!Q9(-|?-k!GyZ8ED(Y-Qx0+tN`M&sH@0rZk1{^ug? z>CrOc?pUt#cW73px(HS5Qi|JA`Qzbap{?eEIbtbIjCS9G$E{(WfBj`CIi3Roz$n%X zh}*O?2I0fpAKRVjF)9DP7HOdIvzMrh zzX!Z-XHqCg>LN}{qkIwI<_JtOL7*%<3ZJ@<6wxSs4?}3@-ErMwn?!EAP-790}Jp16PSMK$Kw8 zQEJ}NsO(mu=1uG*8HJb-$(+)!;6l7m$b}*V=W)y2rd$}2=yOTMxtwFp=yAPubtLsP zI)XwihZ>55KV~;M3TywX6pJ1vcgs<4e>n^VG&+j-Yp*8H7&LyIek59PoigHy@I>l=Kn!xhZ>1ikBOB6!`s&}|d`C-0( z*4L~{nhTnXteeb#uvIkB`00KIAioHtZm#w40XXfUEEc9AGe*vd-<7@%R65cLtz=e6 z_HR|ATO})~&QV>TsfcT!iqf7vSQx_cuEcb)d5zum&wzDX?R_NU`bGL}NAQblWW^)bAwhM}_6K|Gl41<<8dA@&$ZSNmUqE2#n@a^wb zXrc3bz4fEzj1dID*Lmhd!sPrM16k=_l=wGXjEWZGEof z9y9g(^L+?^nL0F4pDi!*1bNQGo|g=?`niNzVhEbW3CI(*sStWe#q6DNzJa9zX=2_A zfl*;7oNVh66PssOBksb@6~!4&g>tzK{;X6->2-T)h zuH0tG^q*dMplEK4lDX5C(kFi%Df}EB&(?Xzq+t~FBHPG^j?2%4!iQRWPBZ7@B)@V6 zw~2@yWj2E9Q#%^lfYka?#N7dZaxE)REQoy+pC9sC_rJMRJtcI=JTrb2^nt-M47uv_ zgBEtr)}_DC*Ixatf2J$Y`FZ%xCtL1Jcr=uPf>QiJDyNQ} z&G_3AjN33z1^FeYIQzWhd|KH{%q;YX9-rzzA@7E?Z^Wn1U1tc=5{W9v&s9iO2vsOl z*yXQ9WO=fqr>ztKxDeK=irP!oh`{Fk7p)|<4=9((5?A?+Y=8rLGEp&xZ z+JBiXnXct;eF_7J6S79DCFue4f4sVsX=ncjZxP&xd}6$L%Aa-OR1p@<^_Rh|sDo9_ zWpYUtO9(?9zq$Z`TZ)ZG=MMMuO$)Y3H!U)*IU*uI2llF!47Bs zT{_&Oa`l58Q-=#2^J$j<4gXuA5zKLmnU~>~3Hq*vB@HyaM_rRbs2B470SIkf6~6&} zQC+)3Pd?}E2B%n?sSh8F1_k!shQk5lsHF-E9m)BxV~4^!4NE^pH1fI%ohWLj(fDuD zZ06j)1-3SYFTL^H2R7qZOtPA~fEX(6KzlIlZt*p%SslS1AD?Qaw^~X=yZ**L+&gKm z5#Ut%F#zqUyO~w_U+$9BTCFnY*+72<0RoK*%EUl&yX}<*Qf}1E?cGB!A8&!$_G~dN zAD}F*d|$gZpV6mB86)AOgNBjx_Ol1)x$aKn1CjT##6Zc*T!T8(o`C(N8s~2Tnok~$gWQvGzbh6Z{5>q^ zdk2x`Z3eqM_@;WyuSl)wO#{wnuzKW!g+Of7WjLG(;AKCwl4NAbGDT}2m58s01*~(D z_T!Pq*C;DljBtAR(CAh3kTIo9k=1!1dBDbikP5$@;i7gBfd0wuc|w;%Zk^oDoIlK@ z7DZzn{MxwCNj4QWW~$8d&-)SoueDfwgr0J-z1kG$Nkkb$xSvRU#tKPt2BN}tk;rfA z08YAUh(ToG3UnncnIVXu*WUcLVUQffvv*AG8KjNU2SisG_8BR9loa!<{CshqKN-pE zEb@zqzfc8T|2={;G;Sv86T`<}qCHo{mTv5u71Wz)6EcSfp)#rL2VWYTbM(Snwj6UE zvmIYypJGRA<49v(0D&=X!2uql4Krge8pLYL8a@_PtQriZm9f9_6&&l+h&4+anXrrj z;D-KDRlS>gdHFN7PoI9r&o9O()&(S#oL1*zsf2O4UH`K4D6&ssP4?6N-a?9Ou;NX=aAF& zNXlz?;d{9g7ZN{ZZDl`({8Wpfp32EjQ64@tWbx6W> zRcDQ~4 z*FY7uQzS2xgW3s)=J`?;*~TnCr2`&C4O(!Tt*m7izH)4-*(d)9HEEodztT;}FYbUU zh7WRI7Zcp}?=fhsRygu0C7fwpiafwc$$(z2N|~KxvO}JqBb*kABklIJ90Ygo$uzkA zz&V1)c*|3&=|C%LDl;@Iy)}JgT0RQ{l0S%8qJo05%_o0^7IugYjt|^5xnRqga%jkp z!Q1cAEJO*&Ak)ND5<3ro!#U!4imd?>>3<%cm$v7|GIICw%FtiTJlF%c_cDm)nWB8V z31K-xox*A1;+Rdl&aeAh>lX&+nA`oVMsL@&DXgZNHrK9MMb#FK2CHh#Vm)^g!-G3( zWpm%)KC#jI49HwcQBK4|k1ejoOO1CVxxZKg zxRardXtkbIP2=9y%aH4C3LbV~=(S(`=X<*`APS$0r|)0F(IbrZ>}1b=#CSSH4<0nz zCrOgkojoj}AP34C%69_+=lafjJ_0UnbsrWwdeid#UC29TjWjD#tN!jT%7b5idDhVR z6sJ?QuApk#Mn97u@$9j-l1H+D|72h;#naWRNR@ry6ZVLFWI~phB=OpZrVn9k&3<UogKFyP)alo zqH}5(6{u(zC7E~*1%+=OB`AmCL+?p@gs0~K+bUspa^z$K05Ccr^)@W(iB@1zs z+EQRy4(X0ekNle|&d$$4HNeKDUzaKzuLM~T!$%tsJuhUyQTHug$TE8>usP7xTD-J; zfaTZC$IR&J%2G)f+H40k|B(DB4GVrdK9&1z67|!DwN4$YRR;MF6xqfR$DR*?bk3{- zPXfBIwKZ`d5*JLb_afI360)H5s?$ImAu#~?V4mHZg|;e2x;{6+BA7i#hJON z9@(ia`zecd$XMNSWjZ1Xgo?GI1|eI2nMux{oKf1#Y-DYYoNUZeLwQC?;|9UNt5|mI z%;3>9J{Qgl@D0c-%+BW{NHQLPVL@(`43}?-X&%>pOH^(a3OUw={sk@!ha@1%hm9 zxx7`!n`m~1vD@BZk_E%#Sz~%b+~SLc{+SgYz~gOFyZwpSX5x*b|p7$GYxE77`6PY;SA#}ydBFq5zMr$?T(W$Rb!2t)^(f`Lm6N#L-G zcP}Jc3363>%=lOj@s+qVjCak=*8)IfW|{n$QnI4-Ppk+^0S6N>h#LGcO|G6;hpeN8CDb1)0SUc=r z8J4iW`%;8_pIaD^z5&49h|>BvqeMT&#MaOh0~HPb9gBCmmFr89EgoeZq2z5(j$_Af zo?53S@lI@NNHCD#XnPG^6zj^Bmr7KtXfu*ilvkZYMVGILh%H@`s0U*9Va(twvl*{O z`PlJFRvClG%(ZzzFw-tR$v}&=PAeEUh_yP==5+)se<$rc za2XW@#AP-Vr-a)~`j5UekzZERR!S9!WUTtD_3(F$E4kzamooq3*3};0(3Az~b%NS_ zYv{%MjY&CLjlb(=R zGjG2ahBWWb{+_By`)wdnT0)s$FVjC<-dJ~u z0%Y5hJ#k5X1+sq?s16eIafjho$GEbK+8E*OaFd z+_<;G|- z9OS#HQ#Zj&EPwB$d&3cr)^;w&l*lXqZhaL3;QoW(u`S!>D7Vz%=USVDniNUxfRu?D z16e!{_M|muWOP(#zN09LdNg-dCtlBdhiP?WX{jb>37I^G#8}j~vXoT{H z`Md0?%P;_Xvkmo_^M|swbT1%(@OEQXsf!u?{bgS} z)>`*^jGMu7c-l~Yo5bs^skg*XZ&XsT>3%ks+UFfYT$M5b`{-b`M~YpYRIKtbuUm$* zA6vq!JGR82GMUx!@7$O&dDC)O`~N-Yqb@6EK?oA7Ja?`jdbs*ksEXO$#dW0Y5_=vh zEu6zLmjntg2t{d`ZL8ff#*mQQ_=lt_)8DY2%r5Qs)aSDLG2->e2`-G$PrTJgey-mX zz0b5Ig_2~!`BAv$-3t{dDn%}>Eze9X_4=3`iz`tWx4%;*oZglj1$8;r{fK$mxqvmt z0j58G7-7GRWz`$kWxKExv-e}J`T3heINy_Vm3XX9YFtgHti*D$wVwM+5NsL7IvE@_ zUKLzpzK;3gk5$|ZlDf&0D%Rg8_ycH(MB>RWSDeR~UZP-bBYN%+bO2s3{XIv+Jl)En z{vKIRW;=#=BAY^!sxw)dixuaI8yxjF>t0+_!Hr{_tLGdDB_b^Cl7*Ok@1m}hx_p~8yE!XE= z%ia;Au^;{+u$^-$-{h%aBXR*SToWs*k97gr;D`;HxX`|vX2J0@wYkDkctVA9^!H8< z?AqYAc=v>Ccsj4LvITj5EgAd1<|keKAcIda2R6R;NpF7-@wzV4qH!{Ms9vXQy|F6M zWr_cU+wT)tU*-HL#pzi_oMtKKw>V3%mWSKFkGCYTAGbH3clL{YT0!87MyH0GvYu%L zT=`=I;`T?dc-=MhkC6AXoRbT>g}JGl4gNC1KjaHl_6x#DYL9CS z6W(^t1ptgWdl?<#Dz0pY&~hc7jm!f;BxLBqvZ^Z!=P?EzdR;K{g{*f^Cz6uzo3aiP zT6}1du~u`X2!eor*j!tSn?ljI*u~Cnl~~h#yi&I!v|SuWs}Z15ZdIz9jQaQ2Nlx?A z*E5eS`dDVb)QUkg$Q~}}Jg$tOHfIFRxp=x4-a}8$rwn~BzX_TFzZ*nO=JnLXAqr!v zQ$|L*pL4v9JqZwy+9En5`8Z zo!uLs@Hy;o`acYZCi9~QEf*mRP`Q`$;p8sih9)7|mND5*6{9Xb&lj}s>S0oOe{#>E z#cGcbNM2Wfui^~#Xuw8N{)-NImt>7@JL|>dw`BbB16I3YRJp88~u!MGr<58}uA z*C2*}{NDS%t>I;?oe8c9*6{lzq<(@d6K#_$2)6vsleVzLc0ANIK&P}v>*Nw(^}VBw zq%`(Z=Ww5Io4f)t0OmxlrBP9S4!f0J5{pqtnimlOo$X0rgVgJX`SE^#`H%NjG55k)OFE`p%kw>PBsg2g8~V{fMm+!bz6&z3e{MAryV6#-{jKc?Y~Nw#C^#mp ztS6?7Z*Zpnl5s02^C?&!yGX5G4t{m~Jm_71bEjLmjrGCa1N~-fhK3s% zX?W9D%`k~?in5n5>JFV2S~I4yp=Y8m3%I?s{UVpKs-8BMR{Jubq5L{M^=KB?ED$-V zq>XT2Oc2#jWvJcuip*dGQwyPq{3L-2sasj`9VmyO|<(jY*9{kffXZwHpUly;#huxo%3 z-orW{%VNDYAzOl^kjlkcwmZjXCIyU#J32bG25I7(Eps4umehIL?dP;i2f9JF1 z+uYhIaVq#D&$_k%9PbfpzdmDx2q5ALLPHwXvu1Xxgv>)Pj{cJiU-{4D6p&A*L^DHj zs^SPaviqoy{W3<}TAsT6OwxC{7ec-&nx5JsD0ubsl%~1V;q>w9(x+IlWLSGTqy66< zSH-eB`uCMo=jb@p8Kc0`asgF`bQ*!co10hMwm!!9E2In#1}3_F?O>?@lNEy1cZEb`mvsuoe8`k20su#u|gqHekf^&-9@{Omc*O zeH^d)W~oi}`jO6_^TQ|_n^e=Cbb_Yq--H)(%yUY8D3D_Zdv~h$#1hC+@k{R2r~k4C z>`ApEO9IXEY#t7*04G7o$`;5MTFdISj5wQPsdJPB8!6Gp#Nx4B=r-XCzQ%>DF}=!} zlhnyV+FG#B)=@1t;bdJ2W2G8Yq^SA z=FF?toy39#Wpsek$8DvbO-5%1@JhwoZ`>*`Xg%i$|42tDzghRU0rVB(eP`0TuMMSE ze(M|6JyTaMYELG}b6}E>oXWKotqaoRVFWdkxY0F0Qm>hij+yBp0bj)89W6n}- zaY@OO!f%E7`Lf*sS^tI`wtvW?LjxMCwaRcxIz;%%aQAM%T($H7EJmahN57~4k%eGs z^*XYxd1M>IGCP%v){6_QDb?U7UTt2`Wpt!{lgPO*_#G?Bnaoy=1lN|BLe$~~yphdP z$E>x8xCTQW@E?7m*u7d<#SW-`R7Cx2K`^VP5wDsJKc_lA(3Es=G1-1xRfuMzQh7Tl z_*7Wx^9Jg{*7~IH^GpXB3B8k)qbL%(l`tCQO zcRrqgU{E`k?n+|1P=`^$d~U$;osA~O{XEV|MFfkl(X$oh7=Ug2p@5JK5H_;?3RyA8 zz!M!NJ&&N2J-T|>|4#`spWwM0folPNUQC1VQbkRHbx2`(PgnA*Zh#pX)T?Pj+iU!c zDWvk$E?*ts@m2w|0L zT!MvMuAiAx&W{H6WcBUT&;1?E^ns*I6&VE4Wocg(zgyM*T}k7LjDoQO_|Tk4znOEp z35ywF`2?Uwn_qg?@ATSt+oM9RI>U`S(~&B@sm}j6!&D2=1Z0tcQ}rNzZ8}QZWWU!H zJn{b#Rs=2m5J3NI1VbrPad=EArQ;wn@bJY^hGJ|)ru8YIft6Q-U-k{; zVJg+wPM9@~?Z#kY)#{0|Tye~cK1bYCkO|wc49txH17bOM*I=%eh^=OjRPK`FKR?B7p*1RQU2GX1EQ-v-D8AvzY7; zr?Xi1nY!df+QdR3H78xG$;=wuw0J7t&&OxH+}vVg*kNC^r^ip5msv621n^BU1|09D zrN?%|aiJ|bA7)v@meqS8LPlXsuR&55YC(8l{1GlkAJqE2==j->C4VMQr?_J!I=URn zC;`VsEEeAQz_^Nz#oBE^tZtLSWWp836dMfTcY<9uhQFgy zQa(+Q?Fc4g53xr~mt%AqoXOpr(bhwiG1NsNjcIphHH6*UXGeJ+0)TkI2%kA6ErBhi z*W=H@_8EUTz`6l|)97CvR{{#c$d$}EpIGmmEqHh7!gjUSYcH0YR+Rd(D~K13Z3%d7 zhy0@2!q>B`SP6Ou=8`*YALlN-JEkSlXJm|AsVXUOfR5xvKOXFRHW|hOe_X7Y4W4y zz|&)<61D`rNfDDJk2k4)9$f;32#VGmMK-0VcyZi1vq_4r`<6u~9pw1DFGf#R`CKx~VaZKw5z6vVz%%M4O6>Ly_> z_hV6U!*T3QG9Sh7r0oCPXv$xk)HVBY78-OLHLyl zQ)+J5*w=JPb;ysGvs0x^!N`TY^1#JeV^TM5o+4d^pTyT_L4zV#$E3mru^FMZsq%O5Z6EpxY% zAoYrG6;!cYa(oslbA|96)O+e7HGW+4Ofp7uid`{_$d6Ec+Lb&)A9!H*)0+{rPpU`^Z0Q)bJ)#t*{4ig0) z8)Qp8iFKbSg^gGOX@3BQq-^6XecBjtU)E!7rS%6g4jd){vj5y^HWsjz(ksz<734N5 zQHR)l7a!g!^npiIraodMeZ5N=e5135C6B{f{^Z?zLD}2yr_oow+03IY#J;YAY|2+E zSvTXpogk=Mtq+2kAPKprF^IB}I?iX_?{~|)AnNT-R{{fU5ud{=HeX`{%F(L_?42@L zmD8`4Q|p<1=aFD|Stm6c#migsUn{^AtH?ko`~x^Wx`S^9Z(fu?d-Vg-HXQ?zCj0en zPyt|Rr|SFiM-s9r>wY+@d%gDg(d7Ml>f|}s0{vTA+K9eiw+8Xk4yOjC?e>iX*0ou7 zqdzWzpc)3SVZU*rZt1+|gE9PU&)%!rYC)u*t~Bq)jq$I3t_QqkegPhC9zlT+L1KR5 zU4Oo_b!jaBlK(Vy9|o~+8MO$sAPYna$uz53^ofPCD{*CA z!w|8!O!XMpx3-x|EH$~ij_pX`ZR3G4!QH$$SC!JOPGZ>El|{NV%R%bHrn6f5%|DA! zx;wnuHC0B67?3l;yDFec)2y11O*^_Av#9hjUd^ge_BVZyC7lzV#`T0YYAcl(CVaaZ{A&5xt?wBNW$ zkbQLZX#Z9xGM~`;`@I}K#8yp!OF~}$)1mr1avD)%Vj8unS=ZA76IM(}6JBw{P-o3j5<`2BOLptGc6`d>1PhJb$m!1v`XIf%57Cey@f#aC2S3EdL`aeV zGMumf*WJekZV~9|Y*j?GqXFbME!V4g*D?C#g$H_V|Ng>?#So2MvAy5A(ruM-5_3Ag?8+l|;i$9^j zrbDBm8uyoL$?#Xk#;<3!Ycb{~lYq>w5gI}fd5rt=IwM_QIU1}~k}H$|2-HR0$JT~= z3!4TDjg%n4^#*v4ROj^`UR#)r1YYpYaERF6%UUlmL1^+}0vh!5sT==x$XUOmnFQhl zJJav2d!FEYia-i{Jt2P)C)iPJ_U_<0Ak1HOD~AtMXS-ui8+L$FJE? z3bMOuOz2^VPe5E$m8Rz4G0SqdUSwy`r<-kvy~YQ}j`G)%m`(+sxP^{pxGY;G&~=kO zfai~b@z<8E#9O7+P?%ZqWCh9KFe+t%gx5Thsf`V{XsZjATV9#Zr2CoV3u11o3g^(w z7;5oIsmnnISn~fTh{cHsu#r;uj^)_yMd}*TrfKaWN3~GQCG3di;iG{>B#Q7kuMtH> z+85f&9&3ud>=kFp+UPz&A#9VU!mUJZ)&a%&x^KH#JCjD>7MLX^x@%(eNY=!(7{U-& zvllhi@7K2aGHP(~OPZEvCJYT4!!ZZ&$ZiAxR9b7!yei}oPg;(hC5lLH*2z{jXYX|X zs4GzY{P(N-)AGo552^jcQ6=#H(@y>7KU4ugd~Y3)WBC3m8(WsnXP(eZX7B5W^pAxp zN3Wi(-Z}tn!SP1n-P1Awl~`+fd>j@0m(cuTpNVG-a{a9nWm8^j%u*L*_cXRj)@=Ud zLjZ+yv2TAN9Vas;Sap-~*p%q83bHRaiFv?b-$@0X03XLq4n zg>ET7io=89tbc$0ELJYvH0>46TQBl68Q0HM+xB)pR(`<*i)h16GEF|#Pb7I7oB7tBt ztsi1C>_(%o_{CEsHE%ee9wW2Dj1d&TvRe2V5N}Bsp||?mQs!3+&opTdesoWerqGiL zY?XB;lUdlMT4g;Re~~DQ)f1|8j=yXy09Y~I;>5W% zyVO2AISD7dO+GW*6!f+chzi*9# zUu&ScxXTCI6X_z(CyB@0MH{KgQTyC>PI)Y7o z^vaWvX|d@?RCb0YcD^a0n{UFpNVFd}Wq7$BE-RKi>Ui^x`jG*p-79t!z-+Vxu%I-0 zMNH;R*E2?1j8n6c>>=^$4_sgN-p>jEYnaCVp)>l;s{4wa0q#fZ$0h?g0D^qN^6^|% z!*MkTVUMwWg`XSjw_+K>0i=`B;T*~zd?Vxnyxg?W? zJ;$Fc5daEt>hM32)b)BU_nxj3yg+!H?NQ^p4?KvKh) zo(2}dqsL8?1E(8GN#N&8_{ae?9mbza{~6qyNl90G(=7Jwc==c817mJgwFj3Q^#Es% z`yS?M5HRTX`nMLVND-t6Av4TE3ZW!=R(mcYgN}S0qQ!sfLi|#+eaE@=G(!ivx0z>D zY{_3#ctY^3N9N$(czT3tBr!Wtkep75%C`a4Fnd8svaG6(+$t>T5zxbOw8PtDT*?*84Lxu#Zi7FS9| zR7$-fAv2&KNYhs?btAM35>8{4@_uA*lw3`K_ZVLo+RK6PC#!R0&Q>g@2?Ij$sxZukjc?9Dg(3D>OMvd#C{QL)NcRN{v)^;}_) z3q?v2Y%H1vuVtgnx0LqO;jBIaYZc4|O6Jm4Ia!ToL1=9GCq)D+h=9fzOS*DaThax} zT)Xk}S`uZ+bW;Q@EgGVPb!xzhLSJ1UL7+1t~!JU;?4l_jP`SENSGwvLUuNd_N+ekP@hSZ!D8TV#~q`70!UXD`Af@5 z?zT~U_j^Vtw)cSYVbSvZ2q^$8d(X8F^qnb~L%s10n3hfoVni0BRb>0KegOD+&J0Nz zhVv;PMAU911}&*RL8>Nh+61fjVR;nEKA$$>yG?Uf`8WMcJV&w~l5YEiU-$MO#(_UP zTB5zNI2umfOh6nEVhbL7wU}cv%~1=H>b*Us1Fvj47_#b4?@|iARX9T>jEP@P+6h`J zyQMRu70VhIBp;%nfR}9FX+>2QugUV()?-;rg;Lr~D2={^I zBNS{c(wr$Bb+hsSpUdDKuJeLE=OKiaqKUbjmNRoo(R*E7BWEQEPW*0Gm#MVKMP>zRU_X|LVej>G+e+=KeuiwCFC-} zpvDl#w$$=dr4-B_`a607&v&vhXr*)b^8|#okGv>^|D?8YDyh=ANJkT<(Y03u_abmyt>4-UAMeLZZ69w#gfr-wigeFPRUDKEbzIc%w<=2bDLVJC1xa0_ zCwm@dsnQxeqnMG98O}tfCnN-bzv5u$Swq6_#QLSWgXtg3Yzj!|m|Rzgf@yp-G66p% zs(038G@Y2lNRh1D1_J*#8f?EdtmR(dVsbG12HV260I|;258>1bvyTkRTPF5Dcuq#b z_n;6{+}P~+ndElgv|is|<7<8^R<&*%vw-tW zWBXGIh8!g&9t)YpQi?*we-O3t9Eo==0CfNKGkIJbWSh@H%ADutb8NQuekdmE6yF$8 zBGg;XB4Gb81z(Br+C6gW*y$uGux0=Oz{8T37F~GS#CHk;Wj10vo%t6}Nd4S0UT`3y z=$3RR-BkgA-^AsW)~Gyr@Q({8AjkNe*Xs8mJAu$y!;U4iw}UxwhEX0p|K0XobM7RN zsam9Bt0@nqGqC9>|8My87lEGwsoz@q*t^lI4a4J$b|5BTOV9ELdE8TefB0gjg~=w= zhN?uWaER4yx)!w>d{f8@Mcn{K29b|uHKk@Zb)VTW-CY3W@}ppl4ar~wPXtw`5Kk9k zxWTF&%nQ@m5=S;?rE)oGjw+S0-DC6YY$V0L?yodaqCeh24R6n%xxJD^H1B0%!Scq9Y`s?w1mRpU$n$p?aj&SBAjtw5@$y}P~V&E z|BedPw%#>80X?TQF9S=Fj4xUa1CtCDANcne>#cw9aykmrVqeTbpkW=Gr5g+c+ix+p z@{eT~wBY#pRmkJj6^SAa&^}Ome=E8cO8@7KN6J-e-sK#gtX(ZvA6J`=4WDvr_2|Mh zDQV8ZSNVXm05Eu8??CvSvq}`IxQuR?JwZ9PlyHIRT5p@`nl;>B$k-OaH~YF+tRo?k z?p6bf8X~%IE6S`KdG;lCWt*|d;O!FYF)0p*9aF5~@;qrWWZXHK)u|=}p(mE;|BDJL zB8c@%{|#pVDOeY;;;=MfEv|=13zMz#QT72R8GW*foo+9~A_ErToMQTg`DPCLgLf*n zo`ARoz=?jz(8v3Z@BgZ9>Yyt8I~TxC|j$R0J+&8uX>&^t^(@TID@aipYulhZK{|M%& zR46Nf6*6bSfis^=vLOV$mxlo9TkCwy_(=Y6lY2x+)^6N!Os#wy zApYhkwI;oLGZU->sdf7_o{sFs4WYyu@J!>zRTS`cK;6E=XTk-T4cDbSKX7Xb=TvjTH)gPHxNt<+v?Op_5@4h8Se#rucGNMV|ajNDhg1b3R*Mw_Jq2(Uw zJGtk7>wec`92>eHz-@(47FdQ(?Q3k~QE064vgQ6)p|wo-=m>Dy5^unnRN&$VFJI%t zCbM_8b;yoV^-2@1sX*b3#Ct1Cfky)Ib!fnV|I^ZJiFiO=fzS$nOrx;C^N2j_MGe=s zv~(hw4pMDb|7_tqy!G@A<$s9%hi4zi2uT4 z0zTGwzl$M{e?6;Cho~{v7{yzZUCWu?%hfcuTU9`d_lkI)v1=guKd*rij{KyNo8?OE zpYdbiLH`|APR1lvpSEGLugGnp1r&6JqbD!O#@OQl`!4KutK2EQZkl&&*>PVYtCkkgINBnIdZa#ANW)t8Cj&h+IO-&+spnsZ*Os&9i%WZiBQd!t zV@Gy{Bqqzum@>w8uc@DwUVW^adMQkJplo9`m^uTrlytOGN@k^};OcISP}3btt5WAZx(_z#)2FoMHw(;kdL)H15{#3rNI zYCJL$yn$5cjj*i(RGG!PatDQt&dlP(SC57w4lS|I{0|HkwCtsj0!MT#CB9Ke2ob>g z@iUs?>*6d*xT=Qx zwfi6V08G!1z1DzA0u2lspYbh8g;UJo(nrya#sElo$Kxxf_)xpoh3O&Tem_mkn!QX~ zwnnt5Nl${zk2|$wlg=Gt0GzYgXqahKyhhs78o&yDf7`{07S+j4j4T?n1bm>hJ5COz z9j6?6B#(yDSN(fFPDUi7MKvQb^vhY)@HeOGeXUs%&&MY@_~`diS~&)u09&j~WADmi zyZh$mYgu@w7bKeCDW3C}2|>rD`Xa-`m~B`bpeLWVxGgU!#N09A@H#Yst;x@-{4i|F zaHeQoz%@u~3ITAI@LlpBg3q370&%erD^Gf};G(4R*>-OCn39M6wrVd62*hjEQiQ^* zu{np;v=9Q9Wc|LCszCccvNyQNt%0rDs_mYTiJJ#FCwwn5vsXVVJ@|zU0u=bR`R^&L z95d!Y(UAOhG%Y_$Xwn4m%m;(o zV9=#7#Ej7~(yAygXD&gZP;{~{j+UY;3c~o%M!w91e4SQ=Gsh7?jUGGw;3j@;FET$6 zrE^TIz#;OtV8Qg2W*^AW%;{(ryIoAQJ=*=gfB;;%4yOP==?&?VpbSjItRWXxsEW3! zdvr$U+vSoab2v+7*55QFIrQR3N74jtG(?Ua@^IS9%>A;IR#MpZ^>6GqqzHgRxNAMo z(_E=0D0H@l<<11rP9H8oyYNYL3vf9%J$rI1K$1VnL}VKqh3=@g+=*v}IB_f`J(dm> zRo5u9BkM;%MJG`UdTM0E*{OAN0#xubMMEa9z*UVMl;J28`vsjI;N927sIk+ zNz>IHP{Cqk3)@N|4g-JBYr8EDp#SDn_7(@1G(Ni5$2=SfS=~yAdg~y`pr7?|8|w)g znp~k!&U#%YiU!UM$7J6>c!V1GBh&dxEixkN8c7$t`L9GTw{dppT^H9zORC@Aeh#K) z9agXaa0cqLKET&$ckki*?&sgz?S$f z`?d7!r-AG5R})J2x77U{X$2KQ=Y1Ztuy93>&El9|$yWmQbU0B*ZyFD(MFLVGa$KnC zK8aO!3nU;AM}gg$k3-qnueI`Dup6z<81&PkfTVQGL$_=!0pGFF<^H8Q;kmtBpvw) z@x-sW?1Hd1$+nwpvl~B59&VY{Lmx`S@YsJ*O@wzWe};|Y0oXeiwe63Wht4YX10ZY3 zBvEDC$0AS;jiH#k`?COR;f%|ArCe`5d|0I75Q+NQ`l{v^@pZ;~;XZdGcTSu4tbm&L zO)6={J%=X^6WS#G&+>JP?4oTYxd9MR;zC2T)o#Tth`yz{8*tNx_AgiT*qz{guoiE8 zr0_Z8vMsxtVB7s9Ah&mO_(rUs7t<=XIJ$7N^yvdMWWv;UFj#X+lY7_^fCb;{PLp<^ zl%xx$dxO?`lJc5KT}n6e7vW?|tz*xJs5q#zAC*9!g5ilS>RN+odFtt%93JTbAhFB9 zB6MlGnFcY8!<6DolV@GAJ4yvO`4%U#SOGl~c(l5AHHn$*H}>gD*u6e^6}f3@RW(VF z3n3vfOB*FPGbWHQRew7{K;xtA@nIAL%`Gvme`)Au4im+|EH!rGe2TIY`=rkb7^WbP zWB%ih(Tn*Ky7T5mA{ck~wF%a9rua>h#Bjsx%+5#eflcvUEsB{SYo>4TP9fbE%FI`0 z<~Oy6>-x&%Ag`Oa4ynLKJDSy0jy9lJ*yY-6t~u$98EUXEMoAS}%){c3Wg{WDgI){PRN^c-jer2{MP|mm{i|Sy@NrF*L`VQkF_ltxYinTFqZIEQG z{T==aj)0QUdvy9o0cDk}AOfhFW(UOhsb^x?hSX9mXIWdwqWI>z!xebzxw@ zQ&;jyq9gzqTd+ws;#C1K{Z1M&N2(FSa!$=Y6>J)5E1GUq`0gOL*h0HAx)Y0lc9L?c zYsAr!(C6Th7je$htBuFh=xsp7rGYv1d(r=O)j{O+1CJA~oW;L8JnJRI0>5mZNpr@Z z?BUN=$X$*`hKkw9x&ut=_pR667QQ)2#f^j~A+744jJmy4ja$DKAsDX^_jR^bDMW!0 zaD-)?Wq%F|z@7RCea@z4ssJ2U4PH2&KBG%}WF;a37-{~LRPpCX-o+jr&%Kow^ILj1 zr^t>v;!UGT=V@8z<5G+I@DqjM6^y!ifX4B%&08z&``q(-{2iyg)Q|}99nkeP)_Nsa z++hT>t_x$@c+ric&kZ`P&zs4_w-kkuY(*Hy%&)x9Uk@=PGtdlUUjvdtJyUy9rm*v3qys@mG-qkrV0UtG+_`G2(*Un** zH)rc~%Z8$fSZb)Qdu`4j<6h+y z1EQqxCmS!tCtoP&3F!z^j0(t^ZwgO)b0Hm#TL(xk=*+^owVY`0CGoDAv<)TUl%<4Y9Y2G@gGnhTB``qFL{m@Vu zxR3dVRjjK%@cf?flXL0vf90>7=SkD-QeycLRA~P8EmlgvA>e)Sj*nXcV7EOTp5?yd zQ$>Tta>~ZwEZf-ok6T^9IjQmsLtnST53%h46IGd}@oT0VI%a0nNT2cZtz`&U^pG{Hv`Dd3BAr-8+}r`ltGBh-U~VekRvfw%JIgz z@=*R$KDZ5PNtGX_R{#BojK{oX6`Zb3oi48+c*uOBe-}p>wvgRM)Y0zWkU9ql8u#M1 zos9vDCcyj2RjmF;UcQ!#HpgG!bAE0+gXNp()&o!I7fHeo2Se)RL=QSi{=@=siPh~W&8+PUL!h((`^)H zWLgvNdo!9;vZg6af`z#0D_&yB_{4uEN=ce&mEUm?Srv!YO2GA=p3U38S;5aXN_j8g zb-i;~05ewAS4~Uo<-p-GPmm+XXL29AG>PUE(hw=bAbJM3$C5hT17#2DNm}sPq!|4R zbeR94CK_4c9XXpWlJj;6W#o0)*h)$?a+TUG=7zN z_XzH+|BuRde|`#QOmtx${Kj}4U*_((`-VU2Ih7X1aoed8&VaXtOQ)~r7=WDW_V5Mr zVt+WkE@4=cR3KSL0y}K!o(`g(jJ4B=S9m_iF}!{b+4n-7X6hHNw~L+%-5VMty;_n5 zE#a!(ApjNtGtRtuxe}~mQh)etClU>08H195?o}y%>~#Y!e;Mr}H79?(8g?iBU*{!8 z%u4h(K=^B#@~}m%Xr}O!sqek52F_piH!yV2{8=2%j*uiiEJ^g&8!f?+(lxSHHwm3sQ4#0h9PQ@VE!cRMwf z(oOPV zjgO`yfrZkI$XCH_pZ@K-e$B;yEn=li% zHuAscE=m17ZGX(oja2Bt#=h)IYbiu((?J^3Q%0XWqCi3IZTR+qv&NN4eUuO%yA;|$ z^Vh}-yZQL^q8Y=}C(amr6(31?&LK@{T&CZNev-bq;HxF4^CyedrblJy(ChAF8^&P# z6lYH8WIXz7i3#4_0ZUv6n_bS^ZuhH&uDVCR|>e15Tc?!D*FbX&()QZ zE0mL*g*Xr#8jP_Ji{(!(bMuvck9JxVr4 z31lr&O=LO3v5`>YcsQIaN?peXzi6A>oNiWPedYr^qlc@?YZ2l_>y)FtXbm^rI2HHg z7{M_xG}6_3tf8%;`B)$P2HKh$I(qs#I=b2+CwaQ$OvfI@#d}E*fHf%k6VUfQ(KKZ9 zUNxOn-OtDMWiBAejYEfyCt+~)N3~Bt@nhhsXx$H}T@;`pQ_m1fW^3CE35<5LtPC~y zllM!5pYx+zj4={mY$SWv7EEAmUU!VJ+WfpPpzPrK-g4~5BZf`$u_S3a{x*)rTiNPg zgQ|fkz^gxUYkSDyJdsH!;JuoHc8|Ax@%cLD67}Orr6dEcV)ES6kb;>*Pr&x7Y~?}2 zg%8Y1lB^kkbHAM)inN85XS0;StmE7J$DF z*q&*PmGTlj= zxQy4^|5-Nv!Zc6iC!T4LE8u=w1aQXzzSr~fmA{_~Xa0myT6V@{M9-3#HlUA$>0vj? z50tTtrnwD(Xs7Lbjv3+0?|NE~A76r8?hJK1y=)oVvfKU<;u4XAv;~@KW9KR5Dp8~Q zMVdnZibp>~EO#(#K6ds2cLdmf-M1%9>!92AKE&l&0ezj0GbPGl;ZK2xLNEZRe0pFv)cI?bpt-#vyx0O9H2w2qeZLbA-@w4tGFjPTXml=ya0WW{K3#HoLzx zcrE_j-7J#}%0_Bv>rXTZnWbt{xYVOC{V(=eTv1gsc=HbpWg!F?K@~9V1*cNy*R-x! zNvfG`RgYLYjmPaILNZmHRxQL)nKE3Rlq6X?%=pG7*l<#bUwGn&=9SBV0+coo=a22{ zB#$7T#E?riD1r&9!wD&X5Zx@!oKL0U4}Uz@-?WF>?_ZgJeGmLg#JB%5x4HL8Kc%}5r2fquXq_b=Xf;W z=A{B4nh{p_9X2jHIj+qLiAsih4HoYT@85=wKZ?=Zuop6hMu2$QN87ck`{5~6S zf1E=6&xrad0>2>+A_P{fKeJ}sQ&mv}GKe)0bo}e{WdMSQd~`-pt1oncMcJk#m2*Da ze>CNz$^{$@cE79hDRVPJNq&ZUQG(^1^JI;v6$FmUZhj}Lu%W2cSS!|hwAb>U?hn1< z6v{#q^h3X+!`i}``te!%-B{(HvB(>;_J==_k3&)5+~pqoMI8XyJHj&cm>}OOW=WF% zfhmB+x$hV5Vn6o?0X)mB`#=IglrCx`8Cdpg@I%QMB3Z$)iY82{voWhmsj2Btz+$=95%^_W?|$caSo6 z&2#9;3Dt-;M2=5()Lh~*jsDqG9d#M>95DTfrOQ0ZVo<9j>2}U!Yb!44S8SLRO8F|W zykUdkPa<^Oq4Q`L47jkC(Oeyd5cBb9=q$e6qz70yS5c|#9v|vl&he7{q;>$FWJsDv zDOGW3o%}YzuQi_2UCmrnex_eam=(KB;PvHv=$)uNu1=9*0Een5uNA<5j~P}X#7Lsf zhK@>A65FdMCj^mvs#DES7;NK7#y#S{eJ?U{Ku{M0JB^E&=&VF zh~sB2K4uz@xyX9{M=FIw&&JcJ{(j?^!UrJDj8~V?-ejK)dM*9r@44=e2vQ4OM|Hg^ z2|YP1tq%eS@D}sCFCdoezDtg2F%SRT$&aI2l5px?f1{uAi;>6wKC6>!F#0KS{TPrH zynnW_iTTT+w;$JcSLjVA<+-5my;g$YS~Pas%YId$piD@>pNW~&ybzB)oL<|JY%{Jq0>MC zcCQJUFJCp8!Q_~9jp91C`gArC*@$OYNYbrj)L!{KZCF2qBJHDskS^7gvNu0}H%r=F$>Oa2_e*{Lf)bpoRG?P== zZoyQ5@EgKUDd7_owWtou(7in~y28h;KA#~W-^xVc)`Ae-%g0jaY+uAl#^TJ&-O=Z4 zYu)MFaOW=A)bKg!O(<7(9?v`6h(6<|K^iDh`t^J5S8aYm5Akp7Ec7X*>`~3qcggq>G5e!8o(M*4D@|)NH>;YZ-&(xeYt09~(fQAIya=jcZf(MD*+Rrm z7OZ+)6N^Gi*;}nr@dgn~&uJ)FV|nq>a)WdGDX)bFLXuBZtA;$>d&AwZg(WlB?~1Bt%GC8$ zL;TtiiIBnGXW8Vkzh+JgDPC>KJr360s!T*nANowiuRwktZ_E?#OYR(BmdH%EM^-FS zi7`9UsMvipt*%SpMiXAkD>bi%#trH+a@+9&bDj+Cgo_k&U`9rvo`33I60cD7Bz_7o znTy}k;YTX+STP)C%oL0WGd#C~Kv-Ppl;B@=C699Uk+{P1?o?kivqNH=>_TO45s;@U zv#Z?5&zd)ukr#;t89AB5XS&hU!H~n$DxHqbFjgcg>-);kYSy$UiZX7yP2Y^+eCV~? z-(ze*V36-%Z^(1Fma89}y%}w@70LsNn%<4ON_)dTNHq8ppat?Blumm|%cF3=`Exx} zs*(9n`zn>laMp}UD&Dx;NA$x)d)uWaEQ*NfxM*J!Ti2kQD$lQW5Q3KYRxuQAh9T3 zU;f7eX(6N<%2H3Arn|-~zWMnE5-8+Egio2p`5{P!+*~HKvO5VPOyBAnj zxC~?fJS`=x{Q!r zvewFDMvRnpz#w6J!SLX9QCc$Occ+I_bhWvvK@@2cY_+{8CyN4a8UK$40@njeecLKa z)kvpgj;mpbL;{)vj6SlD=Ep`IeR%q-o#ol=6g16WImFZ+wdmw>=;x+} z01_vdjv=Q&Q<;e%7VW>7fzE$1q&0u?=>**`Sr-|B&IX{5qo8u*L~zx~ja>23M1*D= zoZOi6L#i$`sa{dmrv6R2y@Zn@{z9Ry;>_u92D0VI1kJoIhz_pMu>m(X-veNuApw~B zi8hMt-*6tr``VFh*oRhWaS8qNKUGjAx0;1iIHvNDi^~#pn1#85WKu$Mai#2+o)XK2 z@*f1leRDJOFb=&x;5k6n&H;3BW`Pe5Fl%ucBV9@2z0%!hgBX?T@|dGvr5*{eYf|t6 z3PE{s>b?|(D8S>wnXMX!00t`7p>rgXxLwwJ>*OE(I@Xo$=oA&Jyqtw*UzCip$SvQH zIt*)IXr65X8mqcjt)~}kZ-r_{(TvJs2$Q}y`67JqtkYp0(41S&BMC$)-n9skLyKpZc%du3>s7!WdTBk zxf7fA3_w-UT`^P86biv141bG1R+LK$F?&KvZ)nc=uzBv{lQbUUq zL%2%Yt2sF{q1{y#k2*Vv45>Jcinyh!a_MrTZT;xu`{Dj(^Oa~;+{-Aq6;1LM9Siio z)4|dsS0*wwc!3^`pHZ}(CnPXS7c&|V#`IvNWjyOrWCKYI77Q*rBv27}U(gRlN)ENH z9}&(u97;t=>8KYkRkghoHeljLlrV>7OHIA`Xi!6w)2dJ+S^6LTH5n8bz9Vsw;u|av zV4(Ro!&3H-368_4luRo(F?0WDW4=rqRxJRQ?*~ESb*_7%m?7U628v$tH6bbM*S~j?c?#fUZBQG^nGDDX}G?|2aXf zDh~&E%&Wso6U#VksUD3K1EE@3N&}c}k2A8rpcpR-?@9XQctq^<634Ix*E0`RmT9Dm zk4kaxKi9taPS<>R0PtjrHU*2}*^6!tQP@{3TKA;{=*Fp>q6|wE-FO8rq*Sh{Mi?iYQ!;Uma3knT zU)VD3PTB3#zj`O_W1{J`_}y*)v$qMZ50)mtcLPvvgRS?DN$z&GH#~EGK8ltAf8-6O zsb{fz&0W?9$Hk{V{wrK;P+IF35|bbN9*4a8spF&)4zRJNy8=v;#DiKI*#R?JxM>B( z196`rvEwpvF#@vdddmp}RyVgx}{Ws5#*88VS zAz8=|MKt3rGRAJ+i!IdSu{JpL^bMLbo-JX$Y;ae0(Fk(Yq0U78fi0gDWL;Sv7qOsF z`O*~GdK@_9ION0_;Lpti0U1P30v(SOgh7fja`d-{3xH9iLY!4}ZfCJ6G@d~QhW0eduoou4;#3CZ(u-!g4%KEX@lSGx)0_Y{Q;^7n5;0#BU zLYd4yn~Hg&J@$-?135msi-JB?Z^9FDoV0N2BDy;$ePRKRmZ=qis($p|W{N3AcOp&KKx1W< z(Si~nj5el!7;nI-tR!YkQh<&U-$&!U+yxApoLz(TPF!njT>gx*o_ho`K6m^~E&7aX zbo|L=N2+~XzD)k**1Ai*u$XVI72Lv)VH}fr+Y7uH&S5zpJVP7j484S1g*ZC-0f5et zNH1sp7l{AAAIxi0l8>WT;I}tfC8MQO>>&V!3#;n~rl*f(o*|ul1}LThk*V0u zQg*k8g^x18l<0QP>kEuP)6F%6&bdRSK8F+10q_w&c`3kIKRLI;A>AXxw^@l;x3;PW z+SD-JMTf)9E&rZWYMGaB$~j5)=Y7)xuL9@hA=GqLS14lE>g+f)w;E^4{;n8#z z`F(vX)&c^u)~X@nXY;ppz~z08R%wQ#P%ps0*8*6)c}h7`&xyQ+a+T{k z%d3cV_`f@uscE8BBN5l^fXlt)1)%tT#Oa~Iyc|aYz4aqoy%`C&%L1k(@)SZXqCyFG* z8D8({aDrOf%>5^er4HxnWkPu` zY(51o8ct95V)xNFc{UD=Bttaen8j+rtDch7an3R33J&;Nn7Y7P^BCg9vl-@+7*AE# z04T2qRh26O+DpbiJmT_fMLwPZkRb2Zui~dwTD&ef#cc*=YXH>!R?^70tA=slCQ*Ji zqM9#TBl%-GSrbbf!2SD4;Dw@_SdU@M9G|SGfWY;GK9#jNpg*lnbJ|q2a2n^4X>|MS zJGa&gX+@pspQ`XQJg8OA@x|)-IHAqaqtzIN4K%rIX4>Z-YyuW;fR;vvAPaO>sz~Sh z!6~~Gx(WCttDkA-w$ijYJlwG4irBJVvdqDrr!{u_;7%RqN>IF5-x9+yTJwPeSm_0e>LVAlXP`*-TfkFO#P5M z9zO_hHe#NO%xSg!r{#B%9Up^lDPHvrT{a%DRoJ|Ix!{KAUC77jg=WNn^Fzy?&jb#Z zIGQP*x=(Iaq>w8|x-=R6+z!Bx)L)Nrgsf&V)GT|Na6O7d`p9UeiN zUc%7}bdm#+nHy`Ta_O`z)oJwT;3!hr^=N8B={KAC1_;Pw`w3=}+bry(R=p>I*>k$; z43HO@KcTP5!iXoJN21Z=@YLbpPpku2HMQepoQfu`_B#~dfA2Xq&DWPRKo$&5n2 zzQ)dQO7PS+odI2I68(8*FEfBrC(U3DmMHPgnNXITC%{iX!BWl3u$h^a<(So|jK?7$ z&9*}hhJD6ZuO4^upTZY!q3)6Y9!*2;lCjn^7+ovU&9WS29#1jMzkD|6Uc!1RI}Mnw zLeb@mh+zle;@#h}?2S#~kDrHTnAbzRgE!<@ilNu)+ER!|e#bl_RHT7`0v(GJ==fu zXp(y^|Hj8myKq-8?<+cwDpN5m=u^;`Z8f9cB(anW~jw9!;WL?$f zIp3$CwI%>9siQyutC>HP7cV})6?wqg-4t*)N583F+mfNzKd7h6Kf9paz7%Pj{u}gk z-NKi2?k}AiU12+pR|HuY9H;Wn>;!;h!|p0%6+efO z2G^ipI-ZOndFN{2`@yS-MGZ-392sPk*i?ml~0ucO`nG6Pr z%V!h4ElQ!8!QUYLvx;DP-e}jsWu)|qcY;fFP?$G znBEab2fhp=vOEJ#Pvt1eM1(d0pDs#a!k+wo8Dtb^`iUsLO%sX_*li z1)0S1nD&h0&8U%3jL$`Um_I)Xa3jGM7f~r0Jkj{$MqT?uVnwVb<_N5dM(3{H>M^0M zK58I}mkk?LJI&P%!NF6FK~FFRl1gOCH37iv;#WpuH^w^e56yRqfj@!9u0Ftehqr~U z5SFALy1TB<^>@LRhx{{%ggpASBOqg9kcYv5$LTz}H3)Sas6_~-Ymk)+qXIBBW4#4E z)Yt09XkPD3VF;?2IizvQku3#rArRKQyUXTjsv4GV(0L6NFeG>%6C*xT@{Z$)iGQKN zT;(Q@Gm98^n*J#1=xpc*VoW;-_VWd=UkH}|HAC3bm*yF=Bx24(2x0EQ;x0^hiQ^M$ zCZR(F{zOuiH3vz!gm(a$Q#L?%N;Hl(REuKuyEELmZB=*ED( z%QX>DWZgPP7rG>n0Gb8=73d+uuiN5b9>UeI5z9y20PWo6g9DP?Jwm%>m=|Fyra2K!?38 z`O%5Zl2n!!VD}ETB$n)pP!$Q1*)XC~BJ{>q2Kzh?X?OOR*_Ad-7K?pOq+K2foH(2@ zItvBK=!eG53eR*X0a1|}1{GkzL{PEYb)uDPl0nEKzUZ~+GeDnBC56NXTVM`5=ie(} z+rZ!=N~Z&8*%^V!sI4AZcXR5JuzLd$6vt(MEjcOhE!6VahLNR9ss-kQQVGPcmC?~w zKRwT^QNf~_Jv?7mvP%AxUsN;apDmL1a%~JHqN|jDH>Xh1qS-HpQ^eQXxgSCgd&!^^ z6sW$IfmyTXfG$&|M?j5E`%Qz}0k13#bG-F|DNfls+cehB6akfBmsH|p@3j!}ZOqat zlB?!D{IFg3lDxia1J+IxlbfWcxfO}fYZBux7Lf99FUaG_>c$LKrYwvmW9RNe`bDo8 zKrv@!eF~!9fS%EXuKU_HM1~K6jtX2V|EUC^NEYLL7Me^a_8p*q@m4YS{-o)>um4*| zY{_tqZ{~T)-;SW0><*nHqZuawJ&oDpr0p=J{%8kejbSYheIH}{ekQ#_ni`xju`;4n3 zRRGJJFMXVH+x*OH&}NalQRh`PG<@pDN&or4wHN7}9Me|8LhLVXjRlbf1?=M|mw`eZ zB})(FGG(`{2#D+^z~CPKv-n7HQJD?t3{7rrsdAN*S^`*F)-~%f874$HBf)_(EMMPn zYQ#47kgnDoj3)rh{J@N2PZLwM>(N-OxpCF;H$MSORq%iN1rFr1y&0XD?~3|<9r?9A z&4+4e-sQe?*mLq3Y}rarQce%?l?$Iolr4KBK!8m>C4n4gxQ_EbB_$g5U**h1SrSAKo}m&K&$}MXGa2lJM3_f_0xA5VadMY z6gB3ab=e?^Du8M5D(i{Po-Lg$CkZuirrDgmI*f1-1*q^D8itOKA|6LME{Z3yZ1Nh!o-DT??qeyOw6r((`bU11`-wB5S za)-#xQGqBVpm(TTaZ^Zx8->Fp<<1Ov zEayhC0zW$;Ws1qp-%T-?Wk%Go3k{+8Z|cP!DE{)2Ps{Y=Mr86km4VRRJr4-g@9VAS z*Un+?&yGhAJII=??*3+CNWNePUF!Z-pL1~my%nJ8`sFuckvP;LE~~OYFGopRrG@#Q z<44!%#~2J?&fUb6hYeu0=7wmv{4<`2BoxtCCwDxM4v^npD9jOddEx{jF)2220hAM= zEEM~-89`vCB6!Q2h;l$RSwXr2{k%n`nvUSppH}`8YCfXUZdE>?2%g*RC3oF*{H)mc zX6WiI^71VBkR}^}p27uJUr?O|V81*`A>fe6hOG9wnbsQEa>Tr*0GJ<(lP~Q*cO!@! z$bX_okASzmNPeuN+do|%TUoO&P6X>NF-B zO$@J&X*Fn?CtE8Le$O+z&gopl^wk*cuU~6SIV6X<;>#RUnSxU!PJX0*gv_3PZJjC} z$1qz&_R_G)$k7{&mMp!Xp*l2v@K3TcmZ__|5t}O$#o}Wp(fgr`cQu^CC5co#6Wn}_ zV?<`|1Ynn7!lc9X?Hm1!L6&`adG4~`Rg5HQI3CL5!o3iN9X5o#l82IXGgC+BqA{P> zH`aw3y14yaOJ{fpS*9T`y{w=u3|MR~^AD(;4DpLaIArUy8wAi@i)OPFWwS(&G`#>u_$hHtSTlkXq5(&W zgDU7=+4_f(CkYP}w=(nqs*P%e{=rbW(LLo?MOIYb4Y+31R<$wPsvs`SBMq@{8}V(W z4Zh1rP;}8wgYaI3p-nPV(jIP2fNfc)PPtOd=BXrPqPbsgsmtJ`K2hjmHf)*gh;Jif zS=|PQa9RFIiM}B)PXzc&1uUCAn!&iYdp1o@yFTkP5q>8PdwosL2YKu@3fE5TbM%JGF8GxizwzU;pA zI75&{sM$A+@aEs*{{)zOZ-6ul%I3y8KP~74AW;TZUZ=en_7S@xzL-Y81{-&IFGp7Y z-7=t!FSR@pNM+<uBIX&awU+j$&4SF&0trm5isBxJ-vm;<(>s;xw%Kx&N6 zG^m%Y&Fauv^ro{(hUj1?l0^4HY$8jr2IB4v0VcWs)3>U7NtFD4sicTG5a-1VCtH96 zMiyyD{?nkoNv;Cd$uSs|G1XDV%O9YB%(KUkBHQ;qA9#wOq+u!Bcv0ySkM!u^4bse34{b28{N<&K@bF$bM%br?6sROny>nC{4=Qt5QUUo4l3 zn&)<~#EBWlRE8Z-<|NvR9Th=Iy-|RJQ+N!)C|n^Y*27j}bq@U=Z{qlSmxd^(&jUY< z3{2I7vR>#&*=HBMt!WJh@FH=~)1241Mn*cIKxTEcO>c zZWsVaG-B5i_JYM7T284s*1!7`GRJV-t9n|3tvk1tnt@Z6l8#7m->RZGjr>;IUzI)H zTkcDYA^Vo7kFwf)A*A{f0D$}sIi^(mdY9zE$#mvZfs6c3zs6^qYa0`ohTaKcS6!yh^hSL~NXePN#4ihJT}(lQ!0Jd15zr!=Hik9zUgc>A7>S&ctG>Uail zW22d5GG6&bjYrr1WZS`&^nLAGh=~J}efl9-7vxa9?E!>TYSIR)bn0JF3f~W9?NoM% zezAqi!Ue_mTG@^f`X9f$x8HvmMiD$~H*$AA+nTHdGk~PEHt_@(BzuhVT^9SLi)`>$ zrWM?r^rH9ahU_e5$rkjwD+u6j2pH#d$S9~XuwFj8ddhA7=_|^FNQ}TM$tQwC(nF{| zOH@HJ-rhvYsgaGzJdjvNA&9r6oP8O1bVRZ+DSkxKXY0dr#)u4jh#U-QTG#}2K=T~FqUVmsOL3|BT2F*(?R5g=0xMZ zf{JCykBy%Qy)cE;kdFh>{h#zQ)Bj>CN}WC9>aQ29Mgn_QH2<=glSy1-QH3`QKoOZA z2i1iXQYXs;sC-nNN|AKZ;d|l0;_ntbUq6UV!BXAQH=5KLeM`E!rb(s*M2oOUkFEJd zJfZ)6s|>vFcm**MsstIVJgk)$y1me^%{G{aYIJ`X96-G3sGM(ds@yLc%h`vJ4`a8} zlRKk?cZ#dDg}dQ =CO@`&@X3w8R&ItLPdh=Jgpz5Lb0d0ukT?7kUg}qyP5_hU)s%+qVB+f2 z_K|%c3D7e$1ir;tsP)NGNVs1DB@lKfF(D zbX(bFU!T($(>P5U{Y3)qjy2DF)UP7sUx8+1-fybB2jkdsxPgP`eoM}aimyytUq1Vj zw+XsqOOS~sM|(FhRF{emo7yJLjWP_VHPT}Km_3VEiN1=#?w*2bZ}|5zcZdUw-*P5n zV&vKr%umH(+0<_K({$|SUy3LsbF6q$WX<`C5)oRx9jDVVTL|`lGq&DJE7W#TjEWP~ zT4pnI-na`4A;nq`CNo7_*=jK(liP>XW;YW!IP5!K2|B0fNA}{zo>Y1?#9p#?VI7<& z6TR9?J3G0mH6tts(2&R1rgIl>*Z=x&2da2GZJtcXcO0geL{?^ACIG88AeMSO7^}5`@E^Yg#1ox$5lqJ0)*-pQK*2N{N3|dX zLK6BnzgAc-fVtb3__;>qBVn&(ve8`{VfXWlc5*)QM*Kzws!pVKmaFu#IW6Rq+tjau1Q6nEOyk_Pyx zX9OmdLjB9n)Ow!Z*AHS<_7z|$H4EFRKQRSw&V%iQVg%WN%8ysI-O>t-G+mRrf+V$^ zWH$`vU%3T^4H9r$VN%=(%pc4NFy&H=0P5`;vwDzs68DPt{jLKHC8OZo< z2#7Y2mu(m^m%Fl!Z!+BmUs~&Y?@Z2L+Fq*@I(>+kUR zdiR6vxIV1Z@=^3;_mOS71wd%&pvzZf_We!753RdgMA_py$td_}(l^6wwc_|*%s<== zG3rpjCE*WbPr3fmc{O#Sru~*i^SXekQ{612$E$d!q%YNYo*II% zofgYUi*nQNH)rTXSnyuEYQ=Mg$QFKK&MnW`80uVJ5Y+Q=`Ndzn5;aK!pZ5OlC zdfHX(1P0gdTd)^N1$bZ_g;*JM$EkgwFRH};=&GHOX$&HF?2XWm>pZhzkakubQu|>sr!kYVE7}O=F5Ot!i2{ zoW(dCAF0S*knj2aj><)vS{<^cqHO}`szT~gzji0oKG#=<>EuT`!>hm>H_i|0iF9B<9s}i{T-2VM?AwwU1l#znaMC z&AhUfom>Fb?-{4r0Qg<=53+fJc%}j*9f=U-Y?~VeOH_U-qyGfC~XpTP;Bqt^8 zIdkCPncR52rvd4-N#{ToW^+p~kudRML4X6Lsm_?FLw$RBFas3fPJWX4O;2Uc6j(xw zUt&XU;a_lM{sB&1=NLoPq42P#fr~MVov}=0BUv0qOfMj2q+#-%BrIJ($Cu#x_oUgy zappWZ;DxstQ!3yZCdPSV#XICpRhJT_rAgfSh{1EJ7pnJk=T%%iY{v@iaO5&R=-E84 zuO@bUkwd1F*N?3Cent)Cap0%RZfDs|VnlhL`+>RnLvQqx$M3M_?eH2ZFugVZ;n-0Y zR7ZvrgsPkZmT`tG@NVtU!Lyud;dXgkwNteUPA}WVnETBe=%7!(% zhDUV_;N|{Z-yEuFR0*eDHa$i&F5D;*WrEbQYgyb!3jpoz4N--I&jD{1KKe@L5-bTTh9EzxX zjBr=vHx@xa8EhD8OyL(XGJ;>|XY>Oc9?dc;9s;Zl)g$gZVtw7%z`~Nkd)~2E>ZU-1OpU~xkmH=!!Yi@^4Y#nx}(Ty#jd2y1QMy?cUcdKYbot-U(g-< z(f)`eWq|$D=Q6Gt2ICXdF$D+g{YcZ)^JO&%Qyi5CU~sqUYo#sN)uO zPl@|uQTcEtb`_e!20&8XxOY|8Yd#hcWbk&=H;x;%PHLSX0rsq+eA&ORRIhKUU|BiJ zB9g^f*A0vJg(RoC7dD^^LJx2cC79$&N z8V6V|$###V*#Q=fhT)R?f|!f_VG#mCn4=~ZGn|&TIGII>fFzQYn)S00ugt6m!JvwZ z?L`z)$b%$4mdo*-=t2+m=GS#uzWWdMuxOL5A79`Ydjd8p^@+WZlPfZ#H2Ec#f6qT( zoi∈=8|qgb6Jg!6C+%zj#M(Q>`o3O%~`8;pf8Gn?G++@N#>0OqEAkMz9Y6Iy3t` zM|j!KLp{?9U7kA8yJUwxVOjrl%5@FZ?50+i@WN? zn~19K2Yf%Z(N%Md0g$<%B8xA4T~WX9!2~lNqpvgF7qg!ZAs~2;pV3=Hf1#`I12=NH zGIJDI84^8bCscU)z=#B)*C#286cYG$10!hO#xU&K=zbhZHs~FQtZCSOd7>zNXSTXF zD};c2y~Tq=$l-0e%efXYuX!UrMWY$5LH=zNdJFIS8V+g#5T!`U5MhiCWiPALFlaPG z&{5B4wnY>zFAdjK{dk`ztBJAO3rJ-?wU4gv&X99@6 z?Q3Cy9lhy{*HQ=}dBatkO|vQfEf%^S_aC36!YPKho*Uc%qqCe91_<- ze|MWRaa>?K*PG&3y0{j+Gwi3MZeD7d!^?-3kSO^Tj#&lA47iv zEhR?PA4tiecy=t!giDnwn*fD*GVK3nuV2p?gAWba1E8gQ3s-zwzG5zMY(MeawqL%6RYV*5zm=^ zk_ay6Q}dby9$;~c+n1=cLSs`;IP?qoURFg*r8tiQ)~fdh`!LE{AED@FV=>>LE(2(F zMbxxThG|q(OVx^43oAD^<&y$wfo zY+_dc-f>x|3y=8p)wLGSQeE^gYyIB?{OeP6!oL$w^az>A^rNQ_>9FdJ6%pv-?+}2p zI*JoB*EG;PlI{eKf2CeW^esdCN8@LUf;ZY_3``6TA`8_txa9Dkx11aGsW^&&hfGge zHWL)d8T^QiXY-UJnGdqjBTJ zFvKIaOz7_+x`5ps0X~V?WLiGXM4^cHOV>1BpYun&vpV22OsGAzSk`4uGn&HI0npLp z7Js>V^Jo8Uj3!HaS`I=}7fO=>VACdV=jQNy`eDg#JXDiC8FAAYNDDij_?YRI`6i5W z;VGk_N9(up%JRJEUNB;qr)_E#+~ORMm{R_+vrJZSz==Q)vtct3bg%gx=QN{>x+K?t zS?65UH`Kj2_&~?FZBj=6kP7IhV;KBQh1B&0?Cq7`rEWrQZ&M2&p`pgqi(}?}v?fKl<;h$xXwdK-)ih)3MfJJ< zu{cbLCMDq^1~zmCu?~lsBi>}YM8d3X_le2 z7gWmn8XG8)mBV_Wu|< z>$j%cFp57LqdTP;-AFewx<+?OOG``nI!Zx0rMtUEBS;Ad(y1sQT@s1`>bvXO58ppv zPn~n_&pD9}!$Z?~)8Z<)8x9E$a0gxuF}Dyk9T}SU@EWf`R(4~I{paRGN`UU3+xraI z=PE-`*l0A2m9>&@fZ8Y#{8(Gtd{=|NzX7Jx$ED>}jmcgMYni?kiZ-A|G9m!p>v%SM zY^q_RM6Thfas)nA)}=Da+*z(>RF2VnU_O&3iijN#=8(H$jaK7TaedrXije-jpw3m1 ziE;JwL=3URliq%rb`rvN+ydJX$5nf*CSNEuk8eI;(5s)bCiv&xtUr}X0uv>&VYG4N zsW%i)?bpwSz%9#vy@q)|LKD!O13hZ>UCD{#I6KE}kEs2Wq#YF70EFY2(@zW$Z0!9# zS_om}es_9Lnrgt(^*;Q?2a%WJy3H;$=cDh;`;7k3nw7kcz?K%jF5-{CPjU6%j}>xO zr2g;(53t;<+fR|?ah@c+Is^}?8g|cA(2T$Bk*~+6bLN+@hngC{P5`!C+wHxP(Mi3B z;d#Tk=lyHBOsp@TKcA$+kS;PKxff+Wc3sp0eBI#*w+dgH>k%j=ofVEnA>sb-|C|s2 zgV*h**_~xiZG4yghFDfGRAxF5RG#5Yt1lHlAiOJ9*@9u$91b8aS1_05pdn(!V6B6K z7R7#E2p}7rfIj^qOwMIoHX|iwr2&|IzH|RjW|gsSkP`njo2R6F0eHr`#}c}?R6FsN zSE)2LF_%n@)g3k}%)^KVDPDtVvxX-4bI|W5XYvcI-W0?jP_VfnOwYhre}7F`*ypK* zN3YYLqVQ$pLkOHy8!m&JnTMt=?urb;bHxQs7G6m@YpqxzM)*zmfY*)T1DYX70m1Eu zml(KBaJi`0XBtM_BJ@0&DK+zu;*t`85PKDTQDvpREL%yXepCyq8lwEjPsmF#LY#@8 zQmS0*p^y&YEw_hRXCtbl5&HOT6~0rCtVWb`E5_Ik66xlw02IG5FvA>~<{jNAis~AI zPj8PL4UL_bna5Lyyc|!pz!n|apG>$pLlo004XOIx5REBhszqZ`J!6kvXL&a!>we>r z`;o_%h?If@*dhhjD^)|R5GQi2?|?J^^h(843$@U>RTq0^=c4{0*?|n(Zkob6lnj>& z#kZVZlid7DN^YN_4@K~U&Gz4E;(WVcq2Vzm%eIYxyY|JKs216L$%;G`>3ph`XVcaJ zrUFYMYp>mBC5y=vaGp#P^*`^pMga1!idfWC6X}}Mq|&!DQWoS%*%WXrpN;zTQI-1F z-)iL@ABns-pyMe?*ffn`TRp+p=A`1L1X7M$Ygv=icc1d3y+z(j(i=sOXjK+m9uGne zNnQikN(|0$B9`@Hpz+QQzAzvVfde9czi%J@&XB$^xuRV~d{|S`)!r;3|L0cyE1fN< zV@qMwP~weL6{D!2bo1AzR@REw*0tfP0OwhPcvpcr%I6@qgg)$ZXl&AvjguL3xLzPA!XrC5mNYY$;9$5I`JuB&*k#cquDP ziA)G`y{lO&;#Rk_=kWDkbp4klIa7rP{_vQCK-6q#u@QU=r z!eg_ifk2|SedJe-;1tpQx8E7WF>ECHjZ~!Q{I{WFIfL6^-lV^FCE!8ibjiXjKc#Ro z0`gz!@S`w)n=aY_OxyTW7L&dK2D{!dna5=bp?W`Kw?USir8JZNGr@hpi9ijWCVjd% zrH;b7?4F{S<*9rE7>t$HIU*9COPW?bdRF11N#d$tkD*XG>1|>Pz0-W03{d3Xqt-Ix ziL7>f`+6*f0e*5N9+}FMwYYRM=2fGmPojH+HJuAf-=_LPi@c~a5)`T$pr8CGBtO{O zei7DA=rnORS8F<^nA~S2C-ix%jewJh$kJ(h3hh-kSm5NcznuAwr$3Z-#^ZPjW#z+tHULDj zqOkJL0K&S2`pkn!BmeMWkK~BLb$1${ueK;Q7VW`;KjlWwHmFr@3zel~gCZKsLgs^7B73VnlQR>>K=J)X{A?={OZ%1THbpv`flgFf+MqZ7XKmW1d=23HS{IMGgq#qB zGkadtakQPi97%TkRRplRH4ImJ9fG&+EyT7<1=|<@ZjBy-h9rl|+V{UH#&^0V+v^*-EGUsRZfO%XkEAQjK{8-)|9ut_x#b=NCJiOwR;JPj+4x*H zugFNWF*p}HhL~Xjj9EOXsesTn-|z?pD=f{48ocFhv0@(^mQwPV1){+*EJ;+>Jc7o$ zY%lLBlGoA^;O`fVZTUcg)lS^ZRamN*+HE#)mb|Z(>YqJbLMEWNf<777!qdebwaZgp zVtOw50fA}lam-K=p*VM>>_U!eH+xxMVc`Ka*_K17mbJ%_>6SK_>AVXwN;Oy#F+ z^WO?692v${oiiW#S6M0%zl0}pwjc{ZJW=!%=)&8Lp<50Y)kcA}GB{4!YW+i5XmtrT zDI;)&Ypy50oWNCOA$|`mO4APV5+%1NS@1E-_J!LQ>?d-O)ccE6T9uI#yz#WedW#>C zRNsQ1n0e9d0Z`y!M#)9eD3RRAv~bvR-A6{X&2hD7YeDQz{-@NZ&2IvxXPLPP^= zu(0>Y#Z(O7eYbgUYWX;>Aa-@gd~_WCeYU%?R&POp1qkhrpj0qFQ!>3wgyUi0-$@{h zSE<5)1T~M+_ALDIEL9^^iZGkjkNJ}UBJ59Hwf)hJsZ+YU(D4Pl$k9^Dwt}7S`?on` z&X7vT!;BLz(KkJV0&rbE^95Lj{xPgvMiZuQlP4~H6r0|6R!jh#;P&OZ zbcdcCE!&^16bwn4t9N#u0LW6i_lvy|!;#0GoG{`0ZsUy^g(qC35>2(PqYF-%r^QHZ zwus#_)`%aUN&v(st;T1yyC{a4Z@palrjUnu#gRuEQ2D-zFH+1fK;a0Jcp7H;b?|6k zbiCXUBk*Kky!$Af1hC{9f2L1A(w)bp&blr=M17qP<@U`1?CJL-vrAK?cGD($3XYIm zC~T%qNzZ(|>yJJm`-O(|nA#NvG~RV1Tdpg$YmH}t!gnPy?TH<{2>e3R_|^0oo40m-$^~*l=B7WU(%(gjg>y{FiqWk42~aE+8<%| zIVoh-y*2^C-E}7`A;5mdS^2FgvwOjvY%g~qd-<)p&MF?*4GiN-v`N^XdBr{vq*ko~ z1Gc78aV^jhi+#CN>Xaf4N7Rd!`2(LT#6H(G9LNarVpGAKsO$*_;dtWA1-0ssLgDsb z@N}jPamn-MR&=ULx(?s@Hq3!jOScI{o}@XcC6G{x(D0(S=b|Ga4$3=hYxI`*3+tP% zMEd2;RFPwn@>%4$O*!GEN{B2~`aMf#OC~xqGN1eMP)N4*#4c4b_XwaXh$`erJux7D zUIEkDBjZP>Hf2#3c<0CsLPT&*6E^jK{n zyrG(V?Dxm7a1DGPyJgyAC;A*kJTI%ax(%=_JL7dMNG+p1QPNmmBsm$a$xOxUNp8QB z=|>UVX(h{gN6M$gzbNW=S6*KW6Z(YTQ0;IzmAdTVOES$qP^GDV@Go@q>xp$$-KH=A z4D5fEAi>G3nvIZ0jK{{z#n{lxdc1EGyKn4hq_YONgAWxwcb3spLN8~B8!`!C~vHj<8+hSe7g>r{n-EY2(e zb%}sM>S2}XJ7v=<4xSgz+aW9hW6o)t(@c59%FDA6@f$Z@uM+2Z3MUZIVpXXnM5NdC zD)jl6H)sSPRlCD4_DaXvK8p^u!X1FUJO@PVL5Mm+>+N}|AyQRv@rNTUIg3XwtrTD% z$5ni{%QPTZO2CfjbwRK5qj0x7rU+#9^hlWLNd#FoKiy&dZIo43e?WK1YJ_A_+dh)I z2e7*8e+O|?`qWHCXuQ90e4X!dqc56LH7OO}CuI+~Xc+3NhFKu6SQ@H=rV440O<%hc zA%lV$lK=h?3lGC5-|*isBI0~lE%)-h)clOL*L?1)4&}Y8ZjgT9q9y&_Ado9M;Xf7X zy)WoB7ZL@9pOA7#2AvWB`}Y3zQyKIPH}mD_7PP)mxLm~)>1gbr@F#xac=xPE^mHwA zMn_8_+&GpCW}m04s>6yB=OAjxqz8Xp;Nf{`+$t7fvv|@=!+hmo1AxK|s7#E*pj6uT z-k&7BtApb{@s#pAztcXSP;27IA;Q2QLSXzp>?q=Ry z09Y$7E^uai3x`WC_!&PhQ2kQPB%?K{M+UfC^dD13RGTl%rZZ3qvcYInUC0KsOZGe3 zNlfhV60{K#XojraF-?B^OnZ>244NkI0G-e4~1oazR z??618BHpC;$vM;alrT=!47M(87&D9_c!C!KDw-OMnx=Rp>{0>oX=xc{)RzTpN}9PT zyLYUb8!2Y?%6%N_b)L31kHZGqg=LMK`-}%VuO+3!$gb&Zmood)zxPQ?1Dzj#(hkve zteUe%r2YJRD453`e2Sc%S~sM5JlsTKt^_MFDN@CIsGmY$EAL z{tnPD>7LmL@F2OPa_PUMDU={n?tnG42LNWx|DdO{rOu=xa{#WYw^yZqu|@35BD2jY zdRr-uq+M~AUPz|N_=rW-@ReIjBo2_#eu?TTBe8-{n*bKk8%EllSY$B$bY1%#GU3~Q z;h5$aaazyv3;z)e$Xq*}@9cgar3|5}os9N!dn)i9B?;mK_MjBU{A568CDm5-3knw7 zp9uRMej-Gbd7!$2!k_9Pd!&oPDu=eD{f(-VKy*K}-$qJ&@2LA)v!DC?uE-?wM+@{QQOp;HL*? zmGg;~HL*F|v9Ld%jM8r4;tjLOtKzNG<{#kWfou(HcrWz5@HnyL4@f}T0Fl3SfVkPs z!V2wFK25`aMcT>bUdo&)nJqOyFT&kVbg^yp?S@| z>U6H%j#M4r9xoCc?ZUDQzN|8EqRJz*Y)sgjY3B5mp^J^R34Po~z6BCsMovrP$qvHN z!8bZ`Xc5!kABc93&sk0NSRV*Md0eDmB{kbGYClr3wprn$r|P7IEuSF$lj#^nmGr{k z%p;xc`xOHVf9T(mxl1442t@VBO)dl2p9~s8o@S)_H4c05vMWUYeMGWkDfCpc;hcuh^DgvmFQsY1;(@jhFlzULOk7HoR6FI;3D*Xu zLlhMaMhTuLA$c5ODrTAZMhIAY@hOTl16QpMn<;DvJS=z1M}BzzX?$v*@HhFPLb~V<48)sq6%%!9G;H06z($?*` zyVV+C$WT}P!Jd*T+(49m9sWy+*H-7wVgByrJECasS(BT`m??ZxodUhOD@QF{mW~Dg z#rS@W3VZi#a~dXr^PdAkUK>9LYr;tWGW4fdGMI|gk)NQy?}q@{pQnYXFeY{CO6SwMMwOGQi$WKyi6b_@Yc>xpk+~A$wg9;3WN`VCg!iq zJ;#?>j*f#bLK7e8lb!jKH#_L_J>@E(B-t~~s2dj+>MwfGeO!Krt@*?bYby9>{2Vm< zO9@2cf}E|939sA;L?(gdJ`*8&p{xA7`5shErHbZ@pJv!^#|;#snw8UD)Xa= zdE?I9dD8ue+BXIFlau;ButMLvy2+L<3pPB4$pc90^>Oh;i4*>{F#w!%!C81sHts9+ zqW=L}7y2^A({=3wuCo{=z9E3!nmv^mqjvWY4!>M6;@%!CGw!8ha8dqtIWJb?xmP)t zc>D%|)6N`kKD>k}VYj#spIxEl8fALfF;b@A)jILrYo-1NFlmmTkfA7=h|}WQb?at# z!Fiw_mR&bQZxwla$iUYG`A|Q~{%(m7>NF@yi5Py_v5O^vM<|7Hz__$1Bn`IZt%YB7Y{^v~ zKPj`$zHqy&{_PGxVUXx1yJkgJid6u?(ogOJKt+kXRLEZv6Hv*~bM%E4O)6AD(zjc*fOw(PE~YRADEUnu|0ykN<%wja*GUz8Xz|J{?OT3kijop03~voV(wbrItl}_!6nLWHXyFW<2K~P-K+63=w`Iu^ zq>qafVQY;~*o&Ih`dOF!0O9n9mZ9q*JZ5w;`vhXo?I!cX(ubUDsuF%C$d6%qib@cG zy;z&>X!J`dCxAMr(-6EZ84zr>UQr2;85Qjnd4_)^s-fq8^xTFvn$`gT+-ok6|0cr* zTwSVK`}L9#Iyqcu3<(B*o1zt~#}%Uib-vW$p<`q_D~|AD%)bmOm-L$eqC>k&w!Fy% zbsR4R8s2DDq~y$nsH@*qA^^=&Ha59P&1fS3GlwyQ(_GUf3xyVYAbOwTo=F0=&^xWo zGK3xz9HSQKvzHl^o{3PcN|y6O;uPIYZ2)Y$#`XsF-ml#Kof+vpuCuh649eSMD*)Cx zln2%}t(?BItG!r}25KA}n8QkF!YEn#p@z|T3V`C3y!##p_?~HW+#x{fj)`%?JTnoC zZL6)t6F7KrKIR;8WI#<8UCK7!(S2Z6I@f{z76QC@i|(gmUxZ<*VvO<7g;ev$+!%Pt zKZ0^?**6DzfS`7mJH&2=49Joj@lt#3@XYGfOrZavu-y-2bUDw?#~nvmt8AwDQ>nk` z-N}jK12#H}b_TqWR>I#cq)+yQA@}dwXFDh3?d2Aj;`p!m4nXkw`u9 zhv?VdR+9l|E~rg~xFHDFGFfvjf1`}|8WxlHC^VbrR9?xc zoeRH<+EF)roZ4EOq<{he(xQ)S%zkes2ad>g>>IC@XlfPJz$WYh639fT`=_A5HK774 znoiM$N^?5C3c%*`_iflsT*?oqav*%rGRGD~lVB>Pb<_LnP+#}XR9KI4tJbQP@R)al z3D)!myTCcmw?$eA>p%7HU5YpafX0SrmT*L&i zW~Opevd^%r{W&x)619koGyoz=%)u}7#ZeGy)J_8;rQwUN6gN#ldQU|w9-zVR8}ZDslenw;6(>cj6$@p^b$NYn8_XIfb(LnwvM}PujQZrH252GZ~vUDQQ~zgyWD|6gjwZD8Dj4E#^JVFUn6U>|efDn1YNoG<>#8te4)PcsPk zQzx2Nz`H+^%K3u73*g@3nvSjU2Pu+)?T34xO>Ap6ba}_{L@1r*K8srTy{IV@QE#?I zfhL1vw_JKR&0Ahku@`mhq!fBHUO+WnL}&=Ys4`!E@Vw{7M8+4K{0MX5)p;SooXY7N zY|7ZF&dP2NbZ1Tox#)^3vq^0{(h^X$ThP62yO z2Nhk9C<^9-5Hg5=?K|%%sXNM+m_OuCFl9X=_Ahb4;35UnRXLEh^;u$``U_vK^h!r> zCa{boFFf8(S91ixn#Z3+w0L1ZE*d3~E$a1YAxt;>gyGBPd1wLceWjGA4tP;S6HXJVyVcJbfX+~EekSdBOtzp+!FyXO4uvMb&C&Zf)@c!3BipGXk zZ1SgRnMny10F8Gg47;k~olwq%<8;*B>n)8n9C%|oSJ?qP)e zY--PT3a=e^lZSrb@jYeIMt9uKu%kJ{Y?O{T3Y~+z(M;h!5D(-Q@OuFdQ18YOUb7zp z@)BEs0EbD_Pk@GB>-Yuzk)38%+#_vOh7x5V@hB9zFIncvN?~}5GB25D}@(WFj6uuL$QHe@d*28dPv&!gP z6bPmvDYzSgYQD<+yE+G3JLTYeaPBx8St9uO)0h|+EYW57E5EjaFgF4e{If2Fmv279cxAmU^fg?S~egfMMCYy@r<3MW}{IDb}2m@UOmFIVHnTw zgH||xGfoWm(oK7yPS7MT9lFQOQmfY_B>EZ9S~&w6HA@d08uX;U>Y|0bf@EXRuy6@u zDbco-xvKoQ>o2!vOor}-`uats+Q#pN_4Cm`-BML$x+liTHfuO#%nw_n^l1GPzudmAK z9Rz7uQ@{brKHU~^1KRF4j5rZZ%{Nc?p<)4OtKO}&AADs|cGV~xdCcpVxk&}Xy4k~r zm6uQ)WRSp=gQU1GxIW#n%GL+i3O1%T-dZw*s!XvM3;~{!A~Z2iRHy2KQk@RFG>Rrh z9jhV=KgojyM@GkSocoz3$8Yhk9fkKfTMr?1Ygo_QDJA_ali4J@(!QiT+ZxispHs4> z2wGOg;v}f_PILJ5m@kp!)Y;gTDya<$;Tp{(ut^`&PO5r?YEsEZ(Rg=lMUFE({mB}& z1;OIP%;hVW?2&2EiTnJNDtOw?)d%NCkwwNC6FE3DNBhG5ObPA+5lv3Fz;n}0bD+m~ z>6)x%UV*_=N#3V@X%B3Mh(;#b%(K!1T{>X%%Lc&5P-AA(MT}}O)Gk`o& zKxThzC9z&GZzFjWgGkV?%NsjwTM)CY0pPS7Kw6`m*4Yjj9yZvNhu0n2@%gz7r+jBg z>0z$g8lFU|$S*C)sqla8+2eG7L1O3_(pNsMCE#5Yu*;3YivLzTOvJ6<9IT0G+*x{u z-Sri|{u515jRI7Y8=JJvfuE}_cKjzQ*m-n`S8g8-i!DFQ{IY1iXyX(TN zIn^n~BfJ{+wGRsLvA`JqAf{?+f7|rX9i|>&$R(x8vE;Y2OBmi2ZV{RL@3i?)8IX7t z?uXAt94o6ExmVaY!FkC4JhPWN`}Lo_%a{xhE%57kosI92K->+o9&;*522RVSvfZs7 zUPhs?*eXTUdE1hbM=;K9 zPCbO%uuihfsq;>!H&qcpcXMPjDs8C5>X7k#3Khe86;~Vp`Y`Ri+oI>{;WA7_*8qgZ zy%?Ncg9W_(;eYHlcL>&sveGRG9pb$nqVVeexr@Ld{F}qZg4KBwFS=yaPn?U#{@*k?t7f9>+jcGryI^E#FTSfMuc>P{ei2^|*CcfXZmKxliVB^IzdX zcW?b3pmMG2n&Mzb2X19>!OqCZQ}>@&D(c|5g|2OJ>{lgTg(hcm>ch3l;Y=l4@b+`K z<@GjF^93Ni)uKp;XyGk8vch=6^SSW6p^#87uV=Inb35=Q#%cnmn>m#bcvmQIX=91$ zJLM<}m*ToYRzK2grc!tdYe9|z+~fTdsMG<${Tg!Bmpq0J+GjP(Csaa1*m7_R5>32i zR(@+{bg3?!FmHqY8+Xx0YgCLXPq{1-XoO3X+bSGcsMb1q`#e>e;<@ZCL35#rQ2s~H z=2SJIX+&@a?#EA5pKvrTVo^%2Wn$I6Kqq&4!zkqeHb5k#D@Qf-pXfBS`$|5f zQPK>oC3Hvi&$<2^KKSNL>nyU*Lw}vBDO~r|yn&jpWc-fq83LBnuX74;=Kyhyen#3d zIZxZ1DvI#AV#kD|9b8pfV>=EG7zOWLFec8i3>3(Y?cvCHY@gTz4|45;BJ(ZaL7DfG zU9sYA4NK(^TGK%8Ne#g7R+X7i|3WRFfm_#*78bqys_VW6R&=ry5~D%Sb5XU3zkkm0 z`5mQHj!L|_dHNvZMU|+Lyc=NPY<231VxYThf%ImbT|NC<0;DCVGMN>VgrOd~%dMEW zz)}nuFST@T!22*w6L_}IGi-LD&(h72uQh>VZhc{Y=Y-fMGLfLXD@FC|7Zg;SuT$0d z)OftYT$9>x>jn<|d*pvNdMz}W!FQzf8wP}b^-tP|-`EeAT(kgjF?zvgDG=&F=%m&@x`*|xQ}upSJm%$)LCmkr=>t6-+g-Q6j0*hsU-R*Y@OTMQt2 z*l&YBJlg`Ll4E=qDl53gz=o;`H$PCXQSCrn9Q`n+V_ATuP}x& z6t7iZ2pa#!rX4}?OT5ZlD0A|)<1u!4e_!$0aYrW}dw713;59*NUtO(P$5P)gfU+q> zlthx36zk+<8G{P>epBUAy6W9%I!3QGRP9*JLmAO>XO`XnynYx!nDq3;Egza`O95h! z-3|e0M3t%}S3Ckz+_5J902^y%9exy$Tmkt$QIK}j6eY|t(gZ1w#^YP4aZ3s;k#t<4 zxrwS*ZXLBfrt3Sv59 znKg!N>)YTw;NNWIPR;{DdoCaZw?R%hWj#56nFh{zAVfLZY5^vnM27TQi~m`q5#hVW zL6MDD$BDZcYmPiB%vT`DXpgmX2x6767s%biyL5KIYxKukoN&3(2;$=41-I@Xwf0R} zoBzGXe26_cDKbYt;Y#6_$wl_Z6UB=yuGC~pI2~iddzN=`2?tJ^{=yb6+syaH0m+|f zes>|IMSxpmy3HZ=J6Ad;Sc*-yuT;q%Z$LI?ZG5PNU1W?xZ(ZXUKo(tdQhPUGzcOpj zwK6RCtpYFaF;1c%h5)Q6_48~-B@{Gxbb^`<^a{=Nm!66;=rYee)9cQ$5pGhjx%ge0AeU=;Py$RH<=ohcy>+?R2qzQ_F9 z-DvN04W&5zG}R{hzStZvD_lAM{^L4Foa<=K&EeGJ9@58rYf8GV3e;)MzI2U*m%~?A+sa1Q- zSLeQ^wmU>nNv7q?>sJwBHBlyN+Ax74e5JJ#geiW;uk*yC4Lj1~G7B-%%=HCS9ERB` z_0zSnfnw~&2zv;*tAw{Q2nY{S+>NWqe3au@uu_%cfTv|8WD-L(mz}5$gT2F;i+pv* zg}PRX08fdp0OesacYnQ{P+xHU{O5`vHiT?UI?O-VR}xT3j)>ra_+ATbALj)Govf(8 zRre7*>3~-7Cf$&&IH%$Tiodh4CRI@0#FER%BF^{03qS3%NPjtjt3$Zk;vHh#=dbuu za0N9hFS+Ki62N9RQ6|p3#208;6@T{>KH5>mlYA&?WRsX+(6i#rILySKl+8E6Q{mbm{w|7o1N<&>o(Y>j6Wx$MD4nM+*%Rlr554fJ z7|a?8JD{+ichI!0TGjJ#?`5-#KtzliFd@e=0f>!=Ukt}yU7+;|PgZ+A z$Qvip)_%RzyJ+l=zF(O+EDebCgW-809jx73J>P`reoa22!JAloy{wdC0}Dc~MF2ts z-Oe8T3*AD}mLuOsl#@{y6@gabVl z_T~~mx4Fu527OGm>+E!(@#IZd#bpSfE&hg9@as(+59=)Zcp~sgT=Jfxktv<3wTyy7 z380opRUOuwswwpE(JXe)eaSJ)hH<_(k_{#45cs^woYtRMCqG{R{%;PvuAg-#48VVZ z7mRFy4et)OfZWdonU$rZB6OUo%_&A^tB~mvahaaY_umn35sd-#=bwZ{AaGJ-iMCVq zLqUTK-9-aZkGZ2uKu|DM!DaRhgiHM>Z9+S^s{>prZR0fqe*+w${Pm@7^D7y~CS&FZ zV1Aiy80`+f=i+V`PZ12LBg@FXOpunI$C1T(3BV2{A`}66E;7i=ki4 zC_wyi#kgZ-r8ax_fKnv!QxOrM%tE8TF9!utO9WxQs8AHS#3!~i%>go-B-Kvnov%JJ zrYNHFW_>4l@(&}`y;b!mu}8UmNz8fgF@-ucm3Gm9Y}7n)vxMwza;4U$GYXYvE{dO+ zm%&3W^jBuDvs5q*cdpzJQ@k`9wW17li?vM_fsp%Zs^(Y4XDL%D3`wh<*MnwvM5Cht z_dBg7KDVjQZz@J2D%qC_q? zD@wEdUB&uE{R(GVC#}y~jB(a|Arvf)beC04@`}yeC@hmI4-n|{RBHN7Cwj~gI|eWM zkJgjSakb)o`w_M!b1Z{klrpXngba>hp}frG{TmVGMb6tOyzysesa1Q>Hi(1%O1C z#Yiej4gtSNh0=MxYhIg@1aAX%_OQ5$7T|+LU$VW#VK(E$h2_KXiC^o)NA&eZi{ljl zFVK6MT^@qj`ufCk>Xnal35~Qmi7i)8NnP;>lWtWD9;N;lQs%chH-nQaI#xdY)pcWu ztSL^d!Tadd6nG8?!k%s@V5#hVmHIk1=26w!{bBtFxwCE0AC0BerU*>FeYEUsr@AMy zlvIcQ46s^xkd6!26oDLTHC&!ofhX1*AzP&|Z^*>eq?9Zb|@9^p0?_>ihQeAUiT<1vLIp9G+iYbK>AAi2M zeyivYlWG>-#pwkl>x4(VVgM$sd$nD)At(i0Xuc{bwr`Vv z5?ac-+YLn%e6!NkGQ{u5K*nlwP}0< zcyB;LrZkrgaH4bFE4k|2Ic?JRoz?$Dc3pLPwL$xa#cOnV&%{K^J`j(Sjke&e3==Au z-F_v@B>JoPcx3+v1TCKv18`yz%bYk4!$g|8;)}VGCu_d#HUZd9w{Cout1soyT%!pU zZVKKlvPy20e}N#hmEq%K)DVO!Xt$d-){Cjo^A&7(-nnClT1Tb>PI)lOa3{x!`6syD zTyKrayDK8&)GCWYiLvk?r@el+>hNZ!MZzJy zWM(XJyXXR*<#lljf1(=)H-U1)?i?UDws?|@oC-*+M8l!2KF>qFf)b5UU={CF5MA;$ zJ&DQat^v@!p7z?9_If>a+BwZ{*gz`tH*pr4}H@w3bkj%>)Q&qcgVAu1T_+vU?`|n);m3yyUe$8=MaBlT6X$wRIDZrlf)Uf0i zo-_~%fk9_(vro-iJvQru-BHl5f1W8bkRGICo*vc4ye1yL6Ht2CpNLF_uJj7p-|BHg z1TEqP$&^&10JouK0nxrX9AB08^P&Xb5c!jHxrmu;@&F^Y?B7`MS>$%7Qj-T8o4%em zQhON7+fA|udC9>anCz7Rmk2jUI&x%16EcL_hnOY?twt>x zgMA7<%PW$sw8TvW z_IGLOf(>WxC35T39%wB6Ryc>PL;eJ+Yf(MZ_P>6@S++)~>H1cZ z@A*$@ysCfp0ATIZc)Y0bcwS=_Rb%x$G5C9>m*};{W$Ok>?u+DqTUe_7>z}17r&a5m zI$Z?@zB(@#oPN|@P;3cL?PD&wJBtr27DF-D3#witu>NwiRob?H(9K?S>GLt5(Nggld-x|a-e@rEkP(pxT`dWB2%Dt^S*8rQ* z@Nc#-<9&kR)Cj6$lO|POykTD+i0o~5jR7^6gGfEKN2O>kvQh|z#aEa`j)5tTa=aj; zyHoq}v!r)hZ4|&BOzTQ8KX`I+$C7aMw0Uy3xy*J8!-_ew|AK$m?>X1k08QYWsk7&1 zP$#IRIul-O6XVGm{O0|5;K#>UTy`a&6)4Jd^vjB)do@|X`Gzxv^q@T?w)P`ym3o@y zD`7}Nqtk1VK@Sw^LYchpfKw2Lw0BcN9{%Cyr3%fr7Tk2FCJIM`N6;Bb^|V-Lj|VvQ zbkB`BaYggeBdOM4b2MzIE=bU;9q1-{=6SqLN&2QJeJv_OfDay7{}E%x)+v)r2J#p4 z{};snFK(vrJy>mUu&$?(|6*d_iVA$GcnfqN)YwlySA8znO$I%~Vf1gzrd0081L2Ew z)rz7qB~u(I;kvOm@-k3YaTOkzigTtg6^-QP^v6hBB)2raBtTH429S$6AH_SGH0uFu zQ;J+vZ9dydX=HN6TV*32DBZ_-WE#h$9Tgqw)zq*Ph8a~c! z!JP7R_f(b7BY1N&-A@;h{@D%8VqqcGZ*BE=YsTxnR?fz|Jl!xX+XqeaF?BL!YDgD9 zs2RbZ(@lOUGT`K@5=|g0KCWbJ6CKz~te~KzNlRe%_LW=t^*b~w>py_)6k5@GU(53y zv@m$&;+^rSYbUXhp4kzAe3h^IVGnF2u5Fy8!@F)-Q^BX3RWY}^hZQwmQBIF01qr*& zQ{A2dSZDgrndj}o$i>9_jlHrcsAV4?zff<*%hY_Xr#;(n%<$*Z(VRDqfj4Z<6!XK8 z&#id;483aNgG?-1YGBNZ{)0631?q2;(uM$6%KM0mr~7#O=U{|kWcMn>9;=yI;Dn>p zy(-6u)$+p99_!MQw!omqxc1v|sC2PDkBLjCklVDMAk44oGY)1t4A%@NJ46vn;;wfcSN` zIic5M*^jGS#C=6X?6p&v!< z6}mEmrVW3TXnmKSoss6aUPy3w-%U2neMKPc7FQJSzhy|%joZP{7WhrmF}GGU3U_(a zg`gpQpoH=Vm$TfnBwUk)s!9m}&DWNaxAV_A&VAE6Uo%~geB;D;wWmur<* zDo&xGh3DN2pd%uJ<1g11l@6J(O9BZZ4KP5Q&s(6Fx%E5qFzUo=?05&~C(wdpIlw=_ zoQcwJpTwflbz=M14Zk%2igo0 z{@??@*pl(f8?5~;AUd`_a-RT5|52z9u3C4@a|)#Lx&YTYKkCNXdK1q6GgDLyN6^b$ z`{!EJn|dsVjd`@1)-E5Gz${Nr53SpV#Ac0GZsfmuu6!FHi38$6uX7T8qp*U)zKcOB zJ@UtgQ-pm%o)F_C>}Aha%GX20CZ$_TNb!qEGJsQ*^k;Yo`oKS#X+%2M?JatSlL3+R zbZYb8TPmKCD7_PRXq7Ix@qqc$uzK8CBRnykdOJ2cPP;EHX+kn&oQ+SV;2#M(C$0s` zC__83NV_ev$J&~;P`=WnOv4ZY{;s2ymo8bKbE$pKoyc?~6C5aqNuyb!RY6=j*rTw- zqS1VlY(;r9Iiao0)=($t55$_vQC$q%NSbHant~jz_G4;+D-Ld;+zK|;Xc7DkGm49Z<>?m%qOC&_ey;Hn>I6pEnCR)GI4y>H^ z1j*FZrDWTr`UzAsJ#GVFFJ;b#{CTl4=LMjA>swNmE5Y;pZa~)c2cDfcKM|k~XQFKN z7%BWI3Gbj9b!EIt)`}}NhyxIFch?YV4SdQygK&0xVeqUpMXlU<*rUNx(~Ktz8v!D+ z+xc1Dw5nFoTI`&(T=xm_dK3GdE}D1ab+hM|@_DEhK-P@@T4g;JY?E`U>xQ)8#G$&&Gcsovb2 z;liSk2|0jn2`e|kdxX_K-e+_Fo%k*>hspx`H><(1ty#UPUF|YGW)Yx`>(E9urm|g{ zC_p}fKhK`MBcmNAd;z?_y+Z<~_6@I_0GWb$5ApTW6;Fvw5Mb;dP>3KyqtRj#)Z!zH zu2C8elWf6;i&Hzzes5lAE+=7zQ@&`S#a)XdT*o6YEt|c35hytt-+cq6N zcvbr&%UouCnwpj^KM$2Jr@wOM&*-8`=_aw2NbV5GD#l)o!AZ z^d}dDI`ysaRDuOe?B1EkZ1}SyF_@^}`?8ot5?Y3Yf{J$%0b&e@3=)B=Vp7G7$q$!d zcS9tx|n7BK%CYjbdichqgO1FZE-(GtS|Fe}-}D`NCno zb{D0VbFZ@&Swo7|7Pcdk@`3Z_@7HtteJ#Ls=CuoGv~tz>aCHERx$rdvDBnWMtS&OWYAKit4yES-bDl%peGCp7G9d{!h_a zxHb8=QT)3xV05>@NEs#F=t$}Al5UU`MAXqOoj-)pjdZJ{6cCW^QYi@~1VKgLz5l_k zUEA~A_kGU!9GJIeVn#R`Z1%w3FSR-6G^11cCPo1Mc{{IPefq;>$oiYhs_xfHJLIO) zW{=75<<+HE-x0COj_mA}0U%kTw?xb!b= z2JE3L?)uJ4H7_Q^UEtba0K|(1ry86N^ZNDv-siYR1D{z6_id|0I_weA(k+f2z}KLX zvAP}~>M9{3p&t6f!r-=SZP&Ep?blfx&c#_eM<7QvKHDUQnoh!r!?P2@DOV*9wVnlm z`7gU@hVYw*t=0{wemeJ8`2)H6Fw`|3nqT9;1T>LSeV%YYWp!MK;4&~DMz_{}B0V`# z{caWzLG%6Y=R^KlU)12kalGG@bC^YvAz}M;7LPJPZXza!b@9$Hn%wdr5DIRU4{d=-H1vzB1Ot})$vF3@7ri1WHBCyG!NW_% z>E{DyFNk>TTh-!3T>+#b`3~j{4Y9?TFzE{=hbED8G-O^Zty&>A=S|fT`c4l4TWff@ z4NHKGLJX=QoK^(Gz>@6@IOS-KdDb=?`HF%si$DEke?2#+{+1%F0_m$FcK=JCQ;hO* z=$bwFXQe#L9lg`V1dC!eqdN#b(0Rc%Y38R`?-~0&g+3nF#nf@g7yZXC=O3%@>hQu@`XV43Cm zAzK(SP(LF@!!WNagOPb}j!X$c;zXHVRPa1Ha^3mjywY}!HA8b{f#7^J4joi7&*90*ryV68r-YJ?tM|%P)p@ReHYj)guVw_E<3OwN z<;sDB;y;`sukkmgVYS1hA&Sy=DU76bc%Ms$xZ{(u0^sdOZe!BR$w7muvnIEOBnKj| zzodwEPr%whz6wTUT0#|qbAhH<4Gs{g@5J0V(cJwnCf6MEZ1$P^bSn0B8IJ2VH$>1OE2~Cq(T0Nq7$olEO)kLv5ZEtq3M({IiTj~koUf@$z zT7xFaxD=UVBR=a?=$+bfcLQavEG2DDEY*+4*yVL)q|}8%{j-Q6WKZUAOqs?qQ4E^I z^R|{cMR$l}HIP-4vyp2e=o zyh7D!hm<27o648$&Y$y5L?~q!r#ECLOiMTL8Urkzxj=%Q)2F2|!3$=Zin=s7_;HHy zydYCDQfG;v&k#wAqFN!b#l@vWUuy*QAppd)@UL4~sj_=AQJwB`Sgxie0MxpkhAB(q zQS@%;d`3bAyW1Dv2LWL&LYFH!!9Yw;9gbw?sK5PGY~nYXfaUg73oXaim=pl?=J{Bt ziK7Te%Kqdt{8*c($R!HDOvC;1769sv8k&$IDcR-(QnpX(;xpY64uZ|3uUvD2GY(B0 zV4wQioR0u9;j>h;aW@)oY|VO*!I{PoEt;Jli_m;5-5vkPVQRl1$NHOIGbzjWTR2S( zAmhJVyp&+pcs*Ss^%ZwSFlo%&s8^D+ep(qTk8M2jaUuAI22QtrwpU@3QvY6CSu8!@X0HvIH@IX3UzVcjUr?D9O_uo^c$7g9_oj*TNK>>=ux z6h#3aCJyn@Z#RVzq`3KkY$8Q>VthO$MOT|z8_ESp6B4)Lo-P#9c!N_7Mszhp^SY}4 zc*HF#S9)ItLLW5vYdmyEZ@hwuc-`E=<#oyJ?g9WI=V*T_I&p^x4IvDpyQ^$K9jntj z8qY;TgHX>syi|88e21h`bCNOR)-6on+gygNol;h2q;q3SQq2|?oRxcrf*KbM#+|+p zniK+!6@u{GD9OXu2`=I$5f{yX5})7JR|B>DoUVdNTa^^zb=tv0z!&>FjXsEz+qux+ zmA0O238E1U;Y~Dz?qy9(2DSaQ#KAqG5L*|}I~ z7c4{TSS!97!KafUB=kdZ;oHAs#clU!)1mHlfCaL zCB#6Ae&P&MLVr;3V;lZ_a1063f0??^Q3Wl5s;2YhG zpdsjK1ne1kteRC)n#~~v46>mQ^VA0bF_kUXo>ykG9<8pSJrKF_WbtwM1_K0`)})rF zLOG@0-~H^thltvWs|V6Zs3ddCJl5GzRlYY)via34?Fem4TPT^yaYM*bWXTs(KxL#8 z`PFQ`ZVK>;HQ>Rfgqt0$rVdcr@Y=Hjx3fH*C<*aO+_rAo)CbrJY_Je5fEOfwE=~Fc zrV?%7nbC;9JI&=j`L^=sXTYjJ2gBAY>qNUiL-wd72J&YUeRRI2h?Jr5;5a!(@FC4< z&HN%S&);T}L3?mvwesk7r;pV_N{QDheS5{NB`Xz+Y?Z8%U-kfh6>0P;ZQ99xNEO_r z@jjHBJRdrgok;cx0+K@3Mhoo?DmIf6@izpERLf#A{jE`X&9?VoUaRq~o4HS^-CrZBPbL$C z+=)pPVI*rca13@>g@28lUjn2hxwsRjLi05y4Q5M?<{$xQT*-j*f`6R}SU+!DHh*z)xN-DO0no ze-LP_Wf!T(c77qTm-h5+GyOqs2bP58n$kxZ)=re9PAjU(q+TE91{LUOODzAlNt z);dbCr|Nabo2y&{Q%@xrQn-G<#Jn|(FP(qPELu#c%-wh;)aFBN_tyXoNvhcTT$NTS zsnbkKgT~V*8oDdz!?|EVeJDEsd7~?EI?uBSNnG2ae6gDXH=t~s zn0`rcL}f&lOB(XIWI&%TsNhPo_k%1sXAAPokt4{@W=tmlDG~r zgyC&GKq{=XGm^-ay4*oTUX4hLul-h^hqG4=yz+F{c7t?Y>eT$YMgcsjMtTDS%^_v) zk*p=Xwhrx5?V`<;NcDDHfbTb4zXDYuZr?B&Y|PD{WcUlf4C%ZWe$}8` zmkZF~qM3JPYi0XjW_;|2w)SVxNL`YD>^9zlqmW{DAHT66_t4=3EWDov{0jGEhx}Ng zsL5`j*;3u=J{?^}b>)Au+SMX(Fp7H!neYQ2U%U~e%e?vJB1?@7D_oQY3}3)JervA} zBvIM0EmrCUyGynFD&c$Ykz;e5Wy{65gh25p3RKbXIN8&dCB5v46L4x-wlo+@i6(Mt zYI{N3ShwK{H%*juF(31k^=`*dd6y~*HnU~wy>U&59p#B(;~OJxVNl~s+p(EvqB zZgF1=4aEp=@U+-^FKVznFy5S`I=1<3ZBU1$1@TO+xX>GCnUiEcv>+ncUbV2W=iLB@ z^`dOc#g)BKu(ahP=rxV4)@1#W%L*Tp&*+#}`#;ZkF%;PEsWXsE@KqtB>BCbKee!C_ z1jL#Do7O_HZ0KN!^aBv7L264wBcj~!T)p4hfNrOL71Cr)sr2mfs5%c4bZfWL^)YY~ zReDsrhI%~V(HG){BKT+no!!GVvH;os1S+InZNP~ygWqM5|H4jdx-xeCA7x_Ctb5IkKPyAl zZk`~n|HlH|wz*>8fB81LX8Kiw6WjS*xLEc~3&+#3dG^0(G=x%?1`UYe{{?m@7&5eZ z1#YRDfJSmP*5Pn14*h#H>=CrTbKQYehAR~>7Aj7iV`&r}fz}?45r53<9+{=vZXK=h z{$pQ$mdkGy92SB%RxE-$g^Tw`F1w}ROGV40ecKY{cx5!it91*q#vby>>ZeY9p>v3$ zgVv|MgSS@^|7j<`-kBLe8qIaip~0&u5a`;*n-$89CM^BQj<*#~k$uwlGa&q7Kygyo za(k9CF|AtQSIwmdXrM~f_~p8&1yC;+;~MEppbF_HiMgy3Tz@7h#nG^{2WC0?9{P8P z$3EX`)yZs=OlFri-g$GX?^*#V?j5j9p}9Xrx0pqs>p7qjxcq*nW^f+_Y+=wxpVj*% z99NFL?Sa+hD-)=4a^>0lPL}N!z?(RK3qOxhHGRlQi97nkV>pp%vOKRH-u|gD;^a@s z;hZV>iqN{ftYPJ{t4>76km{H>)U(t&F6lI9x%ohW>Ax|){Bnv%NUKN}&N;RK4cc6V zM;9M+G=T1QEbojPwZ>~mo_+Rh&SoV(Lap+8()$SQ3T8S5yL4&?FxJuV{ zOsgU?1dooNE{39~wT@Xn$0yn5ci43UXgU9F0ctZ*9ZpjG`4pG&uV4iA+(o$a0yVK* zaBm;mQslnS@G!72?_8T1+0&3-wzHu|;trC|87I%HWx4d3DGA#4j*dmsG8jomiSaWa zA5DX!p%jxH4==ppq*T6W=XpP?oQ-q`q<=hVjF_wE`0H9YpU>% zAl!Wwj@e(1mwUXIchN{=GoZ1Xh%9zTk9K_-@kn$};8GaF+Rxl}d#5l$i6Acjbyn%R zozP>C0sj)YMB<4<<8-nq_%b8{o4)O4`Q7jJx7X=t{N*ug`}gnT*^!i0(uMcWect^$ zBi4?Q@YjwA00d6`x&{?lVqK+^Y&seM0OY%O+tRH{m4anT^C3yJPd`3HLzeP;yg8Ht z1;e`XyRI(bV~|0T^6Skav;vjy^$sX}Ryov5VoR^G#X2T}w`QN3o##Ji} zJfbdw%K!zTFf@scqoLqizx>bhxe!;Pyv%$3eJo*;z*&scg_)-{0ow!oiH?BV`-%cD zOP%Ks>d7BP$({8@33cH7sX^7{;%LBVvJkO5p3(zPf4`QMab~5b*)4sWyFBcHe#V5# z5&qV&U@D+}n5Gab=u!pnx8@$*wC@8GR=u~&T*4doYm~#N>j1n4FD8GfI&=US?2GYz z3~E^{S$ddv+8^+DQ2zs`NsD<5z%B6@*2h@rc8+G8CF?3p+w}7^DJPowS@me+j1DS< zwh8YI0SXW>De&DwgMw$u3d^0|%!~IJd{%x&QsS}8>r0CZ`|u=0AJ4jUeu8(bwh!(4 zmlQ< z{5SRp2M_dm#WhZPlUP5g%n=M}qkQnpn-Lp+I_jv=xyTD~uX$m(Cw^-L-+6n(8G?D0 zQ8*}HW}Qdv!u-+~l}cRO*|)u&`ot^K7eI_%;CK^3#{6~fRD4zV**% z`~{O%@k3kzah&9_4e8SK|wfOg|mLkwyX>pSIG~*BS*?9|&&`ApbT?%YgYTEbc zvtM;foz%nL^8<*%k2`iB$rnmK4!_aJ8&8K%A1mU&+BPoW#s59iaYsi-HRr0W1rUrq z@o0dl-kr(y@IYUz3=#70xh`>j5KvJ7B(-CSQbV$gVz?}pTPF&+ z5KDLs@SmAPvkw8d1b|@qc8Zw0JU7iJ&0k)X%6PCc%Ps84#7?0B_Ny`lS+Ws1HZ_`S zdTGuIz#<1WL?DKq!*;I>KUhGF26|O$8S1hRmL4%Yn?^%~XYoZcIYcg7sv{q%CyLbh z)@yQDBKdpJcvZ-(gC~S#CBlGpTqTJ3mHyRSn^*(6)fb(wljCiG>ESJ*)u&ra87zlY zJ?lhR$e-uzdzaw(=HB(MXAi2DEua3*ew>G9cY@`^(`<1WCpwb^`ih+7Q#9Tp*FTEc z>zjYYn-^C`jdI>un*61DnyTMY0hkHKAAOi5ZgiT?y}gR-Mx?sniZmc2|1q!`>!Sfl zU@K#Ko(Myh-2E^b4V6lc+Ieh{2KWNuQsSTc{`fI$i<*x88Z|D?aBAMZkYYCGM|t-N zB(ZM!t=*-pe&bUSBuiik2SI-G_FrClaY&A0aVzEXLZ3skL6_u*t~IMGB7j0v205Wu z5S&^0QuXV57i5~2VVfPAsGB9R0~R`aIm;nZOKdG0&)jwyPuS1(P!Ngd9HA~n_&Sp! z#Gj!{nft;u9@f4cE#8Fx9YT9xT%F#SiYzmyC9j**zB{H|3B7@GZE?KOn^y)mU;Ras!Osm?=%NR`2)XF^oN&kFG5pKN;C!o8aiFi&m1b0iJaMR6%cBRYD(-#p~X9mW?QD%Hv= z1VpPyEYKgU+?RjkRdNC($nx7dau!xrwVm8|)}?JsMnz2t`~cB!bnp=URpLt98*<`m znfMK}Q~7z)SSSk5LzK)Ickdu*(c*e0Dz%c%00-&DZwB`NubYR{5?Q`z)OewLGSZ?m zA~g-4W3DRO1w?tRuT%*2aoVJ27Q+sfnr!w_MKnHj9vnkF zAsWx6pMoDUvviU0FMFAOYF9$HZrTHsd`npZ z5s+R$U}y~6%+ORxeiMn(ot^t}V~ZwBXW+^#Zw6|lPrPn_a=XtOe7`OvS1W`eKh&)< zW=|B5MxLX9VK8lerrcl{GQ&lnTbf@}!wIR;Pxs~A>Lu**M+_RfF6`VH6$s;9@hLS zXv8A4#LB|}&`7M^2YMA57xrgBY|`%}{t@-E20y+Y@C)(_4Gjwl2=euF*R^=N1P*$I zd#jJ+$$P60We=Wyo~j+N85MSaz2h=DxiNV_{absguDsX@hJZ|kz@D3Gb`*7eAgKEw z#tj~Acm==i5E}W@xrV0gP)YsLO>i&GY3ZBvi%-o0KD5U@^?V&Y0*;*|kAg4|hJ$l5 z1Rxh&QQ0A(S*9IMw=tzxOXr6E?zajB^$x8X#q4aZ6645fK*K_i1+j*FTdI>!RD0M2 ztk+_-*8u0TwhOVPhQn}#;R55&2OD%lue6QnZ(||TFAeV%l}iM*_XG&O~j=rQ{b9QbK;ad3PP(nsNvXM%#Q~m0N4c7U&T@FCwnX#+22HUTUgmu)F9p+6`PA0&uBQ}WG; zBzuxKs&s6XkJPJ|Ee>1Y6W_hE&P&Wx-1r!7^n8t^2OagF6nQ2XweSTFe-$>l7pa(00Y(KmWFyL-_}oTbc{ zziTh^c}?$JkTY_LdyuuUD7LTaMt=0X?I+u2K!#zVi$~!(`X@e5{PjTJeV(F1{7uOk zF}p+k=eL)H#_WJ-J_PX=*RVd+C}ypShRRwvMMY|khsrk?X6h@1lFRqj;t^Y(yBbfOU8=->p+SRP(1ajn`pgm@@3x7Hij@ym$4i=H6=nbTTB&*Nl-{f?Nc_?CvS>oe5VBKh9i7=UA!v8b;ih@Cp6qB!Qw~|FleptY-kqs;JS>(24p&g$|(3b3|soB>NyLUYF!DZPn!euKe9WLKJlzZIEBZL5m-g|!}1)ySjt#?cc z1PRP;N507s3j03Y7H`#MKy4`UpKn!-ewVgX{9^0Vaom)l<%!Tp5o`xhqjMBu;rq6e+;GOuE37O(-w#;n1g7Ji+G45a^f@71IT|EE$ z{V4m%0-9LdUXAWgg0V(eXbJr7x9?vc|6Th}gL@#@9n0UnssRZpqYmb?XPgk>FGXp{ zPzLuX{-yt|sV**5O|k$EV`172jI{hC1m%hEHRSC9be<1_*Aa=#Un2hbvcWbL4`LAG zVJO`dY??3#+kD^mw_-X5nWjX=4OZ!8>}}WDIq;NF1AwAa|8^{s{}@X}^j$6bd{x#% zHJN9hJz%@x6ahMKYZ>S^bi@OuZvmbS1%0kuYNba2j;LOE5{-hY%&+wCn@hd%dLkCo zVGoH;EPpGZU0d>pfMQL;@ z+$K&QC9VJvFIZjQSD%H?>}F_yNp;_(H+W-eC%705h<68Ae>6ms)Ga&{W~OWwR(-HE z4j|73RilmizU&p#W~G6<^cuN@L%lkOFYHHK>#`R>=I#G ztp;}Ozuatkms3hCUsjKsRx;f^xiZU&E)*y%-HR35w{>(xL)hA2ZEoK>+I2K4pB$Ne z@u9&b<23+}C|1N~Qh|oI*Z2#dBJ^Sg+uLugN7Y70PBm#j<3e)cM3w3rQIGG;(zg^9^~tK1e@aOF{@`H zQsc6_fkIv{_dh`Reg{1tcDrW#Fo`dD7fK27{zcy?qd7W;xd({O3Q!R4ytOV-sBP|QRWGfU zds-D1ROJ~~)$_OtCn6vK{wbchOrl4;1Kx`&C3jJKh)aT63{Ti1;G107BGnx(1E#Wt z98|2%32^mgs)9V&!^1beid?NVZ*KzKq$rGtD>k<9WeoH)}Csz8YLOj7lZuh|Yhq4I> zZ`0M&aTE|YW|u(3w@4?}_FW0RAnY%FM6RX~hyn|t&-9m(@q@8^vW55ndaEpG@He0R zzH!Toae0|zwpWg1a;wg2VUWiO>6OaK@qo4+(KF+ukLb&cU|sbgvj7y{4n~E7Hg7oy z)*Zs3L=_wDZv(^> ztXVK<#TDyD zEK<-;??PLnFO!@t2=OBt=H+nx(qT{1YWuVS>x_3x`zR&9bzDP-O+s^0VPZWJ#~Tl< zlDTD_^0y+eCCBRDAEM*!Sz)T$FxF` zP81r@-c`JU(o|}dv)q5$EbjK)!A#(eFe6czkq$(RT8euef`G-(SF6z5zmU%dJl8ga z*NE&#nL>?$doXJGP*mLL2Sl{nmv@b5_*qDM=~TqoavJ5~T@geqB8xl-(lWP}=C;qN zaDdrCYv#iP*skIkB`Z?+w}y-b7Heo<+Jn@m8sqal7}a=a z?^TVww+An@=3}(W?bk`lX@0NtAx%x4jPcFh6fcwWw?jV_2H*-MAERaR1BEa9)+_NS0}wS0))zeJ+D_n1BGYh~ z&MvGth2Oa?mj|fhRNrv{sO>u&G|R(Vn7?qC@}RIz#HkkE9}r#M6SQhseK19FFDrzZhZVRz(yD13d=8nX zf7MW~f_w8B$SKrhTV3u2i?r|Di+(<90N56ms^c(oi5;_zmft$~FQykNR+OpXN`%8N zBJ-;Ra_;ou1f9v)UPhoXh)Q|x;YM0KswR)k#B5~2)J!=v8;{e6ewk*O$cd*mx&exm zLMN4q#e#3diTBY2tu@I5)fo!ijwq;$YKi`S5HlTlf+R5T5~z+%eHR_6aYb#T`~8+e zq6mQN0KPrCFE-E9{Qus2|Co?t!TCM0J@T>2LyvtxS0r!Ld1%sa#6g}{#DS`cs~wuF zE9WUlEbZ<3H(|t&4;_=C$;6f#GeTvJld2` zqYfHcsPpx4y_CWpVToYi&hJM_{`X=;KP~+8H3PEBbyd8l)x;7IRsSAhpV6GMhc22632>!iz|Gml zfBwutBMf$&VWu27f(S|uIf(GML^b`8#bo!1r4P1^6D*kijNL|PAge8p0 zKXHBw;GN-(PEJ16wQWM<-A&b8D2EwLQu2kB+ZhqvN#o4fRcx_Oe=Z2~uH8=aEO)N# ziXk@i(xdw?5u#8Z2<1tc(Wsp#tmpgw+SAH}3>mP)f4PNl_@bOsZG=)7V!a%-)*+); z()nQEq}pJC1cb?(Rdoe@wZzmFn5UDfNEE==&$5D!HQ%FB?3#QP?0@90lS~pMButfYxRJ9qg^E74z7XC^_L14+eaxj0!em572Q5xRiI?ai7n5)#Y!?Y4xo% z{e{sHKjpa5O5r|h!Ch_)*ruhC!9ky94*`DJbM&5KO(Y6DQ<&h1!U+2;^RmpE*gv?D zar^7>gkQ3Lv`GVbilbI{uuYE71trsJT`9;_<>I+;hoYx4B9HIgXOWN=QusBNSlSOr zfwz5<&se@1K~T(6S_8og4}vtgCZ-<-pgR8aljA6v*3=&yQ)@vQ2f+?4O37Ur=Q+GL z@0hWyEn9f-j&dyR4%0vBk!m90mMzd*a4(D3W|bGumcGnjF7p_#W02qr3f#`tDsQn= zEfpXd;lZ-yr22pVHy;DpB&?O@3df@k-vSbj(rAeB*6&S<(bGT048x}ZTPBvY)U(JR z7qF%$V+FN7_Eq120Rm{>K@{q9bAMv#KwqFCrm9~Nr<@DIMri1cqZec88nsWzj?IR| zo#(Xln5oSxe8m>|R|4}|6g;k%^ItUv1oJ}xe%Oh#fhTz(keubZDW-P# zs4hC_=Joe)N301gSm2=LaQ=_L{u1(g{1u(xg;Iku=d2%YW@dM&6Ot9?l4BX0zXC*S zKD2L&UW!{(0f>h=oy-R6&u$sQ;6ss8J$en6`E-4ulBkmpcpiCq3G zGbWY%85-KTC^f+~amZNfl+%U6x(WMpT>h8ls`RjJ98bu9)Aj2?5+Y*bo&(j;PtHdY z*}R4p|K5>^c`_e~%l&|S5uQSfMsLrsagZCwYIXX1jZ)U>s;N{ZNZRAaO?GveKi}pc z1jG0Fsq_;gO^7jBKLBwl-wCF*W^lSBMdlL*=qvM*j(2~p#+ zFoG7;n(#cokL*fI)KHzr6^H*QSI74%eaBTogaC$VCZ>GgbCEOueltTeGFQxk$_gX6oB9=csvZ3r~5%F(y_=WG=2!v}R8lZ-mBwGNqDt+p! zh5+sK{Di&%UoO%?ayBIAt1REnAv7rUUCv(S=Uxt>DE9kZmPw z<*k3z;FlzGyI6!3K<3y^Pl`FtikVK?nZClNfH{a4f~tu?FomO?yjnExm7W0@)tU#* zIvd+{f!-$MQeZ#)BQ^2KD8DZ|8o~s(^PH)iGoZS6Cm|KVW~8hURSO`BXYrjRO$#BT z5o$S~5-F3+R&iAbH&l!Dv?XMlWY<*pBCP-w>HyQPq*!9g!HJhlN=m`Os63L`Wc&l* zF`md8sN@7@Cx`ET!KXMOUsl&-Z4+Vic+dLyiai{bTOJ+CVh2D@nIK>3lw$1nBQC^( zQU^nBiS<|ha=t24{=!gZD2GoaLpFMZr? zPryB?t(hDU*=lM;mrn0V$`z(ca}No-l`CJnLth!(04GXi6d9GnIa?~KNA=%fJb7!% z2@gvC*#M;kd7CB81HP9sO&%5ou4B{L;_lGrGkY$hh8(}0)Hva0J^9JURd0WV+J~+d zW~?G-bQRcu{zv9doE76#YEoN9*NqjXDf?S!7nQsV1in#*yV^Oa6Eqwl$=Rq-nH^n`i(*r1m?l1lLf$4S%=8yc$Kd= zr5iQVIdsu0c-4)Cg;+3JzPpA^tY#;^=9Ef)3fh&M@Mkah}*1XYL@pUN=zEnM{O6B zoxy#NH>U5CaR2D%&Ewv80?@@@-f)``eyzAG6LST)7ovTs(cPv@ z^QsXUTlaIrj9WhRGueZT;&_Wa0RKS>TyOjmdZWhyAX)CNoq|B{0q~=Np4^7| zaY66ETV9hVO%<$}1tjLbaC+HNWJP?BVrQIG*(k^!h`!20LsxMra(1REAG-f|Id=+6 zNT+{?^Wmlx9qnu(i>#HrT-uwv0e|0-W#fuV8q+Cc1LeAX%Uq`b#m-im1qw%e8#2-D zhnk^iJtVQAgecHoWW3=uY574mPH^wmK&6VyzOMLjOT2tGU*aZ?qMg~XTT=9@%Cq9- zf+_t&L5}99Ih^nBJz#4WmBs;K!4DKDdX`tgt01DWqnyRWPHF*2YVM@CziJ(RtuI@H z>CmHc<*oITHXdVtj!*ihUW2W;9FV_50it|Hf_o9QqLyxq#D+{AeQcvrt))7=$IFwp zs<3SS!WXBIyn?CRYUSLXPbo6%dz?_8PguOHcl=pYT+EO4zB&pej@Wo0m`a}q7)fKX zx{l2aqWYoTxUY~SBdA9Dji^_m(<#>39q+)jy*xJO6@GJ)b$?34S5Cb^9x{!YB{ikq zPM>uAhhNuK9U#KkVRmt^TkmnfNCU%bgG|OMej09wsFOyCM1C| zlS`jMepkDd2xXkN)d0NKax0bI0vcMlh`zzpd6NLplCc9YhM?JIvQ+vwu5gRH{Nw^8CAvOACr<# z@Ci=~OFWTt?kjKIbhvN`PlBte*|y*)r4D4801eemss}l04iNqsBy`jxe#QOQ8+QVj zeo^@3p@C+bx9V4`R4Z+FYc)Wa$!_?X$-krB^`tjzdydBA?}cdochv9;B!`;T&+X}% zaTVr;J7M`qDh%Xvvdm?ZIsjW!fGhtZwZJW4|23ZwJ_ifSJ zp3xUDLC$!-Do_MC~CglF-e*@E*N|B3EF>1_ZZkc!ALY7SjSlLX3qU#eh`w>X0X z=6j~pFr(vYTt1g3IBP{a2rnY8__C{H0`q2H{h3A?WbsbpGlxRtA8vzKJ!M02M|)ao z{_!p}xYyUoOeam|G5L2y@OPmHc^d4-6t^>m--jlH&> z=4KddZ6$hhEKtTtg-qjfn4P3m#{yQ#x|k8mlf6CM{*pjo&HUhCVDjE};WM`YBQyv= zsI$5_J}FsMzTFlGec3N*WQf|S#l!JGuK?YB<37^}V>k~gdeo2NLFOpBmP>2a~9ddZ6#J$GWf#Myxij7p}QqMem=RU=58lsazP>KwMD zrA^Rx(z5qH2C|n6Z`~-Y@RI>mhn6zDB~oHtPJU2LhQx#tYZajNl+i^>*yu2II5 zEOOc)+Y6A5Fa0+U@yUF`cJJG_A`f3rN)&bb5elnPU9KwRE@le7@8Ks$2?@+H3*wc- zu!eii#YlhLWVF7cxtHtEY?MZYrq-NQ%m38yV-jjyGXg>xA-uoBIgLalGvsiVv}$Hc zPA#s~6uTi9fwUa0Ftg5ddj}=pt6lxT)ATx|F-%5*~M0~;R=3GCTTfUiij5-rMe_+&{Ep>7(+36Vza3!RdXPJGk{15*; zk5m~mO_tG@ z>RiE-FC4BaHS~e1>nP8jO3P^`I_=JD=7kD8+rI`9&IlT1J}spIdQ#icD{#+5Loban z5b390*8Cg={?j|2F;v?2m@+gy`0@p-*W?~|^4hP>I~gN_au_bq*GzO%b+pYW&Ce6m-Gpti4~xP<4b*bh8h zFI0QGwF7=!e1ZL~Q{JeQoQ%?Pw@cJ2P8^P-M9yyV8r(-6={YUv<0c?P($bAR`wOggh;HGvU56Uc)#c5-; zGr8GPHQ9Q#4o0=vN-q0QZ9~cKP)hoq-~@5{H}jOWOF&vU;g?S$5giCHB1M|mLsdGj ze*O#Xd?W0rGx7MSVUpz0srJsFf2C={w4Yem9;4&h+8!N)7l_MARp*KSfeAGNtJgA?GO6G}bMee>KR7U-}$=3wNxlhdUEw=!h;7iz1 z>#w!w#xCR=iy{AwD?r>i&xo#AyC`IjzfXVDvQl*xXSyfe%1k$rwdwv4BgoY8UO8c2 z?+1Zw8esjy2705N_NQ$(@R~a&$<6^?-SI^>(Xd&o*CKbBu+|5n5(Hq{qT%sJT1us< zZc2h~AL-FgPuo8gk9ws&z?*nz(Rf(JPGUuhPBm}71qTF$8RqR}Gg%R20jm)_?oqS3 zJajbx;03a?Wp4ky7VX#nVQFcIo@4tkAkk`AA`cgY(WR1R;y`@o6*ftCD2T{b8ERsdyNZko!=XW?VCD2oi0KFm11 zy>7D?%W#iF?LVm+()y2HeH4iQp?DMZ2VoCLnoW8|y2aImD=?tcWUSD5<+;AcR(4R%Zu7arKy3SDAhqOJ zTDX0hIQWBa`*P123As!?1 zASUWw;A5TVmd|HoXow_roF2#-x>8E2ZAWn7pZaQne-1#flRz-SxA6c?ebS>|Uw$${ ziZAP$WcFV&Lf{A7)txFMMlK4X6U;-?7dg*Ll)${GBG^PO%g3xlIaD2y1`YWLH)2e1 zEaLo%vNMY_feM|xJg88NcR5c`tnLzh15q%08DWCUXUtWqTN=38tmVbkh}#gVsOQAR z8;SRJNZFnPPVe29ev^DOjX^XfXck6f&+htwW4vDEYtD`>(q|)LJNgylh+7uQ#`g>rHkw) zR+vk-%u25Dqp6+4$Qv^bab*ft&>|#a$nOkaedqkL_Atf2krK#14M*VxdSj_c(@rg2 zF284%H4D+*2hs z+Qgy21iTr#m`)Q$yqWHg~_9Tv|1tRX$ESbnajgK)S-RDro=>n4I4KyGJno z!e-Iye-xbsLsZ=wh4%y<(hUyX2t$WDba!_n-K7W&-Q6M54bmynNS8E%fP@Gl3L@&K z+`01;_MClU?RPy7%{`HWA3=MQ03L(1-!y~l+|v9ZZ4&%##GmoU0zeU3VN}1-8G5c- zKPQ7B-p;?7k}92lizSr{aq!Om48>Iu6O_Z7s~2_?&V3oKLG0+cETp`jC>-y*yyb=_ zmZ$y+lQysf_aud>Obwzl(gGZ7m#HG&Sp2N1U-?v5tm&#wMm(j!%t0!a;017|iuv@m z(Rk9Q%M1cZONm0=pQgqQ-kT?-^)mY5sJ|bMtOIbc3#pEsoG^;f>nZRu{qYDOLM2_KGTFM)9y-QCE8-pwc82`fo8kLSgPw2a=Z zKYK5!TA>8>QIOqCva|tqM8OsH`Y0H&C_LV`>i&4w&Q|8cL60cv zpwX@r$QiLqb*U3H-yB7L4h^I^XfoTF!bJqd-U1d+SoW8uuaZK94u3djBxD)ch$!e^ z4zohPseB)SvNL#T5ToDB#cPHr3-QH#b95vuTgh@g)rG$$gW0J|Iwe}E^88LV8`%IW+iBDutxoP~0OICpySQp5lgb8vEYkI0QSS_gm>N zGa;rms&s0i zmDng=h~0u#UX+TMQBBvE%(bpb`c-%qPr1&o3XIZFyQb$8X(YY`a!MvIEi)-x#|Lu= z@#b-^x2(RObZhZACN{Hcr{iLz|7$_har8vK`yV^ zQS6js%LZS-4+%))-j6_SAC35X0l47N=QzDyoCS8w{|0sRW!KkP;*ark@$1q`U|BX~ zS5TnlaUw!PiZhldx07_Dy?mY-l>OqN)ET;cwMEg(t#f>e9KEm3ZQPFJWEJueyyFs4 zKJ~bV)BFkWwtYN*0bt^`ga|J+sMOK%@wGAPMm^?DL{L4WPwvf~+FK@vbC3cz#r z6DgNrftuO0paFB;3>5DCsRJKbp{j!67-}K(n6kukm&P-qNr}a%3|&EcQiJ`1OE?;; z^aIn*Dv-#D2OzmGuyD!XXH@b9&~}~r={aBi>(O2~*@FRP;bn5;l_gicwlzvlL`>IO5A?Pq{OVq6tseOCwpXV^|%Q%dLN- zAxp2XUy1f9t4$cbjEpZ(79oEGl3|pRLMU0k6?q8t8~ol@&;?~}bt|SLVT_^Q-T!WEj{u^M zs)9KPib#KMlvQ^#(@s42>IXGS^uTWQQ(OOS``afvpz61T&RaWIRs*94_k2+9SfNl? zt{GX5XEk-I8*fUNZRku0>{eD8RRt&7oV@A;^Bz3bb}XMa>J3zpzOlj4e-MzTMz_Px zs>#quK%}7qB)kN-m+(wU9iA##sax;9d&Yxv`)X1Br{|Im;HRpTM&O1ipLEXGM?GxH z?rar!84R1xDh~eWc!FZv13+|3{-imuLpzI!yUNyPEM-etLMV+dKs=CAzOvBl~N)2YFHYY1Sj1FND0$!Io^DjF_kqfq;)eQkemQDYK zb<37gsJBxo1m~;ce!uav%U$}n!2&+y?| zkbWdJZ8Y1nXuiX>U>3nd19ZI|F^WYE9Tc+%8Qy(d%zKtM-1gn4etQ9tkA_~0@>Snj zzFa0WwjBI=d1LyKGohH0Lz=Z?ln~b@E)icp=8<>#jQPig$=NW^}XeZ=ksxp zWOI>HJ=Sguy_sUMi)9P3Ax{-o7};S)8rGhuI~)Q}M8|(84RWvA8c&{-6Fo__e-CgD z9VDV^!9$UVf31;PkhPc%xs7gl2gm)e=i!nCR%m!(?aJ1Vh&9jMef$&d<^=c77mol= z+KJPGhL(Vj2&{nkOm)P@=gw~nhGto+r>N*#Q&Kb+;bMCwYeQ(AnmY+Z+B>#7 z(-BW0s_LDvevXOG8I)z{2FEcIk72*#!LRlD$*H%nzc#V+F~UCGkgxycXCpxuUJHO( zmM^7JKyRLQHt4W%#j5lMrKP|4+Wv;pTHr+315KD!ye8^OZ>wU&FH16MrUPEm8O}(c zAm)nFxJkk?LHUoQGBprg9@DfHbDQyni7oQNL-%Mq5K~`<6#mOx1;s#~n>IaDe)M-j za<5K`E3x7vT*{=Peo%$n%}FO@<&>`$X=?cim{HERK>iXe3z!k=l^z#o+YqU{-T2i- zdItISm+1$@Z|G4TQ6bTIIXGy3Qy z8`SvWp%Q@m#CqY3D||DnV|4k@I>zp;U6{5DN_W zMK4LmHCH~DVmGFHK$G_RJx$Tz0q#jua$c6NcZo&L(=Y|YHXSs8D2j@UKa_kZDlRG{ zDK0OFa$hR{OX)%;J|XZ$;4Jmc*~OdFsp;=|xqvqD6|!SVvg3#?>`!XxA*PH)f9!<4 z>OGYtTcUu(m0|4DWdD6$6s zppt(^cZB~0rVOx(cr#8o(er|12cZ_7D&mZEN;l zI;_ogj3+n_GpbM>pFTcxJS-ls=)9b$Jo=QgV9xWwSMWu`qe^{8zl&~zh~%I`00lXoPF6$tJiZG9>!T$D1Va+-??sF>}a9@0~p?zw#{P zW{4tn4M&t@f$P;e$q)W~yE_yuv@UpO~-rnb0`yYp_# z;mpI36frgWN!HS zp$$5fT2Ab>khp}EW)Zw}YbH=LtUC^#0@DGQbm6aI-6RF9sRtD&c~y8#ElBc_M!szt zobbg_dQoRKT(^q9q6%QCXnx3e%?pJ_h9{I#Ao|`{b7thQ%#oRYxD2*P6*qna;4>}d z&Lgw@wpyAUG(a>=*VTL0nR~gL{iU*|w4t~xu|gAqJpS<`5uzo`>-m6wN0!LxPj`S@ z>}0lU#W>FU3T9dKaNRUN^4RdC!9kLObA!UXJ7kZ9F2l+wvmFhY@paz4?$vF8x!(yj z0vbe5^T?7%CscIF!iWAaoo_M%lq*cjo=~%;ns)AVAMtjaNR6n=cOxfv8}|+ zPZk3lt7@+EzRZJ2ZTYzIQt2uC}(OzOE+br>+EuEBD@ZdT%nFx4#<=h|FBC zOjdqBo~d|?!yx`);M`K(yvx1XLzy!0b>&~EV zkPtsLo++Mmc9UHUm}B&gs$A*EAH9x4-+Zw_0ebV9f~~P&bzio6GM`p6Dcl4fT z@@CL`xdSZ4Q$=cgS#$hv8;#@oGA=Czfdjm$4|RW`cG73d9Uh^wL<%bBD5iL+cab8XEqRolpiMl86O#cM?bUSu=bf3 z7Epvr*!jjLq`stwK>xP?osXM8d~R+wTg#O4B;>;usAx~dYGAgbSqnR$v*)W2@SbdwG;LIB0uu3Pr6bE8nMQqGsE;-WFcKlXlpw0Nmi?~KtA&cnzb!amL{ESe~O{TK5$@* zf4ed^iI~m4r#l7U*;h=pxA}@(Laq|Zn~3Ka&JNkKwiEZ1XbR_`K|0`(Y82>hs+b>I zUz4Pv&GZCB=|cEUT6dWpWFLhg4V4wE=TF%r{!0`)c-19od3_7Ce=omQO{M$X^9qoj zkSbE-xzxSl?V6|vbQ=i|qHR=B90J7DVi(GWUbzs3t;THvU2H%k@|J{K_};&<2PBD; zO_&x0&0tTbhq_r;4!0UCdE<2{MEi$b=tityh0foX@BW2rfBPrs0I+D969Ey{chv~s zNyqApxy&|uI`rYA&IZ2i{uBZu8+Ece@J5AYO%|NvoMsWD>cye2gP3KC2UtnMK2qfy z?ysulh3BUTzO;RQVQWXa^6fc=F+;nfHeSJ~z3f6<>w?;@Cl{+Mzs2qwX1vh0!)J{7 zXkfij9S`_I-2kTR}`{!EuDU8HrG`$KMQvR-0ym)HzEf0`2wymHp87q{^L>?6umL+pZ#*C-2X@>j)l< z!J(DjQ=ZYMN&hf%(x+LXa?dO^TJ;{ru*D3^rXqkj^e>d_l0CR*N#qdum3oe+Xu&}q z4M6xLW_eq>X6NhUzrQtBAkcc&bUYA;YC2Y9VLy{WSq0kQ+BzKH5d&kfCVE`Eh(@O0 zT5lGi)E=0zuiD0Hc1!%~AEKnZE$o2}Y&`BIKUAKV&b{!(-x}Bb3 zRK)sGlnm-U;GVwbV(joS38N%mjNOXEfR|4X{~j>8v@KIo+oacnOH)nhrAE_0d*_P3 zB%|(nO-$kv>v}*D(`!PQxqkK#-Bfw!TUE&F(HW0!#w_PU-_*A^`%HAqIzy?9wzpXz z;R`edRjN~y)w>8IJ!uV{;mgu8~q@9IZz@B*3E;O=XsWL>Piwi*L3R5Z1K8uL@V{DbUfHzlespq4^$f8);_io_4 zIT|?kUR=?OJVQqFYPYc{Mse-*Y~fQN-54WM?~qb^3{g<+3x>8RiMri;3$c8tTSp)t>vV5sc{C6cW}Eme02?ye4C`=vxB zx(raGW?=CNiv4Yy?HBZn8r6843@D`Y*L5yQi#!=0KPWG^NCyxLQ>`UE^uqnmS-pVcHBXVpQXg?<3?JKD zy5ZkCM3T4`h7UauilXrB4IpCGn|`o?XKd{PK|`(=yx<+Ox@}*vN|xDaHc0f%8G~da zcE5?T=kyys?X$i!1L87syKmo-Mjhd(Q>p>u-($T#}2P$I-Lc>o=Dt*pSx5o>Q8M00%&(dBt}50C}c>tfzF9)l${Ln2$3 z$^@a`pXRfHeKJ&Nj;C8`(Y2NZk%FA`BIQG9INkIa1;OxQE2hfB>GKB8X6{vJMbR znUm&C)wj6n7k#Wx>-c(AyZU;v5cnMb)c9Srl7{!t@SG%_mY(Ewq9n&GVVr7X8?E#F zyzNIn(kCXS8@}vp{oVAqo!bQfQJ4q_QPrdk!P{ZFAEgdOH|)(%Mn9op_cPUQdzn^V z(9`%;m>j>koCZJ_Gt!Yz%fIqCF?028G4^tOM!NY8W8g=L2pce9&NCz_YacesoauW6 zh$a40rjhLRoX%oAOJR8) z0nXi>4&uM|t5ufjj-3#UQ7N($yv)mRjF%VIpHV&rU|Rvw;gV6ETKXp40Adl zQshL7kqx6S<=L^SzcQ{Lq`Z6;6V%bSrV3a(8!4(d3Q%d5`4Z#vqnGAKW?MO9N75oV zJLJgTve>8cB)(37W+(<2NYnB@wALHjQIsL!3_WrhK@%(~RS+!hdA7sYKi&H<3w+{r z^ZoM^G`NM)n=FGj8mc-E`p?x0vX@9?1ENV(#XT~jrX~OI5gp^l)uQbS7ugx<{tj<2 z8WwgKpGU7&o44RFz4FLN$P$gX|DQ+sQx;>4xi*PcI2wbc*)XqTAwR)AW0Jpe>s`0T@Pt+y5cL~}Q1 z%~wX4&!O#APq!uA-wQwq1yZtjeiV1U+}lG=uK#65{g8=*emVk#Q?I`ViaKY%V_#Eb zb*!E-nqnujn8Hw{0Y z3K^UIM7tM9TMzz`8WM7EP|%>J5Q4-2Jz?w|B1tZpHzx8q0uAJqEiC{c?c8}xLZ@*^ z);(hvJ3x3MZ-WXjc_veKhlhP6QH{nfp8Tccs-8kzIDq0K*4ypqwEvvyaP`y#m8!t# zxHIkb8^EwID1p7Q3PuBRL~M5MnLRges;rQbUN+m-6E2H_azaA=e^mw28v0+ABeyb@ z?o87%r}!EO;WW)_2?EQa20D=JBZ`p#rg4M{7tTKoIFVVK26*^U8l9sZ84c(Aewo5G z{o&eVPKR$o*qy9^GN;O*aYm4*_gd?-Sv(D_iN2ptud%-)_mUuyxyNY{yKAeq76tgs znrxVt3o`#JH=IdeW>r*;cxW0kFTrHjb4X?J=zK_8FWQCP_RJ17crl}%&&K^KITGe{ z|5*)9G{_7!Uz$`;67f=<+iHa{5_7ao;bPzAlWWxbeF5EsI%EFnO7iaCfD>}%RF<6v zj!N5<^XFuZ5!5V45^rAV3X%%Ee->Txm!Xo}as%{1mHQ~j$PtfvC%D_^r!(Y09U?cc zLQB}qR+f^^$PU#hm)C*@4Jo7E^8jY7b#r8OHS7(@PFr?UB7U$e=2hgkm+O0#)%Cky zJy^bfBZzOcufD@$ZjwQErG)~Hvcxk_xbFJ$9~fW)^Y_mIRhJ_IQt76pBhoyaWN^aw z=u7OrFA0n#mI;WCF0)T^;~)-=vfph*uc&Kk8~)T4fkyi87#Oau85yn^tOD_;1$p-K z$Xbx~Zy7Etii;olS=F2NYl?>M7l!u$%HQy}&0_KECe+)+!lc&uhaxW@ZGZ(0bFU>Q8oDuJQj*qaj%{kBun$Po{eSydIm9?|Xuc(x=hGJ?r<) zlzSIy_W{K4?RkD`*H+FhSfQw=LrI&qeb6C*(px^X}>P z?HwT=`eW}$8$t|eK@i}}QSNVLN4ZRQRs946&$ucbXLwKi;pTW%0}pDWd9b0K)+t9% z9`T$(H-_I>AqQ*NNFXX#=q0*nr^82ELqOPn8==VCy&b^+ga)NBGW^7Iwfk>0O?=f5 z{NtOI9LI6{NE=iMB{oNCEZd%P4;K!r0B?HuMHBHf^oO_VePezuq#CwazJ{!>)83>k zi%B9b>BS0~>qJL(8M>}XF;!E~+FrGJvDD5jC(ffRv$^?Hc-eMM7Xf(Q&!uyhYD&2u6GJ=$4M=oO^Pj!u~Grz4ZK_v+uw2JAigq_G^B9Cz-5>)1bmI< zBjaWe38t5j%Dq88Uj5!-@}Z-BlJ5r1b%0&d0fw>D*`lX)Db1M+XKXZ5ce6n=2=d-L#cEFBjQOeJ^rL_YiAU zX7!|L2VnPcam_sOP{-j)2RQJhcw^%yLAGu5Qj0{dl(7Axu*6+Jcl@$lo+yRk~#6UFH z?=49|mC+dKh&>7Du?`m5$jvMA#C-1P4qSk1SfG-sJRGOUNzwzL?4?DjdygenDV>^+ zcDuggl8N2M{ zKSj~1a_>WK*;yT&H-t+RvB;x%?3))k`#)QTAY{IC9pIc65Xd5) z&$8x(t*tpVg8WMaRt)^dwq+b)OTNnhPiJ^MKT}usHMMO zy}8It?};(q}x4dvLkZsiiHv&AOX+e3Lv|kV8Cr zc?s2d%UsmEg>{8S!rWbh!azokNx-1ER0?2nb0+J@iXE$6{2ypK;9tF5p5sp3af`eqJf`4@lLt@%rDyHg; z%74Sn6yJWfjHa({E7mvjS>_+YljE-sO)E7E2Od1G$^z7>^X(x?acmswMR#tnKE>21_UI?n;t`<_GW-yg3s zzj;~#5b{fL_hVJ!+|x2zosT1*y13zEd*H?ncQh~(5*$$%iV$#lPV(=BGy+&!1j8KN6ZXxEO^fUcegwK!6r1_Tea;zA)1Zw}>4GaZiv|RUra}l|Xg7^= z+mlT7dlckGqkR=>^}{4+g~?3oSp_;=B98oO$!QiOt%l8J=3COD_)56rQv)>RgJ;#@ z|C~OTaPWTGk+vQG8zDSqN!zr!-m1*;Gb$cxhFeP>au!&?9@bLUycN8lX?Uuy1PBE9 zxaZ|IatBV&SaC$v{h1a8q~fdMlAC_ZsC=q*%~&}_VD)4dR*Q@(3i-toT!7$Z-Nf`i zAM>7brtU-%eKt(&ou8H`AtzN7c20c`imR#&y~Dc$xWClLU;HG4%99q*F3B?MtRu-I zQxPzh1008%@N_eZrD&0~)I zruB`2r5^6Os6voAAmaK(3x*`Hcq*ySr#l~U6Y}d+yYN=SuCSLHqrHH{~8-+0BN@v2T<@gi7AVf0lot6fByWW za(g+hGu4dr_`{Q_D%}HpW=w6-k-vH736_@&-6pv9<@LfF)(>rBf!fdij~@cg6c2 zbipGAcF_`-kfvm#qFO;n7KV9B@}GfgbO>JsM`fT7q=-_ZlESC4>XB)`RM~%{ke$UHj&4yJf~~K&uu*X7k((5rkcp z%!8iLUB|bE?XKe&n*RZZe@QwvMw6)yfI9>`W2Z=~*0$s@eiHGctsdm?RQIpag!~hf z4Ja-sPFp9J)w9H!?TdO8Nn;))u8dnk9>q?1PtXQxl-l8zWGYn|MHoaGlUI&Pv{I8Y z1Hkl)?Q&w{;@p*~Z-PWUalrBn{d+*^@exMxw6aOj7ecM^VT4V!a&P~0G8C**r|aOk z7L>)Oyw~9oid^n&;#O}T^n=+e2PeE5Xkpv^aHUkE1SzTyOw_!PQ{X^wJ$Io1M80-i zJ1B#$lIIn68O}k1TiH-LTe8wGb}0T35tJ=2LGz54D$IuNW3n`92O16on?|EE+5gRS zXlRIXqq)v(wEnZFnP_eFqMZ^gEv7E+*W9SkZjQG5a<0?qRT&M1D5-KU>ln> zX9wop;@eThSW9%fG8z;r+Q}9q@MtqiI@0kU;f*E0&AsdW@O*IG5j}&D-(P>ma*Y z5KuYR8K5!*7q5T5G$a=od0@`Lmc{g{vf{WD4N8g%;}UXJ0BxX=Ar664{&7y%-4ejQ zuNSOHfTkeX8ayJ^U#EY2aKOChD_(c+^oQO~@!{H0SKT_PP6imOgcZBeKC}V@8727e86Le zwfC%LmFiF~&1-{pzSeAi+SpHS!z87+KF1VXz?x6E)lIz+3DyrcdW{nJ0)qKH63`Hr zA93=$8ih}<1Jnj&3$)K*Do+4`AxCwr5cvI1hmF8T1v}ZE-zDrKov>WmVH6ig*1I&C zh3V1n9)R-tBIDr`nh6L)HFrS*`eJL;{Toj+j(Gr4Z^QXvgrThYGkX<0uV=iTD>!~W ziO2xt0%w!*6DAg#_4TJ+8@TIThp-0sLYhw%OvO~{PPwPMEx@z|PTlyelWxjT+$kPt zN9secjO%(G!k+oLPJg34csFr`2G6^VD&6hSFhc~{cl-3HoX>^HO?mW7W}KoWWQfY* zeturBm_i*hxGj6Z*B)?xMWHl`$7pR4W7)nF*c4HWu9s#AYJ0dOSkhiGgvF_s`p*nS zL(Dgft2FwV!tN=+ZPz{2zXi&~?cb0`ABvsoWJP5IFDbd)E>2!a7tbGGnKstTfb2-7 zI`dsYKv*Up=UsFZBwSXG;pLr*+_%o6{uuc+Cg%}eE8vsH9&Tw^BULQ5QeeY%c}}e% zX1?A7rdL;3l&+DWH6`m26(XCRWClLp6 z{pWz-WC$W>zpQ8T)Jx)-`hrtywxdCK%093-@H{`f5#nXNta{H+G>ss<@aC;%bb#Q*-xyp?H(24thNOP zXPrA&;Z3RYM`^B$$q~96l>z;>+#A%WW91s*S@00V?I@lnQ>EFrR7=Zbeli-Kyd3g~ zG#%G!s*cnaauQUE$NA5x6+t`O(`S0%^wZOZy+<|y`ZEXnZbL|^q0ZOi%u!YdZd$%b zHN$1gsIh`_I?dsIGJa0Nwx3DLSRje8V3l4TqKw=ZH#d|`!M;{FW zss}2>28PTK>?Mg^Wu?z8V`eQPRWQ2dVp*;MPC~#M#)F5TfP|<0y?gxj`k(daZFmbd zBx!715&>cMi|pf6zUO4c>5JqADuP7rvj_5W`4bX~BhoTO$oH;irs0B$TdDTJU{o3t z2Hb1vRJ}?n@iLoVF2c``Vj+&_ATU09+0}9^xdho+Z1K%o+!JXrO16pktLQD_K%bZSG>EXlO6t6jm` zgF!^ZzchFE(b6FbenhTWNILUi@!R)wo#CUPN^#qugnNT~tkoerz8 za|P*#UO!pJkOT5zbIzIboI@`VVKjlsMEKs zY#dX0ha(MCsph8tiH>_6!*vv1@l_JZlM95P@fDP#X_8`E41#0#{MVVm>r1KSsO~4? zd!k%`p{AU2k8QeQV4t)u;?Kfm*bp#Pap5o>9O`Ik>mC>w9(>aW^u8MgxG@%{eRzEd z@cK#H#`(EfPsSWvUhWKP4|URb2yjnoN!ewia~%dbg;)XjZxWEse%#CF9u?B*(|?!@ zZCI#Vhu}wh=!~FFs(CO(C6C)NjwzmGspsUkt)-BKsbtclGHA*l_aYuNJX2U?u06Gj zb;J>uP0?HXDr*7hnul-vBD0_WrQr)GvuWO&4+8c>u=Iy$#3dI685RWnc#lLvgp3** z^%@1$6hS7e2-PNhm#7r`m}bKeQcT!8iOYb7{UCf;m8p^HN|x22s7?VZZan6A&+9yr z|N1#C3KLxLb&@qAdjI3;sv>4beQwrW%PNjwD{ateluqNs7-kb~PB%R_WKU@gxHlQWR&TcxVodMx|bHr&@UrnoTVX^q>I z@SPVBW)$s2HZB5l`|V^wAT($wTZ`Fz`C+!dYL2ao#oRZs^b}QqJO{2B5g~*y0oU*E zi$oAe%GZ{j;i^bcb=8}UXa#G2Ee#3m{P*fdlk3mn;QXIG$aGrIAahbFP192qf0>y) zqI7$Tp!UPXy5Aj+4TU;=>?B+@@}}JWdBhEQ;{btqCN-YZylasgV)t(6SEk7xV<;s% zGkx8VTo?%JorL({JJE2iu?)6hE@AX_!Zh$ct1n(0>P5V1k|#* z(f-t>pCGxAS}}8*$-hN%J`_>-97`^+Obc?8Z4|%CJcmJt^JOY%aCYMH46mteo@b#P zc=&8^2=W8-38}+|$M}vt`=d3p|2Qw{ca^d;%s|1f!SU}ajlcy(+Wtzj^R1}Yee{}g zy_%e2+N{&jhs{|P?bgdzA zldBQDL41`cYzjH6iTP%pm0xF9+~6ZW3Q_~6m2#i$;7AdLaL(B&>9L=Ej&%QqmE)UD zK~jR$0|8EPq`*E&QV9mIhSy{&ACg+oy_NKuC0XNwsS8iDc+*+D{h6|(LaA79V_190 zz2gvMfLgOrX&ExIOKsu=0wuHsCC|R>>%eHm{Ui+rfGCB5CMRSAo$<|Qx$cvy=Ld{= z60DpJL^E9lsy6r!C52ANj0DxiNIPGpAtlE(9oAeXO_?N13NumI-s7F~_68XVn^(~+ zD3OAt*u&M*5h6q)PU$n8Qr!grKMq8}$f*@|qjkwfzp-gjDK5F2Qz^VMk)QH&)cJrN zoUlL6C;AX|1Bfu_LvT@YUSBB^nW6jpKJhO&%!Ijn7=K^UKscXvcYrR3y`#^$<+%`m z$T_1PZl|Aqxi&oo@L|I??Z9`k?=rjKn5K)33aq{DK|ul_`$XyorLSO`=9|cbvq@)v zn5FlXWb@2-jBYt>X$rA)$v*OK{{Ty+WmG=?~x~8usU8g{G21 zitcQ`uVYgezrIkP`}vo@%`?e6wqEX7I5d0f-%L{;A50cN!x=5COVO?ZfNC^?nfvO2M2PMgTJ)BB42` zrgTH|sO`6jS5B!PsWsBv$4@n+$7|RlTW40C@`d*@RDK9l8qkdA6(2E^$7MeSz%#(l z#bGUygk3PLjMWKK{ndk&raUo*zUTDMEuE_6MlqF-J~C7Yyid4<6m|;k3pcg9xRVNn zdwra*bY3_SO}!jMgR=H6G|0WYPw{Ds&GS>xf0w~t6;XZj@=^BIvWVEAv&(RQVW90WzwnnrNM~d*% zXU0_9u0z_~br7+0Izni4_PaJRH>$Ia)84i6C;nLKj8x!z+$Jd%Hv!xHh85l6@W~)4 zYe>9OVEH1Xu&oA7xT2#NsDw$4a*et=yZJXg8lrJ(^HLVx>BgyUAi}D(X`ofTg8Q_X z(>r|sB7#~j2rZ?tuI0_7L)t^{#IJ)ueP<2rUg=!jULYta1o%&?1dTd?9?vx4Hv=`X zBN3?`1*A^x5Ear8-)vQ~uL2wheZ0pC_yB9ACn;;^{ixDHbS5@>CaU#K z=X%Lj3Sn&NxFOq;TzQG$&96@zVpMDlsKLn?a+F+sW2)w$A2(`44T{p_{DSQ#Lkc zDx)E8DV-b{@XVA)&Br_MD3f;j3cETF@%;g$^YtPc`jGz-3arp=%;Cxmq9fOAYXVvd z#RAbd77rgR!ZkInv>7fJ;Hyfi1eiY4E0-fQ#9#-tMZ3tQHfXkx9=6j!uT;LA6i->N z7)bnGv(cFw4MX|k?K%Ud#4jCbTFH4&D$JOFWbrG@t-#fLQJXsM;o9o3mkrqS9TsoP@+KXqfA&4(! zA<+Os8IS0~>psk=s@KE7f0eSR#}7H9zh{_!w$WruQ{v~qeVR!_Tf~SvVi=;616P)A zCrtdgRvOTctr=LKV!bVT9*pk)^RHk=Q=jHu%MVIHJUCi7aS`kOVtn)iI7})yUSY{l zg1(!9_xw3i?(Oue~@Uy$k3(J{m z)v(SO&v-BEt`Y!AyE775WT_;=1&=Krj`T?b9JQ6}y1}L}YlX9)e%5PWg7R#0{w@fj zX`%*HEpv(hI1$=9ta0S0@sQ+|^)3a(!wk4?Lm~4{g>b>N&_F3c4(-$8bHem~7b}(J zA)uQ$he0#CnS681$(8fY9!Kt*XrQ0-o{o_efygmoWGPY^8B+;Wl!wSB$s!_WWa-65 zIgESP;?BhfSkTl?0FtsAJzV`CmyFZ&Tqy7Hi=G}E2(P)>Q$Y&FL=0hi37Vc5^>$P~ zMNT{L=iBt)STepbd_hdLedw`%>s-Yci`o9fSH^TeI3T?DF6*8lax5)GRfLtAgd}dd zp^xt{o{qyTH41&GR453;%mKjR>sH$)73}{J2z-~mvB!TxV{g3$qW|{S^w~fIp~-Y* zpC9IVgsx;57JU~JcBBD399J(i1sker5yqj7d1_M}c_upa3FBmvv5-us11R*mR`Q?X z>(^-Ur@m;C`^k%+&t`ShPnc>03 z{Cnu=Gf_TOYbjb>hII7QQi9HwlcSvPB5ZGa9j9K%%vgF8FkZ8rT6#?Elu&smagZ8GoytaG9qRst$ZQS;iBXfyZOW7G zTvn}%P6x!*LRiuAzK>pV9&z!!EcHqwg4hzyRf+G-%+%!P8VYa!z5@_15$9EqkN82ie7$y-v`VB4g!ty;T%NNp%xpLy1NW1QWs z2=$>fJ2Xs;5s~8)`V|g9L&f@zf?B|+ynHAMD4Dbb+h*1I0^G=JqOiS0Z}~hIgckp! zC#G7<_>bxmkQ|U~@Hh+3tYU%Lct6$U&RzEA#2$L}CGNN7!9+y@T_iWko$tcFII$J~ zH*<}rl;c+S>6=sZdP~lmLKB{ z-{#;aq3Q@-ofm32{#59ptP-$dDf#rJF8fRIA=p|98v3U?WXQ(c{wzHmIOPMA!JQ?! zEnPl8nds25|4iP^KppI)XmX-7@efJhZ7j1?B@B*_e+UyidWl7`Huv~OpSTO9<35MmiuYHr=owj+p`>Xyui#M>rhHEB#B<6(!5UG3EQ(dK6=gv77? zf6x%jbG!p`NCi0(M-o*U)pN<^Py7#HE;{K%8az{iCXLz9rfFigfKSQ9uQx`V;cO!+ zT!nG~ddw@2OstiiQmg3WvZ4REk&o+ZnDQF_=4zE^kLZ64o#jK5Z5YMxjWI?DqgzLJ zcfO+==|;L6Lp?0W9|I_Lb(vm1U8Yj~=f zMBPM3t+TaQ!r`GEfX@641$vaa_K0+&!;$Cp^;MkNbg+*URl_NT)47hoL5KH(mjiOO zT^Rqeeo5`@{$WwoS^->LGsIaYhVr!~PwQt+0g~oy`#YLw781vlYWdrlbXM7%uog!x z$V;vHO5)jAekH(H^-+8An-+{DPLJm!2^x^{DE%a8VxG!D*$h=QT^1FFWZ^z1#4UyS zbUVFpDs26$(MdDG+DOldmt#lfTLAQJ9I9k_&>ad`OarhoqDrOGJLcQ)^7y^p_Had! zQ)5i#*g(YqfK1O$$CS9rFy_}wHwi`}7QTx_!S+o1 z$w_}SdJ*4=L};}`k^gIB#!aCIMzqXh9*N-KpcXn2%U2G{E}Wo5-{ z`0=tZWw9!U-;*WLySGa+G#ib)L-CVqSkdy#XD605HP^U*j~;ExlNyETdxIH&_VUT} zF(4d#AStm02pkxB3xKWD+vw6LCML)(VL`<)X7(~a`BsKuAmc~%?-}$xw`VA>+Rl0O z0o`NFDF)2yxRvop)AvuPh$>#viedXw?4#WZ7@rqf@eux_W8^rgqv4s`V$6sz{P<`M zD$}J3seY&IUQ8I~Lr3E1Plt)$-zlyk`d2b+-C-Choe*mh67sT~g~lX15U+csL8n~z zOasP^t#{D-@9*5n<6U}%3vVE`q>Tv)Y=LE|deliiw!*LnXM+VT7H#y<2F>Wa!G>g5 zU#XQI8npeIMi$oTE6pA(?SPzdI%iNu#bZIiPEHpcga@cSgE4H?H+zC*RZWriF1wcG z+bEyb!(3fXI;#7hRx~%K?o#bh*`w!BS zBh*73>JbuZ=3d5Gy%IYYe@mHU1nq>^-K+nw%gxJ*Izn65V~##F4hhq(HpfKrRCw_8 z{fVrfD>%v@x7OT4`w!ZE7OV%i@|g2pGZ(xrxO1Bs^BJJXFyLfvj;Sh_;4if|ML0wWW?qrvyduLux-6L+P6pYRWQN4K4ukqIaGi>x zUL6)+^k-YLL%e~16=`+vXLyFu;EuvJH*{>kd2CD#Rw;I+My%gld1hkm8o>jii`2cs zNWc4Oe?QYc;FqG7Qhd=1*@7fI^>_HN`bydtgIB~9Ky`-haLZ|JZgU_8cxY!|yXpb3BVt$#R5j2fA2VYlmdX$OZPeV>Q z$BW`^)!hdH_VD9J(Rcq`NMv8#z)R`&$cF*c%do5HufP9N!k&LHHKyntiULW9P zW<@5^?92_6rc1u^5D-GD;@_jfs3G`FJ8WZmTpCS#DN2#9W5q3f8$@I4k}F?u!B{}y zLJ&|*O~~{ha=9&!8+Ju&dgY}1?Re*IPKOzdR7BLnbPjS&&1&-WFu+eS>gi1>;=qms zWNoPPGT75v20*#un)SrJEA6_a<@-Nqc*opx!uQq6^;26++E4Va}AK?eVHB^7FXn8~&pb!+{RQrq5JRP)&CN36WKo(ksP+NNY$qI%0f zP>_}Rqo}AceDULDa{BOu-IhF>u~I3X*~3zlTN<|%xkHp)7?>?TPN^PO=NYs+fN+1Q zlFE-EqyzX<^PQ2*Q(7jKYX=bPkwm!4H?1SG#59j(4I`gp)Q+|o`y&iptw6L8;uNO6 zq`fR+Pjqt#n3OQg@14NVphy8>rOwWy=P)#1o8eS|?j!O97~y8W93{W-h=)lK4EFbeacNb+?- zQ2mM;@a^gQ0LWJz`d1a<`Yx^(N?HR%E;BECK}`L@N3TSTq~;Elka+=_@4!p9?$7nK zkJb*wk!w`Lf+=2JSD|BPPlp2m&Id{uMz5a8zA?0VO6?iX@02m{5t}8i=PG*v@H*cs z&H5y0;`=Sp6cNBMZJ|a=#}70=O%gh&Fs8Ls`Ydorw2TnE@Ol)wRHR*4nyNp%Jy$fS zgdE{ zHp6CP;64h-IL7N)$I@S;JxlZuHsdt8@_>RtS4}I&8@ulIO?lhcT)-Ixu9jcA=zPa- zy5FQP4@j}4G)YteK|V({?D8=jjFYnf9?=vs%ap$83#c~PVUXYAI?1eY+*~cz43OGB znQR(a=TO%>!ayOt7-jaBrS)XM7taApbnN)djb5&d^WdSDr->UHimd0gT_^m(TK;W% zd`}p14#^6YEhP8PJdjU%qEKA+BTk5hv;bkUr`PlF?NYf3sxy$IMMKPFwV59fy&mCy zv;kDU>J>zEiZ$?H8HDu6k=K57BVGATK#U%v1I1y*dUuQKFs1knx3_Ljh_oFKO*BD(|zs$@&|n z0v|QLzFP(GB^`@@Yb&Z*Zuq-6M{}NasxNg4OftdjA1O?Nw?0b%9#*!vFP6)|bkBf* zq-j|){q_l0^IHdx^JF4ld0=DbwSHKS+m*`!LZ+hSm5={u zJK`c`xU&~<{2-$xL8Fbe5iz1@e8$u%KI3Q}ihg1=fn;`N@)Q5)Me!l1J@VU+2iYt4pD4S#)I|;&AN2iDmHfK$6yWa^-@)Zy_3NP< z01ruJzA8V#!&Sx&YHb^51y+KG;>ilJ2acK*WiyiO4KRDBH92l)`%eH@_GQ|f^;6F~_MamT9aZdm~RZ7;_CK6L}Y9ul!Z_3TrC@KW`-=aIFQ z)x^B}uN6edjj4u z>`24FT&DgS+DGlQon-XH*CQZ0OTXp_YNy)wo7MbV zpOz9+V@Vvq^5jPV#^UglSW0GP@`(1CMhQe_J&mL$Le)E%Uy3p@(5achZulITyrpn%ydSu>`xl`KEtp^&A*}fO3!u34y;|e$Bwnhlh_G`z!{BWzSn-QVuVk z|Mt|wEhpg(Q@zl&#C(WIIQzesp>i7#S+j9%ecYB7y!+s8@iRY|H`$kgs&{f-;aqj| z5uM6y2PQ+-8-`c8KmLYPx@WYaax4H#++bp`O}<@L&iXo$H?HRZ>f+e=b)sp%T2lb& z=k2jl=XLYsg8p#@x3ekZA`-%G{xU;h?LS*ksjI~rQX==c@aGQzr*C+Y?)}O+%@g-k zBsNK~x)obs2d@BpE2LB{bdZTyG{PSGIcg^$@_Tx0z{k?5*ca2ChYy%sQ_ledpG@7X zSH`GffsWNa9n%-H3P1$^*tbKw4v;dsRHM4$Z8}t~Rsa2nM@{tJ8kMh?JW7!bUr-?w zv!+P=$T*nO;#(LU8;z#RXna7ePE{?Q>+^^zqV{qKta(W_H$P-f#%3f!hJOL&*Qy+q zqOrfHHxLtvGs)j_Na&B>|NaWlGr=)C>tq=ziDuItByx_$MZDi;)9{3qeuvTQds z^NClT(6GdQW_7-z0oKwVP*T}#THjY1=X=j>22YnDk7`YI+dHs;7iqP++b-Ue;`aF$ z89U?eS*30Ygq{-XHFx3on%W~0U*EZt@ZSditxU0h2;mWaYrH!x2MDnfGPtKmynq#y=iBiL?BHA_X>KqTce?5??kOVz9l>>Tw?~U*buqH4u(-m-ZK@0?ONvXS zI}zev4p00#fXMSAZx1)f!rRc5dM3S*@8*8!qNV;lYcl-vE>bO`D!l_2Te=1)qSrPQLut zUMMNL1lrq^t$1x@CZ8@Vip033R^k|{*JN^L*u+qrH?6SIrvH8wnsO7bs?*_Lrkgdr zr8H3LW*XL}R0y&$&aos~-EG3_5kc!B&5dIPb=4S}O;9zdg!8rIy7M$p-IgP5&Z4op zX*8~sWexkJEXQZDI-u3%{`)DvTRzb!fIUT+6dg)4akD?&2SqN}zC=8v`w{)?h;${k zck^Q((@n+w{!^#*N-Gc>o8G;#KnYSjVnir?edisu|E!vR8ti}Br9NxGR7#YPzitEg zzlk2Svx&f*Q}t}g@aj0dpBFVn>&dav$QQ`IQ4UW^-$eYU7-yz$od=Td^S0SDM71+p zl!|^bP?OW2j3qO^D`PE)I$F{WPwq>+P)9&rN|o0VgPhWtEch$RBH7`}1)xgC*r_av zNp@S@S>)TyUdG|;t237hU|}zdGyv3kQ&$)$-J3F!=pX*fBN(;QKg~Dq7#v2A#)DW* zu~{Q^{6`+BvIe|BhCCzLUtMqb4u5qCjtoH%OZMP(UktuSp2k})_jPJ%&@INL5>v7` zv;0WgLr)+iKUm67o~}AF_3A&3FaJ;u0b4tCr)exWg$Do~B?DI^;2p4fvGKdoD7*M= zk?B`Mo7)cu=%X>@RFz6*ABsO3s*k|%l6L^)VvT0N zh%+Do=g8phrc6nDh7DwV^R5*KYM525tG6w!ERJiR+o0?Q-%ALdtc(jYEDk~4IQbafrKlRHh zK9Rf=rue0Y&vyC|bPm7Ai)U|YjF9n`Py80n(#s);V|J!)jz&qHa^I4!*Smp(FU{Vc zrRN1KRf(dXa+73F-F8u9o?W7YNd3j&YbQrG$Q~#-5}W67GFK1qKi+~*XGERDA@no* zH4po%wDmvc9tn3>DsAU%TB4zqH7OxDc(qD3n8hGbQ@fihk~1 zJo+~lIYDT{L-+SU<|UO?iM9+BkX$ar{Kpg8X;ChD0p+|FSD@Q6#DKr4gn%h2MXffx z%p*>4|87Z}JJ8d%=B|yTpf3mR-WCg8??#p0NQr_~niLeYFv@VU`iD{gMM<&{FRLa+ zkYL?j-frqzyq&@Kd3Q+$k^)4*PVx}C+URs5?VF`{KPRyaF`c441pBCrYNDg`*<)4! zYD}KoQQ{N-r*mL#hlbya5bI@}#?RYmUu1vT!J>O`zInf=AO%^L4VSxIQI;^<;4Yha z!9#Ynt9Yc;Hb^yZ3*F~pBGX3!`Tq(4fipAx(^GuP!tLaq?8fhdk2;7jXhZlq}mr^U&q6SAiai#q|};E-^>ol_fc`&F#MJXU+0?#n(J zB7PK+;Zmt?;2{+?u4rROp~EBcconKXP$ zsWZhigA(X3sYkK$vRt3gd_`NmVfy65$)RDSOcea?VLYThmPSBbDTD@IM!=@ux@ z#_qvF%m=EDgg?OuX|JyW7z#+@M{B|>3c|l|w%LQuz}5E-ugbQ34lJ2qzFWn3Hfl8O zOGn|9MAp)S%vq&GwHvGFeO*G5KWj5|A<4mjgkAApJIW=Ry`d4ZrD-a%5< z0DYYm^IjYJJH1Dd^Dg<6z-osD&7iDKbn1D?A$lN1<@jXM!+BCP1xjPdT@#>2#G@gH zVxFunpfAl*Qc>3o{tXRIgC+{TxeS^dSW}@0s9mOzIe$8LyIQTvU>xey<=~?t%_>pGKy!tR?{7fJ)+2-@Y~rrf zE8vYAd9-psY>6bSm8@##F!s|OLiC(zrWnNut_m?--%{$&67T10#Lkpvgky%wCseG; zOKv@CcW%qg`-Uvs?}-4kW9kpkisRrcC3%yY7I=4fSc=p6`|Ag~1EUoMICD|JiNb#C zx4iH60iQfBWLPql4NTm4N%R_wvNSvE5E+1&PqDsC+ZGC-PeGEXjpxq~&tIfIqgZrA z<3$GOb9`)lNxo?#7HcOAbaN}y{afZXEzdWk8%+I90Gw!hPj0(K&Z%3$=c1Zq&THyP z?KR(n-;3~7`j;dAEL0LtGbVxTXG;t674wMsTQ>0{cS32u1E|qRFg?HGk7hK4_rk?B z>=T`5Vg*Vf!Y7O^FN9GB2L%@&y1x;UPB-E4$#u2;LjR~wtwc80W{O7?h@ zW%emc#X8%b5bTPH;aM-iBg=#mC)xFt%Xm7au*2D2zL|7^UX=`}+&&yH9_xA<<(BK1#l!MS18+ok=jBnQ_qhM2EB%A8vk$%%Nvf>u_CN!4p2468C6%v=O{(+36g>;xhdDS>G4T;>QMr3{gdcgQ? z6J748qDlkoy0nDc%{K*~Q@+d?rJ{0*qJNvPgsAF@{krC?CGFee>G+iXyjfU0mXX2K z-TO%Pzr4UZL5Nn3Q5UO<0Fv(p68|;0Z2O`J)27Jvd_}Y82$n-t;&G|~jMq@!XR_Cn zE5o*!=8YU0pyqNNea!aO?B(v>r~)-k3;`=OgMxsAT962^iVMb5HG605A*@O61uanH z(!snmHTp_{O9%NgQ5X~s(uY%Uzqx}UGyn`2z~Xia8=`fRwj%R`h^`)`>Xa^bYlutM zGB&Io+aC724U28J+@QI6IU~h)YqN<_vf`=%5D4}r9-mbLXm#(`29`peEBR$-4CD8z zE_jkoso|IJviKCffQ)f9M|)bTcz`&qhrnR$;e%Xki3ROikb+l>>h}e!_b)iI`oC6o zlRqxCr}ud(pZ_Vx+TPAILTt?ocOamf^!VVu^gG_>1qQO{l;On*U^RZ8;nx~v`2ghwbx(=TZUSG&D$|DgX=D>C)xGuDQWEG1X z09#uKWR@&%gvjp_%}F6JI>LKZD8#4y9}5Ka#3LvnK++iNuEwv&@??Yrz|CA9DqFSm z$OQ6qHax083{E460*idtCBI3 zf8SC;CZ0eWyEdq5vV{iGwbQAVFy+2$qpdZf z=uGhuB|H(9SN*CU73pcR_%|*Wq@R%Qd*l8lluIEWO1pQKTuN+ zO@HSI(Q%JPrnHPLf7x~}*u3A*5NNBj&BZTjCN@Z;(PTvEPsE zEai;NadU}%tV)xW*hFzME#(=AT7pvj(qs~U%imixK2t~-w_C8+^d5R$JjS(8_~U%T zYuhA_A`WHK<&S@pN~yJhT^Y;@b~UeEdb8(dpje!YBB}HuHRRdE&Cmrh;^7IGT56V6 zoHJeV&og|76g-)MDvbJk?Q8!=(7MJj8dfe)Y5`NR3XVe{R~i~)+N9qDvuC(zlCVW~ zkp{*7JIk}9O6?j=4~Vj%Zwz$fxqYi?#x@@fI24DD9p}hQrcvp%vUaqcG_w^LR(M7N zoYc}88TkN`b!bKE?6~R!t2r)UI@tcUL81G|W|rj_`c4H^1?APx)9^1znFVpXeZevP z`qDbw6#yEX4_ad0NVHWa>3WLsW8Jv}V+jf4@j20d=xiEe=?fd>^hQX8n5ju^-;Nnf zu(hq9CtCnzlSmR(0Qna6Lv4CKK3A=w@Ep3Y-QU*~KbK0E(V6cLHRTYOp##1~aBffh zmGAu$J`w>&y6+fy%54(sw|%OgABldd3*FAoIdCT#Rvp*i8_Jd@y}|B)dw|@~%TvKJ znKf#X7I&QP6&;IY8Wc$kq8k($5UrqByZG*z+yFr>x;Fu82(PIJZmE|$W~x3pLBn=4 z%wFY!1P@0lW;3ns%)$~4S$S0vg*0qzQ9L5j0C=uAWUZ&DaW1guSrC~nA%;%jlLmLC zP?5@G#u#&96^IW2sH;TXT%%++FzcN<`mq3T1@8UqITE9Z*jXiME&zll&mQw0=1Sse zUVkJex)C+f%BG)ydS(T?3D&voM+ zDPK-1qQFHMY?<#R3!6F`S@oE{TU8MHxhV?nkyGEW1#NVNcv?C(DlRFr{`Pcu@o5VB zc|kS*3K=S4)&4w0M611H^t~%4+^mc|t@+fr*&jeJP#(=c7P5XDKCp94zM7nd$QAe_ z1OM@;Hd-C?vWQ{$J0``H&Vv?wNFd4B=SU9XmQQG!7|_*Ojuww(VHXi+r51Gp2roih z`=1B}pT+tl8%rG4&`Yf!W&ni5WC~IxT%U_$v-8T3p-1Y&%aC|B3rejImx1^81aB}D z3-iqpD`7p|k|Lb~2I+3mWf_PglaM1 zG=A?v^@}|I16;?T9N`8y>g)zE6Ya_}2{ym&0qLABQ}wG>348F=13Ss*U#!Y;_8v|y zOTM9o2CgwBtL!eluv@x9tVafTgY=G+|1QQlFYTLo2x5oesCd@AtW*h80h9aD_v^1$ z@K(YUM){A7-$^4UAreL_t>T^|Zwyh8MvW}ZpTb(dGDWASfq#}}5u1Mn9m4rRs~UH947 zmRE7rZc*QEL-c+=jB*XZ9vHm7^0pnPw6=$IBF!I$ajCtXdkf|N{xTWEg3*qT7}gTL z^YjEGV<4o%@voz+E`sc(ZxQSTX)QV7W*fDbo`50x6(RjT6*|d{C)pVtx*kn&FU#AFKsh@Y;>H-~cU$}YhL;ZexQOXW?3-39b5R%sA79qIxR^_AH&8>1(6@pYTlAC$0#U-_ z9qRUUv>bBW7vjCdvMtr69zjA~hji5~wg<*)gmmT<2d6HDGX%BT;?OEkk8Bal*O%} z(l+~-^rFt$8eutLN#;GQyI6cU_E|inW`d07^~ime_rm`G%8~Q97PH)v+ z^#zxhgkIDvH0G0g*OV!{CdroQ_SnCIHbwDxct-W4!0Ozgi)QYyhq85cdAB1dIxm&!_~rW=2xW_Ova3u#jJ2yagq|W1%OaB(vv6My)>xi1 z(LUvdJ-YW#`5^sAYmX|nuw#;k>dfzGo zk^w6)6*x8gl;?Essg~3FA1_j^iT6Vi%JHfxLl8xprW~zS_Qo|aH8$&luYc(L?AkFu zK$_9>x|qUwZ)0DU;F*)zhz#>^4&4^q3kd)OT{%Ztr@4c;pOYua>NiJSiXO8i-{Lh{ z=A>Z5*iLSH)ZfQmW^Di?y}SC_(tsd~Y58%CA|tafzz|K&kt zVYSgOHEhzlRWHhg2{tw98#RDM_=PF$Q(10nakOvvwculi&S8Z+;wIwas;VdmtIm7G zXQ|U5?EH0i&<2uU82nJY>$LGp@kQ~MUvj#>R1`N`LxA8gfQC|?`d-EefIOiSyhp}d zbI{wJL^*h;)&Q^y{m?R8$@(k>-tBgk*f$wiC#fQpwPuKPN1cztVxkdI?5qwDf(nHX zq)3ghkuQLI$Cg8o-@;%Tuj+oE=C-Ip(i2uZ&mhY(=6b+(izu?-Xh#tR{?qPB#y+Eb zmFet4A`F^nDC5)I{pR}sK_;JBK_7lGA-2RQjI`ox=!d&2E-cc^4mEoC+%#)Bi4EQy+Roqvab@hrAaJx%P@+9j>XV>A;9jkb0%^N#p6t z&8E1Ru6ch}@9TXN6jzut+KyqM@26vLF|P-@SVR>aI%zk$nhNg;>tcpSZ8g30*0ZNZ zCI5a;f}TOOwzkXw74PS0n2&#g=hb$zZln+A+d@y#jM8>~9PtPa)nujWCS0zfT1fE@2g12-Ah>Ro5S=7j(s?Mq&Mi*j$u^g0zj0)C7RTfwOk`bh*~N+gE>~7k+9- zzj#|_7xa!Slxe#d|Ui0*o5?7VDxv|0_+#VUr78btIOqKD9hp zjp0Dp85N*DU)<=8o)}LzL3Bk~Qi*@qDF57_jt2zis+M|qtA3;W^*`v^lT>BS2v(i# zfg|y>XvCXkwygabTsmoFhK>f8>)@_w&w3*!-3pROo^K760~&?AEB~Tjb6*-5smts< zU(Xyjd+lkI`Y9)lZ{Vfm=06t`HL_tA_ez)7ZZxR}NI&$ie~F|{UL4$_ZY_A6kBms` zo83#POyAjyBg6{SezddNJ)g*b*0-VaF(d+a5rN$Mz-r}p(4OVU0!cc+SB8feQkhsT z5tErKIzt5t2V_zhXY$6RZ(r2}QGFJRqJrQ`G-P#-NbftnlV+VpmpQmS|Ab-4q%UR-SR}7|Wi+||gSb6}p zmzM|G92zn@nPO4BZA)QAztfkgB-8uQlub6jgHFFL@(9UF=whNq!pdL{M-Y1pL?z6g zk+{R4m@@HJzOkZPDb0aqvqhQHBZiul99+faxxfa>{5Lg>Aa+`7vPMKezip8Pz^5EG zyG+a4)ula{O}Or$!D{C#4>uR6dXU|FDb1B_N6nvt@lr@|t9IehLkkzQ+?}5g^t$Ps28PzYUT8)O4L|trr{oxzP^|~6| z%6ePt#jw}(&GZnw)f*m{DsA!{MuvIn;~?*4-#2oNLm#kRK}-vyzC1MY^w;Np43zBj zJ$FqigJ}v@oya99^tK9s`;S**AEGL3wgAlIlaPwEs0wsdAUhC%=|QKw&JfGhe^-Sq z_~H|#B-~LM9?ciDx3>ycOq?%a_1>ia<{`3i!zwgCuQ}a>NnHwo7wqG4;^WtrF ztD%7Cnsku7508^iMzpIv-mrq;@^QHfn__b1YTh9nGE<8YFoifIr8>RhiN-(nyU6^> zEz1W;v{;K-C%aGP-`WktUg%at;IeZP@0IYg%%cpARN|Y^pRZbMPrRn14!zk`UjL2H zB|5~Rtb$hO*Aehf{9XorBq;ajkOs5WS4&R`U-4JvmHgL#N{~XQ$QHC7%^~gk75xnXnP2#-Da|T|6O3` z8siUtGZ@m`D;`u9G4A!rw*a(ia&mg+C-tb`*vfarXDwQLSts{Nk55i3qg*JX5y}Kh z#^xfL8B%es>F=I{2{HNt^K2x` z13m8v-H9c(){V@Qamtl3ybB2CnZqqs(Sj6pggh*At=#im zjmEbNW&6u>RyxiRfa%YqTO7F5ub{ekZ9$Voh!l&U-f#=9THyqB#W|#Hx zL(O%m?6`?Wl04<(I|l$_Fo-inysadVX$6qCL_T|s()1t3%e=*WCw)YV8)_Z#T~%Bo zys|8_T_Ido#mg8^!U}Z_^B2wre^(OFphk-H3ul~$a_9($g!Q3i-CB$=4eYf&AQ>vo z2o#%qBlF8~ZU0#@H|I((oc&MpE`|^*NVuozYjXIV{dbOmOs)u4Ela$=R*9dMU~AGp zI|3+F>+ADVT0_L|(FxxNcv!!jNU8~&Sni$@Yaenoh__~gcFbLH|8KJa{4>vXCTc(Y-h z4$(jpYHBR>S1(2`Rrr=8<1_p1ThV4LQrZ5ZB2>F9!i}%xIk+u*&9`@=m?upQDUh#e z9{}Ph!T5|ksfroNCvEZ1)WIc`TnTfI)m^rk>r5qG`qN50tp7*8PqcM)!CXy`S#i;l z@#rI!J-+&Tg04*i93HhkT=v&FC^jo;8Tb`&);4kp(JJUVvE>6doKkM`6zF3=@|dVoEi&;<;$?A zDp7+@^^xrSyGjpPZCx4+g9iK`0ska`FK-VIC0}zWc{g7e*lvs`eO8vOjIZRebw%P~i``B5X%=r^nk1E(0ipVG z!|Acfn9OtGEQ*h&n@oqjP+h>IM+Jz2M@BwOk4%gVtgkN*ZAaTwYAQW{kz*KiYxh_j zmT39+9;J$hNTtkkcH4q$#Qm855iumFTzOn4LWiF$d}+_5lRAA4*d2-46-k~UBdqLY z@0l{~tZV=sqI+rAN`;0`CsF{clmLIUNwp2r&HbU6f;a)oZy^47YR~`!c8cDlDOR3A z>gWKT2)mQg;x9yc&69+JJGp{*d<i>IaL;oaTnNa-o6_IVBd}B2J*@w z_f!?tY|OOfALrEb5=Zp8Pig}EB#2Y#h0$}Khep@5x0K7d0R`zX*I|z%*(NCG&05_- zHyJkztD$I(SRqE43%#mt<{WQ=Z2CLe!bX&g{<`ByTFy@8TgK{y?3!9U-7CyXq3nW* z&9G`11K}=P?JP>S`?P4yl@Mjff311;OO-`;0^EdbBkkNtOL*R`hwG1a6z|EtLBp~X zJR==mDR6qm!@8Rx|GZnWyxyoiM1d~lBM8lZIyZN-^a)v|^ zXaaVfNVxl8==;PG0ivE8D!dO?JZ@t;&z6{#ly{-Y+S*?!i~Gv60PGbGazI5?awNQK zq-gq2y!bZF<9}6>&p-a>H@QI~XFI1-fuK~I5r%_P?E(zmgvn?j-j(nCv=tmhw3oJG z686Ie!6FioK%^W2H7YW1sqMlYoBfzO#5y^qd2lM}Mm1C3M+|R`X#SKv-p5Z1pFVvW zT{zmtJ+mO=Q-g6YcsJJiF})Q|-t1}j*7M}mt5)?lHb?exMo|d{*#KWV)!?DpMo8VK zUf`LiS{cVEW%nNPwIVC1k%t8*uO2h>NWZh(ZC`M!w2V+b_h59LNK70Z9ZM!dvrx#O zCm5Se)9-79c4BZvJQR$~UI`cgWTVuAL*EHZa@x^r3}Rqo^_DGaTMsy(hyoNeW`=0@ zq;5AhMzY~0(Ke1v$-+G;wbd(CIT{mK4u=vaco*=8DZ4!R~Hb-4vms{dfgdCG;+4B^isdl_Yn%> zjfY{@xmY6Ky@S$d3FT?|pwMHtt@d;$d_$Rm$eFxP-#zl`2Up@_@}UvVhYlxk0M zt4RuLQR1yv>f9i>i^GXSxAGyH>Fh1$b-TElS&ZeqhI0%gtaPC;DT}kEtMO2)hY8-H zPxlE=K=MyoKUL`M7$1UXR1Q@b`djM(=~?L8VT~$uU^euZ>`TeW)!Jc+Zt9oPaSrR} zB*HKy^=K+k#=LsBJX*a3K$RgCI_z+P0G^k8AhN)MXDNr~=OI*x^1ED{PsSRIuE zBOH~LBfg2=WxJBW%jS%T2533y+?@_ID@;pki- zaga~Sl11Akc`W;-ue&wfF8Zyy;QdfAK`)tcn2ni_V^~%^_{7c{RTIWlpv#VLrTXQ} z7*PG`uQZtZOlc1uE6d_@lUkm}@QkQjd0B#iNf>OqB0)kEEqCCsLBZq5u^H#UmSuGt zfBL}`yr%V4P96_oS%c1r?`q9?*&Z6ie52&)a=wS&uPK#&C636o_ zzfWO3mga*NmNrVz#SoeW#g6j~DWl)hI53=*;WiU;)-Y6`uImuov%cJ>6AkVaNWAhn zC~(MnT{(lAngs$~+p$o79aY@A0$xVu$|(UJZwgoRnq`;hABmQ^7HKXDKuJnVbmsLt|KAM!a5;mQGA|w%6^4BhZ}6qSbTm?wIpgKLBXr3m?!q&*HeoT! zmaF?}>Q@ZlQMuD>!<$L(9!@xj06bJscgL+)yjH8=`ai$V7TJ)KjHqzl1H8l-QIZG@ zPu-iInh{lKkab^8RWHdfwMmDL=;Lit4~v?3es*h*GL{7cMqd8;1XtFf6)Rvu&66oQ z=ljm8HsgbOJ2sW-+JGDQU2|{}&6K>*YZrGc|C^7LNJ@8Ieh^*kwv^?Q=V93kX8m&8 zmVex?;CNuA!K*Ps8FR&}k_e#rYeRUS#>#~N^!dy0mZ1;3cILUVtPg$4rAC^B->F8` ziu-{VvW+gba>AZpvvQ@w^<4qUkscDjI@TIDHvpX3&1q|UCo%2sLxf-dxclQEslX4Z z{fxcP>4KPMXO)3q;kZDcIZx!k9J@2r3KNZh+MuVP#6O{T_{8ydi_r z`&KoOqX@lQm|@o$E(Cyosj|}Zz**;%XyVBp|IziFdeHT&{-Oz(N$B}`tv-+l{4ekz zn75Dm(vyp&a-_t5lqpR??2{(GuB_nwBAuTfQkHC{w+y4Z2%!P z=7*X~@kQLgVy0y}QF4-c^h<8d^Kzh!5iQDhL&yW7y@+QPusrYZ>VdqXW0&-(8|Npt zIBz{#j{2;_izaM2ACaEq*(zh)IXy@;#);~>aj=4)hWG6O@=rh(AfRs;pApQy?^U#h z+&||#{rmA>b411g>(?R-gw7!sh%PC=UCbZkMRN|>s&hn@7){SoGg|Ss7c){K3~@3iZZvj z4-#&bdHW{R2{~xf&n<+!wxU-rao(+YN@_|ii9jXW@wbD-a2VEpDgtT(=voC=5me3x z-)vHBx>#7{RYVvRuAOHVj-(RrFnFkwC#J;mgJ3Ag?g4Bw=}sO-q>|~dz$!H0>`a5Y3P6P(%^4TC)Bx&o`bm! zucgb0;(OW0w)W|eaf*}va!+^(>$~5ba*aK59W6z@Kxsi?TI_KQfGbvfrE1+T%D*h4 zQBcNtNCw|`P_f3TimQ4eM} zkr-4aw;&N3}Hrj!vX1413* z@ns$@Uds_hrlDlj>5{38g`u(;maCP{l4DLLRxf6?ZtcSu8aYy_=8Cq0Lva@q55rO7 zX;ZfEinR*DNV4Cvy!BNgy&Pv%H>?oq0@#u4vH^uecC-;Ew&U!$PnXFtp1tJ@0Or9v z>Rx)nnQJ@xa4{Y`Gk&KEN==I#|M43pOx6+4{WA}m+!;<5!~U!09lGPD7Nh7 z?fzHGIQ}i^NeU=awKX6NvR_&qH*8Do!iMMlm@jg34+=FB>q0pF>EARCgTt5Q^DH|i^|K{( zw`_R(rD;YX;`fscusI$IOtavNTireo)@+f)V`kB9)teX^A{-JS_(hAg8z)^qBuuD| z7#6A(WdbZ%Q`;WHM=oT1Q#3uFy8-oHCjP5sC0d8c_HPX~e&4tN51tH0hcZIWcNdiK z*s*>1MRPiHNh2q5@yNlz1O{@uId7K!>(Z&n>Rzc~{zRQGPdhgxi&zS@zrBi zo#T0+b|$6L(hsJ7(IlT*C{#11cq}TGGHb@gR@^*4I{6Q0@juQRK*I4h6<^<q3n7^-D}Gts9%?XHaDJFP~tpk0-uX0S=Mh{z}{@p4Nz8OP;o5OfOM(?X}X2S-%kfbAm1DOn{J=ym=g8+Yy)}gha}>^p<4;X?}T50Vd1q5ZcrNB~^+PRSFl> zfQ>Q*&KTx`Zi@mWtJuWZkpa$FEX6r|=hJ|b%kpJ8w^-0*dcD1RZS!ZzPpR;v^U^hs zcf^z;X9ngI$;;;r+EX^A2R?Jrmma}Q8NLPrb-KxfHgS0}p_d;k*)lnP_E|&Zi3sz+ z5Qjo-Ouu_fACg9;+S)}T4UY!>A_i06fy=_k1Goh|C#iehV*ucHM<-;WzY_ovePK>q zQnavp6^EVo7(stbj>df_)=RY@02=nCe=H0e2*=2x03kLZMV&H^2)%#JSO6Fk z6_N3ztryfMxrEJCbcJ{L>y`ku$FhwZ%TM4PlqrWv!6DW z`~jSk^r7upnRG=sN#bZKF9};Hu3h^Kt*k)q!Qef#+EVI`3$n!%C1R98StRUHzRaoP zs>=dg89)DaYVQhrU1wK)67CYJdjZ59-7ILkNkLGuD1ny%R? zD+WTrV@EN0L;rH66m$x4;WVX^V57kPRFVsZ_fy>bHv#K)d9%Cq&i$<~Gul5wA&*`U zc&j#Q8$nAdFvs}M`Ss4BKVu>_S?$!x%61Dd&c@P3U-KdHqYL#JyNuKO8B zCR>vfM=7eelTv=YS1W{j8mVQ7gbMFbL1vT9t03=+;4j2toSl=OsHhs5n%}Dp0BmPy zhOh0iE1px1hhc+ali75AZrnA>2{`B=25A6ze8vY~U^)oz?&vylV^iy_aUc;0=Sa3` zkrHz~QvI$NJT-@%Z;SZ%O24dr7`U1KXt=d`GiqeO@2*h0WB~?o&HmV#n!d?&t|=`} zF?N?{CyiAsM&eijZ0sMT;4(p7QT1Uuw_1p6T*r^N)L$CuE{_C1tQr*Sed;BB6}Ipp zrszEzfQe`X7ZG_E0tzY=C{@$`4CQ=E!NNdG&QtoM^J_d?vHR%uM*GO#1pfRVlr>M1 zl0PN4wWcDLKo&Je=k_Kx&%Dtxz`X?!Zcb_eot_wWig=gBVyW@H633)qDZAI|#SEP@ zo+TJ&J^VOv67xfv{)n4_zk z>`QbtdSzH7Qq-m@@kmqYSryeA(aLVSlyc7WwL#?-Dz9Pc*s>o8Hut=w z^Y~omd|jBG%zaR3Js)z(Okrr~qHZHkBI_|7%k-`)0U5G6<rjQe_;? z_k%@8rZB|3Yfo)`EYBj`@vXfG8+KZVZTTXIuuiw4>GO-?G>hCxxOn-l{hOfGGNI4z zmrt8l%QaLn#?G6%>6BWM|E8TNZhGdFNQGiG*Z*5#Tv(W42(xW@ z9VQ%;1mIc9VxZnaAj_?8_ROctbX+;05x^*NWc6`NXYpb}4j6Jjc%p^AP1_j@eV32~ zz>e`jYLqeN%@1F8>CNlCVjs@I#|;1t?U+0LH~#>tZGfv?hc!2I7qLL zX_>-6-uViI(@U9h)<(}UXa9Ql#AZuu76}nVQ7Cvl0*?ZNJDKt<*1MIX%wtR?_aG{E zb{-C|R?}P@MOkmk9qzr#O+C>!kFZ5kncV1D>JPk+EcbzVk&=2>tjvOK*oH{HJNa%W6;eqrQm8Z41 z_=reN`FY%b1XcBy+Ds>w?BkZn)&tZWGfh0d*XH}$ZW@|G`oTMq^CKF&AZ=>@NMdSe zEq;97J{N(xpdOY*VqcL8?nf64E1axiN`BJNWkScb9cRYf%1i|LdK!~kW|?!rU=^mq z#IEtnp1LA=j6KS4|4HFWim~I$ET{9&;XNu=L67I|VAD`-WA8$(V4UwWU3J-NTVC4e z{E3jIB<9}R`9edbV$&Tto3>UxRX?Ka(!N!#x_W`2+V&p-KLR@>0|PqH z2$5&Po`wVJ3$tN2m0+{Vy{)C<>p}?;zH1N`0m(cAo4V=Nj!G(>HK0$(`XLdwR5ASA z_;%w0aCM->?kR}LDzutC_IoNX^3|ujwh9gV=X*7{72sK^^d0~=ipHuz`&0j6Mpda? z0B|&=_LM636SE@zGKN|!ojajkpnwXW&&iS|coFiK0YF{<#zCV*^+XG))|uo4QJnJ8 z{jlIRcCqv-ks|Yck~`nKTHZ{?Ao?szJl6Vgv#H_gw?XUpvp08Ud3+u_E@=sroflXE zO~W)-Kjaj!pY4s|+5X-v1QynSub^cmh9HJ8NMqo=)C8{)N>Hy=OKuoaXwxlI3g0;Q ztGVJOCz&(Gf8LqrLlG4x58lPAL~pwIQf=OKoUVL9l0CEx+Xh82nq+F>%rj9etp&=(unvpWsv{5{{?ZvBJ{ z(qX0~UDq3ivGgXhtF4N1+3ips-~+)O&rq6e@tr`-rVE6sw(*X=mYg$j-M>OttLY8B;LVHpz|IbsM9HueEv(_e zjC@iM|3B_hP@UwMY}sRq*;IdB=E*>LXHrV%Z0OFO%t7w=*m1+pNMs}TF)e0njQ7xH z<>fm$iqsdsHtVM9MuVbJag{AGoh+I^s^{TXr}37YoJXB}B}Q)#y3pXJ3bO`JDN&Un zQ{hy_rn1OGN_fPK$LZL2$0M;LetOQ5lj0@9+dM=IdAJqVocK2OWpxM7KKq%QNo8`H z`cyHiX$sRvYhtPh4P+DBeE_9)`NDT#yIGi8AbJ~62OR-CbLf>2_18ItyRf3 zy2GtWhDx+P_zgKGVvhZ6{zO3tSWX_;T|FwrR$yKBiK_cXfQ|VpwVMmhgiXZN(YH!8 zfH{~Fqg=`vfNiqu5l((JE}^Xq z;J*==t+7n1^}^ORz#b&^x<@cMP{l@-0LW{}D3+57 z5w!{r?b5iGr*{6cSd1q>apgVYo+gO0A#}72>$-NUe)?1jUu+77A)Oh}WJ*4Jeg0A@ znec;)h4a(qvMUjzPYloLh9PS`9HhsJQIk>fw#kJYwapr6ZP|&8K0%{Y*$Ag(m0yw*LrD05(9?Z~ONdeJcL@yfEM>uk(D7nhI<^ z!gMV314M-vE58Z}^|R^bq%p2BBH1kC%!&csGv|>lOWJhkfkKPP(t{)2`y{XYR@Dm; z&98Bh3aVDFW00>^EMyX*UTEA6dp{^;C4* z+2!|6?6T!6*k$^0AzCQ-GiQ-`g$ZZOszACh1v2HZM!eiL_z=x9)9xXvlczCgx+M3i zGCBW&0@&mF(uD$?Y^%Ru&6TT~7MNmy(=@T%eas`KdCD)f!&ptB669YBOzCT(CFu+i z$ASLuJWG+9_d9fnxpY*q$UPp{uiH-0Mvz7*j&x+N&!eLlVPwhp#>$okng-Ics_R-r zD(-D)@yGEy#oj&JG%Ht;{Se%r045ZFcjr3TJ(E)E8~157!yun;W@beSg3Ghdkm86G1Wvb4oqh7-&Rd`&a(iDH1D$A)ZNA^3G`@^8Q9g zxHRU9yz%!}WuyQR#N@V-aVXL=>Z83H?`H2{7c|p6WH%GiX6&N-_`gHy+tx$oHH8P~ zMEdFCB98(07ET?HrGCwPbOl}Ell?#aK$&T}ADo$n>g#ASebRjQO$F|xHT_Q9E85vYTamJupRxsqg~rH zrcav;$c_8@fwd69Ro`#cBzNhn)R|Wg*_0lpAA?iVzh30syvP{DmpK9Jk_5LEMbo&- zZfnSo;Ufs5&)e6gU7hlewffZfBOaA-p;;|XYX}d&Guu$+&#yqEayk7_emRP}g4Dhk z9SdHdG>G<%G8eH%T@;S{D;-}-H$u9xF{r0Tu= z{c}CO9sTKLC`*BMJC{{4ir@Qj+%bTElvz`ok`;9ZP|W>^oF|96Qf;KM_x|RYbj{3L zLA%-TMFtZs>^T10@rBu6&JUReXDU$@lW*d}s}Ys*MXt{|G6T|$CiGv=0<3w6N7dnJ z$T1*zdf@vmv#!)ZvOPRO`VY!m&=7kvTxHFybm#ZDn~4?7Q{qX6zD z+r6>&zqLv#X1m_+@oCZ+UVZg~opYEgijvM~XePq}q1Eqq)6a}gOrzhN@wlHdIu2`l z_t1tw?0!PJ5(`~U0F(d7&{3(u{obeNtE^p}oj{TaXVXhJl=vHgTP2`2>J29Ek@ybq z?8fxT)ykSUG+PG%b_-qG)U3UmM~rqsn>DuCu)sEW6r(exO0b_6e3%UFCZk71*>%@_ z?;c z(J4FTH+o0g`eu4X+qQw|M+#cBpbNS1#>^PE?*drcV=(qKZ=Qz<*J{(vai)!zJ_Jyz zhi#TvhH<9LsdcTZ?u87KXKPf9Iw-Q|PiZ1|j2^;7Q3S6!G%ax467Qr2?qAfHoU4n? z9ygGF!=n$LXYuN03pS1IH2MwvN)`= zy1XkSh9eCj9}fPYVNbKd(e{-9E-&*lAPP#8Q#FHd5od}sRB&>yD{7S}fA$g$?Mk8X z^G$lYC)xGL8WPDh{YOriow=dK8Q{i?tG*;DwZgN_Jfh(6m|$@^!6`(p8Hxu;4)?{VnOn@za49`Nh}`n3`yWKGaPPcZmsZv+@Q zoz;zWNzUHPJ^w(A#(q5AO&dVS;@_c=4d7RGssQA;ad^CK5qg)JFx4Yv3AH#&odmF9 z%HJ77fITq~xAIk+B^tt2GVit}YaHzwBdA@wTxOGr1XH*UBfIfu!-5%XkncTyk~kKq z<~1K3od!1l0)kz9WmYTgD}@a01nWUE=$00<6yN)0Yif38Rdtt8_*UAP+ghKWhiIB% zWpmIv^r7zSS7PLxHbUAO%PDw^e_Np~0LD}|ZCm{v1>sxP^OW|lwP;EzLMz5I8|}AJ zG>9T>%#t%9T5W+@P|6iFWou*ra^}D}IUoNJ2;kZJj&`Z^WtRY&TN1y#Lso-y((um} z$nv+M!20wKYg5uN?3t5@u2O7SX8{-NP0rFZL|Lh?gR}VcfF66IBFi27oF8+3#<3hc zxHoNUY)zpGbY70O)}s~bM#*9ZAe&06|c;W`;j{| zk6`bW4w?)YhrJz7LzRu0Ku`ffex%Qm1Dt{7ROn32x7dAMniyQ>8TS5}?=z+B`Ye;^ zAF6z~Qw54VXo}TBU8XxHe%b6%xw+oO$Cd+{7TOJUv6dMow4Yc^*;wLuZL7Ii!tbm~ zfe7*U=dCA&*xIq70LnfWL*A0(+a*w_JpcOh{Z}p&ZBF=}{Sc>IWk46-*V)$7RybwC z4Ay9VYb+=f0y|X3R?29yn(=_13tN`^ep7WJGlB(APHg1QV9o8*X(=|fCI7iLa@mzM ziT&0NP5oPGL|wM1y=i9X+l-DgyQlOHngrVYpm_vE3W)Ouqy%_`_5VZO5mr|4qd`6k z>-SAVML}YKV%I7b?q@vz?E^+`Vmn%KvkYL|Pfkj|kQ;MA;yvMK}ay%fVHABo}>NSwN zAX;1k{O8s{<0&-wPhCo5^iYp(Je91h5S=kBs#&bY!A9=(R4qF{9v?Q`2zh2G*?=N> zc9&|HValz4M15Az^W-4=0r(#E%d#SVKuh1R`V)lJJqYWvuc3LYf;y=;syuANJS`dA zi;f|Ui)$7PVMaqm4w@=n(%q-ZO=oi5MT6>Xd8*Tu@9wuVjY?rkM;?8oh*UA=g+3JR zqW>C-rlyiLV4kxxwXMZ1@oX0@$QH*_+s_<@)@naYY%g~`w~qhA8rCZY{bgW@pgx_Q zOA{unj9N1O5uXkFuls`Z#58@p}z^oW;Kce>Arn#dL0AJE$A4V6~nqFq=B+EeJhTVze`?V!$tXz6p7w5 z9c3qJ^L6Niec=6Qs2V_Si-m%2S5Z7ZD>2M4wuY!^<3Ou2{3Ru#n7pa{mHPk}H^F5) zTAuKwS^>>Q|ot# zFW1xBZ(9w+esC}9q9KHzEm3R$VWi!9=T^ido&SXU(TPi0=*Ei=&<(RLwmsPU9ekqW z4;TmM^7g>15VL|pVue#?AK_%rUaMHjl<$1-LM%xkrIfYm|4OznGV#@IJI_#38UwA!yX(S|640z~fgH$YpmgiCKAdMi?- zd8Ru0IZV^u!$XyRP4<~gc5pQQFJYrfZ80arG(As|q-!B1W7CFP!_uJqc&WJ1% zQrzq1Nhrmkd>VHni~5FUcbU*~vagXd(ZZz8xDae{)y}sV4{wU*{=h1s5GkMuuuK{^OpfFJmOW#2?n3_jiE%Jif7p%1hDEac-wBYd=GpAyOOK7&gawCdP|;Z z3`nv8uRO85OVtb)#t4?7pZUYa)l8MxbkhF=Tk8;_#|=XT4Exbs_B=x0=epp;T9rLZ zq%1cuyL!B1&=psnhP`>Xlc3b0yHe zpkF|&(C?P(Mhft=3=}*b(~S|tXd?d8brQ31c0V&_Cv3rfM8f9O0+Hk7dx%R!hj+V= zhUnF5Mx>8$M5t%-Q@QeOko{SU-O>i&;{g?b#YGVPRF9ms&oiPC{`b`j&=F|RQApx| z?jCPyqqRvmptF-8zXGqvh>8MS%VkNHsdE#F>B?~rrT-lsdyyD(@T^G7B;I>;`0S%| zYS88PzR0I`CMkL6kj*2sgfW3Vl|SpMlf#f8ky+f?`S>LY2<h~xxbm9ZzoWc78z(Mn!4j;1EM|!pY}SqPnf?#G@J!eO*B@<(Ob_Xc3YBQA9&*#} ztw)emPaBaD{vE`oLHnH#Jv}do={@))12VohQyP*2<~BF{Y{mY0V2gss2yto`NQjP* zFq!|I?g2`f3Y7PQY0IG&9|@VuX7f*wP`wc|KDHO*=iM^Z5aQrDeio^I62IA9X!qAu z^18NN5Z$2gcqT&1-q~8&S~jP5GUH{wa{Lz|GD)#+d2$7zU@x|8e<%`8Da{%*?p4V5 zkmZcUY6cy!hz}di}+oz%Ngg)VMfo13GWl-VoZ`T)X+oMo2%P#rv~tyhSC zfaSpYsZJ9IP?L4Ha{Diqm&~x0c}F?=;ha}lxHPw#8Vq_@F||Qfsvgh&=<4Z(oAh#4 zmbGMQEvQrMDR;fzKKw%Rc2MxFtoxZ#)`22mxECb^@S95dLRcuuv=kEDMkXkh<4E;b z3~gDozUn;~4i23Y!S;`mk_{)!%HCFzN>zAb(m(8^iD{xsVOoK4+A6DL<+Np@edqHj zr*zZ@f~(4DIrq)5u>E_gFxhlDe+29H!*^c_jIxC@V*{i$!8jwV-(?Q7z5BPqT!8mW zl~kYp4~cuh{ctPdL!SsA<9H-JS77jGQj$?=ufw*X;KbSTLXr%d@~kUQh!y(Fc316) zw%V!?R0&3e@6T}PyrJBl=v6eV(!~FXS=-hiRsls;G@HT`r{AE0c4qYu`Yf%l>Omet zd-4kaC~h@(w(Qgp?M#h`3-vpeP#p1RN>**2R$r)K1BCz8$rsO=z`wRT50F@7;}++j z41|T^=V9c%(HiMExAgX!qAm7$&fV%q3EoGfa1rM^H3FHaYwuz7jLG@N^n|2fD)}Rq zyt>HTqHt$n6l!5ThGpBODjkVcTUFy{BVyM4+*k|{8lXepGje+uzSCW~p6lXCCbM8Y zdjiiWR8@V`x(wzc>Fd!$H4QsG=1s1vb!%eJ`E)1i3!cn*Y?ivCw9+9~uU~Ekt(S)? z+jpxF2a>L2IHWM7Avy$TO&y`1iigpAA7vn98QDkXGlwTcxDYkZoZ~dsvu9He{VYPIN2_9^6TWhXIPk*0#C&<&_$k|dI)CjU$uaE(HW<$q{(7GL zHF-bFz4xAf|E#sii5C#KlQ0X2%3rC9JdIAS<}Qg9Z89RP@1p^bGXf3$Tu0r6f*^hr z3UYxv?M0G^bB`9`#G=YINia#YcB**Fqg7T4Q^Q^p$}_588Hd-B zy1MjORMtqkS(Maee9HZj^o0Mep*ac#Si*Zhg^`}Uk)=zf9RYyi9nq)#XFnNIlE_wL zb`l=Ojmu#Qimx;Ze``=}2wh?AJ-#^pWH3JbYaqLjK;M2LZa0byK*;d<>aV2$#JAd{ zgDS27&a*h4`nz)fmTe}3>@r6~kL336eVnO-f$C7e(jZR(=<|c_&r@ha@Gmd!JNsYn zcUgUAlCS>ONL*d}uWtP)DX${N3p_UzV-dBW;@l%jQPa+2&%7LwY}Q`lG!CcI^2fUqo*_~ABRLJ9Rld}qm)y-60L-ZYpPOK?Uzg;ygv|v|Mo`RS zy)^Qo%Tx+}nLRh=vST_^6=AVBTy|-Du=IXK9baH6W!OT!IT@d0AF3x3uG{*B*YGJc zC@EYK;8G2+KAbG0r~Z*}(DpvtZ@3@FSaKH5Nvd8ZhC-fRH_uk*nCuhRG|gFhnjtxk zC#98NbU6v@qMom4+4qz7jP9I}GQJ;Lr9#7KL4gb=1EtZV8Vk2-Jx1fB(P&1%>8G<6 zx;Kh{dh_UU%G?lCl)W~u&3$58+?ssc0q;*QgG-}UwgizT^s;B5Nyp}Gr-!BW^cuA6Sm+#@Y3=}vCT zFjPdrtVgzi*g~yphxS8e4H*t;0TX_Y@$6+r0!qxcdCOH45c)vd^e#kVZbGzz-~X%G zRo#_~jeRF>sCF_CKB&?4`sE`OOS_y(5V-6GB(I;9{;DQ7yM%|=yhj=m+Rsg;`cirU z8LBn>k4h4DPN&7|hHM!<%n(x3sAU1Il8?^iR5s9OZ0}07zueY8zH}y@L3a9|6PR<0DR+;Q+uog%y=X!&*g06#zrk)m)}hCV<_Gi8>=nU zlB9g63MY zY*^|1Eh!!~{N(&ADQ#Ek1b_US)-$Fo%Z;FnT_%|aw0=DCfFm}!ZI|)0p{f%k(|`DZ zbie~E!Wi5{6CGU|gD+*dymhNkG&F0EUo29z;f!VT2tNZ2$=GBO5fS%uL8)XZ@s~&* ztEbPh5g7KcKUr;<7SS@7$7>rxh?!TXB;#fl*N>pSv&X>4wJojgcIM&L>!IT%@}O~O+8Tye+@*I(Q76HP4G6d%5?)R=6WFV zTYxK$brAUCQ21p5rM-^hwaH!#XXn9}_r^Oc9Us#@KbZF${VhoKJXq$h={vM&Ul5PI zeMEeVL(QsSBuY&PqfG}Ckai(=v3WG!k%vSu2N*q3eyO{8Q!VNpvE>SF$!UITrZy{G zpztkI{mETQViu0v__A60^JajhACH-O&m}*z!}%S2-A&U)tm61k4KWiDLOz_3&Ef47 zDuqBa0=~z=rN2nye!4FA&iiNze1`zZc4v9>C9l^KJR&&KTT7=de~wTFty5;Qs?7) z`6lTP=W?@0Ga4LR)7VtSsL_2)QjgUwFcTuj*PEgz+Ds9C#c|)HTD@Mg?m+t;fQ6#~ zUa|8>X{}HOqC)V<=V9r+SMR1|cqn{7jxlk4RSKu5dG$}h=nIByhIDuy@QwN{Hg@q# zXMpheR-~Kxl5z&^cF)wtG)r%WF+9c#qIM6Vrk!Fkb(66eWRThz4MaZTWQuq|NAXbv zDwoRrN9-(tI%VaFfLUCjPm25bZohi-19)@cM}<%rs;LKNZ@Fg-^I-7&Q|5g$xJ1Kh z7_Dyn9s~2<4CRXeSWXq8tYjzRbjv2~-);aID{%yi$gmrq^^Mn)y6^Uk9_q_AQPmM1 zk39=tiLyW~Q*+Xnkb1b>S_!5?gfN_OVHh-k;LV@7XQanQNWbWx1+Pb4UNRiL%L9no zqp7OMzk?j>IryY$Z>AWxwB;zXXV>tgJ8L7dOr+4FPLB(mxK>&IT2^HPV#@RbALm^S zV}LEc&NHiNl*rU7aiw^!b|wb7_kGTD5#u~xENEbbh^FOcC@JOSgku1V*n|orpz~V) zICH8uwFqn;4GIUVy;PeVT)oUj?<6}0>Y`!Ng0Bq}+TGrw?YDn0z<58pl)gY=n+O4J z`Zc$QzM(+(+&)Pr8hq_@bj|v26)97X)I_eo^9Uj~^+|2Zv_Bu>t-VyjESsS6WUi2d zm=Tlm`0KTBeZM99S929ERio;+!_Zr zSlkx>Fg3)l%*;-uviwr_!^K54Q@pNzGg?P!l-*)XR!~q>^pUI}7f^l{vS}f_ORUx4 z8wVgH%G2u-9MUp@e-+`L4~#Jt>3>RMog0;$I8~6EkLs5G!iTa(8YEi+_}PsBXXjO+ zFEc;;XHnH^4P9*^<`)w}yA$sKNMm>KF3=BXI#Wzy8(~q$ylP6*so*p0nz%XDmju=P z48&}1@a832%{zp>EuChuI{R~?_uY)S@y@KH_f;FI`ZJCR)GZb1OR7F3Ay zcEe8OCPc3MCtMEz7?I{f^^EI?bMa*4^u8Y*Ik;O73!uMF_4rTjpS$xH0Vdl0;$-YQ z`kpAFf**m^^@hE}0{^JM&i6<&S^N41JUO1G+;!xG0>2P5)DoBP8floQp2>l3v(t*Ra?6!@+#FYb^t-HQW2 z-X?FoR<-y0oHr3@Xj`rPaYHVw6^;7Ya8pB9TUt%N^o4&-+uXc1QD0q@w6?WIShSf} zRo%doG%lWWPo#Q<9b4N9Yu*l9+W}k1^lLvvMGaVE2xx|Ssjuv4$sVVUmRz29`xTiy zNE0Dyw^E8E3CsWh{!MbGZRV?3?hIlzxC{;Pa|XO`N+NSqbRSQQTK&x;E))ZbvDlB*CQR#2GOeG) zDJ?{}pFHq~~JuznC!7 z+H%Wubm1@Tac*A6rr;Zio7uDv{=C395aV$63o~2S&>vhjNy@y$a7K_|(^MK)7%BP% zb#45G>02PO^<$ar*Z0K<)$4hRT5F9QM{&=zGWb41D%7Z62r>Isbzov!6@r&iblj@5Y zQ2^KEZ~Jr_80WY>Des;9ike_S1b`~OkW;L^?T=G|EB2o2k*$|d0To#AqGml zTrv1%G;Pd$#vot#m>3@ct zcx6VHVH!VZDdDTKMNZ{>F!qzPo23wlBz2cOl%!Sd>xXz6IF;9@o@1cQs_(%NoZjgRXEcf@m z#MOGofMDo*`4q|GV7>QS^?$_rF8``@pRJ(*Dbpkh)~X{OMK`jX$zk^MlIf_bKquv(@au*dy`oaW&`(HF{finK| zIe#J0$dt3>-1*JT(o5|5fOrpQLDpMhryB4xm6*yjVo!V~^>3GfG?9_e-4u+&$0F89 zr+v+1n!t)N(}_e}yt5TV?FytcO$rIS-GdD3z0>qDcp5{sXR8c|;tRsS-_zXBX=4)g z#*h4j+w}hh?t)8FN|n_&TTykGTXlXRuXGnHCKq+|W^chGXWv|Vx*!qjj$g(SOhCS` zzV5Li$*L)Ym~FI~SEeDMD?%wo=&n_<&T{3Vu>V_L-EOh})GCt}k5-e=CLFGWZ>9hC zCKtIiZ)7wD(|NJvZwHG2Jbk5c9Q)zW(3({kkJuet!k6IyLNL!e&ed~`B_af9Eg?+7 zBgs2$$mUo6@jg;CL>s6i_jE12nMHDCWewc!N0nc%a+oZh)dU&Bp5d}PM{_I^@FBsd zT#T}OiU5^2+$=AzWAa}@DazuLYQ1OvUdr7Q&&fv*-s~F#x+@Ycgabpf0##J33ex@5Ut8O=^=JRB4`YIkD0z;CLQ6w)51n z+o^8a#$^7GZE4U*ZEo!FxRvN}holdBB6v%A8#JKG(5qzXMl>`x?K`>>;98{pdfqVb z{rQhycUB$O?oEtw$J+e?*OI#T92U*B!6OyL3mH+ur3*P9MV6F%hLlC76ez&+ zcKP96eS0Gy$W9v4Me<^yp>}V@`+Z=;Zl0%serfXaFzt&*;oT&lF!SkaF3XojWB`hP zaWB5LkU{V_ir73Aw2daolAdw%8HcFvbbl@hdKOL1qJNbPsCc=&xOcyzM2=iMgUa_z z!igv#`WK^dyanwRHval25Wcn^hSc{=fd)B%tGFq_V3z)2hh3{ znWvgzL5Pa!bW|)BoBF8XuaK*N)zu|VN)05I?zk;2GXB(;gPC+L;MwUUUrK-YJ>4e# zQS!~w-Zg$+Bl5PaS7?T8y{Dv*rW=H#fhcygqoIOWaF>rT0o50Gwgu#rHHSlR^$Ub+ zIsS+(E?VSP2|=gWE!OLTs{+6@!1dG?Na&4?XzkAPpt<}l;fC}025$vlyPv>vF9xfQ zh<|Z&-B|OPovKKL1}CdC6z#0@&bj*d%*f~zSaZ#f(Pz1`e74fPIKT9TnMXBg`cRcb zu^z12C;eW%6gy8jzZ{F|rM+16tBy3b9Sjt~@ntf?YFCVR=d{>|_8LiHrGe@hwUT^64*RBt3Vm zA1Ijr{PuT}^ieO?3vOI0HLj<>Hp?_!GTAij&a2HFE!k`{9VcnCtNvSa-f}UHW43n` zr(~x=AfA!YdqmkM83?0CLpdtBmka)e3Io7Z#r^5w^Im%tD8RyZSxBXOG~o_+O04s& z;%Y5jwsAYWMnqWNvdVKssb>;B;paG)rvb$6r}cwh&ihUYHUTYL)!zMkDC|EkCv7qu zmJ~YV#UBY|0mhaY^`cxHa+->Cnt?<{Aae-YzDDzHwsfF-x;WA9s_v#C&;!TD3HE2! zbz8ahV{;JO&fl4!dwl<-{=VD`l!bVjR&Q(Ki4dqy z!m#-V%JKZaHoCYVK>2MO+X%_QgPcAUGc?q}%pK-P*UT*&3niXGzbQO zd^5!o4O@q-Bf|!|I)^kr7BLv8D}MSb%iSwKU5PGy{uc!{aAmbsl;DuL_j?Vn?(t|sswaiP}0@o;;|gWCDOpjGSq*KMy5313g$eY zDz^|h%i_bduHB6P*{SI*@eSfMDkcHN&Cz^xyOs8Abo*lNQfn^CF(ohD-0tM@MzExj zIXqFW>VQI22kr5 zK#W=jwZ9iIAnzMeT3wA&4=l%LuA)v9(*dvuerpF zHi1_{2*?@(=(ABuJVL*MP@|_Xc$U}4mQv1sNIh1|bkDtHjtk)8WYC6VN)-?@8y;(7 z%Yf8vF7m1=xk5w#9G6CL-FkYH{d27Jjpn;|ft_Hd8YpjtHn(1VxC|&R8!xmS%QF{t zK@evyOMirehQW1js<2xQ0(%JWaR~Q}>v7aZvu#G%q{Ta*7bpW;j-Ify@@unS@^n?o ze{6jA*3R9dT8=#R2HlOg4lz+qnHt7?JE~Se?o}2VCjg-FN6EAkowV8j)}ZF9VxH|@y;vc9dcK&Thd5digC_W%OvACW9vT9`|evu0#Rp*Bd z8s$JXr>jAlfO#yZvw27#)rU~#1BFaz3bui3O~&-GEt{YU8cB$Jug#^E8j78e56NcR z6=mfUdK;61pO_8RFO|T-zC8**GNCh1pPomv;#|ox9d6)fDzQy17)787hVd;bj^4bw zspsB!Iv%nL;J!eoMC%|&zJ2PIa_KZJ^3Oc>e`r*Mv+`&6RH61)Pdw`+#WT6$paJT6 z?CKi&q)6;5XAc6yGLZ>DU7vX zj$74*P4Z>cv2uVa*Nzua@oI+t(4fqys4Mzq3V_hbI57HjjBp{v=KPX#ArrJ=K3-9? z$+mbV2`@&F1V<;3w+`JR)$cCE+SPbk7I7h(hYRE?XebYNIYq=oeyR$3R?K*~99NMB z#}tUvRs_v;K1++u>k@)WnB{s`S3k3T{ha&Y?}^5r+NsmWm;C^b)p-B~Br8S520sOk z$d}3&VgldZ)4yzD7X%QAul~vlIzpoAQF`xQ#sDH?XPPcdMW^fS2e!Q&6JK*pr`V1+ z+w#ud%RphzmUDWde{X34h+sM!0c+o8wlIOquf3StcWN#9vtKuB^ZH>V z!Cbr!f8rg5e$VPgebEn$?+oKw^`baNWGsvCqguTlCe28FkAYrWMgizg3IAc?C(QBi z7C1zY?hhI`Z_dp{N4{h=^&43}T*A4KO-r zQ^``M#=Y#vd*&KHdZ+h2Dpo4(x1weZS3-aBo1mtVc*sO~WmC1SNuTD#fvnP^l~|u_|Q>qM>MV z1J(oYquR#md=%$|j!9hXC!SJt%7@%L<4i6z(%tT9RQ{gye`}O_2LIZje)%ZYBQ92D zHAHo7*;drQW;QYAl-kLQi!pbZ@Rg*CXRs!?3g8+Bi1X$Q7(A%ENh3b)1;fPvOn5|h z`tOi#^;-$o=x^^X-U^bt1M05rrK2-W<0alGLBv4L4E-BYKqp@J0f1Yk0mSQ5GboGVl_$#>0s1BOsOz&fBd zNw4=0ZP46iLqX|wV5sJjZuZ9YwXbOpsjGiZtn_7hXRq$;v@$sSYtK%5j;9;AMC{feARxwvTB^i zT&=opIQjeO!jB)n#MA;{l#@pcDsMBRTOEq(D4nO2Oj+6iM1ViZQlf7~w(J|1K-d!! zuuMXMmgW|CfATAm3sS)wk8L_n3M*jTj8_J*g-JhY>+@X5!-YM%-><1_SQgdOo)OB? zQflV|a*%ssTRf7zP~B}4QS3537JZKA37f@y4`@U&rc~wU7PFyH*DVM`Hhs%qY zJ8xSEWRA^~mn!`c2SVt-Rs6hilpGm_nq6^_dzfH5rbn@*i#Xxpm?*|t9v`8-`VzLD zk70EkJ=_q`VYMS7tcLW@>rcFKFpP|W%E6Dh&uFM0I?I=%6&&{R(H9ZST05d7T3;7Z z#9~s4k?MUJo$o44ay~sO#+~jb1=z~CjtDff{wyw_%?a5|-y%ElR&|E!VR!`$% zgkmD1+rsaoSqaV@;2B72Ay<55r52?Qb|N zl>oaT=9oETCW9tktLd|JC`Y}I9hg%CfLiW8Q!vi2g<%vZS607Mr} z$AF!En_FpdKo&{I7iDplq0(+mrncJtL%GFZn)Lut;!k$-psuYz5e{>egnAF^UyW5tnqiK`fmR{QaT-P z(2}eY>YK_^#vrrI)k5vB{Gk(n{PT(zN-hd$Nj>2)QzbZ$Vr8$Et9=mq+0g6pEZ0OK z-VKDi18BXjUmQd}3cBtHQ{pQ^W0T4aCLg4;lM3PQeJ7rd-tzojC1@1w*=p-=4IKHZXD@o&C4UydG(b_i{V3YvO5)pEFj9=ADh_&a`Z{@YnWBu3HHw$Bt2C zhtQ~EbW8}0_p?r6I+f$6>?tI@L%~gk2iFs;JWKi7!|L?GjZcHPg8^X_6@}nlI-ce{ z%kOK0H;f5aEV<4vxm8^U4F&;s2N`7JcmIa#6aT-*j|$0C*`Uvh&^>cz#_3v1br;`kH4*ZW>W*^I+Cs==CpYmc8uA`pe}6`Z|Do^KTD2avtv|1ory4N-Mb z6h1R_cOwqn-RY3h-6h>1-Rh9i(%sVC4N@ZAT>{c23W%bwzVip}hkMUGXP>>-v({v~ z)2@DtUcuq91P=SGQwK~*lS!OK!Tmnd+Jxs+)Fk7>GN6RRtV7Gp>1U=`&Hs%zmQ$8y zJzx)g1Aua=S&05xvVtw}?4)EoPc)*y6S0R+(1oY7m^f~Brc~y?V^hCsdIiSPn#3*AJ%>$Q4DhHe$z^9zU)n! zQGPQ7d*M|t3$^*YY)ja(YUy_ekPAA8^kXV+A^a{e$L!bEc8Xq8j001uJXNGZ;tvKF zn;h$^*^DQ{WV$ToTi7jR$j~7Jh2Y%RRU7o8?vbN2nbXa$-h!gOIMXtRQDg)K$mP$g zUK%G+t$3lw_Q-c!k3<*3l>{4yu(w9A?jc`No$e;pF?i)r=7CT^`G0I@YATyri_vM{ zLf`HT{b$sZm$x}~ca>+89)$oy&4ZZn2H|xn{R%Sr!9p5KB}vO@7hlu}qK^eAuuF`* zp$CJi2Z{|QOT7@AL5H{}9L1z;bqlNwMiE~pyv0_Rc`rVFSJoyL%Rjzl=#j93OgocY zuGOy6%x*f&^-2$E3H!irs;BTy2D*93-l@FS28_rau4`H@zOVRLDk_YnV1}G^=^_vP zXS_bE7uJ8T)0m4j45`w?sHJ43urF+bBb03xt-4A-1X!q|x3c8eKsZmCwOoiD*RbQn zm6mu}D*z^YDjHvQaI2_}*7bp|$Wjk1^OrD>9sfh?ibt^&TkXzb1&m|IAlDj^tw*>h zP#c;?AGvKr2?rJj$h)vaMy~F@?40`F0iM>55ZerZl6#)n`rcXfQH;HJw}%lQ$O`^g z(@tfh4?AHQRDSqzR^e^F2w_coKEyNnyoWiGzG3pM0EE>sC|y8;TYH(xy4)Cmm!)Ga zOD+E56I=I&wuFQct6ZLpV))1O1k)QB3Gor?fmM{Ygq?cur(CHLTiE7@$EV{XpN%hB z7n=sb3$@Sw5fX#|MfQ(;adHFz|Eq=Cl*@PrzQY zLBl;7kgOZWFmaK5Hz+FR$@~psD6MDqgqgitKqQ*G@)iO3(9`&(_l@WQAV8OTC_gQ6 zTH1CfI1|bLf`Cf*`Q!%O$)FIo+YBaF$uB1>v<+y3tV-kHo88JAOru9U(#(u|}LdrtW;`jcF8ZLMEa) zO}Od3u~IVj#txO6m;8CvjO2Gf4KU|pz6s?w*eywN2@p4(qATWdasB%8>I0$2{^S;# zaq&=lM(xZ{-CKbA_n6R3q_CWG4BD-T%=ZB-9cBQ@OUBzV2@^8C%>!9(tJAs*nQHF! z%H;g|g9=m4L>>y+s8I{$tF9U`qj}k^->p+{jc0O52M0>kGLIP>*T56}zKuMTn0r;~ zxK{H>Dn#yKtb3{14Wh!GvIHg&LvISf4C|fyhVTk8Ztrf?SuV!X^WV4I@-5-#<*h$sDAs*OUjvY z${7teVZZm8&}#C5SDPDzE*WTr%m!AD5^nnol+LB}VFqo8aa0S~)F7leA9;Iz8M?Nh zF=(nRn2^SlB)X!)F@7=IEatURSQl!`1n}1NodDhkbTw@1olkyy<2~fT7ueuLt@QO?D5sBcLORNm-MXg9WruM7#WKS$3T&3xYnG${<>zX`!Zo4>G5%Wg|ofBcX4k?Wy>>ad=-?UUw& zvvjt983N)j;9LxNC{04%%rzf0p?Avuw1^@s)#<1FS5 zY18AxgS1RmvSRFHj~j{p{CPsE^n_id4IL*D7nG&);c53@uOq(vLs+Ph_kXKQ%pdnb zn=661ZQ+#D0X`_cb2@&m)>_AFN$NFo*-03&c76>bgMB*vx+T;6(<`(W2y)H3C1(UQ zIw8> z)KZSfMi=O08Z!+sM+s$4rhOd?*l-s8Ijj?6p6$Np#)h5u_)xXh6p4jp+!(+o7(20S zQA3mn=e&f~-ISkBm^_R3r%EPG zPFJD$subS@l>pkmVFI|WFWWLr-2f#pG-0w?QkcZJRBkD*<|h#p+!DEwq4=J74j?Bm zz^XeMA257>y=-KEi1spGb)BDWq0&t-EA(x|8vxdv`}T!WNad~)Oa_4<)9HNlE_$gy zSyaeHB|1RifZ09B)}b*yuD9fQpBi;MSK58*O+g!&qxVn1T4EwT4+ijO=_gw{$%d@| zz6Ka9q}{*e$wu|JHCEt4>g=FZy53^rw|`4!El<@2dA<5ax|II4n??3!=il>|J)G}E z0Z;Sz03NkSx4gSX4+TqGn*Ilz6XAD}F$$l43G*3#LuMX5rB2UPJcb5Bc91}2=wH#D zH!kKzVsAU(>@I|OgfY_W$C<}{o$T!_<0xKL2*!HL|C;Yw!wQS=JvZK{Lq0GHIXhF! z0j@{bG#Y-OOLS;ZV3}9o(>zE@=RM$ua4<&Btv{97vxV;gd0Ng09n_vXuQ>lFn9X`r3OehMX@HZ9*;@-o8duOf z%zai&&V098hoD_-8!HUm^$jjz?<3h#!-hH>BKgiAr!{X0rwy%I2h+M2-;{R_<|OjH!f9bSvgjf z+2G*Iga^~GU3bO^N)Nyu8}Y*rQQ`4Y#w#A>8VfPEd@M95**&Mv9RZ-w_Y z%f1Q#>}0ALMpeWLy|*#Lqp|VrvpNC?!d&SqnpZ07Dt#ZhgG=TX5kD zvsZ5A@Z}BwHLZ;z;z65rUP~vzo?ZEPYSh-V?5=?=XYK9G9f#{gTiJ8SzLqQSx@Juw zjvEfHUs#TPKbhyc#>up)_?>qVt*c{n19}~QNAfsk?y;w0hevrd0OzY_SK{Uh5R`^;6Kurr(Ri{bDga(63XWhKFh4ypG_9pp-S6}XZ1V8W%kMB|Op<$Wa&2^n4%h(hw z?m`!Y`2xCH-H)?-<)iQDu|rV}OcsaW$4LtxhYXFwUNSKE3!Egx|K>0&%1)+-fQ)pd zaox9bEl=rjYbw)QpH+_WQC-L7P43pIwYwM}F){2c-VrMyXu1USJ321h7CWDlnuhgT zDNvVwnb)9Q$4=vB^>l)xbD|3wO69+iFefvDKum8xSOOXWcB6eRJ`292)KmMB#iv-Ed^K<8Qoc`frzDe4)p4NEUFOC3E zA!Qw#vGfD~Ks@(Pvf<^AE8FT2YYNa4OE_6f03iY#ANAO&gal~dWMMLej{Wxv3lOBY z$`d!QqzNnjQlJpdKnt@R-=j{mfdK(5f%^M?U6I_>fToU~N17R=yPvN$fap23D&%r4 zbV&0`H^6|_%OB4E+*NDky0Hw&);P{_qiwcR@H7BPRJ@?*m*Q(u3to(sr%V-+o`^)E zNiK9{;TD^nj6_Z&n36XRl(@}gj9g^lllT_rdTEL%3bQ?ERYd2KuOY^f(O%Ll4WnV& zZ=WY4wxGJS$8X?zwjIzq}#$?={~8?&y8ktXJXll=NJSh;QW zctq$U47HSSI6}J?mB#D$d` zp9i?Ma%y=AJ0yy)lVj=qmC;bW?#LGL&R5yhkt7~H)D8fUG0=#B=p54&HN~;QAlB#U zyF{S$=T8~y)9EstNoz0>!y)j4bM#4}M}dBSYudiZ6ZBun7U zx73$H0L72n;(oPPxfpESbcrm4Z>C67_5&vNpqSXCO}NQ;jOcacDo&capY;Ye+Gi($ z&wd$WVOJZ5MC2uho3&(yb;tIQSRyn$`}K+`B1lvK;TUElo;LhQdBraLr}@>=24mLl zWPn@H^Rna6asNx=v zsX}~^gX$yYMVXP5#tB?1CSa=qWQecdT z(ZEt+W?IhH)p(9-qZh9lGvAB!x)f#3eSTbs$Bdc7YJW_Gr9;`yru_NDOvWd^wU|T8 zmBXmrj@-0{HF7ye|H?ll8OSsh?G@a7d8J(k*sb!+?iCE14fRkX@_*sa`ZOw?>r#f% z7o2Go*D|yakYE`%C!e{^ZxulO|H}^VBrVWke;QZ6@c}^p?E%plh8;AQ;JhtAUR=7{r{xXDas_81ka;f74Yc3xMERG>7;1_b! z@pblti%nOns5Be(dnEGB9gpgv?tX=T0FEq4^jj;Qmxp%jAq6@%4h#N@;TMz^3j#}4 z0EyGV0AZp-!aj`PiE`+ckca94HhdkSde{eeYND1i1u6>cSXUnRaNpUJLi6jqDU6|U z9p<)wN~48pb;Jxia&t)aWk4=2Q|sV!`?}klBUX{NKcmGidmx3}a<>B_bB0-1iSC6% z5c6^B&xqR(CkI(mXG=gfWrX&teen*UeD}1I;aS7MbzYG-m8sdBznLr}JRfrvZbC4z zKj)9Lr8kCgZ5SJlcOsBpcs(^~H!rHv9CHPd@pDXaK(4dhnlN_YH)`t#V{;d2wyuls!>(Kn0KBWyMy2*CL92VYV2 z0CL^(fMDx-`08`vCD!IP9&uy@;;tbQtqI{Q1{A?!%NZI<+3Ld&)|POztuL#U{cr%j)b`jp9U1TsmYSjBI?U6N2oBE7-w-_tB9RbI!c7HKcj(&zK+9%7}eN}K&^p$5xR!k$lf3%@&r4dx@Y`C z6URXYX}lp+76NA}>HPkx!0Raja>^A%vb{1=Z-UD;7Eutvqunu3KB9W02q5gjWB_OW zrMZOE^@M=&Mr`#_;@JK8^pHihse(rLf8LrpaoYp#07b|aT%3Q4vy~zWNQzJNbOq2K z%zIdK#po|8sGf6u++`aC8|SOKE^YF>9lgk`nYspcxS%HxA9z?*CAwldmo*~p6fnh^ZH`lv@@tS+hdRS=nbAM{olR8d$%v5 zi8RLkgP?{Cit1ESOC_p+P|Aolh*c7A#4`0#SielaK{gF@k8}mIW6B=+4la=4b9Q1Q z&`+0d*f8s;P+f<;|Mx2K=L`Z%MK64dfcrNRP$tBU4k#%Rkg6$gS)ryY_67Ki<&J4+ zt44}W6UM5af9C}CUGS-&`{xvG{0FzNi(6@r%t>FM-zZOp$obz#Vvq#Dg0$b|{d6Xc zEy@2S*#5Z&F4Eb+`-vX=N?xjcY>Gs##0IMi82kud-L9?YHyZJ6NlRH`n5yNYQ-~V1 z!t;PVo+4%5eWjN?2&7A%WQX*+Gs;Vs`WdJCdk$)`7MW)NwL(MKF3aA4Tw`;4$P-J_ zh0B~SOl}JGbhPbzH53JvwYXo8yKBk0w{J}lT_Yk6TEb?}u>VxaH;W{!jWYwCl|A>j z$1Ml(2mK6vS%y=|cOjX+;t=RTJ3Ttb;9a=cN^$3yUtV@}%hS5Tj&qmGYWF||*1rzL zAQS8F4L~nRfT0AUv7deD3ib&aR{B7X6yM?K4T3&*al?-61k5<-AQVe8oN5mZi78X3$SXJuDyB&+u*93_J}k|2nX+)w6} z@(??daSpq%EXv##+o=$T_dlszdo?;H<=(6}gOFWXw!FZXMGv$8$)nmb_9kPMlvT$& z|HLZ$8NU>f#s@T3Q7j~S7un3jkyDwSSF3W*jL^HDdwSW-0q;*JNN6QlT?IXL9uB5N zB?2j()v@F< zi#+Fs`u>d1du@P+*>^FC;~(zqQn3e-g_!4VaaY?~p>QTLWb(+FwJ7L#ELaf7;|em2 zvehfVqTRG`&o^K|Bn)ZChrb7&)edY*VU?4Qgt+>L{Sb4EAqPP6kVVd+HSX!x6>W^e z`?e7ffZ!;}u@$wvYms~Imd-Dd$Muo5z2b`kDRbtwI!d>r{SU;47_44LWfQtUdMWch zNBJ2&Im3fIYUGPVf6_L@Nl7%En~M#nE)5CN*%wpAlU+R2rW~z{|7*ZA_3=AM^;$4M ziQYgh|B8T+TWhRdo=wufdaNcBqDmGt6L|w57;24(Mtczz>HJSPFXtaTj?M-C_~Z>R zwNeTIRN)%=f0Ikmc?^$DU(hCqhq(GM1xHMHm#GnuL57dP=y^hgGg2uZr6*c)hG(uR z75S$2KsB9rrl$JrzFu_L@b$dnOqjeq(ZNPuAC~Diu=wkh=Ij9 z|3uJXl2oS|0mKDZEPiBUZWu}u(K{GGjf<*ci1i_M*|kRE;#`ItAJZ>yC4JmGpP2@% z6{=?izy9>~4eQMtjIVFdOaXpYN?WZ{koXsur$RMsd8o{)MbTobhk|2G3IL1$6f?9X ztli$8&obqV`-@H*9TQTVugxq!X7@lg%p)nqDr!h?&_@V@U-$$>c3e%l6Ik)rPn&4V zH{rrk3fCbtV7Rr^|F_#Lf0rk!Q!#;oaFb{$=An+i8FO7@&3kJl_D-Awl87dN9%?HG z=wb66N=Exsk6K#TD93+D58)5|N*}93$DT7?wXUHhJ42Ob;_Wz-`S2E(`X%$tc135)igcyv^e6u101 z&dg7CE~r$YyNO(>NO<#uBsBwg)n%lJ%^wGs_B;E%Q|E}F7y`< zT29vsqu>o=mcRN}r_6#A#F{#u09AW>^O&68hLS#$%9<=|y9w}q%71hM_^-;*DpI2P z3@=BhLpWc$wZ?C6ACts&8O+c?0UiO{dwsSexU2Fdj4V!iF@fQTDr>$dJ=RY#9fuhL z4{(Uj!Iy<-*Z)rURz599n|2BeLbAF@KMo*W z+i3<#juCuwgu=^?SGb*DDf$3f30<|{xtAJ8Zkkgr)V8=2*~>IaQHU*_M=pXZ0}~sIkc}{v#dkK5VP@h>c|$71p?0;JbYrK2r1xy`{ap80;f8c{XG#%;7~B zCm3yTyeI@@f|DWawn+N+L?-R)GrcRBrLQurpC#unDIOs9#el$y{yi6^)h|p!cqzK` zrkep-2ho6k&V^&UfAwa*gJO9{Mo(6>fG5YX+r{eYy~nJcnzY2VhFvj9WP9kLq)A;o z0+Q{6iYvT}$^30&*Em5j5J&sG>lf+!cuOl_^NpCUuKLHbwW8mfB4e*yrX}K7|LHy- zHo$0Ck*(XpkBE);Xi5j*ePn+=-3`jxMKR{$%11@gTlwZdM?T0swxnQ3lJ%oiGMf4A zVghGG6pNj-U585_ElXOl=xs3<5)8d$6>j;GXk}r*>C(>9Ob}E zs4C0Y<+hBrCN*t z)vKV~ih!!uCY$9BN9PKXCw&~^ za2R))tngBZMxpgo68M(BS!=wz$yQsF!faSoDW82DW_)jemRFl1a=CVn(x}f-eo)gQ z(BDUi#Vt7UPaMJMuCY3(;DlECT9)>x>WkV5IsV{kkQXZ(UzLKyW2`{{uP_4ojDUBY z6Mv1{xl&!k#~%QtWm|m08@F|i?^WPQU-$I zo!mF%2tU586vqJIa-nr0y~E58vSM;gkc^gK_3i#9kNwMA1;8qA_9%(}D%IBZf{I&A zIapupd7-YY%x4odCV-;=ptQ8tBXy5+Zr|sxs2ALc=iR?!2#a(GDe@#fCVQ#p`pzVJE zy|$`i6hCEFWrzNg1nm2V9PWog+p(cFw*G>Lp=&aAnK3dE^h;aKN>e087ef5?2=4*u}; zvcD1s5HIS~jrRO%HtYL)Je(yMJqYOJ7>y38WBC8k-26nV=0t!fy2G^frHf&JWHZOkPYRM{aDbPwq%D;%l} z>-Ellrm1ot0FtJbi)#g%6}eW9E+V-Kg_Q;OP5+sG*G+Q2Qb1!KBxN1gdxWD2(8`uF zZngaY$}iLQ>lzb)a-Ct}e@7z0&J#nfsf%f7n}4MIS*ZSNwP?}dyJ2$H&!}6Wb{1or zI%&QS8PpE-RduOke=9v9qWR^_XuXnXDsEKskI07TU=?7 zj>s(O@*Z(0jnTE-Gm0_TocTro)V%WzroSd^+xE{B-_QR}b1#u0+p8Z$(s_QTzZfEz zQ31s2-a@6^$3l76^n;ZCJ6djoeFTJMtWV|E)BHb7)~yR1Pm*B-X2(+Tw26RBIz@>K zU`;L9EHiQ`Mm3whvN(Gw9J(f=RJSxE#GfhD+6Q6f5ya*Xl!(g6JHIa*)qw!>LZF;1 zZRm*+@Tz(B7pcIA?owa638np}?Pw*S#T)jaCpMJIN)qNL$)~Af0yM~Z>#Z&C;1q`P zg>_%KPioRC&QIo0tlej`608DO0M*x(#5i}rV6ibH@rE*|cT1K%uR??Hy&}+sOWh1a z@6)2PHv#%r0HuBx_ofojhqs)h@2_4lh{YhE#w;$Nn#vT!@j}R*RF_FvKDFvULbazc zk?TaOTLU{e|IDm{+Hq9}$DVnG4(^#BnY|%~J31&%sbry3;?x;*AVv1tG(Hx`I@6m) zO&yBF76xTHbXV#ME4Vicc*#3>^W`{vyMW@_xS&2#h#L~$%}vlMQ~LeDg2oS5jT_pid&JakG%y99eR4`|^?&byYEhXhX9~j{yVc>1_6Y z<=JO3m>D$l?k!wRhF~9F!~7`?0nvE(c{*{@3Va|~eDas9@GIwYFFU3ACV<=0OshR- zQLIaF3&?MP30&_wlAPTkOY+ChJqSJZXoDR@qTB6gMzV(8S7|$QXXWB0_p`FUZ$7E% zO$8UWMDH*O`%~m*@aB6VP-t7rV+^FJsJYyA0zYlieR}y(AK9iOtQBtLy?tjJP;bP! z*PHzcff{(0ly~+z>#U*3c`WrH@vi$#Bs7HN;BYL%M~ou8_%< z-5q69wR-KX=>f($Bz^*_BX*3W&bVyPhq<;WV(352{O2j?5ua>0pa-DR!tSr{qJFdi z$cs&aF6~Uweojp{#gjhnCFwE4fKzD&fN@8;Ouq-9R6~NHUkbjyTpUhe0%RX32H$^M z&fpZxP#f!j5t?<}4)UcZM{X74u_cP=iI(_d=kJMVnmfn*NwH#e@50K9GcY-4jtw$7 zZ}Or=aeLi9h2YUOjB$oYCS!ifa1yZY{L|=0bay6cg)Iz6+SCE@8WF3lBnF%xd2KT3Sug45Dpy6G1!FRn`rai zk@y5=1;67c-t|1jICHZhI*~v%`XGQE#E3swIXm8={Yrg@9u)Dhko4QwD}Z(qkqVZs zMDyySTkW5%mQ65;0V|1fZ*`&{J0=3FoEZ~2xE)_2O)@WS>VQGR7(1)j2Gxi%9E+W< z;gef4E3s8aHPQhu|AAv9Yp1rlHL!f7xp->xpbeLc;&HThU8fLvi2A9+B7e^M>}BF8s-C0tp~Px4iCG*Q7TuL$>ZYXO3{v;1`XiV}Q&a{*D~N;Vif3v?-He zhI}0c0Go9X>hP;T_Zl}#pnb=FB2hXiTn}%FxD&%gq!@FT?hgkl`-%7qk1S4>6!zWP zlki4Ik%YTg4G9O?LFgL_afCQq=D|p}dW?N!Ol#QDU7 z;`&JvKplU{%&S2=Y?xgMBo!LG7!=r4aK;7!bND9>`8c6urNm;!bRf35ZkOWGy64Zp z*3y*Bqyil$l9*k-(o9*LY^~AYnUS;`E$8phW9u_$wq+KA(@Uz1+Bo^B;)(c7oJat*%$~hqwhqC(#WzfrBJn5g9FzbJTN%!~ zR%Y-7GZ9q-2L8O?Q0+pcOEYW=^oFSqqLVCV$}j7Qrj>V=!=qZ&na~1!V_#@8cXVY~ zr^X*TdTN5vgVLzqr=v(q85uk5^*@g<-)1lnn;24z4$}SVB zlGz>;%#G1SvBMHV{Pa^ODMNlo$Jzn|7?6=@_U^6s@>8od&plsJ#{7$ClMQ4;nT8Ws zhDqt;rzEI|04DZ-j98AiU1C4li5X4G(v;qO?asa`r|z~xr3CbDpEYA_bGoWa-Tww^ zWA*Nos=7KfypL+gX&xjB5N;91yR!3uU2?CyKy#}|t!GiZR}AXu#j)Wscvqis9tMD( z)>@)P6v_}%q;LES3u)3rq#F}c0)hW)NF%_85y&FfcY9>wqc(V%7e!08_ZB_yHZKz7$lR1~Gs)XnMH~W$qyS zbvVF}nT487i{Y0&X z=cCMiGruHSQ>8U|RiZY{I@!3(BhB8(3;=uHDBIrOhP9mh++0Lt?_gAfZfbO%6obE8 z&q(7-#cxh(3lk3B;pmU*)wJ|~>NU+B1p2g1qe$p?Y7$Tq@#8xo6I1R?;K0eg1pZP? zRL{B*q^edYCJ*Ly*Xi?951V>b)h$4DZ9GXG@M>%mAO=+p>17!SA_SEnaQDxh=~9Fk zO3g^;}KJh~%kzy(Rg6E+6)1TlOU3oj9jsp%C=^ zMJiF5?3gdfO;Trhj!HtK^>yq#0scqa1WW)l!3$aJbZ2c_Qc1_8h6K+p$Z$<8tq$wG~m3Mhic~F|Yq!Zgq70Q)1BfYmYbP zBlAf<(&HC4&9lE#I!|M+1o9es$w?A35LTKX@*MYS!8$l3+kRjlh4T8vqM?}5=X5^u z^hNp3n;NCz)h!P>nJ8)jgaoqv;74S#i{DJ5eNFI`q4iPm)8F1sE`XZs5)RKUK@Mv^ zzM>yR4NQQ_g%K&dPj%`Q15Zj);Fs;V@#eppUQRADln5@>5T({B+JS8>1cfUJrIc!N zyR^QkA=9vjiVOz&ocKKHcN5WxQp~uo*eq2)hYrwAEf`f|tbK6TEr(ah`G%sVxveD@ z;E+ghrO7c)fd1VT?$F>oJ$Zeue|$vmMEx|zntx0QhDAkrOBf1JFch{5N63++$qV0a zLHt2~%$ir_hRRzzA8MV?xu* zA%7Q{E+${ho?L>Q*V(psv^__VO~c{{r96sZgJIC%?RUZL(=T~``gSgHR<2H)@;-Xd zqE(ZtW|QI#Vq&{})zi^QyAJ}LvHojqD_7PV?Pua9DP!Znv}~w;^hHiLCypz_TE>B@ zZUTTj2CI`&k27$o6BcR=8FkcF>u@}rpf_C5{Qw~HI~8{(Eg_(z>rGPPXX8oNsYL^hoO7iEf&;?dFU&ucQd03nq6dVS~O(;t6%+_idodAsialt z`pA4h;|m8GA^tRF+s7xOvfWp69;W+Ad(VxZA^_$+(WmE5s^%F(cD=PWiR<#F?S=qN zrG1gb?xRNfEYUHCG2#!+K%m*tJGR(L0nX~kd9Js-L`2i}HjkYE6&nsFJ7G^3ey%<7 zwQbK_Lic-CgoCd2OF;+AJuBz#0;L8|8h3j5H$Yv>)8~!K*08T`v?7TqL(OV{d@{gZ z5mbN4zmNahdqm-o+3?+Bne4En`#Y6lfH6`QSp`$06pQJ5%JS$i z-V?ubE0Er`uhTdB#9p5m&Y}%I|NZvL_5RsLZN+wF{keUQzms!peTVRjb9pX1OD)^Z zRp)Mv%W6Aw4#&!vfb((1W|oV4wL^JsnX`6Lc|!Y{HcRL?w5oXkdHuTJ1`j~EO~%wT z&|701pUgGFeJ)sp0DfrJOgzyJf2_&B_WuwlCpNpBltX7UJK>)VZqI=G^=VWqd^rQ! z13iO7()>!K5707zariQa$_Sf~GR&m{#f3T7VESFJMN(9~+?&guGo~`AVbTXq#CpN# zU;Mq*3HsLa-!rSRN@)gc^AHyqca;*&$0DU`lMVu}+fjELEPqPSdApk1;bs%7+^5jf3_x=(<*>yCImaD`V z`+Zu;D`z7n)eN&x+V%AjS}WNhz(2cV0~o#ykd9x}X#p~sfS^B`Jn&s57YS*O>a?M& zpnE~_tsfDl&4S_Zr7~)&iPdR_x8vKmnve)0|Je;nQdGT`la|RAIKGu00&&opNtwtMsN}ouyc@zKo0E%7%25nVL~x*&;a@kfk31-I z860X{912}nYFv(MTug%!TP}K@^lp`>t+9oLKYu4*a&v_(P zxm~s!u!6AuJH~xo!BIqMyjw0G&S^~3o_N61T=VRG+mlK&I2fSX>=|AR{e)tlv8u@t zx>ar2!RA)#UT<3r&}Xhr+H3%X)b9023?u!^?tZ=>{Ef16Te)YqL;B7hFA+jt5eUe= zzeI?!((B_s z4R!eX>gA|Czf&E+kr0IuTEkR63O&GJKUfC*k`mz%T%9&uFeG@j!nwLF}wn{ulMOf8MSvhQNrWtIZx(+K!(@tT(K`3`;$qM$v0K=(0% zgS`Km(UY`$b@@G*{;p)`2eJ5JrJL)U$l($LNM8ryAs0WYK^!PnQHUmw=R#+v`#xS` z%PeUcYTZHY>t4!HnsyAJl*H=i>gl5o0OFdST86gp>68rK7`;-9So5?q4@Ve~qdXfM zeSzDt#(8@QMM^Rz4n}CP+BB?O_yl$15Izafs`{EpIe@0SM&Y0W?&KBuN5p(y0`+IT=OFzu(o8BOoY~bbO?*u*3}v%ES%V zJC(y%%zhu4r23xSUFQsRpaKrj3jFtf&;qraKG*KE1x3LPTy}9uq6kn z1X|5}y3sa|8 z0)nSS>NvP=%*aiz`|viX{~1AyfcpIWlsq0W3v4)pWnbW)LG^pkEZH#Kk>DL9`vtrc z%NdXJMfS_Bhdtno9UlSToJK&$?+d5>#CZkX^HjE4KC?V`4?ClKEG72%z&@_sv0#uA z;HN$|cnIH1ANl&lKu743kD(($y$P+eVHg2XGNJccV=1XfQKA}@S8*#NbS3R@h*KhQ zZ<+u%rO_jTHL2{+_BcesbkC1sNL<@?N-sN|dQ~=5J^~Dkb91Dtt08lv0gkKClzWSE zVFaX(uyJ>g;hc-NNv(trhz=fp9z!X>vScCSP#>^?TcxBYU@8#9@md@jY6ASR>5FvO zQI}$Sspz>J$pqoir3+eG?VC~*-&koJw#YX``V}3ok_FtwkTelLd@F$zfa6z7LN5w0 zNsE!U?IqJY4dQJ(!CzHS=IqHdkyOk1mwOO8#x}3Slwq;4n@99V^s|R#K*RjO(t2rs zqI97ZjXk@MBmq3x;Wlg5IPR@kPwyHb!}+t<(wFnRV$VrkE^X-&0I1DU9c7C$70wgd zaPQ<*HNm(oVATbLSY@u1PLcRWklZzZOb3i~tqfErZx7Jw`{p=g33~1H(3%ai-Z)tr zE=vF9@A;2@D$?N-yLu^GkT%sibSc|Mz}JCx8KD0niFVzD1N3K{r-ey$L6Drl@-#qx zzbvPMGcQYc-Y5#*%-HA~h%8$)i#F`&iE>LB;I#^Ls}=Qlsg0_+)~9KhbsMBagq3N03{@YuyLz-j$YYT8wt-K1V?2@ zbr{m`UM(* zj8m+WY(-y_aiYM$ED}R+JUty*F@Drprk75Kb;In-#lCWXOODz zW@!dUPBhLN9J5yiPA&lkpZT#*^<0(|?ShZW>#xZ)Rv*4nL2{lnFvZbbLgJ@|;2L zK-ktC%3;xTCISFVO_}bYY2fh;zN0 z{Gm19*_%1x$1SBr(lTvNqIuhLF*@0*zwFNSRqDrA9#XGLUH%$*q0&1qiDG6D&C!~(3mcJLMQD-5|(_AVv zcO}gTw`Cmy<}KoPc&Tsox0?q^+f-Fp0IHnnq_K3`igR{%}ozs$sOw7ve5dxwjlmu zKEg5D$h9 zm?%Snijbxam5Ce}%4c_qeGQhT>U31%dY(j)dkYb5GaL+NZqDgqAsl8}XL)NIx#t)2 z#cfs5Ha5|63tY^C?lb)<72Bo3T&2`cOU_wKO_>1>V*v7s30=YRRTZ|6PAfB*QAYJ9 zUDmtOkJ2N3u2&=n2Z1Nk1Mat-xl#p(L+k!%wxo7;j+i1l?WqienUip2zT2fsTz#A* z3S~^Tw~BrtTVoUyBX|rw@+D!kE(S^^T?nE1{TiB-!HJeoP}(e=+pSS%4;&DFsx_5% z!I*6vFO=fC!imHss6>DDpIl$|TRnmHa?1dLl>rl~Z;CA}U*!N+S;vG#n9nFR@>-;p zSq15GZdICnZ@F`a*)W-=W&!RRiM-z<|8}e^4U9M!JpVGzr09Z?T)s5yJ5|WM2W7p9 zjAJ*`9>~khE8#Iv4qHUc)SzT1X@mikIwR$Nxeus@GHh-0KA4`VzEavB1OSTwPdyVB zB#_qj1~BsUW51dwRGeIUi`7JBd0QKm4HVoQ(8!Y?t^(awzF+l$7IJ@(H`TsRcaFzDG{i1~9LwA`)`HU8lqg9jw zx~oGriSUGjG#7oolD=p9Q;eB7m-Dyl#Olb2tm>(%tZt8V_EHh{G$iKNSK`jLIm6yP zTeudBuOT78+j01!T|)Uw8;BicvdiaISCt+nWTf*2k!tU6dh2HfzDg@CBdb$+CM7@u z2h9SF$>CUZ@cu9*-wcgs%tN+Y*0`z19c1z}{=`ftIl()>0Yt>!mMqRt+=MheZN`)S z#s3tYWkXb58-@1-FmyLacX#8^-QC^YB|3D6bV^8T4!~+Y?42Ip*nDQQ$wqp#a;w; zg@04p_m3`t1GiKk$iAS=!p%8*#+b2Mtt%6q@6_E1vj$yXW3{WcvQOLpTkYl$9mAOX z&|zJIU3?fr+pwhCBtiTtV~mF=p(UgYz%CIwS$&n>>~Jpt^wcH;u=p*Mr{J9E(kW4( z4k3b9LLY8FsrlD4cA_v@1b}o+#h0hPf3^{wLj}UcRw*$$4#MdL>Se#=8UU4NpRf=& zzV^kDnu8Y#S0I0of@u_g((_Hs;Iz$nneTl-SVjySn8l~PfTC>X-5=soW9*??#rx4 zjo-oE)!UC)Q%nxMG4j+_`SeN)1u4j_aso7!FR?Hm8=tMA5N{#*pMLTrmkk{J{4nsj zw-Wd(Jtiw{=^Ws}YuH*w#A(uKFZiY547?L7ap;T`PcR2e7}{;?4M85Uyf&YO|jHk8=7oWBnz3589OaS$GJJ zE9Qj=8~z%x1y|;JnL->mL5OD`@>v#T+`rk^l>S`Ku(JL|F0}0fhM8~QzSgc6qibi+ zW^=Boc4vpc;?BfACv*h&S4@~`*Wh?=(?+eRYu;Fqh@yw)0vM93G)98;-ivD~64!nu zMRtPN(xV)fT8C=|#w2{4JT=^kG0|3@xB%fRBJ zWbK<@wzN*tNVFlk`T1Ga+rn<;eOR*AMe8THmr(I6fbvcPN$z5eo~L4u4T32Yf>5~L z8F-hxt$59h4EvygJXw3FBc2xyBjwA1{GHXpR=S+F`Fk87F7q-0L&z}o%&Bs8zT_jlU zcz!-)i{IuA3pk7LCWr_FWyR2r7LhrQ?2`D*>Wa9#!68>gxwe8~E!i@Xr9PVJ>FiEabz9p$0nrB)I(^n^q>fK*9;A&LahUP#-kbNHnfKK6 zw>1FBGXkIPuexHB)BE&mWB}90LW}guHTXKBoN5Fj#d=C{)T;R+w}R8uJ23C(@XnuZ zHX2SqbF%-qTSN(%Oc=aF1ag;T`vc}7y%QcwpD-blePgdAX1oXje!@1ktdY= zjZgoV!A{YSWND|1;_?{G*?YeIKb-a!tt$2MT9dgj*89#t*?onYCqV zUa6Zo;9=~b&|<>GI5ty`3ehY?ha^zLfLoO#{ray+|Bok-rEfLCh`*Yb050lmEwS$k zK!f54i;y||R*&gj91=j_JwLRPS-pAqj7DvK^%fG7#A9|6xYAaI^38zm)F?5t!!B>%W3dUL?-KT?3}G#75u6{LLm`0kdaK|)tl zidf}omj#*HLT4YC!F1Ao5Zi?U)(7lkTvGlSDrFUJllIMMM3~#1Q(m8B26_Ge7mQ1J zO@NtE-eXZ;F4pHN`Gj+dk8WhprNcgrrA+2uJQ23}XXA53UpdhK{t%J)UIQZb2!8+o>&6GeDEZ3>X0?0z0Z2V{es)fd;oFX|V}_k) z{s~9}oLl@T@2kO*^VX406&WidqZQ#W-BGGH$(+g!2&(|e9sNJeqJSprDoh>bpBW`9PL=Hll`z}@sB4`k;`+xe+o63o!n)ReqHJPY>!i}J>= z9^_JO5*r9Z`SxfIqad@^1Ab*r^DzU@>obwygHjF_ES>0M$K31+bkLP&d!Q4>LFP1U)tW zwst~zI*1ILO_y8zq!77XZw76sRXzYrcOh5dT)JgOUjZMD3EsD&?5A6nk3m6kN4_$Y z>J$BdHygzh1fcqMV{9;c+=}_*y7q>xpJ|tDDga)aOzz3Vk~u=*UpDJKJC@~Mxh0(m_Oj~H&dD~3POl( z?)V*M4}seSK#nNl;^ zqrWtGPO7y($BT~hG+vnpEqs?Ii~Lqd<=Tx#^e->=Zkqwf(A&+3KkhFd^4qMgCoQh@ zq9E@Z|Ninki5EYap?;P3UL)Fv>y^)$Nk*70E~6_Z|G>Iq)Lw4KGjtJ--#&0k&19E!-$$iJ-9svxcEM+3Mf?^ zn2vz-O3>)&=&q&TxyE(8A;bn0sPA%2IsQ|B#-$h z4F`Rk(N8Z^(icpYV+0^l#*9!qC}~U*XN&LiypJ69Q%W$I8MfvA8kYXbWq$WUKS%;R;g5s0qh}dHA3Z{=uzO6S^ zs-yPtcM&@AM8g5%f_ESNRPA`i5#7#1*T^c-rd;uIB=Cszp|uPnXJ+b&iwYVRc8fYk zoIy2(dsG-N!IZfki+9dAdw(ge{xJ4J1$Op3T)z=l0MV+93A@91nk3D)H=ww;%>>m3 z&svn33`WbTwJgmNYvx zhO6hV;*scof}8a_3jlcjdmzn={X1`bp10Dp;|DLtOVvwh<2D7YcmSK5jOp1l#}jYC zuKMQG?Mpb^NTI-Tg9KqJ1?qqxK}Lb>_Ip~$y!}yZtH-I&f4v{++m%95oP|wcGyh{K16CnJX z+nmSTBnvW0UXzLXoc9~-((tI~x6VAU42t(}KNDHp|25+QXIrat}O#R?*rK=eq!2A)|61>^a;O?*G7O2IK0(p_qMRTs# z+n8@LQ`OpfcidmKrCvX{`Czr4xjfMnURo|hsJLM^JBYEN-};oBY{ez z<;jsb5qDT}8C$_CPOB8miyFVpoyN(Jy3Mx3%88Vz3F_90&ic9D5vbb zP)fAg-=+M)*`w>JErprB7_u3AkLf*4q|i(wrl)1%^h1~xz4$p!D0AC8(9b+(zrYn zZTu4I`?+-TzEIvi_m48WP5U@hrNem2i-%LJKLTJfy?)M(>YrA< zfNN^X7|ceGy<)~@40wtH%*`s5X&Dsfe1c($RM`-np#pJi>fxSqRzE`4Ak0opRU}kp zit&u#J56^syS({Fhj;pYID}EbdEGufC=gJx&AP3nAx-`*%M2=!7m`fopS3CLVx{~n z8cIHMhXn665c&%&+l4|c<+`t5Ui1_wX`3+QpCwS|)b|s{{*pvTpeULspLN6~0Ek#| z_QdX_pyqHs3rCWT?Lbk}HT=#aMoX%+{8FDN9J4x??2DCLZW{14A&)@`U>QY(#MNZ-Vv~>Ty`~$9jHgceLV8>-^5+< zf9~EJ9MyzG5{gUjX5u{Ssw?4d8J}WMH8jCaCkJA0j4HGU6kmG~+>c9F1&M?ng)jx} z+bByW#HjWfn*)UR`ebsHSMDh~anR)FW6#M_0aJpE`Hwq|fQK4NmHu(?SdM<}rg{_U zh82QzNUS!60Xhgb=o_Qr<%#7ed&Y}(L84Gs9!ufmgC)|Yo*R%%&cs$*;>N+w?lHUR zT3*-O>^N86c+Ou}(^J=D6-b}Z)=FaO)!W2ktWN~Y>*pKQr!@_8o;)Qxuc7BM{Rd!$ zIrj{vFGl+-0b}gVs1W*=hgL}E9~GqRa^vHFA0JT2X<@uU3W=Nijf;5S9r3NFN0 zx0Z;HnJi|v5w)Lu{e|Xn7iUKUcp!tx8K4wO=YO8Wn~hqoscgff`D}|vW?+yLreEr7 zt8J@)7n8d0Y}lL0EjnY_Bw|M^=MSxl!s3tQANZiswcOT$QP$y0>YDA}7)c}~vIw9`Yd1jV8c52s?m-vQ@7+!(N0O1s?yxN7^K&gkD zMV3o;l)a<5vW(0P7&q6(dDMBw`G|anQ{D7Qj?Z)Vylc5qLv;U%#F+z{^)pYZSi<5g10rDk>5jHKQ$C#?3ox_HuDhm2Ivbyc(JnB02ke1nE99%<$EFnSK%pfJJ8 z=t}arGNt!@701CBDs z?wudrro_IaE15^dRs;65odKpOU&0y8ftu!<6;u9!$s_09OeIMn6i;VV)o1<_07V^^ zMW?;fE2me*xc*d^nm+;pisVg-+q2aw&-27Qc-^#ZBv;z7O40bpJX(VLhgDK5y2OlD z3;&5C7I_iJkGOsg(E(vBWH7CQD3;vK#-Me|1B)sqSNk!N!O#E&r!R^lJ}#S%o%=;z zXs(RP64CS854O2N0KzNmTg-zUXkIxgPLU3<+0;*LJMIdXM_hi;0Etw*J~fSTGbGfQ zowfWqYhjwcr?91hNT>#;a&lNgesLbzggl42Cz7bT*TKJ%)$PXrodNHjtCsp|&UIYa z76MSPtJRf`z@jU^{yT#{Zh$^MJuyu4eUC%ZVWko}%IuD7+RMXuK7*384|`8<6CH3m zn2iBNLI05ccFD{SCc1Tl4OPuw>7upMsNQDJ z6jj{KZdisWaS{K#i|k#qH=ahYN$|7P#{)dWQhzju@zWjpdGQ8tQL!++@xfBRke zN>=WepS%Ro{2o^o^U?huPpAY50T!X1LSgT}<#X>(zKZY3M<8r)ZN79vfZ%fxVntYK zKlft%ww8?28JPqGHz?SzrwrZfv||arl6jux33+oxZ-e?D0K{@fQ<)QU@tC)*_FUEB zq&k4pE7KSr?*e?*y`lAGsp#Iy1ml@(1>7_^%xp``cfe$&6~b{O!rd&>{}YiJ$jr92 zsVQyvff0mxmpcg=M9U$8!wW=7_!sYuTu#8wSb;k!DYQ-6Q{LeQA@uu1{_s|V;zUvt zei!}nROZ2b+Q9%p{H2dfn_{o!TqTh2rxQ_EwV~uWi;z#hdQ3k}t;MrG0`UtN&DK8a za|BQ!@}>I)z8pWc4di5$kgxK&#lMEr0K?g-Rg=aRzXHoBoBnDii_MTf=W}9*$t;XD zlFK(8{5~tzDb(KfLR$$Yn$6@U+|?#%V!=m4BoeT8KA4mXdf6q~ShH#rxR3@QR48B+ zai+fIAp<4v>RyTCqkS(Q)l8$CA(Nnb`qml}Xzbnyb8$

    N5K_zAtS#7AML;luX(YEruAUYm^58ND>3B0fx$2{ignV zXQf6jl|5C{&R;UWP13bEw=aa6p?ekj^$Q-}uhs#9v&)ObI*8f)F;1r^Y-_iP+mD7p zgIQwb|Doh|0M17gC-DVY z;1K{nd+PrLK9>ZVc{#7td1_w^1=n#ZZ8XuXG;#!Pjt=x{K29#BQrO6w!kR!2Ly0-D zJ7muH#n3K=mj$NqJ%QhxFfV)N7Uq{vpn<*!``vjAelkEC+1988=|9h3gf~C8px9Cq&9GxU zQfM22C7$h4St3)*{(c&dd6>(a4Fr72Y9p%DWOxbfr`%UXr9Ev!1#Hnmx&|vX#~NCF zi?k>$Q%3=Bd~UX?s;s~qTQjE{KGI)LO?KN%1D7o||Ae_5AG8On}pf#TNRs|el8jRHi=L3w^f znNxe!wT4ZG%?u6KSbN$SwV`>4I*E^e7gBt7*UC!H6Z`d6;Rfmk?D?L;b=Fnv^^H+U zrUMc^DZ4RjEF{Idr>uhN0}u83GFk)$+p&4^rS(SwNEd4}sRLNL-+KEu-*g&$aMR;m zBX{@_%DX-)N;@g?80`XD$)bj3QEg>nNLE8Ljapu|7O+$z`v8d~){_00!ZA_Ca^eMl2h)gY zb+KG1g+UOH}#^&i^02k>_h>m2`14fKPB3fshqe_+r`-R=O zW8%`jXy~Iopm;>%iEz~}M*uhKtFQ|9Uj!k~+#7Mb8K`}AYWRHF#Dce+qL9Ax;$>Xi z<~XFxRCJdo{V0gw0TPvXv>jY-`Sjc>EqgFFrZARU9y$}WvIRiaYlRi+S75h^9F z94G0b*sjYaEUQc;Bj7o3W_G`AQen^4s5Qv2$KjD-crzQ`FCy|C@WpTzNYZ{Coun3$+WT6bF+HTn-~D-Y<=S(3Ui91QHW!?+WZy zG3^o-2pJ`MNAv;KHy73ci}7lsN>R&a!YJ7H=ZK7`^=?k+-)8cQ_c?FI9Bz z45OIOBk0`{wFmCAhFG`>Z)-6S)eC?Z&#);X)iL1>YH<(Xpkw<+hyT{I?^s8fg-^ytpC?WeqUxRCeUt3t z?auRJV|_z>A{XlXst~b7uNtnmiHU+OlS=KPfaL^Qvg`9sf2kR@VTHfykOxE= z<{5`>fjg5V2j#ia3@_jHrr<4O=<`meNRWN4NzIgEdq~?Ozh`w8o2*X8v{+)NVhr$o zN-F&=)o^l7UVCuf9v|n#;Hoh{krM=-AE+u;P8R@0x-WE0PO!hornrm~^|zxxWYx~| zaWO_UwFPxGu`lGqMlsoCy)C*g5|7jCh=@TGe?sBm{hzEh-*4*{`2e(~Ywrr5RIN{{ zW7eC+Ls$(Ni4r6Kz|!-Yz?VrEL8#xBrUDDKoli7to~fx_L~aQ8MQ+|CfODxjd#DCG zi3)Xf_=7M9InK>Sih$p+`0uX2-W5-D+?0l8$;(k17Bx6nWS&!)(Y4%vvV4OCH#MJY zJ}1?Pz11-+BQ{u7LqRsvC}4;02oFD0h}y9TE=DKM1zsF}a7RKsbRsZ$N?2O}3ylZF7%uPqcYOcI zB#qcpK$WVWtZLKnQ+&c9zrbcmmxlB>~ePG z0%)F6i^vN<#lblXvc-=2tGgn7K{6xt6N9VmN;pD_eXDUyQ4!xO!t;33qSs?hdZji{ zxbGrkWU9+7h+V6?17j`d!h&jq`wOD$ko#b;Xaos52edFYNb(s$^tj1V3v=7~d0?Cp zY>0*opGTmS!cWb4E_Esd#Yc_HChDN{Mi7$*b9{`<3*aTbf~*^Jv*@rL4|&*cnyXmV zjW^4tJ_#{@`i_v0kGTCGxsd<*J6AyMh=TB5UoO&%KgHHkop5^Y#TT@V&Ho}*ut(s! zHWZCle?koWybFkp7d?}?GJ|U~v97`aCKUml@TzL%ReK74-VxcXf_wY9bsd2CEDAg2 zn6uFttk8a_r8am+xrq9U!Zhltbv@*ojgc;7bTi~V(_!RT0o)TA%iLP~6amWwW zcz^cRqvy?U7%_h5jsOBTnTvBKOzi;wAI-P4#abQ!u`S1LbIJ%ziXH34+&Y$t0_ljB z$faXnkt6CVcBA3su$186AEDZxog@&or#DmdmB$i?jBcM;$ zyDGMa_kK2(%oKR)yuq%N=0r`vmTtZA=NnL_sB^N6I!y*wg1) z{utKkyV~ilk8AybAc8;aQah%uc+I+{;cWxJT|+mi?tS4%&#HP@c$To&UU4z5IJ+~+E=eSn75-gT1TL)!gtv;}(62GunQnjK`GQHmtqkF|w zoyXY1v`#bj1==t8!6+y!UxdEOpH$x{DuhhR~|omlnQXj zYq|R^m-y$5IJm=mJk#B`Wa_1~LbP_Fc4w1Eq0zBe5*kgx- z!Z!O45a@++k_f;x@kTdpQY0%^G1RMyS|fXYS?zEQphX=u^cQ%e$f%wN2RUQt5BxV{ zxf6eGvb#7#lT+%2D5WMh$ne;=yK?_!1b)O1Unf8qWZtP zFrRh)oY)aYI~$%)JtGMCUii~SZ$tM=;lwRoM3Y~7qk6RA`2w6iFZpvEk$gK#h9~X3 z+oDGEep*c(ZigzB31((f6(v*sr2z$*9xDKP@B^(&a%8h*)1Pzr-jO`;reKmGr+P%# zpI#~hL(eJ3lEAFvYlDU%k({**V~?}Lf6rO59v8SB&(mvTHxu(^ZUpJY((vY8XC7T* z{{@J-tWJ{$RJ%Vj(vJylxxxcR03REduJeF_C#GXjHKd|>gk<-i>#yUSCJ_rDo78=6 z-26&+ntSVC1!D)jUV|p>m&7M5f9xg!?gIxAN`FAsZS_w2do^{No-Z|{g}Y0D89v1H zqEYugh04Y`o<7h1gX3t?Ob`+h(mY)lZ=F@ia;ZV7MRUm2{?V;+t=LISl)SC*oNNK$ zFcewEVP}%{rR(8h2H66r7Ji0f;eWi=7_8=P?iWbYo|}{rH{k=Vk)MEwN*lHkrxR=s z{OKF!nEX0|56Y)v*zDrn0F!Jd`MVCfB!;ODJU5zmU%e|}l12}=DE`L$*C3s4y$WDX zee-mvrZ!)!$*?No%S@(#cKYfcb9&}Z_{>zwj6jWP6@U)}qiUR6T>R61asTiDy@QFZ zyIcmv)x%k?`!Jj(b|}r0uAA2#GZmj#=&Z%7XNmMl1o8IidZUPbLOo}lZ3o)We4dHT zqu-TCh#>b~Q>fTy9L22MWiZtiST@$}*$q`QQ4I@9nbc35Ol^Hn^lH^t%XiR-%j|YT z;J-B^>G^_Y3J)Rm2?N?FlK>gX?O8-et{{x(;B|F|;8T9)$%D5fHO4z9WUafnQz}Oa zI~p!^RJZmhkjSq3wsHj0dVgZ>@G^Zh;Q6H=esv*PscOmyBXczEi3I@(rGF*ttp}v5 z;B!bq>P#5^bKzoxIInI}lj)61B%%9P=kIgs-BE3nFey(%4?aI9S!Z)erYUR`iSdL} zv1bp)5ZdUY6C`p|+=?{+I06J}@}U13ZYA^@bHrC7LFTu#At4mPnC3gwcq=`pD$ou=W8KX=g^4#zXke6^zO14G4-^C} zKPZcytHdllcrY3Cwl_0GS^jvAdZ?}%AbKwg;He_6p<-p3YdM01+b&v>$CO2s2|F6+ zvp5bUOw)svV4jCB1F7nnQjE=Mtt3sokY~yK{_Q#-;Z?GS?lKql6rV9FO^;$-aso;>I*|;QSC*1VreepE90jMvpjwmJA-4sZfSW($A z{Im3Y7UcLiGu*e$hMlQ>6h52|@#s*MKM?gkv#F+GDxrCAwYIJ1k!q$T* zSP1?3wp2U)_Y7U>AQyan?5&d3HY@$t& zv=3m#*LFbsuL0CAw!s^Iq3kZLjLEo=Z=|9bK#?78ZOWXQrVk+G5t?-);74V3M*j;;jgau-1akS|U&$a7UB`>xe(6sq9paraC^%3@Zh$9oBH z_Ga;|uvKq_iT0EcQBSd{SWOpQ%2QtB!LoDLy7Q(fvR3JAoD_~`H%$bV0lO0O)O1Xq zBDJU;#;j}M(jvEuYN zs!dJPCIiokhV7MFvZXLGh}PVam8fgaz~Qh!Qkm$Tx-|W$3zUznVPvd z(}r~haX!~Wmz?DPwE39Bg8_`D=c9HoLP)Owz-|FxY!7Js*i*CRMe$uDZI1j{sr8;r zuaE;^%71jBgGNK^ln;Or_nwodqJm*Z=sIfXa=N33rOVFU?wZfK zxbE!Xqz?86a4e=Y(mnB^;bdEV>FD&nH`u@Dj36t`~mFIfA=3x{{FZd-i2OspaxWA6~jDJ`(a1INQlO0Es-Yk zDSe<#_r~6DH&=kMuB;4%ym{cS1$kMh-nM%~xH?IhYbuT`zCn!ZQt-Y%3kab4do1@3 z?j^nev~Vt}S;{XHj$2{}bRC5E(-y{ZGDV~!@qL}CyW?DI2GP#DFu8JG4;&rCpk*=& zq@}pgI(Treou7pEbH~y0dt?185Q|IlWX+ceeo-G{{CQQbDcRzqp?MU)<;IIiSq(s` zcxfZ^BDk$~ec*@fryZ-AC_XB&M{T1GuZjjAX2p?U04eAeNe*|}41$MK<60{+vYu4} z{ujM+j_*|h;n|yHK_!=lRAODL*;`}z2>4pV&>EaX>tb+#YwA{(FO!L;xfxIT9KgGd z^{6Y4P(_K+Z`x}CaJ0-qC=@TfIef?_H%X{!{LPMxz#);kxG!>*I|ygA>98>T77hNB zjVfC;dM8JDjMqqGkK4?n>Dh#RjyuQZi+CF%x_i^nVI?c#qri@0HLl? zk22qSSI=d0TK>O@l`62^_yu@6J@Xeb=T(>e^Fp5<2iRzuU)D^^*G^gJV?n0O2@O#A zrUTcTj#J}wA6Z?#&labAaqu$@(MCbEsc>`UDl?E6B8$_suP3e3B+>$}rLPv2ga^-O zPyJ&Z*G0R9S%fb|x)y=Xg*kXYschR??LZ23r2zO>R^O>ayX#a0JQB1uEfeNnfBE&4 z_lZ7AWLfEDLLK8y9b?438K!4q&#AR@WoGjevjA%Br$trjqyc_mk{Wx1hRBTOcx&~;LRRp&&#+r^Wc_+-E!&b%z@_9Ig(T zwGuel1DcEq2laDY!|j#zeNVOzJ$=pW-gF!T@-5%0Tl?DbGnh@-yt6Ad+>elPjQemG zFQ>b}Q6ZE*puRhiZ53A@w^9n7)jK?a==#asg)R|ccfXn)sABnzGx9v=ZHwq!+U#wc z^T3@L9``%$FH$CACX7qpqM2{=el7WP=EeJ%NDvz2vg5RoS_mhz&{_k~e#@JZVEQ_;V<2wu++BIn`4K3n#gGVClY*BLEFrX6 zyZ#VDj_8?6FFL@x?F)v)$qLF=4g~?n&97z})n5!JCg>=A3RXlffwDjNsE#3p_%E%O zE1z0Cuke?1;U^TfIIXI#*sGeAxo``bn=lsucGufde%Y=ttNR>9U+Ul_e+LL(xvmdh zjKiGCjl&e#_EcN)$%yyVOm3_8@tyIAt4`v_j(t(I_8Kx7ZomD1V%hm zL(?g71k&upREPyNVGa~v%Nqj(-%8RJTD6Ry&HS0uBrCNH7hZchvJT*hbie*CvKx>E z;A{NA`{?L-Rn4u>@aws=GUlOfmvc5$5sRkqWkuw|A4B&E^YizPOtKlumB8~nZi%-_ z)NuYg;|LI%oG7A|SiIybVC)oZe~*N&9If4B_n5|2OhIHegH5wU^l@cxKWHCd$RGi( z`qbn!a(@Iz0~`Bc>!+bRFj{-QaS~l> zoNh+R-!giYaG* zhpde=f7f<`w#$CiQv-gU{)`|ijR5iVH^DX+JdQLu_8;-OAJ0q_k3jOSJCE^aFqLk^dwj3aZ1>a%#J^jFibc$n%oGeBxa9o&iaj0%?{FUxq$SLgxDsf8j6 zP@gObvs9(DVL%zt?uZ9opI*5h(*b%#agFLq15Hs^7rpx`5RlV$`l2*iu-w#vT19L} zy`j`=yrs>(juAAxBWLzDJ<&rR(Z9gvVdbk5QswAxxCWi?#|Le_Er0rT55R9tQ)&`Qi*&6FLidTLQ`^s~ z^S{L)kQ|oT$fj{5=Y~0cf1Vu>K zAM?!tzT}(qwaC!YT(tqLS2G)teZ&|cq(y4Z)npB*Ghf)>WBilj^y!33OPgK;H&vb{ zd;a|>++C?`fG!K?U}~t`n6uxgElc>ZlM=X2z4E8B!!mIn1-=ePL9ltWFv64c6I2^r z)SW=2qQCh*RI)T6DH-lQE#L^lmz1`fW4)QPJApa+R@Lgf6GABh`i6uDvaB?l{=mb9Z4Z1o{bIQfPy8-9 zx0dA-@)M3zDI%I7E(E0waztUseS$b}**Lbn_U@=F4r8eo3#92Y;#Qu&8E7W^BBDIT z$$~3?@nW-~DfM+h4^|OtelL=oCix{vri6q?oc3n;GGa4$v#aG3MpgO_G^r6_>m$7bt9+Y7b*+dXK^; zVHQ1#>UJK#2HvKM?p-4Z64l6a#ffc;u~SMqw5upM8is<{SUM4Ti|qNOCe@ExaHt_V zXcM{?Z~bV0mJfN@*aTPYPA83CgcPJ_{fOq~|35+^b82 zY{|wV#Mv$B^VgWG%1u0s_ZXUs!ybWJ=BKmqt|v4RE}2I14p!B#x^fnn@2F9jH)$R< z?BCQXHkSrs2G#WAI3hniyR?V+Kl$RAwVWz;i2&$C6U%aEFpi$7jk@H9&Z;8syp&~0 zlQUkBL~g7=b!+dHAI82=LF~ua;}Pm2FI(pPH^t7eW6J zQ>;v?Pkzm3RJ=1i+gUx5Q@(4XAk||1S=s>7lY#J2uyP_d`50@pS^^KY!=}%kose?f z7k|JPx|H3@LesBX5MlFV9q1>dJ~!M>wS?P}`yny6zh=0J``yj`LSPKJ-qC*Wi+G)I zyg)F9aZ?FouyX_tNAM1`NmWZ%jglK{t?H6-3N_~$wUnV>--LXA^)6=vV4l*UvDybt zMY^t5JyBZeHfMVPsbm?Z&K6caxBhi%k5sxCS7!13CUz3~xwaabA|8AaL-_nhXy|dK zZRFZ76^pO*g48McZ3?Izn9g&Y`2QFkQD9R4k<%=LT}e8?v?4B4V54bA`L666XG2juUGVf)UJ8P?%wllu7&U! zDby`;iH>yk6aHuK(a;p6wDU5wdsEGezTAEs173fvgO1L<(H!02zpSQj`z61$ewwPY>aqZfZyX7*}ztB-&2Gz|Md_5n0piX=&-kX<(0E_7yFaDkD zIIZ>mKNcCAc5eFCS%VD)2@tW`&%5b3W`D%jy z6PQ>xlcz#ycQ$#$9~a06j55ilbq$!I%9x&d`$D5H6Nf#v42-xoPKdM?D;bcNaVh*F zR&TD+sQe_y^+jwFNUH;kd+2~7bH+}Va|Sn;A^w-Y4u!oc|5>=@^S0D+&(aYSk`a5W z@2xiH#QW(qNpxjApr2<~40wJGSgTu@52zJ{%ib+B5}`ZG^{pxg6;K-+ZK$PQJRhPa zf6FHsC!J!8QB>#lpDvJsp!KUfz#!!9(9sb}1)ro|xkc15;ugR3cH)B2^|uThh=!(L z20*Q6``lu6y6;VIy&O!YH_wo;qG380EdZ7@Be(Pj9`-^9XJ4EGVxQl3!D*1HaA_?@ zFmo{M$f?4XUzH#|4b0oFA=g@X?mq&kGtqq}P%WHu>zZx5cZPc)9PhHFJ^a5yOAdG; zymLP;OWoBUhu_^+AE@4aZDw2ezl1#YW1 z3QE{*iZz-|Qg)t~n^^pav|QotHH0*3q>4A^4^}L%X&?ms)Hqd+T~c-*-u-^@^|98y zUDJfcG{6J!f^SCQeZ~rHR*5k2ZjS(0l%!>?CU4_-pV=Wfv^PW_`-AXc< z40!o{3eJ<+B|u2`il^1FSOT{A@dlpN`TF0=uG8a@Wjyr25 zXKeKL_-Hnu?-ury!*f&vaw`D1+b6lyJ@w;WIO|W6u*rpIY{t;cT@s}wl-bK%rX*}K z#g}4v=))z5(;p|Mx}OBwC&@8om?fgDnVJ_DN5Hwlp1!M2#Jdj>VX_aI+OpjN;;IVz z4_Ddgb3KjqPxz>|P%-Xk6UIM%!?aIMgh)z-297=PK<$o>l;rI@!I6G4Q$GDq-PciN zuqgDX&pt*A>)>}Zhv=$f+5^IFhDY+}z935ZB{ zNl6PR82rI!&pCUsmpi|+`*(lib6wX$F(oApQs&m9Sx7jgomwIX;d=cnI@L(vZ5Z9+ z00^blMDv;6xD*JvXV9sv#*)wq5*QuHJx%;=s;R z%BUpDK{5?T3}6~1LdYQ;e#Y^N?7R$EQIASr|0AQxS(F72k{|W!q`^yt{7=6$(uG#&Lzo=Q@Q|N|JY-ZCZa#K~J+S)dmKv7B=t#=JM&rIa! z&f>^;AUVnZ{`7~bBw3QUbK($+$2(31L@GCM%rGVyYb1y5H@Wnpg<(pgw%~z$)O|4i zVbq}dbV28^pFehp|{rOZ>gr$89#pN{{2AH7`KhV!*8J* zLZo(MsC6_Agw$hmx~@KQ+8FDMNylAa5+xp=Q06I$#OY zx~jUr%aD1=={r6C)s9cAAd>Fb4jrB?pz|LArjhbP3uwSQG^bbamt!irn3bn~V3y*p z0*9}zX^-raygJ31Br-8}_F33&57sNcih|;=iW>K>Ptb7n9zV`!A?7|DmpTOi#c*Q& zM6ZU*HO8G}sW33W+g^OlLJ{@SI6d!ANBskM=LAp^GHfCysU7t^=KE1E@ByP;$MN5G zIX->)_C*-LBAB!ddD^1P$3?lDFppnStY3N)IZSI%l(ZU>PyW77_C5m?oh>lr`T{T7 z1rS?Ck(kGT&OadpkY`WKu^N7p-4)i&VQ4Z1d2+1Z6AOQ~ue4{>0dmaTRn0dykZ`S8Q8_nuQly<5J zkRaxFWF;E`cz$0HPhsmIQ`wDEyN$YuT=?5;PbyVhK4!FQ_CX0^xIKn3nTSWC{Ovv2 z*O65FOSQLvz(i^y#39I_%N*xL%R zJT1+NDsk+QMiOdXwdMZzz5x1L0tI7>;rT4JP!SzzQhh=ZC$~$$0w68nr+QSz)Ir|Y zw^YLz$*tk{aR}gSFUS^(XVPRag7!v_v;vW8FTejkzaQ%{BQ!k(Al-pw(_Psy|(uz!m!DpEVoVtBSxAUewv{{ox+K z&%^#%^=1a0(O?mrr)gOQ8S3&d<94Yz()s9HoR0ZYlShBSiQ|QHo^n;w>Ti&UfHiRJ zt+PGJKdq*4L~reK1Hz!vVU z&YgrsfwZ!Y?@;0oS;g{ZC8A?bFT1xjhv}+X=eA;n5g|c#Qe76j&jP2b&z%R%0*d?1mRO>5QN)QtLN-?lF z+)H@s&PEVSHx(?rYw@7RQQ>Ea*8?6zrc z%@88`m}g(ag3G5_b=2^MLFzuE8jJ?ken_yk`Rz~xAfO1h8-tFExfF4?qJ1`^+_GO%uTxL(cJf)Kn=Ww8vO9=JtOzoi8FrB z8GadK&q+ZHjT+tz$YQU>f?k&l8xYvM6ASCyMd-ud8bCYX)1eB@1kL5X?&kkAvjzK3 zisIQVb`Ht`eT?+%w`K3Z!!*vS=miwuEz3`ko_@^|wo4tGio_*)({B{SvOe|t_%>kk zi?#ziE`uHEsY-R0<3+;kNzwzv>?J!;Th&T7d_T~7P)LUWSxphEfd1#MZZtvY$Dv&x zTRyj(8d~+de;H8p)qjfj2sJD+cV5Mxcm3*^`KY=h;YcQ>?2}971b|Tn;>S_YuR5QIW9f}0C zV0JcF)|Z}yse7;3M9955xelikL%kN;w?^Uz4dUIEJE0+q2d_w1qNFXh`X}wC%Gy>T zC43QP26P!>BNPIpV{{Go%Tg~PFTNYW$fF4bRN$eFQTPIcjZQJtNZBQmq*&Fuj=)hX z;y=vu8FB`A3R?Ang4H=$nTBXT9S#)Ok_5mLwku*~Hx;&h!zv8kTulE8NFbjhHmk6z z)?6&<8{UbL(p~K%`?0n*r~SJO0HSgFJuXX?CW6!g1UL!V$N)Z>OmWYtinw{LIpH1T zUcY_QEG+;XUMuu{SEvzCi}d|Y_Ji_yE||{Z8+cm7=;T5I$=qEvgk^U2AQ$F5<^qzp zjk5Tuna9tZErITvJ%H;bz`nQmk&XcN^NLiwOwWbftz*$c7|;!7UlKLob2H9uN6qFT z0l+DuN`yThdi-^ZbI-hj3|)XVqVt-pr*MI={-f`n$r!~ctg)z zv;sw65(1c*=$T2++r{+h)lW9=4cOoD{35oQp=xw>@J2XU9dYKe0TgGLnWVg)Tt>@E zgkbUD2$RAPeLUaCDo$6h?r52lRILrQG7BlSlvrKyoiE^InikQ zV^VS-aNBl5Dwu(C&q8Wn2L)F@RVT#%d}3KkUXkcqb|C)T#Yqt&jkm_^z#Tp8Enj+5 zX-Zpfx1m(vM5@X1=?7^;d9F(^z|{II522C86q@oMmOfoz2IABM^&T|Y@T6?0Izr~7 zMpK??l0*MkoW^GdmP>U^iDYX$qZDSiWM&*+cfEC*wOMYQjj@*U%L`yIB=JxE#!he3 z56jqehfv2R5&3&bt8fTg0}cYtag^JwKbz-EMQ$?`EA1)$|GFsk-g81&nMEsLnR(bgx#5H7Z) zCVv+7S=ls}F+Yk(ma(Ua5a#O*zE~g;{U!PXDOWvF9ds_6`vR#l)UML4r=FuM{W*TSmL+hCOsDNhoQhQz4rke^kv>RW*`avSH#J z#zJzHkaDd%OyODVG1%%83< z{{}=-<@%>zISkyS4f$`lo&9o*3~&G+;kme_CgE2ZMVGzr%zlIK3_VrEC?IUYnqm{h zeGcf?xoXj83AVHs+V7F?*|^G+*6ofzbv_p)jB7zf&^IC=D+`BjP+?^FjLo?l*vP(y z#ls;vCNaI%0{JOh^duN@Xu^}D`E~>HXqkvUJc?XCZ?uZiz%{3GmsB0uYuMg9@>YX) zPE58ft+Q!Px>5O;i^n5*3G+1@IU7rMXllv{x21-x?DCVZGgSo`=mXv53ids~FZ)m+IIf(vo@ z5Am5?m1+c+pIpiP4}oORhO(j?r{^kw?Fxx5u?p@DkI&f4M4*6-$;HFS&}E+?mG9$? zL!Zx$rKhfG9&CyX^{PgwZ1EWm)r&FHj%?n27IPM9uaEv>xQ#1+a`ktsi8R#9<|jR? zPTH}yHfP_+JkAm7d8B6x^TT+-*7L(mSI@;`)!74#YoW>XV}+ibo5?BruJZGxkU}pn zEsQj(SqHB3+0JJ5LyBqi4Ah3aS4SO?N>XMSQLDeNxefda%`6yVc9^VB76Jf!ePIWv zer*jdNqrg>nE`mWUU-1*;mF4!X_xjRq6-&tE*- zh_-GFeuc@LtTRVivt=|~Oeq)LNuP=U!0T|`D~NE6oIP`5&cuW&qT2v~rE=2i41=rY z_0+@_i_|Fewu(fL3_b}J=VMl^%AkZ*^ztZ6d&}S3)Blbn|G~xQ zjsJZ@K``(vN-2G#_I71fYU%;8P@%{p(}S-yP8i=5Rf95q)cUVVTsv5OBth>L$V*Dl z*g3g@*3X!VjYha!ZS}o`RXmkCH_4=@*|YH3OpkbrmaCtclw|{*e9p#y?>J3IBveey zYsj+#B`2IR)YrWX*S**~;~E04HBPb@Ip1mkgq@q=OS<%fbkeu4b^v6VrrrB@zv}Dc zJN<0Z!M$>T9o|86wGx?aufGXk?|n}isvHUR^$<(0(n2ywNZnHPVzz^}=F?*pMj2mt zc(vQm^VTC)+u_1oJoB=VGh=r#MWOkdB*`}ZW&++FKcC<8?m>V!HbJktXy`A1cA5h! z%&8}?8<*%Xv*1=De;%nlw%)8xEL0Fra9udsmIc`8T=XntK{a zu5E#>j-|>KqY$4>!Hm}mA*6Lvrkq^XbvjGK8RphCNI@?QND2I7WzpGzF6!0E9U41X z>J;8*%oJbOEyDnD7J6Cuv(S%VgDHJ) zgkI|kfZuiklqk%f2s@gNh>yAt#5-HoYK`KEa>&eExaIuGnJ01?jN#nJGRXqh#>!8+ySr}y#rkX&Db)jlQ6Q$=l?N}O5+?$V)Y321U0X*q9g9Gs zzKe~B-GtApM0j%xCq6zL6Yj8koC^P{L8cdL+!4nOMRuI@B;Itm(=pPVk1zoa{L@&rT%-Ve- zDE^S*ElM}736sh3+f^$?3f?G2`67V%Uo~d1@p}BfN4>W%yKi3){D+rgId4K3y2kpX z^POps$G>PDCJGbx$(z*ub~`f%p4F^+ijNO1Ti3`7o6QX8elRHdn4FmfMrVOI#hI*l zdoF3;LKdOnkN%9>`FwxB31%6w%q(e=4Fd>mxTl1t|ASv1&z@mA)0=DV_%M{sojKAt zCcM7`?KNMk-po(roagB$Pb&WPrFSh{AOQbjFS_F#L7^`` zTl+J8F%oKW=Y7!#TG4F-OiaBGWlO4|-4LTy0BYB0fLsr6cbP&AEBrFbqhZv8a0O-6 zqZYs#=)}w=SokXa-Rl(>)+|_mR`zA(>L5~q>~JYKudh{JzKG+lAStP!3J<|gEdvoA zzHu=KNMLfJusm!9y4I$h1WLpShD=y3Q+>Yxgsg026u+MQ_I+f#HZ&qStFkOFFR!6f zw*xfiEoxr7zcX*QY(zm-eND~^!^#U33O5pG{3hU5$(Q#G=pg#Hob(I-2|`?CGk@HW zWys!R%t%A8-Ic3tznW6c6+g*6hy?=jZd0*s&mz$S#`W$jkiY1BW$-5RP3FVzueVWH z2jpfM(*Osfr)P+n++{yr%Ia+vaZhgg>Pbpe{U%BA%Vgyp$n@flzT3#7CS(dbIaYC3 z;In5*0cvM;qYRy&6#WX$uGMF5L=6lrQOb36&sSFB0yTUC?_{@utgpcb_UCB;TKHt_ zQ;9)9c0gyKM|Yhsdn)VO3U&Z^28)x-k$+0)rI#f$-{Jr1vDiK;2Vsw*FLYL;LSKhL zOMYf10tzm<01~NwIn5ItH~eKer)j{sKoQ_5-y(wPK%J$AxMqJXHu=jJoz9SPS|YB# z8w_}Ex<1-G`WT?uAFG*8v;8c1+FQqopCm<*An_ z`+;S$^Kr#M-qCCeT6aF7YSG+UBC~pX`h>L3*rbkKlOv~;^HL*r%jHX!#k94VHh_54 zHJkMPV$cgXVf+yvFOYDB1p3@{@11kb-+c%c1oCHH^pU1?E!5{6j}yzesAr_>{2xf! z?7u*M&JV;K^%Nglzlza7UslSW-i*=w+E0GeGLspS!+G4cHkcox^0H&oBKamCYcAmS z^bQ}N^Dm}EuP|DM+%z2kFd?M90NR$apspzT(Q1F(iq+jAodFV994um9z|59sAYM}K z6r41$WDi<$iejIHAcPg1tiK3iyJoaUiCQgx|JNxZHpbjkeet?5qiuEmoJ2!Fk>1!K z6(L*YVZ=~Itec#Uh)Q%0+2JT~ zDc{YYtVuiUNXi9BCSnv(bo4v3MfD$hvw>s2&(7K9)u#ppwi$lMpKcb0xGqoEn!zK) zW)LPpVFS6&{4^Rwy$E1oV^*#crfx)Af5cADnc#j$yXFO}4#sm;zq)l&d1eH4K8|X% zNFG*XD$O>`wKqER1E-T09~c`1qGVD>5xy`S;89@WXc7{m{vQTSRA3D(z{Ir@)Ky?; zFtBG5q&hmVQ4IoY_rXK^_MPfO3v&xJCtg84FS41<_4@*krFfdW0amYp0w0$*Tn@^D z#G7-C+w4}K9LD{7_(_4^DYlV)eno$UE6zUezbE*jnE@`*7%il?Xlvc|5aul>t4o)2 z^H2Vatl`T*h=5$AsQa9*RI;(b(hlc|DNfb&o5JzFa$q|!fcWY(7-70uKBnF*SiSf; zI*M*MgV&s(Rik#n(EOBvtJ0_Bre!kQfTurTwzW|#$NsZtKI4(r(bR$1OqB+wpL;-{ zX0n?aDXc*bS2~R^tgWX-fvoB-c*y$_UAH)nH3i|(D;I`2S$ABzWxLeLZv#pWcFVRX zda?A(cqF9s?doOQH}f?n8O^XyN}VY1irFo@H^5R3@mbh>phD9PyJv4fvlDTT1ZQ5u zw9;s|5hZ}Z@}XN+%)f~xaZsv_eF+JQtd;i?46d{&1%{LL&FmPQL5sbY_-)qxheR#q z2lN>rda#MvNQ8{1tO|G_W98LT?PwhwvY5L*04r`40RBdw|iT##? z&oVYL8EqLnC1)AZnd~>MlCxW>dk^+$h-rtUr#4}oKPm*x3|Du5aT}AQd)l-D4%{N= zVouyj=b~5RMaDU`NvpPs?aSYfgf=?bq@m2w)FYM+s>N{$*zXuxc%oOjabSg*&ht-RpkD zW9k(ZwIzTa+KgXKco5C$tjl(fPi)AA4bgSbYm86l6w}Jtj{Yjbb{Adu)U!yR z%e3O@M&|8|39ku!C7{<}XMlKTXms)+2`Rr8k}_0Ut1GZ;8_s1sO!?XUv%~1}dpUsC zm8BWhRI3mw4j1(g?qJM6Nd8I&2|K%BTY33$G&xLSBaCv6{s_R54!#hu5-Ihejkp+| z_?9NBJPEY!oO>lv@(1HfV7USdFPn-Ijx`|su5ru-7f4Fo|6+uMM0Q`VUYYiV8dhVJ zJ)cB^t8OMHh{&lB;Jj@8iSgOwY?_vgV>U-Ult+7|>8U%~`GLE-I5mX@m$`=0e`MS==6A7qx#od9^=oAyo)MxA5Z%hI<#wtf5W***)vtrAfovdlnO2jFF7Jt35^1T zx$hpPyleunR?EJZBR%X%oQ7sAvHMPcO6iwhUK+@m#JlMH_aZ&xLFV!=!XK9Oxx5RW z0N54jxB{5{At{~CxT^>B>1Y7WXh_w80#yc}zHtwwwY;L1`H_m-^+P~PW;FIcst)0^ z>n|!s;#`2t;)|oP{loYGcDzEUZj*rlH8`7G-x(YH8`&QRw1VBnUj^Zql*g%j@K8aD6-jX#b?pv*_5WFgi9IoQ={{#t&0U5ttTRY2N?WHr3m^9M5$ zBZM)za=C{qsnWH9CuOI*M5Bq6CfEx(%2e12w6YcKNA2{;#(?6>PYIzlV_W_?#m}U? ziEciUfP|e^8;36|>0@Qk(gr)OpvFrT>tF!tXLCu;^S=36vA0>V8|tDjcw9CA8?^e& zpm`{&O{v*5X3MN5-OF8>G}O19X!(HXlynAxPa?`fPRvC8pqA&$Udb*eFYYwZ0#Kx#*q2SCo^1K4lVd{xhe z#1JH~JG$8mqn#rm8)bzMe#ucce`?8!PDf*|583x3YuxV-V$L+=ErSHcqxfl&OT3_$dpqmbvvYtnREh}%~eY{8~3 zwqyhh`rven_QU&i+M#04@n3K?ATa!=7$d>Sbv>43?JE+GH*dK4*|rD;RtixEL$iEa z&PVBOxTk&fo~}x7#{IaR$}o}xf@Q3f2V*hi*?nYxl+-;`>WBSLQKTftjM)SQ-z|A1 zl^#ck$wH(^DEyX}87hVpqOqo8!u4IV6f|#g<|eMu#nacFjf(k(gz_F`uxKYg;Q}lz zrlu?Fg%7k$vW?ut<}Ad?eQWVP@XJ2PB7V?FUL$N|E$K!99=I{1AR%rik0g6j{umeK z?m9TKR#vfAJ5{hEu~{?J?e{AesbiO-F2IjCop5h}=R(V2ZR9s`4qdG2ob<39E_cNb zDb`CyfJuqdD#arq9ca2Hsk`J&J7oofB*5laSiDeU~7FVLho2aAG6< zNr#k`KabPiWPUb!Ka3+g-zL+@4JzdLPJ}PLk$Se> zDmnh?AEYvM?!|OzIC7PrPF@*hB7vB640EJ$kCH#HNABP@kh83Kj|RsKs!5zl8hF{~ zFf|8^KTp%i7>r2H_SKU8WWQUGLK^|imH>1+OkZkO6g(Qmm>tdLcv(^$>ID2G!pH~RV4 z6t_P9*Os_HF}*pl$}&$bRD*|SJv-2v+1bjhsAAbX?EY~Fp4Rm?VA|bz&VQSwV|MIXtTHO^B3_p;&P42)Q5~)(#si?K?wLzOVESKAn zzph=72oFOSV%IH9j+CbA4A3_AG3QL&B&k>=$r+D?yAZ3HOQj#<|zr?Z&nAGtb%yZVpoK9XXGp z=p$4(tukZY3tA*36fWVA^V?09S46k-EZ$$I{%}!~>P*H1u%RD&u-&2E-MRLms-dd( zR)=HpV+_o4w&w#G251}`Sq{+tXlNI6m1L2Ey@652n2+x7J8~P0oJ?v=M$p1m;beQ! zV>`cwhio&GKc0P_3k@GYp9aODg8Lq#3P%0GESjv;390lG<+_tciVBH#7k zhyOcX5*W-d_<=6_8Iqb$|5_|CKHyJ@ff+7xy)@sNH^$ZHwfwU#6fterkKPHqb6j>y zpjx47s6JhR*sUUU9+f{?QU|y$wI#-nVb003&+Bs_>akJAR_8ay7`toW%0BHWh*n0~Aqpgl@=@V!R@M2TBXEUaTnl zJi5Xbtl%kD8#cmi%iM-A`EduuATISoWEWZ6cl z$3F1-JfoG$P&P^+V&=uz3--9Wx7Zia;|!7&Ocwe4Pa_yO9apu`vEu zB$QNyWaS`3I{5(~{VwFDWClljn9i1vjCLCNczbNKV$71@;Oh)oIi{ERMpojXhMMDf zH)XB_x})7bIVE3Z!-1VG1t;qR&_y3|*_uWR%h^b-r?q%za;6vQVLUy}exlInLH zU4=tBwe4PFhucsT2F|u|k#hZGXQbqY^!1Y_p1NcA6Rtz|~62_)Y4g05dIBcF+MHaD*`nn%v!QrlV|y+{BWUR>#Efjxyl!P2#LF&M&0`0$&%;t8>vt{*aquEMI%wlh8(QPFZ?y%7dQigfCUp_CSOP^23?7E zK`l3LBgilLW>JIQ{TnYNdjt;@4QIt2&{Cga6?Ogyx^g@)!uyl z`-{MF@3_uOV)BmSZ!-fdQ}t`XByI7v>fuzsnjf3qtH?uOm#BUyse@To8jqNMDj(SJ^a^S z_Bx^W!}K+B00j*avs1&HaOrCk9<-~`bgNqZl)Qucyc&l4CzXgl*B)S8@ozCK#23ut zHPoXYB-7F{5|~jSZ^U1}5WJ_$_+-XA7DEsn{kK~nha;)MF^}l@YzlC2C!1$Suhsr4 z&wBL}GN~-9>@AW=&^_zQHLm?5tAB0LFm)Sya+_p1D|Z%aNff7}aA5!8+URZ;2PBH5 zN;^MH;k%F4vbF4_@*NrMqi?e33?IhQ&kr6Mu$t+t`Oaos3(^y8=M>s+h&aN>b^|** zvvDt4x(b+qwL>CSw!6vu^xGBK7$8TGFL;!c!(KhiBbaBQV78i~e*gOSe=E#zM<&>MotDlu=XYejbpYG$#wQI7$>skrL@d1s^MW?$%+se0G&aA&ENN0 z+57JV)Ux*eJT}Wa=+Py1-$D^nRr13DCBHdvaLSmmOTv_q!K|QA28S~Fv!i> zu+Q2E&1B63-n1flDtR^ASc1ehr&oWS6PqQYk$}~D8Do2GkAaNksdFjAc$7fhlWn^u zg>r-qp(W*`9yB3A?Fs1WY{>FcByasEtZD)XcRkw3id8u8#Jl7(kmH5;FmtmU(tb5O zAqzA8W8sp+>Il`oS@vzPWavd1vZwa)fanAT31mL1;JRF~j2r1Jbw5_kMlcssE-s?O zMV8Dc<`FNl0qj|3P=-#VGQeV>SM|tz?B0{a82wYprNJX#YQxeQBWR_rAi4Knko3pL zE0TNpGcH!_&A5#Y-WH9~oZU{3Pe0%qe>P0{Vx;Tme^OR*_${a$z}kdr+oyr>Z)}3E zC1Spw5>k~%%LVZ;LqvNrP8D~CTQgQ-bi{FIyB_gl0E($n###Yku1|0H?T@XNdx_ij zmJ+}&AuiU{C0?~^HWR(ytFu2uSFPd*EIhNt9fzs9{-DS$e`0iMcly>)z;fKB#_oRJ zA9tW=06DAfVYq|Xj^|h;5%U~8mROjtMe7X5Cge?JCTxLx4n=<1N5_fI)^M+)T)yHV*^a8h zs!(d&C~3cSs?n~vGCW?MO!c5l2yw;d+B z9BLg_N=GHd)p!m--|C^2P(!3EUv=QmpE_dq#xiwej#7&Oc;&m)T1m1RseeKR&bus3E^& zjf=bUHfHbiOs{3=Jkvij@uqA~?QTwxnzZl%BK_SWn(t?kJp+z{GIVMRW9-_b1C`1p z_;#1X_&8IRtDl`JhgIJV!4AzKQ~6knR@(Ocj9wAAN|`-(`s(Uh+opAlOS5m!N|a_( z08(Tdl4(rPu%svVLn=Go7+d?FTL8Xi&h5o7-^L@eM3$hz5gdwOc%6ei(%1m<%+Cm(v{%su6q zvok-$gwm=MeC#>>Bh6{tF71l%mclCWh@r;xlKcCF1TcP@*JKktdDH0iF|re@Cebdw zD;M|6RFwaZO6$|~6~Rr^Hu@O+C}+Srq<++6GChUn+5?!(u&lLYl>zaf=qqdn-}h7j zY~~pc)dddg7U}>*WqMM{f>5!6CQ`3s7$g=YB?g6~c*cu1@7^j_txzd+ygN5XREaPv zdqbjl?Tq|#D>GWOq!0yJ#=H*Ea>RceSAQCbiO&j>G{E)XSt1tQr8l+8i;eN&TS(~x zQ7EOEy;w>%oA+)lY0l~Lga9PkGOW3Vp0i6NxU2ms-#A_fPXX(Plp{e9Ob@o;0D9&b zYT@b)3y~CwMY&(L^w&HF46lD2;#*vmi*X$+6cGJD|J&-zlVEjB3aq#!%6{kt8$VxT zo9pJ%Sagx1OFeN@BNb`5k1q)5dfdoM44@lt8VTE^GE}fgN)2V(CKAhUT_MvGWm1}# znKA5+?wzMd+^k&x<%~V>g6Q|}Q4j2CNRHWu1?T5)`si^F{*Bi!>4_%AaAAuX4Q2`4a`lDQmJmB~8pxW@RJA@f#6l)~`gG zgGX^qbFYyQj-=0!{GgWy%J$D=*B@(PY057s&ObD}?p@^#y zGb!hbr?}jvxyQ#nz|It`&VCRHDXv-h9iXydS6_!27Mng?U|T>X!_FXx;@|#DJZQaFZ3M_Ketw#Nf;+vDl=pMuGFoTXGy}5IRE9S7Q;w z9Y&GyP~QI44VxD5uGHu1ywip$EV(0fzteA2{QJ**&_Reg1>m5#bAkHjucTRTlqE_Y zw}ko#nx;x`MdcvhTa$nS*j)s|I&ol9dt6?WV~ zlzRZc+FQ#y2bhA^*QN>FlF7rLttkq;;=LPi(?2;Dh@&3Z^YCTyNZMi=xyy-M2Y*9` zReypvub6`&L0wXoCOQ44Qu$y4-2CFnM+A5)-oX6+c}rs6F}^yU45I1eppT0TL55I}tByA%P&eL!7 zeE#r-WckuJVz@wFmUjGpU%J^u`Y1bkQ5<@-!@*RW(`%4~6sx0MF}O!Y{6}6)0SMQW z3G_T2kL}UyM=brf3SoeK%E$9{{1rBnEfRvQdGg2vfA7mPqJGA#wgpm|zTceNquN;1 zK|z|N3sSda%R)U z-Bzs$R4N*Ly5{=19ymJsBA|_d+&p-(qe5QpddiwtC9j-GNHt3BeM#Qfn?O_9SS3?Y z_4|*Ol`G44QnbhU8-zNOS?3koMR!e7AKJ%xLsQe)of_co1$AyJf$q>M{@(D2aqc9b z$in>9g-!YbwT{<)$G2UPzV)E;eKaD;l*ZDya2cIaK>~2Q%kiL|AFMJotE&*CR6TcY z>T3*%QH9x7g%I+Ha)M8}hZ*eQ<#Oju#%*eMhYV=_(cQ+f|9b=B=5Qgf%bo0uh`$y* zw)^L)w~wu#i>Dumr8f=EZN1%Rb4z(bS4Vnu^~sM6D%~U8Nuc&`shb62QfmK-NY5+E z$k@IEX4mNmNa=W)3r16y%Gj<@DpVqRERMPh-uZ7ds6`*>jvgy_Mxs;A++(uzKXIMJ_qa4lR^lPGjFZ^6W~c1;QZ@l zmyAE5`PkN^g*QgVPAvcN048)3(vO010cxhuE7y}plgYz(y!#T~GGdf^lDXdKG~q=9 zy~n``7!`YAMOKeH+00$}V7o2TQQr&)tM~>0*Uke#8Yg&a#TlcIPDoJ`fCH?2TPka3 zDhH?i8h0u|tI=Zm<1u~uWk872$H{>>5p4bERlq%QD&PZV>KS$=tOu^L;Toegn9s(V0!QnFB|}? z#|(Y-cD!1@-^|g*=d;mm&1yKzF8;;)go6Zc773iJ-+L3;Ls=aHF8VpPpB6I#Mzk%>4&x4gHN2u8A!tC2=5* z|MsXRN_9egQu&4c0TiNUtWIVO-J9fQRT*CARn&GXFG}jvvn=YgTXD7-W@*mN%Lfh*UyS7$K(6#e#fgWHrb}=@M^s$ z&)`m5oL1pb-K~%r_@)Ta8Upemc`~j3FYbejs@8n8K?_=SAp!e}WUM_t+=dRq-v!n4 z7rmJ2?;(s`EG=Ix7i&|MAgriBvK@-i<$_wn^O_on;b^qi-*`nf>_8J?jbx5(Ku1mo zeA5c%Yxr2{Bm97qWl1}Gh7bsb4-3s(lB%#I2gP(sx$FJ}u(=RaEZQQYM(^g#zr4!6 z4`5sZVGfM08LFx4a00pP;bX>*3j&HPec;}CpBlWHZ<(Uj>|D^FYQB%+(Q(Xs>Cg1J-(yEV4bs8Du<4 zYAe`i@A~!^A{1%6Z>LZYfg!T+d1Vn4mP&I<(ywugwtADF2h0ltWZ6rpU(cm6pPvtm zy#CS+c+yoO^4b&;9s*(kdedp&1pXlLZZc!6Lmm;>i8aRkH)tF+W6-qmWT_m8k-d54 z?#nY9!--c@N>{3iZbg1!a;g5Qj*q0Hb7d(X&YADwq{(k)^>@>0ut+1^$bBW<#z6x4 z@?r+vkndG_cxP~ z9JK;5J;`^Yrd-bt%3ne~YR(C@!cdUX9b|J{3HL|HdS`YKt70v6o@1~l;X4k~b$DDz z=}bKL!zMSY^m%}@+M*Fa@RyG(jO?2XdL24u!29RtrC+4Wh&In00#8aI152JrM1C_* zqTz821$+&wktnsPS%m~pYCIMEEZ3!Zm^t~c`6I9Ws;Y^nDfMoU9F?mKs-&U$c~B9R zwm~(N(Ya9FZ^I-H*V$^Hy*8BTdor_y@Zchj%;CTOrn1IzoQB&4!^(PANb#^Ds{v_3 z6F+O2y_v3j&-yxS*1F;;E5LFRxlKX9$Rua;*Z7d!tXL;}&}(uI*5g4T3?mwJjr$2P zDui|1%B;jL@5_6yZxy-{d}5kQJ4rK)^*JSQW&}3l;?3LmUyR=wskl44c;EsO_suBj z0Hy7-jwq`tNdV3}p5;Bm`G&#*6AmRqZMyoH*xR@b!q&*%QhL90O<{?nbl@&Z*F2?de4^vY!TiB(E{O*PuJ?&}iU4*QRSEL!}6JG$E$r1&vDeJyq&i|&6CXU?w-o>VXT zUjCK+*!_>uVG`+wghi&p_sF)N<(^s24KluPOF=?sh9Tk^*w2Fv_fQsaZlpD`OnuT!o`!m|`}0x2Xdan8|J%in!XVTW>|!kx%Mn44`7Hn9{2l zXL8!MPyIQ_S78N*UR7BqF0qnQGV=0$y^_E?wtJ+M;|^_btUSZcUD_lj;GNcVr4NYt zBS>W_XkT#`E69vBs{MN}$Kgz*=aN!JSu;WSJ&EWeGvLUJx@5_}S7*=T-j||)wLkrC zHgn290kBT(#PuI(=x!8mh*sRrImt0u!E%co+w@lloagPoaIcy6JUJZNeg2#bfN!<= zVRtzm03!KcE5K_Xyp{7sRW?y_JZwy00Jw!Vc|i0sU@YGJOM+Oo*YNqFHZp|AiwdvR z78KerV@=dGaQIL(!~(LHI`Cyqb2SPYQw@c65gES6M<1%yU?BG%JEc!m~u}M2{<(65_MVO z#*V`gYYbccuW%*|tM@R@a?@0fq!QE%IfNv)wccm?k}hgp-81x}Cq->U0J|zGDA}t5 z>b>|P>jE9i!o#!sq@H5;jiroRlLB*>F>9)0QZ;pBU0op#fD4qWcr6QEKTq=3AI!IE z3MpbLpshL85v#kPYiETg3II%Mv#8S~fGuv)Y@biuPfN8F*t_9lhF?1C3mV^21}(Om zC$9QQKBfP>zQYWDh|&DT2`daW>!w~i69vh^RgF4myAmb(*D~xz`_YDCZ?|0DdjD>J z6A&(0=zakq)#U)VKfB#z({U%t+(XJZsN6Jmayrxjn|4K#L5u9if(+g!wBQeqVPz#~ zjbqgkr4y9&@W1R+5`1qH_9f4{_(_Uu<>+FAR;abbZ5>X;T@=(m&`z^{6FppEzYmYmaavT6f(2_!LTQ;5r0vMUPbLs zlN2P26c*RsWd5}UZ)Z=L6l1^Xz=f)kiW3i?g-?-T2+$;pAc3SiEt|Ln`FGOgX<_@q za!?gKEOf@ffAh)y@ctgj@E>c>EYsK{MB1D1!(%RJb(HQQY0^2)R3C~^sERaYX%xvU z^(IR_LrmRXlopR{CXNaPRiSl%+cfSho>X+6t5NA~Z0J|Uju4;K7%Aq@8b-~Y>DFlu zr_U}pF`EeE3l?;->jlm6AwbI-zChcVHsn>Mak}6^N`HeU=716(i!Ff8mw20&{gYf( z7M{rpQa|=1Ad-rOFpzV&1dG-g>xL<-I!LPTj4%e7y#NHO-WtY&^8#=#HA&s)BS-?kz3O+ult0~ zQyX1)GZb3Lm-=#C_vH=k&jK7rY8KChNCqf#*vKxam@&Y-wFNCTWrU(9f3wzvn!Z%N z?$15@2MZedv@)IQ{L-PaF3B1JO?SR3%ePU%OpBZ~N$bO+{qR4A&chMvH;&`aowL{3 zyAEfM>=ku5dt~oquaGTNzq2=IZ`qqzt8g-@7HU>ZK0u1 z%kJ|FO;wq++r7|raS>mVy=|wZJJRI{f&9n4gp#I@nKR2PT$!D6Y9Hs?GYtY*2B&E; zb;?HWYYe%s^GjQZrqO$W@uJfI)bYSs9*{)fkwo$eaLGnkf6QcU>xGgU&{uU39Ahw) z(G_vb>Ah!dc>3*oNcNdMbMLu-dR~BYgr{WrB}a`=*_M?cbnAhLr?SIZ*4X9)=U~*V*P0X5D6$IHE$kPh-LU`=7h^;B#hnNBKhn(u_ zy6%Syyxj*v-d5eshTMJ|6UQt1g6>aJ8r2;u40WrF{`+xG0xQvek4%&ZvoyV75tRz_ zK^%z-YWKwO@avD3)inG$*AaiE;f_gPti+d~!%Z!fC==={sY?2`0F^1zRM?g`q156i zaQAo`HfMm~lOE}%Yprukn|wFslLTqxy`X34s z^ZL7`Z~l#Fh-O>XWgaN%@I9Vv&QuySizjvzv?0Jnh8!j1?4?VL<6`Qu{7bFOJNMFZ zHwi?IpXxKZ4D-ph11^txwNRN@RTuX37{w%Xn&0)AqAU_3k76BEa>&!fuJ) zPG^LL>^RC0?<|k@xi58jNM$W%Rs);NYZC6=^bObDIPfGK;By9=w3Uw@lR~^+WaHSs z2#|(>*}APH(P>D{1^=DOO%;xhsiINKO}gf?Z>3`Yii$~rB9w>xDG|LOExy|JMLR3F zMdGq(2Fm2E-Nxxmp4|%9d2wa6{<9IEi^a`)2r!5)$ArFwIsWjB$BS5-b;%+;Q;GP; zj{CPO0?30lX*{V{g$Z&LYwhR9fCL^;z22#1(n&To2+YvhXg6;2H)xnBQ(5XjOx!~r zrPZ04{YvQayK>?hTbf_)ZVwpxCW5C?+#O|$4tJSh6{f1)mFm|$xov!$U=709ulQAQ z`&g?9r-1U%5+KozNGhA4$LBmO#W$P8;L)09)qHV18H#0Qkq_FOc$08!NcPhd>^zGK zu0M74{_yWeg8*^y>O&)dG@5QH08j*bRgqe-V`#)n{o(4s=h93w0t3xycoskD>_;ZR zqrzS;2hpxL1<+%z=P42cmERmhVwkP=9KJQUt^nZj+ak6HC?YqXOS`yP`l_Uqw~ta9 z*j``+Y5Hq4E*JpEul&7anm2mv9&g`d<910ePbglSJ``tXkxYHU)X*Tga~Y4)V0}t$ ztV%?iA6pG!()dq>p|H4G|Dkzzeyk`mKG-6+n68CqdMv3WBAkYg$I7tg-Ai`|gIXl2 zC>L`INO4s0etA_6#;iftA^7C2#Cgx_bfY3D`55W7dWG1%4q(|8NUj$v>nmGF{MMcU zVSrgXMH#k?2kJ-}GeY9@RrqY)WZZGXv$=m#q-*T?&uw4DoR&Z#&qFFaD7*VLmuEWa z2M4r91j*8E4q67X2YSR(7mY?3sEVFssj3CLI+b6>hsKu7KtHi46*)ck`y1nz&GZaT z!BM>+SPxa&!{9L<{h(|spw{?O%JE#UQB}RWk|!Im?WmJQaL(X}9D8>$`JZy1h|u;z z;HKTA4*oUM`3f9Vn)3D-l(qL@f4vkx(o(LyE_^-6UYPeTm>K4YYoE<96w1M z*Z`xzn36iT4J7=c7h(}94?^}67~44YzC5C+BoP+EKu_3}HDyCMtGLrFT|^*;vvWck z4^orCa2pzheq|{XOP%)0jruipdc!;+(`{}_y&CRso^XRyc@lUiMFO==?&7!-@nXC- zvOG=N7C!;seyfQp@e8YiUoTAwK5O(IR;Xe)A8a_^J2A}%MCPzeqF|)8rgfC{Mb-*c zy~Wc7uO$oDc0d-hjBEOOC@5cT9XSm3G}8?{=@mN@uXztiynmXY=ObDa0dqFc#V?vQ zh&O)ofQtRQ84BFK)>93_fSu6`ae>O4hFdV}-N-D+r4hAp0fnRe-kjC+Uc*xio`qDA zrnM)O@xTXAqS2W9l%jQhXhQ?uIBDxreaVNK)ndVrXHu#5P3g&J@1S*;-f1m14hqpL{65od2Q;6k5>6ravy{^A zyApp=$RtqFW`*G30lsT2REB)Fx2Af+kq@hnsKuEc*6ibB^S)WVp@uP*9+%)DH;aEkq*?`2KXBz0I5Y`OyK4vlp^rWhs;sS{UON2 z@Xa||7{$mxm?3Pszees5NW5uo7YOKd_LRa zo*t*!NTk7QsLB7{;N)`}%#h}9tW=oz*@Uh}9>rqUUV7%=aAQrwW_yokKhuOxtk}h9 z@@0~6XBhHfZfx$+7h2Ei0N#qwC}gDz$&h6NaGr`B>-?_1L&O9YL_ zIMNA`5jgi0AZHQ+S-HQIV#~|fB|F8d@P+-mO3TTzkt1>H2<B*0%Nr+{Ev!>41r% z8a}0P1%$YFngk!y_qa)CS2z)SzUWv4^s2p))`_yIf%qIjQ*}T3-*-NXY2u3pFnOY$ z@BTjvz)J%E_U8MOc17MHBj2gd{*xdoc4p%ukIs*gzT5Sn?o`kMzz*Hp0Xy_T^N&{& z9+*$~M8KOUj`xAV)qP%hNB_Fn%cjlmKi-Sb&SSS(uWcZ2-uuXBaSe&q`Eq=0lCR|Y zD9Q*~NZmBb`r~aYDeaR0aN%j>yr1(cT?Q)8+q`6b;o_+U51tDHw0dJ$&>sG>$Gx%WuMNfZI{jrnkJ-VK~PEVSL+W(3phVV+Hg1X+Yv$H}?CF z6lqr544cxpnuSuTkWiA_ zCCAnRWBd4r1_AH*cq@|z8({YjT9*`)Hmk$WzPOUfBq9Ouo?R1BM$@R+#1XypuUfeOV2H!5+qBuTfjn)p_!@iB{9C`5Pf-V>^ ze8N3BTt4%xV}hMPGN5WX&V~yU8tNrh1N`umkeE0-4THMp*?2cK(h@xC+8Fm4 z@zExj#di+!+&C?Xu#|@`v)B~DeYj_qiR4g5M$U3|O028DdB;I@1liD#_SQ7D4b}o~ z#0OS||2S&=GwxoFP1n?LP@y)TO>6?%t{hITP)&SIjCX_;w?!!1H=)>D*@d2>2Db2% z5bAKO$DBzyFXG4{J`&JWXN%W?d+&O#5U7G#=r4U!MA7Zqro0;he6d&V0;`cVSmU7? zbcvAbY?*r32DB`U<{27F6le{D*3!4WvVUML6p7%{n-u@dY1TGL@E@Ku26EJUWvZo} zwJsb=^kioe1L=H@;+KtfqL;>jQykPwa_8e;J;kcBjE)Upi(B@y(u?3NbgkbGzhgSpZCN%rr7L;Q9|5R%G(Go(${^F@ z?8D<@1qKvjSpMdReihJ%Yi+4Sn6jLr1dl4}VOV6aH(iG+nzkz4SQ%f~fuLv>^5Qo} zg@@DsV|UuueO(69hAcCVA}TJyF@%jH3Xrjhgj3}EtZJ!q4fW%GVjy94|Csh25%wzi z;=NhIcIro`;HSJp-c0<;+3Z(>A`iUNMg@s}>f-FYB8Bpo%p7;om%TxUc4vx4-;Csx z9I77f%b{8WIde|VqP>8c&0p%(XZlGkhtwQW?(RU|sOomqtj`PNEFC)Z_5kO@l*Tat z|ELhB2&aE0!t$7tNi_F}zoiOKDaKCbeY`}=x&;RBJHPzUXb#ipSmE7Xyt?hjlWA}v zqx44P*O!;eCL-}ntq*B!+h;UdW!7vkXaWTS(xROZ?ZA87F`C0n*Y<7; z!~+^`9(+8iDa6QJ?N%54qIa5KLsSbu%DBNVM4Xpqgg2%}H2}8EZx)NA%2I2lmKF%d zTf(?rZ(9u_2-^_LMMLDbJgGQQP%Az6sEIxGrGeWH#kUsW%Vrg}Y>#~Oa_O2`U%pu2 z)c0d?Bbe@7-9E)Cwo&jgR*K;LCr{0rA^0^WKAxTseE{=KhT0d#L_1QytG()pTLomA zbyV!LnsNLrHt$Z*HsHluC{4p=Wnrt!bshEWDs=Q-2yfhhhx|mMw?>q4M@Z#)?_pqJ z9e}^uk*q*gvJELbzBRTl=$ht=Yo%xgqkNT?&kYF_h_nrN+r>4d@Ug(sMmdN&l7MFe z@Jn1LI=wfoTzJyf;k&SfA_y?f$Y6QbPE&bN>zN%-lEMA;b8LBnkVs*^LsU63y-%zm z!xrO_q`V8Etj~5A?|eG73Md&j4R5F0;-W${PbLGHw9NT}_Di4h**mmO#FhEs_D|Dj z^ypZBU{O}@JiFuR;+7@FTQL#KOR(BUb+JuDfevydZ$|~>>it8%7JkJGpwFfJ#f;XV zQm?5O#Aj_mv6TGvJaF(3(~_Yz;!PLf1yHlaPTZT0WH{#!t-iR-P_cMcs`#OfC1vo2 zM)IeRUVu>XkMTM)S$E6HJtgSGf#dF~|9?$CWCRsnX?(}6G%bcs;neNS7pbVH@*cUG zJAn@ch)c2ytIA^HRYX`Qyc_@pvRdRJH);Fm_JhQd9JS-@sEDZj>=!n$eD-^lbvyy^ zD*)A0HDc3;oKn4GVLoj|0m$60h);5y*0EFWhY#gGoTgfVu6HVjoE8ANKOw$SV+5V~ z2Ej-Jzky~2-cZ<{I%DCy1Q*)ae9O{1K=K|6ZlEnL-2JavRH(^yj{S|@qgQQmDT>^q zAp>7STU#za78cI=6i&aJFRNd69KZN4ZTZ5OHvRgw0AlIC%!z*TvQecnMQeo%#rr-H zRKjJJ24YmM^W4O{2pY)4@1gw|Oo@add-t6Kc0pOBgJ6Xs5l0UG5k3aQQ+m9@CyNU3UARyps+^179P|K>Oau;@jYt}JX-D}? zA<6{6f+e{6nh>pzpjkjByqCkXEPTa#z88qRzV|UGq%=>QmVXjHdOOaqxLN;4`V>dB zi3wxSQPpLuTz0ee2z7?BlRPHtP%K*O z7wF@)9KZ#vjI_8@{syI2b)Td8o_ViyMM->~shR8gI5%t|XSAePa;=7ZnYg1;ZXzT3$DW?85N5G&=>xc`WXusK` zK!Kov$C0vW`-DVo1(7y-fb7}mCLd`+v<=j8s`Cu_A4Zl8I~XbaQ}q?P+L_c`Lguk1 zidvOd7N@;T%;q=OH139!#%2X~N7AamN7Q4o50wZwdE-c8%BjSSnM`;`aW!>JE%)KH z6jLmZCnk%O_+xqOM`3&!D{T#*iS#=+LXNn5M>=nQzp9~))Iv!S^NdSXLWaB>QWKMI zgio5vEMpbWCm|LVD_pSz9L7;Zm17U0`f?#gcjQ*ByxM{*TaHFsYCs+#$7NrARqKxxB0 z&xTEOp{fip98IBOS*u47PDpuQA#|KErmL7q11B;E#;lblcQF zdZn)HznRY`7|@s@NU04Xf*SGYR1b}Ad|>bLTm%GKRZ<;dW1Y7R#2e-NQC0UU{z8@e zhT>HKfycv`o2Mj(u7!U_(7#Wm5d5~ zqa8c|a-_C0LgzUsl&OI(HlkO!}gXdeSv2AsndWZL-%GNUB*PcnR!SKv%>g^HD(;DFlLvN@KP zn2Psss$Sdwj*?!%vUA2_lrhiK3w@^=^IbC)iClgyYM2UD+8|!67{g)m*V2?Zm4~z1 zYDzIRtsFeIZTss+dV)i5h{?vQbN^Y!@*4?BDfKF)5q2}bGD~^9^R>ycDOyd{566j^!IjReBLdMceI3+-N<1N4ywoUB|D7?Q&f6n zJF7YdH3%v0TM=<>73=_(Z2w&d?W8zm~IMeq(I zwc9j?Vpp-LZ8xt!?SH=02;QkYA>)|idZm(gD~zJ(5?)LVNBrqBihEZnjdPpQK4*Zv zrHM?11A`62YZ);7;Jvt5g?0s%*X}TcV9bX}zF15CUoSKkrf4>67KW{poB1a(Ey@)) z3up`To`oQ+j~M7Xm}Xr|pMNz#Dy`MwvVV`6YzJMK@|`a@CI&CZiMA+q>TxH+|9iasdCl#`mEO5}cZ5TQJ8p%ca3rB_ z1Ochf+@ez5xOX$cMi2;O0ONHi>tI|E%KkTZA->gxgFBKKLEGfPlqO;Xe-`QGBvEqfJTG);=$Xr>hU!&wIOen_iZWRNr4Mix(rGiG|4 z1Q>HT`Et_Yi_yoGg+T_{Go~F32;I63h=%kb)hr_)TvHTj(+$#((av^%WCdrIpB#5}!{76?+aQp@}R4HYQ(XUDA?_(R> zI&a9XnGz!reo*d$5%-;VoDRX#oz>rCQuay&RL-djXRIqx`H5NC0>+mCKK3ch&a;1B zwh&+*EL~rdQM?&vkQD=X&jUA!{i8o6GNxMpg4dkdGhZng9Om-x4c=>4=sigsx_sG7 zpq5`JajnDAY9}}KOvvwo?EPyeCrHI1pvxl4M zO8}K*Z52Fngt(t z&)zq(95?xbi6b2Z;ube-TfSWfZQbHOKC8SZxo_yNWCNCLpvjMaXKsPcO1YPg$=_HY zE}ipO2XlAtO3#%;$eP8!1UIpqN7BrK#MLlPXo?OorKGH?x~r6}e(qwf7xNO(=$}bL zeByi5)LpMpqT`ms%}(7k;(`2k#~pzoo7DJT7jYfpo59EGJ1o)m2g9M=*wZ!uaSiWw zNA>m6sbN)pc9cG2__THb6V6R!p|=o)S=~R*pC9_TnpKR>MT%UTFt5ZZ#N6`~8D~W?xuQWxbvV1yvtKjOl;!M^NMoTbK>QjUu;;y?cAxUc zY7SGhhh|0Va~YyQ)VD06=d*V#=uIKp=bQgMxu)n{RD*5M1f-KwKgST0Ylb7y0kZ%y zb%V(#8a*c&$3P({7jkG35*kX_0Zl#gmC=gS``t@W4;c{;=a)Zg(yVp7t1GagPvEoa zbut1`n|{)M@>pp*uLzHLC;v382q1mrK2(r$CKEKcAOOZsvsm-mcr?~MiJ-Ou(^~U) zF#|W=;%_0SbhKy3lN&!whq;IBIciq*;Y-ap4q^w2^~9jLC~3)vWf6D<|Hf^p{l=5y zhdE^Hb|oBKnAr%-qZr`Yy<_)}1+yx(^9ItM_|7F8h#w(%tPyotCn?Tbh2KYcvF{fA zlE+=Dn@X^5w&+y=QQA{6i~s~;!KJ>j{1MOn`Hk9pNp+~!=x>{?eW4PIf&!)f71e1` z@xkZLM`Z^6Kjszm6lBb`UezE_keY*gN%fic_$dXWpDfAhS1t1o+W;M~p)oo^gru6g zfDnlNwi7f~$D1qu3ZQTnRy`-W1fpE7joZ6Gn%{>i)3z#<^9&FrhVq7e29<>{IoZm&53wP zNTdRtkSMLvRgy}4#!bBF8cJ6Ll_#$FoT3r^ZqkXb=GWKWqPfp z!&6}^Ucg2TML{iZZ&ek3dKvmUGfak_IsD}!@p#&l9-iI#>o-^P*JB7EGVBRGNO85Y z3OxG#-=jC*Z(h6?bDjTv(oi7_a0N&A?lPCxtBPHx+?L|S>Wn|VBu(7i5Apx8Evfws z0Uj?)KRdZqN9fBfI-ZZBWk00=g0jW`nBeahvjKdm;AOK+8~Z}yQp(F_)ul!N+K8F? zGU#Se_%~hr@ad$ZianVadQt7prjmU~F^v&*>0F=#W~5D>YfY#6TfkHi`roJ}0#8iS zUs&go!18+7ARTau$weIe$O+jv1)jMA7r$K22addcyRCi^4Ph0GWbWEYqq5zy_oelF zx%n30MM!&QJQnRK@8Tpcd?=d6{f4}D>2*dvK7eo_Ed#0B4*$k)nYich{G6~Pw>dlW z$=sg1-Z6V9bWom3As2b{$aK#Oq;Q{Veo?;J$>$D8rSJHJ$~l_D5Rre>{wYMvhz`SSfM=)w4DoxZ({AX}Ub3z|T+K@jT%2SVbjsHm z9Diwkr|YDrBy(cnGTS)%t}$w2Mn$ihOHeuRh(#3LM{o*@l|S^bzjJ3 z#?35qA{*m}+c*8>HdT_hB-D^l3x0irOc#2W~*%h8xz(bnAab*nBOT=A2DW7%54z;>(z8D+p6 zjD*!VWqT|-v_A|%{;W&=vP&xdZ`QFkv8{n`Sp{l0*{U;~fHWONVSD!!0j>od^}-T; zNR7RzQ5broKb|I13Z|k_m)v{W6aG_NJkVMkuwYDjS(tw_In!32Zr}YqB|c=g7Oh} z@*U^qxXCCHpvzvVa@%G_V#&Ra>r%r!OpBJdy00atQQdYlJO@YXL^)9 z(3UNb4*PCs(|AUa&Bke|pE|2lJ`AVMQVhzUJ|ke8xtlk~ajm!iQXCD1N5fCDHuSe_RwVRd0I$5Og=-QCG2k$a%kWN24a{u-lxVB9Dkj=nX zF7Are{-NoZh{$+A1GvNZYI}zAUE!1?ZVR4cw-0npM&fGql>Add7|`!U)71p4oW06O z#C3`z`j+QcgvqdzF}+ZEAsu?1VSLD=R&Cr_GRB{Cov@d!XQX+}l#LOPbQP-2Ghk}Y z7G5P?q8@ZzBCf|)xd3ck*UuVFlz^^FOiV=Fu|vAVe2ab0aydLU#I53|Uv2e>Kd@2e z5xa~srJXkEvo`AEhexh4o!FXirJva7)-a(y{E9cuNO=`YJCn^ji|u7v*SBeA+%}?K z!pesv5kF={zRiOmKrDdKlp5K^Pr2PubqOI3$Wn6gUZdGhBIvDk4ne;tf(*U-c<8}= zE5lst?B970#mh$eqk))86APyoBVYFt2hN8d>iJX<(|zsDj{DB!V1#$P(X9*M`GCqU zk;$ZlvXw-_!k}4t%v=En!lkuuQTxo0pr`2C25ZXj`pDBe1D(y?A~5K} z&zD%8GI*JaWql0hLBq8k7`9U#e|rENG|79D3`Q{_847%)K0StP~v>) z02!}SO>bdv@Y(rP-OnL_cpOA)gA-Bp4zPSk$^ek(VQPry83a8zHrd4+i8&48*3;;qLAZNMnm@EBrm?r; z=ruN!Q=aUGT8wFijI<@J0}H3sX2dV$)6&ntjQJI0s_%ug*s3O0``a*O$4?Y*LrjWB zBlxRA4_Nsju{F9{qnL>G6Z@+vowrzWj%@i;sQ=w3t_)H!H5ir}&hh@d=3Ld+wEd*h zq2l9ODWx(bz;$AO(I+Q-;~X_p8qWQkB-X$|f&m3_FHv}_=Ca4a>1Ufnt#Ob4NbZ>H zPtp$M#;Jd_25YTdB4GA@gTy?opO0HrsAOGad-DQN*6J&@#|4nkkB(DJ3ZRB~)b~1S zeqbQN-``piObF{Yw!IwLR8ChhcLCxxzHIl&HhxiRV-P_2isD28dpu)O#(l7$fq;j1 zKRICGjO7pWee9@kqrL@l?)(|NrSVeFC~^GO^^m^r+D1POqL=mGSTE{4L~18}+-Yyu zi2uQm>zie~*AXX-garjD z>2-Yj%S3)j;4Z2FFX_9MgzH=7ppt<59nbu>Lc8pk?GHo(0l@Ed-XK6G9(k%R=e@Gp zyhEc=(DIb)8z(QYg1Oi46;49$b{#9%{Hji0tS`()R$0h8ueJ+iTUCqVnJA`MNIEW% z4{xS}yF)n8N)R&lEXvY|@9i>J>S|>0lV7H9<(l8SnAT93h7l{dlGvC*N1HDXN1LT( z?>({S5uOqdjMFDD^58zYG1UOK!WxFlLr9&j(3W~&@b13evEiDXT$pxC%$YI10SW+a zEY04QUA2{{Wc%tcvhIb9eOwqsyuOo}L~i(mSE!%Fp6n)0GXxMW@^UQ1V@yZ!My3GSh$Mk<|=QUU0EL)kFAaY%@({o?`9Wb&SB2apEzYX+Ks$>@{G zyf`d-8{Vb<-kO-!akhwm1A?|U{H}qNx{0}K;)H^hF_>Aoz(UA=MJ!Y9rgnOSVekZb z?Y^ficP@M+mKLTkowrp+$fn^~8D_cG9DAksYt@VAh|yFfmjr zc054hieIbf=%|=j?3)16~px3$pl9h*{L^E3~vrxZF(>LP>u+^g|m8&lXDixIu9Gd+XMwvB? zJx_aAqyZkB8K0UV#_Bt_~4`)10 z-hJOuq?)B4Sww&$VsLM&nvvnObWl%`nwf5GpVM^|Mvm~?rD=bPJV(Nf+*40@IgC7z z2c(D2X3Mt7P2*MAKrA`8rtrb|)2op%LH>lAit~UXpTWm;J!}kIp0kRHYn%8mrajYY zK}~pho3|d}5jl0QrN6+TwrLbFF^HK!{&D;_Ix*X_dThuj<)C91rc=|+g%K>J%6MHTf;h;_t`>R{K0jFYNoD;l3Ubfvt86|SJt<1SXX}+5yU!mSQYoRV zBXzfuEKw?^aS-o6s*JS*UYzf|noL{vuFF7-m}!k+5G`UorS zThWdxHXwZ3XC9&( zN@spFQvGQF<~%f2LaZ%9)|;tBMg;C<==IT#&2x>Z+HGTr*_UFPXpcKukD_o*3OK4C zh>M->5-3<6@RyR-@`BsFaPTeXur#?a5x;?4ABOm{FM`4j zE6ihriP$cPnfOY-pgW^7zt@pf;F`kQ<2ij~Z}eyXh0T#nma(kptI0Ee|;o=C45a35x(fzy)~(kN0{QVFHkbPbSE zG7@*CR(|b-I3=Ee9L|biPE84lpR)5`j6WIilUjE@Qb)=Qn#1|3pE*XgCiRj<7nY~E z=2#|0AM8RB{6AFNV~0M(Yt6gS<8j<$Fam0JSqTOr)@zk*^#Tr5?OH2XsN++eI_i@- z?r(mq--JeRmTDGJKxa|yI*~{ahVzfLDXi%0;K3ioHSjLhNot?$vlqmSI!1(Krc(%I;qJ;lhJoi?daEqC=?#pPTu%c z(MV3%hl|Ex1GZa4o<#86xu|>bshUkBGB>_DZJaG4+hO>2LQc_Vb$^&{@sQ*@wme#j zpeY5#-N7{0m2)+5$s`%FMhL0%6Aa`Tr-i&GU!rd0xe~^RyUt?JsJ{#d#S!4+|5389 z>(isuqkJ%~)QF;-bmVR~PzVV5#_d{f(X=C4Gg3@z1h1Ud(CvNI6B)S|8DUv{W1-}P z)-X`wUdnI`q;g1#NZBTTY^yJlYE6zHLrJ5%3mn!*nQavu^^6nQR<%iVcG;~zKtgJn z=sR>PV8S_biEO9R)cQwsMI9AU-6;A@XZP~Z7v)naATp;eDa#^#Ge&(kE$`8v(|Ad> ztkdT7U4*&Fau(w#4!@uRJ}S0pQs;GP-EqUV&(GmeG>FkpGQg z?jby39P^aRotJwqh{0P=s*Q-@q0!3@#2x~Qx0;WlFQTX(rt#||Q*Hr}LB_bvRhg6KD1EWf;f$Q zMxztBkh9C|c+BcWY@7@ZlF9)aZZ$5NDhfOy0Cbh|X4V~*1Fl$OAAtg^k*}uEgxJ)Z zQ=t85UBwXq9lSOBOgZ&Oo3l||CoZ=_H-Haq_R*|TRG`>zzq^c(?{Fht7XTxgqE~*D zetH&UhXI|xh8L*U%~&q8U9Fqd<9ANL(GKOLx1m?iYYMth2OM*05)f>?e#=G&`6(no z!_vQn!GC($4tXI(8v+v;W6I*(g{p5?WjnrViLWVS2F!alW0<|WFH6gvCP!%PhFibT z8&VAGdja{;jlW72$?RoK=I3h&@SNg9YWvT7yZHkXt~LTOs&gy&ni*n&G1SF5b!FZy zRp6N63%io>7}hM}P0y>&Wj79NSJzDXMAIO8q~fQ4FvdweQIa{%r0nF9I>}&>>WTAy zE>ypTWR)Xx-}=+*l0MC9N=&64Z<7Y>rjMmRBj7GnTTf9}=1YxOOCP|(IfFGT2xPyH z`L1q{>I09?oS2+6Dm1aX0)`o_)H503`0!-1qz*0n;6<-+LSFN(v&lD4K3`ASi>BW( z%V8D~2CHK>+8ayV^}aioMUa!Gbca!dv1x`Pjo1q%Wg)BsS`tg~8%tHvVp8soG{^QJ zCws??pFwT>g34lOzOIUo71xRwfFek2&<6cnYm(&c1tx>jpk2@=LC7O1{tY!$F+qK= zr!5{ZIl^tNWo zIO|KLIF>Ji9vAqTw%=*6u3|5 zbnS%Qc$qSJ>SSPtuBRiQZf`$*+fXIWzLvW=b`sKN*5ZSF`x^i=PvdiH0D?D#V;qo{ zGyQdE*y?6V-ljt+N8h)yyWyzoClaRsLUAiw%PTrmBa(*0)erUDc-x?bzH}mSHTn>+ z2{g+86H&;KGx&Iuz=|IL7n_nr@J?hDVlgBMoNb@K*Z`k-ZPS*$Ut#GMbQe1Ii5nY` zfbF+DmB(AU+7f#H+&`zHb1eX5bXs;Vxz?#2;E#l<>v&X?+Ga^5M#Mp53UiufQInz4xqz2w73F9aNu}XKqY{#>M^L{mRo_xpL@EzqDjLEvzY{4##wt0R zJAwo2*XVcOTh3zAI$En>lR1FWN=Q$fYzXt~vMwkUNa-c+sB|Am`q;@% znd*&L<5*teX3Qrg{`({M&VPJ;NiMg9#@h$!*BN*(bJpfJKn*5uW}XLw@1>`QKl$xA zFPh4Tswf8F8)4=`4!4FdjJiMHd0E{deRp#655La~v^@o|wL;>)dQq?RiJ0!jHg>nx z;KW;!4rUl)&yB3zlP`~ZM);h(V?8;(j--ESHmaiPC@yB|G`$)jabv-|3qRIz4=>!I zB{ZO?z^nptzJkw@_2k=Yrf)Re&}r&iv=fRt+)u{|-%y!0_kse)Tn$>*cIO!)ftn{K zC%u401%rb4R5+LPb=gHb^8Jopi)g=(ftcJZ3JA+OCF)2|W|i*$2_>Dr)mdnvgTtSo z(5=rT;{J1+z4H_pKLx7Z(beyM8?h|ZvP^uqi$9ZQH$MfrQE85NC!a!6U=agsRs*

    zIohr&w_*$o_8TGl zem-ltcYIvKY2d(g%QLCDWZGz>TPNm>r%$~*+c8XVQm}z-!{1ZZEog;ug_?qfg20=W zdpZU7-Ih|bJXd&AfC#>uL5}xyK8mV5WBX)yfi8guE|$0bai_|ZvsLBIA%ZW6Vl*?v zvQ-hq6ciYq^VVyd^;TSCefn~T^FE6Po;N(t{>ggX(5=Dq+>4S0tzgbEli1Mkez%5H z9VuuAPmux&C<@vT+8r(KudHZ83>a8~GEM~9iZZrnp69TmhG+8mxA!Kq3%TT5&{|!Z z?@gmFu~IDYUg+U01`8}VtrnFRy31rEw~Q26Et4Cdf$5o$=@D;?{<1%I z>NGW?l`ZhI42cB;PnZ*0{$}B7cuo`&7+wr=LMIL%H7h!@#QO|)2AeDZ1mAN3-)bwD z28R2Z!2(NYxAlXuJU}6V;n^S`>(!o96tpCn^4Cx)j?HS%o5kTA8VVe@gM4fb?QFBB zA;Emj^YhtY4`7hs3`=J>TK!Z=U#zm=zl?i(Jg|kn&>@Wko2 zU)`U~jt9Q5IM@?C9Jqp9=^y9wIdl5K_1d9z&I0A=&oqT+(Is%^` zvEK9#n@*>j=J7$yZFdALKZDpj-l^vs^;&@*ZX`gF!Dsz%@pz-d_lwy0sN)$=rNVV- zp%pP{z(k%7*X{NZW2()QK?K#C)UQ5JF-^Ys`X9bkT{e1JN!#82JEJZb`UB1uTQ@dD zyoIl%h*e5O!8#`JI#oDu$aou{MKU%i9R+I=0PNP`&>X2M!sou6#{f*I8vroP``(S8~`8@jiSiN~re^)00RSvpL`OTCk1> zQ0A!J3=rfBCrX~WxMOJHWWoDoq@N#p>_w^U7a|5iqSTr&Orx!?1nLHXe`a6L&!U@VVu+jyiiHO_7os?m&(e)LrUHzE@`M_ zG@Ced2+7;T$KFuMXg2Zikn#bH85Pg=c-S4&xBnDesR7vTG7=mRl`kmQCWPi0t)Lt_ zg!~lQh^(Uq(?WeHso-cEpt~)U;DNX|^zI?Gr10&Qj_%O}EWOHopB5JA(2QKwFKG?c z{(psL1mSOKY-o71L&IXb;nQd(!49;2A~ZNuyw{ z@txQ$f78Eaq`x*q90&N%dHjU^3YG^_48jke_Z&Whq0tH!a#A!NERmap?+wh2@VeKO zIVTjH)jemw{r2ux_i|U96*R0NmMNw#aAfn<@UuWdbgNlG|00CyQoyb=`%(B+AV9Ub z6v$h85#Va7=FiwXS;375A#RtNmw&Ui(X8UNPPGIobUohbkLUx&jaX=8c^kGNm4VDy_ zsjKnry*p-8AFV{uzseg`i(J~{SvCG2k_3=KaXOzevDL6BFnYvZF_r>ysDbq#3*l6= z%>7ZkwJ&PRJZPVyfCZwcX8G@hDC)3~v+d}Z7a!9X)hv(Nrz)g@ENVnNfRIH~iN;ne zI2JV`9a} z*_~Q5U)I8Z)I4Zr4^~lY=7IYqF(z24%afG2!;!W@^Qb+tCj~4J6&2k#w(3vRomd;b z-Ze(iNqh*2T-qh1K#{2UW4LsJ0&=K<^#!gxDNf5{c2NWCA(K9o;((w|`=}YoBiA#w zeJlm!)3KP9@TFwK7`O9+FO+sRJ2@MG>G{9E!qwXtTd^PPGkc1)j3vq9k-!go!r zP~XHyoQvycL3w%xD4{i473ti!LdkS*c5hm%@up=lVjXqLB1R~s3EYfQnzU6%W$ki|3Mbnb|w+gQ}RJfErp)bKPB*G;*He z$&(Tx8XX$Kkr~rqw&*f*6i;WBsId6ZVOK!xmqE$s*A&&d9^K2u)ST8M=qVh=QmCof zJPl2j1)9RSk^SWEmbN&pCco1g&hOLRHyggy;Iy%H%0?*$XnBeGuT2^4%q%!8!f<5R zbGg*W;0_~;OR?P3OmfpcY!-jl@GH&gYqHHAr+^we4{E*FCQZkbf)fd4=J4=P@e2FU zsz}u1qAh1ZWXhI^sKd8Y{M7ifYFlvk8iUD_D`4cDM=_goO0Y0}cqX7eipBWQkt~74 zHpkIQKx}+8{Z?HC=z&*i-ps;)UaI{qO+By70f&|*xo8t$6fR09xGaG$nv)n|tY7MK z?*3F=-8Vff*G)?9r2;6JGe1#o#0kM>?yy@h?K!Yht$cJiJCD|o4l;jUU{~{+LuwC3 z={V~|qjEw>H8W$~7ByQXSrsl_w?0v$WrDb071+`4C3Wu_eVj50w7nP&Q`yTH}HoJ5J2 z&iI~K;sF~(mK3@EEU~%dOtuW^AhV>E(%(^MCEk;FrdEm*LTX7=WnWIWn-w2_oGGd% zSRuNkD@ap9>Z+Pl-|9?VLBR;ItRHaai!T%1*2Q*u?|1jVW$kNiKcJfl;(i*oPxqJW z-73|sCVgLg#^sf+#pddK9~T6&cBt#4-+uP-r_6x0?NBcnB)&lR;_EwHzr6eLy?8#*8>F9QFvjx>Y?_4Ay1e%**WO+KmOGJ1r=?x5|_)?xy#%DB4@%o6L;Cx(TV$PZ}Z%lUuWXr zLcu9jz$EH}$IRrBuIjuHuff&j(E@_*MTj%?lg27Xy3B*s_)n|+1&AON_3pAc%=x8z zbydOOflN3I?e3GsS7%HM2)b9fG1addS_ahjoiUUCZIwwmF34|1iL&;lzFcmy!$MTMbMGne-|1f48JdcJ{?RhFWH1C^*A>nH7!rhWM2 zUtRTZkf0Rphq`n*e)YAk{qUF|6(-$m#k&!8Ce?5msx9>uM=U)J2P)A_(Uk$}Id#TX z*GvHsgre-|64l2~qWfX%%FbhgRFs|Cw9c|vS9Tf>RH8bl-_%9IjIORaI7m>6*wQw0 zc}Bi2wphR{U3BSrEu97gU1ZS2Y)Gv^EhH#~LHG2Qmgq~><v0%xUJ zS2gy41f?udwYhT4e$3tgf=>FXeEX)-R}~znWcleUVpe1JWAsf22Z98pG-iC5ud?DB zK+uW)wz`v^w@Y>XZG#6g(ax*)!{+Vsf)m!Y^BxnV!k~0twruI^3~B*EcLU=9GsZtI zc_96pszISb1Cj8}Bc0HX+K9S}?jS+=vdG)UTRYr(`rEoZ2B;twUiz3`&|I^KR_CP# z4`ehd+)dOConNkZ=K9OaB`sgk8<y}vq=^bnM0(JEIgSI8-t%7zNos3p%6kg7-+9b#MIi+Qz2!ePf;P&9a;{vk z1JC0n#YFHB@`3+Q3HfrfS6ei!>onxzDdQAuWc9EKJ$V+$5(UOTplL8V7biB?))rWX z0)l?%GZfoN3EFRu?VLB31)IY?YOk3Bk|I%bDrHBv)5|>)yX1fnKBR|#t^H*|zzski9OXS7Jo2aW~%3_NGDQ!aj-cqyiw(u9qY(`lYJ2E8jvh(h&~yMrHhL-e zKvU$rijE~oazK&@w#b1^PCXym=NEVSYJ+VD4TOoVjQB#W7Nw=tc4az=%EZBB)HM|^ z42~?06G5D4rtXJspX=b%Hd9#=h*Gl;!Em3YPY!ho&d7PlM4(7BK#m9wQR02<^R+cG z$5A3F7=eVrbW}+J2PAcQQrLwIHI3>?Aqhlv6`iVZ)AfN4Cb3S~sCEiCiY2Mr>c)-h z%$u|%!vRTM^^I0+;(5CFf#l!Cq}oagyMW5psX-vAT1cjJC708Q0N4=&w!@>LxkE5YwDhtfPeB zUz{R1(QwSqD%TR8EH()Dp>5A6HXwx9ppWN$Rt1BeabZn2s+S1jf}U~yn`rn|(=+a& zfv{vv53CjsiNXRNr>1w(L1>=^b+dI%r}J53J-P)w4TL5A?q2^K(>Q*YA%eK1)#Nv4 z^1CDrgeCnh_~L2!T_+uc1``y%N|_Fm@>@Ft5X7Ufe$-4*l(9i((w>pbunQdO9H$<4 z(m`mMJ$I__9d~rkWY2&NGJlq8r=twIu4!n@f+JxbJlj>vb3x)q9!2`fijMjQ-s!qc zq0Ea>dJ;xvjt^3k-QVn|`*^%OPWQKu@pQSFdVfZ_0VCulJHg4k=IZ}Ao#0+d2oAPh z(0-8B9OEdbb9XVY7HD4 zB3zk!JB?Z9F)D~(pquk2bSXUjr@3m{X{(N#u@Wyh8L>Ys4o`NCy;&@Y2)<|3uNTY1 zls0``iRtXW?l*4C6kst9ZRd+82eC#uh$FxP#~-PD(B6lb;V*~e!XW|wrR8?=$?@{C zp^Nap{GGbwX|hoJz)wHzxV78$a(H086*EQ~OG`F;X8AN4*lwrUK4Pv{vhlf-?jyIk z^p!LpmEy_XPDm!IM;28%)QHICt9e$Q(~_{-OY3u+u^4gP<2AZRez{X6B#J*JQwi9uJM~e zBnAfzq0Q7UD#&mL9A-0*1*RL67u()Usq?#`5_pz?M|2^Q6~jAJQ>1Qr!@tt;pTEOx8YVs4BD zCKYqPnLP^pt|I0NAaJPM@SkXS%Vsw|v}^{oTn&G2P&c{I+%q;Qq`sfEU{~!)}}>Ju-R*l=bu`2Uz?h1 zq@AOe%PX4xV;)g*jMeuD3}Ffr%x^7s^l%;RIowaay!Y@|AKO1qr27J!H9u#Q0n{Tu!pRiH58mM)uI&34=t1uxTk zv5|9v}q)@|M(+R?~r*rrZ5Bg$)U} zzuVJ`-+z1mcVB<1-@0mPRWCZ0UvPbkhS9t^Krp@4-2KtP8i0cNCCB`k zenU&;Rd1$XeS?DK2-S9b*UqeIB+xuo}L(*vJsFBo0|tkVbv83JCzH_{T{ z%Hv-JSLXt&lV1aa-jzS<12wxF+9t!7--ecd1Pa>QP>K|@`S-`==`%loVHuW~Aa&uz zC0Hy>tzgbpu)(dH)}eyf)oKvOF>PqA=7=DC1p?jAG|_sXE#tza3$C~ZQqscan45+L z^$Yj_)KT;-Xa<3iBxM2f7LtN45itukxd0_eXd#iqs5IlH*xJ(MtFmz(;|N`yM+1pG zMwHk3eLq%DYAG!wC|^Yxpd`)jpGD7G6QA>9K(&jgo;ewgyPGVq! z)P;WJxNX)n4o`%np`kwsoTaBT1+Ecd8Ly>hz@U#>9!m8Uy(7(62Wwj%2MSte^sly8 z-_RJSU8vnacM~s^4b62D81ydJl#2Gfs@eWTc@NEX1PWT$^!XIlH&{UrZTezV5W9+H zlh8G#>ZKfB$U`fZ#005pgKUCDb8+NP7Y}WN7+{Vrevz+|&H#c=x)3cCCA!R&F62Q$ z>zX}lgG56+wAtf`Ae26`qx24wrs^dm_NYI2!*hjwpLxFEj?nKlvqm2nnK zs{$dFQ3VGoS!>s`2aRcG8DnLw4NyTW4V>*vRT`M#f;{Y1sAk{F!8+BWS-YXhJ66m?#|Q!vly0`h{QmJ`wo@}!^d`xiI&h46=xj|I z83Nu|*(j~9wYJ4O2}Z%8y$d#L0L{ciIZc`2fEL#e2-8KQ?Ng@C%p2}vvNS>mzl+>q z3X>C75(Ude<#w?6kp|k^*38x@k;n?w8WQ->-~ta%6VD11+yvWgh!g=-yopbFBC56K zA6StTEOG-b?V33fsQGF1xjIVrjeb>bbA@7R)!+FTd)~ioB!Xs5lGEEk2$jE%pt2vS zhis|G8{ZheIlo}W4edXSwd)ft6oFyhs22SDcv_QO(Dp&Uwzzf_+~OL+W=dX)Gi3ku z2S50OAE^I>%%4Sg=Hz2w!u|F3xLSN3or7x5XUUKfO5cx^emXnMuIQL{wyghcG=)hj zD2pq)Os=|W_v4pr#;fQZgizUUzv!W+^VyF*;^Y>>T-;KxQ)f%H;8vl?RnnCtqJgb` z907z$>7nJXFmcA3l-X$hmZgKj_acRNY2vhf0;|QVEB`v0xD->Vt~lnMOP67St{?T- zi~0!P&RUvqUB|J+f_r2lTl^D z3RZoto`PacdZJpp((&b|PgAWYh1z!_+y4ErIl5grk*gM5R39Ox>w3%sO>r-Qr`>$7 zBr>~=*GouJ6)M}&oh@`e<7p@Z6_mxp5S@{)Xp2}wx8u^*yVz*s4MWmg&=%KUp1v^! zI;9TTfzIyoHL3CHZx1QdX1vc?(sU5dS;mqI%KFL}J`qlSovVz&1#NL(kei!s@)P?M z$Ln*Yn4rsTL390jnOeMXU2rMqDFM!vB|RLubCdINjlh%)Eke8CyV!oSU9HrK0OoDu z)rcNa*f1W6q&|$Ait$DwSvn|;M{oDFPy5EhfqsnF6vVW0O!Gic}XJ~n@rh$v6?Uv-Vi z$7}!ZCzv{{#ZsTMuEs=A70-C{JecDn_uA!_wrTOpf5w~f?xcj$L{wqfqIt-q%n_qX zmJb?#6?Mqe*7`-N*O2K_twx(9C}D=~NxAOGO)t-{SaU*aJn!~Tvje>VsCG@d4r`=x zym_}A8}$7mvSs3nwowm#eR=tH(<~akjqJP8?Agx?&2H`m+TE^Sb?7oa{n4@6?0Wm? zu=S&g@a#JF3;*PW+K-mdst%f95Ql#(`it3XcAqRS#Z^lM&P#gSm3#} zo-J1w+sBhnW*1LZ?#*>pt_9`=il)O~1SBY5ihrlOl$#ZIrh=`pz{!wWP|)5)awBUc zkJ)_OU&(=xAk=W6dI1Ry)o~M%73?(zMuN-&g6<6@)pT|mS8ZCKY7?-sEVw5dXfbgN z4GC}JBPM}HvPJ?g+Jf`bfXizLup#0td=-g!xZE%0DejJdxmsSdv-Zh{!0T24aL9NY zpD`I`vtgn{3if^hFt3B5LrA(%Xld_kg%V&xM7mH^Lf9>wksPH^LU71<7dB*ta@;Lw zAuFk*U^5yZ^Ti_YA;tyWyT7HzoGwzOQ{iiInsaE-6_B8O5n}0g6&WtKEBOL)!Ip7= zupDzl5I%>r^mDxCT5!o9zL#7E3^XpP6U}0|pU+y}bsHMh12|BHIg0xr6*=O)kLQtb zlAwazCAI%7gcodh2ZXep!$Y1zx6nV1>J|Ya2wmfEbGKJZPaE18%(6JN@sB`3dm9#^ z6f0Wxvi{Fm3-(?EMjDo3g7jIWR;04KQP6?I=MkC0N|Eg3Y4{2fjRle$kU}{zO${rq zf?FB^AoF6;Koq)%ZPOBws=_@uXo^;~9;16D2L)|t)5-g5w2_I6IzFW4rYp>U9&toge0uNT_o%j)mwvOLxd0h zcR&3+-PR256EH*&dVg0xMrzdJM#`8HJjl&D&R+t2_HWUnE%-K8JH>UFuA@q;!6 z$BKZ(<75gL^snQSkY2aEM9-^L!Bhpnviu$y0+RXH$>^mdR-eYmzXJxnuS$WH5awkG z46aHUY=}q}f~s}O2gWZ1j|>6HLeR<1Q3wt=rnl2c(QsS8bsB|-+`Wv*g&;^jCZ3=xSfv3_G6Z^5 z5JxdcC5fgjYGaTC1#J`#REl-tj+olG8{&fe71$^=_Wsbyv(*JRA^<6CZ3_$P$ct43 z$^G-h`bcpzf|&;FQNA*u;@0v6P)F;i(&PnX{-Tho|%#16tSd%A`&?CC~19JkY{ z2zjTIwVLW@*K-P;wx-o&pfGIYM4C2UPpWmI02b7K@`FO8633Qf!d%zPK19HvXN|T_ zB^P^YT2TiGIzQKBbBoEY*w%w5{F2BJz{0@2n|_+PEj|hF~CPz65ws9EB3 zIjO^jh@6wEgz+T&NKWd(A*0I{=W`q(M*WEBt9Nn9T0XRYlLQ96>u`jr(!qad zha-&)0m=Mp0b?z0Mf?gF^sY{aslq@Q_ArMwJUMKLNEU*RKcR#%3c({oK(Y{YvU3!I z0|xz#wZ1;+;j(!|1M%j2vDQ?u&yPQB6T^Y&+2E)7Y|kg`3%2=Xc{CVUo(Wj4o5!rz zP_S()OQNvAaWmk+z4oD_6vU`35Aaf4hwa6agV@qn!v#EWg}!jus=*#JUyUzVI552! zSdiX3qlb{Un-xEES1{|8HDUk>#viTec-nz3s@YHO(x24rG5g8Yk(M>4bgec$I7?S{ z?CG*WJ{4VX<(S7c{ku{c2z%E9NMTMCD~4|i4pcZ1J(@fNok&rKGD;W)%Vk`Lk;}b2`!g6K^{IivovKpPP&eATT`R8Pu)xEK9!`Mxb$k zALJmOC>)prK0kQF=U_cs&?yXFSqk0`*8svwfI>b3JE`|l#;}vdN#I8nZeTgE8uq-m zlJOq_M#BT*$Lu{+_e^wjx@$0Mx;%gk}4@%&XTBK*LG_V8= z5Ex$Yex!fUdrTNj$uK(+Xah8Gy|vyhj;ltw65UgFSO4X6^B1~KO}=hf(&Gs6Ob84A zCB*9peH&c~ljW;;5+&KsnX7-awq zbp)2;p;OTEtsjPP1sDA%iqr{66F?9A*d_lR)y;pTxeFF2 zhxu`g30C;=r^^{#>@c}l9>^0I<1jzwcwlp-Y}n|&kNE?dpJaRkOIaX-(fP6c-Bd3| zIM9zdAoy;=tIW?)&#a`KOH`Tw4NT5o%x}Bn{`%s0IE)haZ0QA<8P;~TSZ=S{?UDP; zKrb~p2{6Gbta_laJuAX0t7D`k#V=bA9=*npT3+}ffZhf049sgMGwj0@wmduWK36R)O@rqUP zIlZ8JY@3OiKAs<2dTO2fR>>aKm_LOIX4w84Re3(qb@mHYg`y2x!)%{~1@~>6>u<~x znRnD70o6LNGB22)v@l`UC4vN}%dg?2X7KZ6vs&EQ9)+m~<~IckZbV5dj<~u(E3S<9*&$R`!tK6gjN z<>~W=F7RXZz9LTs3_R$SX%ST4?rc}b^+pZT7~im7SppQi=y&QQG|{uXF5F z7yf&}{FRVUpv!YX+-p+YSG0k4GMj&YT#5%1O2Tl7B1X_H0}I{Z!uhB&KmZx9OKVVg zQ!i&Gu2CwP@GLP0XMm8mazd7BEt;M@W=>r2T%p8EIt#Qo63B_X1SzBXG*jG(04{oR)AU&We}pB`;T?&>5DRcyjBV)@s#Do#%r!p(F^1h)(6Iyzo-0^>mz35`3 zE=w05EcPd5BGuI+8$OvZKdVYh2$?@Alewe!yI2=vc2<#^?nH@gGk^FLC2BfI{CSxb z)i;S-Zm!O1%YYPe|MXP3bY$zmopkk-G#h3JFZ9;v<)HI=D|KIQGy1zai z=%@pq?K-Pa#|WWO>`WF#JQ+4tP4A$C#HeG(zM)CO$4}@y9c`wScSerYvFqZ4$Zk7A zBpqiFr~b}jM@|Qclg`RxznRk!Ejqn*z2)0*n{(8jm=aREW2gO&Vv@e^==`x$5<=#0 zvKGC6O%G)+?&<@dcWtQG|2CsXTvUU>ME`%MTX(Ms=(51I+7y-?wK=!#7lRD_`RN(5 znPmC-fB&2E11-o-zEa+QvYDe?K5p9?Uq>CiQpR+UnD_MXn@?tKyA%!D=)Hs#A!J5l z1MggcB|o7pRP^%P{f0K}Uej4q<`iR%4a%4yJRkJJ?9%)|Vw3*pK`%`Ssb${!S+ukN ztlnzqATjE6CksQ(VzQzitJ9rlgTS)l{(452tkUx!+(FM;+@2Cr%Zgi1eKKR7wYUx4 zX%h9E^3#)O=peDIz|#@wtOf2VA+@Z)|8cfDa=$!lfg3tVEUVv(r5LcDwSH^1(*&+$ z2kWc?H5&xJCwox4Egb^;cu%e5H_e_FH`N_Ntg`&e>7AuycP~is^OPL-w+m?=JhfRK0d z-a|qXHSC{9cOlOMQPH}+*RG}xrG>^?CXZPlDB3I>B~4grtj)qXE{N+WLca|!+;lO1 z5qcho`bhc}pJ8H?SF~y&&q_T!-OD&ZvhCwZQW^%ySJyA_Q@&4MzR>{r(fVK_=XQ20 zv5ETlw2aRsKzxbo;7ht^a=GEN15eHNLIdQ#uxSqMd}97LxsdR2zkSWu+KH2JAbTbJ zb#^>l)A`Qjd`3rm`E_UoXGb!W0u;nAY&M6Tx@hC;ufM%FnYF|!Uga$~&YBDy4y-<@CO9vUr8wA+dWd? znx3N*c^^_=bw=0wH7m0jM8G9z77MWzsg6d&f#!y%r}0hnm~V%}7i0*CAbTz#d%Qe| zTy-=oC0qtDL8YEP9F@uff+}zb+7mowlje0LrQtvm7*Dlqf~d}T7BE4jmM})8vVfp^ z*15z5t%L}sjvM6qJ;LIF$eT~!7cZEq%m+YF`8=sTdV;AcPZlph)GWs(GI$_*$(7Qa zI^Fvz4F%QnmLh8%qs#u{lE9$8>8VYi7o;8i-vUwx3A*P4y5yVk9Rt}CK8FcHA3dl= z5P7SL9tI9H-i-9`vqQAIwaSbh5_G;s#hbxWgx#E0M}?r2nn zV2cMLZ@A0Vb~b8L3BV-PR(f7l84;BR1eK41`j^G>q42({C>UUZ&^x=iKv&RJ#S4cB zGVg&`GB8znphg3Uj}p{aitJQH2?GZjAN%Ov$ByeB5_Gp+<+Z;p>FQW%#EyA@{%S06 zLCo?wc8n)Z5#wJB^GTCdv-V1k^*SmXE#9~PdRLcoD5sC2SA)Kxl#1`;3kuV?#fVZExbZ}DQHrFt8W z5BjQzEMAHz8eLWrvEk(l&f}Lsd=7g79Sdgt)j9-4-h7>2uJ+fIY`h2`65poHD3lVK@`u9))~;?fyj3; zmWTG(j69MEFhLlY@NwjVbvZM5Ao3lWmFzZEb!apiNPLW-Yi5K$RMjT~2bx>1@uz>k zI$Te$SLMaPAul1#s3zn62j3de<20j=6D=O{6B3O(PHbmv zoalp2OO1IP395pQheW=76G3NNj&oU63oeRJPQo}a@c7}c{VAG!>F7Ij&V__{U<*ns zz6_;4P0pN+o0t6NG^s&oPbA2B4q}JkmA#VWV5;kq$CJ z=UU|P=o}>I0#}JETb--$b~hx78s17G*7Ew$+eYn3RfIQiFr1&Qpv}QiNUWNz03fIW z(~UeFZFzGNxVjrVj^}$068Q>(Z))&c)timT0waz*_HFstH;9R67?QRg6J`u@Hu8|P z_sjQnWP(gt%>NwS`#xT zmQBK1-BEO%JrAM+9I_U8NVEl{gQmYLVD3vx&_vT%bu=0dG~O?Kr3(#L)$)5t(D@dH ze%s82(^s`900fmUr#NC%8IT8zx3;^(Zbse0$?taR`sI7-&#ivBl75jVrV8$ycX)a; zt@~RJ9ohXbopQ00-&x?)>FI5`zSm=LL&;WPs)6uLjd-DDd18Jo_i>=#qhssbuta zlV;mbfd;ncLN?VCW?A~puqPct2+e`G=-Sf+Y3k_ z>HYBYNYeazMz^wyQ+frL)`Xz_nj8y6y%T;Pi;7-0E4cC~L@ZFGDIn+F@Z(5M;)#-y zo>t%q{d&Z!B;9^Q9kk1}Xe~zfBapyG-F~#$ZZ1~xGSt!i$gx1w4?7EPOBF7@zo*~< z*ATV8>^u!*b=yj%zib=cK#XoH#{yArhq;QJoL2XEcrUoyD+KH}lV-4Djz9X(ZaL9w zi=)fY46sdiJZc;2yRf!z^mt?_Ag4PXkr=A}OwZ`?$Z|l?Pr{;(e1{U#BnVAos#yl6 ztKeeI5V_xpI2Gh|7avW0h->{uFFr#7Io+-uT?{$8YikCG>9)MA+{Ijl}{>kQ>?$N*4n0mT_=y00y2QH-~L>gZtpzSS+vvxjAePN4n#M)u_R_ z0T_60syQ2)S<(|Zlle96ieW?@%WasC0)j1`2o6+axbU|}oTw;A=KBN@fq~|EMnead z_hPW!v74tqOBN4gw*}db=BJLdh{$Z%u_2&@&|!jkVziK;7;e# zXaPaTtHdg90IRBm#RD17n_Bys9!9JZ00bQm->Ya1s49FLxHQ%Jfh@BsDgy^9-ui8K z4S$xjs-@6qAmZku=TAkmUX>>U2P$6E)Z}L3b>*s>7GQ#uM--jlAg>^;iYOiulssyx z-=hW4s;KD@LCC8&-9Sk5oUECxs@@h4WW0LQS%j5*x~(d70We3m->$?>#+7si5Olmc zv{ARSsyZ0B4ApwnXwqspP;rmklY8hT`>=(p@<@jWLLR=Nm|PXU*y=owDYogB?M+oo z2{4g6?j(opaemFJTa}X-I8gDbop`UIs%l$2kiEouUwR5U5urQo2 z>i_;TX$-Zx**+ADaAO$50mB%v=c%`?l!aJ9RC}I71+ni6!BTV*O@yw&T_Fw$%GlJo zQm;032n_mHBENgIq|IAV|ES~MgYJ-qTzl9aYMP{8vtk~HTEl`mHoBI#r!5^Kx>XxJ z1P1;8+%0ILmHs~+pkP`3bwS0Z&rBQ*FaZ2)0IY7wW#9!{5zuZ0Eo^NhQlERJjbs7gt9EXQf#!1bEoQs-4@>YeUCoi6!If62^do|NN) z{Y}Acj-9ttbq9aD6kC(;7Sy)9fCw5IP}2XfF=E=uCEXM@)i-J}4;xm}Nmy{dX!GwA z(S5Ak>?MQ2IM)IYd~Zd3LAgZKCH?U)?y|hiw>$pqamh$An=_3DDw!|+zzOr%s(cwZ zkjZ=vn!wBEi%sC&5+>Zy42txRqFRwFF#sZO(vb1i!zx4aZHCY7w)&mCd%wH)OY;0J zkL)Gu(B^yNiV_Q1Vl3)qHRcx;EE+4xqHZ`Ji$!CB3chc#Jd zDp)jDGB0$S#b|X@W2ITB+dEob6c$)s3Cmygtuyanm5k0ajv!FM%*ra7F|8;oHeV`O z#1_pe7Q#Yao(-*d5Drmr&dh!u1#JZd4wjSSa=}My6*RqH z9~Bl@Uft<4sFQnCdk;_UsiU_vGBj7`Gs2RtyMZz#)By|bHah$b zKY)gYx3U`MM;gY7Wu=nte2EBPL&a-J6}v<+lnf#J6aW|OX&*3>SQ(7r0~QwCukG5c zT6ZD`H2C=7mDnRiw871>l7Q=X87cl5=OL}`71j}~G#CsPrFhTlCL`t(0i5!=h zyOY<$g8G)EHWy2&#h`rvd~ww!JKKx@{L?%Tra3IV^I_{d>QqEBfOMSNV59`C{l7G2dEoPT1wCd1pxgBr3pCG#KV2ThVo<>lBg3Mh zK=N!zLY0`gXTf4khC?BN;+CM8Zno<6OvY3&dzWVdAPAY^)DkhH8g4iZ1rlbs-H~T! zxZxBMD45~s2jnxH<{ECe01$-CvA>Tl$r$d~1`9MVh7NI~gWEB48!(zXq5{g8Px6Tmz8x)````@GM za+`Le7vkj*w4kvK>@ShP^1NW7ipG}`3i=Hh8Vv;=RiB*(>eR*i(@v|;F&3Df3z%Y- zg3UyU>=+y{+z1%<&8!t0?Fw#=OHf!KaD=(o(>f{lu3@<_IABoT3oFtU+pKDw=Di^b z&{e$-{+-vn)9N*Y0X~(%uB9D(lW*w16ZIFCfr8Bi0I)5DL<133L-Er`jHzHn90+Nq zk6e54M!Qny*wu^M?c|R86aJ0S7F?qlq8aLLc;xujetz97=&m~Y-{Xp;(4}?rhA+Yt z^uG;?Ce8qY@J0E1Jh&|AN_FrVygZ#+En(KJq|>V-Y+cbFe0bYIPGyILjgHY~BG!7$#E!UNljf-Q0NONnph=`3K5 zkM0*(Uh;{LIz9^szUM{$lu22^6~r40kus)+1J`ZA)izgZ$0M%_C61Z5rh^3M%YyT` zaY@2KOu-CcM=k?U@ZPk^n~aZ^)Q32mAsU!ag66k`e-0}_2AAP#x9dwj%BbQpaA~eY zJ*eRlwcrLTt*8zZEKVf6!&s2j07Mh>Q_>TM)ouX@8=}UUp941yeScVuiy*-Xe|%tO zIO6-nhLszG0~hRxAI<$vEPf5MrvL;W+8+CJqOuKZdpKT>Ev{~LY`nf9V(EaDsBXg| zR)~gtJ!dP6{!Q19&>aiLWr@n>vA}||(!V6D+A!;JJh0sg^OUJ*1v6H;oCSzre9ffY zw)@E^bT;C?ZY{Q{yPgYH96eUhif5o9;0^x~6QCw9A2htrQgExfN9&RR@DdU08Q(uR zst5%R5wCmg%o2%ORInGwgLN4~v|w-gub70S;}<;5;^DePIP^YC7&sP~N3(>*hJ?4h zbY_X53WedO;Nbxe*ky|VA5z}(Uw&#vEB8@L6HQ0K5ZmJkB^h`K399O6Dt>jzsHr7M zaEJ(8^zU@vpi4!Ki>A>bFrDV>s9l3V*Z!TZ_zu6bX-pEMJVa!X&jra3?wr5Vo0i@@?rZxTrE@5zNQ&H9_Vg` zbhN2=y5An#Ip6GA($!1z1%M#D%?OYC>l9;2i=JT&5JAcFs1n3Bt;nMXOcJX7v!fCQ zfJs7Ag4f&a1J*7K&tU)v!av@x)LRsEu8{u2XTUn@dG-N2js}vq_UprLF}Z*D+k5xb z$^Ujj`@V>dF6pKJkxxaH^u{!vsfT^g5OG6^P!rTj#$?tD49EI;FrOJ?9e#Z5SUG3RHE)iR+*1JO@enbc3Tb}XS-zf5Kq$$}1W z_fC(HBq_Ot%)y74J4}qaaElJL;*+csI8gC21-r0nm5J@cy3cBBO`rdxK}N8t2tZ*IWT+@1cN6u<<#@)Yifg%vMFinP z2-I=L+v?S6cPCedFzLs#jVdg76k3>e5ml;?Md^lBry0P4Pf> z+ZV z`5VcADc7C~3_M<`B4hDdrAqO@_6aYQ8r#ekFQ|oYg6(R8-Aeh@=L3WPe!#DfaGoum zGuM%P0?V~7aa+)QUb>oQ6`Yt$OlaiF$-?tz>4d)j}Q2eAdnE za=P?ZO4nrtCRn{lJ6ldRJQtAUR=M6};K1dzR<)JC!bC$ZS&9d?yS%krj$c+f;W9;u zL|KanMz4RQ>qA~KkC7ygxuw%+VDieQeoHRS`LI}$))ca7L@?gt*3^u&S(s=1l9{Pu zN(~9lNGUJqQx~&o?NVw)Fg^@RseV_NeDjhD)=K9)jxt^b3vMqDQ4d|Nd1RN&s1({) z0fO&ASXTNuEUIJ#vWwK9g4t^)YQVtiv{pOOXkhX@Nd4AqJF$ph^lDN4?ytYCRf_-w zU!;U8Yhm`R)kYMdMg(J|gpK;CB6R)KYm@2E$@pSC=dGhwo8+)4tJhgE5A(f zz~<$bYNUK4`K1pGelNeI$80L-4%2Jpc`hh;y?l!vQK6~Pe9OViXGL!07PeNtMXbOC ztCw%B=@Jy)SZn251`b?)Y{G`r99B}b5=6-mD{ryd5|}D7Tg2OKt<*< zG*I;^12Es-_1BQd_*ycdt+Ru)uHtgiuPxqqJM<>|obn>N-cI}04b)nk2ln}Co_*B7 zJtj(U%Qb^6G?GgKML%P&J2htfEz#eSnVkf;lQPUgNsI-Wa%(SrI%cS5+FV+D9*LY1F#}rLzUYfaAGf^r^ z168^9(yCU;ctR)1(^*1HSEKgwiJ&YuKBO-M6X%V_2bTnja^pk#a5%x$q`Nzoe0b5Em<%6cKF_zz zg*pVw*CJV#DKm_Phm@#y&;f!=-YYiY9R?M|zlzwv9Ke>S!^qVNkm+LWTSC&`?65?f z1hO8)WPLZC_&3W)rfhZzNnt_#X+HJkc)=I5OIC2n=ruGX{5W62dO{~I@$X2IWx6sE zDL7<&9Fd{V_grl~36igsJ0xVlpnn*nr%i&vT?~?CAG_Fr3-X^t$O{^TWRda?2_8Cx z#H_HQP^tP#mYFtS1&a&vm=$QKpQuHJ%hl{JUeexx6+CnZ`DLU!)T1=wpe~HoSDLXJ zkCsmaiPeruiE=>H&vQiSOIQ+hY zdfqyoUM^SHd)+>rAL3m$BRKU&A(+8V2nCv3oJL<($hr&3=E^va!2;2}2vIU!UNADr zN3H@gjR(Td6yb1qMB_$vp<`<@)dyeF98%=?OG&5b5*Oh@z(Y@fnopgK6QzUujKo88 z$QdSxAH;}fSG0hP^GafF5pN0!+D|=Nov3K5QvmW7QcL1)4z&*p`k%z;&!-pT?VRi$ z82w1l=@%*B$Pn>KRK$zqYP=d>a_dXRXoUhSD#(8pBTuJQ=F5p5G;fgF4Y^4o(FJ)NAtNa$t)@6Ll7?ZHC@`Hv&kSmZi_ zBpWL*0|$l#-Rn7>#p~7hDmk0+HC|a=oB(Fvh$~&Bx{j!_#8x#!mO#J^Q9h0(kh6T{IgF5v&JAni&&OE zqkDTA!7iqAaw6KH=q<>u5X%aXA;L2_iBJouRgcOlxVphzM3CO$wXANH^GhpPy%(=x zpn**1+SIC2W7N*IJt)wie@X44A&b1^ui{FIy5N^zqYQzAKgA#UtA zHiRHifNZr)iEi|abd?nng*Ygvy_mIKsKCYwT|H){V4(UtZtk=zp3GaU|eUlST zPRl2$X_*TtAj@lH^iB{)t2Z*BflQAyvzAeRr0HXU=)St$fR_BvChJyjxw;(B59nX5 z$vGcuO8WZ@$c&@2e|x~-{yfgD7h$i*>f}tGdr9W`GSUJOi~(vsiL03{UM0RYB#}lW z1mHU~sB44gUUO?q1Hhpn$0M$8$|DpoxIc^6!JoI|#fH{Tb9az@ITY1G1`i!Mz7TWD z#_9p!(C~5G7Jpe!XjXa^G^+DSL3&k~GNGSjs=-(1_fYCSA) zylwuzo?a~He7}LfITN+yWCD!K*&`a8xl=hMlIvL}Ww`Rot` znb{gpU`TC$K6^gnk*1=40|fNQu@Sd@gzOO9USuPp;M9h?dfhDyPT}B|kMVK-PXr*H`-qNhLo`ae!@9 zH`8uc8V1NZQ(I+T<*qBQl&Lvb;4qe{bQMgPPObP=Fe!F3(P3qx40LO&hq5dA3RkVI zuKzTjExe(AC96AFP;WTY;ZWh|ry56w1rB4O!1&cHq+x)pM{euaNw?gQj>Wp;w3I*F=3fW2r~2I&?w7`}fpH(ml`i*1Yo*bK-N_L9Xchg;h8^ z{(lMP^fPQ@^6cNZp)a2c3O{xfo-Ap7L`&@s+%9IcYLLfI$(NZ-fv+gUhJrhRf|q`N zBB_^M)EYFOQ(bjX+81_lYEW>7mR5)JB3XYPL z^v!vME@m;U`c}!jxdB>@30iU`*A%4eg4Q|H-H~3<5Y?zcirANdf|$I>BfcE3cuy?p zI0{Ux@j&-cl&;Ep`W=i45~QJV7qpOGE&k(UsG7#jKtUXqcA=}4(@HXdg3_CF_HaGBU`r7~4EIAP@ z&$=mG4jC=brd4h%6xAV1;Xw8wFWF}5_2H5)S$XBsU?9p&s8_E=I+BW|a^XOhd8hf6 z3az@5Af{LJ&JYyD53M=vGx4Y{8DvH58bK|f&cc&BZBmyyLj`r#aa(-|Q7&=C9yGuN zZ59gbBaygQG1mH!AdS>;7Np$L)-`j63hFEsGvb2AS}_%K&_LxkApJ-r&em!`E+~jU z@fwix%xe6aMM25F!`vq1;e!6b`ub8I6yMsPkJsxKB~WzZ2W`an&TW=(1IgrN_*aMv z?uVB9Fg+PX(_gHn-sca=>?7znc?1~jpTyap&zEOoFKLp@PYL(|4Fw;^6{y{Jo&d?{ zN+2Lb2LESq{>5?;ksw*;DUgtXL&cBdDs*6*(vXm60+Me40vQfEbbMrW46iTGmUHck z!B|WZ|UmzZYDBC%u_BoL!kpwjvH&~h)LMTJBrK++BE5}-lB zdOyM%DY#@S_AcHO7R<4lpIu%pSDPECc?%5opw&~&=;+7HUAxs=RPbi8Kl3;hY{Eug zJ@&_t!5_0aVlyjx6Yb3cgFRMy8iSG&7qcd)ax}Ly*!Tz&cJ7h~}c@HGn1tl|u%K$xD zPGnk7CR(k^S@6Bs)pMd8aH#P8GgA>HBz67MgNA}EEAypNg;93I>!f;CmWK`<`IZRg zHkz{po3@U(RCVp-4YpJU4_o+onyEU9FSK0D?=0))X+AbI#H~RZ=wgJ~CGC>pF{7Ed z#o(bN9=GOn->-MtYcp{x1qS;qTKJ|8hHs6=t3&m_<8xke!50NU=nN76aPdHPFY==z zXFa80vI#JGgc=j1cknb6h3DA{X4nA|rR0a%2BoBfm{xRNcB7>PCQA7L0#VBJ0sjy* zLE;OfXi*(lP(Q>A9(7Q&g1Hw!6>+oLy^l9QP7^fu>I_G8{CKy@)C$Go`6tuAt6T)n9!Lx}5N(@*~--gmr8l}{2bgZ<3 zvm1dCEv*L3rCX5OH%g}gbLrGtlt$?^An4rq)TPR6skK07TYgYLjVR18LFxtx`#@SF ztf)1DM1Tu&w+qk@&DLjg{^7hv7vLZk5Kdn3^H=K=D#QZ9^C`a{u|AiD&YGg;)2i&un_g&uHbn*P!=SX3CM9cq4jXeN!L(Zj6)&-a4Ep=oJ0nxW z`ha#n$Cq?vJIrlyL47-*_OFMOM5G<8?gfz_hlJ|lMEaoR7gsQEkzvJced$1>#CNin zM#k7ddL&6!b`+UqNMZe|rA2gP8DA#bK>b==ls5Ei{m69u+#As};Moo`=pO{e)(_3c zf8lpK2<9R(q`bDnf%lm>OnP4NkyI1AdkiQ@$!Y1ByESd~qz|p?PSn|CM1L7TL<09|GkA-ZiqLM|?gBqBulbXtEl1Ur=Y{@u75%+sUJ)*D zx(J*arFc}X6e{IEr?ai7GA_^N*R+6#&Tv=TKv{LHZ>}u)0#G7KQNP=$vs-D5`Q7Fz z{fF`=8Yb~>Nir7;ptO1C!4@+I$H+FrtYN`?Z}UPWglen(-gvd5Bd%KGGYb2xRwPZ> z!k8l4e{$3US~`2%i|9?z8dT8U4NF^P(^!U*Q&_fX>|ypeT_JL=5B6z|Cx70~yt67L zk=okTV-Ar~<_9tQ1!XuF<%b`;*;8PUf0|Do4E+QvCNi|#;u`@P93r9>u$s=N{!t;# zQ~;1c|52totEIs0ByD@Q`I+N=oJXuKKxPeGGR+_(*U%{WolHRI73FR;X*V5nX2~=| z9Kh@3ivrrMH5lj`O&fp!Ca$mhA3isa;Nhg4F4O2h0#IYn`r;qvp~= zSF^N01+5c{hf_N0m2P#U487sbFhnk-heo&Lb-IF#9>}0~x`L5ze`-}{kCyhbXk4c& z@L)lFKMNV@6SMWfm<|EtV|mH!YhK*&af_&_d!Bi>_B2AB;)2=W-?-fI%MmGd*(?{tQ?UJCPctrmxU^)KVu> zGte06j1DKD^WPT}Z_ct7sSBEs(qCtr)=2+I_uww+=+WmqU`WyngJRO=IAWYpAHz$x za`SV8>o8`BV7x`kL$fl{5uDR8uS&sg=oBI>U^pYwI<6?^Jj zY^eA}v4xf|Bf&$^GsxSeWq_j3ixtuAJ`cBozFV$FqeICKpQfSHjr+920aZJETD_4u zn;WPa^=VE6ZLt`2v>cxwW<5LA_s#U``8-AHhT~V$H=!<{2kJhue!rv%{X_MCXwl-< zJ91JoeU@g37Yc%d7rc=&PnL^|8UJ?OP?=L?aL3BL zyyBnknkuux1@HaP)|d3bZ0miqlzcf7m>bZA?6h29!Z(67#%`d&{wc~%XD+O1mFU^> zJ6c8Za``ec;qz>F7aT!j{+`3KL(QMJw7|tr2pU&oS)j%a&$wzjc6fCiG0*?mw0T@2 zXnGj2FxA)fbiLr|iQpRC2vk9384Bpgv5kJ{P1wdIf~Jon1yU0%)78rR2rS5QBUpLH z$vB`SR!i!snZMbw*;=v`&=G6h>Y>-;)xuwo)NFflS)j(|*K0a|#%9PAV85Z@Q3GJpon{DXZ zq1wvkW{!d>7Z;X!?k*k(`^-h~gax@siRoO$ze^CyNq$x&L?K*Ub;G+mYHecve&nI%@T91v7g zap|IXdWRXQ;fixuAgU+?=v95@9i9+290C{*gxMZ-L*H{KFr6(`emL2#=wK#pB*}`l zG&xpSy#2?(A;Atvm;}F$B%gdm^a{9`n#S48JsP7{z)@;iluUW~k`^O*hpW`3X277% zS_oB(ePX&$Cvzoq5((|Nq5FTC3CgsPSmo!lK$K0Wlo!~?X>FhH2!gD^_9lf=QfvsY zV?-w41)ZJ6EKy=$9Bl@+Xc`&h_TwERPtWb*S(9MyO;&!34iOLB_pHwFQpXYl)nXH{ zo2UP4^u53Op89|P8Fz&lZAXqDV^IP~$wr2Ol<**_G9$xSkIa?uGo|b- zRA`e}$}IRyR>CM?fK^ynHmc|2>*ba=in?K$0T)qMIss5neD4InJMJq+9L-lSUzDuq zE=tZbRFv1wYi0Gmc|mO<))FK;&3Cgic*tNKl2K`%3tK_m4k<*3h)7&8A}D%oXp)cj z%+16Fj{s64G15Fq7uhn8XeLHx*buW7woloitvjP$ zH$aEz5RpyGQhF0SMr$vE08wUIHkLBwl0Xuh;|ZTm^Ga4nb?12USs-eMo#+%e{}XWY zc1lSgDc+voKgnvz7jHM#o)`nf#A8eI6EIm#EzYOk*&$!Nd%J;o7l&WZ>7e}a&Ydom z=Ewgv*12osV)DzSx3#M=a*bR}9-J!M7&$v$HeT;^nS}odps_wR#V#)W)yg}dw6W4_ zWRS;u5Vf-<|xYoALAH%)jBbv9M;*AtLUu z>aqCDYGV$|DIh04UQy4|H6+YW8yl|x91`Lw-gjyig9&JC_-LSu>922&-avz%Wg6)| zQe?uc_;oW49~%Og`SH+#zAkxJv)47h2Mu}_oYH4P^19tT0|xcS>WYymE%BhQ`?Mry zFkNrwn{{h@MMtOd7%e%mL1URdwFnmEKaG>?lNzZj)lyjfOG45v4ICX(ZW$>f{dSC6 zaMiAXaEi~-K=mG@@=luk7r_EHzl13bA%WsUk7Ban>ly`@d>e$YFzTk-Y;4HQwq0D% z&#cC3m@P#^nLgEu&c<{$&yZ5^m%}Y>NL^jG=omUO2=B)waavhXqh)2x2ZxAHazxOg z5jvZam0S|5L>f|TNceG{1iFnQ3GO$Mq~(w?J0iyHWWU5b?ZAC01nI!>G znwi^w<}*OfSD9UMA692P7<~y{^2-;{OoS~j<}+eKi2Zf3SY>M~m3h_wY*-~{g1pbP zyh}Q`d^u?i7vn2h)lDaxEicswJ=yRL2a@l+svc9gthp87L&*K8kn`;&|IjFz0uV{i z$RPhbN>1x<)$U&X8_y0UX{tyCr+}QeE#|bRk9kOAw$R8Rk9&klQs@(lzh$X0k8toI z#3U@K>x^uCh=dzyCy?it0XQVw-)vVKS_U$FF}~6l->HVNq}wrh2Ov2n#{iiokqZjm zyXs!XHRWpO(-Hkwi%xx+Q@didFS*Z3qZrOOAP65C!ecrlmcA#`vZU{>HSxsXoG1Cv z@3Y2HLH!_y+FxoUG4f7k1q$MibBNWXFmLXXgm@>lfdzSxl*QlWWB&Xc^ zux(B*S!K1e;3+QXf3sc8Hu|*X?s_?=vB!CPeZ82>me~>4=jKoQbiU@oyW;Zy-rXx& zeC_!5Us5*c{PpfPmG0qmbIQ9Y!6rcqEtHrML0!v2tM(Apr#x{nWmkDbgq1x96A3^+wBL z-Jf8UlZDLF6A(bn=k`@k&Hj>ZL%l|GC$Eg$5zq-Q1;f86o%Da_7d0?z*ccmFYlD7PK0R6AnJ? z@Tpbr*TK3+Ll&k(Fk@xWitE8(Lql$a=+bk1%+y%>G|*6x8!h!?fgu`;mKi*h#QJz0 zSdVB+3#*ML`uGeP{JEA;{9%A-%n}*=ZY4CMaFa?bJe1_u$e^P$5Cz7<)#LJL`R z=*W#{^rY9dH5ShdG!(=#b=}t0WARR=iA+600Yyc1GnhW7<%A{I+=}bQphHJ)e>WJ< z*50jMjrDgaHZ>#d=V#=Mo+Nv^jJr*!lZWkX@(ZOmIa1#FV* ztu${FifJs8Saj&f?RiG4Ezivw>v=RX_;WMW(U#8X2`$lBrt08BORk?jr8A3oYSfsY z8fYlUwT6ByY%Yyi!@-A^h=)$pECYHzZjc5%)I*1kdo~V(xutJ1W#L>f32$L?x>^GY z)<^_BpI(e99a1XHA{C~ffe0EBKusiPK3}>MguF5u$eDe3D2c=i^{Af4<02Y}7Y;J` z@7ij#-f%JYE*TcwHeyk7oIzuP^R|83a?bb{Pr*eE79)p|5W#oHK5O~>32DLgCKe=z z(4B#fv@u${>3u(Fpp6+&lr!Q>`T_0OtZ_BqOAa#lBhi*t8LT!3)AeLE(~C%$iUy)> zfDbK^nX2{6*_CntrlEnEDvJy5`_@&gzpb}t0kz<3qXo+GIlzKBQtD0Y%TNQQwz%Mq z%$VYt&;c8mG3DS;!P|g3wwP|lpc`B#YB?mU`Fd@@M+QHiu}z<%uhH-Xb-A=A z^BAD#m)3=pg7oP*nMM6`eMpOij+f_KZ}GlhGoFPFJ+puWs`&UJ_JXn#tFC(Ehg=FM z;xjgRkMo+VH#?Hg0Zo5vjht6^@G530!BONESXO(M2FiFVGufLu(yS94&swjQ`N-hs zwdFkZ-4$(Snw}q03gaK>iU?E2v(k3 zsL)3|V6f*|U>NEAnz8_}cWanT{Q3CiG#G4X_?0ysuZ2_EjA{IHxDC|^c1&5^qACel zpo@>k(@LbTS1a8+G5@GH9uJ_QfRBOw#|GZY`FdmE7&>%(WG(5`(0bz?xg}VVWpQ$A zM5BT?8aLGwN(QTdM&hPL20zcytc47}Z~l5YS_B*__~<)*@b!3|wu*}_Ka#TE=sOAz zB|KgZx3qSzl_d0kS4qOEqh7r9fWgkQb@LE)qJb~e%howAxML+xxp|V)M9D2M*trK7 zh2C_P`*ES32SnkaghvANXgD2KFA}(@;N|l!<_UjNqTakqh6zr04(>ZM@3vhmXnd4h zj$fu5#hBOEnS;wEfEw2W*~7jW>UdxP4EC&#zEpRE>!qp3`j&A0Nh}#Ju9IT;470qJp?Az0G+;3G;3hFS8m|E-fX3uxzbtp)lHt<1L6Ovz)iAI>QEu*|Ou^ z5|h`n4L{9lT4LF8C7p&6Vx{&Bbl#{vH5(*mgV4A=X+yPXD7@P!v-VhQNQVpZ{*Je| zpdBxk8zawaF3C+)v`Yqo*`%mvztxncQ0bo1$x9Y<%gnv(Hk?BOL0Q(JUq4nsFG=WD z3NPg;lm6uiVc-zpS;RbJ4>r3Qi$qC^1kqY?I)qwx0~6Xb*LW3aK|TotWy7RPRXgsp zN{r{qWoE`SUZhisP(VyJSC=CujP`>240y8@DdKV7YxrRS^y6WKZ=&HBlF98BMD-i8 z8;j>z5*Spc3a`q)cqA_~FQFlKRA$BkOJ#HBfg}}CBQ9TNic_M=p@FDuGRqOAPl^g7 zRGB=vSdK#gA=y|d6Jifl3AL1&<}B3WaX?NiHYpr+Zd0X+R(k8w%9+0SG3h< zpikdWC%e;ctdbF7Dxciq~Y|!|x>4Ph^Ol-Yrwa?aS*Y##^yq-mMJ-@;qAD36>7I57hju|eVA?p8ROT~7Tg3MAR?ZXb*Y1R3=G%+q%;-i%>A zI(TXvR;?u2-7PK7167}Us+=mlpbjQzvXWePx26~i6#d3mM0>}sPX|Xz3eCh`(SnSt zO+tt4uPF4c*RT1yxQj;mio>0pQ0v#~Azd|&T2;3eh8Aq5R^vQS^_6GC$D`3nQ3mnb z-+al!-it=8C}D--uOo^Jdum_utTD+uX`%Uxh-SUMgH8=mpVF7BmX7w657SX8UWY81 zN8R0!l!*%|q1A6yIWMl&5p<#0W?I#5PN?-;m3kAcN}Du@OU<;ZI1g0)I#S;!Dg-T8 z=f}@iYI%+)(e2a+Lo#Rm2e@R&a;k&5Ux&DnLp8rA$4{=z|8;2Oa)2o2X-Jn6s~L zzAgfOl;VGsDTO)jv!EoeZoVW@4Jb{lEf1#j9b!7!uxMze0lxM+@#fm{4${hczhaK_ zhV*`AcRiH0@7Mo3^nP7k??3+U(EE>8Z!D+tU1^p2vzotB6JAVlb2;5kTKMoUA`xWh zHnw$`(F@L}^iX4CTot)vOi<>JZ~J;YbfBXFWtuAacrjj_&%H(b&5Umg$e{11UKzbt zbc|xPEBQpRI|Gi=K$AbZ^&VdO6H?8LZeuJ^yQzJd8j2EhZ;;9~_GwQmb(7jw%O8u6M_tXjmT6#K9$g(%klA|=xlvkTdQ^a7+)}})u(Q`T7yjb$2xOqJ($u2$W zTk?(D$0329JRdSz)Bz8216BTa96YVoK3%Ef zXIWEg<~vTv0X3g^Q8Sx(4LVE7H~rla(<6Wm|En8+EJ?pnFw->i)h&kzy8JklJ-(W5 zRgR73)V@jmS@Y2UM#U{ z4b*?Dj}9kl@x+Q2Z!D6F>BhV2w!}QKgUv=m&foJnq15J7MQ^RfujdI}-aF=zw8S?K z2VJbyVTD>df9&A-WxQOT&n{-(lv;^z1rD@Ss-=X^U%?k0ut4XAzNIp!Jd@|B4z5_F z<}0I6JMJ4)X!xMee#>{t>f4acN#$8$iSGmstki^>4*Kl3D+eglr>A6+m47W#i7}`H zFW2eNLa*)T96(>M%9#AXU1H?qAWNl!5h^8-b4|G~Z6~_oYe;W4a%P-RdiT|I@v7BX zyxQB&=IR89i9WTLwU@o!En1^!Yvtg9?`QGf?d5lLr^b>m4ifBb-No*qL(AvBmg! zQIw$2WaK%W4Cs4bt#%MahnCx~$FHWXr}Tel_I-Tb3ReyOkKG2)7&-z((ZKb<`;{_( zb%V^pKg2}fX}OFp<_=zU@dt}_4e)AA@IDO7d$FRz27RgEjH{voXP{ud8#2?KaeNDv zAhH*cYCQ1WkMm7eJbnqz58FklAi)~3?_xsVKNeGOb4E@3W}sk>ly{+Pq0#aJ609GE zR;Gk=>`kHxPK7Hna*7Dfh>h3d%d6M3b8k;*O&e#RVD@dS!c)UGb|Are$FuQj`r5xA zxLqS4rf_*|)L&3f$%0ZHwiFI*x4g1#rrwsl|6ZeH8VpR174@~Fk#418xm-A~IX-HB zrgE!}B?#~peKZ6G^T(M*?L%2KcIVmzIZUioMo^2mvq;q>cZLdXrzf`x5v^S2ialz8 z30@~A*k>Xkuwp;sLxMF{%UQf~%UidWGgNRp`I(UyG}?;!nS%zdpdIOFA~CmCJ90t6 z{HfoLoQG%Hc5Z>HDkG9em^s%v)XvN-yI$7De| z4nUI???i`?pW{6xODh-YDy+Y#lYjK4J$~|! z#PL%jFcBdti0=i&=To}=m>)zTi7$n;DJDqo1f*BfDNmav=~W@6Mg-x5*VD7J)$+BT zPG2rIt0iq*U$uhoY=VQX9Hi95xyWGu)Om+CvbyZaV#=GH$mcEN4h0$=Dn2h(k!;3i zEC7fczKjyh05!KL-&;+ew@$7ff7AK4wIA%FlO!$%!Wba}2d>+k>mYP+$sjG4EX4!c zJ5mhi(!@sa?7YCQIqGhd%wlRq(3*BYdf&hVt1~R@PJ1~VB}8p#GM^vg z+`K5m0a3rOMas3*hQ9bS#}a(Owx}{gX$naCJNt4>(tPOzv>#i5 zm^A-nH^C7@7H_8@1r8ZMx39%ytZ6D*?OtScCh2<-e|KuJ3=mXYWo9y+K3UCH-Uot4 ztBlh?+UM3*dS&Li^*H_CoTa3K!x$|hGgLl2qdjcC3AWXP!z5CvUzH+++^+#8dV3uPP{GOu zP?T4j@>@vw`X1lCYZX)H?a#^#Cs7Mxjt_S3SQ5nw6u%)a?Eq& z`c^iWV0{p=^2PFMOsjQR6cWq_?JzS?3z_L$q}k$m)66L(k|n03jwuYp4uZ>JBQE>xqTXngKp2rZa( ziI8zTu%X4+UvpxAwH6aY1@p&#ITbT~UYrHXtOQf)Mdf92t?yyyMIujy1{r1uppU@NL|4vf<0@ke^$ zX866HIIr%*-nbd-^B(!r9P6Y1bU#lDz9IJW9RWljNc5uXZv4$cR8mX^s;r(KklljfJ^$UpjYyy%ZU$`ldbw2 z>&^w^K;W98j+6vW`S*Bzm#mS$3Q(|x4A`ZlX(Gt`86ZM=w2|^~O8cQ!Jfjxuv;*c2 zSq=f@{1~sIveLS1Zz#b&+itiN!Gt96xRlfr0&vLq9Ixfc=na_{2`1TqC=x>Okn$;B z^rY-BF9T;5TmuEPA{l_*C81;57_&q}5&#Ved47>T=T%2TevyGgM%I|Q2hm{w>WnoS z0(NQD{A#NgZ7{o3Zp;!Q$omYn>-oxP`rW3tJm-x^Fd+-LB4@GK5b<-oWkpb0o|hEugK zE+l}QUqoCqkmFfL@F^9jdCnT6fTW<+PzrG~t%d=EK4>-WQ=TR2wi*u_5^RV^6`J!R z;zp<%;`6W};wPxXoCiHq2v%$XFzOUu5eXeaev0?Xh;Y`I(yEqi@G5_0Edhqr29{L)~FlOBk+)NAKs*Lo^zFh z9gnYC>cAP69ZKe0V|{#x3gV9}F>$u&Gb1gc*ndI0YZmfOIP{oq3eYv)FFhR=QYO!2h>LuXJmutCI1_?^ufJ_(Ea07BdLCfoP zHNBdTC)1F(R=qM*5Z`g@^@zSIhEYneJ{BOX^HlDUA%f6$7MHWdOwHS=$69o`GM!zt zxh5c1yCvr7fX6i8j{ynf*f8Qf=?f{*Spca>h=PZNhp--A)MB@b`E0?L{+GyN0F|#H z#fOMbq9XJHUf&cYhV8p$SOy6BTL`(LQ~uI<-41P+-wZdjUGlO;m$TDqL1iN5D1x)3 zd|+mq-E0tO=M{2ZQIir%FOw%&6;(x^<$^dnmdp_segrKsLj_EU;rPc8Z$KVg52z!Sc#l+7ut;=?Ru%c^fh{ zvz=hEYAt=55CZi$KVKjP9i~kf+bY$o;)1Lljlm?tOxaBak(3VNb_9{|tkIhcB8Cmp zcC=G^n1{EUY^RzG!ge$S^=uGCZn7a*!c^e)SN|!H_(t2RlE~WXj>@Io!+cD7la;H< zP`Nsf%MT)#pL)0v$*ziYKza(&Nlu5LLggci46{mz>VFc~2P7B>?6yq~SyU?X9ikSVBeWyc^A z-gJdqQV12;lQN3HF>l(Q;Dk(pU+Rw1T|0M!9iOgqO$dR43b&o5EApl*+>%159*pPq zGP+>qOjK9p`3=V*!&pLMxDWfLCGwrwIaXBWvqy6V=Mdb4#E=nI%xT%|g~-yVn`qfF zPRPt@+3qXqo>kUu-$cs}2q92l$MfYRIJxSk?FdfD%o)PF#qwu9Zej@U^Ff|obQ*>o z@A1UDhj@AeaVJ6vkvXZY`^MFbdE!l^wjLeC2|^B?L%ZS$ITb zJdANdW=_E2uLO3yiGUNKgvc-A<3j$1I`cB2D@qm{J~1)Bf#8_W49P7eS?6o3wf?lU zQGYRiXwfPjwbkNaI+>@339xASzjiCWx>ld7HZA*6q68Hr{-#Lc{tG&QbwZOu&JF8K zq+q^BEHX+4nL1kL6)#;{9{O+LlL|Wa>xyuPYKDt zl}jE>FJg`=7=2e1><~h({z{nFNj{ox)KP&f!V8xCh}8ifVt!p@J9@agpcC)*=~zzx zW3=FIv@)U?55yIAjJ+kT2BK9!W3|vUR;f*Pj8QVk)G2RXh0>dPBWhl&7JRP}+cCxk zk@_=Io=Dx2na>HGMkCBL1f4ZI?(nf{Z^TomFfCYKMNxEXIaux_HoSk@fInOg+ zlT!d54W#Mbc|HEFHEciYd^ee1sS&E$7i|B*Y$fQOm76O-JL^=84k3DvVeHXk+T%Wc z&iiHI9>bk7fDIAagY;YGOxTuAKo^*wY0>>kX2Ofl9twI9Yn2q3S?9%0HVD+7R3MN( zOHo`7PaF}|+H@5;|=gx?2Tc!@ufEjcH|>e(+B&1*IkbeF3!9Y*=|1+AgbQzESH1-GeI zF>H($l65*(Aeru+-*LFc%iR<3RYb>$AzP=r1+v%E4chGW3D+KGq zONs=)oY6MXG>u?d1?g@T`>q+GSf)zQVc9n#lMzDZuF$nsZ^feP4TUbo2a$TFv8c)& zkzRxqy#%qvH5dZFOkKoxtj!wYv>OJ6JZCah(MU@aSVW7g^o zm4_+w?p^|6uQ#}0|p9&}uc<$^lB zCZbrKc8^$fm*{27X=IF0YUcwozw9n1wAW}#C#B}EaT9z*lQrc$GU$ucbNEWIxUI2z z&f$VOk@doT^*3lezPH|vNZi_`FSozmhSNdgjut~N`QGb}hi|0CL^z>#M~k61-&~7v z$>jR16T4=-krqw*ESX%Nb>cUn&yp4BOD8u~|FXZFZ!Z_U?d4gulLU50oIEnj4brh8;UFr6O={rmaJjX^D4LS7V9>ax5S8`t1#k`t~V9& zTq>$|Rz`-JR@bP!ah}fc08J;!NH%`YI=H6g(((kTYYdsCpQkzVV zr<)hcb3T(T3quZe#5g6~AvEL$|@K+7~bY>=pCL>!!4i9=d+ z6kcB?*q6ld%jnD~AyzGJQexNUD(d}5T@}(!_Px8w&9cK}HKqG&y$fAsE3zC8S8zF6 zi2g^J=+*Q&IqY5a63Xu>1n81FPrm-uA; zZ-LCvCuC#P$~w6tsD;}O)NrP*FlAK|c6#oBTCn$!GenFkB83B#5Nx};H!0YXLa-OL ziwc|9qq+K^4(EKdNG~j(@*S(Eyl3M|rtlxO#LcAm~0| zrK7p!1uNSBs8ckJ2BLe6NG(W6!t3M@>(DuvAiW!s2B#l%YICv!yzg7e>p#w})b8|_ zKAiK4PuUA@{s9ng4go64dI!&gmhRZ{PMsc#ahr@T9u78 zPHRCyYhx`+8w8}P!H)rgE->!Zic$tY-qtm)1qE$TN)@?Sebz0d1_a$h--T#2ay4GB zUoTgj_1|lHk&6rRpwZB7#SIB!#jP78fCs8V>*ZvEF8~(CY^=}zY5&W^hm=q41565q?j-msBe)$kLqks#DW?S&h)^fvF~@6C zga(I*&ok}zzsP7xtjdyuDFeYp*A}O!Ru}=q{5X5n{#Pnyt=CR7n+Prdv?#lzr0_e0 zP#dA6>t6aNFEk~@frpTsHZxyR@_mDC#>Iz}yMLL_&gk%mOS%_wy>3m?|6o-j8MP@C z(@f%c;QP?$^YZV16ZCbtT!aOlTb$=&zFogyh5GN+i3}K+Zfhnw*d()|S0>3|jhD$s z1J?teOMUV-RmTb^>9}(l9Zc}v@p(ggwoBX7DI~Y(Cx4;i=2Yt2`Xl{^?m+c*eaU1z zdBKPHf}6H2m~qcSXq5M%eaR|_cj1Do#w}D1e+CTp2lf@qzF0;IFUbp0+#GU?n{sde z^ZQrV|E&9x|M&m<)qnn=GoR0{)-yh3^iR91da~3X{x)k96f6vi_}>o4b8is*`_iZe z1CVbWcSets{iF79$lAg`=i^TPVSF|Fg3`h5WV5CCXT&-1ap9gZ0Kzf?m{ zk%0e>#y@NiNBixgBS!GAl?W^p7=EM~dj0m`5jW5OQ3*c<0{Y)*^ga__P@e^M@7oA& z6c0!3QFosKS5uqv-j7M=*?uxS-3uFV!IaT%P7Vw5`!4ynqs}nST+of~VCI;h{m`L3=p43Bk9aUC zsK;VHfPv^Em#DixiWje7B)Ef)LB>cQx1V&9!)~vA)cqs(pvt5i5~Qw4^%IYHu&8WO zfPv_NV^aOwlg|FAKM3M=!DK?QQGHMlyKVAur+v~~o3v=4a^2>Ldb)<)hC@b4`@Kg^ zlQKww2qd6mizd@rFZ!^r2ICr@iie{~(9AU~;cG z4g{#6{_D|dTQ{Z95CHsPlAKS^w$GD1sWegZC5=ib^65Yb~`^U$f-iQxM1d|C0g_n)Pf$rzy_4R^IGu^cGe8LDL6ncMx6Cuxg!;uaoiF8UMB=Xh{}8SC9Rdg^M!<-w^6CX*e+5 zvLY^NtKf^URD$oY7J`?`0nB3yN>-PRmF@eJOT7|{dCG5hHz)I&DNKrh0{qbYMl+@i zv|s`T9Yg@CFaZ0Oh5Zx5{l^Mo3HMJHIMurt^EFLX^ePNbFa4>$UJU}^9~eV;mv~C% zb96;Hbw&^XO^vV_Z<%qc7(rnG_AQl~OxCTv{xQS-gP_vPn?`Pi0_1lxzUaNy22@R+`AQSjgqs ztu9x-^}hb9IqMNtj`hC&s!{71xO}cAtw&sr_1@!N@dswSf&u@I)5+ z?76uWqD2Ftq}v;H1}FU^nnCaPXnx~l^q3I~u7hBhspkt=VB;T7mRHxS+4C10MqGY` znc)EX`*g70`OI6)EQ)gM%M?%mduOt`zS^|X$(ubIgdKK=+-!m|r2#SaisFIpLq@kh z`1XXSkb;qN9+v?F(ff?(_~3V}LL@Gz%MlhyL4o8JBN;w!fAu>aWeet{Wf1APgPLDeS?~|RxjiV$01JzrTEgh=8ZgmEHmR3>`=1pU& z3f_87; z*X6PQ0$PNp+iQ|1May{3E?bLp`afw5WVIv6t<|fhC_WGq@%~`y8)l(6AY|@5i$Z0bnoL)mHKq(|FFUdA`sqZ zR2D2sb28|NKQ|WIP|;|xkfz(C(sX;xlm=j+`2d9`hNLqh&tyE3#*}&ix0*!*(T5-! z^iO*S$!~sldcv3lLlqz}CI=2wckrP3ZNJk!^1povLLNXOY(NB|SGI%xQ(jy3%BJB! zbqlgg*$$8T-seg|ateq@$qXLIY}7DhkK0FwNl>_|QNzb9BBd`N+@cMTYD|!NE~888 zIcPnX0U`)(urg-wxT*##3kI6o=QElLqGPGm_>+>4bG0^ywL1wFVHjVDfr08Cqq>-_ z)|+Hb2ZAy-iFZcX96S)-QiNR^%&FCT>MFnSik}lLn9@-YwrD;Uh;+%kA6L_>Rjrc6 z@IZJsQnFX$IpdSWl!C%3IM99S)6t6cKW#6s61tU#7W6Y(!AHkjn|iRI4@$edxS$0QOz|BMoq9mHT+bYe_J2Wza7&7{I@6;VF(V7Z8m5LU08F=pUuf7pp0k zEtui=ku`=7{HO65A3|0D)))csYRY3x6<~z{U|4ysPBN@(Wdj0eSUG4@6*RMk^g~q# z%d5*VcW1$eI#ziG0cv$4S(+B>9uQHsk)#lS{fsC#+s$mgRwvz=Dce@(S!Z7jDGs}Q zAXKpD%))#@%i`(EP1`jVf= z-Fg)>^R|MenRalN;+Ui$4-~YYfcAh!)Jc1PpQhN8y`y&T8yazR828cc?{5HO+;L}reh&}^R_ffAu=&1GMRIBC#%80lbZLeaj=3zs`#}GjhXiAvYP$y3x zcWIsaNqe9Bm0$xBuvo1|fkA%{uM9dT{Q=DiJc_g?Nd^%!xsM6b+nhAnKj4S)t4$3A_@7TN$FsSfR;O(-m*WNP;-%{>$FCE$hb>9}z`SU@yUj*H zwVk8C1awgMfqDFj4hETAw;qp1+yVtllhGeB07rof8D|?FH_oOZ!FGp9Q$Oji(QaBJ z7%Vc7uzVIa&Z6;tV*DQ^A_WzS&o@^f{!4Z zVGyBpQ&2GeXu4W0maWcLdtJU$K=5(RylN;M6hOb7LaP*sCkTQ;T!?L80RBF}4-N+1 z-szA>Qo*O~2!VwH$t{PZ*B`Z?_^E&(1BvrkG*G=|sh%(&6AVdX3{UJh>_Y$__WHxq z6VKLIE^%??3Jy zHQ%~q;j0|W36(#X^8oecVqD1P#h zk>K-n7<(Kn&{*^IMhzraw5B{uuB>@_PrP-j)y$(|p!;K(N~YXOtuoZfdM!MZAV}A zhTryh9$snC1|Sf??nhrYqh7;=;51*$T&9|7zE&^*heIB9_h?>&p;vOq6ej{tqpn8a z6%OES#di197e|I)tzuIk5IE-X*K}4jkHU$-5BD1g2V{MP19YLoAD}l%+XXph1J{HPhe>OaR_*_joo{sln0Ve*^qGs$ z(?g!ZR`Vf)19)qg{{FDbT0uqa3I^br_Jj7Q&Cn}q*EoRBw9^?H485Xu1rvhP@hMG! zD;R)hh6#H0iiXiRfX@tbn1)c&0t*Un**69ZaVExYIxq-s>wEXm`N9dG?Bi zQPcGyI0c|4JVwEU;3wbk-m0Q<1p{y!g!?p9rXJDTC0i{BXIP-gtUo;AscgkEC>Vev zTcdApd|+59Thl0jc657V{HnSmgM4EAmWTJM-~~|AZQa`rOa( zD}9{Fpg;l#?LX-ZX!F=p#!<;ZEfOeTqLWS&)4Li4&=_Z(IBOW(N~ko>a=}1k%itec zR;ilVnPl*P-7zxrSMq-Y1KoGhIavMI_@WWPmacG`+QS1KTvq?Aj`L&XspPU56i8sO zLA&>e6I3#ofdM$8>7aAG|Cpyim7-~i6M?5V&a6`vUf}>9t(jQq&t62T)S4|4C=gL; zxISuo>yIi$Q~-ehO>NNk2BVdlnnnRM%rks^8qQ}_GLJ<91sa^{;zkWNI1dkWXbZ#O zG{s77!N33W)Wkm3aJz4pj!T$R+H8XUl*dC|(D0k?mpuwY;Sji(0p*Q zxuS3UExJ=S(WP3mLI`3*3Sd|QF!0=dKA}U8_f8)r`~9OMy5^z1=XC@ECnXF`6U744 zJN8!!6Z}({V9i!Qp+SKCzQrEWWgPy=Wr8pfzyk*i?`8~iOAikef>svdYZRd0wdkk4 zym}D$R=~p1!1gvhN4t~fXLJ)FcPqh8VuvHc0P+|vI%)ehyu$9=s1p-h%rrqo> zOk;SyT+KEwF4xKU743x@pLsWK3U&wrOFJz7F`h?&LH|kQsps4AiUP#cyPQa{^A%uu z{0=e%e1><<=Hr*sug>&=mj~TPG^|L1@4kXx@~|PoR)YKBH=S=o1yw5{3Jm&( z5RIp3azpKW4$5D!nRlbT4!_;#LMvV z2En#u3$wYL|J44&!vyI^?1A&yb2?@qWEE`2vp4~(3kuqgRcmO`p4QoBM(16sOz>(+ zm!N+YoOB_$rVzY=lMAxy3<@5ViwydYvv)H3K`Mkfn;__CSh@Tb8Uh~7 z7Hhg*OC97x*H6((@#Imb*BP`++{%ZH7D$FX9~RWN@d8or_vt7_YQB61RdD_YFnrPs zFh&k{PHejhtdiTq`xFU(5(H1bpBK=+P+6YxaVXJOF&s6b(df zJ@z_JX@aqR#OEez7&Ze09V=J=aM0mCQ>R=84Mc9aXaQ9Bm{vFQ&{?Bg86fCBgt^IK zaJjLY-U|*b1cF~-fCJTCJZPwB81=M2@Q#WWoRtEU2%Uw@D3>(Fr?=ZtSABTc8HA%| zN!2aW-a3v3ws&7nuU{`$=dG8o=X6vX3#5Xt+IU+R4F5=>K=C2|zFuBzA~b^P0s^CP z;6U|#I?ZNEc^WH*pzHHykbwf&5A?}?)0Ub>poyHWH=!t)-Aw_s{tyg2@1;NOKW-0# z`yvIk5n-`V;CL4tbUmoQEm|;#AEQW-z+g);=1Qyp?L8-j10^;Hwe!3I)jTXUIut9l_UuIDU!+mJbDMmXL%=8bF?2^q$2qA9Vto*gi;`a(4W-@gSNLqrdkAXz`%pH zr+%ukN-16v0|gG$J#ie<&fqppY%?FOR`)JijEOFXp;bA2%vYTWXkc>c2lu+T8Aav# z0T_4?S*Wyn{enwUEwTU!4DjS$zw_*b$KGn5oB{zK?QzgP=sr`u3#gw3+zPK zpVKFLzCN^?oqz-e^dMnOsn&z=cmjXYe@)uQCwx0bHGguzPzu=TTk6aG>aJ!dAc5h% z%kgUcg6?O*T{o`F3aT5g>(mGT02WC8CUWuUSGzyYWOrDm?*s1#`rrPoqk_+x9-@2a zsKNAa1}%^2-V6GD&F9_T`E}`nJ9l>)mHyS8Dciz3E8;#W6;%c)0lCG&u^gmd` z7kp*NP>e6cK~aVGvd5s$}nb zd?_4=Zf6g^Tr6MH&4qJsdRZ{8%rHDM2QosqrrX75-v!pJL+C()@K&Zy`%AzlxVI#O z@CukAg6_jh@(%jqdhjG^pN?opP>=7ElEf;7V2DC2@VuMx(9{{9QW10=`fZOx;{gBt z4F8~iaC%(2^NTU0NKpH|!r;j=(l)tl>TCp4!E5`Hmq^}OXZ-fU};JKBx7rNc? zQ72dtCrGwp?wo;v$!VFre$e(Swwe?P9JjO5^!nDOZq6kb^u&tepn;2(M;+$Q>Zfvf zG*Xl!h{=^XG!i&I$ZV$e)X>L4RuI9IQ_Nt10*hlU+F0YCV^^^xDN>AsHo83FEwd_z zK>~;4VRUlXDQ&IqdNp6s!yGhl-OXxd*gqU4{li1ru+B>**rgS#9)<_LI~m_;FKfVV z^O2-*ku<=C1Dg{`pLUOqn(7fO7I@ydT+h^J*Y)HD9h=R3TQH_V1j?MHt{*ghjEa^zK|8g8Kyp#T-GGq^4u+rXxPeFWaIvUjftX&>E1@W=Jq1abjcM1aR zcT<}TNBtAuD1vV!o>73}qmKsd2GD^5^!JFp^DNnK_eT44wkS_V1mVsR&tQQ6c8cGp zla%;AUcr6<58Pk?S$QH+s)K_3Tg=OOivt4e9~ta!-$xc~@Zq8j1aMPpP;|v6prZ(sggY(cz+aSdNa$0x# zU;z3|$n0CX?ktLjt`g^`ZExbLG`dCc(A8lu>ei@w+ARvuKQP`wn?cp>CczM2kOp%% zae=^*`pc>MqRHf!_7?*I+#eG4VVIc;ruiMsDF86PuQ9#G^5yOi2Mp0^D@G&T;>P1# zS&bS18sE|yM?p$1_!z-t8U&7dS{v0M0QG%hd^Dij-+O(^%KeSM<+41E0|wQ$^)Hdh zgL19UMFIM4LO(t{P>UD(Pm>|-sr2ua7YraAtA|)%Qsq#;?jO+yX75zpa^-MQd~`MQ zH9Fd3&9FQ=P=Ky#S+T0WCtv>l5yvlA%N!?%;kY3N!U2QIE;DYg2<5U%1{25k3Q!f_ z(XS%8CI0GnzxNo*MRE@)T86Khv5|s_<9j8jXrr$j8!%YJNvatkx>-0~;EUnl;09Vb?^eJgSq(!yf5s&5OXdDn=8!uKfH;+4m zE)SYzy*NVwI+RC-8|9U!Aiy@he9|8AYmLhKvIYRAslmwLrECp)pFC4sTGnw?&zA=V z0(y-N1_w|1+)r5>XaHcE$TO%Nc?<$jRff^0F6iOk0t1=fN zd`#B`CP&>T-Y0-^nG44OgQ>&7+-2*KEfz4XT1_zZ2Y&ZowpC{+T=9r@FSGu%tYQrS zOcRwyG_U4gcv3bh0|Us$pGN~acZkU?+mjjupc;RBI;h>EQwZSRC4W2V54+FkT6$XK zrxt<*pWFpY7YIdvhs{9)+a3OUkCyt;d^IzZU|~_53}E0=vo}u3=x2X1PPy5e5G#i% z63#0#d2#(CUZ$MzCRqFtH=%=vvU&btmr=N5=gR(J(ZH6~+3=+Ow5PIu&poPG(!~PP zEo({h>%r;CSIiFuAJqdRI#78$eHzR)#G|3WqvF}gpxaMQ9u4^7)^hPI!vM1CNzGpe zeY(w^Z%ZoIlQJ0KTje#serfRF>(@!J^{m|2FY`XMswjMt9MGmI?-b5*`I?2`xV`?< zwwDr@#Z4iAt8Gh}yu#(@&6o5Fi@}lA;qCr#sVp)ufUNQpI*jH~mw#q0*W0H6z*OHs z=}#VHSx->!15x$z8qvFay<9I31fZI-2VPLN>>2==Dx(~XXtB*fr*lGcE8MK*GD?mE z29^EkUmhLx_q=6~<+48)1?b9$_1}-$f8>Lia-No909lO|&0p1-5iBZ~8!b8@z_wQJ z(MIm0j<+?ng4Hb!7_8NMbYYx#(_;mzrzk*Ikxmzjf(Nrqxrk&TfU9fs>0uJiG?lDP zi{T?b?ov;{B$r1v7(mv3LVS_{{yXZ$@D>9qH->2A%OdV#T}|?f`cv} zAD8=NV$dxRIJEXo=bL2zw3c>21i1A+#S9g$f(UT^Q$tGHTHz`P;OYi-m>ky*S;Gtj z*xKn;G(6}Izv=SUTGHtq6riibib#WaST3;w0#KDbp2k-jmkR<82(Xpnr;)Y5y0wOdm6E6_f`=Mpn59u!im6)NQ>+JeX9mi7v4wzIl`K3xr5otm``$!oxh_4! z0J7>HpVsRh_3OY>gXCxJ(P)t9kAZwjtK1-&!2n;Sljes(=j4dY!F-}zI>~XsprW(+ zMI9#{9F$ZpI(tCiP*#6d&+7Vh;Hlx#c)nRr`3ClK!=)4en99<0a@ECpvr5#7t))*4 zrS~xv%5lJ;R8O|6^Vy13VmZ|*05DYyqJw&`#+w%mv|PIe0!Mwd*v{v*Pz{2MI$gY) zt(J=#s6YU!ib3h$&KPXD7-S)Ut7?n3SJm^e6abj2w&t_N)CVnBTR;G+YF)u;(dCw} z>eqp%N`5u2>8B|GFhAFrn-{J1_DUUmx=yx>nL2VgQAag|?M-m*G7!<|R2wLQhZGg? z)U&FQMp}Bgfad{$Lshi;sa{0`0jPgNs6OIvN-a}XZv*YVLPKqwUDGMa3EGz1l^5*) z!U?Pdgi6Q(1m}k?Ck4Xf;+(Zv!KS$wS&9S}Ru4N<$S(;ovg1fDH3>>m z%>%q)3yx0$PQ0K11#MWL^n`b&eC_%)kf03fbG2M@0}jcFaHK2x8b|MFjrv_6{XqR|xZmYpRs>&AT{Qi^i>PniWBSS=n)iYD zL*hE<)Ag&o`UL}PM`Q{B%)h3ec$v#tu$%dgLVBcDDebqtMJ<9UNJpUq;;Q6@E~hf{ zaAiYU)9BxXTh4|lfUAxl)mcv6v9;mbr0)2XE?Nl=yb(+YIws68T#bBbOF4~0tMM)3 zp=A+!{>ml6;NDRP1XtfP)>6vpduH{$vzlJ5R3lq)zvOpvTtj3^sBNAQ+?7JMhCtZ;&E%|gWK z2r##F>JSM=SG#l?5qx*7w6t`G!PSC-)Wm{B%V!|Lc+WnZG9Gu1gC*61Jl?`YIROgR zkL=@M9X_Ik;-`F8U6A})oH#8|!5esMuj|d^*RD^E2)?^kUs_Ju)8Q|77G%~IC0fc9 z6P$q$^(fusUwUi%kbwkaXw?(%E{Xb9RfymVN*Efob_oq67=x%Y@RniLjyehuY=PGd zMrv&(i#xTwCdDk^47N)(z^O5FIfr{exU0>XVuJI5ZA)p39Cjb6?VbL?0)l%yEmE{q zI=J8t{B}soSozM_+J0*w!5Fm6;nOx>oLswQYQ$W=ClvXa-`3{Sh~VQbCF#=HQN8Yn zFH)@MK^Z1E9h>SCQIb7cG}KfX9YpXseWm$z|8e)|VBoD{uhCa}sNfCCIqV!AHd{`O z2tKDSjiS+GI%kY8maS2j3=^F9*0bjex&>f=G&oB3h>jKqJ)yHhSuq7|GKJBBAP*9p zx7-KzBYc9hJoESf2d)p(2fHfn4%EC8uR+1YOoYls%V8o@^5JkTCXEKBJG@L!x`WZF zM<(cv^NR&Q@ck%#l1spqP9sGaPKSdp zn<;}viZguG7{gcASDl#swA=Hx(p8Sx1`4HkKa1H(c=()P8)-ajr&wTdd^R~aY^YUe zq!ilZzH(I*pvsQJo2BV4^H-Gi`Nx`r6}DI;@ng zd-e8UiSk?mNwex09N4IDqMuI&ox|=k@7_L9md02t4A9BP=mA}bJ^#y*;H#s4J1azn z6TuIRR1sg}0RNr!a`JMzX|)e&FD}nvB|VdQ*%W{QMeyl(Xx2a~<0~NGznkf&YZl7q zHqioTBrv?k8Gg^oAc=>$6u*y^f6(DNbl&$+MIs;zl`AEUwa2mLpo>X8#+yb4#a-aNuIQic$*V^uaC632q?<+iNkx;@1N{ZdO_z^silnmaeUuY z@)E@z0R}%>p?YkvPvzwUy=tw{0Rs;ri)swf6Hlu}76u0{TPDSI@Q6Y-^ZJTq%D}*L z8+E6CiXH?nSPv9)7lsEm>szE(XMjd zVN}bkGAxwCwoq-@U|USZ7Mg*92W{rXc%96yUNtfLv{2xW--2QowNtT4&D28 z)C+P%$%oDq#f;tJkf6NBDGxgPN26~~D&(d4oEauaZ8;5jf;-tuuI`6)R!$ERln?PR z|2?5=)|V{&3D%SVs({zvg8V(a5i6*qA;gReERfvxNW!8?VqpOjFVipA>v@Y7K+_4V z2c6;mpnEdv($On)62rmpar>JNWggw5Q}3>yfgtZ7SYucrKFa^IxS(#2Mms&ql<6v_ zJ|BVfYpe0VA>|zVBC$vyxvxt?9@Fd4!VWrfjn;Q1Ve}EKM&c%mB7*d7_3Y#Jkh;|q-XjV27cd?R z55natOHPs}s22Mbj2+n7Q?<6J++krA(yGjU~@XsJYP?lt&6l zm+hL#$AYOoiV&%_jC>Wbq}wiFGk~Cc5Top!9`AYQvPsg+BGMERv~L;O;Fwv#u_NkD z+a31#NwYdE(%<&GCv>nJeU}}m=%~I8c4+OTw`)L>*?C;KxG2}BX}QvGsK?y{Iz4Z% zPgk(^k7?G01qR6^tH+-Q3;H`LeUGkfAwoI;FYr~#nABtS&_H%CBO~K>9`)(=c9rw7 zLQ1A7LOPBILLI88c1ced!^<{w7bl0HUL?r~vPklNX0lN?_}C|zGYxH(0!7MT0=+wk zs%9jE0|K3In!+K}yA)+pL5`G5!n=(+Bw5E1l!RA!9g?idZ>Lp0q-6G}lN>xwXe|M2 zB9bWyui7~njCPk(se~~glgx$2$t)b`K2&rkgZ`*b6BCgZDVfxBsXQpq=-!wA#_OqU z@9SfMC@c@>sa2lLA#@C|8mI{|XDAy37!XRLBeVMpO^bK^74l^xa||z^&~&}5XtfAa zJP`7_3Iko`y5g};H(s~kufFs$^ z>Dr3mp=^vWP0AW0bn!r_vsz01x`*G=(USC4)QpcGx4S$$DVx>iK!R3JU2@I%#+BbVUC(pgmkqc-JlY zW~-nKcL6AvKaDXXmG>syB;%Jtat9au4`TcWohSZ|Yst!#Lhck3yq`pQX`XR^)F1HG zQIcU(F|~y)WT)}s;M)^&Io6tLvuChikJ|h(jU2t*g0*d)VuJT)F`KIy>_-FIj;Y$W z|2^|WFhO2u`T!kTqBe+JK2_TWDJFP-8M8sJKce9?8KO6$$&v%QTb%oVWKB(>8Da!b z^pm)vgg&X9?&+0N%pZ^IR*4!+XV6d)jez~b!{7v&+7S?-VE#B(e)7cdRz^wOFRTWO z3ht=w>F8+v_4R}n%kl26w(U7IRD2e*09}%$J^=>@QAk$q6dJ(=hJt8o9DYmvFJIqK zyEUem;EnbI+0BOTG(+t;oWX)U>hsuG>T=iid4Pi1)VNwEmHOJK{Yc+n{fs`p`^(PD z*LVSNp@QQ+og$xveqURG3k(Iu`kvI`x5q*G%UeGO6wL4H_C|LfMD7fiOqlWJmEi#Y zeT#20NZy%9W|=|;Ac5lpaCDE4Pe*G14(lZ(V}O7pg93{!Nsl}usF+G6u}A^Ou-87J z8(n$Gt;AuG!10c;7M-yb9G4>5dE{9NFai30Gw22e=s$vX%Ai>tOTH-w$`wd}>|Y{R z30Z*z$lV_QlvN2?fdKh!SmT&33}fbyd>IYQp;3Tsz2vx=dNeQrdf1RE`JjOTy0uGi zHcutHXcS;u4?OkOnpdh#1p?$$HQn_?2a?vU%@oDQ?ov9>57w$+k;I?`*oS*Ze2-Wq zY>g6P?>`>Ywn_I;p@i7}W{hgO6$-G^){}G(5BlCZs|x-N7@)&by1~t7)s(CI(?aYc zZ^vIXY=r{s%qn!57kBY$R?#p(&#W@&@GYa&lq(cqXUf(3Wafy~lxrBEXUd;G=4Pp; z{Qsxz&Aa4Ej`MDcz+m6E!7SWmnX;{>h#8J(`8|H!gJswv(13sjF+-)YDnfc_+h|F6Zb*ozEh=ZV#}^XGoQTqwovX#Q65j)lwF-k8uRxn z-MMPSc9hH~uXKalj9qGxcV7KzPwuvD#%4-p_nVEB9Y@L88!0<)(y|k4!Z$QdDm$Hx zYC@06E#FAVd{Zo$-)_X?j*{8^?M6KAC^>s0KKVBFiU0b4y`iuFiUZqkxi1v@J(+Du z2a_zT7vy(}WI-p!qcC%@`X~lzsM!KP!a%=Q!vbkERv%#ys4NzAPv&d2m9|kV0tb9Q zfZ1!O2^ujap1;_p^N~gC+9(cz1O6SlWUoIu+-lD{{eElEo6mdGnNYFJ z-Frrum@M$1c2BB}-}k1S_N*uLEEC$bdXZRGq&v1YtXL7DNHx0iK(~L`R~OS**5l++ z3n1_**E#-C??XYtR0H_%^WorE8B42-JM)dHR4lDBA&chi{ejF0&EitAphC5#i}7SJ z>dY7Id0*XnXj#RYCre6$64h%?>HQJyw3|)Z9T_3ZqMKYOfkEf*W{dsFblmC9W?S1| zKc^kwekzhyC+|FW6Rr=RZmR>TzcozmRa9S=tG}12l&t#t@zdvTPTi_yDzNHr6JPn8 zVf{I;+i$kNqjNHzKWqKV^RGn>^ry8vRj;wcqOjJ+?;~qvl8qYWa| zewwK9jaJKQGRw-5dgT(mWW^3`wm3a2N_1H9^TZb?*Xx#Tul3$2^I^&L#FFelP|E_n zdSP)Y=r0o;8WN-1h3Nd7C2iT>T1CH30kQsBVhtU_^K$PAuY9NJ!#9P}Z@3;e!Rh+2 zh(E!Oy+^zc`l;GRzcD*1JnXocMBvrlqvx;XpsHmHS$#eTKxn14ELBU)JD7Rl0@#^-Lc_V%L}51+NZ`KJeR8>uOyGc%Mm1AY}_ zRCK#3555#xW5cEp-EPVkvO?LgDMW`U)W;N17xR;snZ2OxXxthb&wW-(kKnPx^YvT9E1G>e1*vf7Mw+wmv;J)fsC}`ZHtKGL+ zt^H}Q{dO{@LA9gt_-(5ta=WG9PL!Zi#6j-1m+SUtlR^8qpk*1tlUkAmp<7<4_o369 zl;UJ^pNNw{LFQvGLw@T`+nqUG6kmvwWk6iUDd$1(nirhSyS?dDrITg;PwGSr@K+qdlxs$J6u>Ln$BVh5H?rMhfDc)DF`BmfGaef*B*p4kIm1EDyXwPu!o$OI24rPd zMGD|oI33#i{ewaKP_iw{+|p!-5TL16A@rnQJm<_ZLnP=42LczI!1VB)s6@UnbRqa_(_Y3o5I+C*?rkzKhGEKbTYD7>>J( zLC@9hGMOz6iHJ`L2uYV!_mAhj@sz3!;kQ+@YDE$7&UkV>?H?Y^*Me6R0q+h5N9|Ep zP4=v6c|`%-Ro>n4Xx@51rRkRz$E`E&$|;ytEAJ8yf-Y~><=|EGR?2~Zt6}-UBA*;v zwT4YFz+dF7n^#GOTe3M|>>qdnpw8xl!MHuo&j?)A<^%)0t2+Ged=GYOHa}JwY1OJD zgF(s_Gdf1|D38dhnYE$-?%YIExHxDrT{*C-n-UE0uD{eDP6oYUk7ic0DbH2=O9}-U z*RE0TCil>)?OKEY?P4%!&*rT;b;Wx7?ao_K8Lb)vg@TMrWdH1VBCCp36S<-Q?h@Jk z{H{G%NcyUYoM3>z%*Aln{xIwRAla7F?a~qq2Efj4`f)MpXBFtGb|)C%ozI88dAl`f z&yPf^uIlrO0=RdIYlmeMys}dQ17Oz=$_!q$ALIZ)IzRI-E$-V&b653qf&tz&i0*eP zzT+u<)3iG6&XLS3t2T%w9t2%=KwpCMgYk4I(skA9AVPrlt|IiHzu)c4PS47&sxZJ` z;-XaOAzF@*OG{Ef0DInHXL11h!HQky358ccIcBsvuo@L|)$HWh<%?2BeAQ}JpUqdk(qAZT&~(%OgRv6 zNf{fdL9@h{1Q=8gEA zBC}7YI|((znz2}(sC z^zIA2Cv-^m^WE)N4|n7_)rQIT8pV_d&CiAAAGT@T=%eQk`RuLTZ(fO*8jeG$(bZIF z|3ql}v+e1kDPHNL7nB%|HOu*Oam(Z}{uCT(NcdsfBOKo3H?}&pM)rm>n^5Pr0dC{=(q$Y|?g2ty( zgKh(FaSCKd09d*mB(1AM?HG@M((t2?#YOQnv5ka@uO=sN=2r5EF}}V zDwfaaJ~Le*tr1J$pr&HU*LH0Y;fH5EgUPr)Zx;Cz1?7F1wZ zAlsg3>JGW!u}J#nZI6ONS(Yn)seBu0^V&l)m+1cCIjxx12XCyY8=1>=_x4`2UcZ#L zF|Ml%CUj-r#`)yc>lb`lMHc1eeVYsm^^Zjv>(5#=c{v^TyCQE{zIn8nJH;d&7nL;%^?q1PDc0U(=Y_pq0FpPKGtFGc^_3|52o; zzjd*7)Em&&(5;;pfBK5r4X(IkpTn?_wWjV|A^?k||7q6cLu*C`4K|d+5+D@i_Yj6; zQolF<9s&(ocl}@`?=lWuEAD-WxLGO;H*(4l|3MW0Oqr0pJ?{_sG;;3geEt0S9={_5 zEgcU=c&!2qO1Bav-dRMqqzECy0ysy|LSRAXPNGBia?w2ryK1eXCBaHjs%X%#!w`2dD$D`@^OR5defv?XCZQ}V>e8OtLT7&m|S(wyY1sa zwwTK>X{z86BkBBBX8P*%hynewlb`>PEtNLRB`eDV1mv6Zw{Au5*5hv~uUzdW&4XOXJ#@dAx>m4>yF3MGxQo$wBpSJ^LO~?j|Lobe$feEf zXA00EqtdBj&-Be+O)@Gtz+dqR{pc~>LLzgjrJtbFH(&t27~sz(*{~YL2TY3YBVqu1 z6IkBE`HD`{k(Vx8zUwl>-F{Hdg3P^4CeJ^Xk(VV}veF1y)o&o>8GMnInq<`kg;<4> zT|LPo)ud!=9^|fhCq91qbmzsZ9r*!n`FhjNiy$pfnowvY01yPOhZyWWdba)YkE(UH zOz34%h$KjaGXD5q^R#GE#=!wT)J{3PN$ph3vX5WBq!Hiee^fUaHOaCG3ib#0d_%qK zJ>~x&`9di5%gKr=^y z1PRzq7X^v-p^@zj(coAAD$iVN1ZD`pp$&LOXANYZA5E(02!cSU;OO_)vW00grp(v%_L+5K_C<# zx{Zjg3w!l={d%S%K_XPb;hy?*453Lqsjj<+gIcaFlzFj9PTvIx)`w(${z7D!Cdo<& zKtoofk%x!6VQP{U!2v$Bui@uB=QL?w1q?!=tiE`vYJnzY)j6<2~1FkL-=l~p5!Ufnl^2Jn!udpl3nYOE#+>nT8o zI)CpwT1Sc@r?jnYQs)a8gu+;md$#ip4dTnLRFkowlm(fPhyL{S20Gmi0&vJf{M%;o zP(^}7=#E&Y=>(>CAnktJc1+A=3X@-v@Zg4hy|T9!cRoKvPknqA7PAh$=OF&*sE zlgp4TT@fE1HK$}j;>@p#f7wdF!!%Wz4a2A%^tH}@RPr*u%(RPk-i zlXenFP(V8Dj$iiXi>X|^-pof4r8Sk}M+v zd3s15)R5|X3p%<vqnQAEN} z9i|XhN2NbhRET~i9*_DgUOWnM_vBMoQdBOj*f8Kz3PqP@(SFQs@1VUH%=hTuPseS2 zGT*vF#L__ulHfx2 zzLcdy;%S05+xTPH*ef{&wj?NJ(iLv_6(v&vqWZeE#aWnj<%?6RMM|fKa?C6?Y%X z>}P0Q>$DgJm8)Lm$-~x{zkTpPR3(P7N38%1=%2i&W3cIP+1MF;F&%$6-lGn;P%^Yi z0J+kHKhQ6%s1Ux1SE@(phmRp&03ZY_8ia1)z4&M*qGnjm076-57L)2OUVPa*=uLa0 zPCl?<_{ai8s7WH?cApMGn)VL2{_w}g-?iL*c8_1RUeazZ5ko^G7dT$BjtSLIh3e~< zFKM=tFG72=BYS<8Oyjk3T}g$qjBj{{CIjUPjCJChGNF1WjqjuHcHItU;bBAnw$8(m z2enU9HQJuH{gn0sKKz4ToM0H=sgsmY=zgB+(!8!awP=@{)$KjGnAXsPsgusQP`{a~ zbBfBk)X*Z;NqQJ`?uOU6z|e^jt?h?=b)HB}LmN@hQb6e4OZ39cezeZyk3!H=C*|&9tBH?CsH2ngw~oG~ZHr zNrnX|gKXyGZ(q<|iLFfv87o<+^mL+C}`YH;!9U5?d@piT0S}QrigVS4q9n^=;$N4>Y{mk z910p~iTu|MmPpTnN?I!16H1@Wmx>Y@7U1iG9UZgi(;amRVzaM{oC($ckmQ!A%8O8T zUOwinX0ON($^^qnD>da~i2&@mn%JW%1;gx9jV^(}XD`pji&1y$+1D*Pfr^gwq`}Ia zSF%rR`*!pkd_9(_(B&Fmyg^&rpKjAJx;tvGqpf$kL^=gSooig7&iA#78rRkfSt9F* z(966`-Mv>?RM+-$q(b*v8qeo4O>J#=O$>!U1?JDV1yc(@+ zTlJb+VuLk*n^y7Sn_jc+4u-{B5h9BPM=c@|JMPm}ihOjb$da~ps?L!P2PJM3E2U?T zpFLOoN849-omK!sjeGr-+Af`P_hg$IVi7r8JzghRF`+4AxcmIop7Q2;F$};uwQPg? zx@uytyDV`pUenpY!k6on0?$LtKK?KqY<0)Ot;f$^?9m4{rgwy(A@P85#Q=Y3W+wXW zANHO--LR-;=AzG@?$YVj8;$9=iV4xXa0R_kBWY-f01?iWLNNiS%OCyCkNE$DRg?B~)|<|@dLQV@mMt>>h5I3!{V+_7PmVn# zTCmN zCZMf81z!s-82P2a*M3;2&cB__`!^SaxepEIKHTPcE9y3X^SJed_O#R7bn7|Kc+h4e zJ|bPTIMdBrf1*Aj^OYeok6yo^;{i-wY9cKORGSYD^Qit)(jVSwRPi(8sUd-7BC6pXLc zh4KH{;Q1#zyF0J`pc=zJZ{E{U2gd!Q!MGhdu;kf`r;n)ws$AUKyoFK>X8z7-Ce7GC z+@or`aQ1umbZk|MFxci-n)TXwz&6}#!V5lY6x}dLLy`U)_RbQP#u9adibIasU-ai<88baxA z)4y%rlZg@x{CkUm-|g?L546~Hyy=|Hj-g!lnSP$jdi>FYYg%*so{hV&?X}zG4l^uDA>nU_8lo|}R^e|uV(rpc|sGs(b zS7g%KsfXEo-YN7jYgA#l&BMX){A9vY@vu;Xp_XqWcX<-7o zoDG?^KWrV*Ch-Lsue0R z;Wfhqp2=%V1!1PE*UM&(hpiDcFTys%_t=WIK?Me7IW0zG(EHHuP;FN7*`{(@tr*Pv zm5yEvK@VC!g9?us`Ue_WECVGS72@UJ> zK*)pw4pN`|FzD}Z{rTz6*R7YYX+;O!DfcJZgs0cW8rB~=ke91PLiJ{)T2eEtUoWWv z1(oZ3_f~&&Fy7kx^Na00IZ|RtEClzl!e0RvR2F}|I6403;kdh?Q%U~M|NZq}FSS|+ z3-0{2S|ZU58LB49|B5KO`Y z3hXoO{f^)oPEV#Fg2@Q*&bIpp5@_G~Vg7QfQjEG~10oW=<7F0}bP$)mP}TAUEVDRO`Tf8OEyV_~u( zi-ll0oKRqU)5lZURj`^);c_~|fImlPi+$)zzx=n8>wX_fqCE)U^X)~qKORq3_K6QB z(E$bax&8L6_tlpIZ7|x06662^_{@HHUr-JCj)F)eA;7z^Pse)AI{m(Y8WIoTBpEQ^ z&(Ui~y$=Fz@q-Jc(F{t!vtDQAT(RHhPzvlo0AJYmXROL^EQ>=zI0**~_%r)I$ljSH z{eE~Lp@abMLg&SFe9%{Cbp7{}%LjERIhX)PRz+_QdZVs7SkB-K>ZrSL5)T;gXF7*6 z-x-`iK_rwA;C)07=dyShs(KelGYL~sj~1i1A`4rn97s|frlJnp^P`oi97s|f2Gld1 zVOKCM9vyZSu^Z!lmWKfa(9qm-7)fLZOgzVrJF<8gsstY@!xBhTQ9$!8|1ltAV;Bj}2}(2*fcO;(deHYB z*r|x4;p~qztQM@GkRoS}s0%Zv4?ZDeawbA*82}+dnccnmjy7os6;o!9K}#|Y2_33g zCbCy?Wwv^U7w`~Ckq04;CD2*r2bmACFYZ6q%DEU2R ztPAvGk1sP9xz*52Ae>h4Fht`_cYi3zhH^kbB$N=~UEqh^#ZcCh|9o<ERcSv;b*1h}Eajsx;}>TUIhtDi|6f=M3-RK@Ne9O&lAP~&!eFv$)m zu+Mb+vc9q8iT+G6tM1`N;?3#0g@L3RMt5UC%?>zNe6M=3J?$Lz-}PFoCsK4tH!g<$ zO?%Sk!y?nMqWEx2pbOIboyjEhon(JxeQAM)^zF*DPEmKsL3T0d@+enah+d5$xAYg! zl6|!?&?Po@*uW^CFg%!d&_tMdt+1VLv($V|FqmwCjjl0~2aV@f53hTCKT-C#*^Y>1ai z3ct|m=;m;PC8ZL88Kqp|-lC4Ds4+H}DWIpDz5G&^?|qKz_Ca$W(eS6LMdaq zcl^yxvdQ0I#uOSbrjRi^N4<_5Lfl-&^z3EgH2xy5z1X0*V?+FYOvjiL{1Au8i_bS! zR|YubKgs2}R?>q{OI9aFfGr<_4g-D~!^ilCS6cj4CA{!@V_pyvFy$BZrX2P7QV3Zl zmaOcFpp|^mf(i`!N#ta{(N*T&#$Ce-Fl32mO0~u2Jp&aORH#2`=!yD#s*ka``ZMBT zLZQlK>Tyox047NP7o(ZvAF%*eS@{iFar>@43C+P)jNwPmZ6-i(rnPeZfT4dSv zvyVeU>PB?SmOtA^h%FgLjNz8MGe9Aid|LBj?$JyyWL^K$y5d4K8O1ngk2=S+e0)Au zL*MHUB?vU6llb!7be?7>s2Vu>R-;6CsqO<#6_{ zT-U9imI4jwq@tr`_3vf>bN!0WGa;5_9Gc23bUD}0I2E@b%ER(4PG(UbtS?$|A(}MQ zbd}SGa+0p!P)jz%lbSXg*j&G+bx24h<8JS$uc|A)^~c>nh2Z(_xWl)ni4?R9W&2=T zVz4%#!2YO5D?a5ouwlx;1rl730rjeXfffzY44SliNu5PK;c0t%{2LKCSJ?s|X&`i!AuuH>7$t4-LafcMc@yZyA6h}8zF!Q-3Cqw0*$76QuY@4(v_O$DmNfM; zuHgv4G1 z`8+h#)3k;e=PG1Lhk+0YnZ}=|DPm;KG(K!WC_uH;c+l_2%wm^vVM|gT3aQK90r~Xc zl4eb2OBb{tsu&h0aTvuV2#_C9 zOE8k_?=5`*4kV!t1L_rb(`#u`WgTncP5iP&%$Ys11>wPdu4=AuN9*n01*Moo- z>k&}$@oP-ciwDzoVO6U|0Rg1~evJy}4(1ao&QA0S11`PN!hf`Te8I~ha z5CyFkm7hJNO{2oK77tJuNn{92Jb%=lWezZ8h7e4Efdcy@>UK}Q7xo&OFBeF19R}31 zN5i%(W(Fs47|CQvg`5v%D`i1a7>Q&EkXQNZZHq75&d&BQ^x{R}Or*j>?Xn9{=wBPU zqDjzPN%gMJa)l-m)a0nS%zzG(m`;yr1qAs@kWHq?pvv_4drXjPtV*+pM0s3VG5#;%PS^&tEr`+_+T=B1Qggm?#nMiLnpH@ zKL-f_*u_3=HRzJFWDRA>%m^rr#jlA1eT_8gb@R}e3n&%vYg9P&U?07IAe<92^>GB%?U z_H=f%`reo!O}SAp#r7z$&$^A-Y0G4AGlx-B+9VF-MIPGEcla3!ZVV{l5eJ2{w8cSs z+F~??kz9rVdByiy4*DaSv=cRgq3@iAl@jgiH%{cme3&*ZN^vTUNwNmWwwrA!@*iJKBng?yD?Wyx+tE z$A|h)v^rI6(_XhV>KRFW-ZID-khKVYd#wF z=2JOdWf%l=fkfOr2Gld7)i*j)5J@Bic;`o>eAM00V1{6l8&DOSHr4927Z$b;CfNZ6 z_60sYw@p*?qW(4v;3Ax$>#VG$a6E=jjn$ zmbvo0QV1q34JfcLkLkc>KCY_UlV=YY#v_uTN~1zT=Uib3)6i!6P=c-oF3+=PsNNIl zXvl*hm_mCLj6O42{dg@3BALnYTIVMH&fC>LgnTGT^&l8}*}sy1j2luh30jcwNa%b- zv+Qa_$57?DK#HB7!hC-6_Anc`u_U1nCdmN>i!V$D?K#h#iu_@yMi5TY0ZZ_-LRe=% z6W)hY_y7a`++>`M%34Z|3nkGW1n@_b@vJXD&@2hbffSZ8pq`sd=m6-IJH|egW?3{)3LP(23JbKftYZ z1L}D?fpgkZHL@W&Loi7WD6r4XdVF@DNK8X{@u3vifdIbfU(qXx4TEtpU;)oKD4d%e z^#<=`5we)>LP@p<0sIjy6H$kca}TK!ca>Ap)iuj5Fjrxl0JI+t1n8g zLT2~?gvhzVO&pf2=Wer6aK7LswVwZ`D}v-KiJ=4SP2!LR0S8R2Uo>d4=2Hr#;S2)! z(rmFG<{CtzTC9&Dr9k{SihML%jM^)okLLm@G-F`;x!Lh>Urpg#Qq+Z#Tn_^H0)gl4 zeKkg7=&2%{hI<(BXY|p!mJ)d^2L>4d-op&%&0vY$uDGsrx8xT@ngiFpSP#HZeJK~s8>TU1@|bJesSI#(4f6;fel`d z0VO};pm1T{8@fw;g!vZdgm8)|}4N+U18d*N(Tj`!hI_6acHFZzpc^qjh-$R6<^1O=1= z_%&wIv)OsLmV8f3E+jYITzQU>eVOA8b*~SVVF?6poS(mSck~HgTgtx=CeZ-}_MO0{ zGluU__X8{ zz6e6v?XHFZ^&C-k=g8s@7fN#(1n^}#JBYi|*@2ga43Y#D63OpT=K}pmyQ9^KJqE8M zoL2BKMB{3FZAjf$k+Oy=Sp+T$Z8rxv(WE4@Io51B-&O z7~I)gRt#iF-a?r1{@AZIlbvcq*C;0xl@kGo|9Bxs@C=i|i-m+&V|Qm4i~h=k=p04? z2?G1hzUz(T>NUf+7l#o@2LbZJ`}UNtFqi8>4D|`Z2{eAJEPmfsQ+Wo9IgG**1Qwrv z-)q06iy}m^Hhk2DU=kcqU|)LQ+uxs#-|J5~!%%S*QYl0rM9$FxtaMJ3u-{PY`A`z> zK>%N%S7_c{eV19%GKAA`4+H-E``IDi&>;-BINk@7@PGpQMqqEneLLwmuVHgz44>>6 zjla>_kpVB?h1&J_q;Mv*p}~&9OJV^Dt-E;Hf0VQe^LK{28<2GIHhz;}=w89&YX>ft+JipddL%N(n&}pqh|{?b-E94fq2%~bBL4*tz-Q<-dSSU?zJf2X zPyNFP@Xqr?y|q&t&j{}V7bPPZ@pQSB4W+O=oUcZt z4cP{wK6FvFVng;S|1{~8&OkAIHHyGmF~MrJLQ85_^MOlh0SmQrbkkd{PP(nC~1}xwgf4w|8{%3a%8Xv3tfBx^U|9Yv_^08{QgqsY>3r-koNSLhJ6R==yy zI{F_cw@3g8jfw`L=s12fqE%CLp`iMZZt6Hmgy20G=H?2gi^;r2yYc17y5XY$6cIgz zgyb!}OpCiZZ|U$*HQsJ0s2~Wr1P7`6c#)n>$)UaX;RliB4gDB!w4j7S_G3DvhpybF zi0EkjSDs1;C=fc<7@8=`2_PhI^Q&A++&L+&e1_@2pIpp^nr1=h3}p?G0lz#Mtm<4Q z0C%z7Kj>^xV#rc!_=F&mH^5gowFs;MjtIbglwThG)#^^1b^6ui zk2l-2hKTP4=eCM!UUevuVYe6qyf-rv?7qP7(1`@HOJx{p6>J9p@)Le^(ErdH_T70B z(R`W549$knC=(&-oW=Q@k5Y0=Xhnuz)mf4Rk$Y?qKl1x&X!PiiKVpTFp|KFrD&Qb@ zhhL=Yp{DLrxy4(VMk{y6gjfcXQnWy?MW?pW4U!}J&XmbzsYuD(nB8c3xr9OLx{DP* zJ?QraU8!O?T1rMJ;XvR9zroAfr|m(jN5fVkeGJ`6p&&qzxX7>g>7aCE)KG;8wwzG9 z%+F}2Q+7Upp&}7jFkr1KQaV5;pd40#V{12Fd{T-AILUi@8r)=#5K>= zBwJR1EwNIk>)%eVQqSSgkC~lcIkn8L;1G|Mx_pj0H~lnNvr;b$z>e60&yM($O60n= zTJXSw&Q)Z**`TL3pPD{<>oT{;K_&LR{1|CrVrj{xmb!T=)gOWj)hZ*qky%%|3(_mJ z5%tn39QyHlV?Hho39t3NQ6Zsr1u6Nyt)?doQwR0cg`+_uwtD<)i%!E5`O-A}Q(ap3Ju!tGaZYwiaLNnrgGLhxiYb_vxo!u)fk6&hiWR_ zGE7>GfFnWR3Iz81Z8bOdhnmR1s`MsG>nAW@q<^Y679tv`UFE$iytbPw4-JO4HN<3nC&ei%rJG z!5|Z>N1e->R*z{8i{+kv+)(xCNwEGJ3L~xS)Df^W>ZP(6P>`q`w2*_fjU7ZBz@zGW~QO*1Q45Q$Ej4rMFV)Je<%JUVGUrp@4T)~>0O0tynb zu+7KZZR<&qrWHqoWing@vznu+OoT<5{r0T))t6iC-~X=bj=@;9f(qeXqn@z}D*mSR z&8P&HR@wjUR~w5<#VV+5EH0!{7nd&{Y%VU5mBrp%b8-3V z%er*gV0qb(tSm0S|J~-|5?N5W8p>-SQ4C)Ug@PYI;NKE_*V7l}-tc``E8=NTLQD$I zY8Dff>WGQ|c~db-X^6=uA;vUVHtM#g-PV50=;nhLQ4`$MS zRUSgGiLPO;rV!nniP#oY3z1!0RmJt@K3x|;6R(}OJP$T%59LRc;q#UOzNO7bh}u z2m39bJw)|mSTq_D-suG()NaIAS?x$2v1_U60MDhER-^O1+$prC4$+`8bBgW?rV3wG`9SIL>9F4RefNHBp}VFMOBjRaLqIMxwn)VNmq?BPQARzMiv^)-4l58-e_NkBO7 zmiQO`5qo2I@e6HMna<|#d%d^awrso%t1cqMB|`j5AQ89g@o}G)ysSQP8G}o$0E0^9 zLDrxs$D`|&;c ztQKV;)ibP}j~uC|snD%T7N0|WDCcSo-)}W?0S1-Ii>1n6q`^|PqaX_E&kpSq82>j>`V~gukwr zwra0jDzg~0DwY)D%L`jwI?Ib!fXMd8Qv8LGVnOJpi;;Us=g;-0t8XQhUK1pUe4L52 z7PGdhISn5$^-_Tc!E2RZcGspM`xbN@2KWp7LUy>Pp>rd^4glm8dNij|(NUA)=EI^` zR2aaoh8GHl>KJCUGkQ4tEq0eKRd0yGVCbV(A%9iXixlQbK5Dorbb-NpZ83J%{gs%CUI3lh1gCnwfzlpt~+P}lI9ByQgZe5{$c*7y} z?L-<{zB!rUTksMMzPakO+zDB<6kUi|`qEM)VnDye^v-PSG3|MwWBH%xJJO8tAVQ3Z zqCx4WL5VMnm{B*2u1uN?=*owdJAGabg&B^04760WjtmQ&C&@ZLWh6XlX+^xFQo#Vy z{K7(!W_-OmB*dB4#Cv5~(OE`Q@;D?g#N%eA<1N^b4q(vvywZv1-?Rs%s2TPZ7V-l{ zt-xKb4ja>Ya}(;|Lj6V+cba$5Cy-i(7m7(4SOt~$Q$Bb{WctP`fdv&;8&bKV`;%$k zT&X-;1{d=9NFLOXJ2^UqlH9BmB(Rc>Pd(wh<~jie9n?y+!SL-ucFUX98UY0U?U2*_ z&pvfTOf2&bdEy8hv_1)1ymDIoq9P($zma2+}hU^?Zi?9)27Sq&k1Q2SZ% zCY_kvIcn1}K?h6nqT$GkLJHQRVZ%KRL_1@7g14@ZXjl~!D6!K~ASQ}*O&zW2q$_B) zxU6*N3%v`^u-TgKX^fO0Tm6t=AxqT@UF=BL0&g7+W^@#0YkIgZQr47_fZ&@VO2B{r zuRr>mAMyVcWM}U-EL#C{HHsapQCv3^$pl!hHj|sVn!6Ng1gup%?tj18xG^wSqhB|h zZV3=-=R@%m@i7bt=uu%`h+`zEaJy1X({r(a(>#$-u}q~_lu*)&R7B?Ef@*d$x~YUm znL1f zVs=W0;ef6Jrp^v=YzKWnk9Zn|PEsL1(6JQZZyI}`$vm0+UYOhg8szbJi4HH&fI+l^ zM|<@(fu=?+60|aiP@@iIe0NE74ae^#piImGJy-4O}B z`$6v=o$N{#IUVR+N@IKGa-38(2SfTI%Q;QqSHn@38qUtI;AfP%zzoVI#I z3vN3qhcAgsmrmnxx6S-!f6*Vz`On}s8h+t3V!?yZ<<9hYLPv)4|B6I0bVYnn@2-Rb z^cDYn_;%JFNVX-x9WY@B4B&S<$DleT3eFO_)-qs}#-@OSoO4)VXmVADsS(K=9d|AA*25>ScOUM3_u{dz z-!ks$!~5jcEEs<;s5}}B9=1oXM}u*@yE~T0#8|pRxt1nE@qVTFO>h2?7ppwq|BEgz zmQ}Y!O~r)jt)Tj3Jf)fR$2@o={ArmZ%Jotjlx_zlGUO?poSsWrvR*DFaL~FIv|c>l z+1-2mQpCto8{{$|LE$D8zAI)!OPMW*R50iuectTs7KNInPfCN*^$?>s{ZXDamR32B zPeefjWtWbTE0Dv<@1E5Tp;)NPXSurz78vpfg%%YojZ zq9U@drRmS%4g>aQV23V^ySbyazo2d7vhZ6z{0mwoEVMtD+H@!<4}+G(Ei-eq;))A( zx=d*bOYOoY}gspW3#N+V@Sx0GE_lQ)0~z0Q0pH-}kLY`L66B6fF# zTA#l3M+>=;$}-uoToBZHOP~FSdoQu6RGK-P}H8C@J_Rhr>3XYYSNilr=aPmb(*sYEm7TgJUz8elV(0n zAqROXH1DeV;6q+KEnjvg)d&F#Rhe(u@v7xqKi>u@6t9PP?$g=6e3q?9O3R3ak73#& zh$v`WhK9a-!}1+o;4=p7j|02Yru$xK=iebOH>cGyA|CesMjDR{3C*j}bZ2V_B}WbsCobZXre$3_8eZEJqiR z%8II4PKzjLz;oT+L5nUzK5PwXU_>NPGtWsL)KEw8Q+MxQE@v5|$i1h4&_nIe?G4(; zEt(jfs5v>y=x<3a!9feD)g3SBB#w>L3lRkk)C;}NksL&7RxdaV*eIiPBFlTVeW+O( z4IuFG^+tEK(!oNsic;h<%U5@v5ETn5hy|@T(u>oZ#Ug;fzY@y+0S$!6exPOiHIISk zfQ~$LFj&xiOe48=yIF~kC}^NexDmuz#}y5c6wS(nz(EUN(fn{u_lE01Fv~nb?z5Bz zC3udW4aW<$7qFSBtC<{M+rP?4-WEVZ&m^;7F5tW z(vD2uv5?c^&05C<1|6gZKkCbCbDO0`02TRiG-eHca<@XLNm%x6PcE&oj6Ub(0wlx$ zDZyKu3w^w1DUraSgM8&4W!<4>`Kn?;(R_#AVJ|C6lm3XZ#r!G!FIU| z(>}_W_9Od>2u0LdbWUI1>NcyjA_^Mt8|5)xY%i+%W_|++3W&wqJ}qg~4STa#M3mMT zj7NuAG@5Bd6g1Gg%EmsL^{$Ge9jVN)rgO7Cy1+pTeRTJbrh)d=NMW-+dP;-RC!s`4 z+N0iJYkxeaTaH@p50ONc{d2yAcu?BV7SK>f>+WCSJFRnR%j%Ei(iOL?J0DL@MYrNY z_fz3*KPKU&Wruv%u(4x#oFyCjDC0EbBEMssm2rmw8-1Em32)Y?0SOA1g7+|V{XlQnVN{WV8quyuNil1HsYHhp@|f7FU&XbbpsL?fr`3B471wwZC600JL93i^35$&$ZWkD_8hCHl)6b*~EVnA|ICK(^bs`Y04iQad+DutloD zvwOtvWT$kkYIj8e{6djyI1*miEYAJ9%#Yq5^*cvhd7zQuR8m0&1Ge6xQ|tP}_JFrL zm(Ck7j2436Q!>Xv>JDBUjOh}Hl9*uu4;VsB03jD+M&C;%v8FLgaF9CBQ{wbBB#N3L zAE}dlKmqoXZvWtb4_MiG)q41c?U&mRX=`ZfUtaJ2Q3zQYhXC?ktEEEtP9pqtXZLZg zX-TOX%?g;wg=C_A-Uo7nVpBN*gxoE}j{n=rZ%4Ldj8fbZ9He3ja^Kt?N8X~(X1Y^X zwtr1iFsDNJD&jcee~9d2=#(L_$S$4)f$MmO2BYXg5;-?)`07A#ApsUdVm_qZk<`X_ zH2*6Cp+k&ZoxE&Qv-zUM}!6 zR74y&q(n*q{5(IW{}=h_!O4UF0?Xk6q}=0xbYwtpxUa@s4Bz$|961oU7z8@f6@~=W zXd-CnTsFZCphN)l8Vm9sKe}A0rw;NnOm_%#6AbWF*#$g*=<@iWOhv;;O)gQPAVVc} z=1xqZdlB7XJbdt@$S#Htcp=1fn}9*e<#amL<~_}Bs`bXJ=JbjJ_zkv!+|+s7^4E!r zI2Z
      vSN62GEX{E0nV?P=$TZar_g?UAlaAAS+4uj&h0ME#~cp~JZjVj(_Jz+??& zmwh@`@bs*KfXSL4`jhO0!HxO`0tIX6csqAa;gmA@h85;BF92))Q%vkF z`7)hMMpJa^SLy{|O>LU-XPwJ|{6D9cX1NS3t4*`X@%(5! zqK|C318QSwmhi2%(1+FO=d;Ql*BJ1? zH0mGWlqD0F5mD0~V#t~aHOpzjq}*Yg4l^?T88-t)Z=Jv#nb_KlZJ+s4q#ybdNbb&R`|BlXv z5Hf}td_6nrA%NcLjyrs7`qray=Lt2fuNL|;UdyCmVEDO@60jtfbg9YaWn{hhWFwr-+tsYTl~7DWuaz!+MXW& z1}Gs};zInV2*HC~^lvI_eAHs^LwiWKQOS(I_%51!ZeaF&};2ZtFqULJ=NB&fiA^l1ILNG%l-IDL}mBhh@d?DsM-6w0QO~u@kA^j5{bAK}? z-NoYn(fX(H^!NMf(7+|1lrr`amiRvYrUYQe=Vd$g=?t8&z7&bD?K2GtJ~n{u%N~d)L)|$`cBUefe$N!A9$ZYZyIiGZu!524dwz7NJ)k$vY~(9 zr$czhO%@l_%_X8%Jtads#GUV@ZPQ|(*%sXa#W(IO)ViM~^9V8zRHP*O)sG1tCj8Pz zzj|kX+&!j=*byyw31*38STY#4k|_llnDlqrBtG|;E~i=S({>eFyihXhf1TXGYHHC# zHBvC`ryeq-Ibphu&G$L>`y=W@aau|kp|9x5&&9z4-3DVD1P zU6c>4Jl;ux@w^=p%nhgW)bh>jaCX?2!#wMzZi0oZi0kkzN3=EnK_u?FajmFDQP&n^8F^jNidrw4W#f&A zid_7QG%Goq_%UCO%>T`@)si_8Q?@EAzyqR4C9lflUbjdIFr;s$esE*MB8x3qt7M9| zCqnFYDz+Hqa!V!vOmbjC@SbZjXe?~D)$fklTYKZ}R}Xh~R*j@$M9AH&O&ev^Ig!uuOJ{_=I~F1XJ3;+JJgu0*3PC1G*ZAF8SjB z6>5gPEIz1@UP94m>bc8Hgc_k8MWOpNjj_Jfo}$n!C-*HjvD#CBzQUt4#l3h-CZMWG zZ*{-6fI;Fm|JoT&wmO4eo6cWs(_T-JtcKgx=O%fC$mS!_>r3i5VzmdTC zpK{1)-6wSV;r(& zFihnqAU?)7`BQNb$9w7(*RfaYbu8^*%x=o5N307dM3da<+$&1iI=R!+Aal2hTYq-Y zpU&o-L4}y%!>EF&sHIFu-mKp4&t~(ky0*huP5C^R$$1{6lH6G+ckATNfP+v{=0>!V zpJOO|xK5diK!}|qyzY`4K7-VUMSuW$?O^222jD#c8gAIBi_ktnBnlGO@lyD&@Q`7N z1cFNquN51Q+juMdmu_>GNny!f!Tyqv;~_>jAx2+IqZxlFi8xt`X-TT0LFk+x=N9w^ zN$v*XqpPmF96`(fXtE~jEm&;l^Wa=?@2L2vr@{75luVb8kEQdv)LEgHnma0#1QRZ# z?RlR1ocC#{Af4Q?Wc9kp zfd{D@mDIG?U97(Fs0y#56>t!`U%fb^QNlrwy1}#@TAlo7`4X#(n!*-@=i_;M&>Bx^ zy#<*de7cUX!WM+XF@89QE=|mJgcTOTNd>@)vY)+91>k9rxpdfZv%z%Csc@y?^a={; za!W!;sTjUV{j?et1W+%MQel|mi<3vZ5>wTX1~U(6&*=}cby$rV0I>54F?of1XS`5% z1{#j#N=&U7nw&5HU7ai!{@xBY`=}I5H}o@<=>mlqTnjqm{l8F_leyaPDX%0z0sTgx z)0r2&X>X+XhVNg+uQ)}8DGjWPQqxeuaiDB8lkEj$3#{-4HzBv^j@Na@YT7;eQ zLc=idR??_o(78^pP3YV#jtKu(s2IKj5gbtwtdaG@D2tTV;`_j{^bEh1k7P@|UfA=p%|Z7Y&Q{~2!l+_aa`02%|g>0m*60E8#xYxmkm|}0U_$pln1fPhlBC{R$Q@y2BTZTH|o>uA`PYYh$42|x&uln1eEc$2n}A5Y|ml3^GSp@mLBLE80v%&TAJ@b5V$D?bQ~<@ zqU0jhNaK;n(8A;aEh-fmx2X(Rh|Ogm8(PSFC-rD;w9q zwx@J)4c+*r++gV9JA|(g3NR>LcCQr_44nj}5Fj95aF2D(Z19W1rgidVj!(mmt_$k@ zkw9SWRrh#7C$ncq9~rtdiXAbaf5P)+w5+aA6C_)1lS|mJF55-J*2@$WB2!0(_>a|2 zFvCQf%9=^9@)})HLx(icO(>)JgY6e0&l?&lgm$LmkAQ-`pC-TerZla=+npZdw|^OC zfI-r78Vl)L2=Ib;SU<^5Wifmpf*>Rl9Hc(Mi+i+f?g6iGkxLM z7sI%O(8*~KyUy?NIA4p7omr?wY=&-)kV!cZxXN$PrzKrRbJ&;NOG8U7@D&Acmm2)@ zY;kbV|DYBQubLVH1PRJa-u}6|K-KUmpIOfgfSu7JJkME_YGO4lyQ=3a z3gA>rPPVAwDrFl}F-uB8f&tzo?6gM<+vz-kwTqbmLE;j}fSynai2BITPZH@G5Wu?9 z>x--}zKvGe35A>nu{-o09j?W#RjcLy-D-*080LX02I{382|rKwO_IwM2==T#W$+aA#p z?dkCreJzx0I>TW&6;IhvgNGqp5<`j?3X7?`fbdFK6`apgA)n>>OcClf=p{FXBP=Rb zCYqrUQ|hn4QX2GgXRYydMtVESlJx`Fj#7bY)jb!|KdVAi(zI9we~2P&IQ^=^)f$k} zmzu#NfGvNZ&ncLZ(qYC=D)ZrhnY%kPKQw>$#JbZ$!Lt~Qed6&ofbH6R~Pazc-Iof@zP4?~iQ z$-Nnl|M4}1C=%;bOa(LyNHU{)%e9ic%t?r^lNl8j!a523Cjzakno^%EYxvhrf*cP+ zl2YMJ#hZM-Y37J^>c=u2W+Z(A_aavf1G?WN+i_s_y%4RbsU$-Lk?2`!$R z*svE8FvS0^a-2^BssOwXxG%vUNo~F*P8jlLjplKw2#nGNlMACas*o|)E|?h|W_*oGvy860~6H)z!mMTWNu_vo~Yv8-$jqtgiQbGe4W@;i8~vzYSY@&h`pP8KP{ zPC_uGR0@RLUA*eIm(c`AR(%>aECC|)BoTri1S1b(sXIFZS}L4foVJELDTKOp%Zj?i>$?+1Kql z?gS5FpThC%>oHvkIH!RGZYk6XB1_+~Cd+6nq(3Q1b8eNjn`PkUBxO&9@U=u(SKF5P zn;JDnLE?HM!HutIa}5*R2(F8RV?iV>3a(YiF56zCC{#emrA6Uj;fuNc#8{&!q)14n zxs$HC^#?w0Hg{?)q|@9P-`QyHR8$D3ZtjmL&MqZng}R2DQzRtQ)^JEypzHl*YqW;I zLFy)QHq|$U`6SDPIRTu?{G;2^zz3Hrx zA|aWkS7AJ3jr0mM2&L)eA7%CC8tIh~A(%STKjs5GHdfA3BqU=wA)92Bd{m%$ zM)53&B$ZatpUrEMh=Wv;VPfZKLm8&xK`hBI@nN(moxW(EVRA0SlRA@n6Evh*lVzIM znHjbq?K@{1m(H+|jw5FM*|0~~y~<@3O-IZk3^Ivxz04`ZkgZR!kWOQmua;UPh8_l) zq$vtjohT;FnT#{ z)>b31sG~h86L66f4r?mlNf3yw_hQ5c>j;IWt#?2{;(UMXrql)dw}$D0aag?=f`fM@ z@Z3gt0W}Q7Q&{hA5A_U?KkrY%?H2A#A$P+}`ML|s^lM~!!T4vqyrx1I44`VaHKcWh zwDq6vU&_uFTgQL`8V1~{JkX!Cf`P)vmJx#(RTc9D3Bh|pu+J-Z5A;3`OLu39WCew& zjOC~|e?OkevxL`-C6EyOMHS20VmNG1>2Mi%w?)VMsi{rF-BlG(`M8b`Q$DRizWb7H zNvFeC#%>x^9U5bqUafO_1}=$zbz0&Y4Dn0-8P&LRK8If9Xv5lFbmzjJ)&!Km>4voY zE2{}Sf&f3um#zt$4J${r&5Qu>4g>x1itSEkF~RsZDCtQYb|KV_CHIzCS9w6SQn#;2)VnJ91T@cxC5FrlX0_5Th|GuOi13WBoC>pKG~OhSS_9LIyvwlb)%B% z&jx)}`C2~u>y!cxLP_DL6JUo6p03_x;TKSdCXS?&XX)%xSMh|NLf4T1AB1)haK}d$NRCM!D)TBC{Zo6lOZ! zfYwS;=T7Z6U8gXoOh{h*%WOQ_;_F;QeQ4+-xPY!jtq`DIia*Kr)9{g1z*grBcx!ph z)|%EjgtV4_TGv|70QctG-Z6b0bm?ft@GoJtq0Irnxfy>{Gzi_T9?ixF^OBgM)d56_ zr9=pxq3at&TnxL3RiBaxz}?|VFSlof?se~V-sXFe3|-2K;UZA|nIKDod@IR@1uG;3 zZ&v2e7c~DN+-Im3D}ag~c#yhXy*X(AaGXcYkQFL~603-iyX;m%^tR|0YNR+|Prww|@>cW4?0(F1cZ2wn!wC(&+(HZ#5OKL4UiAwoJF?GY7%eL(MHDn{gqONB z)9Mbv6Pe7=N)<#Z7F2FR#V^sK;RqpP7+)^QR50kkW5v_&nt3dupm8;r;+K7jco@FE z3-Jgb@b3sdU*fLMZMPJCUo_HU;$^^t+Q&hSQoq}C7k>F4M7%6jX)c%{p@}@l)sPD& z#G2)~iUpO=s+iHoBOP!}hx6keOCe~Os|u*pog|oJp?$5=&UO_U2GYxNVjCAqlz){r z6TTC1YF45W7-DiO*fJW>b$X-2Y^9!|M^cDQN`n$|#fWeA;N!4Ggqr1wiUk$Khc>tr zb6>Ogq%R%Y_<(Ln?5GTQo27wD+zz*lnLwuh@vVzX!vji zMhI#qL_fjXR9#Z!wz~b!ybw>reW(f~)iZdVJ}(qJHT?t*ed@mkr+X6z{TXdR7X{le z4Wl5XxCbzFKUYC!boBdEr>%Q7hM6eED#=Setf2Zh#D3bRjV0=SAyZXQ$lM*kAVb|l z|5|>1fvHX_XvnKasE->2XtAHZ!`9TSlq3Qxiv@L?)M~J%vG61aP|fVk=zZw)CfW8r zQ!`wMM@55BtVOBAw%J-#03k=cPHz@J9Us1=lTfGKC$wO8JeA*XhSga>i9BB7LOeRv zzjUZ(@tQidqCw~$OpA{m@|Gr1m6$#n3Q4Gtkh}uPtP5)T>M9615b!i6;a{Quif9;4 zib7D4PRs#3R=h(Rbbg9lA!IBgEWtt{BZ&}EQnkk{4i`cKA_nJ_BljgK)>!@NX}JG zSBzRp5>qRF0)oQFPJs?#af7IIs?UV?*Q@0omT@wvQ~>__%^&^EkNE!}ebGs~gPqf8 z8D=Jw+Z+Pan{*Azfcli~FgbUzs7QB1tqOqi8~)(4E<6oF*YSv|K+==dsUdqIxR3!0 zB4_mc+Un!*OaSf*tuC4!wFmipkRdZ6Y%n+h0e=;*@N|=Oh@l^Xz!|^#$cpx7Gek}8 z7xP5X{(P#asr_=o=ptpIBRaNmES+P>@-ATT3=nYprAU>>KNu$C3fQBVTY|N;FiI4m z2G%k{SxY~yZLMQ~8?2=zT>8A$*+rYPuk#pDf0&#Vkb$Wd{1hjgZIRvcr zzNKpdHNq4f8)L>qZRd7Xn=tHADTGfvfrleo*JEH1Pu= zU@6sVK)*8kIm9?ON?JedD<%EA%x7Z;-^}eOGNCLXLZUDx=fa^VQK$|uNc6ARp1gO_s4xx3^^iiwt zX*PT=sr*%O!1vxb7>w1(!|LAf3~+-tXv6io-e3f%!P+T#USJzo>lok$YiWVCz&1!b zMu6(AJ#5peaDiRjTF(I2mx{xVbnWV;f(c-HTaS(>V_DU#ZmVa2>uX2a7fI)$$XTY< zYe!JP_AO9@f(A<&g>NMdpLvz2MuA74W88g83 zxoyyqMPv2c#so0EZ|P>$wac+*fP2~1cZ0mh877ESRT&^42QR1rs|H?3hN^-W#)rTC zN0E6~&j~aDMhw_mao4RSnOn7-zLuolWM_KyTGAn4t*25gFN@jgREGf7x0@rHi)Q*}hs6LlX#`2b?)pHpWzzmks3g&e!Wdx|cUZ1wR{kGbK zv3k7@3fMmFrac;C8R>JuS5Lc&1HSh%f7PZVSF3xO31E6JyHDB_x_W+a2u0OZdIM@+ zqw{xiYU=9oXM(iUeaxoN)h!j@!@ee)PZuNkS+RNz=^3!r=YWN}+h}zUFab;&>|6J0 zBPIZMYe@H<@cz&luSsw_MMZKMMs+KKA9~7x5c_HM>fwT}Ds1r?@l<#AMzd_6g<;CR zqAB4b97cRn1@rGk14P6PlX(@Ws9$j*eWwcHrP=X9)iA?WF^Z}V3BhaC%iMVtQids% zDzuVvFo+}$bq8Z}D3_7s7wS3=)m%uQ8LnQtsuem+0PZtt+v!>v9>(uYx3;_87yi`X z7c}%Dd}qm=DayMq{YAmc7QFOZ|AG}8wm`vQ!R_I!&sTIjB%jZFezIFA8@34rgpYLr z2dx|7#U~GUyqplSOpkbYDpawcf*3ugy8#~2kvOz?Nfx?hF%mdv-3&2$z36ufQL>b| zJW2@+I@f~^*V%j`k8qq}RdgYRA_^La3qPQBem!+6 z4{BG2Gd%6c>d?|#_F%~9U#O|uy=Dp^K>;cJcK=9q7Mi87=YS3m(ZbrddX-=^`$2-j-H--6*WW4^2upu9 zPYMNu9{fc|v8ycA%wL`ZI&v)ix|tjsK;R=iXaNrOdp40{LDC8f+QF(l)GWn8f&$g) zu1<2lYcHAF!L0I&C}`ZJ!!720+DqM`PZnOhy*-__<;p+96&f1iYr-NK!gq9-7k%}) zU|8F$8AV+OhHMt!KeY!7nLRcYUr&bc&$O*H9o45BOXx+xvyp_2i%*=9H;&wi~RV3}Ea+=nFF`r~Un=I&5F+Q~<9pf@wNTNZ- z4Bv@#7?69z-^S4jb)GO|W8P32Fy^N^5(l*4fzG-Liw=b?uQ!xulmtxq584!J#oUk; zpFu%qtGRO{<;TjuZOEds5)AvSWEf?yY-6Hf^Mytg^9-8h%Se`dkhLl9DDbz=#A>Uqy4%g8;T{dNkl7J~$ZsGStLZ;R2rgBRr0&{+;a|^Ax zrTxquKNz3)F~8eTmMO@F%UNj{ zPOm>O>>UHdd%j3SEY6J8p>hWMRYqX~aA$cqY|V`45CGnwzov9_(3CEQr-iNRR(Qj1 zoEY9YBmM#_nLI$+@a;PF`C?}Dj1uG)-uE%#72h-tQZEBn=w&a ztv=6Q%1Xn~d_{oH6#-XP%Bqd^ltjIerc^(c^YrUyopMzX5wm;I1?0mdf2N9tlR+XS zb7aDVrikNUcGN%6S!As^Mq*Kq+I#9fs;sh>UL-E@M zE2c2z6Iz4wK}E_in;i*R9tk{XrG1Y6NLRq?^aVT(I%ykCPw3Ee6{&UF=m>i9F)?wneKa+*>Ih<*}4+92O{38!^PPj0yf*3`s_eZ^Y&@-~GuByd zEgeULPU^L+R#+!zi#8+81Cz1-bX+Gko`%>+9o;mor^7Vpq$M>rBbzFz5eT)k9i%yh z4S!u#MChen%$vb=yeM12G+yOKaGid0MJ&ZDZvxkemuvyA#Ga_$s%=>L6vN71ERztA zgx{4T&};CC1pd`%1Fb5R?YCiFRSc{mz$hqG<)=NLPwD$!Z=h@5dM7}rRdt;I;1%PS z&Fi=TgG$xIq6cm`OXxK3VMQF2s`BZUiaeLw8k^^1(1On5*MF^)!ibrOQgbEH5Tna6 z)AYU<5{C7;F{sRM1OmNE84MN(jpiv6aZsw_p)O@>9uES6UZqAD5fjm9o*JM*Cy9le zWLhH@)f7TiyYL{Gh(hz)#i3w-sxaD|0->N#r9>F<647X$5}-k+8Wo9SXF{p@s7S?w z*8k7jn|C>STxXv0k+qPu?^RqSQnuA?3u=*+?Cv>z=8(0JW!L7)qA1Ir!5{%-CR6}k z5KC1h&zW!FKc~O%+#3;3MBIpYk@pRt+NWEr1Q5UH-q`nue6r&op|pcfj#kjIW0HO8 zI2v@KTtEX7A+ke0V^m3DBkxn%MS)OIxacc4GbbjTP@IwSp=H%*SjimdPskVJQbhTkJ8(Y zG(<%0P|h63Tc4kk);EeX>C6ss7W#IQ~VP z5@{3ava~BvUzf!_iHM(cBzE9O{fLn2$-86qsZO9gc4!V$l#qJsnFM~QNvN8aO-X%C zVo*>B@lVs1d-8xuIiKb$_rzyXi7#*VsZW8p&k)LWq03NTu9F@^=$W`VNfA@^JrmIK z*h-u9`q+wF^x%h^gWQuJpuvwYI-qZoYbxqT2bKkmP%_d+ygshtHvGr*pn`~=iv5X1 z2O}spOaPaW!Ctp5F*d5~~ zqJVzE+I{fi>9c1ETyf!^j1@q@KF4hSkZc$6t=LN)lYtQ27x$k(-jNFgxIZURIzN*f zQB-Wwj*PY8W8&bD?(-M!cO%;HAihIdgCU=m7D&ZL?8rz50P{LCY4_cTZj2gDmUIv| zeSJk!*@d#5v!KK=JUk%{VSKmvu;D>`*AS1UgXA$RMJ*Ra$neAxK(%(JUD2*~#vM>g zOrP55O62gck#hnclSl^U-Ex8hfN8AEu6gZfr3nur*DvPc*d;xOC=a@Kt6w4r*e31i zZ7zO>FJ2q&nD&kU>Q%OwPV)5mNw9uywx(GQWg#U&h1-j8S~#}8TYC{0Ae&gB<-S>R z3s1*baRg8~Rz~Ajli|2ud=<1?tfVBU{FGHT^2*cycJ>()3S}o?ZD`PbW@(>^%<;Rf zxX*lvmx|LxE$e1!3E12P8M9x!2Cb=V{Tb=>|mLfjo zWOeuW3{%vI&sV#~CjnrkXYLxGuk!eOwR3zjA-41=Z(h5lyaOc6v?=V&jN3wvQIbg; z!_LgOHRSsAh;M7-<9wpPcdJhWL&U&{R(j;Itd7=N0GM1e(F4;jg`wSQCKDVyE}#6t zVl5A#b}OGCfNJ7&LH9G#1_`+ZqGOzT2FN@zI9k~wdLjggj>ES(J84Rht~ z4ES8jQaYM1WP{MHmJJM$c~noI^4ofYS8_$F+o(Q*fX%I#`IsJa7p-l#R?H*7b-8Vk zCSm7%VF(#@DTfCYR3d=ta@!&)!ku#)1Hgp;DYUz#F_mYhDXJIC2|aF=^gg@IPRA73 z>~b(o!qDv&A~ST(!H$uV$E!3ybSGOzPEKo}8giiyTJ4%E7yxTsPD@SgoYP`ET?u}} zJH@@j#Eduahj?Egl>IOdjREoJ{3(QMXZ^2@W3H z$R8|ZjoZye2LO}PYKrOaxM$lftvmu;wv|5IZQj5E66S962E>f#4LFUaleru&bW0-> z95!+-%WZkO#?h^o1p!p92l=zSNOh}I0s~|oFY&-ej_Bf#aJ=WIMX z8uf?fDGFh7x1OiKfX}&#u2J7Deoc5me3_Q2jwxosgUB`1?B&tqs1e?Gt4$pMOyl>< zd9oY6tCbucM6RFawCW;k>{dUS;4v?o%k0K8!NKEv&mZhI^9TZ{oIiOgq(`UnvMCYW zVzdd4c{0I*2v5A2FZdma`CumFShMNMg%>Iw1{t0SF*5Xe^Q@WkKSg3{b_AD%A{?Z6 zIwY1_(sMiVK`Y%Hk6{R}oR|ed&ZiO;%PjtCQwc1H@BqWuLmM+zYgr3wHYb*%&Y>XT zQ;6QOq>;vEmF#t`O`!-hUpVuwN;6S6=gWi_EKZ9jDck`)b*Y2O~%6@<5Oli&Q)qt1}up9lvz># zB`b=xDdS;~@f{2PhC6GSRBgvX03j#5%9coX@k)#WeLcLQ>36wBv$mSFB>3Sw7Utv8 zlAh=gS-Q5hk8qF*QO3Tcmlsz@8DNm%0Vx-mY)3%10jWoTYm#Czq5-KHUBnYn-KO?v zZW<7(2jOm0GK>^u`nM=L%U7dfdDGkH(3&Ot8YXKah=N_WZmFyb*@LiPR>jGq4d35 zUb5jqyk>~UG)||dsOZA%Y>S(&ddeSH( zEx@xhlcDJDn$b(&JXr8%4UXu=?{s5;ZuFD6=vnaYN~}bWBqgsX>jv1Fj0HjCMyz4n zqF2o2vbL^wo#_M^v~GK?<|-;lz<_V+IN}#}hQ_JTvA!t-p~>S0HfBFtO;Zw7Oq<{~MaHglY!i}g zm7u2kZ@N?C4LIB*AV1QbP2G9~4gmjo9+N-f&5E*5&}|DsV1Vr6V8@Ml#LYJ5na_6G zm>~zQorVYudGnImU@Q(*QMQZ*UfHZvt#7sGzWLi6-18nu#bxr zToD&B*OiUkHqlW;q?_pIqtw#Qlm*spn2hUo$%9b0tT4@QOnzDLI zQ%iDBdB?J90bp`IT@Ptwzc@~M9NqG1U`R6e7j`9s0W!~=@LmeppX)YrV#9;Txz(S^ ziz}CIxz!`U<$OSUv$ILAZutNNP}%>@Y_Qs8-Nl9%#LUWWF}e{mahz8-^Q@S5%c~9m zD>;=mbIJ|r41Kp$@(6G_l{SUL8r@O}1W-*XWm|qa#;FMpBG*!{2g#Cew_3^s2ahe} z4?Y*|X*UaP_>}m?j>Io~P0IO*HIk7s0PI_3xy9z>IV{K+o;OSjeqCavkN2Ak1@ zqV|>9#Vc}~DuP3JH@_J^5X;9jH7CEBP2MEasNZOAW(km@o~3&KXr7TabJBG_vjuHa zOHNoSW;R`TBbBkBa?X82+dbvHuwuQpAYd?HUvNL5_4bsmnB6YW9SHo3o==1CWNB5g z-d+^2Bq&^UzgdmH-_WfJ*P~19MP>E?!f-kG}XMD~@*NLB0C)!jG@d?nT6mOwdCid2R9Xc(a~N=>jwwFOBjmS~St= z5LT_g%fx8aeAMSOO*%=nVlfY5m*E-jN8r1&L>^bHlp?%v%fldZ9Y5o5CbI?C;|az)X%-XPW7&aX*{esFf2y$lXAM@(oN>(uOYw$BBE2Hz5EK$tQ_Ha5`AiHnmxA zupFLH6b#p!rR>*f5)crph`$69idSg!l2!c6;MJf{k5-FPr^%fFNHvekm8O%!;U1Md z4oa83PqRTTr0L<8T>`DBL$8I%gxX2R(4cd{`$I=@rHH1FTz1Bwpb&Bar1q2xJPt}% z@d@qnZTQ~kWEnxzpp+d7JZRkvTBqxiX5K%f$-tpJ#`8eYKDX!zCNytknwv?o9jCqo zFPx-7Lh*L0=%yEBK~~IWc#bT{PSjJO`;q^>`vo<9)A4LfZ(*({jU2u_*)^6EHf+dz zU(%hxt5khw-#rz&w^HA!-pph*UB9ha3s9(j*rM9cNB@s^jc}*!(6AuXtaS2goSwX^ zukk>G&L!{ZDqk1V^aRWC>R?a_Wz~MsA513$*?Xxks{#qdi{3B0suC|rY3BdRZpjsz zkVeQqu}Xa!fd*ef?fQB$|NOK5cto@LNx84DT_qEmA;s+XlU09`TsU8!Vgd=p&|cZE zDHcT2Sl?a+9<->Pr-?%9&g63ws&?K5cGY)`f&%5g=wq4HRr#+~BFs_*FL-z&BCFmD zgUY?&kN4$;WkKV|>1&LNMZ+VyK$eSu+wB}bsB~pPyX)p_y3>n~sAPAYYN|8~u!)<& zVD{BWXSks@DcP!{DgI?4(4chDDJ^)olH3}sncmJ-K!U|DfisLUXU>sMAu;uE4 z=W>#W460egC>U-&^7E~i9Dg-98ZXDmB8;X8pS&+%8hZkS#t zq=;)l1q0xB_}l!zr=pG#Sb5m<{NnYs zr~6f_(D9zttMqD$8@6E0RoJeXy9opvJK=9f_KsYN)MkU^M3ZJ7C7@F&gF}Q}S)2~1 zhf6vSHyGIoH{q0~DX{>jlER>KJ=39$4?;@Q_t_@JJg8mxe$!B$MvuB=J1Z2GvI}fH zk|6M}iI3@tp2=KZTd7E)RuzYX7JMmO{9orwa{WJiu^;cv7lDH>SMC0(-XWdGqWhdC z=_z*I?zhWAcF2N5v zEJ0ILo##fO^fEBQkegz2-pR$MHm8 zC9m4m$CG721zykvN$F0bIxidu{BzbT+VwG(a|VjN4K8Thz!(hJDEYJ(WM3uUqo9F& zv^v=w9VJ__>hcjtP`KjUq^=94@@6`a6H$tOUm>0%7Z-7EzG)N_u?i}<3(Q|#!EY-OxLfP0>~lz=qhl&s?^ zM&vQrGeG`1eVbDi+wLN&4IdL1n`KfTcO%;HAaeSz#=ML#;5)l(?`N@;VQj>G;anJTZJi^V#X+!kU@~3|CSM zM8xk0L2p45Nu$1#G|#z;WPEh?lAUKIx&<=yZ~8DpTCiI}UMMS8X*@+LOC~h0`Cs#% zr$atIE+-B&b!|C{BOug*hx{ea%1r4bk*s#=J(NsnekeTjn*GsuI+@7^{3Y- zj-z6>-yG+FP`e|1htJed$_yvwp?+Jab0yk8q~2~)))c!f zJSWfaF%`O@&YsXI!6m=1_eQSU)YsWD5qh`0edYi|pN5A0L+Xl%N>j1B!(*hI2^6aD z`JeMYd{N5Ing4Tj(&k)f2anBf_=>E&fvWd7fkO2ve{S01C2by{Uc^8?7ps{~06|7^ z;6W?Ym-fy&AHP|#t*RXH=8Wx0Fi_b(1Hgu5D)iEMp*VkGZ z7RsT8=AZc1Qpnb~(2@zw5Z~f^G^6ptX?=Vb(XikjeD02Z#x1nV>U7f{4PwTt{z=ow z6W{+)UBWd=urIVF916|NUfYraxU5bWw$goBiw)V4Mn-*0#_9ar}*q|lPK(B;~@ zl?8!?a)@wMm&1WN(FLBGQFTga`yYbv9PbW;q<2rF7o!pC0K^bv7Ks=@f|2qed`%OHnzS z$gYj55o}X)yt3A2Mc#=@csDJ}gVts57pGS0m1bE7@gn08H0Xr*qw-!*s`n}Iphc4< zybH4X40Tq790uT@&^2~R|57obl~N4@$jfvDbaBd?dFY@jAIlLbt=My8!`sMDQ4qNp zM6#DFG^NpS6A1(I0;@4S3AbML3ai2j9}wC|;E!Zo_@@7yrVeOji`r)@^s*2tsxVNb zltjX-EBG-_VIPjC&1;c3ioyYaPzy8&UB>UsSLxcSV#xsEa~+03<{EysZeEV*m_@c) zrznI#2&I?@F&}yM%adeNN^Rr?8ia1ZB>UB7IpuA5BBc~f0U!mxK!o7M6>X{?u4xa< zt3{J+;Zm%;xX?~Wkf3nh{bro;6>IqgzU6>^!TsVT)so#eRu=FMl=126hK)=JMP*as zTM+o?+)uK|QLI50=mrBe;>P|?WTHCT9SHoNQEQbwaI82ipR^&M0DEqAGNyBu`E4wk zD6v6pevB|+zq>l2mz{dqLsW`=e>S8edkDZ}G=E0hwUS*PiulOLmXe_J6_XmYTsJvS z3%-1=o0_NO9S}{~v|(M0M4ZTQ`)RX~lPs!)G(iQNF<^Vk>BG-N)~>YNa6rF=c%e_T zQIe()P>33!pm8XhqX~$rB}lLFYZE!wU`OkTe}Ex2GE9QjTI~+mYg;QldincBD*e zR`f>kVA{_HoQk=z7G24N>YYfHdf;@dz38rDzPCj-fkOAD`}u@7$Bp^s3bJo5<5<(9 z$`dsuLh+hY>Zf88rERI{>ZVz6Eu81fX}AFCB^)8 z!KF4bEch_BK%}uSKrwT*%>W68{srjIvf4(|f6BAW(t^Oh;rLG7RRh8=#j16|uLKCa zUwFN?n2)EZ73Zgm(rs*5@o{d2jQ-dN#XR|TBP1F&p!e|lWRh%bsp~yhPM}lWFqrlR zv|mmx&uZv4tgX#s4(OLx_EW0k>G10;SqW9_y>#JYg}^GP*x!q6S*_w&P&w~xSq$jK zX`xUTQ&`nGAogEVYf8%{M{+@2GslzrCV5ap zxuS3PR;~gIDu_RF&Ae>1+$>~Yxi0<$4q6uweun8E_M;u2zx0;VmM$6volVqYnGwiWJEjhx#;)@ZRG(?Hiq(d3c zBq&^3(KE;6b?@%ugRlFK?mrO{nyC^S+3+YP;;6|51Pg8X{iA2wgRK0(nKx91U zdl>utq{$)oH_T%r{4ZG<{Oj4LF+dc$Tk!DrHUfrqy3t^f9$wXSdrFRHP{{fe_P?O` zrg3#DT${oLETnI*R@2_S`_KDBbB?d+KfC|f{97corg0~ZjqWy}kc13B-v;@eB#S^u zo@XzgfBEEIp9YRXMp3hHSnrvK0DaM;^If)@!k@t{2KZq4_;?SNGX&@x-txt2ycsox zZNi#yVCI0JLF|$j1WZP@nV6EviKq}D)2XxDVhX%M@>KH9HoyR|4fnjMz0 zTY&=j2Mnh<9XbSPCad@jipkNbc|u2OX{y{5$k{f7@8zYy`IsZTkmtxzKf z$mc| z!ZpoT7U33?(;qy1@Ki)g9o=9+_j%>u(UX0oCsV)<@$&5HbD78MEH@a?gXPcfe=VY= zE+;Yt>|pu9)4MWS>MS=H(1YdQeIui#&T^)JZ7t_L<=IZ`?v{HD=*IHNkfyIr8rhXn z)Vk^LlJdPrLEthMrOArESoMx(<7c~M z0*3bONSl_-X3e}Lt+*5;=B#JaPvgG@7s{8SUu3>&W;@$`H8|*85jrEf-A|NIO&@Zb zk^w?1PD$FmLt6b~I(xcECO~#e$pj4To0*?<`u$kmWv1C;f0nbB3e_9AYI@#M)7v{! zl%dcRIVU~jv186*9CWV7zR~LIB&)|X^NU+t^Gqnld3CX(nN9ip_ilOB0ihLpw=j1^ z(tFLKXzb=)V3riW-wft-94i^=?4}r)P>k#FJUVx)!z~X=*P^^qj7-hYqdlv5B=o2Z z@Ez+tx~}qdvrNXtiWblXcMX$7L4#@({(>&~So9`z^_iK^8~je>5mk-iDUn=8-Ku){ zR#b@!)mtTBhrg4uni;zgWv$LK7P{}Z==O)d`%FZ%=6HZk+n}M};9?8u~4MOYMEdH@O7eVp$%3F0$C3$}&;6tA6oTRKGYw z_4jW@_4j9}$}JZAis3(;q56++#n*p4L-n8Dit0a|q59w7it2ygt~!zx)t=Ios9Q_U zNLCa3QVq34TszHZzR@=Mhf;R8+DTyHZHum~p7y32>L>0+ZRko6TBICi=Yn;;C=QO6 zUZCLHRi{CVzRSKnqbG8#W_I6N8Oy{pDA6>o@rF0>3klV9iwPP_7!26dllE-d5w(`* zH#CdKxew-Ov|&Mori_eAA(}M19&!l>0v~CCqmr}{SwvJ_TEsLcU7}mIX`dlK!OXc! zZm-ddQA2Q>CgE>`gU*du=VVOl?3tQo{2l0-T7W|HR;EdNk{8LgWKC&3OVweadp**n zm6?L5X8hPL8kkUgPb%^lZ$p>CWzK32g>TgrWT;<^)afR$&N;PRk!eu*@oFOrf#Pj~ zbpDhGz`eVo_i{J+jW(L4BooqQKo0@9ZjZJ?b0)ungN_} zayuGkTrg%(Rbk>)q@ZTWL@0U+;FlRrn_31NdYB`-t5wqk#(V*S#5+cU`NDQZq33`; z_ZbU)p})%C9nvwQmkZiVoLjExO2za91=~&ZaQkL9lcfpXHF^XH5|`K$cZG140GhS- z*o~M2f%7adelw&_)RF8&X==!r?jb;5bm;LSPXSFAFo6RD{Ld{u$vBGVQ8=8>IO8`2 z0P-e(MWvuWSe?#?$8@+D z%DMeO#ag-|byFPVOeI9IKbrD;z(>=;vCK$aE1?7hnGani;uUH7r`fv8kE)KB%VsGR zH3Re{E?cM&zf%@Zt3u7m=Iz2vgs7=kC^p<9)1q{Atydxp@TM0*pSwG*>8w!Aea0Ly zzLLpl5Ht0=`TA%`7y8OZuxtGub0A>)2lNF`Cp1SQuDbRQ0tIkH)#~+xF1I(gYS5Jd zLZoYli$x?2Vy2~{ug%77q0zOa@(`fmhwH)dbBtOhJTWYe{Q)bL@D zsnaRIzUuS@1sPMr(Rcf(;UWz1CcD$;d#vGdS}K;5>Nv%^mMs!XXb>}X1bw}G9pNEB zo21{&`MM-tc+NWGU7Pa+1(}bj7}GZIqsg)9h}wVlPt5x~e3(&Ge9u&UL5D+Yw3QAs zZWqm$_u8d{}mcPzOP&-;yp)={KBGglxEa!x8?IPxI#_4V z-D)PLJ*A`wD17`N5j~}G@SKk!WW5XBK3km+8pAY8qQ@UlHmZF4!V$RuzHg5R8EDJu|@}IlqH98zduVTpZrKnjv zMv5g+s9vQvthjCB4!`@S@J=y}0fN)ZaF9BWA95}cB8oIZSRrCSz`suu77OFb6RMU* zFX*pkIar=PAn$~lqK@(?E4Kv<^$&fJgGJL!x9KaYXb+S6MKml3{(IN&O{im@Jycxp ze*p~jo8Dyqqb%YTii?p}Li5#WJ9~8Y1gibUJ3KA4sL1MF#J*#>@j;73l$dw>MIXipsMwQ2k(FGcW zs7``6e6h4y?-SWsu{R%xB-R2CVv$$WDcYk~ph4(kI=Q{>(H;Z7eyhg^9EKAbiqVL6 zFqv+W`v_I-3*nr5+rhBl*V2OJG0iH{CMVvpHC|GMLjT*(S4Li(J*{E51yi;tz$R+* zBjXPz$9&x%-P|%HYm$fH6eENdLozJXsjimlv+*p`RkeV{v>;sop?F&;(kk_fdKd>4e>z ztVF9SkCwOv4|*RYdW$s`WV-X24reXp`&~!wbR;uI0jU8gXT>ut+B=dp^Fqti;v~OfhZM-lFXjmcJAN=%qC?cS~{fU53ydmQLXha(n(#<=X zDcEw!^0*c?+GflXroy`&)PRE;jfJCL9<7qmU|DFX=0b{fhJ!)rQ>nD-(`@#TUf`hN zA&r{p847yyPAEUE?!_FH;jl#JpyMH>=aipR7V7mmC;~$9J>fe=G2KK==cNxf$s@L^ zxx!*(OD1$>t--&sTTb~U%JnGiP1n~NB{FP~ZA4ptrM``biO`gO(=TXBgytf~tCK!m zqp?YfQ@!6MGHj4(?tWQNuTOKygl^*dD)i6n83Wl--@*3+88*l?=U1TJAW9Um`ZSM; z(3HKwX)_qn<$uGM0~(!h>61O7`rcpx3=5>!<{{BTvLbnHq~7b82u(RwHovgvQ)mrd zHi`9P<&+9-S&!QL139WiBG=cW5fF-UhLO5HD;|{(n;CB=U(#rJJlxRQYEr)IXBf9B zz@{VxO!Y!7+mtTt+Q`+59a12nLR;1`wsKj~J(TN2xxS8(Oz6s#r!gRJ!ApmJ^(h|# zp(y8Zc~QB)SxzzZ6gjSb9yh~6y(il5hNggK^yIK^e*4eW-I%j=VBb|?AIM{uQshjh7Hnp8mKM$vV20?=*sb~`Hh{Blr38Qcvm2yDtqg+MS<>l+S+-n@2$7MVM!YA_UMFZ(?zl0 zCEjBubmgdTIsSe_J2hmS*N?+I4r+3K0blnY-oJmp|Bt`_LU>v~zmRjGpXM^_ZU68G zdHu#Nxhz6LRhDaS-G~qK^1WR$y6gL@B{FRI8&P-qU-DG%;c8Uez^QmPz(DhPv{pQ< zNpri4wBsKpvM;eqZjYJJP0PFc4Xvkb-W20tm-1eO!;+R5nEo)6kLv6p1`HFra(2rn z)NC*;`d>f0RYb#zmU^Jr(b+>i;JMImiTxj@6S=`?53z5U(3L%y(ssnE{T*l4eR5K+Bb8iNSU z|0de2)o?jktotY9Dcw)f8?5LJf;G0^mp1I*)FCypFufDePVUO%F$lse8 zqs2?PHeTOjXo16$Z82jkvEkoJ%*1@yBXs&V;r`5K}v`UO>68)J+<&V>S-kFv-Lf-lnQM*&qdvp^k78& zJePyDD$&jhQDAmbVi=TU@ALIwLNguqmSdq;-}@9usLEVqeqtkiMf(ksj&FS~%DK>& zb-$SnTAbP&Plem{b-!dnm(KjXS@VO9z0r7-&VH!U)CG4PJPCu!1+PN89OV{v)!D_O zhCx9g_(2`8{rTZwP@!|H&Xm;&bq10(Vb$5iqAQ?5C&U*gjmQA?@nuj@xaq5u-eAa^ zG7H;XHAj9wYey%ki8LPXLQWEwAoNoJ+_I)Oh`s4N$q**?zUZ0GD1S|YVeW1&F?(Zbe-B9 z^gxKk-mPgDWj{MYx|4SS3BmKUrD{y;7gXaU*PbaZt~6n7*^4P)Uoqd)Ej{E1<)3sH zho;_SY!DDAs9cpQnID=J%oZ8Lg3gUxr=Q$Fqv^G8kzyRwVy`%tP%u#?*LnpObYidE zcl+`x!a?m_8;6-UiaY&H$S5lq2DsPEw_HcrERtQbt?4((lu2MvI%kz;Mn0YZRa}p1 zf(93kEd=C?=4-Qjn!y!!)F$x20pD6qw{E0ask`M40!76bZaBk!Uu6HwfdmzW=upkeFv=$kZa zb+6YG7?j?z-lXxQxGp+%gAt(G-WC5MHN1Q83KXzyo?QPx&8(<#yXQ&E0N0e~$(m*# z%n4Id*yWuUnwem7nHWBEW<02w5wXqa&0RIqhIw;vJhcsrTZAR2te`)>}sjgXiaS8$^w8b}G2G-nw zHKX~cNB^IWGSYg8utGD!bXG7#h)XI&KZYnD#-+E_`7%nfj3&4XxA!UbhB|~$ZbQR{ zkIFXisTB??VnDG9eYOdn3=2NlZb8kJ)p{!o9hQ80wk2{igksNjH&enGsU>e9_M{zq z$r}NU`1nORK30QQqA(CyUIi9$aMi~Ff6WHT44~-~ZkM!7=-tZn)(zV#ssqh=*Rw?(7|Om` zSkX!3xK^aQ1CusXp4+@(L`mhd!YLWTwB z%oW7FhX?ncJ`i%6t{vZA?3zFGPfG#%8qiOkK6!Ef`QwLAzI-GkG-JeEBBnv=GNg(+ znjvDY<53W~ZA9q2AayFu1uDf?p){Qb7GsXB5Aat?&2{OOF|))_x;MIBH>E=Ng7=pj z43To$7|oqDC@5U<3iyXm(M&`l@?=zc9F%NcWOHaYs0$;sH1pqOtq2IUn`VCfkY>K= zcK7js?ybxpveYbs(Xr^Up;+(yp8^WeTS1f-6X~~W?%F0-nQL;1mq}D56|&cJ*|j|E zqnYbJOOucVL4KBDu;y#*L|X157$G6}Uhpt{Te!$i(MknU61N!`;va_~>2LbktyP*$ zlWj3wro)UInHkebaxh2JGdV-tFd-QgB4=Bkop&ij0t(S|Bdv?jOF%yzk z)96j|j;4*-9i6Zp%U`k7@SzW(NghohscO`gdzD=CdOsBOu2Ogwu8!5X>$+e*7 z6FC&p*0+umYTObS(!YqMdG(C$BIe8Tyz`=^(Hzxar`t>@3cwUw^}C?_OK(FzKQy5j z3CEsgkx}BqkPqXK{)eMJ-5%X6<-Lj87HC_97&T9a5uX%|u$+=5-<~~55fj@ZL`uLM z+d4Tn_+=GJ=JX01&Gf*w+!0}mva}U}as|ye%TtiM%0^ho+OqGwrJ5$0Fx9qF4v@vQ zB|_|SoGz<%BNwZ*m1w&b0U>1@MEBD*J>u41%?AtGH7Dmk6hrUW=FC4yhWLf``jp>I z8s<+3Xa?UD*a`^>;O{#4a`0NzSem7vgvI?MSTicL!L8v5 z3L58}29JD%?V9DjoNq8-!+!pdt{##*%j)d+C}>=P{bPQfn`Tetl8R=rui!<1m30

      4 zYte8t_<@pU{Gdi8dGDvL1Vk|CNRL=Y_C$B_$kLz`Ql^>9gs)8*=45nUh}}oJ8xH7~ zk?#B{-TWu**KGAGq`GH81+~#=d`vk@rbAtA1QHaG2BYzGAbYoUX<#{^qXnXyqSu4@ zP)1T+3*=GIKnprbGf`a&YA|4<)*B^#q`F#)z9 zl1A1V*K3Hj7&Q@}9ct#o=_KhQ)zw5X4c?&DOzxkpYc&Z1E@}zx7v=qlx>_Qzpn_V0 zze$H>b+rUYnL@M7I+B$NjsykdSsrokDL;7>G_Jcko4+s}`ba58$$`L+yeRZ;s=Y}1Hn9qiwDuHNCXvJDlSswp1ko#~ z_QkOfW2o7WX=}9*sH@ox25gk{6MJ4v;OojENKim8^MsB+6(Xswml?sJgIGFgDz>@i zMbKctMs0o~CpPM8bAo`2vNle^=h)3q*rs-<3b-fvnf(GI}8!XhtyTO1B z`{`KbWWGpVeyg+Jqo9Ghr_>Xxt9w9#0&-6?rx#%5g=lrT$AQ4dSf`o49PeYSV>zIs z<}{zu6P_#Ch}G4c5ez!lTrb9awH(vD!%B{;G&@Q18dTt*g&L`umxStSq`-m-`en`B zb_?>JeqFyz@}L&-G4BhPGXu5x*pi@tT52I@TRHiRb(D1o_Bf6!PxqjnqN4{Co6$x~em4Mf!DoC*WhO1GRwCq6rmZcpW3L(ux zTwbRpKS zkN7ei(2;MGW!}1cOAv4oJ2nZj3aKu3A{cbgucXCQ`Ph72ztUj9_C651FyyTCA;6%6 zo*#)XlFF~H=jTA+qfFS3^D3~eOvE%Op?5~#(M7B@>3y86Y1Q@41P)s0H_?|HYEut4 zM@LD2rmo*4c~Ct;C}4I6qzWkQ#tBy&NUJ-vBFT%tlb zDnD;TtR@MU%4NAV|JZWCHr2Ep9>b_Bk%G(WBGJQUEU2WsGw|fH7{~(UD-Amu)PPx zCZy5>&w>h4VLhQ;PQrz{RInV-(QjWjykxYGemh7|K(E1UN0S5jx?Y0=f$u#q4a#0T za3m<8masL%p8ALp3_8fG+)WS(U6)r42JG9eXNd}Bl+8Ev zZlG|hu521i%0Ar>+hD+ce|<^|wY__%bjErzyh}%1R$tOxd-+SZ>yMA8x| znpz0}m>#Oq6c~#{PGc#9 z0sFjT)8haGxszE_$>ea$0iE+LOVS<-^Cqr{9L+RrF5pqnxDsjD7wm(E6uC%k{?nRsaTg+JPI1OotN~i53gX^IL+P!*L2--|8gc&Z#vbGjQQbS z%^{myGbKXt4!zPbq&>RSr5p4PC-x>HS_VmqxFR8Akf}uC4HwNUs8Y09#h<{7#{nUD_Xf2FhZ%hXfiihK3 zR;HW5VSaLYTph8qs4(9Us?X% z7qeFfvX*B(2VXwr-4FpxUq{%hLC7^CK8n7A0f7u@t|y`}i@|y*7qz?O-nKZmR7i$WV}5VG>}B&liaXJy z=>>NqG{m`OPyOx9Hq-TlZiy2KuDFy@vRV!Bco^}X3~0@?S3w99be)UHomLYZ90t5! zGJp@mrzK8ti= z+OYF#T&k&cO|ebpR5WHnlRF&t*H*LOr>+CnF6od^3{3++pD1FqzG*NhC|vSB@y8F3 zgoa{{#Rr!W=wMI@wIP4;t$9dQDCs(erFe^gP`j~N()qE&9?eFs#`b^v-*@k{#1QLU z{E2}x7OFRks&eG0xT8r>+GVF+_o@i-{iaD46*Q$Fb}ZMlO!)a>u17cJHM9QVX}ZTn zQ`IY^V?3<5Rj^_)-N;l{+%+UHEw1+s7|Pd0kj*@gaZS^{-EB~zd8edl&5DOtnzmgf zEIpPf?rfvmEZ<6sXL!WHwImL*x6m|g%vs*cSJ9**ZRQ%&m5_4!Y4;LMB904BWlcig zn=4CYFKREkjtku+XD_FJX_E2C9&)y$LQ~e&W+)Sn;GYF$$_5Zr|qrdtQ z|6g2*=^G6&<7yk92^~ZOs!{xij|eZDH|Z7+&G0~aRk9$0Lmw3>^xcF2q9cw4#T|7? z%$96O1Yk#+C^S$y;ib3*Omm=tgc{%o3^n z`Pml$Qa~%>0Wq`CR(4}1jpF&uW-{W1?s;me;xv;9>x_*ku=ic_J^#<|L?kGl(Miab zk#j%a1NU=3)Cl%|u?OxK1@7GE0PJ# zcV5$5HodG(RFq;9(0Ky{sJC9z<*Uo_5!dSOpTmZBj)+*(xZ*HYriBU7Yq_YbniRW! zfM^j6b5R%YOYYvv13QW>e+VpOED7FRd_6uqTsE)yO)!c@5p#+ycu{C4B4|*#6#XvC z1d1KGQSem8;GjckU;FlBcXSR_CM2yy}MI-JnmnTt12|rk_~QsOHk0b35{kxr={ZO=IC>BzqO`vFGwXs zC|-u5=?0{3DbBRG@WL(6g38rY<-R=BrzvFxpP)lDD8Zk5bOpycOQt%10t+he$A7aI ze_~o$>5qfyMh-FRV$LdA8kF95X>@P0;?0K7$467jg4B0RGlixs=ZRIsLi;_ZeSf}P zS}|o;$d4r|lrMVa%`A0P)4Jr2-lt73Oo9S(B!8Z#UtNw2EU0`8Ki({8o5%h6tI4vN z&*;q00S$zyCoXD6#ngH!8r#sY0X5_UTDmw%BeSlC^eAW`y&lo#+f<@1y+BG8o>JSn z9|e%0fE?jIPwI}k91&Phx#p7aUpM3B>BIR^lRBg6bL81u;GlIU)@rXgG()}?MG1xO zl~^|~T#6;%LOwSh%DPd+rTHpJv>oCSIQWDden6vzG|B36I7m=HIXxJ!^Ej(3ryd0j zqzt}D;;SxYA{cZoPy()Kyff;3mA)yi^TY;5_a#C>;ks9NOt*&(j>nmhu18i9iiyzU zzJ>kmGrIiwfPE8{w`OPsf^;kJp!MPF)iFH)eAGL!djnUrv@sa|Eu z+4NKYN0AHzKEluJ)Iy(zV05yA=2B-(f3T37L^Q1y+=(q{LBoV!mQ9$Mr#Or`A|4cz z$N<{dcP2?IVmb`@0O9EL+_XpD)0D)3J7E3Iaw2R{EN+1%Y$$>ue+NO#ua0SfYt>)T zd7k7ZP)!%ClnOZ&!tV)T+G~E&ENC^J|0BHC^gCOXB^J`Rg|u6_$f8@*Y_$riYg(rD}xA0+%%yz4j$r0W4OlxTU3H2F70_>FS zQZVFw>c66c3w*k}=l+qLyRA+A0v6IAyqQgVqh`jFKKGtJe#mbCbC=l^x~`ssW#S)y z6v2?cfnU+>pc6JDUq4q=x+z5HOEQGtPs12tJ5UgAE3#dRYL|C>7~#ENY^Kwly$3|d z<3k&-5cb}SuXpnvsCN0p`(Gm7FwL|*|0xq6*=KOsi#O6F(HbZKUsD6A%XBn0oGcO^GJ9!Jnl~rNt zFUqDKY!02}!oL6OE!Y=H!KgcBqyF^xk+9~EZ^0VYfElKY<*7|Sd3aA4@~5|B2&ur7 zPs%Yum;X0({L~zl6BhN~f<;0MhP_udY_v(95c=*d7-U3XNJ~cMZLn0cA_wD4$05(&biGSjXa3t;Fv`imn2*abHCeeTSft*6ybXK2 z(pe_aR)D;Z^HxmqN-(LVM#{~38#R*bfc(0gU}&rRym@W4peI{J%8lPb$`vFLUmul? zq%&`MmGJLx!89)fgIelw{4T2w-bOtx#9-L}EXP##=|g%eX)_wr+=dz8_4)dUAt2JH=4NQ z?jLOdPnuW7I!!?^B|`Bk{g(DEj(aq%nYz1f)iDT%4ALtcUp3d(LUeVnnyvL@`SBvq- zGRYMUn`hZPwT%ovZ}>1~M{|Gu11~U$tf1JG=pj;AAf4joKYzYB{U7%3#{c*K`}KeR zY;ZX2efia0A^F+a6&wdMY6uUH&bbdBkJkeMRb;vpY8U`t8Z3`Zx1{%FKFO(AHTS`- z*$E6Pf9rqtEeOeKA+Z}iaA41O~kiqz@}S1G;Dfidd(tw6-#j* zQ#Qgup?byt`~lVFFVed)6_vOLNIj2((l7lFIl<{928*>vx8kTJ8uJS@5D13oEE zH7L5%o*<3_&0_^!Pw&w+1Mc;0SVr=GN znISnE7MvR_mxI%u`CpN@6>Yf<>cj#C=%3LgbiFSRUI?tFnxkMA>cUIlNNzys45aW9 znCxij45aV?UNA1t=U>w5(6QXHqKQx8xTgUAu7R&;=q^{n6h}5VWQbCWNU^EG6<9_9 zd)``mIv-L6F0z2)Kv!a~g8+R!pxuEoYA=L@rfHHs=!K|Mvn zi}zu7hI@*HZ;tno6+H#;cT5Vr9wcX!6oWLGvW6g_UrpvuIl>o1d1 z-ZghS1h6Io=(DFXYj?Mm34p@ZKP3gG!d6B|Y|~7Wi0zEE2w-g#&?MqZQS>@Tfgu3; zbIu=k(<{9cr;J6uG5{b=MP#m?Piu*;6_JMkea=`*gH^hlT||PW-yPRKw86nJ0Jb*M zL0NhnOjh=tZ3ZMo)Ap|9@J0pNLVz|6J{{%|QPH(Iw2xixu>kz=2Om=TF zlrh^ilNkVzCc*dF*I4xsplz&9UI}XFSf%g){*-g={qF_ucZzOqoM9XwIZQ5R>{@3y1hA&id@XB?u7!qz17~u`*X#Sj|E@WN!vkpSOYRu#Y99p$ z&NS{1kJ1$C+PGT+peAW(Uu(1D0LCGJy~vrue)fQN35h6GOd5+U6=8t4F)IgiontnP zi)0E)#OkMNmLyM4B%IVY2R)$mVHvLym8fj$b^fv_9Xa-aNOc$SxN3?7z(y8ls zCr|)4@%re1H;fB%*LZaZi5<)iM{;JhGu9%2HSO7>N%Cf5*Y?Z+fHdtHf3kBI#6y6# z)}{}PbhefOK$=qZNG4U+{7S)rGxh1C9qUsL51{GVKOU?fr`PRv?b?F@u(6cxd>5It zYt7H$0W^t|nb|dQ3_u`x_EZ?z6=?uKnzGNIjIv%_*RmfdfM4S}{0Utm^#aesCTp#V zr7O`4q$~)T4ibO)#|gb6k_^+kc93EY1WX}*(#)p~Z3Y&x-?dZfAwZjqmsaRqGaiQr z(6kZsK{Ax++D2GH3VkRW+zKcW05z4(Q`zElt!yYbaHhmPOCNmeT09H@NRv3v8hJHJ z*TmuQ0Gj6T`R>i3LjY^i{P}>k^NP&bHF+!nP-`olJ4e|LWw+LWOoYEm(VQJSm z-xzUDF~>@-R(jYaIh%Yc17&J6dZ9fZD{` z$a{J^Cl-YV&@?!7CdIDti9FD?!3h+=jkPb5t8ltn%i#euar$DDKIqW3Tv-C3rk?ut z%VfcKXwC0Hm?=-zMX!>=Smi(-HtR+24GWjfuNv|3CrUSWJhN26DXF)nZEk)RZY&!WN0u zwM=n%08JFo2WCf!w6tp!1Pb70)^lj~shy1HE80UK?Cv`2DM=79MdRi8^mVh8d82F5 z00Ust&3sKOn)HydoG|Iy&GZnUsV`2er6;t{-TZ^ziyX)nSh3O4Bix#G4uskV=BJaU z_vIlS1sTx%JC*m*cl;z!G6Z<8nc*g(N%NaULrw817R=3OWj?I9lUi|~?jc=2YLY7h zI+#G01<%(sH@zrZ5%@6S<5m-%8E-`H{B}Qa;jM5Iu!Yv=ZKQogZwS+|)pav$F<8M-%OT{9HSrW!T7Xsq#DgaaDNx4kl7kV4a2 z9;f77dvkO&rp{h5#uaC_&xrAq4t=T#ZED|b=A-;+O~qD92mMDl|4zt4t`|qBNJMdXh+PH z>?*2=PR&MB7oFpB%i*99^M&@&^W;^$a0Bf^@=7jbgWJo7`eDt|*GnS3ckcsHg`e2}r2h_{CsV-4L%StW0Y|gN7fIzc`^>L8GD8nxjj67rLiKKCH0w5HvIJf{vCg3w^2% zqp_AgRZNDguQ5X0$2m-KZ`}4qC}5%Zx5!xE(N!$;YyjnK**+E~0RCgQ4$v7&ZI)&A z>|3*}O$nCW^l`=&P>9nwsk$_4#d2sWp}>arC(y=!SH4o}QQC3kBzjC8(kdc_nKLQ^ zTa;jxEiN=;LC;##buan+nReQa5kWiwLe2Ko<(GY)N~9}Sla2b?uFW>x2n`Et*M((RTP6IpA|9x5O~GxlLwf%@_%_8ly3O1zIpNZ zk^eewC=}(@L!_EOLh*h7W18L|@5GN{UBv~s9wl`P;5KzWIeNDg$GfTvFw{eAi?3s^ z>tkCWp?Ge1vYEf^-R1ukc}THDXoK3QjVM6>Y&aYB?#|@OoucC9U>54a19*#{bnHFk z`$VXRM;DmT^!Tbtik70CHW;hW0)*oGsiF}tTxOyep0=yTP$*yKpAT1b^(*~{--{55 zqo|-C)7k zHeq5<1rAz>+xW}Ec)u=g3sC4@PkhXyRWUi|7$qky4{9<-3;yjAqscVJO_ru5Vd@;r z=p6&@BT&OCw>2u(Bpk*2Rv^N=i$Rg4L>W}{MaoKs1O-a1se9Rp3j4`mGJiafr-D=& zBru#?;R6qaBqdq&EiJ32Q&5W4j~J0FIwl0E-VTCKmsGoqN7?a1#cW%Q$wXr=ghk|j zOBV-Zs=G$6hqg*)haC1HDGokRu?W%222tgZ-V>~tcZn%k>_%94`cWLfT)@K<`up&$WMK1>6D$)-Hyega*tBrH*^2&b@iOT2=@kaV~F{taOT7($It$P*^! z_^N>{HWa%eQcyWIJRJtSmxlX_2BC$Fsn{rxl8P2Yc$jcI4M_cXbK9245Q=rklv6ao z!y%u=z+Imt!hn6nK!k@0SuUUs^O~BNq|Mw{E(r831}q!8ZgMUQ<^Bu+z14tn{j@Iw z0v!fqnedyz>Le?N`^tnK4*4txP?a@X{c(~!Lc1^j104or{`)#J?so6Xe-Ga-pVq~D zm5;08%zJu5E|2|v$$L1w7acEd1*mViNV^74&YlWYRe)eaoW{*e8 zUyW0QZ#CgLEi*1xleEXSFB2j>Ovs9-kEb|a?5lWsION4ZjEiS_SgYfhh!Mq-5g+2Z zk!Hh#$q&f^DaFcg3MtDPGQ7>QoVms$uMPK=-Vq)qi2873@7Nrr_uzDl^vv^^3*jqq ze2uuki!PvQ(jru*1xY4C>}R~HF&)b{y%p2B$r=(Uz*2oaA8zP09o@QZw{xy~_uq_% zo3u4m)uS28IhB3xC13}2X|f*`Hm54KkrY5}RwR2>|F#g+tzAE()jMx ztj(a38e-^g3f9@ZBCWmZ`QPmHy*V|g{ngk`IDPb)_^@9 z2z%)6R$+CVk5yxZt(K&8*ubS~P3vuZF*?pOnVB52g+G5hnA3y5a=!OZs!|0iVg-M1 zQ-M{#ELgS0AYGn?0c{2)0~Q*ek(7t)meG;ENVKTtCmZ_$v0mBy5k#@P)On8hoFkf-GjSFitV$1>kj{C(|ljHkzRB$k-`EYtXH9c0PSs;qGWwk@0d(Qpj z?!8Bkgj1UQnJXC#*cTo9o9FirzJ2sU;593xIUXb^Tz3kOCWlM9B;is1P@85wJJ*ps zsD0qo*6ZnbTQX_Ji6zw%7wQ+B`qSw+O)E|Q&gC2keB|$ErzyTJe_Iadm!0+HY^~X| zk~U^*q(2)YP#XF6nx)gArl;6M0CtO8wspC5k_?KK7^!YaTXUQ#t z|5MRf&Xd5SGL2`v|21isDm8$D#x?kHFyYCJJhn9ZN(#QjIA|fwhy85pZC#o;P=Qa2 zpnFJj;xj1c(`6H~mr!fJ0fCP^HRQ`ImVLQBr7pcaD%Th_n{*1eR>Ps7fwpScKcd&x z@WsA-AQBWp zX(r$PNeI-I1_R3Z(DT31{xYro9=Q9L8!0CA@` zfaZ*v$riDY5HIk}o7mcW{l71wW)h-%QZ55?vu8eR|LMdqMv_Y~=c; zW(n0&Y*SSxLh;Io2508MN|Jq$T}`MEivdP4{=gC;c7eVc^8=tg{)ecJ60SqiDrskS9oI0uSDVc;oN*#nU~- zo5w-vlDBF713wKbbQIk%A3Sl%!k}`U&Js;#gQ;D2y<1q(P@J9u!zz`4kh_GR(!)`+ zMY736Q8^&EPy#C#DY#QD;#ir;J?pPXo>~#GAaWc2x-aZYKlO|ybHh(z`Ho2MNi%eaxY)})bu4>Xd68e1&Pa$ z_+~wuvW!S-O@=Coco<}EK?XZO=}naEeqK%8Q&LNr5Is*8dy6ZHRozvv;?6-gC=l6A$_AU@=*a zkGw})(6Hc!58N}S*zJi^5sh0aZXdW!nGd!*BozO~2kMc_e7?1J$RG7*t4a8muwctZ zOAl+aV2cDS`qV>$MH{+Zy1zK>9lC!Ad$w$S@~E@y$pm1{uRWsOn*L|&=5t}vmhEAl z*VQDe0=sT{4%tQ5=^$N|{R$tt)ryD-&G&sMt9g&|$#QZ?B__Fseal8LkJu(Gz)-*K zgIaad`^j#A-*R=355G-1P@(&Y57#>y%!jA_#ESz6XiyKIqi#5Tdg-rpSs9kETYkZL;$ zIwAypy4`<6-#huChvo~85k+CgX#bDV-7ITbeWlgVd z6^^3DEzy=P19i1|f7NeOT4YbF1Wfrw8u*^+evZn)a3^NxY44kS1FB+-ED({dghKIy_~*;%nDY> zvoaI>H&B5spKP~KJ-Anw5szL5wQoZd1m zC3R`ujc$Ja{IlO|Gr$Qz-_->(UcRTxHR$0qv&7S5L%$4vi&RkeybLvtg|k#(74n1m z{bod0U>ke*U&4|tlM^y(%9bQ#sNZ&J!s>_At1{x;>k-=OL0VB;a-kgiO$*&r6xi>F z{4b%so8KuJ>TV!r>_rx0{l|q&sUC9_y)V&Wh3j=&EBGm(1r%Ci_d+jU@BoJ)D8%|sDzEfTS_TP~GcD7!Hl zr378pXGiM~#`JET`CF)~bBSX`snbG-4KA<7zp{;3!HO*tsj`;XZiV2(4wnkC9R&;2 z<#oFSjtuQvHeb6iElHqmwOXYkFqGZIgbN}fCZ4U?vbd#;c!7qxo0V|t&+=@io|S0z z*+HS`T50!?7cG&Pc2;C{#kppeTupeLRD9yGP(|Ld0q%3BsPN*3K5w-N$7EfsXsZs7kkkj$fqa*^JJldSJ#TD%IA3SxDvk-8 zu)$nVGInNk6NiR_t^@XcHy)!=WH?jX$5v zX@Z`%vrfkk`CmduvGNcQUMVF)?kD*HE5&*BvU4G=?STUF#X#=Acyu7>ibD!zx*Od1zCyjhDLX*|#tn=DntS|mgNrmi3L3U*(nrI>3Jo!{mSIn3M zTB2Tr!-!k7d%+A3zJBtpnZ366U&%EZ#ilS|j5hvAnGn5=A8>hSRaJCNz!9n$6teHp zL)D8D&ZRFJ>H{{%G)po)po4(PLa}17yIj$f*A9pAVYuV@rvicyO{h_H~o#GN|Qd-04ee_C&3rcs3~nV!$>hiiAh1TjE4N}I1tM}AJZZj)t@2(6=SoQQxx}LNWUKk zF;U#&`V;=)>VN$9x3qJGDzH`0A0~92f7uSjHkSlfii}JGw%m#W)Bb3h*|uivP)6N;>ozcyuZbT#Zm8Xn z2L}{ww?L$RuX+v&#XI8X?)nsy_`+LtJ79vAycKAu+Y(8QE1mc-5pCN7y6$$hwr|?X z`%bh8?})+s?GiBOmnJgYZ|{En@C<7dQ|mD>v!<*7W2o;zZMQSVG*tPs*{Z%rpkx+A zSjhe=mbHm?Ml>k)dBx1kh*lApWa|bO6ZZ01>eolM$K5e)Md@&vH6=a_xj;)pW;FKj z@t4oO5CudrVnSdei9aj}0$0Sx{euH}p_}3~4*Ze3 zv>Xs}m+6+L9*-X$&KCK&K+&V+@J=QHLE=OD388ru!WX66JDRCGTewh8(Z>lesBU4y zgxet$o4}22L0wU11E-)KVIfSZ8T($?TdkNx3XGzt*{%)2_rs6bQ#$0cput1IS;cH! zKoxW)8S;t01>If!bw~()5R7DhACK3AXM^=gA)*xxWndK?PS7wQ$=xh|e@ZEwv!8+1 zYE1-(5ub!$kr8H&{9!4j6nnS=vE2|U0Aq?V^0*morsD%@wnVRIKQR))w;IvXhU~|P z2o58D6(TVti>+;1@~dLN6_~9FlS#m!Ux&b{K~vgQ)ne4Y@o-}MyiDMpVN@am!~RPE z1jFdA*HQC&h26=80;Sm46u_;Pm33fR)DZ9)>fWQl52ag^cWDSxE~IZxY)7y66c!~GbW@6A2PQ(BX839yHk@fMZ}-Lypq!Y`nwn>+ zSf`j?$bc=@nQ>Vp1B-r<0qCUmfHuDs(@imHnDNR6r7E!JgDgC+u9lKcF{hfb%C^J` zu;ZgF?BnsQS)P_G`QzR)k<@@KpJcW?d2#<0&38O%ikVt5_mdIJF_Y`SrVlg1zi!4G z-`>TQjAG_4gO$w@60jssDf6>O)Lr0wwbUvU+?;6lPx5HDpt4}djLtx_u z{;(tnTo)ggPNggM^nj7;00_Bv@zclObd4&66e5HH`U-yV_#3Fk1yC{k03cBS4MOMf zyT_03JrG_f=4laDYA^`+YxoJ{p&fhj)!79Fh)e}Mh+V=jAKQE;+))e+5nKv6R#Aiw zA?{6tSrEAiQ`i&w0-nY(r&wkJC37f3LNY{N;WCHn$a5@+_}n&2pEs$^Z3YCq&u#o^ zDb8whTg-#lyED@EA)YuXjlzH)jf;(&dPuYItOJ3gj=y`XEgKEu*Y2FI? z)nrbWJ_^4ydCdm4S^@f`f9UY zH}m|OI88mAOJ&HQX)c^uHbbgAd7k*I!E!lC#*>O2j`kv&fU#M*g$?mvq@m0P0X*e_eA;cB? zds9eJ+>#;uVH)P2=_O*`>S)IQ!T`m5R0=B^AQfQ9^)&1w8aNAm#awR6DC!$9WN)QG zp4pr%l=oE%z=n91>UpH^E7dKzRrq-p+xrr>WC&*kEtJK$%ek+D7U(eG{WQJpk(fN< z6^C0=R57>3d>HXJX~>~J63q8tmre&OrqNPp(VVgp4Er=?L_aUiH!5agQ{-7@c^w$_ ztCZlb47cY6AKUxGMS1;qMb{{4po&%%g<#evTg{@P{zi5N6>A+S@ob~4%-JSAp$&a> zGefeuV(%se8JP4BsZTym59qpix<1v6ZAyvwefLCM8D!s%bL^B?CwUm%p5qQq=fje* zd(UyP5X{OtO$)lIqxa>CY@%}&{C1C|$+!ws5j26;mao70b!V47-gUm%3^ThmI zq_<+f3PKAJhl0dq{OGy4YIskcco<~Pdzo<}p~+jN$fDy~Q$LOK)53$%iXErPMt28+ z&DZHYD03N4@9BcCs>!D#6f=XKVG_ar6%(O%Bl)&)`;TJ&!$V4f4hh9`&59mGq}LVb zY^TUvirGjCY84_x%;f_?k0vkWEJio3M}T{gL|63KA-x*M=QD)Kiux}yIi?6YZ6oT_ z8e`g%=tz$!pkF3++6gwJsfB5OMc3vF>lG8(k@b=Th4TxFa-N3ecoTF*8ADi;ruf5v zfWP8DrT0VLn6KjTs$!W80IA_=5W0-tJ)>hWnU11zMR=(L7-VkXXGX?b5&NVl-+<&= zo(REP_$>>%Q&-Q@q*81R1}2k?nGn5(U&mj@J}Q=JfDnQ)4`M%Cj41bw4n^ks?Ch=* z2eWV&9>8mh$?zpThWE_;$L^yOaK(DOLs)(R2d#@jORhC4rnp;W!b;<1_nU9$_8(G1 z(Kjh*1Xkn+tzgkP4C?;S%P%6jG!?;wL%Y}#AP8JrygW8%_8!g_^#Af3HZ)nvA*@b; z2eB)WSmEXcO|8=+m0Y@T6+(9L?BV=KUdyY=X(goy2cOQ_ zKI4BUYciS~W*OFz5-)hPY>sFL4#}DSiWt)rN*CNJB`k>ie6eik%+gwRvlQu(bWuG9 z;PZ3iOH+IuuPYVuiXMVYa|jbciI#5MZ`WwvHHS)b-Iikc>qku*r1v%kwF6rIdW!cu^~ zV!w|k+~c-hk()Dtm<5>&OWG0N%;*}GtuGY;HeBI*=Z5eABrEJ7iAC;Z&qnOW3T zTx<|PiEhd*O248zjHhowT5=(MD;RsfRakK*GGG#)B^9!_!|(sa)G$Sd6?c^dPNJJ& zAsl5bx^lG~&%0zT0flJft@U&7-X>TG-w4qI$$uHkE{9@#86Zg<$4p56IK72laoAo~ zo(ur(%Iai1eKqcVwHn5jrWpJe#8M&@ z&%58|I*O^Ef{x{Yer|O_Q{6rDzaqvIT?!l2MOdH!{gV~FkRv;Ke>i(YpLAO-1IQbz z*?KXuug&xE+=Kk8QAG#eLag0I9^|gtU-I@|T6wk0#c{7lldFtCq$OYwx@3jSd{Vad zt!bH4l|X{T6)VB#Zs<*M+9n}a9uytCEZSlgWG)ApLgFZfc|{e6g2;LP5%-fGkvAgO zDuyly>(j)8GCVuD7rX%hZ=#4r`O|D9tjtp!UU=YPkokCJ4o|uJW6c57F}0xO3yT#O zn+cqiK0^SO+!8_Al0w!{Y)})JvIR*-`BVhKsnX}|@t|1u7s%X-77@h79TA*fwRuU^ z*yG8YhjWq96x*!@D7QnPq5h!=RyQ>o(GayR~pHR&f`#URhq`wz6o8 zw!7Oi)ALeAQsRubm{qjwUWSuZnN^i$R%SUDE;{Eur+>ix=s9QJzt_LyeIkGW5V%Mb za#8z(#kzU#^8|oE00;yEiS{VSp{~GYO5owMQaro+gG%AyMT$?A_~yuXMl+tBJaj3* zW_=_nM4IdBV_#?Ca8t6P2)krc1dl7cA86h~oXPJbHL@VtpMpw|YjBZ3+bNgU+KU=i z!SZ%0L2!a3UUhyTNj!l_qP4;Q9tyC$Hh5g&)ot-?(0eWBEMXy*Z;J$hNTMwjy=b~m zLXPDvRRdn6xIF$#zc=aLo)uVH;7t+)(;u2}LUmDI+?tN!bE+lNCX1|T43tou7mBCD z`42;-@Cir2ua3tEr-N5%a<@C)8}&HwL5*o8GaF!-5~RR{YK^E&?BiEa8nTjAOUU6- z1pGXKKW6E*SG-{DLZ3SE1w()@(yz#rj~HdTa7$H9fjeJe2QUJE*}~r&jfNu|suP-v z5*-S~2So@aG+g)i?eXrP;doPpn78gdihxTMZPTHep`H;fP(=bG@FM#*50cBuZczlB zWyk$=e?SD;va$y-0>4hp3+&$h8@dWqt7eHKAZ*(ZM+jJc^Fw2QX5P9FUSYkd!!xJV{Jy@Pz4lz_h({=jqO~Cl4Oo*U3&x zeB!hDLR4YBIDT_9p>XKUt$ur~O+kqs%GaiB@|VF9j!TZ?K3!uOTeOmij{s{L2PaJH zj%oW1PH=0tRLPtn&11oYyFhm>5ooK18D6$>w-^Oo2gk%T{l1 z2Tz_(;jGklyr4@lmgUQ!3io@8d#m4V+p8K>VGC4b25*QcobM}6MAMER53p^zNMPR# zR*fmVmEyfOc-b2b2b3WF5AD&{({_|YvEV4<4E7YV$Z$=`aKHVc8LnBRS!mj3BRe=@ zyQF*twvn{y4Rb~9?WXIwRX-=dO>7f6wC$EtF znsaPR_Udp%D$+-bVLMy`QTQ%R#MPI~i%>8F^8kjefhSb&`!};$5DK;zJW|X#EAzn> z{|Q$0iJS)|)#{2Cv3f))>$<0FW;iIZV6&)nR)dS4rg5;nU_R!*jtZnw2Lxql9-m*P zEc(cN&_ez=`@D)jtJ*xGw9tkx{0@JmdV0x-HjB%`2~kjel$>w=!E7cEqa|qiLtK`w zinB~B88o5Un1FTDtV*BLzZFlx{x^Sb)GbC5jtlfoZ?d_A|LE!}@SfOj9fQLW^m7yJ z;~~~~b4RD$DDa%fmj>L!2=s^Y!XB=yAMG6uhhy+;ng6Pa`eVUJV(}H0VphKhi^%eU zm*wb)EFNVh!a=Y`f}(;U)_xq3H(`bQx^Q;}hyWRMQn_{uXhRgm9l;8%tA1L|xdNv$ zCKb$TQe{r!3j0SQZtxZ@Clgg(Fv6Wc9{>ygrwM*K{t&zxTGN6}!V_eOz(tN52{|6e zo}Gd-jwi4)q;TF$aMJAij-JXFxGhg$wV=YAs&jhf2dnc4T;#aq%8wljxILrmpbBbR z0jSQl?;wTkeR&zVHpcCPE@dE1B?l}>q?ABX_aj9=pau>&13G$}br9HAyjw+_2|FB+*PmL>J5LV7hUDZJUc!?>UYwk5=9 z6x4wVrD{#uiHuVhF58-dnIwcis!^@W5(=gez86*qel(%Sam5x4mLX1~VimAZyKYKK z=ia#6oE<$XHycU)jj=@l)w+0TXVleG=@nEqV+x@v@x9kHLZ$0_*%HUtB7ia$MBmIv zux!8es6y%{2GlsS%Ut4T%ULOnEaV%ZUeaEq8juQ3*M#3U^qK*M%1r>MoZmEhZi#av zS3ZL%WU3_}434Lh$Ai8;fv{{#dQ>5GYYHmix9#0-zo|cStSOS6HGrK>d!H^1RV}#^ zS_3Pz$~01QJ{nHCUk!(P$-1m*RKP;5R0(&-M@#T!RmmUd(iEeLov-b zqY665iX_=nEu_$??y^1Ur01f`b{7RK)T+DetlaV%L?OEvR%_(HDsfrnY&_tEMh#qz znaQ#PmztKS-iW5gG#KZ1^xbgF+SdS9O6cv*<)LMh08p42N-&I4ndQYWR-Sf zbG|I40~Jbdb083+dJbr>aks5~s`J>KR6#>rA@;Lde6fAp8^pCc&+IluDwsm(dm#}{ z-b8n;%rj^u=@?PSl=6@^H?AyLwj~{?P70^No-L=UGIaJXx zUUo-t@L*>cxw5n`tz>7AK}^p`;tAb(Lx&yX=n!H-oT~XWATcNceVu>bZSTF<jwYQd@}zS**>Y*0^G&H;)r-QnJcv z7DB;ES)``^(B1n|XJ}ijrVNgtzeBf8DUB`YZc#=Bh7iDu=K88F3QmimOX{Akyt2y_ z{-*;Hg3E^BYr1T;w|A%Ci`29vpeQC$U_x}=5It-kV`XrF^~38ojS`jgiI}VbD1;l9 zkngx^P!$~2Fy9+P!mK9YA43VrHS>~5rR6UO2>0Ae=FD-SVmzU{V(6TqXIVnBl9->E zOrr@EDFz*N*{u7-RMFiCD4awt=lB%Q;X%@!AKSvJBGHtKF%m#^AA zKK!Dpv1H&*w4K8emUYWw?xTC4Px6%Y>A3P7lyF=U4nzs#2o~N~MJcn04Hge3JW>{< zd+7~e#uUq9WpPl#A!XU3V2S22p~cD)fC-PZK6PJ|CfYt&to1#XutULDYXm5K zzEq7WoL~f7dJ1+}U*U|+)2?2DF4j{5FyRrMx<49z z-yOuG>S8+Ov0|3=ptcx`#}XFNTsz@Y?Y)@h3X(90jr;~jWg3I!Vm8u23CCHhRncft zaLa`KFr01xL~y00F)$yE{}5kryI31|EMbuva>IW(9bBx298{7co_=n6ZZZ48FoG?8!LCPE&=&+r7{rR(=M9Zo%!-F-!X#Fl&(5imEM~4D2#0Jj71D_T78_9nNf^Y=zymQE;xL6$ z@5StlgAxvD|EFDSrHy;Y1fWzm0qkY4oW!A+1?Y+R7!T~nmvY41X--i zHm=Okd;g1B8G|F}qO)`+7AI`S@MEY(Sj<|6Xu>3`dim`uEcGNpI~2^pGi(-6*e<(QschTRUUYp`f$eh$ z&7v7R;kx18B*Q{{iP9B>PdJ#EP=RJxn~8B&z-mC7tVc+iXRb?rh<~Y;EQp?PWn~y$ z;0SpJ^~3f-Z|?`8_Q*o*wTWeGu+CG>jF2cWg9_n~bp1RU4z>{SL=Gu0T-Z|!(o}22 zgaAnr5$GfRdH8PJ`cF?j%%s6ikcIF?jQ91ISP1b|Sd9iLICrd(5;7=o5#Z)@)Thi> z<~CP&q!GE8={yBNuS)$sZk;lktgnF z^lGZjR%7u(bdeyo{`Afh%!m&Uw2x{v)<0$tNj4L06G-x1Z*piA?rFE(*C*RM zE7P4Eqe%LTlO^RVT4`>f*23){N=#2DGNx?RQ>3V(+*BzITb-?nSwx}_61BFS5~X~m zF2m$3v+3YPhIo9Xluq3dl3}1$BICW9@iih4Ib!Pw^Yi*mc6eKjbxiY!R6mJYh~I8b zUBglLUsj^gGl)d4SabOGA5L==yvT4ps+*@~rK7rc`3f(mxPmOqvc8sY($m3$94b)> zQk}+Q3wzvSo(*0MhOY*x+FwnNi3mgvKT?j5hl6oB9O7J{p5~?asK6kT|EArrH+Aw;Rd28ImPql9_90X zE`O@-THvUa@60g*_g4fetT$hE+b>4l{mt+2U&Mb=s0!{zh!6jMbF$48ATFf*(L@#E z%i$|XcXBw?o4W=3M1s&@v~WVTE-#Waaacyd2BUo5;0c2>K9IMFgf|9fRAoUX0fA}| z#<)_#4f$ffH)!_}9-@?{U~^NxSBwr!XwJ)PP#DEf5Pu?{Dh9$4@K0Wi4=}0O-#kQS z3tYQpZb0Aq`a#NW7YrQ^ZgSNB%>6L~TZH&9`C>|ff)m;fYo-JOEc73^Pejfc&OfGgx5H^?76*bd$c=THUv0}d_8uc2p)U=DUkJ*`v(4J{(vaB}0~NYcV@%zu@> z7bNCzFsk?wrjULvZ;v@2=5r)OMj+hgciUe-uv4p44HPW(1=sXCs}U!Xh**_;-uxnQ zZDE0jQSeR>$AXI(@5yI4Qqt%Abg7L0B|~GXOEf@*cI|a%L|bJ~aO^yCWEKqg_G2!o z1`_;r`}o=5xXDlujF@0>P{Q%?>!bc=XLz)EJni@Czjq%$0%nn zT(i0Lt6x9*ZiK*&5w1asQ`PL9JmK=FU4zODt~v?`MZk|dR4AbRx2mIpHN6KbluLL- zoKHPMLL90)B~rn*mj|3rB<2#aDvuJ1#mgx6l`5$Ub_zXSp;Q5t2=##n35EJS1*I!_ z3Y=vgs!$%oBBIP_HmbwaqUncdwvbE2`otG2tf49D*1qCB_T_5roGq(vI*wf8sJ+DHKE!NrjvshsPH&cu*iQ zfIwHxW7d9Wf-~^D(@A&y04EJpjr^gk9}}JhQ&lpPL!|kUlq2=#qwR(~g@eL8@>mv; zh)tcYp9cdZ5u#a8J7ww$_Qa)-`6_DCh)hm(d@XS%yT_r$y83bJTdG4Uw2A%mSYq3(>IV@~m0uL`TT&1!f?``h&>2keIlUqWO z7lg`d4CyjWSRuWxKR{GXmu^u~v<3bhjgp{sz(RaQe{#Q#gprE1z|X27608PQC~4Uh z)WkzD_9zxt(H86iX_y49M;2<*uYekRRD6K2Iae;&0MSqhdW|k3P!|hCFpdS@EK}t# zTXqIO2?0WEq5p}c9~*xToN3epo@`~DI%Nwi62*dsqMX1ZVtuZ~x;xw}k*sV*lb0+* zCBj8@hA;k8>TDK|h(&`&P&W6vX?CSeW%G>yEYXB9zK9Vuo$+CwSV603x(t;FN0XtT zSm76mYATyB2Y88UN>GR}7ryTu?_--2{<|oorNDb9-!i5A!9W6k$vu7Z&%I;XPgOcl za9UOXG>1bIqIG#MMN_bQC7&xA!Ag-Va`E;o5_R$RHM|A?HeH78{uM2v3LNY1Q?tS8 z|8)NXrj+Z__rpP#_S`rB8UJXMtYDMT0hs!0z*(kgeQ`YL{O-83yJvH=|G$6zy#Cuy zl~NRBNCAK;mq%)S>WcF&Hus`@g9XZ*!ZbiqP4B<~sZU@R?C2$72}e-h-NkHBpR8I? zS_9;8_i&xLUVJZzYk&mzjBPqy69ru?RTBEWChL|LR3 zmfm6s`n#R(?o{V>Td>Xzkl>!~^u~+iDN5CeK!w=H{kFbyr(k1c1~x+p_B$O!6sgX= zV2@!OK|R$SG%BOulyypAizLYJ(9PYeke6`;^;GX*FdXTTZ$Wu2k|3Yq+h>tRQ^~xb zHajdqf9KEBqm|SK<2cklt{_tKE~pcXBdBjhYqftk*@u+U2cQVzJA?Sz#|7nN96|kC zU7-t(b;nN1w~jU7g5?H^NchfQaEy8t?ZY^NdU}K-S?!SqUeL-2lwhA4b&={>+nELX zmqiMZUq<&|FOEz|g8cSqss%2H=}Rdr!3gH5anm)optKfAklz_kx?0Z`>W5yVrk4(U1vWh)kJKZ_*D@4h-jMlc1uU>z7Bi#x5?X!)^s)ESzaOlb9Sqt(K( z$h{Y>LnMQ2?P7bT(>i{$r;C+w{Y}S6JaY?}ePnVqs}e^r16hiBs?};tI5OqTGN~EI z*;b2FghhAuW+nz%Y{3$_-)jAL)i%GKJ=o@Oog%%}`by#baxT1H=T`yJJ%yA}@|O~QU4)N{QV-1-Zma-K%^q6n8p01?a-e2)n zYg-}C+a|YNdEaXNK_M+#gD(Tb?^c5NDnR_BLY%j>zX_0b71E-m-3<`;R)V+}AnFMB zMP=*+i2AJFqKJn9Vs9m-?gfZC!f#O-j{?NMtVG7Y1c-V}TvSHy`g*ISuS#7MaT>_@ zQk8n%zVhn;Nnbv{sBHeS`EzaLJ4=lC1ygDIl0B<_W`Rd7uaWN=?A~CnKkal|NONj~ zD^zVP&eV4GazU6n*oju?1vB6o<>(<9W02F(R@4!0r%?n26Zjbf3?;Ld>!t*QVQYe9 zdM$E6f?ex&!FKu#ss^mko?_azD$yz$#NcWZw>Yj>DTAvG-Qu|3)EQiD?iR=O2JZtj z#wE!yWcK(-`LfZLb{|e;j;fAh$uY+~caL{UK z^dDzWbP-cO!uhgW0orU)nk*vCTJU{KkNyQw6v4-{$^C3Vk?CQ4Rb+lxS7h2ytcuL9 z0u-4()wL=zf5uCZ=?=ImGT$8)*`HNMSrwUIuqZO^<5(4$cd;q5;SW+WzsON!+R?JA zl6l9ABGc2nRgw8=pCZ%yiK`;>D?3G|&GxFu{Pa_i>Dk_@$o%Z@YG6xEvW{VNb#Orv zmH=b6J;p9|%QMJ8upWF%0UxSA6a-HOpXaF=Tv*Q^Al?AO;4ZxXim_m_$e%`B^vr+> z!zIhm>5_!l8qiu(;E$Zi;SXG<0Ddxe+SHOBlb3<^bz`CR z1aui_FZEfLx}mKFDTHUXDRmB|p_h7t@iCIbKuJ4YTr$?z`cq&C1RzpX``DpMOJDi( zcsSUc42LvLC7q48ZwsP(7$V}MXDx!ooKr2QHbTONeia1w$A_@KzDqB$^ zAKs+(0#_<2V_2|g&KK9iN7lb%PDcf)M_Es}ZFD3+MIY-rkFTm(0-^X0AOL3~>v)o^%wHHAIQbUGP)Od#7#& zkHKsDMIZO&=*7nBsQq%|vZg-j9_cm5>Nvg6LaUT^=qA|aWUy?AH|mu zt&Z0(doHTdYERng_`EV{z8_wLG@tg6t*(4tdo1I4v49HQ zC3(HoLPQ*0+O5h~FhdrA8GM2&gcs%g7AADjg6rPN9#i>x2Ac{S45)AtRTpe|Du$F& z1=Wanirry!47lK`k`oH%_n^Ar}Z3K)tBe+URTedjqmate%SULy7iam z@RxLX4!t|MJcn=dwF%B<_L3Wn1*dH6$8nco$Y7gs-H{BYN4wFflx1mrAmfIkIX3CH zmBCq-#}5#`IHT?{4CzW~yi@a{E6x~!s(Rd8wlIM=)3MNFseHD&CN8v6@;C0v$thT+q@;U%}Wl7s?cnTOu z?7}EJTr#6%5z{O~3n^q5gskDyS*|#KC)zPA;x^7ymNkT zTv_0u#@q?+U`12lnaxz6$CRqOC}m1;EmtHz+_`!iPmhk`%+AY^_#w{~1oNBKw#|XF zLC(x^rKxsVt{8qnkmP7X=oS?7LO!}@U=-Pd;ob2Ax z3%d3cFNf|;yrApBcsX=$Z3SK1jpfk2nH6+BDlLcZt=|W7sVJr@<2{;{VfufJnCotI z2(=*pw?M_=-SXT~wEW8Nv&N6$=hL-8+)udizEU}SE&nVf$7Fci;tjX|3|UTS6SPdj z&$`mO@GHTqiMr4$|CJJZWk?b0PPI~E-})(H-QQM9?3+48tQYtzCH8IX?`%gv+jM_F z@_!agLqtht_I4jjz2V-)E)QLGqQ>x5aQPwDUlHGG?IQ%L5$3iEIzQ%y_1H%$$7u3c z5JuwaCR!-V^Ol8`Io)~rVKa(>Uq!)un*}s_F0=|7-&_HWo)oQu#y3+yqtg?ug2rF= zO)0|K#}p)*4B#wq)>(i^7tGVZH?!u58s3a$Ndg~}BcXg+s?QdLEoMu?fTGd9Fh}j4 zUJfl=7(WH1q-v&V5|Jg#()hRlPjmbRHyo|DG=8K!E2YtWbJ=qEe(4CbtzMSEE0-hC zGyY`>e1kgzt+~q*_@;IQdTz8Vfp6puH1blh5%PW0nhLSAmQ7Kx3JuV+xH*obrT^85h{^5qN~-#a~r-pVN0gg=49Z)A85z2aY< z!>{^1hn{UO&*7%n)A|hMNx^#d=&zI_OOz2@NUl~n}KkkXP-YG_lJ{lg!$!Mn2g{cue5i^*F?OC2+=!CYnXi zI5e(h(4=n9*@)fP)tbpymSQkrzXT${XAmtsrSsNG@ZZc;D-J?HKWvZR4E7F3!@+Pm zt|-GJ%w~1e9<&dlHCkqEk&-`v#q5+}TLLTOI8GjrAJDbKjpX#1sozPo9#9BBNfTCd zM^b}1lenmux#f^WglkF!{y7c+&X}WP2Nf;8HQ-9aZXr=A=19H+u7Hn&3rbMKNqm`ySN&2^rmX;C}+}NBnod(^g*jLyKg2q zqZj3Ln6KwM2$A;^JsBfR^hLKC?*19)xKxv6JiaNZ9ahU?3C$VW;@ZVlmqMRUb_XG# z?=}tie4~Rl*%$fG>ScS>Yv@=esaT>O7^vldL|&xM?T+^15n;|s5C{RiNQ?e{_jQ#B zD4bJj1JtrWLV$CxvxkGsF~wB9%oqVSgu+!>=zPy)Ey-{=C@IG|BIzAWF~TV&oNq)9 zKm-^Wmq%FM05ee&zshvRbT+Ee9q=-v? zW^X*vlpfML`~*@+*ZmvS%U<`DQk(gDtVe1wl2Dwbbqi7?MbR;HHn77G*z=t!@<<}9 zPz*fZ=oz92^gG@5zV?~SH_G$p0(P$Znor8d4LP5_1Rw&ufqA!4kSY;WHJ>GPP?R=@ z;1FDil_iVp=E`(~iF$kKNymJh%|bP&92bOy63D48mr0j8 ztIB$NoQKZo)!PSA_UB9v!xSdImRi4o-*?;niZlD8P2eD?ursPxF`3=G6g(s1U^TD| zBJH*M-MouFi*ki5%BphaGaDX=(lNU-ouTKA1PNtMd6qSN>eU&i0Ou zrpvDLJ%+%ZHJchuY zmuo6|FLl?Ovl>W&;YuYG4b57u6Xh%bZBYdJYS3Y-@!@pRxEN(VV;jJ=9GsAyaSpW5 zn$OvsR6XRX(xCCuWdYF8({=$lMADXeK0^warj_2n(^tb$r*i({usY@&3M^F1K}ofo z>Ld3-N9Q7#Z{B4A1n`~y?we)YdHlHti_cHbXV=tz;AQ$NvkaVX3@5M|3&2zTAzcxy z#*R7b)Bs2|TsUeUU`lY*MRbAg+4HFx!?Y}nfS*1>h(v7V=JP)Yf15D7N=YpgE*ygZNZp zw`IOA5_w5ZOAUpC^nA)E2vQAakJ}^Y2xc;>3Fp%gk0G#^Xzt8g@ST)-o=-yv%U(JY z+2?aigPrmyP3U}1I>t93T7G`EBKa9B9$(hI{MF%bs282{DWNY!i;<)x8~np+JZlar z_N={q99?}ipMj;XMc&iAAc{6Z=G1XoQUzY9E5}3R2Er38^WEe$>_YQ7ygXWSs=JP4 z9L9%7T*o@q;hYWXky?Z#6?7$}knX%hX#yHS6RPuO*QmPv%U}LdnTPpCCWF#q6oEct z9`^K5Ki^WxK?vx@zf6%xe!qt?gGLo4@_ddJ2h?I9Ay^-EaiXC+*dvc-d_I1@=5t!5UPUat9u6_a$iE;mdwIuK8p{m8S9>PIp#T=OL1@0nEMSCy@cFrDl)%ldt0>z7~vpCi^ z={DlU<{QF2hRD6f0b)>-VJBX>Wv-$~xI+mC`Cl!Lz@KG!+N)7oIG@xE%@_iE6}w)T zN4Nem9rDz%xd}F(6G_3zo|=%o)9`K2=Q`le1?(LCRW+|M#NhsF7@4^qTk3ELQiIMqwFmPJKeQYr> zj)kArFg%^#_1n8h97_?#Elmq}@shYyiXk8lL!_>D3w`x^)rjy|j2JcSwg!@+YWi=UA zw=s|EbSs3h55|4I6^Udy$FlH+l1h%uye%znO!TX1{jL)8CLYbVZ+}`|qQ?aul>zhw3UA1lKDpnn$gFIJ%`|H+jZ_;Y-?cu(P z)~I)IIMEH98DON~uX=+~_rOTf1gqB#N3~5ew0*2az8R(}Q(HW6Toq>5?L*@as=S#=FcuL&yy$= zE#kW0m(u<0_vu0Pa=Y`gjb&g5_iyY@4-VpKer6V8l)i@~npWYPNcGJ-_F;9G;W5nG zj!wFD8PVc6*G_xi)|;ezcjmBy?Q!;dTol6R+7fv6$9Eiw=yip?5e)g&H{JFz$?-0I zr>QeF>~w}c^1S1})}MY&0XNt|dwfhsOvtouzk&PusM_w1USdJXR_y|@y?Wl>#jWl- zA48_H9qH%*p4PFwK%0?T7D=XjZ=(|{ZOM3Q+<0`$2O~+DfKp%n3O5sU+n7R{5)B7j zgtLem!=WnVZ&O4WYwU@}h*ju!pN}U;6UQWA^(S}i4G7qcW_+4`S8id-R-%exwJ1><-sW_M$S*!r2K6lS!g60Cz*y~RZ)DrU`nqvB@`3+h_wN5+LagMtw1 z3z)`^Fq1T~gDAv#f;amjx(p`{(U>ZS?JpShXLiK6^W_U&@_E(KqtqJ_qt|@AWIUa!6*K$l@S{zz z_1qudLOtPY-_tx4hPWpWFwGNal#A7cJQTW2^QwzMsNdx#q&`LU)!tJKL09u1!$zKM|69_H?&H&#vIufu6y%%4Ou=sG%LRqRTs& zYQ5@VFW8Oa#DV*bao>pcM`k8Ko+mMZFi7=PVluFr>!NvRz2>@X8H+8|=CUH0NhY&7 zESYxUHg1{_&EqaSp-h5SU%TU=eYse_PGjMMhy%UHSTc8Y3q<>UeHlF%N47hyZ{din zo{_PlR=Ugt=-e3EN3H#SJ5svLU?8>U*H$)?Er6;olHs5S)qTbW<-2@nTJ@6*i?2gE zc-7QDoH>WzWJ}KOajl(YhN{!mX`wQ^0tGCXlJ5Vt{>U-8cunG=RT2$BD4r#Uk3|)6 zNpga#Zy5bYkt_V|RfTAwp7fmhq2kS0-jYHyUj3dYZgzBY@E?15e7;oj0_aYd$v5Do z!0q5|xE;GP2vC8Vu=PiG!bAgG_E_sfljVThf1T^X9g5JR6jex46b>hbm50r{u4H&X zLBjk48e+|m<7gHpw3<3&X3eC8W;mF$+98R{FF5rLrnF1kYMbGatAh)?!JKfmQ}%sY zekm2m%!Pa(MqT6kfH_2~9YJ-^5}>3o#q^a)H__s=AXE!30$CUS*=+ZbSApg#^&|>- zxq??JCxz>tTtOet5Y_D0YC*SGDX0+CKTC`0l+R7w5>u8Z@cDX3!A=L=>%!KbkhFEQ5KrQ0Hh z6wz%aclLEVX)yZ9rNF_bp+1sZaFwQz&!~q0xW0Uk>Zn+Cma5C-$G*|D4WaGmv}{p{dDa*@_FwUu#ASSfBd6K}H#!b-`p5cid{WIjoEMT+<0; zeHv3*1_z;=0F9@+r~%p?RwbOnn0kbW*CW>#w%s3QK5Y`IL6Q8|EoliY$xeCC5`bB9 z1Pt|6FHxo1{e4lFKr&;67M9B+&6G?S>g$1Al`a2P3+DwQsdNEz^LR7HeVzrT(D&@!m^J3ZGolE@G`}>(yd*8@8eTQ$9Aj@0OTGT=?vv^sY1$TR8V$@%;cUbIz{15WfpFWb z+-lbFih|AK5VJYf+NoKC!^Dim3}n@JLW7EN<{Tj-I0`=w1{~F18J|SMV%mtSXbP1e zs6PtqrNn1pf9E?R3)PLt_uTrGp3~~{IT)g8_8jufT5B1<60fRThM@ktyNKJzVw;0G z%q)0P!8K>M8@w!^|D1&V)S3n_ER5Tv`y8IhK_W5DpO))xUk(J%G6I*PEb_K{aNnDQ1y; zMeKMc?`YF9|8z!~{QLq96P^40-*Xhm&C&E292Ls5!50cPS*pmw%_)aj)~a4M$FwrF zP!>rn@=WFfoOO))&m1e|rbkbBEw1o>7PkkYlK4iV=eYL){~nI|+N1Zc<&AMdCl;nw zz*K+u4bfKL5wCG6aR(j`hXd1p8^(s0BF`!4KsD3jayb+08>ub+iB1Ojb6K*Ib~-Zd zccVj(bIdPhHuc4}y*>AI@Ob7*F+<6C55mSNeK*Y&aIJTfa8mYy?6%?Dl7u+;3m z+w{-bP<;M#p5<&inJ|EwwJ;25PV_Npof7?@%QeOekv22_cO;x49;wWR_R@0UId>E# z%cD7DX)HKg72=nc!501x;_goRhw&Q0pSm*U=svSmn0~=n&EO)z=M4$=j-S(-V)-ER9Sksj*5td*Uu>& zAr9Q1V_|lJ4JV40P}G07jiaCDugb=+k9jVz{ov~dk9JH?eem_py{8Xpeq;9AdP65L z%^ffiOJ&%dVJ-cEn?9#I6*}Bh%4|I;H(Sk0a_Bb2 z11SO)7hk*lg-i;EzSR$w%{T#vqpoaf;{uIvm7UqhS8F051O`Ln)jwjJg@>}SO$jX! z;r-3d&J*h@A$@Mj^5u$U`SPzbWns6Cu@fZAMXYIFL)-0GpybE|Sh+gkuWgNJB!QN? zAhr!`=^wRv9r%ps)O~aSE93mlZR*F6^_2&np!)m~4)%|ENw>!AeU7|{uE)zX|4Gyi zuRimwK%=Pd5}Ec?W+FCDAi<8|yLTARRN`cWz4*}q4!vVbU2j-tTnwHh5fz7<6%?kJ z9yA$_H1AF)I3>)dO_Yjcb_YCL9RCsn)*o(7$0%Lzds^5!zRL2U$XDG%il;VV#=34Z zQ)%}_;@E-{#l3{8zIsO2F#oTQ`kUkSYn;8Jgly7xY$Yq; z`h5zOa?*?+ZJR@y`;?yv@>~w&k?8c$s1$nxHK&iI!u%Jw>~;JINX;up;B> zpgpw}5h2yY`$_wpjhs-2J z4`|IR@%huYX7(3N!j`j#XBPm{pS6{#ZzoCQYMtX^h zRuOg&oBT!I3HNomjmXkN23<1h|*1U-{L8^ueIxdn*@L`^i zkYMWHTB2>6y~rNd`j3DAYsEJleZl`}k4Eh`Um#-gXgGSq7h3q5r+G4;#0*E(f&tBx zMGIt+>Z?|&yX5z#Rk_Em54 z3i8YGU>v5UAqb}%y9i4&s!WAE4H4)))oU^;8mbJEeefYH*H;ZveG@H47nWJ*$SR%R z?Y9Rna6K5(WGdF8^&76G>cLh291-^YH{+gA2axsoujsGJ5TJ-xcM%;oXziNQ#kfO@ z4@`w!GLxxR6eh9~DMVO9dw}^5?o8HY!%Zg5SY!k;m8$$SaD9_%0>;C|<6>@W#zm@+OIE09zn>DNAT%^7N&pAX zG6{eu0j2DyvO+V1u|TJQK9XrHP2XDZNM@%J7+cxB?j3U2@uW`nXIHk zZcuZChd#8uCxE~yOhXwq+2!5iVe9s9fB6r;X-QTORi~L4etG}a?ahC%Y)vc~ z^4>)vinh)>n^6j1ZB3Vx0Wt=N|LvEL)I?WyM~GoT$QVK)a1I|g_>{W~MN3|FkvD@; zY`GGU_4{9$r|=jHQCP9>?2bD+ndvWPHyb5_97w_q{;>Y)pYJ_=+}ir~&a>@%)mPhh zt8X7{-Ft+8-+%nH+IoEVUiIKnwe!ur>dBvWzIptpy1n_2o4=~=KHhrv@ZO`HJ39{^ zKcecmx;x#6FA9DZ>^0+TWV3H(R)bcX7{S&=3Jr5pehjx4lT?NT>=!LNCOeITXqo0u z97KzN>h~w3L9V$o z{2ppWF=dtm&be_*z7+K~r|WUXmg%UXw+!bmeu3$Ry-<&bpeyoeYdC1x$Tr2FnO%B* z`=O=}5$n&hlF;Nnh?TqHgfdAK35hmQm0+1k2S?=IqAwzeA~6YQotPk+aFooj`V=B0@r3^LtQHEp3mCDuD-r#q zx{J4XM+0Z9SpnAhW6VQos2NZ6oFHRWWt8Es+VBg9+#U_n0^+54E=CxnHL&SnU{lRw zKI5uc3%o3Hjb6-3&v`B)r1$N8eq2`A4Ui%o5Bq3T>t?!{u^Z4P`Yb4=!!c@P%ShfI zQlky>vaowa>`U0JnIc*!`dLBL;`z8*m+=0|Zfk-Tu zcfbF#HKj}w;?L2|TToCS*ye3Q)tBy>m|=KX_7RS1Gg_QyIni}HU2S>`l1JeaLlt zy)hziMxFnH>@-LqibzuAL>b_4U>`oc0jwsDo&0wa>g~OM{6}RiP_)VM_;nc6jt*|!zU354wx#G>SwFnJ*WOh?nY1X9g0U)15WPHY*~z!R4e zp@m^g=S<7YRHQC_$f2i-5bLXt``DST4v|)}#X-I_Pb2<|BqH5lmsoyeCL?|o7=;2v za5xr?BdcbtmY*a$716KJL+Gv1HdVP9JL@JSjjo~4>QA=J-;!F_jhof}Xn0g@kp%CO z1lsUqhD~4YMk)$}Q@=}`W)i|rTJ5p9kx6qDv}#ZMw+^W8t{EXYb2lC)ZtCs-pZve$hyewD#op(4)hNu0sCSYAct) z!PGxC<&+1^Yp(&&>9Wofh=?4P{p2wlA9`|u5MBNhhd27>C?*0JY~J^~=C;;4S z@7m+}!NVCW^`~225|<~xp_^wgfHV~`vytOmI~`W@{L^>#ss0Brxrb*^!FN3I2?KDJzpHt*HBPZ|{YhW~T7! ztB}Fcn4^D8!()s4K^Hq?aC{{<=jZ_%#(>~2aBXl|C%347M- zXmm_Ul=#dT%=5TN?HDbj0%DWEw< zVY$e>aY|Lyv_(Bnz6_HA%QI{Q6DQ?r_4~uzh#1(+^YLLj&IX>*DCvKb>1Yz#8Dg+V z^}44t*ixyZ?jiPf8%>u9#yr8k1c3F=u`@v#3d~tJy32k11r}ZtlQ6o|EEsISB+Zdv5A6PG(jF9yS}u8;qc!`r z4v(yX<&YXCW(=8w{hmqtoi;|9m03_~hvE3$6E6alACD;^x$e8`kYbFxJKU><7Q+kR zCu$m~{(vGDM{VftOU%>_O;`aK5@b&-BrPz8*m1?=)0Nk5tih4s08zg;0FTYy$+C`N zIVZy_3ki3fh0UFbSa}hktNNP#2tj@O*1v(64yETA2ftLfoI*^4)$7PJ3daf6H;KXK z5=%c`puzdHuYFG$_0B~#D7^aDclg>9id3LwAl->bM6@Xeb4lx>H^b@3MLU=P2kHT& zd-R3mdRA4D2`McR4LQoOk%MH{t!I39SzE-b>@OzuHC9kYKPBb^Vqt!##L{N3$l%AG zn;5YEeVEa1)7}TZRSu|G4M?I|}2_DEy=;!}H@I zyr#GV0Fi^wjT=!_#vf+SxQoR?sz=AsvK+G7q~R8m?5XamnIXv!{LRoehgDyfb|7d! z!J&?Eo!&Bm3h-p$|Sxq9>|0LGcGV-#IS*dcw|J^0yUzxL9s3$nhC>1BI z;LyORs^N>C+uK)NJ2O5>lTxE^8VINK3a>tG_xFhmCXRpnb9><_S3n39v2zX7`m-&j z`X9KTonk2H(kuVOI8kIV!yk)*3@z?5`6|#f5$!M4qpkO^CcXTNXnr_?t4`Gop+e~E*DOknWbTmN@d=C|08G_}6Wl5GP z<6iKCMq~02BhDxxsuK5)p;rM)&sj2sG$SOwkdH;71E~7)Qx~klcbwUtdv@=*KgGIr zs@XF3E%52+v#B1bz9}Ip_gt(d=9AUdFMeUH1tn>v!GO(`vKAR)W83!Zx3-KL3D-3l zWFI6d7ZV2~;%yRQ&1|tjh|zI$NHQ}RQjDUx^^7C&=uaz%jZ!pdFz^z!`1Hxc>KLbV zF(tGUd3iG)Q!=vwF_dad331?N5kftlY`9`#!PUcBP1Sa0Hh6ML1rQkyh1-U}a+DqR z{p}?9+TLhLyPk0PzJJ#Bf4Fvl~ z6L@@ZC9bB(tYAc8RZ#+%`bT$hK^oR=#yjQ%A}hEzFyX;cf$4v-$A=hf@)9x`E^xL* zaXpChM;Z>?XdB1%{ORP0q=B|IJqJzwV{>sY>6VkmL>U=rDwYN|=IF+i3uOFOWlZ zOeIDpNah4FG$!UtHjvD9ITGSWvxH#dORIA2bSX$(W)M}+qFPbn1n4-R5DWGNFU1Wx zWV}67M!G<)HGGAW3mjyGh?Ge?5u4dwNa317XXxr*HA-PNXW8us5$!sVQZBds!Ll1t zG-E#9{8y;0rbY zO5Fl5+&rZ!{1eNETLvjY1bIgh`Hjhs~~cUWsPH~uT@2;>R!V+N;^w3a+AU&hgru?->wk`p{J+YmgzykhkVJN?s9 zDkVea+(m{>!POU@GP)m@e{NYRyIODm4K)Rw3CA_<9q)f{TE*`cnr9S{)cljpH$&^^Vqybh$}RSxlt}J6#gZ>QSt>|umgtslwykh+i;&}sOsNca?!)9#VX@(^ zi5UoD7R-J*AZtwb5&zU`_wAL^Ejr)V!ZmQwCcvdG%~J-J8HedW4R6$EHW0l7HJDK|B?`gc+qrU#RiBla z7+c;8maOSw&cw=F7ju)wpx_Ed{)tZY!RvQ)1j}lcNoKE=79>|K?{Rz3O`k?8nS2@v z7(*3Tqt#qPS=w4P_qhR#Cm-P9J|BU;TgYcmL9%g++md5Kgsx< zUB_>-M}YN3<7y6zZn;er$v~owPA1QA#NDX+7&cP38+Hkgr3zwZ;NY_z|4s)FI@t=@}IG zh}~`ku9=%%)~q~yGF3~H*#J?}NRObb)8>RLGA67U5vp&IOSc6Y%3@-x$2J0${oCQeQ^SR-hY8}u*cAApZ$-}RFnK-n--ZR|5SL?Q%(vyW zQ63zphhTDXoZD))*AOZ#%#b?=&Mg`-5LMKbW0AIuCgPm4tYXK*md{*u$i|Nc8mj=w z-d`|1OP%6Q;?`I0LdtLGsE&@(+o0DuL9A?`&pGo5kE}Pa>J6eL_|W<=Ck+Y`tElR{ zz~>)OwxR>5(ls)%#g`jhjocW;Ro2wzNmGz9$1KBs@=7B$-|-x=fh- zp)Zrcu@p3&;z4^2Zz8t-s7o^z9jjHaER&BNO8`}0pkKoVyCknO7m=!B6)emIAi>9Q zHR%M)5b|D?hluP!R4v_XA4QNBjL(7*QHO~24dkQdgbpCRwM2;7?BLWX_4(Ouw=me1qz8nF7JK}|BIjBTb#P1s7BPoUB& zbh*<-d?X?WC)49r;;e0E@5@IM@Ym*JTh=CM{r+8gctArtox|d9D$59yc!mXuFPhIJ zOpxw#+_5Jr96CJt@eVupmonq#XqhgEbzt??-%oKU7(o>XQ?GV#=?7d>oGOcmvEM^!%v-MzAE8^bKxe;) z*>MW1k;J6E-RbVDE|)Qseojnck)DM|8VLwJL3aD_Cj#osIZ#yMNBFxvMV`QuqjC#2 zj>s=(1EO7ga-N|6;I0v1R*>#Z`QBWW0NdXm?%|fJ^0d5Wyf&Xpt(!78A?uq~oa!Op z%uwC&bf!0(FEK+!R3f6fkk&AAP-hnCGTPX$ZOph7Fv6^_izwe2G794+GRSe!e)HVK zLMcVb*k~v<_L>S7LK$*ib z{s%<*84lD4da2H~mI*ENy|j5UhhXYUG=aju^m&{sc!ISUD&1eZrHWUuM90?31S8*M z(_dZABl)1^|+wsKREH z+Z{f02~;|irNH8}evM+>bq}ai&>Q!AYHC`r$Z{2Hm8XGMU-q0xZ)oPf;J#+=w8VWP z2k^O~Z#0iKWjs#V#Q@FnW8C_~yL^WxJ%`8D^4a5eJea;82&4^>Zt{#&(wSoG<^+my zX_X>BR@%t1Otz8`^*lm!<4ZF82x?UNkWqfGfmo`AK0#B`7`49o02DmYFjCPAEC%$% ztehZ*tnb2^Mn+HUQqg@cMy7#BdLj??8r3~! z^%VDHQt!arUw+aWkeMDAR5?7}@42fkNE^KbT-i4|wv7-I3BDtN&V zYd*Ajd}d+R)pv*ON%de1DFRm7CNr#@gcLOa*ZlC9f}xZcnVOKk5PT|4;IU|B>HeyA zaJvFm!D)O%iv-1$Igu1_(Pxf_G3py`N$#m05<1!#ON5s=EtTHxD;PF$JQJbtj!;3> zH*W#`7Cpo2%j8mg?30lmSM^0y91};2r(e+wdhcm;7 z)TYi)Of(j!z7dcSv|cge#gvgaG3yjD*qRI=U>EQgtR7vA6ja}Or^oj)xYG}zK`PNp ze2$U|p~k8&-evSKz1>Aim?~R=rqI_hpFlafpnR9?2eA9-n0)hSSi;O!khEWe5kCZI zI8cB<2zKXCuv{0R>z0TPT-lFFg-&&Pqxj0}U!EL)FqFxCZ$vj*%d!sDINCcpPL3l5 z)d;K9#plv&3JTF3G=F4#lmC#!KSOf`1QY7MR$xsqNr%}LCW}#@e$;(MQ*eU5K+tl+ zTXp4(0{Vpj9Ymv;MNi?d>d)>5&?bdLa@KM=6alRp=gZDaP{S{8@s~|OEF#vZp*Yr{ z!iaJ{Sk%P(1jfhfT5aT`;Qoq)$!IKXb{@~x8;5YK>EE3VPI*q?pRk!~9W@{L<+0=g zhuh-%rpYEs1p|q@e8V19BpO_u*bk?2`MNU2Zi0)(a}$}D@Hs^n=sL;F;GFDeA7rlW z;0_pA!kF5ja{d!0sD4`Q@FW5kARX|?)~xMw@;sJ(Yat9pK=wqE|4Dyquk3jY&oK`qwARp zg5)fQlb{KRE4D4Z{}W{tMN-B|#mj0tRsKetB%Rq_!MMJ z@RS)s8P=sOQUlkbtuI*h`aLrohOO^Z+y#8DM#TfT`Z~LF?(o$C_au_l+$3|;7uaTC zOm5s~W}{gJ>`Goohl(_7@GbqvzyE(@j=*q)+@mJ0*Uls zQqeB2o#I);G(4v1zUEw1H3h4_@R(7n`~CI-(>aS^as%RKoxK+;>Wvz)zV?`}SKKlT zVQ;)4YG7x4G$hh0OWCCYr)N?NV$6EeP9mStbyL5?MTjUdbkEJG=oEh&3n)aN+$SM0 zSX@sC2=}6rFEiQ7cAY>zf~;Ew;yLxz8Z#cYj}h3f#9CBi1PhT478Uj2I)!ZfG^Qep zb_xYpUwCGB>|{c+Aq^m#E2@l{jeu;`JFxnU-G1TvbXMsV(!(6maBXab?uv_Ar3PsI z@pr^i`9{U1g5 ztE2Mq?qrhQ{wb*ZCUFRc=`Q{Z$4U%VhOoCg#YGEPdL|u)1%p+Rxrtg|eS{;~ok!Rg zc-TG;MY%$vkfRivA4wrH%N^0Zh7d6xg}X6B$c!lpF`I0zalXZZUY%g|Sd_fn|7Cji z5otPSSxgpm5d~`iA}-W&ghfS%^W?m+6yJEbnl0#XjWUY>3bei|LXayr6ogwFn>s6P z?HCW!L&FdrUIj-aM3D`4+ zt3+eB$wCr@VD$wySQw%h8@&q?(;4quRQgc#v)TJAVZZL8mv%QTBLAC% z^=48;2c$m;zHHflC%bk*VhZZod2vX-21|0n^hrW4{yH`G{Oc;JDwItz)mQGBsm2bZ z56$7VP{wp4K3$n)9zSZq8=(~Bo+Z^qQz)}okQ}kF^+JaFJh^|tS7A$qCJ65-SuomA zeo}ft39}N-<|d*6%~8~!KEa>lQs4_H2AGNNBAA|?KOzQXycx>)7fPs})c4G$bb0q< zAvH(6_Ip~4hI(`*ln8giHY{0YX7LJM*fI9_Zhg7=_tuOVWo2pst3P>mjBR)1BfyA< zu#VqV_X3sv)#hz#Jk{msbB=nLahuobx?GB>zOn=UuPB5j+M)}q>a{hXO1Uz-^>enH zgReLKh~#8ssw;aJBURT&N|d8Mso0Fl`sbBd0d&%cr@n-~_k_7ao%%GE4qYSqGMv5t zua!#Jn&l$jRVc0oJvT1c`s1%Rtz*GXNh8F1ogcu2m|ZZQm!0j( zMS`mFG9~o$U-zlCUk<7M***EUoV?9Y|K2mC552% zjZ}Tv?EYu5f*8^!oYskqYr<=K`izSQtgqd(;5gueYq3W>8E3_~?A~hO%HRUJpD{(?IU8NpF2o7f;|Qxu(5))2G40CogZbK*m8fp@#d!#!^0+LF67& z8F*;!8oOqa`kEn>l129>YOH#Vy*pt=UJ!#%o?KOp1=khe6RRk8JYW!gUBM~iK~~V2 za`=i%j8OzBRd z5;%&Yv7suoD8UI)6zwWH3evQ}jRKDjE-$3#+D>N1D`~&uH;f`mnE*tVF2g{#(BMR> z9MXaZiMu-b1AWEjMbj79xCFfg!bnB975_=TA}FrCM{>XOkf^GghJixSE(5jkri)Iv5TV)eQK3wWyU)TyAnu{X!u(9i$&)m{ z(jaemGut64x)LZp&5#+b9QW*+u}2v`_Ci?^c%Nnq6DhgX?1n?LhZ$toJam6#jF0<# zwlGF_1vh<;;XQ|gi?(pRh+7pZZOvRc;J&}*K8>|C0MasjDb(Tg}Hxc0{kJUyT(CLIdE=y5QhKUzq1MyF$_M=HrP zxnyQbeiA|b_`5@#{~cldyED zRN(hhM10ERiW~n3saJX(tT8z=1k#MrAfl>pk;YG>)}K=hZf96MsQA`B)I$}&3H2OL zxI#Xn0v!*>a?Ei!=)ZBgs=G?&!dI%K#s*^^x&D7xN4b5evBv%O`0(>vKc{$A`rGvp zmbDu0qZqO&R2_BO11~-TG`aB8vjR|t$rEU1LQ`E3EGLsOgqErs%Brfhh^7Nsr z=N!M@T=`_2(0>vP2HS3B$cn`;eiK?{P$#)ou{)Al$Z`-a7G2S+#QK-myZ zAd1@}s&N%?K|9aWLz8=5b7yA6Qr*F)UI4+WFWjesnu(5CY|;DVv(Q8Zk$7Uq?LyMy zh_{JLA=WKaniCUm5SABSAgu6#eSDW*)PiRgZc;oDJN3IO_9M)XTCx|R`g?&6I?GE{^k%G}>i@>{w5LD* zLQ<$!-;&$mj=j|$&q=y_gO|P0kSC6nT*$$Ca|$BHbKgw6O5HmvG&$;jW+Cc}kOo*` zm%nU&BX=lWqKPYibTb!pg#PzOcC#UYReus(BV=;VQ&W=^Ovz=mLeO=?m_)yxOp$9c z)Z@%_4+p9y!&|nrJkIQ5tZ_;J9)((OKI4!SQxOz;RY6NB$)%@;c{1IYV#c5(PC80c zgV&G-VwKVbsP#{_7=B6-X11Ef=_?s7;eZ=*s(tT{-|J?}c#A|sUUl0qV7;ZPVl>>= zXBm{fpm*ZU{u@;T8C&4Thm^Noz)b$XhPxi!lP0KRj#{Mq&1ifM6(ch>^TfssxpFoD zX*gsW?ubHzhR5i{o}TA0+nnwsq|SI=P2i%QA{!)fS~F6;PMp-r@&tTm_HD{uRmRMe z*Ozg|np^Pd8!j6#@BOI-_XVaE;~$nWv%zEbDfmlUv&1DJxH!;K+w8-^ShBv4J;LFu z=i@g=6cwu*G?NHR^w!y1hG{t%84ce?=T#M$am)J(Oll{9jAjDT`xeP2Y~aZYR!d3B z8`fK9P&f4k54S8$VjSE}(#E6){{O1Yhk1#~T*Gn+|AgO!Y&At5$DJY53#IPhZb9h0 zZLkIyU(g8x9E)@WDC>Dki}mDjwnVL_bnJs&YNvtLk(OsPh}%iRYJxN zNF^92S6J%~33h;GfflVq#sefc?%wTLIW2%SH!`8R$!NC-# zVM(oRl^Yb@Gc&ztb~yzIIhai`x6Q%p?Kikv^))fV8W>+7(p=)yj^->F#oXs%^`bc~ zn)fx1st4*+5ZCk-_c>P0_^Od?tzf<9AQ}=l#QMe#d^Go^q!phXU@p{v?bRf+n9tCb z6x4y9>j{fPlWq-$aONkx7=+;KZFI5Bn(yQ;#zzgLoBflSa?vcSw>L!qP_vW4hlPah z2ZzJy#AH0fDVH#QYi*xgz^+7v_2aEO#lz6rOO}cXO$Ls0Owv5-U(mz-msSagz#!F^ zpBQHwJfH3%n*HX!bA+}igYyhGV#ew3y4`dazBD?zE9Bx~je*e{9BBpP*YT?m>WioL zaUJz9|54eTf^>f)Swfnxr8?i)9}RU%rp&PDo2t3j$2j#>>Oy8Jr-$Mz`;%h{^GRw* z!Rf-J>m&hNU%tQd#QJT*zI2{sNcG-=`3ycqOWLLjVBjR$c@mObBu4;W4cZ=!+Ql<) zQIpt>puwco&N&ioiVMvDEP}Di0C|?dX~Cm(ETb1W;TcEdHkAWa`5wClU5#HbF-pnq z!Gy%f-`I^O85nD-_3oSN83zD`d zxDV-#7;d>SwiWE4) zCRO4`>YTu-{VAQyEvm1L|DAAM#sBVehW(XyL#s)|jNss(CYtY=BGu{dL8)AdlWzktfaQc1}GQ*p-fak)7h^u2V_i zGU@7^Pd}U8Rposy!(Z!nAMnROLVuX>l5IHFV4414oSa8(dzns%P*-0YJa(uC$!s6C z_k4&E^wN+b&~=2+8C7WoJHk1G6GOWp`JmV5fN({YiDxmr-n;AE_x1aa5F~0t8BF9z zhgPw2LD#8+{%|+4+eMntv}G2_tboiP-ky;nY?z0%d$QlcP48N@Gqcl1=~(6fr~deB zenh(?*!Gy(O>?7Mnukq?lWs4~~gw!fYAD9VCaVK|}CK=qBM-2=oCVK>?=Aj6^Jw0Tz> zjslycJU@a_uNwk27};WtOsZg2tc-#vPmife%VKfrGnR{0Vf_$MNw}r#0N2G$4v(}R zW~QGqhoH~#Zz0lHRIKqKoV5-et#$6O+dfWQ$Ca7;8KtM85DRuozuIKzTK zHm34sS3%X6s0Dc0F&$$yK=3?nL%iqQx1SFN`g+2G{&|A6AVewNb&?Jfgn`L`<2q1i zp9(g5xQt4oQc zJ|^TehH**Wp(T+jN=Z}U8{1U$b^XqRyWetI-ik8wWY#9W2&ugl;G{F=obK)8QlFK0 z^m_Z4m6J#B2Fwa2NyNp5eazqGSTNVmS*#ll5Mdd4Q!?>RzF;$S%>m+GDfzdG|62p+ z@vmjcpcPuccSNcGx-hj*U*T73MZeU>X_H5cO&B;g8X-0Kuj=-Hu3qvGOrBV`?Mez3K?T~~Z>RTqb%YjyHlL8goLEob>%}7H=;IeyL zjE=7FjJ1;<;1D8#JfL<`Tyh^Eu%MYkF*7@MrFS_Ln^5&NTn*~7C%WIMtQX8*=3t1b z@giL|Ux$UXNG2}X{9M^*p!*O{M#!brX^r7>>|-H-(+v~ciH;N2+Cg71S%x#Vi(Jff zf+P!D|LB2br6Vq$&zxM?CP7%g-|FdETE^Yxdvh>AT2Tf_EdP*Poulz#?-;l7A=$1z z*7X4rpN)*=@3)Y249k^taAiRygo&VXu=V>7Jn3D-8BUj#Onla8^)khzhGsJ!vGUJWu#v=7NJokuV_|8ed9EGlH$~;1T$brxUx&m0Zae_&n1VAc0$7c|dgAyr&kL z$eXwf7iS*O56v0z8M)6hrvb$pSscYHihcsWAify>=GCd+IL;y#3 zHuELy=0K=A6mUbTLf#*?_W9PfP$>%hOv#FfF-Z`AYf1GLCgbjkxc5X5N^8PbDp>tc zJ*B|il$4|aTK@{wFdA~zlbRw|Yrnlq2e&zK0#;DC2G|N>Z;_+cLN7M0W%g8+Y?--T zwxujoef=rY*7v$ENgVTx{hvg;=4dDFy%&l#Gj8Nr8L7TT9vdt_yCb*<@c-m_1w+W$ z4CY#t(;#6+N%33U6%aX0(<|b`z(5;T$e%&~Ky#>KW-8ad9;Sn7K-JfS<+Fizez$A! z+Xyc`(!QgN|Ga?R;MG6#BG`{ugx~QJnJB9IJCf;lbn1q(^=0%^T!PHCe zxfW%CdQn*QNB+9=t#G!?8En`xUFMdtUyaR)!f<%ZM2O958Vy!oH|G>n#lK?6rwEq8 z6=w;{n3=K7WY=i*l`VdNon^#y4JH}UA}v;>#Pzh9*~u*O7_Pqj4G!aqu9~D^ zWCE`{a*LFp&&=6#^coOba1g*gGYV-=)Io@I^cdA1=MBtw6lM_{kop48JFKsl%4zf) zp~pBJiSU8;NC&7cpx+9Mu5KDnD0|Jg!d2{)3eU`kDefJY@mf8jqC|q1^!Du-2!Ik^<7ynDG`4H70#G2U382tb04d09&E^Bdf7{RO zt=aCEn@_SocMp#Y&&&!W6X-T;5tUW>^Ef;_JUsl6bx#FL4(MX{;0Q~<;Nsa}-Iws( z7h=hyFP6GH(7}3ploi9%Ls+)v=%UdfwGh5fIIU9nD>O}l%iB%0;)$OWy}nOa7N*_=%Vuwjcc^NCH7 z-GEIDmbw-btb1FGys+xG@4AE2X=)f#DAXL6|jg**o6`o&WZud zJ@EY``f_H%&P>{tCrOQ>x3fJ|>qSZw9S&*@MI4u!l(;fJyGa2NHf8DZ7Cj=WV>$+8 zHnVzY;!4!NR8-KZ^@8L6WkCq#OF(ZDvM&}puiHDP8QfY(Wnq<*S(0AgZ=d#HPv~*E zakC~9EGZY)UWc@^Ve#B&QM1Ss2((Z@`TZeMj!;S!8WG+isVRRu>2@kxlGq{>EirJo zyvoN%8?w1T^jSS1`jX=hg1f+-i4*hLtPq2`2|tfp{%OpH7!5y{v0`+#YJ&GF*dj+G z^DVDBJkorQkd~a<2EAt;fwCA%7*eH0DZvTeqQxOh5hIlG+#PNPC2vse)L#4jUSS!D|C;N zvhgmfKlGa~P4BO|M>Z!8Fo$_Uh5jKMtXyK^UH7MDWOYVLC0ehgAsN+*sWuPw)aL}hNT|&`NRIM^&nus(?l0l_uAPyyU zMMJXF#owoROiL_aLB1)`$j#>l(LC-! z77V#BNXYuYA_|dHE+WEv%Ks=NR_5uO%E`m!xLXXcO)U2_i7TEAHa93+^E7C%{|XkO z6CvrK6-#?|CAdSzeM+!NzTm63|A6PN z{5kTp9Dj>6>nGLT!5=z;76~KB58@HLwBJ71-ff!^YbL}zkh{Fdh`h!w%R?)Q6P?J1 ztR#vR$>3kv*Bof^oYYWM^gUTc`U&O{uLx>xwQQX>Q;HzOx&<}l(Lk;RGg^s_y5c+% zAl%1+lz?)1TW@FQ?L`hxhF0QGs6y!&8zh#%gX3eLOjTg8kzr!!bSJ`ZpHG2w{egN1 zaKy1wlsIE49eR^q^dne;qw6<>0n={X+ed^oeu@oLD)?REN;{ThVi=WVhzcUdCJ*7p z7kjVac>7vnBDr&y{dzM)m*`T?b=3=1;oRh6=V#~``_Mny`=!fz)qc+1^WB8m4ypJT<)=h{OzD4+4ME40U-EP4$$J~Z$8?kFc{G@k zs_7Q3xi#37^~NGy!YQlB7~sPWRW(5d%wm?2T1TNFvuaVnNaV+wlflqVP^Kpgex+we zLOaO~0Z4{)awO+_?W{#~_ZNi*H0j;$yY4PhD67qiW_MDXaD;1Q#MIkGld#j)XhVQ> zx3v-P-}I1mJA8o#j8Frre9ICGR+K_|G4HfOxKW}NZ$Tf?4{g5^43sa{@)p53Zj1?_ z|1e1-lQ{ZtC6uX&w~2FX-2u;CStK>mSHKyUYO^iMVo|(rOze8P7UNpA1tfQ0a-Y)? z%SSN5#R3-39xA^wr_$XYV*7NMD$%;qp|YO(hknmHh2N|)&O^|$$9R0u-$ zCs=l(gAdq*;9IEndQ{X_Ym8d4GclCAg%07tj6la!@A>yY_8pn{c2VaD(+lS}GnxtC zq^d1TcBKkT1Xy@F88wNvunnaLhP|z=!5tbxDk__jxQ$FSr2yz|bF_J7Bd%*B{Pl7B z$cA|)c9-Iu3xe`7_t)>^Ekfnkq11SzZ%}Tz_!ICV&SLHy$=}+zsfd79@77)HpV23Uv$}7 zc1RQd;ls#h0Y6jmFzWMo7(cG!5pt^8?d+K${L96$pu)SGn;-<2e`M~*mAdX?V89@@ zgqu+ia_5-+y6l;C<-*$J!QF3WjrR)CrN}?3OiXTNe1BJL9C`OhT4^(27t^>1+}*Q{ zqpy5&W>FfwSf(@@R93^ZrmlpC2$HvpQq5!HIOGL8WzS$Tn6DsHqx!?KGLkUkCxm(g z=HPF&)8QM+fz-v@&32{mhG$?Jf-o}@X(PqrIX%A_i*wFQ8Jwf_aHWyK=-%6Bf^4n! z6;$K}@1Z${_R?_@W%3RSihbgiF;{?xoNEjyv|;(oVR|esY3n7jTO50HxI5T_r!Fcr z$Fo#JWkh%mLP&jLZtaOe;wG6OnML@-tY6UF+{CX%kIVB6+D$I8^A|T>z96UsbT=1+ za%bc9M)rG$uT{px-9GzFgBNu<x>i& zgI1%u){D+5qLZ_sIikMJa9e`_vv4&b(h2;Ja z-89eahPY{OQCQXEEcjvS04gc!TawO$%V{c}9ZyOPl^B+EpD?ZrYd8`o{4jzGG8!$9pH>2{9y6ittEUzO79ZU@weQ({6M+8zuo&8nU}Ut?W#+RxKj2n zE6o_mee{A6X@waY{=jGkwZ;k?PD%mYC{tXLL>IjCDB;RHRtedk>|X%0v7r-6jQ&O9 z7}LRo**{53vE1b)kBafUU7(}`5VL6wk?B$FBc?XXjDf7dGL+tWx~Li?j-@a zUmwsv=pST(a1uSxmc*T_u_io3p>q+Q8zJ?~o@skX8v>%cyW~3V;Duqc1+uPE$LCZ2 zBzI2LcY8WXoL-UK(Di zA$TADk$Bo-CwMcgi3O>{%C8671uS=W4o2+^-O?{m130*dL328WzjzhbB;0$n*IMny zg1E6I0*w`StjnLvPU(rGLB%z1fN*g9IOuTOPbMRS-umg5~C zw}-R{d>acx2pG9gR4Wndl}n(~rN}Vkvr;i!!iz{JYo_;1ha-8%&#t`hrk3~*a8*bo zj~%=S8`|rw59l!|3tctvTJ~DGE@3<@uiKN>t8U4Zf#$1F;wf zrB?>;52sjKtXhzlkdERCyrW+x$QRjbs&>dJsx<=kWdPlp7x83a} zJU}v{_F<=oET*wf*3EI6yL)UEz=S@VllN2!g?vo}MP=cog9D_gwc?`AARc&BdE4DsI@v!4 ze*(&k;1v)oyAJ)!@cR^akLoK-0WLdB96|z@Y>Hw6uZ`gch$(69@Pac8pEyTF8M~hN zwi_6Coz}l#s*eg$8}-zX?xACSS`&jml$fAM<MSk!J9ImRJI$7 z*=tp%n+a37E~6MDW}gD8`*dE)he+uViVx;=miw<2z*OZV#zHo!FP}Cx+hJZbub-i$^0$1mY1LI~a6vNsRj?IJem2OG5JwJTySU zJ)aZR0=cO<1&zsFqhE0zZ99hv$uo?WM{$=psXnU?mkIs#iSky$qp*;7Sk@95?ZjZrE3jD2fKUHBZjyfspD!+p>2L%}5E3n^+;d zpt~}uI|l>A*S5$giR98$W7B)3$D*l*4rhXNhhe%;mew_8Kqlry++f8@*Zl)hC0a+= zsX7Q#jdgA_?Y)1TanQqkc+S5jbnZws;53z1WHJI}z z=C7cAzmfI@D<7QrBvep5SgcU^VYogRRu2zEfb;9sJ}l926F8AmfTFLm&g_1#)G{hh zgLoO+rW)BT3qV8K6wuubs!KsR(It{FW11MNy9FTCQEY>1c#{-xsv9)Ktn_)|W%!K@ z;3WWW63TLiR@>J6ctKNErUEZhrOe08Sx>!cpm5PZo&~mP7d21;++7j#qNG0ixHwSY z``3u)!V%eC1Jo#tQ-G?Tuo&OnUd^dx*m+?VV*ehD&Zh-5k_O{h)Pzg;QIQ!EYH)7p>-^l=VXrP|;A-ykSnfI~0hE`-HVzX+0JJV6 z1iobNtD)oj*L!uh9-NXV6s%+qONSF+A<>gt?BnsfI?vF9%`~juYINXD0At zip6euJG|NT6OIt6eXR)To~(-p6pttL$_~O~FuI;(#=)RSBS0CC@K5I7rxCwH8JiwG zA$^nLFj_%O#6yzsfGHo;hXJ~~uaJwMnnibypq0gPNZRrABHHm(X9gXs08F>zIye6* zR5h@Ue#HtMmQ@KwqdX0h)BrJ)BZEkH$8G?LLwjz)2Lc1+vu5zzpXSKRo7T*{CQg*Hop4bc z4B$J9v*U))#)w=|I5P-|k(QGMwp84gc<Er-PH2N{5u>N7JILw%kj~}6C}QZ^hU8JYtTqI1f4-WMsy>~_*f)()Z?wh z3YvtcXf9~NUw&u-9>Cn#^5)`VwyNM5<4aO~$1u*B9u4x25}@SDxJg^)GCsx$Xk30+ z=>wGDPFc|;A0Y{1Dgnsd_0&Xk6g+?~3t2mOi5((e4b{N|3g;$4wSyG4CLu9p_TIe5RxJ*fa;h;9*+zr@+ zCItJxr;+iGNsNstRe2JtjS0uid~gf?02a;Nna42@T?O$HW#S_m9@!Y|ye4`qe1si6 za*Zn>G28N#3McXKj`X(L2N16V%z>HJGj}1Jxnw?jtsFs*a+jp}2Jy_LChvGq*%x69 zmHis0R!$p6lXF>qXvZdTz!^F%isSAHmBE)tQ@VfRQ>h1LxP|-`v>Y*CEisMJ)S12| zjyx(KEiYC>y3bIc_3(HP)J|c$gG(Oq$V((@Mf?iUMDMTnP)&2UgUTiQ`%)0e4n&P; z3AoDmQD!J8nmH8WK=~o!K=X$ndmEeZVGD{B*)pQ+IPub`anl}3HE07WL6wc}5K+3_ z_ct$`1SHj0-xjTTOnHeGCDX(|KgyP@YflKU*Ud3pluva9YZ zyizCi{np^*01lG&YAeBjIs2E?tP-TVvEmy*iRlp|j>1HoKmV%!)G}M*44sp$-f40` zcU6gUM?V%PVM$8cf?V>`k1U9mc#YB~D8`-Vs7c|v(G`v;%5jR3CK{oYAo-$-!887+ta-L)4vI(nba15TvPzN-_Lq#DE5gx z4ifnx(g^oqhC+@OeSu_hqJ5A4QSEz#B9*1~J^D67Y%3>uU zr~mFAms&Vo)xzwH*Cgku%vNXjPiKti<9}3pAOGF8O6`5D?QQqr+C}M^C_{ooGoI1V zC;zC1KKZ-*U8$i@zQu*#&oG@pF@p+8mqBUHeEN@S-qR}1eEO}VfM-w5xP{o)yg1yU z!+s%}A)#%bAx;#{U7q#07>?iO#1Pz%@}2B-k)#$gpCDqaOA=KWk>mAnwN3Gb-<$5#+=rY$wnQYc`#Eo_i1 z!MppxR@n{`-_I7cFyEHZ9f6RB*->h~Etg>3WN496LOXKt9&94S&perCjG8Me6~ONL zygF;smvVK!p_r&unVYk45!Fq6$J+;=sF{vo9yVxE6Of{UL_y_BZ_YeJ z;oWc8)J58yr<{F3)ers@FZWM%;J7S|vNtaD!RQ@(B(HJMQLqAkq3G*7?s=Ep$6eN3&?Z{ZtD#>qkE>7$|d z^*cYUttiz)tftpEEhti21 z@An!w+p`Xdp8QU!wfgNYuMZKXxC#rKgkgmB#vMoyaG$IRbuY?sqX(u?fl2I;YZ1Ye zM6S@tARMpa=2}D%)lIB*_BwsCcxB%)9mA6vN)@)53R6&Xo*ahm?yPGSC*iQzDD+vF z$>Qr}%g}P;Nvy_pw~7r5HlkZmvncXFwgxk633KHcyAN{F=8$fZZld{-9~WYrn}I%j zQVzO@JzR`hYiW(^OvNZH$r#a%Y()4VJf$yHr?X64%bn5bkR8)qiF0WFA<%;r4tF@j zDI}Qim=%@^4&7|b21yd`lg+pVDs&>HAlHq^Nkvs~x=%5T(Ofqw!MaG z$on_qkpCJ6j^8@!4dBCt+x63@-KeTDeT5#s4ix9I~5?)YM z)D*(qB6?DRNw2wlw?;iFxU?25JvFZRdr{9oKrq~Y=gz@3wuAdss?!50C56*x)DHM1 z>n`($@4EfoA=xgoAE+)Rl@F)oI)+ApnV~6m+6Q*L6YN?s0uhM2$<6ZD%VGk9Jqgq< zgIcL1<--q}SAN}Pg{Wn&C59MTxkHA$A!^r%n#4?)sZHF!S9DAfC;*F-w!ohv&bC1u zM8D~RxFPdl926jOIym=WX0a{uOx@8)YFO-s24vSc?GyvDhv6cj0|jnZ#AHwO20xR& zsD=DYw-a7zh17;c6nB5^{@*ymQX44d$v4D(879RT=k zgg$Xc0-pP$oVma2w~yYi!weZIi0-$(Np5Ztpx55}^1X6Nl;?>#J#uZ3l}IL*Q#66K>_UzM@OzZfKtgmLn+lC2lRa3M5oJkoMab86fZl))RJS8-05#e;Xnt zl$3|B*}Ra>UNC8hg$V#1!&joxZL5an&(30$c`mfYpauL` zJpB5oJ+S>wh@gC3l-=DKM>3AkpVrNN9IFGF=(bO~i2W@H{e(o&9X{+YdHUc2pc4vN zpg>ZV7ph9fnEMhA#!B*+?hzd!bR;1`6v&OPVyVYtc$o-o?b)UN0U9v36R+zAdF7~c z)cSh*@wDN`#6A@%06vZ-Ah^$0=T|deeVdWY{LlaRUsSUf*`VwMd6G}9lS2cNKyXi( zRt=jvbhX*E;0D`wnRbSfC<$nc}S5P`e>U#C@4IM&FEQU!S+oZP4>KNSQYS6c-OT&8YJe{EZkFcU<)?@c!f;4*H& z*J!}3x*)+34LnKl^Vqd`*YxzhF+FZT@0-87KM1{Vz;GhS!?u{s9MM8xGg6rL>4#sR zli3)-GaJBYx}{W6wJS8wF5a<@R`qx+k}HhhKIP5=>|40L;&u$NXjspxfkvHtc+SN< z{SXM+$%k0Yp`1l4_zOg58sEu>kIaNN=p+zu!$rdL;X|w>+NEKJ!I9AyFH=J26q!JW z$h_wXL1r$)lNHHXK#Qvz#v^GLMUy^ZS;~g+@FAAP8jKDD$b=Usd$`Fl@i`N`itww} z$q}M6>?KlS{|w791cerX+=A~b8bE!`vt(w_wk3fWFBCplZA;T|M&@{i3?9nttyf%1 z5A6bOGB#Mjzwu4O5}w(H{R{^A4CSyo+3Y@a8nLeVd4KfmybJ~e_oWbg^z2(UM^H%& z&tqEaokwB)6p5NSQ=C#icXuD5yZ1eHbeB5_vk*?KB#9%@_|V!uK3p^cz)cG!c!w_e zY@WOaXt_*(HrAbSkiC2O;9Mkm3AZpXi+iCsZO7lDggYJI1Q@vk_ZB4NFS}1wXyT>^t*IT6S`WM=nwBI&GYYg zo*!elH<9MO3jufBKg9``hWIPE9l}?ERX!Qr$9AV^KoT2;2#&|tCrG4u_c|y!FX57k z8mw^-tybTF9Q?%VDfQC7C+F=S0NfWmq)*Vlu=`@WA5d>w>l}O)Nk~ukyd8alj(WN{ zy=>Bnl^Oo#!$-P679%Z3rEf6Oelu9~MZ>xOQGIWw`M99G ze(+EefatFH>)Y&yZvU7n2uF8m`C5HkP$EB^80nBK8UXce218YA{S9vFz{vSAEKK9$ zXI7Q0N6z0ekd{RNZi%K5e_^E_;zp2Y?Q~#PLK-}%apXoOf0EU1`xHso#EYCxWC*#0 z`6HvNJLEl-1X0LR zriwCe3A15to2tGbD4@FWRZk`_^frO~9dG&C80n8-uQCc=!ipL?%dh)>7NFb&a*Z=; z#_6}2%f>yyssyezA|&N)Lr;-xe*FjH^fO7_==y$Su zQ#IGv1URXUpfRC~c*8q&7D}0S7?QEP&&v+XINM09%s)lo62{@=(0^h-ozMz@S{htL zD*~3g&dXKY3P?I5%9@0iE*tC-@J%gbXKA)<0+hS4=23~!zC#6FfBGKv0}dyy!r?Sw zzfMfJ;JACiqyTrl)_VGy%MRKn}2ct+%>Jb58aH&|xk5{oXPJ+0HmeT<-R z!|40%JIw?@_9G%|g-YU@Baku!3s*57)>g=r8yWBJaqcZc#7krplIT}gQ7!%Q)M zM0FpL79Dm~vx8b^zbF!pvE21VLeAJ_E6UY%2W08~?HDIu*5$pkj~U#AyHS2a&-ZNf zG4#C>*L_UKr_};g6ojT@KQS^m3PoQH{e;xXb-eN&Ipg^INBSE+wUT>+$c!Jcjk;3G z)lszgZQoUkm80Lp{y3+DaLVvK7(F8H2em z)Wb1rZ*TWuoMt8+WM2qb)HxHf?B8)24*_O}xfb&jvJEK?j)ja!`y&|_cF5+Nu~#Op z4B2t#7JhpS$9=l+z@4IQLh)u+<2qZIF${YJAVee+S`|X^c6}AZk`#6RLrH}oOjwsla zZG^q*iWW6o@j+a{J8~vGhVib`mkLzKSb+43pd9+UA1eD0 z)!7H+WizD+1tcWNC%I04%XwI~9Z!ww2w|Gz1)I>(l7s7^+)XivA_nXP0X+v9KPRG) zQNmW3(>$A^pyDrwWYXIB((AJW~cxp6aC+O z^xeSi908-t;~?{T3#ZSM9a{CKueE$itFlxRCdGMrOm}--|0W|qn>tE4(uw{R|F@mt zM9@|)l94o)E8ZhN89ZYSA-dFiOW?s-cM$}DAHjI%4=ymCvbk;DKs z)A~m{55(#hCcO%nr-8rVvMce{M2m~R*@Et6g;$MT(L2-iI|$rS{XtRyMLRBBTZwE?DRVEL<#d$hO-R`(314gpnqcR}yxQ<%A61Z}mc)Pe-@TP=C{ z>;Q`)y{yJ2jJEvxT0SsW0wtP0$H#!Z`J zx5P^zO895s4!BWkR;)V|s`5XPu{W^=@$1Uyp%WQFBc7Az% zKAZV&ZGL`fet9E%xw4k6{) zj(!z;TMtKee_ZRdIpZ1$dsSrEqmJ}u4y*{#z~e`d#>o4<-Qm<|rdf$IeB=SFulk{~ zaIoRyK{l^H5>ZUQfmgO6mN*vVXIgJNSNW?rxS=8{zN`6=;r`?cT%dpy+}`;_a*ex7 z-kf$LsAFZvOOQ@cHwDIBW8(6GcN%Ke(OY}+YT7-*!4-X~d!D7Zf0L+W2z%FG2e5Xr zX~T?h4gHDU^j$0>sr38w==9MuoGf&5kRN50(z+49~K?X%M_sJ}( z#GyIlp-zT4TzW^uz!Nvog8l72YTDquTB!ikQKcC}C#M3>jmb4nv?1K_gxT*LJ+Gvl z(1LV378paj1X&&2a^>js0Jf~2&9Izs{u1?4T+WoBN02n_3P=epkO>~HP$X4u;4z6Y z_|Wd*4r&i!7IujzHW?uq6iF2?6@Y#XoO}U0%c&Zexde#e`^2$~fBaQ=S$k-);5}l^ zyN_U-1YhO+K23eTbi{UTLpm|C`DBtcTq)Dv_({XgM~J!TMqIIjt@! z&>f$W5`9&IgcwX`MJzYzN#m%J*Z&^%GzUn2Wo;WZ?s6iNnNSlH6<~@Da)sF2#45}; zAq+z}QpJOaSa8B~_r7SfG^_({jBm(TPFIrChr}n<=^(Hh7CqumrfO-tdqr^e)~NPkb7M*aaUW1YaGR6 z45eEQ?Cz|!-@}v&lB;A@H>b4`(!AyN)poi@2z%cf=wk@?@ml9Ka&l2%9jxFSK%v*W z17e+P_;r;*yvCjp(NhG(jhD$qy2n*e8;DnQyk8_NOS&{7VjjTVtDu#;Tu&m60vw}| z#@&ynS&TJAs=n`MvxsJ{knZ8f`;s}75_#+Ste8Z*hSkAv?od$bdmxxuf+U8hK5ZX) zJG{R@Jk|;Mu49dIy!cc5ZIImf8bilY0h0>*J%#3&Ax?-MQLcjbv{$Zj7&iqf0?8M! zbeDl{VM=#T;1;)q5dVI^m?Nu((jnd_+A+pz1uXY`R&26sM1{@-yoGI`Y6(($Xow8{ zBo7{mRF61&48_x-1i%>I+9_xdHE!4-J*cc&H0m)Jtt$VS(lT=aHslwPf|D2*Ou*g_ za+DYL)x=CkXLTDVo+G)*HN8Z{956UYO@$wH4@Dg_bDl6!pG`6#B5Rr@O*RTd9Ews% zoIpL6BxZ(uVrR&8HJEHEISUY!5fsWzY2ubZpNLHaVmL7tBjXcX7ha2vG~uDga-Z^D zyJ*@W+k>GG5xwV&V3^(}^d?zg`Fo+KisP<C8?diTUGd=)G+%^s=XpXexo zDV4}pImFwoHnCnYqQZ7x#i#!w7@RC6Sd~l;urA~QwAA;T{mub|&Mp{0Er8QDE-0}% z1rrGw6ggE?C7QduCPauJb^|?1ZlAoieNC7<>9f^FH@b%J;{67b2b~qh?5gdphH77BVJ|{bnnWfN6GjjJcGAUw(|wOw ziZyh5VHoNo;t<;8%%FoCVY+*Bk@AokdKhACG6({C*V&S!Q}MQ*=y%SvRTpL+vL%r0 zxk+(GwEa=dC`xEWvrDAePjrhwOy|!-njxW~0n&Z`!Y3Nw9aibVh8CJl4Y>pti<7=p zH4-~r-ua3{h#<-BzQEdJ2qqlC&hQ2+?db`zuPj~O(<3ZW;N)ZFjy?*H+&4Q1M`Td5 zoK{OX6S7n zdV8zEvJBw+Ucz!y>-sFFIu3tJsQrVZ&JM-?n0ZYIJnb=r`kh0$hoMGCI~yRY zGjhDeM_W`S!sR9Z9wLR6c-{~O9SR0E-;Vvm|wG};DmhJdN&Yf zNduZV(CVP8m7)maZpxD{{*=8NJP?n_FZgzDYyhYK7BomGRBx@QPtXf$;G+kRJX;wU zNI}v(F@K8;i#Z!5LUi3jRT@mc64vvG&U8*Eph%{LN6!(GHOSRI}_8gEueCf#gLPREl?;p7f=hHAq>C6 zMJRzUb9!BS9)dn?*AoI`c-JE=$pG-^35InwvKVF`ANo<7*$jy}&t&vhQ&vQ9;&b zPiamTaj49B(-eow=7QEh65(L6(QaQs+lH7lr;WJVPdME7Yl^#-7^M05o*g_t8Rov~ zjy17wBxYZc5ZCShr1j2`AUFpiTb|#xvYGhyHB9?}9B1qbXfy^M$4$($%?f1K1sUDO zl0&h|H@(>Q9UqSpH@zym3uXx`=(p3CEI7_(A0-&cZP)bY0-wy}Up& zofYA!g3il#;OM*ha}J+?>REX$RO3dWa`;Q2?ye4oPQ$!jL!mLyi)1L2A>*}m<}{#p z&@J_>ScGzuN;%ekZ{T7KR(^31tfE@)>``=&twN=^8KT9$f^i#u1&5Kkno>UNr64Cl zaifUMA#L_(zkSNwbq$ZJ`jxl~)79%Ejv@e3WRK&fW5T4kOy}_3JKQpwZX|XA$qW4+ zcJAJLZ~ZGGxj*8Ngv*(e0n`tn0tF~fY7TOFQgdjX$0tWs_JxFzlazke9=;OG0Ug_Q z4M%A1_pfk9fwITv0yO31h;EB=Qv>hEB%ysPa15dVwwQMl>o{)(_d#Bco8jTy-EuQ< zRPv#6HwSOXC+YpxyTR6Or*j04@uO4Igv3Co1f_R8WkI6@3ZY?Ofu^VRaq?+-SAF4` zm~*8fZz~;xWG*|ez^HctgC7njDDDdq;$;?yGAU zm<2~^55aU(GfGFx{n7&Y!>~rQ$iz=x?VVy(hV|h`?0oR473mgP0`51Z=E)@kwP1^y zfX3eOjV0bkv4m=VPZ*^W%_~8=NqrO#*R*c|g!wULRKQw9=mg4$AGbPtu+>l!7G9dD zoI&SK=H*!Iv>OfH2a!XPx>D=1&^j1Uj!p|J?UwIV|6u5-)=;Ab#7uet5EoKRAs*53 zLH9LPrm5onI--l;_Czg`5nVTg%z%^Ti^6ZW#>9RQ*rr6w!a{k{bvk zH4}ZyrDpl&!XrUrm-9bGv-xW&5V|E_w;@VFiTqJMn(2}*GhzmWM zTk+%4;@ax0=u)vL)%mdUfD3O){-E3&JFACahAn$Y$ujRj*0zrh&WE-ICng!R?y z`()(sd_#W*6gS59k9etFAv%~tyVx75W(wu55FJJZAD}C};}#uL;Z<+xBuaHvoX5Mn zu%%sJ2byH{43Hpl!w{(mTS=&56{M=rq$7OZ=8k~sNAx?}rNr#y^0|1;P|Lg?A7p&pm%fO5d+~|xwNqwTcd*(e!-ou^5L8So zU4CGO(f_36f|a-j5*I8P7nSER46Hi*kqmki_Kcu|*IDqw(w^#&$31N}po-+iJ>6*f zCZw4yiu~xE6xLZnL?z}gK)Jg}+ao~$LWKkCnF`kR=s+T8%HC}?hL+PTDcA4^fuSx+ znkkHDCT?vba%;&Rz-DJjSV{AJSze~kN{+5T1u5!vieeP@!-uKkKm3@h%%ZeWzn2Y!9B~43N9q zNPo;Wfl=SnvKv%lpwH^3cYwO7Bqd#J?g2G{h;P)sYQZ6Dfa_x0&%|+4)~FW?P$lE2 znIfdS2kPy&v`YO87;H}t<9vVcH`HeAOp`)-=&y5i$;FE|5n~xvlOXv)9}erT!=&bE z#hOMIHHDJGK$$}2OZYzzv>a;Opc<;Z$163c8l2KAP|TI&#Y0kwoG!-cc4!>zl+fp^ z#wamk=`pg9ZhV#>#A9<^$>$#KMj9j*W0G_P=dJ}$6#2=Viv3;iK^Cw zAmM2A7fSKZSKZ==o?q2W4hA?Q=IMH^XsDwF4b)0j1ahOZF)jvnl!y_VKrUE6jzos1 zz*aG#0OBSW32%LUG4rQjn!yPobl5xGCSN_QZo|TLOs_Gm7{`4YHfua?DL!0&NWEk3 z;ZEWv`veAlYc2oKP6iOVXB0d-84eIVqJ}y2b%gqQygzvNaBJH1GjW$%Ii`%!nnn$P zjm7os;e%-!$*b^{lIrsYyGB>Ydff4Gk2#3@G++G8kdo7dl}VZ?ki0g;Jvwoo(f$-@ zs_b;vYJ>V|(PRo*a`%#DF^B!FYe2~j59&fg1N=bq%xAuw~=>g>qG z?`gMDhLS3>QadB87Xb0v{VJWPgj0g%}*54=Np*6CGD#Lk_51 zb~<3&xyD%riunzu=?+#xIx%BDzM!r>r4`53BWGMGH*$vO;dTB z=r#ry3uc%SX9AJm0QB#LVe(y6IH#3A@}Ke`NzQk^u#egiJ&mU;ae&qpBporWh`?|% zd6c0Q^KX-~ptFcvZow(@^&thRefaRw z`+>5>a=+nXdR&q6OE@0?f~yzm{Y;>S@t*Ka&^sp6f;vV%?ty7RfU=1jNCHv=h4n}X zVL0qO*N}h$V(1kB-MDbD=jSlJL|b*^cmdTpXO=suNbWM{YZ5cpox#aAqC_E3kh%f? zZRzPOrk7x55gd7n>S1s=8d*Z|G4LwARlXQW9E^l4DKzMnAKHMSH<(j^<c)5SsG-?Vp8jd&3acST;tUpp0u+un@&w0A zS?d_sShu={WriIZ_nS7nsm{s{Zz?+kBpfcoms(7ZcBuP)QPVouK{_`W{IS+KRL6{e zf*EDOz25OifwV?#7h&D+(G>q>HVc~Fo$R}Ie;Zb9I8g3KX#pk%NX*?sDYH&zu+v6d zPb_(A%!5&K3s7!6GFy;;3I<~wNyu?N3CEC_T=S!i#RSKn4i)H_To^lDfN@ow%7Yk=(TI6~hEcUu}Y40k0Oii7ir z@C`yQ@FQPLh$oKeVg1vDo6&1RPjTG%rXXhB!2l8eG!901LLely=){o_iYl~= z9i$O8c)^vURd(f=&<5z19rI`n6}FPNV!4TpcAuh%VtGUqsSHu2Fl<24U@=7!gfYeO zPCt0N%*Wep@tw2+;BAWUL zt8)ySI(!UpX-pMAjUcFD?e2vR#vtxDfAJarB>oq`lFD6akyx1E550j3Rztc*U;XRa zSvHb@mC3M^c)Dv(t11gcpj!5XU~^e_;#aBlp&e(&Un)L^FN=MKJ= ze0NMcjoq(mER9&nU^mSO3gV3p%zQyC;274+^ecoRndz&+pVmyPAnrbs2tiC6IQV4$ z`5%8L;}msoRDM`t2}o!bxs*{$fI&&y0dC?j0iXSyw*%xBe$&FaOnIR+vQ?qMgNqVFFnXB5O=tm_3b@XLAyDVW|K(SP$8lFS@K?4VwS3SwGC;$} zg=&rBHlRk-Mj zR=6d~@Kp~G43A$59gG1~05-sp=|F01%7v*Ii->*S5`Wxb+x!mQ;r(!$$G5r=E@n_~6su4U@eNC4lfK7qO4@o`rDZPpscmCYON%6$ExJPBu;uTUO z-K~ImL7fCnpQYs0N*%n$&R@}r0A=;>G5TrsU0q_o2pm|Dkp|0+ZP4df^}c)zhZ(4p zW>gc4J)lH zu}Kc7B-^jT{i4N{sLX69`j{Jrht{ylF`?xtJ}xx1(v>J3M{+4p5u1@PW67>&t_Bc0 zz_$w?$c_K!fBe6wWY5q3^FRJS=_QJWbxP_*;tC=xD00bQNa@ zkSfkz6H8`&}I*_8C4w`VCo4_udm3I(z zIxpmXa=QvV_s3VgK9-gyAr^;`YmB-G)!N-lu2 zG@#sb{+G{S^t0|EBoiOY_$pbvBRcy7T&nH25vj^GN)~&)BW}}}w5i+KJ4XIG)2@WB zfR|(mmZk?Dp@QUo`-1+?HULY8QaT=@RqSwz&{Pzug`C5nOqvE9zqfh66UN0t8{#?A zMi82NaCSS`PPPiC%WT2hGQhmhc6U&+0v$D@Qb#ah$rS4FP$wfm_lXo>^)CEvL@vO& zHPFMbWc&sf<-(X@{m?lUDnXvsCO#^y4mT!*VPZFjV7#aHq|i}0jJ{^Bl0v*lgZV?8 zQ|Cr#Ap%#)yQAn!R%fKD8x;Y%JJOE1KqJeGYm9^@z;GOoM`H6mV>|$4oL`tdxs|F^ z#B}PgXLT19t)eoT?-i0*7NX}8MvBlYaq!ROC2sN=2PwUI1R<$r=}`+=ie_@7h3_W+ zmUE$);Y`@?&LS*eR41DPwQ)NlC%6hJad(RHX~VfbQ-BorPhQ`K3oG z6S)i}={$UbxzC&wCF(~aoYzRPSu{{3+#kY76lJ0@b>y(YA|ZkLx{2m{Hob=ikerNp zuFkf_dp1SDy$iaSm|Q%b``4L$3C?LAu&FbH9CX_61B7LOB30-HzLj%1{EN=18)KMsgHzh#2 z>r2SsNTs}Hd*NXi1a>PeUMnW7H(?OUTBD@kCMt`RHK zMU}{{@C;M25 z1^vCTV2T0V9Y|(^&vkb`UGfOvB!-FilG})ZT3b(*Pz-49zOp$QfDIfYpvNVqeOYMR z=)O9`PJC6h+IKtq{$z{4?8%n*pWQBRNDwgv21}%u46AD>(HPW?&cz=wztTx$^or$3 z;*=ZcNi=FC%P1`vtQ}a!_zRH$I+nymdg%~4xgrxwVqS@yCzPrD>gTP1I*E%gI z3jYEeeA~&_>{YSGCmK; z$?_m()LgH?W27IZ88F1^h~w%h&hfCMa9HosZ5%JV>}CEPhMG6^J)~hG@%F*QVeVvg z<%qPEXr>j<-J~dk&VW>XQjs&3q9ip%jvTeT8|#P8@NmK&&^;QeN`0GU3+z10oWIyT z=&I2-v@6`9$L*>kT`D)ny#VK~SF1O?Cr9NBVzPC#oYJ{I!gAMaDFi;!)Av6YR#q+6 zE-q>Xa<>8%+^wj}p6iW#?OEjSIuwh0Qvh-|_@a}fR@fDp-X+@pyL*P2>!=u&a|awZ z*4-;CT3$8eG>m0yb<#Rag0)g%k_&K%u!e7!2dBet_;Fs@oR$!8OI;~TL-sh+;W}oL z64%6FZe$^X201=@sqIfqMlqw-k<1k&#h9poZZcT-qAiel7Q+Tjpmx=tpmUT}M@1rH zjL8KFk-+?Vul;YM*t$6Yjs zPT2X3hbEgDuiY{%P9WscI<)K^&i<7n;-?;Okqdl#hhoGG?K&G(QSoB35uTgiLBSIk z1DOJP%&I*9^21Nu@>*4AkN)m{M~5ROD8nJf<>LX;T!g&sG~}#&0jY2A0_w;U;ycV< zWc3mpcl*_wj`&IZL>Ce>{&z&q3zm01y2mj?Tu0>^(qoTCR!8|Wx3Ed)iLyw|5AS8A z{?Wx<2RMoNnzT#NJctT!`x57d)0F989euVeK4>jqtw5i>x)A;bp)0hA|2n|BiA7YM zYoy8!F%qK55zLP@8Vm}%86EY-@rZu{$}E=Oc22iZF#tcdovgh`iw4se(EWC!z0H;} zlqw{xipE%FhL}dl6a^0NvD|*%7Zpvt*l#u;BYlm|XbU+^>d9ZRTlugDl9F_<8KnIikBk zw7eT4zatSeRSkB@1P#NIKfAQ_`xTSXB#76Y6q*xL0eyE0i9aXl> zX1&+1NzS{=2)^XMKth-qcjDdMZm$sfQOAxnbhL9wtRwmWNw(41d2`ssymIeYVBjG7 z1~r{vbG9Q~hpUQve2nErmLgC%2+;oP{GRbo#cox{rKPRILzj|j-t8C%N`d!V;w@|g6UTs z&AZeukK;a@$*_kbLCbazs_8OS@)iX(4})dJvA0{WEGOd9!Zuf?N+@n@1^+OW`9pk0 z*Vwj-U`kfkOQ8mJc(f>I4Vb&XA|+NJ7JRh*0-a`=63E{o)foMUcJ6)AN`}We`%H;p z%aCqrWvI>Z2wQ3?XK)>+Ev?UhnU?*ryJKN}S4~bBftgL=iL00_o`O>lTWTAR{+!YueVfTSp+3 z$GHIL?n`}9+J62edr4K1+gb%R=t@WZ?mL*f%^cLxl}d|Af!x%pKvsBw{q3ZUWMiik z=Y#{hHOw_JQ55mq#9xGh?suV^{dSjfPnmAkkyJ(NrsBBkYl2v?ZL-FX)Xs$f&st~a zs)Ln4xtnAS;lB%)#VqZ?%I$tZ-)=OA3gpJuaAXC)ta)S=iUZVO>iBpiGnREWmlDeu zH23K`fr}(&$q%`KkMq8C0-C^E4!>k&MxBYQCJyociTA6lq#pQ3b+%Ys)Dcx>+omF+ zmL@BQoJcmbfokxvbmUWpRNzKpQ5%m?N7FA!hX~8vCUz192@X_L#tm`-L@>rIl@T~( zN4U|s1LJ@HTR!aED3zXO&FRD*~ueO2)Omi1974eDoV=gIYuHc zyVun5x+v~?_)IYF>v_7C)SJsSs<N0_ddJI)W1+0*tYan_ zHliL5+dsua$<`PgUWw=(Qf*HTNyA1nhWH^TVx#l3QI+yh1?=u_D!E`&&JXwO0ED=a z{t#!UI)hQ1Bm`#WGr8fZ5XoB<=GzJxJ;YdP2Q{%fX`E{zp-?5HMw^ZbMV6D6P-0uI z3Q1-v9>$H52YhT)9V0T^r^nFs`fVE`kXReqAutKOul}nB%1u#eAn=hARv;z&81S^>}9niT@rs=1OTSN`MOWs=ClLt5jZZC4ZH zI%NI~l+6Wkg-Fr0tm$9E=rz25jN-=iGB)qdIMFzOS+;-ruG_KeI*!=} z;Iv0)Ck{0@x)CoH@Z5Fw;X(p{8N%nOBeBJcZGfV=HhXqLf()ND zfkAF~xOr^Q07_o4&heMoUcdJXE;m7ir89k*d(OoN<3`*PVHJ|(u<(NQh7{(4H&;N!t;NYf+X-Yd^6 z?}_+}kqaQ=k<8_q5W$rJtpg*jn)O7H+#hiHK$y|!VIsknSV$waKiU8ZW37|5IsvzQsl z=5z$hU6Nxn(fR0vs&g6m#G=fVfl?}Z!Et}w^9C_c}+$0>1+`_>(GAWMX#DVbTPD{$X#&ebEq-4$XuPUJ!$Bk|J zT-Krd?v(%ehac}ncgx>11oOuTdr_j{WFPO%w|xWr(F_Jx&bnjz{$S>Vb~7gO9yv0 zN++I5i&vwFsltWPNP>qz^olgorEl(k|we8TpV^Sl6*+T!7G7>hRGT=~SX+zrGJ z5Z*^Iz*W~&-w)4yaYh@8s5p+c2T(?o3Yst(nt%$9Z0wGiBB6Sa0c3F4dH>a;2hR#! zS0tF-j&Lx+x|iF9Z!;xEJduz5;BB{@Nw4|H2RPJU@W_$`nVAy85gkRF_S)Tj3f8B# z+|h=i%pI5%wV`)m{mncq(YYuh9Z)F8aFGwErB&{%1su zZUQ9B)3<6_B7`_g*sQ`9@aW?xi~;hOFqEC7$EP(4i$Gi zl%LV+QE18-G72SVYbUym76=1iHNscSv!>Y|6ZctR?a4I6+)#~+ibZoGBt((-AsdFg7KmZb%zmOdwu>bAQ4W>O1%u!)Aa~8Q)4W8q%WNphVpv2Yuz_aAAVPR+gC>l2a&T56Gj6vOH}T#x$qP zroH<1r&Ko;3W>9#ZpxmTH-x72ei&soT9J!jWs2B@cuzH?4C1rlBi1FO5 zC4B7c@3#*-y%XfS%lkYQT2N9b5=lRVGQCmgHG{a%HVfTmJp=U)j>$cd#n@D!>kA!Q zUQZm0g?4qX1D5WeIcLAe^6$YcAFHcpt|f)N6=sycyFjfZ?#r^zk^uFTK`GE6R^9{hpG*zAc#Q670Nv^4ed4RTWpmyjFeCX6(1~%(jh`2hH)dDS}C`;UVDerPOp#49qYOJ zc(|%B!$fa*{2amE*#NKn5FSu=i{su7ykaq6SI7|nIcIG`?gSz2Ozut)5ZteP)eQl~ zEu$Hs4+kX#6(X0ll5aez3C%~_SyrcXfTYeak`%$P+V5_2Y<1?Tuy{l_`loNYudPpH zLdB6u(6<5|!H{HXKL8RDny=qvi=B7KH-$v3kPF1QbQM~8z)M)xw3Bg3M}y-==^ivb z!(I2{8LH%Q=QW%a3d&?+t5a$!;H85Vc<%bEcArys&E`bV$E^HY3MPz%=U2LHO3)kQG(=?Yk(FG@9uYp^qCR6_DE|NL+A!LcVp%q3^nX0xl*U1bP!nJInW0vMaUr7$FPRx&G+OH zii#}Y7Z~(m-$gMBLwND*1sIOb@_JYa704tM_%S%K;}6r+cd+BT4m`_Hw@NM3F*_#I z!+aTNLeVmmn|cNKErKsdK@fe9OO@(sZnYMlp=zgJ`07=5k=6iWjtomBgiCI!fPtFzE89zjE77J!MRZu6%8+O~ zV@5jjuEbA`p{hV7qAPiv;3QksTWB>d&0CKiJT*N|Sf3(m{8LYr?DGMs^%Tc)@>KlK z|M-6fEXi;w?{$76!{WN=krnzh*RM6dkv+4Xe(mMP@7|ipeME zQOfC3HDfeexAWf)dQ_!!myV=X?MUcf`gTS4x&}{m<|%!nwGa3BHl)27$%JUt7eVSt zfjt70Qps5Z!C`|pxDcB*WSX%?j^!@O*FB=iP-w_;>tG^HiNg_b1+XJN-PLtBSc%d1Y2+-3a> z0~-8A$GPru_KPx5(JD zr=H4ChT)0lGg@0Qdc-e2xv(ZY`MaBzCOkoYcb}zOG9W@5o%Pb(`>f9FqeP%2F)Gi< z;|rS+Ai4i0jlzs9ciuxYorQ)(7p$b5K}nX_K}vHwgPab_FqmubKOK`Q8uz@xh!rJ^ zjQw*I$B@Q7&sy0G78luusmNOh2Vv*bFo9l=SAotbPaZaCPjMquB=sq$g@GS`)?j!=*huK$*&=V^Z8?Id9P9VAeU0O8#Ev{#d_PaaX^=zNb1<|Qmfe#JV=o}NN76p9*E;f&fQ4{AkV{TvMTScj9}T}p0bV#5 zlMw>GO%-GIw8<=1autx=|Hf^4`Vd?Nuc;lljreFiPMhM@OP)`PUyv}EJd&Zz^G};d ziR#utO2~{peL_4BO98eNUXREH3GV=L^TKf!J6wj?!9Je(Tp#p1tdEM(dv;-?2PF4D zc=Vpp=%Ez(UAPT=p!4^8FkLpku)MKW)t+w}$dAgoefAA%A<5W% zgB^gmAK{9^~X|{Nwp_r*?=T`-b7|q z&JvK^ze%egvzFR#QRgndU|DR#v;|k|tPN`qZY%e2xgl|LFrIh&y+f*qQaNlFwk`ArjTuW|~3!Dpl%~&YM(wU6tXjxR#v3hih9iw|{uDnX&WZ`dgD?e8AV|do$ zG-L?YJ60Ff_!teT4~V442GI#+xYjS-BWyc{UczLkuT}7=2XdGEA2E+SdRFbiRfk7{ z&#uyr!Q7Qubqy=fJ7UMGX{!u2r5C{DHuL2PmCjz!0 z4c5Zxr{sZ;)C+w^o z(bO{`mg##a_b;q-J%viMipw{0eTEub%p{zxkeRKjHP4@!2{=z{0Oi$(=g)9z<&o%T zS_>_xTAbY}+aYU-KXrYobL&Uw`7@-92=)`xzC@iq1p$Lpk5&N|4x40BqqgSOn&8=i zd=5BNK+dUNTAapjtUiC9fdiELEjQ*HDD;akVC`pAD~(*`k)s*zKVhg!t++U5`Ud*3 zZv~hMH@`SLkUfiBJHS#nK;Y~txkwAGc=EM9MVws#2yutE@-fJH<$9}Qq#OmzF9Js6y)+kkTaDs92ZfJ}B6@-`nypl9>hn=H+l zs>Bsb`N^ZN%~Cl}a{wg=6@VJSB7w9s$Kvioc1|r3J5H*z z4^to6N3#xjgo&6T=W7(d^v2=J!MZp;dIUboq)~Jpr(47~IMI@as+d{T4pHRgM;Etj z0Ofi45m^i+xf0m})Il2Ow!9#Fc~^S!=)wdELFptxka&BIcPS-*MqIREvJMf4LQIZn z+T3{AdR{q67q`G3>CyYiquhw3jpCEPtg>3|n!dP|1}OJ?W}a!RG{ZdbH-|q>oTEM* zMQNjCrL;oDuXhx!*dk*P50|5NIrB?Ri^1mSmV8rvtIsN%BO3H*JHim#2HYP z_k5yB9eh{1=C3!=Wnzj2nJob`bL2+aJ0eYw?xs4~7p)(0fAH>4RwO+m?fuDg6FFIK zgohG?BtW6|bzZl3aEmDVA0@)X4U1Qhb58S(Xd)MfG$JS-(~ygFjLAcnHr}vLnJA<% zxc8A`x@t@wHxY-`%>k4sp-&z|96|}*fd27A2aa)n=1u9YWE&Xz;Q0B6e)iudEwqnPQ7L;m#Q*bq?e z8y@nfU_%(fk)2coKU-=yyC7V2LqMcVy5}@3d(lD^eYHx6S)H?*9&gY6bu3Bb>DWbx*PwmaYdDs?E?y0or zvB)+)RR@1+RHns|YPo&b!+{eO;VB-rx6e@wl~Z_e0tOe~I#LiY>j)bnw`$(cA@aRn zGaW;>whr3e!>z5#_FUZZdP>X7n*cdr6G}(0>q0vy?ez8Rx>alfl>ucO5V?2Yy@!}9 zqs@Mc@0kks9ZffT#WK3gXSv?96@pvf;OyhZjY^Y7biaR77|0Re&eojrX0-A$s~2&bYK_ zAH08q8Vc>h7V?3$5ErW&|s%j>`@4ll39Kf3o zUN8TP9-$=|K5EG>k!6o8c-5gDlJ19MfA~@y1_a)6*%yVIHOl6HA8ctxFu_u}vpn9W zkXk>GbUC3=h{D0Cz;a8oY#xTek!ZEOOi;HZ2T*VO- z7q6^tj}ftxAL?dgvB--az7-RtC|)KY78c& z403b`11?)b13IF_!7*k`6S0ECT*dw|O~P=uyxI=`j#o0l*~^)~5G`UC`Q1q&Iy5nX zi7q0w#Xg3QLPY6Luq>{(_bC(z#Ax!E*x||Rj*aB_;K_?{WGor;L9hQ>hmu9kq>?0y zG4YHU(8Q8R^f5rWPvQA1hP&LmrxU7Um@ZS{T`O{%by;vEt?N>Er{5d&_KwK|40}q% zL%$|371P&*i)b$4D|Zw^k||}^7xGt-8bp}VYxJmvoAvr-Ty(DtCCyaW1R(d{H(3BM zEM>^VAhV+@lBOL%Tl9Mi#JQBc^gem=0V`xvL=qrtad zeTB@51K2(&+YJf7ucp5Wqz-)WKE3O1|G2bB7rImcnZf|QQ zgm^p?2aYOYB`kM?h!-ho|M{Uo%Wi&Sh%ADWH3@6bgbKa17OeCd= z`#Wg=jH3&oc&;shGWj+BNj#gki2Tt`YiGYpdT&*JiNsMWY63tW2uR+7GOoKbFSV%1 zxf6jhWZMntkUl!?cJ}SAm^jboJH>z`YbQQ=2#}mS_-}jixXRB+i8k9(g12&Fx$5mT z(;Ul9{X`vzv~%X^iC;RX8}~O2M79z!;aQVPT2h2`|GIv%%{Dk%P+U{^dkI{I!)QDE zceG&XFKAesMv9byPsN3c+;7fGfSIU$qVq3cGVy8PRPxIS|Eh1M9jF?6Wko9jl+E!r zd)f9D%uOUd#1qLq7NPq%6iMZ;nWw!<#eAOW2|fBi2YcTG7`8xVtY| z7>P2we=pF6?J0vBZUBxhTa_I+V^}P9YiuVTA}~P-@2sik7pnHq#JY^8gI>4970XTh zd-v!izK#Xob+lK^J}UGqza{R>BBFv2$QA)D*U>1;FNO&FgyrKbnh_$;rqYSKOzR6# zH@!+lrNJN@EFRuU5x{7Ag#6ZbzwI4y2G#%T?_Z#v&iu=jwfU`?^`Dk!w_Yu5d~XJ<#?nSGfsB=)w#tBN zrM>oIVR>flr>&W}IYXqzF{4BzM=GH&Ul=-&6#a&8`^&|Zm9?$8g&!8?=1nIO+KEo# zkWLs#r8nm3Ev|pR@N&aYs;m56|&Bcv{)y1C-u^K6?hY%~G zDpl>-(#qWC;))^Gyk{OvX-sI(s=8F;L_e%c3a50gdO9m>rXLAa{0v?IkYbN|?A4W5 z^A^6w{xhTlf~6F6Ce|*J$2?e(#`@-q^;z4E=Ckd=l!neW9&fD8%-Yq`e6|Ce(z)(u zWMge}zDfkt&`E~OON^-0R9gO6V6NuUl8_Yr#*58`#ksB7mF4w~tv}EIw6!#|YIwMb zJgb0Ide?;B;=;O}o+iCvGK{3?R|UP;hbHTg!3n5W_p{*5FsE~O2PMFV{>)!f_flOia$0B_sy-Bo6EBs3oFZ} z3k~Fl1ydT6=JD42kA_T*^IUN%N_ayk{rT0!QUab*8sRo9&BFuMszVJpD~3}1YqKj$ zt20m>SFG4*u%06%MIV7&+L&2bUN6EoX?+A0@aN_i=Qp7BZXobKKDso(kD(NQ)IXe? zUz>kv2sBuC21_Z7_@^&t3Ierx4;V`E$2|Ubiz_c?7EKo#tUC*)G_()PGfU@|9i9S1 zDZcjMVssBrp`d$Qn_HOO*jk!j`_6Wu!8(YLvW*&sr z&b@aUtUv*6$0=#+hndAqJG~90guzk@SMYReVWV($XCCc-`JWdK{wEf zav+Pnj4?Aa+Z3CD6nl)xy+X@pUKBKz26D}UDUB=ixHL2kMm^vt@(p_O)51J7_m^uc zOJyPrwDu}Ur8oBd%n#Tl*S_0anqRiF(O|SJn9>+oSXy0K+u#nF`EDR9VyGhiMeH&j z-|RBl{`HL+D~X!7pP};hFRw1n%wie}X0s;v5mXt!U^qJueq=ejx!{Q!J6Ei9y*%5N zUDU8EF||kI`fY{rERj88nCvT{DV00=ylCi(yO!{EJ&RlsR_TV`RT$9D(Yt~LZ8G#u zZC-J=8k~trc-o(9`b}XYZ=gX%NQyqD&&p=B1`^DIDUC2A6^68P%t*nK7G@;ar7mbj z0-pBghITVHOU1+*>@ro5N^eBJESkE`A%S9B*GCJbb7Z2T&d_zqAll}!|FOBWx;67+ zePwa8pqn?~D+{JHM)@&RuU9i`_7LAdKQvfM;U+&_c)9g*W^o;7`L(Up!eO9+Y_7yq zinsLJ<&_OsT4rH)+?cg@PBr{^irYaosM5TlUo$^fbg}_IS3xSh5wcBg&8)8C_;6m0 zCWf;3a-_Hrd=I7gV@z~oWvgt}YrxwUOljO)T$!OG-1__)8TPj3*VYR1zX9h}Vk*U} z@@>)L)8JH*11a_-KN4f>>>_$)rlrAdS;A9F6Z{R+C>xg=+;tS;l+LLCVr6}E?c8Tm zgQXO%$y2(3Fr(FA-;a^8uHY5OnZ@~3pxYG4yn7{&e7a$##t)P5VLgAjz` zUBy{gK^G*6#E)I!tOl3dhWFuAu0M4J<|=8H4oE+20kZcK&3Sqe?|Mh zA=N-Km++L*W%}jb(kYo{(qK~c3EI{-7VP*|h9=mNd*y}Br z(zv`f&tI6KZ?K{iMsY{i<~KIimM_MBYOs{Tl{ILoFIP70$TzU$1sp}bN>4VvUz@iK z*9I6->lV&l%sF3 z<6%)DZ-Sm9Df-AdKPxMM4Ya5jO7XAB!;%Wvxb;Q{92N8mC9uKC-(VHmUsBT=x8LY# zzWo&!uZ`PZxOW}hWLMIKG#g6;3IubJ1<4Q4bVIu_rwC`utxu=a&mUQVmYKML4B1 zMUvSoyjyhpVrQel&Q=CgTG#UXJHxjPR$hdp=p*v1e5Kq#?!{0Z-#d`Q5uW_t$$|X3 zWZ7f?@r9MS`4^k^vOHnNIiZlouT1@L0d7@bY6mCfyBBNoGk;!Pfo5z5G2w!F7PSab zX^jf4*_rkE6?@7`2!ONbcr>MP!_!!qUz?qu#c^(?a4nrMhn`8wfGWiip;(@(gt~JU zB>__kV@lx%+$vegnOL-E(-1hNa>rAFf7h!uT(`gYX=8r2NG}nKawfeJuu>lPlyLU zunVrt6`gs{!3hzf()v_JY!Qmj>`$*2mgiPpt-oBaB%FvsJFADo;I$QZD_XI>F}Gm- z$r6E6AJhOrR@z?fOXgU!znnwvdo-mnCH<49P&qcN7)e}7oz<}zQmJ|VSzg)1g$vX{ zE0oW{KM|tRnvkBYEY86}805?VCRC}j`jrDJB`-r(RyP)w7XID#=^Qd7;3*w1Lsn-B z(Q)UHA&jN?es**Rt>LR4CQ*IZp&dAYDSFAhx@K0A2l*fq<*O4(~V zt3S=o%zi&lJLiJ+v_FTYV?mXom(8ruZ(2X~bLb%or&Rn(CSx94v`Px_IaYEES)_(Q zr}+v2bslOFq*C*eaO2-gyq{RedV8VauM!?=RC^DoWc&iyTz;|n@+ExctvYay1rQ-B zEiW`k5Waw7Z=};Xghs$qI$mfXLz&IDd=8<(Sc>nN8}^SED}`>HgSiz>srb=?2g)+E z4!cL4W3&REr*ndeWe7~>q=S5{ywu(*B^^mP(B~itVqopnJzs~R zvx_{Znr)F&${5=J=Wwsiyqo2GG==e$OuML&o|9@(-pnwASK9s8TZbr~VTdP0MvY1A zqmVcuYLCZ21w9n+JoW9|tan7{6_5bsB z<^fh#<>S{x_FX{S@FFOS3?LvXt}uY0Y%(D3cxUDgT$q_V-a7+~yQXRGyJ=dMOIemn zxs-cZE@fGkWm%SGS(c`0nx_4p&pFR|-}k(Cn0scv^z)C8^S<2YdCocSS)a4XF>>W; zz9PhMN5}A`zBD(ha6`SH@B`GcTres}gn9`c6yspSY9Nu;5}wtZ!&e^Vm0L2(=Da~K zwR^}Vz)fCMJL&#~=Pi`F=nc%eOMc2Lh=7y2I;rKIUcZ{?AK8=edQl51vXzRBGm3H- z#T~M3Yp9t1ztqLf)Mo4AZ6!2?7BA*OZFa>HYt*_p_Yo_tQX}X5nz)m*UE=H$U`bUw zYkkd4vE{9Jkhw~qluKw+?YLagQlDRw_v04S%5;3rvtI#4+N0>n8_w2RlR8&xc}VFG zwCME5Ho0}7yvA7)Vzbg0G&ef<)$2fWmAhQWmu->j1^vT$j|{OH6i=>;k8QZP_BXcm z<~grq1T`tamYoG>x1X^q$Ck;>@t)bB1|`_68gN#7aH6$mZc9|^MyWH=+Z^4OZYG1W zPUU7Y((SDEF>lJcmqGP;pgFIn*&89cAYLMFiEccK>3Kv=M=xV4?>AJPG>dU1TA@}m zmPBuyhQx`}cfCk;;=1jkDKtA{15B(6a@&LSFMNYRm1s!ZBJIv-UyNpp`BJL4yd~O* zglcEb#4)--z)RGi(v8YUTo3Q^n+f*|zaBMqqwCx}yIU%4W9=@oBjgM-dyceRVGw^E z&-&3Jm3S<>nJ7nQIvSQp+~w}3<~DnFs%O2ENsu@rS8BGLdOyV_V>NG(J3Z6Gur1a) zC-l1n?^~a%b1imq?6t*gCiFX-edL|o&6O^(Td10il{n zPgW?Tn5ZHxViPW^{f&9q7}nC5ZTCKEP%a8F?36o`+m?6KgKGSc-j!ADEcG#ul7IYR zK~T*TY|W@oSd_b*TJsxxzgj1&0GwY6>C+h z+8G_5Hd^i;=%i3~!?N!t7?L*c*Fl|hWxHXz6!nby)fc!7yF9KzxhS9lGV1-P4#?Td z7FNrkHs_B+I&loRXl~vCqiW?;Xw&sou60epv zzf1;IbFBqATU@T}G}WaX?Aq+^f%3ayn2A*jeh^z?BN+^?N{@z4@Bf==3Xfu_FhQ|8HwP zbHKe{^YxH-zHh0M#aNY_5Tnf{T|ZOxG`GpMVZP5GXgnR17pXqgfV0}W!>OiD+W)w& zsoWfwO)~Y9H*!DHYVJPp^8S{KqcKor48(CX*TAJZc3ZBvIql9~uZ9jL(Sn+cfFw;# zpY_I8nQw4QeLtt$#jIaL8}&%}a4u+kQ?W8J%Ka*O*qR)d3(2T_b5-@KE#P>GjC536 z_gm9gsFi+JS=+QlB5jrXksh?BSZI^GAJ%j0RzxE0 zE+h4oH~&)yPeQ-5*)Lzuy$8mF_P?oo^7Y~vPy^0tZ?P)(-lay(TP$V8q}A^1_088y zS3WOorr(MLbss}ok%WF{vsa!DO_Sd>-$E5$p5Bb8cDDNFo3d*@7FGa3!qovFc>f%vCcqJ?3)7 zj{Gc<(l`;D<@(}$YqmLcf$$a@`{xttoy}ey)iFUIEvO{uoVBwy1Z$=2V&U5L7z1qnRPg5j4b-Y)&BB+ zW1(2jgq|PGpl@5*D9Wphau?H~YO=K2t;6#@WH0)pc4)$2M=pUa5#NN}s+3QlPh;Kc#+>*H{YEUPO_8!uEY!D|s;Q%zsj;p~ zRlC&f&!WfG&b6MLFxV3L3FTEzxii_zEtW`H+Y&S1POmd0aidZaH{aUSMO0hN$DtOg zj0I=6Ph+8ZjadNV^|gX(g^()ly&L+(9p4 zi}i*Q`dvB?jNg?d^cGvnl(Nx*?Xsl)AK3QNx?f{qW3ITmmSqcGp57vLFuJR(ZWq~} zP324eI+?PFJu?;R`zF7t?j3mW#zZas>ocYn9T=srLsw{pB_H$CeMzw^#-4S#YuK-CSs0 z{Xf~wA&Sjq<59v6l<}Ml4eB}??{w1ShkZb+Iz8wa;7rQ&R-2#qJLxKS$)eR9C8tbD zmw&=7<_CzhJ9~ZQ4Woqr*`nHnerK~!p?S49>Ix11g1!LfeRtAI{trk6Sc zyIx~es2If#zwiu|m4GeLNfSdxuZvNij+f;G^*$^6jAP}_-oWTp`M52pR_TIKf9SS@ zZ&`*Gt6K`PX0g%tKCBKID|a;zGRUZM##~Blp9&AoG#P&RgS((@WL*wTWXgr5zl246 zcWYUDyXA+qs+{$=@c>>jUa3^>*XpFwjT`1l%^9lwrmSyEL8_$kS^O>5TTSS9i8@Ta zcpfj6G~4mGI@#CR5)%lqkq!p$gW`WJ_gDnQy+XYe>-U`&+qTfF^s33AE>}f!XmttP zM;5}><;#|bcCrcFwW6E%Q^qQtm0m4Har_qjT4GC7#ZIp?)W4<3+UnJ%#(c_88B`lr zN;;#w$|`pz`xdkLQU{Z2LF0-_rO@d1i{YSRt})B9y44-@{DWpGuQ@dX&*RgLY=<`;{ zPolfbwbZw?Hs8=%K6DJK)GOITwckk+bA@7Sxu++nVhj103H|OX4vgRZ?_3Zm8y(pG z-?<=S+rA6Jyzju@6I5!06FW6QG$>)UEV+YP&n{Z_oNGzzWeNVjuclg#Md~7}+^>uJnue#m6S76B1{zGi|Doo}4lLMm=DgDidJ((ys=6)F zM{s)GhZ{!My~uuNIa|X`40&HLC|_2pYpszgF;W#7aX}dBf)Fe50ubbPj%7QXeNz*r zx=)>u(BGLaE0IBYH_)(G5+jpk*=b9f^fFW*iKWai%9zYc+aPhY`3kpR9DQGZ)OR~NtFs`Qn@p^ZK+KPt5-@oS*I5J z5CTexQS9vWlsYke=t58ppJ-}3tm{;-v(wK$mwU&8QZUSzUl#kc7Tfpg=CGu4Dx%!) z3Se*A|I*$x-(GLAS8gt73=|YS-&&8>_7*=o{-3&SMw`nUJ=@C1R$HRhZ1cxe{n}da zL;P>18;$PNbYtI*YgtrZwvaDqj-v86GTQyGwC%=xed}7U*7!f2d}h_T@6^YfDb&3V zNz^XwP3GxM_0>TDMs9A{NS5wD!R+{Xf4~6f^}I(xze5s&`+q z_oj|!e1aO73XPd4_DfygcC&${>|m%ZF=R2StBh(Fv%%I}97?Y+1dZxr*$x{vYc&2* zz*M$A?%nWeSsWJ_}?vnbmxK6EiNSOpqcSx~n7cuGY>k(`6&WDE(l zHfWCgoy#`61SAgqRc~8ELuyK8&x)FjOr+a9WtJ5St+Lay5#57Sw;bOjeudQ00V3Dh zQkpeoisbdu9t9dDuq{tRCn)ct0S2^>T;=Ve3b($5~{F& zwfx;t3KUX9>B>q)B2p@UCza~ws*~6LR=J9w%ZRAjvDL_Din%qi2({R53Qb8mf8w#v zM9cTdf-b$~TnlNVy;i7ldRrkiIilJ=W|o+(jLA4@l`4B=>SP+m@1Iw!Qk_(6#%gf} z;wp8B<{jCJliSoPm&Ew_eQL%06AP-b9jfiC%#m`!Qnt3yF9BMGO8`5nOe0y15(poWH2i*%c4^m3klC0Xg8Yt5(5w5|A+ zoRnG^JXf@=5H0R2k=Hc6>cv-slOlCQR>ky+<T<@(;%BgmF^J`ynR!lAW`Q)JbVe|vF<>Kd*J6N#s_s8u{!WHnE0*$A z7!@lPBcf_Y%x5z(P46<+bR-RE{&Cfd7xIev$4RM~!Si*GQPO}mmuu>@Ci5(aVCT(c zB&H_D*4X-xxKy{-$rM87&}^|byC#>ZE;KfB0FCS%man0`7}+c88LZfg5dk$dIHv{P2^CpWBG2?p>Cde#eyR%xvl9 zEze0GNRA`PWfo_f+p?w)qj{B$WL_L9)<;OFl?e;w@4WQIPc}W_NtyY1S+)~B(Yai) zR?h9LH!;&{9(ne4Hst-@WyNYfA*lAp*jQ%#U`RGVd7JD))|?QfscbayA{&sVBBIv% zFHCGyNfdYSSomvpDkq^xsL~+|+3g{9s@I#+B8g`H%?oqIBI%^m!r;h4qC(WKUp6&U zG3ZFR^jIW+CkuvCDq9@95LZ?z5~_5NBr3Vzpsq)X0#O3>q6}Qp$mmBiAjb1z|ws5hWS{Z7s94VSI1v>^N%SVxrQH{T;A|MjTsQT>}HjB&1 z)JQpACqK8dQNGKevJE4nHU`>SHK|&2sH~swVgrqYsvWdKhUQD;SrsRerGstG6@zSL zoNn!dcQDwLk5F4amKC|qThB;LEo`^6v0hvz42r!%powljwU>7)#=y$B7%VlJ#nY_? zOnxWrUl$9Q3aR#8RJ*jC_K+}B#b>lfz?aZQMrN$)WZ#eJd?yQZ#YQF}s5Xbjt!K4U z85cPDz3Xx$?Nlsqv7DOeD`uP~QLin496jAe!|i>MiY#0I^K~1xNJ(5<5RjgT8QP;?noJ7H;GSAGp~#monA5K zK0~{2rSfNJcP^eCmztA{=?~Ymmt_4zW@T$$=C<<^a511?rL|3pjF)&7zlsrYUu6aI z$*-byY1zbG#nv7P)!KiB{GC*)RRuqhlJ5n#Vq2_26;!u1=W)1nO|=TC>K#{F9WLNz zv~L_YCc$;MBja@a2+5)#Dmt&QBQZ7B$NQLCEr{QueQkb?KNVN8T5wXTc?TLYas0Mt z7Kp0MA`Tafoih3*Hp;2{Qde~?xl~B)j94W)5@Qfs3`|nV(dAO`O^Qa2`bGQrV-sM^`NT85rxcs&QD znYmFa7n)7(8y3sTd~TBrSJRQ3-uc(G-z1h*!{Vkh+TuJr1Nfp(LvLm&`n;)Bm92(ap&z z>8WvB&(!;Dy|~W^iF-m=t&c3v*EPofoGMJELR+ye zM=(6AL4_%nRimS#IwPB@F^auv1JjAhO1eaaZ1?hZB&vqTt#rCFn$#t}HD%gMdO|QX zDi~ATgsKF;iP^7t7}4%**<&#JdAg7w>sa zm&Weq$Hqy}zuDateI7to0gt>Ch zkKE(5CjQPDy5pr;nc1b1IHq&ry)Crl>&(~Rsa(%$srU;rz2=YTXN4q(3reIy!?fGx z!?eN~lkXwNAG`0dQL4MbMn5$=8RVA15;+ zOQ^vSG6yE|rmQWHx=Vb5nfbGi;A0Qq$5BAN4Bp8Y$P-c{+s}*ADb8hTr5^(J98LcN zb}}qXh^U33c7{aO0@!@3%6pk#w&lIR@3Hxup+8rpJ04ohwyc$Tot1K#Wjr)@>C=Z_ zm$!1AjF=+_IQp2?S7IvMvTYROtn?b2gwk`vo=#e-it^F|j>^M!Qpt(TA$zL1Kj?Hv~7Yh{PL zT}oi`12wv{F^Hs*9kk{Q`E(~uG;FSBONptiLE^V`nw$j_i;hZZg;=PFY96j%EG~#n ze{VUEwNy&)H11>w>3*-8dmrlLrRWV@TiDoIm?DdoWcPi^cM^0my!NG3@sQc7C6lbW z`rF^iw59kEysz4cFDogd+DC|Xvyv`TZB%6z6gF0^C{TZBB(KAvp5>86Z?7mEA zDC3-?15i=RuuYG6U4a+HP6niD zIhU4+^$3!TD+-xI+t_9kn{u<2~W?o7nl|5T?h09onKO-? zbxp3YD;fu>!j^2kjJZpGei6N!t9DXi8iH{$NXn-MN%W=iPJO1y&Lv6u4zMa33v1S- ztGiArbx+8p@gl1u6Mef8-p^zqc456NQe5vPawlW4j-}PwU}vq`X_d%mGPbmLRMaab zV3d2q*W4K$r=xzO zQlV~ruGP;Q6~B=RIWsjzhgX?IpDQwB)?j#FDZq>oQZoZWynbKLFv*Y5DbigRmE2J!0IX4!i zrW&BVoDRBTog|+pq@kFoy&-IA-gAviNB)+f$dJ}je*vH8o}P&8z(obduU> zIki7w^=hlfSeF5&9PY}*gLNEba?Km^#X_@N)-Wj2(rOkGdC?b*n`;9@vIU~LQO;SiQ*%+?%H|t< zLjidU8MU-0e;ZTFWwDiMZa0ckSQeEpoIl?@${*Dk9L}aQFdz!7>^%ssU_BwVJlc%^ zWT;j)2U(LVZjgCgV{b?#TC7`}-ykXNeaBA5>t%v!ca&La!>Gx%9=K9wN9v{EMj5xm z-h4pDb#iKQfqOOy&He@%oXQ$sDY?emFWW<9O^CfVt~4pN@uAdK%N>NwF{Hjg+5Uk} zD$h7IWUqh*Ym(W4V8S%7p+U}5kiMN5mmiceg@%kQFX5!d#DZX&~D#g!?6Ml!Z0RnwE|;8ZJ|*v`F^{!>H6FTuef#MCG9{|&22xIT3XzJQcIey zy-P>2SQc6NX>)61q0r*l?LuTD1!}$TJTzt&p;8R)m=0&WK-;spUwHDy8X}W!iMJ`R zBhn^qgY22>q;KD`w3_N=+hAj7r}Qry8#~TAo%mThQK1&MiyJ>L@05K>IsL1ZeGGmh z(Sf6B;Krz}Mz&P5_2=kC$8_?b53b0%ap z1Vd-@E@Sm&>|#YR7o}&d^!{hg@Um+_dRi$pv9EnHabz&D*UU*7{y%-1{r}7v_W%3t zoiQEcdCfAclqTDxchvE#t*`Y$5zz4y5e>qQ@~5#sHz!-NS*hQ^4drqJ%X$(wj;&c( z>DdX1t&vhw!*p?`iAr)j5tWZx`FW`>@6R&@ln*DThN|4NiI{93k>wq&nc7_I#$2vB z!$0c$$?Tfyg=U19jHX;&){SV2lvMG_3MX#5vdVUvwNBcW7xR=Yh~$>Y>HvGiXAXl zAG%Q8JtnfT<+W|ie!CiC86ma2YaI{9vT=mq{V=a2eO>JzTN5vwzkoKx8bWGqMja2v z+G6=5Cr`4fyfOZg&O0D0?KUwGmy2RkU$@DhRu1{PO>PU#%(|v}V?3Fo@j=M(`#1q4 z&gyYsawJ!@t4T}%BEJ(gj8~Ea{7%Sd3XC>26kY(6rL2VvZB#~9raCWIRAKRJSxu7c zY6mn4R!S{Sv`;49)u{8g%6DoyH5?5zU1(9$qcB})QPWK=;!JZcT>gcsBN}?kIT5;- z!;fyj&^sZjhQ}mcsde$R$cHYPOl?;KiS_MW7cBAn$!QPf%*y?$l(>ds-_&aplF0c( zC&YO+O}3Xt)P~VyxTyIMC52)swbvn}PE|P#%w(s>rH8J^EJcmB`9Vf3iC5bMA@ZeD z-OIO=MIByF4DhALk{XOj@f#Bm&f37um&_aXqv-fEkwKd4+T=*m=F})RD1$_z8Vngn z=&M$lPs`QG!r0XOfvkwP=KStLP@J8l8XLiEP^>T0Vi$&z{i88q{LhoEo5U{#0b{~) z4QhT$`M;Q?UzC-N=WFp!$;u5D>@-RbT!&LphhJo6-L+ZT;jftw=#h8~_b6G1W6~8RYTrcg9_TS| zmfgA)mIKtS%}I|=rlmJY?k<(MeA7fcZs-y7UF;#Pt&vjGBdX1lERZoP0h6P@Xk<`V z@*UeD-KWw9H857BZO*AV(rl5CX>YTZ+k9JHdror3u_|A88xkucrADXLnI~g+HYF#= z8c^5u&u9Z~ijXVY+BRCJ3{|I@&5~;;<@hwY z+>S$+*m@)`TxqZ+CE|M2sw^LRht#79SxuEGHc*p|J`*&*b}^%F$#ojA4#U!tZO-`( zdU#ljtcGQ}hQ++o?_~d$>P>RJ)G>BVyiF_8#tKr$Px{Y_P zrRit;&=ruS{X*)TE4!g_w@2m-<@YZ5~j)h=>}T zD1RDT=8Lhj*zD&pm8Pr)7TZ|{D@S{H^_28f7lxocO#}Yw%5fwNmH_B z$&3P{2BTi~Mil&y8BkwaDYY|b#d=ef$Sx#wrDBqAXh`?%LSkaY)WZ0B`)I!6f?T6? zWlFYglW~lUBqSfz=NhFiO(Mo+BkyYSijo(NG0Nr|YA5>Hp&uR8+jC?n)dn+Ic9mhRdIV!wFd;(2jzBr&p#rcSLE zx&pFc(2IY-)Tt+|L7C{ioF$z=e8J*ABR@o4j*M6{pJ0@B(Wa=Fl#y)f^l4R1GVdw= zO)o?TR<2Mx)}lc>-2SVop1jzaNCi<2JvBee=+823X2~YYpK(MGIJc^8=XBVmkJ8+# zj#)3{`-g`-sYAoPr;Anc-)7nKibz%Sm1V$+bt;u;%G%0_Pedxx)ESTgQ`Ww;hGnGx zc2>qtuvkBARJG`jibe5Fc?l6vwIpTzJe4#0#H3qDVj4u*;l_-M>#KDTf47f1SQuq7{~`l-S_0o~5L_^P9U3Mr82-P_ z%4iRNfr+|1Q-p$%`cUp%H$RI8f2c@YL$jkzq3E?Fl8jk6Zq6i1s>&puD8R-!Dvs5sB$Z3EZGnUlY?;F37FCa@~O#U=4O))h&RgR#MvMSx7qKv>~ zfpS)s$rGSdrtO|X(FVZEYM{m@-_4Sai9JKxhDy`Re4KOuSmNa8)ZkL%Etc9@17P$? z0L=fBSu*Oe+aH$qhXQ)+2~j`ZMw>Jga;}NE9%Mkz+D=|ZXBkDEF&Tr)!AvcAe~2B> z8H)tfbXD}icE$>YRw?y*N+7MM*l@iv>&A_oiaD9m^ID4lry??Hc{G0;qsa+8UM8K1 zai^T$f{Znlc?F zbVHr2UG=_eKtda#$S@j=MdnJ(KbbluFCA{#=wQ$2l9}Svz?9|rbxnSb7L}C-J@X-H?*ugf<7`F|O(qDYe<%JlIhkBOEWQIVPjl*9 z$E$2M6(u7dV%-U<^-;3k%xW^$musgkxxgZ-zM`dRex?qnzG6u=J5<*4vRyYb-z|4D z*(h@MG_B9qt?J#H^~`iR(@}McU{dcPEZXUYGzl^WYU#g6Ee3UQ&zZ~ zT%b%P8PDQzCR=i zL)^0ohAVI~5N>T}KG$aaoZZ)Bep=O-UoW%E-a)02?{`gVVk^M+D-%}EzWE4pz8ft$0ytqGF==tUM^U%cu~fB!5U>(vznGbMMG$#!q&sy#}DXoCqy+s zl4B%5TC1Be9%pUK9byE740x3JOU?P8q_xW>jl!XZhx511dMl*Ql9;YYL{xsQeVAn0 z2SqdzReR>vIn@@M?Vzg^xs^>|IgBHpTbEkR9pF~=r8N*{L@J9ARi_CD2Xo|gaB z3rG?hb5rCazfD4`->wFXb(69h9&@yohDZB3ST-xNbm_I*QSW~h8obniAoQzPQ4PS( zCQ$ZO{8j9;iFs82jjA6IG~R7};5)<=^#3m4B`Hlw5NebnpAH?3J)?+?@hdVN+(El#jc#^78I z5|l+Lvdlr6U6wjfMakTegi2Hd$6BWLcKs#XexEYPkjt z(nx!HO8LJNfT-~=-xMCu_!}WLvlDUEiSx*@x5yq^;^$-8nJQi&FMgt98DvGaJ!+_v}xM6OQolrmh0II zN>33|WBtWgblxtiqfuY#)PR6dU*0L5n75u++3_jm&x}UtF|liow!-YFPdKOI^5KrK z@?sQHKAfP&YEpa{mf5edY{QHx3zuz}N$X&@O0wrm3L<9(66?4^Xz}}tAr(T4>n=`M zBAe(mlJr8%hm^(|&lrauHnqtycxLQ{%{bapU3F{p&uo?v)My_Py)YTp4Sh-(xzNx~ z`S1fX>1DdGx#$QDjxUf;L$IQ@Yn`}Fy$=!4v>>B_8O`4&9Ea5`T_T-AGtq5wvMi-y z(i>~huzP*3ou##&LD5vHysDVm9H)=AR+OQK>zZhdq5o{!=&0Dr+>7Z;d!_@5t&>yR zBh^OKHLpnwucL2`x3(@TYl=N<0a-i}RC5!e7bddHCBMnEUDkME8Ri;40KYMjjhb5S z@lEv@0-9PYrIyFrCu7!DRqB*<`^o7Dxx;Xx?# ziNvH?yUEh_BapMA94c)w3yyu2xQ{J5hQXtT4gi&LoQ0;w(C5@oaxU9%Ta- zQ`HvyEySX=QZ`UAwLe`SO%N8lDm^E)yHPGq2-#gLnhzT$pBEvso??EuoI%DpUF1_YH}w$f(s3 z{!)Ns^AUB*n*2HVfKFMHn}OfXIE0(z?f^OLKT$)+!IzO=mxC`d8vHSG-j|jIb7fzZ zJhsTvBU2(0ZmP&DV4Wv&{9ZTKKqY0>{^aC4^WEfrPH{!r%SL6TpoFDX4u;mv*nUB= zKk{NPYAe=CR!jphWMM})oW|w9B(0S1S`R7zMoKMAZ!%9Na_rwRohf_v-Qs**u~3pl zzS8LwM~G|*lnEc^dWmNu3>)f-{`e#)3`oUc;K_tRPAqR|Ys}~^%{mFqn0s+e=193s zAXDU0I=Q4-!VoR*vXj(NwdJLG!1At?xQ41K_1Xka>&7bF?XpT=cS`0<=8T8kwf8?I zB{^AY%wn#7wY?+K3*Fp+9AReQqsaNnG_1#UYSDz8k>3V6lvxgYGocZOI`?Rr9!|Yk z-Qaq9Sw4FS?+VR;{oGMACu7mFF}?(%Qnpqx4ekhA=gV+(F8g8@NJmq;m1d|A4eLds z=vRFK!%!onMs_t1ChqnxQ)_6f)LJw~Ywr4Td=XJgQ{+!$$3%+>NP5dPZOyNod0i>9 zWMNHa{L!)=OLjdj6K7Frf>%#8HTO?>Kz(tswu;PUp=g8jmNN5V#$9-=PB%Hvcvo3y;lEox*% zjo(`f_}VI_@t&ZMCfc|>#0P*@GyR+NzL3{)s57)K;jNnw_MN#;(2jFg~Bf zbVuxRKz?R2Kvbuh^p1W zrafGiP${OOu9n@i?$sh8AJOb|R|9+KzIR-h`t>$9-il*r6qI`tLt+??&JZk#M_kE;HHu ztb+kZOF{mn%Yz;(r9s%$KG_elblLQddP{M}E0prSb15X_A*9wOweVn!QJFLqWTzla zwlrhQmewph%C(`Iil$#K2h>hH7&m=9@bbtj38mOt%xE9Khi3sutXuxBuM+Zw8fUsR!HrfNih*GrBj&k8vTSco$TiRF4C*{~8FZBXelg5&ofD_|4CZf{g zNgjt}ZTuyTwSU>GAf-rmtP%Z+#t^+M?VMC%uk@( zK}gN++rop*qTW5kcJ+@eyEk5mLNgV#>^p00(IVsZHCx(Q0_c|(F;Fr0S}_gEv`x_> zpweWc&jf2ehqWIi3xTMis5Px)TJByEgI*JDQq4<@kP>U8Gze~I{BrB)@EmJVnwOt^ z9FXQlNUe;uOWf!O%$C%2r}v6e!~TQWUg<^cq_%=o8eNT=l~SYo*e8>ub{}bC?#^y& zm0!rgdsU`-G7DT?GZa;dazM09OLa9IR!YM$!9JOAL=8}jtx)uzbaYD!M8l}mF~R}E zsOSLUv3hi{yR}EMmYd_yv6Sv78SH#WGQEmZ#IH{RT3aWlQ61x+ZDg0Ml=J?qV!NQk zEtihEJhCaQm~LN1SEXX4Vrq3yeKbaAH%cWf3y$O{VbMK)LTX(JNt}qat>3)Q8x(6R zr}oE5;@Zn+$>7V~LmOMnCEj-aM%M~Q{oGqXj z76~{nf$_Z^n)oCnMO4Ja(V04PE1-xQAq~P5^I(iGk||m(Ug)hcqgg*jBf<^$3@ znrN~T>Fx6YllYOK+MW=-Fy<4NTwvY$iRCy|2@>|BT9r}I2EVciiM5eZ%VVt$W7Z#A zCI-5GCR-~Z@lrY@lOd!gN6Wf%J@~msmWj!*fv8DGTH2LtW4jE@Q;{qi%>_jgsp!+L zlv8q@oXL@A4xP#n+d}+=yFW7CCYGkkOo~UI=JYKiMt@th7$b zYAB{A-qGws`07u8xsU?o+$Bet~X`^5_LpNt@Y*W zJ_0(TPEG?cFxsWL!kx?)S0!>xmbAjjc!m^dBcD&X4q>d+yF98gXmHmFYQCpAd=L8jE%3{F@cHi+evL2iF);=w&rY`XE&tF zgOHls-Doh@miy~9WWqT!du8kyN<^3rSgt0RQWv-z$zfINHsZ-iRYV7DdgsC#IYO|D?-io_jlqp%0CLh80PQ2PH9!<2D zZ1>Fj5+S1rC#cCVSAtJEP5TrCv z<0Me>WI|-O1lwnIokWX==*C3(LOxJ)wz=7NJqP3qC#SZjxMyRX?wdJE!R!WVs+ImQ zop9ElxeLN23{hXAHCybCgI&cm1e5g91Rzxf$Un&mpobE6O zUZwqXP#!8M)$Q(CX$PDSq}el zjzH-&@{d$uB{|c$QGy{=d`WgSwdkRpkq5lhzg;N61K#Sc78<>|1uG@Hd25AnAH?O= z9^30>Es09S@@mDRkE@6OlGxgBhz7Z=(OXg1IK>){jxcOh4d(unI&o{rw3io(fFle$ z(xE|`+|j?8uTsqoEplS2SS07`*~gL%A_uh-t#9_nzyS{Ggs28&_rxn>e{L~r%UgX> zF6l{3^hKTkC($4^otGp5o`9rmIt1vmrB6SXd7(p83PQBm)M?SfAkw=&0ydkLYe;{X zShp7@ea%vVrWQMDEz2`#Ui4`Z(^g5ZAXH5_g2u>~wRypS8*Bj8sp&TJNe-oG6m?Qh0Sr$zGZi zH_}L%;{lV6Wk@6K1T`dkMF$O<&@2;AL@S|@QNP^OCVgGmfnhF}h<@i60@Ts6rIsm# z}O zT8I+TT`*E=a>rKlWUbmi&ACQ6=DbX1yjsc68vF@UFZhx{=bkvahy==acgGG~(4mfJa z6V?#y?!7d@K((H?kleB#9Zv5_R7Gd_Cj%33IDN-jG*qL#e>I`vs5P>m)MZ7<5Tr^p z=8#|eGo=Az4rJ8Yh?QJ6RpaLFlEb;E0JRlmoYm!pl~zj4>}sFvr(V7&+O_Jo%n_xi zJE@Z9ly~nt2XrTsvTA$(5q#!S?(lxyn}F=#i-p3 zmyy+Q?Wv~BI}@&DY~9GLT)qfTk&Hs{Cl;FBylu3}JQc)b<_p+l?n`S}X8Lb6mCS`q z>|JmUH0nH=Kxig25=@dO>VrEKh1!DMj^YoG0{YxS<^N)WXb$q$*{ULTOOsor zhb^IsMy74PQ$1j0+U7j!oaM%lm_{kn$)pQKpc; zjn$Pa7tVD@zu*gy11m^&$rj7!S7&DIHEkO4jO@zvzJF(1fL&zN?gaiecI}bv(!k2F ze?z|5%8`!pZ+TfqKzn4qdDIrjH7{fae^M@>EpT#beP{PKLjIFOn->o&70S6k&)?P_;1z4mIO_^D-CuNR7tXj?H2 z!p^cWca?opp?wi^>B}4gI%rl(jqPTiY!a(cch7`6(kLx)zLmq4SWn?aF(lurT$IfE zYz)_+u}bz$m~9fVKZ#mXQ-VOmxvR8BoYGy-T~u7l5ziC{~VRG&R<8 zm)A0~Wjt|e7a@sS_)Yc2ZnW@LO2e_ceKNr)U&4FT+~sEZ0#>7y3$mozOaFke538^_ zk5P_XVbyiQ5uNBHM+wZY(@TOyyi)O1F*P(nA5F|y@IP03=6ZVr-E+AUS5|HixoGRT zQzDxX^64-HY&}njYgi_yUYjs277H?n&CFf8xPuk6WdUkwYi#^K1W3g-K(kzc^tB04 za)iXV%(Pq5%W0K!J4`5}9f7-O$6^XFzFV0R4d`C6g?ZM( z3b7D<)8socmVQkyCzY~(M_V+9rHgHM5VJW_A$hswVH78F?A(Qb{Mf zdV!fJA)ZW%#A_3rIdX16)ElP4k}yT93CY+|?^7c&ndRcCAO-Y3eQ6Dm`TT@P{?)2A zVOr?+4x7m=x64A)C>jOfT)s?e<+*N7R8k+2^G^I?52+<46EdTKRXL{%)(`! z(a4u7Key*#dJzxsrAC5kcyjc@n6?MZxJ+m7{5U2R^JwsKa=P~r&?`qqO;6x&W0lPi zZa$mQuXs!uf133@oH0(ei#l;9%h;IJBwow|I&n@;t&effHr}(B%(l~>yiQJc^^&Wg z2TzgH@SAZSPmy*6P*|@Av^ITb|9+O>}A7NnIE}m zCZOC>P~?1hH8*IU-LfL1)yU@XICSx5DnB(lsg*huR%`uaTc2i5lY~R!ABzuMj@s}W z=uXODnV?$OalUlUIKcsB8MmT7S}Hj>mg}I*carnda%ye}-C3(Cxp6Y_Ygw-p-04Y) zsf}H*p*3f8T;*~%C^0>Yq+sHJ*kos?lb%J#(rUfz$k`p^pX-j0)zOZSq`^+SRh!qK zMh7qIV6VxDSga&T-k9s4ln2E!DebF@; zf7psbOO-K@a#;?M+jt8c*EfY#<<0deS9K>Pq)bpv^_D{btRksieD!h>fL}LI!ti+#TuW)^yKYCq=DeX|*~{5>e`7 zal|e&*RIcwu3ev%$t*0DWYR!e_@+Et7IgRSz(}b$r&3jFC!JJZN`tUnqDEbz<;%}R z=1MkuX_y!3kW7@2ReOUMa;=<+)lzd2S=yK^ezbR6cf(jD>(bW@`m8!RUJ%3c>g`5J zI!>+=CF|*Bs!)u)58;=XfthB zC%ughh1K+Ka)I|kyCb=g)4ijU)0qOW4JscZu9l<+B)e$+@*7eushpbawK$$_jti{p zUP*WH<@Xf}tQB(+nj>p68l(b}idE(oNYfg3UFM?rc=R|zR(hJ3t3o2Aa%y&RWwWN^ zFOzR_prvu*4T!!=*{n(@6ZxKy8XtY6&Y;Xo%%GT}lst_qj`GH}+1BP%)gKaNl~b#I zR*9O-lETJ=$sq&GnG{p%n#zw2=p;6tkm}u8#uD*?a+Jr!#8ASNock)xzMm5-no=P( zHJDN_I!szEoIB4{?EP$@%B#>$JjV$URXsv`qq1MNO-Aw(io9PwJOi#yVMmNmNsAy(J+RWbFFtc|> zGkd4a%FsIytsujht=i z?|$rL-AB2kn(R{@sS*nVqu-TxnK~JD`ckS{JR=>o(Groiiv~!Kd)Bnp!t{pxCK+~} zcGdWcwiSm@qrbE{V6Ou@jJ+|DwkoS=-GZK5Z6#6a#d^JBtKYW_SaR8+W>w{M_vQ3H zafHa|-uvo@Y`*&^gCh1BPU%Q}LYuSDv$m~4mi~C!JMq1Bs@-aGntRmeQ+wxUbuZLL zkJH*Sx2Z0dx+A%p;Z;pea}WIaUOIF$yhe}H+MB1cIkMTgcU!ya za@u=JxYJIHZl<+ra+>=PX1O>%H6lB>d&v?jbNYKWwBb4QQl+~gx0;;hUb6DJZezW_ zgtMEa-KmOn%N@e2<&rKh*xl6aR5{%}^K!m;lV3@7GeuNWtl3=r;RU+8nyn_MxtE;? z@&nz?^l+-2?%w*s?;duumXK1;9MbXTuY6zMg)aJGbA ztH|l?Q_OB$UEW4?vqZ+qoc^A2hf`Z>OKmsX3DuO)EYpqtD)nw_HkzE~UXnAoV$MtL zZk8OU%IWUGalW47ZkBbU$7$_X%C)Z60_iF5W_e7ib2elkEAs)_qAYAJrV3?s_o_f& zp|jIV4k}tLBO)&z-AsL_%IV&=RgV1h7Y}r^bXrADZ-1FBkyR^F6=YLA+d17!8c(0I zvaQ{}n`}9|8+x+?+3D>iGcIgt-4ZG8R5{%}?d~*BbvH|?YI2%;Z!EE7Cv|~pH`|9u zm($*JlN^C8m((W{yPM%wO-^&)O)TTK*QO-3ce8(+(B>>`!(z~+>TdSjP@_8A+RnSG zbkT6r=`Xd&uI^3JXvhRGt2Xgzt(zk*DE>cJ{=aS^I1DTTi@{Q`3@isVU?n&b90iUB z$AaU)31BtIf?7}ya$pTu3)X@4pb0dC7H|?MfmW~qYy|D#WN<1t4V(ea1ZRU!f^)&A z!1>_Q;6iW_xCC4ZE(ceDtH9OZTJRZgJ@_oR5qu8Z1ik=n2DgCQz?Z=7;49z`@HKEJ zxC`6^z5(t9_kjn%x4?toA@B%z6g&>T1D*ii15bjdz%$?n;92k^@ErIFcpm%=ya0Xy zUIf1aFM;2Hm%;DAE8q{{Rq!Y98u$x%9sCWv0p0{}fw#ds;9c+@cprQKJ_H|ukHJ>G z1Y3h`Ko8Ip^a6cAU(g>60D}Z=>jn$SrbBr(3=9X`gOOlIuoKt?i~<=j8jJyB!5&~7 zm;fe%NuUZ$0aL*=Fdgg-W`cdeeqeua05}L73}%BlU@n*k4h0LqVc>AE7%TzHz!9JZ ztN=%XRp4lF3^)!P4_1Q{K`p2QInV&sf;?Cc8bLECfRjKGw1PIU5o`h{gHyn1;B;^% zI179doC7`u&I6wY7l4bv#o$tK8Mp#m39bg$fX{&Iz-Pe?;B(;f;0xf3;1+Nz_!9Us z_zL(c_!{^+xC`73z5%`o?gRIOZ-H-vhrq+&QScb}4)`wk9{4_ZO3=3MX(3td2fTU~ z{0KY;egd8cKLam-Uw{|EufR*-H{fOPJMaql19%nu3A_gW0$vAy18;yg!CT;M@D6wv zya(O~AAk?RN8n?yRd2!8U>nc_^aQ;?AJ7-{2Lr$$Fc=I4+kxR=1Q-c+06T%5!6>jR z7!7s!OP(H;1%#k@GAH-cn$nj(6;V%AqDyGym}M- z1H29X3El<&0`G%=gAc)fz{lXfVCz1DPk~uqT)VCW9$pFE9*dH7S4g!aO*`ONC z1@pn7U?DgRECP$cQm_mx2Q^?NI1(HMjt0kqA!0q5G;12LLa3{D6+ylM=?gjUO2f(+$gWw_X2zV4c4!#4P z0N(>of~UYU;0NGY@FVaX_z8F({0zJRegR$tzXC6T-+-6F@4zeI58zesC-55h3wRy; z4ZH!~1aE=2!8_nx@E&*{d;mTKAAyg-R(%CqgKa<$&=d3meL!E(9}ED4z+f;GYzKye z5nv?P0qg{J2BW~PU^Lhbj0L-cabP@{2=)Y3U^18r_5#zv3@{Vy1NH;6zyaVua4q!sa11yW91l(aCxR@f1NEQ*tO0qj4m5%$ zPyj8U2uh$0Yyg`;J2(ZL3Qh-SfV05a;2dx+I1ii;E&vyTi@_z}GH^M#5?lqY0oQ`- z!1dq;a3lCUxCwj_+zf67w}CH%+rd}C9pLNWPH;E42YeIU3+@LGfNz5b!NcGY@ECX; zd>1?cz7L)RPlIQ`55cqG$KW~eQ}8_aId}p561)h04PFAj1uui&gIB;G!K>iU;5G19 z@H+TAcmwOq$2JkuXdGH1BMQ{ta6?_SN8GHqN6?_eR9oz-(2HybR1owga!MDJ-!9(C- z@F;i;ddV$`cFX#sb zfPr8z7y`Bf!@vlzJ=g*42zCa$fL%cb>;}ew-N7DUJeUCX1e3sIFa_)drhyq?Z?F&8 z7t8|tg9E`q;1DnyRD-!-J~$LC1c!k|U@=$3Tnjz}t_Pn5H-gWBo4^;q&EOVr8~75q9ef4c0lo(A1b2aZz&F6X;6CsG z_!f8&JOmyAkAla+cfb?id*Dg%6nF;w06YtR1fByw0ndYDBl;3e=I@G|%v zcm@0cybAsVUITvtuY2r^T7hJ5F8E`fhAxmI07sOE5J&y3LFKF0mp*l!3p3* zkOg(19yEY8AP?4oM$iNbpam2`3ABL?U=wHur+`zz>EH}-7C0N61I`8Kf%Cxy;6iXQ zxCC4VE(ceFtH3qjT5uh>9^3$K1fK^tfiHra!L8sn@MUm2_$s&qd>z~g?gsaOZ-RTl z{on!cZSWv?7(4;cAs31A|a1ggLkFcnM# z)4|?gCfFD32lfXCfP=unU^bWo=7M?PP_O_T1`Y>{!4j|x906*;3UDM?1&#*CfaAdN zU^O@q)Pg#Y0}Ws;$bDU;E&)>;LqSM;IH6s;P2o~@DK1d_$PQ5{0qDf{tZ3^{{bI^|AMUt z2|fXOfNeo9&>Qpx{lEY)5DW%Gz;<957y-5iJAfU*&R`d?E69M|z! z0Uv??f~|%KJ^{7?+k&2;H|PWUf&O417zBoZpp)!H!@junQOkGGH_q1IB_q zz&J1gOazla6_^61f@xqn*c;3Q`-1(z{@?&`5I7jj26Mn%Fb^CG7J$RR;b1XX0+xXz zKn+*{js&Z~(cl5epfg)%HZD1qV1WpF0fYZR~ z;7o89_#`+7d zf%n0`!H3{K;A8M#u=P;ECqNIdE$9V$gTA027yt%>!C(m34h#b$!1iDVup`(R>;iTL z8L%4|19k^{fbn1g*b__wlfe|Q7nlZSfW5&!U|%o`><q!sa11yW91l(aCxR@f1NEQ*tO0qj4m5%$Pyj8U2uh$0 zYyg`;J2(ZL3Qh-SfV05a;2dx+I1ii;E&vyTi@_z}GH^M#5?lqY0oQ`-!1dq;a3lCU zxCwj_+zf67w}CH%+rd}C9pLNWPH;E42YeIU3+@LGfNz5b!NcGY@ECX;d>1?cz7L)R zPlIQ`55cqG$KW~eQ}8_aId}p561)h04PFAj1uui&gIB;G!K>iU;5G19@H+TAcmw<WD1a7F1SQZ0Hh@i_9h?GA1*d~Ez**pIa1J;ZoCnSa7k~@F#o!Wf8Mqu=39bUy zfNQ~Z;CgTaxDk9F+yuS|ZU(o4+rXE>?cl564)AqwC%7Bj1HK9F1^0soz_-DJ;9>9x zcnmxaz6+iJ-v>{Er@=Gehu~T8WAGgKDR>_I9J~O230?%h1}}l%f|tSX!7Jd8;8pNv z@EZ6lcpdy5yaE0J-U9yw?|^@S_rSlw2jD;8Bk*6a)d;~Sz&2o8&=d3qeLz3Z9}EP8 zzz{GL30=l8aN%C3C;qa1m}QHf%Cwp!3E$Va51nc_^aQ;? zAJ7-{2Lr$$Fc=I4+kxR=1Q-c+06T%5!6>jR7!7s z!OP(H;1%#k@GAH-cn$m&ybk^j-T?mqZ-IY;cfh~Ed*I*T1Mna45%@3IYNX&3U>mS4 z=m~m*KA<1y4+erkUzK5HiAvyWN->N4V(_n1ZROyf^)#9zkHC+?Pry&X&%n>YFTgLs zufVUtZ@_QC@4)ZDAHW~MpTM8NU%+3%-@xC&o8TYdZSYUt^;2LA zAq>JIJR%?xA|ooIAqHY1HsT;2;v*pvAqkQqIZ_}MQX?(WAp!81I^OT5Axyv2Kbz$bjhSA4_2_zyqv3x5zG=3o9nAOt~B z1V;#jLTH3VI7C21L`D=uLv+MMEW|-v#76=oLSiIEGNeFCq(&N~LwaOHCS*ZYWJeC< zLT=&)J7fDLwz(vBQ!x%G)D`xLTj`| zJ9I!tbVe6+LwEEFaIDgf*=@z zBP2p048kHjA|MhXBPyaH24W&M;vgR4BOwwY36df?QXmylBQ4S)12Q5rvLG9>BPVhp z5Aq^E3ZM`QqbQ1@1WKYb%Ag#|qarGy3aX+yYM>Tsqb};90UDw)nxGk)qa|9Q4cekT zI-nCeqbs_h2YRA6`k){BV;}}$2!>)fMqm_1V=TsD0w!WIreGSTVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J< z25#au?%*Eo;~^g537+CPUf>m8<1OCd13uz2zTg|a<3IesFZ@P;*nbI#KnRSW2!;>{ ziO>jxa0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^$c7xqiQLG8 ze8`W2D1;&?isC4NQYekGD2EEDh{~vfYN(EysD(PHi~4AQMre$tXoePOiPmU?c4&`| z=!7olitgxvUg(X!=!XFqh`|_wVHl2)7=T*o8gVi~Tr&LpY41IEE8AiPJcPb2yKSxP&XXitD(6 zTeyw8xQ7RLh{t$>XLyd6c!f83i}(0|Pxy?l_=bP+AAaH&{vbe{zx;zh2!fypjt~fi z&RNBxPXhej4QZ?>$r(q zxP!a6j|X^!$9Rfoc!8IHnGzsCzyPl0Yt zBPVhp5Aq^E3ZM`QqbQ1@1WKYb%Ag#|qarGy3aX+yYM>Tsqb};90UDw)nxGk)qa|9Q z4cekTI-nCeqbs_h2YRA6`k){BV;}}$2!>)fMqm_1V=TsD0w!WIreGSTVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_ z<0`J<25#au?%*Eo;~^g537+CPUf>m8<1OCd13uz2zTg|a<3IesFZ@P;cz+3qKnRSW z2!;>{iO>jxa0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^$c7xq ziQLG8e8`W2D1;&?isC4NQYekGD2EEDh{~vfYN(EysD(PHi~4AQMre$tXoePOiPmU? zc4&`|=!7olitgxvUg(X!=!XFqh`|_wVHl2)7=T*o8gVi~Tr&LpY41IEE8AiPJcPb2yKSxP&XX zitD(6Teyw8xQ7RLh{t$>XLyd6c!f83i}(0|Pxy?l_=bP+AAaH&{vbg7zx;zh2!fyp zjt~fi&RNBxPXhej4QZ? z>$r(qxP!a6j|X^!$9Rfoc!8IAjW>9Q_xOlU_=2zaj(_n3Kk*xX5HP`C{y|^_K`;bI zNQ6QdghhBnKqN#)R767z#6)bwK|I7qLL@>GBt>$hKq{n0TBJh;WJG3UK{jMZPUJ!! zN9!7&`iNu0tNoW*%uz$IM9Rb0aj z+{A6%!9Co^Lp;J0JjHXoz$?7QTfD;ue8gvb!8d%zfB1o4_>BMw{}K>^5Ewxb3?UE_ zp%Dh*5FQZ`2~iLg(Gdf&5F2q34+)SEiID`!kQ^zI3TcoQ>5&1MkQrH#4LOh#xseC? zkRJt62t`m7#ZdyKP#R@X4i!)ll~D!NP#rZ<3w2Nz_0a&0&=^h83@y+StkJp z30=??-O&TR&>MZx4+Ag|gE0idFdQQ>3S%%9<1qn~Fd0)Z4KpwkvoQzrFdqxC2urXO z%drBhuo`Qz4jZr$o3RDkupK+G3wy8^`*8q=a2Q8%3@30Br*Q`7a2^+N30H6x*Kq^4 za2t1V4-fDVkMRW0@EkAk3UBZh@9_bj@EKq64gcal{KPN(L4ZVm`3Hdz1VIrTArK0o z5fY{-tB$b~$}i~J~n zLMV))D25U!iP9*8aww0AsDvu0it4C=TBwb>sD}n5a%h{>3OX_$_gn1wl*i}_f9MOcibScVl? ziPczxby$y$*n}phJIE6Dfi}SdEOSp`yxP}|JiQBk? zd$^B>c!Vc-isyKNS9p!Lc!v-8h|lifX8Vny8IBsE7J!h(>6Frf7~9Xoc2ji+1RM zj_8ao=!Wj-iC*Y~zUYqu7=*zXieVUmkr<6J7>Dtgh)I}&shEx#n1$Jxi+Napg;0kaqU<5%h1V>1O zLKuWactk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={iq()k#Lk46-W@JG&WJgZqLLTHr zeiT3<6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@LjyEKV>CfCG)GIcLL0P2dvri2 zbVgTnLl5*sZ}dSw^v6I9!VnC_aE!nxjK)}u!vsvkWK6*{Ovg;j!W_)Sd@R5sEXGnS z!wRg#YOKLJtj9)d!WL}BcI?0|?8aW~!vP$`VI09R9LGtV!Wo>!d0fCHT*g&g!wuZT zZQQ{<+{Z&a!V^5jbG*PSyvAF+!v}oCXMDjoe8+$IfnWHI0LlIm5P=XFK@kig5E7vg z2H_AM5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+ zcX1C7@DPvj1kdmsFYyX*@D}g!0iW<0U-1q9;y?VvFZ@A(6rrBDWCQ63dg36)V5)ldU9Q5$to5B1RyjnD*5(Ht$%3a!x=?a%=o(HULP z4c*Zbz0e1J(H{da2!k;c!!QCPF&bkq4&yNqlQ0ESFȽ$rm7^RNI5u^3CR49l?+ ztFQ)Zu^t<+37fGM+pq&Wu^W4^5BqTthj0W(aU3Ub3a4=v=WqcRaT!-|4cBoKw{Qn{ zaUT!x2#@g;&+q~-@fvUN4)5_1pYR1=@g4u-2Y%u={vcqAzx;#12!db;j*tk2FbIqA zh=53ljHrl)7>J43h=X{DkAz5sBuI+nNP$#HjkHLI49JMg$bxLhj-1GaJjjduD1bsJ zjG`!p5-5q%D1&k+kBX>-DyWL;sDWCjjk>6Z255-JXo6;Fj+SVJHfW3X=zvb>jIQX0 z9_WeQ=!1UfkAWD3AsC9`7=ck3jjVj(u-A|4VTArd1Ak|8-#A{EjgEz%RyhG95HVid+;EXHF3CSfwBVj5;(CT3#}=3zb-ViA^LDVAdeR$(>P zVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)OZs9iW;vOF0 zAs*uip5ZxO;uYTDE#Bh;KH)RI;v4?OfB1=C_=5nc{_+n3AqavZI6@#4LL)4~Ap#;I zGNK?Fq9Z0^Ar9gqJ`x}i5+f;+Aq7$*HPRp*(jy}>Aq%o1J8~cwaw9MDp#Tb^Fp8iU zilZb-p$y8RJSw0PDx)f@p$2NAHtL`r>Z2hVp$VFzIa;6VI%Z%NW@9eqVF4CmF_vH%mSZJWVGY(| zJvLwyHe)NcVFz|%H}+s3_TwN9;Ruf6I8NXcPU9@j;Q}t=GOpknuHz5EHQx2k{Ue36Tg%kQB+00;!N1X^{>YkP(@Y1=)}tIgtx_kQez;0EJK(MNteT zP!gq42IWv56;TOQP!-it1GP{abx{uu&=8H$1kKPKEzt^X&=&2{0iDnpUC|9a&=bAU z2mR0=12G6gFciZv0;4b*V=)dBFcFh61=BDcGcgNuFcf);|KSII;Wq-L`Aa|qLSO_%FoZxzghm*ILwH0)Bt$_} zL`Mw7LTtoEJS0FuBt{Y>Lvo})JFp}LSr;VGqgZUv_>1WLwj^YCv-tqbVm>LLT~g% zKMcS?48{-)!*GnmD2%~ajK>5_!emUvG|a$E%*Gtd!+b2nA}qmDEXNA0!fLF=I&8p3 zY{nLB!*=Y%F6_Zx?8gBd!eJc6F`U3joW>cP!+Bi9C0xN(T*nRE!fo8eJv_ieJjN3| z!*jgEE4;y5yvGN8!e@NNH~fqL@DsoA2LaOl5ClbVgg_{SMp%SH1Vlt+L_st} zM@+;*9K=O@BtRl0Mp7h03Zz78q(M5QM@D2q7GyiQo8xfa(774+0|yf+09UA{4?PEW#rKA|W!OA{t^K zCSoHF;vqf~A`y}xDUu@vQXw_cA{{ayBQhfkvLQQiA{X)?FY==R3ZXEHq8Lh`Bub+U z%Aq_eq7tg0DypLfYN0mjq8=KcAsV9znxQ#bq7~YpE!v|4I-xVVq8oakCwij~`k_At zVi1O4D28JMMqxC@VjL!5A|_)BreQi}Vix9LF6Lta7GW`#Vi{IoC01h%)?qz1ViUGt zE4E_?c40U6Vjm9RAP(aQj^Q{?;uOx{EY9NsF5xn+;u>z?CT`;n?%_Tj;t`(UDW2m6 zUg0&~;vGKVBR=B`zTrFm!w>wzZv;sHmw*U_zzB+92!W6YjW7s@@Q8>=h=Qnyju?oA z*ocdGNPvV$j3h{g5jXcPQ{3wV*D1xFWjuI$^(kP2^ zsDO&7j4G&x>ZplYsDrwwj|OOj#%PLWXn~e!jW%e9_UMRC=z^~3jvnZR-sp>d7=VEo zj3F3?;TVZg7=y7Gj|rHB$(V|1n1Pv?jX9Wy`B;cWSc0Wkjulvi)mV#l*no}Lj4jxP z?bwN3*n_>;j{`XLmoCX$9+r>d7*60MPU8&D;XE$l60YDXuHy!7;WqB#9vYyI#qahlh37VogTA&qLqb=H@13IEJx}Y1nqbGWy5Bj1% z24D~dV2ac#BcmTz>I(S2Z0d;!4MoF5ei`t7U2;Akq{YC5e+dA z6R{Bo@em&gkqAkU6v>eSsgN3Jkq#M<5t)$%*^nJMkqdc{7x_^Dg-{qpQ4A$e5~WcF zr+ zF$hC26vHtBqc9p{F%A#!ahu?btS z72B}`yRaL3u@47u5QlLD$8a1caSCT}7UyvRmv9+ZaSb8mq(NGwM+RgkMio>;b<{*H)InX;M*}oMV>CrGv_MO=MjNz4dvru6bU{~iM-TKuZ}de!48TAP z#t;m{aE!z#jKNrp#{^8mWK6|0%)m^{#vIJUd@RHwEWuJN#|o^%YOKXNY`{ir#ujYD zcI?D1?7?2_#{nF|VI0LVoWMz(#u=Q$d0fOLT)|ab#|_-VZQR8@JitRd#uGflbG*bW zyun+%#|M1EXMDvs{EPqa6Tk2W0W$yP9|S@W1VwO!Kq!PpScF3aL_}mnK{P~1OvFMQ z#6^50Kq4eYQY1qPq(o|@K{}*IMr1-3WJPx5KrZA)UgSdo6hvVZK`|6ZNt8kvltp<| zKqXX0Ra8R_)I@F6K|Rz*Lo`AYG(~f?Kr6IHTeL$5bVO%#K{s?qPxL|`^hJLRz#t69 zPz=KejKpY+!8nY^L`=dIOvQA}z%0zhT+G7)EW~0g!7?nzO02>fti^h4z$R?QR&2u# z?8I*D!9MKAK^(#n9K~^*z$u)@S)9WKT*PHu!8KgRP29pA+{Jx7z#}}yQ#`{9yu@p~ z!8^RiM|{E;e8qSCiy!!j-}r-oS^n}50wV~5Avi)J6v7}Z!XpAAAu^&O8e$+OVj~XX zAwCi!5t1M&k|PCDAvMw>9Wo#zG9wGJAvp)iV~7)qcdN}~+Qp*$+0 z5~`pos-p&Kp*HHG9vYw_8lwrCp*dQj722RJ+M@$Hp)6wcr*&f@|u;WDn`8gAewZsQK_;XWSX5uV^Fp5p~x;Wggk z9X{YAKI03%;XD4r5B$P!1jzcAfCz-Z2#R0`fshD|FbIe6h=@ptf~bg&7>I?~h>Lhg zfP_elBuIwjNQqQPgS1GG49JAc$ck*pft<*VJjjRqD2PHRf}$vn5-5ezD2sBafQqP$ zDyW9)sEJyrgSx1X255xFXo_ZNftF~EHfV?T=!j0}g0AR}9_WSM=!Q9BgRvNo37CY*n2Kqbfti?%Ihcp}ScpYff~8oF6A&itNaNT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N~nyg zsD>J-iQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i~bmZK^Tmo7={rT ziP0E?aTt$@n1m^qis_hvS(uHvn1=;eh{affWmt}tScNrMi}l!mP1uaB*oGb0iQU+P zeb|qKID{iOisLweQ#g&YIEM?kh|9QwYq*Y^xP?2oi~D$hM|g~6T7end$At} za0rKS6vuD^Cvh5Qa1Q5j5tncUS8*LTa0|C_7x(Z05AhgJ@C?uK60h(EZ}A=<@Cl#s z72ohL{=-lF!XE_4`ImnX2tg1O!4U$X5E@|-4iOL$kr4&a5FIfQ3vmz^@sR+DkQhmk z3@MNjsgVZhkRBP430aU8*^vXekQ;fC4+T&Vg;4~>P#h&u3T03hC&g4js@DozVr|&>cO|3w_WR{V@Q8Fc?EI3?ncSqcH~K zFdh>z2~#i?(=h|HFdK6*4-2pmi?IaDupBF~3Tv#+fwuo+vi4Lh(CyRirRupb9; z2uE-f$8iFua2jWE4i|6{mvIHxa2+>s3wLlA_wfLa@EA|=3@`8!uki-&@E#xW319FP z-|;Vg;3t0L4+7@;%RdN=AP9!w2#HV#gRlsX2#AEph>B>4ftZMmIEaV%NQgv8f}}`} z6i9{CNQ-pHfQ-nDEXaoJ$cbFYgS^O(0w{#SD2iezfs!bVGAM`gsEA6af~u&F8mNWZ zsEc}NfQD#{CTND{Xo*&6gSKdo4(No==!$OWfu87%KIn)37>Gd_f}t3W5g3Kh7>jY3 zfQgulDVT=on2A}KgSnWG1z3c|Sc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-U zBRGcRIEhm@gR?k~3%G>KxQc7Ift$FEJGh7Yc!)=Mf~R5&nckOf(h9XXH-xsez7Pyhu{7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl z8+A|*_0bTG&;(7<94*iat8+))1`*9G5 za0Ewj94BxJr*RhNZ~+%_8CP%(*KrfKa0hpB9}n;dkMR`G@B%OK8gK9p@9`0z@C9G- z9slA7e&RR&AYk6V{DZ&6&UgLsIKgh+%WNQ&f0 zfmBG1v`B{x$cW6yf^5i+oXCYd$cy|afI=vYq9}$ED2dW2gK{X3il~GtsEX>Sfm*1I zx~PW+Xo$vWf@WxrmS}}GXp8pffKKR)uIPpy=!xFwgMR3bff$4#7>eN-fl(NZu^5L5 zn25=kf@zqJnV5w+n2Y&XfJIo0rC5d)Sc%nGgLPPsjo5@O*oy7gfnC^*z1W8XIEceI zf@3(2lQ@MlIE(YRfJ?ZHtGI?6xQW}igL}A-hj@f1c#7wEfme8qw|IvS_=wN=f^Yba z|L_C9@EZa0{Usm*Auxg>7(yTZ1V~p)s1G8CswvTB8lxp*=dH6S|-)x}yhrp*Q-X9|m9`24e_@VK_!&6vkjI#$y5| zVKSy-8fIW7W@8TKVLldO5td*nmSY80VKvrb9X4PiHe(C6VLNtW7xrK;_TvB!;V_Qk z7*60MPU8&D;XE$l60YDXuHy!7;WqB#9vYyI# zqahlh37VogTA&qLqb=H@13IEJx}Y1nqbGWy5Bj1%24D~dV2ac z#BcmTzyg2y2Z0d;!4MoF5ei`t7U2;Akq{YC5e+dA6R{Bo@em&gkqAkU6v>eSsgN3J zkq#M<5t)$%*^nJMkqdc{7x_^Dg-{qpQ4A$e5~WcFr+F$hC26vHtBqc9p{F%A#!ahu?btS72B}`yRaL3u@47u5QlLD$8a1c zaSCT}7UyvRmv9+ZaSb8mq(NGw zM+RgkMio>;b<{*H)InX;M*}oM zV>CrGv_MO=MjNz4dvru6bU{~iM-TKuZ}de!48TAP#t;m{aE!z#jKNrp#{^8mWK6|0 z%)m^{#vIJUd@RHwEWuJN#|o^%YOKXNY`{ir#ujYDcI?D1?7?2_#{nF|VI0LVoWMz( z#u=Q$d0fOLT)|ab#|_-VZQR8@JitRd#uGflbG*bWyun+%#|M1EXMDvs{EPqa6Tk2W z0Sf))9|S@W1VwO!Kq!PpScF3aL_}mnK{P~1OvFMQ#6^50Kq4eYQY1qPq(o|@K{}*I zMr1-3WJPx5KrZA)UgSdo6hvVZK`|6ZNt8kvltp<|KqXX0Ra8R_)I@F6K|Rz*Lo`AY zG(~f?Kr6IHTeL$5bVO%#K{s?qPxL|`^hJLRz#t69Pz=KejKpY+!8nY^L`=dIOvQA} zz%0zhT+G7)EW~0g!7?nzO02>fti^h4z$R?QR&2u#?8I*D!9MKAK^(#n9K~^*z$u)@ zS)9WKT*PHu!8KgRP29pA+{Jx7z#}}yQ#`{9yu@p~!8^RiM|{E;e8qSCiy!!j-}r-o zh5zyo0wV~5Avi)J6v7}Z!XpAAAu^&O8e$+OVj~XXAwCi!5t1M&k|PCDAvMw>9Wo#z zG9wGJAvp)iV~7)qcdN}~+Qp*$+05~`pos-p&Kp*HHG9vYw_8lwrC zp*dQj722RJ+M@$Hp)6wcr* z&f@|u;WDn`8gAewZsQK_;XWSX5uV^Fp5p~x;Wggk9X{YAKI03%;XD4r5B$P!1Ss;C zfCz-Z2#R0`fshD|FbIe6h=@ptf~bg&7>I?~h>LhgfP_elBuIwjNQqQPgS1GG49JAc z$ck*pft<*VJjjRqD2PHRf}$vn5-5ezD2sBafQqP$DyW9)sEJyrgSx1X255xFXo_ZN zftF~EHfV?T=!j0}g0AR}9_WSM=!Q9BgRvNo37CY*n2Kqbfti?% zIhcp}ScpYff~8oF6A& zitNaNT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N~nygsD>J-iQ1@xdZ>?vXoMzcisop6 zR%ng3Xon8yh|cJOZs?Al=!HJ$i~bmZK^Tmo7={rTiP0E?aTt$@n1m^qis_hvS(uHv zn1=;eh{affWmt}tScNrMi}l!mP1uaB*oGb0iQU+Peb|qKID{iOisLweQ#g&YIEM?k zh|9QwYq*Y^xP?2oi~D$hM|g~8 ztjLBO$cfy@gM7%3f+&O{D2n1Jfl?@qvM7fNsEEp_f@-Lany7_3sEhh&fJSJHrf7y1 zXo=QngLY_-j_8Cg=!)*>fnMm1zUYSm7>L0bf?*hrkr;(B7>n_kfJvB)shEZtn2Fh# zgL#;bg;<0oSc>IXfmK+IwOEG@*oe*8f^FE2o!Esv*o*x*fI~Qpqd0~WIEm9ZgL62K zi@1altDR^M@3XZ6;wra)IcrNMqSiH12jZqG(j^oM@zIq8?;4xbU-I` zMptx05A;ND^g%!L$3P6i5Ddj|jKC<2##oHQ1Wd$aOu;lv$4tz^-4EAvi)HBtjz$ z!XZ2&A`+q?DxxC>Vj(u-A|4VTArd1Ak|8-#A{EjgEz%@dU zAr@f?mSQzlE!JTJHexfjU>mk$Cw5^E_F_K{;1CYuD30L-PU1Aq;2h55A}-+y zuHrgw;1+JGBt>$hKq{n0TBJh;WJG3UK{jMZPUJ!! z{%h8@_6-PnVD*pGuagd;eL<2Zp+IE}M7hYPrf%eaDT zxQ?5+g*&*5`*?tV@d*Fn37+9OUg8zr;4R+c13uw1zTz8x;3t0L4+57BAP9mXI6@#K zLL&^qAv_`?5~3g~q9X=kAvWS79ugoS5+ezcAvsba71AIr(jx;hAv3Zf8*(5gaw8A& zAwLSD5Q?BEilYQdp)|^(94eq9Dx(Ujp*m`!7V4lb>Z1V~p)s1G8CswvTB8lxp*=dH z6S|-)x}yhrp*Q-X9|m9`24e_@VK_!&6vkjI#$y5|VKSy-8fIW7X5(-CgSnWG1z3c| zSc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~3%G>KxQc7I zft$FEJGh7Yc!+=T82{lZp5X;v;x*pj9p2+3KH&?#;yZre7k(p9xc~wqD1zZHgg_{S zMp%SH1Vlt+L_st}M@+;*9K=O@BtRl0Mp7h03Zz78q(M5QM@D2q7GyT*o8gVi~Tr&LpY41IEE8AiPJcPb2yKSxP&XXitD(6 zTeyw8xQ7RLh(~ygCwPkIc!5`VjkkD*5BP}B_=0cvj-U92KL}JlfFKBp;P?w65ei`t z7U2;Akq{YC5e+dA6R{Bo@em&gkqAkU6v>eSsgN3Jkq#M<5t)$%*^nJMkqdc{7x_^D zg-{qpQ4A$e5~WcFr+F$hC26vHtBqc9p{F%AxVV-NOWKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_? z?%*!&;{pD~Bm9Rac!uYAiC1`ow|I{a_=L~+if{OVpZJYG2wWk6AP9!w2!W6YjW7s@ z@Q8>=h=Qnyju?oA*ocdGNPvV$j3h{g5jXcPQ{3wV* zD1xFWjuI$^(kP2^sDO&7j4G&x>ZplYsDrwwj|OOj#%PLWXn~e!jW%e9_UMRC=z^~3 zjvnZR-sp>d7=VEoj3F3?;TVZg7=y7Gj|rHB$(V|1n1Pv?jlb~^=3+h;U=bE$DVAXc zR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU84&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX z;2!SdA^yc<{D-G_h8K8=*LZ_>c#n_xgfIAt@A!dV_>Djn0|<4F%b)K5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSt z1jSGsB~c1xP!{D;0hLf0RZ$H!P!qLL2lY@N4bccq&=k$l0Mjc zJ<$t&&=>tN0D~|XLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2bMO!5VLldO5td*nmSY80 zVKvrb9X4PiHe(C6VLNtW7xrK;_TvB!;V_Qk7*60MPU8&D;XE$l60YDXuHy!7;WqB# z9ve@<1d6nD1<>+ghvEK zLS#fmG{itm#6}#%LwqDeA|ydlBu5IQLTaQ%I%GgbWJVTbLw4juF62R8fQ49$C0K^#Scz3w zgSA+X4cLUu*otk~ft}cmJ=ll+IEX_yf}=Q&6F7y_IE!<*fQz_{E4YU1xQSc1gS)to z2ly9{@E@Mw8J^=MUf~Vi;ypg#6F%cBzTpRc;y3;vaOD7kAQ*xp1VSP-!XO;NBO)Rp z3Zf!9Vjvb`BQD}00TLoHk{}t9BPCKH4bmb#G9VK&BP+5Y2XZ1e@*p4bqaX^Q2#TUO zN}v=DF;i}_f9MOcibScVl?iPczx zby$y$*n}phJIE6Dfi}SdEOSp`yxP}|JiQBk?d$^B> z_!p1yAD-eFUf?BO;|<>7JwDHv&}&ATWX=82&;CghFV9ML0x2L_|gu zL_>7ML@dNXT*OBLBtl{&MKYv7N~A^_q(gdSL?&cGR%AyG(26hm>8 zL@AU(S(HZwR6=D`MK#nwP1Hsm)I)tVL?bjoQ#3~lv_fmNMLTprM|4IPbVGOaL@)F~ zU-ZWS48mXx#W0M(NQ}l9jKg?L#3W3?R7}SV%))HU!9SRX`B;cWSc0Wkjulvi)mV#l z*no}Lj4jxP?bwN3*n_>;j{`V_!#Ij#IDwNmjWalh^SFphxPq&=jvKgz+qjE+cz}m^ zgvWS-r+AJRc!k$^i+A{dkNAu)_=fNJiC_4GKve?>f}jYFzYr3k5C&lp9uW`;kr5Tq z5Cbt08*va1@sSXTkOWDQ94U|rsgV}xkO3Ky8Cj4G*^v{ukOz5@9|cedg;5m6Py!`U z8f8!pTNUC01b#)?z(2 zU=ucDE4E<=c49a7U?2A5AP(UOj^a2@;1o{dEY9HqF5)t-;2N&uCT`&l?&3Zk;9oq# ze|Umtc#fBNg*SMM_xONM_>8akh9CHe-}r;T)dC2DUGZl zfmn!*xQK@YNQlHpf@DaJlt_g%NQ?ByfK14YtjLBO$cfy@gM7%3f+&O{D2n1Jfl?@q zvM7fNsEEp_f@-Lany7_3sEhh&fJSJHrf7y1Xo=QngLY_-j_8Cg=!)*>fnMm1zUYSm z7>L0bf?*hrkr;(B7>n_kfJvB)shEZtn2Fi=8~6wcr*&f@|u;WDn`8gAewZsQK_;XWSXUp&Tt zc#3CuftPrVH+YBl_=r#Vg0J|FANYme2vj|Qzz7;ZKs$Ia^A&itNaNT*!^Q$cF+bh{7m>VknN1 zD1|a8i}I*|N~nygsD>J-iQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$ zi~bmZK^Tmo7={rTiP0E?aTt$@n1m^qis_hvS(uGE_y_Ya9}BSvORyBnu>z~G8f&o* z8?X_Zu?5?(9XqiLd$1S#aR7&K7)NmoCvXy{aR%pb9v5*5S8x^AaRaw-8+UOJ5AYC= z@EA|<6wmPjukadg@eUvG5ufn|-|!tj@e6+ts73%m5EQ}j7eXQw!XPZdBLX5JGNK|H zVjw1BBM#yrJ`y4kk{~IPBLz|+HPRv-G9V)|BMY)2J8~iy@*pqrqW}t_Fp8oWN}wc4 zqYTQSJSw6Rs-P;WqXufBHtM1t8lWK>qY0X!Ia;C>+Mq4kqXRmjGrFQ1dY~tIqYwI_ zKL%nDhF~a$V+2NFG{#~aCSW2aV+y8WI%Z-P{>B{4#XKy)LM+A-EW>iF#44=8TCB$g zY{F)2#Ww7~PVB}W?8AN>#33BPQ5?q!oWg0G#W`HSMO?-eT*GzT#4X&xUEIe5{EJ8U z4^Qw6&+!tk@CI-39v|=tpYavn@B=^b8-EbEW&lAD48aisArTs35H5gjt-}YX%{!tf zGNK?Fq9Z0^Ar9gqJ`x}i5+f;+Aq7$*HPRp*(jy}>Aq%o1J8~cwaw9MDp#Tb^Fp8iU zilZb-p$y8RJSw0PDx)f@p$2NAHtL`r>Z2hVp$VFzIa;6VI%Z%NW@8Ti!92{zLM*}(EX8uHz$&c9 zTCBqcY{X`4!8UBiPVB-S?8SZ@z#$yQQ5?ewoWyCI!8x4AMO?xaT*Y6&UgLsIKgh+%WNQ&f0fmBG1v`B{x$cW6yf^5i+oXCYd$cy|afI=vYq9}$E zD2dW2gK{X3il~GtsEX>Sfm*1Ix~PW+Xo$vWf@WxrmS}}GXp8pffKKR)uIPpy=!xFw zgMR3bff$4#7>eN-fl(NZu^5L5n25=kf@zqJnV5yYF$Z%o4-2pmi?IaDupBF~3Tv#+fwuo+vi4Lh(CyRirRupb9;2uE-f$8iFua2jWE4i|6{mvIHxa2+>s3wLlA_wfM# z;t~GC6FkFnyu>TK!CSn?2YkY3e8o5Xz)$?f9|W!)KoA5&aD+feghm*ILwH0)Bt$_} zL`Mw7LTtoEJS0FuBt{Y>Lvo})JFp}LSr;VGqgZUv_>1WLwj^YCv-tqbVm>LLT~g% zKMcS?48{-)!*GnmD2%~ajK>5_!emUvG|a$E%*NmN2XiqW3$O@_u@uX&0xPi^Yp@RM zu@RfF1zWKlJFpA8u^0Pr00(gxM{o?saT2F+24`^|7jOxeaTV8a12=IScW@8)@eu#w zG5*6-Ji`mT#B034JG{q7e8Lxe#drL`FZ@QJIspVmPz1wY2!T)tjj#xZ2#AQth=OQ{ zj+lsrIEah*NPt90jHF106iA8GNP~1pkBrEKEXa!N$bnqQjl9T*0w{>WD1u@rj*=*a zGAN7ksDMhSjH;-H8mNidsDpZ_kA`T3CTNQ0Xn|H}jkaiq4(N!^=z?zOj-Kd+KIn`7 z7=S?-jG-8Y5g3Wl7=v*bkBOLsDVU1sn1NZCjXC%S^DrL^u?S1B6w9#!tFRhtu?`!s z5u33E+prxwu?u^!7yEGlhj182aSSJL5~pzn=WreuaS2y&71wbCw{RPGaSsph5RdQ} zPw*7a@dB^#8gKCqAMg>M@de)k=+^psfG$NpMZfU}f$Ihk1i=s-ArKOw5eDH99uW}< zQ4kf;5d*Oh8*vd236Kzpkp#(*94V0sX^I8Cj7HIgk^%kq7yZ9|cheMNkyQ zQ39n<8f8%q6;KhCQ3cgd9W_x4bx;@e(EyFm7){X(EzlCJ(FX0%9v#sMUC8B;M0GcXgg@i+d#T+GJ;EW%r9K&&(#3`J?S)9iOT*75s#Wmc(P29#E+{1l5 z#J_lq|L_#g@B%OK8gK9p@9`0z@C9G-9Y633zY(Zj0D%z{!SEMCAQVC)EW#lIA|f)P zAR3}0CSoBD;vzm0AQ2KHDUu-tQX)0dARW>pBQhZivLZWjAQy5YFY=)P3ZgKIpcsmy zBub$S%A!0fpb{#hDypFdYN9skpdRX@AsV3xnxZ*cpcPu9E!v?2I-)bWpc}fQCwid| z`l3GuU=RjlD28DKMq)I^U>wF{A|_!9reZo~U>0U$4*tPB%*R43!V)aSa;(5Atj1cb z!v<``W^BPWY{yRQ!XE6!ejLCd9L7-`!wHWO+ zh8T#6*ocF8h>wIwgd|9cgh7u@= z(kO#+D36M$ges_t>ZpNQsExX)hX!bf#%O|OXpWX>g*Ir5_UM34=!~xDh92mN-sppV z=#POIgdrG;;TVBY7>%(QhY6U7$(Vv^n2wp4g}*Teb1@GKun>!}1k11-E3pb|uommF z0h_QHTd@s0uoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y}a1obr1=nyLH*pJha2NOS0RQ3< z{=*YI!*jgEE4;y5yvGN8!e@NNH~hd){Kg*yZV*5a1VeCyKuCl}7=%N3L_{P+K~zLX z48%fg#6>(LKtd!&5+p-%q(myDL0Y6o24q5JWJNaQKu+XF9^^xQ6ht8uK~WS(36w%< zltnpIKt)tW6;wlY)I=@RL0!~G12jToG(|JCKufen8?-}vbVMg~L05D~5A;HB^hG}m zz(5Sf5Ddd`jKnC6!B~vP1WdwYOvN-}nb}F&_)C2#c{4%di3~u^MZz4(qWI zo3I62u^l_G3%juw`)~jUaTrH%499U2r*H;maUK_N372sd*Kh+jaT|AV5BKp9|Kc(J z!&5xN3%tZ@yumxX$47j^7ktHc{J<~#MxcfP1V&HA&itNaNT*!^Q$cF+bh{7m>VknN1D1|a8 zi}I*|N~nygsD>J-iQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i~bmZ zK^Tmo7={rTiP0E?aTt$@n1m^qis_hvS(uGE_y_Ya9}BSvORyBnu>z~G8f&o*8?X_Z zu?5?(9XqiLd$1S#aR7&K7)NmoCvXy{aR%pb9v5*5S8x^AaRaw-8+UOJ5AYC=@EA|< z6wmPjukadg@eUvG5ufn|-|!tj@e6+ts8Ikx5EQ}j7eXQw!XPZdBLX5JGNK|HVjw1B zBM#yrJ`y4kk{~IPBLz|+HPRv-G9V)|BMY)2J8~iy@*pqrqW}t_Fp8oWN}wc4qYTQS zJSw6Rs-P;WqXufBHtM1t8lWK>qY0X!Ia;C>+Mq4kqXRmjGrFQ1dY~tIqYwI_KL%nD zhF~a$V+2NFG{#~aCSW2aV+y8WI%Z-P{>B{4#XKy)LM+A-EW>iF#44=8TCB$gY{F)2 z#Ww7~PVB}W?8AN>#33BPQ5?q!oWg0G#W`HSMO?-eT*GzT#4X&xUEIe5{EJ8U4^Qw6 z&+!tk@CI-39v|=tpYavn@B=^b8-EbEaR5OO48aisArTs35DwuH5s?rDQ4t+65DT#p z7x9n)36U5{kPOL@5~+{|X^|cokO`TQ71@vjIguNAkPrD$5QR_#MNu3jPzt3{7UfU@ z6;T;gPz}{l6SYtWbx|J;&!d0fCHT*g&g!wuZTZQQ{<+{Z)wi^up6Pw@;d z@Di`_2Ji45AMpua@D<u0Aw4o86S5#HvLgp_Avf|O9}1u#3Zn>$p*TvS6w071%A*1* zp)#tX8fu^>YNHP7p*|X-5t^VWnxh3;p*7l~9Xg;RI-?7^p*wn_7y6(t`eOhFVK9bb z7)D?uMq>=dVLT>c5~g4(reg+XVK(OAAI!siEW{!#!BQ;83ar9vti?KPz(#Dw7Hq?I z?8GkY!Cvgg0UW|%9K|u5z)76O8Jxp;T*M_@!Bt$x4cx+Q+{HaSz(YL3V?4oAJjV;X z!fU+6JAA-Le8v}i!*~3|FZ@BErU3*&Pz1+c2#HV#gRlsX2#AEph>B>4ftZMmIEaV% zNQgv8f}}`}6i9{CNQ-pHfQ-nDEXaoJ$cbFYgS^O(0w{#SD2iezfs!bVGAM`gsEA6a zf~u&F8mNWZsEc}NfQD#{CTND{Xo*&6gSKdo4(No==!$OWfu87%KIn)37>Gd_f}t3W z5g3Kh7>jY3fQgulDVT=on2A~V8*?xh^RNI5u^3CR49l?+tFQ)Zu^t<+37fGM+pq&W zu^W4^5BqTthj0W(aU3Ub3a4=v=WqcRaT!-|4cBoKw{Qn{aUT!xFCO7PJi#+O$4k7z z8@$DPe84As##em95B$V${6XMm0R%xX1V;#jL}-LTID|(;L_!oqMRdeKEW}1!#6tok zL}DaCG9*Vzq(T~`MS5gFCS*odWJ3<*L~i6kKIBJ16haXcMRAlsDU?Q8ltTqnL}gS# zHB?7U)IuH9MSV0tBQ!=+G(!utL~FD`JG4hfbV3(&MR)W-FZ4!V^uquQ#9$1;Fbu~? zjKUa<#du7>BuvIsOv4P!#BBVHe=ryGu>gy(7)!AXE3gu)u?Fj~9viU-rX z8+)-22XGLFaRkS394B!KXK)thaRHZb8CP))H*gcTaR>Ks9}n>_9^*ee#WTFXOT5M# zyu*8Z#3y{gSA540{K9VpY92sf1Vu3Xg%AjZ&6T7en zd$At}a0rKS6vuD^Cvh5Qa1Q5j5tncUS8*LTa0|C_7x(Z05Ag_(@dQut953(+ukjY| z@Btt38DH=X-|-W_@CSif1P}y45gdOZBtjt!!Xi8(AQB=YDxx6LwhGIBIU=&7U zEXH91CSo$CU>c@lCT8Jp%)wmD!vZYCVl2TjEXPW$!Wyi_dThX^00L%TH>O7Vh9K?&AUe#UuQOCwPYEc!^hd zgSU8(5BP-7_=<1%fuHz|KM341fFKBl;0S?`2#qiZhwzAqNQi={h>jSDh1iITcu0VR zNQ@*%hU7?zR7iugNRJH2gv`i_Y{-F}$c;S6hx{mrLMVcwD2@^+h0-XCa;SicsEjJ8 zhU%z^TBw7%sE-C{gvMx!W@v$yXpJ^#hxX`*PUwQJ=#C!fh2H3kei(p(7>pqphT#~A zQ5b`<7>@~j59VS%7GMz;V=0zl1y*7;)?gjhVBF zV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo<01aVWBiAwc!n2viPw08 zcX*GF_=GR`itqS=U-*qctpW&)pa_P)5CWkP8etI*5fBlP5e3l@9WfCLaS#{rkpPL1 z7)g-~DUcGWkp}6I9vP7dS&$XkkpsDq8+nlr1yB%$Q3S9uqMMQ!o|NF$1$O8*}gv=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#c zFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)OZs9iW;vOF0As*o|p5Q5-;{{&fHQwSK zKHwuh;|spwJAUF9{vcon98?I3;P?w65ei`t7U2;Akq{YC5e+dA6R{Bo@em&gkqAkU z6v>eSsgN3Jkq#M<5t)$%*^nJMkqdc{7x_^Dg-{qpQ4A$e5~WcFr+F$hC26vHtBqc9p{ zF%AO7Vh9K?&AUe#UuQOCwPYE zc!^hdgSU8(5BP-7_=<1%fuHz|KM33=fFKBl;0S?`2#qiZhwzAqNQi={h>jSDh1iIT zcu0VRNQ@*%hU7?zR7iugNRJH2gv`i_Y{-F}$c;S6hx{mrLMVcwD2@^+h0-XCa;Sic zsEjJ8hU%z^TBw7%sE-C{gvMx!W@v$yXpJ^#hxX`*PUwQJ=#C!fh2H3kei(p(7>pqp zhT#~AQ5b`<7>@~j59VS%7GMz;V=0zl1y*7;)?gjhVBFV=wmM01o0Xj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo<01aVWBiAwc!n2v ziPw08cX*GF_=GR`itqS=U-*qcZ3765pa_P)5CWkP8etI*5fBlP5e3l@9WfCLaS#{r zkpPL17)g-~DUcGWkp}6I9vP7dS&$XkkpsDq8+nlr1yB%$Q3S9uqMMQ!o|NF$1$O8*}gv=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMV zVi)#cFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)OZs9iW;vOF0As*o|p5Q5-;{{&f zHQwSKKHwuh;|spwJAUF9{vc4h0D>SWg5xiQL@0zoScFFeL_%alMKr`fOvFYU#6x@} zL?R?XQY1$Tq(W+>MLJ|aMr1}7WJ7l3L@wk(UgSps6hdJXMKP2>Nt8wzltXz`L?u)~ zRa8d})Ix34MLje?Lo`McG(&T=L@TsGTeL?9bV6rzMK|<7PxM9~^h19P#2^g8Pz=Wi zjKXM)#W+mBL`=pMOv7}{#4P-cIhc!iSb&9Cj3roxRNBxPXhej4QZ?>$r(qxP!a6j|cb{kMJL!;2ECdC0^kT z-r_wz;1fRME56|ee&RR&AaMHtf*=@zBLqSsG{PVp!XqLgAqt`*I$|IeVk0i%ApsI1 zF_It|k|QNjAq~np$odAJ9?lOdZRD;VE_hVFos|lhGQf~ zVGPD%JSJcgCSxk5VFqSmHvYyxn2Y&XfJIo0rC5d)Sc%nGgLPPsjo5@O*oy7gfnC^* zz1W8XIEceIf@3(2lQ@MlIE(YRfJ?ZHtGI?6xQW}igL}A-hxiwd@gJVz8D8KeUgHhk z;XOX$6TaXpzT*de;Wq+x2p}+mA{hQc2!ujtghe<+Ktx1F6huRG#6&E_L0rT~0wh9W zBtvVsOvEHi!BkAg49vo8%)vjHhxu5DMOcERSdJA~h1FP#b=ZK7*o-aMhV9siUD$)Y z*pCA^gu^(BV>p46IE^znhx53IOSpooxQ-jRh15u^#kr`Q#4cU3ZpR= z<1hgeF&R@Z4bw3bv+y_OU@qoi0TyC0mS7o{V$b)>ykAf(KA}EUDD1lNajj||*3aE(6sDf&!j+&^2 zI;e~KXn;m&jHYOY7HEmqXoGfWkB;bsF6fHx=z(77jlSrI0T_tE7=mFKj*%FJF&K;S zn1D%`jH#H08JLOL_#6LVF6Lta7GW`#Vi{IoC01h%)?qz1ViUGtE4E_?c40U6Vjm9R zAP(aQj^Q{?;uOx{EY9NsF5xn+;u>z?CT`;n?%_Tj;$J+*e|U;#c!8IAjW>9Q_xOlU z_=2zajvx4i-w4z>fWQcfVE79m5DK9Y7U2*95fK?t5Dn206R{8naSbR zDUlj!kPhjQ5t)z$S&C1yLA9Pz=RU5~WZEWl$eI&R<=ZsRWQ;Q=1v5gy|Sp5i%P;1youE#Bb+KH@XJ z;2XZ2!bLw{z6EELKuWactk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={i zq()k#Lk46-W@JG&WJgZqLLTHreiT3<6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@ zLjyEKV>CfCG)GIcLYn{rTI1TP+oJ5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@ z9K<0U!BHH?37o=doW(g@z(rif6&4bTXU(G<X;I;_V=Y{C|7#dhq#F6_o$?85;Z z#917b{ENr<4^Qz7FYpqt@doek9v|@u zU+@**@dLl`8-cn75Ewxb41Xa6LLoH5A{-(hA|fLSq9HnBA{OExF5)8r5+N~?A{kO3 zB~l{|(jh%EA``M8E3zX8av?YJA|DE%APS=hilI14q7=%YEXtz-Dxor}q8e(TCTgP& z>Y+Xwq7j;)DVn1NTA?-Cq8&P*BRZoCx}iIIq8Iw0FZyEu24OIUVi-nXBt~Nl#$h}r zViKlcDyCxwW(Cl#_3Qw>ygElT7xSw#Z~Q^v?g0crFa$>kghXhBK{$j*L_|UqL`8JOKrF;YT*N~HBt&8) zK{6yqN~A&>q(ypUKqh2HR%AmCs}6h(2AKq-_)S(HNsR77P|K{ZrI zP1Hgi)J1(XKqE9pQ#3;hv_xyPK|8cZM|46LbVYacKri%0U-ZKO48&jz!7vQRNQ}Z5 zjKz3Nz$8q@R7}GR%*1T`jejr~^RWPnuoz3R3@fk_tFZ>_upS$+30trg+pz385B$P!1nLn$U<5@l{Dlw*h0q9#aEO42h>R$RhUkciScrqTh>rwFgv3aS zWJrOONR2c|hxEvZOvr+)$c`Myh1|%Cd?zL) zhw+$*NtlAEn2s5kh1r;ce=ra8u@H-}1WU0TE3gWyu@>vF0UNOyTd)n=u@k$n2Yay} z2XF|7aTLdJ0w-}AXK)VZaS@kr1y^w$H*gELaToXS01xp9kMRUg@fBPVhp5Aq^E3ZM`QqbQ1@1WKYb%Ag#|qarGy3aX+yYM>Ts zqb};90UDw)nxGk)qa|9Q4cekTI-nCeqbs_h2YRA6`k){BV;}}$2!>)fMqm_1V=TsD z0w!WIreGSTVu+qP|=>g4+Rt5coo zWZSlF+qP}n_`m1onVt7?FLq~kb{EUB0;{kZYq1U+uo0WF1>3M4JFyFUuowGr0EciG zM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+cX1C7@DPvj1kdmsFYyX*@D}g!0iW<0U-1n; z@DsoB2SIxV5)2^_5}^?W;Se4X5eZQc710p`u@D<^5f2HF5Q&il$&ef=kqT*$7U_`z znUEP-kqtSJ6SAS%)VOCTzx5Y{L%h#BS`tKJ3Rq9KsPC z#c`a#DV)YxoWliN#ARH;HC)F{+`=8)#eF=$BRs}aJi`mT#B034JG{q7e8Lxe#drL` zFZ@Q3UV#KfaD+f8ghp6|Lj*)bWJEzUL`O`-LL9_Jd?Y|3Bt}vsLkgrsYNSCrq(??% zLKb92cH}@V-VH80z6h}#vLK&1rc~n3pR7O=)Lk-kKZPY#00S`yLogJ>F#@A78e=gI6EG2z zF$L2w9WyZtb1)b4u>gy(7)!AXE3gu)u?Fj~9viU-rX8+)-22XGLFaRkS3 z94B!KXK)thaRHZb8CP))H*gcTaR>Ks9}n>ePw*7a@dB^#8gKCqAMg>M@de-T9Y664 ze-PxKK!PDSLLwBxAS}Wo0wN(Yq9Ph%ASPlX4&os`5+V_jASsd~1yUh3(jpx)AR{s( z3$h_Qav~SY^SRpdlKg37Vlf zTA~$NqYeH>J9I!tbVe6+LjeAV9_WRC&2U24XOVU>JsDBt~Hj#$r4sU=k){ zDyCruW@0wxU>@dUAr@f?mSQzlE!JTJHexfjU>mk$Cw5^E_F_K{;1CYuD30L- zPU1Aq;2h55A}-+yuHrgw;1+JjIQX0?)V>iq8ECj5B^0z48VUFguxh!VHkmt7>zL)hw+$*NtlAE zn2s5kh1r;kd02pjSd1lDhUHj^Rak?ySdR_Zgw5EBZPVATeyR}xQ_>TgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=h2IF$ zCy<~Bjt~fi&)fMqm_1V=TsD0w!WIreGST zVBFV=wmM01o0Xj^G%M<0MYu z49?;_F5nU_<0`J<25#au?%*Eo;~^g537+CPUf>m8<1OCd13uz2zTg|a<0pRM4}$a! zBp8AtBtjt!!Xi8(AQB=YDxx6#O{AO>RyhG95HVid+;EXHF3CSfwBVj5;( zCT3#}=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD z&fz>R;u5alDz4)OZs9iW;vOF0As*uip5ZxO;uYTDE#Bh;KH)RI;v0V8Cw}7(g8myw zFoZxzghm*ILwH0)Bt$_}L`Mw7LTtoEJS0FuBt{Y>Lvo})JFp}LSr;VGqgZU{DszN zi@(tx9ncA#(G}g$9sfg5^g?g+!N2H-0r(GtFc?EI3?ncSqcH~KFdh>z2~#i?(=h|H zFdK6*4-2pmi?IaDupBF~3Tv#+fwuo+vi4Lh(CyRirRupb9;2uE-f$8iFua2jWE z4i|6{mvIHxa2+>s3wLlA_wfLa@EA|=3@`8!uki-&@E#xW319FP-|+*#@Ebw;1rij& z5dxtQ8etI*5fBlP5e3l@9WfCLaS#{rkpPL17)g-~DUcGWkp}6I9vP7dS&$XkkpsDq z8+nlr1yB%$Q3S#zYEu{n@{wp#)<;oGDg*oocPgMHYKgE)jE zIEv#qfm1k*vp9zfxQNTRf@`>ro4AELxQqLEfJbA&itNaNT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N~nygsD>J-iQ1@xdZ>?vXoMzc zisop6R`?5T&=&2`9v#sMUC6wcr*&f@|u;WDn`8gAewZsQK_;XWSX5uV^Fp5p~x;Wggk9X{YAKI03%;X8if z7ycl~fIxyFI6@*6!XPZdBLX5JGNK|HVjw1BBM#yrJ`y4kk{~IPBLz|+HPRv-G9V)| zBMY)2J8~iy@*pqrqW}t_Fp8oWN}wc4qYTQSJSw6Rs-P;WqXufBHtM1t8lWK>qY0X! zIa;C>TB8mAMmuysM|4IPbVC6ChaTvKf6xbg(GUIc9|mGDhF})fMqm_1V=TsD z0w!WIreGSTVBFV=wmM01o0X zj^G%M<0MYu49?;_F5nU_<0`J<25#au?%*Eo;~^g537+CPUf>m8<1OCd13uz2zTg|a z<0pRM4}uH~Bp8AtBtjt!!Xi8(AQB=YDxx6qzlt4+8L0MElMN~mm)Id$tL0vRJLo`8Cv_MO= zMjNz4dvro)bVC4opeK5x5Bi}$24WC~U?@glB*tJYCSW3_U@B%{Cgxx+7GNQkU@2B$ zCDvdqHee&RU@LZDC-z`34&We;;3!VuBu?WD&f@|u;|i|h25#Xt?%_Tj;W3`!IbPv4 z-r+qy;WNJBJAUCef({BK7(yZx!Xg|ZA`+q^8e$?A;vyarA`y}z8B!t@(jpx)A``MA z8*(BS@**D!q7aIr7)qcd%AhPNpdzZEDr%r6>Yy$fpdp%|DO#W#+fw zuo+vi4Lh(Cd$1P=a1cju6vuG_r*InQa2}U%8P{+fw{RQxa37EG7|-w=ukadg@eUvH z319IIKk*Ae1_u%pArKN_5EkJP0g(_H(GVT65F7CjABm6{$&ehWkQ(Wb9+{9C*^nK% zkQ@1sAB9jD#ZVljP#Wb>9u-juRZ$H!Q44iZ4-L@>P0uD9hLISBu^5Mmn1rdAhMAa!xtNEAScIimhLu=_wOEIZ*o3XvhMm}j zz1W9?IE14(hLbpjvp9!~xP+^?hMTyBySRskc!Z~ThL?DSH+YK=_=qp~iXZriKL|1; zkl+Y`&t`_jHF10lt_iNNQVr_h%Cs89LR}0$cq9fh$1M8 z;wXVqD2;L`k4mVFYN(D{sEvB4kA`T3rf7ziXoWUti}vV%≫wbVpD0LLc-+e+j-Vgoi}3$|hhc480q;s6ff2#(?ePT~yC;sP$>3a;V? zZsHE^;sGAw37+BwUg8bj;sZY73%=q9e&P>;3=1SULLfB4AUq-x*!1E(G$JU2Yt~W1271KF$}{o3ZpR&<1q=7F%8o(3$rl~^RWnv zu?)+x3ahaW>#+%&u?^d?6T7e%`*0A4a1_UI5~pw$=WqcRaRpa#12=I8ckuuZ@dQut z0x$6fZ}9;i@daP;9Y63Je-LbVAi)s|p%D(@5ebnI4bc$`u@MjPkqC*A49SrSsgVxp zkqMcR4cU6jrBM#$Q3;h%4b@Q#wNVfC(Fl#v49(FBf1xe@MhA36 z7j#8;{13hG5BlO?48VUFj3F3~5g3gz7>@~Tj3;=G7kG^~c#jYGj4$|( zANY+w2sR>+;0T4#2#4^9gvf}BXo!heh>Lhgh(t(=WJrlrNQ-pHfQ-n3tjK|!$b-Bn zfPyH3q9}oqD1)-7fQqPss;GgQsDrv_fQD#-rf7kdXpJ^#hxX`%&gg~!^gvJaMj!M; ze+PUJye6hJ`~K~WS(36w%< zltnpIKt)tW6;wlY)I=@RL0!~G12jToG(&T=!e3~MztI65(FI-69sffw{DZ#u7X$Dg z24e_@V+2NH48~&uCSwYwV+Lkp4(4G#7GW`#VL4V|HP&H0HeoZiVLNtVH}+va4&gA4 z;W$p=G|u5XF5xn+;W}>O7VhF69^w(6;u&7z72e_3%Aq_e zp)#tWI%=Ud>Y+Xwp)s1FIa=W_w8h`(fR5;buIP^cp%?x^U;K*!_z#0I1j8``qcH~K zF#(e?1=BGDvoQzru>gy)1k14ktFZ>_u>qU01>3O$yRirRaR7&L1jlg#r*Q`7aRHZc z1=n!{w{Zve@c@tU1kdpTuki-&@d2Ol1>f-lzwrmbMh6lcp%5D35FU{b8PO0Ou@D>a z5Fd$<7|DxsV(AkROFm7{yQ=rBE8>P#%>~8P!l7wNM-NP#=xZ z7|qZet?(Dx;%{_7M|43~1fV;5q8ECj5Bi}$24WC~Vi-nZ6vkp4CSnq%Vj5;*7Up6e z7Ge>WVi{Iq71m-MHewUDVjFg17xrQw4&o4w;uuci6wcxtF5(id;u>z^7VhF69^w(6 z;u&7z72e_sUa2tzRpBQXkNF%AMD0FUtm&+!7U@doel0iW>& z-|+*#@dv@i1`-^h5E|hS9+40k(GVT65F7CjABm6{$&ehWkQ(Wb9+{9C*^nK%kQ@1s zAB9jD#ZVljP#Wb>9+glTRZ$H!Q44iZ4-L@>P0r>Uj!_tmaTt$Dn2c$dj#-$Ed6iWhi^H+YK=_=qp~iXZriKL|1|kl+Y` z&+GA_PJr48kG;A|eW+A_ih24&ovK5+VtbA_Y<+ z4bmb5G9nAIA_sCJ5Avb_3Ze*#q6A8!49cQBDxeZ7qbjPQCTgKB>Y*VTp(&c7C0d~k z+M+!=pfkE40Nv38J<%I|&=37F5Q8uj!!Qz~FeZ?|5AnwuPryV>!Bot^Ow7g{%*O&O z#u6;Y3arK&tj7jy#ujYH4(!Gr?8gBd#t|IH37p0moW})R#uZ%04cx{Z+{Xhv#uGfp z3%te~yvGN8#ut3Y5B$a-1e+L0aD+l=ghO~lLS#fkbi_hz#6x@}LSiICa->3Pq(gdS zLS|$|HsnMuy=U@s2fAP(aQj^hMQ;|$K@0xshUuHy!7;|}iQ0UqNCp5p~x;|<>913u#m zzT*de;}3#P3M3dpA{4?R93mnTq9Ph%A{OEz9uguEk|G&WA{Eji9Wo*lvLYLDA{X)^ z9}1!nilP`wq7=%a94ev`s-hZdq893+9vY$%nxYw6q7~YpE!v|4I-?5$&>cO|3w_WR z{V@Q8Fc`xy9HTHA<1ikRFd5S@9kVbS^DrNauo%m*9ILPz>#!c1uo>I19lNj_`>-E} za2UsM9H(#^=WrgEa2eNd9k*~B_i!JN@EFhV9Ix;i@9-WU@d;n?4L|V6eUm+Wl$Cs zP!Uy76*W*3bx;=#&=5_~6fMvato%88QlIE6Dfiwn4j zE4YdqxQRQsiwAg!CwPh%c!@W7ix2pSFZhZd_=!IVG9{4U2!YTDgYbxe$cTdIh=JIM zgZM~*#7KhVNP*NygY?LN%*cZ5$bsC*gZwCf!YG2`D1p)_gYu|=%BX_ssDaw3gZgNI z#%O}(Xo0`b8h@i5I-(Q0q8t8)9{2~n@h|$}KMceW48;hH#2Adl1Wd#fOvMb$#2n1U z0xZN5EX4|}#2T!{25iI@Y{d@j#2)O$0UX2;9K{Ko#2K8$1zf}xT*VFC#2wtl13bhN zJjDyV#2dWD2YkdAe8ms^#2*Bi8c1-2Kxl+Pctk*CL_u`KKy1W8d?Y|(BtdedKx(8x zdSpOmWI=Z1KyKtgeiT4q6hU#6Kxvdgc~n4UR6%vrKyB1PeKbI0G(mH;z+Y&MztIjI z(FtAA4gW(A{Da>37ya-b24Vt-6;dM|(jyZxBO9_K7jh#X z@}m$6qZo>#6iTBU%A*o0qZ+EC7HXp&>Z1`FqZyi`C0d~k+M+!=pfkE40Nv3Oz0e1J z(H{da2!k;U!!Zh@F%IJ~36n7m(=iLPF&Fc&5R0%B%dirwuommE5u30T+prV6uowGq z5QlICM{xotaRz5`0T*!vS8)S3aR+zt01xp5Pw@gT@dj`40Uz-NU-1J!@drVs2NE11 z5E@|+9uW{3Q4k$55F2q29|@2cNst^VkP4}h7U_@?nUDopksUdZ8+ni)1yC48P#h&t z8f8!(6;K&fP#rZ;8+A}04bT`(&>SuB7h2fpf~Tj3;=G7kG^~c#jYGj4$|(ANY+w2sR^-;0T4#2#4^9 zgvf}BXo!heh>Lhgh(t(=WJrlrNQ-pHh)l?eY{-dR$cua^h(aieVkn7HD2sBah)Sr6 zYN&}?sDrv_fQD#-rf7kdXpJ^#hxX`%&gg~!^gvJaMj!M;e+&)J7fDLwz(vBQ!x%G)D`x!e3~EwrGd;=!j0}g02Wacl1C{ z{Da=;i+|A{127PSFa$#}93wCaqcIlaFaZ-W8B;I~(=ijXFb8un9}BPui?I~TumUTw z8f&l)>#-4=umxMO9XqfKyRjGhZ~zB!7)Njn$8i#;a0X{_9v5&4mvI%>a054S8+ULI z_wf*q@B~ls953(+ukjY|@Btt38DH=X-|-W_@CQL=1riLw5fY&g24N8%5fBNH5f#x8 z12GXBaS#vjkr0WH1WAz`DUb@OkrwHY0U41QS&$9ckrTO)2YHbn1yBfuQ53~c0wqxz zWl#>~Q4y6;1yxZUHBbw+Q5W^l01eR?P0$R@(GsoD8g1}5+Mz=r0c|@5YT@cEbwxLH z$N$h1z0ezd@Gtsd0RF=u48~9l!w8JTXpF%)jK@Sw!W2x!bj-jk%*I^I!vZYCVl2Tj zEXPW$!Wyi_dThWZY{ph>!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#9Wo#zG9wGJAv zp)iV~7)qcdN}~+Qp*$+05~`pos-p&Kp*HHG9vYw_8lwrCp*dQj6$e zI&R<=ZsRWQ;Q=1vF`nQVp5rB6;SJv6JwD(QKI1FC;Rk-=H~t{#oIrvh1VSP-!XO;N zBO)Rp3Zf!9Vjvb`BQD}00TLoHk{}t9BPCKH4bmb#G9VK&BP+5Y2XZ1e@*p4bqaX^Q z2#TUON}v=Z#Sfsq)EF&KyOn21T3f~lB}8JLCHn2UK>fQ49$ zC0K^#Scz3wgSA+X4cLUu*otk~ft}cmJ=ll+IEX_yf}=Q&6F7y_IE!<*fQz_{E4YU1 zxQSc1gS)to2Y7_Xc#3CuftPrVH+YBl_=r#Vg0J`g25@8S) z5fBkk5EU^H6LAn136Ky;kQ6D95^0bY8ITcKkQF(Q6M2vq1yB%0P!uIl5@k>p6;KgX zP!%;$6LnA*4bTux&=f7u60Ok&?a&^b&>7tjfF9_H-sppV=#POIgrOLQkr;)s7>9|N zgsGT@nV5ySn1_W}gr!)9l~{$fSci?+gss?yo!EuF*oT8SgrhiylQ@O5IERb4gsZrQ zo4AF$xQB;$gr|6hmw1J@c!!Vpgs=F9pZJ9!^8yKq5D1Ad2#W}ah$x7P7>J2Dh>HYB zh$Kjg6iA6QNQ(@}h%Cs89LR}0$cq9fh$1M85-5o>D2ocHh$^Ux8mNgnsEY<@h$d)? z7HEmqXoGfWk51@}ZU{gR^h9s;K|l1zKn%iA48ur_!dQ&ML`=d|Ov6mf!d%S5LM*~k zEW=8y!dk4uMr^`XY{O3M!d~pdK^($S9K%VR!daZdMO?yFT*FP=!d=|MLp;J$Ji|-8 z!dtwPoc1Vls>L`4k5L>$CL0whEdBt;6OL>i<;24qAQ zWJM0-L>}Zt0Te_L6h#S?L>ZJt1yn>8R7DNcL><&c12jYvG(`)vL~FD`JG4h9bVfG> zpa*)QH~OF-`ePslVJL=SBt~H@#$h5RVJfC!CT3wS=3yZgVJVhjC01cA)?p(yVJo&_ zCw5^k_TeB7;V6#bBu?Qh&fy|1;VQ1-CT`&_?%^RG;VGWsC0^kz-r*xY;VZu3Cw?Kw zfY@P}q6wO!1zMst+MpfUqZ2x#8v@V+J<%I|&=37F5Q8uj z!!Qz~Fc#x55tA?#(=ZdWFcK@kEW5e8uq0TB@e zQ4s?%5eIRR011%g4(-tiozV>e=z*T-jXvmy{uqcs7>Z#SiBTAfahQlnn2Kqb ziCLJ7d02==Sc+v>iB(vOb=Zha*otk~iCx%>eK?3iIErI9iBmX>bGV30xQc7IiCegf zdw7UPc#3CuiC1`wcld};_=<1%iC+k^D3G8CfshD;u!w+&h=QnyftZMcxJZD6NP?tD zfs{ytw8(&r$bziMft<*LyeNQzD1xFWfs!bLvZ#QHsDi4fftsj;x@drgXo99_ftF~E zHfV?T=!DMbh5+-%*8w`#3C%kGOWZZ zti?KP#3pRTHtfVM?8QDD#33BTF`UFHoW(g@#3fwCHQdB4+{HaS#3MY#GrYtryu~|w z#3y{kH~hpe1X&zNP=r88gh5zDKtx1ARK!3`#6esnKtd!zQlvmiq(NF_Kt^OiR^&iV z1WLwj^WXLLgVdY~tI zqYwI_KL%nDhGG~-Vid+=942BCreYdqVix9N9u{H|mSP!JVine69X4VUwqhH0Vi)#e z9}eOWj^Y?j;uOx}94_J#uHqVQ;uh}W9vr+F$hC33?nfL zV=)dBF$q&K4Ko7?Xge!V2V--jd6T*o8gV zi~Tr&LpY41IEE8AiPJcPb2yKSxP&XXitD(6Teyw8xQ7RLh{t$>XLyd6c!f83i}(0| zPxy?l_=X?&iQo8xpi2V@h7bse&h>f_2hXhE7#7Kf^iG3ypG|TjVo3Ij} literal 1685223 zcmce8YAC6@HA9M|sMVvo9zDhBt}0elcXKFFceAo? zRc3WoW=`JBeo&@t|5%D+CoCB%`M-aywO9lG<2C$(VekI1v9@9CAImUc_=jx3UcmC& zyMhfYY=0*r&b@IW;^wKmnPWnl?#_Gf_r*DJ;>3v)uYc*eKl{|DKK&{B-}JR&*y;A4 z+{pWnx}!n=H1Chkrmx(ZbbE*E-cNse_Vs`H>?ddMOrLEHhi6;U7Y_&R@hHy^yQ8z| z^_%yKd{o>#DIVV(J{@-kef)7e>K@$0TgA=nfY9jg^hI$teW4h&&4+Kz{17j;2mPb& z@!9l>D<%K?g;o2YEY_vLqkJ^#9s>R+XVd44d^|D5%%6<&e$gHDi?bi0^rf^<#y47% z@c?Byo4&~^z>nSj7?K#3oaNJty;lEt(mKu|@rB`NaFVy7ofoWdXVXjV!SLy*d)&c~ zufO-J?|$c3u6-{*I=c3t(;c@S=FrRwAn6S7mn*@83n(rX>uma|v+0FV-pgA>e%5(= zdUc$i4tuR}USz}8xPwwpU(Cwi&RS5#U@~gwSur^}>OMJ}UTzP1J(SDHIK8|*I?PA; z;aV3Zg?4t&rqA6N72~t5V*27~tAKQw5&HRV|1ihrujEhKy~$xtY&#o&1!3?YG7gd@#Lg zer*>;cGT^mmLS*5_}5MQ{Jk6aJ8JHy5bzcAW-)G!yX{g37eGTl;Q6ccyp#8a*#UIc zZxPKUTO~%atE9ar8B}V@NA~ct{RxjJ_BYr<=a;81+OKZl^|R?4_8-^Q+)H3X^>p5v zzHr*=Pg=dRF}N?`?xxoGvr{y{ZvU9X`dnu`9v0ud zX`0y$+wyJkH7)_seRdS_2IYooZjs~OC z))*Y`OfMAHxL}8S_HWm|N^KagnToxz(LKIletLe~Iv`89xKDqYpI&Sa4)f~=y+QjS zzQ5Bg#wa>HnM_}J)ap&3M{smL2h}_a4|KNmM`xWcK~o+2%NIIdoIXcIG(Ug2^S1r@ zn)}Q2d9>fwQ#2a$`}C6eXLfW7W4CX9*8VxY4E|Ox&){>6;a#x*F3wu^%gK1&PD^M)5-9;*5P4xH0hg$4ig-q?RD}3 z3jCS<>J@t7bZ|I z{n&Z8^Iqp6s$%+D2VSm6o~~39+?Fe+lk3&$oq@6IO0=Kr{Jh0^nLSx{0B22p)&73v zVV)1O$E{HxI%E3jtHoqE9OdvCuNNPM-)*hUm4$vqe7u+G9n*zTGpO@vs zZf|hR8Zka53U@osj(RO{J9S^ zEn~uG(`P?gLyu=P`iB49bx6iDOfPY}GY$8dlNP+}MH5d@)1fZ?StuBt96ay%ET34s zE5_xO-9zW|wkpi8-0|N2or@*{`qcC}`kj2t^hNWA?YcUD(fJGd?X~K+%(H9r%)Q?o zqn*OXo8K;*_g%jaS7v^+1!7rXOgXw1^Tc{*6rk5FItUr~3+J`V0HgCo`~J%Y9)V7O z+&$`2jB#Pof7l;9Wr zUiRAdRa=VTfLe{~&dr0){mui+Xw}BSg?MRdwJ{#Foe4i{L2b$DXT)x<8J4dWh_#^P zKk@m|;4?H*>W!Tjd&9_i+H${VkGqG|Mm}Y~veFnwhsH>qShr7|v8W1IbY^3tpIJ#> zF_>O|O*%AnXP+P@g&R3QG>O`CPhK_OJRWtazay`VZt+C~g54kEWyBKZ`_4By-*j%# zbi~H)IO4GnUh^J!#%EoeeP)br`WY9!T;s^Yg)in!7g2$KoQ==%zK!5)T<0A0B|`?+ zIY2u%pf8zUj#`hpP=Ncf^J|@NnWvo}c7E6X<-48Vu1Ak$piG4)LELJ?MLYHpy5Hk)pJ1^KYra{TGvgr*=-wVWInaesJ9&E zh;m>64`B+={AYj9LEA{xHv{vTQ{u4K9XtE@*cQb;prJr!dv@5a`Qi;z2xD&c0a5Y8 zH|;|c%hT^=JpbH{F+7C@zRz4JS;2N$~KschZFR(Ww7(S33goRt?{CNMx24T0l^=22&U||`fNu= z{S*&op1E<&ee9HHM6O~EDTsX-whK#Zm6gG5jL56LZF&HwbP5I!t>-|osyeZvQnx{U zHS76Hrlu&6HE}F`k@p8Y?&%y@i7cz>NfBMq7;MBnqJjNpM&1BFI;%lkFz%edQJGQR z^mjRwZy)wgiW}|TU~-6fWR%~4{%*GL;>}+7pt$M2y7}IXZ{PU#O*2j$-#96L8})+F;v)9E{gMp)T=)8d+(r4{NC5kaw}f> z@nN^X@bszadY}2d-=&v+#4nXVwlwT1UOvt-w0ttAP>oFC>}S&p?kCghzQWHbEH|UB zpPl@RNKa7j`w~B!Q0Mh=`TJ}9JB{MqVAXXQUnn0{-eKGt;a3V6Y)|l6ey2xn2QH~! zK$kR7|NO?iJ9n;at=wI|_BYn=u58}-&# zmhogRKK!D6K>or0?G&R1xZ~dBwC^HIH}a)dFfu*lfb;YA{qbPf%OB;v%#HDAz+&Us zH|z_c2Q}q!m|j2nOds6>RoCnGGxLa|UId%yo9R*Kw>!UMUU}2L;<;`P4$R}ru4FcR zS@%(G|5#bCdFGTO`cCt}r2)_%wo%E{bGY}>;1L|P9|pnpRq_P(0R?XygMYsId6a*I z0qZ#HuTfG9T}0~H z)i#aTFb)S+_UIcN)qbvR2EZAHx#lrCFZY6Td7o_$hc+mQhr_0TubLN<<#~f1)t2ZL zdWxQJa-8)BgNF#rKSp0lExmeRYK&65{Ot1uq#kBSdD!e85_Ro|aIi&(CHf5P24-fG zc$5C2OIctHHN8|mF@3}9HRF4nyN62j)BN{~hH}79Z?yP+6 zbJc4Og-3zYPrqBecC~uV2DK%C$Mf(2%14@oGQk&Y)P22zc%_2Ci)P550vY9}l#7wi zKU;lkQyc67J}x0XU%hhL?W5Znoo2nfe+++BDaF%S0S^xkb6A{p{;~w|%4ic|{==6m z1~*i=?1mQaqqZtRzgWFTp%K+J44y`%XaiMQJk6J{**wdSDy%mvEF(AqLK_vmd~;Ha zZXR^|H#^zbBQmN`qm<()s5lW%t4*dhl zq!xqNfu_Qc#)G~-o_+>{xYolg$0xlEkp(5PVVpmkzBELxn?{+&|4*;+(C_i%$NnS^ zT+L0qS=_|r8GTVE?qM6#mqtfz4+CRVI}>EQ*o|&JJ~9(Q6v)x{^tSl^YPT;&?wvoJ zUWEl2m!CbM=^xSp4GW6Nf&BHwP78ArX50YlpT22)9<+kIFgjl(1IVu)LeAIytS(Qv zP#DyCw)3xiJiWr{P-q_cvCdykUoszLoI9ROFT#XPt0X0#JVd8|d*#3Vzb^gxH&*_I zlV16+Z++&&lauma-~KzFnoKc;LW3nFCMX>5e06%+IVy~wXkOIjkWqhdD$kO6|LNJ^ zI@>)n6x4o3H*Vat|97W*Fv2vz%^f?h{S6v*V`AG)a~BxWUx#~sNJ&WiNR!^z-@Ebd zjrXn(pW@x?r>*v&cyj&SU%m0}yVsw5=UdsgzIh`*K6bC(%n-G~@nop?vp*@O7rT8k z8GCqk@~05!mqx9}E`q~VYcwXxP@R6Q@tnumVq|afAZ(}yDhsZMd$64e;dD`xc?6RDCg-#L3#52 z;;ryGU{6I0FyT3a$}60x1Bls(~|3-%+2K>{;Gud#|Gl$ zf5IOr<9_Glf310P^1s(T_-AzwjP9mp>9XzuN{mirT8tFL|I=%Xp z+?EC7H!4e{-`D1*j`aI-Q;7csTC@sy$v`ZA4S^aDq=f6I; zZ0FSD^wL)_XrYlj7F5}|r0R(NwYga%jsB~%HG1;DQN>EW6EJS?C#mqd5@XpD9fMTEgNB9pGaAGNdTV(JI zg3gv%mxQmMJMIk*Fv5AE(>=r}0e`#VV9FmZ+H5aIG9SQtZ9p~X_mC-{zKA%vDx6c> z-vuESL7EBOv*|C+T-kcljDyX(%;|HKjXwL}vbB{zH!5!skXC-o*4jdT>}RGFwGOAL zzjTUm$ok_{lLQgoXN;(9qVX!`%Jmy@F`(bxTVWncH%=jQFX)AmKOX?@)r zb8|(u^s0eq(APC>x}Vv_Nz53z9B%dGg?oYuT!8}PU07W$kDp1%1NnwX`sT^D7G z+VD5#E<&XDUu_CewVvy?>Xto*GgdyrtQ2x^fmfA}Y<2u_Zb8ml9arE_F?ivUM78i> zZsw>K_M1X{;@1j`h#c9U=Dv!kMO~Blj&7@)mvPE zIRx_)mTlQcld^ErS6noWys*gx(~kxTL9iFt7SmTuyo*^&h@^TnT- z7`Xh`WO{{yUVP!UVIhh9D#y6uSM2SgX%3TIhCI_xw+VZCnRY^C#naP+0VZPm)X}}L zXa7}({*-RRGVPXFG zA3~6=>C4?>H}~K9czP-G($do_Sql@Ot5u>JQ*9Rp2eeO%G}rm^2bc`FgykS^7K`M# z;Qm=Yzu4x9EIg)9@P+%u)X5e87fqqiFO%uBSp7gsIr;mrpp%av^~pcL-=rQ+{&W1a zb@E@(f2Ws>%-f@F+Lm^ew?XVc_){~V!@sPIFr@_f&8PpR`LEH%$$y2ve|+*^dJattlK zU{?a2P2WBm4Nh$~>YcA&d#BsKX5V+;e;rn2k#1Bk(t1mPoct3MbNZ!YY-VYVi<+;m zy06_^;?uV%<%F#)lnT7|j+ryKh630x!2BA2TfHW}|9P@u;*H0x1Z(;hl$UU(vMrpQe`{rj_FkD~`)oXTNF0cTv zJ+23M-KV}`-xdgOnH9_R0I~$;W%2zlo=mVH1FMv1mM@q z`c^EV8PZabY;bf`gZDXy7rigwz8XC4*PyY32wxXqZ_*0=R1Lf3Q#a_j_~J`p1sjC2 ze%Y(iuc_*FZqchA`8`*!`QE)O_`gUq%C(=r;#6opr#Hp7Z__W7xT^i$ZKpM2-{7|e z##^KOF^snsfz8X6fZi3~f3e8(hqYge^3$8*+qa^|A(bb%6HVibW9-m9A2+=zxS@9} z3^8&in!**Qcl(m~5QQF7L#pdZUv{7JYvSXtkFl8)kyegXBZt(j&S*aDD^s5c(0AfD z>KYL{^u!kyGIwFF379eEKbbyrLc!KMC;tdh1VZBrHtwk6y64QYAn%PU)FUDnVB$&p zEk!>c8|04-@W&Gq6L$V~^%-IvtGKhe^+niKZ$ip-1o=-f3vFVmlfRRO zh*ThS@;9GHY)GXz`9JCXi@b%`eh~&g-s^vzc%9AC3yaRYPyTQE#4YJF1!B+Ty>CMs z@1uWi#W2y3EtD3&cpv}2(Z^iRJ|zb#-iOaXEl{4vs)Qrnx6eo4rsOoChxgUR=&Mvw zImYllyc~VV?ZcO`j3vA;uSQ?a4jH^pUyVMMk%IT?8}zDQ>ue={WZ=F3*$A4u3j2X` zcitCYh`x{%w(Ivkcq{r~Mi1|Oca6Rann-p9Uwd$0cry)G=A)hv2s?~9w!7orn0ov`=%d(rFZKG*x?*P>6jBK=O*``|m#2ck%( zU-e%9jp%iOA6wRMMIQ)!(|3CKE79vgcj>*mM(+l;6!nna`?nMCb3>0it)nB~@qRDy zEqj;v+rIzl-T2eV$v%EW-sea7 zlfTA){s_mF9AIn7Mf9n*1Ss#*>*c?&yzl?OYw!3UPG7Q`xmJVw|9H4BxDB)?&%Ho$ zCBQE4nJuN)c4+BQRL1A=8JAHM?BucmoW5=siCz;$`Xi)^ux1QX$EA*qVx4w>dUo>9 zQN~bG{7j{EMa92}!twm{%my(yL&fcWpI&yW?93*K=_?!96if@$?)AGLt=Sc?SV{KB zXGo46_UuIY$(sP2URlGz0ThkW7lmD5H+>EJ)Uibodm;=xRw;L388}}BClk>~u0{X4 zj9i%AM__gZPha)dzncZ}cnhb{eDB}<+W(l5T|M9a?xWVonAmHp+u6pw{d>FX+1lp) z&ArX-Ey_4q?O}E4H*Wm;+4L4KX{NV zeIo%n{q%KICig&BH7~su9e>F%8+)U^Iw1 zblbvbeho1QBY$@1=^Dni`$#cm^q(IN`gwM5e^oT}+nUZeOI0zYL75fukauk$53SSp zSV|B^h9lX4TTVc$j^v2GtFS#728TP`7!7`$_xG^IJ2K?o(6of~f(I{wm;%0PgU_mp z7*t=yV`Ps;fHBL9J5O(?+TyQiA|M>8uuBMreRJpOrrC^^SvA@2yb!jewm-X_tztYO|j+1le)fb$s(-ReEbN7KriTW4HIRP1<(#K6X+IYx*s%a>H0B zz+#RsncsI^ZkAi%&cMWGg7Hox#yVu?N3+Lx0LSW#o5Wds#F8JRNI2$!F8A_}(vgs= z%QzAeSj++ElJt+Na}oZrgkV^B_PrjK8^%_qdiH|8tBlNpVeq#AZkFCaqKP@-`hK@+iMcNQGGj{2tQE=jqrmSAl*<4YS7Mu zmgm86;n9CnR25^Z{r4E3dF`wOVPvQsNdwxD8-uG>gY#7A%L-pWF$G#$M#J&qfj#bX z1IKO(^@O?2?FLPW$vw82fXCjm;Mi=u|Hfha``9^e|EQy&6R3M73w@ z*wjBPx-uG7#R!x{qLPkd8zMh7@FqpEI)z?g{GTm&8IMeXaP1M*=Q zohsmc94WJlWjTY>?vKr+Uqm!-1*8#u&P{Vft9Lf~!klSD=0uA`)L0C$mLp=C(@_Z= z#(&M=Q+5bzhabfztjAN*gg22#@UfT&v0=7Z3^2ila3pNJm$M#_^=_$C-{b@F=W@hUIzsR03#w4!VhDN zzwLqW*wE!;tDTKqP3k$h0E~IazPGWz46Z1yiFxf?05Jn~XWyUTY>%j-RsSE*1`moE$VTnD-UNr*5)x7fFlM=$fri?k9g7N8 z{f^d@>3}rg~x30oy2CD z1dHk$QY;RK(b29d^lW!q5UAdvo`9g3196(+sMD6(vXV4D8Z$XvZEWw}U6FRsNLLPr z(UDgpIp~;Op(eEtOO@ZCFfu$eBZqaM_P=%Di5g%litM#f4G1)r1brDvvbnXkxr-($ z^rR+;QlgYd%z*J8F>I{~>~Cq_IfV@jMs+oSGH>s$$;RBM1{jF(X(At`c0Y%eta|xW z={+oFarVErd3Wc|oQbCtgTrBTr=z|7-OaUiss2VfVj#wMI&wcRMMoYMvj{1cP}7!T zue2oB0v_yc?yuYmYN1gJD3Mr#OPIXHjyw?0*90(^;?G4h2E)R5+)wvcB=R{%V<}{U zVQ^^Ou0+n>Utf{7qegGoCWAe>xU$Jxe&B;K2l^TBXZWB^>3`IWib7-&nGK^e#|AlL zsnl7|8Du3Ob0Om3gyg%oKHOi=K7d;km9Ns(W;i{-1l@bfrt<(3bl+Syod?KtNWZZ% z@2>nHTYVqZcYo#1J?SvjB^R{{4M3UJtHTF|bBT560WuvX=CN32W_wUYOqpm3lsT~u zE?c=JeX5!P3A~a4U_cs)-&((oaS;Oj?FZTZ`@8TSl0c2MgA76nkNMC8Ww-8ZuYQnZ zQoVP`B#@YcQsGqpcUSg45KUMOBSTGzGWy+ zoSXn+2GX~Cu(cgb-KsVoBwKwP#;3WN^7nlcM^kPgXie&p$${B*RgLd!Fqsw3n%~&n zTz!9a`|i%luGF3yywLn8Xk$(vkqJFD?(YUYpQ^@mJsBLvr=)Du9@H>0X<`P3aS@|Z z+`GATdvoJM(TY{@u(4Gz3~n;XAMQxKtGLNR?-LB;(md6@t@?gN9sLDfGsI#Ztf2zW zCM`P1HutjkH*de6?cLkm-M)?PKq%`2ZL}N(H#2~l{)>{H`s*~invJDLV+I>dM2W-~%xMbrbit z?(GGhZ|)A*VK6L(D5rzNtc^Wk<6Ib}T5NoWD`Gtd=K(Q3MOXB5{v>Y;bhRBP(G3h^ z(|p_*SGsPkuj4xDXn3h+OM_+{Ksgp{jcI?Ee7Tt%fVx)pRyQ|o94`b?qtVEieI%9% zcC=DF?YHf^(n2t(0!3YpfMN>BaLdf4VMQbk?Dl8TR2d=$ABhQ2FXbkggrd{|!mM2~ z4v(ow7Fqz5pwYWc`mnNIABW*#y{o+TRVYfWic~LDK`}nOWclNR?zrq*7aalF0%2*sWm!&mgeX(G-qUrH`r#S#>B3jNy*^35%#~NpJ&; zuPHU@Qpe!~G95x2+P;*qEM1gn|59MKgpEaBjj+YCI1h!(jWIfHVZs`mdv+0Bf<;|8 z68WkmBvWFTLC-PaJfaD6=~L8nVmuiv!2%ZS%}Pk5#%%4H%~?UsU^W9gsp$G@->}q% zL0t*$VZ?`?0b3w0KQ%fm^P`I|d~DU{&e|1K#6Hz65wiAl-g;PfX4}MDW9Qs zMsW+<@Ss@nNVaibmykhCCDm`W3M4_Nij7hU3N@AuH(RBE$Ji&amLCb*R27u!*KX$w z#R|f>ag&xL()Em3#fB@ZWEZFUAQ^B*Sj+<}rR`7&4XG_4-c%Lnh_JCCsu6aytt!BV z0o}#5csN2W6}_qsB8n{oFjf!ZfV=tWie23^7_FHjCPjU#5oWMRCxypsB$UUt{zNdT zRX&ReSj>Vp0T$d}y%f`}paedhQn)01hVt>vXfVW|dzg2(gkfx|0sb-D>kVZ0sn1u@LlglZsVyDCX!yAq2@5M3l%p4vU6+*8o@5cSz#R&dQ$t85&?Sk;teXsk&@ zmIWreGs+Qkgu#-ktYolMVKD)Qk-YgVRVQkP6xB(H#zc?=okpT!)D9`!pchmMs+)QV z+|uX=e9eMM2gGGYhI&u#qr;d;W>{1&80-#8;V~V|D|j6515`&}v-vC_6C#@0@6b6# zaW|{F6xq%CFg`kMsY=wj+86^V%$};C-qFeKBV&|6S37Vr+G+&hp>WY*tn_Q_2%Bu! zGTt;o#s(2#u#J!jgpuJ}>&K$1yNJf35{pTom~t*$6u(jQS3xm8x}gU+c^SINjxK!~gSY=-(H8)y8J5f8OB3fJ);c@A|6h0BTPQT0D(k6U# zR)NhWcmpLcL+N#F=itG!FaR}5@pYL*W3CGsPDRI2D*|3ULO>oK!Vrvk5t}!rowMpp+7XVJ}0~bfa&i4?X^p zR^sC@_)G4`L4-bUWeOmMzk*+FhcLtpnrJ#|GB?nRL}CI`4xKF$6~BRUN*o5ih%op%H`H^#=Nm(U|DsC?Cd+abDXlK^XS(sN3$ePlr*Z&fCm=oDv*;#8Mor zkHg?ExgQsIumY%pFR=9)HW_JV-qwlhODZ6Sf7$$6WA*BAG_aZwi%Bk%gGmJ|^H#2p z!{9GrK!8b|0%jR>K4p(C|aI1U|Ww=2qIJ8CWvCu?4AxaDeM#`iFHhD79i>qxpjc$RM z0*f3a#Y+D$xr#5){q zg#(AOxZ$dLm8-2i6vjrj)BK7fKTm0{bv~m{z?VSG0Oj2>F;9lWwtKYhqkB9VObW_P zVhAS))#Dk%)YeR7E&(m^t4grhKN<*9b*^^?sR3giERbU!XtR=3u&Jw=>ewVCbHeXB z&fEDob>gMEo~DM+gJUjC<2bI(qDDG3vs}X_0GSUS+41e#*jXr2?NDl{7>ik|THB)| zY@p_i!3bCE2(qTN7Cj$%Otw-h``EbGb9+v#yt^Fu_>KW*)`yj=Dcm=aYdC9fVOT z6h?#7VnhY%O>dSu9bi&IY7^ULPm&;9OhONoNzunw64G<(B5<8*|B#xI;8t_wGqoFI za}k8qV*6jb4{0&0Eg_ju)aq_dBS0bOVzuf3nT#B2X+n`s^`2su0U08=}0;c9mei)oxZpkZg=v#6s>vXPjDp_qjF2YRt2N!g>iT4g2|BQhm#6iB!+b!?a< zlJ3jdTw&p3*QEzUDaCnykmbOb)2c4vuG9flS`h2^n7}nxNMe469@p}oXg}vN>c|KL z9Fvu5BlnSr5t^yZ17jkJ>5Roy&*VmCHCdR{osY&;LZ*a|Z!VJqOA=YXF6yZ{kpp8Q zoJLtGuf790SGW_|1*uSCGHvOKN)NxdD=MLwga(4fFe2ZrW^j@gA$&F@D6ht`{=%0) zH94AEsJUoIdLLT+kA&JL-p{u3$HEHKj$sB1VX>l|EUg2aDj3V6raS!9oh_}0#2oNF zyu-(HeZJ1rzPomZj|Z5b!_W*4D%zXToX!JeI@;`Iw=`vVx|W`?RU1*QfD)5Q5jJ?F zTi8G#tV6ZIS#$=CiM+Z)Nm9e+g_OyFOlQo|Y#7VzeJDaK)%Dei<-nN6Q{QHBpRV&3 zJk8a|XiS9ogzG76!RKgO>78@N7chZWKYPnIb`Oy0JY&bxr5n4%WKyrT@WK*}oza*` zDwAz|<(k1p&nQe=&HX2k2_wSI<(Rq=E-*se zu$45y_4_y0LwI0m6I{Xw%ZqAVSigk9xMUO93YzGPb(@H`kUA8`rglWwaOBv>uz>|Y zqUh=FCeEeTh|mEsfvY(tkQ+?(ZZIX1WvF(SmNJ<0{H0wtlfeN+GT7gjAp;{Z z1@%705ZrYSarLW1^knr5I3~lHDvqp=GeT%`uGM3u`W>E{x=d5XptFcs6H6s#P$tGq zf|dA#KCZMiPmwYe)~;s0lfp_orbBAN(%r#bZj+&D%z{i0GE;`{qcN59TkVWOqk89| zk3mv|F(%VetZwXeH$TR{iCngcbM+>X=P03=q^vc55-YMP7EkfqtQe@bgpXkdPlT~m`_BLDM5ANPs?X*U_`B8l{ zP-o7Qjl2$-i(qQfUJJZZtkOvrIM710cYT~(bCd|rUhPk4^l%V@<9fvlPYBvTsiQaxWAOpphYA(uK| zQL9X1WJD(PWZXP$9j_Gj1z{-7WfYJJO8A%Fk|_lwQ<`XuHV|j4Sjju5kD;~VHD|6k zIHtiOF=Y3MW)t7=jZgL`p;2`XbQWgTxuBfz0HTTC&npw;|+J zLyK9228~HfA8#bYAQdB_M}kLf{!)0PjCso7=PSpu0oB^E)_gT5Y_Eg`$-qltFDzpJKOKTen<>Ae_L$;rZ zr&HC2(zeO`M_AJ8dw7%KkC2(%)-jP|_ir7wTF0}f16(GyjfaVmDiKztHXeSbXnKM!Lqm!-nGi9jyZay7XuWLh$`(&Z|V0GZ0fJI0pktmGV{Ve@^`Kz&fAv^^y$ z6BF}8nbSH)fIN$g;F!kx){OqYKCwY zkBK}bu0QEYu@+OJfnyrm;Tk1|4NUEDXDZKcT_#668u+&2`{#3vs{Ol1R&jEg55=OG z94#J&a_Cv{=qNTZ8wHQIhGpOT-P2SCTh$UR8OQyI-bon&8kZmTET6=EiRy+lGP$M@ z2bPzNYdGhbPR-BW-@dmi+>zRdW{^r$mJ~zVnD_4H>hAU)?obMDC)w6|@AJ_6;9LrX z52;dY-3t!9R(sL&6~N%m4Md zJmy0DCAjY5*2nh+o0^PK*eoLRAw@6vK3oqjOzfzHFzU*z8lDo2<#9g1WPsB?uAvVI5Sb4_Jr+WbTZsx%W9@`Y z9uzZ>2d#dNtEhc~7ZdfmIXa2*LSX2Ez1E5F*KY_otxv;>JB{$c-S3t~wgAA`?qC=l zb_CCcwZDg$?KX#`i1MpGE`QR_hjet2Hz67VG8eMu?vc5pqTlM#_AIrWN}!`fHqVy$Q`dZU$ox*LPuU$Y3&R z=MP$=ezqfP7bn|8$ONmSDEmRTe>iwt;78G>)w#90 zs!Ad=``7B(sg2_pGTb^7%(MMKn`)e=B!Y!Y^(*HqRpJna-~Xh_7M#&=eV!7^fG7K8 zi&%vHp{@Vr^@koF*O%*$@PrH)mfM%d#x?Gb1R}Fxznp6^C7ZA!KR>*)fU?u*T#8?q zU5bQl-d}cE0-OBmc}gU0@xdokq{;@7$MNc_#V642$fkm#uBWFDr_EOrI4B3jjkzT4J2(m zx^`I1;98pfb=d2+gEg>?Tbe**HaA-GpCxqJc(jzjWo9?Rr#BM0ipC>+509DLXv6Gj zyw@MKx&<9;B$`I!(MAZ$oK%arZYW!6)6Ez;+M_&rT(uV3no&&!Mp(>4t={9Y_vi`H z)RAXBlS5-J@?^wC|DnCYf<_%f#rGRaFlM0~s?QQMGu2}%Jb+^+vOs1s7eonxRK3k0 zvS`f1wm@X|A}YC;RJC=D$&-n>km$NK>GsCK6z-or^QljNivBlM-N-0E>fssybRvNn z`p_&Qn+Bf6npCT77FAl6#Di1*X>o_Bw1uQ95m_ovne;3=t7u_1gUD=b_>k>(Z*UOi z*44>_Sz2U3=3>(a7ljHz8ecWYSyT>>nOKLL@MqSa$bhwpBlNMDhZ39An9YFx!CUaa9c`( zNSzi*^j{uS#DbH%MuQ_*hj1K?SSl!HVLyn$#y(vKDLB;SGbu?Jh#A<8(hSg%t(U^@icMrW3$0U3YA$Y9QL1^N<6?( zPNE{4g~MrFW)>QT`7B+-B_=Zp4b#)*YuH0&R-s`$|3ow_aG4oN1xkUNrNbMtwWw47 zNel_qemlYCVd{u<7KSsP%kNk;gFjUN+L@9CeBW2 zM&yA-64A4Sku@g@tPK6XRUMjdG)trI5lQNekysXTG^Td&;BHHfB-IF`j)8!Z1YMaz zY)$|mCLkq^FcC?C1Rawo47kx?QNpEoqI|_-JO++=kY6ebK)xTxaUKMVy=>!$UYM z4>@OdH()|%YQpEpee3lC5{-EfqnA9e@s)mmfNMT!S)UL|9gEH&3}Bg=Op(ikS5|w2 zViGKNP)7!{Ss9WU$%p%lVO~&=N$Ryq5)dA9kv)1`ZmF(RsyYstEnbPqoPkC;k>by* zET~b2WJZhxd@1h^4ky82Rn0rimeCO~nf zb!0U|GVlppmd|gE@GPH1YYbqS*|#0M!cAvcw&OuEqu)aCxU^=Ua*-C|V=^ba>g~-t zd+>0LHpa?CM1aH`=;1^5sd04;iGyMmT*Otf!1wHTx`oY&7~$sg-8GB}SZ0SO zE!kaGPEe|Cv4)bdmq|rE-V*;IdLz`bU1yQ493CcoyUNr(9S%m`NHjv@>OiI?e3lr; ztKLB4bC}Eu55%n4D%wBXM1peMIuMqu_Fr|J0+AW9EXgshKgrt^FeKEf_R%$z0VH#x zPf2nHla*@Ne=b&UdJi5d$(yKHbqV*mxP#ioLb)VAnfgv^+@bZQG9KI2n&!ERA@R8u zDqCBBGG4N+NknEuZ06*LBe#DGMtW+zTO+TJ$842lR7Woi%-BZH;z-P#*+0a|>2ZEvjiUP|`Bd?3chXo|wJ z?9@11>a&G!nqj-xd5wM+dv$IeV097w#b=U`%toHKkJHWi?c5&vk`POc2v2i5l*A`X zATlFGXOfYV4?<2gI#WnXQ0ArRO!Cs9XdCyoR`)lzw*yE81feZ4j8-c(2(B(oX| z4p`CW3rbb93MJt&A9?#wvv?lGEBe?Ct=w-ju?z;2c~dnC-pw^3>7q4i5t);E(@@s; z!z1u@?>bvh12~KEF3!3ULN3Z^0GTmmKXbQC#eV#jnbK)=XvU%viUTx^=L@XMrp}_e z)FaW^b?L#fez7PY2Wq%;2}Cuj2d8xLo!3Gt6vjrj%wR|QQxCdGKntCrm%oFXma-L- z)eyy2*Q50CVO4A&hRcntzWuq_pWyZy0k6)brQjV7<3r~LKMqk;ohQ)c0tCb-6?U9S zRL4$r1TvS1@tI+vu5@#M{jN}v8fPUqN+8ye&#<@oL%HIlDT4uG2CilDsdFEBl@h_> zFn%ck4$s3@6lq3{Bw!$B;8uXZB_GKywMi>*FpQ3)h)f-a-d0U@Cv@X`Sl0V4Mqs00 zC1jJ<#W-AU);lgKU5;&*K+M1rU`A&tmcuxVUrN9g?x)k6SPlrR2{Hpbv#Hzpk044^ zt~i3IL`I@rcm>txr;rJR%S>7s^p9}~SYo-8t`&Uhd3^!I4Ah?N1NuXhUT;q+d;`Pi zh!8z=oSMB2`^TapxmH7s5PNk*J|c5cZ%|2OisRdo-W$}B87O8!h9O|_%izVl zB;c40Bf$h)#Hfx0RYn8JtcY`KSnsw9xsXkbbI-+WV3|EFbHu#3%!0MDo%@6C;m%kd zWzx)c7>OmLXp-7^lV~z-ZE-YNVmFB05#xzJwN}7adYBZsc1?u!HlE$5Ku}E`^v{)<`2DdC%bWF4AiEHH%hc$aObSLj0 zkL6jO&1=Yku_T`Lxe<1vikh3e#AH%Webk!@+iR{q1H}}c`tHX^@iteV17jM@Uf;#_ zq8)4ur<-u^w2HCq$EX{k{cS=vb&0~M#qu5EOmHp+CUitG(7z-LppF@47r=*QYK&`r z>KW4OQJXKQJ*mBImkH|TQpdPVj$yKp+SbkfAW`Y+F-@~250JS47*FDm z*^Exa4oa9Xd4S2&E0Rmg;n@I<%|H9MGsCJ@F&wwiD^M!ED$>WoSX*q|^n z;!Q$Eu(3iKY2gS|QFJ{;V`<>e3;H}qo}qcR!8os3I>Cy<4T5v@|(&K=%2c6t0#1)QQOkPx3r=dE7VkiqM4=~ z5aT-=#p%6abkoQ?I2=ZIZ4IH-65Ev?VGwsc+x%e>Z#xDIF%`_{_dx?olFA4x=^jr86WMI^sARTTNn~cHag|xem}om{9z9%{Cy8W=%OM0>IGuy;6DnX(5&gNUsGfOOHp}IFu zXa^gcnQT6K-6yFeAoG#0DEY8f5KWfW{z~EWELAO|56PTZNh>(-w%Q|k47$4B^K=%W z#bY+=S4#;KPG67CYqZdbknKvJ83SfnqX13b=y{!R}^1tUZiLa8xb4Ved5&lMQ-qFkO`W8O*1Ri{if zyE9upAC~1rPb9hT6rJvo94M+i(QI0W$c&iYl#IAIa@2it7dHrZhdsG!L(M78W)6_K z1c(KL5~R4*SWw|+OlGaTmovBRIp>pR^8t;S(057sb_S1w9I)DV%_g&e%!dhE$+w%I zVsqeOz^P_LXLDAd%p2M6?$T}7Au?lRIk@y`j6=(1ds)zON=#-&G%WSIKbqtTU#mvL zvlZ;2GIQi{e-KQ9F6adbj=8En*X+L+j=gDbWs#Vn>T@^y*n=S}t!ba@pqK;sN>^9W zibyqISyMe?6=Wqt!cjMsA@I-`pF0@>2kHk~>iE1yngEjZR>i-`j-YA$TY|+rTlp~# z7=0uYTupgOFy_I2D5t}~&8s_#YV_v$_exhgg93LMEJ=nEjAf`=WZZ!?ZIQC)sQSdp zyZc7gG@`H2SeB~YBsz(v?I!3Qs(LA1xGzjo+bY3gS@s9FTESMzrm{FF=BPZs*Dd(c zH1+%*9CKA;(y)7JIwlSJmF>N3|aHKZI;%QM$?g$tzJcdC2@0g~bV>mlcB+Y>{fn+o1Y`Ssr3@lcsP>4jEa#$3XU|N zo4~_i0=QsEu(3yn?1>6dcQS{icNh$8>)~)P!IgN~c#swG-W4_0Z4W2}Da2J_C~XAF zoK~3Qe2i^^iwWZ}Byh0=V28oLh=d?e(I3*S>vAGNZ4ouvDZ!Wno`X1`|Muxns71}x z)=@YtX0UZ_YnbZVR*;}-TGtUMb2`n9al?BkR%6XE7;~U+hvpuY8ueYf>O^XESE2bV z2Pe1^4_An+Zf**-sS(7$eCfGgABh>Le%$ZHYNs_ytanm}V<0*(%cNp1ACoCD+$||- zCWLO(8+C`_`cO4MJ`xw?)Il<k z!jJLO$|$(SPfZS}q>Rek2oXJQyA(;tsXMDWZ8|V!s#+ZB)IQuAL?Ws!u2w_=$*f4b zMDno?e0Qn(7loEFnKvcvc0Y%>Lc5Df>mZp`)@DMx&1=(vrJ1aXg=Ec{99RugtiuJE zEEqFUv|Ra=VE=?VB(qCFlYRwI%t0d!$I;2#4-?KzZ zXCwx-eXAk$V40X=IxA+lSwxNL;2hi~?vXD2JtLUouNYRw!RZVt3q(RhlVUJfEJxLQ zf}5V~#lr-3W@R>)Lu5uFS9C(r0&*EFX7TE$D`zm&L0g?Pz+v>Nb6$MMhpXgp$A|m* z_G+{nNez6D+r?xk?-Gz`ECy1j)q~AqquWnhII4EZGwFO(rmcbxNVi$gMUfA4nT=3; zD}|IXnX>YHpbXc1ET+(4>L%@oT4vP?)zR%D4SFN=`{dtZ<>tjLUZ zMQ5n`^qGQLJeI5K<55@l`Z1a6k7klFBGY+|An)fGqho1Ou~~;L>6P@QBzTWRX64fqDW<6(dwE zIGZDCXiZrdi|eMc2KQu%)*um?v5I~0T&Aqmx#JoyX@D3X>x^7aLqBf~=r)#Keu_DS zAVxS(RG$ig6R^x(rFAyK!PZ^>f|RrxCK>8-&)CivCSug+*NnY9XuDL`L- zNF1Xwb7dp+&a#qNjKwTf5agaLF$j`~%qZkqTA&Ip5vW$SAD!0K)b_<$U6lud!i3E? z^+1HfI;u(^?a*vmdIQAx)v$zqHi=pxgE}m!X+;$pGgW=)eFT()5lxi{Dm89PPOf-h z%v251tB28mSxxLHY$7dC&Er&ziCHo=8KH0nb7k;@SjmHn0kS<@+ttg>KjuF?3yV{p zcDl!%D$QMk%KF9mRp~c2daYn8Qa!ZnyyO;|O8{RSmmuM<)YH4pL+@~z`|Wz}Sbp`) zyz>`8YTy@@QY80nKG5!;o3k_}3F`(MK6Xa=>Y#trJvK)yY+{2Own-n_pG0&2zE+qn z23;A}p8(4<%~|kV3`~{FV(dJ{@eut)A=LUgMPu&GcvtEovJ)(^iK~fZg-Y5r`Xi4oW>e$HnQW2^2g(swR6%OLo#rq& zTsw#g7(1vMb=**o?$ryX5-R*yP3j117Kzl7von$|=4ohW6&ULa(^(`BP8-Q-lMNQS z-x&<#IzP4dOv@BPG9&ts1Y;~>gFd7dm$_Z5@`{Ef8p1m^Y*hgw^C3P7$^^bxR5cl> zYPf`DX2kf!Yy*_2rK!LC;aC#*%)R_0n#o9tLCsV=gFa4R z70yttnOQ^@j+rnD^_j-lyehNb>bP(=mjz@tp})Z-$RIAHKZC|R@C~I@Sb}8oAHHd; zzF~$?jK^HQ2JtMu_-+vmmVnG=TavYz4V+Id>_TlxGsH4r%z}}0sXuyP&h3kCJya*V z6}k#_CU0~X;!=3U#fXTuq`V~Sp3totZE3<5eqe7%;H<9J5&I}+0aogVkr`J1}`%IIQmQ&%My4UD)aiDGu|Y=i070W#r>Wq zF@Ly7&lAic`gTG$GYSPRVkZWS_2$cysHjEc32Ml1(VTN%R*PmlmdbC@c(&XYT>>(j zUsKVX!6G#!<_&xck1ru!#KJ8aOM^qwdYi}-m@EhdV02?Nn&ru)7^6?ZKjc6}kJ$;p z8(Jmsn2xN|JdPWzn(Qo6G_uiBS76{N5=)4p`^*%F2gY(xMFm7bo=5NCW>a}7R`PL% zENmEhgHCbyjf0$#fxg!thWp{wY26})?toZP6b6hj@j`Cj9?~eBzgi(Urf$;njVl0S z9;$is2-_Y~L~1vdCi2jjiK^Z(;lPi%j#Awg7=nyjBiRU$GO`5i0OwmiZ_U7I(H23Smh*#IOhC+%^W z1E7!~8oR1}9`03mS#a&OH7s(lS_fD z{K|X6a@1LZ+0s^^Ol;hwsE4rkQhUhRlzulB*C?Jwx?QkF8ImQ8Yjp1uu-+1rX=7Ot zD@KXd1!ZMOCZ+!2X+fR%%H*&+rVEUO`KW1ralB0g#WXa$wloh~qyDyuV+D`uc~U$c z786mk2#NS|<++@|Y(9o$TI!N4?GF;d=>eC2GE@M>6y&stf~rZVP9L{M=mvvR2ifO3FhMExC+m*^fRr*jQR8@t;1k_Vo0$0^? zP^C^J772lZK1jVkDF5W+SEuj_D|D109?L4u*InRHlypyXft_F`@^< z=&ni}dN7<)+eR(EH;}3rmQv{`sl#CrDg{Lcfaznku)+avP#D}3=f2j}*mYXns_#RM92Ve?-6bagU{jsR4n$9n0k z01V2^uyvmq?p1gjwG*i4BPeD;@+)A8R%ff;b0(8mn+<0jux*TR4TliyTw}#_-9a#m z$I=BhiRYVZf@}esv|!AHWv+o_X8G4}1k;p3f;vApQ=L94a|f0Z4l)+76n}t$;K!G6 zD}N#lQuSK(av3a^24f1Jhx)?eX}^u6jHo#^y0546A(=IhZtrnRE_hr(I)fGQAY$31 z(eE8O)!&H6!(yJ&^0PL4GW_wwT%PgY$nt%#nCZ|s;w3S8V9ZonMpiw{9<_SGUe-pI z5koR->9ew9Om{$y3Cc!3E5M8SiY4<&JmxDcKN}ZC)?nXbs-byU%u`t;@mQ-AExMUS zdSGcLYb#4)a$w98jsf24BAjwdiuHB3}*^cP_ss;{Ww zDZyAC^6n%LKY%_r2Ej?8eV@&2GPl$~bxjhIVi_e2nwHTh{6T>kVwE&OnUVlu7 zlL=j_t$G$412P|m|NAr*kuX3tr4%H)eH@0T&Z>fs?N7CfdJbuQ`9su zilq@G(NfdqBw~FjwIeG@B1f(|g|r~S#7-qgYCTv(IT(tSg{-cXBOKqTX{DqL{?LY; zrcu#O*f!LhUJ~2DaJft6l+ze~cD2ND|v5emCQ&?Q7S1~@zYF6V$~0UW6yiS zYv{F$@4R$Cg~A1=F01@Cb{TpN)DTFAQL<3pYqizx$PTL!O9jQUVCKunLfw^Jc7e_% zy2MwV10TmC#fZ#Fwnh4*HzF!EDP2QlfSAFTiXJ@ZjyrV2ip=6Sl}aKqCw0Okl{?UI zB|7g#?@D4N3NU73%Ww}v_tnHQJSb-2T0&YX-X7MZmP#OIAV+33HcqVg(R-4Vx)_N$ zC|nU7CYdb46*V|YSR7=rMYeFvMoDI)E)p}^=zn0{O!LRpGoNiy9Ucaj?&OK)# ze0(lRS`+3?nMPQaCLA>Lu(vp2t8lAOJTZ$#O zjGz>?J}P)`xh*3J&YDQu0~*jWeUx7U2hIHHn!rn+U`rvIuI#;o(&D{@qu5&@n5iW=PgxR1y4v6t#9zHF3WnORSrUfXh-_H+c0Et(y{` zOM>NLF80mdz4hV#dbYN*zarvpb;e_YD??b*Ce?*@wVGr!Ch}?xkM3=4u5PcbFR9i%K&HcdcPUq4ZppM~2MI=X;;&vhfyty; zz*3RYwV9`_VS-j&AvS|nq9%!LAAh)HVu{Mc$m~`U-@(Q2{dW_*>e|T}0t-;4#jI{c zd-vArUV>De_@6=QK{Dmf`;@z_$Bus;d(ek@f?hpxa|V44JQoE?yGr_dt9#!RMy=+x zXAm1Ortw>BK~Gi(Lz!J`?q^pjK&BHd_TK)+yWdJ^b&(e9W7d&=u-PK zJIkv-0%Mv`q2HmYr0$Ppig!VUmY7T`S|&99orFFYX_+1*Q(~saYYw(&7aCPp@6Bov z4v)#Ot12Q(=~X@6QRie>rk3?-%M~@rh3eD8WKx{K9LZbj^R~2siY~Ok=0XTh^q_l) zv(tkUOBV4&B_Pv@I_9SdJ6@!Y16ZcUTnVc?K0ZQSJ6x+?d4zv_$3tczvWT01XL+lAHID9w5_US-EVx zb_9wf`O!q)-10%=7^|X1zRm(OePr9=2vkVEsBK5!T#U$rnIW6tUetqGL?(>P%sejD z<2UF<%}gS50a6lwLmpeQ1c`yjgei$>fSRzhB}nWca{;1;1;u<@RPmw>%K$Q6)UfDj zQrtxwmH=k@l(cfVzXWNkA%99*jKC9>y98+~V3syEE<2*MgE~>k3mca}<^p(;md#fR z&gPMp17jMm)!HY^jI?}2CiEgL`*^vLmc(RIFY0$Mpda389m|ftdDI_(GOZWj**BIQ z;DxA6>_t}gm8C{j0rPe%5kZ#94$(>)1;|uVatumHHzgVDp})= zNWXt5EUo#Bp~Yen&ri^UZ1w$>T|v~`PgHnJ=J`J?mR@EkTf#Aw=aO*!P!9)~2&tO8 zBt~N*uW#P%wmUqH?+@ad_su>c6MAN`H|zz61~)egi^U{f$7mk(y8U2-d-IOb17teS z3bA#!7>~lOpv|qY!b_0tx4J!?j@<4D<7iG+;W1gY>Ya|x=@&;hju`{s?rE#HKZrA} z>hk+q=TwKz1@Tl|?iW~=)Vv3#9E5oNbV-)V@;2|MBUqNxYaS1FaW#REv3c{bSWMz6 z(;Uhh4a%FFP=&{2aAo)NHm-HWJasQy#ealMYL7{uRht7sC}x2l^B!$X`nXFw*a57D zr?pHa9J8S(@YuFic5lo1XtknhsVo-rz#1Opt%sxhC~;bgO7hr#S}9LrF$tWdc(5}X zJehNC@oXjw$aK)1pxe!lgh8m)G@Fdzn97rkMi|?-zPG-*FUZtxpq9)7WI8k}mJE@9 zB7>kdt9rH)kI6hWBCw0=thpLXIHp2gjpf3#u)fs1TCGqHjA<}Lp^>^B57Fh0*~)O3 z%k<<_%}>y=h*^8kKk6QPhM&Z(C*JHA$SDg;SqibkWnzT+4@NBrIm)05L8of(aSDw*H?%3~%&C}zQ}ciGB#J-mxZzxB>Pg`N=@6za)tO}f3q z`_Z|x>RBSKkyrgb3WMXElI+&gabDcTwTMFX>If^o!QMk+{ENU}y|W$+N7N%$;Og77 zCK7d3nXdz4XtYPOsJ7cnZFW(|28rTR*k7SB4;rN8S$`5AccjiaYjh0Ctmw%lYs{(U z3^Yy)$&5%-NXCTgR#PJyWsv`+2D7%ly1TwHpY5gX!y&Oi2phywJwc%!4Jj_@kT^bp zou9BP_7))!I7~oZ3&#SOv{K?+cQt4XyjB3kEM#iyeas#1=IzO-=swCL|EQXG>co~5 zD05yQ&d^W3r!6Fubz;6}K(b!?ftD6ciuLmHJAVkT4pfr8W)hZZ$vJOeTBaA@b*DOK zDUFB1;0SKAjYA~(sB*Bp9W^6NOs)TbA%J2U9CMjr7O~X}cVc~8tB=6GN)Sdi+HuIi z)iUY{jy2fc#WKj=(N#jY6{j8DjHAYV>8keOSO{_>_}z5DbbX4b0<|X##1KHt-~@5q zk4y}!ekvv?aTwo8KzkZS-Q$jo=o&~+0Wkyh#Sm@%N#5RpZ|*)3N>W3KSOyP?IdJ-$fF?leIPEpO~*0Q1+hs5C23~*xN{)ampkTdvKog5t8HGWxXw}UIv1wc;Caa~MnpG#y zA5<%+ix0g6^(bFuB7kwz?g$VdHOk8l%mQ|%OFnnXZ)!5X^wB8xcpQFI9(|UV&;wU7=v-i-_UQP zD%|h~hHB}lU3l&}fMOQ%H}q&Zk&8rP4(z8P4h(bqhpiDEsgt+tBFS*JRb3ny3sr;4 z+%z6_$0Q+eSh=%x@2+TwYN#2_dq!||R6Fm>^RyPEA~>eP^oUms z(pfmBlJy2#T;JVX6|yZVm!?{3JKNu`Z)f}4 z+${X=bAfhN0j4EeswM7k*IVNL_EIg8;aDn~2fM$y7x;R0NPXNcCd1)i->cW|ZT;5Q!!D1w8NuvSx2HC70H5PpG*YnAXjRe(7ApFppM8=dxTuS?moIQB|i+@a7A9y3wp*;}%jRGzpeD@0<7*YLng>_lTfwMS2k zm=lmp_aZ%OXSj7luJ%zKK^s%kz5Iz+GYrGfmn?KYm$@!A$DBkalmK`*kV`X~0TT)X zJ7o+<1DPyqrVIlUKz}p|uGnb?ZD1JM>A9H5nSy5OAQT3^;;v0T9UM-AqiodFsQrem zLjp1WEibVHe9QI^-vHe}#*?53m4L>=1XNoMWxk3AGjvW4BaievbwYuTv zRCO%@UH&sTIAN*kFj>A7X+OL&dRqnFTJ1RQ(IGn{4t%Z>I?c4Y6m z%8+-CCUn$8+2drjiqB<1+Bbf;*9y|UY9{79B`~Oh*DUVKCPkhN^W$vT8ez4bsQ+f^ zW;kw|cI7gMW;14KTqZ_B zgcM78D`1%x(E@M zCdJGHlVXu9mX?k4(=1P2`KO+lGm|?3&PAx2&5`%kXfz1UeO;*8#L!G%S+a2&MIPK7 zxsWASkW5$gw4HDj%tAe_L1U7txpYq{(UgtDi|-d|E0S2g|nV2Dy-7%WkvTGD;?qWO_PzHNWHB_p-vKTQ9MQ0EazNI(HqH>Jbnu&B4$XjDs$qP9~fy$(n zW3&V1tiXNTZ3GpqaYu45%?rILQ)HE;JAea8tyz=9cOlft?)NFGwtKnHVdtU44Eu=>|SZ zop7F2ofeL1s-AZ=>BFI%o}%*?iHn7LULTYxD+8jZ6j3hMfCMU&R_&1xF9C2W84C{YR-)_`&XI&_BhgO@elz^j`?f)KyB1-l#@|{=EA_DKQDlv{fvD z=OYY}(5BFro8v0v5eN$fuqkjZLNz8tF8p9n$o90*n2-UPsxm3cI8q=v=*x&{A(Qe! znX+oLk4L0jT30~FrwWT&sLckrOk9lspQHp`XarayG8sz5AJToT0wX}2 z24r^W3whO1U^G3Xp>siyCW>E07koUHM+B)&=^Q0+uuP3na7>++U!A--2YZFg1wfAK zu9-l_6*M*=p!;C5>s0fTB5?eQ~w}q9Uw6}8B1EV zBaR$%JuZ_&-1wzK*(}uQgLCi#awcUk@LdKaAejL^qf(_k_w)(S+V zhuuf8eqp`p*hHsws7#E3LPUH7XD3^Y8cgcE7L;i*5>3$#Mu^!T;e;n4wVGr-7kh=x zg-FSce19%C{x3mx3(B-ueiX^x?VFQ9vsTcY)JZ^HbRYU$MF^VLGK=6fvtOK{1=vbe zTmHE5zLsu3zd8g5>jlw&ZPoOOPWMPQi}|B}4V??}OEU_BV?syWC)p|PX6z1oa%}tI z@)Q)(aM8Xpt7xe*sfncXS6V4E7Y0L>T9poDBtQR9Wfn3Q0Fzd=uVI~Vu%JOrJ)B<^ z7MzRm3p0u_LdJP$B2B^qmq&xQHg zj7q|}7L>1w`o4S1YtTLg7im^s^dx9NOY8^;nv0N%D!W0VatR?GK{913+UlCSheX`5 zglNm5&LU3qD@!1Ds7#FY#*v!}9lYPset&VZ3*osasUb}1*ZndqVF**=&LYP?5lrs~ z$C539yu@X43{Rs<2-=uBTGYL=*R)cq9uANi{{*Bhaar0_bRGAIONg#zPl$PdNXb

      `RGxwaA^q!R^l>w%C9B5+acc{4vMeZ3iTrBwIs#xBtM_(7}1gcUD50+^~6Qtz|bqg>SZGs^-7eF|k$@u6y z@&1@a9Z!YIq{zkWT#JoEj`G`NWRFW8B3AAMCJk@)sZMAXMYn~m_OB_YKw@v{W?@8P8(!m5yw&tGFZitCQqn-Ddd655n$07B9r0)G^i{(KZm# zTvVwdTTLM{A%^O~;{tyBX>j6;8mDNS49c`CD<i9 zg{lyT8~c_+OsGs8+3aCAnDtxKW(^?IMZF6>9UL8nf-c&-c(6LI@2g> zI7;2WvS`#$g0hT}OE`+os#(+}SVSg_%qLn=yQukyMYWL!Ld$H8$8z?5Q4hqJEMruc z?ge>*%A$2yf-)`gGt%+ljj)-_pEplJGG$bov_nOBzC~-(0M^pcC}62{29W8Z#?dXZ z0~6k zs4HO18KmX_JYlqplUhtBjXJK=k#s$ac3gzVWRdYi8wnOQ9Y5|n8p zBf?!5qD3xhM1;p=Q3Q)Q_jV7v;DSN)q7keI%hZv2%S|5soXw)@EkT(!lK7F?I2sLZ z7nRt9WooRIlmSciPL>!o%)jPXL+64-ZJD;~U|(rAZprlRqHWp7W%8)r>8j}-ZjKg4 zzG%IdpiGOkBT_y5Mnd!RuN|2Q%|*b(5xr-3`}lt!Mk(fVSzop5aTYAIV}?BaTC{WO zT;p<$+@LbIv;1ri=V#sEa?szaJeS|-&!zvc0QJyZic~A&cNbArS*ihz=34I`_~Y~ceJ6$;87GFUQ<>R(T#M+guFSo6oR}j{ zoJejWC1F8Jqom;bCL53v-e3b#-4$lGb9(fHC39meaQoiLYC5^E+6Es838Otm{8`<3 z8f++Uys|AvVX?qMUTI(<7xH33f%jNaHg5ancpO@aDK&|1&IB|tc{xLQ#*))GXA}_d z)orvk*|X7@yMAoGuR=%gtr{_g1O_h!<>7bTq(A`y-^+Enn`~6hf^$}l^TMHlN!@*7 zZM8fZ1fGZ+FA&KUE&~M)+9G!xbasrE=9$Gd`a5P>EEsrbV(oa=hh_-HsW!H!S*i-p zvaSF7o%z`x+{KGJX8(l;6q@9O!Ul|o@m=OM{-YH4Z82D!ec{mTg()E%68hc)nhPyd z(3O~`rf6hoI9kO*%f917I@;Y03r7RXyI;}fX!@@Cnu3u_3I_wng|Eng;S~i{dGb6? zN`rg};VPa*`Kp-hjpqrIHQ@>1!1MN3x{-?0Qd42G7W1Hh|Bk-y=bJ<@@tSTeOQ1rC z0}BincTUEWk-B@KST5sq)GUDIXktKcUE3*VGn!9Rb$M_|;dzTuOjt9r%o3(i!Fr)$ zjp-Vcg%A!rUg};HN92*&b?O)@Sg%xa=w2bZs7VDfW3774676P-dYE9m^pI8(3v;;= zN|Qe~so8YP@g)$!_Txv-AIE8`xeF}E;c$Tb{-Y`yTFg+>L1h_2JTUzv-Ky3Mv9c6z zhJ}vtBvE@ClbY3YlYM8SbOd-{y7*-I;32{$#>r_=-(x^<{rF#tvzVem8}D#{e3AZg zSkl$f&Tg!0Y>PgX=MN%l&SdAxS{@kO7xs$9bi7o1 zS#b&*jFmz-@LaOfDZdu`iEB{$5{O`X?*(1cqc`Z{L^W802+%whx}#5>>FS7up@HQB z%{O!~>eOhUK@Np*;Cbf-MfRqs6qR{!NBqM{uzza5(B6Py_^pP{CCYCVMxDPHc5jP3ovj{ z8q|GKap7u|h6)P!Z(00sD$!t!=^+9A#|MMMSbBren8N|`I|o$d%5`E!*PzxhEHL~; z?V-lv8;mI`AYfm7IXhI7->2#Xeaz8dEExlW>(a~FSe;;ds3U8~WDV+d0x@KJr0zdU zn6EjTj|jGRtdclY4N3vS0>f4N*Mr4iwp3R|#Z)y8B)RcL8Wf!G*{{(S_zg>g_C7!Z z%iAw$yCFrV6Ceu6O&Z6SX_2PRs^Nxq@uK%X-Hg9}E%*uIVG4dZI&M}vC|L7&q>l3@ zN`6gP61j?yAky%Z?iO3A2@_pR6I-GK4KV>UT!J0`ye_EfPvb@1*&iCxWIc z(8LBYewXpAy$ps8=645cx@V`HH)~w*vTj`PfeI}(Qy_TzaCF%FYIOMLb+FF;yUi(5 zuWD!?1HkVc(y6lLa6InCnI>rF-P?wMV}awcd#Y+V*nCRR&^riD19eVVnc#}wv zV6bi91xbYi^pA!V?_|B8Df_B-q<1)$y|45(_9K0-Z_u>}%6$S*(4dt~ z6c9nvCkgpaW?_r%*UkUjT#^%*Ia9@4Q1(Frg;i=_R80^iv|9^N6!|EpUoCD>rCpXN3CD}md$npMI#*vzMas!y3JE8mv*uW8~_EaI&EwzbXj zJkWKE>3UY?@=q`lWk|7!I5zliv$vj=tP$|@s3sz#u%QXSq2MM{us5JRl-Y5d88ydE zg!~K|>~9Ur`B`EZE*K~4H?5r=25^5eT)s{WDSs;{QuLxhbqD~xGF;KZ>azD>alBTW zoUxSzz6Tb=P^9p{_Kw=mBDNx001*s~?YoA>#{v2WqrqxmPcil$FUs$W*^}9FrPe~? zWYvVDL+1N%n$`b93Liq=8y!x2BZ~QyNT^^{OucRRI1J!_q8^A%C@2UF*&qP)UG?4Z zY@Go9r_Cjd0aqvh*9MuTWp8T`4+ikp=yE*rfL-+-mcs-3`Ir^~$nlF!@B};cKryyY zLxS=)9)3wd0_gmc@(yq=e10QWbClARGfTyIQ@9|%rSAKfn4F@ypW3@1-}bnS3tD)F zqy@0QaBT43WzU$tPBn#zYF2a20FuwZVhIsERNQ1Q?vj`D;5eZ`(8@EQSOJ3u`#tuO zeI#Q9L0iMnvJyOe==dpnb5~!_Ggz#4N_E>sdQn?2qhz27IXN1rx_GprNsn#+`g8Km zV3kp@A!`9NcMJxeOZ=-vx#Fkv1sgPZB8`@2q7Vu4^Fk=-Stf%9CT=_0Zk~5$I}HY& zOB9NSuG{VXQU8cr4}tA0g3hD_8kpX(-^G2FpxaMy@Sf`$Ju#=y1u7wX^b?y%ek&|! z{egnSq#%)?%g2ks{6rP-oin-uHnyE$InhBF!UQ1L-ar0+Jnwxq82yocD(7le9t2xQ z`h7zaB7x(k>f?LE$ylu_5|xR8`ZT;UzUFu`O1TfDIsHFyWRTzSAEDK}S-Db6?WW~t zi4{y4e5{B+0*8dV{%h4!FI4=@AVh&+2h9ho(ExOaV43js!NFd7NYOSEI5NoZ`=ZI| zaZysUP2Gq+*Q0mQSY8O$iG0Y&4ml18y5+xJt+J~YBscqUzwmBGuP@T2=oJ%JOMB6UXNe@%p$RzTp#-ld8@7f*V`lzUkvc#%92v zzURO4f}EjO#l!KECh@B51p)*EN*^r}kbs8_)(nw@;k=wJ)yWuD;`r8S+h!;NhlG!O z?c^#_`5vowpPa6F+kc=QU;g2XFK9Nh?9I<8^|80 zZEv7Xc{0-rmWcqNQ;QEiUWUvJ_x#~pJ2Ha@vTIz4a?pu_0SJbVKuILdL4xuUx#)xk zoc-hphIE8rm|`TbT&HJV&X()>T%X8&PThIzM=Wr?_NbC@;JZDZ)8)nsnuqrun4g}f zn4dgB39X<^Dr=Av^v{abbg+DN4)ifH=&yXYq_+1@`_G@{TssBxDUG31oJ0fHJLY<$ z#A2{uK4st4EDQ(e?@hj+4th_&-F*-@E)sn8wn67Oz<*aQULBSx_Xt73$IF@lAB<2C z+;V?@W5T)YP-MHrHlJYh1|-fF!-D!UUU;nI)x-uAv|NB-oIW1NTsmnRWIa6DHD--D zo2D}X3+k&7Ny8)USr)Sje2W3XQpyoQc;8&~X`B+M+wVPCuTE&Lsy5b>r+&WOJTwX+ zjSRiCRnG%a_d)~{G=fI#`zK-lDA?o=(UN)s3P`yVzHB`<;(QV8CWlx_A&ej^gZZ2I zoj_MI7y)ElofWIaut%-+V(6`z`uu{5Xh3x0(|Dl!$!wh3(-LgRs22@^LjdU2+03k= zK6`es_mFnB;;a-@F@PA7Bq9he;#ox)lL@*n07PU44Mex_oFY<3?FO^t&ZD5+0#d{n zz=HZFUeMHbE)%C!5UT`0F*8F2@ijcJh+nAHOq2%nfZX0kxLZ;DW+{> z<^UGdKQ2@C;mgfUGQFph=H3V5&62ivl!q(bh1h$(zyCn}9;ZbxwDf^2R}LBEm*#47 zYthq9Ny4i`P&F)qCQP7JOyl9JNzvQWKjQRBm<)npiqXJyW$t~KbdM0UkQO82a(H07 zW}kdH)4#ay{T5l!nkD!`L@-{Om;Mfv-pldXB$hM?CUr3ym~PI``s%;~EznRL!yWTm zoOObgGY`m+W`V)|w(-o5o%;oQ_MTI}j{@ko%pW5+{{OYP7Dvd;Z~w=OBH?5pXdLK0 zZ5H=Fq`pU!PJOsIfh+JJcW+yCh6Rpymc@itBNGgQIgx!=<1?HJ{baqOE&aIINYKr@ z2HnR2`jw^m>psP0Q0s^>i=eJs44;MLf$h?Ad`vMkdrww$D70B?X%P%pj0UC;mQyoC z+TT6c+cY6~wz=E_&hT!)hKL(@ONp?H=COeVhi!lpu`^K6Ud7{zw(;-~AQ5MUm?TVZ zObJ@>EMbM1B>cLVB)a=HgcTwP??Rk1DNRH7v2+$^r(m1`u*kGAa#8?=YZ%YfcI?uI zhhxjFZ3M)~83ASoq{Ns3ZL1_=b$K%fp898>Vz#0*d{@dOG>QUD3cn|L^G>HHQ%Qi)UPi%~&* z1H^8xBNfj<(iNw8BhZMJmc+=bXF5$zZ<^9ZprE~g)TSJs1jAmu&axC(Ai1(!PI@~k z67rEg!xR@&fiIuJFf1uBP~B0F?e9NTY=0>hhA_FdD>0={nFR&)1xxKhiTdSKG6E0S z91aNH0YTLC3Z_%ce3TYm!7p2A3izTfvxzfEQWOIH3=3({MS)BwPSVIsj z2ANkaQH28Ni!>UVkz?jr@0t4dS#V#Jpn5m}&EY;dI56E<4Hhbx1Npa*4+e>GSvXu24e8Nn2| z!ZO_YV15P~0xqxAqF|G-?h& zbGc6r4on}d7Zc??SE%71wQMvMo2}p`5T{b$E5HB^`$h_=xyD}B-r&)&RB&vKp~Mm@ zT<~6HZ;&r_oN~clBm;?Q9V}RXyiRqAg6#%+&%on-Aii}vcwHpAS-}Bc{ia6sFo661 zX>oYCpm1lj)fk&b&~|$78;%g~fA0S1?|!8I1Ld_hqlGG%R3x*<#RLl;7Dbb05W)D4 z{XR~hV4juWF*rcK@@6{ejml~7;q%?}x}~560ftFV3J`QR@aV&GN&{h!EQTj%_9RKjEU3kRV$3OAkUJCWc=)OGHZ?H=1l>&td@`e( zR~~pb95EXU7Lx$PQW~Rz*yXJ~r14;AFVbPWP4hMa1+B|l`^3)4K#fOrC(M|e=4}cW zIWhyhHB+hKy#m1z}lemNiL zfB`JEP0KU`1f45d&q}q<{9r$W&M%lDzMWCSl5H@*M`qt0T3nu8mV>Zr$L&jyi zMhm&PbcQ8d(9;1TV6N~$=899WYRm|m7N-ysq!%I2g^gi!f(aJ@So$h75V?Z%&4P}I zQS<}E@L+sR3sM9M+B-^~@nRxBuQ&6-s`p6!8~5oVrx%0Zl9~kuz0OnqR1pne1$jC@ zt7SHrAk|I8a`2|N|KP8!MivUgr8NQs-ABsA_FF1uv}Ic!tBFx2%7oxdDgZ<73_679 zMxzo^?TII&T?iYElnq#Aa^R4mhXGc`o(?tP9`V=eg~Nape}D?&OLSsduSe0*ECiFk3J0WVSP;MUy_3-z-_Lr9T@Tu$ z(#5Zb6-*`z)NJbuoIr#TJ`PUN^@bQNFZ-voZ$!&1EZYU=Wg~VvBjw#|nqq*OckQ)1 zYME!oFgZLhU8rv0=&9QmnDqord1$>54m`LMLAR$py2pp+Y{9W; z!2mF1qm$w8%7_XSobLx;^UbXWR*dk#beVla7kHBoF0-V-ccnIM7BbC8yBKt;vr|3` z2|nBhVsdXudlEc(4cbd)F@p%UxBC6zV0coD`hAwDnx(fzVefPL!uGVfgYa;G{o{UL zwIKm=&DLWM*`ffKG}EP_qhb*tH_+^GfK8fJ8yX-t&}>nF`*y!iiwLhM9$5fg;|7;A zM+F3QQcaVslK{GbYK!9GE-92c40tUYY+AhdQ|j_$%qeiY6>U~DD`dh>UEQ(00#tghl3%YkQ@E- z=!outW`+|uZblp)6lmz;5JN*Aw{(^zNhQgnFgXDn=v=DQ_Y>-fgV9oxRC!RKc@L>d zPza(9=z9RgAzR9OZI`a;f=zyl#&F0ty-LGV1AV3^6+A}~OPPup-|N;t$3aY5Prx~FNKZ8aWDn6UpiA7P+^u8*NBy5oih)D+lc z8u&u|-}bU0X{ASd_u1HG$N%CabF+oJ|$OZ^I^DL>iG2iDY<~1FcpGk(_!jNaG&ZJpy%h3 zr~4;iXiY(+Xa_77WoV#mlci?mXuyLnc5Nxc06q6zg3@+9D+atl6a=zykP;hd0;u`S zy_#1OXWL&lH-HXTDv9UXhwlBPu7ZzC1iO*lg`l;hPu-2<)T?=a+>V1=j5C{~PKta(=b$%7RrU_CKk$6xM&3Hs(V6|h!OKTGv z4+=EzA~oaLYQcAdYL@D<)-osnzW{J54=eheWrkqkDY6rAKyVoZQwqeJ$_&A&vWUdT z0?~UQqH{xZMJY>&V38)`urPpkxv*GIg5uO97Yqu(uRuFpz>zMpf(jm`fPuwS%c8#+ z&~8&Wj%q~ZgMsS0nw!w!v>o+BZ7lcbXSjhS*mkinrp{*|^PGAki?0&5<+PCCydR}= zJR2?wwS+gAm?ZP|M-Y0tHq8lmkrt!-+_V55TCPTRiT0TVo4>V|(175(8}XTS0a_cN z*(Yld1ny+DybO2~zj7cr7ke!8uUPD<*PR;qL-gYj&4FsJpOIq#MP=RtiSTkUel zAiv|kKU$8C1irB_%*yt+y0}SgPj+Tm?)8@JP8{_fdXpOwV12o&FVE-#~cBCv-%4y z5JjDG>~0qWaavBLM=7j3d4*l zSg}sid3Yea<`WhaNQL}HXkmcy2^=7jd>$O=ZuxY|t$+ra6g6l-eJ!Ju%y?234In|w z@=zNzN@UYKtk6Jq*-xYTI`m4EtRSQk2P_cX@rjmnl6y?Yx~ZV*b6m`v0$+t>4o0A$ zzQm|$@D?~HN|usRNu+s-f&z`sH=;5#qTa~VLYA~`^DRaL*$tJZ>TB)Tr1~g6tdPtA z{gfpEL8)tB^@J+D{n?sd8M$rkOTd8+<}~xLuFM&rRb*!Q_JQ_(>(dbSm|XW*-brlf zuK_0k!FSnR=&Zc$`s!KECNX4|&A@>Rmq+iNJ$(AK*FPD|M!}I4NgExLaXheHvMICQ zM&l+)707aFG%($Yz5b!zCgGF<7wCkILqss%ju`a@^3kFQ z>WSbqQZ20q3+^zr#`l~ztnE?@L@?e!Y9Eu^-QH@U4&>O4Rz}*a{6>)AbUC_L(gqE=WhENihB+D_g3;wDzSnb*aIvmo zjz*YZMVr*$r&9ov!qnDy8rG~$N`Qj*mATfb#;^)AkFmvkJlc_ zPP0KYvyjc`P;$*Gp`Djed0HKb@sIjRayn)Y5y5zomH`VD>Q=1>s(<)0oS+|f06MYm zlY`4J(MlVuGcB1ET#hO5+-l3@Ic8nv$&DRu1fwnok+7cuM7nOcN40U)jRF%2=pURN z5}ZzUI0;G*6}*?+^O`quP7#d1972MT`J!BPPkO)bGAU?X-McZJE$e5lv|Mu!yI+oI zMTQklK}+Xe&QNMhSTw_gY3IcN>KNVC@>@H(ms8?CvlgH@$=b<{^iO0PTfxL@MdNYHb-w{uq3K80Yt z;~savcGjjq*rejj6r$#1lO!}! zU5&@oV=6RCZ@n6_4y5_mgh7JwGPxA!Z40_XI(a5tFk9hXyeUAiU1wkZZ9SN%<d3zj%b^PVOEE)-YE2;soFQqXERbmzv#21x5fT?~25LoxCtYBB;3Rn+ zXqMK6d-2=kwzLiuv{#|>p*8dIq&(zFm9&v{CN_v5ycQDLGuwVDB~`bM(L#dqN=O-P zObF^OFp{~+_9pJ((TB#QkLlKLwL@XEoHbIC=CLNFAv98aDNz@|Y1zdc#zrLrjpm5{(CF{gHe#8E4ZH z9YAI&JFG;Y3@TA%+H$T|&v;YO*0jLPrqf*f*{NwQBq&{D0Xv-14L6LiX=A|vL3bY| z_T`L1U6SXH7e6xDV$}4xIGF-SR&DC=A?6djnSOXkXG4$pEM0K44wwQpmH=`-#H%Se zQF|ireg@t~DXdYsUreb5*J0%-xQp`trVWo(@30)5^|fbyI3^Js?&FYJ5C2n|1(x|~ z`eAiCl%g;tMF||-IB1QikO#6dmeMC-`pS_h435*Kr8o;DeZ&(5v)YH%nHN^K|B@fk zqIPk>8Y}r6kn;(D8*=C@I2{&Bnn-ZKmt)o_3TPneV-66Cij4G4hem=VO#(rm8bPL* zEsA5Bl`PJB4@M)JWG;IH`q@_jtXR$+N<{^zp1Fc=Vm|2md96O0n_(=)=d7!_JMFAcVrS9laN5 z8IRUL*1=G)dpjm6q0;sqC%O!}cF}t!sy6?1olnFZ^}i<|hcDFx}7ZKG}UlcN?oqEp0|m2j2yUKDzJcbF5oy9nb#%(5hLXHC@x= z6x!>|SpDg~rssK~H{A=+5lPx{A%{_QrH2BsrGd^y52k#i(tR(mfgH-yeeOQ3M@$Mk zd$Fq3oQcM(%+}raxpmCYY$uy^T4hPWmwS)Y+RCo|kQxSxC!0X@CUp2yk_3Y6G%5LP zF&|ILXb}TD9m*iL=>8|Mxk)++49Q$`^AE;v84OYMT z@^hdj3>6YV&%LxBXG*_U5u9Z=R9 zj0`U;gE2sh?N8?>E1Z@$I*hzMUCFE>?%^$DjT}x=ugLUZ$@nSVDGEqx6)gs13iegb zRPYj74Lctjg(OgPU3rEKr}N&!M~@%8e0tD-^2cY-Uj#ux1lzlS(V2t~Atp$#;(^h4 zp}494CBJKyaDnp)Ko})Q1mP__%f9Z@Cq6V5_(cFI&uU;neH$-uYV}vnE%1u~R1LSm z-9)~g&G_+t7G$ZtZfO*vgyd!#R-;prB5aseonZVwg2VQwEOSqbKrx$VP(`ZA>2 zG*5~nUZDlf*nmi-R^x%}2A=fDsI?9JZ3M1kz{xQh&|2DZHsK|z3t9~d+AC0LQ@a=+ zpK#j>95jHDN~r+^U08bcx3P6wmR=9Fo;b2^C&bLaVTzZ^^HdqE)B5V6BE{E`D>i3o zNtS-&tO7?WprrB^kf6MER4%4;KO&tAu6}D4R71eiWOE)LIn*0w~khG@~!ASKG^FYJl*dt zmy>>KX;4zo4U*x`qk{PwwcHduuOxS8TGdklY2w>3CC!&ZF~sg81Fa!dGT5M}3sMaV z(pzy#UlnJkc-K)lU-1&xhH!X5{%b_ zuS;rP$FqP_VB}g(2MX5P0jpjqRx8M1Y6VuVWoE!&zkEzL@Am#k|2(Fqx;Isa7+9ea zL?6}=I$Kjul?v6 z9|@Pj&}mAdf$M7Z?Pz>VzREF~;J}v#3CMgnu)SBYMO*fN*t~q2qG6lypD2vpa5AR7 zce>x=V2^ggXEdjzzQ&j`vZP?j>tmWUN=T685B%4aq!$IT+_w@291!%O|27k3Rs{I~NZ@hnYh z)mViMUNQ>QRmf~W+o=MLzQG33MT*@jP}ej^o=Kb^B=GQ|C|!>TEz79T2Z2llji6vtc>Y<~t& zH6jc=G-PrFou=<|&}oi<06NmGzTNygp}UvJd0O?@U$Wfkvei#J@s2X*?tpF+ zV>T7|LI)(2>rxp)0Y%e*^J`ra#L%tpJrw7`dPd_V8nO>Uzuoc&us$P)etolpOurq8^cjvn zuw0#YB9aP_l5j?^c0bH;irP9>TJ3CT3^wy=vl}29d(^B zvxnfIyVhjkD@j}M!A!sQkupNfE>k~s!epdg7mS{^lo~KXtm(_^Q>piwXfBG~FlJfl z;A3mKw7=zZLhvsn)-^HMn9lz=C$m~A$TNL&y*(+!f4NX;Q>T1mpX-zJQJP?d=>H|K zsd?QVI_Vp~9cEy`DKwu(TE&vQ5H2YU*sk+?-*YMqpn|-g`3cUn1kun;x{9)8g<@;9 zl3GtUPOnP3Low-BbWXKC;)Er?6j*YhuDv851T3@p87`gwZ)wz!5^||Wr%_COD`4MM zrxI8_5(Mq=(WUjsr-RI2`9PWSN&6_;&rO}LIOsJl~kAI*)pm0oT`gY2bq$xc=|(? zMMDH>EW3C9_{6xOu(9#*c&rXrkV6wW;RTzcZL?d(2(c`?&CNRrz0k@hHf^(8KnIzu zlgz$HH}@1X75HG;r@PHrO>f&tN;$U^9MnO-mpnJY0Vf3C8eSoD3G!cj$M*z|j1_2LjXDlk<(Jjl z)#DEzef9E>{d!@7aYO~36_#UyyiY5PO5UTt9z1%cYG~SI0=KOSHLEN^0#U!JUiU#^3P8os|fe2R8|&LhI_2yFfZt6N8mRkIR0EgW(^lIz+TCE zxm%9blVYFT%X&kqtU(*uO}&gcASqcdy~oJ|zfb=4gXlK2Zt7)@3Gy~sOfBCBF(Ep) znB{<^O%^kc_m!hApRILnF~$UW$s+HWIqCeMlxI>pnmExq~|J7m)CS!xlWVP6T{_@36W6w?LB@$uR}3Fs}9 z$*>w+kbjsbH!_$31ZQS|w?Tmghm5;;EwI6>Q*{8AX^>=szzP-_0&;d(j*n+_fGO~l z?#K=mIAq*`9rh4Wu{W5_N*X%RN)t1KV5c8gEGv@0pudS%s;5TAsg-em-LN3Ws35)` z6BpC@imw4aZcS@2L3%AFeMQqCmQ=xEYoKJztRX@9F&?f=p}r^Ao8^$M0FQE6;0+JN z8hQo~DT&laL*e$R*N~uexx9~BMd44o%H+m7w61}+^%!UO;78ojLnc$eeV9}Ewwol-J>*~1deYHNKK<35h z$#b>K*jo%vS>@8snf1Gg1Y%N|1OwN5^q3m#JbB)uX#t;QYTsrtiI0*%k7`IGbXFCGXY|gdrdlWV*-Y z(7+a?OM8s)8r?Wu77I*4x@N_x4l2lO*f?Dd4QwAcD}J*W%;&T$r`Y-?-@^NoBzp#- zIWw@}zZdcAAV2-p2?a|(=0`##LxCJUM+N(bpj_f{aYKFnS3s%6tk6X5#jx_ zq=R&Lrck+$8F&b}mli^2Kqt!olV!eSKwua!1moO2q&lQa;W~nXV@* z3gi<+mJ|30SBUj_R1rW-rtXjt=Zo>{aQ(Hby5qq^NIrw84l7q)UVS>uAcqerpH$`y zitbuZ6XVmtF9m(Bu(e3u);f}^{$k&|}->&KsXMmhLY5UBn5(T*=*@~Cg z#X>{CPtyVx6kCS8?fdhRZe?k(r6ExgazN7Ew4{`Wp=8TiA_drxaEnWLqHI86wTs@E zJDW%*Ep_}1800~(Q$0gx=O_>wZ(ZB=Ix#wA1SO+-@N~R7>7SI#)pW4rVk8?AGIMYa zND5k$KoXfJQq;CJ$xuMhr@3;X^`{#Y$wvJaMyg04>StWkGgE4MhYQ-BR6Szy0EFOP zh6*;(Gv-+!E9f5a!Z{5s6Yvlc3@!1b8~yptS#5`w5%>lX$!gV=2nP-kL1zfDeAwrk zqituHW`LYv+~PlsfuAp??YJd{4=KUG(tETT_xW1d4lI)d5R<7n-pJ3F(sp3!Nx`@k zLh>2p27bPh4l~H%LrTyUc%uDLpRcBESCFBApiEuj!#-b6S9OUqKu$1-g7{gYk8C@L z3b7#}7(jTBsZmU_7iv3z$Z;oMoB?t&&A)zlmZ(BqHUEqNVlqvgel}fHx@zhI3JBu; z(eKW8kuU`hA$%m~o;;6{Tnr8oyi;_~jpwg_s}3j3gL!<*PBDoODZD+Y9zBos$^<%O z@XG8zcs}cu83xG7Wsq_u?S8$Ii2**O@OH(2^jwCOX#$AJRO9m*R{B!vhn4=5ZrJBH z{higIW#8e$Ci$Yf9Me@@%J;a_rFK8D9s}g?rr&?~oJP4h3JA*BhmS%1%xc+BJ3X8M za`^J8d${}M(-0a0_!!qc6)tW17HK)g&2m6erc+!F%X!fs^QHfmD+^AG1BZxAPqZAr zS(QiRSjv{zTaIii6%HLTGUbC-bBj^QG_+h^cN#1-1n{A?dkVu}zg)B&T1VKBz}K>W zSFLDvyOzy?K^~NYikwE#U9V+(3V;q7K{c&p=n<}47xS~DZ8gntKvK}O2al&F87)Wk zo_Uhf48E2fKAoOuv|P*1lfX)RE&F%Reu%Z~8WzY3hE9-mK5N-dj|UGSL1Pag=Q0C| zz&D6UR;#u>4n#O`hzLd|c<$WRvR$rl2FM8}9ljh)3jEfl?U*)&4=KT$YfZD3W1;JlsWRNmG>Vg>gfZlJZGU{0qtyg00VYW>^7(wy^>`^>lJRERE} zlk%9ZlRWM{rJpLm#G;%JjzdpWfq8+WixWOXprHK_PwcPgrm`vG#M078>b_Wk=MnHu zOvG6myBB}WvOv!-@T7ZR9f*0M5BANDAy1tP;p$mp`$ z(dJ4SVarv55jrmciw-cYUKC4p6_DRtKiEQzx>GX&2ddkX@27*_({FblsJ74?Kv0e0 zNfCIMOA4@pGO4Zs1@p}`b5S0#vGVf`G*}Io4LVTaLqo;&X)!GqXRpV_X>X{b_KuI&WpI_DAm90cxg021ulf&A zq~HXnAkXuh6(kt_bRL~YIvFTfFM8=r1Qiz4;cOZ$9GEV9OtgVEjc#+@+1y@axf~$a z{B+F@&sKpmPn&dEI51uC(lr~6r>ss0PF7~qq`|=Qp2t!ie#b}zr|YsL3JV;54pDDC zDrXaZ@ViY8IY6+z@1G1xza8k`a6&Tqf0vE zI)0-=bNzf?yH2g3Su@SfJ)^^;#ud8!CzuDp;DSz_J=DY)DAvjeCsx z@z<;%c9S<8A5z|*lK)Xp|C2b}{J%H1y!us>_7DjiADKu{M<#-u3D#u8*_m&6MG#D% z8K5E8!KUgcpymU;qD|ABAstp#6Q4cvYj3b#orKqQ2zK~FI3q_LEv(^yn0w*d5HlLk z;D(FAmziHl;X{JrPdi(nH22mg?P1M90}yy315e0q7(jt)t?ZnRth`( ze>;2?GUkDsgrt&glRF9@w#a79lHw52S_pSH>N;y23FQ1Tv`KXXN$=@+Nnw|19U*mt zieR!FLML;ojt?S#9U`S(QWMnvU^p!1tH1^GM9}g{vU4*l1pg`&JRQsiv?8t}^wF-K7569@1#7UEKa_G`0EA0yj`yPW{Rgu-Q_w_uG;{sIrE3L{ zesNZ;7Q>$TS2;uQah70qXkS%}a4{BWF8NamgK9oYMQ))1@#45 z<|!z$WuI;!8Lon0V}gpyms&zFuv{BnWo39cEfWiUE4=x_7PM{e$N(9wmhcR?Hn(QV566 zD#)9nwE_+e1y`MHYXkKdF9(8kFb9%MyMYAb9rv)u*x&j3(ayhaA3WA!Wr-a!_^-Kl zEdO8_1(6i&)H{?Uv&97G4fnL=q!THVDCm-)gK{`YR)-4SsD$H*eiS6Ob@}4ZQ1F3M z9HhLT2vjQ=Avm~N0{|Q zQJrmFdJH5OqkL2=)U1lMwyQ=2-}~jV_i(&;G+WW#LeVT!5XY0=H>D-SNisyy(i<|c zNa%M-!%|(jLN~`R22=dL7}JdrK`>@X38@lP1B%pLSKKtwQYRv5>5G2v({OppvrMpm z>X|VK2fkYwzW$6iq>@tNB{Y!&g$UN$G3()YK@<5frIOl^rL7>rdo#g1c@?cF2L)T1GuqtGZ(Gz?jI<;~?;4s~lBebzH#)S353mH!G2@ap29{ic5hZUDx80 zN_)q=%My5$^3pEscJl)0V~|f;ExKnF`v$hHkBDo`C~jA`cf~ z)7B~vH5%CT2#b#q7KL8C>aT(&&n-t-c~EdCEW3zC0Ie)*;J}x#Y(&?}vTQpd!4|cj zt=QOTKhespyKK=E80@I}2J5*#>8muW(-`Y%FizdBZ%E^TQQ49|p^h)`aocvbOre48 zez{x@)}t}CoUeQIdtZO((2WnSraW7mRT@uka}R`%;n&*qcFU> zp!up{)o|eY<@}7?p{H{idiM6thEHa%2a_>*pVLiDyHr$rW|8+{|LX_)U$c}8?sD~@ zP3pIxg1*l@kd!{Uaq!Xp!GqmBCQfiIorfzCSMfmE=N>{z*~@2H+x0j55qRJdc>x(T zUY(x}Cx?sPj=BbiPIQbXBf901nMyECv>;YT3J`o38K0VVFfPH6G|Q#Iz;l`LB#yF4 zYKSpSoT}gu+ZDz|OMWNih<6f#PAQu#;H6VWZ6w_i%xu^uWfl%xJh!4owoPua_LS!q zjRVQoptCetIHc(k%dO>_E|y_bf(|{KR|XACH|%qd*E3p3pwpzu>Lu8gO7O*)U`1(k zPehfhS!v{WV7nHkF;Ue7ONVtS3~F1%n5Y6R8G~97Sv0B$EiKCGLX^Hlb!eHsphmpC z7|f0fwdx!kA^hjfy%2Xz@PSZ5-ohUXzMUgjs853vPJ~@{giScWzOX2IyJ}F^D`unc zbnx#tTZUfOJx2%w{7dc&h&9Pn@}e{y9P8fr0B{$i;^@f_5UuQ*8;U`hb+uWJ+1CMM({jkdpU^Mc-m@g*d!`=(}*`rWFgT-RNk4_3YOn}%%JB5g(M1-T_Z)-jXZ%b$pL3jn?kV550 z$ZCgRk_L=q0yQA$ZsJkU9WBc5iy0lJWSj!mCIBTlD^w6ihMmyuSKKAFtziu!2qVKz z=s*QaWLv{(z&u?UbUm%<6d>p#bC#=#I> z0Y^N-yWm_&g;PULupqu$y}*cRRXq$+@=V%zD^u68TWmmCV1iO{7kV(FrEj zHb|OtjbeDyfFQi+6OM|*HJ`c*j@uc4h|6Gs=7LWXhMN*Bnq)})C{vdh#c~+NU=hsT zb1Vi7X}K8_jsCVSLkBX!LUb)3FhR@GH=aey(9P3l!9aAyPv3Y(D=`%7j+H=3!W%QiPF+Mofa%fw4@s; zhI~NXoXCQKh_xK6@>Q_S*}Ua2SfF7o;^_&6#v=dVli!xAi#&3Ys=|sKI-l79_;Nh!q9aGJrbm+18pY730c!|V=!;GX zHDC?l(cebh5^6vY-il2+9gHWmRK#0!fmfhG%9z!Gf;f?v^CFn!w9QKm2*R6jN*BZV zY89O8m-NbYIf`SsTN-gQ(>x|&zg8oj9o?K{o7cA*FHnVG3 zkl(Aw_jPi~IYPIf{h{(iVu_c`8dLO1Ua%BTLYu_@K zqkTcUqEl<3Js~nO*y7WiLK`@%pU8KCYam0d6&LV8SJrZLguFbZvwsxh7Z)L)pXE|y zQ1}a$Mim0v=Iz4dZC@`0X+LZx@ISlE+5{K$WpmaPkfiZC&Dnqly6)xdX8z7>B^jHF ztAWLbj{EgG`cbnW2x!M3Ym2>k(vU#W2kdpPM5)6&We`(a5N?pc)v5sjlzg=O8%>Rh z-%y+#8nheVyz#8RB2T4dB5;J@QW5|f85_|dY=aCR8WKK8NLUqbR!I$#1dEt7lZ9;pFnJmwf#fPDnUnuyIH8hkgr2OR*RqjfcARe5CK|p?TE!NF6E(PNPb?7oT5507<`;NSabyWC}dW3b)`umx6ZY z-=qp05Ox>B==uX{SIq?;eHF7X@@SUS@K8z`739AN$U#f(DqSP8RA-DR7IQyRA_&MF z8O188qkyb?fh>wmO*f(R)ow*3Mbh|Wj1t1;=*fF+JY7%wh)U?kI&487!e;5mvvZ*j zU_pN?Fg}IO>#yicU6ZK&8N>UKpuHB*QkWt-p22%|$%H&Z2{_Pw9MF;f{w5R&tjUE5MMtB=@Xj9)Us z&G6^oA?J1|XEsi2kaW5^4L&A_!zPAwm>74) zRJ7|&R~E9`B-ztUGFdDT-Lype>M{p9$aXSV+IE`J349+zOC}IOs>iA{#K9xMfL!8) z5v0vS0?GX#Wv2J(PsT^I3qXz3$v7C1OXi&!+9WoFATOaYifGaxFBuky(E0gahN~|P zI=>JObb2zNa?z|_)6`E5Jz25Yb}|s7feZs&OJHc5HxlFY{ zyAS^QWcTH6fB)s)-t!j+j~=olOLmNW`dZ+ugeT9=NkRk+3A%6b#8ORo{Tr6@ZTpr8 zEJsBTzW#MrR0a%Gx<&GY=x_U+Y}*zo0as7=B}-dtx-XrRW;%5|*ILv4#?jqU(H`j# z%Xql#Ju4T}!Q`R3BV<|(_|QPIrClMJ!B6!$M22ne9ws%m_H3sBN zKtYtuFRYG9#{2sCjU9TM-(yU$ULn>s9bVZtKN7d%NG7-DWn117cwoE4*`lR+Nw1sb zViCPQqI(BvhhJT!*4v>i+hSyI$1;qPTUiddqHrQ`9*PtP6n*ID zp1$;it_ZWmoA$hdK%CSng7DZU=@CyJe9*>DqgP}Z)cc*lGUE1AO!XbH78wPCUDD7AiB zzUQTug4Mk^c)9oF+2iNE(dpyp^rK|lmQQsG9jW(QWB<96{nbbhHrV*BU2B}imneBM z3&$AUDlzy_;*Y*U&ClcEPP@@ph5%apKFWV|GJk-W;Oat1mP_sWs5%y?@_PmU`P2QA z^7I>uN>iRPMeTZp90Szc^=i_AaV&fEWn8tuSf}SXz=S%@EBG4ZcA?( zU!Ww>jJK;tfs&v-udxX|88)$9EAiV}zeWd|R}DQ8#iaxU$e-I3b4|G#^bQ7#$Li;N z@TPxK3}|Y=x1$9I005;&b@-6N1^H#~p(nGWvUeP8u?XhNfCxz)9>}iZNm69KjNB^( zE8_r3(`iHy-oUdUR7b=jPQeHfI7v+~Fp`uS5Ok4Q<52i*&B~+U zN9l`9+BSVG7ySyNi_JMykO&vXjnW#e^0ZAWTj+`CA|LIxbnNs-RQwys2Wo1j zh(e->9N$jP<|hwk17-Ie zfUk_a>sDj(P*)Kk19t_%e8fTKH3bAvbI-l%t07-Q@}CHgaSHZ(99mvTg$)hqGDF)A z!{Vfz&^U^f-)_o`j}9F_bLxFtP;fD&Bv+jTXKoy9-Y5wYsQT2s?yI6H(o&t`nyper zMzH4VQ1hZ<4rsdL-u5-A>P>fgu-p>t(K)QV5+H;BmV3wNCx8FI4O24YMhB2*H@M)w zu{xn1NV&t)ammGEth=Nr6op`cslqYTIamge!5xV>%-vI*~9Y{sQD^=3+kWL zt<}8){PyV0urN2s_sKz8okZ@l$|C8tfMxdX>13sZ1fo9M^t^E*3}i`$UrvX~O!qOJ zc1HtYzuq8>?thrmy{+mni*|Di6iPDINs=f`@ImTNYo!)%hVcntNyop1JjWrElss|M zu_VU!(bj>5pc9oxk+ zK+eZiIu2mns+A(2ry;)=Q8McRj-Z7y1Q7F4tr*nNDA#mgHk>b>I zXr%py|B|6kBwaE{uPuw3JV^N`KK1@=FkhaOtDgR&8h6rK(R9q4Oz8kKR~EA*u*U7Y zB;GnmR;}s`!j)8)op1s0vZXso!T8PAY$D$ka zNT-->i?OcEl@<3~Y?!uPS&jpCsS#8aFuzCZR#3$OL9B5xZ&RSxN3EDdeS_N{Npuk^HDVE742v*S34AuuXjYDao3B& zO@&#}7xY#RQ5)WU%Hu=J-S}CxslH2VUtv%i!3e^EWn}o!P;k?|Hu>@YP4mYbL$pT&X-21++HH8(7!<`B`A%~V% zQ(;5HC+;mz!^+uZZ&8pl0jmyzWjcqMRT435)bos*W_u$eFEO3zVGPj2%k7I|xt^?g zhwG!Gz$>6#x#hUE+;rfJ?pI+s(h0Z41vf7jRv$UKP$a)%^w{(nTt&Nl$T2|A9apAQ zIkiu#zUzoW?J;Wz)?OS|Ts}kOjr`PiayxX!uaUve+X}0aRzcR2(f%s9y0~3i5o1Hc zZD%(x50I$y$8#)*>G3=Hc-AH z{pbYdHi9%FSCuD$pvp|yXKBGOXf^)t<_&XarfpOiCP=%_F+y9#Yj@iWLZq?`3nW#A zTED-ma*p=wRRsNDJ|bA3;mJ#6TmWAuLdABAOHXGaDtL(ah^yC9-BWRi5v<5?z??Y( z4#=t6yDDS!qj4$OW}2qKYNhbqaA-fK|$J_mF zh9I>f7z3oFGDM*ygmji69zJBGEMgAb_FoSs!OgCnS%fh_N;N3a*4$N@qk>iS3mP8> zw@VB5(|K0s%BW8OA-C6yiMqX84`O>?9~|uIv!=BE9z@O(Yz#6eBccWz3huGjDg~*7 zSd!A=Q`U(9K6Kp8=txBNlQgAL89}hWJ50sP7f(%gBt!`I&KXv0ix3@__{hFzFM!Z@ zi`d&l=!o1R^m3OBON=!D=u5%h)RhDQ3H1Cb(4)%8PFcPh7dBW0g=in@&);qD%okv% zq}B65C2A59^uk=#5#PfqFFk-tiDK~3@IjCoJan|C5dnS2rh9@_@c^z)hogX&oIO-P zK&GQxduVuQK%IsmVGq+wF%^s*XT#S$D?hBHq1A#L^l5w?MP{;&j zxe|lRZJDHQON^s{mRyNZ>;6nfwuM3Bfu;`w z0BW~Y#1(QhBTXtGBQuU z3E84_31ZRZ$ut_cF6ig9^$yQyjf%4n7OJRmTbJgUCv2aVnKdBm~6^L~|* zqj50_jsgpUO9vLyEEWkI?^YZq1>cDIeKT7rm;`zlq`D!xf&u!)O8b~@*bS@7zckYi zD6n`IqA-1|G&M|vf&sdh1{0%_kNO&>0Z=KHL}%EP#X^DQ+9{n}rwu*w8l4R$bW*ZM z{{~*w0{;%6=sJiG0VF7|$KR9pdEl!laIpYPhSOkz^ah?*X;tTsCKK%?%8wukPR;>` zu|}Yv{n_dAn1TcyQE2ojlOq!}p0$IWW+tbB zwEDtdE-Bi<>+xdyLB2dIJr0Qam3uo?!Vq1*JX)R7dJwbNzi;lF9QMXS781$iIcLO# zcYCMuLL$iPxfG_Xr@quzT=i9i6bg*O?DrpC+ApTsLgJJhHpVvg@i|LmRFL@jW-IFV z%*kb@P_TC5z&92`ZA7050_z(U{n}zZ>z85d?@k*PP6KJz-b^RT4Y{Xc6ZZ5*zjD%H zMiLBIfTFu`dXE~m`$UB=rW$uLg>hE=w~Geodk%O%Ho0S5}wp# z@iviQDhY&`%fNx^3Ld0b!&6#hk5`Tb5vYK{$QU5#KE$IB%i-Ga**W<>w^9h`UfL6oqppo`;Ntmw>C*$E0?k3eq zNpQ&Z0+we>xMQ+-Su1N)dD{TMo}rwG-}Co^+-kh;ijG*}H-1`BqU zfyh!`0}m;m;KlT_6m|GG7-$My5`ZZXV+kO~P1g=opsvUeO{Z%W8i;hdi`AkidUgnM z;Qem+cg|IqB7?A>rZaMHuviuuk48a2unJUI%tAiM`+0@rmox8ix;&g_yumW> z(K+O6iW4$*b(kxg(H@Kn&b#V8QvYTwC~!fXpBWfeHS5tKL{G}Ik0yer2qxunDM1XC zdNGN3T%C#uqH+C7l_YK%`iuEPZ)d$w?wMbacfb=0N6dG<1xw!>OjJXJjQc_$Z>OBB zr?Y44>0z+;Eoff1Rmiv?@^gX6rxboJAyKfhysbo!2?BpnCs0?$bQTL%mc{A<8c5R( zZLa+3cXq;2v%s%tJ5`zif@(9<3d)qXE;BP`g1}#H%uKHY_}*%QdlI*^o5urjKdTdG zPV4rgm?DC$cd;;^V;fQAxWJcX&q0*t*hUnEYvl_%=O9XRKvb_T`zSg=L02#JGs|j% zoknpkCa56sAL=A7=~(ob9JjI}1p`R2$RrtLszs#5eApXK#%k~7D{}N%oW=7Z!D%fH zgn>^68}w@N+k52kK%JI9QvXKHsbF-$!4eWee8~8Kzv(?j7yE__TY`3-!_^D143MHm zU7kf~*1Rf*bO$mYb@|0;gAVAX%e zIqvH%XGSMjivtX!3o$`@6;I=VQE|BD>nnm)WPl_o4I&6{;8_qRV}1&j=Yf;tbfBQU zjK_&q-)^<@Vuu-4;GY19kkR3R%+E>vWyd+mFhP13@{mFzrDb0__Z|%u1v|9>OQw}0 zZx*l$Hzqn0ppo+e=!E8~=$kEFmfNibFk}e02dlX(Fps591PS)*ftJn#4h;!6@e(A^ zB687Jmn^dM3%1<=lw_|^K^zr7nhF#Pa@NozT}Iy4_#7Dm{FY2t5PEFEHxgR3WF8_2 zKY)c`YE3v?CB10{LsY;e4IW}cM3mpE<%?^4+x)IjLF~8V+BmMs^@lbs+HnpF+Bm&* z8+8A0yyByT*6DSqAdbqn8DsSmD~)Z-H%HD2fVWcj6^tW8K$PRuxfF}n!Q{Gajyq7$ zUPHY=HG8dADtU7z*med=vUXWWP^!G9aVdq=>$%_PVCP^#E+oML6Is2sVBoI7hJ-tg zm`O{;S|j%qF0nWj^zK@JP_9qCeaBnFntg*t!H#u%#!k0 zU2zy}stI<%^Q<8-6x@y#s0E#Vv;iwA+$yEXG_PkBD44H)U(SlLx@q`Z`b9T+uL^#o zMpCu`VtDb1L0ZQ3fB$5D_6K{^{{Q)ZKl|@HD#n8gm)biWuTJ{Tg`RcWf}&0r+?ack zmc|6N*s#HszHt^;9?=wLYxuV{9Xn#o0vB6gXba#20|eb=_N{s(Xu$+C0YJoT77t`R zZ4274Bx`q(rK*hmsI7)eS82CDZcpze&4H&A|9LAq*+3i+hd$}9Q(e?hySYGOniySAJLfFOEX z|9vo=ltHG|O!_ymSTs<)Whm$tRlY`DW2}t~8Vm$B4OGR-Q&#ZWq`{zp;=RH6XxMZA zFqS`T?j`h#rl4`0G(PWzn&TfiH-!sMIxRGZSuHriol1ZKLJF={4CGIwy3}YLNpNN% z#pA=}*`f(}J2p1!zQ)p~R1B{Yd=>V$YnkCNt6{mZz~{QSs2g^?qf} zMR7{ETeBi5h|!QLk`@UZUSmb4Y*b^_RrBG)fz8V{`nsy_{whMlY-4!f^O_I(zN_W~ zP+;Mys;Xc&sjBe6=aoT{f=cMKH7tW38o0bFP2YA`r7JKnd8J)_S@K%du(VqwaPXX} zs=05w=H;)#1D`ioS``!SG1_o2qj7-m)!x$u#okXeM-4lF9}a9cs`kkHdNJTbO~JZr zs$B{Y!TAX}Wouuj-h;)lJ|wxPog-DuD-~f^|B1DWf<1AEX$GPa2I%>Pd$&eU|9DZZ z=S-ErlgJ^9RaqWr`>jJrXq&EAYYHZE)~9K^xsfuVawHhQ!&)0vW*MRP(>lF0oz?js z48#QPJPviELXQKQ{=vN+*pODKXlF;q1gD?|Gumb;;|S0H)s_9SY|wc(r<43LN*>QZ zux9AMYE5RKq2P{tDX>%&BS)}A?y%|wsOUT3zwh1&_>aoPbg=556cb(r1&28tWUUOJ z0BW-Blzn&|T@2J&JH;5FCu<#=L-t37_G@AdRA<)l383a5k-)*qA=YM< zhYu~EyEl_s^mfQ}{6;y%EspshMBuOIzy-2GDk%KSfg}~`XnL_Yfn$-w6^Qd#pzAm8 z{Tf|iqWq!Nu&d_LWUG-F5<+dh%#j;iqIu}9%vJc%lC6z%{cPMgbXFUE0;tKhRWw>g z+rSHcXKfW@fSyZ(#bR(qJ8t@4ipLYobS0|>`dwSBBQOwM_ld0Av)Yeg4WVTGnr8D6 zL3xEys+f_d1Kur32Iv_+z=7lt0b!v=~AeWK*7?oD5hoLe$YHE z77Rp}{j|_waay0|TyQ;^vz=syoz>Le@gF^~>G8mfh zPu~ny!xQCXNQ>AyQdQr^U1qr@S&db88ke8XOA66;hW1wfP09$RpXr>;DqXDx!xOr& zG8p*?4vbseEi`&uP-pTqr!My7kgSGmYdh}dVM=~Z5k-2Z%nlt$1;?GYwpPUiTm8B= zC(T%}rq~?|R%y01U6M4b_t9%Q0Q!`Q+MX%as?9Uil}6RH z$`sX?j_ULVMzPXaaoYc3l?IGZ8kN~Fg{po1!OK8Q3cVZ4fO_?ZwQRr$rDoJb?UeG* z#bHo7Zb)uN)IgOpDx<-5VB54(_DnGEd1{%&x~795_S?DX(oE3hdK#9B`GEYnDO@;3 z2nvD=N_KY9TyC}&=Yb|O4iEE?+*)b-J1I&KX~uOln?(ggP<0#qjIz|hVlbl%j_4Fc z+!;$}1!^FZRTC0G1uNgxL#ofv=cs4~6|C@fQjW4r(8bCTe;SEo-B>5(D8mCyAEtAR zh7c;#!jiqs7)p?B9t-qjY@}MUAHqhA2bzB7Y_z7EU@3ZsYcuWo{(7zsL~>`m{uX1V zw5c|bLETTY>gdQ0U1K;bXw1pANp>yk8>mnlqk^)kjS3%ERngdv75MgTR1FbS-Gse% z%GpSVcS{~Rk@!eh8>t_>yNjX0Zf51wZdZ>a&Y(#ABLw8ZX_N%_tXz$c_<^I2xGgf$ zeJ8fMd7@7)NURVD0@zus&+82Dp+iF==W&9@-;?er=K&4&Yq14R2f-rhpX7~3UD`D+ zcyFb7`{X3T?Eb7fZjBB8Ux5E11$I3q2XNPVs`GW~59vngP_73(1FwVvK4^3;eDsd? za7qho-NJ7ogSrnw3s!yl;E={wEE@&!Z7f`7WCc|r3Dmd|L;RpRd9>nt=dDK!Sr+KI z4D0CmA&oVQ;KFIiS+{Is>Vtyu3TLEI3=JDtCP-IRX?PpgV?$|C!FiE$hJ=DsqR90e zp@Ib4CC(PLQ-Uxwo9I{@<;v7!@=0Cj>udFni@WWPSy#GROx8Uzc-6`^^}JaQq@FgO z%zCMPayXzQR-@8rd2Wl*KuxM0G`QW^*jn2zhbrr&3%zu2ufEVHX`m@A z_iBTFRF^g^R5%zRA5v5|CF4cXUW!y|~pkCaQ;{kF&Ts84e-09y5^3>ArX?VbMC zPL=$^)@t0~gMyK#67vI}vVAIn3eJ0IJ)qs9Urmp=GaS%D-Xx}9bu1iPp#1{IWUWM&G}YOs72dthy`P?ar96*8#Z zROAI6=C0NQtL(3IwGiYTP*xxHKd{ar_-$eG%;=FpgV?nc_FFg6@)Nzql5#z_LkGQQb)9a#YO{D9HWORSTj~XP z_>kacPu2oUl>=%8mXP=g?-qlqdKH`^D}-*hTG7&2Y>w`PFbW89E8f;3Y80ZkGlP|s zEjFR+?cozZgxd!iAJwiFj@?PDMgnG3_29J5g*GH)%9e&SGHIh+-Qt|2AbR!6w^e#QOZkXi{^c! z9*+WAf>y`UWq)Y6ns!FU$>9V{SbSMbg6KGWmq8i*udlE4~NxGD1 zwW%k^*XY>ydC|Xy1C|92j)^m50MQlr#s6bXGY|mmDpu1A{uU z&$_iO7TGdOeFq^t1i1BAJuRw6GqG#t7L%`Zm!D*S4!0!}Je6P0X}u*=%LH9+m>E2+ zD(|VDq}o#ylkqgX$EWo$Q^*OezrxgE(|ge#=r*S~lgB+ojL@00sj3}6v`urI(3-0s zS|_WdUDpr803B|49$4DgD_oUtJv`5{K#%J#QcuRqC9S8ac^W8kr3$rR=_WG0Ju}y) zQ=(HHDk==|eZJ6~)1tgxnQ`D(10 zo|SFUMmI2N#R;X7e2@H&&NtsR9rU>!Y3+Tf;(6!|FTNGK#cFV7JQAXV-mSs92h1!# z8Bb)3R&JAwfCX}5Yv}g&+^k{IL4O6sSzBXBXU*ukJl5&7_e)^VAa+ZB)wga&n9PbT z24i(up_3RhK^D&r{qTgE@^i@!4;}PwT3A_SS(bdLzQu0zMnh0-liSO@mV+a{ z+O);#YmpA02a=rMqLCDBb8g{oU#o%baJq?tAvN0|6q`of-9|Bvm+DG1UPrcAc&n9> zp@KEs!W$E&T2ERapYz<=;+UI6QbhtWydAZhMRsrtU>nj)yL;6Z7HiVF zvQ0z+F>dYFWR!VMZ5Qd&oV2n$CkI?!gtmwZRhwTqE=Y6RvA#5OFo)S_3l9&09!pRw zLOV_IhPGP~mH;B$!iaAPwUWf_(0*Ygf`@>h3p6=L5i8&1%57I&V44ZCf{N`uoXDZB zDt62QIWB0Jwxf;1Umbr+jup1pq^T>sc`}IO{k2-L85M`?V^)GX>aQzskUQ@rZ5j1_ zJg)Ha|RR4(F*~&#@f3{6}7zd>A3Qn?Vu0g@$kNB2CM-|+M z&k9iMz2_*v!9xHqp4L?;a6IU!cvj#b=R;}wezBg-LdV~Z=6N1E=y^wHw*sh{Aum%_ zJv-`SH~~cPDr%nzW`gHXMbktOm9$J^*4eFPf{7=uoK!TD9@!mLP9GjtaLcZ`p;Awb zXVice!*v)EcZ-dvx^^n0fDqo_s;9IQDh&dr^GOkS$#vAja2hw5XakF zwT59=G+1ZYQG4sdLx4MLVd}mTV5jFy!4?ifwPnV~hlHSgQIAmgx7Uonqv4RYfCdM- zJMU7ZUwu!#&WaC6x7g*|Xn~3WG7{OK+W0WYSeMxVd`RHq4{fPrH`CGhgA+hRP!{w# zsa0^PbXR4;frH%nbD6TR3L=DW;rLTq0u(MN`EaM&XwtnKs{tJicR~sX3HlGWgW6xx z^@H5kva9|hDcXzzYL#$!C^2iEflb(>!SaN(6Od~m0;n-AFKIP#0hO** zNTl#`Y6kil9f{&9?VUwRf>K*&llZ3GE^Wdu%Qb`hv`vaPbG~~b?WrXO(cmZ{bt=?i z5^F`eRH4D4qApMLx(bugWu6#x=t%Zn>i(_3n^f9!)@Fyr1-BW%1m!_lX>b@^IVkmB zu4Q+~;7|6R(e$B{-jmH6lDulX%<{YwUX6)4FZc*eaNnas(F3Fm9Oy3b?<1;z+3dfUq0&&Gxd0mSIxgvQI+lrlXuts+5ZrJC zD$c749^Kal*-;z$lpA@ z9v~<$^Ym)-vV0WW)R{@8!2;1$5Mi#MBVRHq!3BR26-NWvt%%GmHZn%RVWT`_1qs?X zjZv_PR%v9BC9X$lG{+)Y0tNR&<`Zb~kh=FBVM&ny!obV_+@KbY00at`Z}w7qeVV6F zHz@_XtxfVR0SQ{yJge>COe@o*c@E%`bY7kGmz$f?d2pb+h$tSp^g6e`=6B1_j`6 zJMcC4z5HDhXu<%n>;7p2PPu=whNnsQ4;&D@=P4hq-Z1>%HxsX50PpKBUI#~`8|v3M zAaG?zZTfUm@hT*cT!E3)SF{O17gVkJ!1DhzFckv>mFoc1w=;@Q!*Zla2jGB`6n|R> zH)b@Y&_JMYEtMiqbeTUW1t(iFgfj;ARa+%`@V8`!!ji58Klp-rYFJ{D4A1`}#Vu3eaWhjTMVWF=zj!9)TN zgeJHA2lUZ$#E%V3(hWYC0eA<;ejwrA62nvfu%+I00%lV-Kx@G%p$g} zr&|#k$gUiot!U1(7@Seeyg98LO~&7IOFrD(&n{P^)!DpQ+EttsBKY3-_-FzYtN{qp zmE|&M;JM)O&|T`hPZtawvNReDEM96xMHINFMQSV>crI0`p;g7Dx`dq7E~PzQuUbLj<31z2$robiHk?XV8*7UA9mQ)82u{%cVFuEy^5E zjh9RM3$=8?8^RX3kA$k3y?i*F4jjnpE3NVqTcr?}`O?)ioS?+t{MvHAS#)84q0?67b))_|YngVA~=I&sI>Z`o!uT2m0~)|K5#Z0oWTr1Tqjw`|B=|OvG9X8yg!l0QG-p)XQ0sf)&q{_;5zVdT88L z8t9>XCd66>(-vXT4zvuQV3~kH&VE!dgfkzWA)56V&cJ3o978e)<#?S}<(0$~9R?1u$tC<9n29*z&S5+92@{Ai#$7@v(&Z7Ia^2bKa?Z%aY{V?2v6 zuoMC`lmdACSbv1lrVWgkivSO-6&1!%Yq7Gh;}bW!5A!f^eB!V~4&pw?z#Q-%hix(Z zU_Q*kz!t-Ui9E!;nt^%XeHvTF@od0AbUqXC%EkA;oP7K*zq~`Y#n2|!{g&P*w0~q% zDJ9##3CSFl$wR_qw`1DN)p39F&H)9J;WT(4e8UocLR%qRPStqa{DtMU;3To+&B22H zIZOW;9c-EGnucEzSWuFZ&;xu?T-jWT)9edRRxT7uu0Jqqqr!FMJcxxaNW^y?u{0@9iE zgbdL0E;xN8vG#eg$4^X7!6AEm*JGZ5phL|Q+7+ln8c@ep6BG2R2@M(cGDfhCQ4{f9{@xURwh^2(ishY}zA z6G@eRCS-W*&!Izyk29H+yV(_Auo@m`x)`9xm(VwKlH`mfl!b>9UqXqbBbHDO9Xeij zF2+*sOs|Q#Nx?e?4vhP25*i9#b03LhkrfKAC2&}s0yHxCU!GqrC!Z~w)#5(gTS@*n zp<{WMOIqh=xi47oRzQX~iwM$}Ql#p>2F6*iyQz~?1A_9#{Q9_gFu9}uH@=&tU^r_4 zOb#O~&^#Z~kR_uR+6v|vGDJYjQAJN?RZ(d)P~8l3MJq&y1HXy6U?iQ%lm!FPb0HC( z3*eVj6iicQXf#xkWG}~J!$~w$n&g4lBUnMAppqm9dHvaN5)B2C+w;|Izn@I$ra_v4 z+RU5zbwf8FPFY>;xUq%y_0hc>^xX&Q1%oxcAiT11B7++d(^YUa&Ld^0V{xVseN6KmAwT70Al0U{OqcZX%w*0l{rY zKocqIsFS^|lo1uIV#GuO4}>m9DWV}c0uBgnAVfZ#24Q@_Zq-ML&dvU73$gt^Drtah>{7(ejNdLR*7~E z@=EfCiMob?P{&h}0*8|KrA?W6sZ&0+R9zB;hr z6($XxblFgoB!RM@^eLm2pm}p4pWQCF|F&G0r+})cUWHkSFY~LaS1~kHJg>4a-%swS z|4h_6ityfogHRU2m5+o=b5T!nOfCxtE*-T=$QPSAZ2+NdtFx6_+M!23Qknd!V1im1 z$R0kn8O~!v#XI?wGzz3%xY*}hGKE#7!=XdTn|USi#W{t()^84en@)!{D2AWW8V()S zNO;Gm+8tZk#H%dD0(iA|2yCcG*aInD`Gqsk)!q@ILrKCrkoFAT!J(m{!y2yq&SDLR z4ka(yx^n+O(+%sd^;1E#jZ92p6dY=^IALInF~O?)cvPjL6w%P7V~oC9UbM6J$p(aXS>O!c{H70FIRjB zUDRFmXttvHe@MVX235BpojNW;1y7f}sJ_DKTN?tbScC-cl%NhrJZQuMdeLCUXD2Jc zfkOfXe*f7WD|AhB0dyVOn%4SQgu+EIwJz50mxwVKY5!=_*fNISO9I2q7aKISvS7 zz7ZzgZRrl5hTqju>l-P22w|47(|ikMndx-B-0$frK{2aaYndDe1W^aU7uBNq?$}Ib zbgzRbpQ3is<3#1dfI-dbNtj~QT#j2$B5+8!9p^s2(zd9N(wljM3*uV|;_Z&FU=?in z3sEvgpDS3NQU7w!p~qi=l6t3P{10wLV1?yuB4mp@NjUz&^brjS9M`H|T*fHH(Nf zGRPCgHV1ZCrpGb11qO8@-z`0()r#Zv)2f4LOialxya2CPj3$5-*3pnsa7ZeQ z`n4U690vqZ7i=>>wzTSgm|PwYM;e$;KDAHN(jh$_8UA<4*f@f-7K;9z(Lm38U3&2L zBrC7~IFBgD1!d&a`7BUZe=V+P`L{FaGE7iKYa)@V&vZFX=neAef|h&r?Y7a{Lo=$p zEG2YO9n9&ZcSYt6zrEsL&LPh7KoM2NZbd8cKG?sXPn4p9E}B2d=~AW1e81qO*#ugy zLfS&qEKt*7rSyHqXR(r}g02pKq7Zgm@doBB{$zQeh*sNjCXysM?<(~PAY8Ccoa+H;NS=;VG5k&mIWNDyEwV;{gc0Pnp zix%~L0>mCkjstpVMI!i`$*0vZW}TvG;sC5iih_p zffz$lsz|+b#Y*cOiZlrnb$F1n<#bP%Gi$2H|Q>B3k+B({Oo0JF2k=uR80X-c(G_}Pd zoG2T)ho<16qN5!%TOUFlBe!FQ07|&;d_8+~M|*is*S_9&x|pDi*M9khEUx<6pJITP zn^eaRwC{rkKXe$0_FahO+k#^z;!sYE2QHQG1FbI6#;D0hv;%qm>Eq?${(<)TPG<4x z!LpVUcnC1~dm0}~ex6sNZ&jtKcak@?saWlq77bM)qeoVXtU#kW699?yU|}?4IjY7K z88p&v?p%ompEXp>%!XyHN1+WR5wxj@2ng?JbecD|SJ5^W2PVrj0S*ncjm3QyBwKBV ztZO->4gne&?5d55Ens}k{`CL-*X(PE@}vX=Qt z(Pm$VmDd4mD4^9w_mwXeSy1~WfxHM@q5zX(H_RJ46cEZ@1((L0`@EhSGXWXlw}5| zhj5SLdak0)f&~`0&|UQZL^p;>UmJ-Y(4a>+4Rf#3(2{^~_VQ*w4+b}rxEtBgfz2PH7kJ3$GoENKw|;e;%_`v0aG(kDbGUA|k5~n& z%a6eW(JS-)!-?A08txFk)@LjjXTd#%3duN39ul;-RO0)atHgEgSl+gek2GQe@>hFX*jVBvVCS;YD83FE7ct2JT{3)9uXJ#$wjMV16Z$=hW8C zlK5ScZD51{jRZe+9H;6L_1%HrSXeUMSfU}shmKU)s|ym&QUV$n%(oI2IEY>BC1c={ zoGV=Lrb<3#^|4AG*x*k^nn!fBK-he&x^AJt{I+}%;kS#f>)2~3og8TIh_torhEneL%k3C)ax4__k-twEG zQCocHe0Hy-dmQJP!GY_=h>LD@qn%T!eyF>pC9+Rw-hSjVN| zz$N@%pYGi97Zj@e9)RFOPs9e$`Kmo^se{f;S#SfSE%mS=kceH3&6ck))iWwYFruFa zMdV<#jC|y~c}gbJvYx53Zy>=b{F5#M9kZP?aNrVUNI%j=Ybzd`t1Rje!6;%11r)L^ z^O>rcV)4Kx@<*4lZs*sc3RdOMA%aoV!e$dsU{}>b0D@0=3*DJ0R-&sSjDZ7}$Qvz( zOdko~tjZez!6!p9&3SDOS&J@8kMsz8R+XNCL*7KqqaSIp zZ@ijk@xT_B-Fo(TjA)ITKvh(Jfh3 zTm~+~wOq_auceC1z-75s<8moDaEVy5T+=yl!B!PZ00=%Y4q0wQD5)BUXf!Yh@1ScI z1XW#$X*h6+I6_?1r5Lk^;t=zUbUVe!j0O>m(o;73ac3JSi(Rt~^z*23%i<+h&Stpi4jUwpVJ{CZ=!yzAIbqy zRsAq<;1cDwq03lTGu{cTYLfs6J~4h)=Y`h|?d)NWSv7w4kl@5hfvqkZqNDvfw8YP6 zi%VA8v!nJ96uiQ=v>w-vYFhw;PuN!dtao#aXIl>mP7!73dV1-sRik%{2R2a`>B_!# z_GrwO*dc;Z*wp+kvsmS?9ul0wZ&JQmRVM)mK2e5LF_z!+rQ@nHw0Ie|{k)|MgqVv~ zu~|H@36C+qiiW8wdOJig3Xh@rcuLYX`~YH=$9PC^%3RWWL$v3CxAt|p1Y#GX4CD2T z3K5LLOX-rKQTsC%FV7|`eVvycFBBfwWcktjFRf$qS8^A z!TX|2L4$8WTHrknBuQ!@!T7vOtToZ?;A`IC7t{|2k>E3cV0+yq)okik?B#xoM>kp1 zU$9%pfhBk)G!(q*J_;3>;${2=`&1lMp5Fq4{bl!wW2c4lU9Elx=iWnD1db1(^edr+{7_(2Km6Y9*x zD&t3h3SJREuthRF1Xme9013uh&M?}(6kIN&5K_<*IFy8W9VR$MnJPYgi7GR0Wtnia zHcs5{sPpXr6s$Z_=>*DOSZ3=YmB$1puTSQ8@kV!DeR7aseB0Fl_XpV(3L{9t^)L=6 zQ>i38l)ULabbqi(6D@GTu4sqStwZ#$1urqVmyZf?4KQVeUy;WoJ7PP8x)?+7i7#sp`g zR;l0P$TC8$^1wapac_Jib^{D{KFU(+ChC6<-?KKoZj=?Gf;Z8BiAMt?^k4XhAXULLCk>`}HzgO>9jBaa#3f^~I1aN;i9_FeE_ud$0zTjk^1Iomd2p?J!HlVaJ zjE~@N78SgSlBX1OEJvR37@_1nFxcO4_HuuqM7pA>mrGdr7o6~OAbIP1Y-mWdWf(|? zg+D@D23RorGS`tHGd3Mw<`NaWzQ15o#ADLo{RIXI#v86=^v?@1PAQmOcL2O-9UPdv zKkJ|Jqk`f7oB#&9kKQ^F_0S?8J6yI(Z z{JxNa$DY1TfhBob%!P<>qo5mGAJ?xd0GsL2WW@sj{u8O&k=gL7XxP z66IPErx+$U13xyur^~d$k0mUaZ!Ip?lf`j;q5ntyB|ZdJ($vz2CRn85K=)!qr%n{I z%382LR)M71G#bcms&rSIjsnZLemV0sHULYyln!Z!p5hF$(TVOH(nYcwVL1xc`a0{cle6 z3WytruQ%k^yKZXW%VE(zrOmrFVy7R0!F5)p(i#DwCqm6GV(%@^FV^1P&*UGR=Z z!Nw^-By*?mkhhp@!S@hWlMx=sUWP1pXY6dV-7INxngyzo#=Xm$^c0mv1@Ws9u{t$B zyv^#oqFM zDbDxq$yA20lFns!b}cA!`C5|J{v#{ylKy)yHGn}M2N=3nak^>fS`l8=ssl`b3-UOu zszj=;v5Z%TRfh`VxSrERsfT6?>x9Fm>Uz$hA>k)cxwCXrHL{^NFCT0xc#;gj$tHB3 zWr46;_#SQDV);;B3|KN~?{Y;83CdT}lvDXWT*+vspH{(HanRQ7EKe)i`-7 zZyBu(g&{7;qi!7%EjM(&n4jCO?bZosNQk;JNVnxz=hb#)0$5OIP5)SMk7as=3-YK_ zL)RNIFRSfmC_IowL4tma2Bx(^0+=9;b9nmIZ-_I=uK7ARWEtm>?rfJs@9G>{Oyn?% zO{D0^XL@R5lR*SwG~`|%SBK?p#pgt8hujVnv{4<^k7LA{t*xU0EU2Ttgif_FD)b}qguPC zU7SZmzTW1TI+J7hd$F-43 z1A;CJ6g2RozdNOusyA`8?*bQG?k`WhgB_>E+V<{3~ zg*BXi9@O@j+YwjM0@~avT9`x@?a--IiHY2% z>abtz3VR|W)L{<{`l$a!RcW+Uv>?yvRWu|RX%#JiL;l=&+5I-!DjG)wp&Ks;Kl2%Z zq2px+2)ZZ~V!3CmRkVQBtPLfo#8ouOZ=oR}YJDL=tYp=;z5y(#v!)+w6-{P6 zxr&BFW38fvc*toKB(UNYhNs%V2uzShJw~FSohDjzsO?dBR1im%Mkg6@b%|x#;(|QRwOa=Y9jiLm4i&^vBhMCr zLhjl|o&keC8tJ-)l90M~QptgWHfnpvTYW((^VOHAJrXMwVQy>Zbp$l>9E}b}Tm*5M zHtQ;&jGT+DRfKu2buI=B`Y6XEE`lJ(xkV87`)G?G91(epI(4Hhf;c|4ssg%ba*(eX zghe`ZH3GaG83Ljx9jq6yHhAbBfPfyW94`0K%w#}5;!;RLf<=cFI)yx(t&V)RaP1Un zm`#HYA^-PcIX}?hTDg$>+y3K*`@`b!WY_HNnOBbk>_0TvH1){}_AiD(D;OaEiAGkZ z6X=*J-yBqMdNv{4L4o1_(hT%|9FzX%gQP1I;2L|=ZtyjiJgsEja67o4h16eEy;|E$KR`+pYA<&3s%R%m9fjGLZwcKTfp<5uJ-&!m$FIUTp$tU#Rrk&6wq|pJ#k|{@vV)hiK zAwl^vD1UcYuM{m^IIB)6h#TBXy2>fm7!|~?M8xaagNEjn#q~@j1Nu&84-4v7)6|FA zh2Sn}_4>IDF35ih^83wqM|%CXxjUmrQmL?MMtw0|Z8ukR5grXm<;$u6yWf3*%*wrh z2GV{80Qn8Y%;{CTJ?@&tbi13=D_h+8|79d?DV`#6+FVQ8$8oXR&L5mloaBMHce^Z? zvRKKLZz<18l??EE#e8>M&L1Q;IgBMH#D|#IbC!wsT9kBgOKf70A>hYZ0S)cA2_=W! z?SCH0qv>oVCxNWDavA-bP;m1cOuC6a1o&^r~%d&Bbi~fZ4ia5;DmqFhP8S z5vz-t7+paZFP%A!1d^Xqn#1w1TC#(DjtUC@%oRqqbX$6+iSB`;hjeu*N49Ln_rnw=6#uYC@rIt}q)sAp z#(x@FA~>Mw{ccURVlzqqIIbj6K+y+1ip&)Tbb<6?Iaejiv`t6W7Lh?^Pi$E<7sspV zu9bHfj2v4+8YrVdM^{{?0XaRPL4yu@&61g}qhs$7PY8RA2ikh#-lC!A_%L0~Hdn{l z6|V>*M-@p0g&(@SCZkI8xS1dIAWx58qYI{I%r0_q-b-n}}bgKSx zM~4hwszQ#c$bXzirQ?FeKP}Uku;ag-N1npw+j%3-I(OV5=I~B1UBCief9`OS9+ns)rCPJ=alNjC6}o$3jG9pML68^u z$T3DzL1B+qs?UNs7cOyRuZ*~$kyaMEyi$E<`Ugv~vhc6t7C0w@x&jNL_d>H)XSX2Z zI!U9O5P1q311@O%O@ApTY8=;kIevjBIidO2J(^ATL4;e@*;$ONIL!#Xw9?dBlXkO5 ze28*?WOUr&FUt~%ky8o58M@u4N0>02-8#_#o-_U@}? z-`R>T$gs^FuMIUbeO(;T6!sQ^^lAgZGOwzpx6sW3U9>B~d3o>!)nr!nI`#%QfLyml zz=ApGv0u(M^CweUlcqu14^QPkv(>qV@^du6emA80qz_jxcWf z!XE(1EUxEay%Bhtd$V>=OVMhBk%eLkO1AV`z?6anI)uCf<<PW}9cC;QxQ>xA5d2`Zw!|A1# zWP{L`GeSilv1I3Jhclz(2o=O{riu4Q>d?3Hs=Kf9-K-Pr;jtmYIq>g~hu!gT=en6c zp!!5RNokAUR{tBT(?cD&10GU-1bgtbMg;AzP+OVRMpve%V`S55mp%@NdQIKOw<3F} z=ysUgvHzV;oA1Qd<^s!bEZqX|e-iM$B51LF%FHpY2n`Pruji!3ud{Y^Zc!*4tkV<* zA2QzNU&3M++r<;QflY0=V+JYk4-VKNCFFpdAMvjtM|BW7pNr)vSYH~WL=yEl73PkiKdq~qNmj{_gyE< zazWm&th_Bl~17d7<%75(> z!knS27q`M5Fj;aj3j}poCoZq?t;37z6;o8EzcBfo?wruU#;EUKFgjyMflZRwFh+(y z>h_Pw&-(nYGSx2sagV>?C=G+^FaYoFCoM4B(Hu5^TwpW{SnSRcNOVs}AIGD_%!>38B75Czct;V^a>ra!qjJ>`_@lNSh&eci`?K}1?4J_9jE413)ugG!q6?LH0 zNq-@?xc4jI^KRHde3IhzY&WI5Gt@N~tXFb&#UU{i+xoqx+DzlQ$){?z>8}0Dbb6tB zUc#^)i<#UHfEid6|CFJDC_AZ^hSl$RopWNY`?C63DRtL6Br^Ri)NK@#o}Ha zQ2Uj6qB3FWI&ubKo(RHhBt+hX#b^_~@UM=A#i9OXNFb=Y2x;i^bc)auL0Gq?;+FOd zmg1eCpEi2(IazdSrf0S~H0_2Ct3BkAtmC}Pup*RXu$Y}P%L_alX7lSc%~!EVTin)@8Gis$&Rh2!vblF5JG=hD3rEH?zVf{=PZu& zUX`x?lm^&PY)A^hcC-$-tYy{vg3;KwnED{+TB=&`Hcf2}WX*f%qbWB#-@yGwCPuy{{e5|fQ zV$I%J#5pF|t*d88&u-AVT551Lde4qiL0p&J=nL~SvfTbSy4@HPq;+-A)!YJakVo&H z8w!Z&3L%uT4T_QL8oho-Y>?PBOx7P!Fa5y9jXq2ccp%HJ1R_GR1}(Y|x8of7um+4> zmD^Q_`d-l7Ow8zo7_q@xU4^JWS}z}qIfc;+G2nr$t}vmKrzSf_4-$05MA96t#dYymZ!ZwZ4x+h_8 zWAu6&u|ZZ8mx>Rk|D#q}dHB$yOk7e|GVX5CHadyv5bp zU5(PC*@|DQGkT+>8DJS9ouUm-0ek#Y-rs3G-yVx@f#log%rcekNU>47%)ge|UknSG;0aJaKfIt@x^8 zw)`k+JUu&kvR*sI>xE~s6JIkFgCCTeTJEXo%$!nm0T-+!rrez>Ecb*}uee<~NfVf$ zC=)&XVoxaPEYZ_bL6bdfBpurkY7(ZyM;UzEc7y;kb@sl z_+sWMUMM-mJcjL-q~(ei98UE4h!i@1o~?`SlW?6PG-mNuyP;Y`V(1mS zX;OA|D;1&G;*FO>#X43fE${%WRD?p$?g1c$PB9OVvS_q2QoPbM)S8;HKw)++;A{#R zBNTSTA-7r)7V_ERkYj_gO#82bX*@}BmL8I)f~HLG)+OY#)WuVEr}~=CzklzeqmA3m zo~*Vrz6<_rZ5+s8tq$LE^DIxrw;WrKGPay^c4dt1zyAIQfA9nKe~@U;zO3!E3WA#& zYjQ6u-m!Fwml+ypv8Q09mS`2EcstH1QrJp}n7)Kn#2j{5bQh%?Ax_aG_+Y1u!>ftK zr`HW;Y*3a75i0Fd>jsBp(3NSzRZ`Ymg(Z5H1~OuV!b~%y(m$nU$WuX6M`jGVwX%>|<>WH0Xn#D0eQAdq*jY4RuvvhBiD#r$8naP&Kn!;HoTg19TCc;Nc z3TKJ%Y+1pU7}YIx)0sZ|{aMp2?wP;SDRXhlSMiFAMGO{PIyq2IwytH;UXnC6^;5i^ zqgalnfEruFLN)h{W%NHWDaF^|bW36Q&|!D#+Ann}h3Vq0`o&XXw(2vbmcY00QSfL1=QHxYtkBK5n_7T(8IK<0T;y|j+kSg&Y41lYu6U4JERIn@UAN`-hi#h@H@@XUCTO!0-!_AKPu4x-9+8_D-$jCut-{h3<|l|hsL!Zt!IyE>Xsfh zWC63@>pQ8S&Yq0V+mF?i(168###0Q)*r2hujKeAuN<2#$hh$KQR@l_Zd*(m!)j;K~ za4z;UXt2N3&|LOvV(n~`M1i5;fo6siH#{LSxa~MG=0-&g%cJ;Mmxb$;00JoC?XcBq z?ln_`YP$B6)vx+?I7tCDc7)IEl86$ad5T9oedbBLV|b1Qn(RKf zq^(#$2#r;|z*}f6Mg(PDr5MJ6P}ta|81g_D#vv@;nEO^}Z+pVq%f}%-kw=n1(Ti#! zW4_+eYdo#`4^0)))zGZQebPS$0f?^n_zOn_;XBEn>7hru!bJ_2<%QG*{URXd**QF< zypIo=Qq_}H?{Fm56zow1Xonif0717dY4zhUp{*`-=&Yd&E2s3}#gab`Tkt~p{;*K< zSN2i#3??}L#Qd%f?OZpHS;7Bxf5E4y00o9WGz=2`FNUEj7$84qkZEPY+Kb8m+hGI& z8hGBj+_r0VF<(o=Q~XKo+amr)bfSK`m>p(}yP%cwNXAnfu>T>VfS|X08viG~k!(vo zb6oKYE=sD9WA7Am4R{E7$J6^iDIu%b1szzA>{8H^@Hm}P0)l=q>Ye2adKiLlI37`q zCxDo&&!{_hS_&_bZN~E%M$s*3Pt%s_88|Y~xdcfH2zuL>wEq*`RHqjzuG-m-zkOLS zKj>kyuEX&mUedi*%p?VaB#)IX9|sKqZ}^Y=pHwQk_Wx?hZ%Qq=SJ7j1O0eJ% z@w)%a|4E71AD)O{TQFVeAv!e}Y)D8(+MV*yv{Q@|+ynu{r0t=^L~b#XJsdV9yy>mz z|D@$69HU?s+k@l_MTroek#2h60odO+&7(}6s40LXI7GbcH3#XUx=`@Mj|WO;US&?>g8Ehe zML?aX0|oO)9x6{R{6AxEa)fz)Kz9qE3zsQ)oJ9bjA>iGF1v)35N`^eWhKLv-=gov1HIYP< zqVwf?#&32jam!vQ3>`9F&&iQ&Ze#(DoH-$S~#E3UCVeYwMV zpG5=D8=hzXWW8?a*5G;WMahCzFz1*_Y-o7DTSKaj6f}dUNC5>D1#JlJju!V?rcswzDVBII^l%n~1(usui^>b# zWwMc5MhdK!$qmrJ^i0U~h&M)m)gQZZEQADx8vz4#ni|o{7Wi3)#Dak*%n2=jvv4&$ zCkhD+F9tcG6NitQ6&+dPeTF-OO%?!x@40|)wUtW)!+p(QfhDxt`oUNpppd}uY>gV`%*n<9F z#=Sir*g{`uh1(5}a0&?wVY{Q|LZx#LZ+CzOrk4ZDsg;*Sb8);{H4hs;FH*9&l5VyI zD0rV2yt~={A@jw85m=_c6r+X%S6H+5@%@TtTk%kMsGQ zIsM>z?a;s!_@n-9*KX;AGb0-ufkVJfK0a0*fzOXvZ~BK#r_)XI_#o!CI|7!UL2MrH z)bovctw0Yq5}?T7v;MbuywTzNMQnW3@r+8$GS0?QZ{_Q5OvT0cVS?8yh0t!dFtnDy5=e9TRw+DjYauyp7Ky z8Jm=jf;9;McI$BH5R$crOBpU6j%5!A4jEZ{YbJT7I2y%rJB~M-4F|=^9;QcaE zzB-x=fJ4UXuw*27xw+)~`U}>%0oGkC8W{re#X(P!9^{KzquBxAkl|uSWCs^^!x%O+ zmgdnR>BPU-?)sH9+f3J|+XW#!-@C2td#G*mL0O&mIeVH6n|OFg`4Nm6 z70>o~*d5ci{}f!Q0od*`5*!efFDTb0gytEopd31c{0!NMtfL0gLVYNy;Ak75yDgO9 zfw(vH?jg0L@XeNv?$HD+y~=%`78dBxj9k?(X${r>e}!fQ;csbdXn3(Ie&rqU=4m+uBSYj!0Og)|fdfw@<4~_I_CmJuP zg5wPiv9F+j4=q1(U&fwA?c;$KKDVuW)1=@~ri1Mh#7Lm(=GFJh-Q;unpU>!Y=4972 zybD*bn4u92d5i^~8`rbFsbutDS~?SZRtn}h9Kd0{de{BMp@Ham_S0f{)rd8Rf{9-T z5m8w@klk`Al@2;DnBXf|cW@{XpN9k`&tGEUwkm&O>GlOE+h5NfG<0w`vSz^?4luNf z;4cgidArSj^_dS_n1Zb_fJrcVOprcvy`Ie{zq|XFq;nUHyF%C^Rp5cJw?c$i*lx+}RB*H;#4Aul1d#HR@Y7g| zj*yA6`?rGjJZK&YG=)qM_rn5l(yI#Yst!?0l_?s?$~CLB;w5&gj@Yaka7cJJ%tKIY z$IXMy_R&V2z~HsNV8SJY>@o}EfFN?|!;a1yEGaHiSL2&|cg&_fT8W~6l{cyuxwOZ# zYWzPW2_S{ybUtNbt6@=K^oYG;ECu9H1M5E)!l`DN`=fYkU(}X)&^|>03q(=P^4|+l z)L|iK+tD#EKBh0KSst}dRY(I_)QEThA&aIGjjdR4ENVnNW}hfe0!dxPN2%N9yQ3T! zk6e5K3q*CfcuLX8E)ELFd9$O~qILFysi6?Auf*80JGExMtcCxmdC<%rtfJP;1NTc} zOt4ayCn<4vE^<&s^3_A2%$l= zw<;^BXt}m%5beRbi-;}R=0&K51J+=TDng^f5^rZMp_0)dF6WjYPDd`vhz$C= zZD#H^KD*5<4K)2}();h3n}Ziy^{^&wPM{vwMw;znM6>1ipfcSy*sth~kn4=bF(Yr9 z4GPos)P9pT;F$F^B7!d4trvB|CRd&+Dns#z&>`llDQAJAUkZ==q`90OR|ivB?I*Me zar>xQOpOEb)}i1rS;3G}Si*XW;)~UG{@|%AmaI_xb76s0ZmA1qKW8y#K1#LjA%xBk z%XDt&1dMeFruFKaT0>Ik{Y`;hRjIoCcXc+=Ddtm^OOFcoCY)EfWQKA(>~!%)ZGZAD zd-ODH@r11dOofL83G~QToF{GR0H(Mrf1I9Ak_MW(ZM2_>y?p1ektRv$*-t*6?QMxo zzTMkBsjMCs&n4+Hvv=4BRWU;WHME}Qy1OiC188HhinWX=CY>jZzHI@)Gl3n=;y&S#Vf{;mEM(a;cHQ9Yz+HV!5Z8ug>Q&df`LUc)2kfwyxRW+%;)tS12f)Qd_ zKj6;iUnIJ%i|zE@@9%%Z+Sl5CKsOV_{VZ&s?l0H7RjOM}`ab`Z%PU=r&DHrnE(m1p zP}fJl`}Ctvm;r0spK1pY-GX$TAI=Q;KKx)FDpd|bt8@N#6)hVx1?jR&%uB4_dl?niYQV>ibO zD%xfxE|;xym$?B%&V+X+?y{|;6ZhHP=D9P!&cwlmf>Wx1Nz@0AnaLwv)p;RagR9G< z1q9uT5NGNqja80xnFp)!pH%q^5J4#F-DPu_^Go;Ys)E4-nQ$1|-6xB$&X^Vubgyz_ zs$Vy>45;rrV&2h3vMiXO1y&;P2w>2Q3PY)A z?wHZmRTv8hI$4VJd;=q^EJXzeDp5VwPue9-`|!!Xy6WK|K`Gh~b?I{a>T6y5;W0rf zOuE^McO&Xds^KzJTk0#0Sb7=`RHB)pD+APX>WrJ zC_A-jon^7E>@*yxM0HTVsf&aeU0ro>kf0Q?rETW&jC@^ev4B~+=+g6AIt>WA$e@YY zkXnOUNKguc?&&Qp(U+>rp#{v+t>mK^wR9Q~bfPk-DHP_Nb(KNGfhscO$lXL*;Z*%j z(1~uM`t=;$M2-t`;ir^n>~5li%u!w+4+}a3&PubcYU}|CN?D?6bLE)*n7si6o%B`t z_D!X)DmYNd^3zwutj6re=$j4>1PMxM%=j>0WyLpupcDOVbtgSD{;gF=M{BH^1yI-wu65p@;a zL4xvSk++SvcDVKQcXfFTP(dub^fA4lxn>cq&Pxp*$Y@l!o2VN)zgX|g^_Q1RTE3z; zFppw#=<||{?r80a?$+xB1@%uU6;Y~dGiMj`$)}H-`BB~9{^fQ?cNppelb7lwwtP{h z;BZC~<0!YoJSCM-+NN!ImNqn9!8Mhm`mImkB9J6BV3@^q~E690w%5 z=f4(`)Yj6J_Y`cu^O)U=LJA0a%YSSHZIlb;T)AKep2tgyiQpmRNB%=4PMVP;4h9XumzSbKY1MY!3IR zy=DqXibT<=lpWnpFZW1{D=Hv?s7{Xx>p~ch#`UO>1+ql+=EZFaZ+h6qepMU2JBc9f z9q$LqyKMC{Yd)z8Sa2(oM@)EDk^o{vY_e%{v7k0KCE&Y-tTGXMBq1Suw-D3kpe<=T zzEx@@At5}3{MeVO@{_wXUcN_XHb0{-P)GAoaBRloCcLGC2Es&mOnspm7S=7SjYL@z zh?@9ZC9JjF&=HEI-l8|3(IPb;I2P$W+rWYicOJf=NMkn0 z6g_l0f}%SwHWaIlMl@ik?V;y5dL(^K(*YFO=%wHTO_B2|I+i5K0ZAg*A_q1(^?Ycb zU)<@d4YnOL5GJ}Z;tRD}l$KW8mFXlZ69dtL4+Rn~qTt^3?zdl8%o8$~bOmkMTjuL`@d5Yjf!!bXrTuXSe*dW}8wmqNN zfDmGXKA!hk6%2aDg*Dx%ULuGKddB&0qTyFf&$x#M!jd&Tuv$DM3JZ9gn%+qVp?wzA z&DJ%Y&S#DF=oa)e5SH}2d;N1v^M2;!1fli!@l?~*hSmh`*ei>KjtopcZyOi=hL zWjajCZ|w{~5Rbz8Q8PhN#s-;5dqy(DE^w%GoO;|z2cc#5+^N2I+|fOgJp(q#{CTRK zjxy-FrlBzlj)ZyeY*#JM1&JSe6zMA~I_evEr|UL_GA~ByNf?-Uq7x5v%mqxR~kUfF?^uu`l75|nSGDb;)R z(H8x?1>vfn+Cf9Yo3Vt;cDtU^W5KKF^xRj~8aOsYxH9*48net}R1m*FH|J02Qh54L zbJeudRvkBEC0=kcVt-g1p6nWXvse-le9x#~FP4WXZTh+r)7gL1Z`_zEz+xQQ&KFM( zVvTYTM}P&6KUVpmy$>Ldv(dvWTEzfpMKhLYq#s= z@W6O0W{ftLmTdOS@@X`%-A=Q8$Xu^v<8vq7hi-G}D``F|#go0AkW5sMEUI#-5s}MR z^Q=6lC1JIf*5@{1-ACtNHq74~hb*fbj0LR(rj z>UUm#!)(dmQhfic3XS$Su8wV%5RU;JL}|Gm&bj#c}D z7#-HZ2n$Tlb0&TJCnNgn{!pDJGEm@oF5rn>A?NtqEq;CR+^#E&Qb#SjJq1AJ8;mikg{F6R;cwDRCMURn3?ZN$v{rIR8J6gb=wKF&1Qu1#0|n|g zK3+Smo<~sNdB*eXn}$y_|M?KN)hIv@N<{tpI3?ncz!K!)(5(0w=s|hVC_oSLaA=R4 z=q8>){h46+!zZ?D&~GYdldLxMa&gI;83~YKhf}( z(VUi>7z<1 zR76p9Fbj*Ms!a=6V%I*cO^cvlv)3HYKey_>HZ|8sJ4Y{{Jfh?ntM3sQ!W1T$ z-&*eI;X2xLxSxD+@8PdMvVWdVFSqS_b`TxUk^=$`&vZ-NUo-F!@;(>xRdaZ>Z6Byt z^^`cefOoz+ii1-nJHQ-$LQReXl75($G~cdiVzilVj6~kaDcLDkqA4PQs8`dXuD5%! z8Li+g01wq+9fJ(|H~crMKw-iyT{gLz?YJ!pUZ(eG9SR&cM7-%g3q{beVJeg9_L9|@ zg7-W;T!#ve4jHfe?_wF;6kipzwIyz0MEGO9zu9H`wi;J8N*qY1Cn?+bIGGf6L#Gy!&#mLqIfuS=|>M| z0vYtY{jw%EvY4~rUNrgxBF`f8xn4RyQdew|L*?pzxqVKb=A_UUUV$K z;QAH~qj__HV0<-7(9RyEUfL?S`=f(300r|)j`>slhL*~!-b}&z1_jH@30jE=PH$hN zurF(c^=6oT1t1u`eUU&pRDyMweG{Ny{zG-o=wwev6qrE^rk{D$^e{kvnJ(I-Yf7*5 zl_+>oD4wb>7?T0Wyr9zB9Rm1QwLy);L%~a_B+Yusvs%z10jFPpMhE|k_>Lq}anda# z>OaiR1&#|4T~YBDjtD}ZVLkfQocd3Uv%rTy!#O1=Xx~Qi&qRt(AJ3cJfezC!{!cWdluvnN{!JMsNgIhPPLj|#`)gX>z z+R$3f5kdG01iGJTqV+&q#)V54TyYJgq=n5fHw_Ew7w`e7qv%=C3<4ub$^zysBn4d} zVis(20ZNk4LL!GzX~s*jwWY~dW#c@?5xP2$1`>IUD6jSVeypCI!gK_11UmhJ$g&2KEj1vAl|#J~ip3;oD(+pK9Eo(M@pLw^!DOHXGC zTqDFXUQ5q_K_9g|le#a9@+*mz#LutB3~t)0R)|NAzCO(beSt%$b*8`HG9?uiH3G)v&RuZD1BDlxOj(l z4~X$lrOyVaAeKH$@!`((a>W;_D}B~sg7mGG9s62iP=Zfs8}|ILeAvWcv0y3?c&rV~ zfP$77>K5t7@fP&-OMl@d?})#>!e7 zpn_N$INO=3G%&*jdDyE^&ALgHYGNyT6)`aAWyEs5o^blHGGaMQkh(E~b*e|Rc0-eQ zteA(65dWnli%yEv_FBri(_~r%auhH{8W!X@m}b7rDa}CMT>U3YLq??O^dE4YaqdnXOSG zkrk>nB=DiZ1sYHFG3T^Rwu4b(HLD z{i@vN3dPi_zwivfE%=Y|v?jTr?MMCE;@VMgi)#d%DS0W5PpADnf-wgk1Iz8Nx5w4uv*`F!b3Oxx zl>ha+AN;`&)c?Vt??;k9nH^?VbWA&2*8e`5)Fc&@#T8v9S6#LH@k=)2RrC%*sO-02 z^ib3J?8hE)atmQDZmHL)v!z;at5D=B=}HpOz*awr0K%m7(DIjc1Ww&7RbeEN_s?D%r)+S}Og#f84HM^`hycxe?#|Buqh_8*ST(e28KT(#h$`Uo*y*JB=NihBt>?dCfrk=bp$UP6+pP}z>|Y@zcRPeU1~ zpe!DS=!|?xTf`c=9hbJ=#YP)%7?S3Kwz&TC^o=RdDRsyWbat1oNsU*3dq|-+<9*JO zrh|CSGL}?O)>p>xiE#4kTxAR{Xp8%T+}w1NpV+53UY{$)1YK?mn(Nog)Z&Hff=fA1 z32?3~>EXzoo1Bkp1g2zY5!wac#rEs%YNbvDFmD^LM)Z)vhVe)w^6iy>0$?Q>_H z#pob}$~dO*kD{6|UQ9_4K~+3@fUnxKs-x2UL?uV zoubfyu$X*Kg_aHq`@AojK|7cCvH7z^M0v9RvTIB}Ui*JP!PH?bminA^H70_pcdU<}uniE>%dAEO_9q0u>wQJIKSR<9=&Aa8;pzoKFEfZg~je6+oi_5Q? zX3_9%WZ#Zv&wgHLc5^S#?somELznUCkB-e|*V{*jtshl{XKy;dA>_5y_v_i@%YV81 z(H**BLfv{n=RVcxZ1qRh&XsHzQdnlnrwbL_FQ>TU8Tyh9EST|8O2H`iIY7MK?( znht*vkf3}i{+;epZdTlx3bw`qCqrsML3hB?m%+P{V=h1tc_7$4x|5 zu-6zE2{H=^x;Kzi)7fcUwP}5-O~A^s;GS%t#l$f*B)o}_m;@Th8VS5;3(ijiF0UcL zhKRTDRV3o!a=((a)#$=eyhKUj>*!u;*ybgvAA?ZS) zrM|!6D;a*pL;heaK5Kc`ZD>>v;6N4TDDHz)f(mk%)c&&&Ua;XE5Yl!I4|xjR zLjO3bTLg$8bdA5w-Civ{ZD?aK%i_?+KLQ2qZCHd-tZ3QG`afqa*n15aX;_8{(r1xc zk;?8yK?e?>M`Q{sMY5Bp;VVcq7D#SD3gyH!HLSP_ZfOL7%!@?>QRp7FO-n?o3isfk zDO%NfjP8{j6ttmP6P?5gv*vn;cYhc5;gC&Mm_vJr8EE9ybw+$T6&@gg*TkVc#2hw6 zxUQK`XdMDNm??&K&GP6FlCTDMk+4%#Zw-zO5kC0e{p7QBTQj&%zz{*`{ayVWg~Y-B z?$AKw+femWqG}CpLjydJy@uF!mwpVZ*X3%)584zQD*_gelPO@(zm88rdfoC8J+D>; zQxyQq@_S?mNakNBqnDCceHtVG4jA;lDg{)3_7MLJSlrlNuSq$xQLGGIrtByv| zEVvDBQUW}X`Ig!KIH!wF_(q?>Ei*&xAl!9A_yY~N)6s?9SE2pjm#Pk<7;!7 z8_Qd(Qw1K?X%rrE_c9_Ef*}2vc!I8Al?Fh`5a>}s9K|4&B$~FUjX@3+v{5)vDb|TQ zVrt`Vhzs&pV5893`$H?wRu|le0Hmz7Ei9-bFIEwd_c3a{*dT&1axB%t#H6*3mx+faoEvZ#fjAIai;L{i(r028EsX5R*UGZ0}hfAGvchs;tYhP$&^D{N=i^K&vt12qdnB7g_fs6$_`(tW_s3zbE zSWvUZOr=phU4E}@O=IQ}I|#?@=^DbYryJ#P+)k$=U$wJV{&QS;s81y&R`ud=U%jOXc#GCKLT2sM3 zKmM>y3?c=8TGp7-wc7OHEM3{Lr^^QURCK|WV;|GBa zg*j2I7``buP~k-MXz~n@^G05dvK~`X(%UOlqQN2JrIZNeC5*mg#-pEJ!-DuHIpXOf zx`2KAXg_V6E2vEd6#EfyM!Tkb`)la9|Gj{NN3rgY|4dr!aVB zDR?_v0|+Yt3i$}^q~1#z!%i9}fge@4f#twz*z?{>+TT@+#xhaR6G+*~gCQq3In#=6 zIbuWwy@4E&#sbfCAM_uJ4GO${Ln&y{zJ3k*I5n3*ErB0l)xjkNY7kpUVRjx|PFLa%neBH97#}VS05ElMRiUC^Q>(FxCO!xF^&W?9P|5rhs z3fcSgcot~7vEDD~wBqE>M;}jSJ37D48>EsLWdICy1eW5VQ_%9Q&EY&23_LF(KeTzY z-LB}I`DQ_H5s8;3OIGa@*@`g1`hsAk2d*}}Bnw6_7K0hmG8#Ov-4bk66LxajP|2)V zK8HXA8ri3rB`Wez`AmuOL-YM*>T z55~0XS>!|o7yT!S)CouvKo9)bCI3Cu&3~e~3l=Ab`EiU1R`~HJ%NbqlFu7PB$P*aj zFhAyaU~{Ex*yz5G`2(7tWPAflSs;SZ`LX@oR4+z2(2qGF_-?|h%+FEJtfZYwRGI({ zOwM1-Z@c6E`r>#vj1u>3=>?b>)^@g7Zm-(yk^9U*FEu#{Fu^LUdZ4jAE5a(PYBVst z?8>jD+w|zVVsrFaEnkl0Z1idFF$y`Xz+n~9n}o*!F!YMuL5$sX01 zKZOcr*#2u(c|O*4_H$K*q77TaY@dV$_idZ&ugw#gchn&P)jF^;FPNXSFk#mvf&{0_ zui>O-@UvyJTHM(lg{cSTHw6oBL`f@-xWCxYJ>=pF)M4=|#ssUdvTFF_ecn}8_K@Hd zIlX^|oCcU+6*;98lv8@KX*_@Oke!^eJ6vU5!>J&_iQZz|L!3}i+-vC~uvXlxH>|hV zLjXNLwH2^Cd0fRx#+Pw4D`A1MxAV&GHSJ!myp&9|7YPD5baa#$74LaVEF^#)jJs8r zJ~5gaHXaVZ!1KJdzy9gd$IbjGW^@YHx)RZy!GVkA>9d9|@MHD9B2NYkJm{5a5mevq zY*)wiMh(*#->_a;0u;RHcj_cG(X+hdizCDOogo^S-dP`4hoyb+kOI%-@3u?*j;Ov~ zeDW>*jb*iD^-ds~wp#pSf(DX))Gg^S+dr7n+9sba{Eve9De)}ZjFUd~Khqf|2CSz->(03mPXge=us zG(CCDoVeh*LW!4j7HDxKkP~?cQbzS@tm0t=y)qsw#dQAIGBg2Xyef?evF(uumy(Oj zPVo_i4-r{cjbC&a+f@w%guI=z2A$knQ|uM3W=Y5C6q|S!2>P)UWJ3RZMt5DUrpjZd zhikpy7{-<9NC7uX26>V9*e{}a;jz3Y#P1Q&taqaGJ+26Y4-v1V3+j@d4rbx4WdC%D z%NRpwcu06TE#XR>6))LKUaml)LqHVhjYvu|-E1GtmV6FntUw=;Ku%PdP0C!Q8LKkK zED)3_pxu!hX50c&=n#-8AWCxn0t!eVClfusi#8RETX79OL_}@R*Q`?)hSjm!9?sAs z1l_vx2>}CyMD^zWa=lwM#;@b;P-E4bn59Ti9Olm`%)?s;fsfd@^BvR+W|z zGJjeob4TxYu`b5!tRgkti4xmp{_rVE)O3*ei!v*!ZxXlMT%FaH0V(AE*{O2r$ku^7 z>FOzIHp~!S=&jMqLFe^W_I^;IE2wXtx+?^vB^LdXrp)!5o3r`65!=PiU{Og2i9hM^ zR`*RD?EiCo4;5?>7=`-vY%`;kzCAruv2X60zo_kDs*z$LYOGM-NeG!ANINFKQUj?y zT_GeEDlbQ}W*;ZS{=7)6IXEDsF3u^{F`g!Le|A#rRPDogPygxJtd@;6}O)HWX3#eaT~hRB#E=HVAxA_MmoKIt2F7o?6MT zn>{UVsyl>OW%<|BJ4?y#UXlp1e%LEZt>p7w(7&Hcn4yBSXm}T8WPhZYrv08)oSEUq z8s2sBLFD_r_KOyo3myQMpk?K%nIJ4$g3-CTr<{%s<%x?v##(}r91xSXk{2_bsd~T) zaa1csOc2&#rFe>Pd@C6ahXpaw(OSJ1FUxGKwR+9~A@AnBhlC_**uRYKLY@brqIG+(T}>TI z3yrl*90Hi_ zo|^522FQP5(;V9Q#Qbk^A>pHb`(C0$j$|kW zD2QL!Yz{kh(Z*L_eRFRzYl&67%3E-t7Z@g=DL~NOKvGS2u@z&Bzb&w+g^#&3TAFAf z_eoa~X*3YM#B#J~%xx+1Vvmw?%VsPD1?|f@TJA3e$ASSA8#LhEyB(XaA-yg^8nw=6 zyV(WZ)pA&hixCU%K?7FIErF5m+xP_ZkD3*o$mUZc1qWpTlVk=aNN*ywA&o8)CRYV#sO+?2R`DA4kkwyd2t1z(+wR_rM zv}i7lS1Y<{icj+uyiEkCxU>W=$a!tsuSN}31`bp&LY&DbjfM}075DvuD~14)$RQ9x z$eo{t-y@cwMoSYtzFv&z{2C2JytE!i)vPKu8aPnByg9Bf)E>P%botAwd93#5eS5r; zy~>i_mIX2;mPG~eGuw-AX&)eMWSU*b2ZuZI*EW|lJx3?9gT(q%?(darczF=H>S$O>xC~%|NEM9`BS&mC&@IdsEE2TMgy7yBW3aaNVMbhfkA!K zQ=339NIUw!1*8rVbk7HL$v5RY2C^l54ikhvdQgiX@>Uf+3>;{@8R_3=hiG?el^H!G z=zOz6zcq(OWUQ)Lafl#ec}w_ZZQd*-=zV5;&!jRq1QC8)6!*{O;W z1`aen_R+tO9oIc1=x)2pYkynP)v?lu9rFPF)mY$ynB{Zq7*Cuc#=jWmlP0ZZ?Ufws zbyPT7ylLq+=nrhIvHh0g*l5!3utE9t*$esCA{38WXI(niH#11`Nt8@wtBtGn4&-T~CdR1ZH;>AQu^)?gAycAJ1x~wE(!^;<($1j8U z9QFb_7R>sqbqI>Q`8vH^?XQ=Y(l4s|Z5}c~M_07dCJIq(b#x9Ablw-2aqq3J)IJXa1XWfmnVYIZtU)C@#KWomnYUg4cue5eI#sG=N<+R z`3XW)JAR0Akf00lMV>fnz6@T1D4rdyGoZl(k?&$G5ACrTc_a~Ff-o@Q(xSn3eA*thz_5P5=VL|IdQ?mW9 z3QZ0XWI=h!7+60s;n17R1cDn||xIr712z1;8V?qA^`RUH}+2|DkKaet=D7kPIk zpow}jbu_Fq|*v{BE(FdKD8uK_3R0SOmiG2Acg3h)a z=d!96Toj+2gmGZt@xx#HQ#AR~(Rb*a3kmVS7L-dn^kMxjXm{S$Q(3oH!VkpGH5o)FZOs#Ii&05SitI#!QLQ`tFqQ&s3rT zI&}Qd<%ZeHr<}%*zZP8Q;7~hk6mdY)o9^pK({WE1zA~>WcwWxI^@uUxQ1Q0=EK;FH zQ?iH(-U4xeJvsmnB^h6#rS3EON`MX>8H?;%H3=P;%t#gq;i2SRXG&H!CMnDpwlD?H zE;-1K(%}R>YV5YTj`fVYZ=82Av1GoY93zJS-Qy$Ken=OvCV@B~z1C z+Sp%4s>vQ4DsF7|lTViIr<(&^?77^~kq#C?{<8mM9s!uFM?m1X$vF1Y#gd=h`Ky5> z1_>{AS&9Bvh>?wS<*OQ zQ2DtxJ6wOce9+K=pi8={kQUGQ!0WX9q|m^o^0TK`y~qa=S4*6hAC3ct_qO}}>`0GG zFPeuF`twx(h3fai<-D0(9516+cM2Y83Nfv>7mz^G`{C!2r1|xXZeT zAc2j#{b;k@T&(0}sH6LlV}Yn2b{5>0DqMVjPr(DOA!>iwc^b&-wv|eM**3g^7~NKm z1)|;#a}_x`t?u#gUU0Wp2-t5X&0xhGfBb*C|&xMxB<>CFdo#zdQGx<;A{+6vTN*EI&(LK{vp`f7lUVXI^^sB>5cF0UIaEwyiK+X-oTy}I z-`8V{2q5K0eNyPnmifNr_rVribr`}XW200A9tit!h!EL`MA4-Wu`?Ci(;VXVD+`Gr zt-JUr&Y!pV6al1k7aygBS;LvD(TgwOfv}&2W{!%F9w%#?ZL$PQX3J0VcEJUKH}v91 zJGuW2T_3XE$ytw*-9=`_MEg(-2A=2qPs@Gtc*o~({-%E>!hSDkEEZUT+|Yhdx)6xB zjDvFnFz^JqIc%dF+z02zVu2;d&0%{u(j70XMh(slz`%1;&Dqe*lAg$!%&%!z3?u4T zZo_;O5Nz>8aG)Z?g}*)GL`69=-zSI&3^dO(8alAN7lZAN-8}tSvUni7Ey#8>KXs%< zL}tT|4FM&D4ilv08-XFOR@)0kS1{!UfY_264Mf~I;w7sp=MdKnLef3T+vHkapjeeB zjfOnE#)y{tsh;_;y+vlnj$=>##U_D4|Ei>?*){Z48GFYu;v)7C7v#KZkVHA3UR5`vhIlWw7@>f_p_6!tdQ3H0+iI`bWM}VMvQRZ$PT{YdYL98fy1`&j}B;lSW>_k7S zW5-7kqlE+|4{lVvSYil!QdPk%zyzsq8|o!VC#@?-3kW)1C020*SXCt~9>{p!)Y{MV zFk+PeAn17bUPWs_RpHyfrK#2rWSLb_88}e!)^EFO__L%{Ermt{5jP(_e=3^wsyrDu zQ1P0kCN~qWD_7OD028D%{M><3h^6(YKnNSfQj63Cpm17^J`Y!s+`2Yfr?k{ z#Cr`@Romi$>?PLw(o@ih2;Ff|yKT2Cy4r~`4;~MufI}xxeUBuYn=LAf@_=K$7Or=i8J=)nLmYb4#9^7n~g9PWR$pmyQ>}=1QmlAjH1 z14{ZIH%3f5xul!Irus%L=3&E1ItdHz7j6E1BD#;2o4sT(80T65g72+}FDRFYx}@LI zMJ=(Rf^xlU_LFZKdIN#3Z&WYIHXEMnl0kq5G2t(X2f7yo9c?Yy@H$*npOoYjn}Guv z)m@gi`F6*jJuVq3W^<;|Kqd2~A2?wiTa_;Z2QrzjK@)h{e6b0Rmtj7GJf<*qV z1Xf5T>-U+=7%=d#+(ZvMRd^hG)`_vS^spw&Oa+U^O6G-bvly+8YOFL1b$dt4i^2lS zD`EMozIEmutde1R#t{T6m|0mxGo}?~#pX)|i`b%B#X?xf%d?>s55ge|&Y9WIqoA#z zz`=5ITrT)%ts*BHE6pPJywtELtTfBv^3TWe?W4j1%d0zm26b|eYVYC6J$3Y!Muz6< zd`4K(bvIC^ggRis{brJTxmRmh>ij?BFB!V@@dwb*@K#pC{7Az%v8+_moi7mqY^ZoG zsbZHXhLRyG~ z>;eY;ZAou$gJ9V%nRxGF1|~>fiAZU7B9Y?~b9eH3SWw@R)aGIdmfezRpe|Yq3CdR` zrFPFmc1v8li#Nmt`SX%o&OernlDkM19>^kRQn$s(ImudQ0wzeK5>*Kfe8H-=L@gvJ zpWEr$Ik~UusJb+Uxlc)Vm|0YUf#x=&Q8Rc6r#ac2AzOe6(l;0>4QveO)cO(2X-Sim z&1nn`39m2-#;cVZHR4h4lfy%pbq?E0EzZY{MNP1vekqY_Etr|SWSu!{@>GD}#ub{_l0Cc+^V}a(m@Tbe8SPUu{Vq{n}6iA*8NvIMt_bgbf$#5tnP}~v})6G`B zp2?UBX7BP$00bd3oLVbpRKpFYp+Le6w>$Fe3^$xY0tGW1{eXOi(_F(17XX5gIrewa zB^kpV+hBp_#n2%Rv;BkVLe9Sz^kXvq;PF6r+oZg|R1YlwL#EOe>I8o0E;(li~16YtJ@+zxCZC=Alk;rS{$zj!~&1(RQye3>Jt|qmv z#4F1SZ8N#6_OQ^!JY@aEJ)Q;Ck}z~*lf**i{@DF0*H#L4HAD;w1IW*MK0lX%Jw0`%{mv<<=Que}e*aW&eA0U2fBE^g_HGf)+Hkf&C>CSe_RwRMGfS zLP5VFL!+UFu1>IFg|9f1K6uPu--ta}3g8sKb(Zm@*5WXmXj|Z0pU8xQ}gO{gM zt0m03m2?^pbT37@Q$N!VZN^wIx!09JK!WsnNlKG{jIW@Abnq!OP`$9H{SNcPgzl@^ zZC9(r-G(LBG#JKPQg~o{QLrVhekt+IJe>v1@zMPP%S%4-QO9Qi!S}q#pE4;cxPo|N zAyUTFaNxQvxZ37Q?Rex>p~Nxs)^w2Id|7ZFH!evyh$)yM?8s#R3f`MGd6V(clKK#5 zGeiRuO3?h4@Xui-$lx+u?RI_1M;TRI1}@E&s0TG%q88j>r4`kIg2jo1cNhz@8h~hG zeoA`cu-YvEVMEk7^K;;)q3;i?aS&ZaM-`#KA>wtfomnDLiwgDvd9W@+h!*Tk z{}q#vbo_#+Sv*{q2#4Nh2?NIh^Jtc^*pTqHm(DB^RG~236g)iO0lRDw;6ut={>x9y zXyra?X`<;U7-D-op(FzjAwgCBRK>3@88x*e2@Vl~i~hat8+56tanUq7WZc|eH+1pC zwef4yoRPt5<)`7L@Uk&esBy$B`U zJdIPWRhmJLj7{OS*b#z5oz}w;ADa zf1P41Y0)!`0U{`Q9#w+arWJYgfJs8Ne|A*D05C~tO7MESeZbm<;W-QdLHH;8m3oVU z&K1&s_zYM_Jx&ok`(7rFCqf2_}f8wTXEqlEK?xQJ(0E8i@7e#Lf873m_eMm1k#Qp;6E`2!%sJC85t-lj#f=*`ZbZgo z&d(aFWkQVxqMx!dsh?==SVFOWnanPd1s&k-9U~!0QgREKgAXxxm>6~879DEECvPQT zE|=aSf{>e8m6~}^Ei-F05OLR;FQ0o$lq3@oxy3SYpyFi;c45^j6WfP%pViiyKL1C9 zj9^m{fWjuoP*FneChC#P@r+Lu*K!k!2*QUDsN;;c)yd7^1uMV-6)P*-m<4jLwCZ#F z#@pdkue3k};VnqirKLW^pY@j{Q@PHX;(_e8Ik>Ww{?B+anO^Y_E@9K>X_^HuQ9Q7H z$bUVf&bV}g&*jo+V7kSbs!cuSQW-dK-SN08_JjFsDIoYhitZVS?53lykaJ*;{>3%TrQ3uzkSGc)sQHHuFDEcuzHbpww!EuE+EORa=ppG zfy-;HYAb(*iH2OV6c227d26{GzpQk^Wr`AsvKA4HUjInfhrD7QBS{`}OQ+GmEEe{jM(g z<|P%ZmCkn@WxNa)++H4{9=crf$S#>tDYUNw1mAPx76AypNC{Qe!t7bAjVMBm2*yYW8}(B~==!PG zCexpj@x^$~TSu)n$zf4eug6jkd4Zr-ewpHd&C4&D3H_DSaVaZywVw7PTUn4hEd9`RTTT8_5`|lZox*5$mG+q)8vM z%#G+ud7$g(tYqpdw`VW%AaCp}xCfYlip*tbpz2cwV7|TUuOX4~wPZqDX9sCr#pR@5 zTfFgh=uP%H26?OqAf3YX(_pB$ot=e#TyRYRvdsqQ50G zI|*(lWtfGM7z;Gz)?WH_%uvm=xwQ5?9;q%wY_}J<30>fUu3s{HJ9UU}kTHV^?!08M zh1KX2L0K53QVXxuN796jDVox}G;^6MUbZ5c zJV=3zU2;)D{85BBbYICBWd|?+N)#(E?XSD^_E$Dg-V_z({b{Vc=8&}U^XIf~(+_cy zjBHoYeSCqK39Uw?yE~SAc+s4g3?E{?$hXXeIt0ttB3YIxGmM3Yl&E*m0fI~3D>mUB z1{K7=irBy$z?P`P$khsv>0<3$Lek&tutb~$vL3`_eLtP}H_J$-Y<3ArVL|Y&^9y)~lGEyDtQ5tbj7e?zV%~*{`%O`@wYDc9+IUwriIimC>EQvaDFQ_C* zt|yS>F+k95D@X_V$dY!+r-LZJ3kbTq9^Et&pe0}Q3J3uS%B){7g3{lEz+Aas2w_2; zMML&XBp_FghB08!-}8)pF{LAl{4Yb2$>suUTTGB1*BT!;N>&`jENj6)^Wl0uZyirBm#gc&ZlBH%@h+PYoO+`W%wQ*k z0?jQ>qc1CD-GyXxWt_)gf#_a@D48xV7@6cFR{@#E1L0?ia5y}oaihA>u{D|MgD+_g zDRTU!q*HW>i*O;}p(jAir%uL+(!qU3;-NX@3=_l;V#Kp6T0q8mB{8>%H-!Z4ryi|N zRJ7G80C@|kC2=>0+J^=GPh#}v(~I$TPIeEBekADhixhBVi1;Kb;ze>bUX3rg^(AAp zLID;P;&~O%q7#>WVJ?bTff>=RuA3;Gu&2^N2MTxsD*o#tO{9fgwTndQNBYdNsaE&Srd#SJ_@K zh6h65@id{C7G^zdjo9x(g7$W5>Y-VnWn7&RN)jW_yc`Tv_dO~)g-ng?{HZ6&TBIC4 z2N9$&Ybxn{sRxp@3gRXI>{G$4F-XuNmZi_=-kwIVi|L%4h;}G?3$iQ3vI1m?@C;5O z)Bs|g+$hGBNX}k}8#|5-AxIP;TP;(f8$BakWrai`4hm{7W^ETL zu(3i{k69@gsQ#9lJMD@m^O?H5l`ekYkuWmP>CI7R@y472*F30l&`d4dm&c~XP{yqaTj*z2)6 zIg{sJl6k(2v_J%7fSOO@YG#X9iEj-_q!9@L_zn%~+Tgj@+#1sWaA?T!h^w3O2n7u8 z&*F9Pr|o#Lq4m?;9VA~4MYWK@Lr0D;#GJCRdH^^yd>psMpVt$bm0^)r(%py*kzzx^ zyX%cQE%u6b(#`3!1ml#Vj4+|V`o4>E87t1-{Zy-1jdmUj&k%0e}#;2ac z`>OKKg3cmDH#orlk;Yzb7d*EU9EThcu3>Yu`J~{O>(KBT1-RPokqiDR**(PpwziA; zTjC#`R>>|77C5v=l3BcM%auIRzySHj%Hp&2c)r;3tzLrT(L}CA9b=jE>10OP6T_E$b_jyZYz-(dq_#hwJ)iMNQ&GPG0{Z(#|LmNC z+w5ZI#Yss@8!3W=2A;GO^W|%gqGBlw5YW?FAn&A|-;*Y40Z?Fg&)7-dR~GCnmkfR) zX3D_8l3Ix_rtnVRs%Rwxis%N&L*HIqHB-X|2waoZ4msmv@JjtuiUVxjlGHA0S`Xo^^Q{!mGAPDC zA9=`o{E5g)3>g#{bWB^(_uyA_+XHPd=cjm7ifIfj!n599G{}>pfk#ILx_4sUNK^n2 z(6yhgf^@2qpBfk-Yd@vytNnzelAoqHz&5IzX}2p417w}4tun82*Ogbw)Eq2u7|T?; z3MNdaR{ScM6uX(|urg5wy0z6q*_C{StJYT6f11x0-cY}i)g3ITHyrA4sBrXCjU&SX zhp|v#{Aw1`FhJHLxAp7s)r7VrvJ|J%$ju@FUn>uDgG$PIW}y2N-Jj5EbS}M8#Lu9Z z_Av9Pq@Cv-+A4phO^`gduY_!1pqb`BDW*Md9jbX(bu(Ct?&z7kOty>dT7BtQJ?Eom z$x2Xzn9hCfM2C`3LnX@vO*(E88W4E%GLr9Rg(?^_6x<6Gq{C-7_)0z)7Ez~=;G|hT z&qC>tIxMtk{#%2^P0xVA{~+L3-z-CN$;bYpVrQtu%&*4tEpMDnFdI}b-wn!4{j3+w zBp*kM%4-n8_))<4D&ks_Wo1R2zyvGJWNUXA(PdRC=C#)23tCIJJ)=)88-K%vWXD5D zo(l~P@UQH_IDNHRj-i5?z9Fo(bcxi^{ExaikfIumY5D4U$yZ8)fL4_Q3f>PnZ$K!@ z{I&83p+*CfidT*p^;>vIk1Sp(m>fEOLeFi^88N72aZIj3Q#_Q=t3&f^qCTCm)T34% zx}f0wduk-JP0gJvFviT@M~I<740f|h79(wo`XB*o2X|E3eH>W?P9!bwNGgm z^Y}cn-9-{aHAL#qAsVReb1KSHs3BbiM@dTh<~%|dvzS(Wt7P8X0IkLZExD3w3Q~4K z>zwKCNH1uJYE&Ub?8`twOkU&>UyfJ2Czf;^1t!*bp!+CFS7kl@4n_qD($KgIT1c-J z|M4+YP2*;uAP!5r(ACOmC7D1$X#ok+dx425=k?djOVa29&J+=pp@G$ch1aul?;~X4;yAp4M)Y%}%x zaLJdfymDzU5M?IRtJfkONySpRa3IUP)BH+>R$WOD(<^#s2nynd)|~d4cvP1RvLbek zpcYVP;mMsgsY{)qf;#KCtv-Y(m$+gN8eoDp3kCL(NZhL!Ykf$NMrt?=>vf9~D7x{3HsX8dHcPmHWb!inE5rr&L(6@bo{XaDFIH3U^M_>i5p&vs{T>D}$7Lx?IIKPhy-pmiZC&D!_)%`FE4F#XB zp*Z#!x4&eb0cgA_#<8Ixiv{U(vvor8h$cF`yQ-?kf(S6!zgR2;YA(07?bVIuYXi%`;kFZ7xF4>B`i#LS@bFAiPmsiWx<_2os z0)sth^;9!D`Z06YZuJ%wyjkqeJWd6hu+dkK{V`T2QioG$KJ}w7gg7exf~h_e&V&aky=uzyPV03+5CLvT|pw*>rvG1BJfb+dqVc; zj9a3vCoo{J|18%I*%Dgb14(v4$xPugKu?wvnbwnuR;zLrd@pwOoG1qzDt!OUR0Ii0 zUH|l;p&-l3e5q7nlpXOpsh*YPp+iT$C4#w)<}AUct>Z0KT|0S$EtSE;7Ji;)s*d6d zEf@1U%er}*j|~lRYmf%I7-4ovyQFx`XeMqkcqoa-tvTKI>z(%6Ox#L=!G4PtzNv%Z zTch#nQ2p=toR?hiMF9{xL&QH^JdoXs{HVxTPbrve0!$vE#sujdJPk$RdA5QXc7Q}F z`C+y}Dd`}l6`hyeXeoh-Qa*q{lrnw5KLkyX_yQ?fR0kH+5AlLW9n`E~?gdaq+^lx* z;|-A0#LwmQ^32=0AV_=x6s68kQR=|p_7UEt)HS#R3+j&`)hV;ixtWIvhE~AIE3yFv zZLGwEFk4*kY@&e@0~XY`p>&i+DRmniE3M${Mqorss{wQA7UcGg(rLh4I<*$1Q92C> zIyXLbsq$KCEzsGP9~4j{3NuWQxXY*CD_+J7=oklqVOX}kT@OFAW4kfn*Url|R}Dm(M07aE{VQ9=7K zC@rN)$y%So##~7-?Uq5sOY9(n{(kn($kebtpxw{$C0*GLb6Z?c-wvq#>mel(X$Px& zLFC6Fp}IJcK4|&H70g>?SaDllI?yQbo$RHNF?Nt1Ns^TvMP?aNSifp%5gl2^m&rCz zzZMsz4Lw^wG95qnMl=n0wu21%2Z6EmL-X;U`P~kJxrhuYUe_5g$Un(mNo!g^vp!4C z#~Xg0gkV}I11sPMHYDVff4#iqlN3#rUju_Yr|#)oni+Szrt01xgZ}f(Vy^jV``C37 z`k!D%EW<0P0S6vJKFeMVgan=_n6k~_cInXQ`7+dztLM|R?ejTZ$;PXs0T~`TWc)gl zpISpbsHQ3DXyL{5`EoPUhaAW6R2c8xOOfHn&9jRRLc_dAuhn7waRYge0R<^JEgf^W zrmddzp;g_9I-88>FM};D8D6zkTRx5!H5|fA4Y30m8h*w!bQZ5>tL5U7j$wH+UOn25 zSLZDTcSGh(4plQJGE>Vz8b+Q0F4@2C8oyULl3W?<1yXKK=ne~WG63@aGzrJ z`iUV!1EnxdO|mDw1zMs^HCit|D!BiRai3jprs^=T2B;GAa=3)VqHt#&xV&>o&*=CqE zEST?YUZ{jnZMEMUuU2%#Rcm}kVV~8CqzPLXQ)K&3j#@xVXK#BEy$M=_3fjA2X{&4+ z%TRI(%QlTY%pRvJM9%fWKCSWOPurPyR;46TTf2J9Au`JRAV$BS4CkW!@MAZ73Jmg3 z^T~supJ2sAhL&4=BS3>gM6?1{)A`gtDx{eT05a%5%2a2y6u6zFZSOWebG(o9h}8wi ztbt3W8D!)d8YRDz3Fy3{+>Ivfren@5nP$jib}>Qev~cq?tq<_yiX>q!=1f6Bddn}T z&nTG;EoM}Rpu6qU1bz<>wN=LoYt&WtTH{2P9$c6OK z=$5=rSCG*I8T3w9Fw*T$t?KO2(q0yg>vRPkEQs%CAtQZawmulsA%J`=FPVMKiyJ;} z5jAzsGw;@(MyOLM9~tE16y0 zQMDN`$U}doXKuou0SjU$Qlr%L6`GG)>O^V=8Y7+2;RJO4`(onFS=J(TK{HbN>ul2+ z=^yDH+$9}7`kV(0NqS*WOxherj5F$EclaJDxmECGDn(#c$;F0>PoUy_ao##u zoIf5f&gb!VEty?TD?@=X9dYzsBIwN7+4==@%?3rJ=n!G+!_!KiLoR8mz)KT`f>}DD zF){*3`AJTt(341~+(b>V<--Lmsu+g>V*VcQsur92*dhIA>Zzs!NR*?I>#(}|!)_bJ zd{)E*bzc^%qorQ7m2kPG-9rg|TwCy%`oEeK7*dtdXm0j;BN`bMH2%8Sj;c-y3@JET zOQ1nHyBAVUj z;a1Rh%hhOfDB0oDG<3RgpLRH)YKKp&H!^2)1689w&1s-57Nd@qw@fbBYY^Sechs{L@`iWmdT0y&u~8l0KMiy>FJ1FGm7% z1GYJz3DT6rIV1zBzcE6+F?2b9EWNj)|5H#;_4OO^sUVy#;}^m@En z`0J6HZBH%>)Y$xbP3O&#m`Z*(I>Z?&2m9Okae_zNuXFl zTTB2wzl5I6?E4n||9vyVqW&|X-SlU(4ShRQTiM*qQ84A=!ZOd@#RFlVxd@)HAQvey zovZkF31T_P&x(ZTBdNla72 zcFIT~$$l1y*omH|t1`XsJ0&8s#7dR}f{H3GT@+96Fe5cwaSjVa6@>u3s?WT`6T*f= z0ONr$+oNvidkzJrv!%)pC)*Vr%*2f(S<#jz#|n$L{}?zV*Z~QX;MbAlldp(g0T)x# zIGedgW7G;bN==KBDKB5rVkGZymAcdn7}Qw{p=z;DOc&~8u7pk^p&d7L|1UE^nHCbO z{CpOOvI&*)0{b|v?eiT$kTuxeq)U}+3(=Sdq}V8bT!5L_V?NNB zfE4?`-ul5`{6PIbC}APd*2HFf#$+@W92799Y|ar z#VsWEyX2;b-5!}W|KaAE&N?&Gm;TtJZu9rCQF1$aR<<$^(V7;uPcShnZJ6x^Lsqv6 zgM2JX04dqXFpv@+Bvoc)80(R_5`LzXorMZ*5=)r{pUFxX1q`qX3(H3Je0;s!@Pja73X1QY0C>lJ#fYQ%3g(NF72QS2d4`Je+Ig+4-Zw9(EyP-aWT*LVb_Nd_ ztV1#?&2wQZsM{fh=nxT!3q}M*uMJJ|@t(PvxZn{$N+d>_C+Q+v<`K=r$P60-Sb8#| z)52fPrmtIP{(N5D^n@dWoR!`_GFi^Imwf4Y-O~Hm#RAOA#750;1*F)!1Z>6=zPhh5 z3!G0icCmoz_jKGJZw8GCNUMGzp$Ov}bnrd$$8 zVskv<(`jDG>ZtA&YFIKi;|1rPBQPzs5Ruja*EAx%9SnHAb$Hi^+piWg8=B z$IHg+oi3B`KLIq>r>5A&rN3Hv2b4BedW{V7cn_j>wggE{V?BsPhX^*Zw9RAfU4~P4 zWXXU*%|=?z6LUHo(htXVM_Lhh$goRL)qpR2PJJk6y;X^I6$&w!{>Y(#oOu6f7kSd| zjUX~K)_(>p5Vgxj{w&!I*vOqQ+hwE8@;M!Z#%k>bY?QLVMtLo%**O}=d$Lb@@mzu| zcEhOh{h0n`gkF{#acxGNmOR^mU(>LtZLjF)R34)xCpKs-)29}}g8Zj( za(z-Gb){MgtA9yI+NFV`L&_~9Wu)JZQ46lxH4skmIU1lPhDM+V{jxFk+1D{8c?jQQXY@kx#dS~NmuQ?imvVwFfkiVX>$=SiU3IFjIg6G>_= zQ(@sD#I#;*vk@RV-%qCcgxOZaB9d7W0Hv9^{bxP{I#PMXS2$WV7X^8lfi}zTrUf zombUk3YRsv0(=O$9~E-Gz2qMnB~t(*2^tyXUqs1i{jJ*FtAFF!p(ITeso)fl6Su{j z_Vh6iY0MTH8RT(~P)Q1XV)3^uHRcfxK7^QrC3T&VjSrDFto9}MS!oo* z83zR6Lqm8>hs4tNWLlQ={k0~Z_?z=2ANqaPI4Yw%lDW=QQ>> zZ?CTxli4ym;`-eDX`jy5TzFSp{@=TMMT@T;-~LO=2AzMm`%R^LINhA`E=sUT&_W9( zW<*fevJkoDQZJ3@gwliMYrZ%^aCnAAFCox!LF3OXN}fjlG&w=uXfb8V6a)19#J=mg z+WwqQ@s7EgAfdK^Tud%JlzePougx7lTQ1Xc_gJ+e{AcE;L3sz_l1HDth;dt(?KWj{Zfrf(5 ztZdH)kMvP^d<&-_FST%mRsc9uWRW$lBCL?=k+p~cdLGzfcu#kE&m+huEK;FC2zNJk z>0Cz0y|&!BaiY8Ks!3%!P?H6%#^Qv74?BEn)%$g@?$MBi=@86VS+wGMFxb$L8zH*% z93L|^);Ckh$-zp$;!Yoo{XEoOE!TbTTdd52)Tv_&m!s~*QrP1IuZ zlCQ=zc^uI6xh;`rCwe|~7{Rw9i&tnNiw+&R@r<7Iy0*sRnSq9aSf;Mqx_T_$$uyCv zM<}4EsBQ++=d_%#a=n%2Z9*}PMG}h+9l1TvXtm|JSz|qqMh1Uw zraIcvIX$5z8p~82d}zt_)2DQ15l@X8^HT#21-aJHkA=;pF>5&Z&=T>`iJE0V&&LhY zfQNeM&~eYkVKBG!O{OfI3nt+$Oiov8K*1V`py$(zF{MLFg;}J+6f_V)LjtIYtY&%<2~*KPv<>i~B{EaBemT2R4!|@tFjHl5!F}JliuJek z_AHsemJQF%#12d)^94dGlP{$V2%@}lp>qISw zWHn!}4fx35=QFnHQ}i_&o}jK7;&Hv+jBOqR^!(DgkW!F7JtwoMf36Q{vC#4IeCsXV z7i`9}u%TxbkU$k5Kg3>8c4F04Z~Tx;0Y!YqChu`xbM*8?>JDDTEG0OK z+ycvL&(c5{Z)GNXQ%9P0g5z21wK5+W{JgfDr@p_U%}mqtLrP)%!(8gsRz3$b@p+2u z`Iwe^^AsUAG(5BwtEwz}Zb)4p^AW+ya|;#vhzAVzJPQmXonKQH0QPPTlZihc-<$@6 z4Gq7trsK76N}Dl_e-5{y8o`b!i(6DBAq#Zz@pxK^^z~|`dne`}^~U1?G!*bLu>aV= zTRC5E3>-s;j*qM*of=wiyd$>+OR_9ZZjESE@J8dNdP2!y70^iBw8-G+IhwVQ;rGp7 zFGq`jLj@mwrw_g!uhUj>vE@fn)*F3C;h}`b%i)&R?zNJH{_iSDSasBkmmV*&p!|Fu>7ZtpG z-o-rOPfFCAcgZlp>CVA@Z|2>$iv^93lFRYSbfXya`Z{xPxdc$-dLVn)H$xo{41mF& z_0gB=Zg9Oc^;q8$u0M$-R@?qspbF zL=cv(l`RxTTXDPvF=dwXmQ`oiATe8Zyjx=OdbZ)GSxrkUJFcYDP(rNKo`KFAwWnr- z#B2~6wuz8|o8}s?A}z=#fuL-dbg62`eO8I_T)E85n8u5AN)ZZ($>!>E#DvjaaGwEh zwjxD5&U+0%EP#GIjPOk~{6aFh-GZooLv~~FJWB$D>Qv!X`4^AmW#%O`@fG&wX7l}%%4GSi%eT09QO ziNz*`qt0zg)-=7vLS2SM&MotVJ8T*V7jJ$MA}_`V92x8|q|t`i)hRB$;%vO#^rTvWpEG|22JZ zrIv}UH?8*BTJ5^t?2Xs6Nqf6_fxGNgc9!VN-jXr>nT`(mlh^C51qqyy2r^eT{#H@| z%JFYGJmfxuD&vZ^DL*3flhGE9O3(ay>m9ouDPqNbPt`*ZD2HWsCC2iGUL`U=bS>{>^TM zquJ%uzoI~r?e6x$h(M4*-_JaK2jk5c)}w=`#$nY;lHJ|X;yh6Gg{R7?(hKTff+j1; zb$4ruu|UzUeMPi)?D}+Yq@>VH>=iA@xY{Ii$o`5#?|S{3uZz2Aq^~&K$qBW7tsc@< zpSSw5cMg2xoYWXPx&w%mEv{Cl6lnK4M~}}kP=$`R+aPOS{*?bifyJ(WyMz>iY=k20k&=Y1BGcZScZ>G z1&aJOp$`}=9-8r1+)SGg(L(cYyqeW7?-(U<(SK~DCzbI+^-nz2gLFn+Hx#;;%WEf+ zRRz1fF+u`8_~3wfF89&x0&#FktvD2S-iZBnF+!=|lJTBefj~=7=LuQ%23m5I2Ac9} zQ)!AAtl8RhNF;hLr<)f`o)kB)CnedXM}14aar-zV(39swMvGcN?42yyOm6@mVl>d? z&nnc5u|Z+h>deHV%2a2IizPXl`qZwDyY}u2t=sB~c%Uk)$LQ034_CJyb4j4*Gu!UM zN0qghr%Tq16t%n@3TVMPiPiFKxzURyR;_{hZ}rjPL@l0J(c+CoaxvX_SKXGFCw8#e zXvq0{J|~pgoT})p)%f*1q04*6Jd&39#^IogwK}X&Yv+$0Jim;W%k$aA%$rgx@vXpt zmP)mh(D^I)q5~G_+|ajF=9Fjh9M!=Ui`0B&6l%wPg9;5F6xwh3PFZ~$(mAO-ODyr7 zz=4&TP}4!5{dVO5h5GcAOtSK?MJh1{b>QVX9a`wM{hR~n>s1+(AGk}5oE&7SR4_uN zByz4P_oeMbS9}fW%|_0Q6H4#Cnl4_oI*V6(+u2;505Q?0_OkY}x4T7a6m6{>Jn;Q2 z{=2>Wj_%Z0^2I@dy{)_0J#=XK!q+lgtZ6U2TH#MK>r2Ywc-;tgLFX%pU_-}ez7D!y zc%v3Yn!{kY2*Dn&d=Wk{6g==1T+s>R33;`5*T7*NPjE27`?1ffDU+*f8aQ(=5bP_= zFE&F3_a|}gn9aL&ifzaN3-+KLY_FcLXflct6q<}Yr;`DF@2k}gqUg|a`}O$MwDpw! z56!-h&s*WD!T+(_02)I_fG8Tc9(cb}=C5v$S@?&T2s|y9(Z$@st1kXvv91ALjS1d| zVR59iM!TDjkC>11FBlcZP z==;ZF>TS-bY2OSK%#rdgbS*SmUO3`1ja7JR*v1YdSnqf?UQJ*7_XD?U1jH0BkB#~Z>M2=Js>7DTf$f%8w$0Sr zviIL>luUzx$+4oob~MthR4kVZ2R6q?&CgVB)v*KtzM_wYpkV$uv#5P2i^lF;n;?gY zwaN%;5qB1;n&i$S8jRh)^dgl zZYMu8@`6TNF+X$Az!kJ3{Y)h0)@nyCD40L>+mZ7SO`@@YC^+XOza@FN;Qz_%>G79V|YC7d2Vrk;9i!q8Xs(7Ug@Z>GRgf_2X|l-?jFG zU38Mf#XuM%MBu=6n{yq64lWs_<&vd%V7tfJl7!ao21j^Fy3Sm}3=*7o1J3Vf8}A4W zNsB6?G>BmQ>Ff1#n!~$jr3>NKEqCW#axveoc?=P3dA5+7%ee?&C`R{2%(t5rWAGv7 zZ)`El5bmfFx4f96<%FW44UW++Vo zNq=i!j!Bv?pXb~(FIa?Rk$1}CG?4bW1&B%WPj(X=F=X*}3R2*Z@pJoHOvaj~qSfw2 zR%epF7x8ze7RvxZ#Z_h|)9I7dY~_6*Xtc^W4WxZxZKYRcu3L}O|IJxSDmaYMA~Hke z!$Znv_C@bm6)fn}5vwr4cPk55qyyLx@f*Cgo?X(FIrP0~MMuZCo(>;%(}iVNex%-v zRhnR1JvdAvmHJgFLdg9FP@=cjVE`4ZYyd@hwJ9IOehH+VVoi?2DqL`+9N^0dO}QZQ zS3n6x4vjBpm$~96Y75p-0e6Qwk3=qu+IKR(X;~nFtdG7wU#VkfPR5g$)J&9V&bAj9 z-uiRFa5lx!#>vIZVZ9>qWV~8=i=b+;I+#VQXV)9=gL-{dg9+CA+!|Wf`Eq;abzp+2 zt9%o?phdhFp^@wJrl8>UJW5Num@mgXN3L&Wg9+9L5i4ITug0`mheaX5e9#Uv1GSKu z&PAFno;S^$qJsHeq|9@=OqJ0J#?3nltRcY}^X7<|>w8rSTErVMa(!OU#<#eQ_32^E zzJghoeES+Wl<{`@;ORm&8j8l}{)NzjS(gYI#{(N$jQuqy_E&2$F;p;r?3Yt9)91xm zu*^y@rCwBCh70yPK6_ZF`@26k7SZxr4N9xJ;F~Bd!$oNW_N{iVNN-!y)(m$Sd)VtX z!_Ir&PyCurHAZ@0!2-6T8t1?$eI9?L7jA~%>xuK~KJ1N~u|DsSKh3c|`cL=sq~I%p z!2Cdl{c{yWI*x`Ec)iEN92*3^v|urxzyPeL&hx%VZ{3Xdc|CR>f5iCB@O!rZ)%TZk z>On7C2mRx&nhLn2&kA}aZ@QfLU^&^Uzp?IIFb)K+8R|$$;FN!l*LTSp`Ktg0TgZT2 zN}48uyq^Iglt&vW52v&rYQ-~Z!A?71?vUjWK+flQ6_u6NU3)_b_StsBr3fY@fybq! zo)CaT#us=kPeyOZyht#~21Jn%f`^n(@uDYXe|Z@=v)~#ipcTmg^ezb<)5e%38j=8L zNXYYx^f|9O8uE(_95S-T%sq$>15jtI(GajptL9f*y=a5krE+7I5JBE&s9n!jM$_*% zz2!M?Jc0>Xz!f=*#fFHV<1H(K((=@l>%HsI_<3+yq+l{1pm8Zt1_=5k-Ypd5xsc#H z6=3C(oM!zo-cBu}X5!*OPSRPXof1%%<}{qDeQ_ZH!of;XTYEjoYQ^EtC70S=|Mw65YpLmeqGcJ z=>a%o1R>pj(z8b0kRE}Dl>6`|mGhjd9PD^})lvt}u+cNs11;ag0D#8dKxB9}CS1my!p>4r_dd`vRsl1s~BbE&n3 zRe_tOc3?rBIhLvl+EPo`U+qmVmfm2!vSS6PAil@UJzEdSv4bj>eC^A%wSx&#?pBNC z>QXNOXTDs^tujbZ@&;tOpoSZe3kq6ZudC_Rd_0+kytV3;p@R61Tdzm-RWXcGg7vWg zVV$RPj|>rnwzIgLEoN%oPCeG5%a!TuqRlk{vDz&$PX|1v0e=igAjgIg?@3=siOvE@ zMM4xjBs_%m@S+yGUCd_-zVyFD76Yh!4JkfEd=eF*7x4O~C^2l`EyFTE$lpN76`k^z z&g*t)yZmOjq3x2FExMeYRtqW!K$b#@+=p` z*|B7fxbP!ri5V(jN({$8j%rzSHraIAN>lcc^WSNn!VESRe4C}N#9&U%jHJf5;&#%( zW_mP{|MX-&9rMM^LSL(-&9Fh*4!hC(9_4p$%x)g)2J-k?^J~+>%15z@C&*1de&r_5>$n3j9)cl*86Ow&H`JMz z30+aL*zk#o`3(fed}c^)DakrtTdnn{rH%TF`9q6V@u;m92h+(sJxqW_%m1}o@zu5Z zT(xQ0j}j%QAo15l68B%w0jv|66mo7@XCejjJz|kjGRV}?GOu{)((;%U1!rf-1)2;H zG$LsS(~I$Tj=M~m?V6P4(Lh>Z0Bjt(IEt&b8VBNl0mO+OQJy0zaqHcF% zVg!rL%8Aho5cK<^CJ^1-7xOm3fM2dLwxtlHkX;x?hBq8WfDbW+*$h2QE-=2#dJX@) zoF=oGI2(i(_7xOQR-0WpVv~JEE+OO=<~I86Nap5dv`ywVd3+FC7zg#sUIyn1Z88qV zxFGVkMXg=G7|q{Yse&0uaZ}G{6bU}16JF>V%yZMU^7@!21?MwDu%1oJ3-G7w=^<@Y zm_1({j1E|k7o4Okwkl_Vu)^7iXP5Il^EEjI;L$*u?w!};?_0z6v(ERE>6IFxs(r!s zAIw&Q-dVZ10<^PE#pn>C_ZY?=J*GYG&9v`I#2o zuVf~?`0Sye7qM1Jftht)>|}#L?MVd!>9Z8YRxc0Y8AuAXdzjrV+E4w-uWGeYrNb&0bfOQoEWlo zx?3Q7J>8)FA1xNOtm+-&@&8dJ#n zU%&goU;IG*KPcDh7hDrlPMZ$XTMK92hk2@Cpd&JF9v8#~_3yl(&M@S|1}3qo`Y&dL z&>%LM!OUQ~Ue48V?zD?c{fGH0)7eyPDkOwVy~y6J?9OVnT%o%4)g4TnVALS0=LiiX z1^&mLy`XPhbNv^lt117>R)@sCcG+jLRt`!x0c|ldCkWAMOCMeSrqeaT}#00C$5*8~X%n(7Bt;oD`1g94Y zz715d7dyOgr?vF8a&N*~h6vWOVK-*2-cWg%GVk8?f2jXq`bvZ|X>EptC3I?qd)IGH zr%MQ(deKu}t1!jWukopX5<#wJVe&Le}qNIi$I1dH1mtLGdps1sQ)+*f~t*5iBY?TEy!UHWo6Ty9sB zsR}xKboqrjJ%PoX5;Ic8PN+ZNM(JQf{WX`j74Idxwk#sF#AHe-p*|T1%O%x4rxT6?p_cy--6pVDjr zpYN5e;&PzyRl)faM=zEzRTCCBCLu+K1a+3Eqm#BKPDiuLY0M6S{S6!}Vh108myC!l z8kON$Lw)0PtYPjACMW&=y0zBRAT71Y^mw{?u{`H9*|IR?U`LFzgATS*q0#}0ymhGs zKAz6`h03x;V-B=Tqr(P?YDUDt$(1;yMMvTFRf2s<9KVdtj1pqi;wB|_ZLXr;f7DeW z?PTA(o7^lrOjc96zt+3ZRkk9_;cx|)qlM^yl!;zVpOeE*SINb85#D$t+s9o^cgS2- zI-TA~8;B-6BEAvnmKo9yOIm%lpaZPdS7s-xtpgr8{vXjQvznEVCjJ2yKtF5-&_NIR@y&82J0{@XMe|1Izd?1`s3KB0KncONt9z4zEhz+hQM;(Hc|Dq|zlo?_MFWcSue>^opkjTQTa;A; z!LKYoigD}Dv#Sf*?AtmSZ(h*JJCsrK6lQO?I6!EZ#y?!VIN5BSoX_~G{90rw9>{Jp zCG?{zChPe3>l6)uIdqhl`-Q7VmjZ(B16DekTVAlD{f|0D(`X>N$B5K|ge1I9{;&?6 zg9*~RA!%^>L8mq+JHY$CrM&*b>`LuUZ|TE1ulSU`;N~9y@#YYqqO5oDJZR~TE${S+ zgNjAvh#<5zil6CR3ALAxIZ)La^)W&E;LmBC@gDGxR2Ezl1|(+R2rQ_B^3uo4+2Uf^ zXnBDN(vP4L!W5&LU}CI~YF4ZT&81b@SmU%76tp(hqO?Iksv7(lAm{?)Uacr)@Z)V= z<62PA2BlPyi`8e{QfffZJ@j3OMk80__4@U4#aaKorWd)mAP*W1?N;27AXePEK?0Z{ z4MJgfAamVN$PZi&97+F7SBSG>)^#KcigMb%hP=B=aiMjwT3&|vN!7k4LAecn%P8f0iZ?MB_)O5A%xlp9bNa*KY5`kAr3r*^-_{@KKXeDGuj@-D?4juRHVk>}oyZQ%3)^ zyQ(Kk{o!x3HbKF{postNa6I=0!M`hwYA^u#)^TU_IN3jH4~MKR{Bu6;}Y^ko4w0|Uvelj~%3a(L8! zG)(r|!_MftlMX9HL04ufRUN3jJo}?*Nij4~eeC_1be`=e!_&R60T)ae?dIgLAiwXD ze>dt3Xb#i%F!o; z1^N4qD-AmBgYOvO&JI5>#2P4&xNf6=>GmEmp30%zqJhedrlZr7qfWdED@Rig6SS_k zszwoKtsHMSBuF1Rb$8n9?)MLJcnc=?isL|l3hKWct+sVj3Jn3kA0^58^lbY)Ntk04 zB+NO9N`?dI_mj;FHQC*w)$1>V!%GT+G8pi_9=G5h77R4E@XM%s-07c=lH>L>Ru;k3 z1t1uciwCmz#;eu%x}}<*noi_nqJpduMKZ5z8XpN1pN`j?*2(q$VM4=z{?laCKS_={ zPdZ0Q`)Rw&lZAr7WEly~@D;;?{sT+j?;U-Y&~StqQ&Pr&(ISE5t|ieeY`=ee-06+@ zphPg4pip?(I2`DHK3-oh=rq$!OaDh={&SMd7RlN6;(}HVu4jMd&FXY_rfxw~2@(n@ z`h|U&D_U+hxsskVB+2K1rZ2RV+0qz^{&&4SOV4L)9dw@bPQ6j-{}k$(E&stm%8XUa z1XZ6Es5~+ zpPlhg&}Y0RC%Z2=5Y4$$XBkD5uT{0-&i8HsdWbZWSXa48XpnQj^KL zwbwspxW5-vnt9X6%}{{+PKKQ9@iBeDjGXnfD7XTO;U6`HPe8zb-_d_MI{fN)%szte zPU-ueeG-EOmRmlHZ!1ZdjN3{RxfTn#JiFE9%D3J(UpHqx!pgDUH(xhuJp-4|)ui=^ z%dy^j+$(<1j8`z=-_d%=BYtmf_cNN}y_h{Ww?edNAe3}_qt4)@e?&9r{T|J4oQxhb zV!?F~3^Vn70Sj#Wqsj8>dNq6gV#A2bk1#VFK>v^q);phhipxEWqmCMtGrLLr zjb1iZV<-UsAOk<{_PWPyP9PX^D*%rGNFaGPBkA>fyl<6!%ncbd4B&4w_}=MpXW)IZ zlelq|1Yn?gYqF(7wb!lAfX~uOD#E;JOqHPk`9~>o|65kWl4LgoCJ^A>PjScV$!tdJ zYt*jNxf&7h`6IzX1_tC7BLWTfyXi{{^S=r0lw8xbH>`+)C6_6ROX?$n@!j;<7?Z@C zLt_F74DZwO1X|%u2OUr+_g$yWJwed!?fbes_Fq7Y@N|1k@}y`P&)H>baZdjyje)Fo z1i7_()fB}C0>wQV6U;8h^OpX|wBM)1;Ms^iSu>`B`FR9qz!ctTFIO5 zFaQiI&(%qWb**eb01Yb#ZK{H1){uUr>R@?wIp*#x_)y0x&mcgpZX`?7V%-BG$~KY| z0OAZ0t0Bc{_r0I|Zb;;Qr`*IZ>NUTeO* zA1`%|j=CqqE+64b(#x31Ef{D%0L@{$dz7f{4XkjIfohB=Lj%!gAnHEq^#>ibew=F6 zd_WlyH>2%Utkpbhi1-*HNCHg>(;DjJ>EkY~Q$K0%bH5U7Kmr!4)hICN@8Oj}=cGTN zS%F89)+EUwVkY-7L3*2$Ci@57!$W3m$#hXZV+xo@*K3;20D|r(Ug`9*xWn#%7FjDF zJRR_A6`WfOKvu2BxJd*ZLVPoyHeGH52)ef+bNFqS&-h3tHeE(Df*VF2> zE#`8(pk2Ilo#ps-qV}*Q=^vOEjd!=%D5$n`^p}7R>OL@!U(vxJlk3*w(TH21U}-Y? zBL?6oa3SMt!{f%;G$h#WFlp*1{WaQ6YXpNu1`?Lf!p2$ks9@u*MX1keVZnNv$vmH4 zjOhqX=2Qi%y@gc?RB+y6oHWZZ^G@&)WHSsRv~CIt#ve~ttHrX_`FgL*cM1qTu9;U2 zg@XdhR^P$0SGko5Ya_7gu95M&^6 z9*YL5w=C5Y=3{~(X^i2C9fy4g;KN>jczU9`c19pb)*=KB7)oHP`%&Bba8a$gH4MPt zMJbNVh8H*D2>O&r2~r>spdIYB54bB;Y6lu60?kvKs?dkFa$$4gJ3L_3TFK@H2D;x# zZBBnZ9`fKISj!WdJjDULV{!gTvZ`4I)+~4rD_;}TdSWA`B%ScR#zy1hVK2x-J=Ga(ZGb@18+-PB~RaftY82Rqo{2u%;1%b zqEP^i@JpZHd+j|6z8!9wO5xW9ixJTT5cP-+5djQD=y{chL5H@BGmBN~c{3=GpotyO z@_{41IHyt*OK|}IUK-l;pZoiqK(JsX3~m+)6sUOGVLED4W-;je2QyTqig&?4gv{Z< zTl`%qb5I}vwsp{_T`s(qtJQ(Q0X)LRfm&t9OjD^v8yFuvJiDV3xPkG(!@c~Kzzqz* z5sMBRNys${pyBn8`)WIpw_c%=*IOh|!0XiyrxYIA`+ON~C9ikEKm;>&4+af{Y>fhF zIA-@~=(X8O)oWk?{y`dfy1kP@{}IJcJ~9$~z7AuLg9RFEp5CZ|)!CY9?!!o4cY(%0@(fNn`YE&m=K)iYnjVb zGtD;&2HRa;Azy=2)x1pysg;op8Dd*@T*m93IqbjJpP)_s^(ER z5%}SL1L1(IuW$fw-LlunSmj8=034B>76I~!ufIxt{pudOX&q{S+kwAegjedw_v6Zqk2MaW4 zaJ^<4oPi0z`|TdjrYbc!I{c4d0B(J#zju1bQ`l-gWN-j)4b$Hrc3CT^s9nJTJkx&A z9<>>IMeP~~@R@cxLxZ7L)UIGca5_Gv32+4i@XRnluU^qG8VB&1VUD~Rmx_i_FaXcA z2mMP$?W}{zv>$gGNWy!41q1C4xHr#U(J*SdJ_M%#)P%<p<}G@12>Cp?v{SOx_HaAa%r?Trr%D`jgM1<;OeZ;W46cVv)HjNkF_ zUKN~Rpge1DL#v|lX&Nr6D%==aC_6=Tgv;Q-#|H?;Zqm`;9V zjka2T10+y5CGaN|s+Pc=Rd8xx=+CZKtpN=L{h9BNJo{91PXz;TM?D?O$7k)Us@Fgu zutDJ&O;NdDva1CJg#u`NoavuXqfnpw8GfaYGZ_>};Gq2{odIngd&)Q}IjBVf1x$3( zX<~X;qW~J?tP^JqgIfue##t^Hh-?}BL(3{vGdq(E{;xYmX8ub4Z(yMNPC5sx{~BL3 zBG}RuPE&h$po7cmpVe`GtUQ%mHiH5Q3^r)@9&v(71~V`KM>HLDj`tt)G^kQEO>rXd z6vvr$s=_NAz@s%2EB)DvNR?W%MFIsPDh=01ZEyWirHBe35TL0I`rcr)Qd83?fQEU7 zk59w-j7sLQNT5K2Q(fGs!3O8yfevk97@Ve9sVx{7fTJdc1MkaUrJB$vfVR2^$4!iV zhZ-gTAGMp9`y@YiPJ)8}4@ZN*=9T;(Ku`~>s}pQlfT(13jRI)+zxrcv*kvXEw@9Es zk4$5{<96>mT5!UL9F=-x7YsxQ)T3vkJ#YC_rAV6M`0%IuN1b*9pA}M^0KV5Ad5x=* z`cs1gcr-6sIW*w*uM`#x48Sp#f7(AiI-mo#ya}L6V|fP)G-wCU{HeD}?Lead8s>R+ z=pTz)$vg%I;AtbHoN2iVHYQhTWEm1D{*tbN-musp*nmje3TfZ(0yp|-2mro!v0Twn zmvn`3t36D-EntF$(b??N@0S33KOi^3Me!Pu-~`XL%NK^Kec_O3{e@`^&zGy&=EdbY8NZ^vP~$W2#!bNvL11Zz z#XrXL2r%eBi9GduJ6=(Mn0l8J33k2$ERWwohJerT&e?qYa{Bd|KJfCO`-p}WN$}lQ zuuT(iOhO(uMA%AjAN;oSU8taHB}9Qi{}7__6isfZozFq}3$|Qi%@m-b<#%yGejjgu zeAqsUnEvtZ-F5(qQfH_j_G*58gEb#wLxflJ=D{1Nc@G%$Ud^vtZVkCJSoLb2|>bE!xvM+sx>^OO**;E$I^UuY;2=1ozZ(EYr@4;3488{-RcMO&b+? z2PrsMfa632IM5)!6~4p|t(7?_1D(&EZ1zp=pH=EeOE=y)?_{- zo9I2m!z9?LC)nfaqND|n!h-gW`-0l49I}cGo{>aZ4QiB>F5tYPL56oQYF*L{6{K&^ zE}y?RU$xYMA>5M%NpbqFE*rxE`a5(^^I~rXbpV0Ec(u-0#g@XeE zT?a&PIOzYuJ2|jy9b_mz_^^LE@DAgs0G^@%{2`TXx!S12o*Y--j!vC$hwB;c8Od0kkJCk zkmtjK`Ziu5>is?)rAW<}&!7s<9|49>ngPb>;$^HsmjQzA6DXt7(Lpi;HKmbLOo?ly z=JbmhL56@2905HVrFqR>Fp>v=Pnx2E$gRg-=P6AvwvYJSL=D4cfS_aL>K_g|+-K^P z%bK@bTW*$0glq&-S-G?wYISej0cGG*op@l&3D-3X;x{C)56%C`F_6Ock z(Soy5fD)mzkQwEYrug)BJL;+r4?BZ!)GVpGW!hWE(ZKfZ%jxy&w@7QDHJF^#NXG;i%o<^P+dS^G!7i7en_X;Oes%e#SnCT-V8EO0Q-SH*>BoX z(+D(?)Ac441+%*;fYu*^f#<#Sr~Sw6L2zHBpf(~b7785if`hIH^|wU}=I~<_DH0fL zDF(g$@8}yKtBi`J02DahPIVk4hsS)qs36shl)>Nt9X2{h=m;ziznYDJ1ctX#4b4&vq-u`#gNsxI zpS~kSNr6xbL=gJ3`e4xZR>)L~APyLK(Du|%RaPm*OJbnFfx0J-W7-+qripFl!`15E zMT;@f^U#&f6SYUyj==yW|M9;xn*ymvWXtzXdnEV%2&by-1m<8__-;2*#O$zMe- z9{qav=b7vd%k+KV{k8tLf9t5=v!;jW-Z^S8{hL9{W4iZ({!sIIw|9P1y5P>;okpd9 zb!T~%?!}#VFX=`jb+@>h?7yUIY7_kr*6;;i88Q^(3vp0X;l1qf>4IjuXN%`+IyCc& zu?l8jGZ>GRqk{JR?D^SZw(&j~3x+D$`yO8k2cp~AgD)4$*K~8?+?!q&j4Lw?kIaFL z5U%NV@!9u*HR}*MkRZI3snh-v@CoiM$soJ}W{9Bs@RGcPzPKJdN!q6)+7Z;_`=lhX zN+B4c5DPr-W;`@?#-~&SU59?#w5$pN1Q_= zfy1c}bp&`&l8W_Vv2u8V($wH7Do?NDO>x!W(O4*t<6ps)T}A)WIKX%6TRCt(ZG!U|@1uX0IQ#{fez7MFPj| ztTes8wW*tP2?jl};y7sFV&zeXxwHDITpo=S$_gfSM)Fk4P1A#ni=*F zM@j$ikT$IIQVDix#j1zlf$vVnciPJuu-kkjDO@BCaN)q_MAE0-qobyJ1d9cpcP`g6 z_1Sejc|pf!Gv5{r>C=}@%E5qu{~qwCf7()3JY@`$)?-i^1E9e1m*?=Tkx@wt`3^6 zl#hR@E@8N&rE7DO@CSey)w;ERbU@R#6exSAUeYH>$d>6ne)PW_2Mq6|zo-n^gBPr{ z_ux|yADfN_^*?Ku$4)_f>~AUd)z+PY0Q=q4Cc{zx#5aoI8;NHWp!n#cLAwETpaA_n zV(&al_S?PDKAkPflMz9V1AHV}Q7(iB@NR;ZJApaKga^B*A z0Q<)VyW97X1si<0XafP<)EboD(qXPF43xG;iUH)*8ofT9Tzbl(OIrgVz_zOOrhhj- zsi0b809myhGCv)xaHy^`W)>;ea$FRkTit5o9K)`lTVnwEuZ?c+j(fo*Fn12;di&Jl z`lOUgE$wjz0!mXG^oPNDXr*nCVgNaUNW0h%ZQkxtq8^;7I-DRDIE8@=N=RfdKB0i25+hOa;^Y zj^-2qm_O8*USs)c_lE<9=(H81k#2G0ajvXJ4FHXAX^o>GB^P{*U@{E?M?I~LY7l_> zJ~2KT(CzQNK4s)QLYTNpk$mBt}*5{%C{WhT=A0DX13;n0bkoHvi_sRs z5>&L&*N%;tpMIl$aWlkzwwGu(NY=* zrC{yt_g)z)*0q8GKCA2F_K<&yt5^b!0|r*t!^ho2-p5z02Ll8Sl{?Y42pUa$LymH} zlZ61T$|2J27OV}F%OQXORHJsU+w&Kcl~tQU09TC+Xop6mXDl}|$S{Cx><~^Tl(mCF z0IIQr*-ypHThe zY3$p179^Bq?VCby+}=UwsLdBdmc>mWfNT7h&d?6lCYJSIU;x=zg1&Y7Ct;RWY#@NE z=4kqqv>(!jIOb?i245K)K9?fU|Gh^`{b;_L znMts)C{6}2aH-iFr)2cAzZj?7>`jQ3!xRbUm6^P_{t+)zPIwb6{)n5}1gGCnt{vd~s{Jc$Q%RS@opmuY*3_=FYbzmFr0v4DhY;nqR*(c<}Y>B-naZ z?(3I%A6iuuK1mK})0B4#XSsaMLU7z(|7qJxiOb@q5Wv;8rA%Jo^7H0PdWFT{$m;NR zf4Ec@85lrT`3W6H^Qg-|vzF`aQvhJ9@1XQ253;N$sP}=WdU=iLUA|tfmj?n+P1yr4 zC|h<708Eup4o0-t=AhF#p}7@q)^Zso#{q-N{`4=8j{1Avvd41SpNj%?<-_{#N9{lG z!Av<%%P@efMvLaJ>dXihmCKD59S~q!tM_Ol_ff~&np(l?76%O0>OHzJ&b#Tcg4I(L zpsPryi$%eMS*Bb>vJk-4wfXcg31^y0)~3bqkso)dCt#AxBO44LYd;~rNPI5oCm9H^ zwVmnD!Fa5sodE${^(}jl)cTgKUk9G@w&DKc&Ox#l96?>q+guc&D+`;yA9fFUM^(0ec53`M|}nxamwZ1F*L9#PfUO3 z1u5r=76P~*SlpqS9XROnVR5-HB?jFB{nuap;4gll{vXJ6Av&FJll{|Lg#bi=TkliM zP~j?w0M|b?q@>Xmu7UurZcvBGaqW;b%s_yxonA%5gYNL#E^nC`g z5-T78RoUZde6?}8AmD%iTPc1TSqofFF%TFkEuN%XYgkw*iJBsKs6mEV8kMD(s?|Nk zdSG{Epqv+52&h%b!qZc_fxf-(O@x-~(lZPotM2h>z3x%J4m>qTe%2n128sR{$fvZ* z4U!oQ@Kri#ei(F4j>sI$C(5Oh90v?4Oq*ZSaniv-N#(+{2Lujf^=I|0u3rb98ZM3J zoAs1$U@tdZN&$eWEKMg@U92~&M4i}L`ovIrA5)Y6E!Iq0b76Q1cwrG1* zJs(Q}fT?P0K3hzE&~mi}1fZ(c6`U4bZuzQy9eAqbSL2#~ngRgx3yryX(OPe>)WN6g zWV@KDBbO6(R72R_1m`XT5sgl@fg*TFQ2|dqs~TyfrI!nM9uPQGMXR6cRWuNQ`d5VN zBmTP7GG+BP(C#ZV)W+F0osyiOZMj`}!Tv9tz)C=Clm8x8F?4khuAwyrz=gZg0`udV0fp>|C z;M9?r0WUmA@TyL6eZ9_UD&^7-jsu2wC{V2FKB3`gL}%hKXArc+^kwaR90>ULR3lRR zeNVQl>4^#vD0^1O+J;RrQOb`X(3a9Xz#F#U_$1)O3kp!shV@BLcxTGju1^CA z%CJ6H%Oy8%?fTS+`Go7u^pe$PZ9_;@X~$3QCI+q zdyqv1@x80rbf?dh!7 zB(f@4(CbymPf&&%VbvgL$Z+6ErUy28ILp zzx>m-_CU+joN;!SctiE?v z)2o%rgvSH=4+be1cH!kTLbynf`XR0oX$_9()`AgT?7>(B%hN1EN@H$Daqz%(+di3c z1t*9Jk`;>)Wn3?vxu*@sic2TbL*(K*9QveH^UAN3>AJq%-W(vOPOMVGw`7vrJMYdZ*3nkkYEh0dg9$BQQxWx z5qv=jL!;I%p@9Tr5OoILGR)dhM*)H@@S4F$t*vBnr?%Imm<61{cBuw9HD)g7a4!gV zwK-Eva6YhYDQ%I%?jyCm(?3{1aF3@&indAz7ueQ+*;zvPX-Cnku7%2tKE; zG{5dY?j9WsyjAQq`brNKyg@mKouk8M%c&8;=hUT9G?HR_UKg7e;b_IyFN z0PK$jN68-1(c+*dbap5!rl3uxFgg(AL4xy^`@nvLPjHrJ9v|Sq^c6ZAE%Gf{hxdxkYH6wghj&u z``z>bf^P2(xZ4TFf)RKi#TbqTJQi1HP)J~SFDrv?L9FcvHu1y@VW7bAj>B=v2eX2Y zQ#lL-1bn9+_8%Ydm{ZwG8VL+e3Fy2`W~0g_P(Z+UOF&x)8A0_DC?qgAB{)3c1GUN} zP(Ts<$EQ3=sf@3HBKUN)Co@oGd<7K4_bQ+|zGHu;tK!NG z8Y#js>^yqXOc^v%gn=$yZ7AMpqzJ?5aPU<#Wza}*hOZlA_}coa6SJRod)`*M$}!tO zp%m|DF*^wlpA&2&jfd?N3oMS$CI^QNwF-?CW1yM;W@;l*NMJygMt!$hLmnKLR4sRM z(PB)ekuy4~GXV`ul%;K^txiv0dwfcVmC|*u-X1Jbo=YHURvm)_8}&`}^U0ud*nQ^R z+b7D>7>k7gI{6qqpbN3*e>oC-b<}TXg~)Is_<@ls;%gk>zq4LWUQRcy_95-Xwy3_On4`gc=T z_9_Jge8;O!dtLr%uX258BrrH$^@0$X~c&c)mlo16=V7Lum0(q ze_{r!&SJ2@@=;ndiht04n$StGhl4iVVawPAGiQ-z8DfIs<K)#MHW=s~nUIaF6n zFdJ8k_9+nX(cn zkv10rMY%q4c#r!1lRZi==)5Yml+izq@7qdVqPQc#;72P|j}7*zynLWntra?8;6Y?j zjUjsCX|>40;J{_eq__?qQOIUqU$IOX7ka~yEH)!`s0a3CIQayphP5;UsCV-FB~AG)u*ystp@#i>cT`GcfR=&Ab?| zliAg)CPtqY3LJOWf11-Q#y72#_F&kdd%uo)L5?W-(3zr`v0EGxl=nF0L1+JH^xa8? zyfmLP!vv`As*(xCv?sFl7&CPni4=2@ETl@zlS$s1(h^} zm~nvxlG`3hSTsp2EMVeg`sI2(Z_xs1I)U||Gu$6^PexrjdWBA6I2b-|f7_wVqkDAf z-SsmNWw|c^RB*Fdy#$!PO=+6EDUu;wbT7v-kGpO#-(ib{D<8epj zzWw84YI3TNC>_FF7f=Ps!-aq!TLGTc1X~IMtMv#Y03P=E4w5Rs3Io8p5vrmMhexmY z_qno-Fhhxgf5WU_75tk}`RHi)ihsMT0&Y;C{5@2p{&T|NB_A?;&jC&j0k?d00{6RU z+JX%;w|;ek%>K8OiPX8Vve#N#4&)HtGf+`y_Lwp{-J&NEu9^cL!0`jAU>?pz}>rID~qaqHHS2k#b3Rw^4^A z>o|gv@CvU(l2!Tbw91E+%pP@;gU1Q2C16cNG9}?vI|qZ&?s6)XFa~6jxzIS7g#+D( zitc34AN6TsBGMuylX@5TF%9A;SjsaE!H6i8OFc7LI1@vgr@zHDTU;pG#Wu9p?97Ga79LS9#4psQS0Jl5&P>lXagS6+r(w($mF zC{c`x2fdn9S==-3v0c&03e%SHjHG?)?T0B{TM;~zjS;3vS!0AQ9td?-OQ~P?@H;wM zlD>+X@$ut!muDwsv)UX;(CP_{;F+UNn{VJKJAn~L1gUNc=_3c7!!~X7XU(o`Q}Ccb zqdS-Mw`afo^*_5-QF=nLl-lUsk{8C8n;DY}_ zjQ^nX#NTl(S(#GEonnIblPE9EGwzT21HL*+GHfcQwy=flG+rEhcS0`5T2pQI3>NHB zn?I(JqqkeIw#`#a@ct}jb2WqgXh7RBRr~h8XPyWq$O}y$phHX429e9BYTF>i1n)0n zHt6+7G<+sQ^hPvUazJ;Bb03hbsVOu=i~x#$5?7SaCzaDZy>g2A<8j?8QG@9W8Y-d@ zuzz?MoFG#>0s<7wAIHj1o*3TBD2e-p)nHM<9ko3j9j(8l*s)i`CZ-K=i2tDc~6P+9!0QD-XGqI4lx4-Z9pqGq!@`QY1T%JWBy4 zK;Lf$-M|3-$Iwn0G^=CDH|0RN0tt})OXMmcE06%W+vA_IDj_QnAioW39Mgqi%p8(0 zqk%az3b3u095+*s1|~oc8&V}7G%!H7b_versbm+80&MGnr`}rgO0}s#fSjtPyME|E z(z>;oqWIWdO6U2(S`{pk7?c3}aPNrk5vzo)Q9|tf$Aj87=^iSS5Zm93QBAi(0e0GY zlJ4O_-&=Nh<)Vk_^XDkP=K9Tg>LoYE?&(l8V2Z@RR$ft zWwe@dg#zqMxmush9I={m4FmK{`P0YTEY*}NlmJ_e_n7cX*cv6o_Ad~whOJOSZ2zpP zYS;=T#HK?G8nB5%39+9(YrqQ!3MGckQ;BLedHO8U?uqgLr|r$V+)R!$Us+^x-?wIO zS}c!8o*9=ccB`%Hxo7TFbLlRNEYf7L7hTWApa4`AL~M{5%o^Xl6@dD^xa zn<<&y-)*GqI7-gmNZI)=EjzI${Ep^HWv8=IP3SSXjE5KJQIuLdCLn?-^lXvcQAdJ*hT+*PC|Qv!2kiENIv2 zMPgZz-q_l(Vnu`^)#%Ox-Tq-;JxpWSkCR6&fWW6*=lDmx_XP=44dBDihlAf_EUhx` z%r~Y|v9!vBESk6X2Qnu#i%Z3V3e}n}#*@XUGhejlef8?0WfyCnEGZ32RIfRucSm&6 zZZ>ImWP~i6ZgQan2A#j3E%qnVai=$%ZEb(`oKArIrAXSHyz|^GxITQktuCnk-mth= zQGHpi{$8e1vg)hHPoIBx>Q*gNfmMH(_{zTw>+gBp{%-pRx+mlLv(~>p|4P(A->&7U zdW|I(g}pZZ99b)yf82;g1r1pAS?;6V$KUa~HJ$90jgIA9Ta|5eHVV#3;jrO1WgBRZ z+e6xU-un9Gb9E==>rEsRTOuW3&nE?Yp10_RyGPIEnRd&{?a3aA=#u`U$8=BlH?(0X zm@2aCdiog}`nQt!)6D+vYjx#Z5mwQim=Q}MQepe{{hUak;oURXx_!I2dd&K9UpQ>Z@8?&Rr!;YIt1YYeu zdj48Ys#=ba)#rl%gjQPX(pRBD^by`*t(T$e^mle&yxwyM&s96PUaiae0uB97rLSA$ z>>2}h*D3>SfMmmhwBCR99go~)2VlK=A4I58?`+gwY;C`OL>nvICRy6k_}m@V-hTAr z;j`A)|NKB6BQ<4oW`?q6z^`JA+(y4~W2%ky)W<*3^v_%JREcFXp`%)T!vgS*&7ePs zQhEvo{UI7e?PRTop3*&de-x&e3almHcr?7S#0aV>_1>9H84=Jhf?BLPPds`0TpbmC zYN?>oIoDNZK$i8u)qWIpsV!v@r5{9 zCd6f&avlV)dBNGd+nY{RI$75Lq)x;De>LL!BSp6?xn^`n0lcz(yqGI`BilU&_>h$s zqiMT8p=(*ZmCbOj>5%DPjA?dQ}{_(swo>H|T z{I+UVttbNC8BdO<{llaATJVY@;N8LCs6Fbc#hz6yuPA`K%DX!r&0FuLwEWWIxOK)| zxdgLn}tzi=k@E1Aj=2ep6m23_e`v;x?sI&QC zFmBKDI|5g=Il%z$st*4-zk}VH&5u<^TD9uPV32afjIPl<$|JIBX00fIJ2%l1E-qS3 zcMh!TrUV1L>o4_(lR4{`t?ouB!W7WZwXxvTm)!2s_XME5xr-|>{jG_6j%b0qW1stsa^2SHaI&`5B8 zFrE%Yx~^IsLxT6$bcAT$BnuM9UR&X-NtQV9z`3Oio}wSh4Fo zq3{YQ=ZsbdRoyXR?l;H%c-e-k;w&{uMlpj6~R@4nD`LYHJe-`#%oa7W%#ZCGrtQA~-@ z{8VUuvrYR(A3cA_cW>=}{Yu2ta2-mGuBJl!GokJ8wx@@tc&CrvP-3`_qeeW#Lj8_V zf4cqh>&NQiFH=sU6wT8XG-!P!wVw06^MzPi>NL)h1;G>vRq5aOl2S>zxqmY()ISk% zrYBiiFOFL?9+i6`AI-luYQVSU#io%yfmcMl6AYnu;Yq+qL1ebk9sh zCUkF$JhVqKd?K&Rv~;z~nJ2)YBwIHBCEeNJcam+WWz*E9+Qrtqd8-<OC=lj#JpaR1J+4e+JcgO{gMbbBKdlVGPvRv_x%CC_& zuRSDliS9SgX~(p_cw~ zZyv)02t`?6)126#mHaAQ3~OFzYAUqSF7tH=v`TTRShl{gT=ZuDE2M!?2OH zrtVxK0E?vmY1QR@YeohQHk88>AQa_z2vaht-IodmkchmI}ko zoHE1@h~l3q6Oy;*{UP5*&OM#4o~SP5J=q& zW~t&!!UZhUuS<1#!@6PS*#*~0NP17=a4OA_IDaJE*)&H+7~*m*iOb%$oK7-KaTlY) z9PmF)`IO(cAGK-{%2IWg5^67_Li=W-{hA&qRHfRm!cmM~KtbhhrjliT%iydOHLoOc z{uQUz9?X9lkK`P?VKH1q2NcBQs{6j%J|1M7xeSY@3LY_%&cDh`U!5K?pkH?K^PjS< z(uTEUWqE*rd~^QB?a1AF{Qbkn?wLzb5-k;J0Qe%G(I9jKLR?C+!H}iImvka5li|yM zHYO8ckcn+dq|e~%n%(15WcIBP`eG^xvwZ*PgQ$o8O<%%3(&G+xZ6GL z60NTopisOe;z(B!Y|H5pOSfow6g?Aqm*?X*z0ub8vlr??K1)sGg8D>DC_vvx(DbOQ zdNW5u+|3JgpBK3wXT>axJAfaV^tw8WW5_R8+~ zZhJ?X-N+q|0(XSue7N)S;p=Blo<5e{^(M)gpdfPByQlglcavq5tKFn|kPEqo-WOBP z3N~?f9%e%Y%@Mg<4>D?XtgJ*HPk zWKOm86Lk6p4B!_7{JA6>cBA-!Nzr{o3}9~p%V#)W(QP{N(PhiHE;HPn2lXt-+{>>RsDoy<`~-=rk5E2!*(WW$dpRdfVFAXISl`D@w2G^yY`1?b@I-EB3W)x;?d0&u9*=#n$OB|)TQlS&O7 z;KQJ4SFZjw88i_B(2$Tc#l4w?j35Yv;zO?y(Q{$193V}ng_X%mtJn7m30se-b5?=GHqpp#jhSelM72t za=(MX;?TP01MMcQs~lp7oZ~*s)3Zs=Nl>sKj?n|^Mvh?!z@b{;k$P@?lWL(NK_XNO zejm7~^P5x)0RwnQ*u9;nYByGsg!L4lL!H0(1MMTllvCQ)HmUOk3_@Wp$bGl-HBI8n zu2hq`pp*rfkcYngY6G2a2LU+bA^vPLd8i^mB6Lb<$dlh~)TC1qK@hkoi)m#DwgJLiSmY zHh*<9QOo{|8qtIZ$!lKnA?-TKlq~6|l_CfNzYGF&j(z6!AN6LPX@62mM#B|#9+xEJ z!&)*-xE)LwPw8A{f7Ht&YFYWsA}VN*y6&Z(OzEgzCS$3!wM<2V#H}Dvmnki^U#616 zAQaqIU+9{+P0}Fsv5(W&z4@!&d`bSWtiHm;f0^Jhx^@jmSC1Xf|g5A5DBq+ z)*J5krW=l35t<2eMY3_>0u;i*tx0{8w$Dx6nxG&OYD@pkchfe%@sTBAliD&TLh=)z zU4qyWk6N}s>6}xhLYiI5yCAnmqcL6V(v#beEnN{G9yOeowgGHIQD0+ zR^(T6c}UvU&Qx1K;fP}f!E&y7`6mzCgF*J9h%Luyg^0>DxXJmpEo0G811M-*3GsN+ zAGPI1V9Rt#o(7%+Iyd(m&8Kux)>QFr&69Q#NKimJ?2cdd=8LJ^yxz=55v4VryG#32 zG@5Bd6g2JxPx*ntH;*6wiOv^_L6T)gAWsj;gBntOZ$Vc#36*B4?m3$NdZeGgX-4-P z(C^YdbG|O9+n%?#7M*VE^VWmbKZ!^fs>2lG>ZtUCiVD$B#Mh%fix;m#+&%f$l@ygr zD>e-Hm_pH`S#%z=+dF742J=1o_tSA(-^}-~CVfwWcpVqoH>37&+$p_`x=DgDzS8sf+V<*y)R|yl6YF6%?|z;4)#h;K{-J~{GJRnqubPI z<9kyK<)A(9%1C*UDLSI?vT^`*n1fRi~rR zjIE=?Ea==;e*69p|0L@m!?>u{aSjHhJML$6;N$U2I;7ls@_O&Jniw(+jFgn7LF+@Q z^=#+i%jd72t2J`NKA}3f3JArUQgQd8%zlQ}wN8ssP`T<=o;+-Q@%sl4L{(y#d(;ZR zfd0`tx(1srmyMml7t`_k<2~wd3nfFV1duCD_yhgIiVESI_(}CuI`A>%3jl;*MT5{S z{4Rbq6Hzm4X8@tBG>b`f7e9R2JLpY&qfS1tVHjiqBGe=ial22KAWeIRTi^WY@eeKc zp55bDt(SC~OT^I7$OVpYSpoE;Y1Bb&?(iox9;@Twv%%iPrW*emYMi zrlE}}Xel7{?j?HRWk1?y@+To^sT1;Y;)=Z6iq~>PC?fwP-@khORg3-VefdS}^9S@x5wYezOo{c1Uw*M^MNfp{jU?6l#oz_|Vlya@R%k_&5|a(h~V^8!VBY1(mc^xNj(ZHeV`AWLSXF z1v@%s(Wg7=7Q|+wi<}A7|B&RCsLGpAc3wW_qh_zj56T3?O)E9!V~GIlxtiFcDh0#p zQ;jZxz-KSd#*0yR>)BT=x`B$W^rXqkoma9?Y#Tdz4n~har z*3s5GT_T-=q0Tj~Q0MnrMU89gg)EVEMCfH+rtaRWEUIgJIZ~l}Esf`MnWnb3yC#Oj zf(G~W{jXk8!$qgwx8?A{)^?S2Dqf9NcC30$Epfn_$EH=h_@&qExPxKyR)ol6!BLAy z#E$!Pl_FnVDzc=lovL%B!$FDL#7gPe<7dxR|Is$;uG0!YsBy2qQro3l?w)K@Lo6a^ ztHb(baX#cR47Som_iQs8-r*@y3kgRSm( zxb^tii#-}(V|hmi8WIl}R}AonW@e(_f3x@O>4rr$GZ%gKbeC?o-e^p}S4@cBg)8U> zHIjyw2oT|1Nrd1p@!QE_FyM3zi@>e@#XGigs}z3FVL_nuyA z*&?f7xDT>L55s!+Be1!3+( zgSij4dEJV-&0jxmJ)tx0v^L#(&MO{t*od!47cI_o^VXlJkH~y!h|HtcFX;Lwo^szt zrW5w}HgA7P5+?uAU~(vjbQ3eZ4?x=kc6M7YWWVBY^G26NVfKHun62s&9(U1HlFTlD zIR(q>bXPGR`8-T8ylQbv^Jq^FMNh%_T3s0bpADXWva`GM>KoM<{(1ABjyf>zpA5$B z(1j(>UOatFB~az!*5)mgVleX$Ml)%}{^1@~(}la=yQgETQiQ=aztXDL&Le*UTU2SM z;@4CRX8vCWzy9m%-9NRqpSXQ@GR)J@(Adyh8n+Zt6E{<*>MXFIQ6Jf-b(k6cyo zLLOS(-@M709*q6H!B|>uZPDq>-ACJejhOK6|J=N(N)3iua;*#c`qc|s(oyx*Ddbuy z1~a!z{zOidQ)vI=G@MyU!NmV!GqEsT^#7iUfodAbQhcbdxc#iI%XWXiE`#Rji0kp$Jt%Fz+7?J`JICx9Q(E@5w|72L6M^z#n$^)OGydpMr5-1%_G5 z^WHWs3Gck3MXZPN?!{9m&q51ET5{hWO}x-b|3i5N(kbM=N(kmzx)iT>zj{uu_OxEm z%*u|u#Pt-q6iN+-T6&nTcj>i;SJY2?$U8D=@6^L=J?|8Hm^G>}+~(n6cz!eCsd!kZ z!BETC$UWXfa}oSJULiZ2!q}*w2!k!14-QU)Rmu~-H4<(5DRe$Ez157Rtwxk-$y(~d ztKFHWVyx0z&DcNfKL2jFJV-tjW0f9^we*g7TuyFvhJyw#X>O4Ee56uhe+`29}}x#HGm@JyCh>w;BMGX7eeXzi+u$Oh)uCk)Vb-7|mU3SSEI&$KJLFd=Oh7GT*ev z5*e7}y6kB_3nlls)$Mf#ZMrmyjB15SOnA+(fM@dBQbCyM>h-dj<6&z=&5N+jFdkdc zHmJa$ET_e240`YT9jeVrKHF4Is}+NJztPc)A?S;i&!EC%hW>#@7Rx|M2S(lesqY`A z|MSj^)>rgD^8BjdNDcr_8h=zY2;E7)qCW9c>R-w=EyI2&Ffy$Ogxn4Mlr4GsXZ6^` z|8sJUjPRM1gF)sNe#SDipNtksMG_kJ=Yfz31stS4`f1SL-}>{@ov&IiU(=2bdQ|Zab0R@%o{PtFVbTHo9`}2$KJvmciNh}2SvBF;g z7E~60y*N4km*Kd(pj%1)*Z=mQs>0ej$)PJl#j-7@JEqWBR zKT;BgI3b)82rzi=e9J#fDI#Ds!YOiq0e{}%`(t6UA&Z4zIh;^nd(+2L*;TNbPT_Jo!+<|WcZnV%DG~{&!H69 zfdIa+@9$WZV=Rk9LO2Nr4EQtqKgr&iCH;PSAfbc+??UIrbbQcPcXa)?lgkHnC^?t_ zM^;5|4|=1nx>(NO4C<)6a1sv~@Mk)QGT#}TK|v&x5a4}4U(RLmFjVy}kY*C5q8=?q zZ$uWhP&tsKI!r|!w&zDHQ#p{NIt-|1I>WADT0A=JDq=Ur{VY!d3ZS96=P;7U5SVz5 zzwXH5WvCK-s0>RW0an$y5j>t`U;+VrxicONsM??ryENO-Pfvm>i3$mw>*>5RxBOs0#>OxcoD-C2CIIm(6!f6)JFrs`N5kD8X;>{-K_NxX98ni$P6Iw6WO61# zY8e0_LYdwD^evs%5Gtn39)p%-91=QIvrJ^K+*Gqnjun|8K%QqLUDPDZHgs}Bunf#7 zus`Tbk0-LbVQB<7kmNcHsAoE}x58RWbv=74iG%>}T!$_RRWsL?D$s?JR1d1a3p&js zGlT`~LP@X(0epoDE`hi5KB%SmBw-680ji}YZGCT|UCM`g~brI#(3G+!E-5^nPbD34JHoA6Z{o zpdo#`GObh8U2>6K47xnZ6&IpcW5_K%;#qR8HU>IDj>b?Bx*5Z4QRIfS=|CjslB*qJ zz!Ss*6@nkea1h+u=Z}Q!ZhcJ_gPUXn8{(hF&{DjW)ul`N)RD1*1zrGVd=e4LjNweq z7rfl8A6m?Z5x=T4f;I`fp&c)>aDBI7OQHzOsrAWpBHN5j`-J&0;+J(kp_?G+E(n=P zmz*+>m{qa}G+<1rq|kJmET9`KDUJ>CQc2+-v^u&u++azm1YkxfSGZqM$5Yf88_X4v z4n3ptxg0{C-Twm=pXIhscZ1H&#~$IOIRd<+)bUlTS-_Cq{rRAA$}8ei6gR z_=lggcvL04@Oooj5E3xu*Y&0x_4rW;Stge3?1`Y2eA0pn4Eii`GT-Pbb8q9WVFehn z#51MZV)LGX3JfaLpEUJEeLmI4*j)V?@i3uKWz9IfM2_8Dt>M`azn10(Oeup=W;~=PH-nw-kddkE~}x>{bj#Vv~F@ zy5!c?81f{&fGtV(r>7zbEF_cc!&ZwdyMFd@NJ!m?ZrSp8`v|cm(}*$La(4zOqPZ_9Pv`e`Z9kWMN(+E)Kg_CMFJ=sXi*Nyee2 z%tDuQ{ftv_3!*$N-{NEz^}+h06&IpOLrqUPy)P%}`VF;YLp-Tzvx&|1Yg&hdR5I`O zminr?;#+^-4O9r8?~XhCdYVW<%T%@xwk0NO0}AX9dbHzH&I22k3|t_=^%zjE`XA7y zL0UnRb}y;3s3$yaPmg~m0_Q4Qz(Va#2*9huqd854t}+FtLY#N8GsGRBgoUdA>ZFV4=!oeWVUoc3ql?VoolX+p@VX>t$ueTCxi^i zRM-TkfCZu9zS?cKu8;#l=yqkmVt&y2V{6uzJ=!HrH9WX9S``(N7ilC!Cq5>9xpmvH zk{bicgo-#Qob8Pka#h8!If=t4EMx z(l4qA9CSwWl{+ymkc2x7B5+Ai#BwJ0E=J4=AJ9e zp&0z&LkU9z2;lSd_k?zT2@e}GU!xlA!lW4$zKXW*hm6TyS5(QDvYE${yLpn4nTx;7HXGWfI|P;&=pOB=1Qt}eU>XUk)S3=&1D93ki>NQnsz{t zuLRj-dJL*ekDtc`xyGuria37L@BKv`PBKgc$j}9~2u8%NBtc|dYv^XBVe7=IZHkoq z6gPS~fhMRL`OpW=g#r>$I!}8-v$ok#S%hGM4;0wv`oqJct~B4!-1$(7>_7mY>8qZi zp%SJb3R%^d7wOCKG&@jX=mEumnjLVk_-ge-eWJ%uD5}6*vVRlK4OgG0CwXpHA5(pJ z)F1WK42z*;REV-(1xEZ5Rl0y_yqI>>DS-{BR$!=Js|h%BSdUp0Nzxy4{`_Hx}$MYkC zjHidc`}}vvCPnU+BLRN?P4D>Kcq;cC8Zt)+CaeZ3vdNAI^YQ1xY{Q8F4kN(e0DN&k zl|zT>2)SHk$S5(O;sXbTbAvIT02Y=T8UP8h%t* zKQz>0GIU9adMtcYFlP1}2omORWVv0kOAZ-ShcAjoIO2JB@Y7JvJQ~Uvhmm-O0C}F* zxAw>KoWCJiLNEaaO0YX^*;O^NDOkp4RKlLlj#fV#Go&Rq3Z~c|1@>8YFgtCT3~uHy zib{vXfxO65`}qk!L&1#!B|PGwaF&iZNKadgrZAGr5FoGkUdus$M2mK!Mlkf9)38#) zT>%uJkUB^E_o-|M5ks}(LrJ^`CE&N6sT|Xoz#K|}9SGp-!^L3Ur@I)a+ceYlnqg5& z1(#9^4b6{rAgY$A0?%&ATe9&H6_6&S-6{QDq5@0q>fg{Ylc8McS+aY+i4k4^`uDYd zSk{&m@sjQ0O-zUyu;PxkVxs#hOE&K}vB2@6{+U*%if!8KwuZgoSPdZhCwG~a!j|RE zEh!7@J}mFdghxW>16pNQGdhMU&jnKK^cLpxlQ)Oi#Em5heK1K5 zC|G=9GHB0v?NsCsLp6eMk`7pcryasN`in2cwA zIY6@{BnMJh#(;WmGNB8gSMC`5P?GCG0G|){lZiyM9p855~LE_w^uDKJo7AVKvQP|y9i7*mcG z#u}X9Ln*EUMevmFAQ;Qa%>eeH1UP^I{<%7NW$3`Dt2>i(Ru`sp#*k+Vg#!$=B*IBc z0fVjQY4_Ju*TII`Ap}!!j{=)a_v;v|o9@FYdVm3cc{<<{IOyq(J%)xm2`WVrBy>KQ zE=KD7wIN%(K$7h+kvgMUV_78`s4kG8dJL%N=?2bePu0kV94*iy$YG(0}vwT3NLY3vYva*M#1@ko78&#o1O@g zt0aaFv^R-E76cqHwSLi{$(m0ol!h}1;7hZ`epqV|iE6PvhLi&F<0$gMY%yxDd_SHG zq|l6k>E~w0!+o`cZ%I)XN^(62;0pwvxA)Z?jiINCa2oDmz@O1q>sm_Wv78uW1b7## zbEs*pWa)L_V5~A2$7P{Fo}SUdvdADNPje{EW)Q#^$TOq%Xe39-22UfLfaAl6KR<6z zdEdS;+)%HEU<&S0F#Y1ZH=s#--2xlD9s^2##6jW0yf<`@_z3eY&I#cZKfr)LPos@t zUrkY4oa2KjxJQ9~Haj+JXe2m{qSD!0Ag{QuXNw8%&Rg9h1@snRkoYu}*xEmy_xKbN z-C8rCRR|$z*oaY#4J0!-O!!!s;BSQ~8DLlkUT%Oy*T}m*)#=C!G~_AAzn{OOZT7<1 zrX26Xsq7PAz+dza;pjDWOOZX|NeBuk1@LLiq-V4Ha4q?swp>VVdbsi&Bl|MP8|q#k zD#H>8-Z(#hAS0o33qR)8tq?WCpl3ig62Pne`qr!}bpdR)nH#^>q}F8JFrue&L~;opxFww=$hZ`=7)wUxI&*pV;VL?F`G^WqdrnB`d@vus>B(Kg zhUqL9NXEfoK)v98(EmwxC@t+1V<=qCW*G1v%;~hGWLu2pKoaaQpk8#;eY&Amlv_)y z#~cor(;W^9mz@ILCr+Dng@z?jS;Gg-RRR(^XXdLfrBM*cO_tKm(IbI#H9D{~tuBKoM4?{Gr#-9zT`zlh_P$i4NMWHQ+h1$8r zbf8CdVk2Ie;N}JqDRg=oKhgZ$CY`dmDp0d&`P}49QyvGu|Kjy=JmgZRi^1gragH z0P&wM|)Vhc@mw&C?G*#-`Tglk=(sz7<+LTfpiccFT86{`3ZBm zFT_xvAe=zs!^+}!ZMBqVu$aRrEJ0xL`FFkc8+s^06l=qvE(DX{fCBr{yWal(bo@>a z;5YxCa4zfqp{k?rL0SNy`vU!#xc6^Y3Pd{6dE? z+~Rm2Ou_>S>>Gi-70>OY^Sp+`jWK+3Vl;k6dq)PmeHUui<2Qvnp$!do3|)ZKujo44_q1Vi@^Sfq~W_O?Cf^Q%W9bF7(ek%>5+ zd*99WzZgo64<+(n00Df4UZWS58`dlM0sGWHi~#REf2sE?8H!2>rnwFU_I3PdNUu+5 z4a20V3SQFM0y@*2ECz!$G(+&BCeYBl%ZAd)gI;gz@t`-P%N6$M-y)TMI5{U*5ZVyK z5C>H0R*-=eHyPl!V$ZgE?`b!+u)xsAn;g4fS)3&ldiOKE(w)n@Cr8{Q3pUh0%+={E zT2Gb@Lmsn^@=!J3ZYZcA2)P6Ysr&dL zeK#eC_TGgLM3y)7W5CgZ5(?Q5>5?9La+|h)(PfM7sa86}e>9d8B8HI&W1M0g4}!PS z9~86QIr!vNZ#h3aw&25 zq_pxCrvG+wF&Ao@1)(#PHADvd;$*O@bD03##diOovqgy^ORZrP=K}f+77?JH(NAbK zFp^$?uW)J;SOXjpfcqeSJo?MkojB|CtH&R2wrLL$zYET771g}zQX<1?F$Q>VW+d2s zfqz3c638x zk|c=SV}tlBf1ZYBj}CbdE0he4g@{%G2e~`^LwX)+>W0cKKFTy&xjQDrGMJR24SFrQ zwT)ho9ML#aCYPlmC39nTqwVDq2C3^VR{ZTjzc=Vg6~on1GC~Ol0yp>NCXxPSnJC8yY@i#cULXr z4ge$-x8qTV?t!C9xixRk-pFJ$bkG9eA2~2`jYdL^3PSj5=8lf?!8O@;FfRQf-oN_1^d7CI`cvIEZV7kuI)Lfi=IZw}y{{ z$pU4V_FLT?F9UmSD|nx^Is^VQ97m{n`I6;NxUBuGA z5YReU(5?nR&+- z*DFcGR%gUzyRrEj$8tV_-AGDmXCtSS%yXR zlN?YP00G!>KedBS+VX01?uI3=d}1yHCM(*+)0}nb^k@04Oo;rML8ur#@ZjXaX?0fk+ z(!#>hl1D9d^Hi!o1Q)7RMs_o^u5=fqS7;;ZrBgWc<9K5}E=>uqHQuO@P`iSZeAiaX z6NaUO`s%{bpb=X={W-sV<<1BV%t@RvhD;W`ZkY58a?K9!!9ML+$$&)G;Ris1@D6EXYajR8m(L< zfkEf8yYG*B%XB}y$Ox7xAHFIucC^DE%mMsn1)p?=4``-LNLcc8SpqZ&-H1Yi_Pb2S z;;f<$V34Vt^;YgoZ0s!J0Dd*b;q9SXO1Dgt79-$D5V!(?{eD}{3t1-LN_++~uw_pd~Abmg!bE<~4G^r(LB{)c37gDOm zx2z)7>JY0aGE`fK))8SAL}E#&arUgu=hZe+(kogfM3u>dc9$xGjR;jV2*vE|zM`5y z=rpZTA`CJy3-CAe|3al{>VO3i5tqd#64ZE{zL@aFcF?ZW~Qlx3c5n-7O7s0INXetw7QD(nA z>wWpfR{M{C=(=k#R;{2yc-N?Btb&SvX?-&)fu&XUfB)si;!?2+DjSOnsno^g^9P%Y zOJrqn`TW7=;u2Yz%9mekE-sN(P}y8uzWkytT{c)=_9H8c%OC%+xwu3YRIY~dT1XVb zh@nvM0|@+Eg713zqTCzChqWS}1|`I#;H+jbQK^oY_>VUglaz*-d=z3#lVziBd)jU7 z$BdrNLKs$S3a%?am+2O~xxTLQ?EPRSomb^4^qS}z)@lmT&6$X8LA4OswN+JIZ|>7` z0krVidBf{qqxMh^q71`Z2KbgXBOz*6`8U0T1Af&WW=U zO$T@`#k3loALU7*HFbyvo$De#Kg#8LL+>*N&!a=IvWhx*zMcxfpil4=LwRh_Kah88Hm?algU+28>nUA=?k-AHaWbqaMTYcTN`&6M z_*?qc_b4+jT3Y6EeJYvIycIPUBg8-LZW&f{BSFTn;z8>w{gO1c{C`9iwDeVdV2C6j z&8M$OVgvjDO89j7{+#UR|E$h;frI@i2z*M5 zV>&^$YDUvN!wLlWmHnR{&_RzOUBImtnhd8nIjm3g6aw@${+jEq0^D$cmw+c2;4knG zvV%T`o#g`T06^a4N1J)XxrKiShZ{-)!g;sEzwnRP8@r27=&;IkHhI;`KxYPDx>d>Idx#I^TCHLH zRwEZ+P^r9Fsw|p&5j5yj`H#Oj%CC-Sp8pac)Gkou2ifZbhSou~Y!L(S#m-^B*(oUw z=o3B?0KE~RG^EY$)G%~mayCGaxLry3=X&X=_R6I)i$SYmNg;l`u+^ozym$wQY=11p zUkE7{gl@VRxi9Jdx&CzZqomSnf&`HdGm+L})>bvAVE|Jv6?hQ5RtaWrZ5py~LC0Z$ zzra7pF84HaZUoo?fV@Iq&1qJ2)TFriuqYN42Joxl2Zc*@3@h3hJ>2~kyGxgnB z=%ZF4e^dQagJ~C`EM-l=4g!aq=^V*Dr>oE7G6A^Dbr&ZX=F4?eIcU#j>MnyzogtmS z+G=;y3mFzSxR5?)RFKN<_?djn*)UV?ZBpc;=n~jGQ{($aHZw%qOrLGQW=8=UHq*M+ z%K13+GeZEr91@T|+knlE0`x_X)>*@FFgQySocCNs|FR`OtE=&&#PW z!?llrma5i~VS)1`S?8CGgeNVnh<8*f7(kj|*eKGBuXl%pIMbeZuPiG%%WO&>hXjUr z+^lrG1sl=<3_71yI`RIS_Mj9s!@0sjexRroxXaaHV_I)+LLFSF->BkF>kj$`Qp@y0 zF)0J9pz?0Y7w?En-&iHEpyFynDp&M=GM$?%m1oQ3LLMK~s`}i6T8yM|(Qy37Rb~E8Y1*pTaX7wx)L)BPGaIA0$}FQuRU) zJJPejTStQ#U4_}29`1{jHDx3q_@#&vu%I@3yJ58o_xLqk z0PEFe@-SC(mqLwzwQ9%xA2%B}2Igw?>1Go!0YdG3D1IV7h6w>ZE9?t#j06>KSE^}w zE*5ZFClV@_rPPWNN?MVM$b48(&2C0FmGCH2Co67AFX_?)4{~O5GrA6o_);}K3iq*X z`KuphTkZ5lz_k7N;pCm`1zd>#av9h|e#m~9-O^#WpsRqXvqN0lK?CR!FQd>+D&z;c zmLmL3a}TtbCv)EmlRH3zJpL}x;RTv7h*t1yuYM-b)Tl**Rt6Dj)S-;OT@qcx^?L~@ z6ZIPKBebcMN9_?k=o0>1y_83a7EY;9{Wwvb(u=-4Vc43{fPX4e*fd2_tE|Zco3Q zl+iqhU4z)9-+7}hlQ50C3OWG=iR-v+^@ujyc2o{u5|=LB#^YX_`Q84aKbZ5M!EH4C z!gs`i2cgTI>G6cF4Cnt9iDKxA_@Lfh2?gjY{`=vZS$iPamIQaegdH$|-|5WW(jH8@ zxy-%2Ko?yP)fFX{SrB4)i4qJ_*I9}t>}bCYZ8KH#+?F-OR3+s=;3f+UD5;5#z?gL@o<>Xs-tOXOP1gi#us0uFM{ zVTGy5RUM{gByV)wv&dTypS<3Exc9@0$HIQgyr&QElUuW3{Jo&^XfSx#9=#q7#_jIz zSY8uj=?>*unh3@FmEzaE`9t2U@_hdXY%5R?;8y`>sruy@qA}@@9|3!BTH?N%YX!hn^5?nm<=suwjff$ zpo8@JZfCbB)GU2c8kDYw7=70tnX467T&N@e9rC@k)9Faw-qS2+R4l064RPdes2UG* z;vy9-vwV5v6cBo-?S{SKaI8-KH>>SHg2L4hBl?^U1BjSd*0J)K1Q7U$fjjG^GGVhA zfCL4^fT|t+(pa+?1Q7VhS$wg-C8R74)olTt`EmQI`fg?rlMlk(>3bawb$i3}vSJ#c=kvqjpzWCOz`f zlOdsrUdg-43F$;?vtCI8gU$__yPfrT%9h^FqUUI2x>@?gX?WigPd{NIv~Ec)_gYsP zDNDMg?1Gwn0Ziz1=2Lk%%#vcuv8_^UgseQXYXpiI*Hk;7&)Vg?fMmhs+Leo>Bd0XY7EYDi@WSo?Rmgd@SpN`mU zJO_CyVyRQ}kS-mU>r|WYtf$s#4#w|P?_?92o(fH!nsj1C7S2tirh`IJdv?Mn%{HEz zo?5F(cVeA_rlZzr&L*@)b>s2$)H+RC`8b6f`tl?0v4(=-?HOX z%ej8O4Nxdv5AocmyM6gCTalEO84Dl7v_lY4(6|f@{q}}s9A4lv2J8<5yVIukUg+fC zA#XRQ-7+E`_Wnj1j|>UTtI%|JYX~Jvk3Nr4$AiE}UE(6*m)ulcvSjfE?}!8&MTFQf zkq5P#h>iPp(pLL4EdAX=j4Bv(kkeR>9w3z!RkNHHQP6a=yr7#nHc~G{ z6f{sT^g2g!5~*3e;4omLjM9xP@6_?3W@R*hz{lu~-fE?bg=iP0$YqvMcb*Ux3o3{O z?Kje!)0@R2fWW^J%KiaOgvfrNW&Smff#-mZJajNv(0fcHxp%u+iH|5~piHq#)nIzsNVlm;buj=md?7wRlvGtWg7G?2IGi`lWf1hZM* z3ZMdiGbNDt3<4h|@TfgF$dkQU39ML9LF-5-GJVHFE{iv79TOOIkQ)3|Up|}LEHwhC z$d|J*Yw(k|6+%tIvTu5FYmH_0IWHF=AqGeZKH^;H<26f(1O^@CEB95_9cq@ZDi&0( z1%L53vyN;%n)wSPDBObr?KB_FXBpFeWM2`Xh+2#8>C0Q)X0=vCK?8oH zJjR>tMOEL-Zy-Sdv3S#`EseTiZx)M)(i(&D=rD^$GmVIX26|W7+()zCRdKe%HBRo# ztbVP&SwCCy5EGP0_w7(Wq1~)RRxGHXFEnaTR)1CnwVykm;p;Nb0Uh-_y*@i>%R<1Hu@zd7!Vu;~LwjGv};(66h5ZH~z{7 zl(f-Ud8b)Pa~QCZ_ebL&`>yjVYP@E7zhXfp=Kb+hJ>%7E96;w>i32+N=-imb>4!9( zoAuEJ4qE7=yDw=OXkX0~HtVCOG$?%(O2ni+>J7H`$8&n+sOA0;Nn|-c=SzqOr44NX z4Ry5c{wMsVbuMk${jprS;+A#iz|9vTRtX5**?1|9fp z)_&WYZ^UOHK>_Uw=e*wL=6(bYT1X%Ma&vP(DGf^Kt+H zpo0<}x>e~=9qzI3)k(V&ITNbUe|?%@qX}I3ZgWHbMHW<||M(ldJ*Qbee-2bpgLZF; zdTk92MnMBTWlA7baW?BIdk*L^EsiI>Hs2B~qR=ocA`2?0VG8TZ&BjA&O&PIR&}!_w z^{yjV7MjJPVj&i2U)(oJqgk&BBq*Szbf3Ek1CbofTFL|l9hCdf^Q5_H3J# z`j)SziDL|nc(~WfLPG{lLhUpeaTHzh-ZqhqNnkj$; zgILN+pn8~0SUSLscAHS9{&_k zG@PW40ZTp=U`T(Q1{t>BP-#cz72<}8iWsmYuF#Mdc{kiMBy`u!yI?}_YIlFQ)uoxA z{CyY0aF+x7tRpCZU*Yc$M~j?omuVFw{)#)cSQmGLXm5@5?9sF=Grbi%3VulSo zU`vuXq0>ge;9i0C}&~QXzaN5q`R}`#9IMq*RS&13BU>^?DQ*c4QZWU&Z|<%mZ_%)s-qe-tU(*!KsSv)3IF9%qBD)wmWe6;?izh+g zI(|cwQS=~*TpKowIuKk)fCZ7559xFywej7}Wefp?+!=js*6J@oFafxm{=OV~t)=Df z_K*Y2C0(rAJ3VqD#3;e}))+dOO1H+#4St4-hy#a|NGX7y=kMwNMLv3P^5nn3a(DnK z_c$P38PFT>+A+Fm53{ozq z)2%k|XmwNVH(oWTR}{c+unpv<&YPBhPF%#nFkvI&AV84#4gJL5*t6B1c8=)P^Oidv z>ALjc6QTO5zMw_a@7fc(oa-PK;u8f-)=+lYr)vdI&l(7rtof-w$!-|jsBa)pu!gR; zbN3WZDU*-*G;V7=ahIEJ$~W}_u;xF-#NLuWrklxVDX>G=QxuK*bMx$Tq7H2PZP_-u z-YCv>dG`r-eZLvY3M#PcS0%f6ogK+3>{)V8VdT^lw8~S04m0-nuMAU8HOS+^ne4Q^O6}sF+gleh7zsNOBJ)&|&mk^lPU(Dy$Z@;P)49lo4Zp6nfj8H@qm7=zj3xJkMo>*+ zD>EVTJvd78nNUS$H=HNA}2#XO^x^~f8R@H!8)l?V#5X+1tRB1 z9}M5Da%*h_oaBIjg>otO(;nZslKX!Xu}|5sA?fcNv`3xe7WM3?@!U%P5V>)UHa%rZ z0a%l?2;#@Q=s+7m)Z>C{vIGm;ZJP10&gDS23%iV_3o0tD_zQ=$-Dk!>^`qJsNkOP}BNq zp&#S5EE)!eU;8KlOLBW8yHU9c2)V0>UAMQtkefs;>vyGSc@hL}3W3&aDmwv&9m4~+@hPKTkS!=EfZ}?BZ)+l7*~AcM->^;ALTy?W{9L) zGA>_99BjxJV$REbvXpZS>kmoe!r7XOddKaZz>+*g+dE*VnF*hg66`}mm> zfE}Nf?bxR~aK8LPB*Ky*+v;WnKCJk-Y{h6imQ&eFrpi{g!O>wsjUTALMmO}Go*x1q zRs=urIf33ZyxQFIe+e7R1tO4=3{hl5|GrO$@Ef;STu?Wch+6fO4DAqiewVgQn|)?m z^ad2axU*3EewM5w$UIPylIT|-CU}_ew?6vSZ}!LCV_JwE(T0~`mPm#rlVK~FQjmd3 zf3HpAdynaHn#DdHSE0=dCA0p=$qlTg7ClrW1=D`vAwyadrq|efpJTs2qCQkUvudt9 zC{{Dd`iVWYeAp2(t^6I$Ycy=YPO`v}p&eQfp`G|r zL=~{A?94SzO?(9y(sxrwyWQ|v8ZVhpGWofpLR6%#>oyE$hkZHCvu^4pSjdXF4&QJ@ zTl1ep;;tLlidqzPZ9$fi*A=a(^`coe-iWBk#lKFolCz1w=Esrwzgf0gvL<56R%Hcv zKoqIur!u+MEm8su>6@t^+}yCpVoUZand0q<5WAgwGUh zS*8Tr?uZby0@T*WH4IIVVB~gy3e8W%@1-Mz-wo5%0#%R}UXCg9YY|LZP)G{H5J~_~ zvLi^qAGbwd+C-w0z;JDVK;-%X3dIk_&*`MI|6ca(49%{<p?vv(p2nd^zW9HIn&B*q59*_rP&Ar)?(z|#MrcP-=sqoD ztZ%iaC^XB-bBj%^_7tG6@GMR7EZ&j@sA|z$y{|1`khsmCc7~I!&Y;((`xo1E)>9;_ zp*aS^Cv1TSvCH@+2?`NQvl+NjggAiTNZ|ZWIc2xRVd#${yjJiq$Xw??>ALy_y+}S7 zt9|K)Rp=^s)JbWOxl{d)|HbphBY8B?&{#Ul~&#*b6A{68t5MnN^ ze6*dIjG19Qa=BD>0`jBehvV@Zw>{0xambdzu#}&G_!{5jPsK$X@2Q`-j=kEiV`&Ft zc2iD0VqHKXn&eLBUQx={$(^1CnY&fo`m=-nbT;P>V97Ey5b;?`>LhKyjb(h>Q3{nG&00H#c z!N}bYz-Iz9+;CDCp?!i#6eO7t4F&Zt6W;{?5ak3QCl2k>5&^bTPE$9uB+)czsS6z2Gg0}zBVolatu-MM`!MWhx zQSnbtgY6$FnJ!-+OZRoDyFx8BcT^||CR|A0Nu+s9JI>y$u(Z9ksudD~w=2QHbW!Mp z875#Vgo>UEI=4^lTOscEmfSbgJB6<$Rv;2?Cr`r(Xb z2?ssu2Ge$Eb@QKPBvuzSg)Ior$Mg1}HJ;Lb3o=3YbRA)ZEeMBe{BRFlnwaYdD=dVQ z3V;=5KYN`Dz|$ae>9FHggXx-6;Y!2p6%^9tmV}T}F@2NzX*DVcpk5@U!ZgR{C(n2# zrm86oW**R))1PGPuo^P}VCNNL@(%aTc%j}5G+fJ-m|8J3Ip6-fI$3V~y&Y`!Q7M>i z=w~R?1qv~^7Ien@f1xZVbG2b8uOvVL{YIeEofo}nZ>0E!@vq`noT9>%Ce}r%X{g{h zP(bdXTSAomtEaJNfDG@R8ls~OfBCTy#OHs*z z!evrej0!cRVR0kzcSL~uAy;m*30(_FjrjrP#ojbOShb|vSv&t$$A$2D`oRV+!v7U2hH)T* zBPxPb5}{j)<<6fqL>vnuza&%m{M|8ao2Ms=X|EY&b`dkfRwv*Pv!!ep zaSx%`2oB+G5ZZ=e4k(#+f`sG^{J0zbA;fGM#l=mCMHpl_L%N@JM(j<@iZlpafkk{Zn@As9Ws#?k0|C#4*!`sBFI)M_ z6~M|w_&PRy9avKlupkmsWDqmpCQ_uLK`7?3K{-D+&1DG=Qa6w~1GqGeQquw&VUVd@ z7mHM?(=;;=A`L<@KJlAWr)hj53^Fl3gvm4#xXig;U#>9y$m03JC<{i;m3yBdSbGPgHUp0@O>6 z+Rw0-Ucbb82Ds;$*j86}8iu%TijD8dtQ^4`=34wiCJauI8!@knH7WAcDDm5PkpR0b@>=CY3s zZR9D-tBm9`y!t zqgI1Dl@S1*IqJO^329h%(RDNtfV<6=jcZ`rQ+l|DUVKw-Fm&-9!dD0d7?du%pA{4g zodl&2ARu3GU+bFL;1`8W>*UKEpN1V>7u5SBfxz0U?&}5J%${9+Wa!c;cEo`G5wDlg zwz@tokZid_F5$qsY!?kjFH=y6OdT2GKUXKg3=3^4YbL$QYxG17UD8A^p^WAawqJ-m zZ)m6x+L?|&0t)tioP6G!(y|60cY2V&{$*GJ21(0lETnHCzzaTM{Up1U#V|kwK}aSz zNPUDK?$NQi2jqfilkllwPd`9HF{eWKa({Su)Sc2BMr~QO8uEDv8k8yw*f;vL;kMoR zaY0w$x3b;NhSq_@2f6}5;x7Nh?WpmG=?mAs80IB}PELc^b^aaC^R?*OnT6WKX6V)k znUn*8tNaTZTGC@Qhke<-G_=$LUr_*eslgx576%9Y_iE$ts;MDBkf6-u?Vqa$R1HJ< z%z9=3>^wghw>RSXlmh|hdCsC#6RTy}RXtx(0H<1VvPBJ7DchKeSyBoT4Dc>tr#;%( zPWK6{UCaas5|=mz^bMtesE-W&B$2KG0jw*%zR3FG+i0hqP{?TzyF${`LE-_c`(o`rdosl8`t11ljZI5V+_Vjp*MhoSd&Ttt{#Zxxa;9&@t#E{~J z!eZ(!AiNS*1?SUL$Y*)JQ-rz=ddrRB3X6)BiDqcTl=>^MlqUV$U2FWDkv@*HWd8t; zqg0?;bc=u2W+Z(A_d~84 z2K2s3cH+)3%~4e_s$$5=kWU&Y_aok1S4f9-8Ys<$G|gC`9*aMj(0)m}@l9kx!@1>( zREjvq31EopZ0Ji~UGIABY?$L=Nah9CNoeuf#D=|)fFb_(mE(L8PzB(9zO+@M`U6d67$+@sqv z#;j}f} zSpgxJx|6R2psSR!M+(+(XNrWRaOZe9%tp8CxDz~xeGJF5ugCNx;G8BBxTR1#h%9}_ znk=KSkp8G7&AC<9ZkCCglaxIb!q*aEU2R*|Z)(&S1&Qm41UJ5-%{44=Be*UOjs=ml zD7aQ3du)4+qEG=LmllPCg)ioMh_OadNRg0Cb0o0uXZ0^)pNT<0o{$``OQ&AzD zy1751IJ=aP73vypPLYsITf-qefv(S&t$51F;OTR zgEj5PNFoH&T4gwum!7Oqt1t=@Y1W{cded1WMM5%7uflxB8tD~i5K7a_f0fmnYou2~ zgkb7S|21FWv9WTNA|V;e8DCt-H!-Ty&rQo&f-6bQjz=A;Y(yKhh7@p+ij_2(5x&E? zNk}&BLKLu&j$I}C&AWDgp4~;)w5yczAQp>4f95XVQkT>;EeaJ4Lb3DEpScdH@M6=> z16UA=)fIg~C)0#R)9NaqAd#d_>;np&=BZQhAod9w7B(XEV~g3)GWk_%VoF?y-><}J z5s>CR{VPagdBo6gArv^G-`AfhC}fk2lFte>&nTV+k)+Zp`m=dW5^<19GED3oZ79Q3 zJcuP3CVm+$N|!I1XPBG|@ubeA-ULl))?}IHb!LVwNc+y&#-%eXq~nZPe>UvVbFXq+ zMbjCx2!l-GTrYD9F=Xo#ETq#I=DVfVh@po;CTWU7RVRu`^QH(i2qh(wyDRSYUm?}J z3a@w&i?N#Z4@d3nJ)fqrs%Q|pifWd|bLuuy!`^BH7Im~IWdbge!eLDXJP87^^TyFBt!fkJnV_f&o=x=zpi3ATMUQo zDP1lD@3!cAKee=Jc)O|sDj(PJVamr<$hTk6E9rFk%GfP~s!L-m%d2%x&%h<|FHcKc zgCTyYKcgCV&iBxZ9BtUUi|$-F)0%)1IK7aTkFuJ;BM9)b{OFpn*|2j|+sp_6?=a9` zuh{N%7Q;n$y`-f8M263T@y`Sa!RwVEJ&D<1z#HL8%hMopFOeA!c_$gKQ_HCsOKnoC zmO>%=AIqYxcm4ShKS|5y(s=DfB;fak_RnHPt^%`e3A6IU#g-}kB^G!f#M1Q5ZjH0_ zx9XMn4!V-eF|C#hm#!t_Xpp&GxvopsiM~713on)l#JU(&M9AH(Ui=%GWaJuTu&*2qlG|Zh##wc)5C$ zgWiemJk>EipaU|6$J$2w{9Y+QngpxQ>b4l;($zj1daRLugNlBa2 z`T5P3w2BD1t5sf{_hbpP%yQLbL}o!EDa>@e0qvEd&Ye1Mx=vwEnUK8rm)Ur<#m~8j z`q0ovZ~Ade8iejvU(Ln`^OBgM)d56_r9=pxq30V!Tnwj)RiBaxz}?|RFL!2z z-gWPF-sESI3|-2K;UZA|nIKDo{3^+Y1uG;3Z&v2e2%7&8?lV-26+lG~JV@QHemQ9W zbeu=ckQFL~603-iyXNR+~Prww|@>TQ3?0(F1cZ2wn%Lxs= z+(HZ#5OKL4e(E<+c4VK)Fk4noiYRE@2tVr5N~^mBPh>JfD^(DwSWvkM6~9G`rXz%m zVSc$JQ^BAEj}>pfYv!?tg2vTgir@Ar;$awl7vd2>;NKB^e#Bkh+iofPzG$Sy#LIvO zwGV?DrGB^P9{lnjhh#R57E$BVBM!m-FKtOCe}j zs|u*pog|oJp?$5=&Q28>Ceq7t;usf7l>aFmCVVU6)T~4$FvR3muw^u$=k!L0*-kw} zkE9Trlm;c_iV?r;!PjAn2sO(U6$>he4;^qR=Dud}Noi0*e9Ah_;#0Apaw&M1stMsQ z!#Vgux-bP~Ar-j8Em{|O+I!m@>^3++0Y<303P8l+Hh#L_p7lEq$D@P3d@jV) z?05m8mhvD*&5r*i-Ppqmrr))vBZ{i@pkd$&j1bgJh<=1$Q*}v^+v@f^^Fllg@1ZJ? zRL|gb`n*x_)btZL^r`K{m=5}3ruxdK|?-0LVesIK%4#a8@8rq zr6dtpSuCjAq;`WfjfE#cfNExMM(=&6H_49onVR83JSrN5Vl7G?w$0X}0th+kb$YY- z+wtK`x(RjKeL@>%$5T0eGwjX+O62hp7vj;W{zr#u6|bpND;k9E!L<0*Lq5_ZsuI(n zp^$_M3CSyv%(|eaQCC68fqrYHmz>BJnsW5qk9N$01?6+*@`!xAhM zGLi_vmM7eNtnL{BV8SD1h(Ska9?_{Iav~G_u$i%Amo$s!Q z6l_}cf(4PQgP(@&#uqfZz&?iv4CvS050ZP8(;cIhlEl=CpMaq7p;MqsSllEk-Rd*p z^Yv=Ghh?5jDiwfGyyz6&ea>lY3=0ymJy%^ z-_l191h#>19V6$i?FHiMH0$*GatdhmG;;`8>wQbl1jsAw8&DYmDit@%%AN7#m^V)g z_ZrrJRMw3c&@TkKENX`OGXq!k5B#9+S!v=2Lcmh0)yNOs-XT5JDXlfk3o2_t0oz;5 z56TJuu5PhIfa-lqdyxcmb>A`pOm8WDB5#pc-BO1DHCXyy?tW-sDG|W*bwcm`WcYg# z|JCaR&j8nZ;D8Qo3he40a0pPZxg0|KrfE>C-)S}smsI|$IN*D491O;4=3#Yjcm}w^ z8+71$U2iY~)L`wDJTI^ftaS`r2I9N4j?P zQo#f;y{$*bld-I7R=3qN!1c8wor|Pa`;%VEY!RKcn6~ZT=E2UcCj17|^{( zct5zTCs+4~XK3z7b#nW4EqPS;Jr{)`#m`rJ0?$fB`&Zes$N-naC!>e}VlGr+y< z>bpT+f6l`twpvEXm6+R@9OPl#R1=2&HIK0dUdNE0#u*N zCS&3qReyl*|+Y~Moa+i){x#i;q#$0-jm=?ii+ei%<5JI zKlPLYA@+;vr-uuAs<6d(#8chb8_lwF7KSDJil&5%a2WAX70mxG8XzKWSj?+HMg58k z={r>jFU^h@s)iM|icwT`NC;l5e$1U$A!S%XsX{9$2ZKoBPFrKAbhL~IB4AnKYa3V$IA&J%kqear$QAADu~f@ zdK=&oU5P`Rmt>)979)X!*3A&3*Nc9)5G6~Q%cGRQpmROwaGlLJ@(9Nnc10IbD59W& zxbPRW&#$MRt!);U1Xj{<*JjCjqq$CiK?gpgt8iKiN}mn*ETW)sCpeZXNS82KW;1NL zDILLAVqrgT|8 zEz5Q_`07+$!hfgCZ_H;9?7vpoPan$&Sk?uL5pX1}zz=HbcCVQNNKiluzu7-horPv8 z>^Y#rL$tB>jou~L%zluda5tm@FZ#F21;Wyw&67d_p$C7_RqQHDHS?F}fQ}qXpKd0{ z1`zm2588l3{hm$aSdg^Bf=;k%4>e11kf12iyCpUzTu zXvo5wx3{O$w%qw=ctS%%d`(y+L->vk^P;bY3x>VDno-nsV8~|i{kA<=$n3GH_(I2roQ|jRw$`nO?&Vlv&i5NK zCs%<%|9Oc)G&%OJHzh~$6V3WAp#9C8mg&LB|FXo$Zf`)TS!ZQu^H%19Ff+?(iQD<| zR*|%u%4u2y#(b3dY_gzR#rW2ebdJmLAc+PQGkhn~VL*5Hl!KLj-;hORB^dTe$uP=Z z*}+7^;R}r_<{35zd>HYu4#_{FB^SL#-SEVbCe_*y@G#+5Iv|^nCXUE0hWCXuuhtMD z0&_mo!O2{{8*N7CaHn!@Xm3OLL@L0LtPIf`=X8Bku{>|83@M3PQ>c$fQ@*_pU9O`~ zx@^i6B>_{i+`_*T37J;6o60Sj2+a9gom*(nEuClX_{sRZkNLxfvP?k+CS?_#`0dN~ zyWFZxRd{73vtfA`^|TC=UDoA^m|Jx!i6~9VI{pGXv zh~DXwwdI@B$oh4{F#8|$4@3<4b%CSlctnTVW4!B zcz)EUM~v02U=L1?4+nECCBg%Ek3ZlxIow0hDje80Ouh?#0SCDY{6jj)AiHFruNVOb z0P>d6bk60R_sHvJ@1g?C4z`GnV4!sDzo4X5`X7|xCX;yqs^A{J-H>QXs_{VJm{ z0l2d~9kyo1a|i%$&|g!!I%rA{!_&rA^(wsKG)@ffoDu&5t*Aq*8uIn|wR9YS3PQ8LVSMuc`<1VZg@{AtS#258%iPAbFlb%Yf3<^c)CJMqUYszL^| z`*NrvXecL`<^sdL>wpzU(m6Tx}DhAh54hEIfk8U?}xBpgYt>ec83B@#ChdrgW zPP`lpDrss_ExqB?s)*1NvC=tztynP(DmP=Iwpx8&y_A)Pq4|mcoht&atdvz7>nVwP zBTcD(Ea&OyXPt6Y5fQU{(FNqgB!8xghMPemC39rLgrDu$mnSSsn>IXr+CQ z{zzBA>+}UY4LWHXP2bR^=_*p|w9yd=H4!U%`Ce95YsJdZpd)f0Z39+9Yvl=#gOVu6 zbewp@<@Mcm$J*<-C#^EfD_Z8N?1F0~P+*&%02A$MvS*@^6&K7M(ng=FhJ#<_r zHlBvqNFCiYt*65@=%ghzHY1xVsSyaZv>l{1g$<9cDkAh!FXqkQI$o5mU>dJ-Be+h# zxgwV0l{bOw#7nk-S7J|8AJsPOe2QUZFP2G&N5b#Q8R#|mL<0Y6w1IY&%J$o^uPO#s z5nvP)s`AsG&!;rL*9YjDx84a5YE>QQ2fSkbvUwdBU{I-gSoDRP&JsG!dsq<%rK)_o zts>9mvBu{47_^|X`0ZaSr7&YAqSRaoG{op~%rw0pg@j>$ZVW2(8-YNtQU;R+LZf-g zL>!c=c&JC&n#Y4cpjW98X2e7^nx_V6&`Dw;7n#1c5x`!pDK(t zr$8tuR4EZ=yhJpbrvzxwsb)pu+?h~nJ}Xl3pq0eQkAH;H8gUA=f{q`PY)U84pp)bR z8juK)HS!swN(u{kpVB%Cgo47gSh=}5F%b#F8L1drR*jwojsKswH}7)vxXwJ~BWodR z->bMvq-?9(7Stjs+1+#c%pq$b%dX9pMNyVLgFynwOsD|7AeO31o-^OTe@=hjxi=!7 zh`15)BJUeOwNJNL2_SyYy|M2Rr901)?X5L2Dnx@$=(W()mGGp#*TN+5Lo08m#)L$D zEAL=XiM&Yev)RE5B7q;}+VqhA4tXj*tskYg9chS&+M%2~8a#<&Y9%|7JH!-`z>m^< z)t@Jq%IuKd76z3lJ!tSEqH2fqU=$QWUzi7Wd+iHHK&XYj5GDzQPxXBvkAqSab2K~> zDm%m+qo5G_Dap~d`hE(5Ko6r+-d9hrah}k7x5AD3(P>PCUdYdd=C?jSC#`Q3XVRG+ z;w<#-f)9nJz21kUWe>CGb{{s~{yt5%jn%KB3nbDe)MaT`qP{MRdlC^p=}7FrkNOcI z)suI}>QkLSdF;>}rYIrx)-wtGP?JzKFPoD3n#7=>5aOSvE%)RBlX5=ISMG_=q!M4= z>{Fitai1ZS>q3{IzFa3ghR`!{bCM#a>U$=j<*}7E>GiP{x9GtSHwU>VKR|;YVRS&> zB-d2bj}9yg8lhyQjd*=r#clYH=|Ke%Jr(;Ci4e?P^}f6N^!fdJ-#&gOxQYvX8n>5~ z{u>w|U*u2k|LNh2gBM@E`1U}s6&F&)?1%#TC8j@oaQEqx7Z0C&d;gxmE3O)h@i7Mc z^On!b3A|&xJbd67Ae(r3_~78-*H6BDl(0L-OGE+vg0=hL#nWfc61d{RJsB&2fPIeH z{2|#c;#;woIwk`lxG(NMf4n0X2ylN+qI7;HIijf8q#YS+!^gzIA>HRM-0w!T;X!yEiI6Wjo6Wq4gltLX43Av5#1Oynk?xcZuY2%)8|T2LRJp znO*bR(Ml5@M6O@V#j#6z4pAO-?^eG=5U@?!)7xD93}3u9+%fGP0o1E(F`eY;^OIox z+-yy=9LhpUf(o}6;k0mUeYf@^FhDl3Ld$)#w^&I@ zQ28mVY~+=v|LyEECKSp}z}nED{mjxn6Pe?8U2&iJ633;3k5|f>=x(LMhKGe*hRr9k zWOOUT4v;ZrG*&Rf#fY4zj7)MzMz=f#0xU&*%E{{P@foJ55udMijZXr=O3&OiK40bW z`D*9*WI}A|QQo|EOL+%Km}yhknHjf*9HS(YHin&e?Yf$vtI28M`% z5v}ydV_6-owE!@=W}*kCUkXFJ)l4Qhcw9dDgT-1NK*dn>4NTOqzw{s3q;2_ z^$d`CWN@^yNAyG-bQ>9XgyfnAO4a~fxefuY$+0VTLs;7}4_E-0T>DYirTdXk3WwIt zh6mBcDiL2D$ z6COmKIiN+O{vmEei#u!GW)1`f{L7Bdtz$pSVv5VoqWr)Dfdhp*PQl(`NT)we#`Fwp zc146{OIXNyEL8wPllzPOlQyw#{l%076&|_rcc!yCA58nJiigmX_>(LsaScF9!`E^$ zty>M?0AO;hZ9kIhp51C~5EAP6c&Gk9Q4Il9=l?j_SZmpO{fa`MGB2B{1`N9w~>QW95DyT#N)#bKDQiMC_ zHU@wR|5IppOJgd}PE%AbmJ@p1D(QW8o1Km+u-WBcnuMX-EktJMoP!-BC68BWe&|lN zjGUa-KsDq-9kkjtS1)FwN3;9 zo8y5Vbzdi0xLZ6p0GK?=dpViP>7s6Ad<_(A$&l_+WO(%0XTOxJHMV&)I!lw|uWl1BA%_`aJTAM-(Oklk3Ib`1SuemO2>3$DPwpmX18NJULlq>l{&~HG=&Sq0o~&lsmGHIo z7g+FvyY42v{?a7#S(>fkrP|AYfcHL33-x2I4`4yWS0&V=n+?+^zG|xy4=c)Wob9E? zVi^O=WT@*q-J6VuLB^-da-6HwrVLmR@hP*S{!3OAYg5L3GO5~*g#bcM zc$F=Y?&6gg1^Rk;Mbqzci)L*#X-V+IcPz}uqa{7jA+mIBYaiht6{3uNNiQ$1jxxX? z!vj(-GTDxRZUa(}0M{hNWJCi}GrEW;qPk7((cCm3VDk`ak-qNJZOCJSgU5qB{y^?4 z>o&-<;RTUrQAFDB;Une@Y!gaj4Sbur)3$db0x##yb~f`#?MQb0GAexS=Wp>7i^5k4#onY>3$ja-H9 zn64%~EaqvD1%D#vt-4KvIDlYo=;`5|m=++IuW5}*R-qm3v;Z)9@?v2=l7@Dhv;zTD zu5Yp=>Q>)~6yiFUKghbl-RfMAfSsI|_(SP?x4dM-gLuslk7=AvPf^i@+1VC1UB?|o zcu6}D1PVHwXX#D&CTUK)f^7FlgQOTFa%$By=Id zc=>7|SCBP#5`}$wHYHLX6hm6k8D1a1ai6Frtzs6GLR!(c`$;Pgf<{Oy`YJ?k>`qNu z2^h4vPPcJ;IvG!8f2>=b9#cT)HlG$HM%g&KTbu6@;BxDVSD+bTg#_uq7<#v5?BM?ik0JDa-o2pjm%rl?uv@s6^*lJ4sUbee28Jp%nx21l~{a#t2 zbS?D`0j^8C<*u9E$Y#gL$!QMmoGXYN=V2cgDYzmoVy-J2yKSPQh)6fl(MPGJoy%Kn zr}IA_Fm(1`ZlW{(^UR0rRCKh}0+0(#2{s?e!Fk78%n@>`oJOgkh8YwSuSO|3d)F~u zfq=C>UgdDQB3|VNc{9J140J1EAUe?KQ;QBH?$DBP1Vl#~eY~b;8Y|*8KGbOHE`Ad@ z>k4(OVLSsV#`84U;zGB18nK*U;943rt$mT@5y)2}SKIvx`^cHdO?N@NRxHd?1#OX=+Y> zGn>3grcuAq+{_XnMLkRP{?R-mZRVuwd}a&Urk0$rRLpF;@J1?QLFJtLhPHdkd11wR zZ$ZFdz`o#qKVC5tf4`wy6~><>si3%Z zvY-;vpafr5>(BU{i^$7$zJLUUOYmj=*_w{*%KAvLwpnrnC}^CAMwT9mJr*Sa!vP&0 z81vJlsPn+1pz+hi=&-ktU28>E%AssQv%!J8WN^)D-Jj7#dP$dE6DNWjaUk$B7NEN* zM21mR)xuy758ycmDsJfEkoEGD1e_^ zOolI~W4hRDCMO&;^`i}H^F@RK`+UTfqZm!jD8s|8zp$Loxr>CXv)o`(%lX57SZ+C> zU$XJCZkj3Gi8he}iUq_tcog}82cfI+FOSFbCRrR%+!G!XGA)OM-1Yd!&4POM>4hI( zpWTay8JVDmLh{<;F4vrJ|6mLQRB9c!MgWzN8c^s53d!J^5Tu9TyFS`Ut?6nN0O8MIE< zC(XQnNRxp>d5q_QqJ3`B6HI8{$TT;TWIIlM30^o!gM{MkRMAZ@$bzhx&F~yqke#Tf zLiZ#8d-n@!`ljRAnBKx%PZ~LVd9rIPCv4b|`M#t(fmf;e&c1spbZ@1;Q@xqVYPx<~ zvlgIG{jf!~pO5|@?;7Dw+o54Ws9EXc*El_SS6}0S2AxaZ(^bAMrs)ZmWd8YQ{qcxq z^OJI4U%N^sG((En?P>tE=)~t3;Tk2ww2;L_}7-7Y3Dk!5{C-3(JDWkJHx}6^n*Pbb%}v z0k_*Zeo*Pkf_B%<*L0^BA5qEfI@MHZ7GM)MgTd^pkZrgBt&VJVza9-qe)MJ!_^eT~Hh25eM*#5q!9om%wPE zq=nBYNc^1c{K;=IS1c%VIBPfnK%V2Tc-=6)PDl~gf(iz}@9?+zfloypBe3$Y=lR9! zk-7Ym<`(2czoy7gSQ`m31oj3rO}K~>Q-x+oj!yThR-xlPt5@mO6gO|_j_e(|6sgSy$%!V-JW4>PQU-?zyRtYPP7jxK9&RwQ6K=vOO;ch4P9=pw=X$0? z8y|#}rth;&ig{4G@cpKtI*lH6$#zyKDrFbgcqBpKUlSkG6Frl;ytY!2Laize2QBzg zxcI-$m*o0?_+mfan=b+fU#{ByQ@ukvk45)6P0~~FiVlS%n8Yd2pmf1~M;BtI7tASQ ztsvq+;9nGc*=tmESXu=_&lhn;dn20t#Z^p$FV~zk$Aj6dm@JCiTyRL>pmpABZIV~s z6di-22y;M3oYCqC|MrmfS&2HPE`P-|C|!adbXbC>s5;N1mRtb}8aLdJrp+-QUZkDb@x*i8%#@biaNR=CwZwFZR;4Xi#fbbP4b|2+1bVaIXqn_>n@7XYQe9- zf(mK{{w5s_)YS?gK>_ueHAiIbx_Zrlz>njJzDi!TtB)tkf(pE#3zE{EMs;2|5cub; zSG4P6EawaqdmCKPxPdVkuu<}9FUY=1zDGd=`Dk^rIXX(VV%6m%kf3nIxk+6YO6ART zASa>}{k}pxMKI{Vlg*s&qFu_~ew`;ELE)w|PVGl9OVJA#Mb905I87-i(nB8M|2u z0;uO4l^5|vji=brAKA)Sg8=tDb14C7!YNtDQ;f)CuxEh$bNV)?Dz@E4R2x1fE;h@g zKJG@e;X&l|UyXSgU&Lv*^mhO-+3)OZqIxtyrj zzA15GGvsw1Hq-Hyv3X+ngyyr;$AvXD4;Zeb7Kn)74}#u;CXz;dCuyE@70LMM>?J$T zN^}ck=->2VhO}U}guGBztkQUjRF+I=Uh}`^Jx_;xd|XZ(XzJQ>6h}a)1rPa4o|T!> zNg`S8)O#qI(ELz%=r#MJ@pLki0~p0htcS_S71BV%f{?GGpV8Vwe|?%X5B2$~M27yS z-e~iy&5|xxqI))MdFoHc^W)^c)Pw5my+r`l$Q(z-Y`;0q0ikwB_zs_`p^}}YhdX&J zuuy)#s9cEcf7y$+14I3`Q0Gdte@MOEq^v1+TX;^M;bSUvL!CXLQ-Vu=U+;}vx2dnQ zVZHxN&<-A(-|!V# zc>`7NaRP?zOJveGAxus3(Y_At)-ByZ=odA^lweT}07yl9vE&^~%dy)a($6FmJF-A=wRjN;Nty$|_sQN0%|xUNn+OpIcvlK!P)LMx>j z29THO2J?Un z6+R%ek-#6xy6{c^IZYkV$`-ZHROn?PR8(Q0NGXYgS6A?3p29vHPn*{waTJ9E0HGFW z5W0-tnXl5dRmGA4!sj{+gUmJjY~8#Z(=m%|wN6n8fe=bD4`M#@?3X9Wrj**q3p5Db zfJyeN&2q}y@I*=}ngT!yet`(Vi!0hxKU~uum{*G?*}|n*d2ykgkRU%if9Vp||)eRe&5Q@sC#J3>u&$*vuk)v3HEYJ-GY{ZTIoybIW zwmT5`Kcm(vd*E1cSUzb(KmqpL>SRpkEc4q~G*M!M+WZ({zPXt{23o)&!hTsJjO$vYsLvT4J*7>PKM;r7#J zAtzZ>32A}~IAg%}meYryiL6~|x#56*3GqUoW}_rcAD|F5KtbbbqR|}wMfjmX*q{tlk@gDrxYB2jNP+hC!7y=q|^7`C(AdxZ+ZUCQM%T^U;c?`;sS01cT0d zPKOs7%pqwySZ+@>$fX>`%(f%NMWsZA^6f~O)~x7_;=#0^4LB8ZV=cOp3DrB1D)qqW zSbNc3#e8pzYyySuP51K&Z;l)D%@t(dT*k4cN0ldPN`&Gyr^qi(BWXoxQ0$W|_$YAD zqE^RLli52kbv3NPfc=qUhbL(GdH|nIg-eS0>w-&dWLWTFYJo^&VSr-hYMTKP4E+nx zpJla;rvH>@nWY7Rf5Y*ex~m3+Uy4=hf?o*`dcW{`Z80BDQ7g_*7p2?Su;Sy~3K{*e z5sG>8?M6s6Y(Vef^~ogJ*izSfu$(}rx?wQw4QRidT%Og?ZCG2I#~jcvuk5E($J620 zS+WwU*n8>1#|nW}P_e%k*|J*2v7mC^*|HeWi_=1(E~YF8^xL4D2NC%p5NhW*WrUKZ zrOVUAKC&1yp?VFf>l3pE`ErsBt2On1K`_Qa>t>=we`a_2YFf8;IS`=;@0J7FMOli@ zI`0GyTGyR-G(haXrq+~}OOE7%xMq$g_f7JkhH^#U?yXz}7E};_ng`dTuoz zos5>f*C)wDgJ#%cgIaQgfyEaiHfe|wsY!=2o=H%+w4!H@$LrqR#|K~cAKiZ!Cx-Ozk^%JC@DO4E84bs}D?T6U@Bj%tPnwOb+ftS$U)da_@$ z-o3>=AfXxMNY>2!)3n{Ka>Bbvi9g?8-uE>4bR)zg-EFdN4)fPwG!sTew_+glqCCm9 zRza>hmqff)HNGZyKPAAb86MQ`xVStStoozPU`i_uG$%b-y!wNX)J#a{@mYXE7cJ(= zx=G%j(@c33qztD-mwoSgdf0P;{5LtGos%Ql5Z`3QsxJQ}KzMV_r4fB?%K~YN)X@z5 z@+cEHXhpuU*19ns3bktAVj%R;F4KtyS^=V%6jF8Va$prz=Ich@Z@q(xVYR8q%d>V< z33q6T7+dTy#taL-pnQ^pCvu{&t^`?5iN25W$@EY@(Kn)Lr=%Yf&#Bk-jdCV@LiXQz10~%zV5n=!ULj##u8g=D>D*BrpX!)n>x-N;+dee{c2ulqM%WHwW1HC}p1){>{a{LQ1hY z9wh5aI~LNH5WtNtg`TGBauSK28L4{zK7q)1&i63(`AL&Q?r)gKM)+T{GWgfCPh)^6 zbhqH)?`;GO>vW^RB0apS>GqTy&!CX?DeQki@lE6ERJb;U3s^|sUah9Rd-tFBhvpn# z(|>mVvH7=1YE9!#92?zjKp_bke!dOzJ4qISkUY;`KL7H`y*>>bg^Z$R;jrE_4*~k3 zN9Vh2HHANeTMY2Q^6~K=EN2MNH@xMG)p#>%3fqJ=meU}1fqk@J({^i7bTm6GW48hY@DCVHb2@Yg&`ehG8x)hHQ}cw5 z)Y4SBu~sV-(kAWrS9ZoRj!NNV*R*RvLiQ?qY|a_d;kLrWi)My9_A^02#+0_#%fX^w z=nZx)Z7~M|=eYFs4*CxtJboeKOH-e6P+Or!5RlJ<{P^iTIWMotZyDN9GWNk&kN!oN zUBxz(oPGD3=X+o?C1>AzxDPf{z`lU^KDhVvsf25quPnkXCZ|7m_~5CCmO8q@fbR3k z!J{YpNKdAK9pdHL)8{ge*I8~bpa;vJ-~U=fOI=Q63fRH&gQs_8wA5K{FrWv^zxzf; zOP%FR0oz*6d&;w&*xfDn7|@O7lOauCoiws5rKok&;U(pJkAlEuE=rRXeX;5t&Bg;c zYo(bD4&imXZk= z+BY*l>Gb=tyvt0p#r`a3EfuOaa@F*_rKY!crYJ+9DRNGF$YaNx!#L<%kA0)n*GX27 zY33KVxaOHqjPvSZMKhc7`S0EGsslnR_HJSBh@|(LMbX&JyTB|de!m&a={Qz0(%DTh zFrgUN;dylKR)t>mZixn-P3+@^wiGl{z zDEtLo^0DYm=;|{wpEvlO$Rny6#Zw}=jJj3z@U5s46{@#Nz7BsUWi>N)A<9~vWh`{x zZ_(`!fA^V)XwC5eowh+kzr}BSk3IdwKA58 zX;7kRT;mOI;1?3A=@t_-mM|EwsVD8(v?FRQ&u?fJk8>Z)(P+bh3QZXql|nRWc0J@0 z4g@~Z0!JljBeIC7y0nOCP`X67Y|}nNeu9~Em)u^X8KZ{aHci6c1_zxRvCheu*4Z;P z&GU3tBxE}r?@S0)@fVCQbc^s5((0j$bzP-<#uMnqFN|%!g zHBH?^5GPckLF}3pbC-r6EoqOZTz}P6*HTKdAY{E7jSn|;7I!*rhMbM1RA;X;8pJ*^ zUfFFw)A8|OcuG(Fj+)o2BRZN)uiB+&GBpD@;pBES%(!68psK>et4Kl3l8I3C6u>Vt zoHn%#HuNw@c2}#W35@vy1c`Ty1oMUMibBr;eeN?B`a*w|zdNL3MlTn%nK-vx)0K+p z2@1BG=;8LwY$i(+yleCb5F{?KC+-U2ECDoY?Xep%2Lk6=VEkrCov0((iPF@NG2KIe zzUa{7MViC73NjzMOvEeF^iQ*OmmgIfFPF_yDryGkNnEy2A%3SUo>qmLlg-;hn){47Vtgf&(;#N*ck}hpkS_FInLJ_d3EufHq0Lne%l?yzrcL#=AD>2?{bFQ!%D( z-ba&T(-F1*?4OwTdH67+sQ8|#`hpIJ)@UmoX522CLCgL^Uo)xZ-D%fnEQGm7ky}W= zkX;$g4lobesvOSnB~j1UK63Zx?L>V}M+|UAi((+VX+meeknLZ!P=cjbbIxR&B z0mYoN4{hA=e_0lMxaB{0%WHHvj9$f%NmZ~{zqBFD;6<5MLI5-(7fh< z&Es%Nr1T0wMF+87R*LWwE5X&nikUiPZ9mm~hSD6WbzoewYNK!bO&4o`3HPsh@rbIIE?dzr~7 z+B_dTb;rOW6}tGpS@qV#5sf8fjjCys_}u^s?nERDA{S|Ij}tjck3T4SAqbsl7!)KZ zwt~cFC3{x&ejH7i1(7R3gmQNF;EgJe6{8C@2vMB`Z}?(qv)(7Nvtn;P5J{{B9>gNA zs8h5@uRw#)$8>Ug-J?AQeEn9B4>$}bG!&x|?O-z9B=-@j+84q(_qKy!!LOwS%VU~V zq)kq|V{5#m3Wff+pRbI(ID1;da0{kvQGiX<=10aKPLBDyKf1YPNY*3|!6`-vErw)R zs8d}n)o0^brmJcJi)lf+07CJ$P^4AnA-zzO?JiWcfv!YF}&QN-DIeuPS^Eze?IMRbQjUVF875yVtaCE-LE%c+FI3|83$mt#tM6ivYYp zPrDvyi9TH|QmjF=#(f(f_WWJJo-mo*V$eZ#l}h)2ki$g*SS0JT;mKfrOgqY6%Xyyq zIxPZ1F{xk7p3pvT#OaI7utWV4BcYnay!puyy@u5v9C1U&d!XrvHmy|0iyJ${e7gWF z`bg#l6JRo1OljZ9n%a0_h+?9xEl*}#=qF{v{BGXRqtNz=VtPAbIZq>GhqBSihdr{# zV`gfo4VbS7Z~A6Ggou#(9!~)b3w~Kh5obXuGE}n)<(kq&MuLVFNlk5j>g2o6OmU@O zXn`dZ%1Il{KPqfJ*r5%Mh|o-G12@%78#mkJ2j(x*~s)u-9)A-%vs!$TT1(=!zG=ABS}THT8|D#Kxk%t6OP zO3x`jsVvm%b5I0?;(Nk(iekEnn9fTdZjwiARda>K$d*j#%36beW4E00OO)$T+MBMg zHA-aIAlrzx{z`ot5fh;){ia{glnBj5j8`Xpx<+G@6sLN>OJvv})7<^CpkANmk_p|! z_f_bh*)s;RqrQXh1u|@qY0j@eyFrvFV)bbr6QL=4gVSa(qRan=F9$R_;nF92LiN4D z0vHxZugycEhh#%hLN!akbyPhMM9EzuPF6_y1Znco(4wGO`+nUDJG^P6Ns zSGH+xd`A686GODueP3-_i3}U0?=(p@He9F^uOe(-ow?XxPepgY=D90^JuMjSd-><7iq^oOk`hTm)ssRp_`U>_ZwPI z+q@~p!7k;!2!|ytF);mMCLh(=Lkt)ubmi=pPpH{oSoFVscB_bn6)p8Zv7@txdcbp` z-xB*jOeb=K(H>&oFrh1ZFw0rGO{~5LV_DFV^Igjs9gC5(PWAI$4hAJT8l+1v`c$oP zwIJ&9`q5xagr@8z^Dk)RO&59C9T-BmzL%U~p`NrMq`sL?XwzTf@(yiCjD)Hjf3b0N zqVS|oXPF1dIIw>Fl~SRdr?Jsq{~)4zw=@P3n*U9-SF7Q2vRL;|##6eVq&Ha68w6`? zzb|e4`H$++h(-xE{=M49MsC;m?yZ=ffV^W01c$Ge(P-a&5f6$It?YCEH@gSYpG!m6(b7 zut)A3C>T$jxqccu^*aZ)2*9HMx+T{e57?qYEd6m$nLO2iUBBI87uUINJWi`^lWCu} zYKkQM_dOX`6oQ4@(vr3jzJ`s$vVEnc5P(Ipy`#ClewZkg|I5Mf`0QgvGzvVlgc@ z(2fD>lG(lG^t7+YdjGa3I}0+fPRL@?nq6ReY2v+gV$mt2}OtS~~5rqZ;F&Cf5v&F`MkPas8TM1cah&Gs7Jd!GvZy z>@CMaufF#wkWiJm$o#}c`ik}&Bpu)ST$FR6FYA6Y8?-pJH=YW&>+62Wgf5-=d$Z;T z8+)ViD4qRKrKt<f_6xpm5VyDZRmvH)R&KyK0X7oY1;5-;3*Zllwmf6r#6- z=+IsFYd;YlYUZrHj?H%d&jbtMYeASFmE|)Xay>vZdFw?I%|L|Q^+?W~CCYA=($rq9 zdI1T+$UoksImt@EF8&1~ zjhT>)Qj*&9(%o&lq-2DI;ML$GeVgBTrs+DhIp~29i@jUZF3Ns(gmfqG0uqAfX-n0Z z)-R~WNv=IpTwH0w+Oii@z`kO>r(1f+56VC3E)Gq-$=DzuP*AxlRWd&`E0`@Zh6SA) zxlTX1fkxA7-y+30sKs7!E}>weO0M+^Ea=2ux$pMnRfL1uyEYCpZxna>n~+gfFbr_7 znQys{vRNd%W?R#5k|~qGpmfeE&5V3J0jjtj)dUSL99sy;7tPmZ`80zo?x;=Rfdjs^ zoNnDnvr>1<9Ry@+IlUs=tobEbkx#o@9ys9Jdc=R8=Fjf+h(JjdTFpJO9k1k6Rd*GE zg35K1PVrZ%JDNVL%&I93S~lMNn+Ow_k!_<_S_wrD2?kA#U0xwaHvl_CZqGd zY1w>K(Jcn_%SPTsTPC2mBQG&OCPBm2>(Mu9*6LobCom|zW4%e^NpW3t>INe~wY@9; zMQV8W-W4cd+dR4cftp!S<95%JmI1CQ&yzLHKA01xrm)L9FElg3x^x_l*OlXU5ybP?l0c%F{QIGyV9c85T5MhO8gz2nch!B@l zh<*%FK8#CmtMg@)WEo9x7jExU>8%^KRa6I>^R8!$Ixv)dv#_F*$Z@SmcLyeIs6xM#%w;h2eYs12 z#x3D-GH$9YcWr3c;Ope{hxP!ANQBBdxrGc1&Y3HSdk+upKYbwNG+jHsz1TH>=AV`V z^fjQLJbm)w{`1EVpM3d9NNC20xkOBZ)MZE&bu>f7T*spza@&Z|c|qz_nhR8luR>`$ z4=lzUTOZ)Bl$z_(D`RGfp>%I_y>3c{?gj5JHy9%2v@x1HX;4tO;uY`@p`w|HMC8e+ z^f)NlyvXLzZcrCSXldrZ%UTf-YB$aN`XSAH)9vo#0o_}fKV+#{1fyfoV?(jt`9B2| zqPK!5Ehf@$*W9&Dt}@r;5-*deN-AWp=dx>g*he$hf0ia83xfPC!(h$V*om~%o+kShKo* zmk5oJ@a{_R&U~9VryZMh@D7G-HG z0_6&tah9hbca@E>khNvsc}q1-GGVH1r5qrOYfFUKqahCX)DooEdoNyHi+)0 zYkI`3znTvgv};bze<+6DvCWx(k__<+>-8zWn>5Uy5YP<1DX7yb!yObT=H(FC*RgQ@Z(2+OOH_S4efwf(mM*(fF8h zmQ07b+6W{lAPq+2=|J{w>(an-Kt~HiH$|@p^P!BSx)#Wzpn(>2lxCv37Sv$CMy)qW z`bc%P9#cRLR=<|B&9zn&25iJS-2#xe$aS&qQ6-J6HLlkXZ82&hK0DORhto;YMXIZb zVj8?btC`$CTi0q51YFb-+%L-e6LqyjU_k}71b>qb%j#+gkTQj4nRO&96&wi)$g@1+ z-cx?^C}>=FbvA!tI`o;4W?m<+wbx)}$R#*3c z1O?=tW==1_$_vrza*qRnkFicOe>vXASjTceN6l$Ir6)XBvJtDRIU^W!uDM=}`D!_) zd54u8S7~;VPkZnc6T zK>;-gDJR#G)XkPy4(L988(DQ!rY})I_UYU3<57*Aai~mRprGM%{YG?4D|7wE+m3v* zq$?8WDk}l6OI46y`3+a2E@|0;`YlU4I21yfg}A&_jl=pkGOgtMak=x_+g>fbD%Cc45d_=|g})2R%O$UnG@ZUC+;fz(<*|ALmtIU73h! zP(tsFzN3p+Y0~>RS<|ZPoe3PY&~KtIH`JycZjO$U{!CrJN%EkEQpn%RT?%!zmgRu{ zo~wiD)7Q;%IvO_gipqp8MM>s@G<$mUinv6Da#Viah{~n9{JimXK*W{vx8mASxhKu6n{>|U*F8wmogw>n$KuC&^4 zKu6x?d&ctVkh;7ZSWrRP=4xK#*t)W9FkpKRicLtR2c88Lq{4bayPSjzb*W%EprhZu zZg|OPAN_WapnzV3*^VX$@^!ri2Lj)FU>cOYc;HA-KrLZwh&}ZYBN%j$SGk)Y61pz0 z8VuOCUCSN1Aarx!GCe)2*?yk4+c^`esF{+kNL|fD5O9&FHVeMeR>W0Zo^l}YQRZGx zMoD+QuFP2u=;#r?rYjel*K{p-He#yl5lWs@+x+@J(c5+3=T6o2b_EW;`IuYMy~HA6 zDr3%YKu7=cHGj&_57|Sh*-h1T{m&8=$|##}=-oi!R$bXNn3R3GAGX1O{r>ut7HWI< zPU(#GWO$d3xU9aUyY}*zx;0T|PWQQ!QZ%>HOzD!zLs~MB9@R)m8l*0gSA3P} zlkw{pWL!nOg^N%n2@2<&!Z1Blr718LiJZn#1_Sna$EL>t2688}rjp6wmIFHHTb86f z7UoS{5jmP^*j&J)pm8PAurJsP70r}QS;fJib0gBBe~$Ynbd`Y2RGOh%St|lU@4D0D z2aj29crs45gK3(!Tu$l<0U_&E>f{BuXq$R zZaXjOSsz}(vT>Td39jk7<^JVNsNQs{AsO?-y_!Qdxn@d);vIUWV@P{+sY^HL9Zu{` zM6?W&6mdmD#voIP#2-j9#IMIc8B(Y6I6X(EIM^FAGF=aagTn+7*>qNK&bJXvXs2t4Y@yXezT`LDLA;|gFyr;^i_Z~N+&2)U1w#uZ-_KM@9 z9)xIZ!RE@NMhMH!QN418h4O80>iErq&T)@N4+fLzW+^-2y2Q0kN|#eAbZ>dx$(+u4 zOsC%r=A&t{6s0RNCD{ZD)eBygx7vyPtLPs2z|uv7f&y1N)}R^PhfV{9I5-S=zhnR(hEGeJ;>HDuYPA4#n2?n9)i~+A z?xU<5Cmi199}($xeC)tf$gmb78#)wons>zZPl%&BP1geG@5?60k6 z!B1TWu3ge0p%|J5em+seXnoUQP*Aw!ed3QF9tjP_9E%SwBhbO15^6*K;#>2Os!-B( z3`_AA0ikwdv!wH5hdr8&T#fDj_P_7mX^A1$yZ93WXDn227FFfQQE^9;ptQ?Qz3x>J z;`>dLEGlS9LF`zrX_@fz!(5MU%4=r*!_#z+i>9hqNXK|sajRg(V!Dy3thj4PU|L-7 z8!(iwiy)hM9^;y(eY@MBLi0{Z)0!0zuQYADN?3X&LUqo^W59r>#PX8MLG9)Ps-Bg z_sJS=iCf=Pw_t<7!-h0J(2w{YnRIS#KlveoLmw4A@&o;(YI@@A%m^}+-=h!WVo854>6N_6 z_?2vCG~-lBDrLi%4h!DdZ0JUAUd$4y{rTA!08&6J;sG(U&{lS1CXM3x&1N#gpy*W z$Oo261_gzXSNLPPzMZjKM*N(#Gra7k%2}C|uGM)_^E! z86@;517>>t^*}zrpcsHgm^Mv=g>LL8=GFJ;r$<8X677Gc4|{i~^myFABv(~vswErT z`j()eaT6NNd`?Tn&&|>2S4;u8<0!eV)`EbvYuipmNP6;lFOi%hQMR zqb7Am)91*ux4=Q`POQ~lb7+QqEs7Ef-7B$fUbqxXzJ+{lJd|~#h)eTTl4v``C2;Tw zIsAY|3u%(o<#3RofO2{;UgvRES57?&8b}#@k;GSB%0w{eT%ZJ8(RgRn`zn1?T<3`m zjP6T>g2HvL@R)878yt@_AzhEGBoq^&$9)U?+h=t7^8x!NDsRou3Iyp^;6dxd*Q;ZC z0QjhPV)q8FXlY|G>eIXsHy=V)v9rv>*0brS{*NLV27H8{*{Ov-4Z-MS1X7|@&Urp>A7i-yr(IN0e8Uq zo8?5!0@td)qVqh-O`w`CSSb~9Dumw?!nD`?q*>5vJpV^{ zt?75RDoZS+ZwqO+a*;*1rrBy0j-inCg~LS3imz_z({>X&GR|-$^ z1aINP7@6%>CzB((>zUTj`V;Cihy>Uv+ofR0`_z9$2N(EschCJJId@x|`UNbcKX@~n z_D0Q&Cw=Zcef*H$0Ol^UDRf;u2g}4i{wRVWe*?dw+d(I6M!tTosB}|^(3fNgzn_LN z!gin_+*V|}6xA;8_%OnIzt~KtJ9`g^kjIBMULowg7hmt@Jy7lPiTA%mykVMYd;U{2 zIsgh2+Ubam4>=qymX620`!@H#;D6t3W?T|PZus-rtC;~t(=QA#U~f{p4$S%cK#0wG zwrqyf9#Q@Hkj^qJH)dW!7t=V%-dk8tWlX0@$)t^awG+#epQa0@XPG+-@#jmr$i3MnT|uAz3F@x9lVWtT!_K2 z|5=Wy?9+$zR?=oPrnwC>!0Yq%5y`gEAKpSlYVCkKf5-xu4q^5w+?iOnL|$F}@ALx( zzyZ^vH6?Dj>e0rI!Mb;!4~x4Vc)U+WF}zxwT7>Vzwv%CiDLV3J&-n1p@~&C06fvck z(>lWffrbg!IJs7XH$5}YWNi_;ib+HuyyqzoVi)jBqa$P#^VJ9}WGo2+-W&6AAsuVI ziFpva1%t?4o}QsRv>K+*%qlVtFqR>_OUaP_8-(#cz`arCzRW(&3NMpZK{+Plq}ygl zQ3qz3jw%zpS>}|`fChIWu@yUu;ovq~0vraIL5(nAGcP2{6J4!yR$O>C59`~K)?3`jsR3eZYGHQz?Hx>Jrv{Xp`_=n_7<`-v2XR^DL3BcW;KWGZuZ7-#J zwT35?WIMLvn52W4_$mXTchh}MGj23-$=yHN0-iLliglWTU`mAIRr)RMTO9XjYT5l$ z6bHqUAPDd;#X;))54^p7z_&Mi{+SR_Y}+`fgF^L+|M>%|%U`5-V=5|f50H8u2c=*7 zA98}zNemWik8Z_jH4l`^t$0{+)dzf1oN7>Xr#(SR2OhM3<$w8n@cJJ0+Ln_AuW7eC z{z6eKk*%frHU-%8VQkL}x{AKt5XIQc!!kp1G%PqbSS|;rJ@daJZ!6kz8`Oyf3eZ2J zOXzxE9=s4(O*KcsEYyXUz>(a5(iuqMB{131(iuqM0lZ*bp3lFe)uCg#V?`66!f{Ul z{9OZI(a>G4gei_}aL5p)7Lj68gDbF%0QS7K_H;g^3S49X#euHGUIzjCdO*7aWz=2> z2~E=^ql6_Q7^G~1uIStECP^QmbAoz`gct9_?hN-73Ev#=BP)6e;P03ecs)qYC@BVM zGGz@xK);&IpURCkU7?l$s3|mGP1au~rMzqIb_ifi1kh(sW!CO)D-!^Pt$#`iOogqC zkl3b~CK1~iYZ1WOD4EI(w1og|8hkp; zA)=ydbIRcXGzG$*4iU_*IoBb8HJR+*WGG{{YbG-QAWeetC!CVP)~>PYAwb($oxBp% z&aq120sJZF+WX%N-tQFM+&IHhaNw>O+?(Neu`b;dr*ud&e*lia0p;cq4`?Y7+nhu z1qaULkgwPGh5uc12!{vI*q7Wf*wsD?4xDM+A0DMC)U|Q91VByF(7x7Y#{rB(0DF-$ zh5hUS?Gh4Es+cquSt`N+Z(~*t<~ql07#G<{nA5oenVGug&xaNvt(4QJovjR~+->@= zo;1?P&gpLmu+a>r{+TX58;@w&RHRea@lK!sZsPUP0dE)=9ggJ8YGXA&UuKAUM183^fM?2Q1 z93DW^wSPQVKTfaP?b@{m17Kq*-T5vuY1f*c!vkm%Co{8a;uwHH^6aTFvMbU6fHY;F zKN)4cxUOYCPyoNib@&syMCt{ehfUU66-!s58Aw?WG94uT@{bdGMI;%fckLj>90-^~ z{G^#r8`=ykV!vyr)I)$a885BSyJkEN51?ry=!0Y^(Y1}RgcSNvHnVCo2RnH z=~~%PaNtaddzL=<*0p#T0FWkeo;C7nl&*=x;Q=(w;q%>_Lx%v?r1|p!ZRZu4vupBL z0-)AbI(L@buGF=SeQpuJnmDCHy28?~amwKVG;IQXkTtMf+XOHGHnDm@2P}7sRZ9TW zTDzu2n&e@c&el2xz}8x-{dTn05CFA_wUPJqbWSV^51?sq=uC=T;}dzHYl9OgfE#OH zBv;{dwU)yJXyWw6CVkMMYq_!nKutaM?U%`dS=V~X03?zkL_}z3Bm;mn`SjcQV0oI% zPj}6yU;u35^t%&UNEgO-jZ;ei)Wm7F7SuHY3;;-D=f6$HQ`sl%YNsUtYO=riC>s-Z z&HjM`xUrZHD-Gm$v#Z6H0H`Tbw1h1Zt81C!@Bo@9pbyNB5@~7IC{B}# z&sVgEK-k@N)>D!oVv5Gg@#*VkDf33xq5%fLrknYiRy64$V>w~cwVUZ7KvQ3wR!dK4 zpS$@7y%#xl_HR56n*|P4CM?ItntN`FASsqwn}hpkxT}TrLX+k< zi-wxwQ!JR9&&qsQaVNFnKHWpQe$*sa26QliE(@NoX>NK^wj%Ih!pE&9JTu;i-1+T( z;=)_uBw!1z&)Z1*irx^WW2@_C*vP?*Vq>3U{Dv+^G~s1L2r_hU#JXlEm`ycmcF|bl zw+II`ly7@wz95CBx5l%<;w0@Mb?};PNIXu-x%TGhXiS~GVvH-!Y@ZS1DINM$6WY|i z+ssG#)0&E{ln~CH4oIl^n7&8vv>q=9v$x}IMu)yH>i9*-4Dn*gzji2L#SEU~VZld; zZ?{P@ErqceFFKe}sPtMCU zXNnto;o0{bSUMJ%kfZ*Fjm1awPN48iabqNu@{D3=(D)DGrVt>Clegx+IcpXSM{c;N=xh2)i7$OgBU4fVsCrLUJn zdhgx`q6$CZ!vtDgwz;g>CMeED!RbY@O7>Lf`T8%9Va=vxS6~YxQ}y~;@-IJjZnZs@o$l_ zzN4#H=-B|u*|L2sOaT1HZXKXAl-exI>e;tuS(_3pyXoVME1(dkaZ+_@){5oOR6>Cb z?N6YM|E_$c)T6ZH%1QK?I;2%Z3NvR^1hy!_DqCD=#)6);rt4nv`7`ab9V3Ex0)(3F ztIIF@Je5dSt|lAxwOyNSx)B-{*scu+;$zPJ7N@m+##}t5Lf3ZYye>bAxky?-ZLgw5 z6i6uk>~M70`)VXtY(6`?0^ndKArT(Hi{=BW+FvecFPEI$RqVHu+<*c8uMg>*fhYlr zb>QUezd-=_4!@q8A8=Ecx>}FcbS%<6R~0ZI|0I8xS7B>T4g2n{9RBcG@2fw5#!Jk6 z$~)O&qF7d7fK9fH1hcO>k$dz;Tv0}`T_%+gEC`)*LVWsEq^M&3A{8(UfUnT*7^)}+ zOFk=N{vq&+*(VP$apnK=I4IrlUw!l9@gx6r+)yaWtA|K6frR4w{>L=ELEecU#kz_M za6L-u7Qk)ld~)<|DUNql7htG|*cM;MUf0LAKtl1{@MJT8*}KdCEAo(HiO>eMQ5#W! z{@HLg>fN2ml{-bn%fT$vg$M8!Kk3+e$oGj*505S|q3Q8elN2pQJ8dvlp#=!V_fth9 zUbxIeF+6QojiFG!%s(Hl=;~Mc55E^75=T)%x$xdi!Gg*i_ba+SY-ulBo^nN&j)axo zkwh$4fNs&fKYt6lfI|10^H+?`tko(dea5V!G{h4Fq}+!mnFy`K1(N2_9T z&M`_(S{~G7j28UcB}S8JjGHV?OTyGSn9(~1+()2>Rc>oktVuYE_pLyLcNc>qONlb5 z=!=w<3<(O9T2uG36BYK8!DRk;AWsFUGDu)Jx55V=3Q0<`=v!J=O{bs~s~<5US9DAW zQoS7npDw9(8IQ8#hl<&@7?X*{TnLNE{gy5c$W(WYTn}xP%nmv1LsA@kpkfiCmkpxI zA-yM9G4B#nve=EV@bsfNfVqH&C-nW9G*MO*8!l2>W zSP@QP?Ur~2g(2x~`TZNh3NVBkpO7a^%<)wNS!^hFMWmo|Yblv1!7Rvn@0D7wd<@#w~1_U|`$THzKgVjk^4)>J_Jsk2`4xlP)w)*2F zd4zUf{s%e?$o%(pX58)Gm;WBVT|TXg_bMM(!btBD&2a_L?15%2W;S^GqHDq|3WjS+=M_wE5 zE4?E;Oc3?q$lkFzO7Fqx80nekF&DyD;`kbIffrps)uctJObe1sgxJq`Rbx7qZ+a`H zbCWeBP=KZSd_LUJX*#-f+ivGv_3pnJ4>xIRs;WmblyfTk+)Ka?>e6ICDr`!Myq$;=C~U9e>7Ek=2@FTB{js*-xRE~dqrA}Q@qbnfVLS|5QA;h z3eJxv_EOztkB%`+Xm*a@o*f9Ow_h5-kA!Y2g*Si<=z{P3>%qj1NqV*Oo!avKC1 z>Ys=}_us5(6>mIhj|x?XAo3?SqpSgYJ`ncM-L1mvI3KIV3R^8n>9B!I)tc7Z_+oUN zXEHN6WD9@(crd32f8~7dpH!s^RKyDY-lhVpep#?;i$S_P3j^8=N(5jF=UD_bF?0XT zgx-`NB%8`LYm)(#*}#)$0Ss-f|Do;76N=P7Gry+Wp?M+B{9Aac7c_`iQ7|D$Gr5`I9|tnSt7dWorA?EukfrI<5Fq~d zi{|B6p6k>Veoou6$2lEFoExrQ_3lk*sXe)uP_b8ngIY%;2EZ3Bc({I^Z}C;^fl1gN zli>?%Up4q-&C5i~!F<9;+eF^$8ZBVJ?swR+F8RjfPV?dPcxrmAO0z%|ZOdwhLie2e$=!R89to#3`7>8C7_cuo_BYS(AAI}hg}`f8 zNOL?$P`K_C9!(CHbVinCE>&s(1&wR)<6y#* z8F_4J_LUTTiE+?Enh*Qg*4w%?ai9X97D4xr=EP@E&Zo;JWG|uCeggs@d1}a)SuFc< zdrDn;dsMD5YBuQ5Xd z=f{Q8P*?K_9JH>uTGoD<`J;G7!~x3dU^ER1CUH>Mqpc3M0V`}+$hNCvFEC~vsgls5h@1=wo5cnZ2_~WFas!a=r zDr+QF)h-%QT_ycUDyv;IqS`7-?X0@0PHj)>U7NZ20p`MRCVPu^I`q zLaOH#Np*^})g-T)$!Jf#9fyJ+Ax&OqUAEdZu_P#jy2^Z>xKUeIft9K(PW$x2Wjb?L zrxI9Dxk<~8D>{Y7(~671sP}^Yd)UbJP0bRjrP!vbOoZZ<5e?4FgOw!vAiJ7SAr=FS zV*G(6LhJ&4HRcCEd;AYk9V@c54-AzE1qF5|e9TfpMbV+~fLz7kpcH(`RO)>Z3Rk@; z{PAc!O-9j*$skXV&IBI33Gv3?@r$Q>iZ_pg(j{-x`Uid*R_G|YVLo``l7&I#I-Mn& z%m!1t?s~VdqMt@Kc$DGW{YH#iK22qaG?ZNE>du(TEww3k$cu(kvz2` zU_sX0mw?hqF2(FHI3nIMC}eNq=kB(%QnpYWIs_#VJsQw$R6ypElUH<+d^7** z^v~m^%=Fcg5(&v$u8C zI3K^EQ<8hhsbE3G=Tv%xg)Xrjl|8G?sTmZqml63-X`>)b;mF(KHMOLxtwiE^7-W1D zKDSp+?j;Jrg2)y4Lbuh-`Gse>45#Qa10b9Uv`pw*+F+8$TCGr^LFliuopg$|M0pp0 zA%J&rM2nuh735yN_^IhjxX?CwBnlFjA@R+6Hf0%+)S3)c67ev|+=2{tfYO^N+5Nnl zx~HU;G9h}NuJq{fsTe+lDEv}fam-;|#6=LGFY(t8=PR>%nYK@giB3U}IS}}eezB%w zBGXlG$lDP4lxOd5@x14j%_bi5+reV893Od)wxD6b4Ij8?PO;k)ry?4+RNOvrn=&74 zcStDyjSti#m-&2a?~p(0&sLN0FJZx!jg}tPX2BK-SoEof1dBFwyL5kX+B#tnqPZFyEXmK*3IX_q%GUSJg=)sRt0w5^c=E_uG2xfD*F{abgLB+6PoY) zP*(FE<&)*)kV;H)4f~djU>>neSb(8^+XuDkruUQG0KetxARm64bf7}_6CbX3G?))h z`^V#Tv!Hh&`H!#7zeU<_IalIIEf%!$Vao@eU}h!yeBF_mm&mSq*|M45Gg_?R`HqAP z{cEFUxE|B1Pxr=$o8#x3d3vT#GYobJThSMI5WD2Xn&Ar)6|t-t{S<{93nDiXkq2~} zTe7sQnReMC<%n&9g}uK!3OZt&U?J6Z6m&!g`gFVhhQ{B?LFn3a0}CQP-JWjNiw#{+ zJs!T?Q@Tl_7o@x8C(|C!o36(6ShoGI$dih#ITB)ufcywt$bRa+=9z){n%ZaHifng< z&Wk&f`)6;qC?aE9wu-^Bk1XaG&&rx!-zpqMja#BET?XoE^Zu&ernJbORtcE$i!|^( z)BPNkjrmR+LqWG_OeO+z?xg0F?NDrLO+iIF0v!fiv*Aw6&ePsE`36+Q7+D}9T?vKa z2l3CB<74g_oc8DqB)&~e6p}4nBbgPfkY{Bk_-~*BTRz!lOCd7;Z*6|)YLU}|T^|?i z;wLozG2MTj z%JpDhxqMP@l%AiZ?V5ZlmjhexL=^77e732=)?XL%$N^Ox)3Iw$3U-e6UP4QXu<`GT zHh$|Sz-asas9@r7?Zxg2-)F)QbF8X1sh)mut|& zX=aJ1$A*3x{uZgA?s*w%91CZuz$)Yi^ZU(+uD~|-@V|s5TP7!D)RZkr$WXuS(uCCy zsaIvhxz{7K)q}L6w&X%N_L~;EsVK1D5BXn0dpEyRGSuBb%-D-8#QKj5nNmIGD0*L_ z!wT2ywpQ>{Knp5}CLYYYJ^Yu53&llbQF^Aian_;$Yh3+qteH1+`Ez=syKK{+wUuWv zcDC!lvN)IWOq+=!-dZGLXSZA`xlndvG)f7&tj~_tAB^eUI`g+sSLYJPic+VA4jWuv zjelhuv4Ry_CQ@ZBvE2&6haD~zVmk^JsLShi3mh5Rw`{(4VOo+v-Da&AF(Y4aWXvCF1ecUI;r@? zW1)(?Wdq#jPEp~-4Sn8f6OPHyMjYEP1zCL@x5+vv6yF)oH?!V-`X3RmzgJYH9MD!B z9wDg@rUUsdad)agfO_88`f$F^%vBr{HerLgpk(aK=qk3b+s5&LuDsbXjtv49U*y%J z;cP)qk1Xjw0d6H}mI37ZN4!gBP2*R8H^>8gB0N!)=YX=FfKwnt{&on1OG63={uPy2;IwEb7XVxj z0q$*PhXv6s8xhb-1V$nnA>rw*@Z%?&>GT02M?~_L)!j2SB^9!fpZtS8`xzl2c=gD< zB0x_F^d7i>2^SSxVFSTNYYv3iJ4egr2YM%cEK8l@0KVKI6)+&bd$gue=V9-`i)X@o zMP=tgTH6B!B6j4k9rboy48Uus7@OBVuU8E(OKuU z!B}7XpOOmMkAm#VOf=C#ym|7epstuP3A9AL2!|23X!n8{9(?`eTQhrY@4u33G>T1O zz!+`(kuo8A8$aOk(5kBFnt&rzGbm)=qlc;&C!9-PG}H%dj%k);dO!yOlZ9f%V9S%N zayu8=7mk0JEP7wl|8T=6GO?ocnZQ;`U_igg-*M*UksQBN<2t@^FJ93o#1x|ze-L3I zdx<-Br1#<(UH-J*$V{U+g=&I3Aqj%Qd*&y@>4dNQVA!IVGo?=?BVdsQ-}q=H!aAhC$+FdH*z zx+o@T5?09;$%hqb+C2J>ssoOb)QJ70jljc(j}z-3H$P11I{&gAift|lt`r%W1Z=q# z1*ZMcG_!5Z*rANN{nl+@C|?slc-&CCBM%NJ+HQeJ{a*DP6pDAm&)xMYCh>*0>UO{c zEqN=@P`4$L8do~;VItbL1$5o*YHi=NmG_-!6W$Sn_uD04&M!@5xZmFW`r#SYD5ln9 zU}jBO0me|@gW7IqjA^LyXR}p(k3h*Rh_I0TRV-^0?Tlzp?DLA5nGvlbFv->pE+*{d zv(>Y>&HR+KSTQGHXhF7;=G@hRkT};o~o#eIW{nV#I{NMiPHm5(KV@kNXD)@ABPZ$bRq5) zYuW*~-GC(eKMmn#gW(Ckb9LJLicXZ#gHsPn?TVs*7LbW4?FxvMzYAf*kNvTxsFsd< zCyF6uz_yxHQh`|?h48^Fwx&>3C}uwct<{)NF}f&wgSgf^RjVr48AS5fL0l{3=9ZNETb$wB%RCfGaRt6DE^@LB9@x zQ-h|otE$DQf8*iA_Ia7WJ;SI(28R8Y00@TBU9Y3&^$NR_3k6ECu_=ICEi3E5w5TEA zGt|9DgC9z_ChyV^q+CefoY;AK;mhUmW=8YJa(Y_R^Kuj$0c9j4uRxM!-tGQo zQC>A8qLNymWkLs&<2g;bFXdcxtx%vr=*M(@oABX_v$J!ubj}3euF&q!uQq&tJiRaS zG~0%$8Cx}OXqACV8qdFbHkim+nK}&zDr(U2_(l##D>W>rsF9!6s?@Ncl15>byG|q7 zH1IB`Io*9i z*MiB4dqN_UBM8`+J^MRar={DEL|#-}6q4b=fx->i+-#3F_8vZa^#u+f#vN)+5_^cv z`TozC3CUYhl6IfbtvZ9``9{T_g@7rD1}bC|PoIp}ubbsd5uv+!3T9dI4{srIJrj~L za{mybAx_a9BR8T#Rz~h05D~HHj*;t`ki7ht6|ENk^TE?6rFuy*S!}|atdo&)4RaVX zDSveuAVK4=r*y(tWJ5)7Meb=b1n{oW?vP`eyf+O^X@y5IcLKx-HSTnCkXvlRr`!Mm z4AqO#m+7Vy#STn_HpziMNQY67xZ*!AZm3gq9|4dmo(7>y_#K>#v$5jV2Lu-~U_r!t z^Qbv~&aZ&UJzKTj1R8{V%FtKo+i$fg<4};eF?Ctae*WcXut@WOVs|VcBHAPofI zX_)cKmZd7N=YuRfudbGoPBEvNvC6i@3b5m&EbQa)tXZCxEcxT!GLh7PEuUnzJb7{d z70q`%YKoa!G53=Z%Q2Jdz@`r~!oP0D8{gi=m5gHME`ycL5fZQ@Pbu@WN7P;5i)uu1 z-(N~e4cL-bK&X7;&OjVF`>TLTO0X+0RR@pXcBzULU`L)-2MyigRNP^+zqFDXTWmR9 zwUnqm+9EVy%YVrVzzaIlJSrt=oOuR&t9V-FVBx2kh2NRGMMrHJ```CwTR{j`U7P+e z8}uIi`SF*0CT~d-^^Gj>|EIzVM%enM0E5yEuf)TsqL$)zdjpYL0tdAVUX7zyRAGv} z}>i`J3ck$E5-*k;C zgcKr#0s0Dl@c0|3#syF@`~V;5?>!J+DCTJqR%$Q^_-ptHd12}i1^$#OP@EX&20t*yw7d?X(`TXb6d=V*t;{+F@H4~%WK*d)4pq$2+X;Y2B*Vh zBXdurC~}GocPXf7N1(%i8)-N*{UO8^`+HMJQQVRt{9zjApXnuH-s)(^|H1&pd{hc6 z8Xy&5$n`YrBN{jheZ^dE$|&j^Fl29~L7v&1ER^?E3c!YVmg;$=?<>_UxmEai7Tfz0 zwqyur1uc}txXZb(f)?m7;Qchc?U9%~;uVKmQdBXw#e5j?H)+VBKN8IMV3$q@E2hy> zXwjUq5)At^Wkf$O&NnJ%VpHTMz4|Evtahka1C-zifW`<&hJH-`?U#bCP{yq&YGo#7v+^^#5 zO~lXQt>p7<>M;4gDol0-R9M{n@3I);F!aQly9{=-8`f({AAbIpn#M5Nah=xnFRT#DI93ThQ1M9k#_L60UcHxr(xg&s4F)EYjF}LRX@C%dF%M!tTZ}08jSfZT`|Rwl5(l$z7aqWCi^=dMJ%;zp{Ksyn6L7_PyhB)i z0SB#%LQAeSDyFzwWx`71W%rwJ=k^~`L(w-WXarW|2d!YyISlIl(916(x-=ERghRX7 z5+Dd%Tf96rXZ9Y>7WDt}8#Xjq$|0;yfd{cGkyzp81x>BfB9&aaa1}y!@$BLJNM6gU z$!R5}2nV0e)2%Kmb9czM5ATWe(d09PwNZz^m<0a0MPu%bdG_?#=K`v}}%O2M)=Z|B4vX z6iOG|DkUt4{Cu%&=*-eucC!@ek#tc#2H^9H6?HaNbexO+SD3CT>%#OH1pG&f(>`y7 zGVyadbg!wKp#o)WS-B`?IU<^kuI+SKap`;BciMY2IcoA*YDJl`!Hr@{g2XlZ1!cBo zIa#0PGK!ielaVw?owL8oB@~^^Ou|xtzGA6XqSgnP!t9m-0)KpB(ATJ4~9LG#Z{y4pbUUAr7R-Oz1?aJz8Jbg9peYG0hJ3OF&ABjppG4^)= zYk3BP&Q15TdxzZfo72i*E~Xg#7sOH`6wkZg<~oY0pMs9%fPQXuLQ~y6^S>g-6kQ4% z)J0gJ0R58{y^te2dVe^3M4xn9Ed$6KtJ!)nvaika@!W&_s!>G;-$Jb2MIPj?+F$ba zURrsz%f)f8NRz9KK%^yL5V~ZA%zRR|_N{4|Q)M)_0( z!Ku>c?eU;k_ZP_AiWU*X#T^lxUbT5i)!5_7n}>6e(G=UQ1t_;eprQVu2;_e9;_kCT zdMNHt7qC_f0)DF%-`;zxRs=k(_@yx49vR<~Grm2$=@P&^K8g~s=B5Z7;w)}%G$V?* zNaiL4E_C0Qy8l0KZ`vi-ZKMfzYvEq3;x1~vvfQ@ZRu*m1c6WPbdS0qXN}LfFvx=5` z8%|bbR#lo=ndMx#=$!YQ{sH%+=A3!|UjLH!i2wpX;384TMePq3>*l@B6957MAP@)~ z;!J)gsgVWA{uES#T!V`Q+D^H&)?U=G3YNE134#+O@v8G9N#Y4a60HsX_fUZ4wZY>G zuWpNHgWhW~X9)|jd|M<4L=tVO=ta|g5^^kWsT%Mi#pUr|`n^f__N>6t0&kKanEud& z6RL~y;?{H&pHnTFHd$m%W1xiMyihzH&VLvxg-3f%b$JAe`R%NG9LXfzzzP@T|Rl;}_>J}5#cq2ap6Z;yBX49A-)#JqLyQ3PD7 zXqyhz4E2m?fhrOhffw1gd5~OIc8en5EIaO}`y(RAmX$q#5%_g#USRk3-_TW{S~W`? z0b$#QI6}bkn;#ncGxOGc03-0%Xpabcmp$B3^@x&1_3y^9oF(2g4`TY6|2qH`&bP-C z?c<)`!vp|9+W;D!^h)1ES+agM-&?^WEMZxJ$dlxzD{;p;uD|E7orO5#qpb?357#%ZuQ$^Z3;^CP`);0 zlfMj>a9na6_vsqT*rJt8d<0n2I5=TicTC%FaDrRArAp=uX&wtEELS6zoyLs>C0^Sc zl|dA~^+|igu>m{n5vSJ($KrxUlFzyFQ8`;4L+f~K(kW&+BjVg%Im{CeW6E3Yu+qnINQ>*v2 znOr&lol`EqA6sN;bT?De5o&8+KRJPeEp1)pulx8 zqqdv4!vB%t|E@h6V6uig5GW~VWIhUZi)YX`V1>P<*msfhd=EiR&#{e&*e%Y1PJi#f zoNdAVtt#W6PIfHLkmf`hkq-L*dh!a%uQ|uIWUmfKq#}K^7`DSD5QXp3L|lEzya)v| zFb`nZ8hAqWzJD{D1)*Sj!6U_-voarC@t!?5~bwE&-=JEMu%A$|V2QB1}v(Kyev#QM_N(*iH!td}`s;8HX zXtTI1oDc=oN6Go-AIxU*Fj|79Kg4C}syNHEl0g%ijR{yc&8qY{{af)A?0@t3M%`j0 z;kZEW^d_4-_>Zox0`H0a)-gC7K|eRaJ|1F?H+OW}jRMb!d}+Wvj6i=VFYMvU`qAFu za5x6fmie!$s6Q2qBo<#`DQ5MHu!t-lcv+5)$l_6EA{+#3Bq%BvV(rHfc@tK+uM2l) zfC!L5CzWfrfHp)?+!3tMy6UIZoGWlDV^YDaCROGnuCRY3;s$Tgaxzin1tZ)E^Z~H& zf12Q@;}5~Bp*1boBs@We2wdd2k&xqY?Aa+e<9Gr)Lkj231SieD@93#~f!p!~RtqY; zsXC`uezZD|z(tNruKd`sfZH>=4yvHG6@cn&`wmjr-j|n=Yh&C#=u!sKRC2(AL`n%H zMV?>~DO}xS3ky-7-44y1H@EE{bh(VOxc^peaTTBvNByFxL@H-?$GDX(utKXcyD3=V zz9O|b=}}79et#Hk%oN0hh7hXgA*K*s3*R>B+`by>!}ulsA3M+yLz9w|#1U$ebnCFY z_o9(%Vp&p;Dx_D#lERz4JB$ljU|T|rMnN5@P^#9Xoya(K;j*nMm`OtTqZ-w^ETLcu z;d^0);71dB99L|?U>V{xDpmmtwdLu+( zssX9sbWQkuL$4W7sN4jA%K1&B=ax7(a^*9KLZ({s!Qgm0c|7Rr69~(;q(>D}x2B*H ze%s#d_M7@M$C@J9Sp(SFwD;-KP}Pzvp*65Vt4t#`=cD1I`_*u$m#oX0Mg=U?N|kVT ze6$2#R+S8*kg0JsS;l3@RR=1RN|8+D&%^Fuy3!U6V1?E#i%9dHvMq-pPI@l7YLan;X z&dM#XK@_r!VYNp7s}h%G&c*{yXw<;fn3*g)aH(mD>Wye>OoMTLN8b&%tbGk&rG(z@ zOkPmn%kFSDTDZ((cYvXX=MXeWNmgk$Hs{MyI#8kXHU|PBs^@_A8h6{;r#g?#Nfk82 z6=FZT#TVPhy+K^N^UQ8jq=G4gz84bV-8}r!HQ~@od&|RC1kV6$6<7IaQ2M>0Jkt<94(n@v)8N~FAB%aWnH+0xB zjt(If#HpH30}_KG(AW9*-S*y#O`c(GPhnr8L}(?gMWQi^XKI2bNRhH*@5QP~6{wJY z=u65~K;qqdz1M9Wz3b)qYCLwRZbzj+uPU2!%LRxMZ}COt0ylm^Cv}8ivEJ_3@d>4f8uzjqXyJYh` zLBlwLF13|tkj2_OYK<#adhEHD#jDKD~8S)dX^<5D~b7u$uyc!kz&wsnmfCQ`)Th@wxh*I851E$4aR7~ z^u91ru7BE}!Y*#=8iJDH(a5YA6R5&Wt;bT)JFK;B+_Rr?kdX`=0e#aiEE35)dCjFDKZzea$<=SwvjA}{Vh5ABPVO0a~5#&}YfErc=03+Iy9 z%4WY2Bw-L+ZqwG??M0^w7qjIdnlN3kWw}c!T$DnWOs|?HF*t&LUeMzLl!S36zzIgM zrKezr^%c(8JniZg=wdx3023b3sr#eh_uWA}sxGEe9xG-^4{D3Ccr0NN&9xIg)!vI~ zt{@46*vM~iRHiXlE@mSglyIE2S{02Z1-DGt55wsOKm=D>8Uypu_>b`gw~Mub#}XE) zAvgSo)4|1R$U!AJ;z`639O3*y%7L_o&B|Jg!$C=v^h3?tam7wmdu1${w~ zgh8yhecsTh#jJRUCQM?*`Rtr3$zoRA;0U^m;t!`hPn2SYdb`*t9svp;tvqRbwLfpu z&@@=U*Vi0CVnkt-vBdqZUAK#kB>`B>LkrK&PQ%r=7*7BuJfeAz>8M_}v!eM!h$c+Z zi*U#mQz4xgV6hQJkc2_(3_K8%Ar4b0^O(uGwPtRVsXND3_pfygvG37 zh$c+3s+Zrs!ctFjEw;|qc)}*uOnyZiL*p{ElAVi0+t`{CL}84}cfUVuYlF62`3&AH zwg-bwbk*B(Yz9x*VlBZ%Z7b9gLKCLA7N63gRmHVjxeT7L$xNqlB4V+b4#Nocnzab@ zFq$)$xuj#?hy@aSCp#RKs)81jonQo8#+MyDL^=fpzu5R9NWvhqetO;SX_LGr>R&&U@9YdIiZExErMu)$MAy%w;b039PvnsD!i7DxAWgMKObC!95rIC^pNH?pt^f4o!%Q0N1X&1Q#CTtS ziG>hfh1F<~f^)|jDItRb7XfZgM}5kCWo~nYM;eifiQZli{HA~m{Y+?K|5$w#vNzWN zCCv~L=0!00BFB454!#ODQ3)kxATL3PEZiT>;%-(!K_XxU)~td+fLsl1 zLgaJ}1aJHpHPC<;DSmFNZe)_@yM24k({^V%IZWka__qSvU{pe2!#0s;5+cx`64^eV zA=};F0Y>Lp!u_w63fJTk>E4f|qYDsHl~ppwJh`$$bdf;ph*aoS8&@IU-+7XfqTqae zRGw6m#S9`zTo;sHJSD|y>LNrJ3B;mHUCgM4k`d+P#t6WLU+kIVZx8m~JVVwZWV492 zwF?rg7c|9vO(1f_EkUPEf4r6m(M5vKBH_Q;*?H3F;^D04pH|XglQbgJPZBb1;Ydxd zi|GL+w2i`d3R3Pwh^gK}BE>8s(a)mq>0P@s&iT1hZT7D#tEd!{NcPi|WLb;*&#RNG z!6QrD==!aeP_`}$;iXJxvRV-!h$d9tK@MJvrM)LOXxV~OeMM8=e@ zdWsZPl$$E0VXL!MF^fp_L88{SQ=*j5)Mc2QWi}nW$PkaOl+vj?LNW~0N@ToOGrmRy zB1dc;VSZk}$qsL;v5sjTk?L=v7UH*?Q`d0R{g;(!^b8`AE7lx-{m0WB1ursOkLu>B zS?Q?mUB1H0DXt(3v#hV>oAh+BAcsm+f>fvR*uoz7m}i3*gW;<|s`gjYV;x=7$GDh_T>*yS_Yd`kbO=_~sN^k_N9JS#v{tr9$s znMA6!>9p6`+-~o8pFMk^&y*DGSnA=+XQ^W#VYq=PN>1^-xkvfDpUa=ByB0WV72r_;UCP(w!U*_2zEDK9L|a7%iMot;>rfO&pd{ zu)!#wH+aI}j1S~3BH@j}8C6-3NkE_)gfXs^a6`V>?+x00goh}lDcIbU?-ip16Pok# z8Wct`6vUs%r;34a1pJd%;{!};_BRia*#g&YnH$izzJ8Fh+XX|1gPR=nKXZS~z!o7s zOum?spx}hI!V{gejz-%iCklhxr@{kr4>D`Q7%{ z5A4(`RRaY}eZe)o&T7PoBqCNNpEtiqTw7S+VHCU*#IfKa#(VM^j+FE{KV2&0f6368 z>Jkl5ps(}Q5-9COcIBqf&1S2LG9F%Z;{Q9WB*%=;f z9#8vy`tRMx4>>tL&S`bq+96SJA#99hN|&b)QEtQ^KY>U{fT228fnASbk}?SPO!DnJ zfBF)2@uQFnwvhjfMDC)(yPNm=UAmZtGS_Tw{rWeLz8fL1V}xsv;#4(zCr`LMYS*AL zgR71LLJ{yI4;2b%|E=n%U`_AA3gr?W5$98nkPwIJPKi{o?d1XI6N$M*tjeQ=V(~JH zeWgmOf}KK-S146LB|?4RK|-PaKtbtBo&sl?hbolEu!tx#nvLo(wP^Y=nl0oKu|Dy| z3Tx<355HY(0qo%lYsoW-NS}F(SR~lQgjoOkN3aGYmS+>uc)%F9kz?A-KykCe3f~Gpy zs%j&m5K%si%P@1ZtiY!gVut3?39n3?R@|^O&{Yncxik?sU=}Kfp-?RU>~a>&Jv= z!BmyZ*v7$NrY$?)J~bYf<195WWI`;G$NBz z9bZeFNqM_@vD+Lfe3CRs0Bs3Gj+;^tF9)uaYGl+XSXT*9UIqadex5t%wn1lp%37?{ zb`A@hm%zh|3|Fb_$9tQ5eY#w4)8v*=kklB)1_OK6m5ZjN24TY z9k38z(VyIJBVnXsE%38yhy<%a6-rum1vT*yj6I6QRkQ`WKpG}N>yd?;^edpo9u*%T zY|fPnHb68~f?lJG2-L*_5sYJjH_KG{%a)x1P(pwZTj>AB(vOWl2hKF=0Z+CvPMxv^ z7Kvg(Ls3rP5wSkkV%;6?l}J{$qRC5^p%USuI>Q(LDRnlBN5rB*BPg4D-88$>rn31) z0G4RN7+=JQn$GwzPpqI-G+l;Dgrmt&P^|EaL^YL7m;<~-H6<7^nbd40aMC#>HFcJOMC8{|BQb$N>;GR=m1Rp zHQ+4Mw7xi=bbf!_+1<0b+5g`kKCl1!Q>7FI8BzdX%H@$-pSt3_i_N_#-(Z0tnSsqvg8fbh5k;zVFW6%kM^I072aU=oIAxs@*dht?J9KmRD&%Dx zK|R$w7z{^x_|71{_HjWu8Ank6T36_TW8JZn@~vYHxL~<~A`-sy7aXHrMf)(0 zpq?J#NLG8Kffuwg0wvg|MqQ+O)^=vW{$-Iuk!ExTf5kv>9mgD?CD}8nx~MVtmQzEq{2x3ByrK+>1bFDjeAZ2nvu`OXp}e!*0l zzGTm;pIP8h%WLF&2D>-d>rXq~7Sf#B;0je6i!-%dy<8Bc4tAmydch2MMmc&&#u(%@ zv=w!P+i4U*!32H=0Yk~`<+>@sVAz@cip+OMMfPXaQC3Cf z7c7cQ`#4rb=3Q)xZ1|&;%r9~jnRc|Ss$|~rqR8|#Z&hS|+Na3$e&VXg{K`&|X|ug5 zGC%!PWO}x@Dl$L&yBgS1ldNMHT^(GIgeAb3ZI7`_-SP}F5UdB^Qox7m4+X)K!RL8u z1{c=z2Z%SoFt`ivzhW$yEb^xj7doSZAzU(Y3QZiV0?@u zF;LP@7nh9nwf+*?8AfmzLy$KWEtwMc^hgvwTw$cHy+y}*@9$`}?bn)Ai=uu{b%xU8vwAz!lIzF#Vn(xQgAkC*eWUDKm z*B;IHV`;0`8_lN|$*U`$*O!ek(gwf^OmX0YH}+M}D7ejtzmMz=Jqr-U;3+P8XSH06 z=(rF_MP{7lkLY_5S3!mk`93O|eJr3tcS&AvwGa_Umv*bN70i$YU?x9Rn`7s^o-%`90`!@@7l#&Mwd4 z_h~(cR`umMyw}xpXydy)haa{*hi?7lIs7GEoCtXG+=!!E&psF7C zmMu)+&2%hu=gCTo;`i5m%cN}BvW4;5d{zph*I~;NcwdDh&{4R{5_lbU1gmXtue^>x z`{b7`fmd5cpjY|J5_pYu1Ud?2Spu)EjzF8;WeL2RZcK(Rx&vgA#8j;NI-VI7%rM>e zvE{Y6K_KF~dp8k7vI?rhAO6qJ{_3y)ivA~amh+xdkMgVF^W%I#qx<_RXndbvqsc4J znsG^{wvd^~SlNg-AII%Ph?r$bg>85W7)b2GC_7v-qht}&EJF(^WEX_2;nP{JIDRME zF)ZRX&QzERR=zC7Fo&CH?@HBL$%1Bftp%V`Z`UG1gk?;l4Y7jdXr_3U)8Y#4C84Di z$o_N?g_tkbW`07uE;L8IF@>h9x?GOLyAE7g;GxFc3GQG;Q{b7+RG-I`s=FvfwMu*%yFfuc3G|%enI29EK$7JL&%k$BP`ct z15i-_*EleNV}w$vQk9GnvkinG3e_2_Yg>wA#im%n+AbZ>11UE7W2(7l-z zbUi99hwiQ42Xd(>rYhq-nw4Ste~g&xZgdE>Apf^O#o^uZ+)=dr%I~wrkKpIiwL#oZ zxbePHIeabuJSE3uc--O*xBm=TPG}RfOvBH*(z@^~!K;b7&@2Cy5_@Gx5$jI1Qexlw zDPrBmc?;_4<^D9iJfg_SwodHG>8ih*B6!F-zq zGAU-nHY!rI3aB$^E1EO6FYfJhh2)4(^g=7<{J zjAcmzACn`Yd|Il{7KANkOTvJn(Y`Q8?Ver^En65r1*D{ErfCw9CCk$IxByRc{0281 zt+q6Nq&zF7(S38-a`=Af2(+zUmcT2QBhWMcWeI$PI|8k_%M$peb_9BEv@C&dx1%J%`@PDAsDvDH{LW>dviECxOMy1L4PE!=9B7I&S84)`SblLGDvlwKUa9S=aS7pIMB1tpO5>)$vDFNaxP3p zaFAEpyJK=rPAbY$Q|=OW56BPb+TliW`pnetBw7zBgrB4dE4m}8!JJ84RLtCR$RffuB?A8(2LNZx(MiM( zFGCk!>bxu+;R)SYmp(x$X(r22szj24A%K0=?%@nWwADB#tiup#-`VZ#>(ORDo64UH z*!f*tjX8Q#HFlIU=`Rw6Hz@j`)tTKl6P(eDayrb{^Bsi9dx@Tm5hnVgTMc*rjB{M7 z$ub__l++HZWwC_j3~h1kVyjD`&nLTs5YTs<27JEJL7VK0{AcyDJ?b@dER$3$Q4b8% zazG+4Qs;I@d+~@cXC(-PfL^3Uf4}>>N(2jEu`8Ebno0PT|gHmOO^QUUrWviglp; z7YaXf061AKR>qbC6Qa|539rF#=9*9lf$qo_R?+e5LmYODn=-REo@h!BX&rt7DWvQEjp}8u`%0K`&J=khkyR)Lo^SLFQ3U#(ZhK$*Oy(Qq`Evm~*L}?= z<>Q8&PhSEM0p7s8+bBqt2&$UT5;`bKn?vzgLULvwo1Klen{OO)5CVFhW<04W#C%Q1 zKB8#yu)z;!O;P5n6bBX0P)^|*a$KvX`pTT^R|6mwa&f;u9FD3^?`5yi;pZEe83?<< z7Dx!rI7=RmmUA|vj4T3rML??=3)uOV$bu#ZSgFGZ)#ZcsXcr4i7{-1d6VJFa%{RbV zFqlLKCPZib5-_Z(`HYpv5ZJ5kQ5E#$kRfyGIbqiw93r8ebrG`5?$`7(bHVeoMks?q;YxmA z>5O?84IlH>se=%CQ4JIq98ZPjGg}@*V9(1n6}^|b>&;mWq`+{c5{iaqt=5Th7J#-W z0(~{;FxB{QI%!;tGM}*x;93q&$j&$iT4>GZY)+~ka#d;2cx;iywNe{onH^9=ss50z2v%dqoONmdq#7<9wGS{QIO-z0K=L62<$05 zifehk#M`FW#vtP0iXgTOqEMbnEMDgx1qq_(t6oqa5&V9&iRzk7ox>TQj!h+VKtsL2NiqP-ad}5zM9X#($^yIXiNaUZOMs zji3qDd9!O&-Tu|Dex=OAd?S-VX)%gGpD_=6dZ?dospKF8^x|KpNF=}C!ifNM>9SjKVS1YBuwxLDWEu*_S>W6$T}|tBQ?g=Gvn@Grc?-3 zLG#tUgAlndA#Y1&;WMAb2iA;r&pI8~#+Xgl%Qa4X%vU`Ii4Kn$Bq_>e$=_o6m`);ABrt$lhuAw&!yl z@aF<{j{d5eS2E5wmm!dr0TJM{415T8*fKRuxQrpNmvLT*&V@s>F#&F76`s%4;lNrB zOo*;XoX2YRs{}2zUv=eWZ#2OeQgsLT*KpA2RP)UgEE<&Gqe-dOh3crihkDh$U_L`8 zG=d})Yu|U_2iV6RL*vBAd_5RAt>Hel7#PRGPiq*S&hPu}T_ldB2N8V)S zfpnea7>#}F%gx&+5SqWPH}34c7z|(ayPX3zYU3X!Kh*1A-X5F%!`5(udoPtHXB<>b z5)D(|cua8B)?s^a&>cg=I@SH&Yb3}9>8US&vtWUKb7FzkzWnVhCw->F2gUiVp$I|h zPab%WeZ~K_8(Ow_RH(CG{?@oibVFsdtgBJi_4Jsh)7(s=lly!|FEXQJrpuF!sT?&$l9xEazAjzED!hk(sxp zhFHj+U-qR?Y%wRSJ4{v4h|=}finY)6#P|hFzOx{Nt$5wy5Xp{ zX@<6swFr36NXWmcz6AUZu* zM>NJP5uYw8VhX?hRAju%>@$Sia6%rylZC8As^Ky-Y^ghUNnHa7W0ADp*A^S?wl-TO z3)n)H)Ijyx9oF^gsnK;%og%aO<=?3iW!56D`+X_h&wigCR4=zXFWXoKc5wg3?)2aw zp5|v}Ax7zYNTO*KzKK-dykj3$cNreTtnKKeTbB_nj&tp__iepNx_4&|E7%@qzsE%( ze6B5lSATrRk%(Sb*c-u+UwzYUACnyK(s!CVQ^QVY=p)ZN{-OT#YYMo*4%*{mI$}bm zb^8t6*GJWMck~hqO15eji0#$$_AYL9*ZCMSmF-AJ2k^9x?FHJ5)Urr2<$D{QSZPbf zQ{%>?TRs>`$^?}9@>jT-pxee2(v)a8;3Aww)EEv`A%B}9%2;DhG)AmKzx#YVIhr^o z0joc`V{bsfZZzZ5?7MOcQzl=7t(~E*nUadOPDVr9W(uX=FbYa-_SLl4?|7;%GWd2H z>)&~)JW9QBPY~^pPda#!O4WV6*X0}6wK8U=8OdS=F!i~69uqVdh{j%js!1|a&LoKg zsn;Hu>r^po?i&?9Ygka%NMg01KN_!jC3U;Ccsp)kZfd4Or2K%-o&F65!m zWtvxA3_|@bHzD;Ys;~Agdnn?l)662?w3GVOl_NmIv<~H<#p0c>9#nrc`Sxh|1o2IT zy!J46AHA_^3V$6=`(pm2YBH0@?r`{OGQ8Cv@`!BdXJXc$nR&cpwE^1D<1t*0mYFMh z1V_V5k}`BbW;_9Y+_4{uEP_*ie7B7tj4eL(0F#ZOmFvV2f%a-!{%Qr|NGL&Oq!$S& ze5==w=tI2v>K&nphO6_~@qq^%84;s`pQvH@P#8Tz{WnhxmfJ}(24k1T4H`hOT*4Hb z6yXv8c)Z4@JOaAl0#+5DaTOW`kk5?}y-sjM96xDo$`nTGP{T1oz5Z4A%@A5Vely<0 zlb0m+TWt-UQ4rU$`37DX%8nY^F)O;fgQ?c59`=IWI8Ge6-x&9eXn$m80_1rT69|J; zUnM33tGOSGPd4-`AJXgK=cL)A|;U$m$sxD{7_7On}afp?%ca@3$kR%M1omdwy+Y zBiRC|`XU()dQjbGY*4<-ho)6O$*}l3q=Q#Y{ll4a_)WIt>>k(JS!Sp@U7Z#xvnx=* zf+^|#5A{cm$;E3D53Q1D2tx5JIeaXth)a?aTz$jnKZ;!8Z?7su3-zSu)DIPJ#`2aF zn(^xQJaMz5n}h$@%j5H@pF|0gn-gPCz0}2x6AJ7nMh8#z;Frn4d88d4pB{ajqoYf9V zTza1qG5@XuzukGu*rSE(maz{?f9QaLGH_v8xtc!sEEzg7#ny-Goap#FJU zOsAxF>zJj5QAWk~hOM?_InWYj=9Q{JfiP*0Uj&V+G3#@8JOLWiWYoYr?#yxv_Z1?j z?yyTI54G3f>FjEXh3Ir&Y8htX*PmcDggqeaHe%b+6d#Ur_qwhf_GrAoM8R|(2DnBZjLv91`6U4OW3s-7mD_NPkn zCvaVy7fnGGt3F>a>j^%Mg?Ndv<}Te9Ii!egGr6;`+ew4bPc8)xJ`MGe+=8n#g?vUm z1idsJ7|w_vFra!@rF{fdHMA#^Xvq;6y24^4|}{z;0NdH!gYSMr&o@oC#Mz z^GM@7I=Wo~CE>W=3n5PQS&=uY%hn z1g2pkV%+-L)9GM9+W3{F!kX0dOw9g`I?{4F+E>X;yJ971h+yIB)8Cq9I;p;y?4Y8L zru_-#TDW(x;X2Grc24AsVC#=DzuB9PC?4$%FT5XWUWnuj(=k>kbQ>`p_R$*fXlcWw zv1Lv4p45E21*mLM!QNJkBc5a1unqWnBi>k~#xb)LG|ur5;a$CQZ%o`Q{Jl-x=0p?B z`pgsgr{Ww9Cqo=tRz)wk6w=|_?{(+HuDe04&pxsL3p)$Z?$x&)FLE3~j&9%-gz!cboi zdJE4hLm6#DlAg1}HDdr_vLL%oKbMEjDs#4*3QyKA;|zQjMHhJ3Mj*17UR&;X-8|B6jN2xpO!USGg<2O zXLp}e_ej&WSkq`=ZVG1`{zn!rW(kDbX6071hF2799*3CCvDQw_8XP8OEM_39z7rZ$ zj5Fs58NpHbaWLSh_R9Dq8Wz(=Tt!o;1VQ~#U@s*;3;R3Y8Cj@qM84?%wcB1lM1dmyWQYr`TQ3o?5EZ=cwu4OCf(=o zOb!x>Y5r;1K49y_=E5dVrO?zLVA{@qV7+qhHFiyD;j)b-QWrxZME%8yq9)Dm^Ky|> zqr*&r9a;Umr`-dH3xB-{3K>*mmYQM~$ydaVXY!6VE%VQ2l*!L8&@j=t-~T;Ff!rKT zkHJx)JR5wWV3VbaEZm%Om}RZ%Wphj`QwwF0#3IjRKEPSWsQ=8dQf_+mgxBHIU?KShKRUO{L7%lXA1wtR#nSQ#_C&U~%!a%U{T(aOhk8VA+fla5(D9rZz6n z2v^yejeNBx0zzOgG+zA^wpn;68{3r70ukQd?Cd9MnK5e2@B(po<+2Z(@7_k0u zYdS{hdf(H+*6~%A4@JJ}9#TBD2{YDpo0&?xFA~QVoG9)kRQ1(6@)-HC92>;A=ENAc z2IFKc}cV!>+LDprQJ!^NP!g@PY3O(t%wMzUcd9~Igc|o=-!x-Y3tPpoh?b2 ziT@L`r3p0@jy^qm&X42-5K&%ePdj8LDSAL_UWw12zBRLVaioQ4($&r|N4)QyIcV#O zgJ@h6ZA!2NAdqL<(*qM~s=Do>XKx%B&fZK9D0&qEH9nNp2NCj^yN1($*yzAn$-THx z8G9>*a&fdr@EJ+*LcIC{4)_fnJU7xyT(pX?d)VYRs=%2;F~S#~_6T9>YmZ=K$8-#= z9XkZ$PrXw=4d=zqbpJ-!_)wsQ9VxdPQe5)ddMD6|1x!`(dsK- z0iFDD@FImH^;Mcg$>GvuH!JWmr4E@UaY>AEH*ui!8o!REx;gh}7YnM!3+^R$CnK=S zi0EP4S<=u(l&6-_ibNLRl(~OLac7Qix{;$f>R6!q!>`P}K)76Ha){VI%oKwY51_ng z-b_}1X5O80PQF?&M z*ve4Jx_g|*Gl+R6JWfZ2In4%G`M3$vdl(9o@(R5H%P>Z2lTK=E%TP;WPY|dD55FsG z0}ma_vhce8o*6;GegW)<-Pb&Y)g{gtQK2>8I#!QUzsu&DdMvsRCGS{tZDYO`3WX%Y z>lzMj!3~Nk#MvTUhLTxGq_`ne{n=N&$t%b&$AfX0mWCjlZtNl~&8RXJ@-#%C_f)UR zsA#A%NcO>puv}j?NcBy$7+qLqp(Cqwez)HqyukHfNRz2pi`H+rmZ}F={c}Xv_uq_r zLLETX=f9%ADno!GUfo4>+@Q5gE3N112St2U~>D7i6!G(`1 z_JU&j08`tAxXS%gm>)VjJ;4EEOg!9CW>9}%sIj!=)8A&AnW}?=#a62F)4=sjstFhm z7mtg%tr-`oJ}z0Iru}|Ol!DOEq$mL#Jj)~io&>a3|7d_)rT!_r`oa$2L;XV+ryj?{ zs%rPlgeRwU1_=F28k`7ujd0rbYQ>T{T|R@w^xGd`HEj>JNfpRy(s+;Y?F(eM{-Q$L zQ)`~FwAz4WY*5dYgRAE}A1 z?2Zt_f{-zULf{-eZty907mAj=>LPCjqu6pKAnW(PGEd<#7NW3X-`O2^bTZRl&TckJ z1UZm|8~kDY)j!{R`na|A?VV@a_o}b9?^fSF*t+)!|GxkDX|?tE?!D^4qiW}yd)1SF z+WF@3qw4nNKWzTGy8C$R*~5E}cJAyvc>IW}+Mfq`W)brSB5pXHKil&z-xqn->r(WA_TeS&hUGv6~&ZU4mjt=E%{Q^+nlb)8C#~KirzAu zzx*Yp8}>py9)hmOr>)_jWh2`Ze`a>+`R#|AK18fP&q_j*`yf{Ch7-ypQ6wbVL{)-i zCLJ7+dyBq^B#Pju#cd)2lTnV8>l~BwJX`T)#z$Wf?q311fx@~%xb8@Lipo#5nRQ}< zXu?r4!|GFrki--E)3aJA>@Hx$;;uyWlj<(s;vEf~v1SEW=Z`TDrJ-g#(Q|@~Rh3bO zziPuT9CCX!ObdvY=D8SQkk-Jahk;EskNJ$NW-ait$TfN~D?R7Ah>+g5_xW*IVK+dE zbUf^%QLUTlX2xzno9MHkln%$Jku4*6e@Kls$jid+6|pa2vu28D&6Ip?3FS`#L%rfr zb%*>n;edUXXh~3Ar3D!;pg*3=Ak-h)M2o~lkFWwa1BPf1mvY=9M;5kYV%t@qKGC`W zJPNJ;=ok)$30?R2&2El3`PPYhj%QGaCg>6RJ$p344Wg_HxxBg`e;!{!#QKcdqT z!~Mytb~NqDbe#S6Ut)iM0<7Nr4jyMSB=*LLz!`P^3$oK7fhZzLkrQQr!-0MH^aik+ zICk>iNvOB?{^1{#wLsA($K&7Mx<$ACZkkbLb2vJ^&$`;+7Bj>V&sMNaKl%*3v5Y!U7KohON%i+3m< zRTVT-W2QII7g9)kTd!^5fjhBfR0B_3N`w}MF`Y9lGgFbe^dX0yDnhKUKJH^@x;jK! z$rcCs(maj$FOrCKgI!|zk(rG6RbUhf5W(SCG>)vAv08qT>{LX*Mh~I4M%z^7X6&q+ zkTkl6LaRU7GJi{IT{mu4`=jAewM7!VOA=_qlNmOBxf`h{3{L$nahgd8KWVkc=0+yX zQP8f5?a~-gy5Jf5VFJ&hs=8l2kb5CDd><|O4UHloE zs>w4omGX#r8P`D1HzP5#ZNs7nW#bUH_ z&$*Sc4|{-o4tklE@dLO8A=1K_FKtQWPpFPr1`;T@#9LUsw$lb(U`U?Nr+Oxq;uxrsRMHzR3r;SY}F-4g5 z`(XeTvsQb&=rLKOt{Fkh6wRD4ibctU3Y{QIj9TAx>n+SD%w1`62RvH#{N53^8WV|y zGF?m>7N1(Z2{14jIO>F<3(R1oD(=Kd2Ei~4kNsSf7!ZEf>fqMoQsp!Ya(qbJTCNlh zMU->RLYp{S1)dpbW`kQCfxkdY81|@QR8;8m^{WuYZeL+-OSh{~@4ZYcdmNr?Zn%q# zb!M=34M7NYX^=pp40L#*qOcJh4MmqQ+X)|-cVSkjo)22sK%$!lXbVZ}!q>Csg3ego z-n7>;v0vmkD3ZoV_Kg+6%v-oVM4v))mNA;Mt3rV4PqyhMAB=_L>YlwXhn-w^ zX{n0x6Zu6WJ<{5f-$RcMC%OvxTdS>H1_x9B)Ra>mFt5D^K&Q((Paq<4SoV|0Y<%d+ z1wwTBQykvto1>TrV6b`DXDeO7iK75;v%PDN=LZjGu+*P!c}ZNJ{Dy9x!2r@!#LP~r zH@xXhbBBjnj6j+{U) z63Nl0OH7lS>IKWKQQtv$c{Czsg~Adp0J!GyCi@S=S}2&R2Qym(%^*fM1=3mo6z{cI z%#bBB;Mj!{Ba7?G{2@T~byK9*2vb0FjKXq}dE=C-s%eXQo_rZ51D0pl2qsR-)#~?$ zxe+n2ndjrfcAO17qfyfTCezU*v@^tDk?M6%X|SbIN8Lm0?>3q)6O4I+eF*^TUtni~ zG8CAzaCDdZ_zNt&CMIEYr^hMnVP4Ht2lYL`BtJU-k(otH^O~WY(TI|W8wyc?zlTh?Ev>;uMWchbEM-cUGNwtmf=@l4&3J}AbRy%w zCRi}ofJvGo!5-NC)ucTr7`0sTHb-mrYaJe01Ir;bOw1TE2m3vf_B(BiGApy7)DFY( zyC+@*DnA}mLUP@A*CE9icXzl~3oV8hz)#dPQ2hZ#ERNdH-ItiD8=9~JFeJ#HSV&r6 z46);i$)_u?-B^Po!2zOvZvY;fy_01f!*WiBR~8cPIt!aS6S49lKv(rO`w@cr_N{*d zF&#?JGY)>Ka5;sT2CLVRXB3VTs&5j5%_Ww8yg-BVXT9f^jDAYY2gJhsPKl+>UXj6%JvT96{mFNf=$_Ybv@kHu^?FiaFNnnEW?Qpz zpylBWQO`rdU; zdEh1zH@6H6_WyCw0d^F|p;7porVP)Ihwz%>4gf?BJ~wVeRT+PrJ>xDG3#lF*N6T`^ zYLkXrOtPoCt7e8IKkzq0-yBwbUD|=5{RD?P#&vqj1S-Ijfs;>(ZI6sk2p4n(^`F40 zZ++c0Ax1ErBRa_y5>k&fTb0~#$KC!u2}Of5UEPNHnK#XT&3yh021H1m+miw6&Sn$|Qxw8s8Ra6@-$Ifyc#6uG& zR2C!0aU}&aRK5$uo~($F;GK8S)%H%LnrjSCN&U@(l12P$4@@6%OT>qn3 zSIfxDK4zuL5&w6WjDKa$a-p8!G^13Uw1PteqpF54dTwuDb?wafBuz?jNH+sFlf4M^FM?| z#%wc{HKbq_W7E+DIq*GHd}Roh6P6`eri^>R4;qchLyS11gs4i~KZaffC_QJ%6w-{4 z_(DDwg$|(V%THaf3g2;Nd+yo2kTfh9J zu@;o1l?DSgSISysh>dOAv)|e>Y9w6OWRQK3s9a1OjEJ{Mh&8jt1|der(ILsqU`R2F z=GHTg#G^m0AT~+zUQx`tr-F9M1F{SXpawZ`ZqicdSP$;(rnblTUP~3V|;6g zLXa8DLcC)4V|5Rnm&bwBXY5#OM>Y`bA5Gx#!Iik0BC~=Kg;hlfVCtXT#RX|tw;Au4 z4~VSb-oS(hO9iI?Ytj6 zdr7yPG$zW(NK>&iurYtzke)-S$7nIKTacT}&=9_4vx^0uA^dEX`ZF)Pd5iKDuq>to zBKn$$PVu?A*)u+9*X#-D3{ZWFBYwGYuPY8&zG(KZ@I?ZY9ZjONZls&x_r9~nlTE|P)9O23uILR&eYR5z{26b44= zAbgKdQf9WuGZmKr#b&)_^4d-V=zD=2s$(iKGC?vYh@mktU$TK@uFH`SKba*28(&(L zYo|*=>N10E^#m1u|a1oC?H{@agd*pVf&JKx~K= zBzg7bVm2g3gsao=I}XravTx03xdLCX0Z{4|fZ^sTRpFmlKHM@$5hBPtipX!AcI)lp z2HN4qq(MK{w5>us@iY(Un(dtz8BVW~bJj((4|Hgn^@vW`HWAU|esDoJa} z)AD5;Eg9P&LLfQ86SED$^UEt%udvfU9i>t-WX@e=*c4oS;VGm0Vfh!9m9ne#_TNxb z(3x;t)86s^_oh|+ZlQTb0ZIK|x1A)Ms!XKu{&+LAel8|9Fs9sMA4-Yju2U@e(vziv z#Ab1Nvs7q$yf2Ha-QSaYB;8jYE!5#>W7juj zKiKd_eP#pEJ5YleHB+Jx{Jotk$5{1QnTfIGy{;}k$^E&aW!ha_Jml%Et2b&p0@0dXXJD(Sr0X< zAV#d$cfhebd>x+gyJqR(8^#?*$^Daz&)IeSCVK=}Uo@`fu;`ZCRFMoM+UR8R3`g9J zs*hnKb-Q7g@K~xKW(E#En-WXeyv&r^Xr7H=fdLB>kj#R{nMZp#3A_J}k%D66EIagZ z-F|IDpLBg>3}S&m4zm842tpk~9-E#)fsfejM&O#c*=5bj!zWXAhC+7&I@e5?faY3eN3YhyF#tkiJczVf>XVprPsK* z6l-QPb!JO@ByNrLW6`l%1WCYEB5zsU8tiD1?(N*-10Qf;4F&JF&>*Ai1M-cTlq-wQu7_oiEJE|LYtlYu1 zA+OTf9)pjbI~8ooHaH!Stk^F(3ix3WV;x-`pBYYOmJ8D-i&S5d(jZdWK0~qAaS*t7 z1m`%G)3n4;{j*?AXg`-G)L8X8rk;cvu2CGL{d6Uaf`#GPlqY07Z+~qe!;fMs89NP} zE+664=Y{G1oj;I*tO*OUq(<6N&~o-;&0~=2tM}m$rhu)AeVdeK*NoS$Dlr-E#izIy zZ9KuMPh%?0s3_cZDI5an%+?ppOLQM77`Bq7j3A>kD6Wih0ot5%$t0y<;i`Lkb6eOI zJRQ30cHj1-jwgnRSB^D z{ox*NxhhY~YsPEyxzxHTa}%<@X~n4?^34p@9ZzR^v-uJ;R752rstaiiBL{V6fi9zs z{o2NiO93Oy`nrhnogt$zZX$ym7wtFCO)QjBl#FdQ4g%cFfs~56CM-_bZ0@CrAv9SUbxXM8)!w>-VZVl2}t* z_=l-IqWw5xRaHo4Dklv>=j{06kOY)DEaQJbq@UqHji8t6Y-^d&Lf=c9CvymHHi=oo}wOguq1xs{ntxPcTO*Z|dMk!SIB`jBP`xmL(IlSFFqHE@~smm<* zd}-5JBmzV%rain-ZrE1zaclq}8Hy@wM!DVLGnYW6Ls<$ePU|-)#$ES-N(H@fzo(|A z1&b_Ku~vB+c=ct^iS&kM{tNDF=1xo8CvpIvEBZ$BXj8`HlwAzaEI-DrKfKF#Xwq|d zTrHnHe#e99`+-2(5a}k*NF|*qwr)aHZ@R=!&vGiW>nAm{P5aU?C8NS*XR$otXPbT#a%>CsjtpSCVmY< zOTd+VqeHG>Y*68Z0^(Q@n}i`2@2P?p46)`zo5yDsW?g-E*q&4m#*iXlrEN09%1KC3 z6L8HBk0}^RiIJ%Z=?lT9(gYrhR+jFsY6rI~a21@!N3=*#T$vL|0T+Gdco?I;;g;l{ z>LH<{jj=>{iPKW)?Y@Fx6UQ?V3hxLNRDJUn&~MQ*tiDVx#m7FG**mnqqDojabT*E1 zG7JVTNmKErf^p<@7G~hW^A=sNrFA$nj7V+j{KQ0Kaq1fZ8A0n6GhR#?i4(I<5reJC z00MRaf5Ga}#YjQ*t#^8SFM~V%5E`Tsy~O7zsSs+c`r=(i57XOSw1la$6=({59rFp4 zqYKJ+$$kL4kB-SVkA@}8Yz0aCH5lrL#qvPZ_Qc#VsN?m*|&8DCb-9ht5#y9y7N&GW3S3oeK z?rR0s1e0`_U172q_3205S2P7D=nDibC%jcx&M2T?2+%<^idpm&4y*p`ZUAjkI3#B+ zmqQWIx^cej%mg+3@)m#D6vQH8jT(w$4JwQ%=YvH}yiZ_!ysp(oJ__!yNSKVq(q`xJ zY`t*^x0?Rl+2EAt1pWz|sn${RfnOd=K5)1#u5X%bqEs-DxXU-}QAMJ`)rtLZDwnS- zQ|ux)-Glbto61IZaaiD|4i}9f4JeCO+Sk+DJ((;M z4k)KLvpDJ-f%@2GZFQH}q0}Eb=uk#8C)7>&hb7fI5KrLi%YkIuSkaK$Kq%FYaW>b z1G8v0O<|P;CzwCh;cSI4V*RlzJYTEa+eZim{n8t_{^fi5^W>DIND}!n?&0zrOLixT zQ~_(nxeih-A+Vu`8$d#%mQe^l4$X2%dC2-4jjTxeO89904Wc6_77`^+4u{chQ)W5X zB(+72@x1XI?zPO8HFgb0WI|K{GaH6753(EH=4(sW1pPnjfA!aYMgPO>cDVPahu=PZ zvPI{Db$rTI+`2%1B#d$|+py(`%8ssQDhQIZ7*3QXAgwpBk`QwvH&{!igGO@A z>e1@6+`J7wv#}VjKNscmX!TjMsYuAssLN75Oy97gqWdpYJC_7?qzV|o!TaU0*^=6} zwA6|(Ga`y!C7V&Ou$wsC+kvKpYnE&F*OvV+9oUL|=NU6m!fO%hYnJ^!Glc82SO%Q7 zK+jNRUs48(=wyIH9Sk`cM$^GywK7;lC&N=_2xVB8wnzvK%*DBDzHLF02-7QCqJ7>kA~(gGoiZympFb4b$+Lru&+6QPmWz`od#It?u{R z2TbQIg2@etn|1bHtf)6?#QNG}zFu+5FoeDFhNyv^@zIb-t1M-g3Y?xvEr>DeO*@Hv zM%PXK9v2~^#LzuAqoPy%Z7iS=eR7|Kz+iDbAt2m~O1{iwE8BGf`3SOZ6^Q55S8L38 z*gi&JzY=RvjS(zFI#^WHgXW;Oz{Rqw#+ zGj{uh>(g1KS4aU!cu(W z;cB*^!!^n*0w~b>st7@@+)xm1ZEWhSw6$YAOb-o1$b6ovKqio3sprryn2R1@eE$|a zgd9G8DB~NAXBQ2dJ?o_HT7etBQO)5b^qil064m=e#ag$5hPZLj3>=IOU)Tt*-#BKoDf?5)4RM`O(~hj)mPogt8RC|_pfmN zF>~COr?uC+v^7V8bb}7gFum*@G~j-+})9Ji`Xdx z_O1IQesH#vl#Z+IpXQmoEkUlhr*FqW7jreqBl6m~71#g5>kb9O?7fqqe zVnK4m!qy8J>ht9O1z&|N6`CNtr)0rsL-|SR1trW%G@F}<1~f-efBFP}l1qUvpcr5# zx{F|XcK(PMknv_H<6kJDdQ#sro6_aokA>76_1Yh3F&gU8l~5ww3EQw_nVH2acwxub zO|)U)>8-`q!Jcsqs{oqt7|&Va9D+-n5PdJ0*<}>vetr6JmD3cwTn4D;Ei>#>2Fa(9WK~ynfkVxF70Do2^>2{aGB{fB3YV%NT7l=Lb|Ojh zLPT4$7*<>|6IY#FuvW>W{u#&D$(0m>);Ci1WwZOA#R_6bn{ZkuGOh`)>FF~r9HQc1FDeoZxrC^`Gwd5% z4o3xtqd2A`V_AF$YQ*(-9TwKPbOe!mOl9Dqxohm2N$P8cP)Zivo2aqsHTLd=6?s7n zK6!FgH5Ob~fKRNV*ztft^mPTNj0agkXUgF#E;+_>=z~2_NV<*)Q`|v|u0?(Rl5QqsoJ>fQIW^^w#j;62hl8sx-;-xX5s3pOJm)`E z6`FDG_zF$Az5={Da_^s|_t{IPs4}HHiAvxoipGYj(4qt=qO0j1~&>kI=H-$ zo@+aq8Ly=Mj^8kfC}jc=S-K1Z-9m#Csd7jQ9whGS=nwQ2n-@)AVB-?>76>C1;a2=7 z`HG;p_8!SK%V@fgs_OzvmZG#s`id@QVfv(L$u#Ti%GGeTjQ7}lI{oEZ-2gjgYzVgb z^ND>E1J?7_!Q!)<|Z`0%_Zw1XA|;7gBHWf$4r zB$L5X1v8IOFc^#D(Rgw+(Z$M`Twg2`CKD!h@L=4Wwv67`bNQ~g8FI@7t*eq|=2h;4 zTMk5O6xPS&8+T#xa01F1e;q6jg_5_qC+Me}ka1L3N+<$fJ7tZ>l@v7f^veOcC)ZlPhlgBcxvGb+E?d%n(R3MuUi| z!bKWCjaq+BF}R&!^`PQg_fQX2{3g_MJmCuYhzfK(9Lq7s;h_J<>8kE3nG0X3k{TO~ zdF1;4VIAf6rN$cf+vCH}Z~cPeRq1cnM_ATsxQ}AUrcia%Z4bQo2#}}L0-T@}>5}01 zuzSq&)Ueu?Cedf3)?c_9#!HaPDuR`vVi_vCSIuIsnLIruz5+V49NPcPFfE+n=K*B^h|{X$G47k@A&BCe;SBRR zCSY+d?suN|2Jl_>Fz=5JsAjUCiv)7!dcT7X>rv`Y9{9gVEhwtlEop3$k25Z0AuM*m zIq5LvuEVI$+?Uu36zc|+6>B!W_Lgq{g$HmPCqm53tfhQpayAW&%dRyGy8bUzN|RKJ zt^vmF)0UNICwsW}_87yB58Zgx-K};55Gn3K4;|H#vauAX!JdUNHIaYFlHf9A?30IkmvvtRA3^KY&- zv;{2)8XF(dIZoT-fb1I<%N-ouqyuF`IDsf`i>Ss`zy<9*PY+G*bz&KMY&Yf?K<`+IFLaqiUbuGo(- zKWfQdgzE1FI_NAfRneQVf~x-;)6<^*_zOv)T764yhdcIGdpsxU?hRh{Mnj%BR&pT+ z>&+>M7|(q(?J9NetkC4B|CxoTFG3n%g$xx3o(>)xhnhbB*((*X7i?PNj0eBQ@z4?qo zQcOiq=v4(Rr6iZ08s^D#V~QDrk~rxoO$}Z{8i-X&7ogUEv&HaJiZHX)G)`a1a0v(8 zkW=k@cl=&ATgF=?8uF^!egW$(RTZP*wm!?C^aZ^WZ}#7)8pzlJKR%?q^#W${|25q8 z=$X2_MZ0Z79k({M)=8ZUH9zR+cB=JF{<7_Np>wro6t4GuGUKSKn~ifO+pvEx0c*tr-8XjF}A{ zvroZa+L|RU0l~$AmfB_?4#tx8ee4kqUp*hcIijdo-JqF7SfaPi-ZD(f!N_R%Haf4W zz>HhoS71^*0c122klwdQHemx#Ua(q9Qr@uMGK0FQH+Z;ZX%ge$Zjv@8HSqseZ9dFP zOy(MvOZX@JCSbHz>LG+a zU^oP+?ZgNx)4{a*+{E(2&e8otxca^Sh7-lC*-yrkH}T{n)9;QA225he;nZXA&6JB~S-rg}0)U#G3_dI*bU!#8PA4Yg8BV!`@mp*Af7k7% zyYQva(On@I4{HpJ-rz_p7{88Rg-~BSwU6tlfAtT_<`ks+8_5#Vd@a@a&i-hqQ!-_S zMc-7-y*|dNuTmE>Q#m~pU)i4=OPEhmLkdn8CS4~9*!uGQohR0B6ZWO^BtxqA7R+bx zDO%DtT>t|o(aw{Q3!kEJ{?aC zkT8dw>+wOqj04-uCp?bkPvF*PA2<$-Tih+p7GgLvC|I6g$>E~;gda{reJkw^_X{S8 zt-XVuUBxSn$*j`FhT%(HvT=kL@ty~72U7-2m9;x8qxhyF;iST5=0wKj00zDe|5wFX}Cn32whReA~Un5W64Et%jWU$RD+RTHy* z-?6){hlRDv;Ii&Np-dQhST7hFbu#c6tX_BQ6&+CL`u&jKLJE6#ZAS|SUa`g`Wme6b zQ7j+RB3UY3&0~{v26p`+i-RPclvjq6y;Ki9HH^g>E1Rx|g8cJ-3{DK~hU9}@ zp98`bStg#v^m^~EbKlqRKSGeG4P`KqBOO}B$^~7g4*J90$Zi*DLerL6B(nlCe|URF zim+iG((cKA3pc%M)y~XL8>M5J1DyKfulW(}j$qqkYB$a0HhEV1GhiQ&k)vPLX=dFh z@7t~SlJfirM!jwb)L>+bH8QD!Rk1P(qC7pO zDlLn}sn1w0R)zILL?z*tvIATfH#t1gdYGAh${d0|$G?S0V^Oijhj7+9bhOsF!*2UH zaUEA??q`&qhC(dZEtLnU&wYbG{7`n`u-nIdrNik64i;5y1>RWi{Z=T*`v}lVKv9gV zhrNSCb1nLe;LnUZ&JUDP@MjXVzWK*4=^zNrz3Y_;|HRlv>VM@BI*O19v*p&?qt&!3 zc1By^v7^^*ohESVE8m!>JTQD~(ZPE0@J06x*&Tc6A)Ll%tfuIV>UA2a-uUK!-utKL ze@m%H{fUaRhseKlt)|7g=&!0 zKaGU^4%3S#Bn0VnSZ$`;kB}#dLjRJcXqj%`05;wJspU)9p>?i8m}EL(j+kUsVVSW& zT9H2AG@l11F~F0d$0!UfZl)CR6vr7B1hO%eH@ga|zC>*H1{~LcLi<#((Zgj7L&Iml*4L@Lm@`XWnqYaGc&1EwB&Cs%U`LSE(YNTCPwC?rLM{ zV#x+sqN_E5jU?NNKK4%U*MF~dFSGiTjz!;?9>rhN6`1fTn@n*OSjXYvq~qs$on+8@ zM!&uPE*+N@Al9FtZpk`y%)Mn4qP$<>9!jK%*zZw@4@7vI?xhSh{R?Wmw55&wGW2DA zn)XhSC6BPqhu9%zCWraSlnwS* z5amIh5nO7$7oJrJ`{A?MeOqkTV2ad7BRicfq^N)9!(EJ_Fr{crrpRtxjtU zmt!9b0i14_;7)X$u+|Rxg2^(Rv0db1rV}Jt*!m|AEGr#x@qFgw!Zr!Q`u$c<&(bpP zHs70r0n&;xKw|laKUvrsunW2e{%F89O7Upv*wJF8&7A7dcl%w!1}6fhX(ycDz|SLRq2@>9$#wT=mARo z3*F#f;M_GIuwsoiC;oQ)X7N=g1O{t&MkwronJI`71v3{MEQ*8)(a`u(QkoHLg$Iwo ze>|PoU9RLxzQE_1wg3s-`pN^M+vYvB&_v$EWwr@x!Wjmz#%2aH_b(iT8Ss?;Ay0e)tVK)at)uDhJQWf(4u(i*(wuMSj;Acu! zM2ty-_*+Y=uP_;RSH!(1f>2r$zEZ*Jhw3Q>?xv(94bb}6sD{yytDe*pxmx?}T{^hU zi4(Ab!ZpBF5PORpwHA7@X)Uv-s$|Q|?XoRpq3Y{Tk+#0qeM#b&XYBtZ+BHWzY45#I zteJ5m&&o*kHS*YC`Pm)8J%Ilw&np;0&So&zqMQZ^GfIlz;;w+mVVYhM9|i{6utNR} z`Ujdr6*E)0_Vq9wOarRE9xR^?yz{$Vi{D0g>5=vwW&Gy_>;|v?xfj8H#3KBjm&im} zjd3v|m{A!YHe^Ec?Dt-`5R9ZFr!q6k6464~`d70gL^j*k)#ubH%==bSK0WuzEK#vp zj$?Lu#g$1`Gl#T-T;HB0@OOrLmdwp2$H^GI@wH@=GhV*Q>6M_#FL6C`wtE^*5p1D4 zKqjhXR?R7_`lp=8o{Y;qO2|dI2gkp!c6!IACnD4Bp1B*;RF0Wxws3?Vx0+xRLJ6}# zpL~l9*);KHOTZ+wd^a!pG!3R+g3q-m3)G9ksz37Aoo|J+WzJy3mgzFLjQwhC zP85d2V=$tFLVF0~{A*!|N;~rfV?C zh!$zFDkZL`&CE__k;icL>eGX>qjA;3-tR2Uj4c8j=K%uJuQjpo2%?F78wx8Ksv)wN@pJadT9v&HT8>^lui-=GPu}ub@b{|)@(qhwS!v?lV4CTmc z+TA-P)hw$=zR-G|*)m$p=3+8{4_ktnPi%_p24Z5c+|6}`W_#qXz3mJXsJn=T%4Ves zY9JORJa>QHi+{!w6;BEaqL8Q<(gnD9to^oPh0>r4Vkr071_4tKs30N?>JWESXR;bX z0pPhop~=;GU`J>|{pZPD0gICfyD;LyS}}mR2fm)fFKZ^u%w%nON-7k+o$cYaUZh0P z=AhEhiQ`g{5?jV+7bzgZrz}<8qDRC!rfooOGi!$?wnY6)MFX8mFF5XB7KA7t0=kos zeX-bi-QGFP5Y|E_3!9uQlJxq1`?LptLXWQ-H)Ap(lCp8_ZAjZ27SDYa6^kN)z=aEx z-yb672&Gh^7U3z9it@LUZl|&&i77Hs5(9_LtGs=*Ae#%s&*lN~OO8J%?t*kCR?KIM zLJaCAd_Qjar?D8KHGE&jhSAxk3Ery^iyV#Iw>;|bNb@;DTXJd})Shhw%3>(TkSaY& z2}$rCEk42&2|^jq-Qi+TuGS^~b?i;zcIoq-#$q|eO^_IgFocj%iW)U~IWI=^5W8Q* zFHfi?X1$k@eHC*XNYWyy$JRM5*hZTb_Z3>!Wq|1G+s$|xHEm+Gi_fUz?G9<9QDs#J4_P`jC{O1SIjFJ!3K60eA=#i5J!5*chBKJnmkO7VQhO7^i(@HA zr>$dh&YzPvM$&NK@wfI~qFANXs9AiKQ~}A2|Cym#FhE!dDp1GyGVYb7S?iuFi?8ju6m#< zoSR(i{0tjoANEIk|8xKo15z>Wi&qr`kr+v0V%aKnxBCbnRv`De`p>y~zM62`Ar=3k z{FL~|l>dW#2->FnlJ7%L?|ld#(@v(B(cns|<}G@2Yltb^jYVF;KL5xYJv=y z#VjMWmO?{%)uKX>D2_F!LDNo9rYAIhWn@RfI>{XYNQQKBBwq6MV$_HzCieMZ!#ssK8T++xSjyhZk*VM$*#5tz!fak6(k{Ri5 zz!{g@W?PiSqPX9fnDull#&^{gklcOAeNIa(e}V}i7VvoXaPuomD((H@Y@arBT+xJ- zD0Ni~5EUVYbQ6p6B<{RX{OWBbYr=)Btde#E1I&v_3At!msn+i&9GaO+AQ+8!hKWKUJ2E5?A2F9Wu=P)yU2T zmMx};m7hNMF=VX#D$5u}NdKeC7*m+I=yI^^kRtxWn~~Q7zNg}5)aP+Ceq1FZ6jZa@ z*)vV}mx~iYg?BeML4=ThWbVh7y3S${z@WB7nsFiI&N0Vz*){9Rg_X&JyWh;3=oR9n zlYewGF@=@!{#~(f6x}0frA>ofOyMGMch44%zVgYL#c1?unbK&`wHl^0bu~Oxki1>g zY915IA+Ojedj`{>zk*JU?jMegk%SvRq0}QVhj^=<4)0J7E7FCLiSes8&u>4AE7yh^3rk=*W?`*4Ew|`V{QNs zS=Sg)Si|y}kLj_xq^Xx^xA^SM;qG7yk-E64IqszzCL@mL;0UQt%&j$1NbDpNB#Q{I znDq;))-NIcNP-*O^7?K+*VPDWZ$M=jBF9xkfb*&ejQ=CrDhUSR+Hp6ZW4w!|# zp&Lj62sbCMDqHYGV{vI6TZt8mIJQC#!73#8hiIpHW;dLh_8x^*UCu%trVe0|;(klA zd9XQ6muJVFQo|&MC*3EED?_=-rJ1=OiixDg=tT8SWq!}Zx=@8LIKK|CMiF_ic<$B` zz9FM`iFo`jHxEBBclWn@KO^(f_Ng6pi56F8|FUw%NbaK-j7THQaQFqIY1A4cY&ewy zx>06al0+9g^C)p;9;<}zPu4Gh*|VV&N=E-8ag3>8!tI~rQY?3Q$)ln@Zx@)f0b((& zp)x&+?L1GYkZ#=bMy)y;=pi?zmI()Ax|RgwetkgypnlK=B1!Z>OA=SE#+dLBg~~;E zZiLXIYTXH}=gY}b&0N5A6P`IXF0X|W*a*ZLE`@5+H-C5ky!1UaDU_OTQe+L_lryH| z5}`cljtgk+>eBa7W9Bk)uxrir#xg=c?$=98b1$uo;CWS*8p}w8=SGMws#X}|Rnv9T zF|JsU3F)L*Ca$964!7u3lIgI7NaPlon0H|a$h~}!g{>_H-FmRaz*}3?pjR;IcK5I^ zVt5jBK;+WpkYoC+Tpr2&b{z%x!LJmHK`R5kEsuUId6kKKQn`JspPg~*xweOtAt1WD zOTL03dx8WO@-&E{cclFgYnsI7ow$`@Bt$vVBNR7sl%7}`RBZDG2#3Ir zgC3tjq~W+U^W)a)%*OZFz&pTw(R@rE!|{$kw}-R{yc-Kg2n4xssaE2wSFV9dnl(9Xnyk6g+Rd|F1I zQKx{3zGZ5kd5q-O(*}bw);x(#CojB=7S}G|6b)1UB|F(lH%On6d!WH4Q!Z|Mb7vqa;m%!_e>PY)D9 zo6+OBTXQU^Zfb8k>An~w>Nb3$aeGDT7bq1mSnx+oVNl&)-q8toqde9209P<41Fhp}b8 z<~eiX09hh-aoP~kel7fK`n`s(qrF+Y_Q1m^yTx>$_^-JgXsVf8S)#+|asmzw5Q<+3p@&12AFF=JcMG zP$hVQ2!dQ@Lw288S^ z@evY)WYZ}o$l4fwfHNhn9UgE-;1lbpC}YlIuG9DzOpQ??wo%W9bPpXH)0$}f zp=5$0H-FAcDzpvY#)RXZ&|iCC>X*=_Ln#%<-JlBkPcfmk=iqM?d1CmQw5Nv=I{7di z(`o(Q4_+f3v-Ku4sh{Eqq5l*U-joKVYr8R+y;WtZnQ)csFp4o^@hPCXPv_b}NKH;34vJZ;=CbNCwNA<@m~4(7aw`70>jZ=`&|%ZDI7IVva-ELJJ}Fx(yt zqlX(J!1?iNAC@@W1Xkp9K+)f_&fi{P64XA!(x1Qdo^dv zF!RDK#PL07olgsBq#1rb-BJrN*5(@*)O*YjEHF2Q!u@<2TQH?E!D&Dlwb_YdyX~UN zWEpgwdzDjGAtJ>Z2nmZ@HBY<$n$y%u=j1T%CatHIaVT&=uzr`1%!Et$QBfEYW^nH5 z>-^l=;ixWH;Og%4SnfKQ0LnvR8;c1d0M}(4fiL;{YS{SxHD4)@LD@hlYP5sQ8MIZx zzHLu5hNu0V(ATjv)v!qTM4$lj!L7_Fct;wDK%z?2v2!vNjgSIEUr z#iG4OaAmO`l5#w~h;lsDo!lP}PtwKL&A^6%O^fO5Y#`xNGCL5-YQ6 zaDi|i$-e-;MZmJSSE+%LGc`yYWDF#a9z>m0hLbF%eslmo%F{4O1rRqmGKh3{>;#Zl zwC5gtATU7QYX;B#X^x`2Y0S)P;zYT&6CsL&0b*ydcH9tdw8#~OGmVgFX<1odO2vMO zk4_B`?$Z_7M_;hF97K6YMh_2hD`M4*T*G}p@1i|@&0`=py1a~gxP+d^#x*2tqnk|O zs4!JaY~V}P=snMnBe)5k>hQpG(D1v0pVBEVE2W9ip3igTyEp=tyG>O3k*^lxl>Nl` zt71ZogdZd)D{WeHHjL{p5OvULBWl$wyD#BOtN~4%CAucf0?l;hr37fjiiGyHS`kVz zWJl31^H}c6vcjU>ZX6!BctXSMR=FphSihWH!jmr-!V}KIUDI=QnBQ!zG5`f%Y&nBv)5CL>q zXl>&qW{7+=R39EtI5!E_4pP{fj8w!%4^0!+v1H}7P(Q|SnNmRDU^ZdhjnEuEEU?6W za@LZNNv4EY4s48O4aec&csHJjVkCF>djQfT1pmM1$oR*k#>SLYp2TKjB5*Tr+(JBn zMRRxNu?$32L0)1eIilu~iNW@3qQ)Xen9-xqxB?Q3EqAF%5;yNiZ>xO(^*TTwm|i_| z7Q&iK`m@){5p*ecNs4a}&m3yKr zB2g>OuMj6{f4zs>G=HS;HHuhe5mBD@>}pJ+a9)ikCQz z7FLutU2I}#ssQM_q2@V~`z(ZcdIApF)$kP_sgwGCYjARa07<*Gl@P#O{7Yt53DVtI z@dcp7^f)7qi-|aY{#E^{6}H40I;X9kX>ve!RY|#`A4`z1B&BUZFZu3A7DP*4<7yLJ z#+~P=N#VND6+Tgz-=9InV5btftZC>&_FI%YkamA!sjp#~DU^2oaA0?x0@P??z`bP3 zhT(TlA>z`MC#S^a1-Tds`|z>|EUv20OA>V9jZltl9N>E0@0}Fpjf6y;QGy82U3-zE zqxN}UU@fyxKUDvF>){3UMFp_?{j6uhWuKVipphRUjc^}sDCB6-7f2^3%J=9WRlY~K zq_R}LN8e^Rn~by>=q3sQL|zMtXh@WB`X5!o>A$YG#{Q5Z7W65EWC*^T-DmF1bNk`SJ$6?CTQKE$kwDfKHvCO@ zCH9WbYL@~kF01fQICrb(LR-Q3@*RV$3~g-V;<5lTj!ijgn0yLTXrKb98;4hrSiA{N z!uz?tDtRGj65dh$kFTKMOj&BArBJ|fS=b?2f_L|Wud*F9zV9t6VLmORIszdDv#r#8 zS}wu5$xtF?LOF8v9(*Ds&)k`&jhY)P6~ONLyasDin+O|9lZ&vZby~W#aG9tznVXAn z5!Fq6$I}O|sF}wI4?DD|2uM*us-SYDHy56v@a{M4>LP2-GiP7W?FWB~hx@16aC|L{ ziZ?d&A?O{uB(Jg1QLuu1W7{o=c7TQl1lP0#M$8+Ctrb=@-|rQQ%awm%=is1K5%E@I zb68<2il<+B_hVpiA5$syTg1kab8?V*eiZb+e&@Tj6{UKJ&GZ_p1w|?p509a0Vq7=1 zBKB3pg`(uzz`qh2*NnmD+MopMCVfF>yOba!vn^J2T+GgHD%6oe+zsCXxGCl7Md zLatlKJtR~t##o-CctgQjH&JN^J>_R)%VRB#o#g~V}B;qn<$oAX!a}9#+*@i?-ey41$e!I)#LzF4D!onnB z1Yx~#1rh}AlQm)YsvJ9d5DHb8Bo4V15nM?W3XKfH@hEO?MHErp#9C*s(5*9m!J_|ire7)=$T5jBl)!6PV?2;3fV#miJ-0t-GD2Jk=BJGiGg=Z+P*rRS;cgM1+`y#UT)tYPo(dtY1y4_nZT?b=EEc?K;%4F_n>DnEpkuY(Ua8h z*bP09U1zmZJdiyM7YQBc;C98C?1|psXR;UdB0p2@L{wTKwP6v(-CsL7+oJK)0np2!`wqG7L%?SUFD>%x@75%PlCiR%uo#s0GkLcAg=ENofC<}@@sX6%fQ9lL*_iWLFu`Zt3d3)G< z4-e#P5gERmX5kQt@^N2Zn<8}Aam(;~_zbC!r3EycCSIN;!g8uYmbg}m<0dr#B96fr z$9FR%NBSUJ(`zxu{LsS^xp+-$V!u1jNaJ7U zw}sULy5DSI9b+@2N-~A)i`CQB1>O?9uJ6$7(kfRzF^F?v!>~nwwJk%0ha@3#e0>X- zX&t|jJawo&R>cs&0d3D30k6ebvKB2KE{TruIgK?>CfD#gzCWdKVmJ}u6#BN<%Mq0O z61x_B3nWZCQ2XhN91!>d;|VjfJ$-vCe;X<#T-y~(UcwDgqf9ZX`xk#1SX?%k48scd zF%^!C>-J!$i=*fmqr14XMLFD^aU|mi{b|G8 z$1ysPiEjI(i?hE4rJv9UI>U$gB~Kq*0Cd8T1qRZxJWy3T#?qGvFjmT6x<|Bx(3XS- zQ6M+EilH92;bkJ)+OtFb11w-JCtlYH^2$-?sP*;q<7p$0iFqnA0Q@ z^=(Ev^FRONf6<-2$OdIQ$WuPGK@JTlf#9AnRtz9XoIjuXQMZ_Z`v>utLS@ zWjbfwhS?1@BH_z4G5TUW`}({!2ZH+(7vtI2-)5_@24za4a8CUpGg9`g&UeeXi5a0AzSP|6ZL(y;+WQ8J{V1CTy z*D>JCyA4+TpZEUhzx)&ZFSP&ja~J3N-`ztg&hu}5M6TvWKtGUv-oSO{6h=+?si64y zwpED0Wvb8g*R})+H$f!(-gTn@F5?1xjRMSS2oeI(Ad_@{9=k@-ihlr^*BoROUTT1f98zNLD0g0T+)2oE1( zSggV6Fo1G+ak7V<9CJQrf=3a4)jB!C=?uGxl$bxma14h+i$HF{*A)ezy5?CjGg#Y_ zK#T_pFRZquXjmijd4>!T${ej%97+%E0B+JY7{R~sMZ*xD*@piN4*3k%VRf?Eeb_YO zUGx3^=$X+N4G4kYz7)bo&%R}M1YL>YWlZmS=T=xhMWSZT6sPRxuI?jL_r7OGb-99Y z3t`1dnmAI853TRx!&M^y+_W$uI&{fr^W-@|ugmmnW1SfX*}I1i9!8S?_}q#T2=2f7 zLXe{56SUd)T@2^`&YM#%%`zWTfFhuY-~E5+SL$gEg+9wdxztAx^xWQ7`p-a^Cs@z;~F z;SCG`FG5eCmi?+}Ym2$IwrJ@jzRjHSxixX>P+Bzs0QWUF@pBkBqU~8F&2{MFX%5un zR8{LI+di5T`;cMOeDmQ=ZTSJ<{>c2_ps8PyiS^+e-X@U0<1KF+ zBmEKlRmQ+ecu_-T`E_5<0+gFTu5m`qIQ=$D*|;aHO5j@KgrvM}_!P58Ck*_aR{U?so38nC>rNKp%B4D}eJX|HLfV4ACS(Eb8VS_mWv8jdZEX{^Z zfO0q1JSqv=cep{DIi?$xU+X+die^Iq9mqWYsmC3 z$TLH+1kqR}6nAr#`!a)X5`KRlXGCo}dW7TT!Q~wLu4_~e8Gdon-E+k_ZekT5sU=r9 zO#qJ{P#sO{`A}1_8dP`}jjB`;4!qN3?bsFj zsLos(cFz@nLcNLSf=9=gD&Ep)^6iEMo`#c^!4_YW&+TDM6_0^B(^yMm1$UnigB~HLZ;lv zd3P@l>1!bs(JAySdx;QCiM-D?>q#-Am3STP}J!p#*l z3B8?jML_Njx+b(amZGbtLqME zY5(mQD`2+eeXx&d+(fuhzC+LZZ1geIy%N`bOv|U$0xK?rre!|~G9(I@z8e07*2!(W z@*X+k`29!v8!@$#dxB`jkJv|DspaYzTKu-Jszq{_BNaD>brND8a13M6-m^n85qKwo z9rT)KFd*)e7j#8-2zOX0Wpf?@s}IDtVwB)i`R(F#SYQnx?#6nDPn1wri|`cfI6fCHxEhugq!L4L5K+cp?hB1@%-Y-AeK@CCNC(*$LW_IOgqGtwF5@A}8y?tG)JZ6w%xY|Bi!g>}uK)jc68mus3#O0#kB;cDDf;;W)#tpH@Lk55?Jj!~dSn6w%HP1=t(P zMC?$C(%>Qee}parn#%yKg<0XyE}arGm1I;bcSqKQ$8g?t`f>vmG8Q1cBA7#c_ruM8 zR-&8MH^y@#`MrT`>_S6JeaYUpe0AmldD(O+jsg;re=FLZhpFn0rg!PlldmsMUh zW~XU9}*G_^p+^eD(p0A+@Z=CgTUR*zE4^(47wK2Z0qGEv)ZJ!FIby zR*i$k!%9{^ZnD@QC|MP_`;3b=$Gk(zMxuw;t6HkL=tY3=)DS^MtBf2C_TZ`JKyf37 ziTsWJ=YE_;?_-yC{bjbeFgw4zKA+8ew>Ce&G{3x&y#vh93PYj-OkQub=da6}#1&3v#ToCY30 zf;L9p@9hq!Ml;1qtl^^wV13m$m4$;39}lv5{gJ3*`VFG84OwDYkgsXI?_Bk-;$Vl0 zSbSCUCd2;87uY}n6~f+mMRJX+OVONmBB*%drc{Qyb z;b4nCRXs0KT)#=&WC(xPUkC7Zv1`M$aSi*4-t<*0BB}QK^yu`_GpsLZfpyr%b^;=_ zF{*duScM@>oPCX4PwHVy!n!B4ZLgd46h28o1Ci73Sw@knzDN|!+Cfwhn>c8c9oR+4 z_0+|>vS_p?ynwk4U=A4+(cCAqxFrt7p$K(y#9`ArB7;oaL<#n{`?%8v>(xpFppGfc z7}_}%cy3I#d7=s7jwj~0bJV<&J7ERsbSyB2y98N%xaG>x=>dFMJ)2=U5sM|}rG%U* zp+}H3?FvWVj+6Ox_2MJHwn4Q<$ap!eCde&+J-vOvUz8cH(Z(NZwjMi zC>#(%7L^0U73g(rpuzZI_c@I&xu828Y_)$?yLj^_&AFzp}oK z8hbgB%S_k=MHQH0gRXG)HZcnGNeImlmQ-;g;w(7fx%(1Zw6F6KJ=T;BXw9jkQ-5-y zaxf;;kv6A2_)tPa=AP4k?;gE`-y*gRFa7PfbnjwfLJ&Fi3HafB@4ZFFueVZPkA#z| z*$6 zB9slXxYKXHhXZo2D=zM8?{JN!c#NUE)xhq~TKhd*si0gXuew>SjgaLnyRWv=HIA_N zy@Ni6a38OAULz+L9jt>FoDWdw_U?d0=Nf)pzv?p_5~9&$a2GztieLK=79o@OxCP^tR9@695b*+RO9AMZ=%P)g*j>$74K z?HXPOBe_FCsqTR=vxKCE=ziKh@^<)mfw-*``d!-^*YV;{t+zpP<7*5ZYXx*F{P%P; z$24(5^@wp5qNlxamBY9xum~h?z|vj@s)a7yJwaI97LNG$`^6ktHH;34KGBLXRx4n+ z=dq`h|4eC_`2sfN7m*7m(JttKy&dEzFU+fno{rY)_MCW*{7}(*{t^sR+l1XD11x_p)KqcYHBjgW z)DiOzEy5H<~4xn^)Apq(DoVMqJ5|dMKk&r`?Q$RQdvlTTkQqKSF(w%t z0(#fklB84dw4SJUF0@q}W*)L7kQ}*5=Zt9jqdTK0p%wKmQFEN=7J-<`pNELWspl-FD~1}n|!3AL{x zU7ph;EHdEaW95uKiiq4dI|oPPP_vR&OF0!nWek{lJg)cmY4ehHDB*86C?ikCBtu5knJZx`aI}%zL z$wMe^qtYQzBk6ec+PoSXqsUW|$0hO)T#+ z2m8OPMszpVXMPOl+U}uS8ce+s-t&lOI_C)} zl4;@5a~#Q=$zD(>AkMnbf|>edN(nhx6V$J*T|!ufv*u6;FTjbpM^AC^aa}}(cSATk z6LZ-T&~=l=BPR_@pil@dpb|X8G5ii+LJ557)9YIEaOl%kJ)tm$S3Sa#3;>UwpxM`9 zR>G$*+Y6cjU|jieyl}dZtt7E%9M0`=d~O&@S)vP^1zHfZy=F25kQECXa-U5{TO50? zxp{GLMpM#neC>~KFK~{c?0alURM6V&Da~nd4wWTun$DrJyP!3YL^v31G}~8j+ao5; zxpD6H6F%lg2xr1i?BG+4B6fmCeMv zuc6xq6gXo?K%+MBIBsH|eO91d7i3f$Lk^c!zUjrj?|6BX*y&Z>T`(&v05MT3i~7*L zqEqgw6=`Av@l0yPiU!rpYb~_~JmYsMjMF|Bi6{TeTXhK_0A00}&vdXOTyRNaK zI*5J63CB_=;-K;sXJHu@sxENuUVcF`trZceg38Nxkm$Smb3Q%+)3b70sK$;$W%HLn z-Cb=A?S^^XhC*Rr7fDm7K*nS1%x*yKU|Z^1u?XcRl{vP4Z(w5#UVaG>tYWRV_9%wO zR-w|l8RFtt!MF^+LcmB}ODXU5(jg~8aich!L)Prke*2WA>lz+c)hn?VrlZ%NIEnzs zkUfrzjt-N{WjcrN-eH%~R3kA9NM7jo@N@Uxd+%Qn$^8+FBy7%{3}Ai;3k;w0J$xme16sE07>>}~?_Xh!0%MQY1t`kN5$zV`t_GfuNkjWm zU>QUQ*kajDjN`l%TnBkME{2D5cgw}VQpq2cyE%A6F-h;Y-VL^PJDnp$j31qvA|x6@ zH7LE~nFWm&D1?TF1)8qb$0?@eUG;`%qR*8@-c}xiWHvjmAbNF=+TBzmp#@T7L!mGT z{h$5_AQl-sPR0graKfl^-Jh@`@;c#Vtx}BR1UDWtH-w2|O;EXt+`~0`iXmb?i{{2? z%b!FxWL>^Hctf&|J2`MR?;R0W?N`@uFbj@y55aU(Gs>ga{n7yW!>~fM$i+`l?VaMS z4C}*}*m>hqDbgjf1nxJb;>jihm0*jCfWqGKg(ca?WeL^to^VPhidTYkllmxbu4!Ka zDDz{=sDQDEqZ7DB{J7QGgRh2?u<+2t%^9@rWLb{YPP`UgW>wT2ljAg0p`fY^{?hPXw?2i@0nGfkE3*HK;kwkNenMs?i~ngJ)x7lYqU zjfwdnh)s#h!aZo>U}AW;0au1Ki4>dGPF#U z;FSgQW-Td_=UlMv9^Z2}I60zSPP!4PMH(9Q#BD+txsXaS&k?_X1&|NAh{y6@&mPPE zeY9-Uj!k%VroZM(h(gsBr`(+JV@%CEsVgC2DaIc#Ff~KG-w(idfAEyZ$P9O--^#+C z06zHGl+q^It0pbOEq?}yoAw38@4mz?sozPXz?@K;%6+v-P9^P~#}ph^xAk;Td$72-i3+QHt?G*c*d zg?Jbha)7Gzj$5=$MO3}zNnF)cu^#X4!k2b^9cYr(GeCmmh9RjqwvsT#DyXW^q$0fD z=8AyzBl?}KQlfWq{ajq8$t6&0vzDch)K3gm0HlBYZxA7Ep*0~5<{@aJu$fsBUebJCmY3xXk43N9qNPo;efl*)6au`&iq0g$P4}iLJzl9m z)!>v~fzDh>UOXg~$a&FDw?pCJr-VIU)kcXPOSh4QbmO!9Aa0xMN}or#8*Pvnj7jPU z&Rq+UDm)_YD5V(evSMivrC8YuMNIeE5+9$=^t`7mbs>~khY~5e;D#2c-+N!#{x!D6 zDhm_ixskQr`?%%DlvTD-ViByPiK@ngAYp0r7fSKZTip_eo^RDm4hC2w=IMH^YN%rc z4b)3k1ahOZF)kW*l*mX-pciZ$M4ts~&6sw2P zZA7?^>ow+zaone2vc}_<;v?jT%sZAIt|WG{PvGFU-trHvWB{RkM!}<%;Q*&c)G>#; zj!<2X_XqDDZcUqdCiYS*+mta{)3^g*V{tuu_+Xk^@+xAbfZ_q3SQ2X0=pg=%+R0@!m>d3~-13IDWN8e{ zkphmH6RJ$Aoxc~V&Na!OLt*CJ8tlmA_q5u$hLUb%rF`J8d!qPmiY_H9Fr8!74z+ z;WE)0^Tf0JO;fO)K<{xMj&l65-Fee~*G2A)So~}3G{Aq> zAplj5Lvh`2l@x)rUkGbOGifVd#byro8&rt&h;ZVWaSOfx0c1fstI=-&&?jFT&o^jcUUJ5HWyjRPt>-nnX@Uld(qO?OBYl8S zRElmVJLt0TS&f`%>w2A!*s*(_i=>dRg4Ld9T3=1t?D~+{M{Qx+Y>L}A;JCXR_=>!F zl%W;Nxqh2Bri7$|i0g4M+tP(IX{<=CJ)-Ljwwk;VS^Tagksz&!KyXTW#Zb0M%J% zmMf`9?lR|V5;xbK!O1pGi9(?ubp!s}($!hamk?%A9C?cBVQ^R)S)zCuc$MBNZ;T`s zMnX#l4Ql0^Hel!u<`iH#^%W^GI{j(8u7)vhj*OPk;QG!Pa1hs?A*H58Y$1&zV&6xm z=<=z~giWm@HHQfmt%P-tQ39~gkX_k_*^nm`kN_7x+7ikXU9LL@3W+o;MUf<|om`KV z!x0T03_bH1WB3Xf`6#s+yfs#i!La9p$pOW+$Wx7)pGe+ASk40+F`{{rBV+uD?eKe6 zBPTfD(?6{oVKvl9oWWvHfWq=do?v+?V;v0}+g8^w%rHY^f72dssxz{~n<@?g35(0{ zrCz2-Gt_-QsA(MRAe|c={ut|gRL8V`LKtPhz25Oifm%;(7h&D+Q564WHVe+~PWD~9 zzYVW80x0*Rv;Y$WB!u+zr5o>=qL=m%ru7NFdCK>+5dNn+S zcsGxRH9&TD9HH+-x-CZy$6bj-aj+f{xxvv3{K#J>#2v?c82{AaruCZeDUKW86vV7M z7~sS|wcZV1I@tEm5IB-r4B|*AMOE6x3Q~(2yb#LKDu;4RXaRJ}j%Bol30q07SZ-pY z-KSGTu|6V3x`wDy88%=vSj6CDe9^ z+q5yEf(62rJeFXJyf@tM!Muz)6Gl}KA`hT-EW+9GIH}&E%1*4INsqcXf|7HQ$16a& z$qny|iaRlBdi^2x@q{d!d3ci2Kc7e8xXH z{|jJA<*r<$7AE*ZZ=j0RP}iude_bmJ{s_y2hm4T*(t<&b8&wQT4U;t(NC(*JP_7)! zjcm-XZ)~lu&A(juk!po5931Z;^f`2OETkVo$QD@%&0X6dQ;Zl`xnfixsp1Jtvr57m zqaxHW5L!4l{$0O!azth@bNRkQY$fj<(@bOMs~STiHZnL&GlGJ8qXjc>5DPe(^)mem z$B<0-)sRo?rd1GkpDDs2rVT87vj6;#zms!{sy8Y>tndUREQ?&rs3*Xnr2POlv6w*2 z{?6M0atps{Vcqfi#16)UP8I)nl+~#cOme2YP>yU>IJj|f#Sokxrg0Ni0J;L9^AHH! zbL0Q=Bg5mkD;xMLTadeaP&aZwBgTd98pUovpN{Uw!y+--iwojPEceLe_qi_vN9KSq^vM?+>v=oemts|37ZkV2 z#&FlKwh1|Jt8OGpFhC1%Lk+!;NZz%|EpZKBbpyfi_@(fm4PXMW1CCq=a>u4@n2NKA z#P==9#~t>~@6axOtGi1+acrFxLqlq~%5o3=FhIl#5lgl(N9XW73ri^N4pgtM5}HAK zqd=VFxT`ObA4yKvgo@Iy>Eg}{t7ruvF0At`wxS=?ZxIoHX1<{sho`Ey=~4uk6o`IE z>Y-2RRorps*G-%hPn?T;bWK`3LTaSD6)>-;lfdb+bXK`p9ZPn^1B`M>te45U=3| zkMLWb&fh+RWCUbj8S)w%k{-nOsg$6A=ssN%?2K=m$u{0nTE!mzmFi*;hO+SD>J6>X zi)W9Tmc=5vFHJpd~uJ3^uiJ~ys-60N%O$tCI-F_9}7cIVt%Jg=kj=5ua=p9x$CagTg z$A+ffbR|Z|k!%W7oXtqMv1C>=TLU;dz`F|`$c_K!fBe6=$)2D6=YRZvQcGMK)+w16 zi7kjQpy);4o&m$%)@XS6pLcAK(N(M+KvnF$CRBtmtly@XhD`Lz1#7}|G&LiDsCEVq za}-sDo~ftBukrM8wvvj&5ct(`-$n=~#4oP_OY_O$F0P+D(7W3R$W3j)n!;Zc<^!J%ZK8tY+VSz* z!SN{tIh%o2XO0rx_y7pLt8yqT_>bShk`rL?j3S4@eq|#6#PZY+Dtgm1#2}cS=wm!R zO(44hqPLLft>S2M!V<)52s~@=Q(6X!z1~A!17);;?xtF1*-XSEHN;Pk=(u#jf0Ag+ zK&&rDtP16>%;=w>nc^z;x4V$d{wXf7wUa<%WfHimD`_Cz-5LFyg-dYhVg?>*<5C7( zEWlg!MsN}%JQRTER59kG`qEvzg6Ad!=c<2%n%^eYZJfm5YcXKq?d+cvce3hKAA=CO zCMT|dbk|=f545P~K@qNV5jcdiau1?T<%QlSx2wQ&e|**JV`ym-VhI?XLt0(z^-{|E zY_WaXqhm%W&{YP2-{7t3ggO#eDFq0Y29$fw|MD7)e%3vNX5wWTZzW4~L}!11O||_t zPO9=9C5ye@5tnI9%GB-b9V368DObW)z)La&OWlKrP(gCPeL;U`8-OK8DJ>6CDh@cs z(NtVg3q6NMnKT7BesA-BC!C9gGQ@qPg&;Kd;Oug+pKKLDm)U~%Wk7gg?e5^p3RKjz zN*%?7Ayc@AhbkEXx=-W+Rv*IO#>oW)w+22mOU7^TrCew;j2~LZ!X(Jk+Qdtx)#1*B z&`ccW5S;f^o)kK64x_JGs^lVGq`~|l&Z%=Fln@73DY~N=OID|)stXkXx;s*ixxkU- zmurlKBEWGRw?|^~J)=DUWP)Er3q9GY(REa|=RK&C;V5vJ}naP77a6{w?Q1G0mCq-24)I+XC>Q zLz9w$V;upt1gXjvhymT*1zHQkEAvZ_QYP{>lw|Yp3g$jbQk1A4iEv&c#b(h#l?ZNsyE>gGGNCgE%_q$pB8^MH< zquk;x50B0poS=7vdhSkmG?Ey%5-tdVr$Qy@Tk+`LK;~H5tjRWPJpwQ`#m%` z6ys_S;|3Nqa!nyH7`d)dc~(r&Tu19qXP4)V%0mtH7|vGM9M99wJcylJ!i8s<8aL5W$2&-d6$Qb%stGTMFj)2@a{!5+*aiivT1s)^)F!g{TtD}yqyEw3_1fc^~preSc{U@6g_g( z@?oqW+QY+%J)nCu)Rg)*%N96zmL-3&d(c&o3L3_+wKi!TA;DOwaLENYoUlf0 zmj|cCZ}@S3vpEeRo|d|DEe-kOOoi*XNlH=^gSnA~2pV*}^itoSx{P8$t)rPMD8-qm zfNnB)_@XJ0Wfsi_OQ80xKf&fGn~sV^WQ@rd5+Z|(+<3$CqhAzMa-B+gc94*}>N z#k>n-6J_({MDVlm_t-D#VZ)8iAsu&799m)LJsyf|dc1bYFgSsbYwJ+5cUb#ZwutX~ zyhS1K?HxKJX1ME2R7Jy!X(K#0!Ht3^a0W61YRslQ|MJ6E-11sgWsm;uen*QVCY0t7 z=koCYX)Z$Ec4~4qzJS!XdjWOy3CSILFYwqMYT$6PvmItx$v@hq}u$nRztYgoX z)d!6Qj1}0kR~N$HAi6?>_^$(un^;BF*+#0Y5F_CYM`YHTgZd+hyPoWBSq34m_u z&+;kwi+Bd+QM=zh*xqfM=C5VSR2k16%Uxe&(4vLG=F>iuX6qO?ZrK*E!&&mpMOcV^ zCQQEg+U&1}O>LHGdV@U3mi#>a=p51AATI9;eS`b&(C6IFteog~mbFfmSrz$9z4NI+ zu-r$)#|*6b`Dv>?Xu%auXU^ggmB?igCg5T2up+LzB|DMKo?#;rr(D7rHw@?SdzcJ} zpFbuVc!V#jN-GHR*YG8HX?VFHnduV^6%h+wB#Oe$??J z4Q=fl661(IK$C5BcHSIz(XU)PRv1`_zQLVN@HyKSt|L{&IX=d6BTEr7D#`&V;!;uT zFP5x2mUL-8uyAf%+$wRT5BH#Vn0{~%mK?1L16ahh9pg;?=y~w{rK%3#LW9pQL4>1suyUAn}C0AGm^7z5!j@!i; z=9&g-Sj^_Lj-t8C%N`dsV;e&Bf~i*>%ez!BkK;a@$uNf_LCbazrs*=>1wI^Dfy+ITgb0>bJfC1pxjOJhVb8o&0^N}5ao8iU~f0-Lj`i< zYgn>EUe-LaD#ZcrVCwkuN~SIAOfDsnF=+17bpjVn%$gs110U!8)d?s9PdWUO)fsg< zvYH&~{}UfqS;-#cM{TxPUDQ!kW#6VE;Vw-!4mpu*CO@@>XFYr-829x&ZA|%CwZXQ zp7Q&(Sj2L24E2)px>BNBynSQZp^j}+=>xQobh??M$SH`%r~QHMl=UXb09ytA6^t<0 zU$`fMuJbKU6HTmwVYoap(89xM8avD2^h8G;l*d6tm>@eCK=YE9uCt#orjXCF$BC4=^Zj{PY%h#MlpuO zAt%m8=WC-XICp0g_!8%cC?vbJ%;pzg z2yA4lj`>wNr3jRsz&M6N@iR3q*z(O8o;Ba$N?}8rI5!v?o?glYnjzfhKXjqFaezA7 z>yplo*H1i&y~n8@WP{v8i(_SDC9lpTR+8`{pqqFF3K)WcLN(RlP2H%$Fs{M(IY}y&qLd)CfapK{~0Ko3*rh<(YCCqU&84%ync-0#&t6` zug*Ae9KbExKYiEj*m0ehEQd2iSZ;KQfwLcg?9E`XRc$LIlxE&;epp8kWtsno>SOyP z(O^M`enpcpO!$t!-$qc}$D}gU!smN*vNs6YqqP$sO=MXdv?$!FPsuO3ZA;xq77KXp zI>&G!0l*C5bJvmD;=wk+rMWhHc0z*;?=*oyZg_-wY)}JAUa-#bm)Tyw_X{>R!NS^^ zzRV-%;)QV|X^F53Npe_u!Fxjnb0L~5F~|~C3{XCr2B@*_Vx2swN=cHKb`o@o6+w~Q$FmY%$*Wub8@n&06v*^KFJ5D1(Sx06 z6?MWvm5>|3aW~~q+l!O#KEfssrTWCilLA7rZBoF5j!SS6iu;4EEuto-oxv}0z!>Wf zTwBbJO;As8Me!2nW-0{nBvx|i5-6Cvk5gp_*fb2~@f#*StU`1xv3Cy+PUKFeSel#Z zT8oEZEXB@?!3vR@UQ`mjLG5FtyqQW0P*H3L+ZWWot*S~UoC0UGvZ6sBN#j*ikc|Q6 zmOhW0x0!mUdI*-g1n)B4Mu~>Zd050uOE%{bEO$wk&BXK33Ej?R;1h!~HwH?n=mp39 zag%TR!tpbI{*P4xa(BG%B6$M**wIaG;KuPQ!=1QwOgoQX5<5rUcQ-c)hfi){;TyRW z$FSnS@#RiSu6d37Dp5(vn(1Fvq8P`GZTei+;riVv|ML%D-iz&)zh?;Z$2j()q+w+r z&&{`e0sPVo4p+{)WEwZI?v+w_3{!+6APzjr#K|4IPFH^GAw3aX52ABJ+~|o_@bCgC zkh`x9up*n@GTESe5$^*@{tbxXJ47rU!r3UDcq%PkjY~`wF0@7xJRC%?NHb2tp)bQ& zD;|eW_%Q+860-rfA#3WvqIGs32wI|EKD%&Wq0A*Ovy+l@|GXG?Upm? zHE;OivLr!fp@ecoMNy``c6Xl+>r+|oXu)vJ9fTBjL+|u(-ILY5i9Mb(`k?^o zkeMB!m$7C9^1xUp-Z?qKMd=jFOxXkZE==f#!lec^S{xzB{IYL` zA)xTT>Nl9@gbv2HKbmpEb<(kCm%w#gXH`v7fDEoP&sCoE5({5H=`o}~>u+G(GoI_R zmmTcO$oT_0@UYgA&BXz7TJi!8&H#BY4yd@}p?r^4w?b3FkX9%`TR+illt2UkqY<%U zUNp`0nApz>V^6vvmWFCv+*qVrJiBNK+(1K31!7hO6L8({o$Tv4vC@#xhtf$Qo9ywy z{_l!NZUVaiz|Q=5V7`yap8pza5sAT}kq8^0P2L|r061U-ikEx5{3}v+HXmB$!JJ9&zG>1ZJalbUsY$m2OFKg4awI|t<}O%kghVe~IWP2Gy1aEG)QH@Kqi zkPm(3bl5OKVk;|54e1mL*#q)ZMOmIU3vHV7vTLut|0z{Xg+k)2sG2gT<^`cHy&qbc zomLbgSeYU=q25ykDTBJH1#+|z5vg}Q$uJtqaZotnm+;pLGhQh4GC{bHH+fun0fUUS zvn9H0?6^1JK$KfKBPRFCN+;I&LR~Fn2Qi+zwSVXvXK@n+0j0K;OL`SCczFTK@F zBg(ff{hpG*zAd=w65_ml^4f2K<>glh?N{RSb>@Ta$jd4mU>-j?-We9qn+Ufzvmp$- z-rH^b-`CwD;!u4^9*|M`@PWUmZgXQc`{KK$jX!1Yx^24Xb+7ySL|hcqCRcGr0fCvt zR5}S)qF=}AYg!sbaaT9>E5aW=IYAnKT`I+5mY@j62;TMhF^aw6<{jnOZLwF<2vWin zRD6gmt_~4~7{-loYNg!YdhH!nJH0+OcWmV9hG!wny@pA-sX9KeGLwG>hEslFT zh>AsnU7w0yNsrVJ{*(~REb>Hn|$L=O;|o!&ayeB z4J7vrBS{e)tNrdapRLY33#&&|qksCQ``X4tCQKaZ1br*;2!1c4=DD8vBYq;xPJ;Rhd?z~2@Lcy3!Om)hp3SKH$ zf#x!%a4#dS2 zl`TX1G3NN7ETvSM>ri%WgfNlZqX#CnM07tWma^71sj>A@-4+4OAtsfMUci69PiY*4 zgo^me_Y9RHvJAN@ub%!{<>mafW_g1NAIu^%-d6*9aO(4dU?^EQBf9hGuKOc};`?e zqGe+=+N#kbe(}kL72(O>-Lw?p z3G%!9EZvd;5!UFe*XBNEb!Hz|1WFR4a*sT|upR-D`)^Vx^vH7OJuK5%SV*+NO2!$C zWH~!XX>Mnb(_tA7b3Ob|%cP3JJ#WxrMa?2@{~VWNNa3Dmt!xH^i+sa$$y+!M!ojJb z1HB!u3Y}4&JZw;&;zX!O?rSd3lZOyrzX?Lywd}9qT@qT{$q8tG%)X+9o>-;WaO9G7 z0?GaFQljZ^u|0FN-`(jRXD@oaV>mK=;3tG@bzv1Z(5b<|;e&8K2S2 zB;|v6ts^f9L5H5azY@ssiMuEHtEGmsREMw-?&UqA3~}S zHMN7V5r0~b)24XylKYd+FUT>N{3JtJ=ASmv64j-HmXIEO`h;X2o&roMJRXq?643z? z=7r@fX1EMz2m5&DbA8b7Fg_|;@7aa59+2Gs;MRLat%s|~2RrCcPAIOiF^Jy&zp=Bj z-J#=#+}(R^{W6UF-05Wv3{~0j~1ir}SO$ zOwjuKJ%lcsUs&E)t18bo4fIE4-#+^WcOgmJeS;Z*r60!?dq;9Eg7#H;?M+2OPR%Y3 z5X+_==dvqH-Sfv6RWcyCn_RNzkI}0XathBR1yfb9UReJ;NB=w)R`kzI7UYLS+j}fB zD6xL;X9QQ_7GDIdK-C}1wM=R~A zwa(h`_F%Vi51SiuZVt}#ZohX(H=R<)71KQ_kRHJQl!Lq|(f|DPpZ?1~(f{0yT&Vi8G19VQEa8~cS1VQ# zkYL_r0hqgV)ZKY2hEu*;8g%wqFY%OeAa+i>KZ*NcUf`1<+0GjUqt7&|+~ z-Z`ttf5bBK=vj3LR~;D%F}unggSjiS8X8vMJL15qX=@BNz#B25;f?Q;NVx>V@Nyqp6;^F!nCPl~llU zci;kmnZ9$JVY8g>Ht}~f(7YX7hvG)9V8V*qIw_KQS zV9+nZfwiB}U1=05j~vYi{|QZ1D#gVK(>Jh>eJLPJ*!jiUf&5t%+5wTm0s?DK$wgWy z#gnh?D&ib%K~U~8PEsJ%Jlo<$s)rZW>`wsYzMy8uU*Ezvh7p332^d7=^U(vWi-~GK zv z%&~;~ke^eph#jh8o;?4wzSBEm$?Q1CS_zx2-G%Er1l zIeG*+%A`=V9;aQzH(1e9gsQk%)eljWxCAkv$12jMy3%LA3_VTRs zALLuVc09100Jx@mLcW$SrmCtchCd!$S6Cy#O`k`{_r z{xZsHm23LqMjD{p?^$@JG183iAl@ADG;xmluoR_|6TjY4v|@^k0pTh6Y2*8q z<)xX$#g$p~R&de;iJ}e*3l0=0Ux|G9K3=&rIa*eME{Emr&rkiab;z9?poiC>Ertp7T(+L_{#r%(;Q|Ok)dRAwf9U!)>Zx z&p`4=7u95%u7oww3%Tg!zomS-hP3I8{3*l`9&uzR6~)h<8qv)DpbAeE zZ0Kpen=0vidU5gqDECAP2YDz(M976-WLH6%;iO|0to2GUdD_G}ukIv3xi6()5R=v3 z;P|L_2sxe44RdU@%nUO`MQoqiorCj;Euh>}DbHikZM>=u@zl7P7E7w-_F)eTPTUAj z=V5#Me2Ss63olN=VB=d`3JPW&$A&1Zn&)$_|L%h0W@gLe0DYpb$67dO0~((v*w zKt8Yuqa*lrVI7oa`g(rdDlvh{fNLCZa__)L53y86ll>NNI2HCgnojnLWo((xa=T|M z9Bx5?vp+X(Oq#?AY(;^?sa(;3i@0pXbvMFOWD?M)v3<7%zj}9ni+kd*GEZVX`>x=V zZ80odpq!gS(=V!_1y3_V@NnH11<2Lk*V5Q=oR#EEA`cFFJN~F!0nm-(l0K+Vs3c)P zl|Op_2HUNssS`szPx3=<+#ZtbYz>YNjx|`Gq2#m%!`eIOui+WC#VJL-;Y*z3%lVL| zj8X({A)(~{>7bi4Dx$mhD!^0h#`{j^5H)>^U|brs58l7Q9SZHk7V?3$a5BDyKXL5^ z4qTAEN#V|TkY_G31^jXN>4ClW-@by66fhcF`avx2;j1^Nh~_v%T=a3afRl%`-ob@O zS}@W*c#s#2)4X1x%3yQUTK$OxNma$<_uY3?fCEJHA?oFS(Ib=u%||8KC0dTiLR1~f zA?beT><@2>!-2q4F2|y9u}0bb?+;s=7EFj#9xRWy=}4__NZOoGD4fE<1xS- z4-vrBt5=9|7qKvgEfH6pU}G5M4B<1dbBl}Yeq6;86dSK>ZjTY!$?@Lva;S4+BZ$wv zepRYlj^nP0UCj$C)aknaEtJJJ0&+j(G*>kjHEIkdR~h8!PzHQ$4K?V9l0#xlnu;dE%C0~1w5YKwg|9~}{;KOwT%-rlF9 zKp>;eW3t1O*ByJ3eptpBS5nz~8A{qKMg{zplCPGAW4PQB<5R!B$ z$G}j$g4{ubF1<#NTG&~ye~pXImElS=RWLN zgM0>YfI~uk)K&`+9`n!wHN0+|ysEY)R$dB}^SxkT+#iXHTz$y)fV{f+nOs;(jZQDc zA~*i?ZhzR}+l26G8Spm#lu{Is+_jKXPYh)Go`fCw^z}$pO+V`}wgQ?PUuF3CB-%}4 zm8%7Y@Fup;hw+y1+@u7iL&Bm%VZZwMz@FVlI~^YlzWwSeWL6x&_d(fiNcnv={Z*hk z@Q3&5U3dG(rA6A%r3jc*&hNq#qMWY2x}0+CO9ILMUEpOQ1}@#y^RB z^A^z`?X-6GyJYuP<(Eh-wW1;btGcuyhw3LvooGdrJy=9tXxv8J10+DsjGClE22lvMP zO%EbljhKk6NhK{QLb`ulKiOs<91SSGQ}}y1xQxircJ}Wm!O~w)ur{?683Uh62p5Il zoRt7GarcS#zko@{r-4(+FDLw~zL>V5YRr`tr3g?q$J>-=5@l6N5|W4^OVl_5bJx6; z>(hpO?)l_ej8mQ*kvxYdXSkOzMH@k^k#e-6t_g5=U$QU~GlzdK(1h)oAq_VGN1LrG z4xBM8R=YK(6AuxDpoDi;*YgWib7*2*M%_WLTXMy66aU^ldWo-N#djU$6}OKnJu7dC zJ+p{Z5CUxx&`KS(vixF*vQKzE&f<&^xi^(3t}=};oVw{%8Y&GM*N3dzN8rd)vtg2)Ybc>*I zsbUmWAk7%%x%x!0q`~^K`&ZSQi6hEEniDPNkwZt`(v8MqkxnRXefQhm5ob{SzyAIO z?$eonxw1CDHM9QH^6b{Dg^lk`gVh+?I7}dIC8(`3pn7Sqy;xYDS^H^gW^T@q)L3Se zNOGhS`tpUL14+?u__DuTTv=J$np^l`VQ$`3B4M3q7Y?a}fmFUR&$qb#{ld!)!&GC+ z9m3?nl;gJNSen^bTljHnX>)O7VRi8*Lslb&^$@Zms&voA;8*7{MRVtu{O){ikVnk(AZTVwC zxSDHALQ?b_FE$qz=eA~7me)77{yhKF*3!(Xk>Mu#tO8Q`t_k1b!n*CACbeN2MpE>v zf?ljclX1x41XRFYpSJ~Xj7>m_JtE~^UtE~Avq_C5TuGF;y$}wpkZ_WQ`XlktIid|8{ z8^ZMGR~O3!JY^c;GAzv_0@j*C4J0duQv7SPD@&_0FdSE`+GsGIBP2y1fnM5}Sy)~# z!Z#^>1Qqb-<`?HTVD)a`;D5YyX@DO?DgLN`I5)pG|I!dN79Vb-g{DDH@Vu(k2ZTKG-M zEk$G~#UGnrp7TpqtX|J6ofb?vM(2Orz&G0Y7aGcO7j zO9Q=T!Ia|)JuWp(gH{hXihP5f{IoC+%l+lr%2Ju6fz@6GseEJK&-{Q{a_zg#rTJys z8x2~^f+@$y!qV!>+6Gt1^mhYY5knR6FJhMQ_-2;T@~>~qSWVQt{0x_?t{9Lio_3~_AcG1GF#MBy%>$erovqbiYVY;t?rYv{# zdC}1oS1l3idKO&~R(V71DjaC%s9nK>HW_NCKCif14c0^@Jgv_){iZOHH?W{0Bt;+7 zXJt290}W=ulq2*=g(K}8JyP(bg&qlhsSE0nfT#7jq1BAtQZZSBS*8k7`9}21qO0p1 z8YuR4eY8+oM<#C689FW*M9Vz(KQ@gc{@=b2dtgd4Da9)chhO+pwq__}#52g5HOuDhMRrcyNkZlX5 z95)wNW@rhwKEFney{-ARwSxX{AbFLT%6L`2EqZ(!tSWLK#h&Cx;%uE=M6FD>G?*<* zc*-=v-!Mnnxzu2GF+3Vv;kpStHHbW-`)S9^aZI}&05Q=vdQ}xyhq_+6889oi#IR{egYxD@S^Ze?$ z$7Y12=u`AeCs4LLObr^uoRk5TYcl?d=6^%gKr@%{l<6{ka{<0og;CsVtJu6FTWQt0 z7aC}?2uab$)@Bx9`Ta1n1}~4Dwi?X!7EC!Vug&uprs*4uD1}kn(Y5)F&9&u=@t+zj zWw^2iEA{2drfvBKp1gpg$XDsf#`kOURv;UU-W*7=FY}{<=e-?;205-6qVkpJGCJ##{ zVB^vo8*o(6D~!MfD}RGkD1XUJYg~R~r}^?%Y`iuue_`Ksbdy6#7nXm(0@6$@4HyiT zw$QjdU7r6Ay6y+7rW<(m3TVo5)jwacm1r;zdoAb+s7^w!U-6EXwOp#{x2JaT_zS!PqFte2bmFrr*e`n;j!N`k{ z6n#XVmA8}|=)D-qCmpF@ZCSM6yna4ddwg3>{Wv$?ZX?iB1;wg`p_4yy?XE)373g?jZ2vNEG zIDR>U{l4#Kmgg1=K_llF#|BgRd>ej0v;O`1{Jiy(pQ8-}p7LCizWRQp5M!1w6VB=< z#!`GQ>xflcov$ByeintoDT|kcg%!+#D|5wQ-g8Jogs5DfN{cPR@R|MT)xz@J%B%I4 z>y^ZbQ)p+^a2ULn;%-GL);H!BY&==w;M4~dK#-N&>wU=_Yvz}8=zWi-98*$1c?y$b z!>Wf0AbLX227YzXVohQR3@)O zR#rC_mKOfq*6AENB;YBJ*CDGjh0}58&>@Va_`Y`#=CiT5@M3PkHrY9PCqh&%KWnb8 zt-M@VoR@$mG@os}bIh7$U}g4}&gxIIGqc~%)6BVGBkj*&=~z%@^tzc1`b`_BehxcC z;grRXWOC*qM5|-~pJOD)kVQ5ebegYFQ0HNbAeGH)!i|3~$$nxW>+Xdff0g5*#=JJcpmoE`BZ_R;o41fqxxxCUKMfd`Sz0pqRP#OVGdA!m7(+)wxV(8xfd@l>$oJ`oY?0zAWM<6S{sk#aQ>%C&wq z4tH%un2K^cnYvsQ6$5Ln?)iHdI=jeos@WDfrHtYJKZi$k=G83cqbanfWZK0Y={Z%4 z@@9q}ywdK!-a5qP8HPNeGHP^U9~X%eqSkl}94D0Qa%&%#$r+;6I<+h%!YNeJqqi7c zNk>p)TrpK{*hI>c4`^5hw@rB~Z)28P$~lEgWn4v?z49=`?Y9mIw@ z2uNL4ii%iq0YO2K1+nAo?ktS#?yNJrz}kE7z4zXYMx)VaG#ZUYqtR$I8e23PjYgxf z`#Ya|&wcORH_Oi3{o>C*KJwnqIp^N{Zaug4PPRJF6#-CP-4+=?eMSL%~;8*Qu|mn&LovP-gl+!D1it)KJkS3rUGAbRqK zv$dAQ&efWqr1U4W==6s+xpkqq#@RiI%~D^`-00v}uf5Gx?s6Spx>2qd^bhCVGl|Va z@#MPr(1wd^Ph(qep7TmZq9!G=WoN+8gN!SaiXt$k>xSA%$_4HR~Up}$Fsh7l1e<3T}6}wGp!9vB<^x|Q$w>oJJqw^#w19XkxMmOPQ9Pv zlCc_=%blL_Vc2SGog?~Pf_JaURJ#^CI`&#^HY56-&2I8e?&gY@*ws|chRU5i;%My^ zyib`Z8@s|`Ixwx~rHFQCv8S|HQbmYYAzlwAO4lSdBl?}yt~Hsu;(k`5nzvMj70rHL z?a$@W=G@A#5J&S*qVZ&jLW+qp(jqkBqT17#myKbKb?FxGqbABlNenyX&g4499rZ*t zev;mmRqZTwGmnyg{9!?&nkTU}qdsC$?s96%F8BRvZL9)tel&!|UDj?1u% zJE+-GP|4$EY>oEO!q-i5J&IRct8RY6BhqIY`((;k#lle;d_7 z*u@JKl(6ah`TK=(iyLy%A*=DCo5)QNswibzEx1IE#`@>+wueFUy9+&QSJj(O6yqfM zs85yVzjxW>tU*%hGw}o%=Z~28c!$6 zi&UR#z*+6u>Qqx3?SEL;lx~iTCYgH38@V58F?Sz$d4KiA(HJN*2EsU+Yv5uXyVY0R zoOWlgOKmHYXo;GP1W6j3KI@9DBH!TZ`hHHgi&>A_X6ljR;asBeP07l{DEF)AflD%6 zE+nJ!RaMoCR)gauFw$CW-D62zu1fk@MQzh+iL_PjN4n3Fe6CsUepu4lfTWFjyL64? z6vu}nU6*E77LO!XTM-GgyNuLb-u$c%o``;Dvq!dudk>5U?dPd{vNhruPy^0tSFtMh z-o-}Et1V^4q}A^1bOLlEMI!p0%`RCwH1&Shd^J^gS$Z>~+S%%! ztxqp$rIlQL@eB1kn?3CHEX8qLEj57NLgU4!J=Mbg3AzA-IFp}B|W{~VOP2F zg)3owk5wC!X0Do{=`oipw&rIEl!l4eAlDaXo6-%j3xrqG*gqRl?`(Eyt&U0b(Grye zowIh<`eDs<29~$hH{CBuLzQq;9Tp1aW^V2g%`V2h17pSG z)kL2)9GSH`Xbdd+!_}Vhenl={!-Sq6%|zd}v{96o8Ragf{ncb)v0I1dd(0BKT#^|s zl!Ydo`5txY`l^~%)}tos>6Nf+b(^kF@MZf)47TPHSRL_=*e#3s1iIB#FRsgouh4JA z616E(HuAZeW>Yn_Rx{OAm#J!(x;~^cmH7qd;K)k+IqFNzISWmdO~Z0GvoC4X&9S%jXM67_w(U)6V(yUm;Bn$dRGM5V^_s@FxQ zQ<0mZjlOIcnNrocw{~gmhP1y}yp8=KiMp}qa}ns(kZX{O#anX)B&ya*rI%Ch4|saY zYwnLN9-gnZ3f!~cV%xPL*R=R&+07w}&1K_3!uFQ&oD2=BTO04R(c~xlfL3*U(9_GA zlt2szcnUXI4gsaUD5NLPyy2~3z2|wGS+K7H z1kV39ChT(!WwKWRoz6@bbq2P-#wt-UiXDF887e9PtD}=9hKybpqi(G)%SqJxEbTK6 zl{(SOSFxw-JuCgxv=z7zuJ1M5&bSv2g(=E;-!*iI~-R>`#P&*0wFZg%HX|E_}5~OMWVQusJBA> zzSClzMtYTAHJPZ(Rni<^KLg>co`qUE7&Yyx+!=&Jpcp-N|^OJiOfzj?owSRGZd z)9VcNY|OK^dU2sH8}m~ps*Ot}ol#z9l{=H&^XY7%l}WWk~W^0>@hmMIV^-}gw?RS#ITrS^K?CD8V zu_gJK5&iBf_730ud@hKXjaF>`d@hL4w(o*4?_2TrBr3Iu6FW9R)F)!KD7h20p6#^k zIoG1rixT|juclg#TIwRJ+^>ten}(;j6S7*W1{zGi z|DooJ4lG!G=DgDix)8hgs=C$DM{s)GhZ{)OJOOWtLQiMDs6-~py9o_@B{48rl$}%FXXH!l{oov4r`x9vTfCVi zQBEpVIHSs)$#n|NQdqrG(#ATq(1(zqlo-X%PG_kTUDN{*ym#J zSfUh6X3Q^(-J0?(<2yJkDV>Ta_qzhvoA7hmo8a5)D)x%aB^m=Iik@$+Q&UT$pB?{C z-8Q4m<&DnG#bc}0QEN8)fCqgX3iAqSO+CRbmYJyzqf1c6(wJy8Y7`Se~sYERV`>;ZOw~V zC|=Rp4ZHOJ{9aL_DbOTs8b+;p_a(coY;DFTQ3F$=F%!jpsq5ZiHn0>O47ECjEJk&i zQSD;Z*P07M=@o`Vqxw*`)rQR)4Sy8)Z8fGv`883MT&jh$R-@Uq`Lr&at|$|I=4{1v z(o(Vc8EDw5=X}hM$1QEDuRHIwb*CbkYFa8s-K0dFITWvOUekG}b*gHPP23D!wMu@g z8v9Ml$PtVUOHx!Ashv?G+Im-)r5m&5=_={PrK|m*maST^FQpa+O;s(axm5?rmgYig zcDhA;=wha?3e>T(plJ7Tc}YWooSNEXs=kryYMT0obo0XEWYHI4vvr>CntqjJ+U^g|G_cy$aENLdcM3oPpmzH2kl!7T7W2&k- zTUWztGuLiDTX$=#Dwp#&YKIz0I|?u_=`?B{dtFK(~2H z&CBPSWT#~vy8EbZIlf8!3bCUDM6Ri^Fr~a)@_J!hV@uQ0T*J6reo6Vn@|c)f=)be* zNlisjGy*-sU;DG0qmvkLWu+I&3sJqA;6T3-8GZ5|GZ?C>ZC$5R*N$bR;m3o@5ol1%*rOYB*xG0Ta?T{p`aSupu)aN z?I|ZLrK{@v5};MM1hBQrv}6??%Bi(frSTi2!atbrX7^6Yq8?MHx?-2h=e)0#Ak*b@ zYN%g@NH>c{FX!o3l9m3Mrflp?+mc_&NvVat(?rVx(c-=mc}>%+Mtn6mDPl)tl}xWt zPL1@R7HEo^(G=oLmiDC(5`k*@H;V_P>}YEmi9u#%b;dYZ{0vqy2BDlYGu>%Q&6FmT z&Io2S25dxbUks2?)jem(zoTK-ilulJM#+lBh^X2@GuTW_(>sqf9Z>_Ce_ZwAg}h|` zaZ+lg?+o2z6g8mD<&tWx$vg`p*miRnh^dKTm9{=4E)^}+GKG-ZC7rKIFUh1Ta&>ha zKqEVcJN1lD1wOPM+S+bgs2&(;|HkK(r z7?KT8-YmP2H75jVDjQ9_$Rhp!AQZ}M~{{-rdkg8u_TF-P!mOY`!j8I*T zC)JTw8}*s`Tx?lX$!f#OsF8kij0TFb)OlvID{Q0fFPCRCE4+A=Y~eyVwbI{O*;6#7 za&`<%mJcE!qZ)rxMS@5mqw3e2)gUe-QzK<~9sS(SM)59((l(5Y+URX-)u?LCp|XCy zoeeY+s3o-FgOMYGJ_Kx*Bnr zFevs4fhM~B)Lz~x83QZhVldZa7EiYpF!`Odf9)(_Dx}&sR_)Sq+C#!j6`#@`0bfEJ z8JV%FmVG~_^BpbFB^#NDpxW#oww@JEWmw?k_pZwkwNtXdg>q`9yO?pBM7_2Ea`bdF z4Y&72O11z_N>%r(R4v|D(e9C~Nb{7J>>i1L>g`dP@#=qVX6<6hXlj&fW{rqy?N!Ob zlxV5dyeSoijO4t)mdu-0Ml}zuG#XM<8ym%h%{n_vk444`v^x1(S?Nd~((#TAz-3da z9G}w8(LyMvcGs5?cD?xYH1o=6(diXq?lZLbR!V<{7U$yGaIQJInEr5OOF`B@q!u=1 zWo|nw0T%=MRhpWm$aslY@~apT_f-}kAN?v?mljRjm2B;iP^~=|$iJgXwW{DJQu4jv zmTZevsD$d~hAa-3_Ni7ORlVUttHTA{jP{M=#w557cVwKdA0b*4L`B;bb|9w4x_KW{ zs|E2}v@Fdo@u%WSRtru_HE%#eCXU~h)J##8n$6*Yp;Jb`#0oieU+Sv%C6@}Rok5F4 zM`R3Qi-AchIl5d5o}6Up=^xQX8tLy{;xw-=T z-{quv@zwa_gEnsDEu}}p(|x;!T&gMCRF~PoREMFMOt8c=LmMq!Tu#;Z@`j{X7!dxF z83NgN7rQa3jR}rcMAgpV3K@Eu;q}faO-&0@IoDuv-@s5-=5y<1xEhb##J0bt{U)KT z8WuO5(H7=;BI#LUfLi1xN@&f=sRE-Uo?sS=NY0MI_KH+yPE|4O- zstPwIrdGxhC0D{@r7<;fc4kSsx+SHK<58F&6x9LNlh&j#4()_?`^IzTW!An zM#Xv-OU0j)={0{uKP5?WxS#|oG)$YVI!p_kG5H>H{IUBUE2O&1t?*N$jX{2qpc)?8 zX7*3X;BAo_67$__(+8K!tX6!dNgE@dP(lq3k~uJuH)U<6)Lr5eOwE|O2Oql^KMn%w zW$-q}K%S5qS#NrfPGK%nD?Jdf=VnxPZEW@F>OP_B1y112VW5gT?sDU9aw0YwgX{u|HEWb?h`yS15 z3xTWf%y-D*r<7SG-`QE>I|M>%Z~Qw)UAAaxODbD%>15oWs3mLFw@8nzUQTS!wLt}!ELtn2C1Rl>s(D@gVqrma`n$@3tc5~+r*RuYNcVfy+;tZxFGa8S(%g!s zT)8Y-lHKwLmQ=Lr>S=!~)0W~x@V;srzO1N>Y9A!p%}Tmdg;AB7 znOjk|AV>Y7k*L7&+Zd3>JX=a;EXv)oU$J)A*rb0P2 zHQ3FMr_J)IAciyNE?O`bgFS2*i>tRbic3U9&GgbQW7L}VdtLVzZ6(S2Xrfg^lSN8FLr>{33c+Rqe#YGz24L zkd%!LlITlio%&S0olBDR?PXQe<(4doS9fhx>Yk8G3~^;$zu*LEm1K=utek5Gl@)5SWoIQb zs1Z?H>(9?DX|7A>rSB=dTytl1n2!353c2cKnI=DPl>A02E}wpqaUHurMg=6JxH^D@U=HKBb0S0N4f)<$P)My9EH zsqJVr$du0fj2#yjqyt8gULa-3%DJ&9HB~R|<+RcjYa{tQAq~Z7?G0f|^PX#DTJyK` zRUPv4R&2LXC&%T~{06HuPc-E`PSbxXpU{+>=%sZV?OIeutr+=KS!$|`W8_K&>G=i4 zOiI{9Sv*Kt%cmO(ob_Q>F!gtO7BAL={1$;I*9-0&YN}6X8y5Q^Xd|`ba%z9n;>A{vu`UBlIoy?r2kSUWWg3=e^SK7M ztf5b!rO7NL@}e&qSJhC&#MJiC#a4?kJzF|V*0g;|?i0_nX@s44y2|gPwNb}KMAX{G zB5f=Mn+bMK%NB@=Iyq;_PR#{*E1j+N4JF81$f%_;{M(qCFN>{AbGt&E!m_A*){GhE zQT|bp!r^Q>1HFR4%HD&-6|5(umWP<}pA6NC<{&FG`QW?6ESGGu}a%E~kK4U+6nEr*9200+_K18`>3Ayh~irP|1?mFv13n~($CF?H(6bq#) z5*5?14A#fupv)>a-S`c{M3%^Bb7eAfCI`RAFSMJS*l?&ogD{XuTdlyDP@83xOTHfv zH(iri?iIH-yriv&s=4*1QA>+EP-;ojwRh<#7KyBQU9?q{xQ#hkpyQt%*N()s z(rU2lJap+=nDygHBd#yIt1G%jW9#JE#>uO(^<})o?)LzfZK&Oq|z<46i2zW)Xjak3eWYy4ym9$XOnCQ}V`EJ>I=>jibh1sTb!5`JP z!z{9Dc3`lb$L5v=@+XtHe$$zY-A$Ub=@dCNG}2Vo@?6|rY10{LDSHPACA+b*eyiPv z`_PwC!|ThSLUb6j)A@(mF|iDrb!dCQdPAWv_QVWl+LCcT4>UsX+&7m5TOKM~O& zY$*RU_NQfJOExR@Yq_CZZeUqP;)by`3oAW4Nn&fH)YL#-oN1yG9Zv-1qe^~WsLuNH zObN<|lT$-w?%704wvWj2j;2&qrfEec(~#niI)5^?vSOAQAx5JqSC@4lnj)pvM~eY@ zGPcbJvkp@(gcp~9{o|x?@D?#$kj+l*H;t5<9#$m>nO18@-fTd&FPI@p*DaCR-KM4W zeAY0mk02D@krWWP;imUUkR>V?vjR zn*m$ZA=$cbVX$vjx>oQiBu348(~)a2I>2}Yzw zNX?Eh55}-@|5wS8~k=PiDiV;@}|{17|X^Hg7?F` zlJs@8e`rm-aQ*_?B-Rj8Ym=&ZFxKYCKQi(ptIF%bFX_AkveIrP197=1HuiPv{b}VS zU$@?Eq1mdszQ!1jW^H^Ba{N9{0Ex4D9GD!*LQ% zfXPzULW(vjB`Z^%mn*2S__eGiiFUOUGznHpEsnNNCf*gO^S8>kX*xC>O=vpTsHQi; zbgofN*EfnY&AD*-3w1~^^p#;r)g<$2nQB=W8=F6n74g=b-(5%)XD6w~1~D5H z>Pt1+g`s5sU`!bPd7O2V_@yAhn6OxbnlCT@i%I&~Y1w$b6z`O*++e{@o%FzUI2CmG zMOM~bo24E8n)w7B{-~^mMJl6EpUa8i&STSMBRJwHCV2ucxQNMgOMK9gzzZG-Y5@AP zYRz<aD3aBs;$PV$S+MZruvY0jif~q(>*y(kmr*7YbayX(Apr^oaQ` z_9U&Xky6uxD$J8CkTEL(qocoIWKdo39otE|Ple@bV3N8r`DWJQ=%FDLEO|fV!@KN*i!fr0ndlAAsVuRY?L6U0pR9PWInYy-BW@I>xSvw~1vU z6H6Oe%q!_ikJ~HxiNX`gYIruRXy%>kX-4|lCK-a-mEn!+b4NSa32N7fs2Uv{d1caI z8s{2BCa!~~j2{*kiv&$sAgCt08xsr6%67?WL5ER(SA42bf)1mTQ}vs>XA>Rit;&=r zuS{X*)TES+g_sVimzpZyZJwZd5fL>wTK;KlnJ>o9VzZyaRGP9HSZt>mtQ2IuFWD!k zvup6GdHE(moo$5FuuRn9m!mlA41`Sk%M(_DmPrOqayyS-UPQiB%cNpzX?uONImBv| zKF>-Sc$#~ijD2$kk?EG@q)f=fG#(}SqSb^a%)R0?mC41TliQQz-cVG-CC5Vs+GGcV zY?X|~eYq?L^oPBP;%>y$#(KJVCu&O8ESXVY&|uWa-iVz4F%#6+R!Z&kS+LAhC9(?% zU9p&CYir|uyCgBOVrpSzjeRsbYBF`wmnIRzvXS+>^hwG_ z)@@i9lePt#mM!2VsF!X1)-$B3%H=d}OdT{j?C`SN@?>xmt>O|?tWjBw_t45*ZPSXh z%!%0jRj$BDm_joW<*=%gKS+8=Zi*UDQq?&@wLFQ?7)`b^l0LlIctvpym#DcK-!5H^ zeR#RcQ8p@g0ZH=Vt(XR5tej7Y788gC{KMolY5Qf~%UKULib_fZb(DCzvVPr>ppG&^ z&a`TH6$fG(m++$p;#MT!vYc zMxU5;3rS3aC_CJkadCaMR^spWQAewpD-|2U@43?39NoQ0CKnXF$ik!BQE6#m+NG{0*$E24jQ`oqadO`llPr7@Y&^q>Ezz zVhVMvVA#LNz@3)BcN-)w7`_e-lNJpBZ&Om*!=GuQ?#>jUV8lL@JJ-$6qKQ9LAg-a= z(56uES`tadEF3py5+zpUwpPIYzdN^Kxyvxvt4AM2a?k3G#AO zR_%?BzBAFD)?D9cPgJm*mE}8EXPBL)Oa}>FTPz3-YJp^Z>r7!AfEb0y|arcTL9 zhg&u}*fY9hrZ_e*WqE#ey`Q5+WvM~AiUr247Gr(}bCh(fr^&HB)n<=*1)aitw%`tR zaD76wu+THzwL!csrqZsLES2TpGGkPBxv&`0WV^r@f};40WWr<@F%8ZJGm4XXYPDGnDbWvY zHAn(W8xqakNo-j$wKcldKAMOdhZ0d}kVRPHj&G7STy~UWMf%!g>@e-k_mIDP=98qo z6Vw2Vuo*=(nIM?{o%qw_WODhi_zuK8&8cr4ud>-x6pefm>rPOuZzAi>tR`c9zIN)O z3oL@_D_EN5XX*siS174w`^#Ehw(F*5xaDpp8wJju+NQ?1FD8Mr$4Uh;GdfJPW-OSO za*K;)u)u;2k~55%p0gcu;w6b$AnDAyxt-XaWZi@3e?=Ac(=*9ebb>B9gVw-VH^~`h zR(@}MckRtCPEZZ)VrEy+WYU#g6Ee3UQ&zZ~T%b%P8P4KyC!Egmm2Et7(%;(ySpRxOT%umbe zvdd(4**mB-@ck}{O>8Cb{fdYNWkdO=2?brFC32fZqglknTnJx3OmtbJ>3#Yni7ql~ zX456|Z(}Fgxi&9Nd++76rRl=bcp{6QQu$lO)MA-FTBEWEM?A~ClAZ{KOGj@qpSna` zt){LEdYs}AXgt`9Y=R!A5mMWmmoP)dXYRsH}#^ z9Id6{(S8n=&5A5tdhK@9`(K3yFE$`Z`c(OP1F71GNObJ}adbN7*N1a2f{*%Ayom<{-^3OC6}9WbQ~pC9_si z9R#hrR2yFEC1~A6L~Rb0e;R{!>}#yaE9vdI{+9K51l@f5$9UtLU_22Bs^!ta3uB+& zg}jMg5+D(_zahH8Qq@3goUBSnvn<1leS)Q`#Tqn7>)X>)ivLakg2umiQ+R^L-w3Ih zjfksGoCl7*+4j&9KOf7^RPh3N@e>^-^RX3EYw{h97MqXt-*wCwtFs)FLI2eZY2-*5 z&t`)DtCLfso7h4xN7Kk4+-|5fZJPG&V(BTT<$CrKrKbp~v7TZqIByr#!Kg2GYCwWf zU)Cudowc4<+3_jm&x}UtF|liow!-YFk2t5o^5KrK@?w;vd^kak)!6VbEVEx@-ttN1 zv*s<|iq^qym1NJC6hzJnB-UYt(CGIUlT-+euDdvDciBXzk)#)5KBP3(c*Z#Nu)bN2 z!82noY=+U6>Z(Jde`d3cphkPA;DyPsZs=1;$%Te?%7-7ANiWld%>+kiaD0J$8iEzH zT?dKV)cX(#niga1uslw=SzN*X}h%X!ZOS?egJ-BA{#Wd+~XVTF(hbet(00GX`hT)TUDu3 z((NawBjgUl3BIqa=PEjbP862Z1w5 z99N}hq;@yT#R(z1Yh|-UmMK;1p*N+#3x(Xn>*a-np%5_*#SqNNqlUu%8-Gi%sEceE zlsvg8O-AmX$pj_ON~y)oDxHr?R*zXnfOHXPU8v_4(9n8yst6Zd@|Gx?(QDqeP%S2! zTHb>bkZm^zPhxm6B0&fm5t$tECx8;VCl@ulfUT{TS47gFH0plv^+Zy zRI8(c7izlE>~6w^Y1TEHM*V{mG6DuByklPwK~XO3J`5Rf=*ezKL?+nQ&#V0 z;0G9oaJ}3eAcy@&YUnWdGV*J8@I^+0KUB{9(z0N#>?@PUMp=4fN<_p>6?g@#^F)r{ z>%bbQsI1x_7ky{Go7~SSu1I^?sH_x}uvE#x(7GAhFDUj$UhG9}$y&*ZX#o1oYVC&8 zu>2RKmGWKdNy@*GQVSF7&69~7`*%!d%AS2UCtID*6=adGbUMWmB3lAw!iTwD;u#6U z^6I=lK1mb?q{1-pWWpdPme)4drSz6&orGr0J*P6Yr`#rx%5y25T+%FI2$px*N$Q~5 z^3puP@~)V;hN>*~+5}JQ#xmUPvPxffN@fe@jECXc`!A14j*}WQpQ%}F?}+q5H!VSq zFf;H$=pS^&0g=WBh?x2~I zv1rj4Ujk7oTdSA`caW{~WjH#GeK9koqbc1=GgJtM^&*k?tG)!oP$Q&9HZ>0>?)G1% z*3ej~wP1|a(EjE4BBGYc<)6lmi53%(^p-1|8{RqU;zDZoS(T}gd&_z(+4VS2oJECE zUOmy!P(1IQBtfm1h9IR{Oel8WT|Ac(PczPsOnrynP)|~b_7#(uv|?&~5Vg&5ie4c|W*adV-QAr%sg37EkB*q5wXW0-!C=hJ&c!YPPB0jA za%yy}dp0o+97XP}%u-2h<>tfr#E}5V^slV9_adDr09GyxfPFRrn1@EY=|k43w>tkE zH1V+`N)t5kIhVJ$$k{LKcO-12=^^T3tSnAtvq{U#+@eNS)cC!%1YcXlG~T21(L@`U zhxh={YNmgq-WSs_1@3t+HQ+?64xHW?5!Enk6?tXC;rz3?)ZEHSb7X<^BU$aBM`dM# z;cA!-q#2Vt2mJGBl4Jvw)1Zu)%X4ZMyRla$;$xS5*xfj>R$8a6q9r~-D{ZCJ?lAil zjlH@j%pc_FWj(hvDC>Nrc>hF{m1-+gOwEqfM`PFCd>Ee3V!9)CIUqkX86c?B8{2<;WAiwD_^?Ow9ZU3^h~`A#qk6cJUceNB5fFQQUR1zjz>XWgqs zl6*w7(_Ia0uKV6`Vd~dg)p#q6p;1umO-vHQP*ejj#sv*{c7ay4jDUfIgX1{R5Y z&>xUx#FD3@88|_IzzBs=7Y)Xy*G|g{1KFm{F9X+Bn1h!sVfnOYR@9Zu!B$KS4{x-O z#Emv#?&tds^} zQ~P8;$lQ4oTk9=_8827J`p%^!84n?~Hnx!mV~onAJ|{Z`X|kmmn>V*|)?Tg+4Hh(q z1->ya4Xc+4k`#C&rN%dDG*8C5sa!Z?N*tT!ZOmUTeMTx&&z`6$ncJ}6G309MalA3^{!#5_P(&LF9hh%S-XsukdRM%Ct zd&axbNU7DGEFdkiAON=BX)<|g(+|Ky<*3scP)`B!IKKVF7nj0atGR!Vi`v1>IjJ<-8#ODXMz^+4CQ0o+(#YJM-PS6-A~fj`H*CK6{m<_pCo8)ot#E>sC%}N-F=~)_h%K`1to5|bkOCIO=0t7G)h7@b-tm9#84lB0x0_sCJPbtNQmB-XZm^FD8)SX()@KSC1MUOr0(pYI-; z*&%s*(SBxver`lmLog}w%A^9-xaek)fb$X<-`g&cPeM`z zMO+-6u`{<46mcV@K`1v5#`tWRqBRrOEFs9)6YiuI(-DCBvpwqtnNRkc&IHztkXqls zJQ(ZK&D{g$xjBBDgq)r$9TLA|FB(c^Hx*M`JL;pc78GcC$r@t6K$|odr$O2r@ZzjT ztMEdGlPA3ln4k)`QW~D&_Q?ciQCil_N?Nm8MeepRhYHwyKzaugO;#eleLle?ejuo} zM+Gm8`N$;~Shs#+IZjoAg#DmaWfZjBuWXXU+DNJ8VOEDR>yIrX16@CpEtQaXDV-#f zA*3dU$hvbq__PB4dv zjM^T>zpZ8YM;VLPvT{w1WMtMU=%R$wQdzv~f7|+|#`aer2&vt53p`lEbHt;~1Y>N# z!Y?||R;ifUN$F!~sTJRO_%R!5IWF0Mb?$-no?=Eq>eV@Ft2=?d-%N1 zm?RS!so+D}yZp#R;q@glH{#Zp1x{Q(WH6_y7XsSUkG6{mR$518H56M!-6F%!mZ5q7~$#4GohO;K|LOjC-3k!+#hyP*<{WJN^nkCuNL+Y4q_ zmRDBJPOV^vzD^(L4Hl8*r(tr-;dEZilO(susM%qxpEq`m#|_s5O(Ack8z_A=nc6h5 z493y?NxVhenI6q*3C7W(q#EBMd}D&(%@alb=6Yi$AVEj8&{R{r?ju1*)X8ZedI!5S z7r2x8!m31$$&yw$8qXv}+DNJTp)%b@ic+MdgNaK?-}r4&Bz^h4d(D2Pu#;5l{bj|t>PkiCTEmZPj==EZmn2UcDK#<(MXR_Hlz5?3I@MDg_Hjmum^ zYknK6v16ySC#kW6^ANU>iB+4W%=A{+?V?P{nl$+c#&_b?Ug2n>rC_^f-j_%+ns9=e z4AUeSR+9;gICNP<;#P{tDhK;DOiK72!q_M~l0yozxYP?*q8x&h25N)^N}f!J?3Q5r ztge$_@etjZAYaG_YDhOU_^#&!`NGMm?Q-{QtkZonM=6-yK=oD9AEpz|`ZISyxP&3- zOEjhP9dWR$n1*1iKAHf;ssQk}BTdEc0il$7R)X(t_bAntE2x<^E3SO8% zEHHW_D^0>g&(t>-#W+c#tDM@~QjSG8dW^YXfX~|;+bwKdtuIjzYSH@w!lY-OAhr%d zw3q6}ndyaKF~m@PG{Mlh8*>-{Gb)n(W!p=gH}onxWHLej37Ozi%fIzIFLC}t{%+ei zoLRUPY#EFhj&1x;WH{LMzrNWRET!Eo1dgumjC|ddO>`u^!kp;qS~-p7=Ikp#k7g#> zl5D!CbZqcfNd|JO!@{g=E;EjIpOR!{Cm0xaFRXR*)cW$ipjT|xA4Z#(B#A3)7S-f1 zb6hgb$^v=m>QZ7VS;*bP!PgAxOa!uiM?68DX{FTYWcy?yIVY3m@Gs{GlujdmqzWs@ znZ|Vz45{J^va6|45A6&*;7$JRLJ2(JP3~%;A*))jQm~u178v(ISYGY1ysGVp{gFgmN;Gm9(YCwiZUK#t-@@ZS%YVvYPPh_Gm@B}!C zTB+&0BuU^2h|0!8fIeIL^mCaPIz*))1e;Br7Cj6izUw2wX47H~@edQ~_QIsESt?N9 zXh*F@c}7k+%*it88Y(m|f!dL0qB=BaWiHUsznQ>Qs=<`0uNP%&GuP~;~&X|-fP{l!rRUYjLLRgCgL1?nqlr31s9%sw9|cZAgJM032KwaM$0R8PEG=BiShD3bJ2cy&t2UYZm((ny)(0i%s& zl1ADIYDmTh2MwCg%o9&U6QPk&zueR&eO=jsVJ?>le&-hg)X}oVmMJ93fuU&dF~V1o zw9(b{#)$EG_+vroAbOb~!B|j4)Z}J#FHL{JEq2kqW-yazjD_8W=6q9ZAxe_&f{{{_ z8#b9IYt{bKoNI(*&dX%Rs}=pcNirEiYG^y-WixiBwaAKInONYBZZDRu3H>6wONy>; zmAkLWI_D%PVXRxscH?MRlEm6bX<&wkR@z?DS{xnb*afVb5XmV$O@8FXQ6I}u2_kQV z)ZV~_Xppt+vU*w;vWIKegUXZL-O?K~KCEcW5@g+osG3VfUYR(`;Mw%`rbU)C1-*Ou zv7G!BJ0w3r<>lnm=ur3UEH=qLV%A%pt$_XG#-{ zIgn9ngBEhxRHd7{iw@_40@R$BaaOw*R$3`Fv#EWupL+i6VArbKGDnnx?xaeZQ{KJr zoS-`yl~vo@M&Fqb1jpoxYrn0nJ>X6b6;A+vX%cr+ z34{hRBf%tjfHg@fi?b5)?uzz_r-^7uQ z^0%z4BcMGp-#lmwUgFh*kpe=B6YJISKHX&GKmA2|QTak_}MoAD&WYo|Q{%wrJ z9Hfh;?iqf}z}c`OlU|n3)Ov+oG?j8TsF>Q^NFQz7M5A<1Yct$XYWLy<(=jVDRl1zk zGnimHCX`g0TZC`yN5z5Ez*)DcMVYEHw`y0ri}AHrE5uJN%X+;~B#E{a(;y6%jk$~L zn-cAdn2TTLn4p7ZrPSDF_Q@u(8g=(fs3VQi66RYuY>D+0UKEq$Ta^ovS)YyJN;Hs6Sh*les=f42F!o^;Hs>+Qkt?ja zjyR$to#Y^a`E`6ru!xr`zAC1MM(Lx884LcWY0q45Z=icFcjC&*4I&q8J$FiE6GAo~ zh6G#BW8xZ?ak1AXOmoD73}RE$=FVwl1#MA)8k_6t{tp3CaShNE7a)CY0u&t~F)lOh zmh^I(7(8XYP{BafC=j(|-T`A}FRKSIN$HgR}JfXWDwzLKt}oc=%x z#6uwyBJm?nlZV0z$3kIWx(q5VAQu+<2NQ~*5tDPNW$l_*MiP7nE2Va~uusOIob|*! zs`X%+9Va?b#QE1cmu>Fk{!`@~`%3_cEt_Z|}T%8^miqxiS6%4P^RpUvo3 zJf@64&H5hB7$@5Wow!3}Y|LsBFXjn4aZXOH4|UHr-cxse%7B@&e35fi@LSGSO%j{+gTX+#8SYCLa&e)l zzR9o3+BmUoRr1a*Notl32VQxTYX^jKI1%gV#CQqWh9|KVQMG0-8@9^)$OSV2#g-C9 z&X-qneWu$jD>7OQY_1!IF5FDzr)C?qQmevht%q#u)68j-uwVFN@qx=x8-4@bMj0#; zR0|uy;9BdSYT~V`FS+ z%^4h5Io}OROwS@J7&#y|+SzHNXVJQ}S}!_scEj-Jx+7$9up=aDunlk3sx_$5zO!4| zYcePlD@c;pWm+laiDDU*cHdF=xcDV}!)NJEn2F+ z_Pu4BUV9!}Z;otlC&_ z4yPi^1T_oLQZqPdDmb}uy+DroU)F5P!f9Fj_$mCPOcLr z>*-~xP?AUY>V^f#xZPOx9~+w{i@Qi!Sq;u$d(wPU*oK+#seZ}R>qb7&D%!3#dK;|@ ztLe?;0`FONM{*sfdj}_{GX-E9R6aylElCeZcG3FfH%Yama%#5AoN%@|EU>bBCEmrC z-Q2dLW?6 zH(F>GX{rg9smM8m)lw(15w;L~@RlZ8p%=iwN z8DG-O__!Ir(n%JZ2_?*q9WXPgq?t)^Gh24R%$6n1Y#BGR zRR_#$Rnp8>aWh+Yz|7Vq&1~(Pnb?7HBQmX;nH7{9w0h-c;<)yg8<8n#CRT1Hj%$Cp z5t))^V&!Jyxb~MDktt~=R&FMaYk#>BnUZE=nAxVJnQbuBKWGT5<=BoTa<-+v`>~C6 zAH|YtvRg%m@zzDHED<6Kk_8W!QE2c_U9- zM;tzN{?g_IdmYeW>0tk=so`F+a-OD5r$q4c}Xv+N~z1xl>Ixws(F?$3kuNIIW#C zE2}fHJCZvXUe)9@cfz0Vr9%h9YxFp+U3n^+gWI8FDG}(3XwNpWui6WDhqbFNr@ga; zJMOgTU|Optr@0$pmW$(KBeESkmMoz%r@wP;GoC{)RXQ4StI28ZA}gP(SJe1RI6GL{ zovJ{$+#$SJF6r`u-9g<>mDAlhE9Z;X`;}A&Q$#g|n$5)@UZ6Xw*=ll{yV!{!KhPaa z52woM?y4{R?qLT@PN2(aU&r_?y(H;iTVoYDy`7CO(cdQ4(X=*qtDfgHch8EKKxS*= zXM=aJrHN>B7P`rtM!xuH?hcmuP?^);FL<@seeCFT$SxhLTZ)xBd!6cXu~xZ*?S;|f zw5~1p26_3WjcLEO8e`Nro!z+Z)Si+WO_2_!e5lOn?;)?2=48$$UY}3xSei%GIU8%m zju)NWG1a2QY3$Sx-}>6Y?`QNltz8;&4Tog%{tA!|)>%%K)7?W(dgX+#d^)zQtb^$s zRp)GUwWl$~t{~}Py%^|n+Sidam$6;09jq6vqEIjUEWL8mQN2b{px5leSsi+0``b?pA# zXv^8r(3>5|PHz{PabZjA>PT^?%IWTGcc*!(J6K9plhfRFMS&$du?ti?*ggchoc7Ku za+Ru_0hD-pnY7?Kybj&~Z-TeL+u&XB9(W&o06qjCfser_ z;8XA!_#Auzz7#Yc^p%io`Zce<1>b=mz>i>!E`l||+MpBY47z}BpgZUZdVxNmFX#^j zfOWwjus+xTYy<{_O~9sL2-pk^1H-`xFcORgV?Y@g2ets?!9*|#Yz4Lk+kh!xJFq?2 z5$ptZ1{GjBm;q*jSztFX8|)6|f<3@|umCIsi@;uBAFwaj9~=M<1ZhwWYCtVm0#4fqax4}Jtcfi=4d)&iZtI-m>a3c7;*@3CQ8aM--3C;%R zfb+ol;6iW_xCC4ZE(ceDtH9OZT5uh>0o({~2DgCQ!0q5pa2NOmxCi_a+y{OI9ss`v z4}sr+N5F5vW8in-3GjRH6!-&p2K*5`2mT~zKIjD@1^LgsdKvr$ybAsbUI%{zZ-T#r zx4}E$J@60k0r)5Q2>c6t0{#s?1OEYEfd7K8!2iHE;9KxL_yPO`*61c!3#<*+0i8it z&<*qeJwb2K2lNB|!9cJsSP!fZHUt}ijlm`$1%`m3U>MjOi~ys+XfPI(fpV|~m;fe% zEx}e`GS~)e3$_D0fE~e9urrtjrh{F;Ot3514a@<%gLz;NPze@*J;5TdH`oX42lfYx z!GWL(RD%qt1xrB|ECY3*0p!5JAP<^AGgtvufN z4V(_n1ZRPBz`5XjZ~?doTnsJ+mw_w5mEdY{4Y&?m4{iiEfm^_>;C65axC`73?g96L z`@sF+0q`Jr2s{iP0gr;mz~kTv@FaK&JPn=!&w}T`^WX*WB6tbB3|;}Rg4e+7;0^F5 zcniD@-UaW0_rV9?L+}y!7<>Xg1)qV>!5835@D=zPd;`7%--92)PhidNg0(;=uny<~ zx`OVY2j~TQgTA027yt%>L0~1{;G-K?-aJhJxW>b1)K&0%O2fFb4XF%m#D7TrdyJ2bEwU*c0pp_6GZc{lEcW zF-U_dPy;ex30Mja0?R->XaJ4iU{C-}U^!R;TEHRTFmO0H5*!7N0mp*l!3p3ba56X* zoCeMSXM(fAIp92SKDZEE1TF!Wg3G}b;3{x6xE5RoZU8reo53yMHgG$*6Wj%U0qz06 z1oweofd{~^!9(CT;1Td!@EG_Vcmn($JO%y$o&kRZ&w)RI7r>vvOW-fy74TQ^8u%M{ z1NOPgf`5Sb!9T%=;9uZl@Ne)b_z(CT{1Rv1Higq5Lh2<05$@H!6sl+Fa&G{hJoQ=1Q-cMgE62Cj00PM z@n9mD1hxWOgKfYRupQVQ><*QD1V@8oz;WPsa3VMf zoB~b-r-L)VS>SANE;tWd04@X)KPlG>zXTcxA^Wab5Met|vGWZL475o*v z4*mw-1b+u_gLlAt;2+=v@K5j&_!syD{2P1*{sX=M{{>%x|ABA7x8Qs51NaH7(NnM% zSR1SZI)kpD8|VRgg5IDH=m+|PfnZ&*9#|i22sQ#6gH1pR3;{#IFt9lo0Y-t*U@RyD z<<=$13?w21{qKbmVzu;2I@cq$bo}F9yEbwumY?Ehk!%D;ot~x6gV0j3yuRP zfD^&V;1qBgI31h`&I0FvbHVxG0&o$y7+eZ216P16!PVdza2>cF+z4(0w}4y0?cfe@ z7q}bT1MUU)f&0M&;6d;Zco;ka9tDqq$H5ceN$?bS8axA@1Hdp&HU^u56xa+51;fGSU?dm?#(=S4 z94H6l!2~b~Yzejolfe|QE!ZCH0CoaXK?RrwW`JG5EU+t>4d#HkU>=wcD#1dqC)f+@ z4fX~5fdjx|kOozt24uhzuoN5wmVtWE02;x;pa7b{aC z;IH5{@Hg-V_&azDyaV0^{{ZiUe}WIezre@f-{4d5AMiQ&FZdGt4}1;21>b=mz>i>! z-hws3+MpBY47z}BpgZUZdVxNmFX#^jfOWwjus+xTYy<{_O~9sL2-pk^1H-`xFcORg zV?Y@g2ets?!9*|#Yz4Lk+kh!xJFq?25$ptZ1{GjBm;q*jSztFX8|)6|f<3@|umCIs zi@;uBAFwaj9~=M<1ZhwWYCtVm0t2n}8G;0)~QNU~@16 zi~^&cYXb^$ZNu3$GX2kZ{!fjvMa zSOE3}i@@GsAFv5!?iB z0k?wN!5!c(a5uOI+zajl_k#z(gWw_XFn9z!3LXQGgD1d~;3@Dlcm_NRo&(Q=7r=|) zCGawM1-uGg1FwTOz?(HTw$I0-eA*pbO{;$HQ3NQ`K0K0%$U{^33%mH)3JTMb-+z4(4 zw}9Kg?ch#u7x)FZ2mBJ;2Yv+}0KWzgf!}~fz;D50;CJ8&@O$tS_yc$b{1H3{{sdkC ze+DmszkpZ3U%_kOZ{Q8^ckmW?2fPdZ0p17y1RsKbfsetz!KdIq;B)X_@Fn;k_!@i* zz5_piAHf>^1Z#q|K_}1|bOGH!chD2`0)0SV&>su{>w-aGeXs%82n+_BfK9;=uo)Nz zhJz7cBp40GfHE)+YyrlDiC_}g3TzFw0aL(sV0*A5*a_?mD!_Cw1Iz@oz;0kR*d5FT zdw}_10ayqYfxW;!U|+C5H~<_7(x4jDfLgEwWWhn84%CAjXasps0L@@ISP5Fdq2MrZ z1UM2L4UPfFf#bo6;3RMgI2D`@&H!hDv%$IGJa7TH5L^r{0hfWx!Ij`Da1FQ?Tn}yl zH-VeMt>89r2e=d54SoUc1-}IMgI|FM!LPx?;5Xn=@LTXW_#Jo>{2n|F{s5i@e+18i zKYhb-{XIeXt?e2y6^C0Vyy9 z3#U_Y=wSPTvXRiGMVKrL7bvS1mg0}UVt4hDJ91e(DLuo4^s z4h4sUBfwGMXmBhz4x9i^1Sf-2z-i!ga3(kloCD4U=YtEtMc`s^DYy(=0j>mBgKNNb z;CgT)xCz_>ZUwi4JHTDwZg3B{7u*N#2M>S;!9(C-@CbMmJO&;IPk<-EQ{ZXv40ski z2c8EnfEU3_;AQX%con<`UI%Z0H^E!rZSXF554;aP03U*nz{lVd@G1BVd=9<Qpx{lEY)5DWtAfepZhU@+JiYzk6f zGcXhk2b+VDU=$bw#)5I69E=AOz$CCG*cwa*Q^2-hd$0r82}}hQU>cYKb^)`%u3$Ep z1LlHxU_Ph>3&EaXFR(Y*7wiWP0EOli&1P6lxXadW@3eW-$ z0f&LZ!I9u7a11yW91l(aCxMf}so*ql1~?O(4bB1Qf%CzI;39AdxD;Ftt^ikotHHJ4 zI&cHH5!?)J0k?tM!JXhP@C$Gc_$9ax{0ck(ehnT1zX6Yc--5@$@4yq__uwh;2k;E| zBX|z{3A_OQ3|<0%0k43+g4e*`z#HK2;4SbDco+Nwybt~fJ_P>)AA^5`Pr-k{=itBK zOYlGNHTV{M2YvuQf;9#T)&y&VPM|aB0=j|jpeN`B`hdQmKNtYk1%tr)g64xZ5VAOH zBVKI`HUTLx1Plekz~*2C7zIXyv7ii;gDt=WFcEACwgQvEHeg$@9oPZv2&RIa!89-( z>;h(jUBPZ(4%i*c1ABlMn%Be)6N0&WGjgFC=o;BIgaxEI_9?gtNm2f;(&Vekle6g&nV2Ty<} z!BgOA@CeOfG(gb=ni^-UZ6MV3;KZpU?3O-)&m=W z4Z&crG1wHOz-C}57!EcEBf%&z28;#cKsgu>CV)v`ORzPV45ol>!S-MWuoIXHD!?=_ z1MC83fnC9DFbB*9^T2#i2^NAq!Cqi*urJsT8~_%BG^heKAOn_wrQjg24Ag@L&m{29Ci{sLYBe+93BzkxTv-@#kp9q=yr2Y4U+6MP8%1wID< z2A_iefX~5y!I$8F;A`+L_zwI4egta_608Z<2Ax1>&;@h@-9b;#3-kefL4Pm+tP2K# z^}z;UBQO|j0yYIhz-C|=7!F2&kzh0!1IoZSumu;dM31z;gq1oi^^fPKOK-~ezSNP}un18Tt%kOc>UI#3UC zpb_Lj0W^cOelg7?7t-~;d> z_y~LqJ^`PC&%o#43-BfQ3VaQ|0pEe|!H?i4u;zM#wLmAZ4(I~9g6^OP=mmO%zMvl% z00x3VU_Gz_*boc`8-qx~wgg*)$zTfD7Hki8 z06T%HpaM(-Gr%rj7T6Wc26Mn%Fb~WJm0%&*6YK@{2K$2jzyV+}NP{X+12SL5v{7kqKFl71@ykxsV%qkq-q>5QR|$#ZVk2Q3_>H z7UfX^l~5T~Q4KXv6SYwX^-v!T(Fje@6wT2BtTvoITTF%Jv=(xv6Xzj`(otCnIJR$wJoV-40} zJvL$!wqPr^V+VF&H}+y54&WdT;|Px7I8Nde&fqN0;{q<>GOpqpZr~)=!M?s zi+&h@ff$S-7>3~(iBTAXu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5 zjo6GW*oN)ciCx%(z1WWfIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0hj@%9 zc!uYAiC1`ow|I{a_=L~+if{OVpZFKQ@dp87{pBA7LJ$N+aD+f8ghp6|Lj*)bWJEzU zL`O`-LL9_Jd?Y|3Bt}vsLkgrsYNSCrq(??%LKb92cH}@V-VH80z6h}#v zLK&1rc~n3pR7O=)Lk-kKZPY!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTP;JjPQz z!wbB`YrMfbyvIj;!WVqScl^LF{EPqa2LWUMBt#-4K~f|~3Zz16q(wSpKt^On7Gy(qo4b(zy)I~isKtnV}6Es6}v_vbkL0hy(2XsPbbVWDxKu`2WAM`_i z48$M|!B7mx2#msLjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5Y{VvP z!B%X?4(!5i?8QDDz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lxJj5eB!BafP z3%tT>yu~|wz(;(>7ktBa{KPN(#(xM9=Pv;f2!Rn4!4Lu=5gK6-4&f0Ikq`w@5gjoQ z3$YOw@sI!skr+vk49SrasgMR~kscY437L@<*^mP{ksEoC5BX6Lg-`@VQ5+>u3Z+pN zg4(-tqozMkc(H%X|3%$`7{V)In zF&INI48t)Jqc8?zF&+~z36n7u(=Y=wF&lF*5A(4Qi?9Ssu^cO~3ahae>#zYEu^C&i z4coC3yRZj)u^$I;2#0YL$8Z8CaT;fE4(D+Zmv9AFaUC~s3%79>_wWD@@fc6=4A1cr zukZ$M@g5)W37_#5-|z!J@h^Vk4+6yf%RdN&Ab*(>AV9zXu4PbFaD+f8ghp6|Lj*)b zWJEzUL`O`-LL9_Jd?Y|3Bt}vsLkgrsYNSCrq(??%LKb92cH}@V-VH80z z6h}#vLK&1rc~n3pR7O=)Lk-kKZPY!w&4kZtTH6?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTP; zJjPQz!wbB`YrMfbyvIj;!WVqScl^LF{EPqa2La>#Bt#-4K~f|~3Zz16q(wSpKt^On7Gy(qo4b(zy)I~isKtnV}6Es6}v_vbkL0hy(2XsPbbVWDxKu`2W zAM`_i48$M|!B7mx2#msLjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5 zY{VvP!B%X?4(!5i?8QDDz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lxJj5eB z!BafP3%tT>yu~|wz(;(>7ktBa{KPN(#(xM9|1SX%2!Rn4!4Lu=5gK6-4&f0Ikq`w@ z5gjoQ3$YOw@sI!skr+vk49SrasgMR~kscY437L@<*^mP{ksEoC5BX6Lg-`@VQ5+>u z3Z+pNg4(-tqozMkc(H%X|3%$`7 z{V)InF&INI48t)Jqc8?zF&+~z36n7u(=Y=wF&lF*5A(4Qi?9Ssu^cO~3ahae>#zYE zu^C&i4coC3yRZj)u^$I;2#0YL$8Z8CaT;fE4(D+Zmv9AFaUC~s3%79>_wWD@@fc6= z4A1crukZ$M@g5)W37_#5-|z!J@h^Vk4+13k%RdN&AP9=!2!T)tjj#xZ2#AQth=OQ{ zj+lsrIEah*NPt90jHF106iA8GNP~1pkBrEKEXa!N$bnqQjl9T*0w{>WD1u@rj*=*a zGAN7ksDMhSjH;-H8mNidsDpZ_kA`T3CTNQ0Xn|H}jkaiq4(N!^=z?zOj-Kd+KIn`7 z7=S?-jG-8Y5g3Wl7=v*bkBOLsDVU1sn1NZCjk%bI1z3p1Sb}9(j+I!2HCT)F*nmyg zjIG#)9oUK8*n@r8kApabBRGoVIDu0*jk7q13%H2OxPoiAj+?lJJGhJccz{QEjHh^p z7kG)+c!PI%kB|6-FZhb@_<>*e7ysc80w(;+KM0H<2!`MYiBJfGun3O`h=j<9ifD*| zn23!yh==${h(t(&q)3hwNQKl$i*(3Qb zD2MW>h)Sq}s;G_{sD;|7i+X5)hG>i?Xolu!iB@QXwrGzI=!DMbif-tEp6HD}=!gCo zh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<np$odAJ9?lOdZRD;VE_hV zFos|lhGQf~VGPD%JSJcgCSxk5VFqSmHs)X+=3^liVF{LEIaXj5R%0#JVFNZ|GqzwG zwqqxDVGs6VKMvp!4&x|};RH_NG|u20&f_93;R>$eI&R<=ZsRWQ;Q=1vF`nQVp5rB6 z;SJv6JwD(QKI1FC;Rk-=U;M@&1W5dse-H>k5EQ`?0-+EZVG#}y5D}3P14F%b)K z5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSt1jSGsB~c1xP!{D; z0hLf0RZ$H!P!qLL2lY@N4bccq&=k$l0MjcJ<$t&&=>tN0D~|X zLoo~^FcPCN2IDXu6EO)>Fcs4=1G6w2b1@GKun>!}1k11-E3pb|uommF0h_QHTd@s0 zuoJtn2m7!e2XP2Ta1_UJ0;g~qXK@Y}a1obr1=nyLH*pJha2NOS0FUq(Pw@;d@Di`_ z2JimTrRDp-T5f$*ea07j!*~3|FZ{-T2$1A20TBp+5fs4?0wEC^VGs`C5fPCP1yK&4bTXU(G<vF0UNOy zTd)n=u@k$n2Yay}2XF|7aTLdJ0w-}AXK)VZaS@kr1y^w$H*gELaToXS01xpPPw))S z@e;4_25<2mAMgpE@fF|j13&REe&Y`UB>l@j2!tRAir@%=Pza5%2!{xWh{%Y7Xo!xO zh=n+ai}*-@L`aOJNQM+hiPT7gbV!ek$b>A&itNaNT*!^Q$cF+bh{7m>VknN1D1|a8 zi}I*|N~nygsD>J-iQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i~bmZ zK^Tmo7={rTiP0E?aTt$@n1m^qis_hvS(uHvn1=;eh{affWmt}tScNrMi}l!mP1uaB z*oGb0iQU+Peb|qKID{iOisLweQ#g&YIEM?kh|9QwYq*Y^xP?2oi~D$hM|g~6nRGn1i{Pj|EtS#aN1ESb>#TjWt+@_1K6_*n+Lt zjvd&A-PntLIDmsVj3YRP<2Z>^ID@k|j|;ej%eabbxPhCvjXSu9`*?^)c!H;Rju&`^ z*LaI}_<)c2j4$|x@A!#d_>KP%Ao*VcA`k*2D1spbLLxN6ARNLYA|fFQq9QtCAQoaH zF5)2p5+X5@AQ_S)B~l>`(jq-FAQLhpE3zR6aw0eKARqFhAPS)filR75pcG1@EXtt* zDxxx~pc<;9CTgJ$>Y_dxpb;9QDVm`LTB0@DpdH$yBRZiAx}rOJpci_hFZy8s24XOV zU>JsDBt~Hj#$r4sU=k){DyCruW@0wxU>@dUAr@f?mSQzlE!JTJHexfjU>mk$ zCw5^E_F_K{;1CYuD30L-PU1Aq;2h55A}-+yuHrgw;1+JP#h&u3T03hC&g4js@DozVr|&>cO|3w_WR{V@Q8Fc?EI z3?ncSqcH~KFdh>z2~#i?(=h|HFdK6*4-2pmi?IaDupBF~3Tv#+fwuo+vi4Lh(C zyRirRupb9;2uE-f$8iFua2jWE4i|6{mvIHxa2+>s3wLlA_wfLa@EA|=3@`8!uki-& z@E#xW319FP-|+*#@Gt(u9|TPKmwyl#K@beV5fY&g24N8%5fBNH5f#x812GXBaS#vj zkr0WH1WAz`DUb@OkrwHY0U41QS&$9ckrTO)2YHbn1yBfuQ53~c0wqxzWl#>~Q4y6; z1yxZUHBbw+Q5W^l01eR?P0$R@(GsoD25r$E9ncA#(G}g$13l3jeb5j6F%W|=1Vb?# zBQOf1F&5)60TVG9Q!owFF%z>e2XiqW3$O@_u@uX&0xPi^Yp@RMu@RfF1zWKlJFpA8 zu^0Pr00(gxM{o?saT2F+24`^|7jOxeaTV8a12=IScW@8)@eq&j1W)lCFYpSl@fPp! z0Uz-hU+@jz@e{xB8~-6ds=ow8AOuEG1VadfL}-LTID|(;L_!oqMRdeKEW}1!#6tok zL}DaCG9*Vzq(T~`MS5gFCS*odWJ3<*L~i6kKIBJ16haXcMRAlsDU?Q8ltTqnL}gS# zHB?7U)IuH9MSV0tBQ!=+G(!utL~FD`JG4hfbV3(&MR)W-FZ4!V^uquQ#9$1;Fbu~? zjKUa<#du7>BuvIsOv4P!#B9vLJj};JEW#2j#d55`Dy+s@tiuLu#Aa;4Hf+aE?7|-G z#eN*XAsoh09K#8m#A%$tIh@BuT*4Jx#dX}kE!@Uk+`|Jr#A7_cGd#yjyuus2#e00f zCw#_Ne8Ug?#J~8BKM0WeFaIDAf*>e@BLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2 zF_Iz~QXnN#BMs6aJu)H_vLGw6BL{LJH}WDM3ZNhgqX>$jI7*@v%AhRDqXH_SGOD5) zYM>@+qYmn!J{qDCnxH9~qXk-_HQJ&bI-nyuqYJvBJ9?rQ`k*iRV*mzWFot3nMqngH zV+_V&JSJiireG?jV+LknHs)d;7GNP3V+odFIaXp7)?h8xV*@r}Gqz$Ic3>xVV-NOW zKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_??%*!&;{hJwF`nWXUf?BO;|<>7JwDU;KwZ2$<$C{~$1eAQ*xpBtjt!!Xi8(AQB=YDxx6LwhGIBIU=&7U zEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU8 z4&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!SdAs*ogp5i%P;1youE#Bb+KH@XJ z;2XZh>f_2hXhE7#7Kf< zNRE_9g)~Tu^vHlr$c(JWh8)O=+{lA`$d7_3gd!-4;wXVqD2=ixhYF~O%BX^BsE(Sb zg*vE<`e=YgXpE+4h8Adv)@XxvXpfHQgf8fc?&yJD=#9SUhXELf!5D&J7>&Der%*p8jpg+17d{WyR_ zIEh7&l6(>Q~3IFF0Cge$m;>$rhixQ)BGhX;6w$9RHgc#fBNg*SMM_xONM_>8ak zh9CHefAJfC5Fp)O{y`uFK~Mxo2!ujtghe<+Ktx1F6huRG#6&E_L0rT~0wh9WBtvVs zOvEHi!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U z!BHH?37o=doW(g@z(rif638 z5B$Qv_z!;&F#TWtL0|+yFa$?PghCjEMR-I&Bt%A3L_-Y3L~O)CJj6#rBtjA-MRKG- zDx^kQq(cT|L}p|`He^RmkIh035R6-S0MRn9bE!0L` z)I$R_L}N5TGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#KlH~y48jl$#c+(kD2&EfjKc&> z#AHmtG)%`#%)%VZ#e6KlA}q#IEW?VwbV=TFrMwzzunz075u30DTd^HGunW7f7yEDk z2XPoja16(B5~pwmXK@}Ea0!=j71wYBH*p(xa1ZzK5RdQ#Pw^Zt@CvW-7Vq!@AMqJq z@D1Pb6Tk2q{~t+dSpN*WJXqGLk{FbZsb8ew#zxa(m2$1nF{~!>8ASi+(1VSM+!Xg|ZAR;0o3Zfx8Vj>peATHt~0TLlGk|G&W zASF^G4bmY!G9nYQAS<#X2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag z4(g#k8ln-JpedT81zMps+M*pgpd&h?3%a2@dZHKlpfCDk00v<&hGG~-U?fIk48~zR zCSnq%U@E3#24-P4=3*WeU?CP`36^0wR$>*_U@g{T12$nZwqhH0U?+BC5B6a{4&o4w z;3$sc1Ww^J&f**{;36*L3a;TgZsHd1;4bdt0UqHop5hr^;3Zz;4c_5BKH?L;;48l4 z2Y%sS{D(gXnCUP7ATWX;7=j}tLLm&oB0M4>5+Wliq9F!iA~xb69^xY*5+MnaA~{kZ z6;dND(jfyfA~Uie8?qxOav=}$B0mbC5DKFxilGEbqBP2&9Ll32DxnIhqB?4z7HXp| z>Y)J|qA{AF8JeRdTA>ZvqCGmG6FQ?Sx}gVpqBr`WANpe;24M(>VmL-%6h>n##$f^` zVlt*+8m40=W?>HIVm=mN5f)=9mSF`}Vl~!a9oAzbHen04Vmo$V7j|PW_Tc~y;xLZj z7>?s4PT>sB;yf$b)>ykAf(KA}EUDD1lNajj||*3aE(6sDf&!j+&^2I;e~K zXn;m&jHYOY7HEmqXoGfWkB;bsF6fHx=z(77jlSrI0T_tE7=mFKj*%FJF&K;Sn1D%` zjH#H08JLOLn1gwkkA+x-C0L5(SbZ4cLgy*n(}?j-A+rJ=lx=IDkVqjH5V) z6F7;}ID>OIkBhj3E4Yg5xPe=^jk~yq2Y86bc!Fnmj+c0aH+YNp_<&FNjIa2HANYxX z@f&{-Aj@C=K_CP{Py|N^ghFV9ML0x2L_|guL_>7ML@dNXT*OBLBtl{&MKYv7N~A^_ zq(gdSL?&cGR%AyG(26hm>8L@AU(S(HZwR6=D`MK#nwP1Hsm)I)tV zL?bjoQ#3~lv_fmNMLTprM|4IPbVGOaL@)F~U-ZWS48mXx#W0M(NQ}l9jKg?L#3W3? zR7}SV%))HU#XKy)LM+A-EW>iF#44=8TCB$gY{F)2#Ww7~PVB}W?8AN>#33BPQ5?q! zoWg0G#W`HSMO?-eT*GzT#4X&xUEIe5Ji=o<#WTFXOT5M#yu*8Z#3y{gSA540{KCKZ z4}TCa>tFssU<5%h1V>1OLKuWactk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={iq()k# zLk46-W@JG&WJgZqLLTHreiT3<6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@LjyEK zV>CfCG)GIcLL0P2dvri2bVgTnLl5*sZ}dSw^v6I9!VnC_aE!nxjK)}u!vsvkWK6*{ zOvg;j!W_)Sd@R5sEXGnS!wRg#YOKLJtj9)d!WL}BcI?0|?8aW~!vP$`VI09R9LGtV z!Wo>!d0fCHT*g&g!wuZTZQQ{<+{Z&a!V^5jbG*PSyvAF+!v}oCXMDjoe8*4x!f*VC z0NMT$5P=XFK@kig5E7vg2H_AM5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y z0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTX zP03M4JFyFUuowGr0EciGM{x`%a1y6+ z2Ip`d7jX$!a23~a1GjJ+cX1C7@DPvj1kdmsFYyX*@D}g!0iW<0U-1n;@Du;yH~t_% z_P_jtKnQ}M2#yd4h0q9#aEO42h>R$RhUkciScrqTh>rwFgv3aSWJrOONR2c|hxEvZ zOvr+)$c`Myh1|%Cd?zL)hw+$*NtlAEn2s5k zh1r;kd02pjSd1lDhUHj^Rak?ySdR_Zgw5EBZPVATeyR}xQ_>TgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=g@5rM{vcqE zzx;#12!db;j*tk2FbIqAh=53ljHrl)7>J43h=X{DkAz5sBuI+nNP$#HjkHLI49JMg z$bxLhj-1GaJjjduD1bsJjG`!p5-5q%D1&k+kBX>-DyWL;sDWCjjk>6Z255-JXo6;F zj+SVJHfW3X=zvb>jIQX09_WeQ=!1UfkAWD3AsC9`7=ck3jjVj(u-A|4VTArd1Ak|8-#A{EjgEz%RyhG95HVid+;EXHF3CSfwBVj5;(CT3#} z=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R z;u5alDz4)OZs9iW;vOF0As*uip5ZxO;uYTDE#Bh;KH)RI;v0V8C;r86{6T5&nckOf(h z9XXH-xsez7Pyhu{7)4MF#ZeNaPzGgD9u-gtl~EPdPy;nl8+A|*_0bTG&;(7<94*ia zt8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_ z8CP%(*KrfKa0hpB9}n;dkMR`G@B%OK8gK9p@9`0z@C9G-9Y633|KdOVLBQO9`3Hd! z1i=s-ArT5;5EkJP0g(_HQ4tL>5EHQx2k{Ue36Tg%kQB+00;!N1X^{>YkP(@Y1=)}t zIgtx_kQez;0EJK(MNteTP!gq42IWv56;TOQP!-it1GP{abx{uu{_=Mb*HCVZCTND{ zXo*&6gSKdo4(No==!$OWfu87%KIn)37>Gd_f}t3W5g3Kh7>jY3fQgulDVT=on2A}K zgSnWG1z3c|Sc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~ z3%G>KxQc7Ift$FEJGh7Yc!)=Mf~R9uqMMQ!o|NF$1$O8*?!a z3$PH2u>{Mo94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}m zaRt|K9XD|ccW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@**@dLl`FaEiB~cn>P!8o$5tUE{RZ$%^Pz$wD7xmBp4bd1)&6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoja16(B5~pwmXK@}Ea0!=j z71wYBH*p(xa1ZzK5RdQ#Pw^Zt@CvW-7Vq!@AMqJq@D1Pb6Tk2q{~t+dSpN*WJXqGLk{Fb zZsb8ew#zxa(m2vFcJ{~!>8ASi+( z1VSM+!Xg|ZAR;0o3Zfx8Vj>peATHt~0TLlGk|G&WASF^G4bmY!G9nYQAS<#X2XY}d z@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k8ln-JpedT81zMps+M*pg zpd&h?3%a2@dZHKlpfCDk00v<&hGG~-U?fIk48~zRCSnq%U@E3#24-P4=3*WeU?CP` z36^0wR$>*_U@g{T12$nZwqhH0U?+BC5B6a{4&o4w;3$sc1Ww^J&f**{;36*L3a;Tg zZsHd1;4bdt0UqHop5hr^;3Zz;4c_5BKH?L;;48l42Y%sS{D(gXSnx0ZATWX;7=j}t zLLm&oB0M4>5+Wliq9F!iA~xb69^xY*5+MnaA~{kZ6;dND(jfyfA~Uie8?qxOav=}$ zB0mbC5DKFxilGEbqBP2&9Ll32DxnIhqB?4z7HXp|>Y)J|qA{AF8JeRdTA>ZvqCGmG z6FQ?Sx}gVpqBr`WANpe;24M(>VmL-%6h>n##$f^`Vlt*+8m40=W?>HIVm=mN5f)=9 zmSF`}Vl~!a9oAzbHen04Vmo$V7j|PW_Tc~y;xLZj7>?s4PT>sB;yf$b)>y zkAf(KA}EUDD1lNajj||*3aE(6sDf&!j+&^2I;e~KXn;m&jHYOY7HEmqXoGfWkB;bs zF6fHx=z(77jlSrI0T_tE7=mFKj*%FJF&K;Sn1D%`jH#H08JLOLn1gwkkA+x-C0L5( zSbZ4cLgy*n(}?j-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5xPe=^ zjk~yq2Y86bc!Fnmj+c0aH+YNp_<&FNjIa2HANYxX@f&{-pzvS*K_CP{Py|N^ghFV9 zML0x2L_|guL_>7ML@dNXT*OBLBtl{&MKYv7N~A^_q(gdSL?&cGR%AyG(26hm>8L@AU(S(HZwR6=D`MK#nwP1Hsm)I)tVL?bjoQ#3~lv_fmNMLTprM|4IP zbVGOaL@)F~U-ZWS48mXx#W0M(NQ}l9jKg?L#3W3?R7}SV%))HU#XKy)LM+A-EW>iF z#44=8TCB$gY{F)2#Ww7~PVB}W?8AN>#33BPQ5?q!oWg0G#W`HSMO?-eT*GzT#4X&x zUEIe5Ji=o<#WTFXOT5M#yu*8Z#3y{gSA540{KCKZ4}TD_$Y1_JU<5%h1V>1OLKuWa zctk)XL`GCZLkz@3Y{Wr4#79CTLJ}lJa-={iq()k#Lk46-W@JG&WJgZqLLTHreiT3< z6h=`LLkW~bX_P@Zlt)EWLKRd+b<{vD)J9#@LjyEKV>CfCG)GIcLL0P2dvri2bVgTn zLl5*sZ}dSw^v6I9!VnC_aE!nxjK)}u!vsvkWK6*{Ovg;j!W_)Sd@R5sEXGnS!wRg# zYOKLJtj9)d!WL}BcI?0|?8aW~!vP$`VI09R9LGtV!Wo>!d0fCHT*g&g!wuZTZQQ{< z+{Z&a!V^5jbG*PSyvAF+!v}oCXMDjoe8*4x!f*VC07d^25P=XFK@kig5E7vg2H_AM z5fKSd5Eao81F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&c0;NzIWl;_lP!W|;1=Ua;HBk$7P#5*l0FBTXP03M4JFyFUuowGr0EciGM{x`%a1y6+2Ip`d7jX$!a23~a1GjJ+cX1C7 z@DPvj1kdmsFYyX*@D}g!0iW<0U-1n;@Du;yH~t_%vA_I-KnQ}M2#yd4h0q9#aEO42 zh>R$RhUkciScrqTh>rwFgv3aSWJrOONR2c|hxEvZOvr+)$c`Myh1|%Cd?zL)hw+$*NtlAEn2s5kh1r;kd02pjSd1lDhUHj^Rak?y zSdR_Zgw5EBZPVATeyR}xQ_>T zgvWS_XLx~^c#SuBhxho1Pxykb_>Ld=g@5rM{vcrSzx;#12!db;j*tk2FbIqAh=53l zjHrl)7=QV@h>I!5MjXULd?Z97BtcRnM+&4uYNSOvWI#q_Miyj4cH~4ZI8Cj7He<25QAvf|O9}1u#3Zn>$p*TvS6w071 z%A*1*p)#tX8fu^>YNHP7p*|X-5t^VWnxh3;p*7l~9Xg;RI-?7^p*wn_7y6(t{ziWc z#2^g8Pz=WijKXM)#W+mBL`=pMOv7}{#4OCgT+GJ;EW%r9K&&(#3`J?S)9iOT*75s#Wmc(P29#E+{1nRgNJy8$9RIL zc#ao%h1YnCcldyh_>3?3hVS@^U-*MSr2`0ppa_l-2!+rHi*Sg5h=`0Rh=%BhiCBn( zxQLGgNQA^lieyNElt_&cotDMWJeCfti^h4 zz$R?QR&2u#?8I*D!9MKAK^(#n9K~^*z$u)@S)9WKT*PHu!8KgRP29pA+{Jx7z(f3t z$M_FV@eD8U60h+F@9-WU@d;n>72oj#zwjG@$^;M?K@kig5E7vg2H_AM5fKSd5Eao8 z1F;YraS;y*kPwNH1j&#bDUk|kkQV8Y0hy2)S&$jI7*@v z%AhRDqXH_SGOD5)YM>@+qYmn!J{qDCnxH9~qXk-_HQJ&bI-nyuqYJvBJ9?rQ`k*iV zMt=;%APm7!495tJ!f1@eI84AqOvV&U!*tBVEX=`N%*O&O!eT7NGOWN#ti~Fw!+LDQ zCTzi0Y{w4l!fx!vJ{-V79L5nG!*QI%DV)JsoW})R!ev~=HQc~W+{PW;!+rdNhj@g? zc!H;Rju&`^*LaI}_<)c2j4$|x@A!#d_=7-Y0|R$RhUkci zScrqTh>rwFgv3aSWJrOONR2c|hxEvZOvr+)$d12|6SiB~cn> zP!8o$5tUE{RZ$%^Pz$wD7xmBp4bd1)&kJp30=??-O&TR&>MZx5B)I! zgD@CFF$^Ox5~DE&<1ii*F$q&J71J>TvoITTF%Ju{5R0({%di|Pu?lOj7VEJAo3I&M zu?;)06T7ho`>-DeaR^6n6vuG_r*Il)aSj)75tnfV*Ki#-aSL~F7x(c15AiP^<3Bvb zGrYh{yv7^6!+U(hCw#$Ie8&&`!fymBA3$IPMKFXwNQ6chghO~lL?lE(R76J%#6oPu zMLZ-xLL^2KBtvqfL@J~~TBJt?WI|?SMK=6}9LR;-$cua^fPyHDA}EI9D2Y-igR&@( z3aEt2sETT+ftsj|I;e;GXoyB=f~IJW7HEamXp45}fR5;lF6f5t=!stFgTDA1{V@=O zFa$#}93wCaqcIlaFaZ-W8B;I~(=ijXFb8un9}BPui?I~TumUTw8f&l)>#-4=umxMO z9XqfKyRjGhZ~zB!7)Njn$8i#;a0X{_9v5&4mvI%>a054S8+ULI_wf%N;t?L>37+CP zUf>m8<1OCd13uz2zTg|a<0pRM4+2#PAP9mYI6@#4LL)4~Ap#;IGNK?Fq9Z0^Ar9gq zJ`x}i5+f;+Aq7$*HPRp*(jy}>Aq%o1JN`mWkIh035 zR6-S0MRn9bE!0L`)I$R_L}N5TGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#Km3gW7>L0b zf?*hrkr;(B7>n_kfJvB)shEZtn2Fh#gL#;bg;<0oSc>IXfmK+IwOEG@*oe*8f^FE2 zo!Esv*o*x*fI~Qpqd0~WIEm9ZgL62Ki@1a zBt#-4K~f|~3Zz16q(wSpKt^On7Gy(qk zMio>;b<{*H)InX;M*}oMV>CrGv_MO=MjNz4dvru6bU{~iM-TKuZ}de!^v3`U!e9)= zFpR)RjK&y@!+1=@Buv3nOven&!fedNJS@OMEXEQn!*Z;|Dy+d;tj7jy!e(s6HtfJo z?8YAK!+spZAsoR`9LEWq!fBkvIb6U+T*eh#!*$%mE!@Ff+{Xhv#J_lq|L_#g@B%OK z8gK9p@9`0z@C9G-9Y633zY(ZX0D%z{!4Lu=5gK6-4&f0Ikq`w@5gjoQ3$YOw@sI!s zkr+vk49SrasgMR~kscY437L@<+3*)~AQy5YFY=)P3ZgKIpcsmyBub$S%A!0fpb{#h zDypFdYN9skpdRX@AsV3xnxZ*cpcPu9E!v?2I-)bWpc}fQCwid|`r>c&$3P6i5Ddj| zjKC<2##oHQ1Wd$aOu;lv$4tz^9L&XhEWjcx#!@W93arFxtid|0$3|?z7Hq|K?7%MU z#$N2h0UX3(9KkUh$4Q*R8Jxv=T)-t<##LOy4cx?S+`&EE$3J+8M|g}Uc#7wEfme8q zw|IvS_=wN=f^YbapZJA82vj+MAP9=!2!T)tjj#xZ2#AQth=OQ{j+lsrIEah*NPt90 zjHF106iA8GNP~1pkBrEKEXa!N_zO9a3we+i`B4CcP#8r~3?)z!rBMduP#zUg2~|)P z)lmbrP#bko4-L=|jnM?n&>St%3T@C9?a=|9&>3CP4L#5kz0n8#@HYlvAO>RyhG95H zVid+;EXHF3CSfwBVj5;(CT3#}=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#c zFZSaA4&gA4;uucgBu?WD&fz>R;u5alDz4)OZs9iW;vOF0AN-3)_zzF;4A1crukZ$M z@g5)W37_#5-|z!J@f&{-xJm#)5DdW)5}^&4bTXU(G<8+))1 z`*9G5a0Ewj94BxJr*RhNZ~+%_8CP%(*KrfKa0hpB9}n;l|Kc(J!&5xN3%tZ@yumxX z$47j^7ktHc{J<~#Mxd$z1V&Ht+dSpN*WJXqG!(YgOT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N~nygsD>J- ziQ1@xdZ>?vXoMzcisop6R%ng3Xon8yh|cJOZs?Al=!HJ$i@(ty12G6gFciZv0;4b* zV=)dBFcFh61=BDcGcgNuFcpeATHt~0TLlGk|G&W zASF^G4bmY!G9nYQAS<%tFXTin_7>pqphT#~AQ5b`< z7>@~p46IE^znhx53IOSpooxQ-jRh1D3Zf8-peTx?1WKVa%Ay=9pdu=x3aX(x zYN8hEpf2j80UDt(nxYw6pe0(P4cehSI-(Q0pewqg2YR75`l28DV*mzWFot3nMqngH zV+_V&JSJiireG?jV+LknHs)d;7GNP3V+odFIaXp7)?h8xV*@r}Gqz$Ic3>xVV-NOW zKMvv$j^HSc;{;COG|u82F5n_A;|i|fI&R_??%*!&;{hJxUp&Ttc#3CuftPrVH+YBl z_=r#Vg0J|FANYme2vj40zzB+92!W6YjW7s@@Q8>=h=Qnyju?oA*ocdGNPvV$j3h{g z6rrBDWCQ63dg36)V5)ldU9 zQ5$to5B1RyjnD*5(Ht$%3a!x=?a%=o(HULP4c*Zbz0e1J@i+QoAO>LwhGIBIU=&7U zEXH91CSo$CU>c@lCT3v{=3+h;U=bE$DVAXcR$?{QU>(+DBQ{|RwqiSWU>9~{FZSU8 z4&pG5;24hMBu?QB&f+{S;1Vw5Dz4!MZsIoX;2!SdA3Ve(JjN3|#dEyCE4;>Ayu*h8 zy0!iopf>N%qObUdANYyi_=CVT0|WO+h8T#6*ocF8h>wIw zgd|9cUssgK-#-iI{{bn2PC`fmxW1xtNCqSct_~f@N5al~{!}Sc~=8fKAwpt=NVg*oocP zgMHYKgE)jEIEv#qfm1k*vp9zfxQNTRf@`>ro4AELxQqLEfQR@OkMSR#;u&7xC0^qV z-r+qy;uF5$E573ge&II))e0amf+83~AS6N~48kEiA|eu^AS$9G24W#L;vyarAR!VX z36dc>QX&=7AT81(12Q2qvLYM)LJs6YZsbKi6hJ`~MiCT4ag;wbU;URMi+ELcl1Or^g&*Gb zh0z#`ahQOKn2afyhUu7zS(t;ln2!ZmgvD5jWmtigSdBGUhxOQqP1u61*p408h27YT zeK>%FIE*7WhT}MiQ#gaOIFAdsgv+>!Yq)`%xQ#owhx_;k5Ag_(@dQut953(+ukjY| z@Btt38DH=X-|-W_@CSiv2M`275gZ{93ZW4e;Sd245gAbs4bc%3u@DDw5g!SV2#Jvt z$&dmmks4``4(X8*nUDopksW^_CvqVV@*+P9pb!e9D2ky3N}@E%pd8AhA}XN@s-ik- zpcZPQF6yBH8lo|ppc$H@C0d~k+M+!=pc6WyE4rZvdZIV_pdbFm01U)n48brA$4HFA z7>vbuOu!^e##Bth49vuA%)va&$3iT^5-i1XtiUR)##*ey25iJ;Y{52c$4>0R9_+<_ z9KazQ#!(!@37o`foWVJq$3Z1V~p)s1G8CswvTB8lxp*=dH6S|-)x}yhrp*Q-XANpee24OIUVi-nXBt~Nl z#$h}rViKlcDyCxwW??qwVjdP?Ar@l^mSH(oVine4E!JZLHeoZiVjFf~Cw5~G_F+E` z;t-DDD30Re@BLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2 zF_Iz~QXnN#BMs6aJu)H_vLGw6<1geyF62R83~( ziBTAXu^5jDn1sogifNdEnV5|^n1}gTh(%a}rC5#?ScTPCi*?w5jo6GW*oN)ciCx%( zz1WWfIE2GEieor|lQ@ktIEVANh)cMFtGJFExP{xei+gy0fAB9J;XgdVGd#yjyuus2 z#e00fCw#_Ne8Ug?#BcmT;CcZBK`;bINQ6QdghhBnKqN#)R767z#6)bwK|I7qLL@>G zBt>$hKq{n0TBJh;WJG3UK{jMZ4&+2`!w&4kZtTH6 z?8iYI!Vw(Bah$*@oW@z4!v$Q#Wn95ET*pn^!X4bjeLTQJ{ENr<4^Qz7FYpqt@doek z9v|@uU+@**@dLl`8-eNv5Ewxb3?UE_p%Dh*5FQZ`2~iLg(Gdf&5F2q34+)SEiID`! zkQ^zI3TcoQ>5&1MkQrH#4SyjAav?YJA|DE%APS=hilI14q7=%YEXtz-Dxor}q8e(T zCTgP&>Y+Xwq7j;)DVn1NTA?-Cq8&P*BRZoCx}iIIq8Iw0FaAb<48$M|!B7mx2#msL zjKw%iz(h>O6imZ(%)~6r!CcJ80xZH}EX6Xcz)Gyf8mz;5Y{VvP!B%X?4(!5i?8QDD zz(E|w5gfyDoWv=d!C9Qg1zf^qT*Woqz)jr79o)lx{DX&hgvWS-r+AJRc!k$^i+A{d zkNAu)_=fNJiC_4GKn(&2f}jYF5D10P2#autfQX2UD2RsWh>2K;gSd!~1W1I$NQz`g zfs{y%G)RZ^$cRkHf~?4nzmOBTkOz5@9|cedg;5m6Py!`U8f8!peS zsgN3Jkq#M<5t)$%*^nJMkQ2F)2lc0;NzIWl;_lP!W|;1=Ua;HBk$7 zP#5*l0FBTXP0 z9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&= zM{pF!aRR4s8fS417jO}maRt|K9XD|ccW@W?@c<9;FCODRJjFA-z)QTw8@$7Ne8eYw z!B>385B$P!1ZosOU<5@lgg{7yMi_)cctk`bL_t(UM-0S5Y{W%8BtSwWMiL}La->8m zq(NGwM+Rg6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoj za16(B5~pwmXK@}Ea0!=j71wYBH*p(xa1ZzK4<6zX9^(m~;yGU66<*^l-r)m2;xoSB z8@}Twe&G)SH4Y#Mf+9FVAQVC)EW#lIA|f)PAR3}0CSoBD;vzm0AQ2KHDUu-tQX)0d zARW>pBQhZivLZYFLQdpD9^^%S6hI*qMo|<)36w->ltDR^M@3XZ6;wra)IcrNMqSiH z12jZqG(j^oM@zIq8?;4xbU-I`Mptx05A;ND^g%!TjR6>l!5D&J7>&Der%*p8jpg+17d{WyR_IE zh7&l6(>Q~3IFF0Cge$m;>$rhixQ)BGhX?ov|Kbt;!xKEibG*bWyun+%#|M1EXMDvs z{J>BA#vcT35+ghvEKLS#fmG{itm#6}#%LwqDeA|ydlBu5IQLTaQ% zI%GgbWJVTbLw4jqPUJ=&vVsOvEHi z!BkAg49vo8%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U!BHH? z37o=doW(g@z(rif66wmMiFYy|0@DA_s5ufk{U-2D3 z@C&~YsA&L!5fs4?0wEC^VGs`C5fPCP1yKZ2hV zp$VFzIa;6#AHmt zG)%`#%)%VZ#e6KlA}q#IEW-+{#A>X;I;_V=Y{C|7#dhq#F6_o$?85;Z#917Xc!)=Mj3;=C=Xilvc#XGshY$FO&-j9G_>Q0W zg+BA&itP9cIgtx_kQez;0EJK(MNteTP!gq42IWv56;TOQP!-it1GP{abx{uu&=8H$ z1kKPKEzt^X&=&2{0iDnpUC|9a&=bAU2mSCj24EltV+e*}I7VU=#$YVQV*(~&GNxi0 zW?&{}V-DtFJ{DpTmS8ECV+B@WHP&JsHee$*V+*!nJ9c6h_Fyme;{XofFplCFPT(X? z;|$K>JTBrAuHY)J;|6ZwHtymc9^fDRi%0kmPw))S@e;4_25<2mAMgpE@fF|j13&Q_ ze-OBN06`E8!4VRn5C&lp9uW`;kr5Tq5Cbt08*va1@sSXTkOWDQ94U|rsgV}xkO3Ky z8Cj4G*^vV|ksEoC5BX6Lg-`@VQ5+>u3Z+pNg4(-tqozMkc(H%X|3%$`7{m>r+FbIP&6vHqABQY9dFb?A}5tA?lQ!yPg zFblIW7xSq(ypUKqh2H zR%F9p$bnqQjl9T*0w{>WD1u@rj*=*aGAN7ksDMhSjH;-H8mNidsDpZ_kA`T3CTNQ0 zXn|H}jkaiq4(N!^=z?zOj-Kd+KIn_T(H{db2tzOw!!ZJ*FdAbq4ihjDlQ9L;FdZ`k z2$+4HrJjSin2!ZmgvD5jWmtigSdBGUhxOQqP1u61*p408h27YTeK>%FIE*7WhT}Mi zQ#gaOIFAdsgv+>!Yq)`%xQ#owhx_;k5Ag_(@dQut953(+ukjY|@Btt38DH=X-|-W_ z@CSif1`q^65gZ{93ZW4e;Sd245gAbs4bc%3u@DDw5g!SV2#Jvt$&dmmks4``4(X8* znUDopksW^_CvqVV@*+P9pb!e9D2ky3N}@E%pd8AhA}XN@s-ik-pcZPQF6yBH8lo|p zpc$H@C0d~k+M+!=pc6WyE4rZvdZIV_pdbFm01U)n48brA$4HFA7>vbuOu!^e##Bth z49vuA%)va&$3iT^5-i1XtiUR)##*ey25iJ;Y{52c$4>0R9_+<_9KazQ#!(!@37o`f zoWVJq$3Z1V~p)s1G z8CswvTB8lxp*=dH6S|-)x}yhrp*Q-XANpee24OIUVi-nXBt~Nl#$h}rViKlcDyCxw zW??qwVjdP?Ar@l^mSH(oVine4E!JZLHeoZiVjFf~Cw5~G_F+E`;t-DDD30RLd=h2IF+ z0mlkK5ey*^5}^?W;Se4X5eZQc710p`u@D<^5f2HF5Q&il$&ef=kqT*$7U_`znUEP- zkqv(#2XY}d@**D!pdbpP2#TRNN}?3Xpe)Lx0xF?0s-hZdpeAag4(g#k8ln-JpedT8 z1zMps+M*pgpd&h?3%a2@dZHKlpfCPLe+R$RhUkciScrqTh>rwFgv3aSWJrOONR2c| zhxEvZOvr+)$d12|6SiB~cn>P!8o$5tUE{RZ$%^Pz$wD7xmBp z4bd1)&kJp30=??-O&TR&>MZx5B)I!gD@CFF$^Ox5~DE&<1ii*F$q&J z71J>TvoITTF%Ju{5R0({%di|Pu?lOj7VEJAo3I&Mu?;)06T7ho`>-DeaR^6n6vuG_ zr*Il)aSj)75tnfV*Ki#-aSL~F7x(c15AiP^<3BvbGrYh{yv7^6!+U(hCw#$Ie8&&` z!fym>7eHVHMKFXwNQ6chghO~lL?lE(R76J%#6oPuMLZ-xLL^2KBtvqfL@J~~TBJt? zWI|?SMK=6}9LR;-$cua^fPyHDA}EI9D2Y-igR&@(3aEt2sETT+ftsj|I;e;GXoyB= zf~IJW7HEamXp45}fR5;lF6f5t=!stFgTDA1{V@=OFa$#}93wCaqcIlaFaZ-W8B;I~ z(=ijXFb8un9}BPui?I~TumUTw8f&l)>#-4=umxMO9XqfKyRjGhZ~zB!7)Njn$8i#; za0X{_9v5&4mvI%>a054S8+ULI_wf%N;t?L>37+CPUf>m8<1OCd13uz2zTg|a<0pRM z4+6ChAP9mYI6@#4LL)4~Ap#;IGNK?Fq9Z0^Ar9gqJ`x}i5+f;+Aq7$*HPRp*(jy}> zAq%o1JN`mWkIh035R6-S0MRn9bE!0L`)I$R_L}N5T zGc-p_v_c!SMSFBWCv-+vbVCpHL~ry#Km3gW7>L0bf?*hrkr;(B7>n_kfJvB)shEZt zn2Fh#gL#;bg;<0oSc>IXfmK+IwOEG@*oe*8f^FE2o!Esv*o*x*fI~Qpqd0~WIEm9Z zgL62Ki@1aBt#-4K~f|~3Zz16q(wSpKt^On z7Gy(qkMio>;b<{*H)InX;M*}oMV>CrG zv_MO=MjNz4dvru6bU{~iM-TKuZ}de!^v3`U!e9)=FpR)RjK&y@!+1=@Buv3nOven& z!fedNJS@OMEXEQn!*Z;|Dy+d;tj7jy!e(s6HtfJo?8YAK!+spZAsoR`9LEWq!fBkv zIb6U+T*eh#!*$%mE!@Ff+{Xhv#J_lq|L_#g@B%OK8gK9p@9`0z@C9G-9Y633zY(Zo z0D%z{!4Lu=5gK6-4&f0Ikq`w@5gjoQ3$YOw@sI!skr+vk49SrasgMR~kscY437L@< z+3*)~AQy5YFY=)P3ZgKIpcsmyBub$S%A!0fpb{#hDypFdYN9skpdRX@AsV3xnxZ*c zpcPu9E!v?2I-)bWpc}fQCwid|`r>c&$3P6i5Ddj|jKC<2##oHQ1Wd$aOu;lv$4tz^ z9L&XhEWjcx#!@W93arFxtid|0$3|?z7Hq|K?7%MU#$N2h0UX3(9KkUh$4Q*R8Jxv= zT)-t<##LOy4cx?S+`&EE$3J+8M|g}Uc#7wEfme8qw|IvS_=wN=f^YbapZJA82-GQn zAP9=!2!T)tjj#xZ2#AQth=OQ{j+lsrIEah*NPt90jHF106iA8GNP~1pkBrEKEXa!N z_zO9a3we+i`B4CcP#8r~3?)z!rBMduP#zUg2~|)P)lmbrP#bko4-L=|jnM?n&>St% z3T@C9?a=|9&>3CP4L#5kz0n8#@HYlvAO>RyhG95HVid+;EXHF3CSfwBVj5;(CT3#} z=3zb-ViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R z;u5alDz4)OZs9iW;vOF0AN-3)_zzF;4A1crukZ$M@g5)W37_#5-|z!J@f&{-xN`tO z5DdW)5}^&4bTXU(G<8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_ z8CP%(*KrfKa0hpB9}n;l|Kc(J!&5xN3%tZ@yumxX$47j^7ktHc{J<~#MxZVM1V&H< zLkNUKXoNvHghxa~LKH+rbi_a`#711iLjoj3VkAK_Bu7f5LK>t+dSpN*WJXqG!(YgO zT*!^Q$cF+bh{7m>VknN1D1|a8i}I*|N&y74##L5VMK#nwP1Hsm)I)tVL?bjoQ#3~l zv_fmNMLTprM|4IPbVGOaL@)F~U;K^!7>Gd_f}t3W5g3Kh7>jY3fQgulDVT=on2A}K zgSnWG1z3c|Sc+v>ft6T|HCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~ z3%G>KxQc7Ift$FEJGh7Y_y-U12#@guPw^Zt@CvW-7Vq!@AMqJq@D1Pb6Tk2Wfw~3| z1VIrTArK0o5fA_d#9$1;Fbu~?jKUa<#du7>BuvIsOv4P!#B9vL zJj};JEW#2j#d55`Dy+s@tiuLu#Aa;4Hf+aE?7|-G#eN*XAsoh09K#8m#A%$tIh@Bu zT*4Jx#dX}kE!@Uk+`|L>gMaY||KSOq;W=L772e=2-s1y4;WNJC8-Cy?e&Y`UcMBj0 zf+09UA{4?PEW#rKA|W!OA{t^KCSoHF;vqf~A`y}xDUu@vQXw_cA{{ayBQhfkvLQQi zASZGo5Aq>D3Zf8-peTx?1WKVa%Ay=9pdu=x3aX(xYN8hEpf2j80UDt(nxYw6pe0(P z4cehSI-(Q0pewqg2YR75`l28D2hgqcfB?O`I!H7GLopm9FbbnF7UM7h6EPW6Fb&f& z6SFV}b1@$aun3E>6w9yzE3q1Dunz075u30DTd^HGunW7f7yEDk2XPoja16(B5~pwm zXK@}Ea0!=j71wYBH*p(xa1ZzK4<6zX9^(m~;yGU66<*^l-r)m2;xoSB8@}Twe&G)S zbq^p2f+9FVAQVC)EW#lIA|f)PAR3}0CSoBD;vzm0AQ2KHDUu-tQX)0dARW>pBQhZi zvLZYFLQdpD9^^%S6hI*qMo|<)36w->ltDR^M@3XZ6;wra)IcrNMqSiH12jZqG(j^o zM@zIq8?;4xbU-I`Mptx05A;ND^g%!TjR6>l!5D&J7>&Der%*p8jpg+17d{WyR_IEh7&l6(>Q~3 zIFF0Cge$m;>$rhixQ)BGhX?ov|Kbt;!xKEibG*bWyun+%#|M1EXMDvs{J>BA#vcUk z5kL?GLvVydD1<>+ghvEKLS#fmG{itm#6}#%LwqDeA|ydlBu5IQLTaQ%I%GgbWJVTb zLw4jqPUJ=&vVsOvEHi!BkAg49vo8 z%*8w`z(Op>5-h`Vti&p;!CI`x25iD+Y{fS0z)tMO9_+(@9K<0U!BHH?37o=doW(g@ zz(rif66wmMiFYy|0@DA_s5ufk{U-2D3@C&~YsAm9y z5fs4?0wEC^VGs`C5fPCP1yKZ2hVp$VFzIa;6< zTB9x6p#wUiGrFJ~x}zt0p%41vZ}i7N48jl$#c+(kD2&EfjKc&>#AHmtG)%`#%)%VZ z#e6KlA}q#IEW-+{#A^Jnf_n-U16KerT-&y7+t#+-dfVQ%TlbV(+qP}nwr$(CjeEYA zZ!-U59+H_%l9gDEHCTuB*oaNog00w&9oU84*o%EQfP*-UBRGcRIEhm@gR?k~3%G>K zxQc7Ift$FEJGh7Yc!)=Mf~RQbD2MX+3l&irf1@g@p$2N=AJj%&{15ff01eRyP0$q0(E=^e3T@C9 z|DioPq7%BHE4rfxdZ9P^q8|oeAO>RyhG95HVid+;EXHF3CSfwBVj5;(CT3#}=3zb- zViA^LDVAdeR$(>PVjVVMBQ|3TwqZMVVi)#cFZSaA4&gA4;uucgBu?WD&fz>R;u5al zDz4)OZs9iW;vOF0As*uip5ZxO;uYTDE#Bh;KH)RI;v0V8Cw}7(f_4ui7(yT1R6=D`K~+>o4b;LvsDrwwhx+&z4bd1)&DHfV?c z&;cFM8C}o~-O&@h&8+))1`*9G5a0Ewj94BxJr*RhNZ~+%_8CP%( z*KrfKa0hpB9}n;dkMR`G@B%OK8gK9p@9`0z@C9G-9Y633zY(NIAVCovArK0o5feN-fl(NZu^5L5n25=kf@zqJnV5w+n2Y&XfJIo0 zrC5d)Sc%nGgLPPsjo5@O*oy7gfnC^*z1W8XIEceIf@3(2lQ@MlIE(YRfJ?ZHtGI?6 zxQW}igL}A-hj@f1c#7wEfme8qw|IvS_=wN=f^YbapZJA82+}iY{-tB$b~$}i~J~nLMV)) zD25U!iP9*8aww0#P!W~!H>#o_mL2cB<|4<(d&=8H#1WnN#EzlCJ&<1VsAKIfM zI-v`?qC0w^7kZ;F`e6VDVlaka7=~jcMqv!bVmu~b5+-9RreOwVVm9Vr9_C{q7GVjN zVmVe|6;@*{)?ouSVl%d28@6L7c3}_pVm}Vx5Dw!gj^PAO;xx|S9M0n+F5wEU;yP~N z7H;D%?%@F*;xV4!8J^=MUf~Vi;ypg#6F%cBzTpRc;y3;vXscq5RK6U&CnbHXo=QngLe229ncY- z(FNVm9X-(teb5*EF#v-w7(+1(BQO%9F$Uu>9uqMMQ!o|NF$1$O8*?!a3$PH2u>{Mo z94oO3Yp@pUu>qT~8C$UpJFpYGu?PFG9|v&=M{pF!aRR4s8fS417jO}maRt|K9XD|c zcW@W?@c@tT7*FvGFYpqt@doek9v|@uU+@**@dLl`8$o&p5){D^0-+EZVG#}y5D}3P z14F%b)K5Et>00Ev(oNs$aGkP@kp2I-I<8IcKDkQLdH1G$hJd65qVP!NSt1jSGs zB~c1xP!{D;0TodRf1?Vjp*m`!7HXpo{)c*KfPc{ljnNd%&;kKyh1O_`c4&_d=!DMb zif-tEp6HD}=!gCoh(Q>Fp%{)47=_Uoi*cBMiI|Kjn1<bXihxkZ{L`Z_9NRAXph15ukbjW~=$c!w=hV00RT*!mG$d3Xjgu*C_Vkm)< zD2*~Ghw}If6;T;~qbjPQ25RCT)J9$W5B1Ri4bccq&=k$l0xi)BZO|6~p*=dH6S|-) zx}yhrp*Q-X9|m9`24e_@VK_!&6vkjI#$y5|VKSy-8fIW7W@8TKVLldO5td*nmSY80 zVKvrb9X4PiHe(C6VLNtW7xrK;_TvB!;V_Qk7*60MPU8&D;XE$l60YDXuHy!7;WqB# z9v;b<{*H)J7fr5B1Oh|Dq8ZqbZu91p?3ttkJo z37ydu-OvL)(Hnix5B)I^gD?a`F&rZ>3ZpR=<1hgeF&R@Z4bw3*kWK-!0yW`tqIXfmK+IwOEG@*oe*8f^FE2o!Esv*o*x*fI~Qpqd0~WIEm9ZgL62Ki@1a< zxQgqzfm^tZySRr3c!jx za0rixh=eGJis*=eScr|dh=&A7h{Q;OWJr#bNQE>=i}c8VOvsF^$c7xqiQLG8e8`W2 zD1;&?isC4NQYekGD2EF83zbkARZtbxQ3JK`59**U>Y+aVMME@36Es6}1fV5aqYc{O zKXgDxbVe6+LwEE)fMqm_1V=TsD0w!WIreGSTVcP!+Bi9 zC0xN(T*nRE!fo8eJv_ieJjN3|!*jgEE4;y5yvGN8!e@NNH~hd){Kg*y9S}$`gg{7y zMi_)cctk`bL_t(UM-0S5Y{W%8BtSwWMiL}La->8mq(NGwM+Rgo_38LTQvkc~nFtR6$kLKuy#}9n?d8G(;mbMKc7TC0e5m{zH3oLT7YCcl1JU^h19P z!e9);aE!uejKg?L!emUtbj-qR%)@*v!eT7La;(B?tiyV2#3pRTHtfVM?8QDDz(E|r zQJla@oWWUKz(riaRouW$+`(Nuz(YL2Q@p@Syun+1z(;(+SNyPVjVVMBeq~Gc3>y=U@s2fAdcWDPT(ZY z;4CiSA}-?!uHy!7;|}iQ0UqNCp5p~x;|<>7JwD$qXbH$49cSdDxor} zq8e(V7V4lb>Z1V~p)s1FIa;C>+Mq4kqXRml3%a8RdZQ2eV*mzY2!>+>Mq>=dV*(~) z3Z`QQW@8TKV*wUp36^68R$~p;V*@s03$|kic4H6r;{Xoh2#(_fPU8&D;{q<>GOpn| zZs9iW;XWSWF`nT$Ug0&~;XOX$6Tadbe&QE`3<)GCLLekUBMibL0wN;{q9HnBAvWS6 zJ`y1@k|8-#AvMw>9Wo#zvLGvRASd!5FAAU_il8WpqXbH$49cSdDxor}q8e(V7V4lb z>Z1V~p)s1FIa;C>+M*pgpd-4VD|(GNK_mVj(u-AwCizF_IxUQXw_c zAw4o7GqNE&av?YJAwLSCFp8l#N})8$p*$+05~`poYM>@+qYmn!J{qDCnxYv3&=PIX z7VXgiozVr|(F48F2mR0=gD@DwFdU;W8sjh?lQ0?6Fdefn8}l$9i?A5WupFzf8tbqg zo3I(%upPUw8~d;yhj19ja2%&_8s~5xmv9-^a2>aB8~1P@kMJ1J@Eou38t?EPpYR#q z@EyPK8$pK!5)2^_5@8S)5fBkk5EU^H6LAn136Ky;kQ6D95^0bY8ITc~kpN-78#HcS&$VukP~^37X?rdMNkwaP!eTO z78URpD&ucdLv_@`Kd6iUp#lCyV>Cf?v_LDgMmzk6j_8E0=!Tx?g}&&Aff$6L7>1D; zg|QfiiI{|`n1-2{g}IoAg;<28Sca8Yg|%3Rjo5^(*oK|hg}vB^gE)kvIEIrrg|j$^ zi@1cVxQ3g!g}bwdgr;bQ0JKCKv_*S#KxcG8cl1DS^g(|Nz+eo)aE!ocjKO$Jz+_Cpbj-kP z%)va&$097oGAzd`tj0R5$0lsXHf+Z(?8ZLq#~~cXF&xJ!oW?nv$0c0GHC)F{+`?Vl z!$Um6Q#`{E4ra4dZ91+VIT%!2!>(=Mq&)cVge>&3Z`NPW?~NJ zVgVLn36^37R$>j-Vgoi}3$|hhc480qVm}VxFpl6jPT(}o;5;tiGOpk{Zs0cV;65JU zF`nQ#Uf?y};2qxM6F%cBzTqc+A;_pef+7S$A`HSJ0wN*`q9O)jA`apr0TLn!k|G6C zA`Q|a12Q5DvLXj^A`kMS01BcAilPKcq72HS0{%i}{Ecd;j#~H!b@4wmz`tmWCTNZp zXoc2jhyTzKozNBC&=bAT7yU30gD@1sFcPCM7UM7xlQ0$2FcY&d7xS13ID$x}pbqq7V9F00v?RhGGOpVhqM&0w!V#reX$W zVh-kF0TyBjmSP1~Vhz?}JvLx7wqQGUU^n()KMvp!4&xY(;}lNg9M0nsF5?=m;}&k? z9`5529^)CF;}u@x9p2*;KI0p{;}?D-=(s?FAtXW}EW#loA|WcGAtquWF5)2}5+Ny) zAth2FEz%()G9fFnAt!PnFY=)v3ZW>9p(IM7EXv_8RK(w?g6gP&e^49$Lp}V9hG>GO zXn_E3~(h0z#?@tB0kn1<eK?3iIErI9iBmX>bGV30xQc7IiCegfdw7UPc#3CuiC1`w zcldyh_=2zafuHz;AmalGjt~fqFbIzbh>R$Rju?oIIEaq~NQ@*%juc3ZG)RvO$c!w= zjvUC1Jjjm%D2yT~juI%1GANGifX8dTBw7%sE-C{gvMxw=4gplXp45}fR5;b zuIPcD=!3o(fPol-p%{UY7=y8xfQgubshEM8n1i`kfQ49srC5QLScA3LfQ{IKt=NH` z*n_<|fP*-Kqd0++IE^znj|;erE4YpuxQ#owj|X^+CwPt*c#SuBj}Q2aFZhlh_>DgZ zHX)GU2!+rHhwzAm$cTpMh=tgQhxkZ@#7KtZNQKl$hxEvV%*cvt$bp>5jXcPY0w|0k zD2@^+jWQ^Y3aEt2sETT+iCUg+d z8~xB912G6gF$^Oy3S%)26EO)>F%2^@3v)3K3$X}Gu?#D*3Tv?r8?gynu?;)13wyB- z2XP2TaSSJM3TJT+7jX$!aSbg2 z5@8S)5fBkk5EU^H6R{Bo@sR+Dkp#(+0;!N1X^{>YkqKFm4LOkud65qVQ3yp*3?)$t zWl;`)p(6f96;wwJ{Da!~AL`*>G(;0LMGFL=HQL}mv_~g&MmKavFZ4z~^v56!#xM-W zD2&E9jK?HQ#xzXFEX>9{%*P@u#xg9&O02?KtiwiZ!d7g08a-=|Nq(ORQKxSk?cH}^AY zeLTQpJi&9kz-zq0dwjrWe8G48z;FCPu*rc0M<|3wID|(eL`F13M=ZofJj6#LBt|kM zM=GR7I;2M?WJWe*M=s<>KIBIs6h<)=M=6v>Ih035R6-S0MGe$MZPY?r8D>sDXb_8~;N+{ELQYf~IJJ0JKIM{D=1FgwE)O z?&yWy=!gCoguxhw;TVO{7>DtggvpqO>6nGtn1}gTgvD5fw>$rv6xQF|AgvWS>=XizJc!&4+gwObf@A!q^2s$;8 zULhgh(t(=WJrlrNQ-pHh)l?eY{-dR$cua^h(aieVkn7H zD2sCV3l;GbGNxfVW??qwVLldO5td>ZR$>*_VjVVO6SiU-c48OyVjm9T5RT#)PT~~K z;v6pG60YJJZsHd1;vOF25uV~1Ug8zr;vGKX6Tadbe&QE`Oba9^LLelF#$y5|V+y8Y z24-Up=3@aCV+odH1y*4-)?qz1VKcU2J9c3=_F+E`;V_QjI8Na-&fz>R;WDn_I&R@M z?%_Tj;W3`!IbPv4-r+qy;WNJBJAUCef=&-47(yZx!Xg|ZAR;0o3Zf$hVj(u-A|4VV z5t1SqQX&=7A{{a!6S5*3av~SO|$iwT&BDVU1sn1NZCjk%bI zg;<28Sca8Yg|%3Rjo5^(*oK|hg}vB^gE)kvIEIrrg|j$^i@1cVxQ3g!g}bwdgr;bQ0JKCK zv_*S#KxcG8cl1DS^g(|Nz+eo)aE!ocjKO$Jz+_Cpbj-kP%)xvtz+x=Ha;(5=tigJ0 zz-Da0cI?1z?7@B=dVLT>c5~g4(reg+XVK(Ms9u{CB7GnvPVL4V}71m%a)?))UVKcU38+KqP zc4H6rVLuMy5RTv|j^hMQ;WWO7Vh9K?&AR-;W3`#8D8KeUgHhk z;XOX$6TaXpzT*de;WvWJ3M43kBLqSrG{PbrA|N6nBMPD+I$|Og;vg>KBLNa2F_Iz~ zQXnN#BMs6aJu)H_vLGw6BL{LJH}WDM3ZNhgqX>$jI7*@v%AhRDqXH_T68=UNR12h2 zK=nW^Ts5VCP#bmeKh#G9G(;mbK~pqG3$#Qlv_V_^hxX`*PUwQJ=#C!fh2H3kei(p( z7>pqphT#~AQ5b`<7>@~ghK>GL}WxkG(<;C#6ldz zMSLVcA|ysqBtr_ML~5i#I;2NNWI`5XMRw#sF62gD6wcr*&f@|u;WDn`8gAewZsQK_;XWSX5uV^F zp5p~x;Wggk9X{YAKI03%;X8if7ycl~oIrvhI6@*6!XPZdBLX5JGNK|HVjw1BBM#yr zJ`y4kk{~IPBLz|+HPRv-G9V)|BMY)2J8~iy@*pqrqW}t_Fp8oWN}wc4qYTQSJpMvO zRL0+^ifX8Vn)nB`Q5XM1eKbHrG(rZ4cLgy z*n(}?j-A+rJ=lx=IDkVqjH5V)6F7;}ID>OIkBhj3E4Yg5xPe=^jk|$#3b+@jP4a>C z7*FsVFYp>~@E#xV8DH=nKkyrW5NvKB!4V3f5f0%I36T*E(Gd%=5fAZ^2#Jvl$&m`F zkq+sR37L@%*^vvmkq`M%2!&A$#Zd~SQ4Zx%5tUE{RZ#;qQ5$to5B1RyjnEX$5P+6w zgSKdo4(N<7=#C!fjXvm)0T_%S7>*GbjWHOH37Cv2n2s5kjX9W)1z3zFSdJA~jWt-0 z4cLq=*p408jXl_p12~K$IF1uIjWalp3%HCcxQ-jRjXSuH2Y8Gpc#ao%jW>9Y5BQ8P z_>Ld=jXwxBFOc8}h0q9x@Q8%Sh=%Bhh1iIP_(+7rNQUG{h15ug^vHzF$cF65h1|%8 z{3wLND2C!Fh0-X8@~DVPsDi4fftsj|I;e;GXoyB=ie?BvOSC~-v_}VYMi+EP5A;SK z^v3`U#t;n02#m%UjK>5_#uQA)49vzH%*O&O#u6;Y3arK&tj7jy#ujYH4(!Gr?8gBd z#t|IH37p0moW})R#uZ%04cx{Z+{Xhv#uGfp3%te~yvGN8#ut3Y5B$a-1e+g7aD+l= zghO~lLS#fkbi_hz#6x@}LSiICa->3Pq(gdSLS|$`cH}~C?13IG%x}yhrqYwIH00v_ShGPUqV+_V) z0w!Y$reg+XV-DtH0TyEkmSY80V-41012$s|wqpl&V-NP@01o2_j^hMQ;|$K@0xshU zuHy!7;|}iQ0UqNCp5p~x;|<>913u#mzT*de;}3!@2qZW{AvD4vJR%`7q9HnBAvWS6 zJ`y1@k|8-#AvMw=Ju)FPvLQQiAvf|NKMJ8RilI14p)|^&JSw6Rs-P-rpeAag4(g#k z8ln-Jq8S3v5^c~H?a=|9(FNVn1HI7){V@Q8F$BXg0;4eo<1qn~F$L2x1G6y)^RWPn zu>{Mp0;{nG>#+fwu?5?)1G}*Y`*8q=aRkS40;h2X=Wzj-aRt|L1GjMp_wfLa@dVHD z05v|o zkQv#K9l4Mj`H&xlP#DEf9Hmei6n4pn1lIPfW=sX$rj2xP$w6fX8@(=XinFc!T%&fY11X@A!e= z_=8}J0tt>#2#s(Ek4T7&Xo!wjh>duNk3>j}WJr!wNR4zzk4(snY{-sW$c=o+k3uMn zVknMMD2;L`kBX>-DyWJYsEOLBgLMQXodi^L>sh4dvri&bU}CYKyUOxe+YeLTQpJi&9kz-zq0dwjrWe8G48z;FCPu*HD{M<|3wID|(e zL`F13M=ZofJj6#LBt|kMM=GR7I;2M?WJWe*M=s<>KIBIs6h<)=M=6v>Ih035R6-S0 zMGe$MZPYVj~{nBM}lK z8ImIvQX?JGBNH+s8?qx8aw8w|qYw(C7>c75N~0XgqarGy3aX+8YN9skpdRX@AsV46 znjru!(FSeN9v#pbUCMZwKafrV0|Iq0Hb@$Rp%{)47=_Uoi*cBMiI|Kjn1<bXihxkZ{L`V`yr%of|w`kL`N&61%nzv}vwSJp_ aTQ_N3zeStQP1+mH2 diff --git a/docs/_build/doctrees/installing.doctree b/docs/_build/doctrees/installing.doctree index 61c61a96e86df86cb53eb039cab2a1c4d5e31e22..210ee192c23010574993a341859576a41705cdb3 100644 GIT binary patch delta 3000 zcmbVOZDDP14l1X;!x;Z68y$NsZ~I)3H`MU9E4WaiBP1NP0=GK6l2uc)7Dg zkSOd$*}<^SIh-I<5H<#bjly7TZgh;nKFDzF+t?WUUMJ`_2m7%9^W^SwX{!@I%g|dlTj+(gJ2<;*Z++3t(d5PUY1~n(&?hQf=z-`>mJcho%H~fZX=RB1W^!pAby^s^L?G8C?}kBT0Ii z5);Fwj)(9Rj^h1>Ulqzq@sv<7CpkR_&RSj8%{R<*<{2}Ay^Y6IllLhKy-{Y(i#+p_tj|>mzD;iehw4xq! zIJil!fzC}Dk2eU2KDR7}NhYw53z6%AHL!jY(0%v;y#9+Q?L+<|D@z-TKdc}*y5 z*<4Y{A2*5V1k*h>Hb#DKk2bT1NJqSXBVf>TJno~VfuKa=M@^%}GGOxL>9)aYlHznY zvf{2YlsSaOGMW{OMI_2)jfa2w)3AUFt`0ymii#?VjuN7rFX{zRKE`AkJ0Y273?`s@ z$1J?8}N0^^60I#|>C{p@>> z)^j1+zW%X1QI4jUaYSZYw{RjbGHEk%k}+a*SXIveHk3RwVpHTUc_~g+!3$-jx4X`Y zGz2f4A|Iqhemk_j)f&0heoOUrkXl;n(l$8c@j9sd4e(1GHKh?akw&R39+Fn9{ea=q zc=ec|xqB;?PNOXJ@CaI|p8*S)x4X<>^MI$#MqS%m3jxkby_Wkq_=l0yW5-HIlo5n0 zKv3acu_nDlK#B-$hsU#0rBN~JR+O&6OFBxJg2UG~3f$_#5kzm5Bg3^Z=D=+c@_D5I zw^$vr>&Su4%3QKA$5wDn;@z)stI1-Zk6i3d`oE*mMWt`aj^K0E1-hwE;r@nVfANrl za=KV7pcz#;fy#=m=7ki>7Zq7xQ)G{*?bUNg6-r83)D*RXc)5U7UA71E|5@0C9&WjWXc=j$zo451%suGc$gKlih3M2!RhII0nyuK z)S5GF17S^1lQW$gxI5%V=WE`55~Aa(&3}a-IN^)2q=(&~Mk%8Ye;I%V@9X2n(>)6(IXOT2Bj? zY>ge{`sXjiBoFug{QbT+o34~1J?`o5 zbXV`}J_Ln_2pb9sDUA>kKLG&}5)VA`2Y5h;MNlG9?$T`?0V* z&r)j$4q#_)vwhlsZ1#gx(F26%Qx zz!&jx+I3>0dDix@Idgu$G=@{*nv#qj;k4S{oQsHgV0MiP9;4)uVq>aWhEbwtGC#@i5oG; za9GHEhxxV((v(cr9yVLbiRAi1cxM*711?pAB%tKc_g^)ZqMC z5Z3^4O*!97JdX*}b3t-$041?a*`yiM6>M0UmWwwP|HfCY7%#NHph*TSbY$&DR>&)` z{94A)*qV}&YhdJ!qsV`qUsPnz0{H4tz^?-6t0k|H4c{)r{&x4Z?d>DJskDht}i-{8;72C&;j&Ux~6Gt8=l*XtmwelgB8Hy!TR%GY(H-V zk-^nFqTKwAV1 zVl*1H)kr&tb~~j0an=4vSv4zEt)JHrUkFh}CD{N-{K+H|bA|kj@5xot!~;|mV*l|Z zJj7})mnJs7e-!XUxxCm755g!Il&+$mUu^HXf+xMU8z2S}LE|_s zbhWY~t9%4>|8^4Hxv+i@VLhFj?Gcm};`_}c%vJHVK*leR0-h+oD_vX1$uiQYXR<04 zQ#JzMJ1~649Ap7Y7`+6Uc1yTJ_DriaW^(dN{{uFKYl9c|DnD}svOLJlXb!4M%0?ia zzf6)&uB5+0N#}AU>9xdvp^rbQD00!5AdAZGli@%U&`lRL<^lZ2NemnwH6D&!&gf*C z%9C4)yDOEPrBZK|G`SjO>3^%1{;fQDmjLzpz^Z0-veB$QDYE*6l0#KrQKAaAqSB}j z7J+)Obn?Ureqpdc|5ODuWtlN(7Aq7@%TREU6Xng@oEglDQR)a|WE~hHFm{T+%W(HEUW109j99q7ERO~ZM1>WV$nQ5=dmyU!~^FR<@c>!2sswR&^K8(X#>*y3j|gx zXL+IBHcX|F%fZNSI;%|cOHGsXzT zfDyW3=8Px`MY;Fi-v9Z>w0p&tqjLX`i}w_&u}Di($I84;`(#C_NpJ89kmPlxd~V&y z%6#+c^;=g$OYn{eI?T4|_)bC}Q%3G4kG`<(F(Db=gfr#fCIANCAgH>NJXYhT68Zl* z!WoGf-R^pYqi$CPc^DwEM$w*((ZR9U76Hy$@FZcmKBa|j*Y#~Laae~A-KG_~ZQkv+ zC>?aWIGc6w$>h?GgKoENzzDke8H>cHH}eBw#38fYzRR3V!!r78q#`4ZbO=qVGZDAq z#O8(-6S>=O?p%Gvym{-jYuCTC*-7F^eRT-d+w26P&_98Fne(UF9;FTb1_$k3XTW=fe=CFzvICvQ=qc->-+dc349c9G z24h6k51lN~gf(n0P}zpk(AQn@deXyW7{o56qs^8&p;I=Zd33FruUdhwzlCO@&2%YL zJ6ltKu{iasUXt+~8i&+2L>HVztuC4@)J-;GCX%p?Hk8`L1a@O<%k>rFZdZwlGKuwn zr@yr2k7G0FYxY!K!-p~KM==7}z!OuLOi7T6NKYLhgGwEsc`Rc>-jb+x9`fRKz2a^)H+zQ) zvncTkZ^E?<3NJfyLqT;O>LdHE;r5j$+1&DXQP1L%2Zdl9=N?9D;?hIt5e`yuhBrRC zT}pY$j}j~7bD7Ml62R)ZKUe6!&K}gfl&LwJC@EAL-JV{fL_xLtG)bcyHI0^5AX{b3 zOv}7bADxgD5QQtqR5~dx0!wt`<6{U?EQqM6#!W#N)2E(`MI9ogJvKAIZH4JjTR#B=n) zhan#3^)|R!^Y7xZl|3erho?mm*d|>$(k!-XfUf8umFN0FAW${2%H)lca*^&>aj{_T zqaiXxJ4Y@dMY|#T43xA)43ro22=ka4G3iWh<`kuOG9Bv<)yKiF%*Lz!rbMO z##_?RcFr(77-qJ#S)voJgeRt?|+l10Adk!F|G2&C)B zr2cX!j9KCYCOTJuT4DRBQkYp?sjS2n=ANs{7s6%YT9Ynns70lzoXs5q-J}ID6T=1c z?L4d|12g-sr*F-dLKd1u&xvSRppl-1t;x2fYI@P7D&3*!@TD%%5IZ`6j611Zr4@vc zR+zY2hLnZsyRmTV$>&~#SeBx`J+=*vl-pd)ZxpBr9JgI2`f3|4h90(P;x-B{;0T`H zn3I=aP(!out%7`0H~j9)HAM{yUl!4O39ws|kpn}X$GZ^4BOGrfK0rfa-=rH~4V$NM(Nw(xEx}93b?_AESGyH7M)AkQ>bpsp-dC?!sP`r^ zcfSuK32fKzL)E$epQDHnC%rn{3LEyA1D8C2wm4$~*j7={T6ax0v|P``YaeKB(yI{n ztqcIp5|sYEF>v6p1B+ke+hrZsXuXhOKyZB0E zlh%ua5X|7U2Zdort=>^9chstTYQ;{%4T7N!_=3XDH#KTH0%_E@=@+3^r-wu?R_#Sm zylA@!ha>~=s7J`Bb2u%l>WGHJTPLuZVK49s6I7s|7#l30n>CEhd{?#TTn#_Mb0jDq ztd8T#W=_Z!B90v-6i-q)ZwGkYBfI{Qv)kGDhmhb0=`FY&-r#^E;|-Y@!A@^j1fJUP Ud@-!-21Nj3VHP$hMdNPxzvLMZjQ{`u diff --git a/docs/_build/html/_sources/installing.rst.txt b/docs/_build/html/_sources/installing.rst.txt index c0f2118b..00ed43de 100644 --- a/docs/_build/html/_sources/installing.rst.txt +++ b/docs/_build/html/_sources/installing.rst.txt @@ -1,11 +1,10 @@ Installation ============ -Required dependencies ---------------------- +Dependencies +------------ -- Python >= 2.7 -- `ECCODES `__ C library version 2.19.1 or higher. +- ECCODES_ C library. - `numpy `__ - `pyproj `__ - `cython `__ (only needed at build-time) @@ -14,28 +13,29 @@ Required dependencies Instructions ------------ -The easiest way to get everything installed is to use conda_ command line tool:: - - $ conda install -c conda-forge pygrib +The easiest way to get everything installed is to use pip_: -.. _conda: http://conda.io/ + >>> pip install pygrib -If you don't use conda, be sure you have the required dependencies -installed first. Then, install pygrib with pip:: +This will install all the dependencies for you (including the ECCODES_ C lib). - $ ECCODES_DIR=path/to/eccodes pip install pygrib +If you're using Anaconda python, use conda_: -where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` -and ``lib/libeccodes.so``. If ``ECCODES_DIR`` is not specified, a few common locations -such as ``$CONDA_PREFIX,/usr,/usr/local,/opt/local`` will be searched.. + >>> conda install -c conda-forge pygrib +.. _pip: http://pip.pypa.io/ +.. _conda: http://conda.io/ +.. _ECCODES: https://confluence.ecmwf.int/display/ECC/ Developing ---------- -When developing we recommend cloning the GitHub repository, -building the extension in-place with `cython `__ 0.19 or later -``python setup.py build_ext --inplace`` +To build from source, clone the GitHub repository and run + + >>> ECCODES_DIR=path/to/eccodes python setup.py install -and running the test script to check if the changes are passing the tests -``python test.py`` +where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` +and ``lib/libeccodes.so``. If ``ECCODES_DIR`` is not specified, a few common locations +such as ``$CONDA_PREFIX,/usr,/usr/local,/opt/local`` will be searched.. +Then run a test script to check if things are working +``cd test; python test.py`` diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html index fda42557..cd706deb 100644 --- a/docs/_build/html/index.html +++ b/docs/_build/html/index.html @@ -50,7 +50,7 @@

      Contents
      • Installation diff --git a/docs/_build/html/installing.html b/docs/_build/html/installing.html index c41ee04e..0966321a 100644 --- a/docs/_build/html/installing.html +++ b/docs/_build/html/installing.html @@ -46,11 +46,10 @@

        Navigation

        Installation

        -
        -

        Required dependencies

        +
        +

        Dependencies

          -
        • Python >= 2.7

        • -
        • ECCODES C library version 2.19.1 or higher.

        • +
        • ECCODES C library.

        • numpy

        • pyproj

        • cython (only needed at build-time)

        • @@ -58,26 +57,27 @@

          Required dependencies

          Instructions

          -

          The easiest way to get everything installed is to use conda command line tool:

          -
          $ conda install -c conda-forge pygrib
          +

          The easiest way to get everything installed is to use pip:

          +
          >>> pip install pygrib
           
          -

          If you don’t use conda, be sure you have the required dependencies -installed first. Then, install pygrib with pip:

          -
          $ ECCODES_DIR=path/to/eccodes pip install pygrib
          +

          This will install all the dependencies for you (including the ECCODES C lib).

          +

          If you’re using Anaconda python, use conda:

          +
          >>> conda install -c conda-forge pygrib
           
          -

          where $ECCODES_DIR is the path to the directory containing include/grib_api.h -and lib/libeccodes.so. If ECCODES_DIR is not specified, a few common locations -such as $CONDA_PREFIX,/usr,/usr/local,/opt/local will be searched..

          Developing

          -

          When developing we recommend cloning the GitHub repository, -building the extension in-place with cython 0.19 or later -python setup.py build_ext --inplace

          -

          and running the test script to check if the changes are passing the tests -python test.py

          +

          To build from source, clone the GitHub repository and run

          +
          >>> ECCODES_DIR=path/to/eccodes python setup.py install
          +
          +
          +

          where $ECCODES_DIR is the path to the directory containing include/grib_api.h +and lib/libeccodes.so. If ECCODES_DIR is not specified, a few common locations +such as $CONDA_PREFIX,/usr,/usr/local,/opt/local will be searched.. +Then run a test script to check if things are working +cd test; python test.py

          @@ -91,7 +91,7 @@

          DevelopingTable of Contents

          • Installation diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js index 6f9d8b72..45a8ee9e 100644 --- a/docs/_build/html/searchindex.js +++ b/docs/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"20100101":0,"201001011200":0,"220":0,"221":0,"223":0,"240":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"new":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:0,also:0,alter:0,america:0,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:2,call:0,callabl:0,can:0,cannot:0,caus:0,chang:[0,2],check:2,clone:2,close:0,cntl:0,code:0,command:2,common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,datad:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:[0,2],each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:2,extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:[0,2],flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:0,from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grbout:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:2,height:0,heightaboveground:0,high:1,higher:2,howev:0,hrs:0,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:2,instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:2,latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:2,list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,msg:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,need:2,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:[0,2],open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:2,path:2,pip:2,place:2,point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:0,readlin:0,recommend:2,recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:1,res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:2,surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:0,thing:0,time:[0,2],togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:[0,2],tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:0,usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:2,via:0,view:0,wai:2,warn:0,when:[0,2],where:2,whether:0,which:0,wind:0,within:0,work:0,write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:2,tabl:1,usag:0}}) \ No newline at end of file +Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"20100101":0,"201001011200":0,"220":0,"221":0,"223":0,"240":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"new":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,_eccod:[],access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:[0,2],also:0,alter:0,america:0,anaconda:2,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:[],call:0,callabl:0,can:0,cannot:0,caus:0,chang:0,check:2,clone:2,close:0,cntl:0,code:0,command:[],common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,datad:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:0,each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:[],extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:0,flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:[0,2],from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grbout:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:[],height:0,heightaboveground:0,high:1,higher:[],howev:0,hrs:0,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:[],instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:[],latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:[],list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,msg:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,need:2,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:[0,2],open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:[],path:2,pip:2,place:[],point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:0,readlin:0,recommend:[],recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:[],res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,sourc:2,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:[],surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:[0,2],thing:[0,2],time:[0,2],togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:0,tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:[0,2],usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:[],via:0,view:0,wai:2,warn:0,when:0,where:2,whether:0,which:0,wind:0,within:0,work:[0,2],write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:[],tabl:1,usag:0}}) \ No newline at end of file diff --git a/docs/installing.rst b/docs/installing.rst index c0f2118b..00ed43de 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -1,11 +1,10 @@ Installation ============ -Required dependencies ---------------------- +Dependencies +------------ -- Python >= 2.7 -- `ECCODES `__ C library version 2.19.1 or higher. +- ECCODES_ C library. - `numpy `__ - `pyproj `__ - `cython `__ (only needed at build-time) @@ -14,28 +13,29 @@ Required dependencies Instructions ------------ -The easiest way to get everything installed is to use conda_ command line tool:: - - $ conda install -c conda-forge pygrib +The easiest way to get everything installed is to use pip_: -.. _conda: http://conda.io/ + >>> pip install pygrib -If you don't use conda, be sure you have the required dependencies -installed first. Then, install pygrib with pip:: +This will install all the dependencies for you (including the ECCODES_ C lib). - $ ECCODES_DIR=path/to/eccodes pip install pygrib +If you're using Anaconda python, use conda_: -where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` -and ``lib/libeccodes.so``. If ``ECCODES_DIR`` is not specified, a few common locations -such as ``$CONDA_PREFIX,/usr,/usr/local,/opt/local`` will be searched.. + >>> conda install -c conda-forge pygrib +.. _pip: http://pip.pypa.io/ +.. _conda: http://conda.io/ +.. _ECCODES: https://confluence.ecmwf.int/display/ECC/ Developing ---------- -When developing we recommend cloning the GitHub repository, -building the extension in-place with `cython `__ 0.19 or later -``python setup.py build_ext --inplace`` +To build from source, clone the GitHub repository and run + + >>> ECCODES_DIR=path/to/eccodes python setup.py install -and running the test script to check if the changes are passing the tests -``python test.py`` +where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` +and ``lib/libeccodes.so``. If ``ECCODES_DIR`` is not specified, a few common locations +such as ``$CONDA_PREFIX,/usr,/usr/local,/opt/local`` will be searched.. +Then run a test script to check if things are working +``cd test; python test.py`` From 834bed24e814cba2cb84e6de069959b8987e4840 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Tue, 22 Dec 2020 10:06:02 -0700 Subject: [PATCH 42/44] update docs --- docs/_build/doctrees/environment.pickle | Bin 1685433 -> 1685433 bytes docs/_build/doctrees/installing.doctree | Bin 9077 -> 9219 bytes docs/_build/html/_sources/installing.rst.txt | 4 +++- docs/_build/html/installing.html | 6 ++++-- docs/_build/html/searchindex.js | 2 +- docs/installing.rst | 4 +++- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/_build/doctrees/environment.pickle b/docs/_build/doctrees/environment.pickle index 95b180f2f1e71418ee80f9e3b2b4456ef11b6ede..18577554ecb130cefbba508dd4cb656315b77768 100644 GIT binary patch delta 242 zcmdn_K5ggwv<)AnC0R4`Qc^3X^e`tDWKQYf%FHV+NzBQ~%uCV&ik*yko0F7Q@Bk$gH1dEFxj=#E`hJW+ z%FM78MC~zZ1W|S-^Fh=-Qx9&SVs*!8#=Pcc$M$ANMj&PaVrC#_0b*7lW&>h&Am#vK xP9Ww2Vs0Sj0b*Vt<^y7WAQk{(K_C_aVqqW_0b)@g76W2&AePwP>?mng1^}EtRuKRI delta 242 zcmdn_K5ggwv<)AnCAl*5ic1o6ax(MMr}Qu<7GzH8Va?1-Nv+t-CBw$do5RGw;O=<+ zM~Cls)soG!@)b;sIgcI_EtnL`inA6LJBPDnI##M3x!056^c_!N(=M~Dy^nuu*Xix5bHrz zz=cpS`Gio4U5TBYodQs|LUK-iUaCSyNl8JmmA*d6ywW7SA%Jibl gBrcHhez%n&!Ba4R+qvd2@Aq5uq%o2~ug+ij7Q!?0Nr(}rrpbAgEBb35uKDkcV U9!y$nHWsmGXH?x>EIok(0MsTI!~g&Q diff --git a/docs/_build/html/_sources/installing.rst.txt b/docs/_build/html/_sources/installing.rst.txt index 00ed43de..c3006761 100644 --- a/docs/_build/html/_sources/installing.rst.txt +++ b/docs/_build/html/_sources/installing.rst.txt @@ -30,8 +30,10 @@ If you're using Anaconda python, use conda_: Developing ---------- -To build from source, clone the GitHub repository and run +To build from source, clone the github repository and run setup.py: + >>> git clone https://github.com/jswhit/pygrib + >>> cd pygrib >>> ECCODES_DIR=path/to/eccodes python setup.py install where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` diff --git a/docs/_build/html/installing.html b/docs/_build/html/installing.html index 0966321a..2658d84c 100644 --- a/docs/_build/html/installing.html +++ b/docs/_build/html/installing.html @@ -69,8 +69,10 @@

            Instructions

            Developing

            -

            To build from source, clone the GitHub repository and run

            -
            >>> ECCODES_DIR=path/to/eccodes python setup.py install
            +

            To build from source, clone the github repository and run setup.py:

            +
            >>> git clone https://github.com/jswhit/pygrib
            +>>> cd pygrib
            +>>> ECCODES_DIR=path/to/eccodes python setup.py install
             

            where $ECCODES_DIR is the path to the directory containing include/grib_api.h diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js index 45a8ee9e..d0a7b0b6 100644 --- a/docs/_build/html/searchindex.js +++ b/docs/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"20100101":0,"201001011200":0,"220":0,"221":0,"223":0,"240":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"new":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,_eccod:[],access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:[0,2],also:0,alter:0,america:0,anaconda:2,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:[],call:0,callabl:0,can:0,cannot:0,caus:0,chang:0,check:2,clone:2,close:0,cntl:0,code:0,command:[],common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,datad:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:0,each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:[],extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:0,flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:[0,2],from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grbout:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:[],height:0,heightaboveground:0,high:1,higher:[],howev:0,hrs:0,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:[],instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:[],latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:[],list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,msg:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,need:2,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:[0,2],open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:[],path:2,pip:2,place:[],point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:0,readlin:0,recommend:[],recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:[],res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,sourc:2,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:[],surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:[0,2],thing:[0,2],time:[0,2],togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:0,tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:[0,2],usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:[],via:0,view:0,wai:2,warn:0,when:0,where:2,whether:0,which:0,wind:0,within:0,work:[0,2],write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:[],tabl:1,usag:0}}) \ No newline at end of file +Search.setIndex({docnames:["api","index","installing"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,sphinx:56},filenames:["api.rst","index.rst","installing.rst"],objects:{"":{pygrib:[0,0,0,"-"]},"pygrib.gribmessage":{data:[0,3,1,""],expand_grid:[0,3,1,""],has_key:[0,3,1,""],is_missing:[0,3,1,""],keys:[0,3,1,""],latlons:[0,3,1,""],tostring:[0,3,1,""],valid_key:[0,3,1,""]},"pygrib.index":{close:[0,3,1,""],select:[0,3,1,""],write:[0,3,1,""]},"pygrib.open":{close:[0,3,1,""],message:[0,3,1,""],read:[0,3,1,""],readline:[0,3,1,""],rewind:[0,3,1,""],seek:[0,3,1,""],select:[0,3,1,""],tell:[0,3,1,""]},pygrib:{fromstring:[0,1,1,""],gaulats:[0,1,1,""],gribmessage:[0,2,1,""],index:[0,2,1,""],julian_to_datetime:[0,1,1,""],multi_support_off:[0,1,1,""],multi_support_on:[0,1,1,""],open:[0,2,1,""],reload:[0,1,1,""],setdates:[0,1,1,""],tolerate_badgrib_off:[0,1,1,""],tolerate_badgrib_on:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","class","Python class"],"3":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:function","2":"py:class","3":"py:method"},terms:{"108":0,"120":0,"125":0,"192":0,"193":0,"194":0,"199":0,"200":0,"200402291200":0,"200412091200":0,"20100101":0,"201001011200":0,"220":0,"221":0,"223":0,"240":0,"250":0,"300":0,"30000":0,"318":0,"319":0,"320":0,"35000":0,"358":0,"40000":0,"45000":0,"500":0,"5216630593":0,"5419501373":0,"904439458":0,"boolean":0,"byte":0,"case":0,"class":0,"default":0,"function":0,"import":0,"long":0,"new":0,"return":0,"true":0,"try":0,For:0,The:[0,2],Then:2,Use:0,Used:0,__call__:0,__getitem__:0,_call__:0,_eccod:[],access:0,accordingli:0,addit:0,advanc:0,after:0,alber:0,all:[0,2],also:0,alter:0,america:0,anaconda:2,anald:0,analysi:0,api:1,append:0,area:0,arg:0,arrai:0,associ:0,assum:0,attribut:0,automat:0,avail:0,avg:0,azimuth:0,base:0,begin:0,behav:0,behavior:0,below:0,binari:0,bitmap:0,both:0,build:2,build_ext:[],call:0,callabl:0,can:0,cannot:0,caus:0,chang:0,check:2,clone:2,close:0,cntl:0,code:0,com:2,command:[],common:2,compon:0,comput:0,conda:2,conda_prefix:2,condit:0,conform:0,consist:0,contain:[0,2],convert:0,correspond:0,creat:0,creation:0,current:0,cython:2,dai:0,data:0,datad:0,date:0,datetim:0,dealloc:0,declar:0,defin:0,degre:0,depend:1,describ:0,detail:0,develop:1,dictionari:0,directori:2,displai:0,docstr:1,doe:0,don:0,each:0,easiest:2,eccod:[0,1,2],eccodes_dir:2,empti:0,encount:0,end:0,entir:0,eof:0,equal:0,equidist:0,equival:0,even:0,everyth:2,exampl:1,except:0,exist:0,expand:0,expand_grid:0,expand_reduc:0,expans:0,express:0,extens:[],extract:0,fals:0,faster:0,fcst:0,fcstimeunit:0,few:2,field:0,file:[0,1],filenam:0,filter:0,find:0,first:0,flag:0,flux:0,follow:0,forecast:0,forecasttim:0,forg:2,forward:0,from:[0,2],from_what:0,fromstr:0,gaulat:0,gaussian:0,geograph:0,geopotenti:0,get:[0,2],gfs:0,git:2,github:2,given:0,global:0,gpm:0,grb:0,grbindx:0,grbout:0,grib:[0,1],grib_api:2,grib_index_build:0,gribmessag:0,grid:0,handl:0,has:0,has_kei:0,have:[],height:0,heightaboveground:0,high:1,higher:[],howev:0,hrs:0,http:2,idx:0,includ:[0,2],incorrect:0,index:[0,1],indicatorofunitoftimerang:0,info:0,inplac:[],instal:1,instanc:0,instant:0,instead:0,instruct:1,interfac:1,intern:0,interpret:0,invalid:0,inventori:0,is_miss:0,isobaricinhpa:0,iter:0,jswhit:2,juldai:0,julian:0,julian_to_datetim:0,juliandai:0,kei:0,kept:0,keyword:0,kwarg:0,lambda:0,lambert:0,lat1:0,lat2:0,lat:0,later:[],latitud:0,latlon:0,level:[0,1],lib:2,libeccod:2,librari:[0,1,2],like:0,line:[],list:0,local:2,locat:2,lon1:0,lon2:0,lon:0,longitud:0,malform:0,manual:0,mask:0,match:0,max:0,maximum:0,maxt:0,mean:0,measur:0,membership:0,mercat:0,messag:0,messagenumb:0,method:0,min:0,minimum:0,miss:0,mode:0,modifi:0,modul:1,more:0,msg:0,much:0,multi:0,multi_support_off:0,multi_support_on:0,multipl:0,must:0,name:0,ncep:0,need:2,next:0,nlat:0,none:0,north:0,number:0,numpi:[0,2],object:0,off:0,offset:0,often:0,one:0,onli:[0,2],open:0,opt:2,orient:0,other:0,otherwis:0,over:0,packag:0,page:1,pair:0,paramet:0,paramid:0,pass:[],path:2,pip:2,place:[],point:0,posit:0,precipit:0,present:0,pressur:0,previous:0,print:0,proj4:0,projparam:0,prompt:0,put:0,pygrib:[0,2],pyproj:2,python:[0,1,2],rais:0,rang:0,rate:0,read:0,readlin:0,recommend:[],recreat:0,reduc:0,region:0,regular:0,regular_gg:0,regular_l:0,reload:0,repositori:2,repres:0,represent:0,request:0,requir:[],res:0,result:0,retriev:0,revers:0,rewind:0,robust:0,rotat:0,run:2,same:0,sampledata:0,save:0,scan:0,script:2,search:[0,1,2],second:0,seek:0,select:0,selected_grb:0,sequenc:0,set:0,setdat:0,setup:2,shape:0,shortnam:0,should:0,singl:0,slice:0,slower:0,some:0,sourc:2,south:0,space:0,special:0,specif:0,specifi:[0,2],stereograph:0,string:0,structur:0,subset:0,summari:0,support:0,sure:[],surfac:0,tell:0,temperatur:0,test:[0,2],than:0,them:0,thi:[0,2],thing:[0,2],time:[0,2],togeth:0,toggl:0,tolerate_badgrib_off:0,tolerate_badgrib_on:0,tool:0,tostr:0,total:0,turn:0,type:0,typeoflevel:0,unit:0,unlik:0,unproject:0,unstructur:0,unsupport:0,updat:0,usag:1,use:[0,2],used:0,using:[0,2],usr:2,valid:0,valid_kei:0,validd:0,valu:0,variabl:0,verifd:0,version:[],via:0,view:0,wai:2,warn:0,when:0,where:2,whether:0,which:0,wind:0,within:0,work:[0,2],write:0,you:[0,2]},titles:["API","pygrib","Installation"],titleterms:{api:0,content:1,depend:2,develop:2,docstr:0,exampl:0,indic:1,instal:2,instruct:2,modul:0,pygrib:1,requir:[],tabl:1,usag:0}}) \ No newline at end of file diff --git a/docs/installing.rst b/docs/installing.rst index 00ed43de..c3006761 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -30,8 +30,10 @@ If you're using Anaconda python, use conda_: Developing ---------- -To build from source, clone the GitHub repository and run +To build from source, clone the github repository and run setup.py: + >>> git clone https://github.com/jswhit/pygrib + >>> cd pygrib >>> ECCODES_DIR=path/to/eccodes python setup.py install where ``$ECCODES_DIR`` is the path to the directory containing ``include/grib_api.h`` From 3730c68712b9bb8451c86c117035c488f6cd5ce0 Mon Sep 17 00:00:00 2001 From: jswhit Date: Tue, 22 Dec 2020 10:43:35 -0700 Subject: [PATCH 43/44] update README --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d9610520..ecf4acc7 100644 --- a/README.md +++ b/README.md @@ -10,26 +10,23 @@ There are limited capabilities for writing GRIB files (you can modify the conten Quickstart ========== -The easiest way to get everything installed is to use the [conda](https://conda.io): +The easiest way to get everything installed is to use the [pip](https://py.pypa.io): ``` -conda install -c conda-forge pygrib +pip install pygrib ``` -If you don't use conda, be sure you have the ECCODES library installed first. -Then you can install pygrib with pip: +You can also use [conda](https://docs.conda.io/en/latest/) ``` -ECCODES_DIR=path/to/eccodes pip install pygrib +conda install -c conda-forge pygrib ``` +Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`). where `$ECCODES_DIR` is the path to the directory containing `include/grib_api.h` and `lib/libeccodes.so`. If `ECCODES_DIR` is not specified, a few common locations such as `$CONDA_PREFIX,/usr,/usr/local,/opt/local` will be searched. -Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`). -Run `cd test; python test.py` from the source directory to test your pygrib installation. - For full installation instructions and API documentation, see https://jswhit.github.io/pygrib. Sample [iPython](http://ipython.org/) notebooks illustrating pygrib usage: From 6427725a0210fa8be1e781c1ab166ecef2f501b3 Mon Sep 17 00:00:00 2001 From: jswhit Date: Tue, 22 Dec 2020 10:45:35 -0700 Subject: [PATCH 44/44] update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ecf4acc7..3c4f975f 100644 --- a/README.md +++ b/README.md @@ -10,19 +10,19 @@ There are limited capabilities for writing GRIB files (you can modify the conten Quickstart ========== -The easiest way to get everything installed is to use the [pip](https://py.pypa.io): +The easiest way to get everything installed is to use [pip](https://py.pypa.io): ``` pip install pygrib ``` -You can also use [conda](https://docs.conda.io/en/latest/) +You can also use [conda](https://docs.conda.io/en/latest/): ``` conda install -c conda-forge pygrib ``` -Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`). +Alternately, clone the github repo and run `python setup.py install` (after setting `$ECCCODES_DIR`) where `$ECCODES_DIR` is the path to the directory containing `include/grib_api.h` and `lib/libeccodes.so`. If `ECCODES_DIR` is not specified, a few common locations such as `$CONDA_PREFIX,/usr,/usr/local,/opt/local` will be searched.

    h`CK>^Cm>AXaEdw{e61I;N-tdUA&AYl8O8n z-7&SN?_gpB#BQ>jo-&4jqUaqf9}%KT8?3l?Xk+>Jz5?=}Ja&A6`{gBjra?!p0WrKB zqhjME`(^U%M5Jx@txrhQjzfsWVc1~Rf@b>l?+q2PL!EnVlS0qyqqywGs?d)=7x7Ge zBLZAeorY019ExbQfS7DiAT+=Ya$^x7F%263HZwOnC&O3T4bEMynKzAKi;p&F0{+*H9f%7(3gKKT5C?aTD9; zt|o-{$~t3I21f#R53_qI?I6~Nlopba1X@eS`*tY$iKF7=`F9(QvZ zMS(mZ92|sCPsG~!6673@XKe9qveyzj;BhrcJaga$9Mj02{~|wZdIkO_|NHO11{ZM0 zr=}^11ObRI#g+M4Jz7yzV}C=$Ge;GdTtHZSu2?)myGHd~U2`x^O>hCH8+N95Spg%tK?l+6Idv{8mU;zEWNT6LV_7301eDh}YS<|j))M&k=iAR~)JH405 z`l0Swe@iI<2?=eOv3|0Nt!tS}5r9s9f9(1mNsPdNC=3K}Dn?K+NhFp#rpzITbhDv< z_DX#e0qMiDTUn=x-(~S#ZTgh1yW0dwI?9)W1&sH&7kW@oMsa-rJ|CA~k6|D)Y1OPE zcbe?I2Zd@g%AY~TKL`%%rf5`MF*99?h3lAdB;vNMN44i}v+DPzpM)DFjmVOrBLP9x zTAp77Jkr$FDcHO=IDZ0?-6-HMR4y}Ty-dc^%0!BlKP@J8JBiN$^tq4Ep{IC@ z`B(0KBOP7zG7RYoVCazTMOSP$kuR)uUw+;qU$``Sf4mjiiWEXTQnvJ2HU^wO;55O}M!V?zPSc@W*% z!3??T9be~b9FzRzRE-iCxgP70_!_xvfhEvROg(bpV^QJWS9!3%(CRj};((#e99)Z* z%A$B+zD0ncV^g>b2j?$COc>R9Rx!kuLM`#{$lq(s$UV&X*bB`s@Gz;ey-{sF3bgL} z>VSLWgqr`y!&DrVsG_GWIG6#@O+-QB8coQ*0f zSL@?3xnYzyF2I*)8QgtiU)48KFkYR%#@tb`@SrcQH9V4Pw$OhhnQwl3Zqz}CVfk6< zM%kv?z91k_eUMp!8>TAT{p5>O=MZACEfv8{g_g4At)9G2oE@2onR9jgoS3r>#T^9S z&BA`vY{gnOFx+=}-Hw+J-}}T7vWYVFQNb}n0O?hH42L7+yi$_0ZE9EViMt<3mR`tb ze1JDThee(OFSm8;tAuSc@bMuJT?pxfm0&^lur$=(>+CD+s^N#6UaIA^nc`fraxc^f zIZN_(QlrTgeadZTSFsd`@pH>;Gj++VUUuvB$f$~`;Iem#t&Xae{P3{Ar@orCVy^m6 z#j6UECe`^An0lLYL0w3;Q3Z0->R)ilWK`ePt=g z+)F`Z#`iC8amwng`#(f}u~PZ2N#Q+4Nee(Y^BPrNY7u&`o&pNryZZ8mctI>iDPruhZ?{$Vm1+ofl9tif23K&!gh)Do^a(ez%Kv82o`tCfX zh`KD^92TRf>Xl z@X%{!i__Ymj&1X!d9U}VM8Xh|O}`K&Rw&^5gsWthjrf?fWpDY(h?%gd%9h32xP-mc zHod=nrOA#sFQcu`GP%L=DmK)*hrW~>#1`DBT;B%x|F})jdqjqpsU1Cj_kwt~aT8xR zGHEOzYoJJ8t18~Dn=8hok2_EiKf-DWH1rLlAVMQKIZSmE3Cs^w#<=Bwm3~p@{w`bp zpY{D-*bLDYF%`hYO{83`O|$NBh&5N<0K&(55u>u{$zEPCui!-+nqdOY@@XS1QJDDr zC;^Xlk_e)C$|6s=VE-O7;O0eSM3f8unUbsRx@+7swKdlCx>@OsnD27FYwmn&g^)#T z%@vYsikN$rUpnpXXNXy*>KpB~Kh3(DUgZmszeStf~Q3DNNQxt=X@ST2c+DpiB;ECHE2EYRzNE41RTL6BRjG@ zEL30VD?Kw#43Pd0X zo9oxcdDx^$Y$r<;L)4_dNSW-7fd#vmL^X zg7hHje=?(qED7m1*7LZ6zou+CjhcCp?=DRVmq8~>313?gAIENh#M8$Kf(eHdY$AdH zYCbzbjDwhP`D?D`J3L z6Y35n5xDeRu!y6UXv3o;BBc_klw_Duf1>c5ch-y~oVHS6kZ22zI-4B=D$wB8bPbv@ zxCjM~W>o1U715-x`JN`>b*zv`5PA5_I#23rk-O?o} zDlMQOC?f$$3a!fiAWsEIxE)y!~igVWEvpC5;N!$iA&=0 z3eY+=k;h$Z9c^wzbT1P=^xcyt5l06KeZzX<2bhtTG^*R^>*`Zttq>$Wmv(PeW20g~ z>k18e=HSk5BDU)VR!bTl)%5|n!AMf?K_*RNJ}nl;h9?O^Vlzt=GJ-GuRe9J}b2)MP zIH&h`)}N@T{M_KS+9_6JazD-;G!k>FG$e8-3S!#J?TUPC?JS(+K#kPQVK~azc&I6Y z6itn`*$!c9>|5swsUWSn94q2CP50>?zyS$dL<;eO5VPX*beIpNQ$GW{5{# zkeJMR1aL{E}+d5n(Zt+z4( zb1M4a2FgCnt;+PlIwSL}?$dc^lAx!ezReH@V&ho|aJMS69I_n4bPRLec_k2EeFG0V z7vqkMb9(|F#WLgOY7Z1BZ#~D}@`sW5)AdzaSG5rWi421!#cg2mce8q@IcJHJZkCk9fNykZI2U_QiI|M*1Mz*j2PrqDbUj%X7R?0av zn1`odpr0{AXoY?y9=GzP%)^V<=6J3}t7tf0Oh`u{Pp&3A3W*>WCqma~d=x?hyU6n; zvvL)T1=G@*Tz?@-CKcL)KrKd5J1 zTK!(8D*0UxsuX`SwR_~?Rl4drb+}=kvgBi|c`^p7GrLg^$gbtZGeV`q>~TLn9FfZR zz8^pi`Vu5tbrq~4T+~wB|9(UI<{AJ}k3tng3s?XIy*KR)?L_}W+l6ul{C;c@BPb!+ zxr+wkM!59RdX}bfWdyViwYpu$S)TYcS9?=Sa zF+qMCTe+z(f&`hK!lq_&8>stYPU0=L{8mRvIlJ(+P#F|#I16F4?%9Vz}6B(n66LGVwig#2uB$I{H z7wFOevndUusaiFjq^6f_e3mLTe9hYIrqdjHwm~F=V`3x~j4cu~gjSB%rxuV6B-|*0Xof{$iqaVix)%E_S7f9^J+r)AA-wj)U&t=uo^!vV>)L%L!HX4-!?|VYya5P zI|kE#krVixpV=06@YV!-eXD-bdibbz^qNn`w~EuHIuDJK8WsqB8bESoPk15-FlcB)bMQxD_2{k zs@0@Ly@DH(pXOHkG9{eK-1AE+zSTU{)X+Z@Sc(o>=Sfv7s_}3)oBI1zt$B-CfiST* z76i_bj@he_sw(_;_LnIDHZ}Q9uxW^#qMg$3ao^$nc*=Y@`D7J=W&#_)AyZL8;z*Yzv5?g!@_QJ$X|&8tbSzQI(Ltw8T#y9ex|en04W`7?b0+qi-w&N_mEOdVS;1n8_M4j^Z4|l zHdVR%tCsY@LE&!qAVXifE$`mHoIuYwR(gWu`H`h|ooOxiY;Vd9-dZ!gr5hE_ub7V6 zsLKsR9&JI=O9Sy}x`XrmT32eyBtC3xrgP}YD0fexsW9Odl2;&NjMMkSRR-l7>d|}z z)FY0kW{Jmsdz_p&(Bo+*6@fkfgY8N--J{T2do_0@ns>PAiq4Up2-Bltt(G$(yj%|D z;eMW%V)Y8_^(Lr?e;ZsywU4tss=6!g{3#&$z^+qeY09w((KL0@{9QRlQY6Pda_x5TL;M{IkEJTRUL-LWdh82kc!=ajFvALa^P=LwxLFxV~u^^VCCPP1TdKkcM52;OBP&)U4EEH?g1w>f`d}_JTl;sM?ZELkz z>IR!R;+1N^Bz=O265ND}Yc=eENI9IVJIh!Ym9e3pFdtn+cAJ-Dw@H2FO!Nm6i4&YR z&y*Wu0rBg)$AKy$&u{LOUCtzp-rrCj( z-wg<6RhtqK`#~x@R*@P4a5g$U2U2K#z1xCjMH*a?6p14d)JmEBowj^mNh1@HgUoO)>d|+HwQ|P zCnY9a?}J-nYDR<6#a;5*eU=rh&HG_m!auf*LB`|BcNid@pz&2OW&n)a@2x9ThSYv6 zvyJe2IAY9p?RjSW`5wMF8U6jVGx9&jIc}`=}(e>5R4F|v;i4rVc^c6{@j_P1uikt zdn!9j$+dW=1=ReVVmQHb0TdMFJMjgSk$7Kn6J?)uWUX z!*whkP^N*alT`MYM!MmcnZ(z4b07d-=nUOww#WK={q_6d6U&(afYBoONja`8wEbSn zq475$a1ueuQHHwnu;@hwR%Wo88y4o8z$4{`XY5lwR<+-W!e{iE2MO|l83Ks!-Dy%L zp+BOF^9?7E0I7k(558kUrKh6&a11{%2KFXdncx09XIEk1>gb0$TEBnUck+ebjFAb4 z#GX*ui(<1kL^RuT*mg(4ZR&?6HjAa;g;|LxK+tJuINnn@G-t8H&zrasXf9zYIZRSZY45U|_6Iu(AVAZIXhIS*$VpbPal*RIJ2w%;S z6{x^WC$@Sm6B2j(kw5%ug+V|W-6;V8Z|XEBjx$3!pQ#f^{0ygNYs#%$Wh`U{VbgvX zI)4zPB-2~-w~1%hircB3Okwz6K3k zUW;-mpV6vKugO}=<4^`{BW)hefZ&+-uYTUo#o*R&HZs6~nAI&CForkPM3ZZVaOM{g z#7x^|sfT&J#2?E{rf&8W(jb;c`WP&aalqjG@So%w)?@~WA*XI^rns*+h3`G~RpRrk zrdCV$Nw5`{Z^)c<;OwbfkES(L!yOh0oe@}RbF?ke(EU+I$->4z z+In|E{5uL^HO-2o(Ul((XY=2w^+}k!dk=}Ho?aDBnIB-CFbly0pP_|LQ@6)wV76wsaNGG&OSyXu+A=KtGgsU0=qTcT;px;4@f#X z#3g7gzOGeccW0$peFnTXD#Eq^lA_w7%>5_v)Qf9jP5j+wA-2E@eu}DWu!00SU2gV8 zhKeC~0m1HGSp!*R&fV&A>J6^lj%U6*qkd=*F{@?cr+f*eVCz{R_EBUMP(;+cz3qdU zatfV2oQFB))N`n5WD0)#PxrC~Ym)@H&fW_8Jb*`yy-RY`m7TY&!>Aoc>`7iklX)Fk zoBM{?vI1~(bs=5D45Y_!c;(^qm(p&neV0S>zpAbKg9ZlX#pYBUcmI1>fC2m`MQzr6 z;es}Gy!%driYFoW4ZS{8tIX&~ng^HwC<2@`iKu#!=ae{aFn(&ssQexiQ%vDYnc|p& zdnW}?5$u#BAbIvcZ0cItcLT!}CVss`E+c0)w=ZhkVO5VH4BsS(zu-9ise=FJEUtoj z)2>;nXnX%EwBHcHWJn3HB}T@8)?(mm4+CmfjFN ztcGIA`Z_gm`ByZ_eEB5*UO#g%Ly1cB_-C{j}I8?vy{Q_mDJ*=xZO8oUhE?o~lcdR&*&0pBRF;ycoHh*6Y)? z8CeIWtqspT90tv4lVA0KhzEz$e7I8qf~fsGalIxA6>(E?phYaTME}mnghnhz&;fCT%@syKXEW|sx1z)X}cDQU4 zOR8lYc*|e4y&o9{J(muJJ6JJoV zmghu6ZivW4vn>(t0fdh`2?O=z>|^BL!P`!uR`yd(Sl=NoE!{CB1O<(F)P@X0!4TwY zvx1NeIJCVy@{^xrdAF<@s+K3oc0Q4@Rzsjtqs+HsyCFXCxwV;FPl_%=fPpezia(7V z1axZ$bVxpKckiz9`geOca!q4MROOvFhA3E8x%$eHDXF@Sq^Zy}4uTB<$onbqEO0V6 zrxdP#0S4V!)8hpyoLy{mziO(OBM3EcxTq=%Gz@tMjyNfdy63MvWiv?Ib&4`Q*F8o2 z$qpv23H>sfx%pSsuzGp%6mN~Kcup1}^-xXIYA*Y)_scl6$9-j5ZQa02f4@WTOCC)5 zus$(uG8$@dFV~92txPoM9%>Lk-_Lq^5IaK8z5ueaq0HFvuSEWBWa{ncm$;M0Ttprk zwXSI3=5kivI#v+hEkx5>TZ6(1JxSU-%7S9+zSjON8WJT8Yl7}ph}VDN7B1bN)c`n- zf1G;vs!5RK8p_nC#hK=r5ee0i=Gi9Hm=xc;DP4`JpE7(`6(7Bn4p2K@oCp2g-Q|Ur zVk+vcMFUGpA{by?^o-7Z(ByfOZ&Rg{3wfB!*OdMq0Oby%h)*}-<5w2#Kt21q|I>Eu zR3c<=_MaTG>|X}O3m#C~2*>d>XSKR8pmT(9w^CTCKBFGdGZaukzp)1l^|PNen7BI${}#}IJ>dwp+zm_!huUh-6w~+--h6m^0i@L zPct0M?%G2iOH?hi8Li&;@{g_y$J}`~6{Ar4N==tz47cqb1WlfT{|q|qk1nreq$kb$ zJPYi_A^7!3^IR=Kju_*>+{QwipZ(2Ay|eAM9?=cWPQ6Wev%AfbQ?P>GE{3PQU-s6` zl!iTY3vj-8*5wV@7J6rA#~OhOtM^6gx}H3dYa^C-j*38FzX~1xqw}m=9&<7ed#AM^^ypI_VKiEfl+JY=?b9_(OH`3pDM;Dn?Z z>E(yn5kFG_B!>8Sp5Ys(D%xcJ*iFP^S1kc{nrwi(t`gNy(kSIQ*D>OL!$|ho0^rzB zJM=r^IG!~v(+F7Gk89i1BccMm(pz!qzc{VFlAF8lO%ajf#6%BN-8!8qd|}0$0K)$$ zuaGXbs@g6~pJC@?`%78B&jKGb8VsxDEHO}{Dr(vYb&bbdrKRorv~7s`-z_$bKj?{1 z2|Aj5uMS{Phc^piLo?zC4}ZRH)pL-O#(=-m;IbUSq}E zY|1BulY)QQ>ZszP*h>Rs_Q5S0|H}ggK57d_8FNA;^H;W{pVo5aPpVCLKpH1r>V^Cq z79<5S>x4fW=5bDbad}qdI`G9V*S%`=LD6K0B}InC^MXrQutNKY?y=Gm)pgvT#``} ze0Kex_qV|~z#!LzK=$i*ZG;G=jn22?S z;Yu@qaR1^&hWW5*j&v_hUUhZ{h)BLL;~rV8;eB~;Womd*Syx<8jPcEX6QzLK3=Rll zYzk_KL=#K7k^;Spt0yt|OMtYi4oNGW$r34CW|ZxenTplfgt#Y_u1x&oBhhX0d})#v zF7Eo*2;fO@HC?(JjVeYTTutm+CdEdn3H7%Q?9&}RDL_Ik1ZHmEFA$xV_dul5$`1rS z7j_Eq=17|nYS-<8o+d!xaUiQx&SevgBr!qVp0fRke&>u{e+?f6J}+76)&Z;H2ntYX zNTYUWljDgk%0GtC3&jcILFWta{zv+TibJm&A4yf_L*-Z$xfZ!1kKj~zA7gtsE+x}SxZAUw8f7dTy9{{RFKGkgUD_;z~z(zAE>e=Al{ z>@lwtEYZICdH-Wp91^FOVO9A-@0epa{UZlShnfT0^qr>(8)YtND28f2D>REt^#Td5 zc0LijUZJRAs{X1>F!ls!yg~{;tF=XoWLVP_)Cl&Y*6Bejf+s36sM%rpgF;-WjZNE$ zXhDOR3Zy*=P;tf&^L7fzwD$9j8JhdJp6Fc^Qth`GS9d<{vGz>;nk$^k>-=_E2hF!L<(kCl!@8{cCpHsb&MzcnRLUyO=-9(3v9 z20rWcGqi11>vs!t!D%Y&fJr#3zkFmlX{ZI-%wMP;RByWRPiXCh1hCE(ehLIbo<7 z+a4wIczG&)5KQvs$pnyd?#EO))Y{}mdtz)|AOTo62+4%VRcguq`8LCv>DNA& zf6RyEK!3;_?%GE6n&I=l4Fwr}RwU_+EFdpmu%>BK);JbpyiI?i_6?8t%yPrf7`YoN{i7_qxLiip`Yj5!kq@^L+tl@}$(AUI55 zg%-4YZrhFlfS3*m2|u~4u#A3A;s3=WyzVp1C5yJ=`M;3P=ZlN#*QljvEd;=)eK1uZ zr$cbwN6YqLfjawCd48ni_AhoknqFU>l?^DYuHs+yki|>1Y=SRQY5IEHoBBgb^dzr1 zrx>tTimc2r4+3EECBB5Y|H(BEU|H-T(q*XHstNMl*w|}{ov;O|l2RL2}C2_h2jwIQC0OUw%&c?6rr8gj`DV}qQ zVahYJ^L%7j!7Jlk7;`dpAnxS6_5Ke2bH@F!=!nRVNQf;eLoj90xpGuydCIZ^>Se~z zegHMsN_yq$!s=nb7o}e9t*Vi>18#P}@)IQIfYE=8eWjHSe~m)j$BArm{IwJg(v)f} zu!f3=Z_<#(C4s`6A+bQN-@E-HpUI#b6$ImY2+FXF3!fJfLyA(a?`@q84JpU$lE?}0 zK16gh2w{gEL{O%1zbB3iE^)1eck{Dp0QjegrujDCjd76NV1I#bL76#VJoSaxR0r2`So#)N`-oj!m_-@4SxZt z-N>*mB0aCe&-X4gv^tQ`o2+F5-1C`xICis3`RcrU?FGQmdU2kGQ+du%3S#P)76`7r zD{oqYE>jh;Q2}O15KY{t#S1@(dUa6nKFW1y*bRA%YZeYeT^A%}L}Wa1b|lp97g1Y; z>l`=KnyV>QQt`ED)k0(pB<+_ECTgjNP5QR&8>wW3%gd^_0{d6F2%3%F{Rn9vC>8kb z){h`B57gTMILuh(DPC!JeOtd*>lD~?%@}$IRG^GxYoZ!;H%Lf!Y#kl;T6uo+F=f$J z_fmq^dKr#D`~KO7P!Juil6RbQX>?A9h;{^~&)@}c{MoQE;eIs{WMM8D?qB7UjhLrQ0FyQ}tP(Y6aVl`?#y$fr(!PMtHM}k^V zV&QOKAp{kd^6q04Al)e^cCKtMNwWjcB)(rcZy0_DCd=Oa7He!69Cd$Qx@?uW$^zd^ zT@XO3rk@PBcig3gHh%EqN~~pJ;DFk?PqMhfpr$uJP_+v(0YVa(ZnGAko_pM))3WPA z#L&q5P7D^Gv10e?kI{b&fozw)3_vfXJ|@)=QpnFG_RMiYLAW80}>CNsG#}w(@1c@B`LGGorHph z7)xw*m@}^|wP(h#61%vgDfq0+{)C_v>T5`~O#Cd~8t@u@6`3IBXa#s88j2*1<6Z(& zc#RpP3_|WdrSS$IcmC+LBKs4ih*8R5rK}8pP!kLHDEQjMv8(x?l3I2aQA%A>Xn6UG zd~A%2h~^U&4)s2K)9~=H+)y_hgDg#Pl&ZIm3fnL!(jWv(or2iJUCt^SrIq4HUG3D5_FMX!RKEDz^hSNF_Y5ih;_b(Y&c70_p zbkXeLG^NA<252C`T~e}Xk!r&zRVQJkw5>>g;a}>?Buft*?ZF+g<{7yp%}S*E)lEx7 zL+dwx498Noqs;_@fR+zQtHR1%h>qJ}fG6-Z%;qidN_$fh4pkO^Gts67jE|UE??dc`$KPsp9ZuW!f(%%`_1lHaCT!H7wzBN8 zAwABkxqk*t`ph9{;2vPR%ga!tMpRfo&qEg5$0hklkRAgvIREB+-&!krY)%$5^yY0g zfIdk}x{JQD zZ=QwKB&Ms`<_xXGJ1{Jwmy7E$7M{nA0ZsjH|Oly*gh>vc| zC=toUkKpGs8J&?p@^RPK1wzjQ7LX8o>(!1J2@K%iH`b=k=+|N+c|W@$LFR==DrhS9 z=)|+`>s!{Y`UvwpOb>_*K?25&QnmQv+W%Hc490D^Htz`*5#7@Jj{#FqcwCTHr+%@Vc&k>9= zeJ}p~+dn5uM9me-F>8@idKju-BQ^d1Ffcjgvev&+EEqo2@A9fzp2B;0>-|p3>~%)n zI{rwgpvVS+0PcSPLR%zjkZ*Hr&p68Z*FWVV72r~S<0W&Q!v@r9Zj13wv?-iV_@@d>Vs;{6`n&T;n$gAvNDT>82`M}L zDX|B7^fxk_fOMwkRS3z32XAtxYsDu&deHaTTbUBAm++ zqb!v%9NPQ`0CzKDW=5u?`?L9nu>f+*=a)_Y`L}5f;lGB*Q|jtVS@hTT!v44Mnvxra zhUWy(d-9TM@n#A^&HxmYeeM?yMS?s>X@EYBPO~$AUd-S)Ba{04zq`5ISaN^KJf=q6 zz~;L!v%4Z9J4W*>oD(uth=QuTgDXT27%&#ZVV747o!j%L7F=i?{G>B?!q~ zfWP4=GRRs^m>T_5$U+1EkX~AYp3{XaRD)m*Md%D{76XzP<>rYM>|3>PJ+(M4C3HJ3 z+rGV;?zL5SOx5$CgjScVGMGGZ)nWVtUb~)GCO=5T58&5%dD7faF6Ys&3OlU z@l%4FRAYh>($pW&H*a-Km<)2i5Cl*OHF--qosC-_;pH!nvqdS9_+fi&%BufKB0cM- zPK8}f|KiBf9y|z}(SQu>=@g6$-_;i2&$JB+DTZ*o=)XzwrY6GsW4o%a*`_WLXom2L z-eBF>He@+#+e&88+{5vZJk4SDXdft?d|8!HS6Q&p>%TBo;4x+im1iP{ZD~>xdG@@> z_}v^%N;&m8>Xfwn3<(nWiSE0lE~qrR<^H)7`H)PxW5#$njxY?#DOspI$x^TlAXa0F zlUWx-**rrz$*)O18NjQ+h~>L)*kDVK+XNFqa)OWd3!b#g$pV-n23kv)-05~uMbX{6p`_%s-h zcY449nbN*=;Py3*20s{%0yhVFNRk92hK{wvaBf>EbfQU|hgfx|1`iR-vw zr3w-N(s65s;c%c(5k*|~jjL4R&@laO6p5~b$%u@3hw#i|`8U5Mo7dV8VpD#d1>PhI z?EnbrmBx1ty&{UmV+kZA%a75Jn^2w!+pAh@t+06)i8TO<<4(17XTkt392T{5Brf&l zItEXZCFg`nI!H-;Se>}mTg*H#9WW)zyT2vB$x%^T86ilDX6JA=5J3`>(Xf0vCxm!Do1pZ(Gysg!pRrWxjIGrX>t)Vdpytes0YU>6Hl^laCU(7 zw{NEUUAsa%Rf(6uko7Hqv-oa1Q9n9Y7=jP;tWo6o+IqGgYb_$Lo!s!VEIp)EE3H*E z6*o06%J__2ib@zJ_QjS4>l6OU^(a@VQ1SNix3Ww$Nz#IV!vRBjw>Dlxk%vaxAO7+5F7D;0` zxXMyh>@#QN@wmK>wd8pou&loPU-r4Na)kgA!U=E~Bt7mImTvE)C8GFf415*s&TVL$ zp^aE;d5w`)4_XIyOOgFe4WcVw2X_)+XzU@f%1)dB#96a9zmk6l^C!|TAVb%iXVHoA z*!uGRCbuZwDE>P$$taJmB&*vZR-0^cTpQY)jW(~uisnLnU2h5|Pq@xhB8k>qO^4EN zYTnwE+SLX)Y$wwp^&Y_2D-_MJkAzbO37%-BcMfGlV{+Q^y4adDR@88#43x4YR7FVf zDag7&J<4%YBJ+j9X+e)&lLG=G_H$C6H&yq|mun0@aL+uYM#56j`i2J+fK*`dK_gjW z$K;@_{ik=8l^KzpG2XGecPEm}Dc2X6KgmvcSXQ^>-K2FI(B7rMCO^h=3q8Z8&tB4a z3J52QR^Ruq40IGA(f|1UtB2$*=y@fZwZ{ooblyI%9s@;i#6~QUYxa(=1783o_?C4?XBziKeXe@h zgEq@fp^Iydw*SIy`ZFpHo`UEv`P5!Opoq+*PFBS zI&13wkER7xC`ASbTT|gZ#~s?=8?Sngoky2t(FL!>Eg`@QKsjE1`$nYgJVHs5G}AUK?d;=)Ux*rN zPsj#|LJM$rU@Z5EF_2AdZbeosb}EjmX0786t)Xm+L=)_Cxxt3xg zYUxB4Q8^PrI!$d=`1xn{$`7of+sfIQ=t=(S2;SIrljF`iAStWV;BiRR{FrN+4Fo6~ zR?A?Q_5Q^+kD(u-C;2UcisA1Rg_v*bLY>=IYZ%LztdJ_s`E2Uyu0NVeg<)rvl;6sS zqG=-h@JeH|S(O%R0QXz6n6iGIF( z2QyH4Rt$);xI^@5LA9*BP-|Gwo{w)^YwY=5#4hjX`?FCq1HfQ>6M%vL5D%hT@IQb$ zxpn)Fa=vCKv#vP?1l{RHBDlZyYB68{Y&($(uM0%FkESwk^0Bb1>75{PXLzDQGKG;u zsU^krcqotWqR4R}j4%jSgr^}$4=sA4*(og+@HWHlo12HYO+bTTS`+r*GLvrjiPDXU z!gmx%=I!$=s=>Mt3;pbl9V1+)G@Eh<7^a#YnYy?dqO20>_=MI+WwdAI#DZ20&}A(D z)~rLz+3E_Z8jqTECjj-|0bQ=`yA@Xrdn*6F{>{^0Se*g5F*9O6sb2&c(Q5XzHO3vU zjdv0_9Na@dC>-jv7HE2fIc0o)O%@g6y5Dw$)vt&4lIJzX5tcL9bzdcJI_!T$D{_`C z03w!>?F#WC4xZ`PEU)8;S!6A&r#r>b%kQ@v+I~JTi(`XODrw=dx8@52aS^_f>BrTbx!PVPWd zIYYd0=~kX2A=hjU(*j4wtOi3aMtT62+mQ5LS!|n}a$&_8C5FKOy(k94g`;0Rux|^I zg}f;78*(L-3LE_jHN@n!{7y@AM|Dd~Xe`GiNgn4^ko*VXNqYoNTQGwu%GWA;fsCL& z5f9*fXce}l_VfSI!*SEdiTm4KJNR7^U)JP8S>wzO_>ZHk>)QUw2MWc1*lgq8SlLB{ znr*>>RVlBTKu~Yy?fO;7Ku)Q=XY^hj0Jk6l$79jd{3sUZqikNq57tBGVS9itGkj$a zpfoscDCe8=;W031)?3(mTK8M&}Wb&YJ>jop7LTkcJeH@n1GB%F{?~ ziY4U8Ml8Py1tj((T!?2MJI*qwFWLub+=25k;_baRKbJd1gvax2t}252v*&m-D<{Ng zKd;bZO>Zwz{9;@3&^SK&W1cA_c}=ja1pK*bc}C(0!`21hHs(y`()Y`4-G*6p4%q4S=sB=-dj}ncN;JROaWr#hhx^*{gh0sI0QhVv+X!B>^tb}rFa_Tk78!OL zE+@5$w8jNdYvuAZ45Ul{RM#FdHxbzt&nvCj?J)j%3lQ{d7Fv6mLqEK$39#$=;b(ew zI1xr-ay2}=q$>mml$ldl9>g?k;eH-Y(2r~oEkz^#egD1O+x^xv6hy&nmFDq7+Q;|0 zD35hOo1gGhMjCtN)8!OJ5@UtXUH%O!Ut3q!pra9h_xtK{@bEc+3clZ*2BZ}w1gaF? zZsemG0!ki7FCSKGd=)25ZoU!7f6!&1kAw&hlgvsSgfoIW)kG=qDMKWl5+^(TC_#Ll z3)Z1zNOLBefyu7h5dzI#+XLf#E{QptOag|!A zjraW};OinB7(RrG8?-Lkq~W?x-YiWGUt-@9KhE0SDZxjUTLaRlcMo+q5lJ!p)N04p zA0BU9o+xnp8(4* zFUQiX=_mr%?*Fol&%i@c!g<}kNQnjL%%W)X%U$WGTp{YTY^D(oy}xDU`XdK^M*;G# z#}xI&EXPBE%I<)NmL@QTf(}Wg_cAMr=>__Hm5@xf|2m$B7}YrD*gr}n^H zB@#E%2SXS9#_5MCaeAt#x!;x#4C=NDSD3|*}(w3 zPP%>?JsmJo8P>$5*n9{G98qp%YPxn6yHowzLeei^`*$~5g=B{E<Y^z^+NtQHiS#6H3!eZ9}#}dL zD8Sm%vJa>1`0tKVW-Rqdv56?nuLj~Rwg*cBNV^Gh%PcAqv>+>JPkHHnCg6eRvg;Zj|5I*MLLje^%-2PB!KfG=s@Q+Ah6VclSWOUqrOD3FF z{~>Um>^(E_yQ!JZEjX&(`C*w-_S&>h&T_wR?m$RcwN(%1g3no7>gMa9;^CNYT2?4V z&gQIzjDfdf7&WIG1skt*TI?Z(?tQNc@qy^ve&hDK6o9a6N@bgVV)?5056`1$g!d_y zPbcU~$7Y^sj|!-&FZTl+h*K~&D+ja^Z^xfa~wc`fkEMFiZD}t zs}6j9+-U&`Uk%voSJUDVp3VtqL=T0=x<1=x%HjeZC50y2R(G?f6m+}tUu!7oGM|6G zFAVVAotHC)ZHDvwA-)m(7;rDb2EwzPI8(p91hT5v(f(sJGtt%XF=;QnZ0yfwetCc({9VdSC2FOTQ6$k^WWQdSf z>m(h?WxVKwFkpKu8vb&AY-!@r{^u;iWxjZ3Q^#(qXvr$9@{#oz{6RvOd{M$K6W&?w z2WCN&;Z%P2u|vU?x2NBAm35ySp(Z-}t4^V!G1eRE2w-9P*j#%z#P#tj8)~)W9*{=b zM;=G(c%($U_1`WK`=mqozTC3C%VqTubJu4z`uQO^o_TMc~ z>8&o~J)x1tc-V&I_O{|b1F#s?k!u&92&d4%DCOsZ_M@L}o-;rH=dDY}56T1IK~@5s z;#dXyqtiG52#fRs&}=tDGfGHen9RX<0O8_DNrkeCPuICL4wW&kpFDCb8*e3vWR+rszN%6zJpA+Q$1Y+uLvbZbnTkEj9tkR8Z18SZ{`y+u+V6_L z3wRHeZyftjfPz_))VuBdfXA@SivPrSo*COgD9u7qeXh9A1Hwrn8sU<0$7&9%AEMVF8#uOLb2AZYBXs`P!GJinV#0(=1!vE3&`6mX6T=6a4oMXQ%XaQ&8@rO_s5qe57kDJI<~3k<9x2Qh&}N1SXAsH} zuAP#DJ!&=$TJcd4l0ruw(alj#lQyKv^F7`?a?WmNrM*5M5Sv@16l5 zkdtBbOG`H^9<}u20C*?@i_@_gNqIAO%BtC3 z-PF>+9ZFs=+MQG2_sSSfa{p~JN;nU`t;u8UsaBky?thD5-YhTb`17+dm7T9p&nNq2 z?DfhMx1b6g8e&q$X`}3B?NbH4cS^8oMo&vMb5R0W4kJefKA#R!3ILYR9N;l|9nL~M z0xTarEw?ZtC=zV>*Far;T#b%5I+3BE$sc7a(&_*TS=6upy03^?4(vlq`6mF$#T{uG^ofh9$!i(WgbQM3O*Jr?jaxR2wdA-zg+d1{ zbcznwcL4jqmkKj-nTv$kUK@8#Cc?fVnOP8@+TG? zdZFI4TX8@oZliJHZ%T4dj0YAMp)ezqCG`!VBTxR89MIg&lH`$r=n}7)EauX~8nXM7 zDGX8+N7$95qUWkTZ}XW2hCeLjN&|A9E|)ut0D@alrHJ+?nb1I(J9^C4blzL-6hp^A>n4d}nX`OCR^085hyAtVX#r0-dJ=Er@5ckkPUb7d==HwI zO&G*zECyX(Nsv@WscpiYd~uv_g)obBNAWCG#3z#h*8D~F4tS|r=qx*ilU58+N!i9i zhS4kze39;4oHPox=RC0W-W`jK$D0i7A)+6<($6c;z_0RFzO3ZP>Q6f_SE&NC> z2fJdQ6LIx%v(3={>l2Xw2E{SN+ zeV`7D8i!6jwEFtjH-?&jbNT?69%HFY$s5kBhRK2PI?WB&og|Of0-xqvt_2N5>)BN? zlGRYqYNRHY$5lpo_!HO{%P}|teqz$tbP(G(Qro;N60N};xAs9^`=7GLIK*1pqt5Yt zW!O_6qA9ipLzG#P#W4jxKJ9&ArEUxwQ%qAplc@j&F|6%s6DoNREXqyg zf{$NDC{@-{0OU?Q5vc;((9Vuu?UFi-|G^<|#}m?U>U`#x5W=$m<%WA@5TapWO%tWm zk3eAS`Ly9P!~SK8e_!sHO;u$i5HA0(t36BP^Df@qlCznOcmtri$1X}g=t{v6p^Jz$ z(2dm(dng7b_+AHQl5_U?!m`$Bd20(<{{fu;)}O)#JRpnxxErs&w{9O7m-kIa^ez0i zG5VY)lu|b;b)RMLh)LlyZ*_;Nclih#0=z60-B3a<4^i^_oIgt`BTzo9ep_>1>q)A3 zqN)2GmQ+X`QR^9l;nr02PhldDJCXO%m%80<{;RA9djQofS&Fltgo}(79H1#A z%^aQ7uQ<|0Xx+g9rP!!&ejPSjvulM-{UZXc&k2d2*7B8m_Ko#|hX;Tk%Q%dVjf$)c z$H|uxGoPetlx9pjKLSzdP9r(0e*^Cq;w}_CcncAb+H3=fpH%=-uq;2(YW9ZA8xKxX zcW$2nZGh#U5mV7I5XnRn0s>O+c)PB&k=`lSg<2I;b&b&x^R_y{M};eBu6mBkhTsVd zE+?e!fAX+H&%pmqBXPP}F2S?9j=3Bwi9HBeibePPdX|a{l%<7KPa)?il+lo=L_8LY zFJEj9Z;(EB{%oyWwV*coosn-}J}v(UrlV*l1W>ZxNBxMigo~8H>zjicfHGB`@6DbO z!bE0Aj49TMwVQg8qS02kuo;q#Ph@)02{vI6jRePrOqosYOEm^P`xs|^MhFv%0*n&( zqhXCqk??e8XPQROt|w`!t5HHBXTW(~v^nMZKsvx2E)z~7)aX)8nwI;+;kadM6Srje zy=+Z(l{8H>+upE(kG*B_l8Z^wj$vm{wdzcPHxetmG1ydE*qw0u=f?V zVse9kF#Aj8IxpdG)xM9O7ff{#VxnWGAQ-n-KN$w9cUsnGuk2NtY10(bW3H@y8+ZZ3 zENwovW#zc`=^yw<#mf*p34opw+nbPk004xL@wPrAEiB31Hqtouh92^;owfAkR*U6j z@I1mU@DPKJU*<%c)?|yEQs$EuKLS$z=W%BcJb?`R^;7Miy==7o(PpcQtiY`uZO1@f z66yWm&xuJ06xC+iEW7|ydniX6agtfTkrC5$+q)$ro#$kC4K9UEK$6H+JPCm^;^wwi zk1^uVD=RZu=TEE~WT-jxUijZ7QfGb6@eAPmFbG3~16miya>lU|A%!J67zS3$^*)X$;e$(~ z6a=9*!I+w%+h#_w87BPi!ZVUb!iI`(<4d6}E3#Cfl{*-~}ajl9MKB zVr*1CL90zfOulo(PjBAntSRKT6KItBYqUtz2cQU(+Lnkqk73-Xw`dWiCY-5g#ybAS zz|2JKw7PiK`(u#LJE*Xymuh-G7%&3#Gs8B3HM5rJJA7%XT=_E}5KE(-6a6Hm*05eLT*XwWbyW=d93bR!~S3vnO)%jW93wJn|0aj$d_!)8xZoIEjX8K zBe~d0oe)Zk?|ZEwo~Ewc9AC#3C){)eapEH2Hwd9g+?~IC>2w9D-%F<(jCdm!9dYhR z{JT+n844yHyKJEj6F9+b)U%yDasPa8->*G0{-@WLJkvQP`myVel=KcQVmrSrGk%{p z;9b-&;Z{WzwrpboaT$Oodc~{VnS+r#%Bld+33|tjKE0M7>*9M`=y#~}2LRG&rud`f znw>C1^Pw``y^rfNmvYi>Ry=Fvs($*(eDablhI?@uZiGt-3mep2?*^ehw107yXT3#h z)8JKGv+v@U$I=nGGT>kt7yU1uq5p>rUfegBRm#fFfEuTEvlIczk!Dvbd-jj4t^4{n zMz;KAc?Sh8)VS#=dKQY@E`4g8+L>}~2z|iS;;e0VD3+?0@D79LefuEBDkMEB-;g;W zzZ4M#Q0N#lrijkY0Jb%iV*2z;-Ke0Yns(s>`iVwEf_eQ#5%H|HMyU%7@|9ipvlH;- zZIt>&t3T$13ORs@PNz*&U=Ym3C#05mH(N}mms7dbnV?%G&WX6#-WD;<3ge>N{#$Wx zK0-^wt(3Se++rRCC@K7(Gbz8b>EeSYKNt%QTZD=w`(F^|umax&k9jIPu zO8nhXAnZuA^UGF_l26-M0bzd4@u{!H=sT#})Ka48?=PM53eS+xoSlEOvrfj?EbTA9 zzyqGdyv##+-^k>f{w&wtD8r?bB#nkCmmT^i+;-|TWXuZzQrdWbtI3DEj5S5vzw~HF zz=7BaW0B_QWM~0^S*c`KC@o_!1IrPBQy=i;Cdd6*ys8SkEXO%+w%?sxYPM>tjZ>>U>{As@e8ZSe zFQ^1(pTjB8^wRmUYqri-JI*(l2RaR2mHEf?mjC-a$p=%Hh)DU3JY_M-kK}%mJbOwQ zD70?)9LI(npuSXy`NGbrH2pDHF?7dmOnB2P5Dt_{3SHaX%B+VCMLegVm>=#a(6f&! z(J5XhL!{&64&78YHqqXg<$t@7T9FOqz)R0C;xIOh&6_l-gwu;Vsu-jFEOTWx$X#)1 z+wu^uvxotU8POdK1A)R8BV@x`?$wcR=e+Jo0lHi(^O_D$f+}{^S3|Cs$yw?fhB`?= zFfGFxpt-c6{}Dah@HY|jO{yZ-3Qjk62e@upbW67!!cvz z$u^=O#*i$+v9s)!lha_h>MPL%0!S{nc*PW^aJ}^YP*eVOh(`*|5w8XJ zTvJR``B2K zs`x&MX0Tm52>j2n8H-IMYVCeK>X#9trs)~yP4xiCy?s6^-5;u5mqouso_x;pPlt?j zLTpCo$faod+~D>i`D-%Gc+!vDSx?@`#(KPD-vv)A9JOaXGEfgl4yFN)ps3(dj3Kj% z#inIJKo!IL1sNb3ukueogB8eFck%YEjTYt_#vkYe{P3Spz%g5T7zAL-l296!#nl|9 z5GRTcA`*@8YhHzoAm$yb z=l~4$^WrZPT{y$dRIeFa#+*>iw7qRoA6+T* zua+moi`uaLT>vS2K?cbUMyNtJ3FS|eM4`9C+zLvKt zFVbJ`nZuOjjKh~;|dSGM}`GIXS^oa*)thilgs!ADGOg<8pFg4da3ug3rzS&ihWYuwVSMa zA6!&=yj{8F+hYO9Ul7(UkKjrnd+*LIGeYL@pEbbosMDvIIQUD5Q9&x`UE?o8#lB>; zydnca#0lIFG2eU6rn>{oX;fA+nLR-9G0QNxgAP`EnkC5Ise_-Mc9-c{MnL~9PzJ={ zBlO^2C;-hWC*luwW)1#zYkhSK)RyJRpUh^8@YL(^UBr_s_Rz$Wm(q@2%d>cN0GVU> z)s;bGCxsbD#TikzmmU>f!=$s?KG?KF%0!zuvk|~Emk)5W?qbgOy$KoSw`0^h zb_rS+J9tU0Aqs>)4xM-+Ct+{vUR7pUJ__eTcPTApOtwRAAR0H-F#tQG_D^ze_?}sF)(Tfcg61emc-h1(NYpwD}sG~t9v!zcZRELW&C4u;y z@MLXxJM|W+QsS5Y{cUnod+0JzRx2J*<#@8=?YT}5H#H0Qn4;-BtDRD#?=(9QS{Gi2 zvVTX7YLME6M*kaEh?vFU(K9Qz;67FsO>k4CSOKW)2SJwu&(8-&&IbORvqmx_P>W!K zwEHm#i0~v97vcEm2P-&O>7O`%_8kAy=QE3AKe?MiNXIw@E^7C zcYuCU%))Op>yxaB}-+dtjgO+<&d<^%pI*ycLymIi6K`Q~6+wr`sZ$5Tuu(g@!zE1di z$v5dC`0O*y<`&5cAnKe#drVl0Q6F_MoXe7YAJbmoq0RAQv$g~pb%j@rzo0>g?9Q7s zQkbIqDgR_r1)$a(q#I*iwLJ(gzQ}Cssk9jA+6tLKc~*wtHJOo45IuJrHvq z%~nF(?|lAK9BWj7*7Lu>%h~cNxyD`S@+aDs90YQv(>|&2i)P955cDGstyivs>*%o0 z2{qGZ=?Ih55k7#j00*wrgtE*S$KTLYet&;WyD1klYcoxaV|~S4Po7P!Ho5ASu;>tm zfE+~ms=;00&~#3HiF1AeuEU#R2GYfYhksL;Jfl z{l2z!jXeGKZQe|J>L^2|5FcA@L3wT~Uo$TU+bXB`0K9pyOW%NG8Lk>Q%XDvA$mk0ZL2q7N9#DxG-q!qX3A;5oq z1Z{qje^h%a76-aBUi(Mu$0?`|CAbsXz`_uZhgItx z=X(l&64-yv0NeD!Bz<||SkQuigo(E6s8!(?E{EGx7XDg8_A@9LP<>r|m%_PC95S}X z;j4@7Im-+nOWJ_#>%8jw6IJD4s+V`{bM(9RhU)po0DP|WOq$1MkWC`^y;U4b4B*O6 z=AUn8Pl0wu+A6q4pr6ikWY;LGh#l9S^ruql=77-&Do4~U6aP1s=(oYfYxS0#?3k0a z)*oiR%?U;fLjDerI!W29l#EFw>GHE~hBsM*TKPmF*na}#9J&1YO6ve4xMcRe1smqm zKDzRacNkjqLUSHb^&|T(j@RcOjzzKt6FEES?B}<6c6eJ;-6+3h6Z_dc9^`|$jwSSP=+2nP9J#Q_D zZmaLmyENOzAoay(DXn3Pr2o~O7jji_vQOA_**ge19s9-&2l(u?s^6sSuJHl))iy3y z5dAw1WusS5V_yu)dvmNae^DXuSnibg%g*QZ-C&K-jNs%6)}%Pf56%~ST}dpmX4b$^ zLe{X?ptKsMFd7z9porXiN-iS(1L*XqR+5t_m@Dso>&6|S@1~WZQd=ANat1bZSgXv= zX1=sj9vffE*_8juydqH%(piWs#wC&JsB^u38~FJ}rb1J5Fwsu7O2T(ubVB^6@_pn{ z`8RcGQim6q2kJ$05lKcbIk#OF+M9A;FSVE`o|HCz0JAMNh6`ePqJi5JhIqhU#u+edJt z*52j)>;Edx$FGL|VqU$DI8tyJBMr{pFJQ45(zs$6v+Zj!##)QTMjRVQn8Ml2*>_oy z%-5rUJHDp7`sd%B{0_6{(+kv_`81PTLNVV!z{y;+SjQBckm1-Bx!hRehh1eMegH}K z(YUof`h@_!-ar*!$j!VAjScHHEz13wM>i#!oVC>r#t)&8RfI)OhKAUt_PaZY&pHZb z!iXUZ`ntws_^i9Iq49f{XoHmGG>j!Pc`MRFOhkVVqEJIQTF zaEV(5`UiO$IR2};vI3yE(CB`9McT1Q?HkE>E>C0y^>xt61@gb~!p_7g~-5?ZSx?AH_9`D+FNjWAW+E;zp2-n`JvvR668121Pj}>+X<7w+E{- zTRcZl?E9Qh4L&vf2K*6U{Y{$28Skg0m0J|61<)G^mo$|(fM;pWwAd3 zQ0>RBw)0|?e!^#wX^?xI`EPAT4ge<%5-gq)O;c4md>?^yK)n;r_@1qSF1KirUCH+{ zsm+km_X%qm0>XxEsG~(K_oq>4drt3wpKa!&f%e$0>Mt6L2!I}5)0xZiW>?XZ?fvJ+ zJ_KlCd0fdf=pIup$k?^bnQvm_T!$`oxn?1=|4(fY5SN@`&0}Fx!7DG&F)liI`g_6B zn;eY{sbmmej{Nvyt%)mI)G)e=rD5I^d3VAOpiD#fny!4@{CIEx)BF5W92Jha9EY0* zP$tpbwj!kwk!-*r_Sy3$z!0#U%GkY^pc>cwhJRf21BDqrpsFPVSPCT@Eng+2eR2os z9kACMCMQu#^uvCu>#BYfDhUKcy%EKLK`RkeL!)C!$(zn`#flC;hP&>~-a?>(9r}?n z)_;!N)-P1&HyB4g0@!=edQjyVSMN+Yr4O)He}=T%&lYN9HIM_~u{8$k%(`MINuj}L zqTdCaKEA1XttqSOUCd{CveysF$YO&UXF~w};{sL8KevR+PONKhi#d)6V))EF*OOV= z)(OG=n=q613Y)Oq#8=q-w zx2^n%OC$gVlM28Rp}z*0bs?nxQ6PVY^w_oTvSnG$sGKOy>2>1uicUE2NM;XbgN9QB zeFm=_{|2X5Bo%VH4IJ^c`L%?q7Kix_QdT)RA#vm^rB*D1JY7UuM?f&H0^PlZDa z#=~F+k86NX?DQ$RxG3)TI!Ff_hC$A`46xQT6W{h8p(n!qCx=s1n-&KqPGWuqHgtg} zJ<|b2Ilj$YB9@D>v^}T1V~kR{0OprV21Bx(scBmAf<{Kgp&ee2kN>?;hT z{@Bz4H(fI$83fI);suS-X3d|@{Chqju%Aeo|9jgegU#4l_Q;PBLsYr_dBATMYksbw zO2`%X;deLk_44)C=d+*2OhnX?6|3_T0#gcZxkG%hfoFDbs;O}ru7*v3{&&V^TZ{rYh~!B&Bgw|>NrBmVv{@4aal~H= zE9jgG`1>yB-w3h!v^}4r_02o}Js&x1X&8QXT;P(P!lwRZDKXT17^vrUx=2&a?} zJ~?8#<|xjvyG8jlqFsNk|2)B|sQH9ep}@FE!!-aM>Hl8%SOU<|x%38tlw~{Q@MHO>ywz`g{vX3<4F#RJBGiY3` z!O<_rp9>HWa$m5tu*alhqUr6se6|L?SS$}`r|O=&Gk;XT&n#V0g$l*_*+nT8xPLL+ zP%wD3HXs-0Y_(ic%w{2fk_I4Rf@jaHQSMlQ935SXjJlJ4o@5@`5Fx1wPDk6h)MgeG7W)*scwoUsLRSEtgt)EGxDaz8hZEepafMlkpU_FmMqvOea-tgeuZs^|RbPmlJRvXe zqLPUiL4vb0Wn%X(Fz(qkI_pk~@MTjo*ni z0njh_`h;x|jG(_2-#l6nLzoGt+J|rS>-GF%+#&^inrpqzA_^rA;nN z=DM^)Zd+<#Ksonxf|FG`-*ltx_{oyMFsHcDMCS;ZVzF9%3U7EE z-d@!Vf*i&Wz8>5I9H%dwxnG;x_4ls;dW)N`d7k!qe1-Gb{o4-h5ke%=k#Z@)Lvx+Z z?v@Ndp7)n$_pt2uQ>*UNz*i|8WW#4a$$o7651_!`CyG{V?#iG@J(2}~f3NVO#rW@0 z4?VN3{23&aP+hfyM72yFql#8%AphZflj5Ym*3!Qx03)5Ayx7k`W)i(;v)1+_?LVll z${KrNZB5cCMQ*MxY09F>hwUEvgxm>hO+$2M%kaDTJKj?9hA!ScVb{-TMyTouNc6v;yIr-rwe#7w@I3Vp=QE$I zh-;*NDUSebD9DViag$8}8jQY59i=&uEsDsDdX5fXXDKC?v#$d>aTZeVc-(A~dXvA;I>I4#aY?6`M|!&E(*Q zfu%vEBDpT`1vTS)Y6KRWMPP)W4HJ>Oe#ca0jdPBd8ZyCWVCXBDM1XDAs=^ z(4lyFo(5Eg-1kf}_jL&_2>H<91_Fq5^{Px%?;*O}OS-OJkYLu%KtQ1uJ%IY8NF z2~8Da*T^U6_+aOY@hP!;>Y53FDj&`|reX@M<-1-9hz0^Hi=SSdrM=h1rI$JqCIjG6 zYy~>UCVIoa^{{rywph)PIXY51NdiSG;aBj4h04@~wLqE9h6kKUWY(Fs?k}h~n}u5& z;FGdnikljbX^r6ch*nuvlbAip{zB@GL^Tf(KHJ?MW;TpCXTkhS*iq}JyD-_2>nrJm zi&-uBb#yD&8^Wu=W+PCU@G(!ie_DoRmSHT3p5#-wv)&*e-Rfzn`_yzwzL<9Juoue7 znN3F1pKYW^#LpfG@Sw6abMR!M4pi1Up&> zj(|+lb90SkH@*^go}*~5wO(Pzb!VKvs+HBILqJ|IwJFnnZe-tnK0HsTF}b(7R-XcS zg{N)#)f0J^X7jnxm;23J4O-}zQI0Mvi)7nqJ>`7;%+_ooZ;~2Y8_tPx@so2yC^l}Nh;x1LCE7=sV7W9{I+CSPD1X_as+1qC!@#GM-Eqqcz(&acA<^y-6%5=9hXAyJ0ut=(h)Jj=$GtBAP zqG^dy?9*{@D?Ia&oXYQg>9sNdt?#BN+3ovCTr~*GYlxxCFum>ZIEupQ`!|Rw^y|gu z^}oL0Yz*BmxB=W$W%H7d;_fcP{Vj1It(+)jbDVLrUGP&B<4dAN>=DRl4fywDb=%nP z0~68sn^-4$ZF+q}O>;daMtl$(>dDY=4$o@UFM7T#16QNE?By2+el+w`~4KD&nEy4Qlr7l(+h0wr;@o@ zMT!_~LOON2Yed|Evh6n_3_5+#$9g=@{DIUz9A2G-QC3cOhE?VW53@PZ&Wc+vI!5?bswg1WlKmD|6Q zLHoHlf)GE)kVG9??-H{7Nx@V>=amj?p?$jPaGGW^RS?qR@*{jWzkM7)My~1!CiM2y zWDo%TW2gJJPK&}P*YQ=i@l|Ifa~GwwQzLzc5mERoZG1QNfJVPev-$20_ZcevOaV|AuFPB ze%MIoR*d6I1obEVQ<{t`B0?Aetrb%Mqa5 zY8)eBu$RGZ+G3HdZcm_3ey6YDpn?GSsjgXdu=%g=^}RF~%-PuG*@&k2R`D^jxV>IILKt+8#TJ`KA)fCDphGZiSoa+2mrJsyD8E=> z=lC`{%=eI~9RUD7ML(g%QyW(n{W8|b$QpFSYf_olchQ+0287PH;8uaY0!St_% zXtZqsjlywbWn${5?=wqMJUuA{@3eSN&5-rFS91(`7oW?|t?sxa4j4^x;+`Epv&~z= z(q(6;6d44kY#Hit0F_xx{Eo9B-)fw_`iyEoa5Mpi}+OEDu+Usa~Yw6K#Xsdskb&=ChlI)HhyuCFO z(zrOpQ#RjEKD&?5-neVu43|M+vti|2P8)G{vQKFF_-affDjA@EH{YmCg};Fz2Qtoz z(jUmxOG{;nzh`yIV2MyBg@j|6?G5d!T#;_PlsY?!sLQ^~?(<#fF+gYHQ%SGWZRL0| zSWnqsSK7yMJ;<@#TSp+Z*7J@3>*+N>Ulx@kWtID$&B$4VK(Vgu2s{xWxe^7r4fuP=$3nTF#l3DYROWH-Nz7dx+cx&bqnp8@scdUuB~L|+XDovsaink5CApv« z&FAUo!dZ4R2|j(cL09bz__h8uIE%)?JHrMfrRI;357lx8)*xdfTz`q#y*URX*xN8= zvQ2PW21JSW(djQghV3)~@P|nT{~v+Mz;l9nvpG2sAeu_(i_tWz_uRmyB^*HBILG;ph`CjqX+QvO?WfWHS-UUf zHb0DEw!S|$4$LFaK-K0NE;_xjHAQl;?#mWjnJhjWX!S7tp)1mN~nO$iPH7P`vk^kzd9O?8avi*5v8b&${J6F%K8JTMq%OwO7Uj7Ied(5a(> zr&U9*y=R7db>#7b=C+KFBcQ3tq%JzyMJDV$=p=-W^#5gh+8C{+Wyv4&rEH@FsUZE= z&#*;@s8zqNX}zvUmI0V}dCne}=L^(O%?0C!gLXzJ^H(TeW0YrlQQ6H;922}GIlPWqO9DVaJ8U$W{-rzsq@lS)y`X^GI!VeNzh;m$?pG|? zhmWZbdv)cn@l^z^WVyH5ze17YMToe9DPhCkP*FB}67lC`%0)QWldEz6!C3)F`t%#VfdSnMQHf!HqCjHcQ9 z4P5ESBP==HPXP(0O$KCnH!j?4W#8@R?3*k{r~8>oR_<*EQPP*JUwB=m>ymmP+r|<+`c1{JE@srJb?tC~3-7)q1EfNKR3N z$CxdTi%(&-@i%~)O|5_YTCHF+m5M-NDh6(i8#nZmhOsAN?@pMimlA&7Tk(f=_|mVY zzrwlGlumjJ)sdFe2^W#jXwQ^LkX5!!)e<60bdRf@pz(|R&fhj6DImP1Ioj=kUdnN< zmD0vlGe_ESigLmjZIoodHuI#3B?@T>xs;(#<^_Kyr~qgPZNtn!z#Mk;M&Men7T@)= zR3gJ>#UAd)G$&gA7*qlRt85#MgzTs+UJdMZbKx(u52l|o%l1XEb34HQ`x zQKhU&D{!Us49>TSo~t49;utYu7o4ogMCoP(ey5E5%3?*S-A`4UfWfJ&^NEY|k+ZAY z=@G(MEJPK#C`9+DtATQo$JGCEQA|J~E3~@t>;Q^-nNzU}wS1O;qXIr0VMP$?V0x-R z9onO@2qc5!Y~TY&gf5NgaFqxJJ?V9&-kzQBpLmbV{{8*^a>_a>x=97h9P7!kl!ot> z)t}oGq&bBkP;wH6gL?Iuryw1?7q7|5qI6NUn(`u>raAH+9n2>DK@QS6`8hb`W`>Eq zQ`UfTN4?<-^+Rd$N0yXPBO$C=ik*emNdP6lhZhJ0car5qw*;!w(x@)WIEX|T{JQPp zTaHU@JKw2quFZ*&8CYv$h0LragOyAhFT<7xS$YKU`AvWktAMUX_o~>_+0`%O<=>ms zdC=p z>4^pnUt3OpennP1n7BrBoF0F`ynEAu+dEf8jl8hbCoTB=388HITA%^Q7lE1Ag{8q#?2#cb z8#s!CV(6!6BR^_sCIs=$Tv!T?*dLl2*2J#{0DF<8_w_Sh=N)89Wnk3>?%=Ftf~uo8 zu~AKhF@2of^45J2R7V^j2uc4#OYEY6Q6dCC0qXN=3^s$KJfZ-{wV{L7n5aHC}js70Np7;SD-G^HNldyR=4ed`^7>uiHP}~r8WZn zCw%(|v12*{n_>r=(jPzB?;CJgr35;klcR}M~Jv^72PE3^9B z6{#iswCZ=USZbl;WwB$JrwyCcyaK22nkypx4KFJ__ODZ#x8D~a^;h*V)zAvTVb=pU zEYT8nI9gK(6&?%f8C>s@Q4iB74s zIAgxuA-OgqD;{B}XR%owlnhk;{xDi8rk$G%q#3>;m@+}Nd?(ZlaR+#$n28-#LyPCtbr6*nc!@&zySk z>Wm&AD#j^2?KplY}_B!lASzsQ>=Z1Vlx8*h~82QOv3lG>49vNfLCaGWb^HfAUw?Z};Y|$l zRksSAZP1@0TM=$M&4ul*+K-9mrZrb3#-0l(hD?iUP{;NHAZE$oZNE_yCdhb6D{i*6RWSpCKSF~Lb=T!8~5dllr zU}BqrYu0Gvm22gZ-AHCMq4E;-8u1Baq`fW1<|OHsNW3RwB-fUCs{euSiTBB5oC=c6 zh?jUF)`D?4A?E$D{NM77ZfF=G9U4W{T6z>K^Y!v5TG}#;paUxGb{1kyfgAD}g~Sg7 zMdEwX2DUS|T#ufXtFxfF_2}S2Nmj5osloW-`>UpT5nf|$KzS;zB!AW_4hM`?4&9T6 zf}c_4U6d;j2CDFFKJHlr%6?(N!2sRc?$W>G5}^;?O6;X!G7v0YIYhGAyhWw-0ejYw zQx3sJG57#*Z;Cg%j@eAaR882BFELiVM;YjUYb*0NeO!;kF~h?>7UlshK}z~o#NQaj z5X3;%1s;un%qpVaqZR)M#vx&%D)-J$h3vg)R1WNbhT^uR#Lz0i7XnXLrS4zH_Zm7kzr1xdnCLT8VSs?C(>xaHvX(sh=MNLs+y$OALXH%bVs1;AwVsL^xJyBV-d& zd#7CcF-Z-n-AibHay;#165XRu+K`_=b!>fzlzg z*$x#eiXjJzO|M!|cAiy7QkSjT#>iK2jVJL0zDC=W=4i_C@yumELd$30xxlANRkGznL2PLmBzL@YAj)LDNBNg%q zior?ELJ}guirH^>9m6v?zv^%HzGQa>^wSF{h%3mGC@UBFB0UldZ6NaWRlhK`)8x~O zja*a=Rrca1=gBfu4TIp-BVkrF@zk0+)djuaXZuq561(u^w+D*gPA%3SKyzkPm3^AA z**G?pRJBvg0W^`J?%n!5tLiba$Ml~is+#=V4 zU|)2jdsM)$U#`22D#9F9rw<>%D6~bx4do5kBm?RH!obo(HT znvVmT%$jaMo?_$+Bd>LJt8{WvU{kZPW=7d|JXTCs`9>|nogm_`QW|th?|;fjN%ze? zu|L(|$3{nQxrb9b;m=!_)xWKxXYk&pRBuQP;mM=T&x+X(yaId+4?y0&gSAS020V39 z&K5fPAdX7a}E`>3%D)A1Wut`EI<7& z3!2KyrPQjT^GH!K+&JWLCe(CEUB`&^UH`A{LgI^Ky6%cS-NT!4)6!qwffq=$~<~50%n6S z>JL6cUxX?9e&%WCDAZp}a8^`4&_r@&;zKqpe6M>r8)yPKq?O;F{kNDL&$rShARLj+ z%!h!@)TBleJg|M2M41lp89RXf#s{2JdFuu2e#2gafKwl@p3Gj41^XmRyGOZ0iogj0 z$h*2~k8t$YXumu?a2q9pr&DNO{pRu*1nn#8;C~FAWmwZ~ z7{#A$ba!{RbjL_(Mhr=%yIW8kCEZ<0cS%V*x{($TB%}pVQ9xhg-S_>kYhRu^_c^~q zt{CH)Fm%eWC9c?W$}{{4tTYUOrIl-LAv1j(QA|5J7GIB`g9zJ72bF%5?{x-r3597} zMJ^xCC{_)-{-LP?l&_Ss*OX1iMA!L3Lf->GLo(@WPfh}`F1+M>3TbLCIzP|i>fCX&%@e5#|&Pay+l6DIF@7GUU||V{?3J(>$_5))Ji?B*zwFSCji8-cQI`7 z5VpdYOhN8)Y^@y1PePGHP1k71O0t@za&K?+pkZ~dSi$)luNg_nznBm1|J2NVLL>U) z%tkIC*NiEy3z4wN-4O{dGpD4o-zPi6JbJL*K34%#A9>UHCSV{`;fQqXzAxOoBe}tE z+zH_{54v7h_@UxGFlZL!v)WJ*h0nZvxuY;}>wTiU(wwUUg;9nhsN7}@8ib|v-r4?J zo+S)I;b`gr@}gI!FsHUe_x6(c&Ppyq29En!%|zk_n(7Zq{5<`L4OF)`m+B*OMroAl z(as}5Z4Y-IBb@=e(}s5268-)b&jtmLL;28}gHLCAND8V+Leb!+_FFenb(K}MlUmh` zUKB$w@X|oDLA;HfgQJ4Ikx`GM;#B=$7u?nCubl1VI(?~a*>(qTsDHr(j-Wz7ES}Od z&jr8C@-o8F#Bw(y1DKB%ogJ%pM|M<|*y}uFl7NF~!nJ6tn9A_}!e$RDB;AcJ!;*Px zcG4akTq>Ja>%ZAELQg zmH{8m2_$v;)}w<1>5DH_Z+6&ZgkCqVb!arUnC}I(T=mp93rM1{zjji6ko?e@!(Rlj zp*mw{0&qi0bLRBO-vH(>!XLhBwIVLtxA2xrXkQlvXy$sy5+3J;+@tsmNDIBm;&n|$ zIvSX+VWuVOKd6L};f^u|7W-(#%ZMt(jK~>^yIS+k5&Z;UFTZQ@VyoFCv>>wXfOqrP zcQz+>J45f?h4B=ifT$o@*)I&KV%8nz&qbyAaA*;CTu{S5Xnb*Sl)lonh6ht(4RZwe zKPfTg#zy^w&P${>(omyO!?=U`y^JXr9+d5U614cW z(W7Yd9juQvE}xxU=>DBz!xd4a1s7{ z9czLNnKVoO6mV#yDuerKEPR{ZfoP{j>_p~Fa(%ZW#~>~1?Grd4lQr~YDGv0fxRKia z_o(hMAWmOy_F-rjXaF{urbr+6!o4$Aho}u0FE;n!?c-p+d4QqDW1>m^B$+RoEAsM# zo}9Pn4*$S z_}=}tRcF?*eeC)wP+%ED!g$wa_a=shi1y+Va^DVEaoSG)z<1ypP^u?42+oo-tmg%I zl{`A6P8kKOgh3_#OUWs`8YoH;e?;~d#r1zE7Pkf6c09!I1 zOLwK_SsAKcf;rJB4=Y4-pj;I?Q6Pz_WyA3&C9dP9(-AOKJ6%IpaaMDYYwA5#xL%o> zGx)uaf~fgjW7~dQnwAsxpPqbyrB;9cSHLj$9)RDC1nWMLS4vE^ZRiZA@=w5=%s49C z6nn7xW)iMerTqB%TuiB5?#I*7Nlkw}q>(JjZ}`>l?YEqTo;N3@_8FNZMsINw54`&k zoGn;DIi#z~EcG1Szw{vkaz-FnA;Qr8sZ#gH&1Hq}|yL4(FdS;4r&wkk~ zP6vo1UK`FYvo$E=X)N)FJYXYQyZ!$AA^x-5uzs_NW*s>jOilKU1cSU1BzGv=AY+h! zgC6Uih>D)Z7DY@)@^Om5st-r8gWw^*a+As+yLYuLprQHo<``hzX>;7;t9zOiM!7;O z7~Fa!AK=Rrs?Aa15qI29e2YO-1{T31L}oYlzXLkF`XJk3Jo9H&IzkgP9^D$HaW^A= zfS9?~&4#L6s|=+6PG7Y%7%yu^_ao$|4|?E`kT*)LFftV(R{1uT+)<2yJ5=X&x}A~_ zn;W6h<_U^vmpV{xD@J|b7(!C@)aKT!lOM-!Iw!{>i$PU;EZe`+u%>>RnmfxfO9z2H z?!X4fHFPL65PmR-STdCmL4UDNr?F2xJGRvxj+6$OTAXg93BQ^9wGXCwyeJ3=9ihAE zDBju-Mg<6G0Cic?+9-@YLptCc1QI-Xq-zu&&r!cNd_pW=BUbLHPdY>7c?z*oHx>+ z*IH|?4zabC=>4GS&{qY(B9QV&m|i?#`Jt#zYNG~*$UVW zU}9{%R3R0oIO=C-QOi-S0Abd}`!cXi zRI~{YfF}PCo3k5&ZSEXGMa=U6UMxP$ap!JFzy>W>0krzg#V&Wx9HfgbLq<@Ck-j?i zqeIoP7xpd}9DBx6!~lQ8x;;0x9d5#M|7<3zsP+71nXbeuHfYUqs5@l!6YQBWBfk?g zVetcO8v(G?sl^d42Y7NBb{bEE05;}YSj$zcq9p30TXoH^>)8e8~vy4ikhM zGT!Tb0hH)gb-Lm#wI-Kc6m3hQ&0gpe;&EylOz=tn`YE?^TDB|~zWz_H;PL4vOW9P) zZL$m)I-iLa*E$OJbZEfo?kktJLR3Z&L$2-gq=O7vOc|#Ffa;qT$3JP;yfwa^B5nkm zTE`9*7NhsS0@z(qho0S{e^!ppKscqbZ{DyEEw;b;8aWz@lc{?Fbn#tZn`!Ixxxl|y z%jH5uMBj4=I=4!fs66oA{`3;FhJr@;p1U9VhJ0C^8YW*)AT^3#We*xBjpO z@f#NPq1Om%ndE8hlQ)Sg=Z+v`Js1?M;Xf6QT_p4UM21v$%T72@k9&08Igh7P5XDe` z-v(fA zXqFn$#UTop5ATzKRC8jzaA9Ze2jKgXWL9H?NI}>YHiTx z7b}|l1OJE{UA{K~r0oZQ)gd;!LNqF>7jQ9pZ!VyZcMW5UW82A;HFWlW9{7Cbj>;{oAPqIeR+B~jSmb)zt z-XmPjGQxqZdDrd1@6iGw%SA zF;X4ABxGDpHs=Hr0gY`N>?lFK^0SX!MpxsC>t_JbusdYu(0vPS{{*9E=38e2<@dJ% z)|cNEKi%`%kdfc(@|btM9%O#*eQfNqlJM>81RN-jyR>|NgpZ&;|2q`CBr~eSO^1ab1TwK-RQ*5VsXc{I$ijy2cN-|UfvV*|!@-A^C7Dn^W-v9(cvp^!l< zJ`1&&vaafzgPM2t{eKP|SIR_njLCOLWFO#!YMwb7nESh}&25SKDZgJMf`h-2jQ|8E z1?5L);y8JDnlPYNyK4m$@74dD&fP$(w*lgyrWZc};A3}sD$Wq_ug#K%{^$gG z@!r^uIvgzaD>Jpn4MOVMd72xB&d!t+&rZ4}40%Z0%)`CHF%joG=VOedKm=vSs=3z| z>2IlE2PkoJR%=e80aQ=OyVT3E;cK;XzW$_{e{4_Ly0U;yLyR!u4PfCNos;!Go0@rr zuS7Cq0l@~)q$&cuj6ahTq1OOQJ5=kFw0R>!WEB&Wy6ViSo64Gv%kA;`<$`TV${2;% zBEUb`vK2ZvTmC6h1aa3kYAXs}VRoG3*&cOM+E zL+s@4#c2$@`}rb7XJJXaY!9-S&t;Q>(w2JJ%YlXse*JB+%AbU7l~jp*(j?{3h}HGV z;QlPb0}Q1l2L;ntL6RD_52`$G8M87H3mlKQ*KL!b88*(vkc2&jguZZgtrlLwe$(Hy zK8ddb?J8YH(q|;1CAO}*KZVLYAeL>k1#dR37G)k;MP!vH`{XVl;%A zL8{#HM;QZo+2&4_<ejx#0@r>$HdaTa7FBP85VB zz3rO5^{$JXzTM4)!&c$EQ5c1r+EJiL(tuD4RJm(WxwY-EwpLeHurlj`@k?8FQ57@S zg4VZRw+ufi$<*XblxEL7)_}thMEN`{dwe5LEa#qef;WZL{((9t&*eg0wdrU@%3meG z38LMKzw=hdCr$WKKHOv(atW$hvn`7Cct1E>qShd((EG|{9bj7>+<5YhU`HgjBmn&3 z`^Jgw%=p9@Xms|3VG?2?W4^L!T!cEmdVUT-%eICX&Tony3&Wa?*>JE_pb zW^bTwUa$hY3=^PBLapmTm)#9I3crbH1A_H`c);W#87)l0Zfwa*N$7HFNS5h#)zSMQ zjGbJaLZ;`4>B&3=ao4klMo3kSdPH)amc7^f+_c25Y5@NMe1tIzWZ^DF>~qK*xq zRDwyh0T!Jqm3D>+o|S~7R_1C?d`IEj+Er@@RHtSSpztPm+s5JSY=LxIM`}{>M+K)C z?<1X0AZ&KEWy&hnz6xfyo=_daXo37U;-U$7(M4$-aBl5IMKyQDHc<8Jxy0hJf#ZVY zn68o^Fg&P1ZEF=pQQ>sFa~rfL&Z>SR#gii+Z*jq_7wclm9CDuxXp2|~{cs{<4x&CM z;fSQ-D?5S`#6=i!*fIV#WCFxGo}wVRb4JgRfEX0V5|rpzS$cnD0vyQ_X&xA}WmP?1 zkVV`Oo*|Fj(^J>lKI6mPCU_O0U&0eZ&@M+Zvo41fhHa1KZQDn#pwI}Izs(=LSg5*r z$A>@wiO0WCz$005YR+v&$YWB-&)0k%W&gd7G(6Rdb3wg@6iTdb2fRaM4wNsk%hpiz zZ(fN@Qher1dWL6eQnayA9IsO!g-$~egyb1qMZ^2M zwQl3u>1b3WHVHC5^fxQKvGOw6F6ABV^cS@$VEX&0ee|bbf#-&`Tj}NR z5-yGLeObh@kL$k*w{Ro>Xv*_HWLX!R;b}#xT)hPHBERx8d+vbQ9v0apW%c9U-A8|J zU;Mjz5dytgs=9|^sLh?pJ!Y^*L91zKpHgxlR*{tQxb`zSTS(btw_Ny} z0=4s=KY7|;0KGFar@jIPI~NkuVW#as zZa9QVGIMgsz~Sd?{d#!U*C>KN`wt_!X;Z;(fUjPlC|88+6ohrhW7(1Y?$7zj55t=EUkVz?W=}Rpb?d6A za0h2Q!1INb5-UQp44`f%s0muuj}@GLj=l+_GF&)U8F61f@{TrE%yL10AnaHKq-Ww) z+i#UiD|+FO`s@><^7>REg|5c+WAqVQpQK%n?pd%tAS5v_+Ar?<=WvX_#Vy+{m8WR2 z_4wUnY!AS8VM_*h7SiXxy*$P_;#Yc+-TL_#iu%!$Y*0ywwS$`fKIIZ1{r2W>s>tQc z{EjEX^{8kkvfd;`=go!H)@Ub=kLB+Hl?cSIbVYrv%mf6U1T6I#w_yWvk-Im3^^_J& zmjN}ARX9Y|SoEeA&c&+ZZ7^dZ_5`2!6AGXXmrT#1uCk;TjS>!~6wUhs0OO0#X~Evl z%mEIO6v~MT{m(^;`u543@_*tJb`ZhKpo6s7&n=3>hHXRJ_qn9lTutc0NwnPkF+h^| zzVUg>PPf{Zhed#Lx-GyQ+ScDbfAMCI8gV<5DA9G$XOC`mR9U zpn;qtC+ktX>(WSq zl%!6qo?6MA)f9nX!-*JLd)OGoN3Toq?iZ--ODa#6yRQ7;H5dAUU)RE+{wspG@753V>?_IPE z0tjMSV54sb5RY_Do*`+njOZ@1`hIVOKU57ERctacxt^MfYnc9fVZJo;zK)55J2GsJ z;9DDDZY@fV`%F}7)cS6)cRns~OZ>~Zg7DpOuJ)IHlC?!3CJF`{NfGV~i}4jrW`}!w zKql;!L|vsNbSGd${eFEHW*9OAx=}cbZ6-wjF3X<3Mj%!TP>{`aTw~j$CqWOFsGx_3 zgBYl|#oEt^$NH3y(g@k>j(-CJ<+pZx7H=&i83?hXRoPlIaCkl1($NIk8^oLRIqerA zmsb9C+X3n<4k)E(VOt_NCE@6qqCW_kHWEotTmmW-ku`p@=*<*wb4fn)|Hu2S7j2b9|Qh zIAOP{4=c(J+|o9r$x`e95NeI|UjE?RW>*qDVa4vrNkF(g)ml_Z_C=X+w&-qh9{^NK${)}6uJSyM{ZJ-TM3Vz(z`LQ#-08l=pesgq_ zth#3B!?4$Dj3NCn&eGN6&V9kM-m=JVV`De#R{${VL`x&t`~ODR7R|YlhvLem*_3M8 z?kI3i9{_8_?U_rbZ@IOBPwKsx#7fCF1Nm0{Xq#Kdwfrn6qQ=R}w5hijydERFxJGgZ z#7kZYpwXIl;h{5zW($DfB<}GlkY`}qqqgCFl=zYumnUrUZ**L>M=QTwoUB^a`~mdk zs^6wyP+K;Q5t6#?NmfY%fF#DH(za?IZX_Q(KUA~l+R)C5y~<-y!d>>j60i}7H=KNK z+R{!q#h3V(pKFaHVr*>>DVGw3!u~V0VZm)~L)Rsq6^LcZ_qpzW!IOEi@?-?H8|wvzwqxoi}~v& zN3OG7X3i{N0q3^QR+=KCI9^imWw4^G(?^LZCB&)d%e&bkHW_y??XAtwMkG_#x~ zSpj=!4=#G5kKw}ieQVflUGGl*jMBQgE1w&`G7ok{^-dA`p)+7+nx zu-6VQ13@sYLB^1?rRJkJyJb}LG@b!{X3eF#nu77+^D)bc#jpF-^=fhnAT==fq|}Nb&MdK* zUa}*IFNx^UeJ?f7MjKj~$)T+Y|4w1G`4{_^4==y&E#>zvwkC5RMwJvp1x2*sTFCNw zJ)hvdbv?R1$|e5zYckXp5OQyIrspcrrhn2I+5>n=A|;PD@8X!g@a8`*CtiFj!%R4i zBXPos|B(+jb+JJRQ2X<7_csy3$;0JTm&_$K#4^vmXB{su<^a5ib*2a0F_e?~vATt+ zhqAMi#$@h%%SxaB*?~avJG01g{}5s3@d&a751zdq_8_1Z0wvP4~Dj}yx-apbIqyn1-P_Z>S&isJ`Si!zp(&x z1*A!AxO=m)=O2oRWAhyUvf$}F86T0^d0POOv~`bTzL#^8p%Y#oWn@vRI_B0n76>8z zv;jUN)msnaT51uRSTlA@Zl{MS4Ab%Fe?Ghb_>V_|O6!@zMwUpVYs^xne>P91=)c$2 zEqeMl;8hQwsLDjx1utc|X$T;j6bq9h@{fr3^Z2_!Y?lD=2D3#q)>pTz$s982U3ea| z2BD!Ic3CCo1AGc7y6%zrrr zCzf*$;*H1IUw^&0nx1+LVJu3p+53}#ffHS7=OiqLeEV7?v_@VTh$>q3{B9JO)asqB zP@6lgZqdHDPK<)#S3Zct@?kNI9UJWAe~rnm#1bB%2(=)?^@`6IKd6bC^}H`H9Msxt zEz^gOi+Ly$kRjTO)-o6R;QTJ`0Nw)+1cf`5(QeMu&91J6MTrq!W zq}m~vVK33+NdZx>3dWu0l@7E#$v+@BQvXyl{MoXD+|N!Na|4`39Rk5`e-e zUg4t*8BMsq6i=~nCUq&hmNwD>X;u&|Zf;huYcTVv393INN6lKZ*sPEy6?CcdxWC8w z5g7^qfj9wn>)XP!r(=tZ?lsLVtb!p5mJe52=JPqV6v{E%_@j!04!eYypXM(ER3oYY zqX>Yps`OG=cC(vz6WP^p*-7aJznVQJnyo_Nh-?+ByL$^a^uA##j?t}r@jAE+qVkI| z60E*_=;no?j8SN5FLS8rOCrB;jTXc|DXJq*${azswu5 z`iD>h0BDK-H%p{ctZ;*Npk)xtg<1$MepEzQz4BD!a~Hk;TCI6HDG)#g$1FowCN4M? z1urW97)K{5>ME>wU9B(zh_lKui^WA&FI`F=U}9f%EK#cZL_XJ+ZwC|&-QmzzON5-l zO?~amSI$LqglkT}%k|wH<4zWV6^+ZHf!k~AVjIKEb{@+~S!d>bY~BPZZOQZCzWI$d zOyk=x$!Z+BM{mn-;R%v6SpWS7`c18$`v<s+iW6m?dq$4FC%nHXn(ZNsYN_mJGrc>uFPSrryb> z02mYwIkM90@(?}t=`+(I*#=8J?PljOMrQxQ4(*n#<4ue0^83a7lXIfwR-;}hVti1l zA=7(6B3jS9FiV0oGGMH*9}{9;G*h~}Tr!uilS^bMEQH7YssmUXq&w^-shMs}nVbxE zItgq6Ka^15=Wn8sgYshRR2FW-PgpP7yt6{~kM$|$_Qvs4rvTYf%;}$PKY*L^o<$=% z9r?ZobNz2~7bh7b^_-Il(#Yp3ldyevo>FKKNx>}H-3I9WjI1)Nvgt;$iu9h={R3t^ z7qX2)n<((ENpN)nU?nqry;fEI5%i;kLp1jGKez62n;riS2feWU6+DOe_cC9uiuM!M zF9>tU!>nG6cP5OB0(QYSRpG0}*ukp_qzAp`XU!;9#U=4nfcplMSbOlE?(t9!H?*qO z59%DpTHV$Ui+Wz~K+?3b43*wHJAde_zKEBdt^J9)Zx25zRLb2^B#H?~tqQPIwiF6u zUO7g)bSgf2zv=clFaDyn0sAF;@w=-$=85+{-NY*zbv==0B+Yq-rmsF`^Ggc z*f^TT06_XmN1#SVQr^4K89*{?s-2J9SX}`HB7XW{qDZk7x*Kxck7+WOMs(k9(wMun z9-k6Fp;&Iw26$$Eq%vH?o#|m=dqC~8N)G~{M{{T0LbO84>FZ-GZsisbIJQ|08+I@u zbN@(?jW-bCYZawq?BYDCK$q0Pp$i$(gz)hh?f=0uUdV-My7y`%v6f2he=bvFASwG8 zeO~la<0I0!Xz#gkh8-}uqmah~k~{+~IdZRwl(Ssn9N~wm_3(Nu5df4!aaOb&$#X=) zgvGhFn{Kp+%-H~6jG_NRk@!xXv>GyqE^b z4{yrAko%iG>Fk~M(=4fXeL>Sy7%?E?{fXbf&3_8NZ{OWa8a;vIH7#FZ{Q`Idkt62q z4Xb)Rxn!?`t6{$YO(Lz@i);dHV%>@-`Wi*khTbH^mn|f|#FrRnBSXY}ywoc2_uygu zz>%j}c!GO)b;gr5U)NgMZcYoDg7o8vB04CSk2Q4|h^6bAFkW;-1GiyqI8aj%&RX)u zwrFMtLXkF}F?2P@%e2{P!VzmOt2C5u}S?)ZegodV!XCEu~Heq#_i_^Dn9<`hpuC zadFfWt_HHF^h=~BytQV@X;#qkUU_t-0S8bEOWgSa+Arz-6g?PIF8?y?_`hlhY4v|- z5O@jcK6=Ov*^>Vqt4{m*uX74hQH6CwNBQ8duLLJIkC%~706?JQlC7N&@M>-e1FgVz?wcHw4DhsZM{o< z>kl2|Hfgo}4(l+FxbKt_SE^bJkue$0nz(U{XJ2RoF4RxPSI$&JUn75;Q}=nkK^G_h zeDb`3*Hf)_?ZO^oVIvFwWV?ShNR^AjWIkY6FOGwH(GM-lPQ+#33cgtSMAM;AR!pdu zGdb{gf1$+g9Xah5fUV5+0Fu@sBDuJ6%@c9~7d!4=RK`3Hu_i?suT@GJi2D$^QSm@0 zMtN8Qx|R?TxXJC|MuSso-Bawkp{GWCyg5&)jT&pMJdX_Y zL3xq9E;*@RzH7%2bhRX9Xbp`3VzHjdov?BCucwoUe;1e{9;>p0Fw&Lh&1Gjr+i5J2 zbqFz1s7j9_lZcFhE6xEq-9UzA`N~AkgCO5<2g!>xY}jSm(1Lgc{MY)ep2^!Ag3G?r1mO@!y;2jo15hvf8o&a zw*IX;=lubxsP}#nEWZ&RWu340qOaNnKmHDo3fDDllDPoxnUJ_WAP~OG70F|ItwAB} z!NmI^Dfw(9@)zc6+_d>Gi>GCPW?%aG=OX?rv<;B_;|GW4KErM!h(r^?gw(QKm1YB& zUW+aH*-re-_u7~>TSfz@U>df@c2Qi`$60zc$75Nw3Io9OL$540e(Nnc^>dVR0m@rnqC-NJqQbuaG`SoxJVI3(fX_}_v}y0Y zys5-xYIj6E#g@l+C{~MNYqj{G_?Cfm`y(58>hx1e(=>s1P`9$fel(*9{#@F9ZWn|2 zhn3mzv~;uYft=Q_F8@%j#b|d~%L&;5oS%%}wPiooVKCt4Uq1=C%48@LVBZ&t|S$#}s04Y7Zb@zM%a9p!k#s&Ob`L$VNDlJw)dJK-H z^F#pwUN$8FEkf65C_f(~A>B7Y;fYZS7sK#q8|Db<^NX;*nsl;*etMstCLdcfv8I`S zI~FhhOKp^c(aL$?=Q3a0j+~n0lMeeooaFMJ?R%S%og6$Wy2R0% z27vg%5w)ag`P6Q1SqU#QQLBegeiP;rUzx<_zs5Omow%B>Xn?S0@dqhTi&` zq?(_^7YM(}>S%p*px?dO>mPO*fGKr#mOSSv-kBO2)>%vP-@=b;w$fIVTI8SqPDc3x z7=+22q%no3;@RwjGy%5EY1JZSYfeP*)nEbz;i2}*$sWyk51@*B>Akgtl_E7BGBwK+ z+)ktPD{{?;tvR|~*zIXRM#8}`n_>ce>a7#SV-{Bd68#$Di(!Aq`2Wo1JN%&Zb%G#j zyUxh4VqbD#aq~R)78TA)51Okdk7xjmY%5L1m=L@1U5g?bD~_pY_6txYPHH5HvJ>GU z{F(U)lc28Wr)4i})oc+S7RAtS7H~fjYs)@QYFNo$Qj%#75C0qWzQx860UIkkMM2{Y zp81#x@R5>#oyff0{cH3JA!WWxi^-`vkqKJk#IXcR`D1*9Vbog{{=rp%c>cUqX`7-& zh_%_u+LqJ(#TK)Mk{wHAXM>6)1IxwVv@4s$GP(!qvB=symom^BUT)@iv3juvh@-f~ zpZ0r-<_V(+>cyWx833ZKBA#%Wog#jG9u4)uJp!@_2`8R2uH(r~G!XZlFSJwKpFk27 zxJ-X2!0H1zg8MlrVr4DKEOz0^Q$rMF>r+slt!HB87^L_sDJdLE44Xa=&tM?MF_rD$ zFO0ls1h{JH${G?jp@Z1PF1H!XOBK4wPOg&4G7VouM}1pmzC``g#51 z;E5>WRVabGgD?etRa>Vif6^&a-QZnNYA8l%rR5>oF-<^rnBm8y(<#zoS7b{+FD>UWXy73`zK3n5lr?0y{8)9TPi%04hiNt23|`^LB<#n6I4UJpN_E^raPz^EtAiO zc?5EX@a!~}Id#-&|Hm3q7Ld>!kH>0NK--)s8tU6OZF2st=JLUAXS8}&i1{G^8N|;p zJd)(I(0v-uT1I{6@sqvk{ZXyztbNKJrx~X!26|t zgOLulUt?rmzha!33^V%S)Uodi6>VM~nK4tM6*TRGuv-fNJ=fcn-L1_Wv{NI~`j!!_ zy$8`=iDm zf7Q4~C1Xw9c7Va>dEaAGiNDTcWa{?D6+_j;!wbhMKTIw$gQ; zO4@-;+WECWgkkBwx;p( zKEOwsmE!^YevU>>OKXjLD}?=`Cggx4j4nKoduWBOxQ_D3kX6++wt!A~m<&T>`L7uc zkc+Dfo`g8YV5_fg#O$B|aN0%<&$o~lRrjpO5@o;UrgRW)8ASjJ$uxutbJz{e@V<63 zAT62tS2u#&jFL}_`U_s{o=XJc!8w) z7$E)0HF6~r7Eowx$oeGGjVhncxv(4!D^4kM>aSilj5gs=)sFA-!{eMu$1#^>!Ja-Q z`KVU6=tpGZ z>84Pm0)SK3*oZH>LLRz$tlIIVIZa96&FV!N>wjCsO-Foki684x2wYJ=@U+WZO+VPH zLqFI!_Jt2L425-NM*$!&$Q5JT{!K;+8E^X@*i^S>E6*gQe1dn6ufK>2IQxaEqoa$Y zzpmP>l}!i|FIDb z%ttzN6>E1&UrA@Cqcgt`rYvp%-hkZcx5G2N`*4&oTzzJRbrdORSuQ;&^^~CYyA`*z z{KOrD9(ka-XBZ%0QGT9Gwn}RQAT%|cFUfKtu~Sa^@6?@o>q`LROuVuz-%&91VEx>r z{AvYPcuu+K`Dpr6s-+ge%{K*+01w9}c;5~b1atJ)z507veO5sVM{;I0o6^TlnKEcQ zZ=Wfxt_{Alw1hb1dpA6E;4#zr%7$6mzhigkF?G`0-G}oq?WN6+y2d1FHvL!*8(Dpu81Jqv3#-k9hs?ZI_=tbfnGaj zW;~y4GBos&gU+CE`HRd7UYV$q_^CsnK(d~mS4T6N6_Mz2*ZtpzPVh{I-_Z+@3pD8%dmhTy3~65-$v89s4;<^kkYLAcy*xky-;o~zCQ%)Y!&~L-`jEX=B%hSdocGQq`y458oh*%K~ z3*-*sT>>x}q`CQZ@adnXz-;*5m@9zfKStxkaEe20px=Kbcl+-B2)u6 zWJQC7DLL~8L1u!29{c>oscK_w*}M6QR8zeCCW`2Ndj#?L%@8+(m3WbT_?lu#5u;le z3Uu`VO2z$eiTZkm+J?&9T3c=a+R1NY80b^MK*frrn#s8idaKAaa03REu$Br|E?e?g zNe_o#5~g9!1z)+t;(^I9K=Hf#P>l&-*Ov;ekeV$Y5dnwNA>GgjQ>|?!Gmx~{GSLxkn3!WzbW1s-pd;T;4CA8*kMfh6nN^SIy6+<*^{Vwf zh%V}|>Rs)ldZXfgR%1(mg_qlJ(VexM<=`(<_LD#Z^$iP;3~c;0S&AhU&=`<6FhkL9 znZl2izrF~{da+ml90#|3Q|o6L9@%1fiRhyk%wpqV&@F3Dn-LlA=i&4>30Su*Xn=Af zWZKO5;^po4DFi)%MIFh7IM0a7qjxib*8kAceV+F9r*CgQ95gjXaxG}#t7eq}(MJ~E zER7~v$TZ`0tM*k<0CRA|$Me;!K^zg8SULk>a%8#YLp5Ul)XG_ziUtynT;rGXv|i9y z&B;KK+CgZwNnwM0JacU}6Z&3{A!<`S^?4d(6?*+LE=lXM7*jW2?1Yq03!Q7bF zV(x={b`K4<4Z1T#=L*Dgew7PVMXB+P730liX?XTVC^MKQwH7J`tKOyc=hKdB1vA>eT`o}jASnsiXsf~HB)ElN=C;g`c|3Nz5 zaaz2|UHb+F;dm%PQFJvJ)RkaSWzprIqKe>6S}bX{RG{v*=tyhpO451S#k~sc{z^;0qz_ZEg8GGf{*rsc0k<616&uju2~uz_bqg^i+LZgcg+b0t=(?mS?xA1_VR){Y z@ki0~sYV&qb#x~uC49<=Q^#{-)2Mg-f$yz3pBJp-VC{T-s11-J6Jl&fPvdx}KltLI z$S?_y3L7E%`9m&rv3R0|v!+)T4buLlJ)_db+-RPen0M-wH^AOo>}g~1H++nL5!t7+ zSgk0+{*}|tdsr!I=HzYb{g6ErXs`Kasdkmg)aOu32+``t5UAH=X5$1*1_h>Hs6qSI zqjdBIXkV?75pLYuRSt!G^JD0|LMzZz@T?jjq8O;~v{P{HB(u1<)EdNR_4Q0sGie4j zp>8e-dD49v)>$4t52(J$W^E+)%&hQu5?qP0ccx4b`b}L)WR-OUhGYk%7;I1351)#X zW4P{a=0ORj9leVhCutn%dj_~HL?3r=^a|PqP2Wxu?M~>|g{pY2)Pghvgi8|dx z`~zxgX}e`0r$^Z>P%O2UM>ubx?>#{PMMFjSlgNC3KR)@UKhFWd@H1-V4bz^Hcu^5z z_HOaLk9s2B3cX|}SmZ+c0&aYOprjVRqxV=My8j1O@Oiu9@OtqiJHRLUQU5wAz~i09 zTUm;61xY}Ca^ty*P$>8U_nfy%mYXr8Y!?39!U$7=@~f?bP>03L#Z1hyE3z$r!Jd0c z6ZG?knX&VwIgsNPpitM{OxgsrzmO^nEaNZoa6$y5A8I*oEqRw9?8MOX0`dKjEL%EE zJ3(L&ojBG(Az5Q1+uf0l?C>bbf{yX7F`cax*B|w}zT7}IsD~j5^BnotKy`r#+!cRZ z*-4Fen1N*?KGII>^#!G*Rs`92;Dv^RAgsrGl=#%}CTh0_4T1b~tMPxoAop6f&gdkl zKRB&czRBDPvpT-nL8#9Lv+AgChRg+|todSR69Tf|*}#m<$Pj1c&=SP}}iz(o; zlTG%s)t~R%i+tPjvor)RXARBfl%1_i2^_i^JR^?LsKhN(KX20|jMk+{8^%7s$azMS zPBhhZso!h+>5k*8WYEz`|qkf;tWea1UMiAdI!nhmsY(mjl=(O8h;BG78l+Y$1P0HurfE4{uwv=()Gb+x5gJ$Ll)yR z7XSobGjfUeaJR3a0J=%o!W&w?XX+%qU~VpR1|b^4&n_u&YBh$NK0{v6Nc=~KL*IHo?13Qd+BJBg#X=!B4ghT4w&To zZ%p$KW$PKmrs^MFwN9I$z`<;cs=rUiJzxRiAO+rNs=X@aj70RfZNYzozipBhIV zDEl`X8@t0E2cTfod`{BlKZ0n5FH1F&!|L@e3GkQQf}L%wNDhQ!A^{(w(#rZE295t2I?J}Gx-bgwp}V`gyF+;C?rxCo zZUu)FhVJg}P627@ZV^ePB^9yW`2**}Txa%q_OsTy7uy_`ZF`Y8nWx+WO$bvROE}pG zf>W&3WwH&xvogNiXct-1Ou}F_`I1oGkNGq%%g)==VLU@FWt`9HVjb7&N4iq zNJmFcXFS}L{RqSK9sd24?2QU7?{0vBkX5U10O_3RHlamNfFOVT zJ#WudtG?`2b+y9x32FbiRUf|1 zAY>~XM(Fj8gr)8!@}Te(zpsUa%4^#Bm-YoM&=go6?WlE8rkeoSzS!)kq0EPvc3loU z?TAKzsdyU_DF2rQJhOSWb^?H$QzFI1CgG#ftMdd+9Lg&TPtANn#2FtG}bFzHaLKjG(6S+?3Abr!(&jL_&WaQq^9cI8djsyfpdr-3L~z za7WgM4F&V&$r1m`GTG7F7F2n3e`;&d05n{2V^xFmJWBvcQ{gK)uz3mA5;Am~fA%ev zyl~I?rQA*j(1R1{Dy+)PsxUZvi?uFQ#ZKvi6xT;}9zLOlIZ8;DT8N7ZFLL|BL+cWz zx|@R4{?pv+-gr02A-bU{4-XWi8|oBoZ9(4! zH^(8uW@od(-#Y=>UEw5(>DlfEd;?PgnW_uV_m{v8Psp->Z2_ES39P?U@@o)S(@(6A7ignwzj*OI=vdoF%?sc< z02USVxX;f`b;v~N42HH2iMkl00;7Wbng$$U`gM;YRR;O6QyFA5D=De664q5;zQ1qH zlljA(-`k1GpxZYyIu9So0m!l={U2yYvuBlKkvT(L$XukS=G*|2{6M?WR0LNo^s3zPG=;x2< z3X2#jt)lu13A`ZVtWziVcrlBxr$4yWxg!g+pSDDgE{*-^gfDozIDu-8echPI3v!ZhQ-}OiCYWF@UzqHR37t@WPGWRr7=> z)4(z?#H6%h(p9m3s}e;2>`2?=rpQhJAxF4}h)2(Epp?BY#Vquu`ED9Ap{_*--WwU#;fbfz)=ALE@A+^-W8p-K#_Y| z7DM+o7RNfl&QMza@qp|UUAoseS1o_ME4CF(F$A)}t*ak3M)+Fm8TI|OV^TM#P@o7+ zs_6F`FDr<%)%n?|r=5XDqEO@2s=|ZO^a*Tatwg1=Y$63==3`USv4_28+%9`(LHr3Z zb8+h%Ef*LRH;`wUoG}@w1tCl=bzWOWS0A$H(CvP>qfaww_Qu!;LS$Z-?!+$(P1@~J zNJ#kJr0tU^Iwa*(Z5__c{WTEO%N*Y`8XU&69U8V32CTv2Ok9a3^@0eU>Q zvfeb8fLaR?{tG-7nu^b68iG(jyvZ3&(>`znV}Q?cCylQ%`S*}{VKB95k43#zT^?3Q z--aMpW%24cOKT#8GV2viifie}amcbdzB(;C zEtB3;mTM%hd+AYX3ZVSr$cP=uT|pyzi9NEyCo+9)Z3};JV%tG>;vj-aU996vN9$wK zS6uCt9o{}_O^_JoE<7HB^W16hkCaiebZ;#(%S+6ZPR7<0gT~e|Q_kZHwN8m`vvPG# z??>`BgVUAa4s<;BEKxO=ybj@l9eQ1n_yP5Dn~N$TcZPdJ$+cm?lmLK>AB`7M-UR3G z;iqCn^omeM56e|-aw_m;*!r3vuQlk&I)O3|wXD$NtCt!4&Uh~^M`g2j7gl1AD6-hM znN|hw(3oLzDNQ906jCnB#j&P~mR*^^Vv3_YeBVAhtGf4nON%pvN^8T85W|0_97}k| ze#lo-g>!Nk86MLaa`NuQ1p2mjL;rL1PS40C%P4u|ZpcP+G))io=-cA8ty)=gruF^;~fjNwdl@ zW_|3pab^~!Ut>&u;cC2smbS9?9XVHX(u-CAr2FflREbUi>Ck?D`!$xAB*zCXfIyQW z|9vS0h`V(-FxgAnlaJ8Pn6B|xLt(`jz^YnD$0?zl>L*luE%-u_Sk+3n%hb@r*x&(B zUJFH$GWA|)>jWzK$pA^F4QcvN;Y3+-SiMcIt+fO^ZTykL)n4#rehAfHj zmcl;bgw7XjR0Q9tw)u-*BN;jJ0tDL1&xCr)jYo$Z-?Ma|x|cVzL=B+`3u(hK8@$C^ zi#Q*Jd8lD@Rc$hWV(*S00l~Db0EYJvd$_m%nVvYt^Xv15OyKW_;AdeNrJn|%G4Nt(n#?w0(n-_0VXChlr4jZk%4EgfK-LN55? zHt9Kg<02Ce&0uTmomUz7vXwVt@{ zH4Spt&@-Lnnfv1TreP598kLOq->QDAopd@tF49zA)e}Q^f0WOFjn5>!ra$Y7L$;IeGIJJ(`)CQoPn=kX3V>x2t_Hix_RZqEpWc!SUge!BwtQEi=E-| zi9Y6M+Z96K)W8%_*zlZPZW15*7gE(_%x;mJL-*dD72eDE=cQO%(7wM`rBpaI2^Cya z{LdRjoW(6kAE^F$!BHuI zMuxRxxCFu%OyVv~CB=EU6g+X?su&H!ixXOuH^lQu;}s4%1h6ah#458DsjwB74L%UN zmzFuRa`C7c7U(KKn2%j`Ib4(uFY7Y8Eqi*i^&qAg*PA++i{x5M9{Ht?F!#ola~KRa z4bMIq%FEJ-Fu!dJMfW_R;f$wJf2SGgoKBT$a~kFhP~Um-X!a z^Fvby5c$9&X7w4Y6wtvib{ABBW1^0&T@{h1_a8uwzX>DX)MUG&>(o$MsUPcs9h)G0 zv4JNuIkenznqO=|NS@;0T(>kd~Uj917hUVv>NrH*o%TfH~olk zrz%w(4T(%xNzuS z3PNg&f(+gp>t)$XpnXJ0e5J7J9!y<;ma8vGVIp7~UnkFS%Jf@Ucy0_&o$@7euAz1z zS?nLU{>EhYT1XWNz8c2C#2FI>_7uN`K5;gVkNv&k(Df=t_xPQ_#_sD0;E7Y|xOq-i z116a6GcyK~nII?M*s3tXbB+RG1Lm6 zVyg>v%udj-wOxg&z{r`uH^E~vWgEH-sDuyRRtALYXN>?I_ZUU$x0iYEE)?Lf(qh|W z;olD&ucAjV--zxpF7#JKEfw9J-m$c(?N-&YIy=}Zli=F)!o5xApJg?stI*&5CiUa` zcH-tC!f%6w{8fpBR?2YLF1@B`CEu+SsC4H;0YiB{La@>SH9MyaWdkSoH~wMJsVU zvhx;DvZ=_+_J55CJF?hi%J9%+|H9wJwL0wR%90LJWzX*Q4-Wu;S-@n{0mB>4N}Ui7 zQ|+ZMWX~(ljqKZ9PjBA z&M#X>FWYA>sw0?G3nE+r=+D4kNmd?<#zM+we6%IP9iCr;5M{GocV}^G9O+Ke7}ie2 zI93?FSvRK0`^fYu>RoPpz3V2NC6lvwbv#XVK5X#G`pEV zCK|PHzN<}}j2qmT3`KQ3@gE`+B8l7wC>i3Jl`4!P5i}qM3Zyb zrtHS}*XBn;UD2-?C;0$*wG8(m{{DQvEXoO?8vp&Uip((~>?x)52Tl{aFTWW(w`l7&j1MY= zrq$%JT?vX<;w0*~e2MFu5nQHr9X3$1{urd$TG$fAAxbLUwGYmYUR*$|Yn<^XUI3co zg&tQXMeL zE&Jd(*TvWQ94^V-nShHFX#{od~!zl5?#6h4G5jtfqRhaaFFr?PrRtK2rvN>F^sXmQv{7tvtv^+y}009_GY)g!0 z5zRgY;#mx&0S?yvsyau>%I-LW4CF}5Zb;SFZb(tCkRo#k5}k7HyGkS6I3|1B*AYzQ zRhsF#UiH*CHVYmn5#3Q)Sf-P2=bhLHHx++|jJ>wqF=>6H2%ki1M^o<#RZ);Uatp@G z&?t-&4eQnlCu??oE&r`?YmwOgViC!Mt>e`mX?L`cZ0Ndrj0ObOxT~c2w=n&tF;yI! zp2qc#pa^471nn2?v0>;5U-2{>GuJp>wjF+CS|TF600LMMwvM^TdHHRbB847NnS!*>$))X^*^K+o(|*W92ScJamX_bR4RvMhY;;bErbRjeTUP+te)nUp zi)(w(1>@f~_^J;C2ZiY(gmOQVgnKn?^lg*@&a?!J33?8rRHVTMv#nJb@yI0Cgkh@C z`rGD~&pV}<|FA9}lE{;~A_K^& z;nl0~>m;!_k#7xu2R1LEEQ`*j&>FRIEN%H9xx@r>hy53TbNWDh!VxZ8<}E>)RYwR^ zkLdtI8rDofyBHxl@l-tkX;FT`_KvYepDtXTc$6$Ow^^2~T1A=}e#TlGJ zQ5n6&Nw?i9tLF7>70q;Rm}-Ng##jMxjCET=w%+cvbPu{0{+kCBv*;~O^L@}_ z8E&-ma3TEMC~`vu?~fJo_I)s4l%Vp>IAu>82KU>Fn!~7q!55j5t}bkVI`L0O?b}lj-dr9h#JI# zlczMNz+nzOkvHI=ml8AWiPGUA{QX}}$H7!U^64EF!2A&-K>vAw= zE%=rv`7O%3pQFAlJ~RYLXMcV~$nT4##>ULD0tU~rdNfC0CmRUT4Fet) zbF4TmYGJz3^Z$%-Nod;XEi~Cn!OO;hDL;TTKTC_xDkznwGG;7YSKeH2^V;H)_=?80 z@}0`N-5I*i!bf<1e1S8euKOPf|3LzN0|_#Kf0(PPOAKo=)UcQ4Cj|KXyy?I9^szbG zm!ZZk*=RdeRcvYm-eGYH+VPFcj>_z{XaJyCY`TOBQ?B7cgzzngj(mnU-Jd8podILj zeAmRN(g*LGggzXd1MH;}+%&RLD8k5}fL@SjCvbzn&S;{zi!aw#m0x7T)!xL?ys*~) z_cCuqKVq7Q?(-2{x!epd1ApiPzGin-7w=9rM&zJ_UFjerJ8;k*)F$MB}KjbqC7gtjg}$!els%Vyqv&t{PX2!)OGZUlP^3v81AnckuuO&E1y< zbKYeIGO0jpV^wF$LGJ}$WQ)%|am1>k{kOAWNZL-V3dJ|BY9J^MkkPJ4jM;6Re~AxtBi6O+YxUqu1EQ{li3a_Qi8{51{SsTkH2bN+Ku1$3 zxR@5^L#WfKzIWs1wI`C4e ziSZu>6zPy%dE*_#OFpYv+qE??IB*}K$3yFa@gqM*J`rFGwnpE=*s<4*uMw?$rOvjm z3D~~}9Me^EUO8c|Rno*Jy6$6pj5CsB%%l>uSKv`25mr{P#rb~3gwo80;v_N73pi%nBelb{0)D&EYaYCT#NU zgOz@w(xDg3T$kaUBE?dx+5v*trU3{4K_IOMb8YO-_`iODP`UHZ%D&LvBXEyT=R$|< zPb$qn?dFwl-yrQ!K+~O9cB~bH6Q2Yy7}F6JjD-XZlX84Y&%xJ3Lk!;zIUZHjb!H<> ztDeYE05DRqGo_bO>Xzo&enIT#*s<5&c34metXz(0K?_@84P*eK*NE~!#>b2!K1%2& zoQ=VU=|bQ4uF7H~x>f9~VP=#`Pod)rHoF}=TmGC_mkjjXDRu(S52_ft`rJcEqJ|A(0Yc$;<$Po z$!|77M&mi_mH}rS`B+1gxIer#XJCY<5Vdj7`(*&6T2m$?EDs%^TI7uL5F#zKr71qD zhX(#-cWRoYgRpG7|7xhMLI<|Jk!C!%-t{Aqjv4xlcmUG;TKwxV4)78%sMKa$xb;GI zsbr@+XEp+8H;R!QMJQ5|wJL9q_uck=re0D%^hR>4uN`)J5iIkxIR)9p#=8I)Gv0vWu{D)cmTe{_`in zBTKp1>Dr;)E>FiF!+<60acVRNyKx3?yqD-n>F8>z?H<43{Yn+R#uG4zb=A5>X7{B1 z%D5j8)BdDR=4;W&e@u~qxca37*6=9J*YYmu$;39Ujp}zbIf5JNr!r*Sh(^prFa_9L zVGOaUfL2E3nTTd2nc3$eXc}fT?>Z(FVXH<0Aop8wnX*?gtlgRC0=)Z`80}J-CUl~d zvWjK{C{PxeXPlm(2p&F^HQ)%*u6tCeltJ>Wnbk3av_>6KnK}M)`k80k?vQV*0nI0I zo;LLSVfuT{ardrs=luyjUjbw)I^eeg;jPHEYhnY>%^V9IivL!YHBmefcXQQ1+IyCS zMmG`Yw&fxHsP8dgGfR)E51~@;52#y#XS(F_p%8cKWez%1BxYFN18=mG|HkQM~*0Oi`ud&P%w_LcW1Jji0^fjPn z=q*}~fMk_p>xJbtJ$t#|&7^{X;L(_iMA0Ma?+0Iv=94SoAlH4=?N>iA=O$s=KjK@~ zs^)d)`0FsMJT2oD?+u`+c5;uIS8gJkzT&1Dof%aQ3QPH?ArbIw?FFII_6iyST&CXD zg2%!>3-^rKWLpfNuB&bdEIlqg?$4f=vOhs~_LoFlVmk02i2y|F^?0_>x-mmIX+I^& zf#R~Cw}5!p+E${DXx<<_yfA(2Kxi0O@~%6oFY-8vnfYCMFFU&QLK~FePh4t?+W3&9 ze4ZF+Id6xuP?V;4zBb`)uf|5$?R};hr%{~$f)x=jwB!v4$`+pFDQQ=2HjX$0 zh>(5Pwk*BwJB;Acd+z_t`YOx?i8$VJXxf!d0hYbypmrIPJM=5;Uq|h*Pj6%^rk!2| z2wQK6I|cr82@F%*kaGTs0Z0-f>~{1}&;-g_0pU{gVp2z-oo=Ph zh&^7)-%nH8X-V)mjWhkq>QYhxxYMhTXL$Vbm<}%Jk!9lV+8$F2tqJ^E@#~qe z@(l2Cf2Un6xD#Ob6+2cQc|Ttmn2df|siD1Vu>fdjjE)pd?N(-qL>y+F)&0>lfnhu@ z0r3A~r4(h1C=p;YLqiO?)OvfNx$FK#~_&wmy(>| zo>n#Y@HUftTTK0P#R=|Gzk6`C--hKongCi)NOc3UcU!)gJH5F;!S8u@8ASTe!>EWu zDT~H(K^xdH3~{rYYOlX+=^H_j8wEHWM?Jz`^IkI_jCH zMV#jy}+yP9wL(QK#Y$-e{z znCIz_tN43G*yF49a>H_!kA$vn)&xTG+_bF1DF~!d>>8BPG$a7^s696t{{ntOcB`Z4 z2O)%1e_*>7nRgD=?P>BgN^$P1fN{?gzJM=!Fx6H%n=sX8+=_S4pur6n4EpAXuFRO3 z;&c(a>5Ce2SN@NtcJ3l|H_@2&h#1bf=mcsF5)euaJ_0n4e@QI6AAGSe!fHOdbSo8EX z7DV03@vF*TIypgc6@Se%mD_%wU)hJXmkT!{4(RUK&@$BvAwRoDxm)U4IV8}V#@ls9 zHc^oF$r&S$$ERyTi9*T7KT}=va3cYtPJmN?3M@p+C`>1(UqHe_?3rHT^nSpHP+>1U zRzLPagR?i1Y*H5RG^a)M@F*|kv0PG77~og>#b|?tQj2wc0+<`ob zl#)clC|ucYCr8g@_-CxF^n_nE^vQM<@+qAdwJQyJ2z1I$-t^-*o<%Pmmjaer$-DHL zQ>wirDn5AgM~l3F7l7g#*vJ1<0xrfe_sNVhkRUfkRn9a4CA@x-0MuGwtY}v1X{nE4 z9iX+vY~V>`gP4Lu%)?D9D$q;eyQ%6+PXlmKicQr|h?JuNP3rk^A(ZHE!oq=b;z&Jb z$X`=t%8h~&e!r635s?QTlneTTv-sGu>GOGQ#}=3SdBKnQ9Q675h;^BO+Z?ykgJSc2 zv>x0SvUR-bnAJ5>$Ib3opuAJOUJ5*YUg5l)pv>Ke3c<>a4sz5{e`;thixv@~+J2b#tsQ|~XTDhKHVh_VzmG%n9g3&<*r-LXp zy|F+!?YX8d$cF!_E4x*7+yH)(SKnSnHR#X@=4l1P#w z^6LiI+txS`<9X1Abr_Z8}!y9I+q=>JhZE%;WK z+3dh^VlUxFRNN2o6{-CAtt#||KT5La=`r?uB@}m6)~0f~e0bRpWj&>4?Td0U%ndV+ zxiJD|0ft7yQkkvcN!hh%?s!bkUb2@KM1k7_Y|YlOf|g`sxZiYun85GbR^8%grcv~6 zWhxrr{do#UnRXa*XB!7QJ*&au*D8zh9tPW!?#i7mTwjhqRLo-qhX7Q1MQ0)6#V`!w zE~%gl`zh6JflqxS`O$7R3n#1XBWLf0Jvm0E*e2zmh;UGaGP+k}Js6u_YK0@^&pfG~cN% z_%lyKsi*@$0qTIh{?mSh3{-X5F1(-30D^1B-8;(5zB#iXYr{=N;XtX4FdI=108C< zXR0$~A8E3JhkAz4|7K(Y7ZjNd05KEAn$yfKWzz^b(ziJ8iUQzqEmgETt`3@N2>nQFBPBQa^ltz`3ityXu4;VA@(8QrsaYW<{xad*j^oS$;an2 zt8>xPchi>HK&ngB(!3GBwdd#Aexg0Vies^q;1yE$0ROUu zOF2KDtx#z#ZhfUdmG8kZwJfr$_t`vm|}WF<@sf@h~Z^YT&+<~-?#95@Qk zUpVdyS(H+{fsq&-_8dXG?^TNRBc+@hAPJk5s9%!!I(}wpsozIT{r$;fNfdT{6v}eS zm~sjT)jy9q$K?7Q0-6z8UaS3bsA&>h;!3KpHR=W7c?xlU5{!U^{{_~>jBTs0cyd(v zuL9pdA@AwM?o>MJN);}Zr6e1GK=U~Aw21^Tw+#Km^PHaa4uM5U&LX-iqe9DEgb5YXwysN+d)>Omh;|xl* z<3e=`typCuD3=Az$lC9Vk?ud_AZ|4Bsv8x>Qjw#PD*e4~n zfehmg@S-w%yQF$e*Zd9Vb+vBC|?G6r;#;+40>ETJJy~b7lk+ zc&FI`dEsq&Jmr*K7JVRmQ&);u8eyZ;CZ?g!w=AeWjPnxUAmY#a>^dQ@n-=s9qg7m} z9)qa@9f`O5PRrF4vC4*NT@Jq;w=N3PmZCw!m$!BjD~IMo*$V9z6Fsr;+Jda^gnyaFBi|%hAl-#hb+9%UOx`Qq*WC@!v<6H|qx2 z7>re)ZC}hEAKY+Iy)04zQ)4J*)sKo~p5B){3MKP~-T>ErE_JK=tsY1aTCT zeT-||K=Xa-gA|`1X4Rc+Q+>C`KA<_+0SpYCqil#8b2d*ieVGKiT>J2aGw6i8vcX5%hMOEwe zcA&X%saY$6#MKHQB`s;-iF^RKvI_C=G>PGj?0BX(bM^z$#$8dNON(;yzQ&~GoD^C z@d|)_v5?-K8n*JGEuI>REt?1OAT?^r=kV=^fkFkvKD}XrUWImk_Akyru zIL9^9=yVFN-506G4pgPki1s070QcTbK9ZMk>s~|Z>$ewxnQ}+`Xc`^f-!(Lq^9F6|3o|+rSAg za6?CekIKiAzn9-=cboCALVaDr)ZJ^wo$JMxV}(l{IU;K#wXHg zNXz}oK*?DV?r`E;YE|5P0MOspaH8U7Kt^ay=eJEb&fbtb)1yvUvWp^^) z7$eRF{7Ex>=UIcKlpcT5&NBhVtJa=cpOHr&iWwK#J(+y^&w~{*2#fgQ?(+y^xC*7J z>N_$BVwMmuiuigNtmIb?Y3J>x4D_Za1^4wM1j|s=*QcM@hza!f8L5&FDfIw~$WL)x z`h7$zgo6;B0(T0ZTkTYyO3Qrsr4=V%P*u%HfoaJeBXQv-&b@W2dXh*I*}D=$b%qY} zv(Xe7o>g5HanQ2zuCg*L#YGv`ks#eYLy^Ccy)5`1Z1O`<$m@eE2%~Ri5hs4jAvAmo z5D?`{uUEC9O-db%cGOm{Hm-hW#@~*Qe9#Hb~mKf4lcqvXF zF8wDe2ySuHPSt;|r2@)enkWt~?DAFZ3c! zJWw+8PiFt2gc}1u&T#R|-~C4yJy-Uy^mj|y%Q<0?#14}jg^#)s=sm*enMN_YUtgvO zMf2KK)QnodPYdA?EjU>{^3qlSsSE{Xl^j_@KNQ40I;l6Qzrd_B2L(j)NM!8k8A}Rj z>wHLXd6beovUQrLov517t61gD4G`PK_2U8vwotjmrD@FNw%ALo0fz=QCfIsvstaW9 zcJreX?2Y{fGJn?J2H|Kx{8@RgSUNX20W*H@7E=iGj`tX#o^tx)4{FLl$kDO)qS|tf z$c^qzy6Sz|t)m3CAYZ0e;jhM{iX0*o_bh-7p@5u9u9yEhYypa5`*FA5h-*SIJD#!Y zg#IUg1k@6(Wu5FP%WU-rl3sEQtPtfmX8+F}Tbve}%oo%pfUJ7q_F;Ok!yAx5O^|%U z+`Ixhk#6qpZma&(161pI9rvgh;xjZH%Z#Cdv+H+vA1yk&^KmckHcXq|dnziQ#Hk+| zoL`QZYHrv7FXuIYDI93XV!ZTWBk@j*_c?uhtde}Ng2SZF)`_#f7ufrDQ*|M{r{wB> zA=_O-KozBwxRGytZd z_)5O+12Nfalf{c+q|UW0b~5oTpJ7}{UQx2GxU z%DR3hA(6dSIr6g1fQN1$Iq?-D{Zzq)1IbieQdpe%`=)6;nZ3&Lp5;7|@g5>loLMea zNf?34LHlq`M3^w&yfB!cI1^$q6}y7xu|0Ex|86_~X*ogQsmB6{i$Rd8GAlt8Z-0yy zrOECp z6ZLj33ZqRSDn{uk^`~%mFa-_3nbXMqN4Nf>B+&#gd9m#aIZ?}SrY~Jv9fWV8|M>1U z>G;C>dl-2tpv$+>`cx2MtGoLJC17`3X)=?c-=vXf+SQ!rAYY$^M2Nu*X|t(*7iYh?%T|WDzil-%K?&vm)3!I ztlo4CEQALzxeodYJBH_3!dR5G*z2x2av5GR`2w`_me(%;*(Y~R+)aGEJh6`L{Wq*G z_pSh;J(Z0A<=^-GF;Zr|U&T%J#F3|hNwU|4Sd3mo4%#AzWLd5<0c^y#`HJv3i;5I} z4CamuKy!0s{qEgE9=u*tJaW4Hwpz9AAnZD`nT?1*%9>i1NtaSQjoZm4UPYNuw=DDP zVi7wPz(}x2WIeP>T)+0Tz{=Vj?JQLFfFhD1wx9nTh9bI?{wFVs^bLmVRbc1;!EWHj zh-wNTTc>12@MH<|a0$oKY`;QE(C*34MTZbCpJHf2fqefLqpC*?jTMBZM7($+^z1s- zRtQ-PaXH`J21{HhigH16$G2d%f{h z9IkE&*S$iW(o$QKs!KnB@RF+yO8THnRVw5r#vR^NTsFPNHRsd{MQs02@QWT}0db9o z$lZvi+|)k(p+{E-fWMLTLEjs)e;}27)f>@#@r$p*Zm`VsC<9ekyohOae!eSd<7+DX zb6hCzV>IVT$aAi$dty`6s2{?*Qm>lavsfb0vcs!=0dZFtLr)IvMpEMcqju{%3_;;d zULrju0Jyr@$0h;LRgYJD zWH6)8?Y6FsR02vzHom#Tz`eFxv7&F}4Hh67i8`e?M-E(+x*qth+t2e{sv1uxq-S_x z@lr?H-&I+386n2@OAH0e=`#BWWFASz2M=QMA->Qb-}re7;RkujRs=&i<2|Q9s^~W2 zQjd!Q@=t;m?(OQt7gEhV=3U!geVZKkB9u{gEx zOu!p~V0MZ0vr5Lc@5in2$e{%k&=D4`oCS%g8T=15TKz=P0!$oGRALWtWs z$?6?}63mS&-MKPdt+F2KkBeTLpG-j5pL%VMbVcsKRsPfuA4)R@0oJmvzizUP0C74;} zz5b|jo%sDg4D0+p={@7dMtJHxdNR}F#U>?{)+k!FMsav)WRf>Eyr+GeMd^|wxwQ4} zW%+_iiXUR`%>Hqlp#E(q9hg#3c+#T-*=dq(zg9BXr0@kX2;Te`3=prUP82MoSTEF` zs2XKl7_z^g@w0GSE(Oe0j<5mpVbW-q=L;|6iah{%RTsm8;Q*x3@AuaN_R+9*{s_Nk z`fFwa95QMJU=diX01EI%>(QOWn!0OVKyq|IIO@#TWzN6aQ!fl;g5m(}vy_HfnNY_% zTHHEpN@$`}XWDR0rKFseh^4R=KC4~7M3LK{_*o5=3In9l&CT-6;>P%q~$ z*FL=hLmpl?z|{59;j*jNA+tC(@O+x>;X4N4uRX-_shj$_Pg>ht2`4OtxRdolh{W!W z>gpOAni}HTD2qm~F54WWkB?6ah?TWfcxh4=QD4d+KGro#^ZAj(h|KxF#KS2flp zN1wkmiK;eMXo!Yu2oSJwHni2Uq1f9$Q>csDGFkBAlMKDGIX{2(<7~^bs*L)pAw)kAwSacaFxXq(nPuE~Alwl?N&D1Wq&pqdz@cq-$)RP7(&)Cl+470$)-O z3=`RvRrFziAvTp2`^KFy*)Zp!>M$DMwadHT1W)x{31BPOkujcxtO%oxL?)m!&Z&1sh7~tPL zf+KRY4L_eLHzcTOQ^~0ft!)y+h?Ql4p{@-jSlK>6*eaE}3Wk?? z3xCf~x*H9`0*h@zz5@g;2P5bX;LjX%DowUM7kpcPG({q&WIT7wJ0;i)Ftj^E?I{(@ z&LHwvV`1G+L85h06TefwO3(UV0EEKOaNRAaAJT%wzSP^eoa11M(k!GF41#$800pya zodhvCgOd*w_r*y41?BaJn*B#qY7TZfDH&n==52T=*8ikuUZ_&PBgmGH*mF zA-DE`$bN22cix($p8oc$4Vc8{`9235_;x=2ay@!o#RBWvrl3nLO$ID4vR6so@D-IH zL|-ILQ50Q4=of8YYh)y?pMpmy4WHq_qebVyR_t?RHM^hJGpW=j~qBSByOm)sO` zo~;=zO%bCBc>aKo3&DP?Q`wfcUDW?mlP^GEIq>oO?nqx&C;UWX5~$|U>OXDrAYYcV z4~(%`_Dw#Bu)%?e_||4495mb1s;Q32es_x=p5=gmCKpC}6HcA?n1xKNa9vnO-3V>aH6n|qBc#l1W z;Jva5br)?7G-1jPWjD?e=x_N9u)ih}x+Jmn=nj^;e_#tnEqFZz{nUZT&q+K1MRxV8 z?FH!16Nr6%bX@`{E5g{43Lm*<>Ste@mU*V({6(Fvz4J262=i*X9TNTWJSu~@_SL*A zjW}b%1`NAq69|#2%6$!@1804&!f)<>stwGAo!061-13aELJ(I9R80)RXBBLKVm(Uy zF=pBv5>UX~AI&*X5R(!d-L=QFht)6T##JPdxbBWmAj#^BorOyBPLOlXsQyRSd&a@; zG(OAEP4^PTvilzkhC;V`6M&M}YoK;tv7*PtGU|hps#ldxjRiX5GkN|)-DZ9MHO7IY zh5iB|Mr^%+zAG;ijTrTQC{Z5Z0qQwj z2Wa+r;qpf!9gPMIa?PFb9B*CSbwHOr8+av;ky`dJ7{b>Hn8pqAy7U%nZ!-wPl@z=Yaoqc0L`x2j2&9{6oB}>sc@QY{M>yNb@_w0?D0QjZ?kRlSwO}3rd3zY z-4bhFva80b-%f2{JGHzCJGaFn%A-ZorIYJ59%mj&FL!B8Ms5=#M zb8deppgG!re7fprEv+$RQYf*EyNUUl3`EH)3ufu-?-9*rMB8RCxIu%ML?rw7ye=e7 zgfO4NBJ=(?#&8^yh90NTINoFf{r?o5Wmpt%8^xd9rMtVkrCVIOyL;(IT0rH$ba$_S zOE*%|NOwrLij)CJDPq6-Uf0ft{X8?z+;PtDh+{mjL6Lr15aE_SE>}jSEdec(Z#||$o)sh__aFCsAH!ePQI6PWon&)TcEW^?a6nFm9Wl6~`h>*5Vt7Sg718 zfa~u!;0&;2{J!aiSHk?Aj}f%S+B336PnUqcuyW$H-Rr(h4xTp+MSmv^SnU7RCuD>J zhW0K^XC$45ESjZsVU<`O|HU-G<{`@Tfe8)M!jXTe5DIo%qyQ65?Y?V1C3+Rv6hg7gkH#PX~|77W(IBu9( z$>6>Ukpv|5VF4hka?CttmKg^X+5XuL2!6}IUrWQER?c>nugp5~D*T0Dg5DiVkPn)g zK_B3MaTi&-p!A7d2B=}kuQlBDVTc3md4}zMW}%%6Bz7^AGr^5jf0QLro=mfb+8Toh zzFRGpn;}I!)(sGwI(GzoGCiA5<#LWHJgje{pCghvP1&3{mw5s9ULjFVjD+^;K6?dK z6Z_w&JRcXcZ1$B)hG_sD)Czqkm}bfETVT$@-Y^q{l;vMHq%`(Q!r7Ma4P^_ z5)0}AqLvX2v?e#+h)t?n-Bw|G(7GDgYhj`2!*voD>3GK;WKu45qW5mH#HV^VSb2v9 z;3yn^mgMOEF}Ek(g;Fa>Tm#~KEL7VrF-k~?U-Whf*nVYaa>v`@htEXD?*)G7&w@z( zvmS=Dz)i>E50|zLPnMaA+n0m4wklfC^By29hjbOeFqo+Cg_1jQyj8bc(i{tYJUWCbQ7vj8MQjKh+$ZO&JMnQ=I+% zreg=CoZJ&NiA@X#Z!wbkC3<4j$Yx2^%|C1qA^kr>qSlz8?H3(}_lf@)ARq(!v^8(& z@E_bgAu9QixnM0YlHMWo5pvHdE)zhvyOmdTvnU=4*-q0 zwy<_1tmVH@J$?!57evcnobJ&t6@OKr!usT-k~LAI$QwH+TndPoh5=)M%=s}l8vR%V zR5$%%qbjPdecE`1I6xZ}XOI{D%htGDW>xLl|F5cP>I8NqH&tAptCm7dRJTgh4EoF7Vm0jb#ZB1HC`d&WcFFZFKUeg%aR6fQ?0KtmD9 zHXL{Hp^cukS<}*rrLbDje>UDtTyw!bm~CyYHlTA;R8DeUK<7ln#U04~PN=CO<07+V z9obHb$e2z2(?$3TV7Icku9+DcNA9P<|I=??m|*C{ET*G<%nyxB_J?sqZ-RO;4t)q$ zx^cP|)(R&)(S={(o{q?xW0rlSq9;^Xtdk_6C%p$|=={gr!{^~c9}h1N4<8>t?+u7P z26G%KpNC!SY@=gtm~hzKXQt(8wxz`Y@LgAq_#p8#{7K5@6k2T)bP7|K5JO-&iPOaK zM@zg}_tKQoP?0prz^?}c7?h-%jl8(h*&3ttu|U5ADTFsR2pzWd=Q4x|^wfNcUxZ4w zMHueXZ`*7-F~?&;=K#P@@t>UeLGt&R_O%1R zt|~Q0wVHdrXW~#R_|I_Rl0B>~jAedmv+y3krELqDAtoG}9b-md$|3rNnPEt#(MY)dnAM$@@#PE7ZOMl{}oVb;Q&Eu9_D_=gf zB@mS#-YH-^N-z1!>UsC?66oanL#+Edaaq_jlKT7t=@7uNQGpO%pN|nnZYQ)*y-3>0 zQ_{%amXRhtQ(hT#835SBtAGBOZGk{2(QxIy${DLM{PRAASZTBAs2l=8SDGk3Ov2 zt#rts0Vn-D%c~x>pPuE*RsYUNw&M5qJPjfPtuEq*Sp^lIerII@6hu7P_wv1>23G-= z?o+PCK1Zt>uGyp8Vd2Zn{E9P%qwi94v*S&U`w(Zsp?aM$DplM9 zL~*Op>`doonrr(&*ISou?h}%6{zSOeUjQrz4W5a5R{vRRpAi8N!yiWcL+aYec~A*< zm~uFrQmv#wdMdDq13;?x$+G+Swn!R8@{kaAnTI*}Luw2KzvzlF)JP@3*XHhZG@NcD zO*Xz+TbA;vq4)zT1wTia=sk;jU$Y4PxFZlEqNdla_iSPSkEY%coM+2+BycMcD055xNwbS$Ev|AW+n@mFy+35I+b##$5rL)D zf%2Iy-ZK`pW(=pL)JU?s=I-{_27yRWqah8ooW&dLAFmVG%7g&k`X_2y943?=z{2($ zeOoua<|>Q;f`eK z?4VL+np(%SF3Mk*k>oa|BO8vBp73ZYp$z~EX&zKkF*74B!)cl*b~*Ibr-F1$av z5`3)qLsheJ>@jxLhO#1ko|U6(d_b6JW_=+PGO)%V${ZI5S+3>@#=6SLpXu z?*YcA^+?#&RfOC|xR|X7`Oez;r$>SEBpc6ND;=M5PAu&Mn1o%VfmuZnD|;`+1|Siw zN(>FuD5sIJx^<>uInpw3{`(6++Fgs?%<3jLHXKjzt|)quFUJA7r&{lI(JmXu=cKA?dSQ6O3sF%%v!zBY*!Cok6hS z#F$lDZT|QfIgD3tZ|}`XF491S#XSt@pR$VW+PnhT9b-v>m9mcwf<8Uue}L9~U_xWw zaSca98oFQwK>D+qyhcmT)KWI+$D7|(tvI(+ww-5u?3jd*3aOP*D#DAG zp*9y;+H24?GuNEqx3T%hf@M@W?u3s>CGN{H4O8h54E8J3H%70w^{)it9@^@}TpDL| z3G)B}_S5!k0)FnERB7w^;&-C%ddo#O#A1LxI=9)p1PNR3b%oHf4dIq&2@yq^eYdbNC?HQ1u31Ja#?@JIVF`>B?Sk2<3gb2DU z6x>98vC+vTo~397qzHKr0OMA8njnepyGj3l4GhMsW>)-F*ph&c4NF4y2d3H3sC1GE{>{gSJ%f zJl-TLQM&{6t9VUMaCxyr#kwniA_&D@r|ePu_v>E^;jmK%!yF$c&#Gh z$ul5W8uy?TxP*Q1^1PyXB!9=@$r+8UV#Mht!LGwLh1L!L5i%9`VG*X%NGM0uI8%v! z!=qxjxOi$|N~hs%M*D#y_$SnAu2C7nAe+}R1t0tds}O4nYyJR#BEB6I{e zj5;d_Bdd9locBa-#%JH?RFME+mAX|Fv1$-*hja8g{0W{Q67P{Bs z*YKrdEtti9Lt;to&0lphZugpA(m^AXnF||O2s?RB(3IW*(Zj%!hyZju4`^)Wfg@rs3$zQa-}-fv@ZEWiKcvYg%4z!} zj?}7vysvXNzY{z|K7=1@I&8-B??5BruXma{1J@I{kuXTi&G~DH;w^b1BUpUQ>Fv0#a zPQhMdqKU1>dX1iRTK=s0`cpng5r>;<3osSfGHGh$o2G{qQsWOrt~)Jz;W2VM(#^- zQgO6nD`jzrsr77eaZ*D6NB4nFXtL%kccV#`YIA#_!FY_k$zCo49-ySK&^qh6B_TIo zO9RX%=5Uk`4@WT#>d>5NRIuhUh3d?&CCS6-P))zFqZh*w10S3}e7H_1lrGL;Q!If{ zVvPau_p82lc}!MB&!%@ zWYriA^U|&^bz?eoqROHXi{>W4>7nJ_cC+LK%L~Be#5hnM9 z+yKvs3G&(pkfHig{JLi;zgl&U%pggY^y_^+({nQJ80YJ;f3@0!?7$qlB zAUW!ivJaV&J*&80X?|ySuS=hT^eu|`&|{BBnWydp_4w}^amn@Tm==CEAiin5J;K5S zMEbt8xu=Ng2!H9R{?zi{btoG4B9p{E)Cu4!r%H;(XW7W4frs2uZIUG=h5B8rG=3P- zfsl&BM8*pu3||@7@3Vbx`^&`}Gs5!XeJJ5r>=j$3=L09xVwsn>13P)k1{SpPeF?YI zNT(YjOF3+YLZ0)kwHdJ#P2wX2qJx&D9jO&d)DX4l`Z;kX3o z61jk6dYfZr9lztDE*goM8tM{-3>D~r(3Or8fFBQynXsn2<jJfQqCI(s!TkQFaKW)N21` zIQOz9!Lxl1OWSpZxgY0-%Hc__b7+mTv}Rh%=dy5!OZE)ZK@u>e8}lKh5yAT}`Ef*N z&$YC)$j0Y0RnGu{g{}cbOp9J&lcZ}~+#4OfVH@QG2`up6**boIbp)tF!XR-fiN>_} zNS!8m8jJQue(sz(PP}Xq)bV{0IIb-wb5!S^s&S~9_hZ0{Lud<_|B9iEBHX4*3`=&n zYke(v4fV&2@5|eJ56))Ig?N~UTo`-}R-3Jz)uV)Yu`T}s+pO3-%DrR@Q<%+f<4wcOND=UoMGMHhm zs%8HX*mkN!Tik^{tiO<~b2hvZeB!Kk^8R%^5g@wxaP}vb=*XOX(t!UK=mx6+!RS&} zqvTY1{WJDSv%H$OcdIy$)9`+JV(Qu)TdO3VHFXljpLo5kRNuHpL`Tgffg}`L`8{>` z9pFpP{1Pisa+?)`7p7~y`2#?4zZe$SQay+We6w8Q+yW&@n(XTx z&?cteKnD|*bjeB*(`XRGZD;CL+$x~ti1F_%fQANMu9w8G0E?5 z!LrEVFK4x~fa`hTn2?Sjd}y|JxurNTD3#T5TW7j$H#>_BHWMK$qmXp^&s-Ue?XJJ& ztc@={r7U7MsD#)5M+R>}o6xrX)+GFw1b?fa`)neb*T)xwwG6k=#ue0qz9j+{!G=l? z9OvKdlFBIX=X|5i+?od7Pn*om<54B-xY+0Gh#jl!*{WD9X9^hy>J|O(Xn<#8RdXjF z0+*h~ip^5fEXE_u60gVRu1UcIG>@2nV?fDt0~-hkt~HtYMrEUF5NDZ*MPkwW96a8G zsd#KPh(S^U0l?#>-mK&&__}~C)~Ca8`R@u1N&AZEkVhs368_wWJeZ%_x5-L#me;rb zNp3D#G5TFM(Xh^6?3BWBU?7`s9PvVrbgI-D1EiqaUrog%6#ttrwKvG^w{vi5 zw}JCIz4aVoj(a9ws^FwXRBHSd%Y1}u?0Xe~ODHl{vt%$t~%bU^>U$1rZ<_`N)%*q#>6mn zWhW$z>_xsQ)iBUcKPn<^srypa5%+QMBo3|4PlNI52-iPCfeZAw- zVpHBhM=w#2aj8WUaG8zIDVV~vt5*DKiuk{NE_Ia$_qy0(sJ0{L%sl{c)bGw#aui@) ziVP_(n5yv6WLACe5IpFa-Oz=kbnbCZSp3+?7aLlas~L~YqE16YiWg*!tof{>NEPU=_x=06^6dp5TyYPoaN^4ZS#F{ZtJ z@WjwWWdja@UmmqS*!m%3khpmHE(}lbBW9-$24T5%IcF*H*i@!t%9vpfmT#}m{f^#W zt-tYA-m~O3zN+Aft>8fEj|@|xHy+#u(SOy+e&)jx&6Mols)xJ7k>8tdQwRw{0;}>> z4X#Zy%{X7mij)VCNRT7*VK+Ah5Hi$7lezx!xi;60srz_KLqyq`42S}_6T_Zqtom&- zvA_5G$75hIsnw}#nC9hfB=^I_D;!XcB-}M4p)a3>WdYh})HWQMRsZiS>0n*HE!u1*w9C-^ zc>MU@IwH`Q+;3fyCo;x9406p2c@x3Ek1gO z)4fLhpL>BMw~>a|8^r1Pg_)j|3b$asAy?*A@Vh^SkIcPq2-F z4lsK!v8gap_c7=H_+5+uZpPHii`=}hFVCqL)P(TRp&O4ys#mILi3I~^q%Be3Qg5sQ zLrt7S1z{_2Yb^fwbPP$VDdB>mu(Mk-)WXB^Gu6sLnZMNK_hFzaz7N#z07;VwQ?5&| zg1>&1zOI!L#_9s>69|>{e#AdHRIiGT+R4_D_O4I)KDK>*^H6`Ig$(+dMdPp)4 zYGEQc=Zt+W07T`M7>rE^y#iRwy1N=&?_jT8=w7X4V@pV!unvRg)U^g!3I0pIKe6KZ zkNi0ABA9cqUi+@@r&3-|C@@z2PghqXocj3!#03sgZtJ-P- z+B>Bd_f_mCdfGYw0!+c6mw$t5)QaLKIIa*P z(ll5zS*2*>uAKVDh%uLnlg^ow+dfWs@woRC0rVU>fxV`BH?vqU@iLRok@-xf>ZM~3 zL!DV1Vo#6B8xHA4Gyy!QkJ_-V7B@Ze77`lt`~1yUIsYsDu;~>Paf*!;`p4rRpRvYx z1CdnY8B{q!0zAF2NBS4XgcLT<@awlO zd!*jF{-X!W(EM9o_5w}DbhkAFVe_kyb2L(9GVRYR67Bn3fP1n9O9&SZm zFx7N`B=N0MHa#jb|7RbkOoKG+f<0Jw$Ad|h)p93L|~=^w$D-R>0FfaH>s zUsYZ$HiW(H$%)xNwS$c#L*-27p_vVdf-tfiZ}-!eJyuA%Hnl5WCA7ykp4S#Q4aHJ= zjlXr%0IBHdp!FRlmTwZUn!ciN8b}qr1fF5;((|^t0JaeG64xr5q_lONod>Z5t zAFi1Ua3`HjP8?RYv)bAt`{?5i6?>I8OqF3@hN$CUleja{Eiq zj`Z=KBQ5GeI4whKWTzDXT_+B-)$b=CN|89&sxDPe+kWC(3z7)6@_iU<=ucDs+yAOc zNaUqYWvF>p0>-af9IqAL_l*stFw0VIA_08PgWn?QMTtfofV!CIBR@u_b4k^v&v*1G z-gs%Yd2hrtI6Yq|G9&zNta{^Hpbj5Cq^YH^%&DDvMeR@DAOr&nlrNd@? zjrwO|PxoxndcwjkRr9v=P7Iz`UCS_DDurhE(Shaf#HQ1iQTGW~NSO->6!H=MjA_NbtN_dAKos7E`1<%6*}KUhd9mcYLKxBilsN z2=@d8x_^*F>cu8A+Cm1!t&^XmvvUW_Bz2n-+sUL=cXGRWiS6K_4kLRyC5)>Dg#W`MyC z`Zxc*gVzxZBlFI97Tb^q-ip2ixVop`TpwZX{DHEGj{BDzhR5q-DG{bOSnZ{l%`2P@ z`ppW>zKM{c7w;g7<%?5m@EswV&M)x6BDX``_KC8Qla0T4#g2tvy3YMoxLwuY)WuL# z+xP-0SAr&Z)`d!vANmyy)|Y&x1mo*xv)^c>n(sI`Dm*Xu=< zQsv6sx~vR44a6`K%3143&9~x~6|GnNwY86c;Vg+_bfoUX9SVo$2)@#c(@l5 zz~1L!d3I@%uf1f!IN|Ee&8D3^uf3aax%f!CFCjcTl-f~MITv*r^?&(|@IN4FEXu1# z24exi2gtav@(e>)+RQRqK9pFQJ!Ie! z>N&?B)1M2}4qPs~Ta8<0vhkB~wX=M50?1-8y3`SYQXa410*Upcwn3&MB*ZRL9091s zEXB3497mpaVVr!p;R~g|5QG;pKGim4|M9*;Qq$5GKGJ(sg!$ThvfEeYqF0@#A0Fc$ z?lcfxw)&u^bf!abL+4~)Z zNxZPT2J)!()}hb1g+a&~F~`%N_lTVGdY8 zW_1!Wri2giM7A087cEm{U1CDUx>w1}up5?=m=5Zt%#Crc%+8PY;!e}C~Efb)(CJK`aG0~MRDpc>SWijigj10=BdJ)rU=AHz& z%kvb}iUE|S|03@Xp!^odQ;2cOcfA+4T#j~r;v6le!5HwSSijU<-mUHKUf2(yK*X5) zJ~9gXe&f@BH|WLf;KbwG=%5<7HD^KkW0|t$##Z|X*Xk$opn`Vf_K8}zNzC~tO zq`3DY`JBDG_dl@JgmhCx!J*Lyf0g$~EhOdR5_xs&qSa1lJL;`56n}jNZ$NoekqQUR z?H;c>B5rFfexgxQZ<*L9nJ<`QL-RzH#Hgn&MR)rbTM?Gtd{$|f!2AvxjeExE_x3p) zN1-y_81rPB3TDik^?2q^2UuMEayS_f76^FTJyQf0b$?1|CslNdPZNl~q5}kTvt$P8 z@Q`mGUur#sS898G;$$#w1@q?`QI)8@?*Sapg~B|K!*o0`W`^ zdtPD!<=&uT@}xK-IESj+^iY~UoO~8aa{!;K#y00t)!EXJ7S#ziqwL{oFeX`-Wp9|6 zQee528i;{IaO=LROjKZ@r_)SttxFi@>kuYW2A?Vp4@N=;hC!2 z4MXVnVXqHU1`a(J2-^jYx1Kgshkp_hE|;m3t)4IgQZrI)9VDLsVTKBgDc_bDZRpY9 zTnBjJq(37eE<-H5>I>~a#RR9c+29$meK9uyti&UULEIf}y!jKoBSm-;yq#)c=a7v{ z!h}3(59~?mmD8MnDl!9(7-g~~Uu0j6OK72jPfnOxcw*`!${(>pk8=Y+?V0em8oMno zu|+ok^Xb`;7pMNO9v5Mq)K+{#uWQ==^zESsk)kDM#b8#dh>jtIShll~k_|51q{ zlF-*(BuidVHqbjE`0u!5hP_|J4h9!0g+T_4891>{7*o=i_$EyQ;*fBSypnIJMwWnM z1>+Xj4@2?!GFy7%gfjCaFNE4*`VsvFntV^1WZ(Q~0-AD1iVVgCH|_6xfS<#Zuf>U# zN#_oVwsn7qf#QDGo@A$%B-HIV1HwuCMb3qD13o)EkvRhL)gRNlutxumi(FUs6guO- z^0fq{Q+LC&FklBuRn!>az?j~d7HKrV852tW7%gF-1J9n!dkEnE|l3gnYU|}#>5WBBY4x<24 zb=ZL&adD7&GYFF-z${SHNa&&tzq{6P!0bell7LttB9zN)2~IXQ-54wD{@o^d+iKu| zHXZ`US$0K0(n>>wdT8SEUHN1Sc*RvIbQ97h;gARZ=q_t?>;ed@yXY+K#ckYz9EIeGy)WB)Lnj?1qAonr&`l~ zszhc)iB8n~5Sm%j62nisKA;{MhCQ@MQc^(@+82J+g*uVUsqvaWxd`$n5nfiDKB88B zU^Idx)3dK8zQ!A3)QCSCKtj$I4!+X?l><8P@N9d;$^EN4mlNYd|HNS)**M~TXp4rf zW1NUMjd_x$(V`7e*OEgzDPmfePCyVzy1H=y2VG?&;v7|hA(R@xY}?Tz04tddu%$aqoz1{n8J+(y=;ADU83x!tj*=D zuhkjmS-p7S8&OS7Tz2RHn6UY<-0AjGMxqC!%?79~`z-s33sGwMDv@_gaD2UTiME-n2z;YbJS4=VCdo(g z3`VD~$Xt?Z94UEwfc!?z-1?x|c0K@5g*GAqko3TE>brtNdrtw4iezamb1Wo4Ez9lp zDcQ>apthwgbGRzxl8ES-bCMBnf>89IZ4I1;r4E}*s-}DW#w&<-ka=rj&1TgSs)@!+&n5EL zxzVl=`cT>!A}+GoG2^V%8V5YU286Vv?u|~H;%|<79QgeGM?JLAm}%x}8xEe?#6}14 z0T`S9i7b4%=+Qki^smpJFeI{=NF90f)Jn%d<9ig-Gc6?4PB#{*byC-C^$siU{hfa{ z@BYuzVE`#1)h_j2v|7RmeAZh0*f{=GEO*Zqup%+M`M~n6TjeXR(br7duTz>g7wRFk z+6)_kG|Su+ZG1UoXZZCrIaxCRtf_0L02=LU$rJ{%b?0o06IP`=D_v=(tnO=@I5(>Y>;}ProP9HoWuL@Y3CqDhI z0?-@we`ZFF2eg?o={{~awZ((S?Z8=@4kCA1p?pb9QZg!mUE8lg1;9tsm^0C&xp`+_ zh1R+&IH(;ukRMN{tNhM+pojjr;mrH zgkLHpUTvSJVJ6V9v#P?@3YEcHIrE&f;3@)?1g>i_hI?I32*v>HcV4|xs0YEALoG!D zHAz17=1c0DyNV&i`#l=UWMn@b+vhYynBnwzUjZsvY42U44@45)m^@WS$964(m-7)It@t5TSm;<0T z&*FJCWJnyHT{PDH@5A|a?7sGtDM)~NRZ+p; z{-7{&3iy7!4V$Ysd23J5?lU zeJu;@QchOiH^|5jlr7@JJJcO?hM^xFgh&X)88HG9yg)!x%1_nvW-OWtL0J%(Wb#Q& z+t#h{n^vn<=c8_O2csEhb7r@~`<&cE^+NIh7ENPM|4@u@VF^g7lG);u@1rEbYN|b( zcwCc!y!2S$KJuRFvsXMf851AHWz$G#8FK+PKf@`zhwpZt;4#OvC91+uB7P3QhDw~U zbJUWGrQbdgJmGw61?~q8&|BQ;Z&|7V-l3}aBGE#USCP-@X9qmjPyN;p9SZ^Hx6A~k ze`!no6HmyNe5|=Utgp*JI3u5sp)Q3oujeMG9*mO z0Kl{jsd4BJ*bA9S?T4vP0fToR?TFxvDib6M`au9$gnPa--pDsSI{>5vr-q4!G^XXv z`%XWxDFO1<;3~dLetMhjH2|O+dZ51WkzH0PC3~pY7Dw=*N^7VU2YwvvLY6HuXcBXX=_>z=QG@dN<8pOWu&xh%PFCKg8&b-t_`M!S3{JeL?j!&oMW$s5NVI(ODLE1*f zP+r&G$>;Hv*i=}5ZV{xPc^{46j4a;k@DM6mf>;!gC;gTZOT}YAa}ckM&a&0DO4z+f zgP!Tv*{$TU#Ngm`gz>$|0z+Nbcx#2C=l0J+9eQ{!0$?gN_$h7;@>x)uICB~ZYRchL z%4eq(666DImf!sQB&H$H1@8xLxi@mNwC`o6xr!cyJHhdu9dl{n>Tpb%8fWMM0$+FD z#{k?mdf7Hg+M?q?&o}|wyBH{ z3zm8p^(`Pgj$s?! zekK%`_f-Xrw`kr%W_zq>$8b2Z-2QnUC|L6F5@`l zcG-mY$TG~aS3fKRtiqkcVwU#PjAewQw+FOB#L}tc@Pg~rTi7%k6b?&y#PoF)bKqER zrb?qW#-X<~Nh06ipwb^-buo~Nj$l?qQb+mJax6a($_X1g{mb zaK)y(p6)ay=(!ovQEAmTD>Jxh9W2wF#X525;~c0Y)FQC%AQN?A7wWqkG(M?x8%HTw zL7wMPbT|gmCQ>iz%W0b*iULA_ zcS}4~w~v1&es;)yQ*FAaud%LTZ$O_jk^4i!Q3DOhYp&2am|Yr}`T4V%^=vzum>>7$ zwf#s!4lWt&k?}j{404Xmm$5A`Iu;*F#_VkY-b#zuJ0SXKDevmMXFrj&{Ti=+i|ig` zD7u={>J9|Kuy?-S+aC-&_N9kIn5NIl|FGt@F`LkbFfv_pb>C}683vD&KY~ohWXL2a+X*!P4QP=2&h1s z=gj6ujrGqAY*fW3c+ctqjzfyLX5L$7fM-X1!Fj8N5zG>~Eg*4Q*DN?yV@xP`;XV$as@FQLh=SY&91Nus#XKNV*->K9?7(!p}|&4z~<($YDD>NjaA&@$PL5 z?>!RP6a_NE2gVdF{VRAt{`^Ewr65rqqcYB@Im`h$Rl3YdYFw0qLjywHB`N@G_~$|j zwNhfCzAN0VRQ4l~7nm36Bos<}v4)g zrSNh2`Ziz8C4!m;3cJye0fYx>B?T%)bOU*_E(+gzfM8@9PplQz7e)se<5`#NJ1)_y#nqI^_TWA{KJ8zeVO=dmMLtShv60%e@K{uTQM z0ok2DNuHA-m&g|!hDg$gx44dwwG`-_MZC`}tBxOUe$(y5=`~5`$2GkiVkJB!V2e{( zTnM0Zi<~NV_ITit$XW*>BEjRVTIdK4D=f24dSsoG!nH(#QcC8L{O@s-Nol3{8jP=1 zr$fQ8e3&wtqP6;37cKm78cU~jtCEhK$=a13cBMe&6lOGOHARZ4$PrqRL2T;5dkxgX zs#9~6w>!%y#rGEHwK5yBK+C=r@I2Zo`j2cT8wKEpMkfJnfOK}!;~C;*fZev@gILDL zYhn5!Hdp^KjJV}Q;C`kU$+{CE$G8Of`Jpg70 z@);%2@3n_i^>%Vg>un!cL#24O&C{HaSQ-2!GASr|yll#xS?ws5DhT7H%MVcy?mu#X zN4EdqGqe_qzd_OLY% z0PZYcyuN4B#6U!sxXAj{)#o#SP{G7Bi^xOiBC;A!6XhH+S#@1Z{0XP=M$>+MC7%oC z^2a*?=f|F_<+O1il^YYH?7L2Zk}7=dZiWZlxkN`*vv&t=!Zsa`^k)<#&Aw+VMP_x+ zxMl$b9@HTV*=V63v{!K8#7D!4?)7=M=L@9={Vr4s^Pot+Yb&BT}knqayx`KW| zk~o0n;=J!99#T8o?ZIz!Nk9iHlEX(H9 z?sd2C$%{`tbQj7b1FXXOQaU*i-)>F|8x=+^!d*dR64tjwZk!2FJJCA)8trABTr`1p zoB8V+J>WS0G1U+a9tWx)Hza=0e?&_iT?Pyj=0`?PGt%6()0TpmDr*cw)sVg?Z$fIK;gE2k(f-9hoQo`jlrri-c$F?M zrp;i$cqIn!Szc#!HTy7;@@o69-UuEK^OD06QmbY-RfEB~q?m3RYtTi2Dc>%77z`Z) zY!ba3gf~4if+EffZWhvaTJ*u*`3F}-XDyvOP|l)VwN>QzES}T790qR7Iy-jJR{*QJ z?q|XHgE?(VxnypqIy8jB^Esb1=qL9w{(+}G3lUMFCb$YCa58I{{yHAvsdMwc zhR%X33MP!gvq6J&*U}{=jeslN9ZN6WB_RUpf^>IxcQ=B7N(l&pl%RB@ps0Y#_wD?J zIcMfQ_r3SIpf7`EjVtegw=Y7<@C{jYPM<~BsQq+k(k}Ai<(r2IiH-MoBEC@PYDVb= z6*#xzQd6f~8s5ljp+K?ohigNW{d*#qFY6ykBup>$zxxZzJN9KwVy&-VBS%(@M4+#u zC^GOvkI$ATj%nyb;JK)Ht!C<4bzjOSs2n#lfp-K;uE)J2{r}b_B?XLrIF^zS?zjOI zVAmWSCEVsG%=2@)y2Gy<2A~;KYatfwjB86>LJ=V_ZtlswG(MkT`f3d)wtSrUI^*>B zx@bs{&UX4fdui)moo?XD)ITPf5^zAyKm2~dTX&QkRV-sv8YgO*-DVB;0=T%*n=W70ANwDvO6YF#D&rgd1HCTo1op@CCy9VK;dpLj>PnDDwE8X}`=D5Fur+91LSl(e zlNLz`jHqS=wG5NB{%Dvzj*_ts@qcr^Fe^cfc@ZDn0&s-tE7v%OV&n?m0H_7cRERX- zrrtOFtY$JYd1woFTS+w)O9MEDJ9)TIKxy?^SJ!_tZ<0K_YyPwhUpBV&Zn&T-bKLKO zB*QPKa-nMR3ZG3dlGo>%);4<1K6RmnJT&UDkpuhx01#HwKtG>Zj4iwj<-i3_p1}el z0%BUOj!lCS_W-VCGWN|dmGt$ur7M!m{#B&xBto3(1aSnERo0bJcROA__jn)Fxria@ zzX@TMp>extDOU;6(J zRVxp}+9w{Wn^zvM*>5T;4Fey8nT=9-!t|`%#(M^%A?v-K1G-ul0poQ2$87YMdsP|_ zV84(=z2wc7(8a4yZ#+xc2|TsGe#V(BfDc36M+Rn8cb*z!AW2^l(^M*wvjKuEB=hDF z+d>+REdNlb!n%>*TBe29JvLbw&G4z-Ll(0~t2CK7|LJ<8i%m5%R8ouIy>5jOIK(tM zNYzqWP~OY>vL9`Z-9ak3$rW@MMeeXjeg~Xq|4m)~;={SvmL@M9hW4p^0&VR7reImA zo~D`S#!Z4@mk@fsswbX>b?S?tT&003?pNTwfL3@01@YuebjsyhHyLPjSYqwj#M?~_ zE^nw&IZz!W5F67TO(=^F?G_LY^rfLA4wiU#*1o#*rRm#RMVxM9ZBNK(Y`kMBg~0x3 z+3+|CN6JR$^)ovl6H-v-pVXU148JD7YiL9<$RNQc(7p*KoP8LyEp{e1`4=b57OQQk zrB~57PZUTrP)7tRtzcD>n9}oewR>A3{6_L~fJ!n3ze1V-5s86s7rB=&Yq$30ar;Yp zWEeMpIKsTd;GO9 zn!%asn(B(0C^)_#J*6l;U=?QYOq6ja1Uz{IPqTNEFjo|{>+G(V*M*DqDZ1Onn(QR3 zRp~U*i}ID3b;0|zkwcF$P(}3{MS*8aH7d8LR4(5FK$n|8pw zE}G&|iGEv`gkF8BTH1hs%QBb8D+jb4H0VO^zk2dxJp|~};LR8MjJOEb=tH)DTz}Z$ z71Jho2{Lr}=7WDH{GI4l7##xXdwO9XUINk64&%wzvq-`Fl3;1z4w?f+b|wXS`9<{fzJEVQqd0#9m8SjLghKeOXfwCh+J|rtTO%mKW_8D~dNZssMI+rex4+5Vq zE<1W(4%KirdVa^P(6pnA1Z1&`iRvfS_QSY=QqJ0f(tG%d5Y1BDoiBc|*@Td?ezpzcIF0y!6GqXwpI%FU)kMi^EcN#W>3adl|JjOI$yH zc|>z_I!iiGbEnO7)j!DkNQU!^qYZ$y~dN-Zh(5B{zmT zo0pQs(qw1e-4ZJ|&f3Peg0%sG{Cuf;_Y!^!;lB*AwQD3LNBhRj3k)5E_~OPtKoV-JRbgfqoMu@7&G^ZsTJ3P$l!fgV*5c4sjNkU@Xp_dAWIMaMR2b4WIpkxzuACR|5Ry$kfGHIvPI~bNP zlC9(R60d93?;Kq|=R8?N>|@)$h!$tl6d`UWta@rVk&Ey;fGb}hX2H! z;K95Gl5D1U#^dknH0IW#N(l zI3l>(S5*@!V&OMQ9vtg*gTfUp_xvr*yexsqsMh|(W9LOQ&Rgy+vc((VA zcigrhMVSs7Lm$woO=i0g2zNBskDr?T@tMf9t`>qY>H5_sMNDg;ozayiFmf|UIQwV5 z^HG+gMVJ_Qf=BF*^HllEG~QEotaeSMN9Zf_$PWQwR-zoR`g5YJL<1;}hk0!3AB!z( zNqX*as=knHg#I?7OX5J1QLA@2n9H)ZguFgVu2S#J^g?R_$ZFZZ!I$BC7!_z703rCs73T<= zP$qSV0AUVCJEklQViR7*&b(EAC#wR%_=VpK1KAKX-*~p*8szb*$HJt(RM`55cNc?+ z4qcP?jD`v!dz>imji^7J61u}=U0l3by=^y*up?Tr;j8@Y8}>OD$;#S* zF2xY{X5X8nLi1qb{d}l$z(+N;XIN<+YlKB$N7?0Dp4~IDZU&a!7e)!>Xu_kMka)@Z ze8T+tZ*t~W()@C>e+(A7nqJreAszSXmz@b*QK=(*fVy5CDoTqO`k%~|%r1dEod(R9uACJ}Y52C8N0rAdpKd!QoF;<~;0YF8n2h9ph#@-}=l zWhhDo9tO04Fb4y+?;n9%4X3ix*c7xg~`c-JN^h7 zzDzY$B_~sZdU2qDmu=8HATCLb#di@C*fJL}TFs+4+Adx+Nc-Oc%&uURW6ds#!DAfe z9~o)Vn!Pj~3Aq>ehKX*LdjM6D9eGhV?!cq+R)bO1yb0i9XXBFUd$GENJKQ17NV3?_ zf6120y3c2#JOlIM(0U<7i@yP`*K#(vTW$EbV_rX7nmx%SZIIA^ad75)Z_$ix0S=-X zK%#Opj3WVDWF}_eo%Jl}S?o@}8x$WKoB2iws!OO$$j2?G@m!S4v^F*%+ggc8L8ak#I)Hz0$=PV5{U8zDAm_{Nx_I>>{?fr0x=xq_T}mL z*l38vD1z+~6@|uog{6?+>r2g$?b(1_+y^wJQRdsf=EJjR0GBpUXc2h$*>%-%z@vZa z-5?r}69_E+yyLhS-PLdu3|ERRG&U0V4E|xRl{zf8#`LJIVrfB|c<#@SapFk~g@!qG zT#oA$;C3Qx-_FhvHeS02t@IAZ(nJIS?iv_obnXT8SktGWVqWWCz|e|+61YI@A^FNX zMwH%r1<-yLIow&o;|P_fYN1Ue`2OqBfGq~n#Om7&dm_C@cXi@=s7s_y$2+m2x}vVc zJ28ygdtVdPLnG}O7Ju!|Zq;({Yu7HJ@$I^fuv4SrTH%raAn!J^TgrftBF?XKQxZS%7EP1+>QGGkfEPbO5dsUiqag<{~{_lc4L?3J(CowY@t1e?vg%t?4`O=8&mC(XxRSTIUqxNb+{oW73ZMS5H`_cd0d7 z!bWo6OI2k{A1Y#)$5%;NXr+Zfm5qCxog5^8be!JsZ=GQ)JhA2ljgLnn1~0mR8_}RY zSn;(+W+KyEr0cNv4n-trdZx3NniI-kKk<;iDo=`X%1f_IIXp%gRxBVrwe?=mGSZ0U zV7o_MW(DTar9SlRZicYi#-(#Yx1$#BMK4fje2|5Kp4xa?_$zWX4&{HM_mcU8w(QXZ zukvsDtn77J=q21A$G7@IUQicy`4&&9G)H%6bzlks{M(PNw;6(SDhguv2{+XNi~G-} zO~9}u&T}s3qm`0MV^)wvg3%HhuufOIOP#$|QFIVs2v5v)p?f(jHNhboUFS}3HDFPJ zlZsP5ttL+S#9y`XUlsM9N-&|uFo-2fV23HlZpi_vmHgOl;dLS`*pwl(KJ{O3keWqN z?&BKdMvn-kX=0!b?yU4$VD}!{!epc;VH>{*I39gv_k41oP^(ko>=MNK84r*=^fnrF z{%xp_&7_$~(r;$*TQ7}j-)CM?SLODA972tMWF;s0o-%PCc-bIe4t*a^Ga&*MHi4u4 zeh$hO0|8a4PmXRZGtTy9{L&$8(!he9cV09{?$2?h*g0HIA!)jjl8VXBLCbGJJkL4NK7@Z8M~$S>}`(%cjoaIKb5g$rfV*tZ;j?D$Wk!~ zI7KyaiJpmG%+;)1FGS^jI<*Om*~|Ry+0#vud%nT**ty1f5DcE;wODq9S%E@5i=1ZH z$q+}4F<_O;|MPlDXlxiY45^?yl(+By=BbJgthBI7L#znMpv<1#*4s-IVxEmcPR7lR z>|OLd`0j7oo{lCyzX1QkTUAQwZ*{zOzT829ft%ooW}vWQ4;Yzi1=z6oL(S~5BMlLEt2ThGon=xk7K7B18;_HrHk2zZ*9Hj^)otz#C@T8CM+#wWwoOYQ;7d=*zcBCBL1dq7 zVNKQQglRq+xRU7@&wpyg?S(qyvZfEEUBKb$;3>BY$`l0{t;aT|Z@X@uHuZwD$3sPe z-INrRx_=jIjp@7A%CEhZq*}P+FM5yEs%;EnrzRtBp1jIOL$yI9t4#zm8);DZ?V;5$ zzIe{S&cEJTRM*qDH~%#c+Hi@|Gk2tv2!TE>u0T6~-@yALJ;YBIbgaFHNT5jpm%IPv zfzugfds6eRq*vsjyvRGvTxW)gIcxxeBNxa_T%Mq-dO1X!PTl83l_AP*0U*C5johGK zx%js3rO+gHJ09kgN<4C2WwZXtsyBYr26UNe%ao-|09xN0)Ct(;e6O_>-wwkQ?p?ad zQ*K_w5WkmHOu(ij)JR8P9$DlL6&@Sl0tVcC)_cq_&Zs+y818;QX~IlF*?#KkPD%`= zX5}^xLs4eQo$B_HfMRB|Cf^Kql~STPo@ zOjt^>{XcZkUF|d{1i-{Nu|+RJ`7DyiibRwtDyjl~NLe6xR>@gh($A(;AZ5alG8J`+gQ^DjM|an|hf_>KYL_Z}mb<{m z<*bQm#q62#^7%wtMz5+J^G0AQ)<(ts9kjj!WPO>RJ;bw)gF^G~&A3ReCAn!eRRj9Y z<_FagSTG(P(MD<+prvyDVNvEjZN#gp>7-hd;UmL@jNWp^O#~E_q^a{aHwIb}A1MG2 zci~P|kno;E)d?e#{OVt{Jj?d#E@H0oN)F&Y^3e6P#2I1XXPn2tf(BdMZ)|KCkJiL+ z;(g`bt{rL9WlVo%PZQVkQuo~z+Lyu=fpBRM8pD9Lq<4km^n}UyIS^aTSAWzA*zeQP zkkfUEemDRmT?!_xW=`l)ad8Y8kak0AwaH5Yv-f^i=?lx02E!!j&Le=sv{++(}7+lMFVU1TnZXB5_Wwt@1w5 z*iEDD8bf>ql&KEOiW9FeavpnoZ>Kdct~MsOe3g13(iso9ube0CJCkzJ#%%1)qGumG zxw>8W8opkJOT=}=cyGLPZG?w~cIpC4X~oI33_J_7MuXkegEZP&;;#|f8=L?X83U@S zY`(Ll<(8h4mXWb=+#<2nsDStya*Nhm1s6{ z3`BQapln_vIFa3qN>N<|K=9d=eUq{sgeii>f@;CKCSdy$=ta~d?!zcjn3*T&Tth1_ z@`@y~6awPdjm7iJ)YqJoD=?5WdA^Sv1{g^F=9~oYqOLFof(MZ`7s~I=vw`aa4Pi}V z$-9m7Tvc@8YbT}`@5WH(YOO#m5i$*#D1ZAHmq~-}5aKc&!5+zZHAVuqWdSrI@jipc zW*Od5>%+;s&*Ztp#b!(hFmPJzbH|!f3KOGXJ%EA6?<%#HsRB7$bk1W;2a+THJ zJ4*qi{-+?5x$6Rl-)B#-3a~RL`@7Hf&azi-Q@e+hNaNfwl(jyuJ@;l zv>Kz~Tr~Q%06+8R24(TIv)G@<-F~tr+FUya%3aTw?PTXF=Z$bTkdP4anKIFb^?DL{ z!H}+3)g+B$8jNdN_}-=nNWXVy-<8B~e1OE~UBl;vOG`g6@A?A>5F()r*9YbXBe-WIGq#$RGeo7 zRRGn`g@~2Tg4CXmfi7Ks>pe~-KBL4N<1Y>;p>zt≪Jp75`;zEkCc{SP(t}AR%ml zLGt2;>H?;EX=)GT)D-wYc*;ab@wdVPmFKyB_9^+m!A;VzpsbOBur~X+4*^CT!{PH~ z)5*M$G6bPu%X{s_@BV4?G_z~TmOZsFaaSKQ_!fF~|7%h=1_up$RQRv!Z_|*5hk5Uq zhK0C7T;ncpj6Q_M*I^CyM~z-XiYU)$>iYvr0PTpX`R9HWT66q;+|BYjFqczIFQnu> z2It5$|HG9d=Uf@3VDdJ^rGW=$6b;Lu*0m$PS7f9ym=KQjXWpTC_abO$BTq<}^0#R0 zZk$+@YUzhUW&rNXi9Vuf581UoqX@%*n2w$=4;rMgYvnqnGC2#(Bk#N~GnTuNE|f?D zSwNrL7nd6}=1cuhKQBiuLsQ>5*F399V3(X^m{fuQKUP{vh&?K&Hq>luR9C4?+6@pb=CRzO-wqne5sIM{0Cmta z@{Bs%);1aq?^^#bFI_Vwe2akMrzTv0hIQwt%@8If7LW|In_r!sWPzg!=?pJ1J<@?1 zgrz|Vmw3nWx3C*46QF2RI)eUvZn9)V0-yv0c^!mtMLDz>`4dhb=J$VYZ{`MhYFk@D zk>LJYI7~4d%E>#=A?~;doT8E>J}%Xm;pOJi_~M$XM@M_sa~FAwhaZCI*V!$H$T%s! z-0>|FClwBA9I}Xyrrd9L(cF@rG&rSzfSk*4j9>YhlE)nzkVod(NTq8&i8tY2zdja^ zKX10YE-rqO6p8-G%I07 zFN(*W9E5=+ZhCZ@cw~1p-7YzEVE@L9s8%2$er=XuUj|4#tZk&cGSl*~&VTls0s(>N z0-|vb1(-2aiT1ncbaykft#UP5!505^O!?}AK>kSZJ+}8t8?Pe`m*~`MHfU~Sa71&g zjh{Y#pt~I>!1>^8M&Y6=)uc6%VNnX5Y$Xn{c%^N%2KCQyb>~kn;T0lh6QB-|?%*Dc zSZM-xDjGKw(-7T&42mbOTDZKMoN*fcx@HPBe}ICi)Loi6UJdQXr~)OCy%|O+?FII) z_v<>o-`an=W5TPzT|x5V+-_*t-d2@`x9Je?M*kxfPP`(d`Kzto@afkk zLEoguJ8SDczJx%)-+jfXqkF*UOr{YLUZLh&6v4vEnUQq45BCM3+~r{$`E^5OTSrSE}Y|u zON7nW%2J?-#HhA1Fm&MV!}x*cg5!+D&AZ%VTgHIvon;wXQ>63JQf8c0>PN@+G}qbL zi3^AT&U$_H))_~IZ`w*_)5~}1n&yiUY!f2Dn49EHPXaBC?rS#zL=XrY(b;WK8@C8m z*vU6+2EY-9WUy@~DJ?^kk02mJ!-&&@0hiZeKaxV4_VLvgF!-82c&+bKgbNX~l4OOa z+gbpE6h-0ig7u3R^**QeZz5$JhdH?%Sr{3OEjBh7X7zGE43myovs$-b=2DW-WN&{$ zQB$pd0zyLeyxtWI-&#BujfKl7Cy|uK!ga1NbB$m`1RWxRYy>hnnE^~I4e_)!oBjL@ zTg-!fp5}I*w4UUL}_K`3fF~e#dS;^?Y*=Qs{R4dwQ<_1}`u%q(f@%E{ZgXfPG zzdim-a{SYyZyibT$D;1y(KlgqkNpvGNpp-J8DJQf#XEU+Ycy-})RxSIJ}9r&qO4ribCUIH{qMo}#W<#_awaTrz+;CZxozhC~XP^Y=JBog8~Qt99(2n>~C zBS(}}=>YzV{WuCpE5xrXN>x)+<%u;Cs)^W)u#=L1N1X}+QjPj@zP6VFSA;K8O))_J z_dsweK8)X(wr2e^u$^02TVMaO^Zmaz4!|MILW%<+q<6K##|j@32oHA$Rh zGM$_Cnv6+koLoA>0Ql6GEPn)C^(TggNGONWNkYAt*X}k1;A{j~I6oHcMUU=X)Oqkz zd)-0#ab*?emMV3I5syke!~63Nh_Ta+bE=%r$Jx}#wZ6en?^$LWE-+)D1fpn$FmJW_ zVMfRHmSrgxxUVsmvNN73dx~R-#p?lCMAXM`Jb9tbQ&IB$bQ_9PaFogX7#{V$3m$x>Ho6Mc zPX;6K<9eOeOUJ^53>R?Ke+l1?dfCK9)Sy7mC4)-fo#(oFX;WBPI)G> zKTJ%)t*T5)LR=uJ6>sgAk@)M4&~IBhFW|5V1a70pv=I3-65>x?kA?x-kP@%{9vVDn zjYtR2lT<_Sa`*8%NKve6C$@XXfS*Mw^uMl!?O!3Cx-A-Jspl>0gQ5`tzs>i+3113( F{s;SkN*VwF literal 0 HcmV?d00001 From 422ad647deda12deb7c1ad08756a66ec624450b0 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Tue, 22 Dec 2020 09:39:45 -0700 Subject: [PATCH 41/44] update docs --- docs/_build/doctrees/environment.pickle | Bin 1685223 -> 1685433 bytes docs/_build/doctrees/installing.doctree | Bin 9336 -> 9077 bytes docs/_build/html/_sources/installing.rst.txt | 38 +++++++++---------- docs/_build/html/index.html | 2 +- docs/_build/html/installing.html | 36 +++++++++--------- docs/_build/html/searchindex.js | 2 +- docs/installing.rst | 38 +++++++++---------- 7 files changed, 58 insertions(+), 58 deletions(-) diff --git a/docs/_build/doctrees/environment.pickle b/docs/_build/doctrees/environment.pickle index 48a0b5d78ffc73c729e666eedbe472e0efe5dcc2..95b180f2f1e71418ee80f9e3b2b4456ef11b6ede 100644 GIT binary patch literal 1685433 zcmce<`;TPFbtX2PS3hRD=gA={ax^VIhmyKmGo(n0l2)p&M|ZKitBY0D-5g5XyIEPc zDziE(Gbe9mKPYo|Z9o(UNI-(OWCLE@~cA0mC*HhG7_9`zK@d!x~=OvJHD} z81MsL8}Q>h5pnK~6A?F0<;@%q$gZmU_`WzNPMkP#;&K1xi+}!m&wb`O`fvJXG3<2v zPp{?u$KBDOf0Fmdr_BWOVdpyeXgYM{b zdiDDKA|DmkkBcYQhtI~HK_5SkM&14Ec&fOb?GqaPPHz;a)0c};+r0Sh%op)sd(c1Z z9-U4vxl;1qFR$7gWw9;{9_OP`_WGT~|0WNm?V@P6Da+*)i_geji!ExS(c3!r^olY;b2g7Hh?okI9 z-}>-3KKS0RU-?0PczESur#o&v%AuK;LDCuEmrKEob0{tq>va0u>Ga$v@8zu`Kkd9X zy*$oOhP~D}FS224+(D_Q7qjx(X$z_tOh)ZID<+4B-KVG1SK5PK59Km4PG7k<-) z!CDt3g?4sMr!QU`730&bVtVnURY1DT2>nvGe~{z#*Yl_C-sB)BHr#Z2dfC<)MBM94 zPWFpy2mAQ_+S+cmJ06U3sOB=1K*myJ#rRn-r%JV2n_ldUPkPz7lb_Jlerr6z3)9Qy zYP%@1!)_0?1i4c+ocZ9frc*N{u^|^llO+%K6KV^ z5zPf#B}TH#q`jvZRBFmc_VAj$gxeE)4YttvwdqCs)-^nSI(^&zab?Xt1U6Jp=iTYc zC$0XZ)jJ)7`vQJPnU0JAfarXov-T4_)Vlo{y8Q-_y8Xiesn} zX4h=XyEYgdT|eFG>}>rpwE6SXVtP3rPWCfj^PTTnO}8XJ-5+4x@IoDG;ZyaC7j=*pXSoV_TV7Dy5AeLAL0Ew z-C~TQ)1Arm<;Shw1bPHV=krj_3-CavTYqxe`4TkMpxNl%Jhif?tINn4*5Q^S*_8&9%ixBTELCj zM=rZZhOH5KO(?)({CelAec;uD{IE6YjkD1J>U1)EzIAYr9ZveDp~D16XnUQ!fC7JE z-+G-MI2jyFASji+yz%aM)IC9s4#xe#IL}7;Asj@XJjk%s&QCvaq(x`&B(v_Sa2Got zbUy4nLRC!P?7++Q$kUZdg4=TCbaK5>Ju@(NU5WN9oiAIQ*VvO~`*7CeSMBvnkMew& zJ!y^l&>7QD-zX--;V6gCDDR-Lk;13%KvLtuvi9KQWPnBqx!?|Q-xT;Fd|s9hyS>2? zYtURmJM%8RX;g#83U@os4tp(dJ9Sdj2u=#Lb(V2fu-4 zz~WyV_lgXCRQK>1UwVZuwP7-&alwLIoWO)L_(Mbuj8;HxwNjaHde^d+G2zqc z3m>nc$1@sz+rRHRB;y&T7r5P-hWq?+3tslTi6^M(P?!D!6pT&|o_BnjPb}Ug73L~;yf=UUyorFGo4!cb$;V7DnkQ`6)%lCgU(mHTt81BO*XEvkzB@)cg^xGa zUNO(Rejl#PT(kvZSzt^#x)yWCdS?`%*DX2-8Tbw7waWmb^F{moYX%;HPJi4z>{5(z zZqk3$A3R||%U`rj|J(T|_O0{gtx5Ob6jzMOZPD8lHl2RczjTDBa=zqBH_FRi+dgVb zF&t2WHealK?932`Xbz$yz^w#rT&h*GP=c!2n4%7#lwgt%=?{hb-wM~qUnf@-EqWY zZ@lT<@Qly8ID5|+-}JLCdbz@phYMfKlP;nH|2P|;;dvXu*|^R*=nIAnu5*BPZa`l( zR}Nc`yHJ3;*!j)Qcg)?+k2`;0fBAmrx9#(OZGY;qs{C3TkOvV93%9yC1Yw|Xup}79JGy8eKRnxIVBEz-LbQePi#@_4H^n$wr7X!nm67yg)ru3Zx9vVe8=82u{>Qb zZf=x^Zd0d z?q#PuBXSjUNI~q)uw7VMtE>!eV?_VmAVb;t69%qGBrhk ztchdkjl4hLaZhL8N@Q70Pm1V@#$Y4v5e@9OGx7$w=&S~D!MJk_M`cEN(?8%)zJ1U? zF0QqEgUJEnkx_mP`n%r3gV%fA{o=ZN>-vY+zI*Mv*UdO_eC@dSJ=70+@88|ae{^-_ z?(WsQckg7k_U_&pjPRS&s0j>+F;v)PE{gMp)T=)Khwr0J{NXoGb1Po?@oFC^cT}}?vm+sU+4Q2mYY%6FOL5P(i7DC zzRLF|)OmeUUVoFX(jXo{J1bi^@2}j%t9S1F zey>YoG4Hik-N3YeM19Wm{E%uGiZQ`nXQgw)*yu(3ly$Y{%Io$D#(gj>)%p1J=Ewt|v z@eTh8L;~n(Zhyvbd3VO$6Ab4OB!@Si3`WQl;gy%dJFR{jJvLmXx$*gm#oegNKYjkM z{>o{K9_!rf+%k_}qC`biLw1<)OLXxBnJKPs8WCemKNzuHyj8#idb#bJxX(TQ0FBYO zfzIvD9RvR+%+@42VxxSWZ+QtA^UgbbBWYA+>ZB_4^gIt*ZPk620s2U=rQAyJmCw+_eVwl?|q!BIAV-=y+U?mR@UT-GdA{H4_?wj$O~2l+;2Ok-B%eO(Qmp!-17O z{uW2IpKqH1aE4*7xsA@tJ>Xp4=i0-e4NBtSuqogh=7D5+-lki%C3>CiqUW0&Wxc`R z5d!m1(3et6uWpzcqtq_n`$7S!hZ#~HHoJ#JUHcInY|&wfJ`1~nnVBTsq<`R278pZK zFO+vo-|$xXC!D-_5Z%Dm@ypNK?&0m~_Cfv_xs4-4gUJ8p{j12Gm5+VCdd#8lC~*3j z530v5SC84Cwgm8a9_>T*qPm8`)2I|}pel=}`SLNFXZcBm^-hIl1V=z#fS7T!to)-rH#ii1WpAGX4GT`vo z7b=XP$n+4LV;8Zz86=ugzQcuZ>BBCPRU-s>94PYbZXcN!4C}yV%gV05v)%cj6WC9| zBMH_)$kjdRj?r&Bf9O9@_V(u9WU@cKWJ6*ziviDc`!jH$CS-S4$PPy>j5($+BOoJT z{TZjrZicFyf;zYDCZoy;FrHKET<9PfJv|RuY!>)W5zSxh_A!0Zg8?2P@75Z2QS+vy zo&FihR?bCHy8m@YWjkq%L{4u%KmB}ov4eRrB%dMvXQrPEZ({PxMDe)C^KB&>CJ%4F zFnv3C#g+xne<8SW+E|A)7~ zH<`Zex(6~_RFh3IoPIKWQ(VVj2D#c#;1mXwA||_=o`+H>=Rg3=Hf;76(^rQ`fz#mAbPLlfJR*GZYaK>dP|4S&-@xP3JsEE@`NK0V!0#Es*^{hDkQ^<0HNE%tUmV5MX{pKr`pYEd-@BW$X$)*+2dlL2~?e@sBOODM;tNXgHkn@R4G?cq7P&GBQ%_cpqy{UCp~u7wI#p_g z#&&G|zp_8Uk_DR*EUhL`yD^jtlr+rHN=|AXdw=?x^ZoFo&Klp~j3bPwbu?-XJ2fxc z!dxgFVBKTJ0wPmA{&z@HQ}r*sFmKgU3$<}49OBC;!DQ4uwXN%-jrxs|cHXl#GW7~+ zDW990(jg_ZV-f!^Q@_Xm8-AqP!TZPmXU(1C|F`bOizs9Y%eJXY>rY!)>XKiX6!3r2 z4FvaW3BNwK%x6^d^zv77TNaEOsVuH#einq5`YUr&JBTlp5LX&PU<$Ns1hz2m8lIb+R^^NWLKZ6WbA%8q~{iLmn zdU?bVCaEf%>v7f0|GBxjB6Ip1R)=-!t9PS~^>=>Nj^+#LLaWPGkN@i2vYkV);Sk`4@g-WA;XKvO=qyNfmjUNBsRI%p}W|$Nt2cbbYarUUJ3Ob)|}$)c-s;f7GP@$EFZfCu8fSLDg2) zVO?bdh^iF-OjALq6g=pv^VPLR*Vt9dQJU!R{_C>C`?VM4XyU)Y9SkJ@JNx6mw?F=g z{qaAUA8Grd0cEW(` zv?)ZW|EjOiovJIv|5`RA>*yLlRHgWGQ$eT{ll{r`HH5jewj1em8$xy~PYaL%yFbVVRhXDJd&Aeci>)$RwMLF zE1sR~4>0ljF~pj_ylej|gM3QAVb-JQV)=CcXk{PEnQ0cp{e1&X;|czL$xKY+7bNnL zFdo_bDJIz5BpK$b{|gARHGQpH?BxD4pG+@gUix}^DQjWEb+t-p)AZS3pZ0|r%?(KT z&rPs1tehbuQO>zPNxA&U`8Lm!;R$yY@41VnaxU>-G)Y5OCes(N?80dNAHtN5$Dlj@ z3;ZS(a{P~QY3ukur+=pxjPUnH_h>)dW!`_W4K19Q86&>3GQy-46k%Td$L3$7l;i&r zzkhQ4U*TUwA%AIpKx&t5_XKh?ik>v(*om&u-+zDl;;==V1~1#x&Tn6Fxt-}H znd`yS=@_be*{(=BoxXQC8l2d~)cfDO@_x5}#Xj%e|0b-lLeKY591qHBgfcZ^+w|Y#x|7Egm;*FoXg87%u z-~b?>i*H^tZNeAgoB7ir1_v1mbf5wLastqMU6k-^omP=O%AaYNzm&jquL`{PyG3@= zEvWJ|$afQv)!PE~%P66#zxb8edZhOR($`=Kn8;AUQu4Z21>V=k*b70+95iXa7#IB- zzbg>Gf&FnkUDB|OL% zTv6f|1mM@rI$JE|8PbxKY;bs3gZFud7d*PyY32p<<<@6b+xR1LdjT-WHn zc;ic91sjC2e%Y(i)l~I5x9C-me4ne=yzd?s{9mLQ>Dt#{cPccm)05)e_vi{`t!m$Q z+j@=I*Z66H@$M*p0^_YkVDoY%pl8MVUo7(cQSIBJ{Pd)F_uZ&*NaYFcMAP`<7(0c} z#!XKOZs;8=QHJ+hF+=QC;bqat!G2ovV>`x|TEJ%AxtCtb{S&OJNJT`)Pwm$|}yN{(2(7e61psKh1SyI+jnP049u5bv#Dj^0WY zm4glM#b1eDG{q{#N2eHj1eK_TKxQ#CxLW_MZJc zde+x-qO0~Ezd?_ScExHIU9S zRsU99r**fuK79oXn~$m`-y?mHzk@ym$O6{d0-_ zxr~4Q1m~&jWADp(^s%-qDEYIiSAG|w#)hg>sJ^DKy`pa&g@9~##u@3T; zU9?r93jOs}{L^{w=U5!za$h+7#ckW4zT%eencW@J*Eg`6nHFcqLBM4JRH@_)2dScIDpmO>D5o-b!rdFz{GM-G%MoU>F>!L_@z8{q+iR zX?6pI+0HzD!(X^>R`%0VGmh5z!Qc7%KhDS`Uuu8Fe9iZaf?3E2B~CS+0s~()9)@XGJ60$Ga_hmzg5C<68g%(W~}O z5tIDZSx5>=;9wa1we4rCSg5^;m5?$1?`im07K(AiU{p~^FlKoLEExO54Byol=olss zy#(=*u>!gYGG6nLOAtoBj51@hbPwlPMYa38YO(E`KE4OV6lnHl;n36Z-ry0oBSt(M zIuBO;JRPGAc-0(ZGT|E~;e%G9zSkC^D-oH@D9{uy7EEm(W;s)hU>1&P$hHQfLCm4s z7GCpfh(Q?nbKB3>FiPG-vMQs0emv;s+5Np$(a>*dI^%p-#gqnRR>(tcw}CvgW58o6 zK^Pg1WCQ*>0j)ZcLwc{m_Fxzs?r>u?_-WqX#j5hikbhg#5)u_2yaZwj_^J&)eJf&6 zeH9O~JsJVVEEl(*-AuK`-_%4v2vcE~5Dfdy_Ong1y)LtAvR!>4Y)Nf@c7tBUl0;<2 z&w`Pb%Hf=`yJmtTu9j6zCYu8A2or$J2gAKX%cP^KQ5zzyuC6#L5FZ&k9-1KIH4nK2 zVdP8O&+2renrx^WAIQfyQF>f<9pAiImEKy61!8>o*n7L#ChZuzg}vdzn*NGbxnZmm zU@^y+%=I0Y<>eN*JupF=V7$|au@0H}(d;plz(GOdCUF)Y8s!Hm5{`MG%ia9rbR?we zGLD1<7IVP4B>ki6T!eotAs7~(eYb~Ii?Nldp1q*=DkJk?82nv;o5eklXktz+yx*q* z0^cOVSl2buxkNZ6jwHUpRGAsYsjkZpD4&K<$_J&ldF=2fD3D2$CNcUNQd?>9oX zIE;?~kMY-kw7R~%X9gwSFhT9Lk|Jak7&D>!Wu~2V41zHB@o0XhnJf;8IS@Tsj*8wV zQG?=?EEN>9l=XdQb8B5l(Wt%+3S*b`eQ$g9-kL;jRNoFK!cWveBmAHSNH^4i8npAE z<#{k%c=X@Yb;sCh|2@WQUOOv67#V6uHi32u$Ka~f;Di`@v%(ipOo5h`(Qv$YXb&*m zz(JzIc;;+rF&HzU4ze{mjU}R((>^^E#{N8EVz($#FlQQ(Ing2!H5Nmx3W=EJbW{R| z@!vG~lpVtA+zH{;Z5Wbd@SZcY?y5p1I*AN90{Ae8es?aAb^I#xssg-RFcHxC0rg>YL z2gB$X3j_T=&ZQuRwekQo-%F^O+CZQb9`l_ueArjz6MRe47&7l(uY&>ufDsW2;ldc> zZ+pZ&Hi!AxYG-5Dt9ni@0An7q?|ay*23Hi<#Ju(`fS7^0vmZ`yEJ;++s{apaph976 z()-?MGN;}H_iq3gku2wae;?mnz#$q3mEHQvpVx9yc+5wB@Bv5Nt|>RU0L`)BaFX`-apKEpV5XE_-~QMc2*uPjfJq7<(IcV${wt*?%ms=(R#MBbMyY)^{u_#?A`|Y z%{{@X_Ley7tcn9?<1+u-m@B)#k*#cfl&#*|+S|N&|K9yw!K!)(>s-oOOW`pad?&G4 zCc&cmh7^m#VRW>s3O(DoCkRyUP)|Tm%z-$~aMWo_ZCObgAB~xut~T!N++C4&&`4Jf zhtZK&BRS~cV4)_p4@;HbpfEB#G$V&~p!UCY;E5VwD~jy3Q4I(*mIQqnNwT@Mwz-2Q zD)gi#h*F}INX&ro9x-gK3GDA^-Z_O03`TV|fHL3PS(A;qQ4KH<l} zv0GY_YXJ{;HuqL;1hvqp1(ZlE!39j-VuK%u=W7C(OY!HT8G~VAJnqti6^VR?(O3$Z zU>F=)w@aC`Tk9**cGTz%8*Z@w7$2eXmLK?F%z=K!y9^(+DgBR{QBjC2BC}z1=GY)- zER{OzIfJYOWG+M;oRIwB#z%YW*=@K*QTZxeZHChWOwfI}Y&s7xLHF%t(|LeQhx8jO z^X|%zvejFtz6UFJ?n{TMF1e^xXaLHzUL8I(oJ*`j50L3FF^|PEGuwkIV#-8Qpv;MN zaM{WY=~LAVNZ^$W00YuU{KooCjEfNH-+P$t-P(cokOXS19b^zvc+7_$D7$gz-sQ=S!Ald5UFh0%Al-Ku698I}}pf#yWCI@EQRyDq_!DLoAYkp#9 zbM@Bhy}R2hJ5qaU@Iv#Wpp7|wL?-mqxVIDZe5xAL^<;1upOUgsdr-s3q=^|A#zl-u zaqs5V&CQLEL@QRo!^T#@Fu2Jif3z+2uHq&Oy+<&NOY>Csx9a;9b@Uf_%@B)uu!age zo3!X4+uY4=ZQi_{H`s*~inv2na`+sw)qhf)B(5)J@#q zy1yHEzPUSKhrzHEqMQs4vNkrAjdNj?YO(PiK6>jpI1h;NDY~M|`O~~D(A9RFL^m*u zP4jVMe57`3eH|ajj)s?NwlrwQ0hD9Go|*Rd$(NhS0jO(bcXe~q#_>WRH5!eK*+*iT zU`H#(vwqvID=h?rDp1tr2q>n23^&YN8dgN&h;V-vO_d>H@R67R^-^w2^ziIq!%me^>G*;*1O7UUxlL7sz~)h6%^ycOO_WOcE_FD`7`^~Aiq*n zZ#9!kz%nnK$*Q$5A(h(VlS~fC$8HS^cm{#3j;3%tE4@@z$f`qOU<`NMB`l({CBZjk zd`+oImpTp~km(TG(DtQ-W$B_s`8S3GC%qRhmWoL+*!M#%9s}Yh66Xd$^^qg`>re;%U}%G$bh_) zAW^G%mKX#kC`N-s9qa8b+S?V>E{advteRlQ`>Xic&kR67V=WF6A@S z&M0nS8y*xZ9?3TD>k=}ksigX?R)HkwRIyPiL7~R7;byB8@EH3f*78GPo2r6R{o2i( zp;$o}H*V6BMEc+)R5O1mqbVS(L5Y-4f+Ex`{ z!+`GMLw`7oEfu}04kC&z129$(;()vP$%2ZVAKKR0Di5+wBcx_o>%F zFiH)um<2J+)`V&xWxFa#WV;fJNf2EmTAtcHq})@`_7L^iD=YZmSF3Cs!dTUmWoWEP zM3x06yFJPgbcDf@s;p$NRADgzhLODaELA6JhZNOGh{i;a1f52rV$=>P+@Kd!3aXoW z34C|b5BQn|lMaZ>j12Xz+((Bok<75DUNG1ll)_^=m{)K+-Uq0TzGm}TKqf>qwb!A8 zj^b`sbt$r&^IN=3A|EW+c`e<{2pa-DvcyQNL| z=&S;pOYk;IV20A`*v`R&XJG(pl;Z0$iN;*#GMulDqgDjGdW3*HJcJ<_^E@_hbjSGM zkpNXaO#sRmjC#TByqMoysqY(9Gv*Zv17E}!>G4(H2w81q0kQ|f(D?Q+zIT0u4>gCa zObyopZ~-LY5iTwVo`D$tB1lcU2@>M-D#n9h=<|o8Ja#>*!wi&Cf-vkWP&Iv9IMRn6 ze@QFxaTxqncX1G*&s&)Sh~Y2cs_hVlm_ZXwM@{AidXY#>K+2)BMWW(2P)>=%;OB7& zZzn>Yw?a#h5|+F`q>p)FOAv-V*X@5i>Ef_u-<_)+-%;D05znDCqcH5Nq?SHX@sT3t zwGaWs@aJ%vVuY-^)xb6wqXg~ePZkDc3Ev0I#Nr8qxp zjc$RM0*f3a#Y+Dmxr#lMZ0c&JIyMQ( zobbDj^JYFyop`CPr>Wud;Ft^3IF4(xsF6<1EZ49JK<0x-c6>WFb{2|MJCqtK#$uML z)^_O#8>o3>Fv6F51XV+N8KN(^U1)6 z4#FrE3ZubkF`@$XrZ-ES4lpSpwTXLXPm&;9OhONoNzunw64HI@BJjc1{sA>3!L8=V zXKFXb<{}8I#rD5=AJSr0TS79SsMVdEMu0-l#cI_7G8sA4(u5+N>OI9Q12S+-ew(zB;A*@xx&K7u1gPyQi}8ZAj^R?{+F@bBYki=Yv9@p}oXg_B% z>c|KL9Fvu5BlnSr5t^yZ17jkJ>5Roy_vA)qHCdR{osY&;LZ*a|Z!VJqOA=YXF6yZ{ zkpp8QoJLtGuf790Q@9h^1*uSCGHvOKN)NxdD=MLwga(4fFe2ZrW^j@gA$&F@C_jy3 z{e>@qYH~ESQ1hW3>3wMNKN4!2cs|?8p9m{ZJBAr7gvE+-vb6Sbs$eXOn(pvZceb=1 z5_7=!@D3l(_4zte`|jEuJ|19#4ns3IsAz9Sb2<-@>1eZ;-O`ld?pk`rR&7MJ0!mCK zMcCkxZeas~unyG*XVDonCi3bIB}omN7g8nzGMzC;vtcZ=-$M~%sjjb9ECGv8f#qHXJ$j zF>GJ~kSMx33T(#&9u%{X#))PAnvCK7nl!snE$;fsa4eUOsAHr=*#T~Wxa0_kx#YAg zaC=bP>-T6rL#E!fK;UB+F3kE-hs+=lM&!ZYF~Rie#|Y zmmvcqF$MKL#t_`+9^&d(hv>=b7jR65GgTZ}A7_Nn7K*PZ+b`zCVPCeGBGM4qFBVv@4f_)e_IX0;~q5_EMwxG9~F z$8=?rN2(-mozU0w0yQ>k@&c}g%zT$f*4ZLt4lYH8t@(+*tT9;y$7JuZCI0B{oz+fj zw38p!Hv@I%JlV+Wkhut^Chcc|SBh0S=>i8@i1x0JlWUH$KsvnyWIEHOTDo}jpyr06 z-6^iTLA>b68aZg@~WZ5EJB0EB&Lry5@L{wkUuSWuR>)~%4b<6 zqB!QZowN{Qss|~ah1TIRF{YC$;smGa1QgDI&V>7{++cgE?_cj~D*_eT0Gg$>4TbXX z=G-CM&&1QIYC~z;Wd36;Y4tt4$?!+WOm6F#$g%skj#{nbS=0e86Whka#7LD0t5O?} z#z=r^sxbAkFqNN&v6jnHVckR^muk71Toy7d8CvObl}Lb0W#S!UOLbOqhS9KjKWU&o zC{x;=l9Y*w`Jv2dogqM;MMiK;V|{B$vpN~!I1#By)wj;7HdA;;Wl|HPT6M1DhYSPG zFp8QXoW)}zPl@YKyHc#hlxX0X#&)r8n^_fcuTOU$ry#rA~GLR^n&lB_27eCYTT^Q89-+9YY<<&_!N2& ziORfw4^lqiwREB2MS74VIG4h2#omKU?Lk7^ncPe6K}znR2f=(k*_aK&gsRnv&$Mwl zB$f^FVuc?^L2CFri$q312o=0i}Ah0x|J0X(?#SG*@tIKf}HSwS!9&=G0nR`aByZ0BaBLT)N7;jYA(=KH{x;nKg$9qvlLkvCzQoqUy>{mjk%DrH+pk-Y3W?N?nC#FvFai~X5=j9$>cH9Fii+ull(BX*(a%(M8^bXb8w$$eO!b<{K6LR*$xq2|jg# zYX+YHWlqF`#A%lM>~@d9DP5o%3)T?|L}r7H8MY|QQQKoJjfizHCL#QFR{Gu6xZMei zLLHOTQAMbMR2wO`_ojPF{vxfpy%r*Z3MFy?T5 z7uJRhCZl%#ur=z3tM?oCT_GrQI=OHg*(w=VG?t6Om;-rnvOR=MusVveA9ni(gC_+p ziZ-pzt<_ak5}Db*Ue8W#9LJF1t24no+mE!V#(7F2Sh!TbezsC24q^DKpH|s|Ga9bW zQ$iW=WS?#ki?Bbm^}oFS(8J^Ua{UqRkO9MT`|{Yh#{H2%WH#)Vb1kN16ISHshqo6{ zb{d^a@zvR-NZ96sWtSze$*-NIMA8-?emX^}Y!G=IudZrbo4R^phC>NFCfCkaYIti6 z<^F=2s6-PKTpoBTKis)Ik77*QIF0r`; zl~*tW!_j0YgO5eLLWRg|uCIp2*c$Yg)K@bYb0E|0bed@1>P+j53Jh9u#gjoR5|cIP#?QOrZV)my9zRE@%*rvAU`Y9Z!?H2+MmDn+-IJn|Co@Cf>`YrspO_o)#x=!PdMg6#_PtU+Z%^-xvCo(<%d0d z1^}H%V1_;-OU9;wd$A_fDw{=R;h4vhY6GYI)8Y($gXi{diH3>dL(rj=MV=^NRF2vo$$&bwj7b#R`rEu84 zZz^#gM>&a#Y!(iuahX|Y80NEd4VReAC^SrWm#<+Dm05*`asN}%u)t+zBo!zHZk7&j z$kw7x{gc0_!XO`p(J}dBE>n-%4RRLh;@%Js9MI`J}?Y9#= zAs+LgS2KKOfRh*!s{M9?%g0LcBr+t8d4lu^dYO&hpf#rB)YtCazj0?>s7|M$mpu~* zuvi=fR*oih7>L@-941*9ib=?l4Zm47A>`0aEyZAQ7@n%Wf{&N6szbe`6ox}?LMVwS z@tZh1r5TY27D+_+5=PdXD6lg0|5kNqzR@g=x<@3bH%4Mv$kCYE!Hv5uIe=6nj5-Da zN)mKs3b8o>fS7=kG{QtA1rl^jqA=h_gGC9K;)(JVi}4sZ=0Sd`ECBg_9LKpIERt9A zOQ{i63Y0m?otZC9!+$51va6<6_+PdQk(h+~97z&8167Z+n4~)}c0pgyCYi91MA(Ju z*lKtPhvgyX?7j_{(3zU>;qMB1y?{hx9>nM+4{Us;-yh&JpR}w`h@_51XAlOk%uJ@p zWx^w?y+JVv7CWdTgW0SM$&BQ~ea0{^sK+Gk?SxiI0>Wc1vPX~0E!CAuRmUN-#VawH zGtej}Qv7+91vSc$%!rYIFXi3A!6X>0s(Gi`GCD-&qYj0&8n!w;EUK?PzvW@l#^<1E z)gMk;y(pumj;v-#20nqy^7*Y1p5@bMjR7n(`?iBexalm*c05RC^jipSm)7i4F497L zOy-1Fy}5a37ap$B##ot%2#}Zq-CcQSy&w5BHLk89aZt>H4{?<&@I8B-ZeepGM!5NW zcMW3#mf7J+OLmu)6O?LOtf6Eq=D`BOn|VLc0jm2mj&g49%5-Uzj9*I8sM2L}n?t}=B`hJ%qe5{=Nf zI*@4z?qR6$n9^zNKcJ-YvlFun60vG+`Zd6>b4U@%chnc zKr*M0&~Wax<~&!uUcwTO*(z^H#fc-`rrxkZW2VYh%6qiUY$<+8A~GX}v(8rR4?(3z zENM6IpqK-jR|JP0t|t_!jy1cp_yjC-<2a>S?u0*552HDA2?C#l?pu^2A-y_xK9k!4 zvfNdxw6yki;Q5=j$^eo%F@8$Ocqe}xeD+bD5j%sR7L}Q=)H5e4d8?tf_r*5+K^*-EGnX3d?pFWY~*?SINhw@&h4Qu39;0O z@Fb^0Nqn*dA~RBSCK);TAmmh|GljGSWnPNTBrhF`wsC)Jb#L?Dmf%*SGlg3KGe7m+ zl0O_MsnLl->kpe~d_gC{4o5lub>shNudZ6Na@1Ob$P${G4LEUt1_~gwJHvw8S6jpG zb%oSHGOMxRfE9hdpj0)hP!b;Vk+%;ui~CW$qL1Cs%KbJI%V02>H&vtH-CPrrE?T1& zkvXY14Q0I*9)YiW*V%#^z*&rUan_9xa#2PD$c!obnY(2w_T#tAlun~VGZvLl9H3!5 zUtnD}br#j79*NGbOAnUyi$(c3P{W-|AgWP4IHimCycSZSFgCJf20PN9deB7zTIdYD z{2hF0DO)jF4N+`$JxUKRR>k&VxZKF<+snn?1YfTa@akMz3f|!`K6GyI;}AvFc>-N7 zKtOy_VaJ(7b?j6}AajWrpBWbFN;mh`?+O*EaaMw(1Y#Ze47-~@mMc!0G8iCc;94f1 zI`@%RDG?kF+LCpZ(tZ55u%5VQ?u{E{;{Y?uGLT@#9kedkI0vRxZf{uI8=T> ze+mm!7Yikc1RS$rB$!}}7}b%W%4i^&6>)A2>)lo%7qY2w?wObkEVHL&j+hshS+G{N z^I*_D*dEKHOq$saBe7%@O;Q_g5>3XfEsiEj>?YA<4S|d%*-If+o?6P<#7lWltS9yq zbjui~@0gl+iV}z!aE!jG3BD1rsB2|=vAzTtGx-`z_`RkY3p^iYm`ZurWBE!`S5?%A z!&pga#yFfwdcMZeSSV)krMchlw!_tSO{HNh=HY&xD$dS*_TC~!>y%ZG$w+D1Vo9o{AyBEqYIYwd!%lZy;M?($&#YaWl3+f z3Y-!w%u#j0wIVt&ra@v-(j-JvqX~s9P^V{+H13p(MVecr#bUWIxMjJbW13Y@Tq}<_ ztl6ufJ9+SqKSiVD?3C_j9gpMc%`j=z@)G@>C z0{E~@jd86{JwtkZN^+L;0Wj0!e77`x!i?1eR%c3I6(I09=;i$)>~@flNorqRIxv%8 z;KK>FF-#Ux+q&5sBr07!rfIh1 z0Wuc=<4GJco6(8b!O6C2cJ{;^PU|)C3Ww3L3YpLmo(T7$W(QNy1j4w;Ruk^VD3^Xo zol!{v8x%%Hyh+FiHdaU@EgXR=imu0K39Se;W^$UpyCls!97cDV57YULH1Fs0DJp?} zc3MvoCZl(G3FTB!Ty|t;9Y<8b>c~A+!C(+|T*;77ep49&{ZqGX^@Q#;YFm2vmR1yF zg_=rGG}Dv=Vti+#IK4NFZW?(9hr{Tuts%5pVp|hv%!G_9)ducOhHLr$y zUQSt72*`X^G92CgpqoEQ3@FunfF*m3w}pR|h|ETzudx@yMm_e8$>CwJ+**&A3`8xZ z2V2i;iy<85GI$+qJ+JNDmd@*7nb%qo*8xpp-&omQ7p!XjL#fyjlsRSHn%nm`Hr96p z>!LdLV40T!@ye#qfzhES-J{81BAbmKmCQCPiOlRYt}^Qw6KzM$qlYW=1QIh)D#kLD zixd4+j6SXkmRW{i%wueZR%Dt_C?{7qp273TC7q6oYOMrhzDh2-y}N#ALs&{vxk@nR zF+GEkD-1Et&@&{(@uLhA0T}e%ymu%hI77ddgf~E3dg`6cl3wil%r>!%N>J#%vw7F^ z%o2-PsP4@j+QG(VCYz65_em-V$b950N}V{hPJKLD%NU@tjG`9pGqF+^s6`)= zIm`AyhPC%>C`VNd+e3-PEacU#PUG22-K(edC}%J+C+9Q7bC~M9`pFC$Igd%B2q(=b z4?n=Ak0NS#EEH?3s+U!By+S=tiN|b+=^Wc;f4hgHf)Sz$q12eJhRlPj=L!sZQ7+G} zG4CYhs#B(#-I*<)56g0*Cz9NEica@X4iwd%Xf~}wWJXMHN=AG*a@2i#7he$W4tsLd zhMH5F%^VceHJi)= zG9M;vCEredg3W;k0jHV~oy}Q+GH+zNJ4?4+hscbP<=~@FV;ov8+slHMQ(`hJqG74u zz0o93_*yj@o~>XHm6;=t`=ekIbU`mjaLiTpxn}>paO_QcD~rSoRiC@r#~ut>X-)fF z2gMx7SGu~2Rz#}#%9`pCs~{^G5{|m541tHn_}s}5I8Z;>Qpe{t(gcvKw<`Wkb_7l1 z-x4h5*~*V_!02O{;A+ZKf-w*FLpdD=ZeHC{RHHY~zgN229u)YN!IESs!B~c>MaCUS z(-tXvj;c?ryt{8?O(XgWjb*9YO`?-%+HQj0p{keCh5N!ZwXG5?mSt~nqZMqWY$}U` zVvfr5d)=^X|G+j=+{Oz=s(Y&^({c<+iD>$V3J zf)wIYVJK|`%A8i1qkN2Qf{O{`FeGrX1Yn23z=(t(P|+XKSJ&l4g4!Z#v{QmH2RsLH zK>zKNp-_vOsjZ`MSj=GS+SV}DwXGmQ)wHf7Q08=+8{-S_p;(PI$6(BXz8#u-Tx!&J z?Wz;0(Ore+v+N(^lX&=q$m-^%P@5V-49uIJ`}L8Sf$GOyFIGFPQDVK5IvfMhzF8&} zbNQG|iQ#TZNi!kzMZHmX7_JXh1LQ;Tft)%>X7vTd;=hAs3+iDqCC1lfsm#LV1gC2J zvy|(DGAS9Rt$=JFnU!_beY$B2o^PT zs%0tRm&~EeEbYN*Ft70Kp zb0!B?!xZaq0VWH^OcX6wJ|);cp$^IHQqZJd0Tgr4NW*b-^7f;IGgc>CYPvZSJUcvQ zL#oqf^STG$_SG4QL2ch^NIh64rkKu(8EzI)V>&no_YwCOH|tcXs1pf;zJ@o68|GqmU~)p=bfQ3>LF^_0yFz80w&{P8#4adeu2E zzT?AHa=7EeUB0;*?M6}q-=lUh8Om=7NHi7$Db(u5X0g%jCq6i;cF8m8d{m~bf)7Zy zSuYIRR38M(19%o=Y$5A78`&^#0DXY z^wA5{6IiMkp<=<=98p7S%EDM&H_%iO7sq?1TFnyToqlMItr`rbu1W@R0@oC@~9j$#tsII zIV$6$%V8Lz_SOmw;W1OyTW=P8M!nFRnn$WJ3J)&Dh55#IuT{wHNzJ)RIOeJ%Mv71; zaspl*E7!_opkj{1Ni$73f^%l7`mr}|VV+|t_2a?C@+@Pcy7L0TM)hi77l!ewOPyiW zeh^>Pd?JEZEo?T4-*P-j2C_<;4pHGO%XV40vTd5$5>?(bLv4|`wkscl{K(=*2Ds{G zEM}>^kjgMm!&tD|3? z(O@!b6%tc`zWk6lMrG#8M(CMkC9xQbS*jq&-C1G~BoUcW$hEXU6Dedq%Ol!FmX zl?W;|Zc9$Ccwo#_4brQd(STV^>?mv^El|zlRE&vPGBp{Ya0YW_@Pk;%gAW5_yZCHZ zFE@Y8e|Q!ar#$O)k2+PFy9Sl@i}S0}Pi*vB!BnJrXxUlGEi{(^zBn#H!e6PUcb$da z;WGDo_1v-i>X~_GFM!m*HG;BwftY(9S9_))%I; zNFJOvlG7#|EOfs!7|3;gYVVnrDTHK3^dSkxSi}Z>NG&dNyH@2D4NEkHcWl_I0z~FR zd=iuie6gr%GEmiU3Cqlg@rl_6C{asOqsug*hsHe4Z&Y`JR@cyP2t4LOd?{sGe;Vsj zT`i}H#-Pk9BuvCQ3rQHnI6^{uZ^;t+pe&*DnF-k%`piHo=QDk3e}PLwpXtM~B=DKL z`NuSqkvPjt^_gArffylGQI7;;7Q`5QBTVC|F-ARypT$G#1;ZrA$7vISsI9kf?+QVD zG?oN4Q}GP?IDu6-L$zjR5m`89!YI^d8e{XS%zmrm!r5FFklBR(29qFzxRCw~8uP$6 zlu}^{lF5Jgrmgyh8A350bNL#?z4*g-i)gR}WH#H9tj%oTd~#tIYD=0SmH}fHjHFBb z(G7EMU-Z>Ob+TKbt59e1M&CkQ3a|JuBBCuRFUh(qbgM>Nny?mOgLJb(R_!jC86~J&dbd-x&ibS2ki_AZcJ`={W1YU>AyuRm* zH;FIeIps!izvoHJA1>1K1apYKozRyVg#s6`69dM2^W{lY)FSc(HRQKw&bcqEMKc~t z<+o_uTW*Uk0h!IOsc6n%k(v_o2EK*IA0b}E!Yvw0gG1pVA)U)8EbiM{`mM;lh0lz@ zpxC2Gm*V*XeZyr4YcWFLULLIaYyfO97#LHzro=eWIEwkyy+DyJ;Cp4HXJYYjw$?4$ zt&!BU`h9{3ol%0aoAY?X4<*lE_7aBSorQ#Bi1{tVA38YD?I4LWKPVw^Ns+OmN{kxi zZ_aJZqA4OBvx`r1;xjlvf7p7IPlg+^4%Nxz{AoKMjlP_=2gHh^Fkp;{7jpadkVfJB z)e6Beb(5ZNTmcyKP|cfL*!GYjQoFG1hz?$ zt&c|Y9)y&fGZJu2_0?3se`bYR3#+SksEMQJq?aOS1W2Z6VRB1;u=e`S;Wdy zlLNDO7?7zbP%EiIiBxk?mLKjC)E;s+rQeOkHHy2DZWpXkhGYrj z8r}UAthdBu+E`Y^icz9tZ>eAG0*INm0LVj3D=TbhTh zQU9KaV+D`uc~U$c786mk2#NUP%5yn^*?bJiwA3Y8+8-r^(*rL5WT*g$DadIP1yz$! zojz`j&QisDLR0@g?0Mo~6VTA+UpfI?z zD06^KqW#TpQ9e=)N!a?DllYAfgPOe`Z}txdiM*Za;SVsH9CuH=F`>X>LC}@>*W-_| zr~`o6MDlYi#MT+%h$IS_F-09^4b_3JwBHzvkfihJeDr7N!;ID6J!h6qy=LpEOQMcGt0k*BbcTP64d#*nd3&Q(iyCX2NBCAjehUQss2Vh9v1VImY=oZli`ma((@X555upaH}bp{6tiH+Y(1j61uGQ7sPSlR z{SXp!V3n!I(d7z~GjD3VSWD#rGNY6Vwz(v!2#Gl;xwbSshm#3is;zn!8v`;QhW~ps6_GGNHKi0JyL}vnr_QQ^kL^#ji+T=e zedL`CQF1y)b?ix+5{jh}B+*jS<|JZ$DYYXjNg_wCI)$_#!Ng7_M`}G-Lpd0Vm4&RX zl_MPAsA;974F1rDoTgFHcGx!5oL&;!z;L-s<&@JHes;Z?a!M#BDJyw*X_d@KOi?N+ zTJh6NNn+Ixfn(2m!fWWYi}$>AK!w5ur!K3!8oLa=25JbT!zfuO@3q=$cVvgvh^2yJ zSupcuWTEcLF1tYI5`Dy1odX}oBE^WzNw!7$qbDLNH7Q*~Wq_E$mx^vY?2bG1g%z2_ zZz`2UWKQaYNh)`s;YxJgi{6#QN)%ws#FpW1hVHA0Wq44`!nK67RJ=W`NiCH?%s`IJ zYHXZX@uT-7DRnUtb5OViZkAcOFT4w7smE`mmaW!9Gyjz&KMa1o zkK%Ou^7Q&0ZE@}y3*qB)Nz$4yPs%jHvNYkKnI8vUB-Dk65;L9K%hN+J|5;lKm`yS0 z3zJx4DI7ZM0>{FnbpZz$e1TCtcH`_OVZpf!X?s9exgLDecUkt}pqW2i6L{!TtcePp zOOdV#Joo9d){ z89cOPAC*RDE!37`$t@!&MXiqto?C9qNP@E_()NG`v`io6m%u?Yf4U~{(5F}v6*`xq z@=-xiKfRhjA!Kh+X#)AmenBTy)rL}w^qXmP)cMgpn?{EP= zrXt|7)Yc6i{Z#9w#OIP=d6DSrt*tMq);vI_!+dusS7E-A zY0nN4jOxT+y>tSTNwI*XBBjq}p0tJuT6Klk3|fhrB({D0!IFt3Dib5KTSq^~lW`^fmBY z6eR5`>F=-Zep?u|n%AB|Y`~btZ?Og4Sse^zcCEReU8w+>PPEwjdmA5oC!y6vTC9&* zNBXS~mrq(^GO4V;y^ZfJul@*(X+nj5kEW8kKb0xo1r=IiGO1{p(D?Tf`dp-CdXP+s znI5k>*q&WzR9(F{t3^0GCd00(h%BX7^>{~}lVO=!)~793)Fc`VU z(grHJ&;pwaAw1E;?g7qD4^Avu#1oZ(OegA??u2zBjnt$O7V z5}rEEjd;$yxjH>SmdOh-Q(voS9%3>Y6IDZ$%-y1i=DOfd&5PG-(|&U!1m|LS?mcmA zSo7}LfiVr1N|mOgSqum5;Ik4EMIV`ODyUI@(`KO z>yT_w+~7n|Ht&!mCX;$&Ec?L5?pl7>n)KxQ;^t$l5S58N?-D%19kt*3ntPWTa4v=y zVA&__07>Y)d4MG#>nZU$=$?!t7pAn3Oj%{D@ik#e)!Z@nQ<_%SSt~Xzk+}d~A889f zLqehC=6$3G$aGj%F59jhfg(wMIFVm&x!pL%s%Vj~v%pLr*>*Sr6_PJ%+YvYyBl2Ko z$R@ZK^ClgM0vl*HeX$CfNXVjwbMN@5zICM<0U5_`y8fT&?X zG2azcylBHRfJ_%PEV`Q%chQC=fSEoetsL$zLE37_pOO|M@I>VjilBiDd_PAu1Dlk(GU9sgad{tfyRNWaTJjWaW7zdw+?6jR(jQdXa^_ z8+HDEC)+%-r~&6Qi#fu28vBo=VFR=fHic98I8s093ayL zHf!&uGB}Ibti)yVz=&LOMbzhFM#P9r=tYlI-8{b|7@H@_1SC^>qXOD`OgZN)+GX54 z|0*$=)U#Q7;LiHi&AnSf%H~Go0WzKE%IR(-UUOGo!ZDTC<6<3V;sYhkd)x|-$-GH1 z+>EB>n@@@{8WVYwndWS%KABRY={KLuj9{7Cvrqes`|ORdmge>;F`3kBhnvObLEazJ zrZX8jHE)Lkk}18Q=?8OR2Qpu*pU z@2P2LePvlP7$}y(n=z#89|=oqK4WOHn8foFbR%26wX!3Kn)`_gkI6j$hsDy%3}s6= zrt(}8K0nmM0VYDK<}QiRn8@p!ce?EkPviT8xaNJckI00cS?msb!J)y;&B9_aiPtfj z8@+Bn*x=s0WAp%-&a*;n-7UtWa4TqYE3EJmWP7b{52quyJHj}clT~<3R;_xcqjUPj zA&z6l0JwY7>g^5UOsl&5zScR_p>shz6_@)3mL)asfhh+eUO!!urLw%u`{@Xl<@B1z z!ySB@K*-pj&iHYR<1OFP&BtcItxOeGw%p(pUzwpMm-%K2!uqH3uu7W2Rw9_Fn_qx>*&T8m2Z z#J*Z7Phv3%oTa$2JsLcnb8Yc#CJV@P(4C;$$q$7=sMR!^jNq8clZ-|f_ip@PeRWTe zsog*=nFq*pXjUv4BL74NL2Xv`Y$YC(d1^#p7uQ*HHI{Hpg}fTeg?nLrsd=?pp&S^~ zV2DB^bvquSk2_{7!(kp|CDr@{9gCQ?2mQnDk!Scx+#Ox)5}#RuA%`J?aj{=dyh;=79U9?`Uj8k%&s>cfazO$q?@s(GhQY)OGK=Q-jG{p5$*LPA+5=6wbv>!k~{v}jVSmmk0Lhw$n^CE05x zVVRbk^9H76dhxgJROc+E@lY5X!A-VtfCL{^4wkp0W`v2U^&c<yh{MkmE=V(i$BdxLouj)FxFpIU>iU&3)KnSZdED53e=<*)k%~?2>_W2E0g6NGCf2kazCQF#QhAEB`{NC zA!1Bz#`F=tIx%rZ{tBH7L7f~X)kbCMKPz+D5l}=H|V0U#(=3mt`SJHQTV9Y_GJY9|!rKmF0GKiD?89(ZMn&TTNEo5rK=m?Q)aD|fc;-xUo}4K<^A&j_xLYWtQvPisLcf@3O7 zk9fsE4r%l5${it>+EdJuivgKVDsgS|=BD%o3rS|-n2K^DRejyr+*-eZ&zkUthSp z%%;t7X{x2Rv%P!u?QHKJHw(Y}T%es*fN9B=YKeRI>Me2a-cl`*;aDn~2Yax&8~A#4 zNPW~UCd1)i`9GW|ZT;5Q!!DDsFfKS+lp9l1uCOPN?}dFs+*r{nD9+ zVIHlH&SklTve+rM`KQvczzF*?X}yp~?SV1J>w@D!aO{=3xI>{KJZ7TGvtP+-QhDM# zSs@ZryonoLVka8=sXcmP#GHU+x{GwLo#Cq^aGi4Z<0Q%!e@QIyf&<2K~ot}${oGECg4nkqz zOYXDDCxe4YaFmUj8ny4Rbx0t_e7NXo^O92-)!8+u7;nTzCT44 z)_g(xZjK!OL2<2hlC`?w=2Uep0e$>uuz$=_)nT%HDbjxU$?zqR8q8UwPav!C_e&r( zm`sX=xi=<hIJF*7}hSy{w$vEEe|I!pd`1kLnFhdcU%{BbO|y47hG zYl+BY$cix8Aq_aTY8p}#v$T133CaoN!9Vll7zQ^50P|+H9B=I4TkU~-JhD2V%Eza=W@&A)>&2;*F{$eY%W068=E0f77bGt>Ww{2CajFk zj={16jD}?vZXu%+s7zWJ9hq6%gnAr8FVW~y;9LYx(Qq!k?*2hnjz1SubcM-;nCoz+ zl^7VQiRW3)I~WsrHELIkWc^mK4t22_^-)>6Y9NNuNDG6LEFtAW1F--%MNDgMsm>AD z$+7){!~&OzvGUs0=f{(7;G@(D=ULTh;h3iCc}J5z9LmWFI)9P4Sg7aqL7B2LAi7Ht z<#G*3pfYLI9_hCA(?ZOJ+M|cbgq6h>oxu|t*+IM5wI@gyGMoUHiK`kdkXFuYkSSOf zs!<=5Dc>t?wRqGWX2oDKYUilg5jN=3xf+69O*zgo-Wq%^h^KT))1*gWiz!{=GI3?o zCQp&&@wjUtrzlXFw5sVbc0lDe{t~)gsHS~TrmWI`lv;%!?2ZQg6P(&4XctQVg}_W* zrNrooYDDPIyDyXyldw!%#S*wb!Vn2<3Vpdbu0kGxuuuS-0_P%BV?yM@_XmY+PYaC+ z8IY+elcJ0x1(JiljF=WODIb(6t2X;&M9QUg1$2C>u&9OFY=Fze)d=uuO3;NyfF&Z6 z;gp=a*v5|>F3o)RW|zK@R~-dL(?c3M7X)dd_)&DhM`L+JklK{aPyz?b z)EEWF)M@$E$%`|vSIArdq_`H}xetu`}hOs#LExODYCr zzCf}l99_sR3>q`RzxtA45_iy&;kG(dn=*5DTtUB*mS}YNn(YMEJ7qVTW5-rIdJwWF3CA7D(Ty7#;TXPA0L}o-{ zYHLDERJeEQ?`N%jBt|D=Nvn3mkz=mMWpaocKXf3Qg*tt323|nUqzneW%b)}#QzFiZ zq}(42WZq95h3aA&OeV!zfr#{=`xw?QtXCbI=(G-%i7`-!h!5fHWUEnwNuAe%GA%}; zDcZpZG5cej@Fb*GldNZAudulgDcO5xi#hjTu^ityHz;j~gFo>Grd$LvXNO5dGIyO|R&54`s8MKl<0uxgftf zqaZjYbku#Co#5My-C<9TZ9iI`f3EmbBpk#zP-D`n=wV5m~7(t(WR=O3!f zLgoTs(yI0`tP>6vG^nYEv#Y{_b1}X;qZlJ(oX7)7b*S@aXD>=cz{Q!>jz*tqJ96k; zkXgoxaVMqDWRqT^v6lE;n6J;MB%EtO`KqYzyT7~!?Ne}(X7xo+g9fz3j)0)K2&t&D z8zd^15aJOeQ>LP=uKD(mh&z@LZ8_9g#EE`o3B(SSiLu@|a#Nv$_dD7jE^c-qJQpQ3 zgem>HUxpHXkXvL%q0xJ-`WX;cY88&gM%x>xp^R!Y^w0aD|ig0v+r zOPh+W;~sGd(Y5ReF%J+ax$2;N`%-5=bX`}#EOkodIISojJq{KwEy2J_TqaNXwM2Kj z1oskjvni>|?$6ix5~MD1S?W|D=J$0z{}TEzADWAh>chhBa|wNz-)$nBZ1*)@%Le;d zv`0uy8Aiq(qOoj}2+KL-nu>*p3>p(53+l=MfoS7x5Co{H$vTlLIHtl(T}4H&iGE+r z#LplyU`zvtzdg#`@({OYG;sK8TTITfr%;&`ZLzxD9^^E|-_B@TY_R!5O{*x>AvPBP zL!#OOnAKfE+3GlCzEW5ME($sWzbLdHhIT0=l%bBy)M5nSTm;M{R7EKF75F|$?E)3* z5;RF!u5n!^WeLiZ7}``)2CG{Si}d;qHCLg?J%fge1;1Ps%Ukv6>q4DCRf^%kGOcKW zv|OQX0mhTpE6LSG0ZEq|0J4%1pYk0XogS@7Qb*J?xfqeju${?~9fk*@sDbb- zB7?>x@ZNifNnM0G#`+`L1|ph^Dph2wDMTj3P(8R^z;8bbPJB`06pfQXnHKFbqD^eU zpTAw!p)xVnRz;7T*i~Ob%W7z#OU$rLoszk4X7mN~5@dF$ObmAr$y~VZT2RmL4(f54 z96_*rC|c5`x&%el29W8Z21IvdAG~M-vWQF=)hcdx+tE6nMQgP}W#ULuv*|+A=c1BY zL?(=Cl0JVX_!g~61ITo-e9;QMh2=AdOo-JV(ozrd*!#}E`Xi0Wq*#>|J|K0fE;dtI z#{ssjFD!S=1$1L?(>PCt6XvsQHLR zwUGxx%WRFua`t{v55$-(V^o*!0eOPTqIFqHYaY7tM!7P4q98bGE? zNjZw!M> z(tAqAWYWkLxCf-UF6s(OP^OKH2;aI8EpkyKB0MIGB3R71w|m$H7Yw2ojbJ@krjFEG zZu0QwY!+2-3CgsQ#E;F!(P(hHsKg#DQ)8{93|OjXvc#xi{x!!MIu|5r%d}kw`%1HM zOQvrZZOc9`lSlPVpPKIB%hAHf7p?aalxeYcM5>3MNN9fkwIeg3xd@mzqUY>xAOH7Z zlwv-U^;NqbXTdT%X2{czMLVa?G%nZ34Jvax%g=Uke%3WE2mM~3j?l_JsP1ybAZQEKX?mM+mmgPmI zw(Rz_-P30d1(Fus1PK$Mjpd1q8%x%$%!Eeg zh(Mt-pXZ4id&G?!n@r%4p~01bP(w5>YE%Z2sNl|8UzHR-(Cx(f1{Unpt5U4?$`vS@ zxNP66#&{s3$?n(e^7@|63D&@EOk;8rDG3W&8YKnaH`#!c@CF-@>aH-eoztTqESVc) zf!p^^R@2FS)i(G*NEq!g;?L^N(_lk+xsVqN3cSaXvT@rl$K%ja zOsPq9b0(mH$;%naGnSmjIirApuWqBY$)1hI-1TGgeHA)_Z`Ft~Brtd>C=b8wCIt!z z_+GBl-DIP37M!zcoEHuaOzQ3vYpdnSAn-)oc!5Z+a2Y6Y&=$GlptEDNG|w!y(cdx4 zV!^;e6Klt_J~TrpPPMT;%~Dl(mTmoCZ_m$u?=D`{G5aq(pwJ{I6gFTyjPEk9@gJqQ zZ;Qd=>~n`^FH8yHkkEG@&|GMtg093gHAN#!!_g`hTJ{|u($Vg2SU4J3-uaR?N7HxB z*A$FgQaBhmE__K246i7t%9H1DQX1q-2v_ke%2&l~Z#++!tO-v52cEaS)Qwb}mYNEi zwU`G5{I~UWKVK(;iPv;%SppS899UquxN|a|jMUu=#c~;^qh)K8^o6&rl zs>_2z3eQ`NV#1n{WtK3F3f2o1YfRUmEQE02@lyAqI3kbCu2aWQ!Fr{VL-z{NMNKM@ z8Ee&RmS{Iy)WZbhrH8bVSeVO|P@4R?NzJBPjxT`-wjVxv{y0uk&0SzQ4u=Ee_a0Tz z&|-#~4l2tK;(_T$=~lI7h?S*yGc0tBFE>EB@R;H;K6*n7B#GMFpmc|DNW(?-#j|qt zm|`L(3U-5bA_fH4rN=7p1oaYoB@K?_ylGIv5{O`X=kZ!yB%dnE4f;I}<~aUP%!a3OFhnp27R0l1^jo+A3L%?2Ls1@Pw3n` zd0?kUY7Odoga@V{t8d=K#;Td_WHX{d0y?FGrk;!SJlS_PN=JYPri)LO4;~_HVw{`? z^*sgz*AM@-IEyJ7wDArH$QS7^hb3Jt?d-<7#s;Z~0m1dw)3SWEp2rDkP)~d)hre4) z%SFOa4e)&^;9oXDy7Fy&jRQum2&W*y_oHVNhB~%ZgI=)$0`?_JMP2c2(1Rop!FHLx zqjqOfsKBbJVP6Bwr69rg_s{oZyESO(0R!B3p3{yD#lty`(Hrzq91I*c_X=7HnjI&G zeEuM^=1g|3tmT2hePORyOvg*Lmldb5!B{DT1J5Npo$_n3pST94FM$ZQcVEyoJ$i#K zPE><6hycxFp*#B2nXZml7#dhE(0oG&qfU(m8stz22cEZIP-Jhq8zxRmgLyT>0>iuZ zuc?GI$rYm)XkfXtzbfbYcFHHzkL%$L>);xcv;-p9-cjGBi5j#I91I+9?Vr&&Eir&< z(98Kyz<b=Hr9s^%6&J2XX{exp|6_|EP9++QF+C)p|L|aN7)x(3 z8gn>6e*1u`T)9rn=o-{Ih6RQnsXf$Ke1kDX1qAGiFK35p^7~YsppQ8kj3r}0a9w&i z8>5Et(B21VV0r5$Z8xMS8ni4v6!3riXBD?LHdlj|#X|!6-=~x} z7`FljxNm<=VeRO4u2^@262-8O}1hsuQ!pQm!By z@Uq@9#|MK1f@}In=eX?c3}`qvnWSbcHQr^Y9~R}aaIY+b4))vl{t2}1B#1OTrMtyeYQjVp)5MnOKtoIb4VPet zKdlR@`qTM}M-mmZlosJLiutfE%!Yje6oePqcaPV>u|dIh#U?(D3AztKw@(w#BeRJ8 z;PqfUQI{acw*L2gz&mMv=ZT={3N*1njNfHEYcGRggZZ7on(o;t=gk@yysR4+e4s*0 z%@hdUIvgGLz8oF?X&tO{|8{eV)TH1rOF6M2AOdz&6TDc&T~BN%MkcR^C&0R6)u#XDIqXv)6o9qAp8W$#P9jr~a9 z>l<_}f^we#)bxqJ2Sjz6YC55AH3dY_^l?J|lUdke`*rg_H<#oDX3kVG7nHr9Kw*{I z7gZBP3GG$_E+>l7K+i7|0CVFwU`v)=rP>Rl9!a+aQNqN7em|l3lf;K0D48+rM^er34$S^^?3tec40q6{fE5yuAqZT8l)k~IQ;9@Ru- z6gD&gI27Du3ibxHhcY{kGo$9XiIAT`gZ; ziWI$QP#pq5uMAhTu)6F$SRAj_CTDCVf$xFEFcc{~u)VGJvxu#T7C;08WBaaQ@o|9u z{%Eio*i($X$BXj2V)kUVT&cB?I9WB}=#cq7oM!d^kiv(McSncQ-iTs8B@!xF6;p2; zJ`Mx;AE^go6AB6fLpBHieMfzFJXjq}CMKt7?x*%H$hSQ%gf6zbT)mbnre>tb=V=y8Vu8{!4Z(_vMSHjJoD9x2QUJut@cFpH|hsgR*>D&cyLKM7%yO zh;R7Brz#-v7Upu*qRKCZm-6yAO-u54;$CtnV{BxR(EPL}a3b{4w zm5bxgfBm_r9Hbc_<~A4eYF3`kXd_@%4uiXL1@jCaD$0|WGmZ@btVyyDY1bceG1U%8 zw5-GGW7{Sv#{ogMj?i&{aq;b7(R)gFhR2=1*c=YWvxxg!g`Hww_IC7>F}t{T(C^!0 z&?bBAUwmY6UmjDOYbsN{C%X^!e$yMMQ=ZK9f@LB==+xqakC!1c!##gE*N)8Kf$SPr zq8xOhU;u*QBTy2FbC96CL@qkv0cSsXf*~Ct7^WBrEZ6Com$T)1KG!F5pHp`p`wh^mN)~gemtE!Fl6Hrar%*A{r2#_%t5q zel#1W_Ot{WGU`P`;1B?Mbv83=sL!4q>^-ENtvD+MRSY18B#8*Zi+ENM#$i%aub0`K7tq+*QQ3T+sk4?tC0x? z!JNpxtMM65g?_SL(UyK(Y$WLBU4!o90R76+{B@t=GN^ULm_<<6Er!p+@xXRzIX}{G5JlkAu0cUtOU_-LzFc$Tn2OcH)oOcLFF8^Q_^gm)oMnUtoX`&c@Q zvr{n609a(&7&$3`!ZnQNYCCpm!^5%V);0oS`js-EsN+N>r9T3KCj3h-VB7+2iYamdE42~&yZej)~n0Nw( zB`JUe3$M*N1Dz-lt3qzP( z+m)Eor_6$a`hul)p+x<1Dj9(XYz_wmZ-XFedIi%dW4bcYIKk&izuaG~+Q3}r1iG~DuD+jnm?v#)#I+PC@~B7^;=$BwOuH**TN zxwRXW2Nb4000#G4%k^xqPOKpa7K6;ImZ(Aj^hFvC&B!tHtoKa)`z*LGN>DuNdds9Dl`zeRPC?G=Oqy)t!b)!JdnKyQ3r#>B9ovi z!uu>y4h%H6^}!7aAWHvvE+R1%na|W$4str3@&TuQO(xYYJE;rBZRltR5g3 z@0f$_G<>zk{=Xb77BpRq%Zy+OTwxh*eK0=*4FQ)|>T-wicSY|&{Sxy^k_!k!i%%XP z*eTV@ zm{YhQcP7^H@Kfn+YGMWmx|!>iJg;y8jtEum@zla+Y~Oy@4-g)Av$p2FT*f?!4LpwfyH$QrVttuuHz*u zK}}?%8YKu31DF)I!vv`-(<>&!Gt2S>sXD9vT4zZ zKtcNfZ1Sx1t)HP6OwfVHY@7v$jLUe97IJav3`@A6g9AjsT;YMt6{ld;m=QKDP9Y{p zFG8LR8^h=X6D|O-^i^meas}z@1sxHi=m&`5!T6dMqzDwWca%Ki#YBEyZ{~wl?~(d9 z?$bq1F9yLSH46-Sou~Y%A{xL7@^pSy%WN<~s+)-A;7xD;!CzX9EEI-IYXk_o50#1S zw^Yn%%eFjL6QfL&3Bj3E0EXNdbO_OnMkS=$6Hi9F5H=bq8?egcz#&5q1FVca9csco z;*Y$A!+;cjfC}PEbYfbsN72#cZxY9^1+zpTXv^b+2bZBztgIflqtbAox&j$b2aDq( zl`cVt2Mm@j1_-(v^eCNWB%k;manZqF`YmoO1e3oC2c&6O5dZi)H|=Jo6wJ`{n}(&r z0PfxI%2_d<9hE&hOgZ>wZ?HPS?wMaC1>+j|3j(0U;pcyK3zZclr3j}Oh+f@9Hw0bs~RC&S&95fvyn-wVFxn_CU67~z5GGW&)u z@FpKzW=VnXN^ROKWSWn5G3Zohr+gL?e7Fz96vqb^!Tm3#QBD|t_WC3)I8(hvD6%f!#HBGio0_X;+EsBS`q)>M4aV-jPuh1^i z;Ecus>R)o^m@a7|!^)qaIW%wU!k2_glBrmfP1@cJnS%q_g#m4?J=j0!QPD3ZBR&s z3pq~$4}^5N#HvRJ!Sif_VJ2gXz(93JQ>|zEO81AwQJzvTw&0XGP*7i0kAFR0o#Z(M z3uufpMgy5PDNR!HT-%y70t3~@xEh3qva-WA8$*~0XWF-AK59?G#Zs0pQ}iZ6k2}57G+saa?u*`+-+ZA06B(aM8bcK25v#U>fr^6BwIYWH!uL}T%!*>P z?2l*j;NXs+v8*Nbacc#vl>@=3KcXF1mh!d&d|U|lm|XE`L`oszzB<@_O0Ll6!*IFO z@#*_hasfMGDg@1@!_=AJKGiWm&(9=J_fNvmnu18t4p=P8&_LNHOU=sBfCpdf+ERuA zdhWXfrR{oF40wYm2xQ|RB{tFoQ1hvKHLoVlw!ds{03EJW63?{{-1|vg1s|6Pb|)R4 zKo6nAKA*YwGCKOFMe&MCP;4Z@Al8A4L~$x8yr3(5uisav375gziePd`&6Qm>}@t`7_@rcI2YR8C|)+RI_6lmT-YR0qGg6{^^EY)SLWl#Wq0pL^~R`ff| z48g)vWGCQ&;4%oN6o@yK8G=(~5s8llqIW?==Z5HtQkD?GB2C0$VF2%PVX>YB#i>ay z7!-hCfp)rpBVA+#6+B7-1BHTbk+bAa={)ZFkXOhcr7xhF`uhhD4j%2Zj1#QXGhC}m$OKdIYj~Nq{YN_oJ1-tFQ6fuu z5;lke1=Of(F;~T#)oZejIRf}*^=DcjiaJ+OWv`$hBa00Izwib4zw4us=EP-h_sRbL zlV^Wmh7s&T`EZdS|H~8?1b*f}=>P7&R8B^HIzY1KLqow5zYi#uSg}DQHJO#|{oj3& zl*i11q9(I~70XjR5cbY+aYna!O$)jNWP48p^RgjkIDo&ZZXbO}JApJ(p$WlcJdH+2 zf^As^Vn~u`AiK`U%Jt!dT57r#h8b0`Vx6Y*@IZLYCoCwC3i*xD!T{qFI6x%%JUGzZ z^68XY0Sz=MYS4iCT1F|E@uVyoK!TR#p*Cog$fkK%p@HnOpGNg{=#?m0K}aPISRlIN z6D{c^_n3}#Q$f||xR^Nwz6!}4j6gwsiBZ$wEpSehEG4CqNb?j01sa`iL}g|~y^*Pf zENR>3TZ{&>8!AoJ*V?g3^-+9SA(;XCDN6!^QrEuf2~~Rgvo*gma@*RMfCC-OY35;F znKMAE$jtKX1MU6Rry=Yyx$d#Nli1Q<15N^h@3OnlS$W&_)w7&UV#q9;fddyVkKQ|b z`1EP7e=?Yjf+H)EHaaHbcwoC^Q)a)7#!Zqckmb^7V7g>Va9$4=vd{btN=ybC$Cq%n(=>rn#~yw_u1<$KCmB|TCttAPaPHOtxGQ3qjr z{X@M?!YKtV&TQ++ocwWV7!6UJ|?%j zz12b;$kExu8X&=0$y8D!%q%N8k&xH<@Ku+r4il^>zkTSU=us-IjI>$#jUd74a&)hx z4H|OGN;J3)b2LB%qsvizuje4)VqL==jWEHAHmSc)rvN5}sjcxetXZ3s00r+y!!_N! zuL@ipn(F}`uRW5TW`k&EA)C>mD1+X0JuybyOENT60+kt4i(a zsE>-2UU%kkzr?MPpyzaN=d7%K3c-5EJ??(-+7G|i5^StFhzzxd4E}_*6NRe-Yg^PB z-qm;Nq&};`9q?LI@Fv=gs5S1Otzs>5)%xpl7qyMeTmK3V=?l1`HnAlaYY(fDkEu_c zjYk|DQgzdnZ1Yv74HV1;9T2Y~5iFR)GzM*7^O2BctX$NuIBEDQZ1V);R)>*Ho^C~v zva055KCf-?Tb<@LFhm7!kj_MF(=wewOB3)VTA7x7*%n4wfVN<0!6Y0eG;d)zCTv=@ zYToxjQSF4&>!+)+NyV8dM9s%0Nob_H8jq>RRA`jmdNpJnNb|7?g9PJcaw*W;7IcSn z@=Us5w!*!5Q-EN*&c6KHdN5JTpMl@7U_?^G=z)UuqY=5*s9VmK%7>V?z^8Qa=ZK;p zAL^5{^gEx+zsUQUIHb=9Dz^HO*;90X&ErGMP4d^&k$)eSLlyX!VulXYnnDmbL()iD zAk!{pQ9*noBre_z)QSpEy1@3pN%A_-EUgRo;4J?JK&5Psq-$J|U&kAdOr0g05Bt;Q zF(a1rhN(n{m>_i}8V}I=Bl%`B&ZZ?gfXq^MScyOxRHDeVHX0pxsuS5tDL_C(6P zVL3YMYtQ^}Od>ek$04;I{--nxEc27}!|HS>MPW*c5;(YV&>B%84`gL5rBA~2l_OIa z9H&c5aTZAWkS7XewGXQ^FRX6=IX|LB?c#tnR`NL@=VSghG$Y$E;Bl z&_L8j93T`G8R_c|jRZ-W1cE*>f=n@66vs3xS)BDAj7BucT=oX^v#$bJv79@UiV9FY za|PeTe9-r^T75LhnNR3EYc$F%&P^htgi2c*GpV9080Z`eGhzSy^cgZJv&~mV*_w`7 zM7A58n>I%Wb-%33-LG^LtIHsj#b8o+a$X`MR%op)iT17IMY#@6DxF(Nj&jAPi z(i9^!rrU!*sP;b7Lv`OCgly23Zu8C4Y`Eet{B_^vCkUZ1-Oukn*?mNJ8>>q#ZAMQA z-v)<1y6@+6tXpdx&;DO%)vVB(uIX_K?R93X{&Zi{^SscT?gi+GB<;A6!>GE_LxI@R zKxd-|Q$AAZz8Ba)4&~`Scc0cHCWW27Sk-FIMB`Ov>+bv9I%a6LlTA9UvZUb4y+>+o zW!HX44FkoKO(1#`I{Ya~0zr0~lzg_Bk0<4EaFS8HXaUGgiX4kX65Y5vn9^xGmX)1L zax9Q^*K~(S(r!(T{kyaeRI%;`t6zWd8Bi033W=cSURsYcrQfRv&N3UcZ3H={4T_v4 z&s~vYf+Abh=H+BOJX5>5+S=ripxTH25k>Ri$2i1`Ul!5Ju38T0u|q2Rtge)MMjHm$ zB#jyc?#e07y{xJ_CTO$6m4vnvv#6Sivmh?%B545;l-b3wgfiMzSErv7dm`e+UXd`) z16{U7Na$Lxj{b=?PlB*KrUHuOXn3f&!(QC8#c5THc zSV)-!)6P!1)9qjFKaQ@D`qBU-#(~9~uk% zB7l@ZyP< z@okur=F6cNV)v1O){rV0Y|zsMsRjkeUaxJF=1?%mARj(AQ7346r0xQ=t zGhnb^KBk*@dw-yR9#d1@o2o+$tWXJ}4{HdWttl`tT|5~qPgIRnKjYwdf*>yrU^SiG zcOM)Yh_0MW2gBZ1yAO7Hhw6^kesqnGgiB%QG$ql%b+!6-G(IL@<(N!x;7fx9WIi0& z-mTc8E&JbZUOr9Hu+8|76-IA38Pnc7-EVQQN4w!Onp09=V@w%YQZVK9F-;mJBuMi6 z{_9H8i-K+@nk@^GNr#&GiDrS5s}Gk{6XHY2eg91+WKQT(n+Y;2f_wlZ@VNEy>eYY%QttS#GAW@Gy*#RO%U{G&r5 zbbOLGHl5}l2%zIukQQs9XqY0{P6?1|tilE_83pPpWHzAfRDnj{V1wu)#cma-YZ{@z z4&Yp4U~@q!(5~-sDHUw_$@3%NfvQXyT^tR+_|-rBj%7}#WfTO^VSB{TI&}J<&RH@U z;(pm-)s#|;4;8lqd)hpTW3CCdKLe;55e6O_GC6`y)Au>(G)F)H9qCrzZvLIn-Am*= zt$OS)SnhP$>ZiD%E?t}K8x-1EN0VmCx~xqh4^-KSh%0%f{Me^ek^kLq|B;Cj90d}W zqksmQ{viN(Xl|Kc(jMx=98brGv_{CspGWHLZM{}`a<-+b|SN11bXK(~o8n+klP1Cs3|Gh*oeJb=vWreLsP#A?Brg8+Uz z#g-CUuFg9VNd-trIHOm)A7;4nM_L`C7+iz1NjW%= z8GVik%6_8k;@Ox#e?&T?NwvVCGyqLC*%>0}vMa2*{aE&POFETL(GBPTcIw)m?Pd*2 zyVFu7JV^j0*S*BJ2WkJ1b-{w&G6oY`gaL#3CVR!&AfCAiw!9fomYdJo%=nLvIa9OH z)5kaUeh6K4wp@LsuV`5GtmFHRx=xtcLvYYtYqIc_q%HVhreFC;8KGvEsh>JwGE%P# zMo(Kx4HzNT^yT%b)O$@d7sYNEv#fORv9(;<-|{&j_~#PqniyImlOtU*ZIBg zITZ#_LEcaO1ZP@;XlN!~McJ}Kv9(%Bt*0BOS0&w{nDi?;r&=Fz!jfMIEV)qEUXl+2 zmf8Fam(KsUG-^l*xzwZ6D5ky@u||hnN)gC)y1cSOi5Wh{l3bgA%ZlP-8+AHV%$*J*m!t6R);Idp^2REg3Zyk z*)3y)SeD)9=ADFIXyp@|w%IM9gG|;*X5XWmdy1I~e6Z}(-R7*Ox9udQoZATw>Y(3C zo}1u+6N2xJ$z;kY^2zRlz2EfqUOYc|zVrNP|Id$J>_2(_j2Tlfs|1?v67eAe4GEX| zbK294@e0nI03yL_@IZD8Pa09`OeV!0R0~{usYP(M21p4`1`F!DbiozvgDYbX4u?Ip z+VPZDcxWmet*1QO+_zU?mcI^rvxI02+@SD^1l4HgGW2hA3o~u zzkK}o$zOuwdjdzs3N)}r9S5xPi|Xy_@rRGTeEEldy)eNzqJqu}%P~RTCly8|@6lfl z9z9bvG;K10+g62|RhA%us9#pEd!o<~*OhI-#IM56OUqGhEifwi=O>U=g!@%0D+?;a zJyvm;7j(2E@EZ~wf36_2h6@>BuVlU4El2A~u}|)0y&+ZBppERNUd9}dl&qKD$ooArskV>K>G@-X}=aMW3B>k>xRH}B$GbtTSoa$zxzbpoH8LO+3 ze7QofHdzs6TQ3x^R??sE9X#26^39`%8#?#DwituS*dQ}mE%u+ke6f=m5Oq^6 zLI%kBS;}hrbW`Dwx~BY?Rj_DU0cSHf&9j}fsOLN+!-RINWeej1TJN;)bcfWk}f;GfXThz`N85X)do+%Ia zRqsm*nLB#0IHm)|bOCaFy!MX*dJAPTtOgh4ALPl63}yhqnHk`1P+-9!<1StcZ1Cz- z9e`yTB$*(vf<=aaoE?_q;~5=b3OuDdvO@(98FyfZJw#OO4Q8{FhEBB7#LOVr=?50e ziX<@TZ{n5esgZGNW!zsiEQm2Gh_A=Q#dN;nYk-ei(;7^WUW-Xz(KLu9RdCoEC>b+r zNKk%+hbvR4@5%LMIixGVqg)nv!vnE~p20&(BK6TwxP9t1Bq&`j@1s^x_|vX(Im861 zt5Veib5t(gvNWwyNnp_5NB&e#EedK-X8laX7M#KWB+K$Te2BS3Z>|QjVL_1vhRRtc zIOZ={^yG)_6L{ddIxc%(u8$~?c`Z$qa@Iy8qx@zRf_jWyR}c^aQE*8ZC+&}jsyKyh~a?tE9|$2I#XCi zXb(rRjbbb?UE@s2yLAL%2nYq4?r}LZum$PT9wWR)H%^zu0#lH#S#hd^3NjluPM1Ri z+xyOnUoQspIW5a6w!X=?@ctypogTvARV45RPJL29zyP=h0qz$iSqwsnJ*a-I^G%? z4jdxhPm35Y`|761;7F0+h-C#=qoP8GjQiDlzSZbKDw?nK>I*;JBv~zx7=$xG&WCw9 zWjQ|_3}3O_k#wn2F~EnEkFrvx>&c1&`2>;W1U|wQVtpP}1Q3&{J7mQ9V*EN>f9OC&mgM9%9WQ_pAIv~;X}&Dl{tf=yVldh_;m0~L7yuuE2NaqwyQ^ zb!Wx5tGdJ)Am>inK69!>K`u$Q;w5&m&=ByGw15T0mLYHZ{=B4HSsH9|ozQNM+e zDiVnLDHrw3l$ze*f_5iWkC;3FA-I>Jf=%>{c^1eDx<|ZlPD9HCJcI;8OFZdDf4*~8 z+o5FyzClE?T6HDDfkQ;l8A2={_W9;$+Zm=AASW2N_zz>?=Zk4OZb{)oN-(hW9<9cG zzLvHF%OnBBWNMB#^7Ey%9awr&Fm8pAdA&U5g45!_AtKWgEyr(GEtl7w z1`7=Vd}!^S!tmEG7cGa@5jG_7wd~(kE1KP|WpiMV2j!q5r%`m*YuTOxphHGbO)D9C zgzMJD{Oo93O>-QO6g2I@R zF9(wXzqM&QrcL2PN-*j09zCB)N0Il zOxr=VmspPha)O@8d-%L29T^G;%Gifb3C_bloB?uzF&)Iu66=C($8;e!Bn0Cb@3He* zT6fJIC6jSLQYMr5!uNS(5@&#%VBiT0rH3(XCm=C8WMs<9d5r%d0@#p{$(a1ex2x8L zGeAzJH)2ClznHXKT6g7^5kO3)sngGGIsv^0{sFIM1r1iTXyan{D}#b2{5(DQRV>E2fdVqWNjeY0c8Q|ChX zx|AS(ZG_A$B;bR_Uq(nNjT9X+y6kqexl%^ha+P3&&P%|e15B$I#Zp}bh|Qj>7e)Yo81ShEi?xZRAYEj1Rmy+0<54+s%t>Od^62llt(PBf&+RQsD@WT zg7w2R>#Qh7OA3rXUvoRF{m~x{Rs&{(4pjKiP;q@)Ov}aD>v3_~ z8|tXNDsg!9^`-je?R!UAE^I8{o$1E&R(6( z3%WXheml^=;izUD8&j~#SOMx@tNNJ3hm?D%N0)Tkb^IoZ(J5F2uF$eNJaCA(TfJ84 z)%J-r2$p6lu&jm(8xoRP;vS=Z{530x-DC;Jhm`lG zhb9u#k%?euf;HK2cIF#i5d_m`25882u&Fu!M_XzPY1IBt;j6(ojSYbL(;6nj?r%c}retP@rlM0-y3PLY2 zaX8&xEN4iT2>wV?1QPK1HVIgs@L~JvdsnX%KzdIgeYC4*#XSl}!5Zx4_odty0O1mw z*gT#N;pOa50BAF|+(aWj4r`)U3v zry%eOfHM3*1@SFBuOymXAMz8>m%y;9E{He-q=-3y1@#r$L8Tj#m%SZYWStamdKBjV zn2`#W0DxggQ-E1I>Qne2r!AcZ1l=7dd!dWbU_$ZOW@Tz4LU5QLSS*!EV9?*fEAA=! z16@Z=_kl1IOY+rPHBDZ@g8Bk2^Ar@>vQIaV3|B$0F+s)UOD!Q7Sgx1z6@_%80AtT} z1ijvaodXI|zt2)9SgCa|I(hC>01DQRqX(XT{ovpB`v?EFM`3>K#gw*U&pkTe?GR5XGE!^{MPl1Po!$@YVM$Gb^6cZler!}8O z1YcxTTD~8=4sJScZB>ARH7Y%`sLr-7Jq8ktQ9h~_YF0&B+f^fi@4a%_dpKS^nyu(= zp=g#Vh~r7`o6-{EBpIS;=?xiJB=ozaVX3ZMp_}6ugDHMrjOoURAQ-cxgj5Nt0Y&Pr zD{h)-sS}a3^hLk-X}CP)Sti&&^~{)r1K+I-Uw_6MQb{TC5}HVXLImsWnDubHpox5# zQb}#d(pHe*y_w*hyoy#71oNJ}eGe@lIB%pl%i$|-U%@_T9i_$tV)pomQy? zAUG4{mWE(mmRkb{zC^jz4|G~?9U@q-#(6m^_&%awK9|o(1qQAUW3D3#?o7=AZKEHq zL!S!4q&d$U0z*S0SC1xx;3|Svt&xEPU!txYEu$W*Rb8=oU`*ubaS(X2RgNmKI<8=Y zs~wlOo0Uk{IPm6e#ihWIu4{2grM+X`WeGe=^2Jl5fh|!cr`@(R1`d3QmPS9&X-ne} z!J0_rOa<*=L$_8n&%l8%k%x=0X={~-8VziEgvG}Qi$X76^;f}?=awU^JSeymmR&?6 zfL4|@aNtW=Hlk}~S+*UKV2j$%R%~pvpJ-*)UAAZn40cp~gY{gW^i`VGX^izW7^iO6 zH>B~vsBFofP{$YexNSRIrqIB4zg#W{>(Q86&euKqy{|v?=@YGL^b&qU0=F3-($1(n zT`H)+9MW`&<<@dd7t1gzL5H5rD}x568}_-! z>lrO1&}q_S^%87LCHP`Yu%a}&C!$K$tTb{wuw4t&n5b%krNg=u2DL3>OjLoEj6p4k zEE-jWmKJ4oAxdAOIh&9Pn@}e{y9P8fr0B{$i;^@f_5UuQ*8;U`hb+u zWJ+1CMM({jkdk+aMc-m@g*d!`=(}*`rWFgT-RNk4_3YOn}%%JB5g( zM1-T_Z)-jXZ%b$pL3jn?kV550$ZCgRk_L=q0yQA$ZsJkU9WBc5iWwcIWSj!mCIBTl zD^w6ihMmyuSKKAFtziu!2qVKz=s*QaWLv{(z&u?UbUm%<6d>p#bC#=#I>0Y^N-yWm_&g;PULupqu$y}*cRRXq$+@=V%zD^u68 zTWmmCV1iO{7kV(FrEjHb|OtjbeDyfFQi+6OM|*HJ`c*j@uc4h|6Gs=7LWX zhMN*Bnq)})C{vdh#c~+NU=hsTb1Vi7X}K8_jsCVSLkBX!LUb)3FhR@GH=aey(9P3l z!9aAyPv3Y(D=`%7j+H=3!W%QiPF+Mofa%fw4@s;hI~NXoXCQKh_xK6@>Q_S*}Ua2SfF7o;^_&6#v=dVli!xAi#&3Ys=|sKI-l79_;Nh! zq9aGJrbm+18pY730c!|V=!;GXHDC?l(cebh5^6vY-il2+9gHWmRK#0!fmfhG%9z!G zf;f?v^CFn!w9QKm2*R6jN*BZVY89O8m-NbYIf`SsTN-gQ( z>x|&zg8oj9o?K{o7cA*FHnVG3kl(Aw_jPi~IYPIf{h{(iVu_c`8dLO1Ua%BTLYu_@KqkTcUqEl<3Js~nO*y59%LK`@%pU8KCYam0d6&LV8 zSJrZLguFbZvwsxh7Z)L)pXE|yQ229}Mim0v=Iz4dZC@`0X+LZx@ISlE+5{K$WpmaP zkfiZC&Dnqly6)xdX8z7>B^jHFtAWLbj{EgG`cbnW2x!M3Ym2>k(vU#W`|NeEM5)6& zWe`(a5N?pc)v5sjlzh1S8%>RhUsIeN8nheVyz#8RB2T4dB5;J@QW5|f85_|dY=aCR8WP@5NLUqbR!I$# z12bFmm7jfcARe5CK|p?TE!NF6E(PNPb?7oT55 z07<`)NSabyWC}dW3b)`umx6ZY-=qp05Ox>B==uX{SIq?;eHF7X@@SUS@K8z`734n; z$U#f(DqSP8RA-DR7IQyRA_&MF8O188qkyb?fh>wmO*f(R)ow*3Mbh|Wj1t1;=*fF+ zJY7%wh)U?kI&487!e;5mvvZ*jU_pN?Fg}IO>#yicU6ZK&8N>UKpuHB*QkWt-p22%| z$%H&Z2{_Pw6ws0X{o5R&tjUE5MMtB=@Xj9)Us&G6^oA?J1|XEsi2kaW5^4L&A_!zPAwm>74)RJ7|&R~E9`B-ztUGFdDT-Lype>M{p9$aXSV+IE`J z349+zOC}IOs>iA{#K9xMfL!8)5v0vS0?GX#Wv2J(PsT^I3qXz3$v7C1OXi&!+9WoF zATOaYifGaxFBuky(E0gahN~|PI=>JObb2zNa?z|_)6`E5Jz25Yb}|s7feZs&OJHeR|xlFY{yAS^IWcTH6fB)s)-t!j+j~=olOLmNW`dZ+ugeT9= zNkRk+3A%6b#8ORo{cD!;ZTpr8EJsBTzW!BLR0a%Gx<&GY=x_U+Y}*zo0as7=1xs6N zx-XoQW;%5|*ILv4+R@!o(H`j#%Xql#Ju4T}!Q`R3BV<|(_|QPIrClMJ!B6!$M22ne z9ws%m_H3sBNKtYtuFRYG9#{2sCjU9TM-(yU$ULn>s9bVZtKN7d% zNG7-DWn117cwoE4*`lR+Nw1sbViCPQqi+hSyI$1;qPTUiddqHrQ`9*PtP6n)_5p1$;it_ZWmoA$hdK%CSng7DZU=@CyJe9*>DqgP}Z)c zc*lGUE1AO!XbH78wPCUDD7AiBzUQTug4Mk^c)9oF+2iNE(dpyp^rK|lmQQsG9jW(Q zWB<96{nbbhHrV*BU2B}imneBM3&$AUDlzy_;*Y*U&ClcEPP@@ph5%apKFWV|GJk-W z;Oat1mP_sWs5%y?@_PmU`P2QA^7LzpN>iRPMeTZp90Szc^=i_AaV&fEWn8tuSf}SXz=S%@EBG4ZcA?(U!Ww>jJK;tfs&v-udxX|88)$9EAiV}zeWd|R}DQ8 z#iaxU$e-I3b4|G#^bQ7#$Li;N@TPxK3}|Y=x1$9I005;&b@-6N1^H#~p(nGWvUeP8 zu?XhNfCxz)9>}iZNm69KjNB^(E8_r3(`iHy-oUdUR7b=jPQeHfI7v+~Fp`uS5Ok4Q<52i*&B~+UN9l`9+BSVG7ySyNi_JMykO&vXjnW#e^0ZAWTj+`C zA|LIxbnNs-RQwys2Wo1jh(e->9N$jP<|hwk17-IefUk_a>sDj(P*)Kk19t_%e8fTKH3bAvbI-l%t07-Q z@}CHgaSHZ(99mvTg$)hqGDF)A!{Vfz&^U^f-)_o`j}9F_b?SXvP;fD&Bv+jTXKoy9 z-Y5wYsQSdc?yI6H(o&t`nyperMzH4VQ1hZ<4rsdL-u5-A>P>fgu-p>t(K)QV5+H;B zmV3wNCx8FI4O24YMhB2*H@M)wu{xn1NV&t)ammGEth=Nr6op`cslqYTIamg zezIBN>%-vI*~9Y{sQD^=3+kWLt<}8){PyV0urN2s_sKz8okZ@l$|C8tfMxdX>13sZ z1fo9O^t^E*3}i`$UrvX~O!qOJc1HtYzuF*-?thrmy{+mni*|Di6iPDINs=f`@ImTN zYNZx$hVcntNyop1JjWrElss|Mu_VU!(bj>5pc9oxk+K+Z>1Iu2mns+A(2ry;)=Q8McRj-Z7y1Q7FKtr*n< zvDQ+slwARC&LxcxDevny$;WR}4tozv3TiZ?RbNDA#mgHk>b>IXr%py|B|6kBwaE{uPuw3JV^P+KK1@=FkhaOtDgR& z8h6rK(R9q4Oz8kKR~EA*u*U7YB;GnmR;}s`!j)8)op1s0vZXso!T8PAY$D$kaNT-->i?OcEl@<3~Y?!uPS&jpCsS#8aFuzCZR#3$O zL9B5xZ&RSxN3EDdeS_N{G&B( z^HDVE742v*S34AuuXjYDao3B&O@&#}7xY#RQ5)WU%Hu=J-S}CxslH2VUtv%i!3e^E zWn}o!P;k?|Hu>@YP4mYbL z$pT&X-21++HH8(7!<`B`A%~V%Q(;5H$L=jp!^+uZZ&8pl0jmyzWjcqMRT435)bos* zW_u$eFEO3zVGPj2%k7I|xt^?ghwG!Gz$>6#x#hUE+;rfJ?pI+s(h0Z41vf7jRv$UK zP$a)%^w{(nTt&Nl$T2|A9apAQIkiu#zUzoW?J;Wz)?OS|Ts}kOjr`PiayxX!uaUve z+X}0aRzcR2(f%s9y0~3i5o1HcZD%(x50I$y$8#)*>G3=Hc-AH{pbYdHi9%FSCuD$pvp|yXKBGOXf^)#<_&XarfpOi zCP=%_F+y9#Yj@iWLZq?`3nW#ATED-ma*p=wRRsNDJ|bA3;mJ#6TmWAuLdABAOHXGa zDtL(akgL~H-BWRi5v<5?z??Y(4#=t6yDDS!qj4$OW}2qKYNhbqaA-fK|$J_mFh9I>f7z3oFGDM*ygmji69zJBGEMgAb_FoSs!OgCn zS%fh_N;N3a*4$N@qk>iS3mP8>w@VB5(|K0s%BW8OA-C6yiMqX84`O>?9UScGv!=BE z9z@O(Yz#6eBccWz3huGjDg~*7Sd!A=Q`U(9K6Kp8=txBNlQgAL89}hWJ50sP7f(%g zBt!`I&KXv0ix3@__|U#*FM!Z@i`d&l=!o1R^m3OBON=!D=u5%h)RhDQ3H1Cj(4)%8 zPFcPh7dBW0g=in@&);tE%okv%q}B65C2A59^uk=#5#PfqFFk-tiDK~3@P3dQJan|C z5dnS2rh9@_@c^z)hogX&oIO-PK&GQxduVuQK%IsmVGq+wF%^s*X zT#S$D?hBHq1A#L^l5w?MP{;&jxe|lRZJDHQON^s{mRyNZ>;6nfwuM3Bfu;`v0BW~Y#1(QhBTXtGBQuU3E84_31ZRZ$ut_cF6ig9^$yQyjf%4n7O zJRmTbJgUCv2aVnKdBm~6^Inybqj50_jsgpUO9vLyEEWkI?^GNo1>cDIT{BxLm;`zl zq`D!xf&u!)O8b~@*bS@7zckYiD6n`IqA-1|G&M|vf&sdh1{0%_kNO&>0Z=KHL}%EP z#X^DQ+9{n}rwu*w8l4R$bW*ZM{{~*w0{;%6=sJiG0VF7|$KR9pdEl!laIpYPhSOkz z^ah?*X;tTsCKK%?%8wukPR;>`u|}Yv{psoQn1TcyQE2ojlOq!}p0$IWW+tbBwEDtdE-Bi<>+xdyLB2dIJr0QarF%P7!Vq1*JX)R7 zdJwbNzi;lF9QMXS781$iIcLO#cYCMuLL$iPxfG_Xr@quzT=i9i6bg*O?DrpC+ApTs zLgJJhHpVvg@i|LmRFL@DW-IFV%*kb@P_TC5z&92`ZA7050_z(U{n}zZ>z85d?@k*P zP6KJz-b^RT4Y{Xc6ZZ5*zjD%HMiLBIfTFu`dXE~m`$UB=rW$u zLg>hE=w~Geodk%O%Ho0S5}wp#@iviQDhY&`%fNx^3Ld0b!&6#hk5`Tb5vYK{$QU5# zKER_7%i-Ga**W<>w^9h`U zfL6oqppo`;Ntmw>C*$E0?k3eqNpQ&Z0+we>xMQ+-Su1N)dD{Rld( zrwG-}Co^+-kh;ijG*}H-1`BqUfyh!`0}m-5+cg|IqB7?A>q%(4Fuviuuk48a2unJUI z%tAiM`&otLmox8ix;&g_yumW>(K+O6iW4$*b(kxg(H@Kn&b#V8QvYTwC~!fXpBWfe zHS5tKL{G}Ik0yer2qxunDM1XCdNGN3T%C#uqH+CFl_YK%`iuEPZ)d$w?wMbbcfb=0 zN6dG<1xw!>OjJXJjQd<5Z>OBBr?Y44>0z+;Eoff1Rmiv?@-u^68}w@N+k52kK%JI9QvXKHsbF-$!4eWee8_m8 zzv(?j7yE__TY`3-!_^D143MHmU7kf~*1Rf*bO$mYb@|0;gAVAX%eIqvH%XGSMjivtX!3o$`@6;I=VQE|BD>nnm)WPl_o z4I&6{;8_qRV}1&j=Yf;tbfBQUjK_&q-)^<@Vuu-4;GY19kkR3R%+E>vWyd+mFhP13 z@{mFzrDb0__Z|%u1v|9>OQw}0Zx*l$Hzqn0ppo+e=!E8~=$kEFmfNibFk}e02dlX( zFps591PS)*ftJn#4h;!6@e(A^B687Jmn^dM3%1<=lw_|^K^zr7nhF#Pa@NozT}Iy4 z_#7Dm{FY2t5PEFEHxgR3WF8_2--m@@YE3v?CB10{LsY;e4IW}cM3mpE<%?^4+x)Ij zLF~8V+BmMs^@lbs+HnpF+Bm&*8+8A0yyByT*6DSqAdbqn8DsSmD~)Z-H%HD2fVWcj z6^tW8K$PRuxfF}n!Q{Gajyq7$UPHY=HG8dADtU7z*med=vUXWWP^!G9aVdq=>$%_P zVCP^#E+oML6Is2sVBoI7hJ-tgm`O{;S|j%qF0nWj^zK^ zJP_9qCeaBnFufl#t!H#u%#!k0U2zy}stI<%^Q<8-6x@y#s0E#Vv;iwA+$yEXG_PkB zD44H)SI&yDx@q_u`b9T+uL^#oMpCu`VtDb1L0ZQ3fBk5F_IrEO{{Q^nPyg$Vit*sW zrS?w8tCPNSp=aH;ps3RYH|CzCr7=M*Hf(UEZ=A)IM>K`m8vbof$Br1Yz{M6A+5-5% z06}+|eXAY`S}?&(01z>o#RC~n+k!SM$=cne4S=A#GdLXf9(=j8TdW3jRE%yM)RC`F zC=N#u{Yp@h6_!q5Ehwn3_)jg0WAY^lHj)GlMv~Hjf$Cifs5_(N4U`{Nkgl4dLO$uV z@=AXHpVRKAni$c>t}UklAc)@5e;*7dWsqq#lm1OC77Y|XHWYM=Dqo|nG1f)~4F&?6 z2C8D^DJytw(qPa)@$O)JH0-&57|ZWB_Y(R=Q_wh08lU$<&GC<%o5BSrofewItQH*M zP9?wqAq7_}2J$CTU23$BBsjB>;_>0~Y|#X~9UGfR2m8_S0WbjzF=vpsXsIXSkOkr=QTtM4P4xUvmqV0ofSb0(B>Ab z@W98@WEYz~M@4@0&AClbD&XFqSm5Q*d|HRrw z!JfFoGy_oy1N8jdy<4NFf4nHybEZn*N#u~lsw@w*{l+0Av`yEmH3btn>(jK|+(?;F zIT8%uVXciSvy9ODNu6Gr&gy&*24Vtt9*4S7p~nGD|KQ#ZY)GqAw6mjQf>Tg~8Evza zafIi;c4faT8+6{y=_J35lE*U;tQk76T9X-QD7fQZ3M>`H$Pp}&JFI#ED*6ui@4I&b z{-bg+9jy8%#e`Qu!C?*uSu4XQfSPPOWglKg7Xx+HPB8}P$y$fzko{4i{hC+<)tPmC z0;u`O88*l(UB%;iByg~Dh_zYe;X})3?#-kYy&W!sw==!yLzeZP>D1T@*?5cS**=i()gixC=bL2*sXdb#Na}_?c zWNYJGKN~j=oz+I40BW*r6^)kBHt>SqSzE;zpy$$Hu^61uj+_3M;_(DCUCCmBe%BW3 z2nrM^~P4y&zW?J775)x0bkEYPsBIHq983w|b{dD~&ZKy<+`i}T>t zD#_|Zx)drTP_VQtifI|RA2d&k1q0D#KP_}voYtp#IhU*-rPBknB-N^nD{ylvpn-~+ zZ&gN>x4HQ&ScWL7xNV47wPo$!iY`ZwD{b@kufjvR?oxD;o(fIy=P{jxr7In1=e1aj zhyB;;GiwM1E>{Z7bR@N?Aio-t$E1>?k|Q-}AiFkFHe{~MAg<7+-#B2sNnr1$J^J=Me_w+$vq5wLnLc>8||P}1RT(m%ojED zIL~|u@S(*tFypfK;E;lz42CBB)7OL5@I*No(jvBwRMod}msxH}R%4Z&#^q=8l0vkd zp}p0AlQKf-r#dIIN>{7F@Psa`3`RbJ1LGEV3ymHZ)R{cZsf#^1B Y+K#(R==vvNi!C#DR#$#Rhn&0mn6;Vee{|RfIg+7wr7g9YV%Ar zIW-lBRg;eNZYG7^s7|L|rBOAlGDY>JqdL8TQLJ=Uoc6z8r2!+9MrAfkp=w{h_c9QZ zLhr^hpkDocEgLXGsTnmNmz%A{d7#OR!^1ozw^rKzPKpvlnsFV? zW>EnVRNY2Dqbzl>7|iH`BRWM9cgE6Lff~qU)r164!OC~_km@t^IVze#1uMLrl%p&Y zbg^>8pGG2CH`Ylx%J4wb2k9K6A%x1buw-vDh7x3(#{xYW8>yD;`>+w?fu^528?EUk zSc=}^+DyB?zn-fDk=z-tzr~m-ZK@4qQ1_FpIy$mL*BA~98gp`Ol3mOC1}fCXsGzKB zqr%5kRW!C^1-^Y7RYL?-H({@xayHW8-I9k+Bt8<>M(PLe?qX=Ln^`%v+tnk9Gbj@O z2myI;8YRI!D_7$qe&DDhZi|d`--)emp6HVc5-S9P0CpDZvpU0j=+KbJd7Pl}_oO?@ zc|e2xT5N&SL9mGWM|q=Bmv)T{-dkzjJ~@dnyFcrWTVsR&=iq-xfnATu@7uMW>U^F0 zL%NYVlAE4;ozyAHAbJoYDeYxA2?Dpzi(9f>obBIHd6v%SJ(b8w-~iSwU4u z0yS>L5I?9+9)-BtZ`k-LE!Wn54L&FA^3DQ+n z8s5hB*ic$ja9-q`A)(-uC~`eVs35_1iL*uRlpqYvCOXzexia;bd{P(s`dYo?;%>WR z)|IXnlXZ^_UbS*fJ#Ur+si%!6vtDYS91iHzAn&9E=a6B58VME{ysm#{ypv$?wnaO= zky>Gc-PI$@9_@HNkvGUS#2OZyVT#=WVwT_Cq`1Nc`}H87)u=RDp4(zHP?Ks04Q@9! zw$`@Gp~^bxLNDFht1t9P8fXg3y_)1tc*E9BxwpXJbz?(o3pEL=a?2l@N%za@jll7t z!i^3+6$uLnE?pATd?g{Ug0sE}fYwX2I$Kl(z0jx%GanOiY$V-PL-uvp@Cf4YBjply zzwL27>eE~dfL1*!Lq(!pd#As(QzgH!wHi10pkU;w#QeagY@bS?g7Y5QI5z4|4`{dO zSJNZz3tU3inq0h8inZX%wQ#Di%sZyd-wzp;kLplgnBWUs@6-n_tDHY2&A{gw2J%% z35w6?Qt;4Fl}=v+Vesw1EvB>^6=-nqyS|i(RF4#I$QN$H$J|>?KSVOX0X1&=5vft9 zx7px$i;^Ldq6whGP01o1Yr0{XuQN*BmDNJ>roy4@ZWy4%ZMGXFU#ox-)OHVM+JmHs zis}}N`FS--7AUH!u1*b}jlyzm(V}lwqS5OWj244nO3|ePgAN65#K&?)bv+sHl`WPA zHyR_LfhM;F#WYcGl=2eUqIut_$D@FjpjEMD#BYQBzQ2=JCBXqT=@NUYsuF8bx-2gS z9SVZ>1X`7Xs0Me^oX8P->1Q(KcEtiN?;rr-CxqpB~V%qdt(8-<92BVy~7O z`P40g4;^mZRX>;54%}i@J3}5gAUGE_k1^Z@+`>hzmek+=bF1l^H*!4K!nq|w$(#;& zD$^Uy?NeFdB0t>*uTG_E_J`$ydrNKMVv$LygUz!>v4^{1)v#dYHddmRbXt&y>TPf1 z3KzU?1y7D+CC$MiomGz0B}WVEz@U!ovu<=R9||IOZmiRFOaoZ%6HBksVw| zYC3916D*Ju*oO4d?q0Qp#hSFPY!i_{j9a@k8D*YR+eP{`C#@{c$pM!ap)I09)#g`@ z3)0+ntS`+R%waa#!ox$L#}d?v&`wjlq3u?LC4dOGFydQ6tt2r!v|kvB;2|LB0!_|Q z#L73ha@$oGm}Y{kpkjLuCvvE(iXF2+jtd&5?P%lhSI3`{V}&g?Y3d4Zo($r6f2~$* zM#bU!n3bT8`s)fD#UL{f+*)i=0vF~)juM4wsO(fpKX&K z#sMk3f|G2TYf$j`Bfh23Q3dzmvjWt5?>P!^@DRX@r*#zy91l7wo)tLA`B0j^U#w@d z(DApUd7g(3dfw65tpI9f$jg*f&yM;SP5=?SirQy_ncz88(KHc6B`uSfb#`l+VB*Ou zCl!sPM|MY*(}#x@+_I}~sMHhV88x8Aa2M8AnN`rvud{P8n zavk-z2^Pq4yRh0WYAGxV3*P>iEyo5mZ?4q3`MLF`6*$QG?ALs+@BB#@ijHQ#Nghbz zt%rK_d+FfQL=eS0c=asneErsJ3)j-RiW6}_3a>fKll5v;p3eGuNs9upb9c&)YEFU$ za`;HqJy?w*6KzXJBh@?^#PRl4tzp;|4b~ZU)ZY5=5a7;Qn7Xe7*y%Y_u!X}=ZJF`$ zAt7jA)FTxB?KR`?XgH)Tpus`z&bw6USKm{wv*H8NEq3`fTA*Tpj6^o5Ha-k8)@3#T z9}@WZLt84@&2%*W-~tPI*w0+*WmijVV8LwK+>qI< zvNLl__Yvy3Eil;4h%#h1D_yEl3N{g>eQ&)624Ab>WH1{|iZ-KwS|uDFO3a#PU=#Le zusk8{1ms$X0BVfOOIl4_K&5LH5-Gf#nt^^sN20h&duNf7pw!mcB)%!POPlb^a?RjA zZIj~7obR4UduoY6G&o8~oeH&>#9EOqRcLUisLK<*uEJz=nI{GvI+DGYx_>M1CYAP_ zwb@~D!EFXGL3vPC8XN{!4obb3YuOz#_>;Y7G=1o#_hj>iB(EATvpnyFSEC}mNqei} za6a~S$l$+rI6CZoN&g>GR?uX1c1BLi3qC><-1n$Z^Z+RX2f9oA`-tjaHv8{os5BI4 zE`Wx-j!U|nj%DKS8*l&z1UDRkiu0<1NB6Y>`C`aU6Q&Rlly_rFwPcv$6%^CRiaKDe zPKb{R@*us3^TV^*dU_Zv@;6Vf2MEf`JiXeyEFT3ob!Jj&ut0PbM3^h+$d`;taKT?h z#nC`^Diap0D;2go4wRtpXTY)O-jLTYmsbz z9vtW{BHxspxPt%B1{qf&fy8w=?knC%H|cUbDA2e4I2pBm(jK>_$%4t&jhFMrzvnlJ$Dx_{b$Q|_Ov;c3$S0|x}}ddi2Z zHw^!G&BQAh!29}(*TK=~hWa%Q2wd4wn?BuCyb1{UP$1yyT4u>4;QOvS)J zr%X9-FF42`%&YqxniB5{HD8xL#f-u#b@=%a8j z!GxNTYZvC;;oOW7S&7(sFpXu2)_3`KAHdpYXE|DWw{I*crJK6beB5s(*;9^ER6;OiF5e4pPks6Bz zo=a6~XjO5kE+J>NOHkT#337Pg@=63Pv(p9?ttRqGPm2=aA%gGSDs4yMMyH@j%%w|X zf#agbu_&h}1s`<_DsPs?!hz|XiYa6fjKFd%3JMHf$tH6JDQQu%4H#HFi&1Mgq4hde z;96J=a2clg$)HOn1(#-84#(pTnKWFIX*50#2K=q8XW)`dlkzlZP+Kt>xFi$#MFhk0 zR!jyi$+Q};g1w_wOa?B=w4Tqqw4Q+jlh?{cH#@Xw<=BM|Udu4~b{$-Q-J)eMU`UD2 z5|y_$EE)_fUe7wA0IOp@&ur1NS~T!nuG;JAfZRP)q(Igx2(~41t#$>NV4G85aeZ@Z zS8Np^*sfJ+Gp7yai{fa^yS~TGM|TV}%ekcMY`f;PnBesKszouMbl5Th4oqIzUqpkI z7G>XnfyFEPbQUV?;#-t`iv}J)HC?tB3k?PqZ#=oE%BVk+Z!we6LM>hJhOk90d5B1r&!>EE<2g+mz6ue1z7?a) zYGXwW1{QCgwmcoohl3@bOShP(IXrNADT>EPEmFisNM8S_`$iRMqpKdP0!*YS9*wm~ z6CaCtmivx2+xQMo3l;;0wCHwdnOjw9)DAH;@Vu>hdHN<^O%beH#zPl}1pK!wezb}r z*tST*vlSGpKCyc8{}cD7-E!R6m1z0HTkE;omPAS-HP0&5;7XOM%GGvxXiL;kvPBgw z%Jyqd>Aab7?@ci$MP_oS5AXc}fA#-;2g3$%4uA+`Ad>d#E|E;c-Wvx82Qx5Gy_h-C z{qFt5&2oh8&Y*sGfCUTLk`CrJLY9Fg9iV~df0&YpIvxd!dZ~h7GbDQ6Vn4Y|%#IA2 zxA0I<|A$7soE0fp@l1&iXGE-r#$Ba>9?EAztYt855f<%0%K!?N2^i$;M+HMT^Whny zS&!iiY{tVe#IqfP8Td?xV~A%t1~c#(4#yDBZVYDNGaHT}Zm|b5@b=m<#O>!`2Htww zC=|_N42(i-2E*3mc=lpoP3AKfK#yiEhN80>3)_+JJF+7;aL)@zwm9b8jqX5u)G$WB$m86SkOOb=|87~Et6f-@Jj*UPfAW*zT8-i&nVb)IW z;1BA#$u;dyy{5Y(#f)jeAwP$w4eb7wLx+wxJ5xU46SoCN9vxi23<8IWZfiW*|ALkH zxYkhUr8<6jRvo`A*72*e>iCt@@rEl-=0}gHN-So=Ilk^+|8r;^&f&08ChxhgoCaS@ z@Efy7!JR7j&V(cPw=RZ$J>*G1I+LD|0eapAr;jAoK2P@eiODHAWRLH9%o7lFsCh!W z0(D3O>ey;xf?hSDA;VtA2(~e5LIS9H2L|vZg~a%UnWo_2KfcQqRD=&LZ@Vvl`|aJY z?w}1a`+K$jFewGsRX9LixwG(4;$wdzsnXAc43GUebm;JLCX;eEyW$I0!{baB1N8V3 z`j$?ToUw$m@KEAQD3Nr;63U@N$Lr3;SjwI0H8D3Sc*nqjaeqxhL&0nABatk!Lcz5J z4y#juMh5@O^Q-0L^JTMI+^2gh$sZ?lEbnqj>-;SD1qXAOYKVT1*m=R+E@Wb{H?!5l+|2xvK~=*g@qDvbuJ zn_;eKh3IhLH!&BCq%)baU?6%fB%*Tx{E~`-Y03;XD@YVn zlH?$-KO0V>p+ItbzMAd#lPTRaNHb8Ic{9Im=;p&ItE(M1w$Q#lx_5)V`%t}Lu%;J; zS2j*$a3f;63QlVnn^@w4_yyz`37WmgZb3NY3&Tl7@cp6rb=~rd98X?-_Ao$xcD`Or z?$H0I|EjwJS(z0qimA^{#1l9mxa|mNB1Ii_vbU8oqJmY7m`LD((B&vaG$cpB0l^LA zs9En0PllYgi}K=;K=KSowws3j$gEXR>=A>70lYKPZo5B7{2@jH4hWuue)U7-SOwEr zQ4SmsD4dCCT2f|Vh>0u=;Ju03Cd$Ad6ImP(yrqs@O}>pj& zs{e@@19)ht zcsHv;UHf1jMr8$2G9lToBLL4T(XK&WN!~C~*Dw(3cuG>>Q1ZUCiAcQP9$RsMrev_5 zwMrTuYJS?KW`DhXw12WW%pS*A2Nt}-q@j~88)}jyQ1;_KWwa7BZ!YAs+XeUEmh18q zP!-jyFe~w8epU4Pe2tW#Pc3qc#co zax&B1Te>97XH@H1M&p~D&p@Ayo+V@sQOm8Dn!ul5ds4HXG{Af+q6a0a^C zJ0f%_Nq7g+p20gfG&FQr!u~eH`z3grt|CNiVvZSx~m?|Ry6+)33$k$>K3F^$3>{%>5>=KS2%rZ zLx2^Fkl>vX)ZvH+jaWc08qE0YWFi{nnMPct(V^^Uw%vu3c+pr;Y8|LAuu^;Db1r_1?a zvfe&yriU$E<;g2Y!K)Y{WTYd<0YS_+!o<5R-Qm;lyEVljDFO>LB={S~TAuo5_ssbr9uK)J}SwsC*bOs98M;Q>>cHaqCG04hgs8 z+{ahi7WGkjGjDJ~d@Dh`-SHKyf-Qd`O2+7O1q<3#e)aLfus1qVel;$L6K+P!{pWEr z3k>Rno0$}6aVZGb^d18rYS`z>{N={4fT;YbBDp*Is%%gT&jG!N<#qk_*+Kn~5t_>W~; zbr6k-DcOY=;Pr~p1dzfy8d3@lNrh3rwxf~bfFSCEZRW?8R^1Pi%j4ll1JlW8_Gwx= zq{kz}|0x+8M{w3c(Z4eq=y|V858j?+<@N995#_j`jGQ{31?uXr#T708dL~_l394vK zBvSRcF2@PIK|Wp3a<9JKHd=dVMwOSPgifl1Ii2*b$h_gVSN!ui#91CFqN>=fXeHhU z`?vFnQdH1I^Cvl7sx+DJ7rZo^K+9D~TZozkYC5cxzR&n9R`OKP)!|PR!j3E6z?{XO zEDsdXYFn<{Xw5cyj{aZH;Y}cdrVsL(Xo}Lm@ywiRb`E8n4*F8j-g=?>AW@RzM*Elx z%6{E#Icw$i_$fR>K(x}NQ)+nri>V9qmgc?B%c)KTA6>ZefOLmH@3V~b3wso7m#*^7o< z0bEa^83HI#ZF5G6DKD<2XgnGK_GkeG)O3`VN%~lwgkmlSGd7A=riaw9cVOlR#022Ps=l_jEbK=89<= z*@HqFsOpH)D)}X!Oc*&zTLx%RJ>RSs>GdvC2bhh@`s5zA*ONjbDEm>bvQ)S(n@u=X z8knH1qusYjd7vD*-FF<&)6qjyTP(tfvXOge3LYvt+A*{BA=EK)J7x%=g!|4nvqyKd zm-lq->wTw-3EFt=mtV-@s;~Vi257lSb?iX5VIA$Ua<-~a4Qu#j6 z>Jn{?ntV(N7M~t0YdL|30E54$@uB2rc_sQ*RhoJyc~hH;)t+h5 zP!%$IWTnUoG^#TJkVp>}Ml+V9YD|$qBkktSm1yu;L&eN&Sk`(J+E5Zfn~I2l@Qy~O zd1HGOZDVm@vP=`;|MkHS{@@4d{~(6;v$*er^sDWV1ulowp+qBtT{Tv*DU9>kpIG^n zg&ZK}Rd5EVq4n&98d{80Pu4OWMVoycR$d3Np@3E!-B-Relp`_vq7^>})IqO+!A*;e z`jho+LkGiE)HPP(M?VWzmgBHXp*2PYFD>CqUaFQN+81nb?4vcHU`1{p(v+H-T~j_Y z(K|ZAo1!j=0~+)Qr(y0@ z8d?$%&R*WkX{=l|^Wcz>Dgc#A3K-D>;i%);`L^92>A~P;5_cmzIhS5TEiXU*ZPbF<1DzRP$3zI$wPwn zmP&kov%I7`3?^ziG(p*6PIs;%q)fnp?nX$rSF|j11y`)H%z?=ufkfwt(y7T6-Kwj1 zrA6y{YMv5sl1>kL+ll#)@RR{`5)O2?l?CYki{JSaM~7!7i!6l)!nfw;ebKMX8Je%Q z+N$b5_Fq^Lmh=;Y_ey)Qq2d*ra(d@ex@AMZl`y4ML5i$A=LNkri)5;Z(UL+1^UDe5 z#KG!<{#p;Q1qJULSza0pi|xH79hlhaVXh6iL56~t5(;Q_cE)Ga~n*szQ9?R zo9RM~MM}Io%V_by_7d$Q+tcMZMmoacXmNX3z%1z*f+#6z7_sUh}^|}LAN#V zR%R@2gADGM6ZyW_9u8YxxFy|$Fq^rITj(zK>*Zq6@E+<|>=qjAw-b4%B)rH=`sF1# z*T7xOYPy{{+gQvR7|gFE@|@bbSrWfXvJGtTzmedlj^k84qP{!u8w*RO8%s2V_|TCm zdv!s=SxP_ygZWm%0tc~+y<`krl5>R%-c-q_tUgxB0~`FQNb`t}76_Y zT=8H~a=~P_|6a|S^0iE_Kxs&lifiK{9%iwCwF!j4=1%yG%>nRzo37(iZE{(?f4-vbbQ=!w_>I$yPiEp^bDDGP3Z zw51+41QM}}vDxw!rg}z&2uAetpokodmXVKqH&4lATGlgF_6;OBg@4jTpkuak1`b@J z4CzO@Xl=z~bCpFMA{a$Xp@2fRWj<3CQ!F0XME>Yf*6sXSRKcqJIYcmuTG(vj3GAv` z2te=&Z=pLA#R7CygfVd75_zNLkm)1gn^k!OAoxV-(a#sn)f3(5(2`&#KZhaLAjedGsSK_KjEbEFRe6vRls{k6d;JG0#Xdf+I5;L@>q{9ktg^ z77cstv9E~C)%ps-A!mZ?I=UsRip#)dxR#5#=(SXF8MrLhYFsV_2QCpymTNi(F4(GK z2>`(-#v#j%2qjhH5RC>V;T?3%f}pA^F%1VU5l4uNx)fvfP#j{Ok#46Lnb9DEQF_W| zKkjS;WwC3vfqot}Zdp9!F7_5NlTzy~!OX^Md#v)J|C5r&yglZCIS~Z z#q69NEl?`@Q;K}p>|7ES+@dX_rk&;~$7|g!9@vD((m3>CGiGc9AoxUVixxYoVjElG z5bT^0ob&r}p`AU< zF{{SU9uk~bDX`ULLv*xXhnD#HY;nm-dv??wf`V7rme%9iQEdxA@Cnrou~j4tfDXcFtTe^U)aEb>m_yfuqxb% z`U4%?F>kPnExrXiK^=}BDZ0N&RPeqiQ_$dBkQR8414)t^NH9L{5^GI#JNTM6_yzUD zK_vJLAlP1aNj00g6??hg;?Ygk^cU>babO8v2@M6Wx{pEyrg#~D!9EoSmFKs>V1LZ-X0XJB7RT;`-D1kvC8-npn_M#4{VVP55ZN&4?u$PmNSgDF9ny&D1;QW z1P&!(UWW-zQKpJdU!uy4TUn+a6s#gr9=40qXGglSX#l|{^SDKY4$HDOj}8>9!hcdu zTj@W51mkPYB<>HH*0x}mx`T+lNR?;Uj)R{^CYvg5b?YJ%g9URU=d-;^`FnYtDD27T)fAr&81YN zqG?@^GlK51gGwLwzDBZx2ZxG;9jO0shMu>!LkJB8ya$S8316t|feK)-C!%f8e+sL_ z2+=k`27e+FY{dD55h8(t1Y;t;qw^MKcZB#3STMihs;c{g>%)cA1?#L1AXDibZZ|hw zJ}HK^<8T{Xa3@-rh65hqJlTke~Cu}BlKVRh#*zct^*%dt1)ctfRX2vt$(lHuNd9d1{J*TxCr3>a6HUa z6Yjk+%zVMgJ_nSEDG@%jBy2!wWf&j9-z+M46D3b6=va^UKVw_SiyY2vZ(K{W$>)b|1ZUBI>Ip`k=$3w*UpJC{J{m zLhr3CPe6jv_eQiN*Ha29hxbM}COBVkE}(xu#4SX@N|eJ$xRFH!pD0ToyuwUYmZb*; z>swBt$|Y@+qU%Bq^wiTz-6+1@EcksP1&>ENyg0`xbm-tdrKXK0vewr5l!FALkHaeG z`e#*p$waIf7#@csSTOTAteF$uRTqatRPgdxrBir^2)(Q>RtaFR`#I;s@0Xj)ZB)L) zSLXsium!cru%*hjqBe0*um*9;BuJENMVw-o;0*lO{GKk;3O|;xV7|4uSWgzm^@aW) z^_Tb%SV>b$ADUp1h6CM;5uG|w$SP~W{#XT)X47aOyQ$J$ZH|+xbiV$o|2AF5B%nZ} z^W=WJT(MO&9=RoZ3gVWOS1)dAiTi{ zBgZJXD=kgMoZ@+vX5;=R_V&L%(JLeta`WP%nJ?F~mAiTLGrA;@?_VzId{_|U?ny)t zz7P|N%T`LFb2ndb%gXbTZg#;t8U-7t0Flg{!b9F-vIXBmSWQNFAbT0I+?}zr&33b- z$!Qj-N*ebrYtmCx78S&=M#SpW{Pc1)yW*xTnJw(34sd(O>D~3+Imitz$ZtnE->&HZ zBOlF|w7Q+SwwNG&BSSjfFR$bln3Bbq0&YMuuUd8FAp=(8WRjUp#0WQenu&NTNy2dhI9abGGh~s)r7o{GWDXbF?o2u(MhlYe7 zN9E4aP1VST;=FvYt>8&A04JN!d6osjZsB{hb&KUgc`;zgpuNi#EhH#kNmEYc`*0ay?^}tCmdRfh>w;bcodVX~IfX z8_O6l=%a8#sV~f2Vf9E z81Bw{i?>vQ+dm1Z72+JK^}GMkZ8G~^Tqt!c5Sy#Ktn>*l|i~K zzdEnBD-*ziI&1pJf_p5}D_oFAof^8{hB?W4HCcvX`I8;uYNu(<7zwKH*yb^{60@Iy5c`P0@*)Kx;cR z0vZyc;blwvNW_S`c6ezaK^fKBJ?-M0YBxCYr#WhCEdvI9l;gcRguwgEwK=wspo~0v zf4#iq{nc8JHi#gMBGdkR(Lb(@Od1e$QJ|oKA1(KY_uy*-g#!g`w3c$%(({&AsaMu( z*HSn#1Vn2ol#C`do2!;aM9pJqfZDZ`7#%`Vme|jiXR<_q3<1sqKD7ho+2Xt7{vhU1 zhI&8*3fi~O<8~?3%p4T}bpqPiVaeweO3pT=#`#%r$cS^lpTKaRt04uEF{PWPpG6M|>uA0eo<1OB%ks-hZoMf_S1UWR| zGjy5a|8)k?)v(N@toA_(1hIry2+2n-!BGeFQqp%BYGW38eEtZsD<&aC#BpPcKEyP1kqacA5uP{8-21a0lH0m*`Rj-h6 z=sKaxVQLjE_%Rv-Rp(HwqD8)|S475JT|!<0SQt0zQRp<$qC;(u!lQyXsx&&uh^tF1 z(-s%xajxAuQ0Q3Ixpt@^jv9Hk2o!SHHu4M@^wCJyEtG`RwUbH?6tq#>JKpLGN|~>| zMD3ASsR(mhJFg?4k>_Z1FybPJ%d}Zn0cGS|Y^@^9bFFhRV9-Z79&r%_InFJDxZg)x z1mTFtW7Me|Z4t!rsZ|xwMU#Vk%^)n&p{o(#<;V~aMd@I@fVIIx_W%U+SmkiJk7gzV z@)4Ip5)v#rtk5as;cRu}yM=3~NW*LzbO`w$i{<=4him0R?r-{!8}1K_!;@XJw`X2G z4zT~wVAIqmE7(6D2CZO#{Kpzuolc-*rhIcy!RgtAa0dm3|64QA`*BSApAC|(P=IUf zO}oL@T=p<~8ysL8dq)--W^WAxWMhq;IJY^>8VUutf26HU|DrO&EM0J_Hc^Z~0{*ia zpYH!zG?z2l*2O3aP9!HN0x+=rPt9`NsrxAy!(R+?7YoGEb*<$tGYs7V0sYoud3m{7 zUQ9lv|2FM}E+LH$IF?K~S`@RVFbxUHmqGd4!+ND?>B3ocN1w;VqKoioNGe}W{XhNg3uIRA1vHTMQvk?sC}vKt+U;@IET-GtoL<@D&i~INX-n}G ziPPp<(msxh)pq{ieBvYz#J$^Pxs=69u6#>*R;pxx-z(<(<8uBWvB_a9F(E$0yq>d6 zyw{?ni(6t7gA4&b$_i*`$4w|X>~8(^dy_J(iO&VRv^!-Py?JC)ZQeqkh zUMk}k=alga*Y)VL2Cva0Tf^TV@!Vp$pM3J+|wpdW-V!k>q=wS7d??e8#e2sIUAI^45dj8Fs_yj5_{ILVeDx?lrOD}CR^K`Vn z4)8>Epn``Q{FrW*h z56ihKS*C3|vbKl}DtltfqPaL;O?R!l!(imt64F2!4LZ8wG7ZS-2@M)_&}){=bR8Xg zhj>ERV?5B-6ZaMkHOGhPYPPvL&aQYx7&)p)Dk%KO*e?bp5%n)U-f7< z-3JkFS!ZW4vf?x&^wLUGXHDA89`PZ{{gLHq0;uWfPao+*gv`vs$o*--1bsdIX}ao! z8*AkLw8n>)aHem)pc}u}YudZ7mVIX{x*)?gcf2;#%=C3}KvURT2-2$!0L#3pn%+V; z3v|)01n1?!7gUp3)$7@U%oJZzG^lNEiyLK z>t@C8>8$9n7qUU;FI@&F9bX=-S54{dP;u|ee0W?aCxqHyX0+>LGBhjSikZ5rSFohnAD-6T-e?L|?OH?9}47VnkCc7CAU zOp{Ny^Ka?DpX&>f^hPIE%{#)l?F)YhB(u1lhxJC_Y3|M1JuOA64MrA}YXMUV z66g@}4wPFP1WD<(mo+^`$bGh>I7)1hf`^n>(^7WIG|U<$+ur)EVQ@kIo*@6`xS>XL zLeml3mZI)#xjKrM96CC#C6-7NK#nXHo|+aC#ob4h#gc-Dly1xHkMn4@W>m|70CGO+ zET|(LkX%uT9OSyU(N^>eZ-QTs~ygak|R_QznLc9AE`s%%B$|a z&Udp;u!qNn2}zH=?K2G51|3%yL2AFRi>ST{5>h(3}tLVxdiu=C60{U)9b?J?K|roS-x zt?r!A!N#cXUobjjNP$g~*f2(hKkD|6$j|!xuQJsx|8bAM;3y4)>M#KB?k6oU+tD00 ze_UWR3s~&V5=eAUN8`8H;I}c%cuCt_(Rx<ckPI@XSO)EAghk!0Dr zwS6+%H`Y@ww<}&s<7<;_(DqK~ZZ0QZsKcj8s}=X+i>=1FpzBYPx{STPLGe!MR?gK* z4DCDiEDbEz94oZi-ml1U^c8iW)JcCKx48E!;PYs~d7?65={j--VV(%WY$Qb9gvDqRz3{J&g~g%% zWk?{Xy9jCM^K^>P6G2$FrQ(+M43^@ZpPw{(@;O;_YNltlIyCKu4y!%nk*wpq%djGp zWU!c>GRq4*9A@+DHO*JCNL$?40=Tb2YJHvy^4{;UpJ{rSw2qTF!%b&-AgikasGPJ7 zjhV&!6{ClWkO;!;q%5q?LIoXN(ybA*R`GBUki7*77D(!9A4w9`7dg2;di&^UAj(cz zAydpw@vU1OC*y{>l%aqaJI$XLlbq@+o`L~xU&(1vjtb(sijUgRDJ|~L_#IKB7oVqr zs5d&o0=1va!wc5PIa;5c6aj>EH8_-x;`@q;8NI;)2?TWo0F_oPX)#5k2LQ(cNnL$W zlbH7G%4-%z?~5{~QfYR1jc?33i!{dsX%1dhYfAl6MB!aLBuPrQe2I;4%rOA%1 zro#ehiV#A7Q7DwQNba_K+UG2e^j?*&{*(sTP;5vF!FIF`xU6N>`-0Kfx8v|Zy=fgI zq?S5?dUj2Y($DGyAcWAL7CJ$svUs8k#Z}O3pwgO|i&Ba9lEiqr<17*x8zlCHaCf{q zTxmEBQ{9v8Yb(HsF!}=;zl1P z2Rx8vR{{|sS%Vhchud+Ed{_g<#hk+Eg&6Qa zR#%wN$y1XZqlXE`1ZiE9SG1peMYrkE$t<-Wjm7@aC$9t-jo2WuYeqzU^b}@9JPkzk`I_sRgf<(!mMUG2 z3DWEam1HZBxIepiM+gA>I^N=H?XE`Y(QL)9)fv4}(hRVSkaD+k)v&l%sIJVL9e(+X zpLG~0rh+ChqvaC@OL?IW71z7dWCd(cCj7`N^GkW5u;L|@(}a1lUR^Zar%sVvRzH(2 zPX=9fyFa|Z+bdo%ES@+z%~pKXFk5~UHJ+ZGJXx=u;`PEa*@>?iiop-cO)dA-bY@N| zx_}E-5>xI@6_$I#s#n~uoTLd%P?U+Dez7N%be8Dpsi4UoHj;JD4D?wiw7Bbjl8y9) zf?J))SjexZoZUj63Kn{qPsqWKD10&V6fcyVVje{T9hvAzNuouYv($PJK~JXLRmqa$ zgtN4}j19^%aa*NL&GDb5eGAE;tHWY$H6?WLvsuisL75nr20o5~Rnl_B3l1mxd_)SJ zKg-rd_er=;5gN02tKCqoAu;rd-83n?x|NDhZ1Kj+p<*2?loogZRw_cFXZHY*LZ_Gq zNLe&m87W?A8fs0=SfDUF7jQO(j1dYu;*eXd2n+daamcYjS*HD0!8D$vI7<)7Q$bUv zck2@JS?c1cx>J2k=ik5g(b2~3W=~ez8Q%qewl)rAuvUj}xp|hS;#-dGzy9I}fA9nK ze?1b}y3W}pGBzl)XJ6KKS_Q#PjWxNK74KL&#mfv0wAfQHQcJW7QoJ4K6e(;aL`+}8 zDq;>hEU}ByjS#135`3^z#^Ke(;?wH}Gd3v8gb0=Psda-xGU&=Q;VLO>uEG*MO9L4( zLSd#EQt6*kGvukDsiQOzgF}OzCEy!Xrged?%ruKi8g<0ZGR@+cps1rpx<(;1)mgeX zN|j@Svdm;lVol*JlPzLhArs-FC55v@c($xyON{E4y6H@x{r6E#+<*Rtb z#Ucg^E}a}GCtKGtX)j3{oBAo<&QUB!Q$UTaVWFCP#xnY!n3UpcaJr>1eCV({b?ukB zl)`lJR{i2Bv2rnn1d8m`oc%l$!;Esbv^$X1!JxrzYjc8~rpK9pf;;-m#72<-g$@n2 z4)3rQdnbB*x*M^Nu-%x(DlILExPiWVgP$&fC6gl?lox* zvj{Q0Z0KQH)qsm=Qrs%_+a|#TZFYhsqiw%EwzT&n7FRsTEf&Y9psw3;`@^qFz(kJhutG<8c48?t~|@AaKjP-joZ=k3SpN@&31KI16{WNgsbTgG9P z2_>GTj6*UgL@R9So<8#= zc%X~NaAd*U|CbI#^)Woh0!?-wT+&u7AcV#$Uf?Y>79)bPu2Kx+KqzeNQVe;Z3*!(L zZ_Irww6{Is?d9W;p2#Cfpy)-lkTGBH=rx{J{fDLs>1t?J<38;lg8)QVeEfwYg7BT> z&-BnEUE!jJ%ko0%f_@PY^XwcRQr^dhOsVS0s&_b&Y6|u!0<=SoWPqSsm$dqEn9x=i zI&{|1g_To!@M6gyhb?%ae1BM|`78SHb1w9PGHyn>B#uGqH)@Rh6J1vEm$Ts8o45R24w5MrH^$Z*t=v;y% z1q8kAOWOa5ZmQD@6<6(S$KSpzm>={oS=ZtCkn*noGWgT#xWAt6x0i?gj!w6*`d!iv z^jE1%!2mf)%j~v0+AX)d+C&$`jAI#&4=Jw&_HY?eNiXSMD`t{{L6XPHmXCvmfH(X{ z{!c0uUHgBv<>>wuq~Lb^bnmI3^pVrBkfLkXxb^p z32uS_V$$|dVj{N~$sP_H65jMy^ncQF6OK_Zi|s-3g`z|V&q%wcN*KGwNbc#uJ8hws z@l@cFH~x%cix3?$Zh0H(i(#p^qyij^5?}Op$~=lF2?h$%paAUeo90obPSg}Y5*#94 z_L_rqQC%o_;>QD}Gp{nIaY6m6|01AH)PaI|BoCD*7yci#4*`A3?`qnI1ax=)b>-t5 zk4DPBMFxEkmaWLW>SAOE1~p+hO8_x(UC?4&uRWaZ7@;n3aEJ)TCZXVtC#I;uC4*vPd>MQ zqML^2%~D?ETT*QulnGnzuQ4*{UrW+ct)&4je(1ptsJkBBj&=Bx$ z!UCNWPbEX1UPD9-kn?6jj+#iKNzwUoJ>xgKmAGZE6ow8Nujgb?`OWxvr=(+BCc